From 90852df6877966cbc0b536b5b8df6e8b1537dcb5 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Sun, 3 Sep 2023 13:39:20 +0100 Subject: [PATCH 01/45] Prepare the use of the SSSOM plugin. Define and export the ROBOT_PLUGINS_DIRECTORY variable, pointing to the $(TMPDIR)/plugins directory. Add a rule to download the SSSOM plugin to that directory. --- src/ontology/uberon.Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 803292caac..22eafb8f9c 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -106,6 +106,22 @@ quick-qc: $(REPORTDIR)/uberon-edit-obscheck.txt .PHONY: checks uberon-qc quick-qc +# ---------------------------------------- +# ROBOT PLUGINS +# ---------------------------------------- + +# All ROBOT plugins should go into that directory. The variable is +# exported into the environment so that plugins are available to +# all calls to ROBOT. +ROBOT_PLUGINS_DIRECTORY = $(TMPDIR)/plugins +export ROBOT_PLUGINS_DIRECTORY + +# Make sure the SSSOM plugin for ROBOT is available. +$(TMPDIR)/plugins/sssom.jar: + mkdir -p $(TMPDIR)/plugins + curl -L -o $@ https://github.com/gouttegd/sssom-java/releases/download/sssom-java-0.4.1/sssom-robot-plugin-0.4.1.jar + + # ---------------------------------------- # BUILDING UBERON ITSELF # ---------------------------------------- @@ -1164,6 +1180,7 @@ composites: composite-metazoan.obo composite-vertebrate.obo # BRIDGES # ---------------------------------------- + # Generating cross-refs with FBbt from SSSOM # ---------------------------------------- # Download the FBbt mapping file From b40d7967adb35ab3ab6704b980d9e7ed8d026c36 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Sun, 3 Sep 2023 16:30:33 +0100 Subject: [PATCH 02/45] Replace the sssom2xrefs.awk script. To generate the components containing the SSSOM-derived cross-references pointing to FBbt terms, we can now use the SSSOM plugin for ROBOT rather than the hideous hack that was the AWK script. --- src/ontology/uberon.Makefile | 8 ++++++-- src/scripts/sssom2xrefs.awk | 39 ------------------------------------ 2 files changed, 6 insertions(+), 41 deletions(-) delete mode 100644 src/scripts/sssom2xrefs.awk diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 22eafb8f9c..82eda74316 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1194,8 +1194,12 @@ mappings/fbbt-mappings.sssom.tsv: $(TMPDIR)/fbbt-mappings.sssom.tsv if [ -f $< ]; then if ! cmp $< $@ ; then cat $< > $@ ; fi ; fi # Generate cross-references from the FBbt mapping file -$(COMPONENTSDIR)/mappings.owl: mappings/fbbt-mappings.sssom.tsv ../scripts/sssom2xrefs.awk - awk -f ../scripts/sssom2xrefs.awk $< > $@ +$(COMPONENTSDIR)/mappings.owl: $(SRC) mappings/fbbt-mappings.sssom.tsv $(TMPDIR)/plugins/sssom.jar + $(ROBOT) sssom:sssom-inject -i $< \ + --sssom mappings/fbbt-mappings.sssom.tsv \ + --invert --only-subject-in UBERON --check-subject \ + --hasdbxref --no-merge --bridge-file $@ \ + --bridge-iri http://purl.obolibrary.org/obo/uberon/components/mappings.owl # Prepare Uberon and CL sources diff --git a/src/scripts/sssom2xrefs.awk b/src/scripts/sssom2xrefs.awk deleted file mode 100644 index 162255afc3..0000000000 --- a/src/scripts/sssom2xrefs.awk +++ /dev/null @@ -1,39 +0,0 @@ -# Generate a OWL file of cross-references from a SSSOM TSV file. -# Warning: This script assumes a valid SSSOM TSV file. - -# Minimal OWL boilerplate -BEGIN { - FS = "\t"; - print ""; - print ""; - print " "; -} - -END { - print ""; -} - -# Find the column containing the object ID -# (We do not need to do that for the subject ID, as the SSSOM -# specification says the subject_id is always the first column) -/^subject_id/ { - for ( i = 1; i < NF; i++ ) { - if ( $i == "object_id" ) { - object_index = i; - } - } -} - -# We only generate cross-references for "exact" mappings -/(skos:exactMatch|semapv:crossSpeciesExactMatch)/ { - split($object_index, object, ":"); - # Only process mappings where the object term belongs to Uberon - if ( object[1] == "UBERON" ) { - print " "; - print " "$1""; - print " "; - } -} From 2b5808a5aa1c98cc642f6868f87f4e103f72b56a Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Sun, 3 Sep 2023 22:12:00 +0100 Subject: [PATCH 03/45] Generalize the use of external SSSOM set. For now, FBbt is the only foreign ontology to provide its mappings as a SSSOM set, but that may change in the future if SSSOM gets used more widely. So we generalise the rules that download the FBbt mapping set so that they can be used to download any externally provided mapping set. Likewise, the rule that generates the mappings.owl components (made of cross-references derived from the FBbt SSSOM set) is generalised so that it is ready to create a component from *all* externally provided mapping sets, not only the FBbt one. --- src/ontology/uberon.Makefile | 56 +++++++++++++++++++++++------------- 1 file changed, 36 insertions(+), 20 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 82eda74316..9491aa5bb5 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1177,30 +1177,34 @@ composites: composite-metazoan.obo composite-vertebrate.obo # ---------------------------------------- -# BRIDGES +# SSSOM MAPPINGS # ---------------------------------------- - - -# Generating cross-refs with FBbt from SSSOM -# ---------------------------------------- -# Download the FBbt mapping file -.PHONY: $(TMPDIR)/fbbt-mappings.sssom.tsv -$(TMPDIR)/fbbt-mappings.sssom.tsv: - if [ $(IMP) = true ]; then wget -O $@ http://purl.obolibrary.org/obo/fbbt/fbbt-mappings.sssom.tsv ; fi - -# Attempt to update the canonical FBbt mapping file from a freshly downloaded one -# (no update if the downloaded file is absent or identical to the one we already have) -mappings/fbbt-mappings.sssom.tsv: $(TMPDIR)/fbbt-mappings.sssom.tsv +# Some foreign ontologies are providing their own mapping sets. We fetch +# them and store them into mappings/ONT-mappings.ssom.tsv. + +# The following ontologies publish their own mapping sets. +EXTERNAL_SSSOM_PROVIDERS = fbbt + +# All the sets coming from the above ontologies. +EXTERNAL_SSSOM_SETS = $(foreach provider, $(EXTERNAL_SSSOM_PROVIDERS), mappings/$(provider)-mappings.sssom.tsv) + +# Fetch a fresh version of a foreign mapping set. This generic rule +# assumes the foreign ontology is publishing its set at a predictable +# location. Override this rule if a given ontology publishes its set at +# a different location. +.PHONY: $(foreach provider, $(EXTERNAL_SSSOM_PROVIDERS), $(provider)-mappings) +$(TMPDIR)/%.sssom.tsv: %-mappings + if [ $(IMP) = true ]; then wget -O $@ http://purl.obolibrary.org/obo/$*/$*-mappings.sssom.tsv ; fi + +# Refresh the mapping set in mappings/ with the one freshly downloaded, +# if it is different. +mappings/%-mappings.sssom.tsv: $(TMPDIR)/%.sssom.tsv if [ -f $< ]; then if ! cmp $< $@ ; then cat $< > $@ ; fi ; fi -# Generate cross-references from the FBbt mapping file -$(COMPONENTSDIR)/mappings.owl: $(SRC) mappings/fbbt-mappings.sssom.tsv $(TMPDIR)/plugins/sssom.jar - $(ROBOT) sssom:sssom-inject -i $< \ - --sssom mappings/fbbt-mappings.sssom.tsv \ - --invert --only-subject-in UBERON --check-subject \ - --hasdbxref --no-merge --bridge-file $@ \ - --bridge-iri http://purl.obolibrary.org/obo/uberon/components/mappings.owl +# ---------------------------------------- +# BRIDGES +# ---------------------------------------- # Prepare Uberon and CL sources # ---------------------------------------- @@ -1320,6 +1324,18 @@ $(COMPONENTSDIR)/hra_depiction_3d_images.owl: $(TMPDIR)/hra_depiction_3d_images. $(ROBOT) merge -i $< annotate --ontology-iri $(ONTBASE)/$@ --output $@ +# The mappings.owl component contains cross-references to foreign +# ontologies that provide their own mappings as a SSSOM set. This +# component ensures those mappings are visible to Uberon editors and +# users. +$(COMPONENTSDIR)/mappings.owl: $(SRC) $(EXTERNAL_SSSOM_SETS) $(TMPDIR)/plugins/sssom.jar + $(ROBOT) sssom:sssom-inject -i $< \ + $(foreach set, $(EXTERNAL_SSSOM_SETS), --sssom $(set)) \ + --invert --only-subject-in UBERON --check-subject \ + --hasdbxref --no-merge --bridge-file $@ \ + --bridge-iri http://purl.obolibrary.org/obo/uberon/components/mappings.owl + + # ---------------------------------------- # RELEASE DEPLOYMENT # ---------------------------------------- From 22654381ba9a85d5de67410e0637e63fe1a1b833 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 19:18:39 +0100 Subject: [PATCH 04/45] Remove bridges to deprecated ontologies. Several of the foreign ontologies we are bridging to are deprecated, so there shouldn't be any need to keep the bridges around. If someone needs one of those bridges, they should grab it from the last release prior to this commit and keep it on their side. --- src/ontology/bridge/cl-bridge-to-aao.obo | 141 - src/ontology/bridge/cl-bridge-to-aao.owl | 402 - src/ontology/bridge/cl-bridge-to-bila.obo | 111 - src/ontology/bridge/cl-bridge-to-bila.owl | 302 - src/ontology/bridge/cl-bridge-to-ehdaa.obo | 111 - src/ontology/bridge/cl-bridge-to-ehdaa.owl | 302 - src/ontology/bridge/cl-bridge-to-ev.obo | 116 - src/ontology/bridge/cl-bridge-to-ev.owl | 335 - src/ontology/bridge/cl-bridge-to-mfo.obo | 127 - src/ontology/bridge/cl-bridge-to-mfo.owl | 362 - src/ontology/bridge/cl-bridge-to-olatdv.obo | 127 - src/ontology/bridge/cl-bridge-to-olatdv.owl | 362 - src/ontology/bridge/cl-bridge-to-tao.obo | 134 - src/ontology/bridge/cl-bridge-to-tao.owl | 369 - src/ontology/bridge/cl-bridge-to-vsao.obo | 135 - src/ontology/bridge/cl-bridge-to-vsao.owl | 379 - src/ontology/bridge/hdr-cl-bridge-to-aao.obo | 8 - src/ontology/bridge/hdr-cl-bridge-to-tao.obo | 7 - src/ontology/bridge/hdr-cl-bridge-to-vhog.obo | 8 - src/ontology/bridge/hdr-cl-bridge-to-vsao.obo | 9 - .../bridge/hdr-uberon-bridge-to-aao.obo | 8 - .../bridge/hdr-uberon-bridge-to-tao.obo | 7 - .../bridge/hdr-uberon-bridge-to-vhog.obo | 8 - .../bridge/hdr-uberon-bridge-to-vsao.obo | 10 - src/ontology/bridge/uberon-bridge-to-aao.obo | 4899 - src/ontology/bridge/uberon-bridge-to-aao.owl | 20762 --- src/ontology/bridge/uberon-bridge-to-bila.obo | 556 - src/ontology/bridge/uberon-bridge-to-bila.owl | 1743 - .../bridge/uberon-bridge-to-ehdaa.obo | 4976 - .../bridge/uberon-bridge-to-ehdaa.owl | 14735 -- src/ontology/bridge/uberon-bridge-to-emap.obo | 126283 --------------- src/ontology/bridge/uberon-bridge-to-ev.obo | 1916 - src/ontology/bridge/uberon-bridge-to-ev.owl | 5985 - src/ontology/bridge/uberon-bridge-to-mfo.obo | 127 - src/ontology/bridge/uberon-bridge-to-mfo.owl | 362 - .../bridge/uberon-bridge-to-olatdv.obo | 133 - .../bridge/uberon-bridge-to-olatdv.owl | 394 - src/ontology/bridge/uberon-bridge-to-tao.obo | 6056 - src/ontology/bridge/uberon-bridge-to-tao.owl | 25911 --- src/ontology/bridge/uberon-bridge-to-vhog.obo | 5 - src/ontology/bridge/uberon-bridge-to-vhog.owl | 107 - .../bridge/uberon-bridge-to-vhog.owl.ofn | 26 - src/ontology/bridge/uberon-bridge-to-vsao.obo | 856 - src/ontology/bridge/uberon-bridge-to-vsao.owl | 2828 - 44 files changed, 222540 deletions(-) delete mode 100644 src/ontology/bridge/cl-bridge-to-aao.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-aao.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-bila.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-bila.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-ehdaa.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-ehdaa.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-ev.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-ev.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-mfo.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-mfo.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-olatdv.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-olatdv.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-tao.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-tao.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-vsao.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-vsao.owl delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-aao.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-tao.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-vhog.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-vsao.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-aao.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-tao.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-vhog.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-vsao.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-aao.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-aao.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-bila.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-bila.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-ehdaa.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-ehdaa.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-emap.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-ev.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-ev.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-mfo.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-mfo.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-olatdv.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-olatdv.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-tao.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-tao.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-vhog.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-vhog.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-vhog.owl.ofn delete mode 100644 src/ontology/bridge/uberon-bridge-to-vsao.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-vsao.owl diff --git a/src/ontology/bridge/cl-bridge-to-aao.obo b/src/ontology/bridge/cl-bridge-to-aao.obo deleted file mode 100644 index 2f33f09781..0000000000 --- a/src/ontology/bridge/cl-bridge-to-aao.obo +++ /dev/null @@ -1,141 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-aao -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to aao" xsd:string -property_value: dc-description "Equivalence axioms between AAO and CL. Note that AAO is in the process of being merged into the core CL, so this mapping will become deprecated" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "David Blackburn" xsd:string -property_value: dc-contributor "Erik Segerdell" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/aao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: AAO:0010316 ! -property_value: IAO:0000589 "Rohon-Beard neuron (amphibian)" xsd:string -intersection_of: CL:0000247 ! Rohon-Beard neuron -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:ENTITY -name: AAO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8292 -relationship: only_in_taxon NCBITaxon:8292 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-aao.owl b/src/ontology/bridge/cl-bridge-to-aao.owl deleted file mode 100644 index 3a4ca8c645..0000000000 --- a/src/ontology/bridge/cl-bridge-to-aao.owl +++ /dev/null @@ -1,402 +0,0 @@ - - - - - Erik Segerdell - Paula Mabee - CL editors - David Blackburn - Equivalence axioms between AAO and CL. Note that AAO is in the process of being merged into the core CL, so this mapping will become deprecated - CL bridge to aao - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - Rohon-Beard neuron (amphibian) - AAO:0010316 - - - - - - - - - - - - - - - - - - - - - - - - - AAO:ENTITY - AAO entity - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-bila.obo b/src/ontology/bridge/cl-bridge-to-bila.obo deleted file mode 100644 index de93b1c647..0000000000 --- a/src/ontology/bridge/cl-bridge-to-bila.obo +++ /dev/null @@ -1,111 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-bila -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-bila.owl b/src/ontology/bridge/cl-bridge-to-bila.owl deleted file mode 100644 index 372346dfa3..0000000000 --- a/src/ontology/bridge/cl-bridge-to-bila.owl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-ehdaa.obo b/src/ontology/bridge/cl-bridge-to-ehdaa.obo deleted file mode 100644 index a427dffa85..0000000000 --- a/src/ontology/bridge/cl-bridge-to-ehdaa.obo +++ /dev/null @@ -1,111 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-ehdaa -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-ehdaa.owl b/src/ontology/bridge/cl-bridge-to-ehdaa.owl deleted file mode 100644 index 59d2631cdf..0000000000 --- a/src/ontology/bridge/cl-bridge-to-ehdaa.owl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-ev.obo b/src/ontology/bridge/cl-bridge-to-ev.obo deleted file mode 100644 index 161371fee1..0000000000 --- a/src/ontology/bridge/cl-bridge-to-ev.obo +++ /dev/null @@ -1,116 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-ev -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: EV:0200009 ! -property_value: IAO:0000589 "type B pancreatic cell (EV)" xsd:string -is_a: CL:0000169 ! type B pancreatic cell - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-ev.owl b/src/ontology/bridge/cl-bridge-to-ev.owl deleted file mode 100644 index 7263344348..0000000000 --- a/src/ontology/bridge/cl-bridge-to-ev.owl +++ /dev/null @@ -1,335 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - type B pancreatic cell (EV) - EV:0200009 - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-mfo.obo b/src/ontology/bridge/cl-bridge-to-mfo.obo deleted file mode 100644 index 0e9075ff83..0000000000 --- a/src/ontology/bridge/cl-bridge-to-mfo.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-mfo -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: MFO:ENTITY -name: MFO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8089 -relationship: only_in_taxon NCBITaxon:8089 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-mfo.owl b/src/ontology/bridge/cl-bridge-to-mfo.owl deleted file mode 100644 index 7bc5c8d984..0000000000 --- a/src/ontology/bridge/cl-bridge-to-mfo.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MFO:ENTITY - MFO entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-olatdv.obo b/src/ontology/bridge/cl-bridge-to-olatdv.obo deleted file mode 100644 index c6d67d65f8..0000000000 --- a/src/ontology/bridge/cl-bridge-to-olatdv.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-olatdv -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: OlatDv:ENTITY -name: OlatDv entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8089 -relationship: only_in_taxon NCBITaxon:8089 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-olatdv.owl b/src/ontology/bridge/cl-bridge-to-olatdv.owl deleted file mode 100644 index 9deed0f9ed..0000000000 --- a/src/ontology/bridge/cl-bridge-to-olatdv.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - OlatDv:ENTITY - OlatDv entity - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-tao.obo b/src/ontology/bridge/cl-bridge-to-tao.obo deleted file mode 100644 index adcb273553..0000000000 --- a/src/ontology/bridge/cl-bridge-to-tao.obo +++ /dev/null @@ -1,134 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-tao -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to tao" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between TAO and CL. Note that TAO is in the process of being merged into the core CL, so this mapping will become deprecated" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Wasila Dahdul" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/tao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: TAO:ENTITY -name: TAO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:32443 -relationship: only_in_taxon NCBITaxon:32443 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-tao.owl b/src/ontology/bridge/cl-bridge-to-tao.owl deleted file mode 100644 index ceee7aab99..0000000000 --- a/src/ontology/bridge/cl-bridge-to-tao.owl +++ /dev/null @@ -1,369 +0,0 @@ - - - - - Paula Mabee - Wasila Dahdul - CL editors - Taxonomic equivalence axioms between TAO and CL. Note that TAO is in the process of being merged into the core CL, so this mapping will become deprecated - CL bridge to tao - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TAO:ENTITY - TAO entity - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-vsao.obo b/src/ontology/bridge/cl-bridge-to-vsao.obo deleted file mode 100644 index 215599d757..0000000000 --- a/src/ontology/bridge/cl-bridge-to-vsao.obo +++ /dev/null @@ -1,135 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-vsao -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to vsao" xsd:string -property_value: dc-description "Equivalence axioms between VSAO and CL. Note that VSAO is in the process of being merged into the core CL, so this mapping will become deprecated" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "Melissa Haendel" xsd:string -property_value: dc-creator "Wasila Dahdul" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dc-contributor "Alexander Diehl" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/vsao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: VSAO:0000124 ! -property_value: IAO:0000589 "osteocyte (VSAO)" xsd:string -equivalent_to: CL:0000137 ! osteocyte - -[Term] -id: VSAO:0000116 ! -property_value: IAO:0000589 "terminally differentiated osteoblast (VSAO)" xsd:string -equivalent_to: CL:0001039 ! terminally differentiated osteoblast - -[Term] -id: VSAO:0000117 ! -property_value: IAO:0000589 "non-terminally differentiated osteoblast (VSAO)" xsd:string -equivalent_to: CL:0001040 ! non-terminally differentiated osteoblast - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-vsao.owl b/src/ontology/bridge/cl-bridge-to-vsao.owl deleted file mode 100644 index c35c5c4a5e..0000000000 --- a/src/ontology/bridge/cl-bridge-to-vsao.owl +++ /dev/null @@ -1,379 +0,0 @@ - - - - - Alexander Diehl - Paula Mabee - CL editors - Melissa Haendel - Wasila Dahdul - Equivalence axioms between VSAO and CL. Note that VSAO is in the process of being merged into the core CL, so this mapping will become deprecated - CL bridge to vsao - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - terminally differentiated osteoblast (VSAO) - VSAO:0000116 - - - - - - - - non-terminally differentiated osteoblast (VSAO) - VSAO:0000117 - - - - - - - - osteocyte (VSAO) - VSAO:0000124 - - - - - - - diff --git a/src/ontology/bridge/hdr-cl-bridge-to-aao.obo b/src/ontology/bridge/hdr-cl-bridge-to-aao.obo deleted file mode 100644 index 4a577737c0..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-aao.obo +++ /dev/null @@ -1,8 +0,0 @@ -property_value: dc-title "CL bridge to aao" xsd:string -property_value: dc-description "Equivalence axioms between AAO and CL. Note that AAO is in the process of being merged into the core CL, so this mapping will become deprecated" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "David Blackburn" xsd:string -property_value: dc-contributor "Erik Segerdell" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/aao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-tao.obo b/src/ontology/bridge/hdr-cl-bridge-to-tao.obo deleted file mode 100644 index b1f9ebab39..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-tao.obo +++ /dev/null @@ -1,7 +0,0 @@ -property_value: dc-title "CL bridge to tao" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between TAO and CL. Note that TAO is in the process of being merged into the core CL, so this mapping will become deprecated" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Wasila Dahdul" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/tao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-vhog.obo b/src/ontology/bridge/hdr-cl-bridge-to-vhog.obo deleted file mode 100644 index f91551f982..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-vhog.obo +++ /dev/null @@ -1,8 +0,0 @@ -property_value: dc-title "CL bridge to vhog" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between VHOG and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "vHOG editors" xsd:string -property_value: dc-creator "Aurelie Comte" xsd:string -property_value: dc-creator "Anne Niknejad" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/vhog.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-vsao.obo b/src/ontology/bridge/hdr-cl-bridge-to-vsao.obo deleted file mode 100644 index c9b730d6a5..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-vsao.obo +++ /dev/null @@ -1,9 +0,0 @@ -property_value: dc-title "CL bridge to vsao" xsd:string -property_value: dc-description "Equivalence axioms between VSAO and CL. Note that VSAO is in the process of being merged into the core CL, so this mapping will become deprecated" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "Melissa Haendel" xsd:string -property_value: dc-creator "Wasila Dahdul" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dc-contributor "Alexander Diehl" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/vsao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-aao.obo b/src/ontology/bridge/hdr-uberon-bridge-to-aao.obo deleted file mode 100644 index 5fd5911980..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-aao.obo +++ /dev/null @@ -1,8 +0,0 @@ -property_value: dc-title "Uberon bridge to aao" xsd:string -property_value: dc-description "Equivalence axioms between AAO and Uberon. Note that AAO is in the process of being merged into the core Uberon, so this mapping will become deprecated" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "David Blackburn" xsd:string -property_value: dc-contributor "Erik Segerdell" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/aao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-tao.obo b/src/ontology/bridge/hdr-uberon-bridge-to-tao.obo deleted file mode 100644 index 6a31bc4257..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-tao.obo +++ /dev/null @@ -1,7 +0,0 @@ -property_value: dc-title "Uberon bridge to tao" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between TAO and Uberon. Note that TAO is in the process of being merged into the core Uberon, so this mapping will become deprecated" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Wasila Dahdul" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/tao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-vhog.obo b/src/ontology/bridge/hdr-uberon-bridge-to-vhog.obo deleted file mode 100644 index 31f8fde10e..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-vhog.obo +++ /dev/null @@ -1,8 +0,0 @@ -property_value: dc-title "Uberon bridge to vhog" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between VHOG and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "vHOG editors" xsd:string -property_value: dc-creator "Aurelie Comte" xsd:string -property_value: dc-creator "Anne Niknejad" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/vhog.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-vsao.obo b/src/ontology/bridge/hdr-uberon-bridge-to-vsao.obo deleted file mode 100644 index 52cd4d354e..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-vsao.obo +++ /dev/null @@ -1,10 +0,0 @@ -property_value: dc-title "Uberon bridge to vsao" xsd:string -property_value: dc-description "Equivalence axioms between VSAO and Uberon. Note that VSAO is in the process of being merged into the core Uberon, so this mapping will become deprecated" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "Melissa Haendel" xsd:string -property_value: dc-creator "Wasila Dahdul" xsd:string -property_value: dc-creator "Nizar Ibrahim" xsd:string -property_value: dc-creator "Alex Decechi" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/vsao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/uberon-bridge-to-aao.obo b/src/ontology/bridge/uberon-bridge-to-aao.obo deleted file mode 100644 index d79af1df2f..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-aao.obo +++ /dev/null @@ -1,4899 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-aao -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to aao" xsd:string -property_value: dc-description "Equivalence axioms between AAO and Uberon. Note that AAO is in the process of being merged into the core Uberon, so this mapping will become deprecated" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "David Blackburn" xsd:string -property_value: dc-contributor "Erik Segerdell" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/aao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: AAO:0000311 ! -property_value: IAO:0000589 "naris (amphibian)" xsd:string -intersection_of: UBERON:0000003 ! naris -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010406 ! -property_value: IAO:0000589 "islet of Langerhans (amphibian)" xsd:string -intersection_of: UBERON:0000006 ! islet of Langerhans -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010536 ! -property_value: IAO:0000589 "pituitary gland (amphibian)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000429 ! -property_value: IAO:0000589 "peripheral nervous system (amphibian)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010488 ! -property_value: IAO:0000589 "parasympathetic nervous system (amphibian)" xsd:string -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010487 ! -property_value: IAO:0000589 "sympathetic nervous system (amphibian)" xsd:string -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010407 ! -property_value: IAO:0000589 "exocrine pancreas (amphibian)" xsd:string -intersection_of: UBERON:0000017 ! exocrine pancreas -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010340 ! -property_value: IAO:0000589 "camera-type eye (amphibian)" xsd:string -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010335 ! -property_value: IAO:0000589 "head (amphibian)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011032 ! -property_value: IAO:0000589 "dorsal root ganglion (amphibian)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010426 ! -property_value: IAO:0000589 "ganglion (amphibian)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010254 ! -property_value: IAO:0000589 "ureter (amphibian)" xsd:string -intersection_of: UBERON:0000056 ! ureter -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011123 ! -property_value: IAO:0000589 "duct (amphibian)" xsd:string -intersection_of: UBERON:0000058 ! duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010396 ! -property_value: IAO:0000589 "large intestine (amphibian)" xsd:string -intersection_of: UBERON:0000059 ! large intestine -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010825 ! -property_value: IAO:0000589 "anatomical structure (amphibian)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011124 ! -property_value: IAO:0000589 "organ part (amphibian)" xsd:string -intersection_of: UBERON:0000064 ! organ part -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010384 ! -property_value: IAO:0000589 "mesonephros (amphibian)" xsd:string -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010389 ! -property_value: IAO:0000589 "mesonephric tubule (amphibian)" xsd:string -intersection_of: UBERON:0000083 ! mesonephric tubule -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000229 ! -property_value: IAO:0000589 "hypoblast (generic) (amphibian)" xsd:string -intersection_of: UBERON:0000089 ! hypoblast (generic) -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010619 ! -property_value: IAO:0000589 "hypoblast (generic) (amphibian)" xsd:string -intersection_of: UBERON:0000089 ! hypoblast (generic) -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010433 ! -property_value: IAO:0000589 "blastocele (amphibian)" xsd:string -intersection_of: UBERON:0000090 ! blastocele -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000045 ! -property_value: IAO:0000589 "blastopore (amphibian)" xsd:string -intersection_of: UBERON:0000100 ! blastopore -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000246 ! -property_value: IAO:0000589 "intestine (amphibian)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000095 ! -property_value: IAO:0000589 "cloaca (amphibian)" xsd:string -intersection_of: UBERON:0000162 ! cloaca -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010355 ! -property_value: IAO:0000589 "mouth (amphibian)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000053 ! -property_value: IAO:0000589 "oral cavity (amphibian)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000960 ! -property_value: IAO:0000589 "oral cavity (amphibian)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000046 ! -property_value: IAO:0000589 "blood (amphibian)" xsd:string -intersection_of: UBERON:0000178 ! blood -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000206 ! -property_value: IAO:0000589 "tetrapod frontal bone (amphibian)" xsd:string -intersection_of: UBERON:0000209 ! tetrapod frontal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000390 ! -property_value: IAO:0000589 "tetrapod parietal bone (amphibian)" xsd:string -intersection_of: UBERON:0000210 ! tetrapod parietal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010034 ! -property_value: IAO:0000589 "adductor longus (amphibian)" xsd:string -intersection_of: UBERON:0000303 ! adductor longus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010648 ! -property_value: IAO:0000589 "ophthalmic nerve (amphibian)" xsd:string -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010040 ! -property_value: IAO:0000589 "adductor magnus (amphibian)" xsd:string -intersection_of: UBERON:0000370 ! adductor magnus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010688 ! -property_value: IAO:0000589 "mandibular nerve (amphibian)" xsd:string -intersection_of: UBERON:0000375 ! mandibular nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010703 ! -property_value: IAO:0000589 "mandibular nerve (amphibian)" xsd:string -intersection_of: UBERON:0000375 ! mandibular nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010670 ! -property_value: IAO:0000589 "maxillary nerve (amphibian)" xsd:string -intersection_of: UBERON:0000377 ! maxillary nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000307 ! -property_value: IAO:0000589 "musculature of body (amphibian)" xsd:string -intersection_of: UBERON:0000383 ! musculature of body -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010791 ! -property_value: IAO:0000589 "sympathetic trunk (amphibian)" xsd:string -intersection_of: UBERON:0000407 ! sympathetic trunk -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010601 ! -property_value: IAO:0000589 "mucous gland (amphibian)" xsd:string -intersection_of: UBERON:0000414 ! mucous gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010839 ! -property_value: IAO:0000589 "organism substance (amphibian)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010110 ! -property_value: IAO:0000589 "anatomical space (amphibian)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010264 ! -property_value: IAO:0000589 "material anatomical entity (amphibian)" xsd:string -intersection_of: UBERON:0000465 ! material anatomical entity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010265 ! -property_value: IAO:0000589 "immaterial anatomical entity (amphibian)" xsd:string -intersection_of: UBERON:0000466 ! immaterial anatomical entity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000007 ! -property_value: IAO:0000589 "anatomical system (amphibian)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010026 ! -property_value: IAO:0000589 "multicellular organism (amphibian)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010017 ! -property_value: IAO:0000589 "compound organ component (amphibian)" xsd:string -intersection_of: UBERON:0000471 ! compound organ component -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010051 ! -property_value: IAO:0000589 "simple organ (amphibian)" xsd:string -intersection_of: UBERON:0000472 ! simple organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000606 ! -property_value: IAO:0000589 "testis (amphibian)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010053 ! -property_value: IAO:0000589 "organism subdivision (amphibian)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010268 ! -property_value: IAO:0000589 "acellular anatomical structure (amphibian)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010020 ! -property_value: IAO:0000589 "extraembryonic structure (amphibian)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000607 ! -property_value: IAO:0000589 "tissue (amphibian)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010054 ! -property_value: IAO:0000589 "tissue (amphibian)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010008 ! -property_value: IAO:0000589 "anatomical group (amphibian)" xsd:string -intersection_of: UBERON:0000480 ! anatomical group -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010048 ! -property_value: IAO:0000589 "multi-tissue structure (amphibian)" xsd:string -intersection_of: UBERON:0000481 ! multi-tissue structure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010269 ! -property_value: IAO:0000589 "basal lamina of epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000144 ! -property_value: IAO:0000589 "epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010055 ! -property_value: IAO:0000589 "epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010064 ! -property_value: IAO:0000589 "simple cuboidal epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000484 ! simple cuboidal epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010063 ! -property_value: IAO:0000589 "simple columnar epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000485 ! simple columnar epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010059 ! -property_value: IAO:0000589 "multilaminar epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000486 ! multilaminar epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010066 ! -property_value: IAO:0000589 "simple squamous epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000487 ! simple squamous epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010057 ! -property_value: IAO:0000589 "atypical epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000488 ! atypical epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010016 ! -property_value: IAO:0000589 "cavitated compound organ (amphibian)" xsd:string -intersection_of: UBERON:0000489 ! cavitated compound organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010062 ! -property_value: IAO:0000589 "unilaminar epithelium (amphibian)" xsd:string -intersection_of: UBERON:0000490 ! unilaminar epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010019 ! -property_value: IAO:0000589 "solid compound organ (amphibian)" xsd:string -intersection_of: UBERON:0000491 ! solid compound organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011035 ! -property_value: IAO:0000589 "embryo (amphibian)" xsd:string -intersection_of: UBERON:0000922 ! embryo -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000480 ! -property_value: IAO:0000589 "germ layer (amphibian)" xsd:string -intersection_of: UBERON:0000923 ! germ layer -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000137 ! -property_value: IAO:0000589 "ectoderm (amphibian)" xsd:string -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000139 ! -property_value: IAO:0000589 "endoderm (amphibian)" xsd:string -intersection_of: UBERON:0000925 ! endoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000304 ! -property_value: IAO:0000589 "mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011087 ! -property_value: IAO:0000589 "proctodeum (amphibian)" xsd:string -intersection_of: UBERON:0000931 ! proctodeum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010345 ! -property_value: IAO:0000589 "cranial nerve II (amphibian)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000579 ! -property_value: IAO:0000589 "stomach (amphibian)" xsd:string -intersection_of: UBERON:0000945 ! stomach -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010213 ! -property_value: IAO:0000589 "aorta (amphibian)" xsd:string -intersection_of: UBERON:0000947 ! aorta -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010210 ! -property_value: IAO:0000589 "heart (amphibian)" xsd:string -intersection_of: UBERON:0000948 ! heart -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010279 ! -property_value: IAO:0000589 "endocrine system (amphibian)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010478 ! -property_value: IAO:0000589 "brain (amphibian)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010622 ! -property_value: IAO:0000589 "optic chiasma (amphibian)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010344 ! -property_value: IAO:0000589 "cornea (amphibian)" xsd:string -intersection_of: UBERON:0000964 ! cornea -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010348 ! -property_value: IAO:0000589 "lens of camera-type eye (amphibian)" xsd:string -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010352 ! -property_value: IAO:0000589 "retina (amphibian)" xsd:string -intersection_of: UBERON:0000966 ! retina -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000765 ! -property_value: IAO:0000589 "sternum (amphibian)" xsd:string -intersection_of: UBERON:0000975 ! sternum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000679 ! -property_value: IAO:0000589 "humerus (amphibian)" xsd:string -intersection_of: UBERON:0000976 ! humerus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000890 ! -property_value: IAO:0000589 "tibia (amphibian)" xsd:string -intersection_of: UBERON:0000979 ! tibia -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000897 ! -property_value: IAO:0000589 "trochanter (amphibian)" xsd:string -intersection_of: UBERON:0000980 ! trochanter -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000887 ! -property_value: IAO:0000589 "femur (amphibian)" xsd:string -intersection_of: UBERON:0000981 ! femur -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000889 ! -property_value: IAO:0000589 "femur (amphibian)" xsd:string -intersection_of: UBERON:0000981 ! femur -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010258 ! -property_value: IAO:0000589 "reproductive system (amphibian)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000213 ! -property_value: IAO:0000589 "gonad (amphibian)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000371 ! -property_value: IAO:0000589 "ovary (amphibian)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010533 ! -property_value: IAO:0000589 "oviduct (amphibian)" xsd:string -intersection_of: UBERON:0000993 ! oviduct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010788 ! -property_value: IAO:0000589 "seminal vesicle (amphibian)" xsd:string -intersection_of: UBERON:0000998 ! seminal vesicle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000143 ! -property_value: IAO:0000589 "skin epidermis (amphibian)" xsd:string -intersection_of: UBERON:0001003 ! skin epidermis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000541 ! -property_value: IAO:0000589 "respiratory system (amphibian)" xsd:string -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000129 ! -property_value: IAO:0000589 "digestive system (amphibian)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010257 ! -property_value: IAO:0000589 "renal system (amphibian)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000959 ! -property_value: IAO:0000589 "circulatory system (amphibian)" xsd:string -intersection_of: UBERON:0001009 ! circulatory system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000001 ! -property_value: IAO:0000589 "adipose tissue (amphibian)" xsd:string -intersection_of: UBERON:0001013 ! adipose tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011066 ! -property_value: IAO:0000589 "musculature (amphibian)" xsd:string -intersection_of: UBERON:0001015 ! musculature -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000324 ! -property_value: IAO:0000589 "nervous system (amphibian)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000090 ! -property_value: IAO:0000589 "central nervous system (amphibian)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011070 ! -property_value: IAO:0000589 "nerve (amphibian)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000555 ! -property_value: IAO:0000589 "sensory system (amphibian)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010577 ! -property_value: IAO:0000589 "gustatory system (amphibian)" xsd:string -intersection_of: UBERON:0001033 ! gustatory system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011042 ! -property_value: IAO:0000589 "foregut (amphibian)" xsd:string -intersection_of: UBERON:0001041 ! foregut -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000967 ! -property_value: IAO:0000589 "chordate pharynx (amphibian)" xsd:string -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000145 ! -property_value: IAO:0000589 "esophagus (amphibian)" xsd:string -intersection_of: UBERON:0001043 ! esophagus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011052 ! -property_value: IAO:0000589 "hindgut (amphibian)" xsd:string -intersection_of: UBERON:0001046 ! hindgut -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010617 ! -property_value: IAO:0000589 "neural tube (amphibian)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010401 ! -property_value: IAO:0000589 "rectum (amphibian)" xsd:string -intersection_of: UBERON:0001052 ! rectum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010841 ! -property_value: IAO:0000589 "anatomical entity (amphibian)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010218 ! -property_value: IAO:0000589 "external carotid artery (amphibian)" xsd:string -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010416 ! -property_value: IAO:0000589 "external carotid artery (amphibian)" xsd:string -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011083 ! -property_value: IAO:0000589 "posterior vena cava (amphibian)" xsd:string -intersection_of: UBERON:0001072 ! posterior vena cava -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000697 ! -property_value: IAO:0000589 "bony vertebral centrum (amphibian)" xsd:string -intersection_of: UBERON:0001075 ! bony vertebral centrum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000705 ! -property_value: IAO:0000589 "neural spine (amphibian)" xsd:string -intersection_of: UBERON:0001076 ! neural spine -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000698 ! -property_value: IAO:0000589 "transverse process of vertebra (amphibian)" xsd:string -intersection_of: UBERON:0001077 ! transverse process of vertebra -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000703 ! -property_value: IAO:0000589 "prezygapophysis (amphibian)" xsd:string -intersection_of: UBERON:0001079 ! prezygapophysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000702 ! -property_value: IAO:0000589 "postzygapophysis (amphibian)" xsd:string -intersection_of: UBERON:0001080 ! postzygapophysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000709 ! -property_value: IAO:0000589 "vertebral bone 1 (amphibian)" xsd:string -intersection_of: UBERON:0001092 ! vertebral bone 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000552 ! -property_value: IAO:0000589 "sacral vertebra (amphibian)" xsd:string -intersection_of: UBERON:0001094 ! sacral vertebra -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010508 ! -property_value: IAO:0000589 "external jugular vein (amphibian)" xsd:string -intersection_of: UBERON:0001101 ! external jugular vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000761 ! -property_value: IAO:0000589 "clavicle bone (amphibian)" xsd:string -intersection_of: UBERON:0001105 ! clavicle bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000699 ! -property_value: IAO:0000589 "vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000734 ! -property_value: IAO:0000589 "vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000729 ! -property_value: IAO:0000589 "vertebral foramen (amphibian)" xsd:string -intersection_of: UBERON:0001131 ! vertebral foramen -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010545 ! -property_value: IAO:0000589 "parathyroid gland (amphibian)" xsd:string -intersection_of: UBERON:0001132 ! parathyroid gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010245 ! -property_value: IAO:0000589 "cardiac muscle tissue (amphibian)" xsd:string -intersection_of: UBERON:0001133 ! cardiac muscle tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010244 ! -property_value: IAO:0000589 "smooth muscle tissue (amphibian)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010216 ! -property_value: IAO:0000589 "hepatic vein (amphibian)" xsd:string -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010400 ! -property_value: IAO:0000589 "colon (amphibian)" xsd:string -intersection_of: UBERON:0001155 ! colon -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011020 ! -property_value: IAO:0000589 "biliary tree (amphibian)" xsd:string -intersection_of: UBERON:0001173 ! biliary tree -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010223 ! -property_value: IAO:0000589 "renal artery (amphibian)" xsd:string -intersection_of: UBERON:0001184 ! renal artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011093 ! -property_value: IAO:0000589 "pyloric sphincter (amphibian)" xsd:string -intersection_of: UBERON:0001202 ! pyloric sphincter -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010526 ! -property_value: IAO:0000589 "glomerular capsule (amphibian)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011009 ! -property_value: IAO:0000589 "adrenal cortex (amphibian)" xsd:string -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011010 ! -property_value: IAO:0000589 "adrenal medulla (amphibian)" xsd:string -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000623 ! -property_value: IAO:0000589 "urinary bladder (amphibian)" xsd:string -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010112 ! -property_value: IAO:0000589 "pancreas (amphibian)" xsd:string -intersection_of: UBERON:0001264 ! pancreas -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000770 ! -property_value: IAO:0000589 "acetabular part of hip bone (amphibian)" xsd:string -intersection_of: UBERON:0001269 ! acetabular part of hip bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000772 ! -property_value: IAO:0000589 "ilium (amphibian)" xsd:string -intersection_of: UBERON:0001273 ! ilium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000860 ! -property_value: IAO:0000589 "ischium (amphibian)" xsd:string -intersection_of: UBERON:0001274 ! ischium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000861 ! -property_value: IAO:0000589 "pubis (amphibian)" xsd:string -intersection_of: UBERON:0001275 ! pubis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010405 ! -property_value: IAO:0000589 "liver parenchyma (amphibian)" xsd:string -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010531 ! -property_value: IAO:0000589 "mesovarium (amphibian)" xsd:string -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010399 ! -property_value: IAO:0000589 "seminiferous tubule of testis (amphibian)" xsd:string -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000731 ! -property_value: IAO:0000589 "coccyx (amphibian)" xsd:string -intersection_of: UBERON:0001350 ! coccyx -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010237 ! -property_value: IAO:0000589 "femoral vein (amphibian)" xsd:string -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010816 ! -property_value: IAO:0000589 "parietal peritoneum (amphibian)" xsd:string -intersection_of: UBERON:0001366 ! parietal peritoneum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010043 ! -property_value: IAO:0000589 "obturator externus (amphibian)" xsd:string -intersection_of: UBERON:0001368 ! obturator externus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010036 ! -property_value: IAO:0000589 "pectineus muscle (amphibian)" xsd:string -intersection_of: UBERON:0001382 ! pectineus muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010504 ! -property_value: IAO:0000589 "brachial artery (amphibian)" xsd:string -intersection_of: UBERON:0001398 ! brachial artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010775 ! -property_value: IAO:0000589 "longissimus thoracis muscle (amphibian)" xsd:string -intersection_of: UBERON:0001401 ! longissimus thoracis muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010512 ! -property_value: IAO:0000589 "brachial vein (amphibian)" xsd:string -intersection_of: UBERON:0001413 ! brachial vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000788 ! -property_value: IAO:0000589 "radius bone (amphibian)" xsd:string -intersection_of: UBERON:0001423 ! radius bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000789 ! -property_value: IAO:0000589 "ulna (amphibian)" xsd:string -intersection_of: UBERON:0001424 ! ulna -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000790 ! -property_value: IAO:0000589 "radiale (amphibian)" xsd:string -intersection_of: UBERON:0001427 ! radiale -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010634 ! -property_value: IAO:0000589 "distal carpal bone 1 (amphibian)" xsd:string -intersection_of: UBERON:0001430 ! distal carpal bone 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000848 ! -property_value: IAO:0000589 "distal carpal bone 2 (amphibian)" xsd:string -intersection_of: UBERON:0001431 ! distal carpal bone 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000849 ! -property_value: IAO:0000589 "distal carpal bone 3 (amphibian)" xsd:string -intersection_of: UBERON:0001432 ! distal carpal bone 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000850 ! -property_value: IAO:0000589 "distal carpal bone 4 (amphibian)" xsd:string -intersection_of: UBERON:0001433 ! distal carpal bone 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000566 ! -property_value: IAO:0000589 "skeletal system (amphibian)" xsd:string -intersection_of: UBERON:0001434 ! skeletal system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000947 ! -property_value: IAO:0000589 "phalanx of manus (amphibian)" xsd:string -intersection_of: UBERON:0001436 ! phalanx of manus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000742 ! -property_value: IAO:0000589 "epiphysis (amphibian)" xsd:string -intersection_of: UBERON:0001437 ! epiphysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000202 ! -property_value: IAO:0000589 "forelimb skeleton (amphibian)" xsd:string -intersection_of: UBERON:0001440 ! forelimb skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000217 ! -property_value: IAO:0000589 "hindlimb skeleton (amphibian)" xsd:string -intersection_of: UBERON:0001441 ! hindlimb skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000891 ! -property_value: IAO:0000589 "fibula (amphibian)" xsd:string -intersection_of: UBERON:0001446 ! fibula -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000930 ! -property_value: IAO:0000589 "phalanx of pes (amphibian)" xsd:string -intersection_of: UBERON:0001449 ! phalanx of pes -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000924 ! -property_value: IAO:0000589 "navicular bone of pes (amphibian)" xsd:string -intersection_of: UBERON:0001451 ! navicular bone of pes -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000918 ! -property_value: IAO:0000589 "distal tarsal bone 1 (amphibian)" xsd:string -intersection_of: UBERON:0001452 ! distal tarsal bone 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000919 ! -property_value: IAO:0000589 "distal tarsal bone 2 (amphibian)" xsd:string -intersection_of: UBERON:0001453 ! distal tarsal bone 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000920 ! -property_value: IAO:0000589 "distal tarsal bone 3 (amphibian)" xsd:string -intersection_of: UBERON:0001454 ! distal tarsal bone 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010639 ! -property_value: IAO:0000589 "manual digit 1 (amphibian)" xsd:string -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000888 ! -property_value: IAO:0000589 "pedal digit (amphibian)" xsd:string -intersection_of: UBERON:0001466 ! pedal digit -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011005 ! -property_value: IAO:0000589 "lymphatic vessel (amphibian)" xsd:string -intersection_of: UBERON:0001473 ! lymphatic vessel -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000047 ! -property_value: IAO:0000589 "bone element (amphibian)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010716 ! -property_value: IAO:0000589 "deltoid (amphibian)" xsd:string -intersection_of: UBERON:0001476 ! deltoid -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000847 ! -property_value: IAO:0000589 "distal carpal bone (amphibian)" xsd:string -intersection_of: UBERON:0001481 ! distal carpal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010727 ! -property_value: IAO:0000589 "pectoral muscle (amphibian)" xsd:string -intersection_of: UBERON:0001495 ! pectoral muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010733 ! -property_value: IAO:0000589 "flexor carpi radialis muscle (amphibian)" xsd:string -intersection_of: UBERON:0001521 ! flexor carpi radialis muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010281 ! -property_value: IAO:0000589 "extensor carpi ulnaris muscle (amphibian)" xsd:string -intersection_of: UBERON:0001526 ! extensor carpi ulnaris muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010219 ! -property_value: IAO:0000589 "internal carotid artery (amphibian)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011054 ! -property_value: IAO:0000589 "internal carotid artery (amphibian)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010232 ! -property_value: IAO:0000589 "subclavian artery (amphibian)" xsd:string -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010023 ! -property_value: IAO:0000589 "digestive tract (amphibian)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010666 ! -property_value: IAO:0000589 "longus capitis muscle (amphibian)" xsd:string -intersection_of: UBERON:0001563 ! longus capitis muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010660 ! -property_value: IAO:0000589 "genioglossus muscle (amphibian)" xsd:string -intersection_of: UBERON:0001571 ! genioglossus muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010663 ! -property_value: IAO:0000589 "hyoglossus muscle (amphibian)" xsd:string -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010088 ! -property_value: IAO:0000589 "olfactory nerve (amphibian)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010236 ! -property_value: IAO:0000589 "internal jugular vein (amphibian)" xsd:string -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010510 ! -property_value: IAO:0000589 "subclavian vein (amphibian)" xsd:string -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010509 ! -property_value: IAO:0000589 "vertebral vein (amphibian)" xsd:string -intersection_of: UBERON:0001588 ! vertebral vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010028 ! -property_value: IAO:0000589 "extra-ocular muscle (amphibian)" xsd:string -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010113 ! -property_value: IAO:0000589 "medial rectus extraocular muscle (amphibian)" xsd:string -intersection_of: UBERON:0001602 ! medial rectus extraocular muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010107 ! -property_value: IAO:0000589 "lateral rectus extra-ocular muscle (amphibian)" xsd:string -intersection_of: UBERON:0001603 ! lateral rectus extra-ocular muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010492 ! -property_value: IAO:0000589 "lingual artery (amphibian)" xsd:string -intersection_of: UBERON:0001610 ! lingual artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010491 ! -property_value: IAO:0000589 "sublingual artery (amphibian)" xsd:string -intersection_of: UBERON:0001611 ! sublingual artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010497 ! -property_value: IAO:0000589 "ophthalmic artery (amphibian)" xsd:string -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011066 ! -property_value: IAO:0000589 "muscle organ (amphibian)" xsd:string -intersection_of: UBERON:0001630 ! muscle organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010211 ! -property_value: IAO:0000589 "artery (amphibian)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010212 ! -property_value: IAO:0000589 "vein (amphibian)" xsd:string -intersection_of: UBERON:0001638 ! vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010214 ! -property_value: IAO:0000589 "hepatic portal vein (amphibian)" xsd:string -intersection_of: UBERON:0001639 ! hepatic portal vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010468 ! -property_value: IAO:0000589 "oculomotor nerve (amphibian)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010469 ! -property_value: IAO:0000589 "trochlear nerve (amphibian)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010470 ! -property_value: IAO:0000589 "trigeminal nerve (amphibian)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010471 ! -property_value: IAO:0000589 "abducens nerve (amphibian)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010472 ! -property_value: IAO:0000589 "facial nerve (amphibian)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010473 ! -property_value: IAO:0000589 "vestibulocochlear nerve (amphibian)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010474 ! -property_value: IAO:0000589 "glossopharyngeal nerve (amphibian)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010477 ! -property_value: IAO:0000589 "hypoglossal nerve (amphibian)" xsd:string -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010513 ! -property_value: IAO:0000589 "facial vein (amphibian)" xsd:string -intersection_of: UBERON:0001653 ! facial vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011107 ! -property_value: IAO:0000589 "trigeminal ganglion (amphibian)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000312 ! -property_value: IAO:0000589 "nasal bone (amphibian)" xsd:string -intersection_of: UBERON:0001681 ! nasal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000684 ! -property_value: IAO:0000589 "hyoid bone (amphibian)" xsd:string -intersection_of: UBERON:0001685 ! hyoid bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011015 ! -property_value: IAO:0000589 "auditory ossicle bone (amphibian)" xsd:string -intersection_of: UBERON:0001686 ! auditory ossicle bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011014 ! -property_value: IAO:0000589 "ear (amphibian)" xsd:string -intersection_of: UBERON:0001690 ! ear -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011037 ! -property_value: IAO:0000589 "external ear (amphibian)" xsd:string -intersection_of: UBERON:0001691 ! external ear -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000039 ! -property_value: IAO:0000589 "basioccipital bone (amphibian)" xsd:string -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000147 ! -property_value: IAO:0000589 "exoccipital bone (amphibian)" xsd:string -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000574 ! -property_value: IAO:0000589 "squamous part of temporal bone (amphibian)" xsd:string -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000169 ! -property_value: IAO:0000589 "foramen ovale of skull (amphibian)" xsd:string -intersection_of: UBERON:0001698 ! foramen ovale of skull -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010153 ! -property_value: IAO:0000589 "neurocranium (amphibian)" xsd:string -intersection_of: UBERON:0001703 ! neurocranium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000559 ! -property_value: IAO:0000589 "nasal septum (amphibian)" xsd:string -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010135 ! -property_value: IAO:0000589 "nasal septum (amphibian)" xsd:string -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000314 ! -property_value: IAO:0000589 "nasal cavity (amphibian)" xsd:string -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000988 ! -property_value: IAO:0000589 "jaw skeleton (amphibian)" xsd:string -intersection_of: UBERON:0001708 ! jaw skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000620 ! -property_value: IAO:0000589 "upper jaw region (amphibian)" xsd:string -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000272 ! -property_value: IAO:0000589 "lower jaw region (amphibian)" xsd:string -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010349 ! -property_value: IAO:0000589 "lower eyelid (amphibian)" xsd:string -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010360 ! -property_value: IAO:0000589 "tongue (amphibian)" xsd:string -intersection_of: UBERON:0001723 ! tongue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010573 ! -property_value: IAO:0000589 "taste bud (amphibian)" xsd:string -intersection_of: UBERON:0001727 ! taste bud -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010435 ! -property_value: IAO:0000589 "cavity of pharynx (amphibian)" xsd:string -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000268 ! -property_value: IAO:0000589 "larynx (amphibian)" xsd:string -intersection_of: UBERON:0001737 ! larynx -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000674 ! -property_value: IAO:0000589 "arytenoid cartilage (amphibian)" xsd:string -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011065 ! -property_value: IAO:0000589 "middle ear (amphibian)" xsd:string -intersection_of: UBERON:0001756 ! middle ear -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010475 ! -property_value: IAO:0000589 "vagus nerve (amphibian)" xsd:string -intersection_of: UBERON:0001759 ! vagus nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010347 ! -property_value: IAO:0000589 "iris (amphibian)" xsd:string -intersection_of: UBERON:0001769 ! iris -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010351 ! -property_value: IAO:0000589 "pupil (amphibian)" xsd:string -intersection_of: UBERON:0001771 ! pupil -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010354 ! -property_value: IAO:0000589 "sclera (amphibian)" xsd:string -intersection_of: UBERON:0001773 ! sclera -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000611 ! -property_value: IAO:0000589 "skeletal muscle of trunk (amphibian)" xsd:string -intersection_of: UBERON:0001774 ! skeletal muscle of trunk -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010341 ! -property_value: IAO:0000589 "ciliary body (amphibian)" xsd:string -intersection_of: UBERON:0001775 ! ciliary body -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011101 ! -property_value: IAO:0000589 "spinal nerve (amphibian)" xsd:string -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010353 ! -property_value: IAO:0000589 "layer of retina (amphibian)" xsd:string -intersection_of: UBERON:0001781 ! layer of retina -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011096 ! -property_value: IAO:0000589 "pigmented layer of retina (amphibian)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000108 ! -property_value: IAO:0000589 "cranial nerve (amphibian)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010773 ! -property_value: IAO:0000589 "sympathetic ganglion (amphibian)" xsd:string -intersection_of: UBERON:0001806 ! sympathetic ganglion -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010343 ! -property_value: IAO:0000589 "conjunctiva (amphibian)" xsd:string -intersection_of: UBERON:0001811 ! conjunctiva -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010095 ! -property_value: IAO:0000589 "parotid gland (amphibian)" xsd:string -intersection_of: UBERON:0001831 ! parotid gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011078 ! -property_value: IAO:0000589 "bony labyrinth (amphibian)" xsd:string -intersection_of: UBERON:0001839 ! bony labyrinth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011098 ! -property_value: IAO:0000589 "semicircular canal (amphibian)" xsd:string -intersection_of: UBERON:0001840 ! semicircular canal -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000058 ! -property_value: IAO:0000589 "anterior semicircular canal (amphibian)" xsd:string -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000420 ! -property_value: IAO:0000589 "posterior semicircular canal (amphibian)" xsd:string -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000253 ! -property_value: IAO:0000589 "cochlea (amphibian)" xsd:string -intersection_of: UBERON:0001844 ! cochlea -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000238 ! -property_value: IAO:0000589 "internal ear (amphibian)" xsd:string -intersection_of: UBERON:0001846 ! internal ear -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011060 ! -property_value: IAO:0000589 "membranous labyrinth (amphibian)" xsd:string -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000625 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (amphibian)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011109 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (amphibian)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000550 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (amphibian)" xsd:string -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000135 ! -property_value: IAO:0000589 "endolymphatic duct (amphibian)" xsd:string -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010480 ! -property_value: IAO:0000589 "cerebral hemisphere (amphibian)" xsd:string -intersection_of: UBERON:0001869 ! cerebral hemisphere -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010147 ! -property_value: IAO:0000589 "forebrain (amphibian)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010149 ! -property_value: IAO:0000589 "midbrain (amphibian)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010479 ! -property_value: IAO:0000589 "telencephalon (amphibian)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010481 ! -property_value: IAO:0000589 "diencephalon (amphibian)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010486 ! -property_value: IAO:0000589 "medulla oblongata (amphibian)" xsd:string -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010483 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (amphibian)" xsd:string -intersection_of: UBERON:0001897 ! dorsal plus ventral thalamus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010484 ! -property_value: IAO:0000589 "hypothalamus (amphibian)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010482 ! -property_value: IAO:0000589 "epithalamus (amphibian)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010549 ! -property_value: IAO:0000589 "pineal body (amphibian)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011013 ! -property_value: IAO:0000589 "endothelium of artery (amphibian)" xsd:string -intersection_of: UBERON:0001917 ! endothelium of artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011110 ! -property_value: IAO:0000589 "endothelium of vein (amphibian)" xsd:string -intersection_of: UBERON:0001919 ! endothelium of vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010609 ! -property_value: IAO:0000589 "superior colliculus (amphibian)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010253 ! -property_value: IAO:0000589 "arteriole (amphibian)" xsd:string -intersection_of: UBERON:0001980 ! arteriole -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011004 ! -property_value: IAO:0000589 "blood vessel (amphibian)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010252 ! -property_value: IAO:0000589 "capillary (amphibian)" xsd:string -intersection_of: UBERON:0001982 ! capillary -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010158 ! -property_value: IAO:0000589 "olfactory epithelium (amphibian)" xsd:string -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010221 ! -property_value: IAO:0000589 "pulmonary artery (amphibian)" xsd:string -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010521 ! -property_value: IAO:0000589 "pulmonary vein (amphibian)" xsd:string -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010476 ! -property_value: IAO:0000589 "accessory XI nerve (amphibian)" xsd:string -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010598 ! -property_value: IAO:0000589 "stratum basale of epidermis (amphibian)" xsd:string -intersection_of: UBERON:0002025 ! stratum basale of epidermis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010597 ! -property_value: IAO:0000589 "stratum corneum of epidermis (amphibian)" xsd:string -intersection_of: UBERON:0002027 ! stratum corneum of epidermis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010150 ! -property_value: IAO:0000589 "hindbrain (amphibian)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010762 ! -property_value: IAO:0000589 "striated muscle tissue (amphibian)" xsd:string -intersection_of: UBERON:0002036 ! striated muscle tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010485 ! -property_value: IAO:0000589 "cerebellum (amphibian)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010544 ! -property_value: IAO:0000589 "thyroid gland (amphibian)" xsd:string -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000275 ! -property_value: IAO:0000589 "lung (amphibian)" xsd:string -intersection_of: UBERON:0002048 ! lung -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010567 ! -property_value: IAO:0000589 "lung (amphibian)" xsd:string -intersection_of: UBERON:0002048 ! lung -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000138 ! -property_value: IAO:0000589 "embryonic structure (amphibian)" xsd:string -intersection_of: UBERON:0002050 ! embryonic structure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010222 ! -property_value: IAO:0000589 "femoral artery (amphibian)" xsd:string -intersection_of: UBERON:0002060 ! femoral artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010505 ! -property_value: IAO:0000589 "sinus venosus (amphibian)" xsd:string -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011033 ! -property_value: IAO:0000589 "common cardinal vein (amphibian)" xsd:string -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010511 ! -property_value: IAO:0000589 "posterior cardinal vein (amphibian)" xsd:string -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000128 ! -property_value: IAO:0000589 "dermis (amphibian)" xsd:string -intersection_of: UBERON:0002067 ! dermis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010386 ! -property_value: IAO:0000589 "viscus (amphibian)" xsd:string -intersection_of: UBERON:0002075 ! viscus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010248 ! -property_value: IAO:0000589 "right cardiac atrium (amphibian)" xsd:string -intersection_of: UBERON:0002078 ! right cardiac atrium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010247 ! -property_value: IAO:0000589 "left cardiac atrium (amphibian)" xsd:string -intersection_of: UBERON:0002079 ! left cardiac atrium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010246 ! -property_value: IAO:0000589 "cardiac atrium (amphibian)" xsd:string -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010249 ! -property_value: IAO:0000589 "cardiac ventricle (amphibian)" xsd:string -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000034 ! -property_value: IAO:0000589 "postcranial axial skeleton (amphibian)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000747 ! -property_value: IAO:0000589 "appendicular skeleton (amphibian)" xsd:string -intersection_of: UBERON:0002091 ! appendicular skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011061 ! -property_value: IAO:0000589 "mesentery (amphibian)" xsd:string -intersection_of: UBERON:0002095 ! mesentery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010339 ! -property_value: IAO:0000589 "trunk (amphibian)" xsd:string -intersection_of: UBERON:0002100 ! trunk -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010336 ! -property_value: IAO:0000589 "limb (amphibian)" xsd:string -intersection_of: UBERON:0002101 ! limb -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000205 ! -property_value: IAO:0000589 "forelimb (amphibian)" xsd:string -intersection_of: UBERON:0002102 ! forelimb -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000219 ! -property_value: IAO:0000589 "hindlimb (amphibian)" xsd:string -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000632 ! -property_value: IAO:0000589 "visual system (amphibian)" xsd:string -intersection_of: UBERON:0002104 ! visual system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000631 ! -property_value: IAO:0000589 "vestibulo-auditory system (amphibian)" xsd:string -intersection_of: UBERON:0002105 ! vestibulo-auditory system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010395 ! -property_value: IAO:0000589 "spleen (amphibian)" xsd:string -intersection_of: UBERON:0002106 ! spleen -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010111 ! -property_value: IAO:0000589 "liver (amphibian)" xsd:string -intersection_of: UBERON:0002107 ! liver -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010397 ! -property_value: IAO:0000589 "small intestine (amphibian)" xsd:string -intersection_of: UBERON:0002108 ! small intestine -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010114 ! -property_value: IAO:0000589 "gallbladder (amphibian)" xsd:string -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000250 ! -property_value: IAO:0000589 "kidney (amphibian)" xsd:string -intersection_of: UBERON:0002113 ! kidney -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010402 ! -property_value: IAO:0000589 "duodenum (amphibian)" xsd:string -intersection_of: UBERON:0002114 ! duodenum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010403 ! -property_value: IAO:0000589 "ileum (amphibian)" xsd:string -intersection_of: UBERON:0002116 ! ileum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011089 ! -property_value: IAO:0000589 "pronephros (amphibian)" xsd:string -intersection_of: UBERON:0002120 ! pronephros -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010408 ! -property_value: IAO:0000589 "endocardium (amphibian)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010540 ! -property_value: IAO:0000589 "adenohypophysis (amphibian)" xsd:string -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010539 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (amphibian)" xsd:string -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010537 ! -property_value: IAO:0000589 "neurohypophysis (amphibian)" xsd:string -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000239 ! -property_value: IAO:0000589 "integument (amphibian)" xsd:string -intersection_of: UBERON:0002199 ! integument -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010546 ! -property_value: IAO:0000589 "musculoskeletal system (amphibian)" xsd:string -intersection_of: UBERON:0002204 ! musculoskeletal system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000615 ! -property_value: IAO:0000589 "tympanic ring (amphibian)" xsd:string -intersection_of: UBERON:0002218 ! tympanic ring -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010445 ! -property_value: IAO:0000589 "perichondrium (amphibian)" xsd:string -intersection_of: UBERON:0002222 ! perichondrium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000551 ! -property_value: IAO:0000589 "endolymphatic sac (amphibian)" xsd:string -intersection_of: UBERON:0002223 ! endolymphatic sac -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000545 ! -property_value: IAO:0000589 "rib (amphibian)" xsd:string -intersection_of: UBERON:0002228 ! rib -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010162 ! -property_value: IAO:0000589 "olfactory gland (amphibian)" xsd:string -intersection_of: UBERON:0002232 ! olfactory gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010151 ! -property_value: IAO:0000589 "spinal cord (amphibian)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010169 ! -property_value: IAO:0000589 "chondrocranium (amphibian)" xsd:string -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000461 ! -property_value: IAO:0000589 "premaxilla (amphibian)" xsd:string -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000997 ! -property_value: IAO:0000589 "vomeronasal organ (amphibian)" xsd:string -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010165 ! -property_value: IAO:0000589 "olfactory bulb (amphibian)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010180 ! -property_value: IAO:0000589 "olfactory organ (amphibian)" xsd:string -intersection_of: UBERON:0002268 ! olfactory organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000327 ! -property_value: IAO:0000589 "notochord (amphibian)" xsd:string -intersection_of: UBERON:0002328 ! notochord -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010569 ! -property_value: IAO:0000589 "somite (amphibian)" xsd:string -intersection_of: UBERON:0002329 ! somite -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010578 ! -property_value: IAO:0000589 "neural crest (amphibian)" xsd:string -intersection_of: UBERON:0002342 ! neural crest -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011074 ! -property_value: IAO:0000589 "neurectoderm (amphibian)" xsd:string -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010409 ! -property_value: IAO:0000589 "epicardium (amphibian)" xsd:string -intersection_of: UBERON:0002348 ! epicardium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010410 ! -property_value: IAO:0000589 "myocardium (amphibian)" xsd:string -intersection_of: UBERON:0002349 ! myocardium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010814 ! -property_value: IAO:0000589 "peritoneum (amphibian)" xsd:string -intersection_of: UBERON:0002358 ! peritoneum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010551 ! -property_value: IAO:0000589 "adrenal gland (amphibian)" xsd:string -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010548 ! -property_value: IAO:0000589 "thymus (amphibian)" xsd:string -intersection_of: UBERON:0002370 ! thymus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011007 ! -property_value: IAO:0000589 "bone marrow (amphibian)" xsd:string -intersection_of: UBERON:0002371 ! bone marrow -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000675 ! -property_value: IAO:0000589 "cricoid cartilage (amphibian)" xsd:string -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000107 ! -property_value: IAO:0000589 "cranial muscle (amphibian)" xsd:string -intersection_of: UBERON:0002376 ! cranial muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010789 ! -property_value: IAO:0000589 "rectus abdominis muscle (amphibian)" xsd:string -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000098 ! -property_value: IAO:0000589 "connective tissue (amphibian)" xsd:string -intersection_of: UBERON:0002384 ! connective tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000306 ! -property_value: IAO:0000589 "muscle tissue (amphibian)" xsd:string -intersection_of: UBERON:0002385 ! muscle tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000857 ! -property_value: IAO:0000589 "manual digit (amphibian)" xsd:string -intersection_of: UBERON:0002389 ! manual digit -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011002 ! -property_value: IAO:0000589 "hematopoietic system (amphibian)" xsd:string -intersection_of: UBERON:0002390 ! hematopoietic system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000643 ! -property_value: IAO:0000589 "nasolacrimal duct (amphibian)" xsd:string -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000146 ! -property_value: IAO:0000589 "pharyngotympanic tube (amphibian)" xsd:string -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011016 ! -property_value: IAO:0000589 "pharyngotympanic tube (amphibian)" xsd:string -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011019 ! -property_value: IAO:0000589 "bile duct (amphibian)" xsd:string -intersection_of: UBERON:0002394 ! bile duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000633 ! -property_value: IAO:0000589 "vomer (amphibian)" xsd:string -intersection_of: UBERON:0002396 ! vomer -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000285 ! -property_value: IAO:0000589 "maxilla (amphibian)" xsd:string -intersection_of: UBERON:0002397 ! maxilla -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010803 ! -property_value: IAO:0000589 "manus (amphibian)" xsd:string -intersection_of: UBERON:0002398 ! manus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011003 ! -property_value: IAO:0000589 "immune system (amphibian)" xsd:string -intersection_of: UBERON:0002405 ! immune system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010817 ! -property_value: IAO:0000589 "pericardium (amphibian)" xsd:string -intersection_of: UBERON:0002407 ! pericardium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000033 ! -property_value: IAO:0000589 "autonomic nervous system (amphibian)" xsd:string -intersection_of: UBERON:0002410 ! autonomic nervous system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000691 ! -property_value: IAO:0000589 "vertebra (amphibian)" xsd:string -intersection_of: UBERON:0002412 ! vertebra -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000060 ! -property_value: IAO:0000589 "cartilage tissue (amphibian)" xsd:string -intersection_of: UBERON:0002418 ! cartilage tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011043 ! -property_value: IAO:0000589 "fourth ventricle (amphibian)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011056 ! -property_value: IAO:0000589 "hepatobiliary system (amphibian)" xsd:string -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010357 ! -property_value: IAO:0000589 "oral epithelium (amphibian)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000845 ! -property_value: IAO:0000589 "ulnare (amphibian)" xsd:string -intersection_of: UBERON:0002445 ! ulnare -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000345 ! -property_value: IAO:0000589 "orbitosphenoid (amphibian)" xsd:string -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010610 ! -property_value: IAO:0000589 "glottis (amphibian)" xsd:string -intersection_of: UBERON:0002486 ! glottis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000826 ! -property_value: IAO:0000589 "acromion (amphibian)" xsd:string -intersection_of: UBERON:0002497 ! acromion -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000736 ! -property_value: IAO:0000589 "deltopectoral crest (amphibian)" xsd:string -intersection_of: UBERON:0002498 ! deltopectoral crest -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010776 ! -property_value: IAO:0000589 "endochondral bone (amphibian)" xsd:string -intersection_of: UBERON:0002513 ! endochondral bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000212 ! -property_value: IAO:0000589 "gland (amphibian)" xsd:string -intersection_of: UBERON:0002530 ! gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011104 ! -property_value: IAO:0000589 "post-anal tail bud (amphibian)" xsd:string -intersection_of: UBERON:0002533 ! post-anal tail bud -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010171 ! -property_value: IAO:0000589 "gill (amphibian)" xsd:string -intersection_of: UBERON:0002535 ! gill -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011050 ! -property_value: IAO:0000589 "hatching gland (amphibian)" xsd:string -intersection_of: UBERON:0002538 ! hatching gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010359 ! -property_value: IAO:0000589 "pharyngeal arch (amphibian)" xsd:string -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000269 ! -property_value: IAO:0000589 "lateral line system (amphibian)" xsd:string -intersection_of: UBERON:0002540 ! lateral line system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000975 ! -property_value: IAO:0000589 "lateral line system (amphibian)" xsd:string -intersection_of: UBERON:0002540 ! lateral line system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000211 ! -property_value: IAO:0000589 "germ ring (amphibian)" xsd:string -intersection_of: UBERON:0002541 ! germ ring -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011126 ! -property_value: IAO:0000589 "digit (amphibian)" xsd:string -intersection_of: UBERON:0002544 ! digit -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010466 ! -property_value: IAO:0000589 "cranial placode (amphibian)" xsd:string -intersection_of: UBERON:0002546 ! cranial placode -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010714 ! -property_value: IAO:0000589 "anconeus muscle (amphibian)" xsd:string -intersection_of: UBERON:0002989 ! anconeus muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011127 ! -property_value: IAO:0000589 "septum (amphibian)" xsd:string -intersection_of: UBERON:0003037 ! septum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011076 ! -property_value: IAO:0000589 "olfactory placode (amphibian)" xsd:string -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011080 ! -property_value: IAO:0000589 "ear vesicle (amphibian)" xsd:string -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011064 ! -property_value: IAO:0000589 "midbrain-hindbrain boundary (amphibian)" xsd:string -intersection_of: UBERON:0003052 ! midbrain-hindbrain boundary -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011112 ! -property_value: IAO:0000589 "ventricular zone (amphibian)" xsd:string -intersection_of: UBERON:0003053 ! ventricular zone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011097 ! -property_value: IAO:0000589 "roof plate (amphibian)" xsd:string -intersection_of: UBERON:0003054 ! roof plate -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011084 ! -property_value: IAO:0000589 "pre-chordal neural plate (amphibian)" xsd:string -intersection_of: UBERON:0003056 ! pre-chordal neural plate -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000733 ! -property_value: IAO:0000589 "hypochord (amphibian)" xsd:string -intersection_of: UBERON:0003058 ! hypochord -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011086 ! -property_value: IAO:0000589 "presomitic mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0003059 ! presomitic mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011088 ! -property_value: IAO:0000589 "pronephric duct (amphibian)" xsd:string -intersection_of: UBERON:0003060 ! pronephric duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011006 ! -property_value: IAO:0000589 "blood island (amphibian)" xsd:string -intersection_of: UBERON:0003061 ! blood island -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000346 ! -property_value: IAO:0000589 "primitive knot (amphibian)" xsd:string -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011085 ! -property_value: IAO:0000589 "prechordal plate (amphibian)" xsd:string -intersection_of: UBERON:0003063 ! prechordal plate -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010575 ! -property_value: IAO:0000589 "intermediate mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010342 ! -property_value: IAO:0000589 "ciliary marginal zone (amphibian)" xsd:string -intersection_of: UBERON:0003065 ! ciliary marginal zone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010363 ! -property_value: IAO:0000589 "pharyngeal arch 2 (amphibian)" xsd:string -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011017 ! -property_value: IAO:0000589 "axial mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0003068 ! axial mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011079 ! -property_value: IAO:0000589 "otic placode (amphibian)" xsd:string -intersection_of: UBERON:0003069 ! otic placode -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011038 ! -property_value: IAO:0000589 "eye primordium (amphibian)" xsd:string -intersection_of: UBERON:0003071 ! eye primordium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011055 ! -property_value: IAO:0000589 "lens placode (amphibian)" xsd:string -intersection_of: UBERON:0003073 ! lens placode -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000637 ! -property_value: IAO:0000589 "mesonephric duct (amphibian)" xsd:string -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011072 ! -property_value: IAO:0000589 "neural plate (amphibian)" xsd:string -intersection_of: UBERON:0003075 ! neural plate -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011082 ! -property_value: IAO:0000589 "posterior neural tube (amphibian)" xsd:string -intersection_of: UBERON:0003076 ! posterior neural tube -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010568 ! -property_value: IAO:0000589 "paraxial mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011036 ! -property_value: IAO:0000589 "epibranchial placode (amphibian)" xsd:string -intersection_of: UBERON:0003078 ! epibranchial placode -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011041 ! -property_value: IAO:0000589 "floor plate (amphibian)" xsd:string -intersection_of: UBERON:0003079 ! floor plate -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011012 ! -property_value: IAO:0000589 "anterior neural tube (amphibian)" xsd:string -intersection_of: UBERON:0003080 ! anterior neural tube -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010574 ! -property_value: IAO:0000589 "lateral plate mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011067 ! -property_value: IAO:0000589 "myotome (amphibian)" xsd:string -intersection_of: UBERON:0003082 ! myotome -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010582 ! -property_value: IAO:0000589 "trunk neural crest (amphibian)" xsd:string -intersection_of: UBERON:0003083 ! trunk neural crest -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011044 ! -property_value: IAO:0000589 "heart primordium (amphibian)" xsd:string -intersection_of: UBERON:0003084 ! heart primordium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010412 ! -property_value: IAO:0000589 "ventral aorta (amphibian)" xsd:string -intersection_of: UBERON:0003085 ! ventral aorta -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011023 ! -property_value: IAO:0000589 "caudal artery (amphibian)" xsd:string -intersection_of: UBERON:0003086 ! caudal artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011011 ! -property_value: IAO:0000589 "anterior cardinal vein (amphibian)" xsd:string -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011025 ! -property_value: IAO:0000589 "caudal vein (amphibian)" xsd:string -intersection_of: UBERON:0003088 ! caudal vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010571 ! -property_value: IAO:0000589 "sclerotome (amphibian)" xsd:string -intersection_of: UBERON:0003089 ! sclerotome -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011103 ! -property_value: IAO:0000589 "supraorbital lateral line (amphibian)" xsd:string -intersection_of: UBERON:0003090 ! supraorbital lateral line -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011106 ! -property_value: IAO:0000589 "thyroid primordium (amphibian)" xsd:string -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010547 ! -property_value: IAO:0000589 "ultimobranchial body (amphibian)" xsd:string -intersection_of: UBERON:0003092 ! ultimobranchial body -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011075 ! -property_value: IAO:0000589 "occipital lateral line (amphibian)" xsd:string -intersection_of: UBERON:0003093 ! occipital lateral line -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011053 ! -property_value: IAO:0000589 "infraorbital lateral line (amphibian)" xsd:string -intersection_of: UBERON:0003094 ! infraorbital lateral line -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011030 ! -property_value: IAO:0000589 "dorsal lateral line (amphibian)" xsd:string -intersection_of: UBERON:0003095 ! dorsal lateral line -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010378 ! -property_value: IAO:0000589 "dorsal fin (amphibian)" xsd:string -intersection_of: UBERON:0003097 ! dorsal fin -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011077 ! -property_value: IAO:0000589 "optic stalk (amphibian)" xsd:string -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010580 ! -property_value: IAO:0000589 "cranial neural crest (amphibian)" xsd:string -intersection_of: UBERON:0003099 ! cranial neural crest -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010030 ! -property_value: IAO:0000589 "female organism (amphibian)" xsd:string -intersection_of: UBERON:0003100 ! female organism -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010033 ! -property_value: IAO:0000589 "male organism (amphibian)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010337 ! -property_value: IAO:0000589 "surface structure (amphibian)" xsd:string -intersection_of: UBERON:0003102 ! surface structure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010015 ! -property_value: IAO:0000589 "compound organ (amphibian)" xsd:string -intersection_of: UBERON:0003103 ! compound organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010427 ! -property_value: IAO:0000589 "mesenchyme (amphibian)" xsd:string -intersection_of: UBERON:0003104 ! mesenchyme -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011008 ! -property_value: IAO:0000589 "dorsal lateral plate region (amphibian)" xsd:string -intersection_of: UBERON:0003105 ! dorsal lateral plate region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000732 ! -property_value: IAO:0000589 "urostyle (amphibian)" xsd:string -intersection_of: UBERON:0003106 ! urostyle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000289 ! -property_value: IAO:0000589 "Meckel's cartilage (amphibian)" xsd:string -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000596 ! -property_value: IAO:0000589 "suspensorium (amphibian)" xsd:string -intersection_of: UBERON:0003108 ! suspensorium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000708 ! -property_value: IAO:0000589 "parapophysis (amphibian)" xsd:string -intersection_of: UBERON:0003109 ! parapophysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010208 ! -property_value: IAO:0000589 "otic region (amphibian)" xsd:string -intersection_of: UBERON:0003110 ! otic region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010207 ! -property_value: IAO:0000589 "sphenoid region (amphibian)" xsd:string -intersection_of: UBERON:0003111 ! sphenoid region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010206 ! -property_value: IAO:0000589 "olfactory region (amphibian)" xsd:string -intersection_of: UBERON:0003112 ! olfactory region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010154 ! -property_value: IAO:0000589 "dermatocranium (amphibian)" xsd:string -intersection_of: UBERON:0003113 ! dermatocranium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010365 ! -property_value: IAO:0000589 "pharyngeal arch 3 (amphibian)" xsd:string -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010366 ! -property_value: IAO:0000589 "pharyngeal arch 4 (amphibian)" xsd:string -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010367 ! -property_value: IAO:0000589 "pharyngeal arch 5 (amphibian)" xsd:string -intersection_of: UBERON:0003116 ! pharyngeal arch 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010368 ! -property_value: IAO:0000589 "pharyngeal arch 6 (amphibian)" xsd:string -intersection_of: UBERON:0003117 ! pharyngeal arch 6 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010415 ! -property_value: IAO:0000589 "pharyngeal arch artery 1 (amphibian)" xsd:string -intersection_of: UBERON:0003118 ! pharyngeal arch artery 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010418 ! -property_value: IAO:0000589 "pharyngeal arch artery 2 (amphibian)" xsd:string -intersection_of: UBERON:0003119 ! pharyngeal arch artery 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010419 ! -property_value: IAO:0000589 "pharyngeal arch artery 3 (amphibian)" xsd:string -intersection_of: UBERON:0003120 ! pharyngeal arch artery 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010420 ! -property_value: IAO:0000589 "pharyngeal arch artery 4 (amphibian)" xsd:string -intersection_of: UBERON:0003121 ! pharyngeal arch artery 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010421 ! -property_value: IAO:0000589 "pharyngeal arch artery 5 (amphibian)" xsd:string -intersection_of: UBERON:0003122 ! pharyngeal arch artery 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010422 ! -property_value: IAO:0000589 "pharyngeal arch artery 6 (amphibian)" xsd:string -intersection_of: UBERON:0003123 ! pharyngeal arch artery 6 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010332 ! -property_value: IAO:0000589 "vitelline membrane (amphibian)" xsd:string -intersection_of: UBERON:0003125 ! vitelline membrane -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010140 ! -property_value: IAO:0000589 "trachea (amphibian)" xsd:string -intersection_of: UBERON:0003126 ! trachea -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000622 ! -property_value: IAO:0000589 "skeleton of upper jaw (amphibian)" xsd:string -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000274 ! -property_value: IAO:0000589 "skeleton of lower jaw (amphibian)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000157 ! -property_value: IAO:0000589 "gonadal fat pad (amphibian)" xsd:string -intersection_of: UBERON:0003428 ! gonadal fat pad -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011105 ! -property_value: IAO:0000589 "tail vein (amphibian)" xsd:string -intersection_of: UBERON:0003481 ! tail vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010640 ! -property_value: IAO:0000589 "manual digit 2 (amphibian)" xsd:string -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010641 ! -property_value: IAO:0000589 "manual digit 3 (amphibian)" xsd:string -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010642 ! -property_value: IAO:0000589 "manual digit 4 (amphibian)" xsd:string -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010643 ! -property_value: IAO:0000589 "manual digit 5 (amphibian)" xsd:string -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010644 ! -property_value: IAO:0000589 "pedal digit 1 (amphibian)" xsd:string -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010645 ! -property_value: IAO:0000589 "pedal digit 2 (amphibian)" xsd:string -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010646 ! -property_value: IAO:0000589 "pedal digit 3 (amphibian)" xsd:string -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010656 ! -property_value: IAO:0000589 "pedal digit 4 (amphibian)" xsd:string -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010658 ! -property_value: IAO:0000589 "pedal digit 5 (amphibian)" xsd:string -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010616 ! -property_value: IAO:0000589 "metacarpal bone of digit 1 (amphibian)" xsd:string -intersection_of: UBERON:0003645 ! metacarpal bone of digit 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000853 ! -property_value: IAO:0000589 "metacarpal bone of digit 2 (amphibian)" xsd:string -intersection_of: UBERON:0003646 ! metacarpal bone of digit 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000854 ! -property_value: IAO:0000589 "metacarpal bone of digit 3 (amphibian)" xsd:string -intersection_of: UBERON:0003647 ! metacarpal bone of digit 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010615 ! -property_value: IAO:0000589 "metacarpal bone of digit 4 (amphibian)" xsd:string -intersection_of: UBERON:0003648 ! metacarpal bone of digit 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000855 ! -property_value: IAO:0000589 "metacarpal bone of digit 5 (amphibian)" xsd:string -intersection_of: UBERON:0003649 ! metacarpal bone of digit 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000925 ! -property_value: IAO:0000589 "metatarsal bone of digit 1 (amphibian)" xsd:string -intersection_of: UBERON:0003650 ! metatarsal bone of digit 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000926 ! -property_value: IAO:0000589 "metatarsal bone of digit 2 (amphibian)" xsd:string -intersection_of: UBERON:0003651 ! metatarsal bone of digit 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000927 ! -property_value: IAO:0000589 "metatarsal bone of digit 3 (amphibian)" xsd:string -intersection_of: UBERON:0003652 ! metatarsal bone of digit 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000928 ! -property_value: IAO:0000589 "metatarsal bone of digit 4 (amphibian)" xsd:string -intersection_of: UBERON:0003653 ! metatarsal bone of digit 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000929 ! -property_value: IAO:0000589 "metatarsal bone of digit 5 (amphibian)" xsd:string -intersection_of: UBERON:0003654 ! metatarsal bone of digit 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000204 ! -property_value: IAO:0000589 "forelimb muscle (amphibian)" xsd:string -intersection_of: UBERON:0003662 ! forelimb muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000222 ! -property_value: IAO:0000589 "hindlimb muscle (amphibian)" xsd:string -intersection_of: UBERON:0003663 ! hindlimb muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000081 ! -property_value: IAO:0000589 "post-anal tail muscle (amphibian)" xsd:string -intersection_of: UBERON:0003665 ! post-anal tail muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000126 ! -property_value: IAO:0000589 "dentition (amphibian)" xsd:string -intersection_of: UBERON:0003672 ! dentition -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010826 ! -property_value: IAO:0000589 "foramen magnum (amphibian)" xsd:string -intersection_of: UBERON:0003687 ! foramen magnum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000769 ! -property_value: IAO:0000589 "pubic symphysis (amphibian)" xsd:string -intersection_of: UBERON:0003699 ! pubic symphysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000325 ! -property_value: IAO:0000589 "neural tissue (amphibian)" xsd:string -intersection_of: UBERON:0003714 ! neural tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010754 ! -property_value: IAO:0000589 "recurrent laryngeal nerve (amphibian)" xsd:string -intersection_of: UBERON:0003716 ! recurrent laryngeal nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000199 ! -property_value: IAO:0000589 "forelimb stylopod (amphibian)" xsd:string -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011073 ! -property_value: IAO:0000589 "neural tube lumen (amphibian)" xsd:string -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011027 ! -property_value: IAO:0000589 "dental epithelium (amphibian)" xsd:string -intersection_of: UBERON:0003843 ! dental epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010490 ! -property_value: IAO:0000589 "thyroid artery (amphibian)" xsd:string -intersection_of: UBERON:0003847 ! thyroid artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000725 ! -property_value: IAO:0000589 "neural arch (amphibian)" xsd:string -intersection_of: UBERON:0003861 ! neural arch -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010141 ! -property_value: IAO:0000589 "Mullerian duct (amphibian)" xsd:string -intersection_of: UBERON:0003890 ! Mullerian duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011058 ! -property_value: IAO:0000589 "liver primordium (amphibian)" xsd:string -intersection_of: UBERON:0003894 ! liver primordium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011095 ! -property_value: IAO:0000589 "retinal neural layer (amphibian)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011031 ! -property_value: IAO:0000589 "dorsal pancreatic bud (amphibian)" xsd:string -intersection_of: UBERON:0003923 ! dorsal pancreatic bud -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011111 ! -property_value: IAO:0000589 "ventral pancreatic bud (amphibian)" xsd:string -intersection_of: UBERON:0003924 ! ventral pancreatic bud -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010250 ! -property_value: IAO:0000589 "conus arteriosus (amphibian)" xsd:string -intersection_of: UBERON:0003983 ! conus arteriosus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011028 ! -property_value: IAO:0000589 "dermatome (amphibian)" xsd:string -intersection_of: UBERON:0004016 ! dermatome -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010561 ! -property_value: IAO:0000589 "neural tube basal plate (amphibian)" xsd:string -intersection_of: UBERON:0004064 ! neural tube basal plate -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010215 ! -property_value: IAO:0000589 "vena cava (amphibian)" xsd:string -intersection_of: UBERON:0004087 ! vena cava -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000721 ! -property_value: IAO:0000589 "odontoid process of cervical vertebra 2 (amphibian)" xsd:string -intersection_of: UBERON:0004096 ! odontoid process of cervical vertebra 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011113 ! -property_value: IAO:0000589 "pharyngeal pouch (amphibian)" xsd:string -intersection_of: UBERON:0004117 ! pharyngeal pouch -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000624 ! -property_value: IAO:0000589 "genitourinary system (amphibian)" xsd:string -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011039 ! -property_value: IAO:0000589 "optic vesicle (amphibian)" xsd:string -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010411 ! -property_value: IAO:0000589 "heart tube (amphibian)" xsd:string -intersection_of: UBERON:0004141 ! heart tube -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000156 ! -property_value: IAO:0000589 "eye muscle (amphibian)" xsd:string -intersection_of: UBERON:0004277 ! eye muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010572 ! -property_value: IAO:0000589 "dermomyotome (amphibian)" xsd:string -intersection_of: UBERON:0004290 ! dermomyotome -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010676 ! -property_value: IAO:0000589 "distal phalanx (amphibian)" xsd:string -intersection_of: UBERON:0004300 ! distal phalanx -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010677 ! -property_value: IAO:0000589 "middle phalanx (amphibian)" xsd:string -intersection_of: UBERON:0004301 ! middle phalanx -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010680 ! -property_value: IAO:0000589 "proximal phalanx (amphibian)" xsd:string -intersection_of: UBERON:0004302 ! proximal phalanx -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011022 ! -property_value: IAO:0000589 "cardinal vein (amphibian)" xsd:string -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010375 ! -property_value: IAO:0000589 "limb bud (amphibian)" xsd:string -intersection_of: UBERON:0004347 ! limb bud -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010760 ! -property_value: IAO:0000589 "apical ectodermal ridge (amphibian)" xsd:string -intersection_of: UBERON:0004356 ! apical ectodermal ridge -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010364 ! -property_value: IAO:0000589 "pharyngeal arch 1 (amphibian)" xsd:string -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010414 ! -property_value: IAO:0000589 "pharyngeal arch artery (amphibian)" xsd:string -intersection_of: UBERON:0004363 ! pharyngeal arch artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000893 ! -property_value: IAO:0000589 "distal epiphysis of femur (amphibian)" xsd:string -intersection_of: UBERON:0004406 ! distal epiphysis of femur -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010493 ! -property_value: IAO:0000589 "cerebral artery (amphibian)" xsd:string -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011046 ! -property_value: IAO:0000589 "gastric vein (amphibian)" xsd:string -intersection_of: UBERON:0004450 ! gastric vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000091 ! -property_value: IAO:0000589 "musculature of neck (amphibian)" xsd:string -intersection_of: UBERON:0004465 ! musculature of neck -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000427 ! -property_value: IAO:0000589 "musculature of pelvic girdle (amphibian)" xsd:string -intersection_of: UBERON:0004470 ! musculature of pelvic girdle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000423 ! -property_value: IAO:0000589 "musculature of pectoral girdle (amphibian)" xsd:string -intersection_of: UBERON:0004471 ! musculature of pectoral girdle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011572 ! -property_value: IAO:0000589 "musculature of trunk (amphibian)" xsd:string -intersection_of: UBERON:0004479 ! musculature of trunk -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000396 ! -property_value: IAO:0000589 "alveolar process of maxilla (amphibian)" xsd:string -intersection_of: UBERON:0004527 ! alveolar process of maxilla -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010278 ! -property_value: IAO:0000589 "anatomical projection (amphibian)" xsd:string -intersection_of: UBERON:0004529 ! anatomical projection -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011001 ! -property_value: IAO:0000589 "cardiovascular system (amphibian)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010143 ! -property_value: IAO:0000589 "otic capsule (amphibian)" xsd:string -intersection_of: UBERON:0004637 ! otic capsule -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010086 ! -property_value: IAO:0000589 "sphenoid bone pterygoid process (amphibian)" xsd:string -intersection_of: UBERON:0004649 ! sphenoid bone pterygoid process -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000695 ! -property_value: IAO:0000589 "vertebra lamina (amphibian)" xsd:string -intersection_of: UBERON:0004662 ! vertebra lamina -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010439 ! -property_value: IAO:0000589 "bone fossa (amphibian)" xsd:string -intersection_of: UBERON:0004704 ! bone fossa -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010430 ! -property_value: IAO:0000589 "archenteron (amphibian)" xsd:string -intersection_of: UBERON:0004735 ! archenteron -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011049 ! -property_value: IAO:0000589 "pronephric glomerulus (amphibian)" xsd:string -intersection_of: UBERON:0004739 ! pronephric glomerulus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000686 ! -property_value: IAO:0000589 "basibranchial bone (amphibian)" xsd:string -intersection_of: UBERON:0004740 ! basibranchial bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000750 ! -property_value: IAO:0000589 "cleithrum (amphibian)" xsd:string -intersection_of: UBERON:0004741 ! cleithrum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000124 ! -property_value: IAO:0000589 "dentary (amphibian)" xsd:string -intersection_of: UBERON:0004742 ! dentary -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000764 ! -property_value: IAO:0000589 "coracoid bone (amphibian)" xsd:string -intersection_of: UBERON:0004743 ! coracoid bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000028 ! -property_value: IAO:0000589 "articular/anguloarticular (amphibian)" xsd:string -intersection_of: UBERON:0004744 ! articular/anguloarticular -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000385 ! -property_value: IAO:0000589 "parasphenoid (amphibian)" xsd:string -intersection_of: UBERON:0004745 ! parasphenoid -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000514 ! -property_value: IAO:0000589 "prootic bone (amphibian)" xsd:string -intersection_of: UBERON:0004746 ! prootic bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000043 ! -property_value: IAO:0000589 "blastodisc (amphibian)" xsd:string -intersection_of: UBERON:0004749 ! blastodisc -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000042 ! -property_value: IAO:0000589 "blastoderm (amphibian)" xsd:string -intersection_of: UBERON:0004750 ! blastoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000958 ! -property_value: IAO:0000589 "hypohyal bone (amphibian)" xsd:string -intersection_of: UBERON:0004751 ! hypohyal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000379 ! -property_value: IAO:0000589 "palatoquadrate cartilage (amphibian)" xsd:string -intersection_of: UBERON:0004752 ! palatoquadrate cartilage -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000781 ! -property_value: IAO:0000589 "scapulocoracoid (amphibian)" xsd:string -intersection_of: UBERON:0004753 ! scapulocoracoid -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000094 ! -property_value: IAO:0000589 "cartilaginous neurocranium (amphibian)" xsd:string -intersection_of: UBERON:0004761 ! cartilaginous neurocranium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010153 ! -property_value: IAO:0000589 "cartilaginous neurocranium (amphibian)" xsd:string -intersection_of: UBERON:0004761 ! cartilaginous neurocranium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011129 ! -property_value: IAO:0000589 "skeletal element (amphibian)" xsd:string -intersection_of: UBERON:0004765 ! skeletal element -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000635 ! -property_value: IAO:0000589 "vomerine tooth (amphibian)" xsd:string -intersection_of: UBERON:0004767 ! vomerine tooth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000093 ! -property_value: IAO:0000589 "posterior nasal aperture (amphibian)" xsd:string -intersection_of: UBERON:0004771 ! posterior nasal aperture -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000343 ! -property_value: IAO:0000589 "orbital cavity (amphibian)" xsd:string -intersection_of: UBERON:0004867 ! orbital cavity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011100 ! -property_value: IAO:0000589 "somatic layer of lateral plate mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0004871 ! somatic layer of lateral plate mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011102 ! -property_value: IAO:0000589 "splanchnic layer of lateral plate mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0004872 ! splanchnic layer of lateral plate mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010448 ! -property_value: IAO:0000589 "marginal zone of embryo (amphibian)" xsd:string -intersection_of: UBERON:0004879 ! marginal zone of embryo -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000478 ! -property_value: IAO:0000589 "chordamesoderm (amphibian)" xsd:string -intersection_of: UBERON:0004880 ! chordamesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011071 ! -property_value: IAO:0000589 "neural groove (amphibian)" xsd:string -intersection_of: UBERON:0005061 ! neural groove -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010373 ! -property_value: IAO:0000589 "embryonic cement gland (amphibian)" xsd:string -intersection_of: UBERON:0005093 ! embryonic cement gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011000 ! -property_value: IAO:0000589 "multi cell part structure (amphibian)" xsd:string -intersection_of: UBERON:0005162 ! multi cell part structure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011047 ! -property_value: IAO:0000589 "gonadal ridge (amphibian)" xsd:string -intersection_of: UBERON:0005294 ! gonadal ridge -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011069 ! -property_value: IAO:0000589 "nephrostome (amphibian)" xsd:string -intersection_of: UBERON:0005308 ! nephrostome -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011091 ! -property_value: IAO:0000589 "pronephric nephron (amphibian)" xsd:string -intersection_of: UBERON:0005309 ! pronephric nephron -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010390 ! -property_value: IAO:0000589 "mesonephric collecting duct (amphibian)" xsd:string -intersection_of: UBERON:0005319 ! mesonephric collecting duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010387 ! -property_value: IAO:0000589 "mesonephric nephron (amphibian)" xsd:string -intersection_of: UBERON:0005322 ! mesonephric nephron -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011062 ! -property_value: IAO:0000589 "mesonephric mesenchyme (amphibian)" xsd:string -intersection_of: UBERON:0005323 ! mesonephric mesenchyme -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010388 ! -property_value: IAO:0000589 "mesonephric glomerulus (amphibian)" xsd:string -intersection_of: UBERON:0005325 ! mesonephric glomerulus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011094 ! -property_value: IAO:0000589 "Rathke's pouch (amphibian)" xsd:string -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010217 ! -property_value: IAO:0000589 "carotid artery segment (amphibian)" xsd:string -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011026 ! -property_value: IAO:0000589 "optic fissure (amphibian)" xsd:string -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010763 ! -property_value: IAO:0000589 "zone of polarizing activity (amphibian)" xsd:string -intersection_of: UBERON:0005414 ! zone of polarizing activity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010381 ! -property_value: IAO:0000589 "forelimb bud (amphibian)" xsd:string -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010382 ! -property_value: IAO:0000589 "hindlimb bud (amphibian)" xsd:string -intersection_of: UBERON:0005418 ! hindlimb bud -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000194 ! -property_value: IAO:0000589 "foramen rotundum (amphibian)" xsd:string -intersection_of: UBERON:0005446 ! foramen rotundum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000249 ! -property_value: IAO:0000589 "jugular foramen (amphibian)" xsd:string -intersection_of: UBERON:0005456 ! jugular foramen -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010689 ! -property_value: IAO:0000589 "levator scapulae muscle (amphibian)" xsd:string -intersection_of: UBERON:0005461 ! levator scapulae muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011059 ! -property_value: IAO:0000589 "lung primordium (amphibian)" xsd:string -intersection_of: UBERON:0005597 ! lung primordium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010385 ! -property_value: IAO:0000589 "trunk somite (amphibian)" xsd:string -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011090 ! -property_value: IAO:0000589 "pronephric mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0005721 ! pronephric mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000334 ! -property_value: IAO:0000589 "olfactory system (amphibian)" xsd:string -intersection_of: UBERON:0005725 ! olfactory system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000978 ! -property_value: IAO:0000589 "olfactory system (amphibian)" xsd:string -intersection_of: UBERON:0005725 ! olfactory system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010438 ! -property_value: IAO:0000589 "bone foramen (amphibian)" xsd:string -intersection_of: UBERON:0005744 ! bone foramen -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000342 ! -property_value: IAO:0000589 "optic foramen (amphibian)" xsd:string -intersection_of: UBERON:0005745 ! optic foramen -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010596 ! -property_value: IAO:0000589 "basement membrane of epithelium (amphibian)" xsd:string -intersection_of: UBERON:0005769 ! basement membrane of epithelium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011029 ! -property_value: IAO:0000589 "dorsal aorta (amphibian)" xsd:string -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010605 ! -property_value: IAO:0000589 "tubercle (amphibian)" xsd:string -intersection_of: UBERON:0005813 ! tubercle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011068 ! -property_value: IAO:0000589 "olfactory pit (amphibian)" xsd:string -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000413 ! -property_value: IAO:0000589 "palatine process of maxilla (amphibian)" xsd:string -intersection_of: UBERON:0005871 ! palatine process of maxilla -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010623 ! -property_value: IAO:0000589 "pharyngeal cleft (amphibian)" xsd:string -intersection_of: UBERON:0005879 ! pharyngeal cleft -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000665 ! -property_value: IAO:0000589 "hyoid arch skeleton (amphibian)" xsd:string -intersection_of: UBERON:0005884 ! hyoid arch skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010370 ! -property_value: IAO:0000589 "hyoid arch skeleton (amphibian)" xsd:string -intersection_of: UBERON:0005884 ! hyoid arch skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010391 ! -property_value: IAO:0000589 "mesonephric early distal tubule (amphibian)" xsd:string -intersection_of: UBERON:0005892 ! mesonephric early distal tubule -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010199 ! -property_value: IAO:0000589 "occipital region (amphibian)" xsd:string -intersection_of: UBERON:0005902 ! occipital region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000024 ! -property_value: IAO:0000589 "external naris (amphibian)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000983 ! -property_value: IAO:0000589 "external naris (amphibian)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010358 ! -property_value: IAO:0000589 "external naris (amphibian)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000963 ! -property_value: IAO:0000589 "axial skeleton plus cranial skeleton (amphibian)" xsd:string -intersection_of: UBERON:0005944 ! axial skeleton plus cranial skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000739 ! -property_value: IAO:0000589 "process of vertebra (amphibian)" xsd:string -intersection_of: UBERON:0006061 ! process of vertebra -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000710 ! -property_value: IAO:0000589 "zygapophysis (amphibian)" xsd:string -intersection_of: UBERON:0006062 ! zygapophysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000726 ! -property_value: IAO:0000589 "hemal arch (amphibian)" xsd:string -intersection_of: UBERON:0006065 ! hemal arch -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000092 ! -property_value: IAO:0000589 "cervical region of vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000612 ! -property_value: IAO:0000589 "thoracic region of vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000724 ! -property_value: IAO:0000589 "sacral region of vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000082 ! -property_value: IAO:0000589 "caudal region of vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0006076 ! caudal region of vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011092 ! -property_value: IAO:0000589 "pronephric sinus (amphibian)" xsd:string -intersection_of: UBERON:0006174 ! pronephric sinus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011063 ! -property_value: IAO:0000589 "mesonephric sinus (amphibian)" xsd:string -intersection_of: UBERON:0006196 ! mesonephric sinus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010117 ! -property_value: IAO:0000589 "inferior oblique extraocular muscle (amphibian)" xsd:string -intersection_of: UBERON:0006320 ! inferior oblique extraocular muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010119 ! -property_value: IAO:0000589 "superior oblique extraocular muscle (amphibian)" xsd:string -intersection_of: UBERON:0006321 ! superior oblique extraocular muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010101 ! -property_value: IAO:0000589 "inferior rectus extraocular muscle (amphibian)" xsd:string -intersection_of: UBERON:0006322 ! inferior rectus extraocular muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010099 ! -property_value: IAO:0000589 "superior rectus extraocular muscle (amphibian)" xsd:string -intersection_of: UBERON:0006323 ! superior rectus extraocular muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000313 ! -property_value: IAO:0000589 "nasal capsule (amphibian)" xsd:string -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011024 ! -property_value: IAO:0000589 "posterior lateral line (amphibian)" xsd:string -intersection_of: UBERON:0006334 ! posterior lateral line -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011034 ! -property_value: IAO:0000589 "distal early tubule (amphibian)" xsd:string -intersection_of: UBERON:0006337 ! distal early tubule -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000040 ! -property_value: IAO:0000589 "basisphenoid bone (amphibian)" xsd:string -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000940 ! -property_value: IAO:0000589 "xiphoid cartilage (amphibian)" xsd:string -intersection_of: UBERON:0006430 ! xiphoid cartilage -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010522 ! -property_value: IAO:0000589 "lymphatic part of lymphoid system (amphibian)" xsd:string -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000471 ! -property_value: IAO:0000589 "presumptive endoderm (amphibian)" xsd:string -intersection_of: UBERON:0006595 ! presumptive endoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000468 ! -property_value: IAO:0000589 "presumptive blood (amphibian)" xsd:string -intersection_of: UBERON:0006596 ! presumptive blood -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000525 ! -property_value: IAO:0000589 "quadrate bone (amphibian)" xsd:string -intersection_of: UBERON:0006597 ! quadrate bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000479 ! -property_value: IAO:0000589 "presumptive structure (amphibian)" xsd:string -intersection_of: UBERON:0006598 ! presumptive structure -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000474 ! -property_value: IAO:0000589 "presumptive hypochord (amphibian)" xsd:string -intersection_of: UBERON:0006599 ! presumptive hypochord -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010625 ! -property_value: IAO:0000589 "presumptive hypochord (amphibian)" xsd:string -intersection_of: UBERON:0006599 ! presumptive hypochord -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000472 ! -property_value: IAO:0000589 "presumptive enteric nervous system (amphibian)" xsd:string -intersection_of: UBERON:0006600 ! presumptive enteric nervous system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000470 ! -property_value: IAO:0000589 "presumptive ectoderm (amphibian)" xsd:string -intersection_of: UBERON:0006601 ! presumptive ectoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000476 ! -property_value: IAO:0000589 "presumptive mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0006603 ! presumptive mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000262 ! -property_value: IAO:0000589 "lamina orbitonasalis (amphibian)" xsd:string -intersection_of: UBERON:0006604 ! lamina orbitonasalis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010129 ! -property_value: IAO:0000589 "tectum synoticum (amphibian)" xsd:string -intersection_of: UBERON:0006605 ! tectum synoticum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000277 ! -property_value: IAO:0000589 "mandibular symphysis (amphibian)" xsd:string -intersection_of: UBERON:0006606 ! mandibular symphysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010514 ! -property_value: IAO:0000589 "lingual vein (amphibian)" xsd:string -intersection_of: UBERON:0006634 ! lingual vein -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000749 ! -property_value: IAO:0000589 "glenoid fossa (amphibian)" xsd:string -intersection_of: UBERON:0006657 ! glenoid fossa -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000693 ! -property_value: IAO:0000589 "vertebral canal (amphibian)" xsd:string -intersection_of: UBERON:0006692 ! vertebral canal -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000902 ! -property_value: IAO:0000589 "tibiofibula (amphibian)" xsd:string -intersection_of: UBERON:0006714 ! tibiofibula -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000901 ! -property_value: IAO:0000589 "radio-ulna (amphibian)" xsd:string -intersection_of: UBERON:0006715 ! radio-ulna -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010730 ! -property_value: IAO:0000589 "pterygoid muscle (amphibian)" xsd:string -intersection_of: UBERON:0006720 ! pterygoid muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000892 ! -property_value: IAO:0000589 "head of femur (amphibian)" xsd:string -intersection_of: UBERON:0006767 ! head of femur -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010267 ! -property_value: IAO:0000589 "anatomical line (amphibian)" xsd:string -intersection_of: UBERON:0006800 ! anatomical line -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000835 ! -property_value: IAO:0000589 "proximal head of humerus (amphibian)" xsd:string -intersection_of: UBERON:0006801 ! proximal head of humerus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000863 ! -property_value: IAO:0000589 "obturator foramen (amphibian)" xsd:string -intersection_of: UBERON:0006803 ! obturator foramen -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000542 ! -property_value: IAO:0000589 "reticular tissue (amphibian)" xsd:string -intersection_of: UBERON:0006804 ! reticular tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000812 ! -property_value: IAO:0000589 "sternal end of clavicle (amphibian)" xsd:string -intersection_of: UBERON:0006805 ! sternal end of clavicle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000782 ! -property_value: IAO:0000589 "entepicondyle of humerus (amphibian)" xsd:string -intersection_of: UBERON:0006806 ! entepicondyle of humerus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000758 ! -property_value: IAO:0000589 "ectepicondyle of humerus (amphibian)" xsd:string -intersection_of: UBERON:0006807 ! ectepicondyle of humerus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000843 ! -property_value: IAO:0000589 "olecranon (amphibian)" xsd:string -intersection_of: UBERON:0006810 ! olecranon -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000330 ! -property_value: IAO:0000589 "occipital condyle (amphibian)" xsd:string -intersection_of: UBERON:0006811 ! occipital condyle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000298 ! -property_value: IAO:0000589 "mental foramen (amphibian)" xsd:string -intersection_of: UBERON:0006812 ! mental foramen -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000320 ! -property_value: IAO:0000589 "nasal skeleton (amphibian)" xsd:string -intersection_of: UBERON:0006813 ! nasal skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000027 ! -property_value: IAO:0000589 "areolar connective tissue (amphibian)" xsd:string -intersection_of: UBERON:0006815 ! areolar connective tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000939 ! -property_value: IAO:0000589 "body of sternum (amphibian)" xsd:string -intersection_of: UBERON:0006820 ! body of sternum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000119 ! -property_value: IAO:0000589 "cutaneous muscle (amphibian)" xsd:string -intersection_of: UBERON:0006821 ! cutaneous muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000912 ! -property_value: IAO:0000589 "medial tibial tarsal bone (amphibian)" xsd:string -intersection_of: UBERON:0006836 ! medial tibial tarsal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000116 ! -property_value: IAO:0000589 "tegmen tympani (amphibian)" xsd:string -intersection_of: UBERON:0006837 ! tegmen tympani -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000751 ! -property_value: IAO:0000589 "scapula (amphibian)" xsd:string -intersection_of: UBERON:0006849 ! scapula -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011051 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000130 ! -property_value: IAO:0000589 "digestive system gland (amphibian)" xsd:string -intersection_of: UBERON:0006925 ! digestive system gland -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010532 ! -property_value: IAO:0000589 "efferent duct (amphibian)" xsd:string -intersection_of: UBERON:0006946 ! efferent duct -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010542 ! -property_value: IAO:0000589 "pars distalis of adenohypophysis (amphibian)" xsd:string -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010266 ! -property_value: IAO:0000589 "anatomical point (amphibian)" xsd:string -intersection_of: UBERON:0006983 ! anatomical point -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011021 ! -property_value: IAO:0000589 "cardiogenic splanchnic mesoderm (amphibian)" xsd:string -intersection_of: UBERON:0007005 ! cardiogenic splanchnic mesoderm -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011114 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (amphibian)" xsd:string -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011115 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (amphibian)" xsd:string -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011116 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (amphibian)" xsd:string -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011117 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (amphibian)" xsd:string -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011118 ! -property_value: IAO:0000589 "pharyngeal pouch 5 (amphibian)" xsd:string -intersection_of: UBERON:0007126 ! pharyngeal pouch 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011119 ! -property_value: IAO:0000589 "pharyngeal pouch 6 (amphibian)" xsd:string -intersection_of: UBERON:0007127 ! pharyngeal pouch 6 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010035 ! -property_value: IAO:0000589 "hermaphroditic organism (amphibian)" xsd:string -intersection_of: UBERON:0007197 ! hermaphroditic organism -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010600 ! -property_value: IAO:0000589 "stratum compactum of dermis (amphibian)" xsd:string -intersection_of: UBERON:0007377 ! stratum compactum of dermis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010579 ! -property_value: IAO:0000589 "egg yolk (amphibian)" xsd:string -intersection_of: UBERON:0007378 ! egg yolk -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010056 ! -property_value: IAO:0000589 "dermal scale (amphibian)" xsd:string -intersection_of: UBERON:0007380 ! dermal scale -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000740 ! -property_value: IAO:0000589 "synsacrum (amphibian)" xsd:string -intersection_of: UBERON:0007805 ! synsacrum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010338 ! -property_value: IAO:0000589 "post-anal tail (amphibian)" xsd:string -intersection_of: UBERON:0007812 ! post-anal tail -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000422 ! -property_value: IAO:0000589 "pectoral girdle skeleton (amphibian)" xsd:string -intersection_of: UBERON:0007831 ! pectoral girdle skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000754 ! -property_value: IAO:0000589 "pectoral girdle skeleton (amphibian)" xsd:string -intersection_of: UBERON:0007831 ! pectoral girdle skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000426 ! -property_value: IAO:0000589 "pelvic girdle skeleton (amphibian)" xsd:string -intersection_of: UBERON:0007832 ! pelvic girdle skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000768 ! -property_value: IAO:0000589 "pelvic girdle skeleton (amphibian)" xsd:string -intersection_of: UBERON:0007832 ! pelvic girdle skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000741 ! -property_value: IAO:0000589 "uncinate process of ribs (amphibian)" xsd:string -intersection_of: UBERON:0007843 ! uncinate process of ribs -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011130 ! -property_value: IAO:0000589 "cartilage element (amphibian)" xsd:string -intersection_of: UBERON:0007844 ! cartilage element -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000737 ! -property_value: IAO:0000589 "perichordal tissue (amphibian)" xsd:string -intersection_of: UBERON:0007862 ! perichordal tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010446 ! -property_value: IAO:0000589 "perichordal tissue (amphibian)" xsd:string -intersection_of: UBERON:0007862 ! perichordal tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010120 ! -property_value: IAO:0000589 "webbed manus (amphibian)" xsd:string -intersection_of: UBERON:0008441 ! webbed manus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010121 ! -property_value: IAO:0000589 "webbed pes (amphibian)" xsd:string -intersection_of: UBERON:0008442 ! webbed pes -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000228 ! -property_value: IAO:0000589 "hypaxial musculature (amphibian)" xsd:string -intersection_of: UBERON:0008777 ! hypaxial musculature -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000142 ! -property_value: IAO:0000589 "epaxial musculature (amphibian)" xsd:string -intersection_of: UBERON:0008778 ! epaxial musculature -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010255 ! -property_value: IAO:0000589 "intromittent organ (amphibian)" xsd:string -intersection_of: UBERON:0008811 ! intromittent organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011057 ! -property_value: IAO:0000589 "hepatic diverticulum (amphibian)" xsd:string -intersection_of: UBERON:0008835 ! hepatic diverticulum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010444 ! -property_value: IAO:0000589 "skeletal ligament (amphibian)" xsd:string -intersection_of: UBERON:0008846 ! skeletal ligament -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010174 ! -property_value: IAO:0000589 "external gill (amphibian)" xsd:string -intersection_of: UBERON:0008891 ! external gill -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010176 ! -property_value: IAO:0000589 "internal gill (amphibian)" xsd:string -intersection_of: UBERON:0008892 ! internal gill -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010157 ! -property_value: IAO:0000589 "splanchnocranium (amphibian)" xsd:string -intersection_of: UBERON:0008895 ! splanchnocranium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010362 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch (amphibian)" xsd:string -intersection_of: UBERON:0008896 ! post-hyoid pharyngeal arch -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010374 ! -property_value: IAO:0000589 "fin (amphibian)" xsd:string -intersection_of: UBERON:0008897 ! fin -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0001004 ! -property_value: IAO:0000589 "neuromast (amphibian)" xsd:string -intersection_of: UBERON:0008904 ! neuromast -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010077 ! -property_value: IAO:0000589 "lateral line nerve (amphibian)" xsd:string -intersection_of: UBERON:0008906 ! lateral line nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010769 ! -property_value: IAO:0000589 "dermal bone (amphibian)" xsd:string -intersection_of: UBERON:0008907 ! dermal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010777 ! -property_value: IAO:0000589 "perichordal bone (amphibian)" xsd:string -intersection_of: UBERON:0008909 ! perichordal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010774 ! -property_value: IAO:0000589 "chondral bone (amphibian)" xsd:string -intersection_of: UBERON:0008911 ! chondral bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010779 ! -property_value: IAO:0000589 "perichondral bone (amphibian)" xsd:string -intersection_of: UBERON:0008913 ! perichondral bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010441 ! -property_value: IAO:0000589 "pore (amphibian)" xsd:string -intersection_of: UBERON:0008915 ! pore -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0001006 ! -property_value: IAO:0000589 "ampullary organ (amphibian)" xsd:string -intersection_of: UBERON:0008917 ! ampullary organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010608 ! -property_value: IAO:0000589 "vomeronasal nerve (amphibian)" xsd:string -intersection_of: UBERON:0009121 ! vomeronasal nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010718 ! -property_value: IAO:0000589 "lateral line placode (amphibian)" xsd:string -intersection_of: UBERON:0009128 ! lateral line placode -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000612 ! -property_value: IAO:0000589 "trunk region of vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0009568 ! trunk region of vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010383 ! -property_value: IAO:0000589 "tail somite (amphibian)" xsd:string -intersection_of: UBERON:0009621 ! tail somite -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000220 ! -property_value: IAO:0000589 "tarsal skeleton (amphibian)" xsd:string -intersection_of: UBERON:0009879 ! tarsal skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000201 ! -property_value: IAO:0000589 "carpal skeleton (amphibian)" xsd:string -intersection_of: UBERON:0009880 ! carpal skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000900 ! -property_value: IAO:0000589 "condyle of femur (amphibian)" xsd:string -intersection_of: UBERON:0009980 ! condyle of femur -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000899 ! -property_value: IAO:0000589 "condyle of tibia (amphibian)" xsd:string -intersection_of: UBERON:0009989 ! condyle of tibia -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010251 ! -property_value: IAO:0000589 "spiral valve of conus arteriosus (amphibian)" xsd:string -intersection_of: UBERON:0010018 ! spiral valve of conus arteriosus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010225 ! -property_value: IAO:0000589 "hepatic portal system (amphibian)" xsd:string -intersection_of: UBERON:0010194 ! hepatic portal system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010518 ! -property_value: IAO:0000589 "renal portal system (amphibian)" xsd:string -intersection_of: UBERON:0010195 ! renal portal system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011128 ! -property_value: IAO:0000589 "lateral line (amphibian)" xsd:string -intersection_of: UBERON:0010202 ! lateral line -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000267 ! -property_value: IAO:0000589 "laryngeal apparatus (amphibian)" xsd:string -intersection_of: UBERON:0010212 ! laryngeal apparatus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010122 ! -property_value: IAO:0000589 "musculus retractor bulbi (amphibian)" xsd:string -intersection_of: UBERON:0010271 ! musculus retractor bulbi -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000225 ! -property_value: IAO:0000589 "hyoid apparatus (amphibian)" xsd:string -intersection_of: UBERON:0010272 ! hyoid apparatus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000682 ! -property_value: IAO:0000589 "hyoid apparatus (amphibian)" xsd:string -intersection_of: UBERON:0010272 ! hyoid apparatus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000700 ! -property_value: IAO:0000589 "space in vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0010276 ! space in vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000109 ! -property_value: IAO:0000589 "cranial skeletal system (amphibian)" xsd:string -intersection_of: UBERON:0010323 ! cranial skeletal system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000971 ! -property_value: IAO:0000589 "cranial skeletal system (amphibian)" xsd:string -intersection_of: UBERON:0010323 ! cranial skeletal system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010185 ! -property_value: IAO:0000589 "cranial skeletal system (amphibian)" xsd:string -intersection_of: UBERON:0010323 ! cranial skeletal system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000521 ! -property_value: IAO:0000589 "pterygoid bone (amphibian)" xsd:string -intersection_of: UBERON:0010389 ! pterygoid bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000946 ! -property_value: IAO:0000589 "metacarpus skeleton (amphibian)" xsd:string -intersection_of: UBERON:0010544 ! metacarpus skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000221 ! -property_value: IAO:0000589 "metatarsus skeleton (amphibian)" xsd:string -intersection_of: UBERON:0010545 ! metatarsus skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000200 ! -property_value: IAO:0000589 "forelimb zeugopod skeleton (amphibian)" xsd:string -intersection_of: UBERON:0010703 ! forelimb zeugopod skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010686 ! -property_value: IAO:0000589 "girdle skeleton (amphibian)" xsd:string -intersection_of: UBERON:0010719 ! girdle skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000216 ! -property_value: IAO:0000589 "hindlimb zeugopod skeleton (amphibian)" xsd:string -intersection_of: UBERON:0010720 ! hindlimb zeugopod skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000914 ! -property_value: IAO:0000589 "distal tarsal bone (amphibian)" xsd:string -intersection_of: UBERON:0010721 ! distal tarsal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000932 ! -property_value: IAO:0000589 "distal tarsal bone 4 (amphibian)" xsd:string -intersection_of: UBERON:0010737 ! distal tarsal bone 4 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000933 ! -property_value: IAO:0000589 "distal tarsal bone 5 (amphibian)" xsd:string -intersection_of: UBERON:0010738 ! distal tarsal bone 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000851 ! -property_value: IAO:0000589 "distal carpal bone 5 (amphibian)" xsd:string -intersection_of: UBERON:0010739 ! distal carpal bone 5 -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000460 ! -property_value: IAO:0000589 "prefrontal bone (amphibian)" xsd:string -intersection_of: UBERON:0010750 ! prefrontal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010238 ! -property_value: IAO:0000589 "gular fold (amphibian)" xsd:string -intersection_of: UBERON:0010880 ! gular fold -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000218 ! -property_value: IAO:0000589 "pelvic complex muscle (amphibian)" xsd:string -intersection_of: UBERON:0010890 ! pelvic complex muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010687 ! -property_value: IAO:0000589 "pectoral complex muscle (amphibian)" xsd:string -intersection_of: UBERON:0010891 ! pectoral complex muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000303 ! -property_value: IAO:0000589 "mesethmoid element (amphibian)" xsd:string -intersection_of: UBERON:0010892 ! mesethmoid element -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010037 ! -property_value: IAO:0000589 "sequential hermaphroditic organism (amphibian)" xsd:string -intersection_of: UBERON:0010895 ! sequential hermaphroditic organism -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010046 ! -property_value: IAO:0000589 "synchronous hermaphroditic organism (amphibian)" xsd:string -intersection_of: UBERON:0010899 ! synchronous hermaphroditic organism -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010835 ! -property_value: IAO:0000589 "opisthotic (amphibian)" xsd:string -intersection_of: UBERON:0010910 ! opisthotic -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010649 ! -property_value: IAO:0000589 "interhyoideus (amphibian)" xsd:string -intersection_of: UBERON:0010930 ! interhyoideus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010647 ! -property_value: IAO:0000589 "intermandibularis (amphibian)" xsd:string -intersection_of: UBERON:0010931 ! intermandibularis -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010052 ! -property_value: IAO:0000589 "obturator internus (amphibian)" xsd:string -intersection_of: UBERON:0011048 ! obturator internus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000136 ! -property_value: IAO:0000589 "perilymphatic channel (amphibian)" xsd:string -intersection_of: UBERON:0011060 ! perilymphatic channel -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000010 ! -property_value: IAO:0000589 "angular bone (amphibian)" xsd:string -intersection_of: UBERON:0011079 ! angular bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000795 ! -property_value: IAO:0000589 "intervertebral cartilage (amphibian)" xsd:string -intersection_of: UBERON:0011135 ! intervertebral cartilage -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010655 ! -property_value: IAO:0000589 "jaw depressor muscle (amphibian)" xsd:string -intersection_of: UBERON:0011151 ! jaw depressor muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010371 ! -property_value: IAO:0000589 "dorsal hyoid arch skeleton (amphibian)" xsd:string -intersection_of: UBERON:0011152 ! dorsal hyoid arch skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010372 ! -property_value: IAO:0000589 "ventral hyoid arch skeleton (amphibian)" xsd:string -intersection_of: UBERON:0011153 ! ventral hyoid arch skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000690 ! -property_value: IAO:0000589 "cuneiform cartilage (amphibian)" xsd:string -intersection_of: UBERON:0011157 ! cuneiform cartilage -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000556 ! -property_value: IAO:0000589 "septomaxilla bone (amphibian)" xsd:string -intersection_of: UBERON:0011167 ! septomaxilla bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010038 ! -property_value: IAO:0000589 "intra-ocular muscle (amphibian)" xsd:string -intersection_of: UBERON:0011222 ! intra-ocular muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000986 ! -property_value: IAO:0000589 "ethmoid region (amphibian)" xsd:string -intersection_of: UBERON:0011241 ! ethmoid region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010134 ! -property_value: IAO:0000589 "ethmoid cartilage (amphibian)" xsd:string -intersection_of: UBERON:0011242 ! ethmoid cartilage -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000760 ! -property_value: IAO:0000589 "procoracoid element (amphibian)" xsd:string -intersection_of: UBERON:0011248 ! procoracoid element -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000532 ! -property_value: IAO:0000589 "quadratojugal bone (amphibian)" xsd:string -intersection_of: UBERON:0011267 ! quadratojugal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000080 ! -property_value: IAO:0000589 "caudal-sacral region of vertebral column (amphibian)" xsd:string -intersection_of: UBERON:0011271 ! caudal-sacral region of vertebral column -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010805 ! -property_value: IAO:0000589 "abductor pollicis, radioulna-prepollox (amphibian)" xsd:string -intersection_of: UBERON:0011533 ! abductor pollicis, radioulna-prepollox -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010811 ! -property_value: IAO:0000589 "adductor pollicis muscle of prepollex (amphibian)" xsd:string -intersection_of: UBERON:0011564 ! adductor pollicis muscle of prepollex -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000287 ! -property_value: IAO:0000589 "maxillary tooth (amphibian)" xsd:string -intersection_of: UBERON:0011593 ! maxillary tooth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000125 ! -property_value: IAO:0000589 "dentary tooth (amphibian)" xsd:string -intersection_of: UBERON:0011594 ! dentary tooth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000641 ! -property_value: IAO:0000589 "dentary tooth (amphibian)" xsd:string -intersection_of: UBERON:0011594 ! dentary tooth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000103 ! -property_value: IAO:0000589 "coronoid bone (amphibian)" xsd:string -intersection_of: UBERON:0011598 ! coronoid bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000104 ! -property_value: IAO:0000589 "coronoid tooth (amphibian)" xsd:string -intersection_of: UBERON:0011603 ! coronoid tooth -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000666 ! -property_value: IAO:0000589 "ceratohyal bone (amphibian)" xsd:string -intersection_of: UBERON:0011611 ! ceratohyal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000573 ! -property_value: IAO:0000589 "splenial bone (amphibian)" xsd:string -intersection_of: UBERON:0011635 ! splenial bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000458 ! -property_value: IAO:0000589 "prearticular bone (amphibian)" xsd:string -intersection_of: UBERON:0011637 ! prearticular bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000207 ! -property_value: IAO:0000589 "frontoparietal bone (amphibian)" xsd:string -intersection_of: UBERON:0011639 ! frontoparietal bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010715 ! -property_value: IAO:0000589 "depressor mandibulae muscle (amphibian)" xsd:string -intersection_of: UBERON:0011647 ! depressor mandibulae muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000247 ! -property_value: IAO:0000589 "jaw muscle (amphibian)" xsd:string -intersection_of: UBERON:0011648 ! jaw muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000723 ! -property_value: IAO:0000589 "ventral head of rib (amphibian)" xsd:string -intersection_of: UBERON:0011651 ! ventral head of rib -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000722 ! -property_value: IAO:0000589 "dorsal head of rib (amphibian)" xsd:string -intersection_of: UBERON:0011652 ! dorsal head of rib -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000706 ! -property_value: IAO:0000589 "diapophysis of neural arch (amphibian)" xsd:string -intersection_of: UBERON:0011653 ! diapophysis of neural arch -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000738 ! -property_value: IAO:0000589 "perichordal ring (amphibian)" xsd:string -intersection_of: UBERON:0011675 ! perichordal ring -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000923 ! -property_value: IAO:0000589 "hindlimb intermedium bone (amphibian)" xsd:string -intersection_of: UBERON:0011678 ! hindlimb intermedium bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000301 ! -property_value: IAO:0000589 "mentomeckelian (amphibian)" xsd:string -intersection_of: UBERON:0011770 ! mentomeckelian -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000273 ! -property_value: IAO:0000589 "lower jaw opening (amphibian)" xsd:string -intersection_of: UBERON:0011772 ! lower jaw opening -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000621 ! -property_value: IAO:0000589 "upper jaw opening (amphibian)" xsd:string -intersection_of: UBERON:0011773 ! upper jaw opening -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000121 ! -property_value: IAO:0000589 "dense connective tissue (amphibian)" xsd:string -intersection_of: UBERON:0011823 ! dense connective tissue -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010530 ! -property_value: IAO:0000589 "mesorchium (amphibian)" xsd:string -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000864 ! -property_value: IAO:0000589 "acetabular labrum (amphibian)" xsd:string -intersection_of: UBERON:0011958 ! acetabular labrum -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010768 ! -property_value: IAO:0000589 "replacement bone (amphibian)" xsd:string -intersection_of: UBERON:0012075 ! replacement bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000913 ! -property_value: IAO:0000589 "fibulare (amphibian)" xsd:string -intersection_of: UBERON:0012126 ! fibulare -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000838 ! -property_value: IAO:0000589 "radial head of humerus (amphibian)" xsd:string -intersection_of: UBERON:0012129 ! radial head of humerus -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000852 ! -property_value: IAO:0000589 "prepollex skeleton (amphibian)" xsd:string -intersection_of: UBERON:0012135 ! prepollex skeleton -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010177 ! -property_value: IAO:0000589 "nuptial pad (amphibian)" xsd:string -intersection_of: UBERON:0012243 ! nuptial pad -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010325 ! -property_value: IAO:0000589 "animal hemisphere (amphibian)" xsd:string -intersection_of: UBERON:0012284 ! animal hemisphere -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010331 ! -property_value: IAO:0000589 "vegetal hemisphere (amphibian)" xsd:string -intersection_of: UBERON:0012285 ! vegetal hemisphere -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010535 ! -property_value: IAO:0000589 "primitive palate (amphibian)" xsd:string -intersection_of: UBERON:0012316 ! primitive palate -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011018 ! -property_value: IAO:0000589 "basilar papilla (amphibian)" xsd:string -intersection_of: UBERON:0013731 ! basilar papilla -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000984 ! -property_value: IAO:0000589 "vestibule of nasal cavity (amphibian)" xsd:string -intersection_of: UBERON:0013732 ! vestibule of nasal cavity -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010276 ! -property_value: IAO:0000589 "anatomical line along groove (amphibian)" xsd:string -intersection_of: UBERON:0014764 ! anatomical line along groove -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0011099 ! -property_value: IAO:0000589 "skeletal muscle organ (amphibian)" xsd:string -intersection_of: UBERON:0014892 ! skeletal muscle organ -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000881 ! -property_value: IAO:0000589 "lamina terminalis of ischium (amphibian)" xsd:string -intersection_of: UBERON:0014898 ! lamina terminalis of ischium -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010632 ! -property_value: IAO:0000589 "inferior branch of oculomotor nerve (amphibian)" xsd:string -intersection_of: UBERON:0015161 ! inferior branch of oculomotor nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010628 ! -property_value: IAO:0000589 "superior branch of oculomotor nerve (amphibian)" xsd:string -intersection_of: UBERON:0015162 ! superior branch of oculomotor nerve -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010737 ! -property_value: IAO:0000589 "palmaris longus muscle (amphibian)" xsd:string -intersection_of: UBERON:0016493 ! palmaris longus muscle -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000477 ! -property_value: IAO:0000589 "future nervous system (amphibian)" xsd:string -intersection_of: UBERON:0016880 ! future nervous system -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000635 ! -property_value: IAO:0000589 "vomerine dentition (amphibian)" xsd:string -intersection_of: UBERON:0017615 ! vomerine dentition -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000397 ! -property_value: IAO:0000589 "alveolar ridge of premaxilla (amphibian)" xsd:string -intersection_of: UBERON:0034898 ! alveolar ridge of premaxilla -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000414 ! -property_value: IAO:0000589 "palatine process of premaxilla (amphibian)" xsd:string -intersection_of: UBERON:0034900 ! palatine process of premaxilla -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010495 ! -property_value: IAO:0000589 "temporal branch of lateral pretrosal artery (amphibian)" xsd:string -intersection_of: UBERON:0035043 ! temporal branch of lateral pretrosal artery -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0010270 ! -property_value: IAO:0000589 "anatomical surface region (amphibian)" xsd:string -intersection_of: UBERON:0036215 ! anatomical surface region -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:0000028 ! -property_value: IAO:0000589 "articular bone (amphibian)" xsd:string -intersection_of: UBERON:2001805 ! articular bone -intersection_of: part_of NCBITaxon:8292 - -[Term] -id: AAO:ENTITY -name: AAO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8292 -relationship: only_in_taxon NCBITaxon:8292 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-aao.owl b/src/ontology/bridge/uberon-bridge-to-aao.owl deleted file mode 100644 index 97c6f07f26..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-aao.owl +++ /dev/null @@ -1,20762 +0,0 @@ - - - - - Erik Segerdell - Paula Mabee - David Blackburn - Uberon editors - Equivalence axioms between AAO and Uberon. Note that AAO is in the process of being merged into the core Uberon, so this mapping will become deprecated - Uberon bridge to aao - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - adipose tissue (amphibian) - AAO:0000001 - - - - - - - - - - - - - - - - - - - anatomical system (amphibian) - AAO:0000007 - - - - - - - - - - - - - - - - - - - angular bone (amphibian) - AAO:0000010 - - - - - - - - - - - - - - - - - - - external naris (amphibian) - AAO:0000024 - - - - - - - - - - - - - - - - - - - areolar connective tissue (amphibian) - AAO:0000027 - - - - - - - - - - - - - - - - - - - - articular bone (amphibian) - articular/anguloarticular (amphibian) - AAO:0000028 - - - - - - - - - - - - - - - - - - - autonomic nervous system (amphibian) - AAO:0000033 - - - - - - - - - - - - - - - - - - - postcranial axial skeleton (amphibian) - AAO:0000034 - - - - - - - - - - - - - - - - - - - basioccipital bone (amphibian) - AAO:0000039 - - - - - - - - - - - - - - - - - - - basisphenoid bone (amphibian) - AAO:0000040 - - - - - - - - - - - - - - - - - - - blastoderm (amphibian) - AAO:0000042 - - - - - - - - - - - - - - - - - - - blastodisc (amphibian) - AAO:0000043 - - - - - - - - - - - - - - - - - - - blastopore (amphibian) - AAO:0000045 - - - - - - - - - - - - - - - - - - - blood (amphibian) - AAO:0000046 - - - - - - - - - - - - - - - - - - - bone element (amphibian) - AAO:0000047 - - - - - - - - - - - - - - - - - - - oral cavity (amphibian) - AAO:0000053 - - - - - - - - - - - - - - - - - - - anterior semicircular canal (amphibian) - AAO:0000058 - - - - - - - - - - - - - - - - - - - cartilage tissue (amphibian) - AAO:0000060 - - - - - - - - - - - - - - - - - - - caudal-sacral region of vertebral column (amphibian) - AAO:0000080 - - - - - - - - - - - - - - - - - - - post-anal tail muscle (amphibian) - AAO:0000081 - - - - - - - - - - - - - - - - - - - caudal region of vertebral column (amphibian) - AAO:0000082 - - - - - - - - - - - - - - - - - - - central nervous system (amphibian) - AAO:0000090 - - - - - - - - - - - - - - - - - - - musculature of neck (amphibian) - AAO:0000091 - - - - - - - - - - - - - - - - - - - cervical region of vertebral column (amphibian) - AAO:0000092 - - - - - - - - - - - - - - - - - - - posterior nasal aperture (amphibian) - AAO:0000093 - - - - - - - - - - - - - - - - - - - cartilaginous neurocranium (amphibian) - AAO:0000094 - - - - - - - - - - - - - - - - - - - cloaca (amphibian) - AAO:0000095 - - - - - - - - - - - - - - - - - - - connective tissue (amphibian) - AAO:0000098 - - - - - - - - - - - - - - - - - - - coronoid bone (amphibian) - AAO:0000103 - - - - - - - - - - - - - - - - - - - coronoid tooth (amphibian) - AAO:0000104 - - - - - - - - - - - - - - - - - - - cranial muscle (amphibian) - AAO:0000107 - - - - - - - - - - - - - - - - - - - cranial nerve (amphibian) - AAO:0000108 - - - - - - - - - - - - - - - - - - - cranial skeletal system (amphibian) - AAO:0000109 - - - - - - - - - - - - - - - - - - - tegmen tympani (amphibian) - AAO:0000116 - - - - - - - - - - - - - - - - - - - cutaneous muscle (amphibian) - AAO:0000119 - - - - - - - - - - - - - - - - - - - dense connective tissue (amphibian) - AAO:0000121 - - - - - - - - - - - - - - - - - - - dentary (amphibian) - AAO:0000124 - - - - - - - - - - - - - - - - - - - dentary tooth (amphibian) - AAO:0000125 - - - - - - - - - - - - - - - - - - - dentition (amphibian) - AAO:0000126 - - - - - - - - - - - - - - - - - - - dermis (amphibian) - AAO:0000128 - - - - - - - - - - - - - - - - - - - digestive system (amphibian) - AAO:0000129 - - - - - - - - - - - - - - - - - - - digestive system gland (amphibian) - AAO:0000130 - - - - - - - - - - - - - - - - - - - endolymphatic duct (amphibian) - AAO:0000135 - - - - - - - - - - - - - - - - - - - perilymphatic channel (amphibian) - AAO:0000136 - - - - - - - - - - - - - - - - - - - ectoderm (amphibian) - AAO:0000137 - - - - - - - - - - - - - - - - - - - embryonic structure (amphibian) - AAO:0000138 - - - - - - - - - - - - - - - - - - - endoderm (amphibian) - AAO:0000139 - - - - - - - - - - - - - - - - - - - epaxial musculature (amphibian) - AAO:0000142 - - - - - - - - - - - - - - - - - - - skin epidermis (amphibian) - AAO:0000143 - - - - - - - - - - - - - - - - - - - epithelium (amphibian) - AAO:0000144 - - - - - - - - - - - - - - - - - - - esophagus (amphibian) - AAO:0000145 - - - - - - - - - - - - - - - - - - - pharyngotympanic tube (amphibian) - AAO:0000146 - - - - - - - - - - - - - - - - - - - exoccipital bone (amphibian) - AAO:0000147 - - - - - - - - - - - - - - - - - - - eye muscle (amphibian) - AAO:0000156 - - - - - - - - - - - - - - - - - - - gonadal fat pad (amphibian) - AAO:0000157 - - - - - - - - - - - - - - - - - - - foramen ovale of skull (amphibian) - AAO:0000169 - - - - - - - - - - - - - - - - - - - foramen rotundum (amphibian) - AAO:0000194 - - - - - - - - - - - - - - - - - - - forelimb stylopod (amphibian) - AAO:0000199 - - - - - - - - - - - - - - - - - - - forelimb zeugopod skeleton (amphibian) - AAO:0000200 - - - - - - - - - - - - - - - - - - - carpal skeleton (amphibian) - AAO:0000201 - - - - - - - - - - - - - - - - - - - forelimb skeleton (amphibian) - AAO:0000202 - - - - - - - - - - - - - - - - - - - forelimb muscle (amphibian) - AAO:0000204 - - - - - - - - - - - - - - - - - - - forelimb (amphibian) - AAO:0000205 - - - - - - - - - - - - - - - - - - - tetrapod frontal bone (amphibian) - AAO:0000206 - - - - - - - - - - - - - - - - - - - frontoparietal bone (amphibian) - AAO:0000207 - - - - - - - - - - - - - - - - - - - germ ring (amphibian) - AAO:0000211 - - - - - - - - - - - - - - - - - - - gland (amphibian) - AAO:0000212 - - - - - - - - - - - - - - - - - - - gonad (amphibian) - AAO:0000213 - - - - - - - - - - - - - - - - - - - hindlimb zeugopod skeleton (amphibian) - AAO:0000216 - - - - - - - - - - - - - - - - - - - hindlimb skeleton (amphibian) - AAO:0000217 - - - - - - - - - - - - - - - - - - - pelvic complex muscle (amphibian) - AAO:0000218 - - - - - - - - - - - - - - - - - - - hindlimb (amphibian) - AAO:0000219 - - - - - - - - - - - - - - - - - - - tarsal skeleton (amphibian) - AAO:0000220 - - - - - - - - - - - - - - - - - - - metatarsus skeleton (amphibian) - AAO:0000221 - - - - - - - - - - - - - - - - - - - hindlimb muscle (amphibian) - AAO:0000222 - - - - - - - - - - - - - - - - - - - hyoid apparatus (amphibian) - AAO:0000225 - - - - - - - - - - - - - - - - - - - hypaxial musculature (amphibian) - AAO:0000228 - - - - - - - - - - - - - - - - - - - hypoblast (generic) (amphibian) - AAO:0000229 - - - - - - - - - - - - - - - - - - - internal ear (amphibian) - AAO:0000238 - - - - - - - - - - - - - - - - - - - integument (amphibian) - AAO:0000239 - - - - - - - - - - - - - - - - - - - intestine (amphibian) - AAO:0000246 - - - - - - - - - - - - - - - - - - - jaw muscle (amphibian) - AAO:0000247 - - - - - - - - - - - - - - - - - - - jugular foramen (amphibian) - AAO:0000249 - - - - - - - - - - - - - - - - - - - kidney (amphibian) - AAO:0000250 - - - - - - - - - - - - - - - - - - - cochlea (amphibian) - AAO:0000253 - - - - - - - - - - - - - - - - - - - lamina orbitonasalis (amphibian) - AAO:0000262 - - - - - - - - - - - - - - - - - - - laryngeal apparatus (amphibian) - AAO:0000267 - - - - - - - - - - - - - - - - - - - larynx (amphibian) - AAO:0000268 - - - - - - - - - - - - - - - - - - - lateral line system (amphibian) - AAO:0000269 - - - - - - - - - - - - - - - - - - - lower jaw region (amphibian) - AAO:0000272 - - - - - - - - - - - - - - - - - - - lower jaw opening (amphibian) - AAO:0000273 - - - - - - - - - - - - - - - - - - - skeleton of lower jaw (amphibian) - AAO:0000274 - - - - - - - - - - - - - - - - - - - lung (amphibian) - AAO:0000275 - - - - - - - - - - - - - - - - - - - mandibular symphysis (amphibian) - AAO:0000277 - - - - - - - - - - - - - - - - - - - maxilla (amphibian) - AAO:0000285 - - - - - - - - - - - - - - - - - - - maxillary tooth (amphibian) - AAO:0000287 - - - - - - - - - - - - - - - - - - - Meckel's cartilage (amphibian) - AAO:0000289 - - - - - - - - - - - - - - - - - - - mental foramen (amphibian) - AAO:0000298 - - - - - - - - - - - - - - - - - - - mentomeckelian (amphibian) - AAO:0000301 - - - - - - - - - - - - - - - - - - - mesethmoid element (amphibian) - AAO:0000303 - - - - - - - - - - - - - - - - - - - mesoderm (amphibian) - AAO:0000304 - - - - - - - - - - - - - - - - - - - muscle tissue (amphibian) - AAO:0000306 - - - - - - - - - - - - - - - - - - - musculature of body (amphibian) - AAO:0000307 - - - - - - - - - - - - - - - - - - - naris (amphibian) - AAO:0000311 - - - - - - - - - - - - - - - - - - - nasal bone (amphibian) - AAO:0000312 - - - - - - - - - - - - - - - - - - - nasal capsule (amphibian) - AAO:0000313 - - - - - - - - - - - - - - - - - - - nasal cavity (amphibian) - AAO:0000314 - - - - - - - - - - - - - - - - - - - nasal skeleton (amphibian) - AAO:0000320 - - - - - - - - - - - - - - - - - - - nervous system (amphibian) - AAO:0000324 - - - - - - - - - - - - - - - - - - - neural tissue (amphibian) - AAO:0000325 - - - - - - - - - - - - - - - - - - - notochord (amphibian) - AAO:0000327 - - - - - - - - - - - - - - - - - - - occipital condyle (amphibian) - AAO:0000330 - - - - - - - - - - - - - - - - - - - olfactory system (amphibian) - AAO:0000334 - - - - - - - - - - - - - - - - - - - optic foramen (amphibian) - AAO:0000342 - - - - - - - - - - - - - - - - - - - orbital cavity (amphibian) - AAO:0000343 - - - - - - - - - - - - - - - - - - - orbitosphenoid (amphibian) - AAO:0000345 - - - - - - - - - - - - - - - - - - - primitive knot (amphibian) - AAO:0000346 - - - - - - - - - - - - - - - - - - - ovary (amphibian) - AAO:0000371 - - - - - - - - - - - - - - - - - - - palatoquadrate cartilage (amphibian) - AAO:0000379 - - - - - - - - - - - - - - - - - - - parasphenoid (amphibian) - AAO:0000385 - - - - - - - - - - - - - - - - - - - tetrapod parietal bone (amphibian) - AAO:0000390 - - - - - - - - - - - - - - - - - - - alveolar process of maxilla (amphibian) - AAO:0000396 - - - - - - - - - - - - - - - - - - - alveolar ridge of premaxilla (amphibian) - AAO:0000397 - - - - - - - - - - - - - - - - - - - palatine process of maxilla (amphibian) - AAO:0000413 - - - - - - - - - - - - - - - - - - - palatine process of premaxilla (amphibian) - AAO:0000414 - - - - - - - - - - - - - - - - - - - posterior semicircular canal (amphibian) - AAO:0000420 - - - - - - - - - - - - - - - - - - - pectoral girdle skeleton (amphibian) - AAO:0000422 - - - - - - - - - - - - - - - - - - - musculature of pectoral girdle (amphibian) - AAO:0000423 - - - - - - - - - - - - - - - - - - - pelvic girdle skeleton (amphibian) - AAO:0000426 - - - - - - - - - - - - - - - - - - - musculature of pelvic girdle (amphibian) - AAO:0000427 - - - - - - - - - - - - - - - - - - - peripheral nervous system (amphibian) - AAO:0000429 - - - - - - - - - - - - - - - - - - - prearticular bone (amphibian) - AAO:0000458 - - - - - - - - - - - - - - - - - - - prefrontal bone (amphibian) - AAO:0000460 - - - - - - - - - - - - - - - - - - - premaxilla (amphibian) - AAO:0000461 - - - - - - - - - - - - - - - - - - - presumptive blood (amphibian) - AAO:0000468 - - - - - - - - - - - - - - - - - - - presumptive ectoderm (amphibian) - AAO:0000470 - - - - - - - - - - - - - - - - - - - presumptive endoderm (amphibian) - AAO:0000471 - - - - - - - - - - - - - - - - - - - presumptive enteric nervous system (amphibian) - AAO:0000472 - - - - - - - - - - - - - - - - - - - presumptive hypochord (amphibian) - AAO:0000474 - - - - - - - - - - - - - - - - - - - presumptive mesoderm (amphibian) - AAO:0000476 - - - - - - - - - - - - - - - - - - - future nervous system (amphibian) - AAO:0000477 - - - - - - - - - - - - - - - - - - - chordamesoderm (amphibian) - AAO:0000478 - - - - - - - - - - - - - - - - - - - presumptive structure (amphibian) - AAO:0000479 - - - - - - - - - - - - - - - - - - - germ layer (amphibian) - AAO:0000480 - - - - - - - - - - - - - - - - - - - prootic bone (amphibian) - AAO:0000514 - - - - - - - - - - - - - - - - - - - pterygoid bone (amphibian) - AAO:0000521 - - - - - - - - - - - - - - - - - - - quadrate bone (amphibian) - AAO:0000525 - - - - - - - - - - - - - - - - - - - quadratojugal bone (amphibian) - AAO:0000532 - - - - - - - - - - - - - - - - - - - respiratory system (amphibian) - AAO:0000541 - - - - - - - - - - - - - - - - - - - reticular tissue (amphibian) - AAO:0000542 - - - - - - - - - - - - - - - - - - - rib (amphibian) - AAO:0000545 - - - - - - - - - - - - - - - - - - - saccule of membranous labyrinth (amphibian) - AAO:0000550 - - - - - - - - - - - - - - - - - - - endolymphatic sac (amphibian) - AAO:0000551 - - - - - - - - - - - - - - - - - - - sacral vertebra (amphibian) - AAO:0000552 - - - - - - - - - - - - - - - - - - - sensory system (amphibian) - AAO:0000555 - - - - - - - - - - - - - - - - - - - septomaxilla bone (amphibian) - AAO:0000556 - - - - - - - - - - - - - - - - - - - nasal septum (amphibian) - AAO:0000559 - - - - - - - - - - - - - - - - - - - skeletal system (amphibian) - AAO:0000566 - - - - - - - - - - - - - - - - - - - splenial bone (amphibian) - AAO:0000573 - - - - - - - - - - - - - - - - - - - squamous part of temporal bone (amphibian) - AAO:0000574 - - - - - - - - - - - - - - - - - - - stomach (amphibian) - AAO:0000579 - - - - - - - - - - - - - - - - - - - suspensorium (amphibian) - AAO:0000596 - - - - - - - - - - - - - - - - - - - testis (amphibian) - AAO:0000606 - - - - - - - - - - - - - - - - - - - tissue (amphibian) - AAO:0000607 - - - - - - - - - - - - - - - - - - - skeletal muscle of trunk (amphibian) - AAO:0000611 - - - - - - - - - - - - - - - - - - - - thoracic region of vertebral column (amphibian) - trunk region of vertebral column (amphibian) - AAO:0000612 - - - - - - - - - - - - - - - - - - - tympanic ring (amphibian) - AAO:0000615 - - - - - - - - - - - - - - - - - - - upper jaw region (amphibian) - AAO:0000620 - - - - - - - - - - - - - - - - - - - upper jaw opening (amphibian) - AAO:0000621 - - - - - - - - - - - - - - - - - - - skeleton of upper jaw (amphibian) - AAO:0000622 - - - - - - - - - - - - - - - - - - - urinary bladder (amphibian) - AAO:0000623 - - - - - - - - - - - - - - - - - - - genitourinary system (amphibian) - AAO:0000624 - - - - - - - - - - - - - - - - - - - utricle of membranous labyrinth (amphibian) - AAO:0000625 - - - - - - - - - - - - - - - - - - - vestibulo-auditory system (amphibian) - AAO:0000631 - - - - - - - - - - - - - - - - - - - visual system (amphibian) - AAO:0000632 - - - - - - - - - - - - - - - - - - - vomer (amphibian) - AAO:0000633 - - - - - - - - - - - - - - - - - - - - vomerine dentition (amphibian) - vomerine tooth (amphibian) - AAO:0000635 - - - - - - - - - - - - - - - - - - - mesonephric duct (amphibian) - AAO:0000637 - - - - - - - - - - - - - - - - - - - dentary tooth (amphibian) - AAO:0000641 - - - - - - - - - - - - - - - - - - - nasolacrimal duct (amphibian) - AAO:0000643 - - - - - - - - - - - - - - - - - - - hyoid arch skeleton (amphibian) - AAO:0000665 - - - - - - - - - - - - - - - - - - - ceratohyal bone (amphibian) - AAO:0000666 - - - - - - - - - - - - - - - - - - - arytenoid cartilage (amphibian) - AAO:0000674 - - - - - - - - - - - - - - - - - - - cricoid cartilage (amphibian) - AAO:0000675 - - - - - - - - - - - - - - - - - - - humerus (amphibian) - AAO:0000679 - - - - - - - - - - - - - - - - - - - hyoid apparatus (amphibian) - AAO:0000682 - - - - - - - - - - - - - - - - - - - hyoid bone (amphibian) - AAO:0000684 - - - - - - - - - - - - - - - - - - - basibranchial bone (amphibian) - AAO:0000686 - - - - - - - - - - - - - - - - - - - cuneiform cartilage (amphibian) - AAO:0000690 - - - - - - - - - - - - - - - - - - - vertebra (amphibian) - AAO:0000691 - - - - - - - - - - - - - - - - - - - vertebral canal (amphibian) - AAO:0000693 - - - - - - - - - - - - - - - - - - - vertebra lamina (amphibian) - AAO:0000695 - - - - - - - - - - - - - - - - - - - bony vertebral centrum (amphibian) - AAO:0000697 - - - - - - - - - - - - - - - - - - - transverse process of vertebra (amphibian) - AAO:0000698 - - - - - - - - - - - - - - - - - - - vertebral column (amphibian) - AAO:0000699 - - - - - - - - - - - - - - - - - - - space in vertebral column (amphibian) - AAO:0000700 - - - - - - - - - - - - - - - - - - - postzygapophysis (amphibian) - AAO:0000702 - - - - - - - - - - - - - - - - - - - prezygapophysis (amphibian) - AAO:0000703 - - - - - - - - - - - - - - - - - - - neural spine (amphibian) - AAO:0000705 - - - - - - - - - - - - - - - - - - - diapophysis of neural arch (amphibian) - AAO:0000706 - - - - - - - - - - - - - - - - - - - parapophysis (amphibian) - AAO:0000708 - - - - - - - - - - - - - - - - - - - vertebral bone 1 (amphibian) - AAO:0000709 - - - - - - - - - - - - - - - - - - - zygapophysis (amphibian) - AAO:0000710 - - - - - - - - - - - - - - - - - - - odontoid process of cervical vertebra 2 (amphibian) - AAO:0000721 - - - - - - - - - - - - - - - - - - - dorsal head of rib (amphibian) - AAO:0000722 - - - - - - - - - - - - - - - - - - - ventral head of rib (amphibian) - AAO:0000723 - - - - - - - - - - - - - - - - - - - sacral region of vertebral column (amphibian) - AAO:0000724 - - - - - - - - - - - - - - - - - - - neural arch (amphibian) - AAO:0000725 - - - - - - - - - - - - - - - - - - - hemal arch (amphibian) - AAO:0000726 - - - - - - - - - - - - - - - - - - - vertebral foramen (amphibian) - AAO:0000729 - - - - - - - - - - - - - - - - - - - coccyx (amphibian) - AAO:0000731 - - - - - - - - - - - - - - - - - - - urostyle (amphibian) - AAO:0000732 - - - - - - - - - - - - - - - - - - - hypochord (amphibian) - AAO:0000733 - - - - - - - - - - - - - - - - - - - vertebral column (amphibian) - AAO:0000734 - - - - - - - - - - - - - - - - - - - deltopectoral crest (amphibian) - AAO:0000736 - - - - - - - - - - - - - - - - - - - perichordal tissue (amphibian) - AAO:0000737 - - - - - - - - - - - - - - - - - - - perichordal ring (amphibian) - AAO:0000738 - - - - - - - - - - - - - - - - - - - process of vertebra (amphibian) - AAO:0000739 - - - - - - - - - - - - - - - - - - - synsacrum (amphibian) - AAO:0000740 - - - - - - - - - - - - - - - - - - - uncinate process of ribs (amphibian) - AAO:0000741 - - - - - - - - - - - - - - - - - - - epiphysis (amphibian) - AAO:0000742 - - - - - - - - - - - - - - - - - - - appendicular skeleton (amphibian) - AAO:0000747 - - - - - - - - - - - - - - - - - - - glenoid fossa (amphibian) - AAO:0000749 - - - - - - - - - - - - - - - - - - - cleithrum (amphibian) - AAO:0000750 - - - - - - - - - - - - - - - - - - - scapula (amphibian) - AAO:0000751 - - - - - - - - - - - - - - - - - - - pectoral girdle skeleton (amphibian) - AAO:0000754 - - - - - - - - - - - - - - - - - - - ectepicondyle of humerus (amphibian) - AAO:0000758 - - - - - - - - - - - - - - - - - - - procoracoid element (amphibian) - AAO:0000760 - - - - - - - - - - - - - - - - - - - clavicle bone (amphibian) - AAO:0000761 - - - - - - - - - - - - - - - - - - - coracoid bone (amphibian) - AAO:0000764 - - - - - - - - - - - - - - - - - - - sternum (amphibian) - AAO:0000765 - - - - - - - - - - - - - - - - - - - pelvic girdle skeleton (amphibian) - AAO:0000768 - - - - - - - - - - - - - - - - - - - pubic symphysis (amphibian) - AAO:0000769 - - - - - - - - - - - - - - - - - - - acetabular part of hip bone (amphibian) - AAO:0000770 - - - - - - - - - - - - - - - - - - - ilium (amphibian) - AAO:0000772 - - - - - - - - - - - - - - - - - - - scapulocoracoid (amphibian) - AAO:0000781 - - - - - - - - - - - - - - - - - - - entepicondyle of humerus (amphibian) - AAO:0000782 - - - - - - - - - - - - - - - - - - - radius bone (amphibian) - AAO:0000788 - - - - - - - - - - - - - - - - - - - ulna (amphibian) - AAO:0000789 - - - - - - - - - - - - - - - - - - - radiale (amphibian) - AAO:0000790 - - - - - - - - - - - - - - - - - - - intervertebral cartilage (amphibian) - AAO:0000795 - - - - - - - - - - - - - - - - - - - sternal end of clavicle (amphibian) - AAO:0000812 - - - - - - - - - - - - - - - - - - - acromion (amphibian) - AAO:0000826 - - - - - - - - - - - - - - - - - - - proximal head of humerus (amphibian) - AAO:0000835 - - - - - - - - - - - - - - - - - - - radial head of humerus (amphibian) - AAO:0000838 - - - - - - - - - - - - - - - - - - - olecranon (amphibian) - AAO:0000843 - - - - - - - - - - - - - - - - - - - ulnare (amphibian) - AAO:0000845 - - - - - - - - - - - - - - - - - - - distal carpal bone (amphibian) - AAO:0000847 - - - - - - - - - - - - - - - - - - - distal carpal bone 2 (amphibian) - AAO:0000848 - - - - - - - - - - - - - - - - - - - distal carpal bone 3 (amphibian) - AAO:0000849 - - - - - - - - - - - - - - - - - - - distal carpal bone 4 (amphibian) - AAO:0000850 - - - - - - - - - - - - - - - - - - - distal carpal bone 5 (amphibian) - AAO:0000851 - - - - - - - - - - - - - - - - - - - prepollex skeleton (amphibian) - AAO:0000852 - - - - - - - - - - - - - - - - - - - metacarpal bone of digit 2 (amphibian) - AAO:0000853 - - - - - - - - - - - - - - - - - - - metacarpal bone of digit 3 (amphibian) - AAO:0000854 - - - - - - - - - - - - - - - - - - - metacarpal bone of digit 5 (amphibian) - AAO:0000855 - - - - - - - - - - - - - - - - - - - manual digit (amphibian) - AAO:0000857 - - - - - - - - - - - - - - - - - - - ischium (amphibian) - AAO:0000860 - - - - - - - - - - - - - - - - - - - pubis (amphibian) - AAO:0000861 - - - - - - - - - - - - - - - - - - - obturator foramen (amphibian) - AAO:0000863 - - - - - - - - - - - - - - - - - - - acetabular labrum (amphibian) - AAO:0000864 - - - - - - - - - - - - - - - - - - - lamina terminalis of ischium (amphibian) - AAO:0000881 - - - - - - - - - - - - - - - - - - - femur (amphibian) - AAO:0000887 - - - - - - - - - - - - - - - - - - - pedal digit (amphibian) - AAO:0000888 - - - - - - - - - - - - - - - - - - - femur (amphibian) - AAO:0000889 - - - - - - - - - - - - - - - - - - - tibia (amphibian) - AAO:0000890 - - - - - - - - - - - - - - - - - - - fibula (amphibian) - AAO:0000891 - - - - - - - - - - - - - - - - - - - head of femur (amphibian) - AAO:0000892 - - - - - - - - - - - - - - - - - - - distal epiphysis of femur (amphibian) - AAO:0000893 - - - - - - - - - - - - - - - - - - - trochanter (amphibian) - AAO:0000897 - - - - - - - - - - - - - - - - - - - condyle of tibia (amphibian) - AAO:0000899 - - - - - - - - - - - - - - - - - - - condyle of femur (amphibian) - AAO:0000900 - - - - - - - - - - - - - - - - - - - radio-ulna (amphibian) - AAO:0000901 - - - - - - - - - - - - - - - - - - - tibiofibula (amphibian) - AAO:0000902 - - - - - - - - - - - - - - - - - - - medial tibial tarsal bone (amphibian) - AAO:0000912 - - - - - - - - - - - - - - - - - - - fibulare (amphibian) - AAO:0000913 - - - - - - - - - - - - - - - - - - - distal tarsal bone (amphibian) - AAO:0000914 - - - - - - - - - - - - - - - - - - - distal tarsal bone 1 (amphibian) - AAO:0000918 - - - - - - - - - - - - - - - - - - - distal tarsal bone 2 (amphibian) - AAO:0000919 - - - - - - - - - - - - - - - - - - - distal tarsal bone 3 (amphibian) - AAO:0000920 - - - - - - - - - - - - - - - - - - - hindlimb intermedium bone (amphibian) - AAO:0000923 - - - - - - - - - - - - - - - - - - - navicular bone of pes (amphibian) - AAO:0000924 - - - - - - - - - - - - - - - - - - - metatarsal bone of digit 1 (amphibian) - AAO:0000925 - - - - - - - - - - - - - - - - - - - metatarsal bone of digit 2 (amphibian) - AAO:0000926 - - - - - - - - - - - - - - - - - - - metatarsal bone of digit 3 (amphibian) - AAO:0000927 - - - - - - - - - - - - - - - - - - - metatarsal bone of digit 4 (amphibian) - AAO:0000928 - - - - - - - - - - - - - - - - - - - metatarsal bone of digit 5 (amphibian) - AAO:0000929 - - - - - - - - - - - - - - - - - - - phalanx of pes (amphibian) - AAO:0000930 - - - - - - - - - - - - - - - - - - - distal tarsal bone 4 (amphibian) - AAO:0000932 - - - - - - - - - - - - - - - - - - - distal tarsal bone 5 (amphibian) - AAO:0000933 - - - - - - - - - - - - - - - - - - - body of sternum (amphibian) - AAO:0000939 - - - - - - - - - - - - - - - - - - - xiphoid cartilage (amphibian) - AAO:0000940 - - - - - - - - - - - - - - - - - - - metacarpus skeleton (amphibian) - AAO:0000946 - - - - - - - - - - - - - - - - - - - phalanx of manus (amphibian) - AAO:0000947 - - - - - - - - - - - - - - - - - - - hypohyal bone (amphibian) - AAO:0000958 - - - - - - - - - - - - - - - - - - - circulatory system (amphibian) - AAO:0000959 - - - - - - - - - - - - - - - - - - - oral cavity (amphibian) - AAO:0000960 - - - - - - - - - - - - - - - - - - - axial skeleton plus cranial skeleton (amphibian) - AAO:0000963 - - - - - - - - - - - - - - - - - - - chordate pharynx (amphibian) - AAO:0000967 - - - - - - - - - - - - - - - - - - - cranial skeletal system (amphibian) - AAO:0000971 - - - - - - - - - - - - - - - - - - - lateral line system (amphibian) - AAO:0000975 - - - - - - - - - - - - - - - - - - - olfactory system (amphibian) - AAO:0000978 - - - - - - - - - - - - - - - - - - - external naris (amphibian) - AAO:0000983 - - - - - - - - - - - - - - - - - - - vestibule of nasal cavity (amphibian) - AAO:0000984 - - - - - - - - - - - - - - - - - - - ethmoid region (amphibian) - AAO:0000986 - - - - - - - - - - - - - - - - - - - jaw skeleton (amphibian) - AAO:0000988 - - - - - - - - - - - - - - - - - - - vomeronasal organ (amphibian) - AAO:0000997 - - - - - - - - - - - - - - - - - - - neuromast (amphibian) - AAO:0001004 - - - - - - - - - - - - - - - - - - - ampullary organ (amphibian) - AAO:0001006 - - - - - - - - - - - - - - - - - - - anatomical group (amphibian) - AAO:0010008 - - - - - - - - - - - - - - - - - - - compound organ (amphibian) - AAO:0010015 - - - - - - - - - - - - - - - - - - - cavitated compound organ (amphibian) - AAO:0010016 - - - - - - - - - - - - - - - - - - - compound organ component (amphibian) - AAO:0010017 - - - - - - - - - - - - - - - - - - - solid compound organ (amphibian) - AAO:0010019 - - - - - - - - - - - - - - - - - - - extraembryonic structure (amphibian) - AAO:0010020 - - - - - - - - - - - - - - - - - - - digestive tract (amphibian) - AAO:0010023 - - - - - - - - - - - - - - - - - - - multicellular organism (amphibian) - AAO:0010026 - - - - - - - - - - - - - - - - - - - extra-ocular muscle (amphibian) - AAO:0010028 - - - - - - - - - - - - - - - - - - - female organism (amphibian) - AAO:0010030 - - - - - - - - - - - - - - - - - - - male organism (amphibian) - AAO:0010033 - - - - - - - - - - - - - - - - - - - adductor longus (amphibian) - AAO:0010034 - - - - - - - - - - - - - - - - - - - hermaphroditic organism (amphibian) - AAO:0010035 - - - - - - - - - - - - - - - - - - - pectineus muscle (amphibian) - AAO:0010036 - - - - - - - - - - - - - - - - - - - sequential hermaphroditic organism (amphibian) - AAO:0010037 - - - - - - - - - - - - - - - - - - - intra-ocular muscle (amphibian) - AAO:0010038 - - - - - - - - - - - - - - - - - - - adductor magnus (amphibian) - AAO:0010040 - - - - - - - - - - - - - - - - - - - obturator externus (amphibian) - AAO:0010043 - - - - - - - - - - - - - - - - - - - synchronous hermaphroditic organism (amphibian) - AAO:0010046 - - - - - - - - - - - - - - - - - - - multi-tissue structure (amphibian) - AAO:0010048 - - - - - - - - - - - - - - - - - - - simple organ (amphibian) - AAO:0010051 - - - - - - - - - - - - - - - - - - - obturator internus (amphibian) - AAO:0010052 - - - - - - - - - - - - - - - - - - - organism subdivision (amphibian) - AAO:0010053 - - - - - - - - - - - - - - - - - - - tissue (amphibian) - AAO:0010054 - - - - - - - - - - - - - - - - - - - epithelium (amphibian) - AAO:0010055 - - - - - - - - - - - - - - - - - - - dermal scale (amphibian) - AAO:0010056 - - - - - - - - - - - - - - - - - - - atypical epithelium (amphibian) - AAO:0010057 - - - - - - - - - - - - - - - - - - - multilaminar epithelium (amphibian) - AAO:0010059 - - - - - - - - - - - - - - - - - - - unilaminar epithelium (amphibian) - AAO:0010062 - - - - - - - - - - - - - - - - - - - simple columnar epithelium (amphibian) - AAO:0010063 - - - - - - - - - - - - - - - - - - - simple cuboidal epithelium (amphibian) - AAO:0010064 - - - - - - - - - - - - - - - - - - - simple squamous epithelium (amphibian) - AAO:0010066 - - - - - - - - - - - - - - - - - - - lateral line nerve (amphibian) - AAO:0010077 - - - - - - - - - - - - - - - - - - - sphenoid bone pterygoid process (amphibian) - AAO:0010086 - - - - - - - - - - - - - - - - - - - olfactory nerve (amphibian) - AAO:0010088 - - - - - - - - - - - - - - - - - - - parotid gland (amphibian) - AAO:0010095 - - - - - - - - - - - - - - - - - - - superior rectus extraocular muscle (amphibian) - AAO:0010099 - - - - - - - - - - - - - - - - - - - inferior rectus extraocular muscle (amphibian) - AAO:0010101 - - - - - - - - - - - - - - - - - - - lateral rectus extra-ocular muscle (amphibian) - AAO:0010107 - - - - - - - - - - - - - - - - - - - anatomical space (amphibian) - AAO:0010110 - - - - - - - - - - - - - - - - - - - liver (amphibian) - AAO:0010111 - - - - - - - - - - - - - - - - - - - pancreas (amphibian) - AAO:0010112 - - - - - - - - - - - - - - - - - - - medial rectus extraocular muscle (amphibian) - AAO:0010113 - - - - - - - - - - - - - - - - - - - gallbladder (amphibian) - AAO:0010114 - - - - - - - - - - - - - - - - - - - inferior oblique extraocular muscle (amphibian) - AAO:0010117 - - - - - - - - - - - - - - - - - - - superior oblique extraocular muscle (amphibian) - AAO:0010119 - - - - - - - - - - - - - - - - - - - webbed manus (amphibian) - AAO:0010120 - - - - - - - - - - - - - - - - - - - webbed pes (amphibian) - AAO:0010121 - - - - - - - - - - - - - - - - - - - musculus retractor bulbi (amphibian) - AAO:0010122 - - - - - - - - - - - - - - - - - - - tectum synoticum (amphibian) - AAO:0010129 - - - - - - - - - - - - - - - - - - - ethmoid cartilage (amphibian) - AAO:0010134 - - - - - - - - - - - - - - - - - - - nasal septum (amphibian) - AAO:0010135 - - - - - - - - - - - - - - - - - - - trachea (amphibian) - AAO:0010140 - - - - - - - - - - - - - - - - - - - Mullerian duct (amphibian) - AAO:0010141 - - - - - - - - - - - - - - - - - - - otic capsule (amphibian) - AAO:0010143 - - - - - - - - - - - - - - - - - - - forebrain (amphibian) - AAO:0010147 - - - - - - - - - - - - - - - - - - - midbrain (amphibian) - AAO:0010149 - - - - - - - - - - - - - - - - - - - hindbrain (amphibian) - AAO:0010150 - - - - - - - - - - - - - - - - - - - spinal cord (amphibian) - AAO:0010151 - - - - - - - - - - - - - - - - - - - - cartilaginous neurocranium (amphibian) - neurocranium (amphibian) - AAO:0010153 - - - - - - - - - - - - - - - - - - - dermatocranium (amphibian) - AAO:0010154 - - - - - - - - - - - - - - - - - - - splanchnocranium (amphibian) - AAO:0010157 - - - - - - - - - - - - - - - - - - - olfactory epithelium (amphibian) - AAO:0010158 - - - - - - - - - - - - - - - - - - - olfactory gland (amphibian) - AAO:0010162 - - - - - - - - - - - - - - - - - - - olfactory bulb (amphibian) - AAO:0010165 - - - - - - - - - - - - - - - - - - - chondrocranium (amphibian) - AAO:0010169 - - - - - - - - - - - - - - - - - - - gill (amphibian) - AAO:0010171 - - - - - - - - - - - - - - - - - - - external gill (amphibian) - AAO:0010174 - - - - - - - - - - - - - - - - - - - internal gill (amphibian) - AAO:0010176 - - - - - - - - - - - - - - - - - - - nuptial pad (amphibian) - AAO:0010177 - - - - - - - - - - - - - - - - - - - olfactory organ (amphibian) - AAO:0010180 - - - - - - - - - - - - - - - - - - - cranial skeletal system (amphibian) - AAO:0010185 - - - - - - - - - - - - - - - - - - - occipital region (amphibian) - AAO:0010199 - - - - - - - - - - - - - - - - - - - olfactory region (amphibian) - AAO:0010206 - - - - - - - - - - - - - - - - - - - sphenoid region (amphibian) - AAO:0010207 - - - - - - - - - - - - - - - - - - - otic region (amphibian) - AAO:0010208 - - - - - - - - - - - - - - - - - - - heart (amphibian) - AAO:0010210 - - - - - - - - - - - - - - - - - - - artery (amphibian) - AAO:0010211 - - - - - - - - - - - - - - - - - - - vein (amphibian) - AAO:0010212 - - - - - - - - - - - - - - - - - - - aorta (amphibian) - AAO:0010213 - - - - - - - - - - - - - - - - - - - hepatic portal vein (amphibian) - AAO:0010214 - - - - - - - - - - - - - - - - - - - vena cava (amphibian) - AAO:0010215 - - - - - - - - - - - - - - - - - - - hepatic vein (amphibian) - AAO:0010216 - - - - - - - - - - - - - - - - - - - carotid artery segment (amphibian) - AAO:0010217 - - - - - - - - - - - - - - - - - - - external carotid artery (amphibian) - AAO:0010218 - - - - - - - - - - - - - - - - - - - internal carotid artery (amphibian) - AAO:0010219 - - - - - - - - - - - - - - - - - - - pulmonary artery (amphibian) - AAO:0010221 - - - - - - - - - - - - - - - - - - - femoral artery (amphibian) - AAO:0010222 - - - - - - - - - - - - - - - - - - - renal artery (amphibian) - AAO:0010223 - - - - - - - - - - - - - - - - - - - hepatic portal system (amphibian) - AAO:0010225 - - - - - - - - - - - - - - - - - - - subclavian artery (amphibian) - AAO:0010232 - - - - - - - - - - - - - - - - - - - internal jugular vein (amphibian) - AAO:0010236 - - - - - - - - - - - - - - - - - - - femoral vein (amphibian) - AAO:0010237 - - - - - - - - - - - - - - - - - - - gular fold (amphibian) - AAO:0010238 - - - - - - - - - - - - - - - - - - - smooth muscle tissue (amphibian) - AAO:0010244 - - - - - - - - - - - - - - - - - - - cardiac muscle tissue (amphibian) - AAO:0010245 - - - - - - - - - - - - - - - - - - - cardiac atrium (amphibian) - AAO:0010246 - - - - - - - - - - - - - - - - - - - left cardiac atrium (amphibian) - AAO:0010247 - - - - - - - - - - - - - - - - - - - right cardiac atrium (amphibian) - AAO:0010248 - - - - - - - - - - - - - - - - - - - cardiac ventricle (amphibian) - AAO:0010249 - - - - - - - - - - - - - - - - - - - conus arteriosus (amphibian) - AAO:0010250 - - - - - - - - - - - - - - - - - - - spiral valve of conus arteriosus (amphibian) - AAO:0010251 - - - - - - - - - - - - - - - - - - - capillary (amphibian) - AAO:0010252 - - - - - - - - - - - - - - - - - - - arteriole (amphibian) - AAO:0010253 - - - - - - - - - - - - - - - - - - - ureter (amphibian) - AAO:0010254 - - - - - - - - - - - - - - - - - - - intromittent organ (amphibian) - AAO:0010255 - - - - - - - - - - - - - - - - - - - renal system (amphibian) - AAO:0010257 - - - - - - - - - - - - - - - - - - - reproductive system (amphibian) - AAO:0010258 - - - - - - - - - - - - - - - - - - - material anatomical entity (amphibian) - AAO:0010264 - - - - - - - - - - - - - - - - - - - immaterial anatomical entity (amphibian) - AAO:0010265 - - - - - - - - - - - - - - - - - - - anatomical point (amphibian) - AAO:0010266 - - - - - - - - - - - - - - - - - - - anatomical line (amphibian) - AAO:0010267 - - - - - - - - - - - - - - - - - - - acellular anatomical structure (amphibian) - AAO:0010268 - - - - - - - - - - - - - - - - - - - basal lamina of epithelium (amphibian) - AAO:0010269 - - - - - - - - - - - - - - - - - - - anatomical surface region (amphibian) - AAO:0010270 - - - - - - - - - - - - - - - - - - - anatomical line along groove (amphibian) - AAO:0010276 - - - - - - - - - - - - - - - - - - - anatomical projection (amphibian) - AAO:0010278 - - - - - - - - - - - - - - - - - - - endocrine system (amphibian) - AAO:0010279 - - - - - - - - - - - - - - - - - - - extensor carpi ulnaris muscle (amphibian) - AAO:0010281 - - - - - - - - - - - - - - - - - - - animal hemisphere (amphibian) - AAO:0010325 - - - - - - - - - - - - - - - - - - - vegetal hemisphere (amphibian) - AAO:0010331 - - - - - - - - - - - - - - - - - - - vitelline membrane (amphibian) - AAO:0010332 - - - - - - - - - - - - - - - - - - - head (amphibian) - AAO:0010335 - - - - - - - - - - - - - - - - - - - limb (amphibian) - AAO:0010336 - - - - - - - - - - - - - - - - - - - surface structure (amphibian) - AAO:0010337 - - - - - - - - - - - - - - - - - - - post-anal tail (amphibian) - AAO:0010338 - - - - - - - - - - - - - - - - - - - trunk (amphibian) - AAO:0010339 - - - - - - - - - - - - - - - - - - - camera-type eye (amphibian) - AAO:0010340 - - - - - - - - - - - - - - - - - - - ciliary body (amphibian) - AAO:0010341 - - - - - - - - - - - - - - - - - - - ciliary marginal zone (amphibian) - AAO:0010342 - - - - - - - - - - - - - - - - - - - conjunctiva (amphibian) - AAO:0010343 - - - - - - - - - - - - - - - - - - - cornea (amphibian) - AAO:0010344 - - - - - - - - - - - - - - - - - - - cranial nerve II (amphibian) - AAO:0010345 - - - - - - - - - - - - - - - - - - - iris (amphibian) - AAO:0010347 - - - - - - - - - - - - - - - - - - - lens of camera-type eye (amphibian) - AAO:0010348 - - - - - - - - - - - - - - - - - - - lower eyelid (amphibian) - AAO:0010349 - - - - - - - - - - - - - - - - - - - pupil (amphibian) - AAO:0010351 - - - - - - - - - - - - - - - - - - - retina (amphibian) - AAO:0010352 - - - - - - - - - - - - - - - - - - - layer of retina (amphibian) - AAO:0010353 - - - - - - - - - - - - - - - - - - - sclera (amphibian) - AAO:0010354 - - - - - - - - - - - - - - - - - - - mouth (amphibian) - AAO:0010355 - - - - - - - - - - - - - - - - - - - oral epithelium (amphibian) - AAO:0010357 - - - - - - - - - - - - - - - - - - - external naris (amphibian) - AAO:0010358 - - - - - - - - - - - - - - - - - - - pharyngeal arch (amphibian) - AAO:0010359 - - - - - - - - - - - - - - - - - - - tongue (amphibian) - AAO:0010360 - - - - - - - - - - - - - - - - - - - post-hyoid pharyngeal arch (amphibian) - AAO:0010362 - - - - - - - - - - - - - - - - - - - pharyngeal arch 2 (amphibian) - AAO:0010363 - - - - - - - - - - - - - - - - - - - pharyngeal arch 1 (amphibian) - AAO:0010364 - - - - - - - - - - - - - - - - - - - pharyngeal arch 3 (amphibian) - AAO:0010365 - - - - - - - - - - - - - - - - - - - pharyngeal arch 4 (amphibian) - AAO:0010366 - - - - - - - - - - - - - - - - - - - pharyngeal arch 5 (amphibian) - AAO:0010367 - - - - - - - - - - - - - - - - - - - pharyngeal arch 6 (amphibian) - AAO:0010368 - - - - - - - - - - - - - - - - - - - hyoid arch skeleton (amphibian) - AAO:0010370 - - - - - - - - - - - - - - - - - - - dorsal hyoid arch skeleton (amphibian) - AAO:0010371 - - - - - - - - - - - - - - - - - - - ventral hyoid arch skeleton (amphibian) - AAO:0010372 - - - - - - - - - - - - - - - - - - - embryonic cement gland (amphibian) - AAO:0010373 - - - - - - - - - - - - - - - - - - - fin (amphibian) - AAO:0010374 - - - - - - - - - - - - - - - - - - - limb bud (amphibian) - AAO:0010375 - - - - - - - - - - - - - - - - - - - dorsal fin (amphibian) - AAO:0010378 - - - - - - - - - - - - - - - - - - - forelimb bud (amphibian) - AAO:0010381 - - - - - - - - - - - - - - - - - - - hindlimb bud (amphibian) - AAO:0010382 - - - - - - - - - - - - - - - - - - - tail somite (amphibian) - AAO:0010383 - - - - - - - - - - - - - - - - - - - mesonephros (amphibian) - AAO:0010384 - - - - - - - - - - - - - - - - - - - trunk somite (amphibian) - AAO:0010385 - - - - - - - - - - - - - - - - - - - viscus (amphibian) - AAO:0010386 - - - - - - - - - - - - - - - - - - - mesonephric nephron (amphibian) - AAO:0010387 - - - - - - - - - - - - - - - - - - - mesonephric glomerulus (amphibian) - AAO:0010388 - - - - - - - - - - - - - - - - - - - mesonephric tubule (amphibian) - AAO:0010389 - - - - - - - - - - - - - - - - - - - mesonephric collecting duct (amphibian) - AAO:0010390 - - - - - - - - - - - - - - - - - - - mesonephric early distal tubule (amphibian) - AAO:0010391 - - - - - - - - - - - - - - - - - - - spleen (amphibian) - AAO:0010395 - - - - - - - - - - - - - - - - - - - large intestine (amphibian) - AAO:0010396 - - - - - - - - - - - - - - - - - - - small intestine (amphibian) - AAO:0010397 - - - - - - - - - - - - - - - - - - - seminiferous tubule of testis (amphibian) - AAO:0010399 - - - - - - - - - - - - - - - - - - - colon (amphibian) - AAO:0010400 - - - - - - - - - - - - - - - - - - - rectum (amphibian) - AAO:0010401 - - - - - - - - - - - - - - - - - - - duodenum (amphibian) - AAO:0010402 - - - - - - - - - - - - - - - - - - - ileum (amphibian) - AAO:0010403 - - - - - - - - - - - - - - - - - - - liver parenchyma (amphibian) - AAO:0010405 - - - - - - - - - - - - - - - - - - - islet of Langerhans (amphibian) - AAO:0010406 - - - - - - - - - - - - - - - - - - - exocrine pancreas (amphibian) - AAO:0010407 - - - - - - - - - - - - - - - - - - - endocardium (amphibian) - AAO:0010408 - - - - - - - - - - - - - - - - - - - epicardium (amphibian) - AAO:0010409 - - - - - - - - - - - - - - - - - - - myocardium (amphibian) - AAO:0010410 - - - - - - - - - - - - - - - - - - - heart tube (amphibian) - AAO:0010411 - - - - - - - - - - - - - - - - - - - ventral aorta (amphibian) - AAO:0010412 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery (amphibian) - AAO:0010414 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 1 (amphibian) - AAO:0010415 - - - - - - - - - - - - - - - - - - - external carotid artery (amphibian) - AAO:0010416 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 2 (amphibian) - AAO:0010418 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 3 (amphibian) - AAO:0010419 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 4 (amphibian) - AAO:0010420 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 5 (amphibian) - AAO:0010421 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 6 (amphibian) - AAO:0010422 - - - - - - - - - - - - - - - - - - - ganglion (amphibian) - AAO:0010426 - - - - - - - - - - - - - - - - - - - mesenchyme (amphibian) - AAO:0010427 - - - - - - - - - - - - - - - - - - - archenteron (amphibian) - AAO:0010430 - - - - - - - - - - - - - - - - - - - blastocele (amphibian) - AAO:0010433 - - - - - - - - - - - - - - - - - - - cavity of pharynx (amphibian) - AAO:0010435 - - - - - - - - - - - - - - - - - - - bone foramen (amphibian) - AAO:0010438 - - - - - - - - - - - - - - - - - - - bone fossa (amphibian) - AAO:0010439 - - - - - - - - - - - - - - - - - - - pore (amphibian) - AAO:0010441 - - - - - - - - - - - - - - - - - - - skeletal ligament (amphibian) - AAO:0010444 - - - - - - - - - - - - - - - - - - - perichondrium (amphibian) - AAO:0010445 - - - - - - - - - - - - - - - - - - - perichordal tissue (amphibian) - AAO:0010446 - - - - - - - - - - - - - - - - - - - marginal zone of embryo (amphibian) - AAO:0010448 - - - - - - - - - - - - - - - - - - - cranial placode (amphibian) - AAO:0010466 - - - - - - - - - - - - - - - - - - - oculomotor nerve (amphibian) - AAO:0010468 - - - - - - - - - - - - - - - - - - - trochlear nerve (amphibian) - AAO:0010469 - - - - - - - - - - - - - - - - - - - trigeminal nerve (amphibian) - AAO:0010470 - - - - - - - - - - - - - - - - - - - abducens nerve (amphibian) - AAO:0010471 - - - - - - - - - - - - - - - - - - - facial nerve (amphibian) - AAO:0010472 - - - - - - - - - - - - - - - - - - - vestibulocochlear nerve (amphibian) - AAO:0010473 - - - - - - - - - - - - - - - - - - - glossopharyngeal nerve (amphibian) - AAO:0010474 - - - - - - - - - - - - - - - - - - - vagus nerve (amphibian) - AAO:0010475 - - - - - - - - - - - - - - - - - - - accessory XI nerve (amphibian) - AAO:0010476 - - - - - - - - - - - - - - - - - - - hypoglossal nerve (amphibian) - AAO:0010477 - - - - - - - - - - - - - - - - - - - brain (amphibian) - AAO:0010478 - - - - - - - - - - - - - - - - - - - telencephalon (amphibian) - AAO:0010479 - - - - - - - - - - - - - - - - - - - cerebral hemisphere (amphibian) - AAO:0010480 - - - - - - - - - - - - - - - - - - - diencephalon (amphibian) - AAO:0010481 - - - - - - - - - - - - - - - - - - - epithalamus (amphibian) - AAO:0010482 - - - - - - - - - - - - - - - - - - - dorsal plus ventral thalamus (amphibian) - AAO:0010483 - - - - - - - - - - - - - - - - - - - hypothalamus (amphibian) - AAO:0010484 - - - - - - - - - - - - - - - - - - - cerebellum (amphibian) - AAO:0010485 - - - - - - - - - - - - - - - - - - - medulla oblongata (amphibian) - AAO:0010486 - - - - - - - - - - - - - - - - - - - sympathetic nervous system (amphibian) - AAO:0010487 - - - - - - - - - - - - - - - - - - - parasympathetic nervous system (amphibian) - AAO:0010488 - - - - - - - - - - - - - - - - - - - thyroid artery (amphibian) - AAO:0010490 - - - - - - - - - - - - - - - - - - - sublingual artery (amphibian) - AAO:0010491 - - - - - - - - - - - - - - - - - - - lingual artery (amphibian) - AAO:0010492 - - - - - - - - - - - - - - - - - - - cerebral artery (amphibian) - AAO:0010493 - - - - - - - - - - - - - - - - - - - temporal branch of lateral pretrosal artery (amphibian) - AAO:0010495 - - - - - - - - - - - - - - - - - - - ophthalmic artery (amphibian) - AAO:0010497 - - - - - - - - - - - - - - - - - - - brachial artery (amphibian) - AAO:0010504 - - - - - - - - - - - - - - - - - - - sinus venosus (amphibian) - AAO:0010505 - - - - - - - - - - - - - - - - - - - external jugular vein (amphibian) - AAO:0010508 - - - - - - - - - - - - - - - - - - - vertebral vein (amphibian) - AAO:0010509 - - - - - - - - - - - - - - - - - - - subclavian vein (amphibian) - AAO:0010510 - - - - - - - - - - - - - - - - - - - posterior cardinal vein (amphibian) - AAO:0010511 - - - - - - - - - - - - - - - - - - - brachial vein (amphibian) - AAO:0010512 - - - - - - - - - - - - - - - - - - - facial vein (amphibian) - AAO:0010513 - - - - - - - - - - - - - - - - - - - lingual vein (amphibian) - AAO:0010514 - - - - - - - - - - - - - - - - - - - renal portal system (amphibian) - AAO:0010518 - - - - - - - - - - - - - - - - - - - pulmonary vein (amphibian) - AAO:0010521 - - - - - - - - - - - - - - - - - - - lymphatic part of lymphoid system (amphibian) - AAO:0010522 - - - - - - - - - - - - - - - - - - - glomerular capsule (amphibian) - AAO:0010526 - - - - - - - - - - - - - - - - - - - mesorchium (amphibian) - AAO:0010530 - - - - - - - - - - - - - - - - - - - mesovarium (amphibian) - AAO:0010531 - - - - - - - - - - - - - - - - - - - efferent duct (amphibian) - AAO:0010532 - - - - - - - - - - - - - - - - - - - oviduct (amphibian) - AAO:0010533 - - - - - - - - - - - - - - - - - - - primitive palate (amphibian) - AAO:0010535 - - - - - - - - - - - - - - - - - - - pituitary gland (amphibian) - AAO:0010536 - - - - - - - - - - - - - - - - - - - neurohypophysis (amphibian) - AAO:0010537 - - - - - - - - - - - - - - - - - - - median eminence of neurohypophysis (amphibian) - AAO:0010539 - - - - - - - - - - - - - - - - - - - adenohypophysis (amphibian) - AAO:0010540 - - - - - - - - - - - - - - - - - - - pars distalis of adenohypophysis (amphibian) - AAO:0010542 - - - - - - - - - - - - - - - - - - - thyroid gland (amphibian) - AAO:0010544 - - - - - - - - - - - - - - - - - - - parathyroid gland (amphibian) - AAO:0010545 - - - - - - - - - - - - - - - - - - - musculoskeletal system (amphibian) - AAO:0010546 - - - - - - - - - - - - - - - - - - - ultimobranchial body (amphibian) - AAO:0010547 - - - - - - - - - - - - - - - - - - - thymus (amphibian) - AAO:0010548 - - - - - - - - - - - - - - - - - - - pineal body (amphibian) - AAO:0010549 - - - - - - - - - - - - - - - - - - - adrenal gland (amphibian) - AAO:0010551 - - - - - - - - - - - - - - - - - - - neural tube basal plate (amphibian) - AAO:0010561 - - - - - - - - - - - - - - - - - - - lung (amphibian) - AAO:0010567 - - - - - - - - - - - - - - - - - - - paraxial mesoderm (amphibian) - AAO:0010568 - - - - - - - - - - - - - - - - - - - somite (amphibian) - AAO:0010569 - - - - - - - - - - - - - - - - - - - sclerotome (amphibian) - AAO:0010571 - - - - - - - - - - - - - - - - - - - dermomyotome (amphibian) - AAO:0010572 - - - - - - - - - - - - - - - - - - - taste bud (amphibian) - AAO:0010573 - - - - - - - - - - - - - - - - - - - lateral plate mesoderm (amphibian) - AAO:0010574 - - - - - - - - - - - - - - - - - - - intermediate mesoderm (amphibian) - AAO:0010575 - - - - - - - - - - - - - - - - - - - gustatory system (amphibian) - AAO:0010577 - - - - - - - - - - - - - - - - - - - neural crest (amphibian) - AAO:0010578 - - - - - - - - - - - - - - - - - - - egg yolk (amphibian) - AAO:0010579 - - - - - - - - - - - - - - - - - - - cranial neural crest (amphibian) - AAO:0010580 - - - - - - - - - - - - - - - - - - - trunk neural crest (amphibian) - AAO:0010582 - - - - - - - - - - - - - - - - - - - basement membrane of epithelium (amphibian) - AAO:0010596 - - - - - - - - - - - - - - - - - - - stratum corneum of epidermis (amphibian) - AAO:0010597 - - - - - - - - - - - - - - - - - - - stratum basale of epidermis (amphibian) - AAO:0010598 - - - - - - - - - - - - - - - - - - - stratum compactum of dermis (amphibian) - AAO:0010600 - - - - - - - - - - - - - - - - - - - mucous gland (amphibian) - AAO:0010601 - - - - - - - - - - - - - - - - - - - tubercle (amphibian) - AAO:0010605 - - - - - - - - - - - - - - - - - - - vomeronasal nerve (amphibian) - AAO:0010608 - - - - - - - - - - - - - - - - - - - superior colliculus (amphibian) - AAO:0010609 - - - - - - - - - - - - - - - - - - - glottis (amphibian) - AAO:0010610 - - - - - - - - - - - - - - - - - - - metacarpal bone of digit 4 (amphibian) - AAO:0010615 - - - - - - - - - - - - - - - - - - - metacarpal bone of digit 1 (amphibian) - AAO:0010616 - - - - - - - - - - - - - - - - - - - neural tube (amphibian) - AAO:0010617 - - - - - - - - - - - - - - - - - - - hypoblast (generic) (amphibian) - AAO:0010619 - - - - - - - - - - - - - - - - - - - optic chiasma (amphibian) - AAO:0010622 - - - - - - - - - - - - - - - - - - - pharyngeal cleft (amphibian) - AAO:0010623 - - - - - - - - - - - - - - - - - - - presumptive hypochord (amphibian) - AAO:0010625 - - - - - - - - - - - - - - - - - - - superior branch of oculomotor nerve (amphibian) - AAO:0010628 - - - - - - - - - - - - - - - - - - - inferior branch of oculomotor nerve (amphibian) - AAO:0010632 - - - - - - - - - - - - - - - - - - - distal carpal bone 1 (amphibian) - AAO:0010634 - - - - - - - - - - - - - - - - - - - manual digit 1 (amphibian) - AAO:0010639 - - - - - - - - - - - - - - - - - - - manual digit 2 (amphibian) - AAO:0010640 - - - - - - - - - - - - - - - - - - - manual digit 3 (amphibian) - AAO:0010641 - - - - - - - - - - - - - - - - - - - manual digit 4 (amphibian) - AAO:0010642 - - - - - - - - - - - - - - - - - - - manual digit 5 (amphibian) - AAO:0010643 - - - - - - - - - - - - - - - - - - - pedal digit 1 (amphibian) - AAO:0010644 - - - - - - - - - - - - - - - - - - - pedal digit 2 (amphibian) - AAO:0010645 - - - - - - - - - - - - - - - - - - - pedal digit 3 (amphibian) - AAO:0010646 - - - - - - - - - - - - - - - - - - - intermandibularis (amphibian) - AAO:0010647 - - - - - - - - - - - - - - - - - - - ophthalmic nerve (amphibian) - AAO:0010648 - - - - - - - - - - - - - - - - - - - interhyoideus (amphibian) - AAO:0010649 - - - - - - - - - - - - - - - - - - - jaw depressor muscle (amphibian) - AAO:0010655 - - - - - - - - - - - - - - - - - - - pedal digit 4 (amphibian) - AAO:0010656 - - - - - - - - - - - - - - - - - - - pedal digit 5 (amphibian) - AAO:0010658 - - - - - - - - - - - - - - - - - - - genioglossus muscle (amphibian) - AAO:0010660 - - - - - - - - - - - - - - - - - - - hyoglossus muscle (amphibian) - AAO:0010663 - - - - - - - - - - - - - - - - - - - longus capitis muscle (amphibian) - AAO:0010666 - - - - - - - - - - - - - - - - - - - maxillary nerve (amphibian) - AAO:0010670 - - - - - - - - - - - - - - - - - - - distal phalanx (amphibian) - AAO:0010676 - - - - - - - - - - - - - - - - - - - middle phalanx (amphibian) - AAO:0010677 - - - - - - - - - - - - - - - - - - - proximal phalanx (amphibian) - AAO:0010680 - - - - - - - - - - - - - - - - - - - girdle skeleton (amphibian) - AAO:0010686 - - - - - - - - - - - - - - - - - - - pectoral complex muscle (amphibian) - AAO:0010687 - - - - - - - - - - - - - - - - - - - mandibular nerve (amphibian) - AAO:0010688 - - - - - - - - - - - - - - - - - - - levator scapulae muscle (amphibian) - AAO:0010689 - - - - - - - - - - - - - - - - - - - mandibular nerve (amphibian) - AAO:0010703 - - - - - - - - - - - - - - - - - - - anconeus muscle (amphibian) - AAO:0010714 - - - - - - - - - - - - - - - - - - - depressor mandibulae muscle (amphibian) - AAO:0010715 - - - - - - - - - - - - - - - - - - - deltoid (amphibian) - AAO:0010716 - - - - - - - - - - - - - - - - - - - lateral line placode (amphibian) - AAO:0010718 - - - - - - - - - - - - - - - - - - - pectoral muscle (amphibian) - AAO:0010727 - - - - - - - - - - - - - - - - - - - pterygoid muscle (amphibian) - AAO:0010730 - - - - - - - - - - - - - - - - - - - flexor carpi radialis muscle (amphibian) - AAO:0010733 - - - - - - - - - - - - - - - - - - - palmaris longus muscle (amphibian) - AAO:0010737 - - - - - - - - - - - - - - - - - - - recurrent laryngeal nerve (amphibian) - AAO:0010754 - - - - - - - - - - - - - - - - - - - apical ectodermal ridge (amphibian) - AAO:0010760 - - - - - - - - - - - - - - - - - - - striated muscle tissue (amphibian) - AAO:0010762 - - - - - - - - - - - - - - - - - - - zone of polarizing activity (amphibian) - AAO:0010763 - - - - - - - - - - - - - - - - - - - replacement bone (amphibian) - AAO:0010768 - - - - - - - - - - - - - - - - - - - dermal bone (amphibian) - AAO:0010769 - - - - - - - - - - - - - - - - - - - sympathetic ganglion (amphibian) - AAO:0010773 - - - - - - - - - - - - - - - - - - - chondral bone (amphibian) - AAO:0010774 - - - - - - - - - - - - - - - - - - - longissimus thoracis muscle (amphibian) - AAO:0010775 - - - - - - - - - - - - - - - - - - - endochondral bone (amphibian) - AAO:0010776 - - - - - - - - - - - - - - - - - - - perichordal bone (amphibian) - AAO:0010777 - - - - - - - - - - - - - - - - - - - perichondral bone (amphibian) - AAO:0010779 - - - - - - - - - - - - - - - - - - - seminal vesicle (amphibian) - AAO:0010788 - - - - - - - - - - - - - - - - - - - rectus abdominis muscle (amphibian) - AAO:0010789 - - - - - - - - - - - - - - - - - - - sympathetic trunk (amphibian) - AAO:0010791 - - - - - - - - - - - - - - - - - - - manus (amphibian) - AAO:0010803 - - - - - - - - - - - - - - - - - - - abductor pollicis, radioulna-prepollox (amphibian) - AAO:0010805 - - - - - - - - - - - - - - - - - - - adductor pollicis muscle of prepollex (amphibian) - AAO:0010811 - - - - - - - - - - - - - - - - - - - peritoneum (amphibian) - AAO:0010814 - - - - - - - - - - - - - - - - - - - parietal peritoneum (amphibian) - AAO:0010816 - - - - - - - - - - - - - - - - - - - pericardium (amphibian) - AAO:0010817 - - - - - - - - - - - - - - - - - - - anatomical structure (amphibian) - AAO:0010825 - - - - - - - - - - - - - - - - - - - foramen magnum (amphibian) - AAO:0010826 - - - - - - - - - - - - - - - - - - - opisthotic (amphibian) - AAO:0010835 - - - - - - - - - - - - - - - - - - - organism substance (amphibian) - AAO:0010839 - - - - - - - - - - - - - - - - - - - anatomical entity (amphibian) - AAO:0010841 - - - - - - - - - - - - - - - - - - - multi cell part structure (amphibian) - AAO:0011000 - - - - - - - - - - - - - - - - - - - cardiovascular system (amphibian) - AAO:0011001 - - - - - - - - - - - - - - - - - - - hematopoietic system (amphibian) - AAO:0011002 - - - - - - - - - - - - - - - - - - - immune system (amphibian) - AAO:0011003 - - - - - - - - - - - - - - - - - - - blood vessel (amphibian) - AAO:0011004 - - - - - - - - - - - - - - - - - - - lymphatic vessel (amphibian) - AAO:0011005 - - - - - - - - - - - - - - - - - - - blood island (amphibian) - AAO:0011006 - - - - - - - - - - - - - - - - - - - bone marrow (amphibian) - AAO:0011007 - - - - - - - - - - - - - - - - - - - dorsal lateral plate region (amphibian) - AAO:0011008 - - - - - - - - - - - - - - - - - - - adrenal cortex (amphibian) - AAO:0011009 - - - - - - - - - - - - - - - - - - - adrenal medulla (amphibian) - AAO:0011010 - - - - - - - - - - - - - - - - - - - anterior cardinal vein (amphibian) - AAO:0011011 - - - - - - - - - - - - - - - - - - - anterior neural tube (amphibian) - AAO:0011012 - - - - - - - - - - - - - - - - - - - endothelium of artery (amphibian) - AAO:0011013 - - - - - - - - - - - - - - - - - - - ear (amphibian) - AAO:0011014 - - - - - - - - - - - - - - - - - - - auditory ossicle bone (amphibian) - AAO:0011015 - - - - - - - - - - - - - - - - - - - pharyngotympanic tube (amphibian) - AAO:0011016 - - - - - - - - - - - - - - - - - - - axial mesoderm (amphibian) - AAO:0011017 - - - - - - - - - - - - - - - - - - - basilar papilla (amphibian) - AAO:0011018 - - - - - - - - - - - - - - - - - - - bile duct (amphibian) - AAO:0011019 - - - - - - - - - - - - - - - - - - - biliary tree (amphibian) - AAO:0011020 - - - - - - - - - - - - - - - - - - - cardiogenic splanchnic mesoderm (amphibian) - AAO:0011021 - - - - - - - - - - - - - - - - - - - cardinal vein (amphibian) - AAO:0011022 - - - - - - - - - - - - - - - - - - - caudal artery (amphibian) - AAO:0011023 - - - - - - - - - - - - - - - - - - - posterior lateral line (amphibian) - AAO:0011024 - - - - - - - - - - - - - - - - - - - caudal vein (amphibian) - AAO:0011025 - - - - - - - - - - - - - - - - - - - optic fissure (amphibian) - AAO:0011026 - - - - - - - - - - - - - - - - - - - dental epithelium (amphibian) - AAO:0011027 - - - - - - - - - - - - - - - - - - - dermatome (amphibian) - AAO:0011028 - - - - - - - - - - - - - - - - - - - dorsal aorta (amphibian) - AAO:0011029 - - - - - - - - - - - - - - - - - - - dorsal lateral line (amphibian) - AAO:0011030 - - - - - - - - - - - - - - - - - - - dorsal pancreatic bud (amphibian) - AAO:0011031 - - - - - - - - - - - - - - - - - - - dorsal root ganglion (amphibian) - AAO:0011032 - - - - - - - - - - - - - - - - - - - common cardinal vein (amphibian) - AAO:0011033 - - - - - - - - - - - - - - - - - - - distal early tubule (amphibian) - AAO:0011034 - - - - - - - - - - - - - - - - - - - embryo (amphibian) - AAO:0011035 - - - - - - - - - - - - - - - - - - - epibranchial placode (amphibian) - AAO:0011036 - - - - - - - - - - - - - - - - - - - external ear (amphibian) - AAO:0011037 - - - - - - - - - - - - - - - - - - - eye primordium (amphibian) - AAO:0011038 - - - - - - - - - - - - - - - - - - - optic vesicle (amphibian) - AAO:0011039 - - - - - - - - - - - - - - - - - - - floor plate (amphibian) - AAO:0011041 - - - - - - - - - - - - - - - - - - - foregut (amphibian) - AAO:0011042 - - - - - - - - - - - - - - - - - - - fourth ventricle (amphibian) - AAO:0011043 - - - - - - - - - - - - - - - - - - - heart primordium (amphibian) - AAO:0011044 - - - - - - - - - - - - - - - - - - - gastric vein (amphibian) - AAO:0011046 - - - - - - - - - - - - - - - - - - - gonadal ridge (amphibian) - AAO:0011047 - - - - - - - - - - - - - - - - - - - pronephric glomerulus (amphibian) - AAO:0011049 - - - - - - - - - - - - - - - - - - - hatching gland (amphibian) - AAO:0011050 - - - - - - - - - - - - - - - - - - - head mesenchyme from mesoderm (amphibian) - AAO:0011051 - - - - - - - - - - - - - - - - - - - hindgut (amphibian) - AAO:0011052 - - - - - - - - - - - - - - - - - - - infraorbital lateral line (amphibian) - AAO:0011053 - - - - - - - - - - - - - - - - - - - internal carotid artery (amphibian) - AAO:0011054 - - - - - - - - - - - - - - - - - - - lens placode (amphibian) - AAO:0011055 - - - - - - - - - - - - - - - - - - - hepatobiliary system (amphibian) - AAO:0011056 - - - - - - - - - - - - - - - - - - - hepatic diverticulum (amphibian) - AAO:0011057 - - - - - - - - - - - - - - - - - - - liver primordium (amphibian) - AAO:0011058 - - - - - - - - - - - - - - - - - - - lung primordium (amphibian) - AAO:0011059 - - - - - - - - - - - - - - - - - - - membranous labyrinth (amphibian) - AAO:0011060 - - - - - - - - - - - - - - - - - - - mesentery (amphibian) - AAO:0011061 - - - - - - - - - - - - - - - - - - - mesonephric mesenchyme (amphibian) - AAO:0011062 - - - - - - - - - - - - - - - - - - - mesonephric sinus (amphibian) - AAO:0011063 - - - - - - - - - - - - - - - - - - - midbrain-hindbrain boundary (amphibian) - AAO:0011064 - - - - - - - - - - - - - - - - - - - middle ear (amphibian) - AAO:0011065 - - - - - - - - - - - - - - - - - - - - muscle organ (amphibian) - musculature (amphibian) - AAO:0011066 - - - - - - - - - - - - - - - - - - - myotome (amphibian) - AAO:0011067 - - - - - - - - - - - - - - - - - - - olfactory pit (amphibian) - AAO:0011068 - - - - - - - - - - - - - - - - - - - nephrostome (amphibian) - AAO:0011069 - - - - - - - - - - - - - - - - - - - nerve (amphibian) - AAO:0011070 - - - - - - - - - - - - - - - - - - - neural groove (amphibian) - AAO:0011071 - - - - - - - - - - - - - - - - - - - neural plate (amphibian) - AAO:0011072 - - - - - - - - - - - - - - - - - - - neural tube lumen (amphibian) - AAO:0011073 - - - - - - - - - - - - - - - - - - - neurectoderm (amphibian) - AAO:0011074 - - - - - - - - - - - - - - - - - - - occipital lateral line (amphibian) - AAO:0011075 - - - - - - - - - - - - - - - - - - - olfactory placode (amphibian) - AAO:0011076 - - - - - - - - - - - - - - - - - - - optic stalk (amphibian) - AAO:0011077 - - - - - - - - - - - - - - - - - - - bony labyrinth (amphibian) - AAO:0011078 - - - - - - - - - - - - - - - - - - - otic placode (amphibian) - AAO:0011079 - - - - - - - - - - - - - - - - - - - ear vesicle (amphibian) - AAO:0011080 - - - - - - - - - - - - - - - - - - - posterior neural tube (amphibian) - AAO:0011082 - - - - - - - - - - - - - - - - - - - posterior vena cava (amphibian) - AAO:0011083 - - - - - - - - - - - - - - - - - - - pre-chordal neural plate (amphibian) - AAO:0011084 - - - - - - - - - - - - - - - - - - - prechordal plate (amphibian) - AAO:0011085 - - - - - - - - - - - - - - - - - - - presomitic mesoderm (amphibian) - AAO:0011086 - - - - - - - - - - - - - - - - - - - proctodeum (amphibian) - AAO:0011087 - - - - - - - - - - - - - - - - - - - pronephric duct (amphibian) - AAO:0011088 - - - - - - - - - - - - - - - - - - - pronephros (amphibian) - AAO:0011089 - - - - - - - - - - - - - - - - - - - pronephric mesoderm (amphibian) - AAO:0011090 - - - - - - - - - - - - - - - - - - - pronephric nephron (amphibian) - AAO:0011091 - - - - - - - - - - - - - - - - - - - pronephric sinus (amphibian) - AAO:0011092 - - - - - - - - - - - - - - - - - - - pyloric sphincter (amphibian) - AAO:0011093 - - - - - - - - - - - - - - - - - - - Rathke's pouch (amphibian) - AAO:0011094 - - - - - - - - - - - - - - - - - - - retinal neural layer (amphibian) - AAO:0011095 - - - - - - - - - - - - - - - - - - - pigmented layer of retina (amphibian) - AAO:0011096 - - - - - - - - - - - - - - - - - - - roof plate (amphibian) - AAO:0011097 - - - - - - - - - - - - - - - - - - - semicircular canal (amphibian) - AAO:0011098 - - - - - - - - - - - - - - - - - - - skeletal muscle organ (amphibian) - AAO:0011099 - - - - - - - - - - - - - - - - - - - somatic layer of lateral plate mesoderm (amphibian) - AAO:0011100 - - - - - - - - - - - - - - - - - - - spinal nerve (amphibian) - AAO:0011101 - - - - - - - - - - - - - - - - - - - splanchnic layer of lateral plate mesoderm (amphibian) - AAO:0011102 - - - - - - - - - - - - - - - - - - - supraorbital lateral line (amphibian) - AAO:0011103 - - - - - - - - - - - - - - - - - - - post-anal tail bud (amphibian) - AAO:0011104 - - - - - - - - - - - - - - - - - - - tail vein (amphibian) - AAO:0011105 - - - - - - - - - - - - - - - - - - - thyroid primordium (amphibian) - AAO:0011106 - - - - - - - - - - - - - - - - - - - trigeminal ganglion (amphibian) - AAO:0011107 - - - - - - - - - - - - - - - - - - - utricle of membranous labyrinth (amphibian) - AAO:0011109 - - - - - - - - - - - - - - - - - - - endothelium of vein (amphibian) - AAO:0011110 - - - - - - - - - - - - - - - - - - - ventral pancreatic bud (amphibian) - AAO:0011111 - - - - - - - - - - - - - - - - - - - ventricular zone (amphibian) - AAO:0011112 - - - - - - - - - - - - - - - - - - - pharyngeal pouch (amphibian) - AAO:0011113 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 1 (amphibian) - AAO:0011114 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 2 (amphibian) - AAO:0011115 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 3 (amphibian) - AAO:0011116 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 4 (amphibian) - AAO:0011117 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 5 (amphibian) - AAO:0011118 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 6 (amphibian) - AAO:0011119 - - - - - - - - - - - - - - - - - - - duct (amphibian) - AAO:0011123 - - - - - - - - - - - - - - - - - - - organ part (amphibian) - AAO:0011124 - - - - - - - - - - - - - - - - - - - digit (amphibian) - AAO:0011126 - - - - - - - - - - - - - - - - - - - septum (amphibian) - AAO:0011127 - - - - - - - - - - - - - - - - - - - lateral line (amphibian) - AAO:0011128 - - - - - - - - - - - - - - - - - - - skeletal element (amphibian) - AAO:0011129 - - - - - - - - - - - - - - - - - - - cartilage element (amphibian) - AAO:0011130 - - - - - - - - - - - - - - - - - - - musculature of trunk (amphibian) - AAO:0011572 - - - - - - - - - - - - - - - - - - - - - - - - - AAO:ENTITY - AAO entity - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-bila.obo b/src/ontology/bridge/uberon-bridge-to-bila.obo deleted file mode 100644 index db186ed273..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-bila.obo +++ /dev/null @@ -1,556 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-bila -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: BILA:0000081 ! -property_value: IAO:0000589 "peripheral nervous system (BILA)" xsd:string -equivalent_to: UBERON:0000010 ! peripheral nervous system - -[Term] -id: BILA:0000018 ! -property_value: IAO:0000589 "appendage (BILA)" xsd:string -equivalent_to: UBERON:0000026 ! appendage - -[Term] -id: BILA:0000115 ! -property_value: IAO:0000589 "head (BILA)" xsd:string -equivalent_to: UBERON:0000033 ! head - -[Term] -id: BILA:0000003 ! -property_value: IAO:0000589 "anatomical structure (BILA)" xsd:string -equivalent_to: UBERON:0000061 ! anatomical structure - -[Term] -id: BILA:0000059 ! -property_value: IAO:0000589 "blastula (BILA)" xsd:string -equivalent_to: UBERON:0000307 ! blastula - -[Term] -id: BILA:0000088 ! -property_value: IAO:0000589 "musculature of body (BILA)" xsd:string -equivalent_to: UBERON:0000383 ! musculature of body - -[Term] -id: BILA:0000004 ! -property_value: IAO:0000589 "organism substance (BILA)" xsd:string -equivalent_to: UBERON:0000463 ! organism substance - -[Term] -id: BILA:0000005 ! -property_value: IAO:0000589 "anatomical space (BILA)" xsd:string -equivalent_to: UBERON:0000464 ! anatomical space - -[Term] -id: BILA:0000006 ! -property_value: IAO:0000589 "material anatomical entity (BILA)" xsd:string -equivalent_to: UBERON:0000465 ! material anatomical entity - -[Term] -id: BILA:0000007 ! -property_value: IAO:0000589 "immaterial anatomical entity (BILA)" xsd:string -equivalent_to: UBERON:0000466 ! immaterial anatomical entity - -[Term] -id: BILA:0000011 ! -property_value: IAO:0000589 "anatomical system (BILA)" xsd:string -equivalent_to: UBERON:0000467 ! anatomical system - -[Term] -id: BILA:0000012 ! -property_value: IAO:0000589 "multicellular organism (BILA)" xsd:string -equivalent_to: UBERON:0000468 ! multicellular organism - -[Term] -id: BILA:0000019 ! -property_value: IAO:0000589 "compound organ component (BILA)" xsd:string -equivalent_to: UBERON:0000471 ! compound organ component - -[Term] -id: BILA:0000021 ! -property_value: IAO:0000589 "simple organ (BILA)" xsd:string -equivalent_to: UBERON:0000472 ! simple organ - -[Term] -id: BILA:0000124 ! -property_value: IAO:0000589 "testis (BILA)" xsd:string -equivalent_to: UBERON:0000473 ! testis - -[Term] -id: BILA:0000032 ! -property_value: IAO:0000589 "organism subdivision (BILA)" xsd:string -equivalent_to: UBERON:0000475 ! organism subdivision - -[Term] -id: BILA:0000040 ! -property_value: IAO:0000589 "acellular anatomical structure (BILA)" xsd:string -equivalent_to: UBERON:0000476 ! acellular anatomical structure - -[Term] -id: BILA:0000042 ! -property_value: IAO:0000589 "extraembryonic structure (BILA)" xsd:string -equivalent_to: UBERON:0000478 ! extraembryonic structure - -[Term] -id: BILA:0000043 ! -property_value: IAO:0000589 "tissue (BILA)" xsd:string -equivalent_to: UBERON:0000479 ! tissue - -[Term] -id: BILA:0000054 ! -property_value: IAO:0000589 "anatomical group (BILA)" xsd:string -equivalent_to: UBERON:0000480 ! anatomical group - -[Term] -id: BILA:0000055 ! -property_value: IAO:0000589 "multi-tissue structure (BILA)" xsd:string -equivalent_to: UBERON:0000481 ! multi-tissue structure - -[Term] -id: BILA:0000065 ! -property_value: IAO:0000589 "basal lamina of epithelium (BILA)" xsd:string -equivalent_to: UBERON:0000482 ! basal lamina of epithelium - -[Term] -id: BILA:0000066 ! -property_value: IAO:0000589 "epithelium (BILA)" xsd:string -equivalent_to: UBERON:0000483 ! epithelium - -[Term] -id: BILA:0000067 ! -property_value: IAO:0000589 "simple cuboidal epithelium (BILA)" xsd:string -equivalent_to: UBERON:0000484 ! simple cuboidal epithelium - -[Term] -id: BILA:0000068 ! -property_value: IAO:0000589 "simple columnar epithelium (BILA)" xsd:string -equivalent_to: UBERON:0000485 ! simple columnar epithelium - -[Term] -id: BILA:0000069 ! -property_value: IAO:0000589 "multilaminar epithelium (BILA)" xsd:string -equivalent_to: UBERON:0000486 ! multilaminar epithelium - -[Term] -id: BILA:0000070 ! -property_value: IAO:0000589 "simple squamous epithelium (BILA)" xsd:string -equivalent_to: UBERON:0000487 ! simple squamous epithelium - -[Term] -id: BILA:0000071 ! -property_value: IAO:0000589 "atypical epithelium (BILA)" xsd:string -equivalent_to: UBERON:0000488 ! atypical epithelium - -[Term] -id: BILA:0000072 ! -property_value: IAO:0000589 "cavitated compound organ (BILA)" xsd:string -equivalent_to: UBERON:0000489 ! cavitated compound organ - -[Term] -id: BILA:0000073 ! -property_value: IAO:0000589 "unilaminar epithelium (BILA)" xsd:string -equivalent_to: UBERON:0000490 ! unilaminar epithelium - -[Term] -id: BILA:0000074 ! -property_value: IAO:0000589 "solid compound organ (BILA)" xsd:string -equivalent_to: UBERON:0000491 ! solid compound organ - -[Term] -id: BILA:0000056 ! -property_value: IAO:0000589 "embryo (BILA)" xsd:string -equivalent_to: UBERON:0000922 ! embryo - -[Term] -id: BILA:0000035 ! -property_value: IAO:0000589 "germ layer (BILA)" xsd:string -equivalent_to: UBERON:0000923 ! germ layer - -[Term] -id: BILA:0000036 ! -property_value: IAO:0000589 "ectoderm (BILA)" xsd:string -equivalent_to: UBERON:0000924 ! ectoderm - -[Term] -id: BILA:0000038 ! -property_value: IAO:0000589 "endoderm (BILA)" xsd:string -equivalent_to: UBERON:0000925 ! endoderm - -[Term] -id: BILA:0000037 ! -property_value: IAO:0000589 "mesoderm (BILA)" xsd:string -equivalent_to: UBERON:0000926 ! mesoderm - -[Term] -id: BILA:0000020 ! -property_value: IAO:0000589 "heart (BILA)" xsd:string -equivalent_to: UBERON:0000948 ! heart - -[Term] -id: BILA:0000135 ! -property_value: IAO:0000589 "brain (BILA)" xsd:string -equivalent_to: UBERON:0000955 ! brain - -[Term] -id: BILA:0000017 ! -property_value: IAO:0000589 "eye (BILA)" xsd:string -equivalent_to: UBERON:0000970 ! eye - -[Term] -id: BILA:0000103 ! -property_value: IAO:0000589 "reproductive system (BILA)" xsd:string -equivalent_to: UBERON:0000990 ! reproductive system - -[Term] -id: BILA:0000123 ! -property_value: IAO:0000589 "gonad (BILA)" xsd:string -equivalent_to: UBERON:0000991 ! gonad - -[Term] -id: BILA:0000125 ! -property_value: IAO:0000589 "ovary (BILA)" xsd:string -equivalent_to: UBERON:0000992 ! ovary - -[Term] -id: BILA:0000082 ! -property_value: IAO:0000589 "digestive system (BILA)" xsd:string -equivalent_to: UBERON:0001007 ! digestive system - -[Term] -id: BILA:0000015 ! -property_value: IAO:0000589 "renal system (BILA)" xsd:string -equivalent_to: UBERON:0001008 ! renal system - -[Term] -id: BILA:0000079 ! -property_value: IAO:0000589 "nervous system (BILA)" xsd:string -equivalent_to: UBERON:0001016 ! nervous system - -[Term] -id: BILA:0000080 ! -property_value: IAO:0000589 "central nervous system (BILA)" xsd:string -equivalent_to: UBERON:0001017 ! central nervous system - -[Term] -id: BILA:0000099 ! -property_value: IAO:0000589 "sensory system (BILA)" xsd:string -equivalent_to: UBERON:0001032 ! sensory system - -[Term] -id: BILA:0000143 ! -property_value: IAO:0000589 "gustatory system (BILA)" xsd:string -equivalent_to: UBERON:0001033 ! gustatory system - -[Term] -id: BILA:0000085 ! -property_value: IAO:0000589 "foregut (BILA)" xsd:string -equivalent_to: UBERON:0001041 ! foregut - -[Term] -id: BILA:0000086 ! -property_value: IAO:0000589 "midgut (BILA)" xsd:string -equivalent_to: UBERON:0001045 ! midgut - -[Term] -id: BILA:0000087 ! -property_value: IAO:0000589 "hindgut (BILA)" xsd:string -equivalent_to: UBERON:0001046 ! hindgut - -[Term] -id: BILA:0000000 ! -property_value: IAO:0000589 "anatomical entity (BILA)" xsd:string -equivalent_to: UBERON:0001062 ! anatomical entity - -[Term] -id: BILA:0000134 ! -property_value: IAO:0000589 "cardiac muscle tissue (BILA)" xsd:string -equivalent_to: UBERON:0001133 ! cardiac muscle tissue - -[Term] -id: BILA:0000083 ! -property_value: IAO:0000589 "digestive tract (BILA)" xsd:string -equivalent_to: UBERON:0001555 ! digestive tract - -[Term] -id: BILA:0000034 ! -property_value: IAO:0000589 "embryonic structure (BILA)" xsd:string -equivalent_to: UBERON:0002050 ! embryonic structure - -[Term] -id: BILA:0000116 ! -property_value: IAO:0000589 "trunk (BILA)" xsd:string -equivalent_to: UBERON:0002100 ! trunk - -[Term] -id: BILA:0000140 ! -property_value: IAO:0000589 "visual system (BILA)" xsd:string -equivalent_to: UBERON:0002104 ! visual system - -[Term] -id: BILA:0000039 ! -property_value: IAO:0000589 "neurectoderm (BILA)" xsd:string -equivalent_to: UBERON:0002346 ! neurectoderm - -[Term] -id: BILA:0000104 ! -property_value: IAO:0000589 "immune system (BILA)" xsd:string -equivalent_to: UBERON:0002405 ! immune system - -[Term] -id: BILA:0000117 ! -property_value: IAO:0000589 "tail (BILA)" xsd:string -equivalent_to: UBERON:0002415 ! tail - -[Term] -id: BILA:0000118 ! -property_value: IAO:0000589 "integumental system (BILA)" xsd:string -equivalent_to: UBERON:0002416 ! integumental system - -[Term] -id: BILA:0000053 ! -property_value: IAO:0000589 "primitive knot (BILA)" xsd:string -equivalent_to: UBERON:0003062 ! primitive knot - -[Term] -id: BILA:0000028 ! -property_value: IAO:0000589 "female organism (BILA)" xsd:string -equivalent_to: UBERON:0003100 ! female organism - -[Term] -id: BILA:0000027 ! -property_value: IAO:0000589 "male organism (BILA)" xsd:string -equivalent_to: UBERON:0003101 ! male organism - -[Term] -id: BILA:0000024 ! -property_value: IAO:0000589 "compound organ (BILA)" xsd:string -equivalent_to: UBERON:0003103 ! compound organ - -[Term] -id: BILA:0000122 ! -property_value: IAO:0000589 "genitourinary system (BILA)" xsd:string -equivalent_to: UBERON:0004122 ! genitourinary system - -[Term] -id: BILA:0000061 ! -property_value: IAO:0000589 "neurula embryo (BILA)" xsd:string -equivalent_to: UBERON:0004455 ! neurula embryo - -[Term] -id: BILA:0000016 ! -property_value: IAO:0000589 "cardiovascular system (BILA)" xsd:string -equivalent_to: UBERON:0004535 ! cardiovascular system - -[Term] -id: BILA:0000060 ! -property_value: IAO:0000589 "gastrula (BILA)" xsd:string -equivalent_to: UBERON:0004734 ! gastrula - -[Term] -id: BILA:0000047 ! -property_value: IAO:0000589 "somatic layer of lateral plate mesoderm (BILA)" xsd:string -equivalent_to: UBERON:0004871 ! somatic layer of lateral plate mesoderm - -[Term] -id: BILA:0000044 ! -property_value: IAO:0000589 "splanchnic layer of lateral plate mesoderm (BILA)" xsd:string -equivalent_to: UBERON:0004872 ! splanchnic layer of lateral plate mesoderm - -[Term] -id: BILA:0000136 ! -property_value: IAO:0000589 "primary nerve cord (BILA)" xsd:string -equivalent_to: UBERON:0005053 ! primary nerve cord - -[Term] -id: BILA:0000144 ! -property_value: IAO:0000589 "olfactory system (BILA)" xsd:string -equivalent_to: UBERON:0005725 ! olfactory system - -[Term] -id: BILA:0000139 ! -property_value: IAO:0000589 "chemosensory system (BILA)" xsd:string -equivalent_to: UBERON:0005726 ! chemosensory system - -[Term] -id: BILA:0000008 ! -property_value: IAO:0000589 "anatomical line (BILA)" xsd:string -equivalent_to: UBERON:0006800 ! anatomical line - -[Term] -id: BILA:0000126 ! -property_value: IAO:0000589 "protonephridium (BILA)" xsd:string -equivalent_to: UBERON:0006973 ! protonephridium - -[Term] -id: BILA:0000127 ! -property_value: IAO:0000589 "metanephridium (BILA)" xsd:string -equivalent_to: UBERON:0006974 ! metanephridium - -[Term] -id: BILA:0000009 ! -property_value: IAO:0000589 "anatomical point (BILA)" xsd:string -equivalent_to: UBERON:0006983 ! anatomical point - -[Term] -id: BILA:0000010 ! -property_value: IAO:0000589 "anatomical surface (BILA)" xsd:string -equivalent_to: UBERON:0006984 ! anatomical surface - -[Term] -id: BILA:0000051 ! -property_value: IAO:0000589 "cardiogenic splanchnic mesoderm (BILA)" xsd:string -equivalent_to: UBERON:0007005 ! cardiogenic splanchnic mesoderm - -[Term] -id: BILA:0000058 ! -property_value: IAO:0000589 "cleaving embryo (BILA)" xsd:string -equivalent_to: UBERON:0007010 ! cleaving embryo - -[Term] -id: BILA:0000076 ! -property_value: IAO:0000589 "sexually immature organism (BILA)" xsd:string -equivalent_to: UBERON:0007021 ! sexually immature organism - -[Term] -id: BILA:0000078 ! -property_value: IAO:0000589 "adult organism (BILA)" xsd:string -equivalent_to: UBERON:0007023 ! adult organism - -[Term] -id: BILA:0000084 ! -property_value: IAO:0000589 "presumptive gut (BILA)" xsd:string -equivalent_to: UBERON:0007026 ! presumptive gut - -[Term] -id: BILA:0000142 ! -property_value: IAO:0000589 "mechanosensory system (BILA)" xsd:string -equivalent_to: UBERON:0007037 ! mechanosensory system - -[Term] -id: BILA:0000133 ! -property_value: IAO:0000589 "somatic musculature (BILA)" xsd:string -equivalent_to: UBERON:0007095 ! somatic musculature - -[Term] -id: BILA:0000029 ! -property_value: IAO:0000589 "hermaphroditic organism (BILA)" xsd:string -equivalent_to: UBERON:0007197 ! hermaphroditic organism - -[Term] -id: BILA:0000045 ! -property_value: IAO:0000589 "sequential hermaphroditic organism (BILA)" xsd:string -equivalent_to: UBERON:0010895 ! sequential hermaphroditic organism - -[Term] -id: BILA:0000046 ! -property_value: IAO:0000589 "synchronous hermaphroditic organism (BILA)" xsd:string -equivalent_to: UBERON:0010899 ! synchronous hermaphroditic organism - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-bila.owl b/src/ontology/bridge/uberon-bridge-to-bila.owl deleted file mode 100644 index bc4654c64c..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-bila.owl +++ /dev/null @@ -1,1743 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - anatomical entity (BILA) - BILA:0000000 - - - - - - - - - anatomical structure (BILA) - BILA:0000003 - - - - - - - - - organism substance (BILA) - BILA:0000004 - - - - - - - - - anatomical space (BILA) - BILA:0000005 - - - - - - - - - material anatomical entity (BILA) - BILA:0000006 - - - - - - - - - immaterial anatomical entity (BILA) - BILA:0000007 - - - - - - - - - anatomical line (BILA) - BILA:0000008 - - - - - - - - - anatomical point (BILA) - BILA:0000009 - - - - - - - - - anatomical surface (BILA) - BILA:0000010 - - - - - - - - - anatomical system (BILA) - BILA:0000011 - - - - - - - - - multicellular organism (BILA) - BILA:0000012 - - - - - - - - - renal system (BILA) - BILA:0000015 - - - - - - - - - cardiovascular system (BILA) - BILA:0000016 - - - - - - - - - eye (BILA) - BILA:0000017 - - - - - - - - - appendage (BILA) - BILA:0000018 - - - - - - - - - compound organ component (BILA) - BILA:0000019 - - - - - - - - - heart (BILA) - BILA:0000020 - - - - - - - - - simple organ (BILA) - BILA:0000021 - - - - - - - - - compound organ (BILA) - BILA:0000024 - - - - - - - - - male organism (BILA) - BILA:0000027 - - - - - - - - - female organism (BILA) - BILA:0000028 - - - - - - - - - hermaphroditic organism (BILA) - BILA:0000029 - - - - - - - - - organism subdivision (BILA) - BILA:0000032 - - - - - - - - - embryonic structure (BILA) - BILA:0000034 - - - - - - - - - germ layer (BILA) - BILA:0000035 - - - - - - - - - ectoderm (BILA) - BILA:0000036 - - - - - - - - - mesoderm (BILA) - BILA:0000037 - - - - - - - - - endoderm (BILA) - BILA:0000038 - - - - - - - - - neurectoderm (BILA) - BILA:0000039 - - - - - - - - - acellular anatomical structure (BILA) - BILA:0000040 - - - - - - - - - extraembryonic structure (BILA) - BILA:0000042 - - - - - - - - - tissue (BILA) - BILA:0000043 - - - - - - - - - splanchnic layer of lateral plate mesoderm (BILA) - BILA:0000044 - - - - - - - - - sequential hermaphroditic organism (BILA) - BILA:0000045 - - - - - - - - - synchronous hermaphroditic organism (BILA) - BILA:0000046 - - - - - - - - - somatic layer of lateral plate mesoderm (BILA) - BILA:0000047 - - - - - - - - - cardiogenic splanchnic mesoderm (BILA) - BILA:0000051 - - - - - - - - - primitive knot (BILA) - BILA:0000053 - - - - - - - - - anatomical group (BILA) - BILA:0000054 - - - - - - - - - multi-tissue structure (BILA) - BILA:0000055 - - - - - - - - - embryo (BILA) - BILA:0000056 - - - - - - - - - cleaving embryo (BILA) - BILA:0000058 - - - - - - - - - blastula (BILA) - BILA:0000059 - - - - - - - - - gastrula (BILA) - BILA:0000060 - - - - - - - - - neurula embryo (BILA) - BILA:0000061 - - - - - - - - - basal lamina of epithelium (BILA) - BILA:0000065 - - - - - - - - - epithelium (BILA) - BILA:0000066 - - - - - - - - - simple cuboidal epithelium (BILA) - BILA:0000067 - - - - - - - - - simple columnar epithelium (BILA) - BILA:0000068 - - - - - - - - - multilaminar epithelium (BILA) - BILA:0000069 - - - - - - - - - simple squamous epithelium (BILA) - BILA:0000070 - - - - - - - - - atypical epithelium (BILA) - BILA:0000071 - - - - - - - - - cavitated compound organ (BILA) - BILA:0000072 - - - - - - - - - unilaminar epithelium (BILA) - BILA:0000073 - - - - - - - - - solid compound organ (BILA) - BILA:0000074 - - - - - - - - - sexually immature organism (BILA) - BILA:0000076 - - - - - - - - - adult organism (BILA) - BILA:0000078 - - - - - - - - - nervous system (BILA) - BILA:0000079 - - - - - - - - - central nervous system (BILA) - BILA:0000080 - - - - - - - - - peripheral nervous system (BILA) - BILA:0000081 - - - - - - - - - digestive system (BILA) - BILA:0000082 - - - - - - - - - digestive tract (BILA) - BILA:0000083 - - - - - - - - - presumptive gut (BILA) - BILA:0000084 - - - - - - - - - foregut (BILA) - BILA:0000085 - - - - - - - - - midgut (BILA) - BILA:0000086 - - - - - - - - - hindgut (BILA) - BILA:0000087 - - - - - - - - - musculature of body (BILA) - BILA:0000088 - - - - - - - - - sensory system (BILA) - BILA:0000099 - - - - - - - - - reproductive system (BILA) - BILA:0000103 - - - - - - - - - immune system (BILA) - BILA:0000104 - - - - - - - - - head (BILA) - BILA:0000115 - - - - - - - - - trunk (BILA) - BILA:0000116 - - - - - - - - - tail (BILA) - BILA:0000117 - - - - - - - - - integumental system (BILA) - BILA:0000118 - - - - - - - - - genitourinary system (BILA) - BILA:0000122 - - - - - - - - - gonad (BILA) - BILA:0000123 - - - - - - - - - testis (BILA) - BILA:0000124 - - - - - - - - - ovary (BILA) - BILA:0000125 - - - - - - - - - protonephridium (BILA) - BILA:0000126 - - - - - - - - - metanephridium (BILA) - BILA:0000127 - - - - - - - - - somatic musculature (BILA) - BILA:0000133 - - - - - - - - - cardiac muscle tissue (BILA) - BILA:0000134 - - - - - - - - - brain (BILA) - BILA:0000135 - - - - - - - - - primary nerve cord (BILA) - BILA:0000136 - - - - - - - - - chemosensory system (BILA) - BILA:0000139 - - - - - - - - - visual system (BILA) - BILA:0000140 - - - - - - - - - mechanosensory system (BILA) - BILA:0000142 - - - - - - - - - gustatory system (BILA) - BILA:0000143 - - - - - - - - - olfactory system (BILA) - BILA:0000144 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-ehdaa.obo b/src/ontology/bridge/uberon-bridge-to-ehdaa.obo deleted file mode 100644 index 2eb2b62336..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-ehdaa.obo +++ /dev/null @@ -1,4976 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-ehdaa -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: EHDAA:9083 ! -property_value: IAO:0000589 "naris (EHDAA)" xsd:string -is_a: UBERON:0000003 ! naris - -[Term] -id: EHDAA:1502 ! -property_value: IAO:0000589 "nose (EHDAA)" xsd:string -is_a: UBERON:0000004 ! nose - -[Term] -id: EHDAA:2183 ! -property_value: IAO:0000589 "pituitary gland (EHDAA)" xsd:string -is_a: UBERON:0000007 ! pituitary gland - -[Term] -id: EHDAA:4477 ! -property_value: IAO:0000589 "pituitary gland (EHDAA)" xsd:string -is_a: UBERON:0000007 ! pituitary gland - -[Term] -id: EHDAA:2893 ! -property_value: IAO:0000589 "peripheral nervous system (EHDAA)" xsd:string -is_a: UBERON:0000010 ! peripheral nervous system - -[Term] -id: EHDAA:4655 ! -property_value: IAO:0000589 "parasympathetic nervous system (EHDAA)" xsd:string -is_a: UBERON:0000011 ! parasympathetic nervous system - -[Term] -id: EHDAA:3769 ! -property_value: IAO:0000589 "sympathetic nervous system (EHDAA)" xsd:string -is_a: UBERON:0000013 ! sympathetic nervous system - -[Term] -id: EHDAA:6530 ! -property_value: IAO:0000589 "zone of skin (EHDAA)" xsd:string -is_a: UBERON:0000014 ! zone of skin - -[Term] -id: EHDAA:936 ! -property_value: IAO:0000589 "camera-type eye (EHDAA)" xsd:string -is_a: UBERON:0000019 ! camera-type eye - -[Term] -id: EHDAA:500 ! -property_value: IAO:0000589 "sense organ (EHDAA)" xsd:string -is_a: UBERON:0000020 ! sense organ - -[Term] -id: EHDAA:2899 ! -property_value: IAO:0000589 "dorsal root ganglion (EHDAA)" xsd:string -is_a: UBERON:0000044 ! dorsal root ganglion - -[Term] -id: EHDAA:2897 ! -property_value: IAO:0000589 "ganglion (EHDAA)" xsd:string -is_a: UBERON:0000045 ! ganglion - -[Term] -id: EHDAA:4662 ! -property_value: IAO:0000589 "ganglion (EHDAA)" xsd:string -is_a: UBERON:0000045 ! ganglion - -[Term] -id: EHDAA:5621 ! -property_value: IAO:0000589 "ganglion (EHDAA)" xsd:string -is_a: UBERON:0000045 ! ganglion - -[Term] -id: EHDAA:918 ! -property_value: IAO:0000589 "ganglion (EHDAA)" xsd:string -is_a: UBERON:0000045 ! ganglion - -[Term] -id: EHDAA:9341 ! -property_value: IAO:0000589 "ureter (EHDAA)" xsd:string -is_a: UBERON:0000056 ! ureter - -[Term] -id: EHDAA:1568 ! -property_value: IAO:0000589 "respiratory tract (EHDAA)" xsd:string -is_a: UBERON:0000065 ! respiratory tract - -[Term] -id: EHDAA:2219 ! -property_value: IAO:0000589 "respiratory tract (EHDAA)" xsd:string -is_a: UBERON:0000065 ! respiratory tract - -[Term] -id: EHDAA:1494 ! -property_value: IAO:0000589 "external ectoderm (EHDAA)" xsd:string -is_a: UBERON:0000076 ! external ectoderm - -[Term] -id: EHDAA:350 ! -property_value: IAO:0000589 "external ectoderm (EHDAA)" xsd:string -is_a: UBERON:0000076 ! external ectoderm - -[Term] -id: EHDAA:4784 ! -property_value: IAO:0000589 "external ectoderm (EHDAA)" xsd:string -is_a: UBERON:0000076 ! external ectoderm - -[Term] -id: EHDAA:4790 ! -property_value: IAO:0000589 "external ectoderm (EHDAA)" xsd:string -is_a: UBERON:0000076 ! external ectoderm - -[Term] -id: EHDAA:4796 ! -property_value: IAO:0000589 "external ectoderm (EHDAA)" xsd:string -is_a: UBERON:0000076 ! external ectoderm - -[Term] -id: EHDAA:7860 ! -property_value: IAO:0000589 "external ectoderm (EHDAA)" xsd:string -is_a: UBERON:0000076 ! external ectoderm - -[Term] -id: EHDAA:8136 ! -property_value: IAO:0000589 "male reproductive system (EHDAA)" xsd:string -is_a: UBERON:0000079 ! male reproductive system - -[Term] -id: EHDAA:1581 ! -property_value: IAO:0000589 "mesonephros (EHDAA)" xsd:string -is_a: UBERON:0000080 ! mesonephros - -[Term] -id: EHDAA:5903 ! -property_value: IAO:0000589 "mesonephros (EHDAA)" xsd:string -is_a: UBERON:0000080 ! mesonephros - -[Term] -id: EHDAA:3089 ! -property_value: IAO:0000589 "metanephros (EHDAA)" xsd:string -is_a: UBERON:0000081 ! metanephros - -[Term] -id: EHDAA:5911 ! -property_value: IAO:0000589 "metanephros (EHDAA)" xsd:string -is_a: UBERON:0000081 ! metanephros - -[Term] -id: EHDAA:3091 ! -property_value: IAO:0000589 "ureteric bud (EHDAA)" xsd:string -is_a: UBERON:0000084 ! ureteric bud - -[Term] -id: EHDAA:5917 ! -property_value: IAO:0000589 "ureteric bud (EHDAA)" xsd:string -is_a: UBERON:0000084 ! ureteric bud - -[Term] -id: EHDAA:31 ! -property_value: IAO:0000589 "zona pellucida (EHDAA)" xsd:string -is_a: UBERON:0000086 ! zona pellucida - -[Term] -id: EHDAA:62 ! -property_value: IAO:0000589 "zona pellucida (EHDAA)" xsd:string -is_a: UBERON:0000086 ! zona pellucida - -[Term] -id: EHDAA:40 ! -property_value: IAO:0000589 "inner cell mass (EHDAA)" xsd:string -is_a: UBERON:0000087 ! inner cell mass - -[Term] -id: EHDAA:50 ! -property_value: IAO:0000589 "blastocele (EHDAA)" xsd:string -is_a: UBERON:0000090 ! blastocele - -[Term] -id: EHDAA:27 ! -property_value: IAO:0000589 "zygote stage (EHDAA)" xsd:string -is_a: UBERON:0000106 ! zygote stage - -[Term] -id: EHDAA:4895 ! -property_value: IAO:0000589 "embryonic cloaca (EHDAA)" xsd:string -is_a: UBERON:0000163 ! embryonic cloaca - -[Term] -id: EHDAA:5029 ! -property_value: IAO:0000589 "primitive urogenital sinus (EHDAA)" xsd:string -is_a: UBERON:0000164 ! primitive urogenital sinus - -[Term] -id: EHDAA:5919 ! -property_value: IAO:0000589 "primitive urogenital sinus (EHDAA)" xsd:string -is_a: UBERON:0000164 ! primitive urogenital sinus - -[Term] -id: EHDAA:542 ! -property_value: IAO:0000589 "mouth (EHDAA)" xsd:string -is_a: UBERON:0000165 ! mouth - -[Term] -id: EHDAA:6970 ! -property_value: IAO:0000589 "oral cavity (EHDAA)" xsd:string -is_a: UBERON:0000167 ! oral cavity - -[Term] -id: EHDAA:418 ! -property_value: IAO:0000589 "blood (EHDAA)" xsd:string -is_a: UBERON:0000178 ! blood - -[Term] -id: EHDAA:83 ! -property_value: IAO:0000589 "amniotic cavity (EHDAA)" xsd:string -is_a: UBERON:0000301 ! amniotic cavity - -[Term] -id: EHDAA:136 ! -property_value: IAO:0000589 "amnion (EHDAA)" xsd:string -is_a: UBERON:0000305 ! amnion - -[Term] -id: EHDAA:127 ! -property_value: IAO:0000589 "cytotrophoblast (EHDAA)" xsd:string -is_a: UBERON:0000319 ! cytotrophoblast - -[Term] -id: EHDAA:152 ! -property_value: IAO:0000589 "cytotrophoblast (EHDAA)" xsd:string -is_a: UBERON:0000319 ! cytotrophoblast - -[Term] -id: EHDAA:89 ! -property_value: IAO:0000589 "cytotrophoblast (EHDAA)" xsd:string -is_a: UBERON:0000319 ! cytotrophoblast - -[Term] -id: EHDAA:3744 ! -property_value: IAO:0000589 "ophthalmic nerve (EHDAA)" xsd:string -is_a: UBERON:0000348 ! ophthalmic nerve - -[Term] -id: EHDAA:3015 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:3905 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:3999 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:4005 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:6899 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:6903 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:6994 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:8086 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:9182 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:9190 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:9196 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:9202 ! -property_value: IAO:0000589 "parenchyma (EHDAA)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: EHDAA:129 ! -property_value: IAO:0000589 "syncytiotrophoblast (EHDAA)" xsd:string -is_a: UBERON:0000371 ! syncytiotrophoblast - -[Term] -id: EHDAA:91 ! -property_value: IAO:0000589 "syncytiotrophoblast (EHDAA)" xsd:string -is_a: UBERON:0000371 ! syncytiotrophoblast - -[Term] -id: EHDAA:5171 ! -property_value: IAO:0000589 "hindlimb stylopod (EHDAA)" xsd:string -is_a: UBERON:0000376 ! hindlimb stylopod - -[Term] -id: EHDAA:6200 ! -property_value: IAO:0000589 "hindlimb stylopod (EHDAA)" xsd:string -is_a: UBERON:0000376 ! hindlimb stylopod - -[Term] -id: EHDAA:9146 ! -property_value: IAO:0000589 "tongue muscle (EHDAA)" xsd:string -is_a: UBERON:0000378 ! tongue muscle - -[Term] -id: EHDAA:392 ! -property_value: IAO:0000589 "anatomical system (EHDAA)" xsd:string -is_a: UBERON:0000467 ! anatomical system - -[Term] -id: EHDAA:1 ! -property_value: IAO:0000589 "multicellular organism (EHDAA)" xsd:string -is_a: UBERON:0000468 ! multicellular organism - -[Term] -id: EHDAA:8146 ! -property_value: IAO:0000589 "testis (EHDAA)" xsd:string -is_a: UBERON:0000473 ! testis - -[Term] -id: EHDAA:8116 ! -property_value: IAO:0000589 "female reproductive system (EHDAA)" xsd:string -is_a: UBERON:0000474 ! female reproductive system - -[Term] -id: EHDAA:46 ! -property_value: IAO:0000589 "extraembryonic structure (EHDAA)" xsd:string -is_a: UBERON:0000478 ! extraembryonic structure - -[Term] -id: EHDAA:38 ! -property_value: IAO:0000589 "embryo (EHDAA)" xsd:string -is_a: UBERON:0000922 ! embryo - -[Term] -id: EHDAA:124 ! -property_value: IAO:0000589 "mesoderm (EHDAA)" xsd:string -is_a: UBERON:0000926 ! mesoderm - -[Term] -id: EHDAA:160 ! -property_value: IAO:0000589 "mesoderm (EHDAA)" xsd:string -is_a: UBERON:0000926 ! mesoderm - -[Term] -id: EHDAA:183 ! -property_value: IAO:0000589 "mesoderm (EHDAA)" xsd:string -is_a: UBERON:0000926 ! mesoderm - -[Term] -id: EHDAA:6788 ! -property_value: IAO:0000589 "cranial nerve II (EHDAA)" xsd:string -is_a: UBERON:0000941 ! cranial nerve II - -[Term] -id: EHDAA:2993 ! -property_value: IAO:0000589 "stomach (EHDAA)" xsd:string -is_a: UBERON:0000945 ! stomach - -[Term] -id: EHDAA:420 ! -property_value: IAO:0000589 "heart (EHDAA)" xsd:string -is_a: UBERON:0000948 ! heart - -[Term] -id: EHDAA:2641 ! -property_value: IAO:0000589 "brain (EHDAA)" xsd:string -is_a: UBERON:0000955 ! brain - -[Term] -id: EHDAA:6485 ! -property_value: IAO:0000589 "brain (EHDAA)" xsd:string -is_a: UBERON:0000955 ! brain - -[Term] -id: EHDAA:5464 ! -property_value: IAO:0000589 "cerebral cortex (EHDAA)" xsd:string -is_a: UBERON:0000956 ! cerebral cortex - -[Term] -id: EHDAA:10227 ! -property_value: IAO:0000589 "optic chiasma (EHDAA)" xsd:string -is_a: UBERON:0000959 ! optic chiasma - -[Term] -id: EHDAA:4664 ! -property_value: IAO:0000589 "thoracic ganglion (EHDAA)" xsd:string -is_a: UBERON:0000961 ! thoracic ganglion - -[Term] -id: EHDAA:10199 ! -property_value: IAO:0000589 "cornea (EHDAA)" xsd:string -is_a: UBERON:0000964 ! cornea - -[Term] -id: EHDAA:9057 ! -property_value: IAO:0000589 "lens of camera-type eye (EHDAA)" xsd:string -is_a: UBERON:0000965 ! lens of camera-type eye - -[Term] -id: EHDAA:4757 ! -property_value: IAO:0000589 "retina (EHDAA)" xsd:string -is_a: UBERON:0000966 ! retina - -[Term] -id: EHDAA:9561 ! -property_value: IAO:0000589 "sternum (EHDAA)" xsd:string -is_a: UBERON:0000975 ! sternum - -[Term] -id: EHDAA:5151 ! -property_value: IAO:0000589 "leg (EHDAA)" xsd:string -is_a: UBERON:0000978 ! leg - -[Term] -id: EHDAA:6176 ! -property_value: IAO:0000589 "leg (EHDAA)" xsd:string -is_a: UBERON:0000978 ! leg - -[Term] -id: EHDAA:8289 ! -property_value: IAO:0000589 "leg (EHDAA)" xsd:string -is_a: UBERON:0000978 ! leg - -[Term] -id: EHDAA:9380 ! -property_value: IAO:0000589 "penis (EHDAA)" xsd:string -is_a: UBERON:0000989 ! penis - -[Term] -id: EHDAA:5923 ! -property_value: IAO:0000589 "reproductive system (EHDAA)" xsd:string -is_a: UBERON:0000990 ! reproductive system - -[Term] -id: EHDAA:8124 ! -property_value: IAO:0000589 "ovary (EHDAA)" xsd:string -is_a: UBERON:0000992 ! ovary - -[Term] -id: EHDAA:2203 ! -property_value: IAO:0000589 "respiratory system (EHDAA)" xsd:string -is_a: UBERON:0001004 ! respiratory system - -[Term] -id: EHDAA:5901 ! -property_value: IAO:0000589 "renal system (EHDAA)" xsd:string -is_a: UBERON:0001008 ! renal system - -[Term] -id: EHDAA:826 ! -property_value: IAO:0000589 "nervous system (EHDAA)" xsd:string -is_a: UBERON:0001016 ! nervous system - -[Term] -id: EHDAA:828 ! -property_value: IAO:0000589 "central nervous system (EHDAA)" xsd:string -is_a: UBERON:0001017 ! central nervous system - -[Term] -id: EHDAA:2851 ! -property_value: IAO:0000589 "nerve (EHDAA)" xsd:string -is_a: UBERON:0001021 ! nerve - -[Term] -id: EHDAA:3776 ! -property_value: IAO:0000589 "nerve (EHDAA)" xsd:string -is_a: UBERON:0001021 ! nerve - -[Term] -id: EHDAA:4657 ! -property_value: IAO:0000589 "nerve (EHDAA)" xsd:string -is_a: UBERON:0001021 ! nerve - -[Term] -id: EHDAA:164 ! -property_value: IAO:0000589 "yolk sac (EHDAA)" xsd:string -is_a: UBERON:0001040 ! yolk sac - -[Term] -id: EHDAA:520 ! -property_value: IAO:0000589 "foregut (EHDAA)" xsd:string -is_a: UBERON:0001041 ! foregut - -[Term] -id: EHDAA:2947 ! -property_value: IAO:0000589 "chordate pharynx (EHDAA)" xsd:string -is_a: UBERON:0001042 ! chordate pharynx - -[Term] -id: EHDAA:2937 ! -property_value: IAO:0000589 "esophagus (EHDAA)" xsd:string -is_a: UBERON:0001043 ! esophagus - -[Term] -id: EHDAA:7987 ! -property_value: IAO:0000589 "saliva-secreting gland (EHDAA)" xsd:string -is_a: UBERON:0001044 ! saliva-secreting gland - -[Term] -id: EHDAA:983 ! -property_value: IAO:0000589 "midgut (EHDAA)" xsd:string -is_a: UBERON:0001045 ! midgut - -[Term] -id: EHDAA:975 ! -property_value: IAO:0000589 "hindgut (EHDAA)" xsd:string -is_a: UBERON:0001046 ! hindgut - -[Term] -id: EHDAA:2869 ! -property_value: IAO:0000589 "neural tube (EHDAA)" xsd:string -is_a: UBERON:0001049 ! neural tube - -[Term] -id: EHDAA:908 ! -property_value: IAO:0000589 "neural tube (EHDAA)" xsd:string -is_a: UBERON:0001049 ! neural tube - -[Term] -id: EHDAA:5836 ! -property_value: IAO:0000589 "rectum (EHDAA)" xsd:string -is_a: UBERON:0001052 ! rectum - -[Term] -id: EHDAA:6905 ! -property_value: IAO:0000589 "ventral pancreatic duct (EHDAA)" xsd:string -is_a: UBERON:0001064 ! ventral pancreatic duct - -[Term] -id: EHDAA:10606 ! -property_value: IAO:0000589 "vertebral bone 1 (EHDAA)" xsd:string -is_a: UBERON:0001092 ! vertebral bone 1 - -[Term] -id: EHDAA:10608 ! -property_value: IAO:0000589 "vertebral bone 2 (EHDAA)" xsd:string -is_a: UBERON:0001093 ! vertebral bone 2 - -[Term] -id: EHDAA:8011 ! -property_value: IAO:0000589 "incisor tooth (EHDAA)" xsd:string -is_a: UBERON:0001098 ! incisor tooth - -[Term] -id: EHDAA:8047 ! -property_value: IAO:0000589 "incisor tooth (EHDAA)" xsd:string -is_a: UBERON:0001098 ! incisor tooth - -[Term] -id: EHDAA:8313 ! -property_value: IAO:0000589 "pectoralis minor (EHDAA)" xsd:string -is_a: UBERON:0001100 ! pectoralis minor - -[Term] -id: EHDAA:9887 ! -property_value: IAO:0000589 "external jugular vein (EHDAA)" xsd:string -is_a: UBERON:0001101 ! external jugular vein - -[Term] -id: EHDAA:5988 ! -property_value: IAO:0000589 "intercostal muscle (EHDAA)" xsd:string -is_a: UBERON:0001111 ! intercostal muscle - -[Term] -id: EHDAA:8307 ! -property_value: IAO:0000589 "latissimus dorsi muscle (EHDAA)" xsd:string -is_a: UBERON:0001112 ! latissimus dorsi muscle - -[Term] -id: EHDAA:4001 ! -property_value: IAO:0000589 "right lobe of liver (EHDAA)" xsd:string -is_a: UBERON:0001114 ! right lobe of liver - -[Term] -id: EHDAA:3995 ! -property_value: IAO:0000589 "left lobe of liver (EHDAA)" xsd:string -is_a: UBERON:0001115 ! left lobe of liver - -[Term] -id: EHDAA:8082 ! -property_value: IAO:0000589 "quadrate lobe of liver (EHDAA)" xsd:string -is_a: UBERON:0001116 ! quadrate lobe of liver - -[Term] -id: EHDAA:6990 ! -property_value: IAO:0000589 "caudate lobe of liver (EHDAA)" xsd:string -is_a: UBERON:0001117 ! caudate lobe of liver - -[Term] -id: EHDAA:9463 ! -property_value: IAO:0000589 "serratus ventralis (EHDAA)" xsd:string -is_a: UBERON:0001125 ! serratus ventralis - -[Term] -id: EHDAA:8317 ! -property_value: IAO:0000589 "subscapularis muscle (EHDAA)" xsd:string -is_a: UBERON:0001129 ! subscapularis muscle - -[Term] -id: EHDAA:2331 ! -property_value: IAO:0000589 "mesothelium (EHDAA)" xsd:string -is_a: UBERON:0001136 ! mesothelium - -[Term] -id: EHDAA:2349 ! -property_value: IAO:0000589 "mesothelium (EHDAA)" xsd:string -is_a: UBERON:0001136 ! mesothelium - -[Term] -id: EHDAA:295 ! -property_value: IAO:0000589 "mesothelium (EHDAA)" xsd:string -is_a: UBERON:0001136 ! mesothelium - -[Term] -id: EHDAA:6073 ! -property_value: IAO:0000589 "mesothelium (EHDAA)" xsd:string -is_a: UBERON:0001136 ! mesothelium - -[Term] -id: EHDAA:640 ! -property_value: IAO:0000589 "mesothelium (EHDAA)" xsd:string -is_a: UBERON:0001136 ! mesothelium - -[Term] -id: EHDAA:646 ! -property_value: IAO:0000589 "mesothelium (EHDAA)" xsd:string -is_a: UBERON:0001136 ! mesothelium - -[Term] -id: EHDAA:5414 ! -property_value: IAO:0000589 "superior mesenteric vein (EHDAA)" xsd:string -is_a: UBERON:0001138 ! superior mesenteric vein - -[Term] -id: EHDAA:8722 ! -property_value: IAO:0000589 "renal vein (EHDAA)" xsd:string -is_a: UBERON:0001140 ! renal vein - -[Term] -id: EHDAA:8731 ! -property_value: IAO:0000589 "suprarenal vein (EHDAA)" xsd:string -is_a: UBERON:0001146 ! suprarenal vein - -[Term] -id: EHDAA:5648 ! -property_value: IAO:0000589 "median nerve (EHDAA)" xsd:string -is_a: UBERON:0001148 ! median nerve - -[Term] -id: EHDAA:9178 ! -property_value: IAO:0000589 "body of pancreas (EHDAA)" xsd:string -is_a: UBERON:0001150 ! body of pancreas - -[Term] -id: EHDAA:3045 ! -property_value: IAO:0000589 "cystic duct (EHDAA)" xsd:string -is_a: UBERON:0001152 ! cystic duct - -[Term] -id: EHDAA:3913 ! -property_value: IAO:0000589 "caecum (EHDAA)" xsd:string -is_a: UBERON:0001153 ! caecum - -[Term] -id: EHDAA:4844 ! -property_value: IAO:0000589 "fundus of stomach (EHDAA)" xsd:string -is_a: UBERON:0001160 ! fundus of stomach - -[Term] -id: EHDAA:4860 ! -property_value: IAO:0000589 "pylorus (EHDAA)" xsd:string -is_a: UBERON:0001166 ! pylorus - -[Term] -id: EHDAA:3981 ! -property_value: IAO:0000589 "common bile duct (EHDAA)" xsd:string -is_a: UBERON:0001174 ! common bile duct - -[Term] -id: EHDAA:3992 ! -property_value: IAO:0000589 "right hepatic duct (EHDAA)" xsd:string -is_a: UBERON:0001176 ! right hepatic duct - -[Term] -id: EHDAA:3990 ! -property_value: IAO:0000589 "left hepatic duct (EHDAA)" xsd:string -is_a: UBERON:0001177 ! left hepatic duct - -[Term] -id: EHDAA:2343 ! -property_value: IAO:0000589 "superior recess of lesser sac (EHDAA)" xsd:string -is_a: UBERON:0001180 ! superior recess of lesser sac - -[Term] -id: EHDAA:6083 ! -property_value: IAO:0000589 "inferior recess of lesser sac (EHDAA)" xsd:string -is_a: UBERON:0001181 ! inferior recess of lesser sac - -[Term] -id: EHDAA:3358 ! -property_value: IAO:0000589 "superior mesenteric artery (EHDAA)" xsd:string -is_a: UBERON:0001182 ! superior mesenteric artery - -[Term] -id: EHDAA:5313 ! -property_value: IAO:0000589 "superior mesenteric artery (EHDAA)" xsd:string -is_a: UBERON:0001182 ! superior mesenteric artery - -[Term] -id: EHDAA:4345 ! -property_value: IAO:0000589 "inferior mesenteric artery (EHDAA)" xsd:string -is_a: UBERON:0001183 ! inferior mesenteric artery - -[Term] -id: EHDAA:5321 ! -property_value: IAO:0000589 "renal artery (EHDAA)" xsd:string -is_a: UBERON:0001184 ! renal artery - -[Term] -id: EHDAA:8594 ! -property_value: IAO:0000589 "renal artery (EHDAA)" xsd:string -is_a: UBERON:0001184 ! renal artery - -[Term] -id: EHDAA:2553 ! -property_value: IAO:0000589 "common iliac artery (EHDAA)" xsd:string -is_a: UBERON:0001191 ! common iliac artery - -[Term] -id: EHDAA:8712 ! -property_value: IAO:0000589 "inferior mesenteric vein (EHDAA)" xsd:string -is_a: UBERON:0001215 ! inferior mesenteric vein - -[Term] -id: EHDAA:8254 ! -property_value: IAO:0000589 "transversus abdominis muscle (EHDAA)" xsd:string -is_a: UBERON:0001221 ! transversus abdominis muscle - -[Term] -id: EHDAA:4856 ! -property_value: IAO:0000589 "falciform ligament (EHDAA)" xsd:string -is_a: UBERON:0001247 ! falciform ligament - -[Term] -id: EHDAA:9328 ! -property_value: IAO:0000589 "urinary bladder (EHDAA)" xsd:string -is_a: UBERON:0001255 ! urinary bladder - -[Term] -id: EHDAA:6893 ! -property_value: IAO:0000589 "pancreas (EHDAA)" xsd:string -is_a: UBERON:0001264 ! pancreas - -[Term] -id: EHDAA:5655 ! -property_value: IAO:0000589 "femoral nerve (EHDAA)" xsd:string -is_a: UBERON:0001267 ! femoral nerve - -[Term] -id: EHDAA:10661 ! -property_value: IAO:0000589 "acetabular part of hip bone (EHDAA)" xsd:string -is_a: UBERON:0001269 ! acetabular part of hip bone - -[Term] -id: EHDAA:2201 ! -property_value: IAO:0000589 "liver parenchyma (EHDAA)" xsd:string -is_a: UBERON:0001280 ! liver parenchyma - -[Term] -id: EHDAA:8126 ! -property_value: IAO:0000589 "germinal epithelium of ovary (EHDAA)" xsd:string -is_a: UBERON:0001304 ! germinal epithelium of ovary - -[Term] -id: EHDAA:4337 ! -property_value: IAO:0000589 "external iliac artery (EHDAA)" xsd:string -is_a: UBERON:0001308 ! external iliac artery - -[Term] -id: EHDAA:1026 ! -property_value: IAO:0000589 "umbilical artery (EHDAA)" xsd:string -is_a: UBERON:0001310 ! umbilical artery - -[Term] -id: EHDAA:410 ! -property_value: IAO:0000589 "umbilical artery (EHDAA)" xsd:string -is_a: UBERON:0001310 ! umbilical artery - -[Term] -id: EHDAA:5659 ! -property_value: IAO:0000589 "sciatic nerve (EHDAA)" xsd:string -is_a: UBERON:0001322 ! sciatic nerve - -[Term] -id: EHDAA:2335 ! -property_value: IAO:0000589 "lesser sac (EHDAA)" xsd:string -is_a: UBERON:0001341 ! lesser sac - -[Term] -id: EHDAA:8975 ! -property_value: IAO:0000589 "external acoustic meatus (EHDAA)" xsd:string -is_a: UBERON:0001352 ! external acoustic meatus - -[Term] -id: EHDAA:2931 ! -property_value: IAO:0000589 "anal region (EHDAA)" xsd:string -is_a: UBERON:0001353 ! anal region - -[Term] -id: EHDAA:10583 ! -property_value: IAO:0000589 "sartorius muscle (EHDAA)" xsd:string -is_a: UBERON:0001373 ! sartorius muscle - -[Term] -id: EHDAA:8299 ! -property_value: IAO:0000589 "quadriceps femoris (EHDAA)" xsd:string -is_a: UBERON:0001377 ! quadriceps femoris - -[Term] -id: EHDAA:8291 ! -property_value: IAO:0000589 "muscle of leg (EHDAA)" xsd:string -is_a: UBERON:0001383 ! muscle of leg - -[Term] -id: EHDAA:8293 ! -property_value: IAO:0000589 "gastrocnemius (EHDAA)" xsd:string -is_a: UBERON:0001388 ! gastrocnemius - -[Term] -id: EHDAA:4164 ! -property_value: IAO:0000589 "arm (EHDAA)" xsd:string -is_a: UBERON:0001460 ! arm - -[Term] -id: EHDAA:6210 ! -property_value: IAO:0000589 "arm (EHDAA)" xsd:string -is_a: UBERON:0001460 ! arm - -[Term] -id: EHDAA:8275 ! -property_value: IAO:0000589 "arm (EHDAA)" xsd:string -is_a: UBERON:0001460 ! arm - -[Term] -id: EHDAA:4166 ! -property_value: IAO:0000589 "elbow (EHDAA)" xsd:string -is_a: UBERON:0001461 ! elbow - -[Term] -id: EHDAA:6212 ! -property_value: IAO:0000589 "elbow (EHDAA)" xsd:string -is_a: UBERON:0001461 ! elbow - -[Term] -id: EHDAA:5153 ! -property_value: IAO:0000589 "hip (EHDAA)" xsd:string -is_a: UBERON:0001464 ! hip - -[Term] -id: EHDAA:6178 ! -property_value: IAO:0000589 "hip (EHDAA)" xsd:string -is_a: UBERON:0001464 ! hip - -[Term] -id: EHDAA:5159 ! -property_value: IAO:0000589 "knee (EHDAA)" xsd:string -is_a: UBERON:0001465 ! knee - -[Term] -id: EHDAA:6184 ! -property_value: IAO:0000589 "knee (EHDAA)" xsd:string -is_a: UBERON:0001465 ! knee - -[Term] -id: EHDAA:4180 ! -property_value: IAO:0000589 "shoulder (EHDAA)" xsd:string -is_a: UBERON:0001467 ! shoulder - -[Term] -id: EHDAA:6228 ! -property_value: IAO:0000589 "shoulder (EHDAA)" xsd:string -is_a: UBERON:0001467 ! shoulder - -[Term] -id: EHDAA:8305 ! -property_value: IAO:0000589 "infraspinatus muscle (EHDAA)" xsd:string -is_a: UBERON:0001477 ! infraspinatus muscle - -[Term] -id: EHDAA:8321 ! -property_value: IAO:0000589 "teres major muscle (EHDAA)" xsd:string -is_a: UBERON:0001478 ! teres major muscle - -[Term] -id: EHDAA:5650 ! -property_value: IAO:0000589 "radial nerve (EHDAA)" xsd:string -is_a: UBERON:0001492 ! radial nerve - -[Term] -id: EHDAA:5652 ! -property_value: IAO:0000589 "ulnar nerve (EHDAA)" xsd:string -is_a: UBERON:0001494 ! ulnar nerve - -[Term] -id: EHDAA:9828 ! -property_value: IAO:0000589 "ascending aorta (EHDAA)" xsd:string -is_a: UBERON:0001496 ! ascending aorta - -[Term] -id: EHDAA:8326 ! -property_value: IAO:0000589 "muscle of pelvic girdle (EHDAA)" xsd:string -is_a: UBERON:0001497 ! muscle of pelvic girdle - -[Term] -id: EHDAA:8277 ! -property_value: IAO:0000589 "muscle of arm (EHDAA)" xsd:string -is_a: UBERON:0001499 ! muscle of arm - -[Term] -id: EHDAA:8281 ! -property_value: IAO:0000589 "brachialis muscle (EHDAA)" xsd:string -is_a: UBERON:0001506 ! brachialis muscle - -[Term] -id: EHDAA:8279 ! -property_value: IAO:0000589 "biceps brachii (EHDAA)" xsd:string -is_a: UBERON:0001507 ! biceps brachii - -[Term] -id: EHDAA:8287 ! -property_value: IAO:0000589 "triceps brachii (EHDAA)" xsd:string -is_a: UBERON:0001509 ! triceps brachii - -[Term] -id: EHDAA:7331 ! -property_value: IAO:0000589 "common carotid artery plus branches (EHDAA)" xsd:string -is_a: UBERON:0001530 ! common carotid artery plus branches - -[Term] -id: EHDAA:408 ! -property_value: IAO:0000589 "internal carotid artery (EHDAA)" xsd:string -is_a: UBERON:0001532 ! internal carotid artery - -[Term] -id: EHDAA:6389 ! -property_value: IAO:0000589 "internal carotid artery (EHDAA)" xsd:string -is_a: UBERON:0001532 ! internal carotid artery - -[Term] -id: EHDAA:4357 ! -property_value: IAO:0000589 "subclavian artery (EHDAA)" xsd:string -is_a: UBERON:0001533 ! subclavian artery - -[Term] -id: EHDAA:5328 ! -property_value: IAO:0000589 "vertebral artery (EHDAA)" xsd:string -is_a: UBERON:0001535 ! vertebral artery - -[Term] -id: EHDAA:518 ! -property_value: IAO:0000589 "digestive tract (EHDAA)" xsd:string -is_a: UBERON:0001555 ! digestive tract - -[Term] -id: EHDAA:9150 ! -property_value: IAO:0000589 "genioglossus muscle (EHDAA)" xsd:string -is_a: UBERON:0001571 ! genioglossus muscle - -[Term] -id: EHDAA:9148 ! -property_value: IAO:0000589 "extrinsic muscle of tongue (EHDAA)" xsd:string -is_a: UBERON:0001575 ! extrinsic muscle of tongue - -[Term] -id: EHDAA:9152 ! -property_value: IAO:0000589 "intrinsic muscle of tongue (EHDAA)" xsd:string -is_a: UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EHDAA:6672 ! -property_value: IAO:0000589 "olfactory nerve (EHDAA)" xsd:string -is_a: UBERON:0001579 ! olfactory nerve - -[Term] -id: EHDAA:8726 ! -property_value: IAO:0000589 "anterior vena cava (EHDAA)" xsd:string -is_a: UBERON:0001585 ! anterior vena cava - -[Term] -id: EHDAA:5407 ! -property_value: IAO:0000589 "internal jugular vein (EHDAA)" xsd:string -is_a: UBERON:0001586 ! internal jugular vein - -[Term] -id: EHDAA:4455 ! -property_value: IAO:0000589 "subclavian vein (EHDAA)" xsd:string -is_a: UBERON:0001587 ! subclavian vein - -[Term] -id: EHDAA:10561 ! -property_value: IAO:0000589 "masseter muscle (EHDAA)" xsd:string -is_a: UBERON:0001597 ! masseter muscle - -[Term] -id: EHDAA:10565 ! -property_value: IAO:0000589 "temporalis muscle (EHDAA)" xsd:string -is_a: UBERON:0001598 ! temporalis muscle - -[Term] -id: EHDAA:9029 ! -property_value: IAO:0000589 "stapedius muscle (EHDAA)" xsd:string -is_a: UBERON:0001599 ! stapedius muscle - -[Term] -id: EHDAA:10167 ! -property_value: IAO:0000589 "tensor tympani (EHDAA)" xsd:string -is_a: UBERON:0001600 ! tensor tympani - -[Term] -id: EHDAA:10191 ! -property_value: IAO:0000589 "tensor tympani (EHDAA)" xsd:string -is_a: UBERON:0001600 ! tensor tympani - -[Term] -id: EHDAA:5729 ! -property_value: IAO:0000589 "extra-ocular muscle (EHDAA)" xsd:string -is_a: UBERON:0001601 ! extra-ocular muscle - -[Term] -id: EHDAA:5777 ! -property_value: IAO:0000589 "isthmus of thyroid gland (EHDAA)" xsd:string -is_a: UBERON:0001609 ! isthmus of thyroid gland - -[Term] -id: EHDAA:7357 ! -property_value: IAO:0000589 "maxillary artery (EHDAA)" xsd:string -is_a: UBERON:0001616 ! maxillary artery - -[Term] -id: EHDAA:7363 ! -property_value: IAO:0000589 "ophthalmic artery (EHDAA)" xsd:string -is_a: UBERON:0001619 ! ophthalmic artery - -[Term] -id: EHDAA:5296 ! -property_value: IAO:0000589 "anterior cerebral artery (EHDAA)" xsd:string -is_a: UBERON:0001624 ! anterior cerebral artery - -[Term] -id: EHDAA:5298 ! -property_value: IAO:0000589 "middle cerebral artery (EHDAA)" xsd:string -is_a: UBERON:0001627 ! middle cerebral artery - -[Term] -id: EHDAA:3352 ! -property_value: IAO:0000589 "posterior communicating artery (EHDAA)" xsd:string -is_a: UBERON:0001628 ! posterior communicating artery - -[Term] -id: EHDAA:5285 ! -property_value: IAO:0000589 "basilar artery (EHDAA)" xsd:string -is_a: UBERON:0001633 ! basilar artery - -[Term] -id: EHDAA:3736 ! -property_value: IAO:0000589 "oculomotor nerve (EHDAA)" xsd:string -is_a: UBERON:0001643 ! oculomotor nerve - -[Term] -id: EHDAA:3738 ! -property_value: IAO:0000589 "trigeminal nerve (EHDAA)" xsd:string -is_a: UBERON:0001645 ! trigeminal nerve - -[Term] -id: EHDAA:3729 ! -property_value: IAO:0000589 "facial nerve (EHDAA)" xsd:string -is_a: UBERON:0001647 ! facial nerve - -[Term] -id: EHDAA:3733 ! -property_value: IAO:0000589 "glossopharyngeal nerve (EHDAA)" xsd:string -is_a: UBERON:0001649 ! glossopharyngeal nerve - -[Term] -id: EHDAA:2859 ! -property_value: IAO:0000589 "hypoglossal nerve (EHDAA)" xsd:string -is_a: UBERON:0001650 ! hypoglossal nerve - -[Term] -id: EHDAA:2113 ! -property_value: IAO:0000589 "trigeminal ganglion (EHDAA)" xsd:string -is_a: UBERON:0001675 ! trigeminal ganglion - -[Term] -id: EHDAA:6035 ! -property_value: IAO:0000589 "temporal bone (EHDAA)" xsd:string -is_a: UBERON:0001678 ! temporal bone - -[Term] -id: EHDAA:8007 ! -property_value: IAO:0000589 "mandible (EHDAA)" xsd:string -is_a: UBERON:0001684 ! mandible - -[Term] -id: EHDAA:5697 ! -property_value: IAO:0000589 "auditory ossicle bone (EHDAA)" xsd:string -is_a: UBERON:0001686 ! auditory ossicle bone - -[Term] -id: EHDAA:502 ! -property_value: IAO:0000589 "ear (EHDAA)" xsd:string -is_a: UBERON:0001690 ! ear - -[Term] -id: EHDAA:3786 ! -property_value: IAO:0000589 "external ear (EHDAA)" xsd:string -is_a: UBERON:0001691 ! external ear - -[Term] -id: EHDAA:10627 ! -property_value: IAO:0000589 "foramen ovale of skull (EHDAA)" xsd:string -is_a: UBERON:0001698 ! foramen ovale of skull - -[Term] -id: EHDAA:5567 ! -property_value: IAO:0000589 "geniculate ganglion (EHDAA)" xsd:string -is_a: UBERON:0001700 ! geniculate ganglion - -[Term] -id: EHDAA:6644 ! -property_value: IAO:0000589 "geniculate ganglion (EHDAA)" xsd:string -is_a: UBERON:0001700 ! geniculate ganglion - -[Term] -id: EHDAA:2838 ! -property_value: IAO:0000589 "glossopharyngeal ganglion (EHDAA)" xsd:string -is_a: UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EHDAA:6809 ! -property_value: IAO:0000589 "nasal septum (EHDAA)" xsd:string -is_a: UBERON:0001706 ! nasal septum - -[Term] -id: EHDAA:6801 ! -property_value: IAO:0000589 "nasal cavity (EHDAA)" xsd:string -is_a: UBERON:0001707 ! nasal cavity - -[Term] -id: EHDAA:8025 ! -property_value: IAO:0000589 "upper jaw region (EHDAA)" xsd:string -is_a: UBERON:0001709 ! upper jaw region - -[Term] -id: EHDAA:7995 ! -property_value: IAO:0000589 "lower jaw region (EHDAA)" xsd:string -is_a: UBERON:0001710 ! lower jaw region - -[Term] -id: EHDAA:9037 ! -property_value: IAO:0000589 "eyelid (EHDAA)" xsd:string -is_a: UBERON:0001711 ! eyelid - -[Term] -id: EHDAA:9047 ! -property_value: IAO:0000589 "upper eyelid (EHDAA)" xsd:string -is_a: UBERON:0001712 ! upper eyelid - -[Term] -id: EHDAA:9041 ! -property_value: IAO:0000589 "lower eyelid (EHDAA)" xsd:string -is_a: UBERON:0001713 ! lower eyelid - -[Term] -id: EHDAA:9144 ! -property_value: IAO:0000589 "tongue (EHDAA)" xsd:string -is_a: UBERON:0001723 ! tongue - -[Term] -id: EHDAA:7086 ! -property_value: IAO:0000589 "nasopharynx (EHDAA)" xsd:string -is_a: UBERON:0001728 ! nasopharynx - -[Term] -id: EHDAA:9395 ! -property_value: IAO:0000589 "thyroid cartilage (EHDAA)" xsd:string -is_a: UBERON:0001738 ! thyroid cartilage - -[Term] -id: EHDAA:8157 ! -property_value: IAO:0000589 "laryngeal cartilage (EHDAA)" xsd:string -is_a: UBERON:0001739 ! laryngeal cartilage - -[Term] -id: EHDAA:5693 ! -property_value: IAO:0000589 "middle ear (EHDAA)" xsd:string -is_a: UBERON:0001756 ! middle ear - -[Term] -id: EHDAA:2150 ! -property_value: IAO:0000589 "future foramen cecum (EHDAA)" xsd:string -is_a: UBERON:0001761 ! future foramen cecum - -[Term] -id: EHDAA:2977 ! -property_value: IAO:0000589 "future foramen cecum (EHDAA)" xsd:string -is_a: UBERON:0001761 ! future foramen cecum - -[Term] -id: EHDAA:9033 ! -property_value: IAO:0000589 "anterior chamber of eyeball (EHDAA)" xsd:string -is_a: UBERON:0001766 ! anterior chamber of eyeball - -[Term] -id: EHDAA:4765 ! -property_value: IAO:0000589 "pigmented layer of retina (EHDAA)" xsd:string -is_a: UBERON:0001782 ! pigmented layer of retina - -[Term] -id: EHDAA:9077 ! -property_value: IAO:0000589 "optic disc (EHDAA)" xsd:string -is_a: UBERON:0001783 ! optic disc - -[Term] -id: EHDAA:10196 ! -property_value: IAO:0000589 "aqueous humor of eyeball (EHDAA)" xsd:string -is_a: UBERON:0001796 ! aqueous humor of eyeball - -[Term] -id: EHDAA:5635 ! -property_value: IAO:0000589 "paravertebral ganglion (EHDAA)" xsd:string -is_a: UBERON:0001807 ! paravertebral ganglion - -[Term] -id: EHDAA:3780 ! -property_value: IAO:0000589 "nerve plexus (EHDAA)" xsd:string -is_a: UBERON:0001810 ! nerve plexus - -[Term] -id: EHDAA:3782 ! -property_value: IAO:0000589 "brachial nerve plexus (EHDAA)" xsd:string -is_a: UBERON:0001814 ! brachial nerve plexus - -[Term] -id: EHDAA:4673 ! -property_value: IAO:0000589 "lumbosacral nerve plexus (EHDAA)" xsd:string -is_a: UBERON:0001815 ! lumbosacral nerve plexus - -[Term] -id: EHDAA:6489 ! -property_value: IAO:0000589 "paranasal sinus (EHDAA)" xsd:string -is_a: UBERON:0001825 ! paranasal sinus - -[Term] -id: EHDAA:7802 ! -property_value: IAO:0000589 "anterior semicircular canal (EHDAA)" xsd:string -is_a: UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EHDAA:7796 ! -property_value: IAO:0000589 "posterior semicircular canal (EHDAA)" xsd:string -is_a: UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EHDAA:7790 ! -property_value: IAO:0000589 "lateral semicircular canal (EHDAA)" xsd:string -is_a: UBERON:0001843 ! lateral semicircular canal - -[Term] -id: EHDAA:504 ! -property_value: IAO:0000589 "internal ear (EHDAA)" xsd:string -is_a: UBERON:0001846 ! internal ear - -[Term] -id: EHDAA:4698 ! -property_value: IAO:0000589 "membranous labyrinth (EHDAA)" xsd:string -is_a: UBERON:0001849 ! membranous labyrinth - -[Term] -id: EHDAA:9344 ! -property_value: IAO:0000589 "cortex (EHDAA)" xsd:string -is_a: UBERON:0001851 ! cortex - -[Term] -id: EHDAA:4726 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (EHDAA)" xsd:string -is_a: UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EHDAA:4712 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (EHDAA)" xsd:string -is_a: UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EHDAA:4718 ! -property_value: IAO:0000589 "cochlear duct of membranous labyrinth (EHDAA)" xsd:string -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: EHDAA:4706 ! -property_value: IAO:0000589 "vestibular labyrinth (EHDAA)" xsd:string -is_a: UBERON:0001862 ! vestibular labyrinth - -[Term] -id: EHDAA:4677 ! -property_value: IAO:0000589 "phrenic nerve (EHDAA)" xsd:string -is_a: UBERON:0001884 ! phrenic nerve - -[Term] -id: EHDAA:3470 ! -property_value: IAO:0000589 "forebrain (EHDAA)" xsd:string -is_a: UBERON:0001890 ! forebrain - -[Term] -id: EHDAA:3694 ! -property_value: IAO:0000589 "midbrain (EHDAA)" xsd:string -is_a: UBERON:0001891 ! midbrain - -[Term] -id: EHDAA:1969 ! -property_value: IAO:0000589 "diencephalon (EHDAA)" xsd:string -is_a: UBERON:0001894 ! diencephalon - -[Term] -id: EHDAA:2645 ! -property_value: IAO:0000589 "diencephalon (EHDAA)" xsd:string -is_a: UBERON:0001894 ! diencephalon - -[Term] -id: EHDAA:3472 ! -property_value: IAO:0000589 "diencephalon (EHDAA)" xsd:string -is_a: UBERON:0001894 ! diencephalon - -[Term] -id: EHDAA:5498 ! -property_value: IAO:0000589 "metencephalon (EHDAA)" xsd:string -is_a: UBERON:0001895 ! metencephalon - -[Term] -id: EHDAA:7588 ! -property_value: IAO:0000589 "medulla oblongata (EHDAA)" xsd:string -is_a: UBERON:0001896 ! medulla oblongata - -[Term] -id: EHDAA:5446 ! -property_value: IAO:0000589 "hypothalamus (EHDAA)" xsd:string -is_a: UBERON:0001898 ! hypothalamus - -[Term] -id: EHDAA:5433 ! -property_value: IAO:0000589 "epithalamus (EHDAA)" xsd:string -is_a: UBERON:0001899 ! epithalamus - -[Term] -id: EHDAA:5007 ! -property_value: IAO:0000589 "epithelium of trachea (EHDAA)" xsd:string -is_a: UBERON:0001901 ! epithelium of trachea - -[Term] -id: EHDAA:7523 ! -property_value: IAO:0000589 "pineal body (EHDAA)" xsd:string -is_a: UBERON:0001905 ! pineal body - -[Term] -id: EHDAA:7090 ! -property_value: IAO:0000589 "epithelium of nasopharynx (EHDAA)" xsd:string -is_a: UBERON:0001951 ! epithelium of nasopharynx - -[Term] -id: EHDAA:240 ! -property_value: IAO:0000589 "blood vessel (EHDAA)" xsd:string -is_a: UBERON:0001981 ! blood vessel - -[Term] -id: EHDAA:8943 ! -property_value: IAO:0000589 "superior cervical ganglion (EHDAA)" xsd:string -is_a: UBERON:0001989 ! superior cervical ganglion - -[Term] -id: EHDAA:8941 ! -property_value: IAO:0000589 "middle cervical ganglion (EHDAA)" xsd:string -is_a: UBERON:0001990 ! middle cervical ganglion - -[Term] -id: EHDAA:4774 ! -property_value: IAO:0000589 "olfactory epithelium (EHDAA)" xsd:string -is_a: UBERON:0001997 ! olfactory epithelium - -[Term] -id: EHDAA:9458 ! -property_value: IAO:0000589 "iliopsoas (EHDAA)" xsd:string -is_a: UBERON:0001999 ! iliopsoas - -[Term] -id: EHDAA:4351 ! -property_value: IAO:0000589 "pulmonary artery (EHDAA)" xsd:string -is_a: UBERON:0002012 ! pulmonary artery - -[Term] -id: EHDAA:2629 ! -property_value: IAO:0000589 "pulmonary vein (EHDAA)" xsd:string -is_a: UBERON:0002016 ! pulmonary vein - -[Term] -id: EHDAA:6510 ! -property_value: IAO:0000589 "portal vein (EHDAA)" xsd:string -is_a: UBERON:0002017 ! portal vein - -[Term] -id: EHDAA:2855 ! -property_value: IAO:0000589 "accessory XI nerve (EHDAA)" xsd:string -is_a: UBERON:0002019 ! accessory XI nerve - -[Term] -id: EHDAA:3514 ! -property_value: IAO:0000589 "hindbrain (EHDAA)" xsd:string -is_a: UBERON:0002028 ! hindbrain - -[Term] -id: EHDAA:6487 ! -property_value: IAO:0000589 "hindbrain (EHDAA)" xsd:string -is_a: UBERON:0002028 ! hindbrain - -[Term] -id: EHDAA:2148 ! -property_value: IAO:0000589 "thyroid gland (EHDAA)" xsd:string -is_a: UBERON:0002046 ! thyroid gland - -[Term] -id: EHDAA:2975 ! -property_value: IAO:0000589 "thyroid gland (EHDAA)" xsd:string -is_a: UBERON:0002046 ! thyroid gland - -[Term] -id: EHDAA:1554 ! -property_value: IAO:0000589 "lung (EHDAA)" xsd:string -is_a: UBERON:0002048 ! lung - -[Term] -id: EHDAA:2205 ! -property_value: IAO:0000589 "lung (EHDAA)" xsd:string -is_a: UBERON:0002048 ! lung - -[Term] -id: EHDAA:5623 ! -property_value: IAO:0000589 "main ciliary ganglion (EHDAA)" xsd:string -is_a: UBERON:0002058 ! main ciliary ganglion - -[Term] -id: EHDAA:6710 ! -property_value: IAO:0000589 "submandibular ganglion (EHDAA)" xsd:string -is_a: UBERON:0002059 ! submandibular ganglion - -[Term] -id: EHDAA:2586 ! -property_value: IAO:0000589 "endocardial cushion (EHDAA)" xsd:string -is_a: UBERON:0002062 ! endocardial cushion - -[Term] -id: EHDAA:480 ! -property_value: IAO:0000589 "sinus venosus (EHDAA)" xsd:string -is_a: UBERON:0002063 ! sinus venosus - -[Term] -id: EHDAA:1314 ! -property_value: IAO:0000589 "common cardinal vein (EHDAA)" xsd:string -is_a: UBERON:0002064 ! common cardinal vein - -[Term] -id: EHDAA:1316 ! -property_value: IAO:0000589 "posterior cardinal vein (EHDAA)" xsd:string -is_a: UBERON:0002065 ! posterior cardinal vein - -[Term] -id: EHDAA:1034 ! -property_value: IAO:0000589 "umbilical vein (EHDAA)" xsd:string -is_a: UBERON:0002066 ! umbilical vein - -[Term] -id: EHDAA:488 ! -property_value: IAO:0000589 "umbilical vein (EHDAA)" xsd:string -is_a: UBERON:0002066 ! umbilical vein - -[Term] -id: EHDAA:7016 ! -property_value: IAO:0000589 "urachus (EHDAA)" xsd:string -is_a: UBERON:0002068 ! urachus - -[Term] -id: EHDAA:9332 ! -property_value: IAO:0000589 "urachus (EHDAA)" xsd:string -is_a: UBERON:0002068 ! urachus - -[Term] -id: EHDAA:512 ! -property_value: IAO:0000589 "viscus (EHDAA)" xsd:string -is_a: UBERON:0002075 ! viscus - -[Term] -id: EHDAA:1265 ! -property_value: IAO:0000589 "cardiac atrium (EHDAA)" xsd:string -is_a: UBERON:0002081 ! cardiac atrium - -[Term] -id: EHDAA:1912 ! -property_value: IAO:0000589 "cardiac ventricle (EHDAA)" xsd:string -is_a: UBERON:0002082 ! cardiac ventricle - -[Term] -id: EHDAA:5402 ! -property_value: IAO:0000589 "ductus venosus (EHDAA)" xsd:string -is_a: UBERON:0002083 ! ductus venosus - -[Term] -id: EHDAA:1896 ! -property_value: IAO:0000589 "interatrial septum (EHDAA)" xsd:string -is_a: UBERON:0002085 ! interatrial septum - -[Term] -id: EHDAA:764 ! -property_value: IAO:0000589 "atrioventricular canal (EHDAA)" xsd:string -is_a: UBERON:0002087 ! atrioventricular canal - -[Term] -id: EHDAA:5049 ! -property_value: IAO:0000589 "postcranial axial skeleton (EHDAA)" xsd:string -is_a: UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EHDAA:2603 ! -property_value: IAO:0000589 "interventricular septum (EHDAA)" xsd:string -is_a: UBERON:0002094 ! interventricular septum - -[Term] -id: EHDAA:1697 ! -property_value: IAO:0000589 "limb (EHDAA)" xsd:string -is_a: UBERON:0002101 ! limb - -[Term] -id: EHDAA:8273 ! -property_value: IAO:0000589 "limb (EHDAA)" xsd:string -is_a: UBERON:0002101 ! limb - -[Term] -id: EHDAA:6208 ! -property_value: IAO:0000589 "forelimb (EHDAA)" xsd:string -is_a: UBERON:0002102 ! forelimb - -[Term] -id: EHDAA:6094 ! -property_value: IAO:0000589 "hindlimb (EHDAA)" xsd:string -is_a: UBERON:0002103 ! hindlimb - -[Term] -id: EHDAA:2197 ! -property_value: IAO:0000589 "liver (EHDAA)" xsd:string -is_a: UBERON:0002107 ! liver - -[Term] -id: EHDAA:8062 ! -property_value: IAO:0000589 "gallbladder (EHDAA)" xsd:string -is_a: UBERON:0002110 ! gallbladder - -[Term] -id: EHDAA:1017 ! -property_value: IAO:0000589 "pronephros (EHDAA)" xsd:string -is_a: UBERON:0002120 ! pronephros - -[Term] -id: EHDAA:7421 ! -property_value: IAO:0000589 "atrioventricular valve (EHDAA)" xsd:string -is_a: UBERON:0002133 ! atrioventricular valve - -[Term] -id: EHDAA:7427 ! -property_value: IAO:0000589 "tricuspid valve (EHDAA)" xsd:string -is_a: UBERON:0002134 ! tricuspid valve - -[Term] -id: EHDAA:4410 ! -property_value: IAO:0000589 "aortic valve (EHDAA)" xsd:string -is_a: UBERON:0002137 ! aortic valve - -[Term] -id: EHDAA:4412 ! -property_value: IAO:0000589 "pulmonary valve (EHDAA)" xsd:string -is_a: UBERON:0002146 ! pulmonary valve - -[Term] -id: EHDAA:4969 ! -property_value: IAO:0000589 "right lung (EHDAA)" xsd:string -is_a: UBERON:0002167 ! right lung - -[Term] -id: EHDAA:4947 ! -property_value: IAO:0000589 "left lung (EHDAA)" xsd:string -is_a: UBERON:0002168 ! left lung - -[Term] -id: EHDAA:4987 ! -property_value: IAO:0000589 "upper lobe of right lung (EHDAA)" xsd:string -is_a: UBERON:0002170 ! upper lobe of right lung - -[Term] -id: EHDAA:4979 ! -property_value: IAO:0000589 "lower lobe of right lung (EHDAA)" xsd:string -is_a: UBERON:0002171 ! lower lobe of right lung - -[Term] -id: EHDAA:3072 ! -property_value: IAO:0000589 "main bronchus (EHDAA)" xsd:string -is_a: UBERON:0002182 ! main bronchus - -[Term] -id: EHDAA:4955 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:4963 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:4977 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:4985 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:4993 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:8175 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:8187 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:8203 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:8213 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:8225 ! -property_value: IAO:0000589 "lobar bronchus (EHDAA)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: EHDAA:7043 ! -property_value: IAO:0000589 "segmental bronchus (EHDAA)" xsd:string -is_a: UBERON:0002184 ! segmental bronchus - -[Term] -id: EHDAA:7049 ! -property_value: IAO:0000589 "segmental bronchus (EHDAA)" xsd:string -is_a: UBERON:0002184 ! segmental bronchus - -[Term] -id: EHDAA:7058 ! -property_value: IAO:0000589 "segmental bronchus (EHDAA)" xsd:string -is_a: UBERON:0002184 ! segmental bronchus - -[Term] -id: EHDAA:7064 ! -property_value: IAO:0000589 "segmental bronchus (EHDAA)" xsd:string -is_a: UBERON:0002184 ! segmental bronchus - -[Term] -id: EHDAA:7070 ! -property_value: IAO:0000589 "segmental bronchus (EHDAA)" xsd:string -is_a: UBERON:0002184 ! segmental bronchus - -[Term] -id: EHDAA:8171 ! -property_value: IAO:0000589 "bronchiole (EHDAA)" xsd:string -is_a: UBERON:0002186 ! bronchiole - -[Term] -id: EHDAA:8183 ! -property_value: IAO:0000589 "bronchiole (EHDAA)" xsd:string -is_a: UBERON:0002186 ! bronchiole - -[Term] -id: EHDAA:8199 ! -property_value: IAO:0000589 "bronchiole (EHDAA)" xsd:string -is_a: UBERON:0002186 ! bronchiole - -[Term] -id: EHDAA:8221 ! -property_value: IAO:0000589 "bronchiole (EHDAA)" xsd:string -is_a: UBERON:0002186 ! bronchiole - -[Term] -id: EHDAA:7567 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (EHDAA)" xsd:string -is_a: UBERON:0002192 ! ventricular system choroidal fissure - -[Term] -id: EHDAA:7540 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (EHDAA)" xsd:string -is_a: UBERON:0002197 ! median eminence of neurohypophysis - -[Term] -id: EHDAA:7536 ! -property_value: IAO:0000589 "neurohypophysis (EHDAA)" xsd:string -is_a: UBERON:0002198 ! neurohypophysis - -[Term] -id: EHDAA:7761 ! -property_value: IAO:0000589 "endolymphatic sac (EHDAA)" xsd:string -is_a: UBERON:0002223 ! endolymphatic sac - -[Term] -id: EHDAA:9530 ! -property_value: IAO:0000589 "interparietal bone (EHDAA)" xsd:string -is_a: UBERON:0002229 ! interparietal bone - -[Term] -id: EHDAA:2863 ! -property_value: IAO:0000589 "spinal cord (EHDAA)" xsd:string -is_a: UBERON:0002240 ! spinal cord - -[Term] -id: EHDAA:6962 ! -property_value: IAO:0000589 "premaxilla (EHDAA)" xsd:string -is_a: UBERON:0002244 ! premaxilla - -[Term] -id: EHDAA:8033 ! -property_value: IAO:0000589 "premaxilla (EHDAA)" xsd:string -is_a: UBERON:0002244 ! premaxilla - -[Term] -id: EHDAA:796 ! -property_value: IAO:0000589 "transverse pericardial sinus (EHDAA)" xsd:string -is_a: UBERON:0002248 ! transverse pericardial sinus - -[Term] -id: EHDAA:7865 ! -property_value: IAO:0000589 "vomeronasal organ (EHDAA)" xsd:string -is_a: UBERON:0002255 ! vomeronasal organ - -[Term] -id: EHDAA:8946 ! -property_value: IAO:0000589 "celiac ganglion (EHDAA)" xsd:string -is_a: UBERON:0002262 ! celiac ganglion - -[Term] -id: EHDAA:3502 ! -property_value: IAO:0000589 "telencephalic ventricle (EHDAA)" xsd:string -is_a: UBERON:0002285 ! telencephalic ventricle - -[Term] -id: EHDAA:6576 ! -property_value: IAO:0000589 "telencephalic ventricle (EHDAA)" xsd:string -is_a: UBERON:0002285 ! telencephalic ventricle - -[Term] -id: EHDAA:1343 ! -property_value: IAO:0000589 "optic recess of third ventricle (EHDAA)" xsd:string -is_a: UBERON:0002287 ! optic recess of third ventricle - -[Term] -id: EHDAA:1973 ! -property_value: IAO:0000589 "optic recess of third ventricle (EHDAA)" xsd:string -is_a: UBERON:0002287 ! optic recess of third ventricle - -[Term] -id: EHDAA:2649 ! -property_value: IAO:0000589 "optic recess of third ventricle (EHDAA)" xsd:string -is_a: UBERON:0002287 ! optic recess of third ventricle - -[Term] -id: EHDAA:3478 ! -property_value: IAO:0000589 "optic recess of third ventricle (EHDAA)" xsd:string -is_a: UBERON:0002287 ! optic recess of third ventricle - -[Term] -id: EHDAA:3696 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (EHDAA)" xsd:string -is_a: UBERON:0002289 ! midbrain cerebral aqueduct - -[Term] -id: EHDAA:3019 ! -property_value: IAO:0000589 "dorsal mesentery (EHDAA)" xsd:string -is_a: UBERON:0002296 ! dorsal mesentery - -[Term] -id: EHDAA:3033 ! -property_value: IAO:0000589 "dorsal mesentery (EHDAA)" xsd:string -is_a: UBERON:0002296 ! dorsal mesentery - -[Term] -id: EHDAA:3921 ! -property_value: IAO:0000589 "dorsal mesentery (EHDAA)" xsd:string -is_a: UBERON:0002296 ! dorsal mesentery - -[Term] -id: EHDAA:3934 ! -property_value: IAO:0000589 "dorsal mesentery (EHDAA)" xsd:string -is_a: UBERON:0002296 ! dorsal mesentery - -[Term] -id: EHDAA:3957 ! -property_value: IAO:0000589 "dorsal mesentery (EHDAA)" xsd:string -is_a: UBERON:0002296 ! dorsal mesentery - -[Term] -id: EHDAA:3971 ! -property_value: IAO:0000589 "dorsal mesentery (EHDAA)" xsd:string -is_a: UBERON:0002296 ! dorsal mesentery - -[Term] -id: EHDAA:1241 ! -property_value: IAO:0000589 "notochord (EHDAA)" xsd:string -is_a: UBERON:0002328 ! notochord - -[Term] -id: EHDAA:6021 ! -property_value: IAO:0000589 "notochord (EHDAA)" xsd:string -is_a: UBERON:0002328 ! notochord - -[Term] -id: EHDAA:366 ! -property_value: IAO:0000589 "somite (EHDAA)" xsd:string -is_a: UBERON:0002329 ! somite - -[Term] -id: EHDAA:699 ! -property_value: IAO:0000589 "somite (EHDAA)" xsd:string -is_a: UBERON:0002329 ! somite - -[Term] -id: EHDAA:158 ! -property_value: IAO:0000589 "umbilical cord (EHDAA)" xsd:string -is_a: UBERON:0002331 ! umbilical cord - -[Term] -id: EHDAA:9831 ! -property_value: IAO:0000589 "pulmonary trunk (EHDAA)" xsd:string -is_a: UBERON:0002333 ! pulmonary trunk - -[Term] -id: EHDAA:5003 ! -property_value: IAO:0000589 "epithelium of main bronchus (EHDAA)" xsd:string -is_a: UBERON:0002340 ! epithelium of main bronchus - -[Term] -id: EHDAA:1498 ! -property_value: IAO:0000589 "neurectoderm (EHDAA)" xsd:string -is_a: UBERON:0002346 ! neurectoderm - -[Term] -id: EHDAA:255 ! -property_value: IAO:0000589 "neurectoderm (EHDAA)" xsd:string -is_a: UBERON:0002346 ! neurectoderm - -[Term] -id: EHDAA:1367 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:1961 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:2001 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:2099 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:2685 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:2833 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:2867 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:3692 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:3710 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:6566 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:6583 ! -property_value: IAO:0000589 "pia mater (EHDAA)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EHDAA:9119 ! -property_value: IAO:0000589 "thymus (EHDAA)" xsd:string -is_a: UBERON:0002370 ! thymus - -[Term] -id: EHDAA:9393 ! -property_value: IAO:0000589 "cricoid cartilage (EHDAA)" xsd:string -is_a: UBERON:0002375 ! cricoid cartilage - -[Term] -id: EHDAA:8311 ! -property_value: IAO:0000589 "pectoralis major (EHDAA)" xsd:string -is_a: UBERON:0002381 ! pectoralis major - -[Term] -id: EHDAA:8252 ! -property_value: IAO:0000589 "rectus abdominis muscle (EHDAA)" xsd:string -is_a: UBERON:0002382 ! rectus abdominis muscle - -[Term] -id: EHDAA:8319 ! -property_value: IAO:0000589 "supraspinatus muscle (EHDAA)" xsd:string -is_a: UBERON:0002383 ! supraspinatus muscle - -[Term] -id: EHDAA:4172 ! -property_value: IAO:0000589 "forelimb zeugopod (EHDAA)" xsd:string -is_a: UBERON:0002386 ! forelimb zeugopod - -[Term] -id: EHDAA:6218 ! -property_value: IAO:0000589 "forelimb zeugopod (EHDAA)" xsd:string -is_a: UBERON:0002386 ! forelimb zeugopod - -[Term] -id: EHDAA:7849 ! -property_value: IAO:0000589 "nasolacrimal duct (EHDAA)" xsd:string -is_a: UBERON:0002392 ! nasolacrimal duct - -[Term] -id: EHDAA:9094 ! -property_value: IAO:0000589 "nasolacrimal duct (EHDAA)" xsd:string -is_a: UBERON:0002392 ! nasolacrimal duct - -[Term] -id: EHDAA:8043 ! -property_value: IAO:0000589 "maxilla (EHDAA)" xsd:string -is_a: UBERON:0002397 ! maxilla - -[Term] -id: EHDAA:4858 ! -property_value: IAO:0000589 "lesser omentum (EHDAA)" xsd:string -is_a: UBERON:0002399 ! lesser omentum - -[Term] -id: EHDAA:5376 ! -property_value: IAO:0000589 "pericardium (EHDAA)" xsd:string -is_a: UBERON:0002407 ! pericardium - -[Term] -id: EHDAA:3422 ! -property_value: IAO:0000589 "parietal serous pericardium (EHDAA)" xsd:string -is_a: UBERON:0002408 ! parietal serous pericardium - -[Term] -id: EHDAA:5378 ! -property_value: IAO:0000589 "parietal serous pericardium (EHDAA)" xsd:string -is_a: UBERON:0002408 ! parietal serous pericardium - -[Term] -id: EHDAA:3767 ! -property_value: IAO:0000589 "autonomic nervous system (EHDAA)" xsd:string -is_a: UBERON:0002410 ! autonomic nervous system - -[Term] -id: EHDAA:9360 ! -property_value: IAO:0000589 "clitoris (EHDAA)" xsd:string -is_a: UBERON:0002411 ! clitoris - -[Term] -id: EHDAA:9198 ! -property_value: IAO:0000589 "tail (EHDAA)" xsd:string -is_a: UBERON:0002415 ! tail - -[Term] -id: EHDAA:6520 ! -property_value: IAO:0000589 "integumental system (EHDAA)" xsd:string -is_a: UBERON:0002416 ! integumental system - -[Term] -id: EHDAA:896 ! -property_value: IAO:0000589 "fourth ventricle (EHDAA)" xsd:string -is_a: UBERON:0002422 ! fourth ventricle - -[Term] -id: EHDAA:2189 ! -property_value: IAO:0000589 "hepatobiliary system (EHDAA)" xsd:string -is_a: UBERON:0002423 ! hepatobiliary system - -[Term] -id: EHDAA:2187 ! -property_value: IAO:0000589 "oral epithelium (EHDAA)" xsd:string -is_a: UBERON:0002424 ! oral epithelium - -[Term] -id: EHDAA:8765 ! -property_value: IAO:0000589 "pars intermedia of adenohypophysis (EHDAA)" xsd:string -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis - -[Term] -id: EHDAA:8767 ! -property_value: IAO:0000589 "pars tuberalis of adenohypophysis (EHDAA)" xsd:string -is_a: UBERON:0002433 ! pars tuberalis of adenohypophysis - -[Term] -id: EHDAA:7538 ! -property_value: IAO:0000589 "pituitary stalk (EHDAA)" xsd:string -is_a: UBERON:0002434 ! pituitary stalk - -[Term] -id: EHDAA:8939 ! -property_value: IAO:0000589 "inferior cervical ganglion (EHDAA)" xsd:string -is_a: UBERON:0002440 ! inferior cervical ganglion - -[Term] -id: EHDAA:4745 ! -property_value: IAO:0000589 "lens fiber (EHDAA)" xsd:string -is_a: UBERON:0002444 ! lens fiber - -[Term] -id: EHDAA:9065 ! -property_value: IAO:0000589 "lens fiber (EHDAA)" xsd:string -is_a: UBERON:0002444 ! lens fiber - -[Term] -id: EHDAA:8585 ! -property_value: IAO:0000589 "internal thoracic artery (EHDAA)" xsd:string -is_a: UBERON:0002456 ! internal thoracic artery - -[Term] -id: EHDAA:4340 ! -property_value: IAO:0000589 "intersomitic artery (EHDAA)" xsd:string -is_a: UBERON:0002457 ! intersomitic artery - -[Term] -id: EHDAA:4355 ! -property_value: IAO:0000589 "spinal artery (EHDAA)" xsd:string -is_a: UBERON:0002458 ! spinal artery - -[Term] -id: EHDAA:9456 ! -property_value: IAO:0000589 "erector spinae muscle group (EHDAA)" xsd:string -is_a: UBERON:0002462 ! erector spinae muscle group - -[Term] -id: EHDAA:8295 ! -property_value: IAO:0000589 "muscle of posterior compartment of hindlimb stylopod (EHDAA)" xsd:string -is_a: UBERON:0002463 ! muscle of posterior compartment of hindlimb stylopod - -[Term] -id: EHDAA:4675 ! -property_value: IAO:0000589 "nerve trunk (EHDAA)" xsd:string -is_a: UBERON:0002464 ! nerve trunk - -[Term] -id: EHDAA:8677 ! -property_value: IAO:0000589 "lymphoid system (EHDAA)" xsd:string -is_a: UBERON:0002465 ! lymphoid system - -[Term] -id: EHDAA:8655 ! -property_value: IAO:0000589 "papillary muscle of heart (EHDAA)" xsd:string -is_a: UBERON:0002494 ! papillary muscle of heart - -[Term] -id: EHDAA:2161 ! -property_value: IAO:0000589 "gland (EHDAA)" xsd:string -is_a: UBERON:0002530 ! gland - -[Term] -id: EHDAA:4475 ! -property_value: IAO:0000589 "gland (EHDAA)" xsd:string -is_a: UBERON:0002530 ! gland - -[Term] -id: EHDAA:6522 ! -property_value: IAO:0000589 "gland (EHDAA)" xsd:string -is_a: UBERON:0002530 ! gland - -[Term] -id: EHDAA:1595 ! -property_value: IAO:0000589 "post-anal tail bud (EHDAA)" xsd:string -is_a: UBERON:0002533 ! post-anal tail bud - -[Term] -id: EHDAA:571 ! -property_value: IAO:0000589 "pharyngeal arch (EHDAA)" xsd:string -is_a: UBERON:0002539 ! pharyngeal arch - -[Term] -id: EHDAA:5569 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (EHDAA)" xsd:string -is_a: UBERON:0002827 ! vestibulocochlear ganglion - -[Term] -id: EHDAA:6653 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (EHDAA)" xsd:string -is_a: UBERON:0002827 ! vestibulocochlear ganglion - -[Term] -id: EHDAA:5482 ! -property_value: IAO:0000589 "olfactory cortex (EHDAA)" xsd:string -is_a: UBERON:0002894 ! olfactory cortex - -[Term] -id: EHDAA:1504 ! -property_value: IAO:0000589 "olfactory placode (EHDAA)" xsd:string -is_a: UBERON:0003050 ! olfactory placode - -[Term] -id: EHDAA:5789 ! -property_value: IAO:0000589 "midbrain-hindbrain boundary (EHDAA)" xsd:string -is_a: UBERON:0003052 ! midbrain-hindbrain boundary - -[Term] -id: EHDAA:2891 ! -property_value: IAO:0000589 "roof plate (EHDAA)" xsd:string -is_a: UBERON:0003054 ! roof plate - -[Term] -id: EHDAA:916 ! -property_value: IAO:0000589 "roof plate (EHDAA)" xsd:string -is_a: UBERON:0003054 ! roof plate - -[Term] -id: EHDAA:6538 ! -property_value: IAO:0000589 "periderm (EHDAA)" xsd:string -is_a: UBERON:0003055 ! periderm - -[Term] -id: EHDAA:207 ! -property_value: IAO:0000589 "blood island (EHDAA)" xsd:string -is_a: UBERON:0003061 ! blood island - -[Term] -id: EHDAA:549 ! -property_value: IAO:0000589 "primitive knot (EHDAA)" xsd:string -is_a: UBERON:0003062 ! primitive knot - -[Term] -id: EHDAA:181 ! -property_value: IAO:0000589 "prechordal plate (EHDAA)" xsd:string -is_a: UBERON:0003063 ! prechordal plate - -[Term] -id: EHDAA:611 ! -property_value: IAO:0000589 "pharyngeal arch 2 (EHDAA)" xsd:string -is_a: UBERON:0003066 ! pharyngeal arch 2 - -[Term] -id: EHDAA:506 ! -property_value: IAO:0000589 "otic placode (EHDAA)" xsd:string -is_a: UBERON:0003069 ! otic placode - -[Term] -id: EHDAA:2912 ! -property_value: IAO:0000589 "optic cup (EHDAA)" xsd:string -is_a: UBERON:0003072 ! optic cup - -[Term] -id: EHDAA:2908 ! -property_value: IAO:0000589 "lens placode (EHDAA)" xsd:string -is_a: UBERON:0003073 ! lens placode - -[Term] -id: EHDAA:1590 ! -property_value: IAO:0000589 "mesonephric duct (EHDAA)" xsd:string -is_a: UBERON:0003074 ! mesonephric duct - -[Term] -id: EHDAA:346 ! -property_value: IAO:0000589 "neural plate (EHDAA)" xsd:string -is_a: UBERON:0003075 ! neural plate - -[Term] -id: EHDAA:902 ! -property_value: IAO:0000589 "neural plate (EHDAA)" xsd:string -is_a: UBERON:0003075 ! neural plate - -[Term] -id: EHDAA:379 ! -property_value: IAO:0000589 "lateral plate mesoderm (EHDAA)" xsd:string -is_a: UBERON:0003081 ! lateral plate mesoderm - -[Term] -id: EHDAA:1721 ! -property_value: IAO:0000589 "myotome (EHDAA)" xsd:string -is_a: UBERON:0003082 ! myotome - -[Term] -id: EHDAA:1727 ! -property_value: IAO:0000589 "myotome (EHDAA)" xsd:string -is_a: UBERON:0003082 ! myotome - -[Term] -id: EHDAA:1733 ! -property_value: IAO:0000589 "myotome (EHDAA)" xsd:string -is_a: UBERON:0003082 ! myotome - -[Term] -id: EHDAA:1739 ! -property_value: IAO:0000589 "myotome (EHDAA)" xsd:string -is_a: UBERON:0003082 ! myotome - -[Term] -id: EHDAA:1312 ! -property_value: IAO:0000589 "anterior cardinal vein (EHDAA)" xsd:string -is_a: UBERON:0003087 ! anterior cardinal vein - -[Term] -id: EHDAA:952 ! -property_value: IAO:0000589 "thyroid primordium (EHDAA)" xsd:string -is_a: UBERON:0003091 ! thyroid primordium - -[Term] -id: EHDAA:2987 ! -property_value: IAO:0000589 "ultimobranchial body (EHDAA)" xsd:string -is_a: UBERON:0003092 ! ultimobranchial body - -[Term] -id: EHDAA:9139 ! -property_value: IAO:0000589 "ultimobranchial body (EHDAA)" xsd:string -is_a: UBERON:0003092 ! ultimobranchial body - -[Term] -id: EHDAA:3816 ! -property_value: IAO:0000589 "optic stalk (EHDAA)" xsd:string -is_a: UBERON:0003098 ! optic stalk - -[Term] -id: EHDAA:7997 ! -property_value: IAO:0000589 "Meckel's cartilage (EHDAA)" xsd:string -is_a: UBERON:0003107 ! Meckel's cartilage - -[Term] -id: EHDAA:1080 ! -property_value: IAO:0000589 "pharyngeal arch 3 (EHDAA)" xsd:string -is_a: UBERON:0003114 ! pharyngeal arch 3 - -[Term] -id: EHDAA:1663 ! -property_value: IAO:0000589 "pharyngeal arch 4 (EHDAA)" xsd:string -is_a: UBERON:0003115 ! pharyngeal arch 4 - -[Term] -id: EHDAA:150 ! -property_value: IAO:0000589 "chorion membrane (EHDAA)" xsd:string -is_a: UBERON:0003124 ! chorion membrane - -[Term] -id: EHDAA:3078 ! -property_value: IAO:0000589 "trachea (EHDAA)" xsd:string -is_a: UBERON:0003126 ! trachea - -[Term] -id: EHDAA:6029 ! -property_value: IAO:0000589 "cranium (EHDAA)" xsd:string -is_a: UBERON:0003128 ! cranium - -[Term] -id: EHDAA:7542 ! -property_value: IAO:0000589 "neural lobe of neurohypophysis (EHDAA)" xsd:string -is_a: UBERON:0003217 ! neural lobe of neurohypophysis - -[Term] -id: EHDAA:4041 ! -property_value: IAO:0000589 "metanephric mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003220 ! metanephric mesenchyme - -[Term] -id: EHDAA:5021 ! -property_value: IAO:0000589 "metanephric mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003220 ! metanephric mesenchyme - -[Term] -id: EHDAA:5915 ! -property_value: IAO:0000589 "metanephric mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003220 ! metanephric mesenchyme - -[Term] -id: EHDAA:156 ! -property_value: IAO:0000589 "chorion syncytiotrophoblast (EHDAA)" xsd:string -is_a: UBERON:0003224 ! chorion syncytiotrophoblast - -[Term] -id: EHDAA:4168 ! -property_value: IAO:0000589 "epithelium of elbow (EHDAA)" xsd:string -is_a: UBERON:0003229 ! epithelium of elbow - -[Term] -id: EHDAA:6214 ! -property_value: IAO:0000589 "epithelium of elbow (EHDAA)" xsd:string -is_a: UBERON:0003229 ! epithelium of elbow - -[Term] -id: EHDAA:5198 ! -property_value: IAO:0000589 "epithelium of carpal region (EHDAA)" xsd:string -is_a: UBERON:0003230 ! epithelium of carpal region - -[Term] -id: EHDAA:5155 ! -property_value: IAO:0000589 "epithelium of hip (EHDAA)" xsd:string -is_a: UBERON:0003231 ! epithelium of hip - -[Term] -id: EHDAA:6180 ! -property_value: IAO:0000589 "epithelium of hip (EHDAA)" xsd:string -is_a: UBERON:0003231 ! epithelium of hip - -[Term] -id: EHDAA:5161 ! -property_value: IAO:0000589 "epithelium of knee (EHDAA)" xsd:string -is_a: UBERON:0003232 ! epithelium of knee - -[Term] -id: EHDAA:6186 ! -property_value: IAO:0000589 "epithelium of knee (EHDAA)" xsd:string -is_a: UBERON:0003232 ! epithelium of knee - -[Term] -id: EHDAA:4182 ! -property_value: IAO:0000589 "epithelium of shoulder (EHDAA)" xsd:string -is_a: UBERON:0003233 ! epithelium of shoulder - -[Term] -id: EHDAA:6230 ! -property_value: IAO:0000589 "epithelium of shoulder (EHDAA)" xsd:string -is_a: UBERON:0003233 ! epithelium of shoulder - -[Term] -id: EHDAA:8027 ! -property_value: IAO:0000589 "epithelium of upper jaw (EHDAA)" xsd:string -is_a: UBERON:0003235 ! epithelium of upper jaw - -[Term] -id: EHDAA:7999 ! -property_value: IAO:0000589 "epithelium of lower jaw (EHDAA)" xsd:string -is_a: UBERON:0003236 ! epithelium of lower jaw - -[Term] -id: EHDAA:7806 ! -property_value: IAO:0000589 "epithelium of superior semicircular canal (EHDAA)" xsd:string -is_a: UBERON:0003238 ! epithelium of superior semicircular canal - -[Term] -id: EHDAA:7800 ! -property_value: IAO:0000589 "epithelium of posterior semicircular canal (EHDAA)" xsd:string -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal - -[Term] -id: EHDAA:7794 ! -property_value: IAO:0000589 "epithelium of lateral semicircular canal (EHDAA)" xsd:string -is_a: UBERON:0003240 ! epithelium of lateral semicircular canal - -[Term] -id: EHDAA:4730 ! -property_value: IAO:0000589 "epithelium of utricle (EHDAA)" xsd:string -is_a: UBERON:0003241 ! epithelium of utricle - -[Term] -id: EHDAA:4724 ! -property_value: IAO:0000589 "epithelium of saccule (EHDAA)" xsd:string -is_a: UBERON:0003242 ! epithelium of saccule - -[Term] -id: EHDAA:4722 ! -property_value: IAO:0000589 "epithelium of cochlear duct (EHDAA)" xsd:string -is_a: UBERON:0003243 ! epithelium of cochlear duct - -[Term] -id: EHDAA:6526 ! -property_value: IAO:0000589 "epithelium of mammary gland (EHDAA)" xsd:string -is_a: UBERON:0003244 ! epithelium of mammary gland - -[Term] -id: EHDAA:7765 ! -property_value: IAO:0000589 "epithelium of endolymphatic sac (EHDAA)" xsd:string -is_a: UBERON:0003246 ! epithelium of endolymphatic sac - -[Term] -id: EHDAA:4174 ! -property_value: IAO:0000589 "epithelium of forearm (EHDAA)" xsd:string -is_a: UBERON:0003247 ! epithelium of forearm - -[Term] -id: EHDAA:6220 ! -property_value: IAO:0000589 "epithelium of forearm (EHDAA)" xsd:string -is_a: UBERON:0003247 ! epithelium of forearm - -[Term] -id: EHDAA:5145 ! -property_value: IAO:0000589 "epithelium of footplate (EHDAA)" xsd:string -is_a: UBERON:0003248 ! epithelium of footplate - -[Term] -id: EHDAA:6144 ! -property_value: IAO:0000589 "epithelium of footplate (EHDAA)" xsd:string -is_a: UBERON:0003248 ! epithelium of footplate - -[Term] -id: EHDAA:510 ! -property_value: IAO:0000589 "epithelium of otic placode (EHDAA)" xsd:string -is_a: UBERON:0003249 ! epithelium of otic placode - -[Term] -id: EHDAA:138 ! -property_value: IAO:0000589 "amniotic ectoderm (EHDAA)" xsd:string -is_a: UBERON:0003254 ! amniotic ectoderm - -[Term] -id: EHDAA:166 ! -property_value: IAO:0000589 "yolk sac endoderm (EHDAA)" xsd:string -is_a: UBERON:0003257 ! yolk sac endoderm - -[Term] -id: EHDAA:524 ! -property_value: IAO:0000589 "endoderm of foregut (EHDAA)" xsd:string -is_a: UBERON:0003258 ! endoderm of foregut - -[Term] -id: EHDAA:987 ! -property_value: IAO:0000589 "endoderm of midgut (EHDAA)" xsd:string -is_a: UBERON:0003259 ! endoderm of midgut - -[Term] -id: EHDAA:979 ! -property_value: IAO:0000589 "endoderm of hindgut (EHDAA)" xsd:string -is_a: UBERON:0003260 ! endoderm of hindgut - -[Term] -id: EHDAA:956 ! -property_value: IAO:0000589 "thyroid primordium endoderm (EHDAA)" xsd:string -is_a: UBERON:0003261 ! thyroid primordium endoderm - -[Term] -id: EHDAA:140 ! -property_value: IAO:0000589 "amniotic mesoderm (EHDAA)" xsd:string -is_a: UBERON:0003262 ! amniotic mesoderm - -[Term] -id: EHDAA:154 ! -property_value: IAO:0000589 "chorionic mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003265 ! chorionic mesenchyme - -[Term] -id: EHDAA:8045 ! -property_value: IAO:0000589 "tooth of upper jaw (EHDAA)" xsd:string -is_a: UBERON:0003267 ! tooth of upper jaw - -[Term] -id: EHDAA:8009 ! -property_value: IAO:0000589 "tooth of lower jaw (EHDAA)" xsd:string -is_a: UBERON:0003268 ! tooth of lower jaw - -[Term] -id: EHDAA:2923 ! -property_value: IAO:0000589 "skeletal muscle tissue of eye (EHDAA)" xsd:string -is_a: UBERON:0003269 ! skeletal muscle tissue of eye - -[Term] -id: EHDAA:2339 ! -property_value: IAO:0000589 "mesothelium of omental bursa (EHDAA)" xsd:string -is_a: UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EHDAA:8041 ! -property_value: IAO:0000589 "skeleton of upper jaw (EHDAA)" xsd:string -is_a: UBERON:0003277 ! skeleton of upper jaw - -[Term] -id: EHDAA:8005 ! -property_value: IAO:0000589 "skeleton of lower jaw (EHDAA)" xsd:string -is_a: UBERON:0003278 ! skeleton of lower jaw - -[Term] -id: EHDAA:3082 ! -property_value: IAO:0000589 "endothelium of trachea (EHDAA)" xsd:string -is_a: UBERON:0003279 ! endothelium of trachea - -[Term] -id: EHDAA:3076 ! -property_value: IAO:0000589 "endothelium of main bronchus (EHDAA)" xsd:string -is_a: UBERON:0003280 ! endothelium of main bronchus - -[Term] -id: EHDAA:2999 ! -property_value: IAO:0000589 "mesentery of stomach (EHDAA)" xsd:string -is_a: UBERON:0003281 ! mesentery of stomach - -[Term] -id: EHDAA:432 ! -property_value: IAO:0000589 "mesentery of heart (EHDAA)" xsd:string -is_a: UBERON:0003282 ! mesentery of heart - -[Term] -id: EHDAA:2943 ! -property_value: IAO:0000589 "mesentery of oesophagus (EHDAA)" xsd:string -is_a: UBERON:0003283 ! mesentery of oesophagus - -[Term] -id: EHDAA:3031 ! -property_value: IAO:0000589 "mesentery of midgut (EHDAA)" xsd:string -is_a: UBERON:0003284 ! mesentery of midgut - -[Term] -id: EHDAA:3830 ! -property_value: IAO:0000589 "foregut region of duodenum (EHDAA)" xsd:string -is_a: UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EHDAA:3937 ! -property_value: IAO:0000589 "midgut region of duodenum (EHDAA)" xsd:string -is_a: UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EHDAA:3708 ! -property_value: IAO:0000589 "meninx of midbrain (EHDAA)" xsd:string -is_a: UBERON:0003288 ! meninx of midbrain - -[Term] -id: EHDAA:5476 ! -property_value: IAO:0000589 "meninx of telencephalon (EHDAA)" xsd:string -is_a: UBERON:0003289 ! meninx of telencephalon - -[Term] -id: EHDAA:5458 ! -property_value: IAO:0000589 "meninx of diencephalon (EHDAA)" xsd:string -is_a: UBERON:0003290 ! meninx of diencephalon - -[Term] -id: EHDAA:3688 ! -property_value: IAO:0000589 "meninx of hindbrain (EHDAA)" xsd:string -is_a: UBERON:0003291 ! meninx of hindbrain - -[Term] -id: EHDAA:2865 ! -property_value: IAO:0000589 "meninx of spinal cord (EHDAA)" xsd:string -is_a: UBERON:0003292 ! meninx of spinal cord - -[Term] -id: EHDAA:950 ! -property_value: IAO:0000589 "gland of foregut (EHDAA)" xsd:string -is_a: UBERON:0003294 ! gland of foregut - -[Term] -id: EHDAA:2967 ! -property_value: IAO:0000589 "pharyngeal gland (EHDAA)" xsd:string -is_a: UBERON:0003295 ! pharyngeal gland - -[Term] -id: EHDAA:4475 ! -property_value: IAO:0000589 "gland of diencephalon (EHDAA)" xsd:string -is_a: UBERON:0003296 ! gland of diencephalon - -[Term] -id: EHDAA:6522 ! -property_value: IAO:0000589 "gland of integumental system (EHDAA)" xsd:string -is_a: UBERON:0003297 ! gland of integumental system - -[Term] -id: EHDAA:3712 ! -property_value: IAO:0000589 "roof plate of midbrain (EHDAA)" xsd:string -is_a: UBERON:0003299 ! roof plate of midbrain - -[Term] -id: EHDAA:3512 ! -property_value: IAO:0000589 "roof plate of telencephalon (EHDAA)" xsd:string -is_a: UBERON:0003300 ! roof plate of telencephalon - -[Term] -id: EHDAA:1979 ! -property_value: IAO:0000589 "roof plate of diencephalon (EHDAA)" xsd:string -is_a: UBERON:0003301 ! roof plate of diencephalon - -[Term] -id: EHDAA:2657 ! -property_value: IAO:0000589 "roof plate of diencephalon (EHDAA)" xsd:string -is_a: UBERON:0003301 ! roof plate of diencephalon - -[Term] -id: EHDAA:3494 ! -property_value: IAO:0000589 "roof plate of diencephalon (EHDAA)" xsd:string -is_a: UBERON:0003301 ! roof plate of diencephalon - -[Term] -id: EHDAA:5524 ! -property_value: IAO:0000589 "roof plate of metencephalon (EHDAA)" xsd:string -is_a: UBERON:0003302 ! roof plate of metencephalon - -[Term] -id: EHDAA:7614 ! -property_value: IAO:0000589 "roof plate of medulla oblongata (EHDAA)" xsd:string -is_a: UBERON:0003303 ! roof plate of medulla oblongata - -[Term] -id: EHDAA:170 ! -property_value: IAO:0000589 "mesoderm blood island (EHDAA)" xsd:string -is_a: UBERON:0003304 ! mesoderm blood island - -[Term] -id: EHDAA:2871 ! -property_value: IAO:0000589 "floor plate of neural tube (EHDAA)" xsd:string -is_a: UBERON:0003306 ! floor plate of neural tube - -[Term] -id: EHDAA:910 ! -property_value: IAO:0000589 "floor plate of neural tube (EHDAA)" xsd:string -is_a: UBERON:0003306 ! floor plate of neural tube - -[Term] -id: EHDAA:3698 ! -property_value: IAO:0000589 "floor plate of midbrain (EHDAA)" xsd:string -is_a: UBERON:0003307 ! floor plate of midbrain - -[Term] -id: EHDAA:3498 ! -property_value: IAO:0000589 "floor plate of telencephalon (EHDAA)" xsd:string -is_a: UBERON:0003308 ! floor plate of telencephalon - -[Term] -id: EHDAA:1975 ! -property_value: IAO:0000589 "floor plate of diencephalon (EHDAA)" xsd:string -is_a: UBERON:0003309 ! floor plate of diencephalon - -[Term] -id: EHDAA:2651 ! -property_value: IAO:0000589 "floor plate of diencephalon (EHDAA)" xsd:string -is_a: UBERON:0003309 ! floor plate of diencephalon - -[Term] -id: EHDAA:3480 ! -property_value: IAO:0000589 "floor plate of diencephalon (EHDAA)" xsd:string -is_a: UBERON:0003309 ! floor plate of diencephalon - -[Term] -id: EHDAA:5500 ! -property_value: IAO:0000589 "floor plate of metencephalon (EHDAA)" xsd:string -is_a: UBERON:0003310 ! floor plate of metencephalon - -[Term] -id: EHDAA:7590 ! -property_value: IAO:0000589 "floor plate of medulla oblongata (EHDAA)" xsd:string -is_a: UBERON:0003311 ! floor plate of medulla oblongata - -[Term] -id: EHDAA:8150 ! -property_value: IAO:0000589 "mesenchyme of testis (EHDAA)" xsd:string -is_a: UBERON:0003312 ! mesenchyme of testis - -[Term] -id: EHDAA:2910 ! -property_value: IAO:0000589 "eye mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003314 ! eye mesenchyme - -[Term] -id: EHDAA:8128 ! -property_value: IAO:0000589 "mesenchyme of ovary (EHDAA)" xsd:string -is_a: UBERON:0003315 ! mesenchyme of ovary - -[Term] -id: EHDAA:168 ! -property_value: IAO:0000589 "mesenchyme of yolk sac (EHDAA)" xsd:string -is_a: UBERON:0003316 ! mesenchyme of yolk sac - -[Term] -id: EHDAA:205 ! -property_value: IAO:0000589 "mesenchyme of yolk sac (EHDAA)" xsd:string -is_a: UBERON:0003316 ! mesenchyme of yolk sac - -[Term] -id: EHDAA:4170 ! -property_value: IAO:0000589 "mesenchyme of elbow (EHDAA)" xsd:string -is_a: UBERON:0003318 ! mesenchyme of elbow - -[Term] -id: EHDAA:6216 ! -property_value: IAO:0000589 "mesenchyme of elbow (EHDAA)" xsd:string -is_a: UBERON:0003318 ! mesenchyme of elbow - -[Term] -id: EHDAA:5200 ! -property_value: IAO:0000589 "mesenchyme of carpal region (EHDAA)" xsd:string -is_a: UBERON:0003319 ! mesenchyme of carpal region - -[Term] -id: EHDAA:5157 ! -property_value: IAO:0000589 "mesenchyme of hip (EHDAA)" xsd:string -is_a: UBERON:0003320 ! mesenchyme of hip - -[Term] -id: EHDAA:6182 ! -property_value: IAO:0000589 "mesenchyme of hip (EHDAA)" xsd:string -is_a: UBERON:0003320 ! mesenchyme of hip - -[Term] -id: EHDAA:5163 ! -property_value: IAO:0000589 "mesenchyme of knee (EHDAA)" xsd:string -is_a: UBERON:0003321 ! mesenchyme of knee - -[Term] -id: EHDAA:6188 ! -property_value: IAO:0000589 "mesenchyme of knee (EHDAA)" xsd:string -is_a: UBERON:0003321 ! mesenchyme of knee - -[Term] -id: EHDAA:4184 ! -property_value: IAO:0000589 "mesenchyme of shoulder (EHDAA)" xsd:string -is_a: UBERON:0003322 ! mesenchyme of shoulder - -[Term] -id: EHDAA:6232 ! -property_value: IAO:0000589 "mesenchyme of shoulder (EHDAA)" xsd:string -is_a: UBERON:0003322 ! mesenchyme of shoulder - -[Term] -id: EHDAA:8031 ! -property_value: IAO:0000589 "mesenchyme of upper jaw (EHDAA)" xsd:string -is_a: UBERON:0003323 ! mesenchyme of upper jaw - -[Term] -id: EHDAA:8003 ! -property_value: IAO:0000589 "mesenchyme of lower jaw (EHDAA)" xsd:string -is_a: UBERON:0003324 ! mesenchyme of lower jaw - -[Term] -id: EHDAA:8981 ! -property_value: IAO:0000589 "mesenchyme of pinna (EHDAA)" xsd:string -is_a: UBERON:0003325 ! mesenchyme of pinna - -[Term] -id: EHDAA:6528 ! -property_value: IAO:0000589 "mesenchyme of mammary gland (EHDAA)" xsd:string -is_a: UBERON:0003326 ! mesenchyme of mammary gland - -[Term] -id: EHDAA:4176 ! -property_value: IAO:0000589 "mesenchyme of forearm (EHDAA)" xsd:string -is_a: UBERON:0003327 ! mesenchyme of forearm - -[Term] -id: EHDAA:6222 ! -property_value: IAO:0000589 "mesenchyme of forearm (EHDAA)" xsd:string -is_a: UBERON:0003327 ! mesenchyme of forearm - -[Term] -id: EHDAA:5149 ! -property_value: IAO:0000589 "mesenchyme of footplate (EHDAA)" xsd:string -is_a: UBERON:0003328 ! mesenchyme of footplate - -[Term] -id: EHDAA:6172 ! -property_value: IAO:0000589 "mesenchyme of footplate (EHDAA)" xsd:string -is_a: UBERON:0003328 ! mesenchyme of footplate - -[Term] -id: EHDAA:1703 ! -property_value: IAO:0000589 "pectoral appendage bud mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003413 ! pectoral appendage bud mesenchyme - -[Term] -id: EHDAA:5290 ! -property_value: IAO:0000589 "cerebellar artery (EHDAA)" xsd:string -is_a: UBERON:0003472 ! cerebellar artery - -[Term] -id: EHDAA:4659 ! -property_value: IAO:0000589 "vagus X nerve trunk (EHDAA)" xsd:string -is_a: UBERON:0003535 ! vagus X nerve trunk - -[Term] -id: EHDAA:8053 ! -property_value: IAO:0000589 "upper jaw molar (EHDAA)" xsd:string -is_a: UBERON:0003666 ! upper jaw molar - -[Term] -id: EHDAA:8017 ! -property_value: IAO:0000589 "lower jaw molar (EHDAA)" xsd:string -is_a: UBERON:0003667 ! lower jaw molar - -[Term] -id: EHDAA:9758 ! -property_value: IAO:0000589 "circle of Willis (EHDAA)" xsd:string -is_a: UBERON:0003709 ! circle of Willis - -[Term] -id: EHDAA:9868 ! -property_value: IAO:0000589 "brachiocephalic vein (EHDAA)" xsd:string -is_a: UBERON:0003711 ! brachiocephalic vein - -[Term] -id: EHDAA:3749 ! -property_value: IAO:0000589 "vestibular nerve (EHDAA)" xsd:string -is_a: UBERON:0003723 ! vestibular nerve - -[Term] -id: EHDAA:4186 ! -property_value: IAO:0000589 "forelimb stylopod (EHDAA)" xsd:string -is_a: UBERON:0003822 ! forelimb stylopod - -[Term] -id: EHDAA:6234 ! -property_value: IAO:0000589 "forelimb stylopod (EHDAA)" xsd:string -is_a: UBERON:0003822 ! forelimb stylopod - -[Term] -id: EHDAA:5165 ! -property_value: IAO:0000589 "hindlimb zeugopod (EHDAA)" xsd:string -is_a: UBERON:0003823 ! hindlimb zeugopod - -[Term] -id: EHDAA:6190 ! -property_value: IAO:0000589 "hindlimb zeugopod (EHDAA)" xsd:string -is_a: UBERON:0003823 ! hindlimb zeugopod - -[Term] -id: EHDAA:2889 ! -property_value: IAO:0000589 "neural tube lumen (EHDAA)" xsd:string -is_a: UBERON:0003842 ! neural tube lumen - -[Term] -id: EHDAA:914 ! -property_value: IAO:0000589 "neural tube lumen (EHDAA)" xsd:string -is_a: UBERON:0003842 ! neural tube lumen - -[Term] -id: EHDAA:7372 ! -property_value: IAO:0000589 "thyroid artery (EHDAA)" xsd:string -is_a: UBERON:0003847 ! thyroid artery - -[Term] -id: EHDAA:8703 ! -property_value: IAO:0000589 "gonadal vein (EHDAA)" xsd:string -is_a: UBERON:0003848 ! gonadal vein - -[Term] -id: EHDAA:360 ! -property_value: IAO:0000589 "mesencephalic neural crest (EHDAA)" xsd:string -is_a: UBERON:0003849 ! mesencephalic neural crest - -[Term] -id: EHDAA:362 ! -property_value: IAO:0000589 "rhombencephalon neural crest (EHDAA)" xsd:string -is_a: UBERON:0003852 ! rhombencephalon neural crest - -[Term] -id: EHDAA:696 ! -property_value: IAO:0000589 "spinal cord neural crest (EHDAA)" xsd:string -is_a: UBERON:0003853 ! spinal cord neural crest - -[Term] -id: EHDAA:5012 ! -property_value: IAO:0000589 "gonad mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003855 ! gonad mesenchyme - -[Term] -id: EHDAA:9051 ! -property_value: IAO:0000589 "upper eyelid mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003857 ! upper eyelid mesenchyme - -[Term] -id: EHDAA:9045 ! -property_value: IAO:0000589 "lower eyelid mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0003858 ! lower eyelid mesenchyme - -[Term] -id: EHDAA:251 ! -property_value: IAO:0000589 "intraembryonic coelom (EHDAA)" xsd:string -is_a: UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EHDAA:146 ! -property_value: IAO:0000589 "extraembryonic coelomic cavity (EHDAA)" xsd:string -is_a: UBERON:0003888 ! extraembryonic coelomic cavity - -[Term] -id: EHDAA:4739 ! -property_value: IAO:0000589 "capsule (EHDAA)" xsd:string -is_a: UBERON:0003893 ! capsule - -[Term] -id: EHDAA:9061 ! -property_value: IAO:0000589 "capsule (EHDAA)" xsd:string -is_a: UBERON:0003893 ! capsule - -[Term] -id: EHDAA:973 ! -property_value: IAO:0000589 "liver primordium (EHDAA)" xsd:string -is_a: UBERON:0003894 ! liver primordium - -[Term] -id: EHDAA:5982 ! -property_value: IAO:0000589 "axial muscle (EHDAA)" xsd:string -is_a: UBERON:0003897 ! axial muscle - -[Term] -id: EHDAA:4763 ! -property_value: IAO:0000589 "retinal neural layer (EHDAA)" xsd:string -is_a: UBERON:0003902 ! retinal neural layer - -[Term] -id: EHDAA:1271 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:1279 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:1922 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:1930 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:426 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:442 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:450 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:458 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:466 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:474 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:772 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:780 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:788 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:800 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:808 ! -property_value: IAO:0000589 "cardiac jelly (EHDAA)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: EHDAA:5336 ! -property_value: IAO:0000589 "left atrioventricular canal (EHDAA)" xsd:string -is_a: UBERON:0003907 ! left atrioventricular canal - -[Term] -id: EHDAA:5338 ! -property_value: IAO:0000589 "right atrioventricular canal (EHDAA)" xsd:string -is_a: UBERON:0003908 ! right atrioventricular canal - -[Term] -id: EHDAA:2163 ! -property_value: IAO:0000589 "pancreas primordium (EHDAA)" xsd:string -is_a: UBERON:0003921 ! pancreas primordium - -[Term] -id: EHDAA:6706 ! -property_value: IAO:0000589 "otic ganglion (EHDAA)" xsd:string -is_a: UBERON:0003963 ! otic ganglion - -[Term] -id: EHDAA:1892 ! -property_value: IAO:0000589 "valve (EHDAA)" xsd:string -is_a: UBERON:0003978 ! valve - -[Term] -id: EHDAA:4406 ! -property_value: IAO:0000589 "valve (EHDAA)" xsd:string -is_a: UBERON:0003978 ! valve - -[Term] -id: EHDAA:1719 ! -property_value: IAO:0000589 "dermatome (EHDAA)" xsd:string -is_a: UBERON:0004016 ! dermatome - -[Term] -id: EHDAA:1725 ! -property_value: IAO:0000589 "dermatome (EHDAA)" xsd:string -is_a: UBERON:0004016 ! dermatome - -[Term] -id: EHDAA:1731 ! -property_value: IAO:0000589 "dermatome (EHDAA)" xsd:string -is_a: UBERON:0004016 ! dermatome - -[Term] -id: EHDAA:1737 ! -property_value: IAO:0000589 "dermatome (EHDAA)" xsd:string -is_a: UBERON:0004016 ! dermatome - -[Term] -id: EHDAA:551 ! -property_value: IAO:0000589 "primitive pit (EHDAA)" xsd:string -is_a: UBERON:0004055 ! primitive pit - -[Term] -id: EHDAA:547 ! -property_value: IAO:0000589 "primitive groove (EHDAA)" xsd:string -is_a: UBERON:0004056 ! primitive groove - -[Term] -id: EHDAA:4778 ! -property_value: IAO:0000589 "frontonasal prominence (EHDAA)" xsd:string -is_a: UBERON:0004066 ! frontonasal prominence - -[Term] -id: EHDAA:4786 ! -property_value: IAO:0000589 "lateral nasal prominence (EHDAA)" xsd:string -is_a: UBERON:0004067 ! lateral nasal prominence - -[Term] -id: EHDAA:4792 ! -property_value: IAO:0000589 "medial nasal prominence (EHDAA)" xsd:string -is_a: UBERON:0004068 ! medial nasal prominence - -[Term] -id: EHDAA:1086 ! -property_value: IAO:0000589 "pharyngeal pouch (EHDAA)" xsd:string -is_a: UBERON:0004117 ! pharyngeal pouch - -[Term] -id: EHDAA:1669 ! -property_value: IAO:0000589 "pharyngeal pouch (EHDAA)" xsd:string -is_a: UBERON:0004117 ! pharyngeal pouch - -[Term] -id: EHDAA:579 ! -property_value: IAO:0000589 "pharyngeal pouch (EHDAA)" xsd:string -is_a: UBERON:0004117 ! pharyngeal pouch - -[Term] -id: EHDAA:617 ! -property_value: IAO:0000589 "pharyngeal pouch (EHDAA)" xsd:string -is_a: UBERON:0004117 ! pharyngeal pouch - -[Term] -id: EHDAA:1013 ! -property_value: IAO:0000589 "genitourinary system (EHDAA)" xsd:string -is_a: UBERON:0004122 ! genitourinary system - -[Term] -id: EHDAA:464 ! -property_value: IAO:0000589 "outflow tract (EHDAA)" xsd:string -is_a: UBERON:0004145 ! outflow tract - -[Term] -id: EHDAA:798 ! -property_value: IAO:0000589 "outflow tract (EHDAA)" xsd:string -is_a: UBERON:0004145 ! outflow tract - -[Term] -id: EHDAA:1900 ! -property_value: IAO:0000589 "atrial septum primum (EHDAA)" xsd:string -is_a: UBERON:0004154 ! atrial septum primum - -[Term] -id: EHDAA:3406 ! -property_value: IAO:0000589 "atrial septum secundum (EHDAA)" xsd:string -is_a: UBERON:0004155 ! atrial septum secundum - -[Term] -id: EHDAA:736 ! -property_value: IAO:0000589 "septum transversum (EHDAA)" xsd:string -is_a: UBERON:0004161 ! septum transversum - -[Term] -id: EHDAA:5047 ! -property_value: IAO:0000589 "skeleton (EHDAA)" xsd:string -is_a: UBERON:0004288 ! skeleton - -[Term] -id: EHDAA:9538 ! -property_value: IAO:0000589 "vault of skull (EHDAA)" xsd:string -is_a: UBERON:0004339 ! vault of skull - -[Term] -id: EHDAA:185 ! -property_value: IAO:0000589 "primitive streak (EHDAA)" xsd:string -is_a: UBERON:0004341 ! primitive streak - -[Term] -id: EHDAA:1310 ! -property_value: IAO:0000589 "cardinal vein (EHDAA)" xsd:string -is_a: UBERON:0004344 ! cardinal vein - -[Term] -id: EHDAA:56 ! -property_value: IAO:0000589 "trophectoderm (EHDAA)" xsd:string -is_a: UBERON:0004345 ! trophectoderm - -[Term] -id: EHDAA:938 ! -property_value: IAO:0000589 "optic eminence (EHDAA)" xsd:string -is_a: UBERON:0004348 ! optic eminence - -[Term] -id: EHDAA:573 ! -property_value: IAO:0000589 "pharyngeal arch 1 (EHDAA)" xsd:string -is_a: UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EHDAA:398 ! -property_value: IAO:0000589 "pharyngeal arch artery (EHDAA)" xsd:string -is_a: UBERON:0004363 ! pharyngeal arch artery - -[Term] -id: EHDAA:7327 ! -property_value: IAO:0000589 "pharyngeal arch artery (EHDAA)" xsd:string -is_a: UBERON:0004363 ! pharyngeal arch artery - -[Term] -id: EHDAA:5294 ! -property_value: IAO:0000589 "cerebral artery (EHDAA)" xsd:string -is_a: UBERON:0004449 ! cerebral artery - -[Term] -id: EHDAA:5196 ! -property_value: IAO:0000589 "carpal region (EHDAA)" xsd:string -is_a: UBERON:0004452 ! carpal region - -[Term] -id: EHDAA:394 ! -property_value: IAO:0000589 "cardiovascular system (EHDAA)" xsd:string -is_a: UBERON:0004535 ! cardiovascular system - -[Term] -id: EHDAA:396 ! -property_value: IAO:0000589 "arterial system (EHDAA)" xsd:string -is_a: UBERON:0004572 ! arterial system - -[Term] -id: EHDAA:486 ! -property_value: IAO:0000589 "venous system (EHDAA)" xsd:string -is_a: UBERON:0004582 ! venous system - -[Term] -id: EHDAA:2607 ! -property_value: IAO:0000589 "interventricular septum muscular part (EHDAA)" xsd:string -is_a: UBERON:0004667 ! interventricular septum muscular part - -[Term] -id: EHDAA:9160 ! -property_value: IAO:0000589 "gastro-splenic ligament (EHDAA)" xsd:string -is_a: UBERON:0004686 ! gastro-splenic ligament - -[Term] -id: EHDAA:438 ! -property_value: IAO:0000589 "bulbus cordis (EHDAA)" xsd:string -is_a: UBERON:0004706 ! bulbus cordis - -[Term] -id: EHDAA:768 ! -property_value: IAO:0000589 "bulbus cordis (EHDAA)" xsd:string -is_a: UBERON:0004706 ! bulbus cordis - -[Term] -id: EHDAA:6031 ! -property_value: IAO:0000589 "cartilaginous neurocranium (EHDAA)" xsd:string -is_a: UBERON:0004761 ! cartilaginous neurocranium - -[Term] -id: EHDAA:7842 ! -property_value: IAO:0000589 "posterior nasal aperture (EHDAA)" xsd:string -is_a: UBERON:0004771 ! posterior nasal aperture - -[Term] -id: EHDAA:8148 ! -property_value: IAO:0000589 "seminiferous tubule epithelium (EHDAA)" xsd:string -is_a: UBERON:0004813 ! seminiferous tubule epithelium - -[Term] -id: EHDAA:3051 ! -property_value: IAO:0000589 "extrahepatic bile duct epithelium (EHDAA)" xsd:string -is_a: UBERON:0004822 ! extrahepatic bile duct epithelium - -[Term] -id: EHDAA:3053 ! -property_value: IAO:0000589 "intrahepatic bile duct epithelium (EHDAA)" xsd:string -is_a: UBERON:0004823 ! intrahepatic bile duct epithelium - -[Term] -id: EHDAA:383 ! -property_value: IAO:0000589 "splanchnopleure (EHDAA)" xsd:string -is_a: UBERON:0004873 ! splanchnopleure - -[Term] -id: EHDAA:381 ! -property_value: IAO:0000589 "somatopleure (EHDAA)" xsd:string -is_a: UBERON:0004874 ! somatopleure - -[Term] -id: EHDAA:4965 ! -property_value: IAO:0000589 "left lung hilus (EHDAA)" xsd:string -is_a: UBERON:0004887 ! left lung hilus - -[Term] -id: EHDAA:4995 ! -property_value: IAO:0000589 "right lung hilus (EHDAA)" xsd:string -is_a: UBERON:0004888 ! right lung hilus - -[Term] -id: EHDAA:4971 ! -property_value: IAO:0000589 "right lung accessory lobe (EHDAA)" xsd:string -is_a: UBERON:0004890 ! right lung accessory lobe - -[Term] -id: EHDAA:4032 ! -property_value: IAO:0000589 "epithelium of gonad (EHDAA)" xsd:string -is_a: UBERON:0004909 ! epithelium of gonad - -[Term] -id: EHDAA:5931 ! -property_value: IAO:0000589 "epithelium of gonad (EHDAA)" xsd:string -is_a: UBERON:0004909 ! epithelium of gonad - -[Term] -id: EHDAA:900 ! -property_value: IAO:0000589 "posterior neuropore (EHDAA)" xsd:string -is_a: UBERON:0005071 ! posterior neuropore - -[Term] -id: EHDAA:1983 ! -property_value: IAO:0000589 "lamina terminalis of neural tube (EHDAA)" xsd:string -is_a: UBERON:0005078 ! lamina terminalis of neural tube - -[Term] -id: EHDAA:2661 ! -property_value: IAO:0000589 "lamina terminalis of neural tube (EHDAA)" xsd:string -is_a: UBERON:0005078 ! lamina terminalis of neural tube - -[Term] -id: EHDAA:482 ! -property_value: IAO:0000589 "left horn of sinus venosus (EHDAA)" xsd:string -is_a: UBERON:0005091 ! left horn of sinus venosus - -[Term] -id: EHDAA:484 ! -property_value: IAO:0000589 "right horn of sinus venosus (EHDAA)" xsd:string -is_a: UBERON:0005092 ! right horn of sinus venosus - -[Term] -id: EHDAA:9346 ! -property_value: IAO:0000589 "metanephric renal vesicle (EHDAA)" xsd:string -is_a: UBERON:0005147 ! metanephric renal vesicle - -[Term] -id: EHDAA:3049 ! -property_value: IAO:0000589 "hepatic duct (EHDAA)" xsd:string -is_a: UBERON:0005171 ! hepatic duct - -[Term] -id: EHDAA:3778 ! -property_value: IAO:0000589 "segmental spinal nerve (EHDAA)" xsd:string -is_a: UBERON:0005197 ! segmental spinal nerve - -[Term] -id: EHDAA:6524 ! -property_value: IAO:0000589 "thoracic mammary gland (EHDAA)" xsd:string -is_a: UBERON:0005200 ! thoracic mammary gland - -[Term] -id: EHDAA:940 ! -property_value: IAO:0000589 "optic eminence ectoderm (EHDAA)" xsd:string -is_a: UBERON:0005234 ! optic eminence ectoderm - -[Term] -id: EHDAA:179 ! -property_value: IAO:0000589 "head mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005253 ! head mesenchyme - -[Term] -id: EHDAA:377 ! -property_value: IAO:0000589 "trunk mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EHDAA:5526 ! -property_value: IAO:0000589 "myelencephalon (EHDAA)" xsd:string -is_a: UBERON:0005290 ! myelencephalon - -[Term] -id: EHDAA:8130 ! -property_value: IAO:0000589 "ovary sex cord (EHDAA)" xsd:string -is_a: UBERON:0005296 ! ovary sex cord - -[Term] -id: EHDAA:8152 ! -property_value: IAO:0000589 "testis sex cord (EHDAA)" xsd:string -is_a: UBERON:0005297 ! testis sex cord - -[Term] -id: EHDAA:4401 ! -property_value: IAO:0000589 "outflow tract pulmonary component (EHDAA)" xsd:string -is_a: UBERON:0005339 ! outflow tract pulmonary component - -[Term] -id: EHDAA:2842 ! -property_value: IAO:0000589 "superior glossopharyngeal IX ganglion (EHDAA)" xsd:string -is_a: UBERON:0005361 ! superior glossopharyngeal IX ganglion - -[Term] -id: EHDAA:5480 ! -property_value: IAO:0000589 "olfactory lobe (EHDAA)" xsd:string -is_a: UBERON:0005366 ! olfactory lobe - -[Term] -id: EHDAA:6803 ! -property_value: IAO:0000589 "nasal cavity epithelium (EHDAA)" xsd:string -is_a: UBERON:0005384 ! nasal cavity epithelium - -[Term] -id: EHDAA:6807 ! -property_value: IAO:0000589 "nasal cavity respiratory epithelium (EHDAA)" xsd:string -is_a: UBERON:0005385 ! nasal cavity respiratory epithelium - -[Term] -id: EHDAA:6385 ! -property_value: IAO:0000589 "carotid artery segment (EHDAA)" xsd:string -is_a: UBERON:0005396 ! carotid artery segment - -[Term] -id: EHDAA:9280 ! -property_value: IAO:0000589 "philtrum (EHDAA)" xsd:string -is_a: UBERON:0005402 ! philtrum - -[Term] -id: EHDAA:10101 ! -property_value: IAO:0000589 "sublingual ganglion (EHDAA)" xsd:string -is_a: UBERON:0005407 ! sublingual ganglion - -[Term] -id: EHDAA:514 ! -property_value: IAO:0000589 "alimentary part of gastrointestinal system (EHDAA)" xsd:string -is_a: UBERON:0005409 ! alimentary part of gastrointestinal system - -[Term] -id: EHDAA:4704 ! -property_value: IAO:0000589 "cartilaginous otic capsule (EHDAA)" xsd:string -is_a: UBERON:0005410 ! cartilaginous otic capsule - -[Term] -id: EHDAA:4759 ! -property_value: IAO:0000589 "optic fissure (EHDAA)" xsd:string -is_a: UBERON:0005412 ! optic fissure - -[Term] -id: EHDAA:1699 ! -property_value: IAO:0000589 "forelimb bud (EHDAA)" xsd:string -is_a: UBERON:0005417 ! forelimb bud - -[Term] -id: EHDAA:2358 ! -property_value: IAO:0000589 "hindlimb bud (EHDAA)" xsd:string -is_a: UBERON:0005418 ! hindlimb bud - -[Term] -id: EHDAA:4737 ! -property_value: IAO:0000589 "lens vesicle (EHDAA)" xsd:string -is_a: UBERON:0005426 ! lens vesicle - -[Term] -id: EHDAA:669 ! -property_value: IAO:0000589 "vagal neural crest (EHDAA)" xsd:string -is_a: UBERON:0005428 ! vagal neural crest - -[Term] -id: EHDAA:3013 ! -property_value: IAO:0000589 "dorsal pancreatic duct (EHDAA)" xsd:string -is_a: UBERON:0005429 ! dorsal pancreatic duct - -[Term] -id: EHDAA:9188 ! -property_value: IAO:0000589 "dorsal pancreatic duct (EHDAA)" xsd:string -is_a: UBERON:0005429 ! dorsal pancreatic duct - -[Term] -id: EHDAA:6669 ! -property_value: IAO:0000589 "ansa cervicalis (EHDAA)" xsd:string -is_a: UBERON:0005430 ! ansa cervicalis - -[Term] -id: EHDAA:6382 ! -property_value: IAO:0000589 "anterior spinal artery (EHDAA)" xsd:string -is_a: UBERON:0005431 ! anterior spinal artery - -[Term] -id: EHDAA:9826 ! -property_value: IAO:0000589 "aortic sac (EHDAA)" xsd:string -is_a: UBERON:0005432 ! aortic sac - -[Term] -id: EHDAA:8679 ! -property_value: IAO:0000589 "upper part of cisterna chyli (EHDAA)" xsd:string -is_a: UBERON:0005435 ! upper part of cisterna chyli - -[Term] -id: EHDAA:8570 ! -property_value: IAO:0000589 "common hepatic artery (EHDAA)" xsd:string -is_a: UBERON:0005436 ! common hepatic artery - -[Term] -id: EHDAA:6684 ! -property_value: IAO:0000589 "conus medullaris (EHDAA)" xsd:string -is_a: UBERON:0005437 ! conus medullaris - -[Term] -id: EHDAA:9884 ! -property_value: IAO:0000589 "coronary sinus (EHDAA)" xsd:string -is_a: UBERON:0005438 ! coronary sinus - -[Term] -id: EHDAA:218 ! -property_value: IAO:0000589 "definitive endoderm (EHDAA)" xsd:string -is_a: UBERON:0005439 ! definitive endoderm - -[Term] -id: EHDAA:6462 ! -property_value: IAO:0000589 "ductus arteriosus (EHDAA)" xsd:string -is_a: UBERON:0005440 ! ductus arteriosus - -[Term] -id: EHDAA:8260 ! -property_value: IAO:0000589 "external intercostal muscle (EHDAA)" xsd:string -is_a: UBERON:0005441 ! external intercostal muscle - -[Term] -id: EHDAA:8248 ! -property_value: IAO:0000589 "abdominal external oblique muscle (EHDAA)" xsd:string -is_a: UBERON:0005442 ! abdominal external oblique muscle - -[Term] -id: EHDAA:6686 ! -property_value: IAO:0000589 "filum terminale (EHDAA)" xsd:string -is_a: UBERON:0005443 ! filum terminale - -[Term] -id: EHDAA:10629 ! -property_value: IAO:0000589 "foramen rotundum (EHDAA)" xsd:string -is_a: UBERON:0005446 ! foramen rotundum - -[Term] -id: EHDAA:6071 ! -property_value: IAO:0000589 "greater omentum (EHDAA)" xsd:string -is_a: UBERON:0005448 ! greater omentum - -[Term] -id: EHDAA:2327 ! -property_value: IAO:0000589 "greater sac (EHDAA)" xsd:string -is_a: UBERON:0005449 ! greater sac - -[Term] -id: EHDAA:8948 ! -property_value: IAO:0000589 "inferior mesenteric ganglion (EHDAA)" xsd:string -is_a: UBERON:0005453 ! inferior mesenteric ganglion - -[Term] -id: EHDAA:8250 ! -property_value: IAO:0000589 "abdominal internal oblique muscle (EHDAA)" xsd:string -is_a: UBERON:0005454 ! abdominal internal oblique muscle - -[Term] -id: EHDAA:1918 ! -property_value: IAO:0000589 "interventricular groove (EHDAA)" xsd:string -is_a: UBERON:0005455 ! interventricular groove - -[Term] -id: EHDAA:10631 ! -property_value: IAO:0000589 "jugular foramen (EHDAA)" xsd:string -is_a: UBERON:0005456 ! jugular foramen - -[Term] -id: EHDAA:8309 ! -property_value: IAO:0000589 "levator scapulae muscle (EHDAA)" xsd:string -is_a: UBERON:0005461 ! levator scapulae muscle - -[Term] -id: EHDAA:2556 ! -property_value: IAO:0000589 "median sacral artery (EHDAA)" xsd:string -is_a: UBERON:0005464 ! median sacral artery - -[Term] -id: EHDAA:5657 ! -property_value: IAO:0000589 "obturator nerve (EHDAA)" xsd:string -is_a: UBERON:0005465 ! obturator nerve - -[Term] -id: EHDAA:8270 ! -property_value: IAO:0000589 "platysma (EHDAA)" xsd:string -is_a: UBERON:0005467 ! platysma - -[Term] -id: EHDAA:9880 ! -property_value: IAO:0000589 "sigmoid sinus (EHDAA)" xsd:string -is_a: UBERON:0005475 ! sigmoid sinus - -[Term] -id: EHDAA:8950 ! -property_value: IAO:0000589 "superior mesenteric ganglion (EHDAA)" xsd:string -is_a: UBERON:0005479 ! superior mesenteric ganglion - -[Term] -id: EHDAA:10650 ! -property_value: IAO:0000589 "superior orbital fissure (EHDAA)" xsd:string -is_a: UBERON:0005480 ! superior orbital fissure - -[Term] -id: EHDAA:9882 ! -property_value: IAO:0000589 "tentorial sinus (EHDAA)" xsd:string -is_a: UBERON:0005481 ! tentorial sinus - -[Term] -id: EHDAA:8631 ! -property_value: IAO:0000589 "valve of inferior vena cava (EHDAA)" xsd:string -is_a: UBERON:0005485 ! valve of inferior vena cava - -[Term] -id: EHDAA:6491 ! -property_value: IAO:0000589 "venous dural sinus (EHDAA)" xsd:string -is_a: UBERON:0005486 ! venous dural sinus - -[Term] -id: EHDAA:660 ! -property_value: IAO:0000589 "glossopharyngeal neural crest (EHDAA)" xsd:string -is_a: UBERON:0005491 ! glossopharyngeal neural crest - -[Term] -id: EHDAA:4735 ! -property_value: IAO:0000589 "hyaloid vessel (EHDAA)" xsd:string -is_a: UBERON:0005492 ! hyaloid vessel - -[Term] -id: EHDAA:689 ! -property_value: IAO:0000589 "intermediate mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005494 ! intermediate mesenchyme - -[Term] -id: EHDAA:3700 ! -property_value: IAO:0000589 "midbrain lateral wall (EHDAA)" xsd:string -is_a: UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EHDAA:2873 ! -property_value: IAO:0000589 "neural tube lateral wall (EHDAA)" xsd:string -is_a: UBERON:0005496 ! neural tube lateral wall - -[Term] -id: EHDAA:912 ! -property_value: IAO:0000589 "neural tube lateral wall (EHDAA)" xsd:string -is_a: UBERON:0005496 ! neural tube lateral wall - -[Term] -id: EHDAA:257 ! -property_value: IAO:0000589 "non-neural ectoderm (EHDAA)" xsd:string -is_a: UBERON:0005497 ! non-neural ectoderm - -[Term] -id: EHDAA:424 ! -property_value: IAO:0000589 "primitive heart tube (EHDAA)" xsd:string -is_a: UBERON:0005498 ! primitive heart tube - -[Term] -id: EHDAA:436 ! -property_value: IAO:0000589 "primitive heart tube (EHDAA)" xsd:string -is_a: UBERON:0005498 ! primitive heart tube - -[Term] -id: EHDAA:3504 ! -property_value: IAO:0000589 "telencephalon lateral wall (EHDAA)" xsd:string -is_a: UBERON:0005561 ! telencephalon lateral wall - -[Term] -id: EHDAA:2969 ! -property_value: IAO:0000589 "thymus primordium (EHDAA)" xsd:string -is_a: UBERON:0005562 ! thymus primordium - -[Term] -id: EHDAA:667 ! -property_value: IAO:0000589 "trigeminal neural crest (EHDAA)" xsd:string -is_a: UBERON:0005563 ! trigeminal neural crest - -[Term] -id: EHDAA:5927 ! -property_value: IAO:0000589 "gonad primordium (EHDAA)" xsd:string -is_a: UBERON:0005564 ! gonad primordium - -[Term] -id: EHDAA:658 ! -property_value: IAO:0000589 "facio-acoustic neural crest (EHDAA)" xsd:string -is_a: UBERON:0005565 ! facio-acoustic neural crest - -[Term] -id: EHDAA:1977 ! -property_value: IAO:0000589 "diencephalon lateral wall (EHDAA)" xsd:string -is_a: UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EHDAA:1251 ! -property_value: IAO:0000589 "common dorsal aorta (EHDAA)" xsd:string -is_a: UBERON:0005599 ! common dorsal aorta - -[Term] -id: EHDAA:7783 ! -property_value: IAO:0000589 "crus commune (EHDAA)" xsd:string -is_a: UBERON:0005600 ! crus commune - -[Term] -id: EHDAA:434 ! -property_value: IAO:0000589 "dorsal mesocardium (EHDAA)" xsd:string -is_a: UBERON:0005601 ! dorsal mesocardium - -[Term] -id: EHDAA:3001 ! -property_value: IAO:0000589 "dorsal mesogastrium (EHDAA)" xsd:string -is_a: UBERON:0005602 ! dorsal mesogastrium - -[Term] -id: EHDAA:4733 ! -property_value: IAO:0000589 "hyaloid cavity (EHDAA)" xsd:string -is_a: UBERON:0005606 ! hyaloid cavity - -[Term] -id: EHDAA:5703 ! -property_value: IAO:0000589 "hyaloid vascular plexus (EHDAA)" xsd:string -is_a: UBERON:0005607 ! hyaloid vascular plexus - -[Term] -id: EHDAA:3342 ! -property_value: IAO:0000589 "hyoid artery (EHDAA)" xsd:string -is_a: UBERON:0005608 ! hyoid artery - -[Term] -id: EHDAA:2551 ! -property_value: IAO:0000589 "iliac artery (EHDAA)" xsd:string -is_a: UBERON:0005609 ! iliac artery - -[Term] -id: EHDAA:5307 ! -property_value: IAO:0000589 "intercostal artery (EHDAA)" xsd:string -is_a: UBERON:0005612 ! intercostal artery - -[Term] -id: EHDAA:404 ! -property_value: IAO:0000589 "left dorsal aorta (EHDAA)" xsd:string -is_a: UBERON:0005613 ! left dorsal aorta - -[Term] -id: EHDAA:9059 ! -property_value: IAO:0000589 "lens anterior epithelium (EHDAA)" xsd:string -is_a: UBERON:0005614 ! lens anterior epithelium - -[Term] -id: EHDAA:9063 ! -property_value: IAO:0000589 "lens equatorial epithelium (EHDAA)" xsd:string -is_a: UBERON:0005615 ! lens equatorial epithelium - -[Term] -id: EHDAA:4343 ! -property_value: IAO:0000589 "mesenteric artery (EHDAA)" xsd:string -is_a: UBERON:0005616 ! mesenteric artery - -[Term] -id: EHDAA:4442 ! -property_value: IAO:0000589 "mesenteric vein (EHDAA)" xsd:string -is_a: UBERON:0005617 ! mesenteric vein - -[Term] -id: EHDAA:9283 ! -property_value: IAO:0000589 "secondary palatal shelf (EHDAA)" xsd:string -is_a: UBERON:0005619 ! secondary palatal shelf - -[Term] -id: EHDAA:8315 ! -property_value: IAO:0000589 "rhomboid (EHDAA)" xsd:string -is_a: UBERON:0005621 ! rhomboid - -[Term] -id: EHDAA:406 ! -property_value: IAO:0000589 "right dorsal aorta (EHDAA)" xsd:string -is_a: UBERON:0005622 ! right dorsal aorta - -[Term] -id: EHDAA:4408 ! -property_value: IAO:0000589 "semi-lunar valve (EHDAA)" xsd:string -is_a: UBERON:0005623 ! semi-lunar valve - -[Term] -id: EHDAA:8596 ! -property_value: IAO:0000589 "suprarenal artery (EHDAA)" xsd:string -is_a: UBERON:0005624 ! suprarenal artery - -[Term] -id: EHDAA:3005 ! -property_value: IAO:0000589 "ventral mesogastrium (EHDAA)" xsd:string -is_a: UBERON:0005626 ! ventral mesogastrium - -[Term] -id: EHDAA:4991 ! -property_value: IAO:0000589 "right lung cranial lobe endothelium (EHDAA)" xsd:string -is_a: UBERON:0005674 ! right lung cranial lobe endothelium - -[Term] -id: EHDAA:4983 ! -property_value: IAO:0000589 "right lung caudal lobe endothelium (EHDAA)" xsd:string -is_a: UBERON:0005675 ! right lung caudal lobe endothelium - -[Term] -id: EHDAA:4975 ! -property_value: IAO:0000589 "right lung accessory lobe endothelium (EHDAA)" xsd:string -is_a: UBERON:0005676 ! right lung accessory lobe endothelium - -[Term] -id: EHDAA:9554 ! -property_value: IAO:0000589 "orbitosphenoid cartilage element (EHDAA)" xsd:string -is_a: UBERON:0005687 ! orbitosphenoid cartilage element - -[Term] -id: EHDAA:625 ! -property_value: IAO:0000589 "2nd arch mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005689 ! 2nd arch mesenchyme - -[Term] -id: EHDAA:1094 ! -property_value: IAO:0000589 "3rd arch mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005690 ! 3rd arch mesenchyme - -[Term] -id: EHDAA:1677 ! -property_value: IAO:0000589 "4th arch mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005691 ! 4th arch mesenchyme - -[Term] -id: EHDAA:8051 ! -property_value: IAO:0000589 "upper jaw molar odontogenic papilla (EHDAA)" xsd:string -is_a: UBERON:0005700 ! upper jaw molar odontogenic papilla - -[Term] -id: EHDAA:8015 ! -property_value: IAO:0000589 "lower jaw molar odontogenic papilla (EHDAA)" xsd:string -is_a: UBERON:0005701 ! lower jaw molar odontogenic papilla - -[Term] -id: EHDAA:942 ! -property_value: IAO:0000589 "optic eminence mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005702 ! optic eminence mesenchyme - -[Term] -id: EHDAA:9287 ! -property_value: IAO:0000589 "secondary palatal shelf mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005704 ! secondary palatal shelf mesenchyme - -[Term] -id: EHDAA:6968 ! -property_value: IAO:0000589 "primary palate mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0005705 ! primary palate mesenchyme - -[Term] -id: EHDAA:10646 ! -property_value: IAO:0000589 "optic foramen (EHDAA)" xsd:string -is_a: UBERON:0005745 ! optic foramen - -[Term] -id: EHDAA:5707 ! -property_value: IAO:0000589 "primary vitreous (EHDAA)" xsd:string -is_a: UBERON:0005746 ! primary vitreous - -[Term] -id: EHDAA:5921 ! -property_value: IAO:0000589 "urorectal septum (EHDAA)" xsd:string -is_a: UBERON:0005760 ! urorectal septum - -[Term] -id: EHDAA:1015 ! -property_value: IAO:0000589 "nephric ridge (EHDAA)" xsd:string -is_a: UBERON:0005792 ! nephric ridge - -[Term] -id: EHDAA:402 ! -property_value: IAO:0000589 "dorsal aorta (EHDAA)" xsd:string -is_a: UBERON:0005805 ! dorsal aorta - -[Term] -id: EHDAA:8979 ! -property_value: IAO:0000589 "developing mesenchymal condensation (EHDAA)" xsd:string -is_a: UBERON:0005856 ! developing mesenchymal condensation - -[Term] -id: EHDAA:5871 ! -property_value: IAO:0000589 "mandibular prominence (EHDAA)" xsd:string -is_a: UBERON:0005867 ! mandibular prominence - -[Term] -id: EHDAA:5877 ! -property_value: IAO:0000589 "maxillary prominence (EHDAA)" xsd:string -is_a: UBERON:0005868 ! maxillary prominence - -[Term] -id: EHDAA:4772 ! -property_value: IAO:0000589 "olfactory pit (EHDAA)" xsd:string -is_a: UBERON:0005870 ! olfactory pit - -[Term] -id: EHDAA:575 ! -property_value: IAO:0000589 "1st arch pharyngeal cleft (EHDAA)" xsd:string -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EHDAA:613 ! -property_value: IAO:0000589 "2nd arch pharyngeal cleft (EHDAA)" xsd:string -is_a: UBERON:0005873 ! 2nd arch pharyngeal cleft - -[Term] -id: EHDAA:1082 ! -property_value: IAO:0000589 "3rd arch pharyngeal cleft (EHDAA)" xsd:string -is_a: UBERON:0005874 ! 3rd arch pharyngeal cleft - -[Term] -id: EHDAA:1665 ! -property_value: IAO:0000589 "4th arch pharyngeal cleft (EHDAA)" xsd:string -is_a: UBERON:0005875 ! 4th arch pharyngeal cleft - -[Term] -id: EHDAA:5925 ! -property_value: IAO:0000589 "undifferentiated genital tubercle (EHDAA)" xsd:string -is_a: UBERON:0005876 ! undifferentiated genital tubercle - -[Term] -id: EHDAA:9085 ! -property_value: IAO:0000589 "external naris (EHDAA)" xsd:string -is_a: UBERON:0005928 ! external naris - -[Term] -id: EHDAA:9087 ! -property_value: IAO:0000589 "primary choana (EHDAA)" xsd:string -is_a: UBERON:0005931 ! primary choana - -[Term] -id: EHDAA:1914 ! -property_value: IAO:0000589 "conotruncal ridge (EHDAA)" xsd:string -is_a: UBERON:0005967 ! conotruncal ridge - -[Term] -id: EHDAA:6298 ! -property_value: IAO:0000589 "interdigital region between manual digits 1 and 2 (EHDAA)" xsd:string -is_a: UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EHDAA:6304 ! -property_value: IAO:0000589 "interdigital region between manual digits 2 and 3 (EHDAA)" xsd:string -is_a: UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EHDAA:6310 ! -property_value: IAO:0000589 "interdigital region between manual digits 3 and 4 (EHDAA)" xsd:string -is_a: UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EHDAA:6316 ! -property_value: IAO:0000589 "interdigital region between manual digits 4 and 5 (EHDAA)" xsd:string -is_a: UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EHDAA:6148 ! -property_value: IAO:0000589 "interdigital region between pedal digits 1 and 2 (EHDAA)" xsd:string -is_a: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EHDAA:6154 ! -property_value: IAO:0000589 "interdigital region between pedal digits 2 and 3 (EHDAA)" xsd:string -is_a: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EHDAA:6160 ! -property_value: IAO:0000589 "interdigital region between pedal digits 3 and 4 (EHDAA)" xsd:string -is_a: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EHDAA:6166 ! -property_value: IAO:0000589 "interdigital region between pedal digits 4 and 5 (EHDAA)" xsd:string -is_a: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EHDAA:5051 ! -property_value: IAO:0000589 "cervical region of vertebral column (EHDAA)" xsd:string -is_a: UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EHDAA:5063 ! -property_value: IAO:0000589 "thoracic region of vertebral column (EHDAA)" xsd:string -is_a: UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EHDAA:5055 ! -property_value: IAO:0000589 "lumbar region of vertebral column (EHDAA)" xsd:string -is_a: UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EHDAA:5059 ! -property_value: IAO:0000589 "sacral region of vertebral column (EHDAA)" xsd:string -is_a: UBERON:0006075 ! sacral region of vertebral column - -[Term] -id: EHDAA:9330 ! -property_value: IAO:0000589 "fundus of urinary bladder (EHDAA)" xsd:string -is_a: UBERON:0006082 ! fundus of urinary bladder - -[Term] -id: EHDAA:2592 ! -property_value: IAO:0000589 "aortico-pulmonary spiral septum (EHDAA)" xsd:string -is_a: UBERON:0006207 ! aortico-pulmonary spiral septum - -[Term] -id: EHDAA:4685 ! -property_value: IAO:0000589 "auditory hillocks (EHDAA)" xsd:string -is_a: UBERON:0006208 ! auditory hillocks - -[Term] -id: EHDAA:7141 ! -property_value: IAO:0000589 "basioccipital cartilage element (EHDAA)" xsd:string -is_a: UBERON:0006209 ! basioccipital cartilage element - -[Term] -id: EHDAA:3217 ! -property_value: IAO:0000589 "body-wall mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0006210 ! body-wall mesenchyme - -[Term] -id: EHDAA:536 ! -property_value: IAO:0000589 "buccopharyngeal membrane (EHDAA)" xsd:string -is_a: UBERON:0006211 ! buccopharyngeal membrane - -[Term] -id: EHDAA:766 ! -property_value: IAO:0000589 "bulbo-ventricular groove (EHDAA)" xsd:string -is_a: UBERON:0006212 ! bulbo-ventricular groove - -[Term] -id: EHDAA:8544 ! -property_value: IAO:0000589 "carpus cartilage element (EHDAA)" xsd:string -is_a: UBERON:0006213 ! carpus cartilage element - -[Term] -id: EHDAA:6324 ! -property_value: IAO:0000589 "carpus pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006214 ! carpus pre-cartilage condensation - -[Term] -id: EHDAA:5105 ! -property_value: IAO:0000589 "cervical sinus of His (EHDAA)" xsd:string -is_a: UBERON:0006216 ! cervical sinus of His - -[Term] -id: EHDAA:6534 ! -property_value: IAO:0000589 "cervical sinus of His (EHDAA)" xsd:string -is_a: UBERON:0006216 ! cervical sinus of His - -[Term] -id: EHDAA:214 ! -property_value: IAO:0000589 "cloacal membrane (EHDAA)" xsd:string -is_a: UBERON:0006217 ! cloacal membrane - -[Term] -id: EHDAA:2933 ! -property_value: IAO:0000589 "cloacal membrane (EHDAA)" xsd:string -is_a: UBERON:0006217 ! cloacal membrane - -[Term] -id: EHDAA:1267 ! -property_value: IAO:0000589 "common atrial chamber (EHDAA)" xsd:string -is_a: UBERON:0006218 ! common atrial chamber - -[Term] -id: EHDAA:6002 ! -property_value: IAO:0000589 "deltoid pre-muscle mass (EHDAA)" xsd:string -is_a: UBERON:0006219 ! deltoid pre-muscle mass - -[Term] -id: EHDAA:3476 ! -property_value: IAO:0000589 "diencephalic part of interventricular foramen (EHDAA)" xsd:string -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen - -[Term] -id: EHDAA:844 ! -property_value: IAO:0000589 "future diencephalon (EHDAA)" xsd:string -is_a: UBERON:0006222 ! future diencephalon - -[Term] -id: EHDAA:2945 ! -property_value: IAO:0000589 "dorsal meso-oesophagus (EHDAA)" xsd:string -is_a: UBERON:0006223 ! dorsal meso-oesophagus - -[Term] -id: EHDAA:8483 ! -property_value: IAO:0000589 "elbow joint primordium (EHDAA)" xsd:string -is_a: UBERON:0006224 ! elbow joint primordium - -[Term] -id: EHDAA:8363 ! -property_value: IAO:0000589 "ethmoid bone primordium (EHDAA)" xsd:string -is_a: UBERON:0006227 ! ethmoid bone primordium - -[Term] -id: EHDAA:8355 ! -property_value: IAO:0000589 "exoccipital pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006228 ! exoccipital pre-cartilage condensation - -[Term] -id: EHDAA:2925 ! -property_value: IAO:0000589 "extrinsic ocular pre-muscle mass (EHDAA)" xsd:string -is_a: UBERON:0006230 ! extrinsic ocular pre-muscle mass - -[Term] -id: EHDAA:9552 ! -property_value: IAO:0000589 "facial bone primordium (EHDAA)" xsd:string -is_a: UBERON:0006231 ! facial bone primordium - -[Term] -id: EHDAA:1477 ! -property_value: IAO:0000589 "facio-acoustic VII-VIII preganglion complex (EHDAA)" xsd:string -is_a: UBERON:0006232 ! facio-acoustic VII-VIII preganglion complex - -[Term] -id: EHDAA:8118 ! -property_value: IAO:0000589 "female genital tubercle (EHDAA)" xsd:string -is_a: UBERON:0006233 ! female genital tubercle - -[Term] -id: EHDAA:526 ! -property_value: IAO:0000589 "foregut-midgut junction (EHDAA)" xsd:string -is_a: UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EHDAA:9540 ! -property_value: IAO:0000589 "tetrapod frontal bone primordium (EHDAA)" xsd:string -is_a: UBERON:0006236 ! tetrapod frontal bone primordium - -[Term] -id: EHDAA:300 ! -property_value: IAO:0000589 "future brain (EHDAA)" xsd:string -is_a: UBERON:0006238 ! future brain - -[Term] -id: EHDAA:830 ! -property_value: IAO:0000589 "future brain (EHDAA)" xsd:string -is_a: UBERON:0006238 ! future brain - -[Term] -id: EHDAA:4118 ! -property_value: IAO:0000589 "future central tendon (EHDAA)" xsd:string -is_a: UBERON:0006239 ! future central tendon - -[Term] -id: EHDAA:2643 ! -property_value: IAO:0000589 "future forebrain (EHDAA)" xsd:string -is_a: UBERON:0006240 ! future forebrain - -[Term] -id: EHDAA:898 ! -property_value: IAO:0000589 "future spinal cord (EHDAA)" xsd:string -is_a: UBERON:0006241 ! future spinal cord - -[Term] -id: EHDAA:3047 ! -property_value: IAO:0000589 "gallbladder primordium (EHDAA)" xsd:string -is_a: UBERON:0006242 ! gallbladder primordium - -[Term] -id: EHDAA:1479 ! -property_value: IAO:0000589 "glossopharyngeal IX preganglion (EHDAA)" xsd:string -is_a: UBERON:0006243 ! glossopharyngeal IX preganglion - -[Term] -id: EHDAA:8462 ! -property_value: IAO:0000589 "hip joint primordium (EHDAA)" xsd:string -is_a: UBERON:0006244 ! hip joint primordium - -[Term] -id: EHDAA:6240 ! -property_value: IAO:0000589 "humerus cartilage element (EHDAA)" xsd:string -is_a: UBERON:0006245 ! humerus cartilage element - -[Term] -id: EHDAA:4192 ! -property_value: IAO:0000589 "humerus pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006246 ! humerus pre-cartilage condensation - -[Term] -id: EHDAA:9568 ! -property_value: IAO:0000589 "iliac pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006247 ! iliac pre-cartilage condensation - -[Term] -id: EHDAA:9024 ! -property_value: IAO:0000589 "incus pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006248 ! incus pre-cartilage condensation - -[Term] -id: EHDAA:4479 ! -property_value: IAO:0000589 "infundibular recess of 3rd ventricle (EHDAA)" xsd:string -is_a: UBERON:0006250 ! infundibular recess of 3rd ventricle - -[Term] -id: EHDAA:3452 ! -property_value: IAO:0000589 "intersubcardinal venous anastomosis (EHDAA)" xsd:string -is_a: UBERON:0006252 ! intersubcardinal venous anastomosis - -[Term] -id: EHDAA:4761 ! -property_value: IAO:0000589 "embryonic intraretinal space (EHDAA)" xsd:string -is_a: UBERON:0006253 ! embryonic intraretinal space - -[Term] -id: EHDAA:9570 ! -property_value: IAO:0000589 "ischial cartilage element (EHDAA)" xsd:string -is_a: UBERON:0006254 ! ischial cartilage element - -[Term] -id: EHDAA:7153 ! -property_value: IAO:0000589 "ischial pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006255 ! ischial pre-cartilage condensation - -[Term] -id: EHDAA:8467 ! -property_value: IAO:0000589 "knee joint primordium (EHDAA)" xsd:string -is_a: UBERON:0006256 ! knee joint primordium - -[Term] -id: EHDAA:1005 ! -property_value: IAO:0000589 "laryngotracheal groove (EHDAA)" xsd:string -is_a: UBERON:0006257 ! laryngotracheal groove - -[Term] -id: EHDAA:3809 ! -property_value: IAO:0000589 "lens pit (EHDAA)" xsd:string -is_a: UBERON:0006259 ! lens pit - -[Term] -id: EHDAA:8138 ! -property_value: IAO:0000589 "male genital tubercle (EHDAA)" xsd:string -is_a: UBERON:0006261 ! male genital tubercle - -[Term] -id: EHDAA:9026 ! -property_value: IAO:0000589 "malleus pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006262 ! malleus pre-cartilage condensation - -[Term] -id: EHDAA:534 ! -property_value: IAO:0000589 "mouth-foregut junction (EHDAA)" xsd:string -is_a: UBERON:0006264 ! mouth-foregut junction - -[Term] -id: EHDAA:58 ! -property_value: IAO:0000589 "mural trophectoderm (EHDAA)" xsd:string -is_a: UBERON:0006265 ! mural trophectoderm - -[Term] -id: EHDAA:4770 ! -property_value: IAO:0000589 "nasolacrimal groove (EHDAA)" xsd:string -is_a: UBERON:0006266 ! nasolacrimal groove - -[Term] -id: EHDAA:264 ! -property_value: IAO:0000589 "notochordal plate (EHDAA)" xsd:string -is_a: UBERON:0006267 ! notochordal plate - -[Term] -id: EHDAA:224 ! -property_value: IAO:0000589 "notochordal process (EHDAA)" xsd:string -is_a: UBERON:0006268 ! notochordal process - -[Term] -id: EHDAA:944 ! -property_value: IAO:0000589 "optic pit (EHDAA)" xsd:string -is_a: UBERON:0006270 ! optic pit - -[Term] -id: EHDAA:10648 ! -property_value: IAO:0000589 "orbital fissure (EHDAA)" xsd:string -is_a: UBERON:0006271 ! orbital fissure - -[Term] -id: EHDAA:5882 ! -property_value: IAO:0000589 "oronasal cavity (EHDAA)" xsd:string -is_a: UBERON:0006272 ! oronasal cavity - -[Term] -id: EHDAA:929 ! -property_value: IAO:0000589 "otic pit (EHDAA)" xsd:string -is_a: UBERON:0006273 ! otic pit - -[Term] -id: EHDAA:9544 ! -property_value: IAO:0000589 "tetrapod parietal bone primordium (EHDAA)" xsd:string -is_a: UBERON:0006274 ! tetrapod parietal bone primordium - -[Term] -id: EHDAA:636 ! -property_value: IAO:0000589 "pericardio-peritoneal canal (EHDAA)" xsd:string -is_a: UBERON:0006275 ! pericardio-peritoneal canal - -[Term] -id: EHDAA:4751 ! -property_value: IAO:0000589 "perioptic mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0006276 ! perioptic mesenchyme - -[Term] -id: EHDAA:4122 ! -property_value: IAO:0000589 "pleuropericardial canals (EHDAA)" xsd:string -is_a: UBERON:0006277 ! pleuropericardial canals - -[Term] -id: EHDAA:4126 ! -property_value: IAO:0000589 "pleuropericardial folds (EHDAA)" xsd:string -is_a: UBERON:0006278 ! pleuropericardial folds - -[Term] -id: EHDAA:4128 ! -property_value: IAO:0000589 "pleuroperitoneal canal (EHDAA)" xsd:string -is_a: UBERON:0006279 ! pleuroperitoneal canal - -[Term] -id: EHDAA:60 ! -property_value: IAO:0000589 "polar trophectoderm (EHDAA)" xsd:string -is_a: UBERON:0006280 ! polar trophectoderm - -[Term] -id: EHDAA:818 ! -property_value: IAO:0000589 "primary head vein (EHDAA)" xsd:string -is_a: UBERON:0006282 ! primary head vein - -[Term] -id: EHDAA:1356 ! -property_value: IAO:0000589 "early prosencephalic vesicle (EHDAA)" xsd:string -is_a: UBERON:0006284 ! early prosencephalic vesicle - -[Term] -id: EHDAA:9572 ! -property_value: IAO:0000589 "pubic pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006285 ! pubic pre-cartilage condensation - -[Term] -id: EHDAA:7267 ! -property_value: IAO:0000589 "radius cartilage element (EHDAA)" xsd:string -is_a: UBERON:0006286 ! radius cartilage element - -[Term] -id: EHDAA:4178 ! -property_value: IAO:0000589 "radius-ulna pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006287 ! radius-ulna pre-cartilage condensation - -[Term] -id: EHDAA:8347 ! -property_value: IAO:0000589 "rib cartilage element (EHDAA)" xsd:string -is_a: UBERON:0006288 ! rib cartilage element - -[Term] -id: EHDAA:6026 ! -property_value: IAO:0000589 "rib pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EHDAA:8368 ! -property_value: IAO:0000589 "scapula cartilage element (EHDAA)" xsd:string -is_a: UBERON:0006290 ! scapula cartilage element - -[Term] -id: EHDAA:6041 ! -property_value: IAO:0000589 "scapula pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006291 ! scapula pre-cartilage condensation - -[Term] -id: EHDAA:8493 ! -property_value: IAO:0000589 "shoulder joint primordium (EHDAA)" xsd:string -is_a: UBERON:0006292 ! shoulder joint primordium - -[Term] -id: EHDAA:3003 ! -property_value: IAO:0000589 "spleen primordium (EHDAA)" xsd:string -is_a: UBERON:0006293 ! spleen primordium - -[Term] -id: EHDAA:5699 ! -property_value: IAO:0000589 "stapes pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006294 ! stapes pre-cartilage condensation - -[Term] -id: EHDAA:9565 ! -property_value: IAO:0000589 "sternebral bone pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0006295 ! sternebral bone pre-cartilage condensation - -[Term] -id: EHDAA:2631 ! -property_value: IAO:0000589 "subcardinal vein (EHDAA)" xsd:string -is_a: UBERON:0006296 ! subcardinal vein - -[Term] -id: EHDAA:7989 ! -property_value: IAO:0000589 "sublingual gland primordium (EHDAA)" xsd:string -is_a: UBERON:0006297 ! sublingual gland primordium - -[Term] -id: EHDAA:9255 ! -property_value: IAO:0000589 "submandibular gland primordium (EHDAA)" xsd:string -is_a: UBERON:0006298 ! submandibular gland primordium - -[Term] -id: EHDAA:7492 ! -property_value: IAO:0000589 "supracardinal vein (EHDAA)" xsd:string -is_a: UBERON:0006300 ! supracardinal vein - -[Term] -id: EHDAA:5474 ! -property_value: IAO:0000589 "telencephalic part of interventricular foramen (EHDAA)" xsd:string -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen - -[Term] -id: EHDAA:924 ! -property_value: IAO:0000589 "future trigeminal ganglion (EHDAA)" xsd:string -is_a: UBERON:0006304 ! future trigeminal ganglion - -[Term] -id: EHDAA:5705 ! -property_value: IAO:0000589 "tunica vasculosa lentis (EHDAA)" xsd:string -is_a: UBERON:0006305 ! tunica vasculosa lentis - -[Term] -id: EHDAA:7269 ! -property_value: IAO:0000589 "ulna cartilage element (EHDAA)" xsd:string -is_a: UBERON:0006306 ! ulna cartilage element - -[Term] -id: EHDAA:7011 ! -property_value: IAO:0000589 "urogenital membrane (EHDAA)" xsd:string -is_a: UBERON:0006307 ! urogenital membrane - -[Term] -id: EHDAA:1945 ! -property_value: IAO:0000589 "venous vitelline plexus (EHDAA)" xsd:string -is_a: UBERON:0006309 ! venous vitelline plexus - -[Term] -id: EHDAA:1945 ! -property_value: IAO:0000589 "vitelline venous plexus (EHDAA)" xsd:string -is_a: UBERON:0006310 ! vitelline venous plexus - -[Term] -id: EHDAA:5343 ! -property_value: IAO:0000589 "left atrium auricular region (EHDAA)" xsd:string -is_a: UBERON:0006630 ! left atrium auricular region - -[Term] -id: EHDAA:5352 ! -property_value: IAO:0000589 "right atrium auricular region (EHDAA)" xsd:string -is_a: UBERON:0006631 ! right atrium auricular region - -[Term] -id: EHDAA:5976 ! -property_value: IAO:0000589 "anterior abdominal wall (EHDAA)" xsd:string -is_a: UBERON:0006635 ! anterior abdominal wall - -[Term] -id: EHDAA:9388 ! -property_value: IAO:0000589 "tunica albuginea of testis (EHDAA)" xsd:string -is_a: UBERON:0006643 ! tunica albuginea of testis - -[Term] -id: EHDAA:9039 ! -property_value: IAO:0000589 "outer canthus (EHDAA)" xsd:string -is_a: UBERON:0006726 ! outer canthus - -[Term] -id: EHDAA:3870 ! -property_value: IAO:0000589 "superior parathyroid gland (EHDAA)" xsd:string -is_a: UBERON:0006749 ! superior parathyroid gland - -[Term] -id: EHDAA:9135 ! -property_value: IAO:0000589 "superior parathyroid gland (EHDAA)" xsd:string -is_a: UBERON:0006749 ! superior parathyroid gland - -[Term] -id: EHDAA:3864 ! -property_value: IAO:0000589 "inferior parathyroid gland (EHDAA)" xsd:string -is_a: UBERON:0006755 ! inferior parathyroid gland - -[Term] -id: EHDAA:9127 ! -property_value: IAO:0000589 "inferior parathyroid gland (EHDAA)" xsd:string -is_a: UBERON:0006755 ! inferior parathyroid gland - -[Term] -id: EHDAA:5143 ! -property_value: IAO:0000589 "embryonic footplate (EHDAA)" xsd:string -is_a: UBERON:0006871 ! embryonic footplate - -[Term] -id: EHDAA:6096 ! -property_value: IAO:0000589 "embryonic footplate (EHDAA)" xsd:string -is_a: UBERON:0006871 ! embryonic footplate - -[Term] -id: EHDAA:4194 ! -property_value: IAO:0000589 "embryonic handplate (EHDAA)" xsd:string -is_a: UBERON:0006875 ! embryonic handplate - -[Term] -id: EHDAA:6242 ! -property_value: IAO:0000589 "embryonic handplate (EHDAA)" xsd:string -is_a: UBERON:0006875 ! embryonic handplate - -[Term] -id: EHDAA:655 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (EHDAA)" xsd:string -is_a: UBERON:0006904 ! head mesenchyme from mesoderm - -[Term] -id: EHDAA:5861 ! -property_value: IAO:0000589 "mandibular process mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0006905 ! mandibular process mesenchyme - -[Term] -id: EHDAA:5873 ! -property_value: IAO:0000589 "mandibular process mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0006905 ! mandibular process mesenchyme - -[Term] -id: EHDAA:8983 ! -property_value: IAO:0000589 "pinna surface epithelium (EHDAA)" xsd:string -is_a: UBERON:0006938 ! pinna surface epithelium - -[Term] -id: EHDAA:9257 ! -property_value: IAO:0000589 "submandibular gland primordium epithelium (EHDAA)" xsd:string -is_a: UBERON:0006957 ! submandibular gland primordium epithelium - -[Term] -id: EHDAA:7532 ! -property_value: IAO:0000589 "pars distalis of adenohypophysis (EHDAA)" xsd:string -is_a: UBERON:0006964 ! pars distalis of adenohypophysis - -[Term] -id: EHDAA:385 ! -property_value: IAO:0000589 "cardiogenic splanchnic mesoderm (EHDAA)" xsd:string -is_a: UBERON:0007005 ! cardiogenic splanchnic mesoderm - -[Term] -id: EHDAA:583 ! -property_value: IAO:0000589 "1st arch mandibular component (EHDAA)" xsd:string -is_a: UBERON:0007237 ! 1st arch mandibular component - -[Term] -id: EHDAA:595 ! -property_value: IAO:0000589 "1st arch maxillary component (EHDAA)" xsd:string -is_a: UBERON:0007238 ! 1st arch maxillary component - -[Term] -id: EHDAA:7082 ! -property_value: IAO:0000589 "trachea pre-cartilage rings (EHDAA)" xsd:string -is_a: UBERON:0007267 ! trachea pre-cartilage rings - -[Term] -id: EHDAA:9194 ! -property_value: IAO:0000589 "pancreatic duct (EHDAA)" xsd:string -is_a: UBERON:0007329 ! pancreatic duct - -[Term] -id: EHDAA:962 ! -property_value: IAO:0000589 "early pharyngeal endoderm (EHDAA)" xsd:string -is_a: UBERON:0007690 ! early pharyngeal endoderm - -[Term] -id: EHDAA:7149 ! -property_value: IAO:0000589 "pelvic girdle skeleton (EHDAA)" xsd:string -is_a: UBERON:0007832 ! pelvic girdle skeleton - -[Term] -id: EHDAA:8324 ! -property_value: IAO:0000589 "pelvic girdle skeleton (EHDAA)" xsd:string -is_a: UBERON:0007832 ! pelvic girdle skeleton - -[Term] -id: EHDAA:44 ! -property_value: IAO:0000589 "inner cell mass derived hypoblast (EHDAA)" xsd:string -is_a: UBERON:0008776 ! inner cell mass derived hypoblast - -[Term] -id: EHDAA:79 ! -property_value: IAO:0000589 "inner cell mass derived hypoblast (EHDAA)" xsd:string -is_a: UBERON:0008776 ! inner cell mass derived hypoblast - -[Term] -id: EHDAA:42 ! -property_value: IAO:0000589 "inner cell mass derived epiblast (EHDAA)" xsd:string -is_a: UBERON:0008780 ! inner cell mass derived epiblast - -[Term] -id: EHDAA:75 ! -property_value: IAO:0000589 "inner cell mass derived epiblast (EHDAA)" xsd:string -is_a: UBERON:0008780 ! inner cell mass derived epiblast - -[Term] -id: EHDAA:9246 ! -property_value: IAO:0000589 "parotid gland primordium (EHDAA)" xsd:string -is_a: UBERON:0008801 ! parotid gland primordium - -[Term] -id: EHDAA:1530 ! -property_value: IAO:0000589 "hepatic diverticulum (EHDAA)" xsd:string -is_a: UBERON:0008835 ! hepatic diverticulum - -[Term] -id: EHDAA:105 ! -property_value: IAO:0000589 "extraembryonic endoderm (EHDAA)" xsd:string -is_a: UBERON:0008945 ! extraembryonic endoderm - -[Term] -id: EHDAA:2981 ! -property_value: IAO:0000589 "left lung lobe (EHDAA)" xsd:string -is_a: UBERON:0008951 ! left lung lobe - -[Term] -id: EHDAA:4957 ! -property_value: IAO:0000589 "upper lobe of left lung (EHDAA)" xsd:string -is_a: UBERON:0008952 ! upper lobe of left lung - -[Term] -id: EHDAA:4949 ! -property_value: IAO:0000589 "lower lobe of left lung (EHDAA)" xsd:string -is_a: UBERON:0008953 ! lower lobe of left lung - -[Term] -id: EHDAA:8297 ! -property_value: IAO:0000589 "peroneus (EHDAA)" xsd:string -is_a: UBERON:0009132 ! peroneus - -[Term] -id: EHDAA:177 ! -property_value: IAO:0000589 "entire embryonic mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0009142 ! entire embryonic mesenchyme - -[Term] -id: EHDAA:6033 ! -property_value: IAO:0000589 "basioccipital pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0009197 ! basioccipital pre-cartilage condensation - -[Term] -id: EHDAA:3788 ! -property_value: IAO:0000589 "pharyngeal membrane of 1st arch (EHDAA)" xsd:string -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EHDAA:4776 ! -property_value: IAO:0000589 "embryonic nasal process (EHDAA)" xsd:string -is_a: UBERON:0009292 ! embryonic nasal process - -[Term] -id: EHDAA:4780 ! -property_value: IAO:0000589 "embryonic frontal process (EHDAA)" xsd:string -is_a: UBERON:0009293 ! embryonic frontal process - -[Term] -id: EHDAA:364 ! -property_value: IAO:0000589 "head paraxial mesoderm (EHDAA)" xsd:string -is_a: UBERON:0009617 ! head paraxial mesoderm - -[Term] -id: EHDAA:7840 ! -property_value: IAO:0000589 "oronasal membrane (EHDAA)" xsd:string -is_a: UBERON:0009672 ! oronasal membrane - -[Term] -id: EHDAA:7984 ! -property_value: IAO:0000589 "oronasal membrane (EHDAA)" xsd:string -is_a: UBERON:0009672 ! oronasal membrane - -[Term] -id: EHDAA:5574 ! -property_value: IAO:0000589 "accessory XI nerve cranial component (EHDAA)" xsd:string -is_a: UBERON:0009673 ! accessory XI nerve cranial component - -[Term] -id: EHDAA:5576 ! -property_value: IAO:0000589 "accessory XI nerve spinal component (EHDAA)" xsd:string -is_a: UBERON:0009674 ! accessory XI nerve spinal component - -[Term] -id: EHDAA:3719 ! -property_value: IAO:0000589 "chorda tympani branch of facial nerve (EHDAA)" xsd:string -is_a: UBERON:0009675 ! chorda tympani branch of facial nerve - -[Term] -id: EHDAA:1993 ! -property_value: IAO:0000589 "early telencephalic vesicle (EHDAA)" xsd:string -is_a: UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EHDAA:2671 ! -property_value: IAO:0000589 "early telencephalic vesicle (EHDAA)" xsd:string -is_a: UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EHDAA:7856 ! -property_value: IAO:0000589 "intermaxillary process (EHDAA)" xsd:string -is_a: UBERON:0009714 ! intermaxillary process - -[Term] -id: EHDAA:1122 ! -property_value: IAO:0000589 "optic neural crest (EHDAA)" xsd:string -is_a: UBERON:0009920 ! optic neural crest - -[Term] -id: EHDAA:9876 ! -property_value: IAO:0000589 "primitive superior sagittal sinus (EHDAA)" xsd:string -is_a: UBERON:0009968 ! primitive superior sagittal sinus - -[Term] -id: EHDAA:6772 ! -property_value: IAO:0000589 "tubotympanic recess epithelium (EHDAA)" xsd:string -is_a: UBERON:0010020 ! tubotympanic recess epithelium - -[Term] -id: EHDAA:2181 ! -property_value: IAO:0000589 "oral gland (EHDAA)" xsd:string -is_a: UBERON:0010047 ! oral gland - -[Term] -id: EHDAA:2951 ! -property_value: IAO:0000589 "future tongue (EHDAA)" xsd:string -is_a: UBERON:0010056 ! future tongue - -[Term] -id: EHDAA:8574 ! -property_value: IAO:0000589 "gastroduodenal artery (EHDAA)" xsd:string -is_a: UBERON:0010132 ! gastroduodenal artery - -[Term] -id: EHDAA:7007 ! -property_value: IAO:0000589 "metanephros induced blastemal cells (EHDAA)" xsd:string -is_a: UBERON:0010531 ! metanephros induced blastemal cells - -[Term] -id: EHDAA:8105 ! -property_value: IAO:0000589 "metanephros induced blastemal cells (EHDAA)" xsd:string -is_a: UBERON:0010531 ! metanephros induced blastemal cells - -[Term] -id: EHDAA:9536 ! -property_value: IAO:0000589 "squamous part of temporal bone primordium (EHDAA)" xsd:string -is_a: UBERON:0010751 ! squamous part of temporal bone primordium - -[Term] -id: EHDAA:6226 ! -property_value: IAO:0000589 "ulna pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0010847 ! ulna pre-cartilage condensation - -[Term] -id: EHDAA:6196 ! -property_value: IAO:0000589 "fibula pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0010852 ! fibula pre-cartilage condensation - -[Term] -id: EHDAA:5992 ! -property_value: IAO:0000589 "serratus ventralis pre-muscle mass (EHDAA)" xsd:string -is_a: UBERON:0010986 ! serratus ventralis pre-muscle mass - -[Term] -id: EHDAA:9465 ! -property_value: IAO:0000589 "transversospinales muscle (EHDAA)" xsd:string -is_a: UBERON:0010990 ! transversospinales muscle - -[Term] -id: EHDAA:8361 ! -property_value: IAO:0000589 "facial skeleton (EHDAA)" xsd:string -is_a: UBERON:0011156 ! facial skeleton - -[Term] -id: EHDAA:9534 ! -property_value: IAO:0000589 "supraoccipital pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0011163 ! supraoccipital pre-cartilage condensation - -[Term] -id: EHDAA:3868 ! -property_value: IAO:0000589 "inferior parathyroid epithelium (EHDAA)" xsd:string -is_a: UBERON:0011195 ! inferior parathyroid epithelium - -[Term] -id: EHDAA:3874 ! -property_value: IAO:0000589 "superior parathyroid epithelium (EHDAA)" xsd:string -is_a: UBERON:0011196 ! superior parathyroid epithelium - -[Term] -id: EHDAA:1747 ! -property_value: IAO:0000589 "medial migration pathway NC-derived mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme - -[Term] -id: EHDAA:1745 ! -property_value: IAO:0000589 "lateral migration pathway NC-derived mesenchyme (EHDAA)" xsd:string -is_a: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme - -[Term] -id: EHDAA:9563 ! -property_value: IAO:0000589 "manubrium sternum pre-cartilage condensation (EHDAA)" xsd:string -is_a: UBERON:0011301 ! manubrium sternum pre-cartilage condensation - -[Term] -id: EHDAA:6992 ! -property_value: IAO:0000589 "caudate lobe hepatic sinusoid (EHDAA)" xsd:string -is_a: UBERON:0011737 ! caudate lobe hepatic sinusoid - -[Term] -id: EHDAA:8084 ! -property_value: IAO:0000589 "quadrate lobe hepatic sinusoid (EHDAA)" xsd:string -is_a: UBERON:0011738 ! quadrate lobe hepatic sinusoid - -[Term] -id: EHDAA:9363 ! -property_value: IAO:0000589 "female labial swelling (EHDAA)" xsd:string -is_a: UBERON:0011755 ! female labial swelling - -[Term] -id: EHDAA:5435 ! -property_value: IAO:0000589 "epithalamus mantle layer (EHDAA)" xsd:string -is_a: UBERON:0013159 ! epithalamus mantle layer - -[Term] -id: EHDAA:5437 ! -property_value: IAO:0000589 "epithalamus ventricular layer (EHDAA)" xsd:string -is_a: UBERON:0013160 ! epithalamus ventricular layer - -[Term] -id: EHDAA:5035 ! -property_value: IAO:0000589 "skeletal muscle organ (EHDAA)" xsd:string -is_a: UBERON:0014892 ! skeletal muscle organ - -[Term] -id: EHDAA:5043 ! -property_value: IAO:0000589 "skeletal muscle organ (EHDAA)" xsd:string -is_a: UBERON:0014892 ! skeletal muscle organ - -[Term] -id: EHDAA:5978 ! -property_value: IAO:0000589 "skeletal muscle organ (EHDAA)" xsd:string -is_a: UBERON:0014892 ! skeletal muscle organ - -[Term] -id: EHDAA:5984 ! -property_value: IAO:0000589 "skeletal muscle organ (EHDAA)" xsd:string -is_a: UBERON:0014892 ! skeletal muscle organ - -[Term] -id: EHDAA:3500 ! -property_value: IAO:0000589 "lamina terminalis of cerebral hemisphere (EHDAA)" xsd:string -is_a: UBERON:0015117 ! lamina terminalis of cerebral hemisphere - -[Term] -id: EHDAA:4498 ! -property_value: IAO:0000589 "lamina terminalis of cerebral hemisphere (EHDAA)" xsd:string -is_a: UBERON:0015117 ! lamina terminalis of cerebral hemisphere - -[Term] -id: EHDAA:8693 ! -property_value: IAO:0000589 "marginal venous sinus (EHDAA)" xsd:string -is_a: UBERON:0017637 ! marginal venous sinus - -[Term] -id: EHDAA:5628 ! -property_value: IAO:0000589 "pelvic splanchnic nerve (EHDAA)" xsd:string -is_a: UBERON:0018675 ! pelvic splanchnic nerve - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-ehdaa.owl b/src/ontology/bridge/uberon-bridge-to-ehdaa.owl deleted file mode 100644 index 146c18fe76..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-ehdaa.owl +++ /dev/null @@ -1,14735 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - multicellular organism (EHDAA) - EHDAA:1 - - - - - - - - - laryngotracheal groove (EHDAA) - EHDAA:1005 - - - - - - - - - sublingual ganglion (EHDAA) - EHDAA:10101 - - - - - - - - - genitourinary system (EHDAA) - EHDAA:1013 - - - - - - - - - nephric ridge (EHDAA) - EHDAA:1015 - - - - - - - - - tensor tympani (EHDAA) - EHDAA:10167 - - - - - - - - - pronephros (EHDAA) - EHDAA:1017 - - - - - - - - - tensor tympani (EHDAA) - EHDAA:10191 - - - - - - - - - aqueous humor of eyeball (EHDAA) - EHDAA:10196 - - - - - - - - - cornea (EHDAA) - EHDAA:10199 - - - - - - - - - optic chiasma (EHDAA) - EHDAA:10227 - - - - - - - - - umbilical artery (EHDAA) - EHDAA:1026 - - - - - - - - - umbilical vein (EHDAA) - EHDAA:1034 - - - - - - - - - extraembryonic endoderm (EHDAA) - EHDAA:105 - - - - - - - - - masseter muscle (EHDAA) - EHDAA:10561 - - - - - - - - - temporalis muscle (EHDAA) - EHDAA:10565 - - - - - - - - - sartorius muscle (EHDAA) - EHDAA:10583 - - - - - - - - - vertebral bone 1 (EHDAA) - EHDAA:10606 - - - - - - - - - vertebral bone 2 (EHDAA) - EHDAA:10608 - - - - - - - - - foramen ovale of skull (EHDAA) - EHDAA:10627 - - - - - - - - - foramen rotundum (EHDAA) - EHDAA:10629 - - - - - - - - - jugular foramen (EHDAA) - EHDAA:10631 - - - - - - - - - optic foramen (EHDAA) - EHDAA:10646 - - - - - - - - - orbital fissure (EHDAA) - EHDAA:10648 - - - - - - - - - superior orbital fissure (EHDAA) - EHDAA:10650 - - - - - - - - - acetabular part of hip bone (EHDAA) - EHDAA:10661 - - - - - - - - - pharyngeal arch 3 (EHDAA) - EHDAA:1080 - - - - - - - - - 3rd arch pharyngeal cleft (EHDAA) - EHDAA:1082 - - - - - - - - - pharyngeal pouch (EHDAA) - EHDAA:1086 - - - - - - - - - 3rd arch mesenchyme (EHDAA) - EHDAA:1094 - - - - - - - - - optic neural crest (EHDAA) - EHDAA:1122 - - - - - - - - - mesoderm (EHDAA) - EHDAA:124 - - - - - - - - - notochord (EHDAA) - EHDAA:1241 - - - - - - - - - common dorsal aorta (EHDAA) - EHDAA:1251 - - - - - - - - - cardiac atrium (EHDAA) - EHDAA:1265 - - - - - - - - - common atrial chamber (EHDAA) - EHDAA:1267 - - - - - - - - - cytotrophoblast (EHDAA) - EHDAA:127 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:1271 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:1279 - - - - - - - - - syncytiotrophoblast (EHDAA) - EHDAA:129 - - - - - - - - - cardinal vein (EHDAA) - EHDAA:1310 - - - - - - - - - anterior cardinal vein (EHDAA) - EHDAA:1312 - - - - - - - - - common cardinal vein (EHDAA) - EHDAA:1314 - - - - - - - - - posterior cardinal vein (EHDAA) - EHDAA:1316 - - - - - - - - - optic recess of third ventricle (EHDAA) - EHDAA:1343 - - - - - - - - - early prosencephalic vesicle (EHDAA) - EHDAA:1356 - - - - - - - - - amnion (EHDAA) - EHDAA:136 - - - - - - - - - pia mater (EHDAA) - EHDAA:1367 - - - - - - - - - amniotic ectoderm (EHDAA) - EHDAA:138 - - - - - - - - - amniotic mesoderm (EHDAA) - EHDAA:140 - - - - - - - - - extraembryonic coelomic cavity (EHDAA) - EHDAA:146 - - - - - - - - - facio-acoustic VII-VIII preganglion complex (EHDAA) - EHDAA:1477 - - - - - - - - - glossopharyngeal IX preganglion (EHDAA) - EHDAA:1479 - - - - - - - - - external ectoderm (EHDAA) - EHDAA:1494 - - - - - - - - - neurectoderm (EHDAA) - EHDAA:1498 - - - - - - - - - chorion membrane (EHDAA) - EHDAA:150 - - - - - - - - - nose (EHDAA) - EHDAA:1502 - - - - - - - - - olfactory placode (EHDAA) - EHDAA:1504 - - - - - - - - - cytotrophoblast (EHDAA) - EHDAA:152 - - - - - - - - - hepatic diverticulum (EHDAA) - EHDAA:1530 - - - - - - - - - chorionic mesenchyme (EHDAA) - EHDAA:154 - - - - - - - - - lung (EHDAA) - EHDAA:1554 - - - - - - - - - chorion syncytiotrophoblast (EHDAA) - EHDAA:156 - - - - - - - - - respiratory tract (EHDAA) - EHDAA:1568 - - - - - - - - - umbilical cord (EHDAA) - EHDAA:158 - - - - - - - - - mesonephros (EHDAA) - EHDAA:1581 - - - - - - - - - mesonephric duct (EHDAA) - EHDAA:1590 - - - - - - - - - post-anal tail bud (EHDAA) - EHDAA:1595 - - - - - - - - - mesoderm (EHDAA) - EHDAA:160 - - - - - - - - - yolk sac (EHDAA) - EHDAA:164 - - - - - - - - - yolk sac endoderm (EHDAA) - EHDAA:166 - - - - - - - - - pharyngeal arch 4 (EHDAA) - EHDAA:1663 - - - - - - - - - 4th arch pharyngeal cleft (EHDAA) - EHDAA:1665 - - - - - - - - - pharyngeal pouch (EHDAA) - EHDAA:1669 - - - - - - - - - 4th arch mesenchyme (EHDAA) - EHDAA:1677 - - - - - - - - - mesenchyme of yolk sac (EHDAA) - EHDAA:168 - - - - - - - - - limb (EHDAA) - EHDAA:1697 - - - - - - - - - forelimb bud (EHDAA) - EHDAA:1699 - - - - - - - - - mesoderm blood island (EHDAA) - EHDAA:170 - - - - - - - - - pectoral appendage bud mesenchyme (EHDAA) - EHDAA:1703 - - - - - - - - - dermatome (EHDAA) - EHDAA:1719 - - - - - - - - - myotome (EHDAA) - EHDAA:1721 - - - - - - - - - dermatome (EHDAA) - EHDAA:1725 - - - - - - - - - myotome (EHDAA) - EHDAA:1727 - - - - - - - - - dermatome (EHDAA) - EHDAA:1731 - - - - - - - - - myotome (EHDAA) - EHDAA:1733 - - - - - - - - - dermatome (EHDAA) - EHDAA:1737 - - - - - - - - - myotome (EHDAA) - EHDAA:1739 - - - - - - - - - lateral migration pathway NC-derived mesenchyme (EHDAA) - EHDAA:1745 - - - - - - - - - medial migration pathway NC-derived mesenchyme (EHDAA) - EHDAA:1747 - - - - - - - - - entire embryonic mesenchyme (EHDAA) - EHDAA:177 - - - - - - - - - head mesenchyme (EHDAA) - EHDAA:179 - - - - - - - - - prechordal plate (EHDAA) - EHDAA:181 - - - - - - - - - mesoderm (EHDAA) - EHDAA:183 - - - - - - - - - primitive streak (EHDAA) - EHDAA:185 - - - - - - - - - valve (EHDAA) - EHDAA:1892 - - - - - - - - - interatrial septum (EHDAA) - EHDAA:1896 - - - - - - - - - atrial septum primum (EHDAA) - EHDAA:1900 - - - - - - - - - cardiac ventricle (EHDAA) - EHDAA:1912 - - - - - - - - - conotruncal ridge (EHDAA) - EHDAA:1914 - - - - - - - - - interventricular groove (EHDAA) - EHDAA:1918 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:1922 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:1930 - - - - - - - - - - venous vitelline plexus (EHDAA) - vitelline venous plexus (EHDAA) - EHDAA:1945 - - - - - - - - - pia mater (EHDAA) - EHDAA:1961 - - - - - - - - - diencephalon (EHDAA) - EHDAA:1969 - - - - - - - - - optic recess of third ventricle (EHDAA) - EHDAA:1973 - - - - - - - - - floor plate of diencephalon (EHDAA) - EHDAA:1975 - - - - - - - - - diencephalon lateral wall (EHDAA) - EHDAA:1977 - - - - - - - - - roof plate of diencephalon (EHDAA) - EHDAA:1979 - - - - - - - - - lamina terminalis of neural tube (EHDAA) - EHDAA:1983 - - - - - - - - - early telencephalic vesicle (EHDAA) - EHDAA:1993 - - - - - - - - - pia mater (EHDAA) - EHDAA:2001 - - - - - - - - - mesenchyme of yolk sac (EHDAA) - EHDAA:205 - - - - - - - - - blood island (EHDAA) - EHDAA:207 - - - - - - - - - pia mater (EHDAA) - EHDAA:2099 - - - - - - - - - trigeminal ganglion (EHDAA) - EHDAA:2113 - - - - - - - - - cloacal membrane (EHDAA) - EHDAA:214 - - - - - - - - - thyroid gland (EHDAA) - EHDAA:2148 - - - - - - - - - future foramen cecum (EHDAA) - EHDAA:2150 - - - - - - - - - gland (EHDAA) - EHDAA:2161 - - - - - - - - - pancreas primordium (EHDAA) - EHDAA:2163 - - - - - - - - - definitive endoderm (EHDAA) - EHDAA:218 - - - - - - - - - oral gland (EHDAA) - EHDAA:2181 - - - - - - - - - pituitary gland (EHDAA) - EHDAA:2183 - - - - - - - - - oral epithelium (EHDAA) - EHDAA:2187 - - - - - - - - - hepatobiliary system (EHDAA) - EHDAA:2189 - - - - - - - - - liver (EHDAA) - EHDAA:2197 - - - - - - - - - liver parenchyma (EHDAA) - EHDAA:2201 - - - - - - - - - respiratory system (EHDAA) - EHDAA:2203 - - - - - - - - - lung (EHDAA) - EHDAA:2205 - - - - - - - - - respiratory tract (EHDAA) - EHDAA:2219 - - - - - - - - - notochordal process (EHDAA) - EHDAA:224 - - - - - - - - - greater sac (EHDAA) - EHDAA:2327 - - - - - - - - - mesothelium (EHDAA) - EHDAA:2331 - - - - - - - - - lesser sac (EHDAA) - EHDAA:2335 - - - - - - - - - mesothelium of omental bursa (EHDAA) - EHDAA:2339 - - - - - - - - - superior recess of lesser sac (EHDAA) - EHDAA:2343 - - - - - - - - - mesothelium (EHDAA) - EHDAA:2349 - - - - - - - - - hindlimb bud (EHDAA) - EHDAA:2358 - - - - - - - - - blood vessel (EHDAA) - EHDAA:240 - - - - - - - - - intraembryonic coelom (EHDAA) - EHDAA:251 - - - - - - - - - neurectoderm (EHDAA) - EHDAA:255 - - - - - - - - - iliac artery (EHDAA) - EHDAA:2551 - - - - - - - - - common iliac artery (EHDAA) - EHDAA:2553 - - - - - - - - - median sacral artery (EHDAA) - EHDAA:2556 - - - - - - - - - non-neural ectoderm (EHDAA) - EHDAA:257 - - - - - - - - - endocardial cushion (EHDAA) - EHDAA:2586 - - - - - - - - - aortico-pulmonary spiral septum (EHDAA) - EHDAA:2592 - - - - - - - - - interventricular septum (EHDAA) - EHDAA:2603 - - - - - - - - - interventricular septum muscular part (EHDAA) - EHDAA:2607 - - - - - - - - - pulmonary vein (EHDAA) - EHDAA:2629 - - - - - - - - - subcardinal vein (EHDAA) - EHDAA:2631 - - - - - - - - - notochordal plate (EHDAA) - EHDAA:264 - - - - - - - - - brain (EHDAA) - EHDAA:2641 - - - - - - - - - future forebrain (EHDAA) - EHDAA:2643 - - - - - - - - - diencephalon (EHDAA) - EHDAA:2645 - - - - - - - - - optic recess of third ventricle (EHDAA) - EHDAA:2649 - - - - - - - - - floor plate of diencephalon (EHDAA) - EHDAA:2651 - - - - - - - - - roof plate of diencephalon (EHDAA) - EHDAA:2657 - - - - - - - - - lamina terminalis of neural tube (EHDAA) - EHDAA:2661 - - - - - - - - - early telencephalic vesicle (EHDAA) - EHDAA:2671 - - - - - - - - - pia mater (EHDAA) - EHDAA:2685 - - - - - - - - - zygote stage (EHDAA) - EHDAA:27 - - - - - - - - - pia mater (EHDAA) - EHDAA:2833 - - - - - - - - - glossopharyngeal ganglion (EHDAA) - EHDAA:2838 - - - - - - - - - superior glossopharyngeal IX ganglion (EHDAA) - EHDAA:2842 - - - - - - - - - nerve (EHDAA) - EHDAA:2851 - - - - - - - - - accessory XI nerve (EHDAA) - EHDAA:2855 - - - - - - - - - hypoglossal nerve (EHDAA) - EHDAA:2859 - - - - - - - - - spinal cord (EHDAA) - EHDAA:2863 - - - - - - - - - meninx of spinal cord (EHDAA) - EHDAA:2865 - - - - - - - - - pia mater (EHDAA) - EHDAA:2867 - - - - - - - - - neural tube (EHDAA) - EHDAA:2869 - - - - - - - - - floor plate of neural tube (EHDAA) - EHDAA:2871 - - - - - - - - - neural tube lateral wall (EHDAA) - EHDAA:2873 - - - - - - - - - neural tube lumen (EHDAA) - EHDAA:2889 - - - - - - - - - roof plate (EHDAA) - EHDAA:2891 - - - - - - - - - peripheral nervous system (EHDAA) - EHDAA:2893 - - - - - - - - - ganglion (EHDAA) - EHDAA:2897 - - - - - - - - - dorsal root ganglion (EHDAA) - EHDAA:2899 - - - - - - - - - lens placode (EHDAA) - EHDAA:2908 - - - - - - - - - eye mesenchyme (EHDAA) - EHDAA:2910 - - - - - - - - - optic cup (EHDAA) - EHDAA:2912 - - - - - - - - - skeletal muscle tissue of eye (EHDAA) - EHDAA:2923 - - - - - - - - - extrinsic ocular pre-muscle mass (EHDAA) - EHDAA:2925 - - - - - - - - - anal region (EHDAA) - EHDAA:2931 - - - - - - - - - cloacal membrane (EHDAA) - EHDAA:2933 - - - - - - - - - esophagus (EHDAA) - EHDAA:2937 - - - - - - - - - mesentery of oesophagus (EHDAA) - EHDAA:2943 - - - - - - - - - dorsal meso-oesophagus (EHDAA) - EHDAA:2945 - - - - - - - - - chordate pharynx (EHDAA) - EHDAA:2947 - - - - - - - - - mesothelium (EHDAA) - EHDAA:295 - - - - - - - - - future tongue (EHDAA) - EHDAA:2951 - - - - - - - - - pharyngeal gland (EHDAA) - EHDAA:2967 - - - - - - - - - thymus primordium (EHDAA) - EHDAA:2969 - - - - - - - - - thyroid gland (EHDAA) - EHDAA:2975 - - - - - - - - - future foramen cecum (EHDAA) - EHDAA:2977 - - - - - - - - - left lung lobe (EHDAA) - EHDAA:2981 - - - - - - - - - ultimobranchial body (EHDAA) - EHDAA:2987 - - - - - - - - - stomach (EHDAA) - EHDAA:2993 - - - - - - - - - mesentery of stomach (EHDAA) - EHDAA:2999 - - - - - - - - - future brain (EHDAA) - EHDAA:300 - - - - - - - - - dorsal mesogastrium (EHDAA) - EHDAA:3001 - - - - - - - - - spleen primordium (EHDAA) - EHDAA:3003 - - - - - - - - - ventral mesogastrium (EHDAA) - EHDAA:3005 - - - - - - - - - dorsal pancreatic duct (EHDAA) - EHDAA:3013 - - - - - - - - - parenchyma (EHDAA) - EHDAA:3015 - - - - - - - - - dorsal mesentery (EHDAA) - EHDAA:3019 - - - - - - - - - mesentery of midgut (EHDAA) - EHDAA:3031 - - - - - - - - - dorsal mesentery (EHDAA) - EHDAA:3033 - - - - - - - - - cystic duct (EHDAA) - EHDAA:3045 - - - - - - - - - gallbladder primordium (EHDAA) - EHDAA:3047 - - - - - - - - - hepatic duct (EHDAA) - EHDAA:3049 - - - - - - - - - extrahepatic bile duct epithelium (EHDAA) - EHDAA:3051 - - - - - - - - - intrahepatic bile duct epithelium (EHDAA) - EHDAA:3053 - - - - - - - - - main bronchus (EHDAA) - EHDAA:3072 - - - - - - - - - endothelium of main bronchus (EHDAA) - EHDAA:3076 - - - - - - - - - trachea (EHDAA) - EHDAA:3078 - - - - - - - - - endothelium of trachea (EHDAA) - EHDAA:3082 - - - - - - - - - metanephros (EHDAA) - EHDAA:3089 - - - - - - - - - ureteric bud (EHDAA) - EHDAA:3091 - - - - - - - - - zona pellucida (EHDAA) - EHDAA:31 - - - - - - - - - body-wall mesenchyme (EHDAA) - EHDAA:3217 - - - - - - - - - hyoid artery (EHDAA) - EHDAA:3342 - - - - - - - - - posterior communicating artery (EHDAA) - EHDAA:3352 - - - - - - - - - superior mesenteric artery (EHDAA) - EHDAA:3358 - - - - - - - - - atrial septum secundum (EHDAA) - EHDAA:3406 - - - - - - - - - parietal serous pericardium (EHDAA) - EHDAA:3422 - - - - - - - - - intersubcardinal venous anastomosis (EHDAA) - EHDAA:3452 - - - - - - - - - neural plate (EHDAA) - EHDAA:346 - - - - - - - - - forebrain (EHDAA) - EHDAA:3470 - - - - - - - - - diencephalon (EHDAA) - EHDAA:3472 - - - - - - - - - diencephalic part of interventricular foramen (EHDAA) - EHDAA:3476 - - - - - - - - - optic recess of third ventricle (EHDAA) - EHDAA:3478 - - - - - - - - - floor plate of diencephalon (EHDAA) - EHDAA:3480 - - - - - - - - - roof plate of diencephalon (EHDAA) - EHDAA:3494 - - - - - - - - - floor plate of telencephalon (EHDAA) - EHDAA:3498 - - - - - - - - - external ectoderm (EHDAA) - EHDAA:350 - - - - - - - - - lamina terminalis of cerebral hemisphere (EHDAA) - EHDAA:3500 - - - - - - - - - telencephalic ventricle (EHDAA) - EHDAA:3502 - - - - - - - - - telencephalon lateral wall (EHDAA) - EHDAA:3504 - - - - - - - - - roof plate of telencephalon (EHDAA) - EHDAA:3512 - - - - - - - - - hindbrain (EHDAA) - EHDAA:3514 - - - - - - - - - mesencephalic neural crest (EHDAA) - EHDAA:360 - - - - - - - - - rhombencephalon neural crest (EHDAA) - EHDAA:362 - - - - - - - - - head paraxial mesoderm (EHDAA) - EHDAA:364 - - - - - - - - - somite (EHDAA) - EHDAA:366 - - - - - - - - - meninx of hindbrain (EHDAA) - EHDAA:3688 - - - - - - - - - pia mater (EHDAA) - EHDAA:3692 - - - - - - - - - midbrain (EHDAA) - EHDAA:3694 - - - - - - - - - midbrain cerebral aqueduct (EHDAA) - EHDAA:3696 - - - - - - - - - floor plate of midbrain (EHDAA) - EHDAA:3698 - - - - - - - - - midbrain lateral wall (EHDAA) - EHDAA:3700 - - - - - - - - - meninx of midbrain (EHDAA) - EHDAA:3708 - - - - - - - - - pia mater (EHDAA) - EHDAA:3710 - - - - - - - - - roof plate of midbrain (EHDAA) - EHDAA:3712 - - - - - - - - - chorda tympani branch of facial nerve (EHDAA) - EHDAA:3719 - - - - - - - - - facial nerve (EHDAA) - EHDAA:3729 - - - - - - - - - glossopharyngeal nerve (EHDAA) - EHDAA:3733 - - - - - - - - - oculomotor nerve (EHDAA) - EHDAA:3736 - - - - - - - - - trigeminal nerve (EHDAA) - EHDAA:3738 - - - - - - - - - ophthalmic nerve (EHDAA) - EHDAA:3744 - - - - - - - - - vestibular nerve (EHDAA) - EHDAA:3749 - - - - - - - - - autonomic nervous system (EHDAA) - EHDAA:3767 - - - - - - - - - sympathetic nervous system (EHDAA) - EHDAA:3769 - - - - - - - - - trunk mesenchyme (EHDAA) - EHDAA:377 - - - - - - - - - nerve (EHDAA) - EHDAA:3776 - - - - - - - - - segmental spinal nerve (EHDAA) - EHDAA:3778 - - - - - - - - - nerve plexus (EHDAA) - EHDAA:3780 - - - - - - - - - brachial nerve plexus (EHDAA) - EHDAA:3782 - - - - - - - - - external ear (EHDAA) - EHDAA:3786 - - - - - - - - - pharyngeal membrane of 1st arch (EHDAA) - EHDAA:3788 - - - - - - - - - lateral plate mesoderm (EHDAA) - EHDAA:379 - - - - - - - - - embryo (EHDAA) - EHDAA:38 - - - - - - - - - lens pit (EHDAA) - EHDAA:3809 - - - - - - - - - somatopleure (EHDAA) - EHDAA:381 - - - - - - - - - optic stalk (EHDAA) - EHDAA:3816 - - - - - - - - - splanchnopleure (EHDAA) - EHDAA:383 - - - - - - - - - foregut region of duodenum (EHDAA) - EHDAA:3830 - - - - - - - - - cardiogenic splanchnic mesoderm (EHDAA) - EHDAA:385 - - - - - - - - - inferior parathyroid gland (EHDAA) - EHDAA:3864 - - - - - - - - - inferior parathyroid epithelium (EHDAA) - EHDAA:3868 - - - - - - - - - superior parathyroid gland (EHDAA) - EHDAA:3870 - - - - - - - - - superior parathyroid epithelium (EHDAA) - EHDAA:3874 - - - - - - - - - parenchyma (EHDAA) - EHDAA:3905 - - - - - - - - - caecum (EHDAA) - EHDAA:3913 - - - - - - - - - anatomical system (EHDAA) - EHDAA:392 - - - - - - - - - dorsal mesentery (EHDAA) - EHDAA:3921 - - - - - - - - - dorsal mesentery (EHDAA) - EHDAA:3934 - - - - - - - - - midgut region of duodenum (EHDAA) - EHDAA:3937 - - - - - - - - - cardiovascular system (EHDAA) - EHDAA:394 - - - - - - - - - dorsal mesentery (EHDAA) - EHDAA:3957 - - - - - - - - - arterial system (EHDAA) - EHDAA:396 - - - - - - - - - dorsal mesentery (EHDAA) - EHDAA:3971 - - - - - - - - - pharyngeal arch artery (EHDAA) - EHDAA:398 - - - - - - - - - common bile duct (EHDAA) - EHDAA:3981 - - - - - - - - - left hepatic duct (EHDAA) - EHDAA:3990 - - - - - - - - - right hepatic duct (EHDAA) - EHDAA:3992 - - - - - - - - - left lobe of liver (EHDAA) - EHDAA:3995 - - - - - - - - - parenchyma (EHDAA) - EHDAA:3999 - - - - - - - - - inner cell mass (EHDAA) - EHDAA:40 - - - - - - - - - right lobe of liver (EHDAA) - EHDAA:4001 - - - - - - - - - parenchyma (EHDAA) - EHDAA:4005 - - - - - - - - - dorsal aorta (EHDAA) - EHDAA:402 - - - - - - - - - epithelium of gonad (EHDAA) - EHDAA:4032 - - - - - - - - - left dorsal aorta (EHDAA) - EHDAA:404 - - - - - - - - - metanephric mesenchyme (EHDAA) - EHDAA:4041 - - - - - - - - - right dorsal aorta (EHDAA) - EHDAA:406 - - - - - - - - - internal carotid artery (EHDAA) - EHDAA:408 - - - - - - - - - umbilical artery (EHDAA) - EHDAA:410 - - - - - - - - - future central tendon (EHDAA) - EHDAA:4118 - - - - - - - - - pleuropericardial canals (EHDAA) - EHDAA:4122 - - - - - - - - - pleuropericardial folds (EHDAA) - EHDAA:4126 - - - - - - - - - pleuroperitoneal canal (EHDAA) - EHDAA:4128 - - - - - - - - - arm (EHDAA) - EHDAA:4164 - - - - - - - - - elbow (EHDAA) - EHDAA:4166 - - - - - - - - - epithelium of elbow (EHDAA) - EHDAA:4168 - - - - - - - - - mesenchyme of elbow (EHDAA) - EHDAA:4170 - - - - - - - - - forelimb zeugopod (EHDAA) - EHDAA:4172 - - - - - - - - - epithelium of forearm (EHDAA) - EHDAA:4174 - - - - - - - - - mesenchyme of forearm (EHDAA) - EHDAA:4176 - - - - - - - - - radius-ulna pre-cartilage condensation (EHDAA) - EHDAA:4178 - - - - - - - - - blood (EHDAA) - EHDAA:418 - - - - - - - - - shoulder (EHDAA) - EHDAA:4180 - - - - - - - - - epithelium of shoulder (EHDAA) - EHDAA:4182 - - - - - - - - - mesenchyme of shoulder (EHDAA) - EHDAA:4184 - - - - - - - - - forelimb stylopod (EHDAA) - EHDAA:4186 - - - - - - - - - humerus pre-cartilage condensation (EHDAA) - EHDAA:4192 - - - - - - - - - embryonic handplate (EHDAA) - EHDAA:4194 - - - - - - - - - inner cell mass derived epiblast (EHDAA) - EHDAA:42 - - - - - - - - - heart (EHDAA) - EHDAA:420 - - - - - - - - - primitive heart tube (EHDAA) - EHDAA:424 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:426 - - - - - - - - - mesentery of heart (EHDAA) - EHDAA:432 - - - - - - - - - external iliac artery (EHDAA) - EHDAA:4337 - - - - - - - - - dorsal mesocardium (EHDAA) - EHDAA:434 - - - - - - - - - intersomitic artery (EHDAA) - EHDAA:4340 - - - - - - - - - mesenteric artery (EHDAA) - EHDAA:4343 - - - - - - - - - inferior mesenteric artery (EHDAA) - EHDAA:4345 - - - - - - - - - pulmonary artery (EHDAA) - EHDAA:4351 - - - - - - - - - spinal artery (EHDAA) - EHDAA:4355 - - - - - - - - - subclavian artery (EHDAA) - EHDAA:4357 - - - - - - - - - primitive heart tube (EHDAA) - EHDAA:436 - - - - - - - - - bulbus cordis (EHDAA) - EHDAA:438 - - - - - - - - - inner cell mass derived hypoblast (EHDAA) - EHDAA:44 - - - - - - - - - outflow tract pulmonary component (EHDAA) - EHDAA:4401 - - - - - - - - - valve (EHDAA) - EHDAA:4406 - - - - - - - - - semi-lunar valve (EHDAA) - EHDAA:4408 - - - - - - - - - aortic valve (EHDAA) - EHDAA:4410 - - - - - - - - - pulmonary valve (EHDAA) - EHDAA:4412 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:442 - - - - - - - - - mesenteric vein (EHDAA) - EHDAA:4442 - - - - - - - - - subclavian vein (EHDAA) - EHDAA:4455 - - - - - - - - - - gland (EHDAA) - gland of diencephalon (EHDAA) - EHDAA:4475 - - - - - - - - - pituitary gland (EHDAA) - EHDAA:4477 - - - - - - - - - infundibular recess of 3rd ventricle (EHDAA) - EHDAA:4479 - - - - - - - - - lamina terminalis of cerebral hemisphere (EHDAA) - EHDAA:4498 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:450 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:458 - - - - - - - - - extraembryonic structure (EHDAA) - EHDAA:46 - - - - - - - - - outflow tract (EHDAA) - EHDAA:464 - - - - - - - - - parasympathetic nervous system (EHDAA) - EHDAA:4655 - - - - - - - - - nerve (EHDAA) - EHDAA:4657 - - - - - - - - - vagus X nerve trunk (EHDAA) - EHDAA:4659 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:466 - - - - - - - - - ganglion (EHDAA) - EHDAA:4662 - - - - - - - - - thoracic ganglion (EHDAA) - EHDAA:4664 - - - - - - - - - lumbosacral nerve plexus (EHDAA) - EHDAA:4673 - - - - - - - - - nerve trunk (EHDAA) - EHDAA:4675 - - - - - - - - - phrenic nerve (EHDAA) - EHDAA:4677 - - - - - - - - - auditory hillocks (EHDAA) - EHDAA:4685 - - - - - - - - - membranous labyrinth (EHDAA) - EHDAA:4698 - - - - - - - - - cartilaginous otic capsule (EHDAA) - EHDAA:4704 - - - - - - - - - vestibular labyrinth (EHDAA) - EHDAA:4706 - - - - - - - - - saccule of membranous labyrinth (EHDAA) - EHDAA:4712 - - - - - - - - - cochlear duct of membranous labyrinth (EHDAA) - EHDAA:4718 - - - - - - - - - epithelium of cochlear duct (EHDAA) - EHDAA:4722 - - - - - - - - - epithelium of saccule (EHDAA) - EHDAA:4724 - - - - - - - - - utricle of membranous labyrinth (EHDAA) - EHDAA:4726 - - - - - - - - - epithelium of utricle (EHDAA) - EHDAA:4730 - - - - - - - - - hyaloid cavity (EHDAA) - EHDAA:4733 - - - - - - - - - hyaloid vessel (EHDAA) - EHDAA:4735 - - - - - - - - - lens vesicle (EHDAA) - EHDAA:4737 - - - - - - - - - capsule (EHDAA) - EHDAA:4739 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:474 - - - - - - - - - lens fiber (EHDAA) - EHDAA:4745 - - - - - - - - - perioptic mesenchyme (EHDAA) - EHDAA:4751 - - - - - - - - - retina (EHDAA) - EHDAA:4757 - - - - - - - - - optic fissure (EHDAA) - EHDAA:4759 - - - - - - - - - embryonic intraretinal space (EHDAA) - EHDAA:4761 - - - - - - - - - retinal neural layer (EHDAA) - EHDAA:4763 - - - - - - - - - pigmented layer of retina (EHDAA) - EHDAA:4765 - - - - - - - - - nasolacrimal groove (EHDAA) - EHDAA:4770 - - - - - - - - - olfactory pit (EHDAA) - EHDAA:4772 - - - - - - - - - olfactory epithelium (EHDAA) - EHDAA:4774 - - - - - - - - - embryonic nasal process (EHDAA) - EHDAA:4776 - - - - - - - - - frontonasal prominence (EHDAA) - EHDAA:4778 - - - - - - - - - embryonic frontal process (EHDAA) - EHDAA:4780 - - - - - - - - - external ectoderm (EHDAA) - EHDAA:4784 - - - - - - - - - lateral nasal prominence (EHDAA) - EHDAA:4786 - - - - - - - - - external ectoderm (EHDAA) - EHDAA:4790 - - - - - - - - - medial nasal prominence (EHDAA) - EHDAA:4792 - - - - - - - - - external ectoderm (EHDAA) - EHDAA:4796 - - - - - - - - - sinus venosus (EHDAA) - EHDAA:480 - - - - - - - - - left horn of sinus venosus (EHDAA) - EHDAA:482 - - - - - - - - - right horn of sinus venosus (EHDAA) - EHDAA:484 - - - - - - - - - fundus of stomach (EHDAA) - EHDAA:4844 - - - - - - - - - falciform ligament (EHDAA) - EHDAA:4856 - - - - - - - - - lesser omentum (EHDAA) - EHDAA:4858 - - - - - - - - - venous system (EHDAA) - EHDAA:486 - - - - - - - - - pylorus (EHDAA) - EHDAA:4860 - - - - - - - - - umbilical vein (EHDAA) - EHDAA:488 - - - - - - - - - embryonic cloaca (EHDAA) - EHDAA:4895 - - - - - - - - - left lung (EHDAA) - EHDAA:4947 - - - - - - - - - lower lobe of left lung (EHDAA) - EHDAA:4949 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:4955 - - - - - - - - - upper lobe of left lung (EHDAA) - EHDAA:4957 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:4963 - - - - - - - - - left lung hilus (EHDAA) - EHDAA:4965 - - - - - - - - - right lung (EHDAA) - EHDAA:4969 - - - - - - - - - right lung accessory lobe (EHDAA) - EHDAA:4971 - - - - - - - - - right lung accessory lobe endothelium (EHDAA) - EHDAA:4975 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:4977 - - - - - - - - - lower lobe of right lung (EHDAA) - EHDAA:4979 - - - - - - - - - right lung caudal lobe endothelium (EHDAA) - EHDAA:4983 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:4985 - - - - - - - - - upper lobe of right lung (EHDAA) - EHDAA:4987 - - - - - - - - - right lung cranial lobe endothelium (EHDAA) - EHDAA:4991 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:4993 - - - - - - - - - right lung hilus (EHDAA) - EHDAA:4995 - - - - - - - - - blastocele (EHDAA) - EHDAA:50 - - - - - - - - - sense organ (EHDAA) - EHDAA:500 - - - - - - - - - epithelium of main bronchus (EHDAA) - EHDAA:5003 - - - - - - - - - epithelium of trachea (EHDAA) - EHDAA:5007 - - - - - - - - - gonad mesenchyme (EHDAA) - EHDAA:5012 - - - - - - - - - ear (EHDAA) - EHDAA:502 - - - - - - - - - metanephric mesenchyme (EHDAA) - EHDAA:5021 - - - - - - - - - primitive urogenital sinus (EHDAA) - EHDAA:5029 - - - - - - - - - skeletal muscle organ (EHDAA) - EHDAA:5035 - - - - - - - - - internal ear (EHDAA) - EHDAA:504 - - - - - - - - - skeletal muscle organ (EHDAA) - EHDAA:5043 - - - - - - - - - skeleton (EHDAA) - EHDAA:5047 - - - - - - - - - postcranial axial skeleton (EHDAA) - EHDAA:5049 - - - - - - - - - cervical region of vertebral column (EHDAA) - EHDAA:5051 - - - - - - - - - lumbar region of vertebral column (EHDAA) - EHDAA:5055 - - - - - - - - - sacral region of vertebral column (EHDAA) - EHDAA:5059 - - - - - - - - - otic placode (EHDAA) - EHDAA:506 - - - - - - - - - thoracic region of vertebral column (EHDAA) - EHDAA:5063 - - - - - - - - - epithelium of otic placode (EHDAA) - EHDAA:510 - - - - - - - - - cervical sinus of His (EHDAA) - EHDAA:5105 - - - - - - - - - viscus (EHDAA) - EHDAA:512 - - - - - - - - - alimentary part of gastrointestinal system (EHDAA) - EHDAA:514 - - - - - - - - - embryonic footplate (EHDAA) - EHDAA:5143 - - - - - - - - - epithelium of footplate (EHDAA) - EHDAA:5145 - - - - - - - - - mesenchyme of footplate (EHDAA) - EHDAA:5149 - - - - - - - - - leg (EHDAA) - EHDAA:5151 - - - - - - - - - hip (EHDAA) - EHDAA:5153 - - - - - - - - - epithelium of hip (EHDAA) - EHDAA:5155 - - - - - - - - - mesenchyme of hip (EHDAA) - EHDAA:5157 - - - - - - - - - knee (EHDAA) - EHDAA:5159 - - - - - - - - - epithelium of knee (EHDAA) - EHDAA:5161 - - - - - - - - - mesenchyme of knee (EHDAA) - EHDAA:5163 - - - - - - - - - hindlimb zeugopod (EHDAA) - EHDAA:5165 - - - - - - - - - hindlimb stylopod (EHDAA) - EHDAA:5171 - - - - - - - - - digestive tract (EHDAA) - EHDAA:518 - - - - - - - - - carpal region (EHDAA) - EHDAA:5196 - - - - - - - - - epithelium of carpal region (EHDAA) - EHDAA:5198 - - - - - - - - - foregut (EHDAA) - EHDAA:520 - - - - - - - - - mesenchyme of carpal region (EHDAA) - EHDAA:5200 - - - - - - - - - endoderm of foregut (EHDAA) - EHDAA:524 - - - - - - - - - foregut-midgut junction (EHDAA) - EHDAA:526 - - - - - - - - - basilar artery (EHDAA) - EHDAA:5285 - - - - - - - - - cerebellar artery (EHDAA) - EHDAA:5290 - - - - - - - - - cerebral artery (EHDAA) - EHDAA:5294 - - - - - - - - - anterior cerebral artery (EHDAA) - EHDAA:5296 - - - - - - - - - middle cerebral artery (EHDAA) - EHDAA:5298 - - - - - - - - - intercostal artery (EHDAA) - EHDAA:5307 - - - - - - - - - superior mesenteric artery (EHDAA) - EHDAA:5313 - - - - - - - - - renal artery (EHDAA) - EHDAA:5321 - - - - - - - - - vertebral artery (EHDAA) - EHDAA:5328 - - - - - - - - - left atrioventricular canal (EHDAA) - EHDAA:5336 - - - - - - - - - right atrioventricular canal (EHDAA) - EHDAA:5338 - - - - - - - - - mouth-foregut junction (EHDAA) - EHDAA:534 - - - - - - - - - left atrium auricular region (EHDAA) - EHDAA:5343 - - - - - - - - - right atrium auricular region (EHDAA) - EHDAA:5352 - - - - - - - - - buccopharyngeal membrane (EHDAA) - EHDAA:536 - - - - - - - - - pericardium (EHDAA) - EHDAA:5376 - - - - - - - - - parietal serous pericardium (EHDAA) - EHDAA:5378 - - - - - - - - - ductus venosus (EHDAA) - EHDAA:5402 - - - - - - - - - internal jugular vein (EHDAA) - EHDAA:5407 - - - - - - - - - superior mesenteric vein (EHDAA) - EHDAA:5414 - - - - - - - - - mouth (EHDAA) - EHDAA:542 - - - - - - - - - epithalamus (EHDAA) - EHDAA:5433 - - - - - - - - - epithalamus mantle layer (EHDAA) - EHDAA:5435 - - - - - - - - - epithalamus ventricular layer (EHDAA) - EHDAA:5437 - - - - - - - - - hypothalamus (EHDAA) - EHDAA:5446 - - - - - - - - - meninx of diencephalon (EHDAA) - EHDAA:5458 - - - - - - - - - cerebral cortex (EHDAA) - EHDAA:5464 - - - - - - - - - primitive groove (EHDAA) - EHDAA:547 - - - - - - - - - telencephalic part of interventricular foramen (EHDAA) - EHDAA:5474 - - - - - - - - - meninx of telencephalon (EHDAA) - EHDAA:5476 - - - - - - - - - olfactory lobe (EHDAA) - EHDAA:5480 - - - - - - - - - olfactory cortex (EHDAA) - EHDAA:5482 - - - - - - - - - primitive knot (EHDAA) - EHDAA:549 - - - - - - - - - metencephalon (EHDAA) - EHDAA:5498 - - - - - - - - - floor plate of metencephalon (EHDAA) - EHDAA:5500 - - - - - - - - - primitive pit (EHDAA) - EHDAA:551 - - - - - - - - - roof plate of metencephalon (EHDAA) - EHDAA:5524 - - - - - - - - - myelencephalon (EHDAA) - EHDAA:5526 - - - - - - - - - geniculate ganglion (EHDAA) - EHDAA:5567 - - - - - - - - - vestibulocochlear ganglion (EHDAA) - EHDAA:5569 - - - - - - - - - accessory XI nerve cranial component (EHDAA) - EHDAA:5574 - - - - - - - - - accessory XI nerve spinal component (EHDAA) - EHDAA:5576 - - - - - - - - - trophectoderm (EHDAA) - EHDAA:56 - - - - - - - - - ganglion (EHDAA) - EHDAA:5621 - - - - - - - - - main ciliary ganglion (EHDAA) - EHDAA:5623 - - - - - - - - - pelvic splanchnic nerve (EHDAA) - EHDAA:5628 - - - - - - - - - paravertebral ganglion (EHDAA) - EHDAA:5635 - - - - - - - - - median nerve (EHDAA) - EHDAA:5648 - - - - - - - - - radial nerve (EHDAA) - EHDAA:5650 - - - - - - - - - ulnar nerve (EHDAA) - EHDAA:5652 - - - - - - - - - femoral nerve (EHDAA) - EHDAA:5655 - - - - - - - - - obturator nerve (EHDAA) - EHDAA:5657 - - - - - - - - - sciatic nerve (EHDAA) - EHDAA:5659 - - - - - - - - - middle ear (EHDAA) - EHDAA:5693 - - - - - - - - - auditory ossicle bone (EHDAA) - EHDAA:5697 - - - - - - - - - stapes pre-cartilage condensation (EHDAA) - EHDAA:5699 - - - - - - - - - hyaloid vascular plexus (EHDAA) - EHDAA:5703 - - - - - - - - - tunica vasculosa lentis (EHDAA) - EHDAA:5705 - - - - - - - - - primary vitreous (EHDAA) - EHDAA:5707 - - - - - - - - - pharyngeal arch (EHDAA) - EHDAA:571 - - - - - - - - - extra-ocular muscle (EHDAA) - EHDAA:5729 - - - - - - - - - pharyngeal arch 1 (EHDAA) - EHDAA:573 - - - - - - - - - 1st arch pharyngeal cleft (EHDAA) - EHDAA:575 - - - - - - - - - isthmus of thyroid gland (EHDAA) - EHDAA:5777 - - - - - - - - - midbrain-hindbrain boundary (EHDAA) - EHDAA:5789 - - - - - - - - - pharyngeal pouch (EHDAA) - EHDAA:579 - - - - - - - - - mural trophectoderm (EHDAA) - EHDAA:58 - - - - - - - - - 1st arch mandibular component (EHDAA) - EHDAA:583 - - - - - - - - - rectum (EHDAA) - EHDAA:5836 - - - - - - - - - mandibular process mesenchyme (EHDAA) - EHDAA:5861 - - - - - - - - - mandibular prominence (EHDAA) - EHDAA:5871 - - - - - - - - - mandibular process mesenchyme (EHDAA) - EHDAA:5873 - - - - - - - - - maxillary prominence (EHDAA) - EHDAA:5877 - - - - - - - - - oronasal cavity (EHDAA) - EHDAA:5882 - - - - - - - - - renal system (EHDAA) - EHDAA:5901 - - - - - - - - - mesonephros (EHDAA) - EHDAA:5903 - - - - - - - - - metanephros (EHDAA) - EHDAA:5911 - - - - - - - - - metanephric mesenchyme (EHDAA) - EHDAA:5915 - - - - - - - - - ureteric bud (EHDAA) - EHDAA:5917 - - - - - - - - - primitive urogenital sinus (EHDAA) - EHDAA:5919 - - - - - - - - - urorectal septum (EHDAA) - EHDAA:5921 - - - - - - - - - reproductive system (EHDAA) - EHDAA:5923 - - - - - - - - - undifferentiated genital tubercle (EHDAA) - EHDAA:5925 - - - - - - - - - gonad primordium (EHDAA) - EHDAA:5927 - - - - - - - - - epithelium of gonad (EHDAA) - EHDAA:5931 - - - - - - - - - 1st arch maxillary component (EHDAA) - EHDAA:595 - - - - - - - - - anterior abdominal wall (EHDAA) - EHDAA:5976 - - - - - - - - - skeletal muscle organ (EHDAA) - EHDAA:5978 - - - - - - - - - axial muscle (EHDAA) - EHDAA:5982 - - - - - - - - - skeletal muscle organ (EHDAA) - EHDAA:5984 - - - - - - - - - intercostal muscle (EHDAA) - EHDAA:5988 - - - - - - - - - serratus ventralis pre-muscle mass (EHDAA) - EHDAA:5992 - - - - - - - - - polar trophectoderm (EHDAA) - EHDAA:60 - - - - - - - - - deltoid pre-muscle mass (EHDAA) - EHDAA:6002 - - - - - - - - - notochord (EHDAA) - EHDAA:6021 - - - - - - - - - rib pre-cartilage condensation (EHDAA) - EHDAA:6026 - - - - - - - - - cranium (EHDAA) - EHDAA:6029 - - - - - - - - - cartilaginous neurocranium (EHDAA) - EHDAA:6031 - - - - - - - - - basioccipital pre-cartilage condensation (EHDAA) - EHDAA:6033 - - - - - - - - - temporal bone (EHDAA) - EHDAA:6035 - - - - - - - - - scapula pre-cartilage condensation (EHDAA) - EHDAA:6041 - - - - - - - - - greater omentum (EHDAA) - EHDAA:6071 - - - - - - - - - mesothelium (EHDAA) - EHDAA:6073 - - - - - - - - - inferior recess of lesser sac (EHDAA) - EHDAA:6083 - - - - - - - - - hindlimb (EHDAA) - EHDAA:6094 - - - - - - - - - embryonic footplate (EHDAA) - EHDAA:6096 - - - - - - - - - pharyngeal arch 2 (EHDAA) - EHDAA:611 - - - - - - - - - 2nd arch pharyngeal cleft (EHDAA) - EHDAA:613 - - - - - - - - - epithelium of footplate (EHDAA) - EHDAA:6144 - - - - - - - - - interdigital region between pedal digits 1 and 2 (EHDAA) - EHDAA:6148 - - - - - - - - - interdigital region between pedal digits 2 and 3 (EHDAA) - EHDAA:6154 - - - - - - - - - interdigital region between pedal digits 3 and 4 (EHDAA) - EHDAA:6160 - - - - - - - - - interdigital region between pedal digits 4 and 5 (EHDAA) - EHDAA:6166 - - - - - - - - - pharyngeal pouch (EHDAA) - EHDAA:617 - - - - - - - - - mesenchyme of footplate (EHDAA) - EHDAA:6172 - - - - - - - - - leg (EHDAA) - EHDAA:6176 - - - - - - - - - hip (EHDAA) - EHDAA:6178 - - - - - - - - - epithelium of hip (EHDAA) - EHDAA:6180 - - - - - - - - - mesenchyme of hip (EHDAA) - EHDAA:6182 - - - - - - - - - knee (EHDAA) - EHDAA:6184 - - - - - - - - - epithelium of knee (EHDAA) - EHDAA:6186 - - - - - - - - - mesenchyme of knee (EHDAA) - EHDAA:6188 - - - - - - - - - hindlimb zeugopod (EHDAA) - EHDAA:6190 - - - - - - - - - fibula pre-cartilage condensation (EHDAA) - EHDAA:6196 - - - - - - - - - zona pellucida (EHDAA) - EHDAA:62 - - - - - - - - - hindlimb stylopod (EHDAA) - EHDAA:6200 - - - - - - - - - forelimb (EHDAA) - EHDAA:6208 - - - - - - - - - arm (EHDAA) - EHDAA:6210 - - - - - - - - - elbow (EHDAA) - EHDAA:6212 - - - - - - - - - epithelium of elbow (EHDAA) - EHDAA:6214 - - - - - - - - - mesenchyme of elbow (EHDAA) - EHDAA:6216 - - - - - - - - - forelimb zeugopod (EHDAA) - EHDAA:6218 - - - - - - - - - epithelium of forearm (EHDAA) - EHDAA:6220 - - - - - - - - - mesenchyme of forearm (EHDAA) - EHDAA:6222 - - - - - - - - - ulna pre-cartilage condensation (EHDAA) - EHDAA:6226 - - - - - - - - - shoulder (EHDAA) - EHDAA:6228 - - - - - - - - - epithelium of shoulder (EHDAA) - EHDAA:6230 - - - - - - - - - mesenchyme of shoulder (EHDAA) - EHDAA:6232 - - - - - - - - - forelimb stylopod (EHDAA) - EHDAA:6234 - - - - - - - - - humerus cartilage element (EHDAA) - EHDAA:6240 - - - - - - - - - embryonic handplate (EHDAA) - EHDAA:6242 - - - - - - - - - 2nd arch mesenchyme (EHDAA) - EHDAA:625 - - - - - - - - - interdigital region between manual digits 1 and 2 (EHDAA) - EHDAA:6298 - - - - - - - - - interdigital region between manual digits 2 and 3 (EHDAA) - EHDAA:6304 - - - - - - - - - interdigital region between manual digits 3 and 4 (EHDAA) - EHDAA:6310 - - - - - - - - - interdigital region between manual digits 4 and 5 (EHDAA) - EHDAA:6316 - - - - - - - - - carpus pre-cartilage condensation (EHDAA) - EHDAA:6324 - - - - - - - - - pericardio-peritoneal canal (EHDAA) - EHDAA:636 - - - - - - - - - anterior spinal artery (EHDAA) - EHDAA:6382 - - - - - - - - - carotid artery segment (EHDAA) - EHDAA:6385 - - - - - - - - - internal carotid artery (EHDAA) - EHDAA:6389 - - - - - - - - - mesothelium (EHDAA) - EHDAA:640 - - - - - - - - - mesothelium (EHDAA) - EHDAA:646 - - - - - - - - - ductus arteriosus (EHDAA) - EHDAA:6462 - - - - - - - - - brain (EHDAA) - EHDAA:6485 - - - - - - - - - hindbrain (EHDAA) - EHDAA:6487 - - - - - - - - - paranasal sinus (EHDAA) - EHDAA:6489 - - - - - - - - - venous dural sinus (EHDAA) - EHDAA:6491 - - - - - - - - - portal vein (EHDAA) - EHDAA:6510 - - - - - - - - - integumental system (EHDAA) - EHDAA:6520 - - - - - - - - - - gland (EHDAA) - gland of integumental system (EHDAA) - EHDAA:6522 - - - - - - - - - thoracic mammary gland (EHDAA) - EHDAA:6524 - - - - - - - - - epithelium of mammary gland (EHDAA) - EHDAA:6526 - - - - - - - - - mesenchyme of mammary gland (EHDAA) - EHDAA:6528 - - - - - - - - - zone of skin (EHDAA) - EHDAA:6530 - - - - - - - - - cervical sinus of His (EHDAA) - EHDAA:6534 - - - - - - - - - periderm (EHDAA) - EHDAA:6538 - - - - - - - - - head mesenchyme from mesoderm (EHDAA) - EHDAA:655 - - - - - - - - - pia mater (EHDAA) - EHDAA:6566 - - - - - - - - - telencephalic ventricle (EHDAA) - EHDAA:6576 - - - - - - - - - facio-acoustic neural crest (EHDAA) - EHDAA:658 - - - - - - - - - pia mater (EHDAA) - EHDAA:6583 - - - - - - - - - glossopharyngeal neural crest (EHDAA) - EHDAA:660 - - - - - - - - - geniculate ganglion (EHDAA) - EHDAA:6644 - - - - - - - - - vestibulocochlear ganglion (EHDAA) - EHDAA:6653 - - - - - - - - - ansa cervicalis (EHDAA) - EHDAA:6669 - - - - - - - - - trigeminal neural crest (EHDAA) - EHDAA:667 - - - - - - - - - olfactory nerve (EHDAA) - EHDAA:6672 - - - - - - - - - conus medullaris (EHDAA) - EHDAA:6684 - - - - - - - - - filum terminale (EHDAA) - EHDAA:6686 - - - - - - - - - vagal neural crest (EHDAA) - EHDAA:669 - - - - - - - - - otic ganglion (EHDAA) - EHDAA:6706 - - - - - - - - - submandibular ganglion (EHDAA) - EHDAA:6710 - - - - - - - - - tubotympanic recess epithelium (EHDAA) - EHDAA:6772 - - - - - - - - - cranial nerve II (EHDAA) - EHDAA:6788 - - - - - - - - - nasal cavity (EHDAA) - EHDAA:6801 - - - - - - - - - nasal cavity epithelium (EHDAA) - EHDAA:6803 - - - - - - - - - nasal cavity respiratory epithelium (EHDAA) - EHDAA:6807 - - - - - - - - - nasal septum (EHDAA) - EHDAA:6809 - - - - - - - - - intermediate mesenchyme (EHDAA) - EHDAA:689 - - - - - - - - - pancreas (EHDAA) - EHDAA:6893 - - - - - - - - - parenchyma (EHDAA) - EHDAA:6899 - - - - - - - - - parenchyma (EHDAA) - EHDAA:6903 - - - - - - - - - ventral pancreatic duct (EHDAA) - EHDAA:6905 - - - - - - - - - spinal cord neural crest (EHDAA) - EHDAA:696 - - - - - - - - - premaxilla (EHDAA) - EHDAA:6962 - - - - - - - - - primary palate mesenchyme (EHDAA) - EHDAA:6968 - - - - - - - - - oral cavity (EHDAA) - EHDAA:6970 - - - - - - - - - somite (EHDAA) - EHDAA:699 - - - - - - - - - caudate lobe of liver (EHDAA) - EHDAA:6990 - - - - - - - - - caudate lobe hepatic sinusoid (EHDAA) - EHDAA:6992 - - - - - - - - - parenchyma (EHDAA) - EHDAA:6994 - - - - - - - - - metanephros induced blastemal cells (EHDAA) - EHDAA:7007 - - - - - - - - - urogenital membrane (EHDAA) - EHDAA:7011 - - - - - - - - - urachus (EHDAA) - EHDAA:7016 - - - - - - - - - segmental bronchus (EHDAA) - EHDAA:7043 - - - - - - - - - segmental bronchus (EHDAA) - EHDAA:7049 - - - - - - - - - segmental bronchus (EHDAA) - EHDAA:7058 - - - - - - - - - segmental bronchus (EHDAA) - EHDAA:7064 - - - - - - - - - segmental bronchus (EHDAA) - EHDAA:7070 - - - - - - - - - trachea pre-cartilage rings (EHDAA) - EHDAA:7082 - - - - - - - - - nasopharynx (EHDAA) - EHDAA:7086 - - - - - - - - - epithelium of nasopharynx (EHDAA) - EHDAA:7090 - - - - - - - - - basioccipital cartilage element (EHDAA) - EHDAA:7141 - - - - - - - - - pelvic girdle skeleton (EHDAA) - EHDAA:7149 - - - - - - - - - ischial pre-cartilage condensation (EHDAA) - EHDAA:7153 - - - - - - - - - radius cartilage element (EHDAA) - EHDAA:7267 - - - - - - - - - ulna cartilage element (EHDAA) - EHDAA:7269 - - - - - - - - - pharyngeal arch artery (EHDAA) - EHDAA:7327 - - - - - - - - - common carotid artery plus branches (EHDAA) - EHDAA:7331 - - - - - - - - - maxillary artery (EHDAA) - EHDAA:7357 - - - - - - - - - septum transversum (EHDAA) - EHDAA:736 - - - - - - - - - ophthalmic artery (EHDAA) - EHDAA:7363 - - - - - - - - - thyroid artery (EHDAA) - EHDAA:7372 - - - - - - - - - atrioventricular valve (EHDAA) - EHDAA:7421 - - - - - - - - - tricuspid valve (EHDAA) - EHDAA:7427 - - - - - - - - - supracardinal vein (EHDAA) - EHDAA:7492 - - - - - - - - - inner cell mass derived epiblast (EHDAA) - EHDAA:75 - - - - - - - - - pineal body (EHDAA) - EHDAA:7523 - - - - - - - - - pars distalis of adenohypophysis (EHDAA) - EHDAA:7532 - - - - - - - - - neurohypophysis (EHDAA) - EHDAA:7536 - - - - - - - - - pituitary stalk (EHDAA) - EHDAA:7538 - - - - - - - - - median eminence of neurohypophysis (EHDAA) - EHDAA:7540 - - - - - - - - - neural lobe of neurohypophysis (EHDAA) - EHDAA:7542 - - - - - - - - - ventricular system choroidal fissure (EHDAA) - EHDAA:7567 - - - - - - - - - medulla oblongata (EHDAA) - EHDAA:7588 - - - - - - - - - floor plate of medulla oblongata (EHDAA) - EHDAA:7590 - - - - - - - - - roof plate of medulla oblongata (EHDAA) - EHDAA:7614 - - - - - - - - - atrioventricular canal (EHDAA) - EHDAA:764 - - - - - - - - - bulbo-ventricular groove (EHDAA) - EHDAA:766 - - - - - - - - - bulbus cordis (EHDAA) - EHDAA:768 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:772 - - - - - - - - - endolymphatic sac (EHDAA) - EHDAA:7761 - - - - - - - - - epithelium of endolymphatic sac (EHDAA) - EHDAA:7765 - - - - - - - - - crus commune (EHDAA) - EHDAA:7783 - - - - - - - - - lateral semicircular canal (EHDAA) - EHDAA:7790 - - - - - - - - - epithelium of lateral semicircular canal (EHDAA) - EHDAA:7794 - - - - - - - - - posterior semicircular canal (EHDAA) - EHDAA:7796 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:780 - - - - - - - - - epithelium of posterior semicircular canal (EHDAA) - EHDAA:7800 - - - - - - - - - anterior semicircular canal (EHDAA) - EHDAA:7802 - - - - - - - - - epithelium of superior semicircular canal (EHDAA) - EHDAA:7806 - - - - - - - - - oronasal membrane (EHDAA) - EHDAA:7840 - - - - - - - - - posterior nasal aperture (EHDAA) - EHDAA:7842 - - - - - - - - - nasolacrimal duct (EHDAA) - EHDAA:7849 - - - - - - - - - intermaxillary process (EHDAA) - EHDAA:7856 - - - - - - - - - external ectoderm (EHDAA) - EHDAA:7860 - - - - - - - - - vomeronasal organ (EHDAA) - EHDAA:7865 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:788 - - - - - - - - - inner cell mass derived hypoblast (EHDAA) - EHDAA:79 - - - - - - - - - transverse pericardial sinus (EHDAA) - EHDAA:796 - - - - - - - - - outflow tract (EHDAA) - EHDAA:798 - - - - - - - - - oronasal membrane (EHDAA) - EHDAA:7984 - - - - - - - - - saliva-secreting gland (EHDAA) - EHDAA:7987 - - - - - - - - - sublingual gland primordium (EHDAA) - EHDAA:7989 - - - - - - - - - lower jaw region (EHDAA) - EHDAA:7995 - - - - - - - - - Meckel's cartilage (EHDAA) - EHDAA:7997 - - - - - - - - - epithelium of lower jaw (EHDAA) - EHDAA:7999 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:800 - - - - - - - - - mesenchyme of lower jaw (EHDAA) - EHDAA:8003 - - - - - - - - - skeleton of lower jaw (EHDAA) - EHDAA:8005 - - - - - - - - - mandible (EHDAA) - EHDAA:8007 - - - - - - - - - tooth of lower jaw (EHDAA) - EHDAA:8009 - - - - - - - - - incisor tooth (EHDAA) - EHDAA:8011 - - - - - - - - - lower jaw molar odontogenic papilla (EHDAA) - EHDAA:8015 - - - - - - - - - lower jaw molar (EHDAA) - EHDAA:8017 - - - - - - - - - upper jaw region (EHDAA) - EHDAA:8025 - - - - - - - - - epithelium of upper jaw (EHDAA) - EHDAA:8027 - - - - - - - - - mesenchyme of upper jaw (EHDAA) - EHDAA:8031 - - - - - - - - - premaxilla (EHDAA) - EHDAA:8033 - - - - - - - - - skeleton of upper jaw (EHDAA) - EHDAA:8041 - - - - - - - - - maxilla (EHDAA) - EHDAA:8043 - - - - - - - - - tooth of upper jaw (EHDAA) - EHDAA:8045 - - - - - - - - - incisor tooth (EHDAA) - EHDAA:8047 - - - - - - - - - upper jaw molar odontogenic papilla (EHDAA) - EHDAA:8051 - - - - - - - - - upper jaw molar (EHDAA) - EHDAA:8053 - - - - - - - - - gallbladder (EHDAA) - EHDAA:8062 - - - - - - - - - cardiac jelly (EHDAA) - EHDAA:808 - - - - - - - - - quadrate lobe of liver (EHDAA) - EHDAA:8082 - - - - - - - - - quadrate lobe hepatic sinusoid (EHDAA) - EHDAA:8084 - - - - - - - - - parenchyma (EHDAA) - EHDAA:8086 - - - - - - - - - metanephros induced blastemal cells (EHDAA) - EHDAA:8105 - - - - - - - - - female reproductive system (EHDAA) - EHDAA:8116 - - - - - - - - - female genital tubercle (EHDAA) - EHDAA:8118 - - - - - - - - - ovary (EHDAA) - EHDAA:8124 - - - - - - - - - germinal epithelium of ovary (EHDAA) - EHDAA:8126 - - - - - - - - - mesenchyme of ovary (EHDAA) - EHDAA:8128 - - - - - - - - - ovary sex cord (EHDAA) - EHDAA:8130 - - - - - - - - - male reproductive system (EHDAA) - EHDAA:8136 - - - - - - - - - male genital tubercle (EHDAA) - EHDAA:8138 - - - - - - - - - testis (EHDAA) - EHDAA:8146 - - - - - - - - - seminiferous tubule epithelium (EHDAA) - EHDAA:8148 - - - - - - - - - mesenchyme of testis (EHDAA) - EHDAA:8150 - - - - - - - - - testis sex cord (EHDAA) - EHDAA:8152 - - - - - - - - - laryngeal cartilage (EHDAA) - EHDAA:8157 - - - - - - - - - bronchiole (EHDAA) - EHDAA:8171 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:8175 - - - - - - - - - primary head vein (EHDAA) - EHDAA:818 - - - - - - - - - bronchiole (EHDAA) - EHDAA:8183 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:8187 - - - - - - - - - bronchiole (EHDAA) - EHDAA:8199 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:8203 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:8213 - - - - - - - - - bronchiole (EHDAA) - EHDAA:8221 - - - - - - - - - lobar bronchus (EHDAA) - EHDAA:8225 - - - - - - - - - abdominal external oblique muscle (EHDAA) - EHDAA:8248 - - - - - - - - - abdominal internal oblique muscle (EHDAA) - EHDAA:8250 - - - - - - - - - rectus abdominis muscle (EHDAA) - EHDAA:8252 - - - - - - - - - transversus abdominis muscle (EHDAA) - EHDAA:8254 - - - - - - - - - nervous system (EHDAA) - EHDAA:826 - - - - - - - - - external intercostal muscle (EHDAA) - EHDAA:8260 - - - - - - - - - platysma (EHDAA) - EHDAA:8270 - - - - - - - - - limb (EHDAA) - EHDAA:8273 - - - - - - - - - arm (EHDAA) - EHDAA:8275 - - - - - - - - - muscle of arm (EHDAA) - EHDAA:8277 - - - - - - - - - biceps brachii (EHDAA) - EHDAA:8279 - - - - - - - - - central nervous system (EHDAA) - EHDAA:828 - - - - - - - - - brachialis muscle (EHDAA) - EHDAA:8281 - - - - - - - - - triceps brachii (EHDAA) - EHDAA:8287 - - - - - - - - - leg (EHDAA) - EHDAA:8289 - - - - - - - - - muscle of leg (EHDAA) - EHDAA:8291 - - - - - - - - - gastrocnemius (EHDAA) - EHDAA:8293 - - - - - - - - - muscle of posterior compartment of hindlimb stylopod (EHDAA) - EHDAA:8295 - - - - - - - - - peroneus (EHDAA) - EHDAA:8297 - - - - - - - - - quadriceps femoris (EHDAA) - EHDAA:8299 - - - - - - - - - amniotic cavity (EHDAA) - EHDAA:83 - - - - - - - - - future brain (EHDAA) - EHDAA:830 - - - - - - - - - infraspinatus muscle (EHDAA) - EHDAA:8305 - - - - - - - - - latissimus dorsi muscle (EHDAA) - EHDAA:8307 - - - - - - - - - levator scapulae muscle (EHDAA) - EHDAA:8309 - - - - - - - - - pectoralis major (EHDAA) - EHDAA:8311 - - - - - - - - - pectoralis minor (EHDAA) - EHDAA:8313 - - - - - - - - - rhomboid (EHDAA) - EHDAA:8315 - - - - - - - - - subscapularis muscle (EHDAA) - EHDAA:8317 - - - - - - - - - supraspinatus muscle (EHDAA) - EHDAA:8319 - - - - - - - - - teres major muscle (EHDAA) - EHDAA:8321 - - - - - - - - - pelvic girdle skeleton (EHDAA) - EHDAA:8324 - - - - - - - - - muscle of pelvic girdle (EHDAA) - EHDAA:8326 - - - - - - - - - rib cartilage element (EHDAA) - EHDAA:8347 - - - - - - - - - exoccipital pre-cartilage condensation (EHDAA) - EHDAA:8355 - - - - - - - - - facial skeleton (EHDAA) - EHDAA:8361 - - - - - - - - - ethmoid bone primordium (EHDAA) - EHDAA:8363 - - - - - - - - - scapula cartilage element (EHDAA) - EHDAA:8368 - - - - - - - - - future diencephalon (EHDAA) - EHDAA:844 - - - - - - - - - hip joint primordium (EHDAA) - EHDAA:8462 - - - - - - - - - knee joint primordium (EHDAA) - EHDAA:8467 - - - - - - - - - elbow joint primordium (EHDAA) - EHDAA:8483 - - - - - - - - - shoulder joint primordium (EHDAA) - EHDAA:8493 - - - - - - - - - carpus cartilage element (EHDAA) - EHDAA:8544 - - - - - - - - - common hepatic artery (EHDAA) - EHDAA:8570 - - - - - - - - - gastroduodenal artery (EHDAA) - EHDAA:8574 - - - - - - - - - internal thoracic artery (EHDAA) - EHDAA:8585 - - - - - - - - - renal artery (EHDAA) - EHDAA:8594 - - - - - - - - - suprarenal artery (EHDAA) - EHDAA:8596 - - - - - - - - - valve of inferior vena cava (EHDAA) - EHDAA:8631 - - - - - - - - - papillary muscle of heart (EHDAA) - EHDAA:8655 - - - - - - - - - lymphoid system (EHDAA) - EHDAA:8677 - - - - - - - - - upper part of cisterna chyli (EHDAA) - EHDAA:8679 - - - - - - - - - marginal venous sinus (EHDAA) - EHDAA:8693 - - - - - - - - - gonadal vein (EHDAA) - EHDAA:8703 - - - - - - - - - inferior mesenteric vein (EHDAA) - EHDAA:8712 - - - - - - - - - renal vein (EHDAA) - EHDAA:8722 - - - - - - - - - anterior vena cava (EHDAA) - EHDAA:8726 - - - - - - - - - suprarenal vein (EHDAA) - EHDAA:8731 - - - - - - - - - pars intermedia of adenohypophysis (EHDAA) - EHDAA:8765 - - - - - - - - - pars tuberalis of adenohypophysis (EHDAA) - EHDAA:8767 - - - - - - - - - cytotrophoblast (EHDAA) - EHDAA:89 - - - - - - - - - inferior cervical ganglion (EHDAA) - EHDAA:8939 - - - - - - - - - middle cervical ganglion (EHDAA) - EHDAA:8941 - - - - - - - - - superior cervical ganglion (EHDAA) - EHDAA:8943 - - - - - - - - - celiac ganglion (EHDAA) - EHDAA:8946 - - - - - - - - - inferior mesenteric ganglion (EHDAA) - EHDAA:8948 - - - - - - - - - superior mesenteric ganglion (EHDAA) - EHDAA:8950 - - - - - - - - - fourth ventricle (EHDAA) - EHDAA:896 - - - - - - - - - external acoustic meatus (EHDAA) - EHDAA:8975 - - - - - - - - - developing mesenchymal condensation (EHDAA) - EHDAA:8979 - - - - - - - - - future spinal cord (EHDAA) - EHDAA:898 - - - - - - - - - mesenchyme of pinna (EHDAA) - EHDAA:8981 - - - - - - - - - pinna surface epithelium (EHDAA) - EHDAA:8983 - - - - - - - - - posterior neuropore (EHDAA) - EHDAA:900 - - - - - - - - - neural plate (EHDAA) - EHDAA:902 - - - - - - - - - incus pre-cartilage condensation (EHDAA) - EHDAA:9024 - - - - - - - - - malleus pre-cartilage condensation (EHDAA) - EHDAA:9026 - - - - - - - - - stapedius muscle (EHDAA) - EHDAA:9029 - - - - - - - - - anterior chamber of eyeball (EHDAA) - EHDAA:9033 - - - - - - - - - eyelid (EHDAA) - EHDAA:9037 - - - - - - - - - outer canthus (EHDAA) - EHDAA:9039 - - - - - - - - - lower eyelid (EHDAA) - EHDAA:9041 - - - - - - - - - lower eyelid mesenchyme (EHDAA) - EHDAA:9045 - - - - - - - - - upper eyelid (EHDAA) - EHDAA:9047 - - - - - - - - - upper eyelid mesenchyme (EHDAA) - EHDAA:9051 - - - - - - - - - lens of camera-type eye (EHDAA) - EHDAA:9057 - - - - - - - - - lens anterior epithelium (EHDAA) - EHDAA:9059 - - - - - - - - - capsule (EHDAA) - EHDAA:9061 - - - - - - - - - lens equatorial epithelium (EHDAA) - EHDAA:9063 - - - - - - - - - lens fiber (EHDAA) - EHDAA:9065 - - - - - - - - - optic disc (EHDAA) - EHDAA:9077 - - - - - - - - - neural tube (EHDAA) - EHDAA:908 - - - - - - - - - naris (EHDAA) - EHDAA:9083 - - - - - - - - - external naris (EHDAA) - EHDAA:9085 - - - - - - - - - primary choana (EHDAA) - EHDAA:9087 - - - - - - - - - nasolacrimal duct (EHDAA) - EHDAA:9094 - - - - - - - - - syncytiotrophoblast (EHDAA) - EHDAA:91 - - - - - - - - - floor plate of neural tube (EHDAA) - EHDAA:910 - - - - - - - - - thymus (EHDAA) - EHDAA:9119 - - - - - - - - - neural tube lateral wall (EHDAA) - EHDAA:912 - - - - - - - - - inferior parathyroid gland (EHDAA) - EHDAA:9127 - - - - - - - - - superior parathyroid gland (EHDAA) - EHDAA:9135 - - - - - - - - - ultimobranchial body (EHDAA) - EHDAA:9139 - - - - - - - - - neural tube lumen (EHDAA) - EHDAA:914 - - - - - - - - - tongue (EHDAA) - EHDAA:9144 - - - - - - - - - tongue muscle (EHDAA) - EHDAA:9146 - - - - - - - - - extrinsic muscle of tongue (EHDAA) - EHDAA:9148 - - - - - - - - - genioglossus muscle (EHDAA) - EHDAA:9150 - - - - - - - - - intrinsic muscle of tongue (EHDAA) - EHDAA:9152 - - - - - - - - - roof plate (EHDAA) - EHDAA:916 - - - - - - - - - gastro-splenic ligament (EHDAA) - EHDAA:9160 - - - - - - - - - body of pancreas (EHDAA) - EHDAA:9178 - - - - - - - - - ganglion (EHDAA) - EHDAA:918 - - - - - - - - - parenchyma (EHDAA) - EHDAA:9182 - - - - - - - - - dorsal pancreatic duct (EHDAA) - EHDAA:9188 - - - - - - - - - parenchyma (EHDAA) - EHDAA:9190 - - - - - - - - - pancreatic duct (EHDAA) - EHDAA:9194 - - - - - - - - - parenchyma (EHDAA) - EHDAA:9196 - - - - - - - - - tail (EHDAA) - EHDAA:9198 - - - - - - - - - parenchyma (EHDAA) - EHDAA:9202 - - - - - - - - - future trigeminal ganglion (EHDAA) - EHDAA:924 - - - - - - - - - parotid gland primordium (EHDAA) - EHDAA:9246 - - - - - - - - - submandibular gland primordium (EHDAA) - EHDAA:9255 - - - - - - - - - submandibular gland primordium epithelium (EHDAA) - EHDAA:9257 - - - - - - - - - philtrum (EHDAA) - EHDAA:9280 - - - - - - - - - secondary palatal shelf (EHDAA) - EHDAA:9283 - - - - - - - - - secondary palatal shelf mesenchyme (EHDAA) - EHDAA:9287 - - - - - - - - - otic pit (EHDAA) - EHDAA:929 - - - - - - - - - urinary bladder (EHDAA) - EHDAA:9328 - - - - - - - - - fundus of urinary bladder (EHDAA) - EHDAA:9330 - - - - - - - - - urachus (EHDAA) - EHDAA:9332 - - - - - - - - - ureter (EHDAA) - EHDAA:9341 - - - - - - - - - cortex (EHDAA) - EHDAA:9344 - - - - - - - - - metanephric renal vesicle (EHDAA) - EHDAA:9346 - - - - - - - - - camera-type eye (EHDAA) - EHDAA:936 - - - - - - - - - clitoris (EHDAA) - EHDAA:9360 - - - - - - - - - female labial swelling (EHDAA) - EHDAA:9363 - - - - - - - - - optic eminence (EHDAA) - EHDAA:938 - - - - - - - - - penis (EHDAA) - EHDAA:9380 - - - - - - - - - tunica albuginea of testis (EHDAA) - EHDAA:9388 - - - - - - - - - cricoid cartilage (EHDAA) - EHDAA:9393 - - - - - - - - - thyroid cartilage (EHDAA) - EHDAA:9395 - - - - - - - - - optic eminence ectoderm (EHDAA) - EHDAA:940 - - - - - - - - - optic eminence mesenchyme (EHDAA) - EHDAA:942 - - - - - - - - - optic pit (EHDAA) - EHDAA:944 - - - - - - - - - erector spinae muscle group (EHDAA) - EHDAA:9456 - - - - - - - - - iliopsoas (EHDAA) - EHDAA:9458 - - - - - - - - - serratus ventralis (EHDAA) - EHDAA:9463 - - - - - - - - - transversospinales muscle (EHDAA) - EHDAA:9465 - - - - - - - - - gland of foregut (EHDAA) - EHDAA:950 - - - - - - - - - thyroid primordium (EHDAA) - EHDAA:952 - - - - - - - - - interparietal bone (EHDAA) - EHDAA:9530 - - - - - - - - - supraoccipital pre-cartilage condensation (EHDAA) - EHDAA:9534 - - - - - - - - - squamous part of temporal bone primordium (EHDAA) - EHDAA:9536 - - - - - - - - - vault of skull (EHDAA) - EHDAA:9538 - - - - - - - - - tetrapod frontal bone primordium (EHDAA) - EHDAA:9540 - - - - - - - - - tetrapod parietal bone primordium (EHDAA) - EHDAA:9544 - - - - - - - - - facial bone primordium (EHDAA) - EHDAA:9552 - - - - - - - - - orbitosphenoid cartilage element (EHDAA) - EHDAA:9554 - - - - - - - - - thyroid primordium endoderm (EHDAA) - EHDAA:956 - - - - - - - - - sternum (EHDAA) - EHDAA:9561 - - - - - - - - - manubrium sternum pre-cartilage condensation (EHDAA) - EHDAA:9563 - - - - - - - - - sternebral bone pre-cartilage condensation (EHDAA) - EHDAA:9565 - - - - - - - - - iliac pre-cartilage condensation (EHDAA) - EHDAA:9568 - - - - - - - - - ischial cartilage element (EHDAA) - EHDAA:9570 - - - - - - - - - pubic pre-cartilage condensation (EHDAA) - EHDAA:9572 - - - - - - - - - early pharyngeal endoderm (EHDAA) - EHDAA:962 - - - - - - - - - liver primordium (EHDAA) - EHDAA:973 - - - - - - - - - hindgut (EHDAA) - EHDAA:975 - - - - - - - - - circle of Willis (EHDAA) - EHDAA:9758 - - - - - - - - - endoderm of hindgut (EHDAA) - EHDAA:979 - - - - - - - - - aortic sac (EHDAA) - EHDAA:9826 - - - - - - - - - ascending aorta (EHDAA) - EHDAA:9828 - - - - - - - - - midgut (EHDAA) - EHDAA:983 - - - - - - - - - pulmonary trunk (EHDAA) - EHDAA:9831 - - - - - - - - - brachiocephalic vein (EHDAA) - EHDAA:9868 - - - - - - - - - endoderm of midgut (EHDAA) - EHDAA:987 - - - - - - - - - primitive superior sagittal sinus (EHDAA) - EHDAA:9876 - - - - - - - - - sigmoid sinus (EHDAA) - EHDAA:9880 - - - - - - - - - tentorial sinus (EHDAA) - EHDAA:9882 - - - - - - - - - coronary sinus (EHDAA) - EHDAA:9884 - - - - - - - - - external jugular vein (EHDAA) - EHDAA:9887 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-emap.obo b/src/ontology/bridge/uberon-bridge-to-emap.obo deleted file mode 100644 index fc458f84c2..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-emap.obo +++ /dev/null @@ -1,126283 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-emap -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to EMAP" xsd:string - -[Term] -id: EMAP:1 -name: TS1,first polar body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000003 ! Theiler stage 01 -relationship: part_of UBERON:0000468 ! multi-cellular organism - -[Term] -id: EMAP:10 -name: TS3,second polar body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000006 ! Theiler stage 03 -relationship: part_of UBERON:0000468 ! multi-cellular organism - -[Term] -id: EMAP:100 -name: TS9,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:99 ! TS9,trophectoderm -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:1000 -name: TS14,right,vitelline vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005472 ! right vitelline vein -relationship: part_of EMAP:998 ! TS14,vitelline vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:10000 -name: TS25,epidermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9998 ! TS25,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:10001 -name: TS25,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10002 -name: TS25,mesenchyme,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:10001 ! TS25,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10003 -name: TS25,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10001 ! TS25,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:10004 -name: TS25,dermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10003 ! TS25,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:10005 -name: TS25,epidermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10003 ! TS25,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:10006 -name: TS25,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10007 -name: TS25,mesenchyme,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:10006 ! TS25,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10008 -name: TS25,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10006 ! TS25,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:10009 -name: TS25,dermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10008 ! TS25,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:1001 -name: TS15,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10010 -name: TS25,epidermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10008 ! TS25,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:10011 -name: TS25,mesenchyme,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:10016 -name: TS25,skin,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001513 ! skin of pes -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001513 ! skin of pes -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10017 -name: TS25,dermis,skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10016 ! TS25,skin,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001513 ! skin of pes - -[Term] -id: EMAP:10018 -name: TS25,epidermis,skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10016 ! TS25,skin,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001513 ! skin of pes - -[Term] -id: EMAP:10019 -name: TS25,plantar pads -namespace: mouse_anatomy_stages -is_a: UBERON:0008840 ! plantar pad -relationship: part_of EMAP:10016 ! TS25,skin,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0008840 ! plantar pad -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1002 -name: TS15,branchial arch -namespace: mouse_anatomy_stages -is_a: UBERON:0002539 ! pharyngeal arch -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10020 -name: TS25,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000978 ! leg -relationship: part_of EMAP:9949 ! TS25,hindlimb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000978 ! leg -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10021 -name: TS25,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001464 ! hip -relationship: part_of EMAP:10020 ! TS25,leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001464 ! hip -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10022 -name: TS25,mesenchyme,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003320 ! mesenchyme of hip -relationship: part_of EMAP:10021 ! TS25,hip -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10025 -name: TS25,skin,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001554 ! skin of hip -relationship: part_of EMAP:10021 ! TS25,hip -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001554 ! skin of hip -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10026 -name: TS25,dermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10025 ! TS25,skin,hip -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:10027 -name: TS25,epidermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10025 ! TS25,skin,hip -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:10028 -name: TS25,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001465 ! knee -relationship: part_of EMAP:10020 ! TS25,leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001465 ! knee -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10029 -name: TS25,mesenchyme,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003321 ! mesenchyme of knee -relationship: part_of EMAP:10028 ! TS25,knee -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1003 -name: TS15,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0004362 ! pharyngeal arch 1 -relationship: part_of EMAP:1002 ! TS15,branchial arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10035 -name: TS25,skin,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001510 ! skin of knee -relationship: part_of EMAP:10028 ! TS25,knee -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001510 ! skin of knee -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10036 -name: TS25,dermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10035 ! TS25,skin,knee -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:10037 -name: TS25,epidermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10035 ! TS25,skin,knee -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:10038 -name: TS25,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003823 ! hindlimb zeugopod -relationship: part_of EMAP:10020 ! TS25,leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10039 -name: TS25,mesenchyme,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005259 ! lower leg mesenchyme -relationship: part_of EMAP:10038 ! TS25,lower leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1004 -name: TS15,branchial groove,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft -relationship: part_of EMAP:1003 ! TS15,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10043 -name: TS25,skin,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:10038 ! TS25,lower leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10044 -name: TS25,dermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10043 ! TS25,skin,lower leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:10045 -name: TS25,epidermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10043 ! TS25,skin,lower leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:10046 -name: TS25,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000376 ! hindlimb stylopod -relationship: part_of EMAP:10020 ! TS25,leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1005 -name: TS15,ectoderm,branchial groove,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1004 ! TS15,branchial groove,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EMAP:10051 -name: TS25,mesenchyme,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005254 ! upper leg mesenchyme -relationship: part_of EMAP:10046 ! TS25,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10054 -name: TS25,skin,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:10046 ! TS25,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10055 -name: TS25,dermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10054 ! TS25,skin,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:10056 -name: TS25,epidermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10054 ! TS25,skin,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:10057 -name: TS25,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:9799 ! TS25,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10058 -name: TS25,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:10057 ! TS25,mesenchyme,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10059 -name: TS25,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:10057 ! TS25,mesenchyme,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1006 -name: TS15,branchial membrane,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:1003 ! TS15,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10060 -name: TS25,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:10059 ! TS25,trunk mesenchyme -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10061 -name: TS25,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:9800 ! TS25,organ system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10062 -name: TS25,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:10061 ! TS25,cardiovascular system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10063 -name: TS25,aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0000947 ! aorta -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000947 ! aorta -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10064 -name: TS25,arch of aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001508 ! arch of aorta -relationship: part_of EMAP:10063 ! TS25,aorta -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10065 -name: TS25,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001515 ! thoracic aorta -relationship: part_of EMAP:10063 ! TS25,aorta -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001515 ! thoracic aorta -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10066 -name: TS25,ascending,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001496 ! ascending aorta -relationship: part_of EMAP:10065 ! TS25,thoracic aorta -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10067 -name: TS25,descending,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001514 ! descending aorta -relationship: part_of EMAP:10065 ! TS25,thoracic aorta -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10068 -name: TS25,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005805 ! dorsal aorta -relationship: part_of EMAP:10063 ! TS25,aorta -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10069 -name: TS25,abdominal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001516 ! abdominal aorta -relationship: part_of EMAP:10068 ! TS25,dorsal aorta -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1007 -name: TS15,ectoderm,branchial membrane,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1006 ! TS15,branchial membrane,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:10070 -name: TS25,axillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001394 ! axillary artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001394 ! axillary artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10071 -name: TS25,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006349 ! epigastric artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006349 ! epigastric artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10072 -name: TS25,inferior,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001354 ! inferior epigastric artery -relationship: part_of EMAP:10071 ! TS25,epigastric artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001354 ! inferior epigastric artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10073 -name: TS25,superior,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007153 ! superior epigastric artery -relationship: part_of EMAP:10071 ! TS25,epigastric artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007153 ! superior epigastric artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10074 -name: TS25,intercostal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005612 ! intercostal artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005612 ! intercostal artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10075 -name: TS25,greater palatine artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006664 ! greater palatine artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006664 ! greater palatine artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10076 -name: TS25,basilar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001633 ! basilar artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10077 -name: TS25,bronchial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002040 ! bronchial artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002040 ! bronchial artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10078 -name: TS25,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005396 ! carotid artery segment -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10079 -name: TS25,common,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0010197 ! trunk of common carotid artery -relationship: part_of EMAP:10078 ! TS25,carotid artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010197 ! trunk of common carotid artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1008 -name: TS15,endoderm,branchial membrane,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1006 ! TS15,branchial membrane,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:10080 -name: TS25,external,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001070 ! external carotid artery -relationship: part_of EMAP:10078 ! TS25,carotid artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10081 -name: TS25,internal,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:10078 ! TS25,carotid artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10082 -name: TS25,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004449 ! cerebral artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10083 -name: TS25,anterior,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001624 ! anterior cerebral artery -relationship: part_of EMAP:10082 ! TS25,cerebral artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10084 -name: TS25,middle,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001627 ! middle cerebral artery -relationship: part_of EMAP:10082 ! TS25,cerebral artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10085 -name: TS25,posterior,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001636 ! posterior cerebral artery -relationship: part_of EMAP:10082 ! TS25,cerebral artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10086 -name: TS25,hepatic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001193 ! hepatic artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10087 -name: TS25,hyoid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005608 ! hyoid artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10088 -name: TS25,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005609 ! iliac artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10089 -name: TS25,common,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001191 ! common iliac artery -relationship: part_of EMAP:10088 ! TS25,iliac artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1009 -name: TS15,branchial pouch,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007122 ! pharyngeal pouch 1 -relationship: part_of EMAP:1003 ! TS15,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10090 -name: TS25,external,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001308 ! external iliac artery -relationship: part_of EMAP:10088 ! TS25,iliac artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10091 -name: TS25,internal,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001309 ! internal iliac artery -relationship: part_of EMAP:10088 ! TS25,iliac artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10092 -name: TS25,innominate artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001529 ! brachiocephalic artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10093 -name: TS25,internal thoracic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002456 ! internal thoracic artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10095 -name: TS25,maxillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001616 ! maxillary artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10096 -name: TS25,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005616 ! mesenteric artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10097 -name: TS25,inferior,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001183 ! inferior mesenteric artery -relationship: part_of EMAP:10096 ! TS25,mesenteric artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001183 ! inferior mesenteric artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10098 -name: TS25,superior,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001182 ! superior mesenteric artery -relationship: part_of EMAP:10096 ! TS25,mesenteric artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001182 ! superior mesenteric artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10099 -name: TS25,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:101 -name: TS9,primary trophoblast giant cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:100 ! TS9,mural trophectoderm -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -relationship: part_of UBERON:0006265 ! mural trophectoderm - -[Term] -id: EMAP:1010 -name: TS15,endoderm,branchial pouch,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1009 ! TS15,branchial pouch,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EMAP:10100 -name: TS25,ovarian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001190 ! ovarian artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001190 ! ovarian artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10101 -name: TS25,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006347 ! communicating artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006347 ! communicating artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10102 -name: TS25,anterior,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006764 ! anterior communicating artery -relationship: part_of EMAP:10101 ! TS25,communicating artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006764 ! anterior communicating artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10103 -name: TS25,posterior,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001628 ! posterior communicating artery -relationship: part_of EMAP:10101 ! TS25,communicating artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10104 -name: TS25,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10105 -name: TS25,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10106 -name: TS25,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10107 -name: TS25,pulmonary trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0002333 ! pulmonary trunk -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10108 -name: TS25,renal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001184 ! renal artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001184 ! renal artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10109 -name: TS25,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002458 ! spinal artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1011 -name: TS15,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007237 ! 1st arch mandibular component -relationship: part_of EMAP:1003 ! TS15,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007237 ! 1st arch mandibular component -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10110 -name: TS25,anterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005431 ! anterior spinal artery -relationship: part_of EMAP:10109 ! TS25,spinal artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005431 ! anterior spinal artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10111 -name: TS25,posterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007146 ! posterior spinal artery -relationship: part_of EMAP:10109 ! TS25,spinal artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007146 ! posterior spinal artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10112 -name: TS25,stapedial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006345 ! stapedial artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10113 -name: TS25,subclavian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001533 ! subclavian artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10114 -name: TS25,testicular artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001187 ! testicular artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001187 ! testicular artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10115 -name: TS25,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003847 ! thyroid artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003847 ! thyroid artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10116 -name: TS25,inferior,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007149 ! inferior thyroid artery -relationship: part_of EMAP:10115 ! TS25,thyroid artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007149 ! inferior thyroid artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10117 -name: TS25,superior,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007150 ! superior thyroid artery -relationship: part_of EMAP:10115 ! TS25,thyroid artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007150 ! superior thyroid artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10118 -name: TS25,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10119 -name: TS25,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:10118 ! TS25,umbilical artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1012 -name: TS15,ectoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013155 ! 1st arch mandibular ectoderm -relationship: part_of EMAP:1011 ! TS15,mandibular component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0013155 ! 1st arch mandibular ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10120 -name: TS25,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:10118 ! TS25,umbilical artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10121 -name: TS25,vertebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001535 ! vertebral artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10122 -name: TS25,ductus arteriosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005440 ! ductus arteriosus -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10123 -name: TS25,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:10061 ! TS25,cardiovascular system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10124 -name: TS25,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:10061 ! TS25,cardiovascular system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10125 -name: TS25,aortic sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0003707 ! sinus of Valsalva -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003707 ! sinus of Valsalva -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10126 -name: TS25,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10127 -name: TS25,atrio-ventricular cushion tissue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:10128 -name: TS25,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10129 -name: TS25,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:10128 ! TS25,atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1013 -name: TS15,endoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013156 ! 1st arch mandibular endoderm -relationship: part_of EMAP:1011 ! TS15,mandibular component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0013156 ! 1st arch mandibular endoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10130 -name: TS25,foramen ovale,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004754 ! foramen ovale of heart -relationship: part_of EMAP:10129 ! TS25,interatrial septum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10131 -name: TS25,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:10129 ! TS25,interatrial septum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10132 -name: TS25,foramen secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0006678 ! foramen secundum -relationship: part_of EMAP:10131 ! TS25,septum primum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10133 -name: TS25,septum secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0004155 ! septum secundum -relationship: part_of EMAP:10129 ! TS25,interatrial septum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004155 ! septum secundum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10134 -name: TS25,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002079 ! left atrium -relationship: part_of EMAP:10128 ! TS25,atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002079 ! left atrium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10135 -name: TS25,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10134 ! TS25,left atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:10136 -name: TS25,endocardial lining,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10135 ! TS25,auricular region,left atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:10137 -name: TS25,cardiac muscle,auricular region,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:10135 ! TS25,auricular region,left atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10138 -name: TS25,endocardial lining,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10134 ! TS25,left atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:10139 -name: TS25,cardiac muscle,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003380 ! cardiac muscle of left atrium -relationship: part_of EMAP:10134 ! TS25,left atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1014 -name: TS15,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009584 ! 1st arch mandibular mesenchyme -relationship: part_of EMAP:1011 ! TS15,mandibular component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009584 ! 1st arch mandibular mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10140 -name: TS25,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002078 ! right atrium -relationship: part_of EMAP:10128 ! TS25,atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002078 ! right atrium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10141 -name: TS25,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10140 ! TS25,right atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:10142 -name: TS25,endocardial lining,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10141 ! TS25,auricular region,right atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:10143 -name: TS25,cardiac muscle,auricular region,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:10141 ! TS25,auricular region,right atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10144 -name: TS25,endocardial lining,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10140 ! TS25,right atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:10145 -name: TS25,cardiac muscle,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003379 ! cardiac muscle of right atrium -relationship: part_of EMAP:10140 ! TS25,right atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10146 -name: TS25,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005208 ! right atrium valve -relationship: part_of EMAP:10140 ! TS25,right atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10147 -name: TS25,venous valve,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:10146 ! TS25,valve,right atrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10148 -name: TS25,bulbar cushion -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:10149 -name: TS25,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1015 -name: TS15,mesenchyme derived from head mesoderm,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1014 ! TS15,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:10150 -name: TS25,endocardial tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002165 ! endocardium -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002165 ! endocardium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10152 -name: TS25,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10153 -name: TS25,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:10152 ! TS25,mesentery,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10154 -name: TS25,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:10153 ! TS25,dorsal mesocardium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10155 -name: TS25,trabeculae carneae -namespace: mouse_anatomy_stages -is_a: UBERON:0002511 ! trabecula carnea -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002511 ! trabecula carnea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10156 -name: TS25,valve,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000946 ! cardial valve -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000946 ! cardial valve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10157 -name: TS25,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002137 ! aortic valve -relationship: part_of EMAP:10156 ! TS25,valve,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10158 -name: TS25,leaflets,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0011742 ! aortic valve leaflet -relationship: part_of EMAP:10157 ! TS25,aortic valve -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011742 ! aortic valve leaflet -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10159 -name: TS25,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002135 ! mitral valve -relationship: part_of EMAP:10156 ! TS25,valve,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1016 -name: TS15,mesenchyme derived from neural crest,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1014 ! TS15,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:10160 -name: TS25,leaflets,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0007151 ! leaflets of mitral valve -relationship: part_of EMAP:10159 ! TS25,mitral valve -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007151 ! leaflets of mitral valve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10161 -name: TS25,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002146 ! pulmonary valve -relationship: part_of EMAP:10156 ! TS25,valve,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10162 -name: TS25,leaflets,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0011745 ! pulmonary valve leaflets -relationship: part_of EMAP:10161 ! TS25,pulmonary valve -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011745 ! pulmonary valve leaflets -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10163 -name: TS25,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002134 ! tricuspid valve -relationship: part_of EMAP:10156 ! TS25,valve,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10164 -name: TS25,leaflets,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0005484 ! tricuspid valve leaflet -relationship: part_of EMAP:10163 ! TS25,tricuspid valve -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005484 ! tricuspid valve leaflet -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10165 -name: TS25,ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002082 ! cardiac ventricle -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10166 -name: TS25,interventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005455 ! interventricular groove -relationship: part_of EMAP:10165 ! TS25,ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10167 -name: TS25,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002094 ! interventricular septum -relationship: part_of EMAP:10165 ! TS25,ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10168 -name: TS25,endocardial lining,interventricular septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10167 ! TS25,interventricular septum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002094 ! interventricular septum - -[Term] -id: EMAP:10169 -name: TS25,membranous part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004666 ! interventricular septum membranous part -relationship: part_of EMAP:10167 ! TS25,interventricular septum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1017 -name: TS15,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007238 ! 1st arch maxillary component -relationship: part_of EMAP:1003 ! TS15,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007238 ! 1st arch maxillary component -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10170 -name: TS25,muscular part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004667 ! interventricular septum muscular part -relationship: part_of EMAP:10167 ! TS25,interventricular septum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10171 -name: TS25,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002084 ! heart left ventricle -relationship: part_of EMAP:10165 ! TS25,ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10172 -name: TS25,endocardial lining,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009713 ! endocardium of left ventricle -relationship: part_of EMAP:10171 ! TS25,left ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10173 -name: TS25,cardiac muscle,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003382 ! cardiac muscle of left ventricle -relationship: part_of EMAP:10171 ! TS25,left ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10174 -name: TS25,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002080 ! heart right ventricle -relationship: part_of EMAP:10165 ! TS25,ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10175 -name: TS25,endocardial lining,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009712 ! endocardium of right ventricle -relationship: part_of EMAP:10174 ! TS25,right ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10176 -name: TS25,cardiac muscle,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003381 ! cardiac muscle of right ventricle -relationship: part_of EMAP:10174 ! TS25,right ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10177 -name: TS25,lymphatic system -namespace: mouse_anatomy_stages -is_a: UBERON:0006558 ! lymphatic part of lymphoid system -relationship: part_of EMAP:10061 ! TS25,cardiovascular system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10178 -name: TS25,jugular lymph sac -namespace: mouse_anatomy_stages -is_a: UBERON:0011765 ! jugular lymph sac -relationship: part_of EMAP:10177 ! TS25,lymphatic system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011765 ! jugular lymph sac -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10179 -name: TS25,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:10061 ! TS25,cardiovascular system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1018 -name: TS15,ectoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0012313 ! 1st arch maxillary ectoderm -relationship: part_of EMAP:1017 ! TS15,maxillary component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012313 ! 1st arch maxillary ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10180 -name: TS25,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0013146 ! venous system of brain -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0013146 ! venous system of brain -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10181 -name: TS25,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005720 ! hindbrain venous system -relationship: part_of EMAP:10180 ! TS25,brain,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005720 ! hindbrain venous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10182 -name: TS25,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10181 ! TS25,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005720 ! hindbrain venous system - -[Term] -id: EMAP:10183 -name: TS25,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005486 ! venous dural sinus -relationship: part_of EMAP:10182 ! TS25,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005486 ! venous dural sinus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10186 -name: TS25,transverse,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001641 ! transverse sinus -relationship: part_of EMAP:10183 ! TS25,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001641 ! transverse sinus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10187 -name: TS25,azygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001594 ! azygos vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001594 ! azygos vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10188 -name: TS25,axillary vein -namespace: mouse_anatomy_stages -is_a: UBERON:0000985 ! axillary vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000985 ! axillary vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10189 -name: TS25,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006356 ! epigastric vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006356 ! epigastric vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1019 -name: TS15,endoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013154 ! 1st arch maxillary endoderm -relationship: part_of EMAP:1017 ! TS15,maxillary component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0013154 ! 1st arch maxillary endoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10190 -name: TS25,inferior,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007154 ! inferior epigastric vein -relationship: part_of EMAP:10189 ! TS25,epigastric vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007154 ! inferior epigastric vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10191 -name: TS25,superior,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007155 ! superior epigastric vein -relationship: part_of EMAP:10189 ! TS25,epigastric vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007155 ! superior epigastric vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10192 -name: TS25,intercostal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0012197 ! intercostal vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0012197 ! intercostal vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10193 -name: TS25,common iliac vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001139 ! common iliac vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10194 -name: TS25,ductus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002083 ! ductus venosus -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10195 -name: TS25,jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004711 ! jugular vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004711 ! jugular vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10196 -name: TS25,external,jugular vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10195 ! TS25,jugular vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004711 ! jugular vein - -[Term] -id: EMAP:10197 -name: TS25,internal,jugular vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10195 ! TS25,jugular vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004711 ! jugular vein - -[Term] -id: EMAP:10198 -name: TS25,femoral vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001361 ! femoral vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10199 -name: TS25,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:102 -name: TS9,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:99 ! TS9,trophectoderm -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:1020 -name: TS15,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010045 ! 1st arch maxillary mesenchyme -relationship: part_of EMAP:1017 ! TS15,maxillary component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0010045 ! 1st arch maxillary mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10200 -name: TS25,left,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10199 ! TS25,hepatico-cardiac vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:10201 -name: TS25,right,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10199 ! TS25,hepatico-cardiac vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:10202 -name: TS25,hemiazygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006663 ! hemiazygos vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006663 ! hemiazygos vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10203 -name: TS25,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0004087 ! vena cava -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004087 ! vena cava -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10204 -name: TS25,inferior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001072 ! inferior vena cava -relationship: part_of EMAP:10203 ! TS25,vena cava -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001072 ! inferior vena cava -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10205 -name: TS25,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10204 ! TS25,inferior,vena cava -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:10206 -name: TS25,pre-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10204 ! TS25,inferior,vena cava -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:10207 -name: TS25,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001585 ! anterior vena cava -relationship: part_of EMAP:10203 ! TS25,vena cava -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10208 -name: TS25,left,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006765 ! left anterior vena cava -relationship: part_of EMAP:10207 ! TS25,superior,vena cava -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006765 ! left anterior vena cava -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10209 -name: TS25,right,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006766 ! right anterior vena cava -relationship: part_of EMAP:10207 ! TS25,superior,vena cava -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006766 ! right anterior vena cava -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1021 -name: TS15,mesenchyme derived from head mesoderm,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1020 ! TS15,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:10211 -name: TS25,internal thoracic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001589 ! internal thoracic vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001589 ! internal thoracic vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10212 -name: TS25,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005617 ! mesenteric vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10213 -name: TS25,inferior,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001215 ! inferior mesenteric vein -relationship: part_of EMAP:10212 ! TS25,mesenteric vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001215 ! inferior mesenteric vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10214 -name: TS25,superior,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001138 ! superior mesenteric vein -relationship: part_of EMAP:10212 ! TS25,mesenteric vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001138 ! superior mesenteric vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10215 -name: TS25,ovarian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001145 ! ovarian vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001145 ! ovarian vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10216 -name: TS25,portal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002017 ! portal vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002017 ! portal vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10217 -name: TS25,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10218 -name: TS25,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10219 -name: TS25,pulmonary vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002016 ! pulmonary vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1022 -name: TS15,mesenchyme derived from neural crest,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1020 ! TS15,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:10220 -name: TS25,spinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006686 ! spinal vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006686 ! spinal vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10221 -name: TS25,subclavian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001587 ! subclavian vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10222 -name: TS25,superior vesical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006355 ! superior vesical vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006355 ! superior vesical vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10223 -name: TS25,testicular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001144 ! testicular vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001144 ! testicular vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10224 -name: TS25,thyroid vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:10225 -name: TS25,inferior,thyroid vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007156 ! inferior thyroid vein -relationship: part_of EMAP:10224 ! TS25,thyroid vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007156 ! inferior thyroid vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10226 -name: TS25,superior,thyroid vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007157 ! superior thyroid vein -relationship: part_of EMAP:10224 ! TS25,thyroid vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007157 ! superior thyroid vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10227 -name: TS25,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10228 -name: TS25,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:10227 ! TS25,umbilical vein -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10229 -name: TS25,gland,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0002530 ! gland -relationship: part_of EMAP:9800 ! TS25,organ system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002530 ! gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1023 -name: TS15,maxillary-mandibular groove -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1003 ! TS15,1st arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:10230 -name: TS25,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0002369 ! adrenal gland -relationship: part_of EMAP:10229 ! TS25,gland,organ system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10231 -name: TS25,cortex,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001235 ! adrenal cortex -relationship: part_of EMAP:10230 ! TS25,adrenal gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10232 -name: TS25,medulla,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001236 ! adrenal medulla -relationship: part_of EMAP:10230 ! TS25,adrenal gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10233 -name: TS25,haemolymphoid system -namespace: mouse_anatomy_stages -is_a: UBERON:0002193 ! hemolymphoid system -relationship: part_of EMAP:9800 ! TS25,organ system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002193 ! hemolymphoid system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10234 -name: TS25,gland,haemolymphoid system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10233 ! TS25,haemolymphoid system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002193 ! hemolymphoid system - -[Term] -id: EMAP:10235 -name: TS25,spleen -namespace: mouse_anatomy_stages -is_a: UBERON:0002106 ! spleen -relationship: part_of EMAP:10234 ! TS25,gland,haemolymphoid system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002106 ! spleen -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10236 -name: TS25,thymus -namespace: mouse_anatomy_stages -is_a: UBERON:0002370 ! thymus -relationship: part_of EMAP:10234 ! TS25,gland,haemolymphoid system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002370 ! thymus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10237 -name: TS25,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0002416 ! integumental system -relationship: part_of EMAP:9800 ! TS25,organ system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002416 ! integumental system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10238 -name: TS25,gland,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0003297 ! gland of integumental system -relationship: part_of EMAP:10237 ! TS25,integumental system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10239 -name: TS25,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001911 ! mammary gland -relationship: part_of EMAP:10238 ! TS25,gland,integumental system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1024 -name: TS15,ectoderm,maxillary-mandibular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -relationship: part_of EMAP:1023 ! TS15,maxillary-mandibular groove -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10240 -name: TS25,epithelium,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003244 ! epithelium of mammary gland -relationship: part_of EMAP:10239 ! TS25,mammary gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10241 -name: TS25,mesenchyme,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003326 ! mesenchyme of mammary gland -relationship: part_of EMAP:10239 ! TS25,mammary gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003326 ! mesenchyme of mammary gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10242 -name: TS25,ridge,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0008425 ! mammary ridge -relationship: part_of EMAP:10239 ! TS25,mammary gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0008425 ! mammary ridge -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10243 -name: TS25,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0001037 ! strand of hair -relationship: part_of EMAP:10237 ! TS25,integumental system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001037 ! strand of hair -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10244 -name: TS25,bulb,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0005932 ! bulb of hair follicle -relationship: part_of EMAP:10243 ! TS25,hair -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005932 ! bulb of hair follicle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10245 -name: TS25,follicle,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0002073 ! hair follicle -relationship: part_of EMAP:10243 ! TS25,hair -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002073 ! hair follicle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10246 -name: TS25,root sheath,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0005933 ! hair root sheath -relationship: part_of EMAP:10243 ! TS25,hair -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005933 ! hair root sheath -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10247 -name: TS25,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10237 ! TS25,integumental system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:10248 -name: TS25,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10247 ! TS25,physiological umbilical hernia -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:10249 -name: TS25,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10247 ! TS25,physiological umbilical hernia -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:1025 -name: TS15,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003066 ! pharyngeal arch 2 -relationship: part_of EMAP:1002 ! TS15,branchial arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10250 -name: TS25,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10237 ! TS25,integumental system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10251 -name: TS25,cervical sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10250 ! TS25,rest of skin -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10252 -name: TS25,dermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10250 ! TS25,rest of skin -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10253 -name: TS25,epidermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10250 ! TS25,rest of skin -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10254 -name: TS25,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10237 ! TS25,integumental system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10255 -name: TS25,dermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10254 ! TS25,vibrissa -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10256 -name: TS25,epidermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10254 ! TS25,vibrissa -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10257 -name: TS25,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:9800 ! TS25,organ system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10258 -name: TS25,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:10257 ! TS25,nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10259 -name: TS25,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:10258 ! TS25,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1026 -name: TS15,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005873 ! 2nd arch pharyngeal cleft -relationship: part_of EMAP:1025 ! TS15,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005873 ! 2nd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10260 -name: TS25,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:10259 ! TS25,brain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10261 -name: TS25,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:10260 ! TS25,forebrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10262 -name: TS25,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10263 -name: TS25,pituitary -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:10262 ! TS25,gland,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10264 -name: TS25,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002196 ! adenohypophysis -relationship: part_of EMAP:10263 ! TS25,pituitary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10265 -name: TS25,pars anterior,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0006964 ! pars distalis of adenohypophysis -relationship: part_of EMAP:10264 ! TS25,adenohypophysis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10266 -name: TS25,pars intermedia,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis -relationship: part_of EMAP:10264 ! TS25,adenohypophysis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10267 -name: TS25,pars tuberalis,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002433 ! pars tuberalis of adenohypophysis -relationship: part_of EMAP:10264 ! TS25,adenohypophysis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10268 -name: TS25,remnant of Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0006377 ! remnant of Rathke's pouch -relationship: part_of EMAP:10264 ! TS25,adenohypophysis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10269 -name: TS25,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002198 ! neurohypophysis -relationship: part_of EMAP:10263 ! TS25,pituitary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1027 -name: TS15,ectoderm,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:1026 ! TS15,branchial groove,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10270 -name: TS25,infundibulum,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002434 ! pituitary stalk -relationship: part_of EMAP:10269 ! TS25,neurohypophysis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10271 -name: TS25,median eminence,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002197 ! median eminence of neurohypophysis -relationship: part_of EMAP:10269 ! TS25,neurohypophysis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10272 -name: TS25,pars nervosa,neurohypophysis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10269 ! TS25,neurohypophysis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10273 -name: TS25,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10274 -name: TS25,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:10273 ! TS25,3rd ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10275 -name: TS25,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001899 ! epithalamus -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10276 -name: TS25,mantle layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013159 ! epithalamus mantle layer -relationship: part_of EMAP:10275 ! TS25,epithalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10277 -name: TS25,marginal layer,epithalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10275 ! TS25,epithalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:10278 -name: TS25,ventricular layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013160 ! epithalamus ventricular layer -relationship: part_of EMAP:10275 ! TS25,epithalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10279 -name: TS25,epithalamic recess -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10275 ! TS25,epithalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:1028 -name: TS15,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009215 ! pharyngeal membrane of 2nd arch -relationship: part_of EMAP:1025 ! TS15,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009215 ! pharyngeal membrane of 2nd arch -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10280 -name: TS25,choroid plexus,epithalamic recess -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10279 ! TS25,epithalamic recess -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:10281 -name: TS25,pineal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001905 ! pineal body -relationship: part_of EMAP:10275 ! TS25,epithalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001905 ! pineal body -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10282 -name: TS25,floorplate,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10283 -name: TS25,hypothalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001898 ! hypothalamus -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10284 -name: TS25,mantle layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10283 ! TS25,hypothalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:10285 -name: TS25,marginal layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10283 ! TS25,hypothalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:10286 -name: TS25,ventricular layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10283 ! TS25,hypothalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:10287 -name: TS25,internal capsule,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001887 ! internal capsule -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001887 ! internal capsule -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10288 -name: TS25,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10289 -name: TS25,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1029 -name: TS15,ectoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:1028 ! TS15,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10290 -name: TS25,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:10289 ! TS25,lateral wall,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10291 -name: TS25,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10289 ! TS25,lateral wall,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:10292 -name: TS25,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10289 ! TS25,lateral wall,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:10293 -name: TS25,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003290 ! meninx of diencephalon -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10294 -name: TS25,arachnoid mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:10293 ! TS25,meninges,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10295 -name: TS25,dura mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:10293 ! TS25,meninges,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10296 -name: TS25,pia mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:10293 ! TS25,meninges,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10297 -name: TS25,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10298 -name: TS25,thalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001897 ! thalamus -relationship: part_of EMAP:10261 ! TS25,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001897 ! thalamus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10299 -name: TS25,interthalamic adhesion -namespace: mouse_anatomy_stages -is_a: UBERON:0006681 ! interthalamic adhesion -relationship: part_of EMAP:10298 ! TS25,thalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006681 ! interthalamic adhesion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:103 -name: TS9,ectoplacental cone -namespace: mouse_anatomy_stages -is_a: UBERON:0004364 ! ectoplacental cone -relationship: part_of EMAP:102 ! TS9,polar trophectoderm -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0004364 ! ectoplacental cone -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:1030 -name: TS15,endoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:1028 ! TS15,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10300 -name: TS25,mantle layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10298 ! TS25,thalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:10301 -name: TS25,marginal layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10298 ! TS25,thalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:10302 -name: TS25,ventricular layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10298 ! TS25,thalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:10303 -name: TS25,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:10260 ! TS25,forebrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10304 -name: TS25,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0000956 ! cerebral cortex -relationship: part_of EMAP:10303 ! TS25,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10308 -name: TS25,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:10303 ! TS25,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10309 -name: TS25,choroid fissure,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:10308 ! TS25,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1031 -name: TS15,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007123 ! pharyngeal pouch 2 -relationship: part_of EMAP:1025 ! TS15,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10310 -name: TS25,choroid plexus,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10308 ! TS25,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002192 ! ventricular system choroidal fissure - -[Term] -id: EMAP:10311 -name: TS25,corpus striatum -namespace: mouse_anatomy_stages -is_a: UBERON:0000369 ! corpus striatum -relationship: part_of EMAP:10303 ! TS25,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10312 -name: TS25,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001873 ! caudate nucleus -relationship: part_of EMAP:10311 ! TS25,corpus striatum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10313 -name: TS25,head,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002626 ! head of caudate nucleus -relationship: part_of EMAP:10312 ! TS25,caudate nucleus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002626 ! head of caudate nucleus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10314 -name: TS25,tail,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002628 ! tail of caudate nucleus -relationship: part_of EMAP:10312 ! TS25,caudate nucleus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002628 ! tail of caudate nucleus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10315 -name: TS25,lentiform nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002263 ! lentiform nucleus -relationship: part_of EMAP:10311 ! TS25,corpus striatum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10316 -name: TS25,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:10303 ! TS25,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10317 -name: TS25,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10316 ! TS25,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10318 -name: TS25,choroid plexus,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10317 ! TS25,anterior horn,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10319 -name: TS25,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10316 ! TS25,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:1032 -name: TS15,endoderm,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:1031 ! TS15,branchial pouch,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10320 -name: TS25,choroid plexus,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10319 ! TS25,inferior horn,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10321 -name: TS25,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10316 ! TS25,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10322 -name: TS25,choroid plexus,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10321 ! TS25,posterior horn,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10323 -name: TS25,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10316 ! TS25,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10324 -name: TS25,choroid plexus,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10323 ! TS25,superior horn,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10325 -name: TS25,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:10316 ! TS25,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10327 -name: TS25,head,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10316 ! TS25,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10328 -name: TS25,choroid plexus,head,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10327 ! TS25,head,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10329 -name: TS25,tail,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10316 ! TS25,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:1033 -name: TS15,ectoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:1025 ! TS15,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10330 -name: TS25,choroid plexus,tail,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10329 ! TS25,tail,lateral ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:10333 -name: TS25,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003289 ! meninx of telencephalon -relationship: part_of EMAP:10303 ! TS25,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10334 -name: TS25,arachnoid mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:10333 ! TS25,meninges,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10335 -name: TS25,dura mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002363 ! dura mater -relationship: part_of EMAP:10333 ! TS25,meninges,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002363 ! dura mater -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10336 -name: TS25,falx cerebri -namespace: mouse_anatomy_stages -is_a: UBERON:0006059 ! falx cerebri -relationship: part_of EMAP:10335 ! TS25,dura mater,meninges,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006059 ! falx cerebri -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10337 -name: TS25,pia mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:10333 ! TS25,meninges,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10338 -name: TS25,olfactory lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005366 ! olfactory lobe -relationship: part_of EMAP:10303 ! TS25,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005366 ! olfactory lobe -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10339 -name: TS25,olfactory cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0002894 ! olfactory cortex -relationship: part_of EMAP:10338 ! TS25,olfactory lobe,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1034 -name: TS15,endoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:1025 ! TS15,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10340 -name: TS25,mantle layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10339 ! TS25,olfactory cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:10341 -name: TS25,marginal layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10339 ! TS25,olfactory cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:10342 -name: TS25,ventricular layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10339 ! TS25,olfactory cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:10344 -name: TS25,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:10259 ! TS25,brain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10345 -name: TS25,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:10344 ! TS25,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10346 -name: TS25,lateral recess,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0007656 ! lateral recess of fourth ventricle -relationship: part_of EMAP:10345 ! TS25,4th ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10347 -name: TS25,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0001896 ! medulla oblongata -relationship: part_of EMAP:10344 ! TS25,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10348 -name: TS25,floor plate,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0003311 ! floor plate of medulla oblongata -relationship: part_of EMAP:10347 ! TS25,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10349 -name: TS25,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10347 ! TS25,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:1035 -name: TS15,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005689 ! 2nd arch mesenchyme -relationship: part_of EMAP:1025 ! TS15,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10350 -name: TS25,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10349 ! TS25,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:10351 -name: TS25,mantle layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10350 ! TS25,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:10352 -name: TS25,marginal layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10350 ! TS25,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:10353 -name: TS25,ventricular layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10350 ! TS25,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:10354 -name: TS25,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0005240 ! basal plate medulla oblongata -relationship: part_of EMAP:10349 ! TS25,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10355 -name: TS25,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10354 ! TS25,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:10356 -name: TS25,mantle layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10355 ! TS25,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:10357 -name: TS25,marginal layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10355 ! TS25,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:10358 -name: TS25,ventricular layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10355 ! TS25,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:10359 -name: TS25,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10354 ! TS25,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:1036 -name: TS15,mesenchyme derived from head mesoderm,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:1035 ! TS15,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10360 -name: TS25,mantle layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10359 ! TS25,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:10361 -name: TS25,marginal layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10359 ! TS25,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:10362 -name: TS25,ventricular layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10359 ! TS25,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:10363 -name: TS25,sulcus limitans,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0009576 ! medulla oblongata sulcus limitans -relationship: part_of EMAP:10349 ! TS25,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10364 -name: TS25,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10347 ! TS25,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:10365 -name: TS25,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003291 ! meninx of hindbrain -relationship: part_of EMAP:10344 ! TS25,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10366 -name: TS25,arachnoid mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003559 ! hindbrain arachnoid mater -relationship: part_of EMAP:10365 ! TS25,meninges,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003559 ! hindbrain arachnoid mater -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10367 -name: TS25,dura mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:10365 ! TS25,meninges,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10368 -name: TS25,tentorium cerebelli -namespace: mouse_anatomy_stages -is_a: UBERON:0006691 ! tentorium cerebelli -relationship: part_of EMAP:10367 ! TS25,dura mater,meninges,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006691 ! tentorium cerebelli -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10369 -name: TS25,pia mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003554 ! hindbrain pia mater -relationship: part_of EMAP:10365 ! TS25,meninges,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1037 -name: TS15,mesenchyme derived from neural crest,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -relationship: part_of EMAP:1035 ! TS15,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10370 -name: TS25,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005219 ! hindbrain subarachnoid space -relationship: part_of EMAP:10365 ! TS25,meninges,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005219 ! hindbrain subarachnoid space -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10371 -name: TS25,pontine cistern,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0004048 ! pontine cistern -relationship: part_of EMAP:10370 ! TS25,subarachnoid space,meninges,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004048 ! pontine cistern -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10372 -name: TS25,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:10344 ! TS25,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10373 -name: TS25,floorplate,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10372 ! TS25,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10374 -name: TS25,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10372 ! TS25,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:10375 -name: TS25,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10374 ! TS25,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:10376 -name: TS25,cerebellum -namespace: mouse_anatomy_stages -is_a: UBERON:0002037 ! cerebellum -relationship: part_of EMAP:10375 ! TS25,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10377 -name: TS25,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10376 ! TS25,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:10378 -name: TS25,mantle layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10377 ! TS25,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:10379 -name: TS25,marginal layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10377 ! TS25,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:1038 -name: TS15,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003114 ! pharyngeal arch 3 -relationship: part_of EMAP:1002 ! TS15,branchial arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10380 -name: TS25,ventricular layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10377 ! TS25,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:10385 -name: TS25,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10375 ! TS25,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:10386 -name: TS25,mantle layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10385 ! TS25,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:10387 -name: TS25,marginal layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10385 ! TS25,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:10388 -name: TS25,ventricular layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10385 ! TS25,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:10389 -name: TS25,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:10374 ! TS25,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1039 -name: TS15,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005874 ! 3rd arch pharyngeal cleft -relationship: part_of EMAP:1038 ! TS15,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005874 ! 3rd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10390 -name: TS25,pons -namespace: mouse_anatomy_stages -is_a: UBERON:0000988 ! pons -relationship: part_of EMAP:10389 ! TS25,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000988 ! pons -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10391 -name: TS25,mantle layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10390 ! TS25,pons -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:10392 -name: TS25,marginal layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10390 ! TS25,pons -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:10393 -name: TS25,ventricular layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10390 ! TS25,pons -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:10394 -name: TS25,sulcus limitans,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009577 ! metencephalon sulcus limitans -relationship: part_of EMAP:10374 ! TS25,lateral wall,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10395 -name: TS25,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10372 ! TS25,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:10396 -name: TS25,choroid plexus,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10395 ! TS25,roof,metencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:104 -name: TS9,cytotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000319 ! cytotrophoblast -relationship: part_of EMAP:103 ! TS9,ectoplacental cone -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0000319 ! cytotrophoblast -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:1040 -name: TS15,ectoderm,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:1039 ! TS15,branchial groove,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10402 -name: TS25,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:10259 ! TS25,brain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10403 -name: TS25,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003288 ! meninx of midbrain -relationship: part_of EMAP:10402 ! TS25,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10404 -name: TS25,arachnoid mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003557 ! midbrain arachnoid mater -relationship: part_of EMAP:10403 ! TS25,meninges,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003557 ! midbrain arachnoid mater -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10405 -name: TS25,dura mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:10403 ! TS25,meninges,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10406 -name: TS25,pia mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003551 ! midbrain pia mater -relationship: part_of EMAP:10403 ! TS25,meninges,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10407 -name: TS25,cerebral aqueduct -namespace: mouse_anatomy_stages -is_a: UBERON:0002289 ! midbrain cerebral aqueduct -relationship: part_of EMAP:10402 ! TS25,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10408 -name: TS25,floorplate,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10402 ! TS25,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10409 -name: TS25,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:10402 ! TS25,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1041 -name: TS15,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009216 ! pharyngeal membrane of 3rd arch -relationship: part_of EMAP:1038 ! TS15,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009216 ! pharyngeal membrane of 3rd arch -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10410 -name: TS25,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:10409 ! TS25,lateral wall,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10411 -name: TS25,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10409 ! TS25,lateral wall,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:10412 -name: TS25,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10409 ! TS25,lateral wall,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:10413 -name: TS25,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003299 ! roof plate of midbrain -relationship: part_of EMAP:10402 ! TS25,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10414 -name: TS25,tegmentum,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001943 ! midbrain tegmentum -relationship: part_of EMAP:10402 ! TS25,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10415 -name: TS25,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:10258 ! TS25,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10416 -name: TS25,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:10415 ! TS25,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10417 -name: TS25,facial VII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:10416 ! TS25,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10418 -name: TS25,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:10416 ! TS25,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10419 -name: TS25,inferior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10418 ! TS25,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:1042 -name: TS15,ectoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:1041 ! TS15,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10420 -name: TS25,superior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10418 ! TS25,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:10421 -name: TS25,trigeminal V,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:10416 ! TS25,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10422 -name: TS25,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:10416 ! TS25,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10423 -name: TS25,inferior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:10422 ! TS25,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10424 -name: TS25,superior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:10422 ! TS25,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10425 -name: TS25,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002827 ! auditory ganglion -relationship: part_of EMAP:10416 ! TS25,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002827 ! auditory ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10426 -name: TS25,cochlear component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10425 ! TS25,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002827 ! auditory ganglion - -[Term] -id: EMAP:10427 -name: TS25,vestibular component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002824 ! vestibular ganglion -relationship: part_of EMAP:10425 ! TS25,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10428 -name: TS25,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:10258 ! TS25,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10429 -name: TS25,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:10428 ! TS25,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1043 -name: TS15,endoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:1041 ! TS15,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10430 -name: TS25,abducent VI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001785 ! cranial nerve - -[Term] -id: EMAP:10431 -name: TS25,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10432 -name: TS25,cranial component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009673 ! accessory XI nerve cranial component -relationship: part_of EMAP:10431 ! TS25,accessory XI -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10433 -name: TS25,spinal component,accessory XI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10431 ! TS25,accessory XI -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002019 ! accessory XI nerve - -[Term] -id: EMAP:10434 -name: TS25,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001647 ! facial nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10435 -name: TS25,chorda tympani branch,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009675 ! facial VII nerve chorda tympani branch -relationship: part_of EMAP:10434 ! TS25,facial VII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009675 ! facial VII nerve chorda tympani branch -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10436 -name: TS25,glossopharyngeal IX -namespace: mouse_anatomy_stages -is_a: UBERON:0001649 ! glossopharyngeal nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10437 -name: TS25,hypoglossal XII -namespace: mouse_anatomy_stages -is_a: UBERON:0001650 ! hypoglossal nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10438 -name: TS25,oculomotor III -namespace: mouse_anatomy_stages -is_a: UBERON:0001643 ! oculomotor nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10439 -name: TS25,olfactory I -namespace: mouse_anatomy_stages -is_a: UBERON:0001579 ! olfactory nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1044 -name: TS15,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007124 ! pharyngeal pouch 3 -relationship: part_of EMAP:1038 ! TS15,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10440 -name: TS25,optic II -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10441 -name: TS25,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001645 ! trigeminal nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10442 -name: TS25,mandibular division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10441 ! TS25,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:10443 -name: TS25,maxillary division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10441 ! TS25,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:10444 -name: TS25,ophthalmic division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000348 ! ophthalmic nerve -relationship: part_of EMAP:10441 ! TS25,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10445 -name: TS25,trochlear IV -namespace: mouse_anatomy_stages -is_a: UBERON:0001644 ! trochlear nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10446 -name: TS25,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001648 ! vestibulocochlear nerve -relationship: part_of EMAP:10429 ! TS25,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10447 -name: TS25,cochlear component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10446 ! TS25,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:10448 -name: TS25,vestibular component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10446 ! TS25,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:10449 -name: TS25,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:10258 ! TS25,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1045 -name: TS15,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:1044 ! TS15,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10450 -name: TS25,conus medullaris,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005437 ! conus medullaris -relationship: part_of EMAP:10449 ! TS25,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005437 ! conus medullaris -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10451 -name: TS25,filum terminale,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005443 ! filum terminale -relationship: part_of EMAP:10449 ! TS25,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005443 ! filum terminale -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10452 -name: TS25,floorplate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10449 ! TS25,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10453 -name: TS25,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009582 ! spinal cord lateral wall -relationship: part_of EMAP:10449 ! TS25,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10454 -name: TS25,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009583 ! spinal cord mantle layer -relationship: part_of EMAP:10453 ! TS25,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009583 ! spinal cord mantle layer -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10455 -name: TS25,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:10454 ! TS25,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10456 -name: TS25,dorsal grey horn,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002256 ! dorsal horn of spinal cord -relationship: part_of EMAP:10455 ! TS25,alar columns,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10457 -name: TS25,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10454 ! TS25,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:10458 -name: TS25,ventral grey horn,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002257 ! ventral horn of spinal cord -relationship: part_of EMAP:10457 ! TS25,basal columns,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10459 -name: TS25,intermediate grey horn,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10454 ! TS25,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:1046 -name: TS15,ectoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:1038 ! TS15,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10460 -name: TS25,marginal layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10453 ! TS25,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0009582 ! spinal cord lateral wall - -[Term] -id: EMAP:10461 -name: TS25,sulcus limitans,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009570 ! spinal cord sulcus limitans -relationship: part_of EMAP:10453 ! TS25,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10462 -name: TS25,ventricular layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005359 ! spinal cord ependyma -relationship: part_of EMAP:10453 ! TS25,lateral wall,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10463 -name: TS25,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003292 ! meninx of spinal cord -relationship: part_of EMAP:10449 ! TS25,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10464 -name: TS25,arachnoid mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003560 ! spinal cord arachnoid mater -relationship: part_of EMAP:10463 ! TS25,meninges,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003560 ! spinal cord arachnoid mater -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10465 -name: TS25,dura mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002093 ! spinal dura mater -relationship: part_of EMAP:10463 ! TS25,meninges,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10466 -name: TS25,pia mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003555 ! spinal cord pia mater -relationship: part_of EMAP:10463 ! TS25,meninges,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10467 -name: TS25,roof plate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10449 ! TS25,spinal cord -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002240 ! spinal cord - -[Term] -id: EMAP:1047 -name: TS15,endoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:1038 ! TS15,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10470 -name: TS25,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001871 ! temporal lobe -relationship: part_of EMAP:10303 ! TS25,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001871 ! temporal lobe -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10471 -name: TS25,marginal layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10470 ! TS25,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:10472 -name: TS25,ventricular layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10470 ! TS25,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:10473 -name: TS25,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:10257 ! TS25,nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10474 -name: TS25,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:10473 ! TS25,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10475 -name: TS25,ganglion,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:10474 ! TS25,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10476 -name: TS25,ciliary ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0002058 ! ciliary ganglion -relationship: part_of EMAP:10475 ! TS25,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002058 ! ciliary ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10477 -name: TS25,paraganglion of Zuckerkandl -namespace: mouse_anatomy_stages -is_a: UBERON:0001237 ! paraaortic body -relationship: part_of EMAP:10475 ! TS25,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10478 -name: TS25,nerve plexus,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001816 ! autonomic nerve plexus -relationship: part_of EMAP:10474 ! TS25,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001816 ! autonomic nerve plexus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10479 -name: TS25,hypogastric plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005303 ! hypogastric nerve -relationship: part_of EMAP:10478 ! TS25,nerve plexus,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005303 ! hypogastric nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1048 -name: TS15,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005690 ! 3rd arch mesenchyme -relationship: part_of EMAP:1038 ! TS15,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10480 -name: TS25,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000011 ! parasympathetic nervous system -relationship: part_of EMAP:10474 ! TS25,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10481 -name: TS25,nerve,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004293 ! parasympathetic nerve -relationship: part_of EMAP:10480 ! TS25,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10482 -name: TS25,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0006308 ! vagal X nerve trunk -relationship: part_of EMAP:10481 ! TS25,nerve,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006308 ! vagal X nerve trunk -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10483 -name: TS25,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10482 ! TS25,vagal X nerve trunk -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10485 -name: TS25,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -relationship: part_of EMAP:10482 ! TS25,vagal X nerve trunk -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10487 -name: TS25,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:10474 ! TS25,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10488 -name: TS25,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:10487 ! TS25,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10489 -name: TS25,cervico-thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002441 ! cervicothoracic ganglion -relationship: part_of EMAP:10488 ! TS25,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002441 ! cervicothoracic ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1049 -name: TS15,mesenchyme derived from head mesoderm,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:1048 ! TS15,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10490 -name: TS25,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001991 ! cervical ganglion -relationship: part_of EMAP:10488 ! TS25,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10491 -name: TS25,inferior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002440 ! inferior cervical ganglion -relationship: part_of EMAP:10490 ! TS25,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10494 -name: TS25,superior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001989 ! superior cervical ganglion -relationship: part_of EMAP:10490 ! TS25,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10495 -name: TS25,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:10488 ! TS25,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10496 -name: TS25,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:10487 ! TS25,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10497 -name: TS25,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:10473 ! TS25,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10498 -name: TS25,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10497 ! TS25,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:10499 -name: TS25,dorsal root ganglion,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:10498 ! TS25,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:105 -name: TS9,syncytiotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000371 ! syncytiotrophoblast -relationship: part_of EMAP:103 ! TS9,ectoplacental cone -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0000371 ! syncytiotrophoblast -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:1050 -name: TS15,mesenchyme derived from neural crest,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -relationship: part_of EMAP:1048 ! TS15,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10500 -name: TS25,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:10497 ! TS25,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10501 -name: TS25,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:10500 ! TS25,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10502 -name: TS25,median nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001148 ! median nerve -relationship: part_of EMAP:10501 ! TS25,brachial plexus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001148 ! median nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10503 -name: TS25,radial nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001492 ! radial nerve -relationship: part_of EMAP:10501 ! TS25,brachial plexus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10504 -name: TS25,ulnar nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001494 ! ulnar nerve -relationship: part_of EMAP:10501 ! TS25,brachial plexus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10505 -name: TS25,lumbo-sacral plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001815 ! lumbosacral nerve plexus -relationship: part_of EMAP:10500 ! TS25,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10506 -name: TS25,sciatic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001322 ! sciatic nerve -relationship: part_of EMAP:10505 ! TS25,lumbo-sacral plexus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001322 ! sciatic nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1051 -name: TS15,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10512 -name: TS25,axillary nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001493 ! axillary nerve -relationship: part_of EMAP:10501 ! TS25,brachial plexus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001493 ! axillary nerve -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10513 -name: TS25,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:9800 ! TS25,organ system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10514 -name: TS25,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:10513 ! TS25,sensory organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10515 -name: TS25,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:10514 ! TS25,ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10516 -name: TS25,external auditory meatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001352 ! external acoustic meatus -relationship: part_of EMAP:10515 ! TS25,external ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1052 -name: TS15,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:1051 ! TS15,cavities and their linings -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10520 -name: TS25,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001757 ! pinna -relationship: part_of EMAP:10515 ! TS25,external ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001757 ! pinna -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10521 -name: TS25,cartilage condensation,pinna,external ear -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10520 ! TS25,pinna,external ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10522 -name: TS25,mesenchyme,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0003325 ! mesenchyme of pinna -relationship: part_of EMAP:10520 ! TS25,pinna,external ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10523 -name: TS25,surface epithelium,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0006938 ! pinna surface epithelium -relationship: part_of EMAP:10520 ! TS25,pinna,external ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10524 -name: TS25,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:10514 ! TS25,ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10525 -name: TS25,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:10524 ! TS25,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10526 -name: TS25,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10525 ! TS25,endolymphatic appendage -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:10527 -name: TS25,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10525 ! TS25,endolymphatic appendage -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:10528 -name: TS25,endolymphatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001860 ! endolymphatic duct -relationship: part_of EMAP:10524 ! TS25,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10529 -name: TS25,associated mesenchyme,endolymphatic duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10528 ! TS25,endolymphatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001860 ! endolymphatic duct - -[Term] -id: EMAP:1053 -name: TS15,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1052 ! TS15,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:10530 -name: TS25,epithelium,endolymphatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003362 ! epithelium of endolymphatic duct -relationship: part_of EMAP:10528 ! TS25,endolymphatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003362 ! epithelium of endolymphatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10531 -name: TS25,labyrinth -namespace: mouse_anatomy_stages -is_a: UBERON:0001849 ! membranous labyrinth -relationship: part_of EMAP:10524 ! TS25,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10532 -name: TS25,associated mesenchyme,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10531 ! TS25,labyrinth -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:10533 -name: TS25,epithelium,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10531 ! TS25,labyrinth -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:10534 -name: TS25,otic cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0005410 ! cartilaginous otic capsule -relationship: part_of EMAP:10524 ! TS25,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10535 -name: TS25,vestibular component,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001862 ! vestibular labyrinth -relationship: part_of EMAP:10524 ! TS25,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10536 -name: TS25,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0001861 ! ductus reuniens -relationship: part_of EMAP:10535 ! TS25,vestibular component,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10537 -name: TS25,associated mesenchyme,ductus reuniens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10536 ! TS25,ductus reuniens -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001861 ! ductus reuniens - -[Term] -id: EMAP:10538 -name: TS25,epithelium,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0003363 ! epithelium of ductus reuniens -relationship: part_of EMAP:10536 ! TS25,ductus reuniens -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10539 -name: TS25,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0001854 ! saccule of membranous labyrinth -relationship: part_of EMAP:10535 ! TS25,vestibular component,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1054 -name: TS15,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1053 ! TS15,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:10540 -name: TS25,associated mesenchyme,saccule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10539 ! TS25,saccule -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EMAP:10541 -name: TS25,cochlea -namespace: mouse_anatomy_stages -is_a: UBERON:0001844 ! cochlea -relationship: part_of EMAP:10539 ! TS25,saccule -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001844 ! cochlea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10542 -name: TS25,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth -relationship: part_of EMAP:10541 ! TS25,cochlea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10543 -name: TS25,associated mesenchyme,cochlear duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10542 ! TS25,cochlear duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: EMAP:10544 -name: TS25,epithelium,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003243 ! epithelium of cochlear duct -relationship: part_of EMAP:10542 ! TS25,cochlear duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003243 ! epithelium of cochlear duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10545 -name: TS25,epithelium,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0003242 ! epithelium of saccule -relationship: part_of EMAP:10539 ! TS25,saccule -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10546 -name: TS25,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0001853 ! utricle of membranous labyrinth -relationship: part_of EMAP:10535 ! TS25,vestibular component,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10547 -name: TS25,associated mesenchyme,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10546 ! TS25,utricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EMAP:10548 -name: TS25,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0005600 ! crus commune -relationship: part_of EMAP:10546 ! TS25,utricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005600 ! crus commune -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10549 -name: TS25,associated mesenchyme,crus commune,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10548 ! TS25,crus commune,utricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005600 ! crus commune - -[Term] -id: EMAP:1055 -name: TS15,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:1053 ! TS15,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10550 -name: TS25,epithelium,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:10548 ! TS25,crus commune,utricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10551 -name: TS25,epithelium,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:10546 ! TS25,utricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10552 -name: TS25,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001843 ! lateral semicircular canal -relationship: part_of EMAP:10546 ! TS25,utricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10553 -name: TS25,associated mesenchyme,lateral semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10552 ! TS25,lateral semicircular canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001843 ! lateral semicircular canal - -[Term] -id: EMAP:10554 -name: TS25,epithelium,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003240 ! epithelium of lateral semicircular canal -relationship: part_of EMAP:10552 ! TS25,lateral semicircular canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10555 -name: TS25,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001842 ! posterior semicircular canal -relationship: part_of EMAP:10546 ! TS25,utricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10556 -name: TS25,associated mesenchyme,posterior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10555 ! TS25,posterior semicircular canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EMAP:10557 -name: TS25,epithelium,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal -relationship: part_of EMAP:10555 ! TS25,posterior semicircular canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10558 -name: TS25,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001841 ! anterior semicircular canal -relationship: part_of EMAP:10546 ! TS25,utricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10559 -name: TS25,associated mesenchyme,superior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10558 ! TS25,superior semicircular canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EMAP:1056 -name: TS15,parietal,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007187 ! pericardial parietal mesothelium -relationship: part_of EMAP:1055 ! TS15,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10560 -name: TS25,epithelium,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003238 ! epithelium of superior semicircular canal -relationship: part_of EMAP:10558 ! TS25,superior semicircular canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10561 -name: TS25,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:10514 ! TS25,ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10562 -name: TS25,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:10561 ! TS25,middle ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10563 -name: TS25,ossicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001686 ! auditory ossicle -relationship: part_of EMAP:10561 ! TS25,middle ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001686 ! auditory ossicle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10564 -name: TS25,incus -namespace: mouse_anatomy_stages -is_a: UBERON:0001688 ! incus -relationship: part_of EMAP:10563 ! TS25,ossicle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001688 ! incus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10565 -name: TS25,malleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001689 ! malleus -relationship: part_of EMAP:10563 ! TS25,ossicle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001689 ! malleus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10566 -name: TS25,stapes -namespace: mouse_anatomy_stages -is_a: UBERON:0001687 ! stapes -relationship: part_of EMAP:10563 ! TS25,ossicle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001687 ! stapes -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10567 -name: TS25,pharyngo-tympanic tube -namespace: mouse_anatomy_stages -is_a: UBERON:0002393 ! pharyngotympanic tube -relationship: part_of EMAP:10561 ! TS25,middle ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10568 -name: TS25,stapedius muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001599 ! stapedius muscle -relationship: part_of EMAP:10561 ! TS25,middle ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001599 ! stapedius muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10569 -name: TS25,tensor tympani muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001600 ! tensor tympani -relationship: part_of EMAP:10561 ! TS25,middle ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001600 ! tensor tympani -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1057 -name: TS15,visceral,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007186 ! pericardial visceral mesothelium -relationship: part_of EMAP:1055 ! TS15,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10570 -name: TS25,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:10561 ! TS25,middle ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10571 -name: TS25,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:10513 ! TS25,sensory organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10572 -name: TS25,anterior chamber,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001766 ! anterior chamber of eyeball -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10573 -name: TS25,aqueous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001796 ! aqueous humor of eyeball -relationship: part_of EMAP:10572 ! TS25,anterior chamber,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10574 -name: TS25,choroidal blood vessels,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0002443 ! choroidal blood vessel -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10575 -name: TS25,conjunctival sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005908 ! conjunctival sac -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005908 ! conjunctival sac -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10576 -name: TS25,lower recess,conjunctival sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10575 ! TS25,conjunctival sac -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005908 ! conjunctival sac - -[Term] -id: EMAP:10577 -name: TS25,upper recess,conjunctival sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10575 ! TS25,conjunctival sac -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005908 ! conjunctival sac - -[Term] -id: EMAP:10578 -name: TS25,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10579 -name: TS25,Descemet's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004367 ! Descemet's membrane -relationship: part_of EMAP:10578 ! TS25,cornea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004367 ! Descemet's membrane -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1058 -name: TS15,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:1052 ! TS15,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10580 -name: TS25,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:10578 ! TS25,cornea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10581 -name: TS25,stroma,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001777 ! substantia propria of cornea -relationship: part_of EMAP:10578 ! TS25,cornea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10582 -name: TS25,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001711 ! eyelid -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001711 ! eyelid -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10583 -name: TS25,inner canthus,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0005611 ! inner canthus -relationship: part_of EMAP:10582 ! TS25,eyelid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10584 -name: TS25,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001713 ! lower eyelid -relationship: part_of EMAP:10582 ! TS25,eyelid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10585 -name: TS25,epithelium,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003845 ! lower eyelid epithelium -relationship: part_of EMAP:10584 ! TS25,lower,eyelid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003845 ! lower eyelid epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10586 -name: TS25,mesenchyme,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:10584 ! TS25,lower,eyelid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10587 -name: TS25,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001712 ! upper eyelid -relationship: part_of EMAP:10582 ! TS25,eyelid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10588 -name: TS25,epithelium,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003844 ! upper eyelid epithelium -relationship: part_of EMAP:10587 ! TS25,upper,eyelid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003844 ! upper eyelid epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10589 -name: TS25,mesenchyme,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:10587 ! TS25,upper,eyelid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1059 -name: TS15,cavity,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:1058 ! TS15,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10590 -name: TS25,hyaloid cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005606 ! hyaloid cavity -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10591 -name: TS25,hyaloid vascular plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005607 ! hyaloid vascular plexus -relationship: part_of EMAP:10590 ! TS25,hyaloid cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10592 -name: TS25,tunica vasculosa lentis -namespace: mouse_anatomy_stages -is_a: UBERON:0006305 ! tunica vasculosa lentis -relationship: part_of EMAP:10591 ! TS25,hyaloid vascular plexus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006305 ! tunica vasculosa lentis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10593 -name: TS25,vasa hyaloidea propria -namespace: mouse_anatomy_stages -is_a: UBERON:0006358 ! vasa hyaloidea propria -relationship: part_of EMAP:10591 ! TS25,hyaloid vascular plexus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006358 ! vasa hyaloidea propria -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10594 -name: TS25,vitreous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001797 ! vitreous humor -relationship: part_of EMAP:10590 ! TS25,hyaloid cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10595 -name: TS25,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0000965 ! lens of camera-type eye -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10596 -name: TS25,anterior epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005614 ! lens anterior epithelium -relationship: part_of EMAP:10595 ! TS25,lens -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10597 -name: TS25,capsule,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0001804 ! capsule of lens -relationship: part_of EMAP:10595 ! TS25,lens -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10598 -name: TS25,equatorial epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005615 ! lens equatorial epithelium -relationship: part_of EMAP:10595 ! TS25,lens -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005615 ! lens equatorial epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10599 -name: TS25,lens fibres -namespace: mouse_anatomy_stages -is_a: UBERON:0002444 ! lens fiber -relationship: part_of EMAP:10595 ! TS25,lens -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:106 -name: TS10,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1060 -name: TS15,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:1058 ! TS15,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10600 -name: TS25,anterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10599 ! TS25,lens fibres -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:10601 -name: TS25,posterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10599 ! TS25,lens fibres -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:10602 -name: TS25,optic chiasma -namespace: mouse_anatomy_stages -is_a: UBERON:0000959 ! optic chiasma -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10603 -name: TS25,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10604 -name: TS25,optic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:10603 ! TS25,optic stalk -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10605 -name: TS25,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10606 -name: TS25,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10607 -name: TS25,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:10606 ! TS25,retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10608 -name: TS25,nerve fibre layer,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0001793 ! nerve fiber layer of retina -relationship: part_of EMAP:10607 ! TS25,neural retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10609 -name: TS25,nuclear layer,neural retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10607 ! TS25,neural retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003902 ! retinal neural layer - -[Term] -id: EMAP:1061 -name: TS15,parietal,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -relationship: part_of EMAP:1060 ! TS15,mesothelium,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10612 -name: TS25,optic disc -namespace: mouse_anatomy_stages -is_a: UBERON:0001783 ! optic disc -relationship: part_of EMAP:10606 ! TS25,retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001783 ! optic disc -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10613 -name: TS25,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:10606 ! TS25,retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10614 -name: TS25,skeletal muscle,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003269 ! skeletal muscle of eye -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003269 ! skeletal muscle of eye -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10615 -name: TS25,extrinsic ocular muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001601 ! extra-ocular muscle -relationship: part_of EMAP:10614 ! TS25,skeletal muscle,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10616 -name: TS25,smooth muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003386 ! smooth muscle of eye -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003386 ! smooth muscle of eye -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10617 -name: TS25,intrinsic ocular muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0011222 ! intra-ocular muscle -relationship: part_of EMAP:10616 ! TS25,smooth muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011222 ! intra-ocular muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10618 -name: TS25,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:10513 ! TS25,sensory organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10619 -name: TS25,meatus,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10618 ! TS25,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000004 ! olfactory apparatus - -[Term] -id: EMAP:1062 -name: TS15,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1052 ! TS15,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:10620 -name: TS25,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000003 ! naris -relationship: part_of EMAP:10618 ! TS25,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000003 ! naris -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10621 -name: TS25,anterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10620 ! TS25,naris,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:10622 -name: TS25,epithelium,anterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10621 ! TS25,anterior,naris,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:10623 -name: TS25,external,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0005928 ! external naris -relationship: part_of EMAP:10620 ! TS25,naris,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005928 ! external naris -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10624 -name: TS25,epithelium,external,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0004692 ! external naris epithelium -relationship: part_of EMAP:10623 ! TS25,external,naris,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004692 ! external naris epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10625 -name: TS25,posterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10620 ! TS25,naris,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:10626 -name: TS25,epithelium,posterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10625 ! TS25,posterior,naris,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:10627 -name: TS25,primary choana -namespace: mouse_anatomy_stages -is_a: UBERON:0005931 ! primary choana -relationship: part_of EMAP:10620 ! TS25,naris,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005931 ! primary choana -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10628 -name: TS25,nasal capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0006332 ! nasal capsule -relationship: part_of EMAP:10618 ! TS25,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10629 -name: TS25,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001707 ! nasal cavity -relationship: part_of EMAP:10618 ! TS25,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1063 -name: TS15,cavity,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1062 ! TS15,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:10630 -name: TS25,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005384 ! nasal cavity epithelium -relationship: part_of EMAP:10629 ! TS25,nasal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10631 -name: TS25,olfactory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001997 ! olfactory epithelium -relationship: part_of EMAP:10630 ! TS25,epithelium,nasal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10632 -name: TS25,respiratory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000171 ! respiration organ -relationship: part_of EMAP:10630 ! TS25,epithelium,nasal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10633 -name: TS25,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0001706 ! nasal septum -relationship: part_of EMAP:10618 ! TS25,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10634 -name: TS25,epithelium,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003356 ! epithelium of nasal septum -relationship: part_of EMAP:10633 ! TS25,nasal septum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003356 ! epithelium of nasal septum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10635 -name: TS25,mesenchyme,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003415 ! mesenchyme of nasal septum -relationship: part_of EMAP:10633 ! TS25,nasal septum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10636 -name: TS25,naso-lacrimal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002392 ! nasolacrimal duct -relationship: part_of EMAP:10618 ! TS25,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10637 -name: TS25,turbinate bones,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10618 ! TS25,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10638 -name: TS25,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002255 ! vomeronasal organ -relationship: part_of EMAP:10618 ! TS25,nose -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10639 -name: TS25,mesenchyme,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003421 ! mesenchyme of vomeronasal organ -relationship: part_of EMAP:10638 ! TS25,vomeronasal organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1064 -name: TS15,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0005669 ! peritoneal cavity mesothelium -relationship: part_of EMAP:1062 ! TS15,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005669 ! peritoneal cavity mesothelium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10640 -name: TS25,epithelium,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003367 ! epithelium of vomeronasal organ -relationship: part_of EMAP:10638 ! TS25,vomeronasal organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10641 -name: TS25,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:9801 ! TS25,visceral organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10642 -name: TS25,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:10641 ! TS25,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10643 -name: TS25,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:10642 ! TS25,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10644 -name: TS25,salivary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001044 ! salivary gland -relationship: part_of EMAP:10643 ! TS25,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001044 ! salivary gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10645 -name: TS25,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001832 ! sublingual gland -relationship: part_of EMAP:10644 ! TS25,salivary gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001832 ! sublingual gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10646 -name: TS25,epithelium,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003361 ! epithelium of sublingual gland -relationship: part_of EMAP:10645 ! TS25,sublingual gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003361 ! epithelium of sublingual gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10647 -name: TS25,mesenchyme,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003420 ! mesenchyme of sublingual gland -relationship: part_of EMAP:10645 ! TS25,sublingual gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003420 ! mesenchyme of sublingual gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10648 -name: TS25,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001736 ! submandibular gland -relationship: part_of EMAP:10644 ! TS25,salivary gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001736 ! submandibular gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10649 -name: TS25,epithelium,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003359 ! epithelium of submandibular gland -relationship: part_of EMAP:10648 ! TS25,submandibular gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003359 ! epithelium of submandibular gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1065 -name: TS15,parietal,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1064 ! TS15,mesothelium,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005669 ! peritoneal cavity mesothelium - -[Term] -id: EMAP:10650 -name: TS25,mesenchyme,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003418 ! mesenchyme of submandibular gland -relationship: part_of EMAP:10648 ! TS25,submandibular gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003418 ! mesenchyme of submandibular gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10651 -name: TS25,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:10641 ! TS25,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10652 -name: TS25,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0003408 ! gland of gut -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003408 ! gland of gut -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10653 -name: TS25,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001264 ! pancreas -relationship: part_of EMAP:10652 ! TS25,gland,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001264 ! pancreas -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10654 -name: TS25,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001150 ! body of pancreas -relationship: part_of EMAP:10653 ! TS25,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10655 -name: TS25,dorsal pancreatic duct,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:10654 ! TS25,body,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10656 -name: TS25,parenchyma,body,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10654 ! TS25,body,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001150 ! body of pancreas - -[Term] -id: EMAP:10657 -name: TS25,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001069 ! head of pancreas -relationship: part_of EMAP:10653 ! TS25,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10658 -name: TS25,ventral pancreatic duct,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001064 ! ventral pancreatic duct -relationship: part_of EMAP:10657 ! TS25,head,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001064 ! ventral pancreatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10659 -name: TS25,parenchyma,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10657 ! TS25,head,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:1066 -name: TS15,visceral,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1064 ! TS15,mesothelium,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005669 ! peritoneal cavity mesothelium - -[Term] -id: EMAP:10660 -name: TS25,uncinate process,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0010373 ! uncinate process of pancreas -relationship: part_of EMAP:10657 ! TS25,head,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010373 ! uncinate process of pancreas -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10661 -name: TS25,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001151 ! tail of pancreas -relationship: part_of EMAP:10653 ! TS25,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10662 -name: TS25,dorsal pancreatic duct,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:10661 ! TS25,tail,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10663 -name: TS25,parenchyma,tail,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10661 ! TS25,tail,pancreas -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001151 ! tail of pancreas - -[Term] -id: EMAP:10664 -name: TS25,thyroid,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:10652 ! TS25,gland,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10665 -name: TS25,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0001831 ! parotid gland -relationship: part_of EMAP:10643 ! TS25,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001831 ! parotid gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10666 -name: TS25,epithelium,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0003360 ! epithelium of parotid gland -relationship: part_of EMAP:10665 ! TS25,parotid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003360 ! epithelium of parotid gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10667 -name: TS25,mesenchyme,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0003419 ! mesenchyme of parotid -relationship: part_of EMAP:10665 ! TS25,parotid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003419 ! mesenchyme of parotid -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10668 -name: TS25,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:10664 ! TS25,thyroid,gland,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10669 -name: TS25,isthmus -namespace: mouse_anatomy_stages -is_a: UBERON:0001609 ! isthmus of thyroid gland -relationship: part_of EMAP:10664 ! TS25,thyroid,gland,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1067 -name: TS15,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10670 -name: TS25,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001118 ! lobe of thyroid gland -relationship: part_of EMAP:10664 ! TS25,thyroid,gland,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10671 -name: TS25,left,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10670 ! TS25,lobe,thyroid,gland,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001118 ! lobe of thyroid gland - -[Term] -id: EMAP:10672 -name: TS25,right,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10670 ! TS25,lobe,thyroid,gland,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001118 ! lobe of thyroid gland - -[Term] -id: EMAP:10673 -name: TS25,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:10664 ! TS25,thyroid,gland,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10674 -name: TS25,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:10641 ! TS25,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10675 -name: TS25,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0000159 ! anal canal -relationship: part_of EMAP:10674 ! TS25,anal region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000159 ! anal canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10676 -name: TS25,associated mesenchyme,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10675 ! TS25,anal canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10677 -name: TS25,epithelium,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10675 ! TS25,anal canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10678 -name: TS25,lumen,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007158 ! lumen of anal canal -relationship: part_of EMAP:10675 ! TS25,anal canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007158 ! lumen of anal canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10679 -name: TS25,vascular element,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10675 ! TS25,anal canal -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:1068 -name: TS15,surface ectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:1067 ! TS15,ectoderm,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10680 -name: TS25,external sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001367 ! external anal sphincter -relationship: part_of EMAP:10674 ! TS25,anal region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001367 ! external anal sphincter -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10681 -name: TS25,internal sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001244 ! internal anal sphincter -relationship: part_of EMAP:10674 ! TS25,anal region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001244 ! internal anal sphincter -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10682 -name: TS25,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10683 -name: TS25,skeleton,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10682 ! TS25,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:10684 -name: TS25,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001685 ! hyoid bone -relationship: part_of EMAP:10683 ! TS25,skeleton,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001685 ! hyoid bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10685 -name: TS25,greater horn,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0003997 ! hyoid bone greater horn -relationship: part_of EMAP:10684 ! TS25,hyoid bone -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003997 ! hyoid bone greater horn -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10686 -name: TS25,lesser horn,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0003998 ! hyoid bone lesser horn -relationship: part_of EMAP:10684 ! TS25,hyoid bone -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003998 ! hyoid bone lesser horn -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10687 -name: TS25,body -namespace: mouse_anatomy_stages -is_a: UBERON:0003999 ! hyoid bone body -relationship: part_of EMAP:10684 ! TS25,hyoid bone -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003999 ! hyoid bone body -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1069 -name: TS15,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10696 -name: TS25,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0002114 ! duodenum -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002114 ! duodenum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10697 -name: TS25,duodenal papilla -namespace: mouse_anatomy_stages -is_a: UBERON:0004914 ! duodenal papilla -relationship: part_of EMAP:10696 ! TS25,duodenum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004914 ! duodenal papilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10698 -name: TS25,sphincter of Oddi -namespace: mouse_anatomy_stages -is_a: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -relationship: part_of EMAP:10696 ! TS25,duodenum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10699 -name: TS25,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:107 -name: TS10,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:106 ! TS10,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1070 -name: TS15,forelimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005417 ! forelimb bud -relationship: part_of EMAP:1069 ! TS15,limb -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10700 -name: TS25,associated mesenchyme,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10699 ! TS25,gastro-oesophageal junction -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10701 -name: TS25,epithelium,gastro-oesophageal junction -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10699 ! TS25,gastro-oesophageal junction -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10702 -name: TS25,lumen,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10699 ! TS25,gastro-oesophageal junction -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:10703 -name: TS25,vascular element,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10699 ! TS25,gastro-oesophageal junction -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:10704 -name: TS25,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10705 -name: TS25,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10704 ! TS25,oesophagus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10706 -name: TS25,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10704 ! TS25,oesophagus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10707 -name: TS25,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10704 ! TS25,oesophagus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:10708 -name: TS25,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:10704 ! TS25,oesophagus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10709 -name: TS25,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:10708 ! TS25,mesentery,oesophagus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1071 -name: TS15,ectoderm,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1070 ! TS15,forelimb bud -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:10710 -name: TS25,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10704 ! TS25,oesophagus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:10711 -name: TS25,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10682 ! TS25,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10712 -name: TS25,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10682 ! TS25,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10713 -name: TS25,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:10682 ! TS25,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10714 -name: TS25,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:10682 ! TS25,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10715 -name: TS25,circumvallate papilla,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0000396 ! vallate papilla -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000396 ! vallate papilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10716 -name: TS25,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003357 ! epithelium of tongue -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10717 -name: TS25,filiform papillae,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0002467 ! filiform papilla -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002467 ! filiform papilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10718 -name: TS25,frenulum,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006689 ! frenulum of tongue -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006689 ! frenulum of tongue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10719 -name: TS25,fungiform papillae,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:1072 -name: TS15,mesenchyme,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1070 ! TS15,forelimb bud -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:10720 -name: TS25,intermolar eminence,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006360 ! intermolar eminence -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006360 ! intermolar eminence -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10721 -name: TS25,median fibrous septum,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:10722 -name: TS25,mesenchyme,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003416 ! mesenchyme of tongue -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003416 ! mesenchyme of tongue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10723 -name: TS25,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003273 ! skeletal muscle of tongue -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003273 ! skeletal muscle of tongue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10724 -name: TS25,extrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001575 ! extrinsic muscle of tongue -relationship: part_of EMAP:10723 ! TS25,skeletal muscle,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10725 -name: TS25,genioglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001571 ! genioglossus -relationship: part_of EMAP:10724 ! TS25,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001571 ! genioglossus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10726 -name: TS25,hyoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001572 ! hyoglossus muscle -relationship: part_of EMAP:10724 ! TS25,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10727 -name: TS25,palatoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001574 ! palatoglossus muscle -relationship: part_of EMAP:10724 ! TS25,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001574 ! palatoglossus muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10728 -name: TS25,styloglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001573 ! styloglossus -relationship: part_of EMAP:10724 ! TS25,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001573 ! styloglossus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10729 -name: TS25,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001576 ! intrinsic muscle of tongue -relationship: part_of EMAP:10723 ! TS25,skeletal muscle,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1073 -name: TS15,hindlimb ridge -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1069 ! TS15,limb -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002101 ! limb - -[Term] -id: EMAP:10730 -name: TS25,transverse component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10729 ! TS25,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:10731 -name: TS25,vertical component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10729 ! TS25,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:10732 -name: TS25,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10682 ! TS25,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:10733 -name: TS25,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10734 -name: TS25,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10733 ! TS25,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10735 -name: TS25,vascular element,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10734 ! TS25,fundus,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10736 -name: TS25,associated mesenchyme,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10734 ! TS25,fundus,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10737 -name: TS25,epithelium,fundus,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10734 ! TS25,fundus,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10738 -name: TS25,lumen,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10734 ! TS25,fundus,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10739 -name: TS25,glandular mucous membrane,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10734 ! TS25,fundus,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1074 -name: TS15,ectoderm,hindlimb ridge -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1073 ! TS15,hindlimb ridge -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002101 ! limb - -[Term] -id: EMAP:10740 -name: TS25,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10733 ! TS25,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10741 -name: TS25,vascular element,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10740 ! TS25,glandular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10742 -name: TS25,associated mesenchyme,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10740 ! TS25,glandular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10743 -name: TS25,epithelium,glandular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10740 ! TS25,glandular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10744 -name: TS25,lumen,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10740 ! TS25,glandular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10745 -name: TS25,glandular mucous membrane,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10740 ! TS25,glandular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10746 -name: TS25,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:10733 ! TS25,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10747 -name: TS25,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:10746 ! TS25,mesentery,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10748 -name: TS25,greater omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0005448 ! greater omentum -relationship: part_of EMAP:10747 ! TS25,dorsal mesogastrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005448 ! greater omentum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10749 -name: TS25,gastro-splenic ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004686 ! gastro-splenic ligament -relationship: part_of EMAP:10748 ! TS25,greater omentum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1075 -name: TS15,mesenchyme,hindlimb ridge -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1073 ! TS15,hindlimb ridge -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002101 ! limb - -[Term] -id: EMAP:10750 -name: TS25,lieno-renal ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004687 ! lieno-renal ligament -relationship: part_of EMAP:10748 ! TS25,greater omentum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10751 -name: TS25,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:10746 ! TS25,mesentery,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10752 -name: TS25,falciform ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0001247 ! falciform ligament -relationship: part_of EMAP:10751 ! TS25,ventral mesogastrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10753 -name: TS25,lesser omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0002399 ! lesser omentum -relationship: part_of EMAP:10751 ! TS25,ventral mesogastrium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10754 -name: TS25,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10733 ! TS25,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10755 -name: TS25,associated mesenchyme,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10754 ! TS25,proventricular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10756 -name: TS25,epithelium,proventricular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10754 ! TS25,proventricular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10757 -name: TS25,lumen,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10754 ! TS25,proventricular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10758 -name: TS25,vascular element,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10754 ! TS25,proventricular region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:10759 -name: TS25,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0001166 ! pylorus -relationship: part_of EMAP:10733 ! TS25,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001166 ! pylorus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1076 -name: TS15,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10760 -name: TS25,associated mesenchyme,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10759 ! TS25,pyloric region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10761 -name: TS25,epithelium,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10759 ! TS25,pyloric region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10762 -name: TS25,lumen,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10759 ! TS25,pyloric region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:10763 -name: TS25,pyloric antrum -namespace: mouse_anatomy_stages -is_a: UBERON:0001165 ! pyloric antrum -relationship: part_of EMAP:10759 ! TS25,pyloric region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10764 -name: TS25,vascular element,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10759 ! TS25,pyloric region,stomach -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:10765 -name: TS25,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0006654 ! perineal body -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006654 ! perineal body -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10766 -name: TS25,associated mesenchyme,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10765 ! TS25,perineal body -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10767 -name: TS25,muscle,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0004486 ! musculature of perineum -relationship: part_of EMAP:10765 ! TS25,perineal body -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004486 ! musculature of perineum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10768 -name: TS25,vascular element,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10765 ! TS25,perineal body -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:10769 -name: TS25,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0001052 ! rectum -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001052 ! rectum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1077 -name: TS15,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:1076 ! TS15,mesenchyme,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10770 -name: TS25,associated mesenchyme,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10769 ! TS25,rectum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10771 -name: TS25,epithelium,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10769 ! TS25,rectum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10772 -name: TS25,lumen,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10769 ! TS25,rectum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:10773 -name: TS25,mesentery,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003395 ! mesentery of rectum -relationship: part_of EMAP:10769 ! TS25,rectum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003395 ! mesentery of rectum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10774 -name: TS25,dorsal mesentery,mesentery,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10773 ! TS25,mesentery,rectum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003395 ! mesentery of rectum - -[Term] -id: EMAP:10775 -name: TS25,vascular element,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10769 ! TS25,rectum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:10776 -name: TS25,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0002115 ! jejunum -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002115 ! jejunum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10777 -name: TS25,associated mesenchyme,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10776 ! TS25,jejunum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10778 -name: TS25,epithelium,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10776 ! TS25,jejunum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10779 -name: TS25,lumen,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10776 ! TS25,jejunum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002115 ! jejunum - -[Term] -id: EMAP:1078 -name: TS15,mesenchyme derived from head mesoderm,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:1077 ! TS15,head mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10780 -name: TS25,vascular element,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10776 ! TS25,jejunum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002115 ! jejunum - -[Term] -id: EMAP:10781 -name: TS25,mesentery,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0003398 ! mesentery of jejunum -relationship: part_of EMAP:10776 ! TS25,jejunum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003398 ! mesentery of jejunum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10782 -name: TS25,dorsal mesentery,mesentery,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10781 ! TS25,mesentery,jejunum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003398 ! mesentery of jejunum - -[Term] -id: EMAP:10783 -name: TS25,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0001155 ! colon -relationship: part_of EMAP:10651 ! TS25,gut -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001155 ! colon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10784 -name: TS25,associated mesenchyme,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10783 ! TS25,colon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10785 -name: TS25,epithelium,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10783 ! TS25,colon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10786 -name: TS25,mesentery,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0003396 ! mesentery of colon -relationship: part_of EMAP:10783 ! TS25,colon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003396 ! mesentery of colon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10787 -name: TS25,dorsal mesentery,mesentery,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10786 ! TS25,mesentery,colon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003396 ! mesentery of colon - -[Term] -id: EMAP:10788 -name: TS25,vascular element,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10783 ! TS25,colon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001155 ! colon - -[Term] -id: EMAP:10789 -name: TS25,lumen,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0007159 ! lumen of colon -relationship: part_of EMAP:10783 ! TS25,colon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007159 ! lumen of colon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1079 -name: TS15,mesenchyme derived from neural crest,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:1077 ! TS15,head mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10790 -name: TS25,epiglottis -namespace: mouse_anatomy_stages -is_a: UBERON:0000388 ! epiglottis -relationship: part_of EMAP:10642 ! TS25,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000388 ! epiglottis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10791 -name: TS25,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001710 ! lower jaw region -relationship: part_of EMAP:10642 ! TS25,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10792 -name: TS25,epithelium,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10791 ! TS25,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10793 -name: TS25,lip,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001835 ! lower lip -relationship: part_of EMAP:10791 ! TS25,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001835 ! lower lip -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10794 -name: TS25,skeleton,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003278 ! skeleton of lower jaw -relationship: part_of EMAP:10791 ! TS25,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10795 -name: TS25,mandible -namespace: mouse_anatomy_stages -is_a: UBERON:0001684 ! mandible -relationship: part_of EMAP:10794 ! TS25,skeleton,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001684 ! mandible -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10796 -name: TS25,Meckel's cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0003107 ! Meckel's cartilage -relationship: part_of EMAP:10791 ! TS25,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10797 -name: TS25,mesenchyme,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003324 ! mesenchyme of lower jaw -relationship: part_of EMAP:10791 ! TS25,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003324 ! mesenchyme of lower jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10798 -name: TS25,alveolar sulcus,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10791 ! TS25,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001710 ! lower jaw region - -[Term] -id: EMAP:10799 -name: TS25,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003268 ! tooth of lower jaw -relationship: part_of EMAP:10791 ! TS25,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:108 -name: TS10,embryonic component of the proamniotic cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:107 ! TS10,cavities and their linings -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0004458 ! body cavity or lining - -[Term] -id: EMAP:1080 -name: TS15,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:1076 ! TS15,mesenchyme,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10800 -name: TS25,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003451 ! lower jaw incisor -relationship: part_of EMAP:10799 ! TS25,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10801 -name: TS25,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:10800 ! TS25,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10802 -name: TS25,dental lamina,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:10801 ! TS25,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10803 -name: TS25,enamel organ,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10801 ! TS25,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:10804 -name: TS25,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005708 ! lower jaw incisor odontogenic papilla -relationship: part_of EMAP:10800 ! TS25,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005708 ! lower jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10805 -name: TS25,dental papilla,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10804 ! TS25,mesenchyme,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005708 ! lower jaw incisor odontogenic papilla - -[Term] -id: EMAP:10806 -name: TS25,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003667 ! lower jaw molar -relationship: part_of EMAP:10799 ! TS25,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10807 -name: TS25,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:10806 ! TS25,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10808 -name: TS25,dental lamina,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:10807 ! TS25,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10809 -name: TS25,enamel organ,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10807 ! TS25,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003236 ! epithelium of lower jaw - -[Term] -id: EMAP:1081 -name: TS15,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007214 ! mesenchyme derived from trunk neural crest -relationship: part_of EMAP:1080 ! TS15,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10810 -name: TS25,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005701 ! lower jaw molar odontogenic papilla -relationship: part_of EMAP:10806 ! TS25,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005701 ! lower jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10811 -name: TS25,dental papilla,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10810 ! TS25,mesenchyme,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005701 ! lower jaw molar odontogenic papilla - -[Term] -id: EMAP:10812 -name: TS25,oral cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000167 ! oral cavity -relationship: part_of EMAP:10642 ! TS25,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10813 -name: TS25,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:10642 ! TS25,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10814 -name: TS25,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001709 ! upper jaw region -relationship: part_of EMAP:10642 ! TS25,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10815 -name: TS25,lip,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001834 ! upper lip -relationship: part_of EMAP:10814 ! TS25,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001834 ! upper lip -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10816 -name: TS25,philtrum -namespace: mouse_anatomy_stages -is_a: UBERON:0005402 ! philtrum -relationship: part_of EMAP:10815 ! TS25,lip,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005402 ! philtrum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10817 -name: TS25,skeleton,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003277 ! skeleton of upper jaw -relationship: part_of EMAP:10814 ! TS25,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10818 -name: TS25,maxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002397 ! maxilla -relationship: part_of EMAP:10817 ! TS25,skeleton,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002397 ! maxilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10819 -name: TS25,mesenchyme,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003323 ! mesenchyme of upper jaw -relationship: part_of EMAP:10814 ! TS25,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003323 ! mesenchyme of upper jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1082 -name: TS15,lateral migration pathway,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -relationship: part_of EMAP:1081 ! TS15,mesenchyme derived from neural crest,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10820 -name: TS25,alveolar sulcus,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10814 ! TS25,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001709 ! upper jaw region - -[Term] -id: EMAP:10821 -name: TS25,palate -namespace: mouse_anatomy_stages -is_a: UBERON:0001716 ! secondary palate -relationship: part_of EMAP:10814 ! TS25,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001716 ! secondary palate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10822 -name: TS25,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0001733 ! soft palate -relationship: part_of EMAP:10821 ! TS25,palate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001733 ! soft palate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10823 -name: TS25,epithelium,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003358 ! epithelium of soft palate -relationship: part_of EMAP:10822 ! TS25,soft palate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003358 ! epithelium of soft palate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10824 -name: TS25,mesenchyme,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003417 ! mesenchyme of soft palate -relationship: part_of EMAP:10822 ! TS25,soft palate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003417 ! mesenchyme of soft palate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10825 -name: TS25,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003216 ! hard palate -relationship: part_of EMAP:10821 ! TS25,palate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003216 ! hard palate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10826 -name: TS25,epithelium,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003368 ! epithelium of hard palate -relationship: part_of EMAP:10825 ! TS25,hard palate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003368 ! epithelium of hard palate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10827 -name: TS25,mesenchyme,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003424 ! mesenchyme of hard palate -relationship: part_of EMAP:10825 ! TS25,hard palate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003424 ! mesenchyme of hard palate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10828 -name: TS25,naso-palatine canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10825 ! TS25,hard palate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003216 ! hard palate - -[Term] -id: EMAP:1083 -name: TS15,medial migration pathway,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -relationship: part_of EMAP:1081 ! TS15,mesenchyme derived from neural crest,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10835 -name: TS25,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003267 ! tooth of upper jaw -relationship: part_of EMAP:10814 ! TS25,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003267 ! tooth of upper jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10836 -name: TS25,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003450 ! upper jaw incisor -relationship: part_of EMAP:10835 ! TS25,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10837 -name: TS25,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:10836 ! TS25,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10838 -name: TS25,dental lamina,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:10837 ! TS25,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10839 -name: TS25,enamel organ,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10837 ! TS25,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:1084 -name: TS15,mesenchyme derived from somatopleure -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1080 ! TS15,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EMAP:10840 -name: TS25,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005707 ! upper jaw incisor odontogenic papilla -relationship: part_of EMAP:10836 ! TS25,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005707 ! upper jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10841 -name: TS25,dental papilla,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10840 ! TS25,mesenchyme,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005707 ! upper jaw incisor odontogenic papilla - -[Term] -id: EMAP:10842 -name: TS25,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003666 ! upper jaw molar -relationship: part_of EMAP:10835 ! TS25,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10843 -name: TS25,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:10842 ! TS25,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10844 -name: TS25,dental lamina,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:10843 ! TS25,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10845 -name: TS25,enamel organ,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10843 ! TS25,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003235 ! epithelium of upper jaw - -[Term] -id: EMAP:10846 -name: TS25,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005700 ! upper jaw molar odontogenic papilla -relationship: part_of EMAP:10842 ! TS25,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005700 ! upper jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10847 -name: TS25,dental papilla,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10846 ! TS25,mesenchyme,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005700 ! upper jaw molar odontogenic papilla - -[Term] -id: EMAP:10848 -name: TS25,sublingual caruncle -namespace: mouse_anatomy_stages -is_a: UBERON:0006688 ! sublingual caruncle -relationship: part_of EMAP:10642 ! TS25,oral region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006688 ! sublingual caruncle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10849 -name: TS25,sulcus terminalis,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10714 ! TS25,tongue -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:1085 -name: TS15,mesenchyme derived from splanchnopleure -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1080 ! TS15,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EMAP:10850 -name: TS25,skeletal muscle,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003384 ! skeletal muscle of pharynx -relationship: part_of EMAP:10682 ! TS25,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003384 ! skeletal muscle of pharynx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10851 -name: TS25,constrictor muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001569 ! constrictor muscle of pharynx -relationship: part_of EMAP:10850 ! TS25,skeletal muscle,pharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001569 ! constrictor muscle of pharynx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10852 -name: TS25,inferior,constrictor muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10851 ! TS25,constrictor muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001569 ! constrictor muscle of pharynx - -[Term] -id: EMAP:10853 -name: TS25,superior,constrictor muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0006329 ! superior pharyngeal constrictor -relationship: part_of EMAP:10851 ! TS25,constrictor muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006329 ! superior pharyngeal constrictor -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10854 -name: TS25,gum,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0011602 ! gingiva of lower jaw -relationship: part_of EMAP:10791 ! TS25,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011602 ! gingiva of lower jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10855 -name: TS25,epithelium,gum,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:10854 ! TS25,gum,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003236 ! epithelium of lower jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10856 -name: TS25,mesenchyme,gum,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10854 ! TS25,gum,lower jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0011602 ! gingiva of lower jaw - -[Term] -id: EMAP:10857 -name: TS25,gum,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0011601 ! gingiva of upper jaw -relationship: part_of EMAP:10814 ! TS25,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011601 ! gingiva of upper jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10858 -name: TS25,epithelium,gum,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:10857 ! TS25,gum,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003235 ! epithelium of upper jaw -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10859 -name: TS25,mesenchyme,gum,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10857 ! TS25,gum,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0011601 ! gingiva of upper jaw - -[Term] -id: EMAP:1086 -name: TS15,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:1080 ! TS15,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10860 -name: TS25,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:9801 ! TS25,visceral organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10861 -name: TS25,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:10860 ! TS25,liver and biliary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10862 -name: TS25,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:10860 ! TS25,liver and biliary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10863 -name: TS25,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:10860 ! TS25,liver and biliary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10864 -name: TS25,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:10860 ! TS25,liver and biliary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10865 -name: TS25,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:10864 ! TS25,hepatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10866 -name: TS25,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:10864 ! TS25,hepatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10867 -name: TS25,left,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:10866 ! TS25,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10868 -name: TS25,right,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:10866 ! TS25,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10869 -name: TS25,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:10860 ! TS25,liver and biliary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1087 -name: TS15,somite,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005598 ! trunk somite -relationship: part_of EMAP:1086 ! TS15,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10870 -name: TS25,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001113 ! lobe of liver -relationship: part_of EMAP:10869 ! TS25,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001113 ! lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10871 -name: TS25,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001115 ! left lobe of liver -relationship: part_of EMAP:10870 ! TS25,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10872 -name: TS25,bare area,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:10871 ! TS25,left,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10873 -name: TS25,hepatic ducts,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:10871 ! TS25,left,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10874 -name: TS25,hepatic sinusoids,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -relationship: part_of EMAP:10871 ! TS25,left,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10875 -name: TS25,parenchyma,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005222 ! liver left lobe parenchyma -relationship: part_of EMAP:10871 ! TS25,left,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005222 ! liver left lobe parenchyma -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10876 -name: TS25,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001114 ! right lobe of liver -relationship: part_of EMAP:10870 ! TS25,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10877 -name: TS25,bare area,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:10876 ! TS25,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10878 -name: TS25,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001117 ! caudate lobe of liver -relationship: part_of EMAP:10876 ! TS25,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10879 -name: TS25,hepatic sinusoids,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011737 ! caudate lobe hepatic sinusoids -relationship: part_of EMAP:10878 ! TS25,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011737 ! caudate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1088 -name: TS15,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10880 -name: TS25,parenchyma,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010706 ! parenchyma of caudate lobe of liver -relationship: part_of EMAP:10878 ! TS25,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010706 ! parenchyma of caudate lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10881 -name: TS25,hepatic sinusoids,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -relationship: part_of EMAP:10876 ! TS25,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10882 -name: TS25,parenchyma,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005221 ! liver right lobe parenchyma -relationship: part_of EMAP:10876 ! TS25,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005221 ! liver right lobe parenchyma -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10883 -name: TS25,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001116 ! quadrate lobe of liver -relationship: part_of EMAP:10876 ! TS25,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10884 -name: TS25,hepatic sinusoids,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011738 ! quadrate lobe hepatic sinusoids -relationship: part_of EMAP:10883 ! TS25,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011738 ! quadrate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10885 -name: TS25,parenchyma,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010704 ! parenchyma of quadrate lobe of liver -relationship: part_of EMAP:10883 ! TS25,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010704 ! parenchyma of quadrate lobe of liver -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10886 -name: TS25,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001008 ! excretory system -relationship: part_of EMAP:9801 ! TS25,visceral organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001008 ! excretory system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10887 -name: TS25,associated mesenchyme,renal/urinary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10886 ! TS25,renal/urinary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10888 -name: TS25,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0001255 ! urinary bladder -relationship: part_of EMAP:10886 ! TS25,renal/urinary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10889 -name: TS25,fundus region,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0006082 ! fundus of urinary bladder -relationship: part_of EMAP:10888 ! TS25,bladder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1089 -name: TS15,dermomyotome,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1088 ! TS15,somite 05 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10890 -name: TS25,trigone region,bladder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10888 ! TS25,bladder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10891 -name: TS25,urachus -namespace: mouse_anatomy_stages -is_a: UBERON:0002068 ! urachus -relationship: part_of EMAP:10888 ! TS25,bladder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002068 ! urachus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10892 -name: TS25,wall,bladder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10888 ! TS25,bladder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10893 -name: TS25,detrusor muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10892 ! TS25,wall,bladder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10894 -name: TS25,mesentery,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0003393 ! mesentery of urinary system -relationship: part_of EMAP:10886 ! TS25,renal/urinary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10895 -name: TS25,urogenital mesentery -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10894 ! TS25,mesentery,renal/urinary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003393 ! mesentery of urinary system - -[Term] -id: EMAP:10896 -name: TS25,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:10886 ! TS25,renal/urinary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10897 -name: TS25,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10896 ! TS25,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10898 -name: TS25,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10896 ! TS25,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10899 -name: TS25,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0006517 ! kidney calyx -relationship: part_of EMAP:10898 ! TS25,drainage component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006517 ! kidney calyx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:109 -name: TS10,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:106 ! TS10,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1090 -name: TS15,myocoele,somite 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1088 ! TS15,somite 05 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10900 -name: TS25,major,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001226 ! major calyx -relationship: part_of EMAP:10899 ! TS25,calyces,drainage component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001226 ! major calyx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10901 -name: TS25,minor,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001227 ! minor calyx -relationship: part_of EMAP:10899 ! TS25,calyces,drainage component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001227 ! minor calyx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10902 -name: TS25,pelvis,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001224 ! renal pelvis -relationship: part_of EMAP:10898 ! TS25,drainage component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10904 -name: TS25,ureter -namespace: mouse_anatomy_stages -is_a: UBERON:0000056 ! ureter -relationship: part_of EMAP:10898 ! TS25,drainage component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000056 ! ureter -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10905 -name: TS25,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10896 ! TS25,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10906 -name: TS25,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001225 ! cortex of kidney -relationship: part_of EMAP:10905 ! TS25,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10907 -name: TS25,capsule,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0002015 ! kidney capsule -relationship: part_of EMAP:10906 ! TS25,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002015 ! kidney capsule -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10908 -name: TS25,glomeruli,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10906 ! TS25,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10909 -name: TS25,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10906 ! TS25,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000081 ! metanephros - -[Term] -id: EMAP:1091 -name: TS15,sclerotome,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1088 ! TS15,somite 05 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10910 -name: TS25,stem cells,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10906 ! TS25,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10911 -name: TS25,medullary stroma,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0005211 ! renal medulla interstitium -relationship: part_of EMAP:10905 ! TS25,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005211 ! renal medulla interstitium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10912 -name: TS25,medullary tubules,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10905 ! TS25,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10913 -name: TS25,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:10886 ! TS25,renal/urinary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10915 -name: TS25,Bowman's capsule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10908 ! TS25,glomeruli,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10916 -name: TS25,convoluted tubules,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0006853 ! renal cortex tubule -relationship: part_of EMAP:10909 ! TS25,nephrons,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006853 ! renal cortex tubule -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10917 -name: TS25,female,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000474 ! female reproductive system -relationship: part_of EMAP:9802 ! TS25,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10918 -name: TS25,Mullerian tubercle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000474 ! female reproductive system - -[Term] -id: EMAP:10919 -name: TS25,clitoris -namespace: mouse_anatomy_stages -is_a: UBERON:0006233 ! female genital tubercle -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006233 ! female genital tubercle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1092 -name: TS15,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10920 -name: TS25,genital tubercle,female,reproductive system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10921 -name: TS25,labial swelling -namespace: mouse_anatomy_stages -is_a: UBERON:0011755 ! female labial swelling -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011755 ! female labial swelling -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10922 -name: TS25,mesovarium -namespace: mouse_anatomy_stages -is_a: UBERON:0001342 ! mesovarium -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10923 -name: TS25,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0000992 ! female gonad -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000992 ! female gonad -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10924 -name: TS25,germinal epithelium,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10923 ! TS25,ovary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:10925 -name: TS25,cystic vesicular appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000474 ! female reproductive system - -[Term] -id: EMAP:10926 -name: TS25,mesenchyme,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10923 ! TS25,ovary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10927 -name: TS25,primordial germ cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10923 ! TS25,ovary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:10928 -name: TS25,rete ovarii,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0010185 ! rete ovarii -relationship: part_of EMAP:10923 ! TS25,ovary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010185 ! rete ovarii -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10929 -name: TS25,capsule,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10923 ! TS25,ovary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1093 -name: TS15,dermomyotome,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1092 ! TS15,somite 06 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10930 -name: TS25,germinal cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10923 ! TS25,ovary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10931 -name: TS25,ovigerous cords,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10923 ! TS25,ovary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10932 -name: TS25,primary oocytes,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10923 ! TS25,ovary -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10934 -name: TS25,oviduct -namespace: mouse_anatomy_stages -is_a: UBERON:0000993 ! oviduct -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000993 ! oviduct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10935 -name: TS25,uterine horn -namespace: mouse_anatomy_stages -is_a: UBERON:0002247 ! uterine horn -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002247 ! uterine horn -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10936 -name: TS25,vagina -namespace: mouse_anatomy_stages -is_a: UBERON:0000996 ! vagina -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000996 ! vagina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10937 -name: TS25,upper part,vagina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10936 ! TS25,vagina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000996 ! vagina - -[Term] -id: EMAP:10938 -name: TS25,ductus deferens -namespace: mouse_anatomy_stages -is_a: UBERON:0001000 ! vas deferens -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001000 ! vas deferens -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10939 -name: TS25,genital tubercle,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0006261 ! male genital tubercle -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006261 ! male genital tubercle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1094 -name: TS15,myocoele,somite 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1092 ! TS15,somite 06 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10940 -name: TS25,mesorchium -namespace: mouse_anatomy_stages -is_a: UBERON:0011879 ! mesorchium -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10941 -name: TS25,penis -namespace: mouse_anatomy_stages -is_a: UBERON:0000989 ! penis -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000989 ! penis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10942 -name: TS25,glans penis -namespace: mouse_anatomy_stages -is_a: UBERON:0001299 ! glans penis -relationship: part_of EMAP:10941 ! TS25,penis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001299 ! glans penis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10943 -name: TS25,prepuce -namespace: mouse_anatomy_stages -is_a: UBERON:0001332 ! prepuce of penis -relationship: part_of EMAP:10941 ! TS25,penis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001332 ! prepuce of penis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10947 -name: TS25,efferent duct -namespace: mouse_anatomy_stages -is_a: UBERON:0006946 ! efferent duct -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006946 ! efferent duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10949 -name: TS25,urethra -namespace: mouse_anatomy_stages -is_a: UBERON:0001333 ! male urethra -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001333 ! male urethra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1095 -name: TS15,sclerotome,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1092 ! TS15,somite 06 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10950 -name: TS25,prostatic region,urethra -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10949 ! TS25,urethra -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:10951 -name: TS25,penile region,urethra -namespace: mouse_anatomy_stages -is_a: UBERON:0000989 ! penis -relationship: part_of EMAP:10949 ! TS25,urethra -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000989 ! penis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10952 -name: TS25,distal region,urethra -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10949 ! TS25,urethra -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10953 -name: TS25,urethral plate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10949 ! TS25,urethra -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:10954 -name: TS25,lower part,vagina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10936 ! TS25,vagina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000996 ! vagina - -[Term] -id: EMAP:10955 -name: TS25,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:9801 ! TS25,visceral organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10956 -name: TS25,cartilage,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0003406 ! cartilage of respiratory system -relationship: part_of EMAP:10955 ! TS25,respiratory system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003406 ! cartilage of respiratory system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10957 -name: TS25,arytenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001740 ! arytenoid cartilage -relationship: part_of EMAP:10956 ! TS25,cartilage,respiratory system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10958 -name: TS25,cricoid -namespace: mouse_anatomy_stages -is_a: UBERON:0002375 ! cricoid cartilage -relationship: part_of EMAP:10956 ! TS25,cartilage,respiratory system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10959 -name: TS25,laryngeal -namespace: mouse_anatomy_stages -is_a: UBERON:0001739 ! laryngeal cartilage -relationship: part_of EMAP:10956 ! TS25,cartilage,respiratory system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001739 ! laryngeal cartilage -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1096 -name: TS15,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10960 -name: TS25,thyroid,cartilage,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001738 ! thyroid cartilage -relationship: part_of EMAP:10956 ! TS25,cartilage,respiratory system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001738 ! thyroid cartilage -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10962 -name: TS25,larynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001737 ! larynx -relationship: part_of EMAP:10955 ! TS25,respiratory system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001737 ! larynx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10963 -name: TS25,mucous membranes -namespace: mouse_anatomy_stages -is_a: UBERON:0001824 ! mucosa of larynx -relationship: part_of EMAP:10962 ! TS25,larynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10964 -name: TS25,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:10955 ! TS25,respiratory system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10965 -name: TS25,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002168 ! left lung -relationship: part_of EMAP:10964 ! TS25,lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002168 ! left lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10966 -name: TS25,associated mesenchyme,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:10965 ! TS25,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10967 -name: TS25,epithelium,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003365 ! epithelium of left lung -relationship: part_of EMAP:10965 ! TS25,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10968 -name: TS25,hilus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004887 ! left lung hilus -relationship: part_of EMAP:10965 ! TS25,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10969 -name: TS25,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003405 ! lobar bronchus of left lung -relationship: part_of EMAP:10965 ! TS25,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1097 -name: TS15,dermomyotome,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1096 ! TS15,somite 07 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10970 -name: TS25,associated mesenchyme,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10969 ! TS25,lobar bronchus,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:10971 -name: TS25,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003539 ! left lung bronchiole -relationship: part_of EMAP:10969 ! TS25,lobar bronchus,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003539 ! left lung bronchiole -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10972 -name: TS25,alveolar system,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:10971 ! TS25,bronchiole,lobar bronchus,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10973 -name: TS25,vascular element,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10969 ! TS25,lobar bronchus,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:10974 -name: TS25,vascular element,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009536 ! vascular element of left lung -relationship: part_of EMAP:10965 ! TS25,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10975 -name: TS25,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002167 ! right lung -relationship: part_of EMAP:10964 ! TS25,lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002167 ! right lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10976 -name: TS25,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004890 ! right lung accessory lobe -relationship: part_of EMAP:10975 ! TS25,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10977 -name: TS25,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004896 ! right lung accessory lobe lobar bronchus -relationship: part_of EMAP:10976 ! TS25,accessory lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004896 ! right lung accessory lobe lobar bronchus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10978 -name: TS25,associated mesenchyme,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10977 ! TS25,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:10979 -name: TS25,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005682 ! right lung accessory lobe bronchiole -relationship: part_of EMAP:10977 ! TS25,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005682 ! right lung accessory lobe bronchiole -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1098 -name: TS15,myocoele,somite 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1096 ! TS15,somite 07 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:10980 -name: TS25,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:10979 ! TS25,bronchiole,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10981 -name: TS25,vascular element,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10977 ! TS25,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:10982 -name: TS25,associated mesenchyme,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009603 ! right lung associated mesenchyme -relationship: part_of EMAP:10975 ! TS25,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10983 -name: TS25,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002171 ! lower lobe of right lung -relationship: part_of EMAP:10975 ! TS25,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10984 -name: TS25,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -relationship: part_of EMAP:10983 ! TS25,caudal lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10985 -name: TS25,associated mesenchyme,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10984 ! TS25,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:10986 -name: TS25,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0012059 ! right lung lower lobe bronchiole -relationship: part_of EMAP:10984 ! TS25,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0012059 ! right lung lower lobe bronchiole -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10987 -name: TS25,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:10986 ! TS25,bronchiole,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10988 -name: TS25,vascular element,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10984 ! TS25,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:10989 -name: TS25,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002170 ! upper lobe of right lung -relationship: part_of EMAP:10975 ! TS25,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1099 -name: TS15,sclerotome,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1096 ! TS15,somite 07 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:10990 -name: TS25,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -relationship: part_of EMAP:10989 ! TS25,cranial lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10991 -name: TS25,associated mesenchyme,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10990 ! TS25,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:10992 -name: TS25,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005681 ! right lung upper lobe bronchiole -relationship: part_of EMAP:10990 ! TS25,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005681 ! right lung upper lobe bronchiole -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10993 -name: TS25,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:10992 ! TS25,bronchiole,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10994 -name: TS25,vascular element,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10990 ! TS25,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:10995 -name: TS25,epithelium,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003364 ! epithelium of right lung -relationship: part_of EMAP:10975 ! TS25,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10996 -name: TS25,hilus,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004888 ! right lung hilus -relationship: part_of EMAP:10975 ! TS25,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10997 -name: TS25,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002174 ! middle lobe of right lung -relationship: part_of EMAP:10975 ! TS25,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10998 -name: TS25,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002183 ! lobar bronchus -relationship: part_of EMAP:10997 ! TS25,middle lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:10999 -name: TS25,associated mesenchyme,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10998 ! TS25,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:11 -name: TS3,zona pellucida -namespace: mouse_anatomy_stages -is_a: UBERON:0000086 ! zona pellucida -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000006 ! Theiler stage 03 -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: exists_during MmusDv:0000006 ! Theiler stage 03 - -[Term] -id: EMAP:110 -name: TS10,neural ectoderm,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0002346 ! neurectoderm -relationship: part_of EMAP:109 ! TS10,ectoderm,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1100 -name: TS15,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11000 -name: TS25,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0012068 ! right lung middle lobe bronchiole -relationship: part_of EMAP:10998 ! TS25,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0012068 ! right lung middle lobe bronchiole -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11001 -name: TS25,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:11000 ! TS25,bronchiole,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11002 -name: TS25,vascular element,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10998 ! TS25,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:11003 -name: TS25,vascular element,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009537 ! vascular element of right lung -relationship: part_of EMAP:10975 ! TS25,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11004 -name: TS25,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:10955 ! TS25,respiratory system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11005 -name: TS25,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:11004 ! TS25,respiratory tract -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11006 -name: TS25,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:11005 ! TS25,lower,respiratory tract -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11007 -name: TS25,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:11006 ! TS25,main bronchus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11008 -name: TS25,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:11006 ! TS25,main bronchus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11009 -name: TS25,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11006 ! TS25,main bronchus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:1101 -name: TS15,dermomyotome,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1100 ! TS15,somite 08 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11010 -name: TS25,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:11005 ! TS25,lower,respiratory tract -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11011 -name: TS25,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:11010 ! TS25,trachea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11012 -name: TS25,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:11010 ! TS25,trachea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11013 -name: TS25,cartilaginous ring,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003604 ! trachea cartilage -relationship: part_of EMAP:11010 ! TS25,trachea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003604 ! trachea cartilage -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11014 -name: TS25,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11010 ! TS25,trachea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:11015 -name: TS25,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:11010 ! TS25,trachea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11016 -name: TS25,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11015 ! TS25,carina tracheae -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:11017 -name: TS25,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:11015 ! TS25,carina tracheae -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11018 -name: TS25,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11015 ! TS25,carina tracheae -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:11019 -name: TS25,upper,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001557 ! upper respiratory tract -relationship: part_of EMAP:11004 ! TS25,respiratory tract -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1102 -name: TS15,myocoele,somite 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1100 ! TS15,somite 08 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11020 -name: TS25,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001728 ! nasopharynx -relationship: part_of EMAP:11019 ! TS25,upper,respiratory tract -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11021 -name: TS25,associated mesenchyme,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11020 ! TS25,nasopharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:11022 -name: TS25,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:9799 ! TS25,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11023 -name: TS25,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:11022 ! TS25,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11024 -name: TS25,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:11023 ! TS25,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11025 -name: TS25,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002413 ! cervical vertebra -relationship: part_of EMAP:11024 ! TS25,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11026 -name: TS25,C1,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11025 ! TS25,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:11027 -name: TS25,cruciate ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0011106 ! cruciate ligament of atlas -relationship: part_of EMAP:11026 ! TS25,C1,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011106 ! cruciate ligament of atlas -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11028 -name: TS25,C2,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11025 ! TS25,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:1103 -name: TS15,sclerotome,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1100 ! TS15,somite 08 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11031 -name: TS25,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:11023 ! TS25,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11032 -name: TS25,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002414 ! lumbar vertebra -relationship: part_of EMAP:11031 ! TS25,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002414 ! lumbar vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11033 -name: TS25,nucleus pulposus,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11023 ! TS25,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:11034 -name: TS25,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:11023 ! TS25,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11035 -name: TS25,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0001094 ! sacral vertebra -relationship: part_of EMAP:11034 ! TS25,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001094 ! sacral vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11036 -name: TS25,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:11023 ! TS25,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1104 -name: TS15,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11041 -name: TS25,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002347 ! thoracic vertebra -relationship: part_of EMAP:11036 ! TS25,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002347 ! thoracic vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11042 -name: TS25,cranium -namespace: mouse_anatomy_stages -is_a: UBERON:0003129 ! skull -relationship: part_of EMAP:11022 ! TS25,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003129 ! skull -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11043 -name: TS25,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0002241 ! chondrocranium -relationship: part_of EMAP:11042 ! TS25,cranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11044 -name: TS25,basioccipital bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001692 ! basioccipital bone -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11045 -name: TS25,basisphenoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0006428 ! basisphenoid bone -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11046 -name: TS25,carotid canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006668 ! carotid canal -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006668 ! carotid canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11047 -name: TS25,exoccipital bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001693 ! exoccipital bone -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1105 -name: TS15,dermomyotome,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1104 ! TS15,somite 09 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11050 -name: TS25,foramen ovale,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001698 ! foramen ovale of skull -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001698 ! foramen ovale of skull -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11051 -name: TS25,foramen rotundum -namespace: mouse_anatomy_stages -is_a: UBERON:0005446 ! foramen rotundum -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005446 ! foramen rotundum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11052 -name: TS25,hypoglossal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006682 ! hypoglossal canal -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006682 ! hypoglossal canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11053 -name: TS25,jugular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0005456 ! jugular foramen -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005456 ! jugular foramen -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11054 -name: TS25,sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001677 ! sphenoid bone -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001677 ! sphenoid bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11055 -name: TS25,sphenoidal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11054 ! TS25,sphenoid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001677 ! sphenoid bone - -[Term] -id: EMAP:11056 -name: TS25,supraoccipital cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0011162 ! supraoccipital cartilaginous condensation -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011162 ! supraoccipital cartilaginous condensation -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11057 -name: TS25,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11058 -name: TS25,petrous part,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001694 ! petrous part of temporal bone -relationship: part_of EMAP:11057 ! TS25,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11059 -name: TS25,tempero-mandibular joint -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11058 ! TS25,petrous part,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1106 -name: TS15,myocoele,somite 09 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1104 ! TS15,somite 09 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11060 -name: TS25,zygomatic process -namespace: mouse_anatomy_stages -is_a: UBERON:0004655 ! zygomatic process of temporal bone -relationship: part_of EMAP:11057 ! TS25,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004655 ! zygomatic process of temporal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11061 -name: TS25,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0004339 ! vault of skull -relationship: part_of EMAP:11042 ! TS25,cranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11062 -name: TS25,frontal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0000209 ! tetrapod frontal bone -relationship: part_of EMAP:11061 ! TS25,vault of skull -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000209 ! tetrapod frontal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11063 -name: TS25,inter-parietal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0002229 ! interparietal bone -relationship: part_of EMAP:11061 ! TS25,vault of skull -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002229 ! interparietal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11064 -name: TS25,parietal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0000210 ! tetrapod parietal bone -relationship: part_of EMAP:11061 ! TS25,vault of skull -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000210 ! tetrapod parietal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11065 -name: TS25,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:11061 ! TS25,vault of skull -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11066 -name: TS25,squamous part,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001695 ! squamous part of temporal bone -relationship: part_of EMAP:11065 ! TS25,temporal bone,vault of skull -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11067 -name: TS25,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0011156 ! facial skeleton -relationship: part_of EMAP:11042 ! TS25,cranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11068 -name: TS25,ethmoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001679 ! ethmoid bone -relationship: part_of EMAP:11067 ! TS25,viscerocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001679 ! ethmoid bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11069 -name: TS25,facial bones -namespace: mouse_anatomy_stages -is_a: UBERON:0003462 ! facial bone -relationship: part_of EMAP:11067 ! TS25,viscerocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003462 ! facial bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1107 -name: TS15,sclerotome,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1104 ! TS15,somite 09 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11070 -name: TS25,optic foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006269 ! optic foramen -relationship: part_of EMAP:11067 ! TS25,viscerocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006269 ! optic foramen -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11071 -name: TS25,orbital fissure,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0006271 ! orbital fissure -relationship: part_of EMAP:11067 ! TS25,viscerocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006271 ! orbital fissure -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11072 -name: TS25,superior,orbital fissure,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0005480 ! superior orbital fissure -relationship: part_of EMAP:11071 ! TS25,orbital fissure,viscerocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005480 ! superior orbital fissure -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11073 -name: TS25,orbito-sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0002478 ! orbitosphenoid -relationship: part_of EMAP:11067 ! TS25,viscerocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11074 -name: TS25,turbinate,viscerocranium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11067 ! TS25,viscerocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11075 -name: TS25,pectoral girdle and thoracic body wall,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007831 ! skeleton of pectoral girdle -relationship: part_of EMAP:11022 ! TS25,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007831 ! skeleton of pectoral girdle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11076 -name: TS25,clavicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001105 ! clavicle -relationship: part_of EMAP:11075 ! TS25,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001105 ! clavicle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11077 -name: TS25,costo-vertebral joint -namespace: mouse_anatomy_stages -is_a: UBERON:0002292 ! costovertebral joint -relationship: part_of EMAP:11075 ! TS25,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002292 ! costovertebral joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11078 -name: TS25,scapula -namespace: mouse_anatomy_stages -is_a: UBERON:0001124 ! pectoral limb scapula -relationship: part_of EMAP:11075 ! TS25,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001124 ! pectoral limb scapula -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11079 -name: TS25,sternum -namespace: mouse_anatomy_stages -is_a: UBERON:0000975 ! sternum -relationship: part_of EMAP:11075 ! TS25,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000975 ! sternum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1108 -name: TS15,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11080 -name: TS25,manubrium sterni -namespace: mouse_anatomy_stages -is_a: UBERON:0002205 ! manubrium of sternum -relationship: part_of EMAP:11079 ! TS25,sternum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002205 ! manubrium of sternum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11081 -name: TS25,sternebral bone -namespace: mouse_anatomy_stages -is_a: UBERON:0002208 ! sternebra -relationship: part_of EMAP:11079 ! TS25,sternum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002208 ! sternebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11082 -name: TS25,xiphisternum -namespace: mouse_anatomy_stages -is_a: UBERON:0006430 ! xiphoid cartilage -relationship: part_of EMAP:11079 ! TS25,sternum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006430 ! xiphoid cartilage -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11083 -name: TS25,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007832 ! skeleton of pelvic girdle -relationship: part_of EMAP:11022 ! TS25,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007832 ! skeleton of pelvic girdle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11084 -name: TS25,acetabular region,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11083 ! TS25,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:11085 -name: TS25,synovial cavity of hip bone -namespace: mouse_anatomy_stages -is_a: UBERON:0007618 ! synovial cavity of hip joint -relationship: part_of EMAP:11084 ! TS25,acetabular region,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007618 ! synovial cavity of hip joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11086 -name: TS25,iliac bone -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11083 ! TS25,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:11087 -name: TS25,ischial bone -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11083 ! TS25,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:11088 -name: TS25,pubic bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001275 ! pubis -relationship: part_of EMAP:11083 ! TS25,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001275 ! pubis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11089 -name: TS25,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:9799 ! TS25,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1109 -name: TS15,dermomyotome,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1108 ! TS15,somite 10 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11090 -name: TS25,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11089 ! TS25,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:11091 -name: TS25,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:11090 ! TS25,mesenchyme,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11092 -name: TS25,unsegmented mesenchyme,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11091 ! TS25,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:11093 -name: TS25,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11089 ! TS25,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:11094 -name: TS25,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:11093 ! TS25,nervous system,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11095 -name: TS25,spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:11094 ! TS25,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11096 -name: TS25,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:11093 ! TS25,nervous system,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11097 -name: TS25,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003338 ! ganglion of peripheral nervous system -relationship: part_of EMAP:11096 ! TS25,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003338 ! ganglion of peripheral nervous system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11098 -name: TS25,dorsal root ganglion,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:11097 ! TS25,ganglion,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11099 -name: TS25,segmental spinal nerve,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11096 ! TS25,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:111 -name: TS10,non-neural ectoderm,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0005497 ! non-neural ectoderm -relationship: part_of EMAP:109 ! TS10,ectoderm,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0005497 ! non-neural ectoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1110 -name: TS15,myocoele,somite 10 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1108 ! TS15,somite 10 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11100 -name: TS25,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11089 ! TS25,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:11101 -name: TS25,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:11100 ! TS25,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11102 -name: TS25,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001095 ! caudal vertebra -relationship: part_of EMAP:11101 ! TS25,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11103 -name: TS25,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9799 ! TS25,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:11104 -name: TS25,anterior abdominal wall -namespace: mouse_anatomy_stages -is_a: UBERON:0006635 ! anterior abdominal wall -relationship: part_of EMAP:11103 ! TS25,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006635 ! anterior abdominal wall -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11105 -name: TS25,skeletal muscle,anterior abdominal wall -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11104 ! TS25,anterior abdominal wall -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006635 ! anterior abdominal wall - -[Term] -id: EMAP:11106 -name: TS25,external oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005442 ! external oblique -relationship: part_of EMAP:11105 ! TS25,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005442 ! external oblique -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11107 -name: TS25,internal oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005454 ! internal oblique -relationship: part_of EMAP:11105 ! TS25,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005454 ! internal oblique -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11108 -name: TS25,rectus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0002382 ! rectus abdominis muscle -relationship: part_of EMAP:11105 ! TS25,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11109 -name: TS25,transversus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0001221 ! transversus abdominis muscle -relationship: part_of EMAP:11105 ! TS25,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1111 -name: TS15,sclerotome,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1108 ! TS15,somite 10 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11110 -name: TS25,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:11103 ! TS25,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11111 -name: TS25,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:11110 ! TS25,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11112 -name: TS25,erector spinae -namespace: mouse_anatomy_stages -is_a: UBERON:0002462 ! erector spinae muscle group -relationship: part_of EMAP:11111 ! TS25,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11114 -name: TS25,ilio-psoas -namespace: mouse_anatomy_stages -is_a: UBERON:0001999 ! iliopsoas -relationship: part_of EMAP:11111 ! TS25,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001999 ! iliopsoas -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11116 -name: TS25,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11111 ! TS25,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:11117 -name: TS25,external layer,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11116 ! TS25,intercostal,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:11118 -name: TS25,internal layer,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11116 ! TS25,intercostal,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:11119 -name: TS25,psoas major -namespace: mouse_anatomy_stages -is_a: UBERON:0001298 ! psoas major muscle -relationship: part_of EMAP:11111 ! TS25,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001298 ! psoas major muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1112 -name: TS15,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11120 -name: TS25,psoas minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001372 ! psoas minor muscle -relationship: part_of EMAP:11111 ! TS25,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001372 ! psoas minor muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11121 -name: TS25,quadratus lumborum -namespace: mouse_anatomy_stages -is_a: UBERON:0001220 ! quadratus lumborum -relationship: part_of EMAP:11111 ! TS25,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001220 ! quadratus lumborum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11122 -name: TS25,serratus anterior -namespace: mouse_anatomy_stages -is_a: UBERON:0001125 ! serratus anterior -relationship: part_of EMAP:11111 ! TS25,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001125 ! serratus anterior -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11123 -name: TS25,cranial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0002376 ! muscle of head -relationship: part_of EMAP:11103 ! TS25,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002376 ! muscle of head -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11124 -name: TS25,skeletal muscle,cranial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11123 ! TS25,cranial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002376 ! muscle of head - -[Term] -id: EMAP:11125 -name: TS25,masseter -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11124 ! TS25,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11126 -name: TS25,myelohyoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11124 ! TS25,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11127 -name: TS25,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11124 ! TS25,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11128 -name: TS25,lateral,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11127 ! TS25,pterygoid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11129 -name: TS25,medial,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11127 ! TS25,pterygoid -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1113 -name: TS15,dermomyotome,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1112 ! TS15,somite 11 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11130 -name: TS25,sterno-mastoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11124 ! TS25,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11131 -name: TS25,temporalis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11124 ! TS25,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11132 -name: TS25,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11103 ! TS25,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:11133 -name: TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11132 ! TS25,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:11134 -name: TS25,deltoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001476 ! deltoid -relationship: part_of EMAP:11133 ! TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001476 ! deltoid -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11135 -name: TS25,infraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001477 ! infraspinatus muscle -relationship: part_of EMAP:11133 ! TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001477 ! infraspinatus muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11136 -name: TS25,latissimus dorsi -namespace: mouse_anatomy_stages -is_a: UBERON:0001112 ! latissimus dorsi muscle -relationship: part_of EMAP:11133 ! TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11137 -name: TS25,pectoralis major -namespace: mouse_anatomy_stages -is_a: UBERON:0002381 ! pectoralis major -relationship: part_of EMAP:11133 ! TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11138 -name: TS25,pectoralis minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001100 ! pectoralis minor -relationship: part_of EMAP:11133 ! TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11139 -name: TS25,subscapularis -namespace: mouse_anatomy_stages -is_a: UBERON:0001129 ! subscapularis muscle -relationship: part_of EMAP:11133 ! TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1114 -name: TS15,myocoele,somite 11 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1112 ! TS15,somite 11 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11140 -name: TS25,supraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0002383 ! supraspinatus muscle -relationship: part_of EMAP:11133 ! TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11141 -name: TS25,trapezius -namespace: mouse_anatomy_stages -is_a: UBERON:0002380 ! trapezius -relationship: part_of EMAP:11133 ! TS25,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002380 ! trapezius -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11142 -name: TS25,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11103 ! TS25,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:11143 -name: TS25,skeletal muscle,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -is_a: UBERON:0003271 ! skeletal muscle of pelvic girdle -relationship: part_of EMAP:11142 ! TS25,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003271 ! skeletal muscle of pelvic girdle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11144 -name: TS25,gluteus maximus -namespace: mouse_anatomy_stages -is_a: UBERON:0001370 ! gluteus maximus -relationship: part_of EMAP:11143 ! TS25,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001370 ! gluteus maximus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1115 -name: TS15,sclerotome,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1112 ! TS15,somite 11 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11151 -name: TS25,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11152 -name: TS25,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:11151 ! TS25,extraembryonic component -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11153 -name: TS25,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:11152 ! TS25,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11154 -name: TS25,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:11153 ! TS25,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11155 -name: TS25,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11154 ! TS25,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:11156 -name: TS25,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11152 ! TS25,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:11157 -name: TS25,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:11156 ! TS25,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:11158 -name: TS25,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11157 ! TS25,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:11159 -name: TS26,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1116 -name: TS15,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11160 -name: TS26,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:11159 ! TS26,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11161 -name: TS26,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:11160 ! TS26,organ system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11162 -name: TS26,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000990 ! reproductive system -relationship: part_of EMAP:11161 ! TS26,visceral organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11163 -name: TS26,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000079 ! male reproductive system -relationship: part_of EMAP:11162 ! TS26,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11164 -name: TS26,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0000473 ! testis -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000473 ! testis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11165 -name: TS26,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11164 ! TS26,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11166 -name: TS26,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11165 ! TS26,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11167 -name: TS26,primitive seminiferous tubules,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0001343 ! seminiferous tubule of testis -relationship: part_of EMAP:11166 ! TS26,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11168 -name: TS26,primordial germ cells,primitive seminiferous tubules,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11167 ! TS26,primitive seminiferous tubules,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: EMAP:11169 -name: TS26,intestitial tissue,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005212 ! testis interstitial tissue -relationship: part_of EMAP:11166 ! TS26,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005212 ! testis interstitial tissue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1117 -name: TS15,dermomyotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1116 ! TS15,somite 12 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11170 -name: TS26,hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11165 ! TS26,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11171 -name: TS26,rete testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11170 ! TS26,hilar region,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11172 -name: TS26,cortical region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11164 ! TS26,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11173 -name: TS26,mediastinum testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005051 ! mediastinum testis -relationship: part_of EMAP:11164 ! TS26,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005051 ! mediastinum testis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11175 -name: TS26,mesenchyme,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11164 ! TS26,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11176 -name: TS26,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:11159 ! TS26,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11177 -name: TS26,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:11176 ! TS26,cavities and their linings -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11178 -name: TS26,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0001103 ! diaphragm -relationship: part_of EMAP:11177 ! TS26,intraembryonic coelom -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11179 -name: TS26,central tendon,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0006670 ! central tendon -relationship: part_of EMAP:11178 ! TS26,diaphragm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006670 ! central tendon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1118 -name: TS15,myocoele,somite 12 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1116 ! TS15,somite 12 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11180 -name: TS26,dome,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0007145 ! dome of diaphragm -relationship: part_of EMAP:11178 ! TS26,diaphragm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007145 ! dome of diaphragm -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11181 -name: TS26,pleuro-pericardial folds -namespace: mouse_anatomy_stages -is_a: UBERON:0006278 ! pleuropericardial folds -relationship: part_of EMAP:11178 ! TS26,diaphragm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006278 ! pleuropericardial folds -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11182 -name: TS26,pleuro-peritoneal folds -namespace: mouse_anatomy_stages -is_a: UBERON:0009133 ! pleuroperitoneal membrane -relationship: part_of EMAP:11178 ! TS26,diaphragm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009133 ! pleuroperitoneal membrane -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11184 -name: TS26,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001074 ! pericardial cavity -relationship: part_of EMAP:11177 ! TS26,intraembryonic coelom -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11185 -name: TS26,cavity,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001074 ! pericardial cavity -relationship: part_of EMAP:11184 ! TS26,pericardial cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11186 -name: TS26,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003388 ! mesothelium of pericardial cavity -relationship: part_of EMAP:11184 ! TS26,pericardial cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003388 ! mesothelium of pericardial cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11187 -name: TS26,parietal,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11186 ! TS26,mesothelium,pericardial cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003388 ! mesothelium of pericardial cavity - -[Term] -id: EMAP:11188 -name: TS26,visceral,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11186 ! TS26,mesothelium,pericardial cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003388 ! mesothelium of pericardial cavity - -[Term] -id: EMAP:11189 -name: TS26,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:11177 ! TS26,intraembryonic coelom -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001179 ! peritoneal cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1119 -name: TS15,sclerotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1116 ! TS15,somite 12 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11190 -name: TS26,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:11189 ! TS26,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11191 -name: TS26,cavity,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:11190 ! TS26,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11192 -name: TS26,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:11190 ! TS26,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11193 -name: TS26,parietal,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11192 ! TS26,mesothelium,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:11194 -name: TS26,visceral,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11192 ! TS26,mesothelium,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:11195 -name: TS26,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:11189 ! TS26,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11196 -name: TS26,mesothelium,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:11195 ! TS26,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11197 -name: TS26,parietal,mesothelium,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11196 ! TS26,mesothelium,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:11198 -name: TS26,cavity,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:11195 ! TS26,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11199 -name: TS26,pleural cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0002402 ! pleural cavity -relationship: part_of EMAP:11177 ! TS26,intraembryonic coelom -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:112 -name: TS10,endoderm,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:106 ! TS10,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:1120 -name: TS15,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11200 -name: TS26,cavity,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11199 ! TS26,pleural cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002402 ! pleural cavity - -[Term] -id: EMAP:11201 -name: TS26,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003390 ! mesothelium of pleural cavity -relationship: part_of EMAP:11199 ! TS26,pleural cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003390 ! mesothelium of pleural cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11202 -name: TS26,parietal,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11201 ! TS26,mesothelium,pleural cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003390 ! mesothelium of pleural cavity - -[Term] -id: EMAP:11203 -name: TS26,visceral,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11201 ! TS26,mesothelium,pleural cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003390 ! mesothelium of pleural cavity - -[Term] -id: EMAP:11204 -name: TS26,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:11159 ! TS26,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11205 -name: TS26,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002102 ! forelimb -relationship: part_of EMAP:11204 ! TS26,limb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002102 ! forelimb -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11206 -name: TS26,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0001460 ! arm -relationship: part_of EMAP:11205 ! TS26,forelimb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001460 ! arm -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11207 -name: TS26,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001461 ! elbow -relationship: part_of EMAP:11206 ! TS26,arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001461 ! elbow -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11208 -name: TS26,mesenchyme,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003318 ! mesenchyme of elbow -relationship: part_of EMAP:11207 ! TS26,elbow -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1121 -name: TS15,dermomyotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1120 ! TS15,somite 13 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11211 -name: TS26,skin,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001517 ! skin of elbow -relationship: part_of EMAP:11207 ! TS26,elbow -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001517 ! skin of elbow -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11212 -name: TS26,dermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11211 ! TS26,skin,elbow -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:11213 -name: TS26,epidermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11211 ! TS26,skin,elbow -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:11214 -name: TS26,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0002386 ! forelimb zeugopod -relationship: part_of EMAP:11206 ! TS26,arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11215 -name: TS26,mesenchyme,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003327 ! mesenchyme of forearm -relationship: part_of EMAP:11214 ! TS26,forearm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11219 -name: TS26,skin,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003403 ! skin of forearm -relationship: part_of EMAP:11214 ! TS26,forearm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003403 ! skin of forearm -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1122 -name: TS15,myocoele,somite 13 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1120 ! TS15,somite 13 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11220 -name: TS26,dermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11219 ! TS26,skin,forearm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:11221 -name: TS26,epidermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11219 ! TS26,skin,forearm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:11222 -name: TS26,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001467 ! shoulder -relationship: part_of EMAP:11206 ! TS26,arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001467 ! shoulder -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11223 -name: TS26,mesenchyme,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003322 ! mesenchyme of shoulder -relationship: part_of EMAP:11222 ! TS26,shoulder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11226 -name: TS26,skin,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001483 ! skin of shoulder -relationship: part_of EMAP:11222 ! TS26,shoulder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001483 ! skin of shoulder -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11227 -name: TS26,dermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11226 ! TS26,skin,shoulder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:11228 -name: TS26,epidermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11226 ! TS26,skin,shoulder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:11229 -name: TS26,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003822 ! forelimb stylopod -relationship: part_of EMAP:11206 ! TS26,arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1123 -name: TS15,sclerotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1120 ! TS15,somite 13 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11236 -name: TS26,mesenchyme,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005258 ! upper arm mesenchyme -relationship: part_of EMAP:11229 ! TS26,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11239 -name: TS26,skin,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0002427 ! arm skin -relationship: part_of EMAP:11229 ! TS26,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1124 -name: TS15,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11240 -name: TS26,dermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11239 ! TS26,skin,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:11241 -name: TS26,epidermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11239 ! TS26,skin,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:11242 -name: TS26,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002398 ! manus -relationship: part_of EMAP:11205 ! TS26,forelimb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002398 ! manus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11243 -name: TS26,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001463 ! manual digit 1 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11244 -name: TS26,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010564 ! manual digit 1 mesenchyme -relationship: part_of EMAP:11243 ! TS26,digit 1,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11247 -name: TS26,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11243 ! TS26,digit 1,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:11248 -name: TS26,dermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11247 ! TS26,skin,digit 1,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:11249 -name: TS26,epidermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11247 ! TS26,skin,digit 1,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:1125 -name: TS15,dermomyotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1124 ! TS15,somite 14 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11250 -name: TS26,claw,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011273 ! nail of manual digit 1 -relationship: part_of EMAP:11243 ! TS26,digit 1,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011273 ! nail of manual digit 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11251 -name: TS26,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003622 ! manual digit 2 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11252 -name: TS26,claw,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011274 ! nail of manual digit 2 -relationship: part_of EMAP:11251 ! TS26,digit 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011274 ! nail of manual digit 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11253 -name: TS26,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005692 ! manual digit 2 mesenchyme -relationship: part_of EMAP:11251 ! TS26,digit 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11256 -name: TS26,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11251 ! TS26,digit 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:11257 -name: TS26,dermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11256 ! TS26,skin,digit 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:11258 -name: TS26,epidermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11256 ! TS26,skin,digit 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:11259 -name: TS26,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003623 ! manual digit 3 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1126 -name: TS15,myocoele,somite 14 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1124 ! TS15,somite 14 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11260 -name: TS26,claw primordium,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011275 ! nail of manual digit 3 -relationship: part_of EMAP:11259 ! TS26,digit 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011275 ! nail of manual digit 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11261 -name: TS26,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005693 ! manual digit 3 mesenchyme -relationship: part_of EMAP:11259 ! TS26,digit 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11264 -name: TS26,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11259 ! TS26,digit 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:11265 -name: TS26,dermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11264 ! TS26,skin,digit 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:11266 -name: TS26,epidermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11264 ! TS26,skin,digit 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:11267 -name: TS26,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003624 ! manual digit 4 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11268 -name: TS26,claw,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011276 ! nail of manual digit 4 -relationship: part_of EMAP:11267 ! TS26,digit 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011276 ! nail of manual digit 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11269 -name: TS26,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005694 ! manual digit 4 mesenchyme -relationship: part_of EMAP:11267 ! TS26,digit 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1127 -name: TS15,sclerotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1124 ! TS15,somite 14 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11272 -name: TS26,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11267 ! TS26,digit 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:11273 -name: TS26,dermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11272 ! TS26,skin,digit 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:11274 -name: TS26,epidermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11272 ! TS26,skin,digit 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:11275 -name: TS26,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003625 ! manual digit 5 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11276 -name: TS26,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005695 ! manual digit 5 mesenchyme -relationship: part_of EMAP:11275 ! TS26,digit 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11279 -name: TS26,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11275 ! TS26,digit 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:1128 -name: TS15,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11280 -name: TS26,dermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11279 ! TS26,skin,digit 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:11281 -name: TS26,epidermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11279 ! TS26,skin,digit 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:11282 -name: TS26,claw,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011277 ! nail of manual digit 5 -relationship: part_of EMAP:11275 ! TS26,digit 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011277 ! nail of manual digit 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11283 -name: TS26,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11284 -name: TS26,mesenchyme,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:11283 ! TS26,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11285 -name: TS26,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11283 ! TS26,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:11286 -name: TS26,dermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11285 ! TS26,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:11287 -name: TS26,epidermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11285 ! TS26,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:11288 -name: TS26,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11289 -name: TS26,mesenchyme,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:11288 ! TS26,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1129 -name: TS15,dermomyotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1128 ! TS15,somite 15 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11290 -name: TS26,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11288 ! TS26,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:11291 -name: TS26,dermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11290 ! TS26,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:11292 -name: TS26,epidermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11290 ! TS26,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:11293 -name: TS26,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11294 -name: TS26,mesenchyme,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:11293 ! TS26,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11295 -name: TS26,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11293 ! TS26,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:11296 -name: TS26,dermis,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11295 ! TS26,skin,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:11297 -name: TS26,epidermis,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11295 ! TS26,skin,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:11298 -name: TS26,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11299 -name: TS26,mesenchyme,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:11298 ! TS26,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:113 -name: TS10,definitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0005439 ! definitive endoderm -relationship: part_of EMAP:112 ! TS10,endoderm,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0005439 ! definitive endoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1130 -name: TS15,myocoele,somite 15 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1128 ! TS15,somite 15 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11300 -name: TS26,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11298 ! TS26,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:11301 -name: TS26,dermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11300 ! TS26,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:11302 -name: TS26,epidermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11300 ! TS26,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:11303 -name: TS26,mesenchyme,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:11305 -name: TS26,skin,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001519 ! skin of manus -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001519 ! skin of manus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11306 -name: TS26,dermis,skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11305 ! TS26,skin,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001519 ! skin of manus - -[Term] -id: EMAP:11307 -name: TS26,epidermis,skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11305 ! TS26,skin,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001519 ! skin of manus - -[Term] -id: EMAP:11308 -name: TS26,palmar pads,skin,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0008839 ! palmar pad -relationship: part_of EMAP:11305 ! TS26,skin,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0008839 ! palmar pad -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11309 -name: TS26,hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002103 ! hindlimb -relationship: part_of EMAP:11204 ! TS26,limb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1131 -name: TS15,sclerotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1128 ! TS15,somite 15 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11310 -name: TS26,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002387 ! pes -relationship: part_of EMAP:11309 ! TS26,hindlimb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002387 ! pes -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11311 -name: TS26,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003631 ! pedal digit 1 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11312 -name: TS26,claw,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011278 ! nail of pedal digit 1 -relationship: part_of EMAP:11311 ! TS26,digit 1,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011278 ! nail of pedal digit 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11313 -name: TS26,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010562 ! pedal digit 1 mesenchyme -relationship: part_of EMAP:11311 ! TS26,digit 1,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11316 -name: TS26,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11311 ! TS26,digit 1,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:11317 -name: TS26,dermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11316 ! TS26,skin,digit 1,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:11318 -name: TS26,epidermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11316 ! TS26,skin,digit 1,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:11319 -name: TS26,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003632 ! pedal digit 2 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1132 -name: TS15,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11320 -name: TS26,claw,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011279 ! nail of pedal digit 2 -relationship: part_of EMAP:11319 ! TS26,digit 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011279 ! nail of pedal digit 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11321 -name: TS26,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005696 ! pedal digit 2 mesenchyme -relationship: part_of EMAP:11319 ! TS26,digit 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11324 -name: TS26,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11319 ! TS26,digit 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:11325 -name: TS26,dermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11324 ! TS26,skin,digit 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:11326 -name: TS26,epidermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11324 ! TS26,skin,digit 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:11327 -name: TS26,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003633 ! pedal digit 3 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11328 -name: TS26,claw,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011280 ! nail of pedal digit 3 -relationship: part_of EMAP:11327 ! TS26,digit 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011280 ! nail of pedal digit 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11329 -name: TS26,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005697 ! pedal digit 3 mesenchyme -relationship: part_of EMAP:11327 ! TS26,digit 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1133 -name: TS15,dermomyotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1132 ! TS15,somite 16 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11332 -name: TS26,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11327 ! TS26,digit 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:11333 -name: TS26,dermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11332 ! TS26,skin,digit 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:11334 -name: TS26,epidermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11332 ! TS26,skin,digit 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:11335 -name: TS26,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003634 ! pedal digit 4 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11336 -name: TS26,claw,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011281 ! nail of pedal digit 4 -relationship: part_of EMAP:11335 ! TS26,digit 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011281 ! nail of pedal digit 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11337 -name: TS26,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005698 ! pedal digit 4 mesenchyme -relationship: part_of EMAP:11335 ! TS26,digit 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1134 -name: TS15,myocoele,somite 16 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1132 ! TS15,somite 16 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11340 -name: TS26,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11335 ! TS26,digit 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:11341 -name: TS26,dermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11340 ! TS26,skin,digit 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:11342 -name: TS26,epidermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11340 ! TS26,skin,digit 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:11343 -name: TS26,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003635 ! pedal digit 5 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11344 -name: TS26,claw,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011282 ! nail of pedal digit 5 -relationship: part_of EMAP:11343 ! TS26,digit 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011282 ! nail of pedal digit 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11345 -name: TS26,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005699 ! pedal digit 5 mesenchyme -relationship: part_of EMAP:11343 ! TS26,digit 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11348 -name: TS26,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11343 ! TS26,digit 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:11349 -name: TS26,dermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11348 ! TS26,skin,digit 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:1135 -name: TS15,sclerotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1132 ! TS15,somite 16 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11350 -name: TS26,epidermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11348 ! TS26,skin,digit 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:11351 -name: TS26,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11352 -name: TS26,mesenchyme,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:11351 ! TS26,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11353 -name: TS26,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11351 ! TS26,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:11354 -name: TS26,dermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11353 ! TS26,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:11355 -name: TS26,epidermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11353 ! TS26,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:11356 -name: TS26,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11357 -name: TS26,mesenchyme,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:11356 ! TS26,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11358 -name: TS26,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11356 ! TS26,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:11359 -name: TS26,dermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11358 ! TS26,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:1136 -name: TS15,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11360 -name: TS26,epidermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11358 ! TS26,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:11361 -name: TS26,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11362 -name: TS26,mesenchyme,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:11361 ! TS26,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11363 -name: TS26,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11361 ! TS26,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:11364 -name: TS26,dermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11363 ! TS26,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:11365 -name: TS26,epidermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11363 ! TS26,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:11366 -name: TS26,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11367 -name: TS26,mesenchyme,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:11366 ! TS26,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11368 -name: TS26,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11366 ! TS26,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:11369 -name: TS26,dermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11368 ! TS26,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:1137 -name: TS15,dermomyotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1136 ! TS15,somite 17 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11370 -name: TS26,epidermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11368 ! TS26,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:11371 -name: TS26,mesenchyme,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:11376 -name: TS26,skin,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001513 ! skin of pes -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001513 ! skin of pes -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11377 -name: TS26,dermis,skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11376 ! TS26,skin,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001513 ! skin of pes - -[Term] -id: EMAP:11378 -name: TS26,epidermis,skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11376 ! TS26,skin,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001513 ! skin of pes - -[Term] -id: EMAP:11379 -name: TS26,plantar pads,skin,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0008840 ! plantar pad -relationship: part_of EMAP:11376 ! TS26,skin,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0008840 ! plantar pad -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1138 -name: TS15,myocoele,somite 17 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1136 ! TS15,somite 17 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11380 -name: TS26,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000978 ! leg -relationship: part_of EMAP:11309 ! TS26,hindlimb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000978 ! leg -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11381 -name: TS26,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001464 ! hip -relationship: part_of EMAP:11380 ! TS26,leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001464 ! hip -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11382 -name: TS26,mesenchyme,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003320 ! mesenchyme of hip -relationship: part_of EMAP:11381 ! TS26,hip -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11385 -name: TS26,skin,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001554 ! skin of hip -relationship: part_of EMAP:11381 ! TS26,hip -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001554 ! skin of hip -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11386 -name: TS26,dermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11385 ! TS26,skin,hip -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:11387 -name: TS26,epidermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11385 ! TS26,skin,hip -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:11388 -name: TS26,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001465 ! knee -relationship: part_of EMAP:11380 ! TS26,leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001465 ! knee -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11389 -name: TS26,mesenchyme,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003321 ! mesenchyme of knee -relationship: part_of EMAP:11388 ! TS26,knee -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1139 -name: TS15,sclerotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1136 ! TS15,somite 17 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11395 -name: TS26,skin,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001510 ! skin of knee -relationship: part_of EMAP:11388 ! TS26,knee -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001510 ! skin of knee -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11396 -name: TS26,dermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11395 ! TS26,skin,knee -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:11397 -name: TS26,epidermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11395 ! TS26,skin,knee -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:11398 -name: TS26,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003823 ! hindlimb zeugopod -relationship: part_of EMAP:11380 ! TS26,leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11399 -name: TS26,mesenchyme,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005259 ! lower leg mesenchyme -relationship: part_of EMAP:11398 ! TS26,lower leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:114 -name: TS10,primitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008776 ! inner cell mass derived hypoblast -relationship: part_of EMAP:112 ! TS10,endoderm,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1140 -name: TS15,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11403 -name: TS26,skin,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:11398 ! TS26,lower leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11404 -name: TS26,dermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11403 ! TS26,skin,lower leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:11405 -name: TS26,epidermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11403 ! TS26,skin,lower leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:11406 -name: TS26,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000376 ! hindlimb stylopod -relationship: part_of EMAP:11380 ! TS26,leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1141 -name: TS15,dermomyotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1140 ! TS15,somite 18 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11411 -name: TS26,mesenchyme,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005254 ! upper leg mesenchyme -relationship: part_of EMAP:11406 ! TS26,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11414 -name: TS26,skin,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:11406 ! TS26,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11415 -name: TS26,dermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11414 ! TS26,skin,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:11416 -name: TS26,epidermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11414 ! TS26,skin,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:11417 -name: TS26,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:11159 ! TS26,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11418 -name: TS26,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:11417 ! TS26,mesenchyme,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11419 -name: TS26,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:11417 ! TS26,mesenchyme,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1142 -name: TS15,myocoele,somite 18 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1140 ! TS15,somite 18 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11420 -name: TS26,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:11419 ! TS26,trunk mesenchyme -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11421 -name: TS26,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:11160 ! TS26,organ system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11422 -name: TS26,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:11421 ! TS26,cardiovascular system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11423 -name: TS26,aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0000947 ! aorta -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000947 ! aorta -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11424 -name: TS26,arch of aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001508 ! arch of aorta -relationship: part_of EMAP:11423 ! TS26,aorta -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11425 -name: TS26,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001515 ! thoracic aorta -relationship: part_of EMAP:11423 ! TS26,aorta -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001515 ! thoracic aorta -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11426 -name: TS26,ascending,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001496 ! ascending aorta -relationship: part_of EMAP:11425 ! TS26,thoracic aorta -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11427 -name: TS26,descending,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001514 ! descending aorta -relationship: part_of EMAP:11425 ! TS26,thoracic aorta -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11428 -name: TS26,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005805 ! dorsal aorta -relationship: part_of EMAP:11423 ! TS26,aorta -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11429 -name: TS26,abdominal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001516 ! abdominal aorta -relationship: part_of EMAP:11428 ! TS26,dorsal aorta -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1143 -name: TS15,sclerotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1140 ! TS15,somite 18 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11430 -name: TS26,axillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001394 ! axillary artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001394 ! axillary artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11431 -name: TS26,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006349 ! epigastric artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006349 ! epigastric artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11432 -name: TS26,inferior,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001354 ! inferior epigastric artery -relationship: part_of EMAP:11431 ! TS26,epigastric artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001354 ! inferior epigastric artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11433 -name: TS26,superior,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007153 ! superior epigastric artery -relationship: part_of EMAP:11431 ! TS26,epigastric artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007153 ! superior epigastric artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11434 -name: TS26,intercostal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005612 ! intercostal artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005612 ! intercostal artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11435 -name: TS26,greater palatine artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006664 ! greater palatine artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006664 ! greater palatine artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11436 -name: TS26,basilar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001633 ! basilar artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11437 -name: TS26,bronchial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002040 ! bronchial artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002040 ! bronchial artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11438 -name: TS26,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005396 ! carotid artery segment -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11439 -name: TS26,common,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0010197 ! trunk of common carotid artery -relationship: part_of EMAP:11438 ! TS26,carotid artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010197 ! trunk of common carotid artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1144 -name: TS15,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11440 -name: TS26,external,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001070 ! external carotid artery -relationship: part_of EMAP:11438 ! TS26,carotid artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11441 -name: TS26,internal,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:11438 ! TS26,carotid artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11442 -name: TS26,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004449 ! cerebral artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11443 -name: TS26,anterior,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001624 ! anterior cerebral artery -relationship: part_of EMAP:11442 ! TS26,cerebral artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11444 -name: TS26,middle,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001627 ! middle cerebral artery -relationship: part_of EMAP:11442 ! TS26,cerebral artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11445 -name: TS26,posterior,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001636 ! posterior cerebral artery -relationship: part_of EMAP:11442 ! TS26,cerebral artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11446 -name: TS26,hepatic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001193 ! hepatic artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11447 -name: TS26,hyoid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005608 ! hyoid artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11448 -name: TS26,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005609 ! iliac artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11449 -name: TS26,common,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001191 ! common iliac artery -relationship: part_of EMAP:11448 ! TS26,iliac artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1145 -name: TS15,dermomyotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1144 ! TS15,somite 19 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11450 -name: TS26,external,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001308 ! external iliac artery -relationship: part_of EMAP:11448 ! TS26,iliac artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11451 -name: TS26,internal,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001309 ! internal iliac artery -relationship: part_of EMAP:11448 ! TS26,iliac artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11452 -name: TS26,innominate artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001529 ! brachiocephalic artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11453 -name: TS26,internal thoracic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002456 ! internal thoracic artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11455 -name: TS26,maxillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001616 ! maxillary artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11456 -name: TS26,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005616 ! mesenteric artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11457 -name: TS26,inferior,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001183 ! inferior mesenteric artery -relationship: part_of EMAP:11456 ! TS26,mesenteric artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001183 ! inferior mesenteric artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11458 -name: TS26,superior,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001182 ! superior mesenteric artery -relationship: part_of EMAP:11456 ! TS26,mesenteric artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001182 ! superior mesenteric artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11459 -name: TS26,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1146 -name: TS15,myocoele,somite 19 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1144 ! TS15,somite 19 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11460 -name: TS26,ovarian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001190 ! ovarian artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001190 ! ovarian artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11461 -name: TS26,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006347 ! communicating artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006347 ! communicating artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11462 -name: TS26,anterior,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006764 ! anterior communicating artery -relationship: part_of EMAP:11461 ! TS26,communicating artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006764 ! anterior communicating artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11463 -name: TS26,posterior,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001628 ! posterior communicating artery -relationship: part_of EMAP:11461 ! TS26,communicating artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11464 -name: TS26,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11465 -name: TS26,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11466 -name: TS26,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11467 -name: TS26,pulmonary trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0002333 ! pulmonary trunk -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11468 -name: TS26,renal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001184 ! renal artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001184 ! renal artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11469 -name: TS26,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002458 ! spinal artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1147 -name: TS15,sclerotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1144 ! TS15,somite 19 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11470 -name: TS26,anterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005431 ! anterior spinal artery -relationship: part_of EMAP:11469 ! TS26,spinal artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005431 ! anterior spinal artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11471 -name: TS26,posterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007146 ! posterior spinal artery -relationship: part_of EMAP:11469 ! TS26,spinal artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007146 ! posterior spinal artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11472 -name: TS26,stapedial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006345 ! stapedial artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11473 -name: TS26,subclavian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001533 ! subclavian artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11474 -name: TS26,testicular artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001187 ! testicular artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001187 ! testicular artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11475 -name: TS26,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003847 ! thyroid artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003847 ! thyroid artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11476 -name: TS26,inferior,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007149 ! inferior thyroid artery -relationship: part_of EMAP:11475 ! TS26,thyroid artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007149 ! inferior thyroid artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11477 -name: TS26,superior,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007150 ! superior thyroid artery -relationship: part_of EMAP:11475 ! TS26,thyroid artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007150 ! superior thyroid artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11478 -name: TS26,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11479 -name: TS26,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:11478 ! TS26,umbilical artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1148 -name: TS15,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11480 -name: TS26,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:11478 ! TS26,umbilical artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11481 -name: TS26,vertebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001535 ! vertebral artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11482 -name: TS26,ductus arteriosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005440 ! ductus arteriosus -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11483 -name: TS26,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:11421 ! TS26,cardiovascular system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11484 -name: TS26,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:11421 ! TS26,cardiovascular system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11485 -name: TS26,aortic sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0003707 ! sinus of Valsalva -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003707 ! sinus of Valsalva -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11486 -name: TS26,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11487 -name: TS26,atrio-ventricular cushion tissue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:11488 -name: TS26,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11489 -name: TS26,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:11488 ! TS26,atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1149 -name: TS15,dermomyotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1148 ! TS15,somite 20 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11490 -name: TS26,foramen ovale,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004754 ! foramen ovale of heart -relationship: part_of EMAP:11489 ! TS26,interatrial septum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11491 -name: TS26,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:11489 ! TS26,interatrial septum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11492 -name: TS26,foramen secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0006678 ! foramen secundum -relationship: part_of EMAP:11491 ! TS26,septum primum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11493 -name: TS26,septum secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0004155 ! septum secundum -relationship: part_of EMAP:11489 ! TS26,interatrial septum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004155 ! septum secundum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11494 -name: TS26,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002079 ! left atrium -relationship: part_of EMAP:11488 ! TS26,atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002079 ! left atrium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11495 -name: TS26,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11494 ! TS26,left atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:11496 -name: TS26,endocardial lining,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11495 ! TS26,auricular region,left atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:11497 -name: TS26,cardiac muscle,auricular region,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:11495 ! TS26,auricular region,left atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11498 -name: TS26,endocardial lining,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11494 ! TS26,left atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:11499 -name: TS26,cardiac muscle,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003380 ! cardiac muscle of left atrium -relationship: part_of EMAP:11494 ! TS26,left atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:115 -name: TS10,mesoderm,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:106 ! TS10,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:1150 -name: TS15,myocoele,somite 20 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1148 ! TS15,somite 20 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11500 -name: TS26,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002078 ! right atrium -relationship: part_of EMAP:11488 ! TS26,atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002078 ! right atrium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11501 -name: TS26,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11500 ! TS26,right atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:11502 -name: TS26,endocardial lining,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11501 ! TS26,auricular region,right atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:11503 -name: TS26,cardiac muscle,auricular region,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:11501 ! TS26,auricular region,right atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11504 -name: TS26,endocardial lining,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11500 ! TS26,right atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:11505 -name: TS26,cardiac muscle,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003379 ! cardiac muscle of right atrium -relationship: part_of EMAP:11500 ! TS26,right atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11506 -name: TS26,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005208 ! right atrium valve -relationship: part_of EMAP:11500 ! TS26,right atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11507 -name: TS26,venous valve,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:11506 ! TS26,valve,right atrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11508 -name: TS26,bulbar cushion -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:11509 -name: TS26,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1151 -name: TS15,sclerotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1148 ! TS15,somite 20 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11510 -name: TS26,endocardial tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002165 ! endocardium -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002165 ! endocardium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11512 -name: TS26,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11513 -name: TS26,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:11512 ! TS26,mesentery,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11514 -name: TS26,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:11513 ! TS26,dorsal mesocardium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11515 -name: TS26,trabeculae carneae -namespace: mouse_anatomy_stages -is_a: UBERON:0002511 ! trabecula carnea -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002511 ! trabecula carnea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11516 -name: TS26,valve,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000946 ! cardial valve -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000946 ! cardial valve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11517 -name: TS26,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002137 ! aortic valve -relationship: part_of EMAP:11516 ! TS26,valve,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11518 -name: TS26,leaflets,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0011742 ! aortic valve leaflet -relationship: part_of EMAP:11517 ! TS26,aortic valve -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011742 ! aortic valve leaflet -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11519 -name: TS26,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002135 ! mitral valve -relationship: part_of EMAP:11516 ! TS26,valve,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1152 -name: TS15,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11520 -name: TS26,leaflets,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0007151 ! leaflets of mitral valve -relationship: part_of EMAP:11519 ! TS26,mitral valve -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007151 ! leaflets of mitral valve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11521 -name: TS26,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002146 ! pulmonary valve -relationship: part_of EMAP:11516 ! TS26,valve,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11522 -name: TS26,leaflets,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0011745 ! pulmonary valve leaflets -relationship: part_of EMAP:11521 ! TS26,pulmonary valve -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011745 ! pulmonary valve leaflets -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11523 -name: TS26,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002134 ! tricuspid valve -relationship: part_of EMAP:11516 ! TS26,valve,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11524 -name: TS26,leaflets,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0005484 ! tricuspid valve leaflet -relationship: part_of EMAP:11523 ! TS26,tricuspid valve -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005484 ! tricuspid valve leaflet -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11525 -name: TS26,ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002082 ! cardiac ventricle -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11526 -name: TS26,interventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005455 ! interventricular groove -relationship: part_of EMAP:11525 ! TS26,ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11527 -name: TS26,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002094 ! interventricular septum -relationship: part_of EMAP:11525 ! TS26,ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11528 -name: TS26,endocardial lining,interventricular septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11527 ! TS26,interventricular septum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002094 ! interventricular septum - -[Term] -id: EMAP:11529 -name: TS26,membranous part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004666 ! interventricular septum membranous part -relationship: part_of EMAP:11527 ! TS26,interventricular septum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1153 -name: TS15,dermomyotome,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1152 ! TS15,somite 21 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11530 -name: TS26,muscular part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004667 ! interventricular septum muscular part -relationship: part_of EMAP:11527 ! TS26,interventricular septum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11531 -name: TS26,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002084 ! heart left ventricle -relationship: part_of EMAP:11525 ! TS26,ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11532 -name: TS26,endocardial lining,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009713 ! endocardium of left ventricle -relationship: part_of EMAP:11531 ! TS26,left ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11533 -name: TS26,cardiac muscle,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003382 ! cardiac muscle of left ventricle -relationship: part_of EMAP:11531 ! TS26,left ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11534 -name: TS26,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002080 ! heart right ventricle -relationship: part_of EMAP:11525 ! TS26,ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11535 -name: TS26,endocardial lining,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009712 ! endocardium of right ventricle -relationship: part_of EMAP:11534 ! TS26,right ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11536 -name: TS26,cardiac muscle,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003381 ! cardiac muscle of right ventricle -relationship: part_of EMAP:11534 ! TS26,right ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11537 -name: TS26,lymphatic system -namespace: mouse_anatomy_stages -is_a: UBERON:0006558 ! lymphatic part of lymphoid system -relationship: part_of EMAP:11421 ! TS26,cardiovascular system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11538 -name: TS26,jugular lymph sac -namespace: mouse_anatomy_stages -is_a: UBERON:0011765 ! jugular lymph sac -relationship: part_of EMAP:11537 ! TS26,lymphatic system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011765 ! jugular lymph sac -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11539 -name: TS26,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:11421 ! TS26,cardiovascular system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1154 -name: TS15,myocoele,somite 21 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1152 ! TS15,somite 21 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11540 -name: TS26,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0013146 ! venous system of brain -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0013146 ! venous system of brain -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11541 -name: TS26,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005720 ! hindbrain venous system -relationship: part_of EMAP:11540 ! TS26,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005720 ! hindbrain venous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11542 -name: TS26,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11541 ! TS26,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005720 ! hindbrain venous system - -[Term] -id: EMAP:11543 -name: TS26,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005486 ! venous dural sinus -relationship: part_of EMAP:11542 ! TS26,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005486 ! venous dural sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11546 -name: TS26,transverse,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001641 ! transverse sinus -relationship: part_of EMAP:11543 ! TS26,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001641 ! transverse sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11547 -name: TS26,azygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001594 ! azygos vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001594 ! azygos vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11548 -name: TS26,axillary vein -namespace: mouse_anatomy_stages -is_a: UBERON:0000985 ! axillary vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000985 ! axillary vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11549 -name: TS26,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006356 ! epigastric vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006356 ! epigastric vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1155 -name: TS15,sclerotome,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1152 ! TS15,somite 21 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11550 -name: TS26,inferior,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007154 ! inferior epigastric vein -relationship: part_of EMAP:11549 ! TS26,epigastric vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007154 ! inferior epigastric vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11551 -name: TS26,superior,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007155 ! superior epigastric vein -relationship: part_of EMAP:11549 ! TS26,epigastric vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007155 ! superior epigastric vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11552 -name: TS26,intercostal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0012197 ! intercostal vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0012197 ! intercostal vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11553 -name: TS26,common iliac vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001139 ! common iliac vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11554 -name: TS26,ductus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002083 ! ductus venosus -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11555 -name: TS26,jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004711 ! jugular vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004711 ! jugular vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11556 -name: TS26,external,jugular vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11555 ! TS26,jugular vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004711 ! jugular vein - -[Term] -id: EMAP:11557 -name: TS26,internal,jugular vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11555 ! TS26,jugular vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004711 ! jugular vein - -[Term] -id: EMAP:11558 -name: TS26,femoral vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001361 ! femoral vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11559 -name: TS26,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:1156 -name: TS15,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11560 -name: TS26,left,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11559 ! TS26,hepatico-cardiac vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:11561 -name: TS26,right,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11559 ! TS26,hepatico-cardiac vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:11562 -name: TS26,hemiazygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006663 ! hemiazygos vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006663 ! hemiazygos vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11563 -name: TS26,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0004087 ! vena cava -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004087 ! vena cava -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11564 -name: TS26,inferior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001072 ! inferior vena cava -relationship: part_of EMAP:11563 ! TS26,vena cava -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001072 ! inferior vena cava -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11565 -name: TS26,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11564 ! TS26,inferior,vena cava -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:11566 -name: TS26,pre-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11564 ! TS26,inferior,vena cava -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:11567 -name: TS26,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001585 ! anterior vena cava -relationship: part_of EMAP:11563 ! TS26,vena cava -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11568 -name: TS26,left,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006765 ! left anterior vena cava -relationship: part_of EMAP:11567 ! TS26,superior,vena cava -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006765 ! left anterior vena cava -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11569 -name: TS26,right,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006766 ! right anterior vena cava -relationship: part_of EMAP:11567 ! TS26,superior,vena cava -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006766 ! right anterior vena cava -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1157 -name: TS15,dermomyotome,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1156 ! TS15,somite 22 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11571 -name: TS26,internal thoracic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001589 ! internal thoracic vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001589 ! internal thoracic vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11572 -name: TS26,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005617 ! mesenteric vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11573 -name: TS26,inferior,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001215 ! inferior mesenteric vein -relationship: part_of EMAP:11572 ! TS26,mesenteric vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001215 ! inferior mesenteric vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11574 -name: TS26,superior,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001138 ! superior mesenteric vein -relationship: part_of EMAP:11572 ! TS26,mesenteric vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001138 ! superior mesenteric vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11575 -name: TS26,ovarian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001145 ! ovarian vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001145 ! ovarian vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11576 -name: TS26,portal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002017 ! portal vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002017 ! portal vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11577 -name: TS26,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11578 -name: TS26,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11579 -name: TS26,pulmonary vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002016 ! pulmonary vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1158 -name: TS15,myocoele,somite 22 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1156 ! TS15,somite 22 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11580 -name: TS26,spinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006686 ! spinal vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006686 ! spinal vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11581 -name: TS26,subclavian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001587 ! subclavian vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11582 -name: TS26,superior vesical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006355 ! superior vesical vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006355 ! superior vesical vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11583 -name: TS26,testicular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001144 ! testicular vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001144 ! testicular vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11584 -name: TS26,thyroid vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:11585 -name: TS26,inferior,thyroid vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007156 ! inferior thyroid vein -relationship: part_of EMAP:11584 ! TS26,thyroid vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007156 ! inferior thyroid vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11586 -name: TS26,superior,thyroid vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007157 ! superior thyroid vein -relationship: part_of EMAP:11584 ! TS26,thyroid vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007157 ! superior thyroid vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11587 -name: TS26,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11588 -name: TS26,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:11587 ! TS26,umbilical vein -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11589 -name: TS26,gland,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0002530 ! gland -relationship: part_of EMAP:11160 ! TS26,organ system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002530 ! gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1159 -name: TS15,sclerotome,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1156 ! TS15,somite 22 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11590 -name: TS26,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0002369 ! adrenal gland -relationship: part_of EMAP:11589 ! TS26,gland,organ system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11591 -name: TS26,cortex,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001235 ! adrenal cortex -relationship: part_of EMAP:11590 ! TS26,adrenal gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11592 -name: TS26,medulla,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001236 ! adrenal medulla -relationship: part_of EMAP:11590 ! TS26,adrenal gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11593 -name: TS26,haemolymphoid system -namespace: mouse_anatomy_stages -is_a: UBERON:0002193 ! hemolymphoid system -relationship: part_of EMAP:11160 ! TS26,organ system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002193 ! hemolymphoid system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11594 -name: TS26,gland,haemolymphoid system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11593 ! TS26,haemolymphoid system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002193 ! hemolymphoid system - -[Term] -id: EMAP:11595 -name: TS26,spleen -namespace: mouse_anatomy_stages -is_a: UBERON:0002106 ! spleen -relationship: part_of EMAP:11594 ! TS26,gland,haemolymphoid system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002106 ! spleen -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11596 -name: TS26,thymus -namespace: mouse_anatomy_stages -is_a: UBERON:0002370 ! thymus -relationship: part_of EMAP:11594 ! TS26,gland,haemolymphoid system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002370 ! thymus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11597 -name: TS26,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0002416 ! integumental system -relationship: part_of EMAP:11160 ! TS26,organ system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002416 ! integumental system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11598 -name: TS26,gland,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0003297 ! gland of integumental system -relationship: part_of EMAP:11597 ! TS26,integumental system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11599 -name: TS26,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001911 ! mammary gland -relationship: part_of EMAP:11598 ! TS26,gland,integumental system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:116 -name: TS10,primitive streak -namespace: mouse_anatomy_stages -is_a: UBERON:0004341 ! primitive streak -relationship: part_of EMAP:106 ! TS10,embryo -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1160 -name: TS15,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11600 -name: TS26,epithelium,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003244 ! epithelium of mammary gland -relationship: part_of EMAP:11599 ! TS26,mammary gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11601 -name: TS26,mesenchyme,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003326 ! mesenchyme of mammary gland -relationship: part_of EMAP:11599 ! TS26,mammary gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003326 ! mesenchyme of mammary gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11602 -name: TS26,ridge,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0008425 ! mammary ridge -relationship: part_of EMAP:11599 ! TS26,mammary gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0008425 ! mammary ridge -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11603 -name: TS26,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0001037 ! strand of hair -relationship: part_of EMAP:11597 ! TS26,integumental system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001037 ! strand of hair -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11604 -name: TS26,bulb,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0005932 ! bulb of hair follicle -relationship: part_of EMAP:11603 ! TS26,hair -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005932 ! bulb of hair follicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11605 -name: TS26,follicle,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0002073 ! hair follicle -relationship: part_of EMAP:11603 ! TS26,hair -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002073 ! hair follicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11606 -name: TS26,root sheath,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0005933 ! hair root sheath -relationship: part_of EMAP:11603 ! TS26,hair -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005933 ! hair root sheath -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11607 -name: TS26,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11597 ! TS26,integumental system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:11608 -name: TS26,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11607 ! TS26,physiological umbilical hernia -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:11609 -name: TS26,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11607 ! TS26,physiological umbilical hernia -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:1161 -name: TS15,dermomyotome,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1160 ! TS15,somite 23 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11610 -name: TS26,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11597 ! TS26,integumental system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11611 -name: TS26,cervical sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11610 ! TS26,rest of skin -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11612 -name: TS26,dermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11610 ! TS26,rest of skin -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11613 -name: TS26,epidermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11610 ! TS26,rest of skin -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11614 -name: TS26,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11597 ! TS26,integumental system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11615 -name: TS26,dermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11614 ! TS26,vibrissa -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11616 -name: TS26,epidermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11614 ! TS26,vibrissa -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11617 -name: TS26,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:11160 ! TS26,organ system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11618 -name: TS26,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:11617 ! TS26,nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11619 -name: TS26,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0013146 ! venous system of brain -relationship: part_of EMAP:11618 ! TS26,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0013146 ! venous system of brain -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1162 -name: TS15,myocoele,somite 23 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1160 ! TS15,somite 23 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11620 -name: TS26,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:11619 ! TS26,brain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11621 -name: TS26,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:11620 ! TS26,forebrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11622 -name: TS26,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11623 -name: TS26,pituitary -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:11622 ! TS26,gland,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11624 -name: TS26,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002196 ! adenohypophysis -relationship: part_of EMAP:11623 ! TS26,pituitary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11625 -name: TS26,pars anterior,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0006964 ! pars distalis of adenohypophysis -relationship: part_of EMAP:11624 ! TS26,adenohypophysis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11626 -name: TS26,pars intermedia,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis -relationship: part_of EMAP:11624 ! TS26,adenohypophysis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11627 -name: TS26,pars tuberalis,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002433 ! pars tuberalis of adenohypophysis -relationship: part_of EMAP:11624 ! TS26,adenohypophysis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11628 -name: TS26,remnant of Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0006377 ! remnant of Rathke's pouch -relationship: part_of EMAP:11624 ! TS26,adenohypophysis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11629 -name: TS26,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002198 ! neurohypophysis -relationship: part_of EMAP:11623 ! TS26,pituitary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1163 -name: TS15,sclerotome,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1160 ! TS15,somite 23 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11630 -name: TS26,infundibulum,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002434 ! pituitary stalk -relationship: part_of EMAP:11629 ! TS26,neurohypophysis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11631 -name: TS26,median eminence,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002197 ! median eminence of neurohypophysis -relationship: part_of EMAP:11629 ! TS26,neurohypophysis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11632 -name: TS26,pars nervosa,neurohypophysis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11629 ! TS26,neurohypophysis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11633 -name: TS26,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11634 -name: TS26,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:11633 ! TS26,3rd ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11635 -name: TS26,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001899 ! epithalamus -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11636 -name: TS26,mantle layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013159 ! epithalamus mantle layer -relationship: part_of EMAP:11635 ! TS26,epithalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11637 -name: TS26,marginal layer,epithalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11635 ! TS26,epithalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:11638 -name: TS26,ventricular layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013160 ! epithalamus ventricular layer -relationship: part_of EMAP:11635 ! TS26,epithalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11639 -name: TS26,epithalamic recess -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11635 ! TS26,epithalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:1164 -name: TS15,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11640 -name: TS26,choroid plexus,epithalamic recess -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11639 ! TS26,epithalamic recess -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:11641 -name: TS26,pineal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001905 ! pineal body -relationship: part_of EMAP:11635 ! TS26,epithalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001905 ! pineal body -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11642 -name: TS26,floorplate,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11643 -name: TS26,hypothalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001898 ! hypothalamus -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11644 -name: TS26,mantle layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11643 ! TS26,hypothalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:11645 -name: TS26,marginal layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11643 ! TS26,hypothalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:11646 -name: TS26,ventricular layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11643 ! TS26,hypothalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:11647 -name: TS26,internal capsule,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001887 ! internal capsule -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001887 ! internal capsule -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11648 -name: TS26,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11649 -name: TS26,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1165 -name: TS15,dermomyotome,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1164 ! TS15,somite 24 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11650 -name: TS26,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:11649 ! TS26,lateral wall,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11651 -name: TS26,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11649 ! TS26,lateral wall,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:11652 -name: TS26,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11649 ! TS26,lateral wall,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:11653 -name: TS26,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003290 ! meninx of diencephalon -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11654 -name: TS26,arachnoid mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:11653 ! TS26,meninges,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11655 -name: TS26,dura mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:11653 ! TS26,meninges,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11656 -name: TS26,pia mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:11653 ! TS26,meninges,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11657 -name: TS26,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11658 -name: TS26,thalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001897 ! thalamus -relationship: part_of EMAP:11621 ! TS26,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001897 ! thalamus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11659 -name: TS26,interthalamic adhesion -namespace: mouse_anatomy_stages -is_a: UBERON:0006681 ! interthalamic adhesion -relationship: part_of EMAP:11658 ! TS26,thalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006681 ! interthalamic adhesion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1166 -name: TS15,myocoele,somite 24 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1164 ! TS15,somite 24 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11660 -name: TS26,mantle layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11658 ! TS26,thalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:11661 -name: TS26,marginal layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11658 ! TS26,thalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:11662 -name: TS26,ventricular layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11658 ! TS26,thalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:11663 -name: TS26,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:11620 ! TS26,forebrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11664 -name: TS26,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0000956 ! cerebral cortex -relationship: part_of EMAP:11663 ! TS26,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11668 -name: TS26,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:11663 ! TS26,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11669 -name: TS26,choroid fissure,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:11668 ! TS26,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1167 -name: TS15,sclerotome,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1164 ! TS15,somite 24 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11670 -name: TS26,choroid plexus,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11668 ! TS26,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002192 ! ventricular system choroidal fissure - -[Term] -id: EMAP:11671 -name: TS26,corpus striatum -namespace: mouse_anatomy_stages -is_a: UBERON:0000369 ! corpus striatum -relationship: part_of EMAP:11663 ! TS26,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11672 -name: TS26,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001873 ! caudate nucleus -relationship: part_of EMAP:11671 ! TS26,corpus striatum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11673 -name: TS26,head,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002626 ! head of caudate nucleus -relationship: part_of EMAP:11672 ! TS26,caudate nucleus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002626 ! head of caudate nucleus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11674 -name: TS26,tail,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002628 ! tail of caudate nucleus -relationship: part_of EMAP:11672 ! TS26,caudate nucleus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002628 ! tail of caudate nucleus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11675 -name: TS26,lentiform nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002263 ! lentiform nucleus -relationship: part_of EMAP:11671 ! TS26,corpus striatum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11676 -name: TS26,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:11663 ! TS26,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11677 -name: TS26,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11676 ! TS26,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11678 -name: TS26,choroid plexus,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11677 ! TS26,anterior horn,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11679 -name: TS26,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11676 ! TS26,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:1168 -name: TS15,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11680 -name: TS26,choroid plexus,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11679 ! TS26,inferior horn,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11681 -name: TS26,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11676 ! TS26,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11682 -name: TS26,choroid plexus,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11681 ! TS26,posterior horn,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11683 -name: TS26,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11676 ! TS26,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11684 -name: TS26,choroid plexus,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11683 ! TS26,superior horn,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11685 -name: TS26,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:11676 ! TS26,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11687 -name: TS26,head,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11676 ! TS26,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11688 -name: TS26,choroid plexus,head,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11687 ! TS26,head,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11689 -name: TS26,tail,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11676 ! TS26,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:1169 -name: TS15,dermomyotome,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1168 ! TS15,somite 25 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11690 -name: TS26,choroid plexus,tail,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11689 ! TS26,tail,lateral ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:11693 -name: TS26,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003289 ! meninx of telencephalon -relationship: part_of EMAP:11663 ! TS26,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11694 -name: TS26,arachnoid mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:11693 ! TS26,meninges,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11695 -name: TS26,dura mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002363 ! dura mater -relationship: part_of EMAP:11693 ! TS26,meninges,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002363 ! dura mater -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11696 -name: TS26,falx cerebri -namespace: mouse_anatomy_stages -is_a: UBERON:0006059 ! falx cerebri -relationship: part_of EMAP:11695 ! TS26,dura mater,meninges,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006059 ! falx cerebri -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11697 -name: TS26,pia mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:11693 ! TS26,meninges,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11698 -name: TS26,olfactory lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005366 ! olfactory lobe -relationship: part_of EMAP:11663 ! TS26,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005366 ! olfactory lobe -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11699 -name: TS26,olfactory cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0002894 ! olfactory cortex -relationship: part_of EMAP:11698 ! TS26,olfactory lobe,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:117 -name: TS10,node -namespace: mouse_anatomy_stages -is_a: UBERON:0003062 ! primitive knot -relationship: part_of EMAP:116 ! TS10,primitive streak -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1170 -name: TS15,myocoele,somite 25 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1168 ! TS15,somite 25 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11700 -name: TS26,mantle layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11699 ! TS26,olfactory cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:11701 -name: TS26,marginal layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11699 ! TS26,olfactory cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:11702 -name: TS26,ventricular layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11699 ! TS26,olfactory cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:11704 -name: TS26,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:11619 ! TS26,brain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11705 -name: TS26,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:11704 ! TS26,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11706 -name: TS26,lateral recess,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0007656 ! lateral recess of fourth ventricle -relationship: part_of EMAP:11705 ! TS26,4th ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11707 -name: TS26,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0001896 ! medulla oblongata -relationship: part_of EMAP:11704 ! TS26,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11708 -name: TS26,floor plate,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0003311 ! floor plate of medulla oblongata -relationship: part_of EMAP:11707 ! TS26,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11709 -name: TS26,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11707 ! TS26,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:1171 -name: TS15,sclerotome,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1168 ! TS15,somite 25 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11710 -name: TS26,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11709 ! TS26,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:11711 -name: TS26,mantle layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11710 ! TS26,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:11712 -name: TS26,marginal layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11710 ! TS26,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:11713 -name: TS26,ventricular layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11710 ! TS26,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:11714 -name: TS26,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0005240 ! basal plate medulla oblongata -relationship: part_of EMAP:11709 ! TS26,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11715 -name: TS26,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11714 ! TS26,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:11716 -name: TS26,mantle layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11715 ! TS26,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:11717 -name: TS26,marginal layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11715 ! TS26,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:11718 -name: TS26,ventricular layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11715 ! TS26,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:11719 -name: TS26,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11714 ! TS26,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:1172 -name: TS15,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11720 -name: TS26,mantle layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11719 ! TS26,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:11721 -name: TS26,marginal layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11719 ! TS26,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:11722 -name: TS26,ventricular layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11719 ! TS26,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:11723 -name: TS26,sulcus limitans,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0009576 ! medulla oblongata sulcus limitans -relationship: part_of EMAP:11709 ! TS26,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11724 -name: TS26,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11707 ! TS26,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:11725 -name: TS26,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003291 ! meninx of hindbrain -relationship: part_of EMAP:11704 ! TS26,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11726 -name: TS26,arachnoid mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003559 ! hindbrain arachnoid mater -relationship: part_of EMAP:11725 ! TS26,meninges,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003559 ! hindbrain arachnoid mater -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11727 -name: TS26,dura mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:11725 ! TS26,meninges,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11728 -name: TS26,tentorium cerebelli -namespace: mouse_anatomy_stages -is_a: UBERON:0006691 ! tentorium cerebelli -relationship: part_of EMAP:11727 ! TS26,dura mater,meninges,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006691 ! tentorium cerebelli -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11729 -name: TS26,pia mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003554 ! hindbrain pia mater -relationship: part_of EMAP:11725 ! TS26,meninges,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1173 -name: TS15,dermomyotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1172 ! TS15,somite 26 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11730 -name: TS26,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005219 ! hindbrain subarachnoid space -relationship: part_of EMAP:11725 ! TS26,meninges,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005219 ! hindbrain subarachnoid space -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11731 -name: TS26,pontine cistern,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0004048 ! pontine cistern -relationship: part_of EMAP:11730 ! TS26,subarachnoid space,meninges,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004048 ! pontine cistern -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11732 -name: TS26,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:11704 ! TS26,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11733 -name: TS26,floorplate,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11732 ! TS26,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11734 -name: TS26,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11732 ! TS26,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:11735 -name: TS26,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11734 ! TS26,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:11736 -name: TS26,cerebellum -namespace: mouse_anatomy_stages -is_a: UBERON:0002037 ! cerebellum -relationship: part_of EMAP:11735 ! TS26,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11737 -name: TS26,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11736 ! TS26,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:11738 -name: TS26,mantle layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11737 ! TS26,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:11739 -name: TS26,marginal layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11737 ! TS26,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:1174 -name: TS15,myocoele,somite 26 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1172 ! TS15,somite 26 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11740 -name: TS26,ventricular layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11737 ! TS26,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:11745 -name: TS26,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11735 ! TS26,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:11746 -name: TS26,mantle layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11745 ! TS26,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:11747 -name: TS26,marginal layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11745 ! TS26,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:11748 -name: TS26,ventricular layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11745 ! TS26,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:11749 -name: TS26,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:11734 ! TS26,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1175 -name: TS15,sclerotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1172 ! TS15,somite 26 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11750 -name: TS26,pons -namespace: mouse_anatomy_stages -is_a: UBERON:0000988 ! pons -relationship: part_of EMAP:11749 ! TS26,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000988 ! pons -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11751 -name: TS26,mantle layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11750 ! TS26,pons -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:11752 -name: TS26,marginal layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11750 ! TS26,pons -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:11753 -name: TS26,ventricular layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11750 ! TS26,pons -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:11754 -name: TS26,sulcus limitans,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009577 ! metencephalon sulcus limitans -relationship: part_of EMAP:11734 ! TS26,lateral wall,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11755 -name: TS26,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11732 ! TS26,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:11756 -name: TS26,choroid plexus,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11755 ! TS26,roof,metencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:1176 -name: TS15,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11762 -name: TS26,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:11619 ! TS26,brain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11763 -name: TS26,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003288 ! meninx of midbrain -relationship: part_of EMAP:11762 ! TS26,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11764 -name: TS26,arachnoid mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003557 ! midbrain arachnoid mater -relationship: part_of EMAP:11763 ! TS26,meninges,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003557 ! midbrain arachnoid mater -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11765 -name: TS26,dura mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:11763 ! TS26,meninges,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11766 -name: TS26,pia mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003551 ! midbrain pia mater -relationship: part_of EMAP:11763 ! TS26,meninges,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11767 -name: TS26,cerebral aqueduct -namespace: mouse_anatomy_stages -is_a: UBERON:0002289 ! midbrain cerebral aqueduct -relationship: part_of EMAP:11762 ! TS26,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11768 -name: TS26,floorplate,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11762 ! TS26,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11769 -name: TS26,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:11762 ! TS26,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1177 -name: TS15,dermomyotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1176 ! TS15,somite 27 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11770 -name: TS26,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:11769 ! TS26,lateral wall,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11771 -name: TS26,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11769 ! TS26,lateral wall,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:11772 -name: TS26,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11769 ! TS26,lateral wall,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:11773 -name: TS26,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003299 ! roof plate of midbrain -relationship: part_of EMAP:11762 ! TS26,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11774 -name: TS26,tegmentum,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001943 ! midbrain tegmentum -relationship: part_of EMAP:11762 ! TS26,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11775 -name: TS26,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:11618 ! TS26,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11776 -name: TS26,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:11775 ! TS26,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11777 -name: TS26,facial VII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:11776 ! TS26,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11778 -name: TS26,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:11776 ! TS26,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11779 -name: TS26,inferior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11778 ! TS26,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:1178 -name: TS15,myocoele,somite 27 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1176 ! TS15,somite 27 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11780 -name: TS26,superior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11778 ! TS26,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:11781 -name: TS26,trigeminal V,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:11776 ! TS26,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11782 -name: TS26,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:11776 ! TS26,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11783 -name: TS26,inferior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:11782 ! TS26,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11784 -name: TS26,superior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:11782 ! TS26,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11785 -name: TS26,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002827 ! auditory ganglion -relationship: part_of EMAP:11776 ! TS26,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002827 ! auditory ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11786 -name: TS26,cochlear component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11785 ! TS26,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002827 ! auditory ganglion - -[Term] -id: EMAP:11787 -name: TS26,vestibular component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002824 ! vestibular ganglion -relationship: part_of EMAP:11785 ! TS26,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11788 -name: TS26,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:11618 ! TS26,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11789 -name: TS26,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:11788 ! TS26,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1179 -name: TS15,sclerotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1176 ! TS15,somite 27 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11790 -name: TS26,abducent VI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001785 ! cranial nerve - -[Term] -id: EMAP:11791 -name: TS26,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11792 -name: TS26,cranial component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009673 ! accessory XI nerve cranial component -relationship: part_of EMAP:11791 ! TS26,accessory XI -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11793 -name: TS26,spinal component,accessory XI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11791 ! TS26,accessory XI -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002019 ! accessory XI nerve - -[Term] -id: EMAP:11794 -name: TS26,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001647 ! facial nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11795 -name: TS26,chorda tympani branch,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009675 ! facial VII nerve chorda tympani branch -relationship: part_of EMAP:11794 ! TS26,facial VII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009675 ! facial VII nerve chorda tympani branch -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11796 -name: TS26,glossopharyngeal IX,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001649 ! glossopharyngeal nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11797 -name: TS26,hypoglossal XII -namespace: mouse_anatomy_stages -is_a: UBERON:0001650 ! hypoglossal nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11798 -name: TS26,oculomotor III -namespace: mouse_anatomy_stages -is_a: UBERON:0001643 ! oculomotor nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11799 -name: TS26,olfactory I -namespace: mouse_anatomy_stages -is_a: UBERON:0001579 ! olfactory nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:118 -name: TS10,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1180 -name: TS15,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11800 -name: TS26,optic II -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11801 -name: TS26,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001645 ! trigeminal nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11802 -name: TS26,mandibular division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11801 ! TS26,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:11803 -name: TS26,maxillary division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11801 ! TS26,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:11804 -name: TS26,ophthalmic division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000348 ! ophthalmic nerve -relationship: part_of EMAP:11801 ! TS26,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11805 -name: TS26,trochlear IV -namespace: mouse_anatomy_stages -is_a: UBERON:0001644 ! trochlear nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11806 -name: TS26,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001648 ! vestibulocochlear nerve -relationship: part_of EMAP:11789 ! TS26,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11807 -name: TS26,cochlear component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11806 ! TS26,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:11808 -name: TS26,vestibular component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11806 ! TS26,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:11809 -name: TS26,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:11618 ! TS26,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1181 -name: TS15,dermomyotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1180 ! TS15,somite 28 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11810 -name: TS26,conus medullaris,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005437 ! conus medullaris -relationship: part_of EMAP:11809 ! TS26,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005437 ! conus medullaris -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11811 -name: TS26,filum terminale,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005443 ! filum terminale -relationship: part_of EMAP:11809 ! TS26,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005443 ! filum terminale -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11812 -name: TS26,floorplate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11809 ! TS26,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11813 -name: TS26,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009582 ! spinal cord lateral wall -relationship: part_of EMAP:11809 ! TS26,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11814 -name: TS26,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009583 ! spinal cord mantle layer -relationship: part_of EMAP:11813 ! TS26,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009583 ! spinal cord mantle layer -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11815 -name: TS26,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:11814 ! TS26,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11816 -name: TS26,dorsal grey horn,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002256 ! dorsal horn of spinal cord -relationship: part_of EMAP:11815 ! TS26,alar columns,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11817 -name: TS26,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11814 ! TS26,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:11818 -name: TS26,ventral grey horn,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002257 ! ventral horn of spinal cord -relationship: part_of EMAP:11817 ! TS26,basal columns,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11819 -name: TS26,intermediate grey horn,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11814 ! TS26,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:1182 -name: TS15,myocoele,somite 28 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1180 ! TS15,somite 28 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11820 -name: TS26,marginal layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11813 ! TS26,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0009582 ! spinal cord lateral wall - -[Term] -id: EMAP:11821 -name: TS26,sulcus limitans,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009570 ! spinal cord sulcus limitans -relationship: part_of EMAP:11813 ! TS26,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11822 -name: TS26,ventricular layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005359 ! spinal cord ependyma -relationship: part_of EMAP:11813 ! TS26,lateral wall,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11823 -name: TS26,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003292 ! meninx of spinal cord -relationship: part_of EMAP:11809 ! TS26,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11824 -name: TS26,arachnoid mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003560 ! spinal cord arachnoid mater -relationship: part_of EMAP:11823 ! TS26,meninges,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003560 ! spinal cord arachnoid mater -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11825 -name: TS26,dura mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002093 ! spinal dura mater -relationship: part_of EMAP:11823 ! TS26,meninges,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11826 -name: TS26,pia mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003555 ! spinal cord pia mater -relationship: part_of EMAP:11823 ! TS26,meninges,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11827 -name: TS26,roof plate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11809 ! TS26,spinal cord -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002240 ! spinal cord - -[Term] -id: EMAP:1183 -name: TS15,sclerotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1180 ! TS15,somite 28 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11830 -name: TS26,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001871 ! temporal lobe -relationship: part_of EMAP:11663 ! TS26,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001871 ! temporal lobe -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11831 -name: TS26,marginal layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11830 ! TS26,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:11832 -name: TS26,ventricular layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11830 ! TS26,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:11833 -name: TS26,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:11617 ! TS26,nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11834 -name: TS26,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:11833 ! TS26,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11835 -name: TS26,ganglion,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:11834 ! TS26,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11836 -name: TS26,ciliary ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0002058 ! ciliary ganglion -relationship: part_of EMAP:11835 ! TS26,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002058 ! ciliary ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11837 -name: TS26,paraganglion of Zuckerkandl -namespace: mouse_anatomy_stages -is_a: UBERON:0001237 ! paraaortic body -relationship: part_of EMAP:11835 ! TS26,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11838 -name: TS26,nerve plexus,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001816 ! autonomic nerve plexus -relationship: part_of EMAP:11834 ! TS26,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001816 ! autonomic nerve plexus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11839 -name: TS26,hypogastric plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005303 ! hypogastric nerve -relationship: part_of EMAP:11838 ! TS26,nerve plexus,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005303 ! hypogastric nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1184 -name: TS15,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11840 -name: TS26,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000011 ! parasympathetic nervous system -relationship: part_of EMAP:11834 ! TS26,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11841 -name: TS26,nerve,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004293 ! parasympathetic nerve -relationship: part_of EMAP:11840 ! TS26,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11842 -name: TS26,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0006308 ! vagal X nerve trunk -relationship: part_of EMAP:11841 ! TS26,nerve,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006308 ! vagal X nerve trunk -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11843 -name: TS26,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11842 ! TS26,vagal X nerve trunk -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11845 -name: TS26,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -relationship: part_of EMAP:11842 ! TS26,vagal X nerve trunk -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11847 -name: TS26,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:11834 ! TS26,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11848 -name: TS26,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:11847 ! TS26,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11849 -name: TS26,cervico-thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002441 ! cervicothoracic ganglion -relationship: part_of EMAP:11848 ! TS26,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002441 ! cervicothoracic ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1185 -name: TS15,dermomyotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1184 ! TS15,somite 29 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11850 -name: TS26,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001991 ! cervical ganglion -relationship: part_of EMAP:11848 ! TS26,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11851 -name: TS26,inferior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002440 ! inferior cervical ganglion -relationship: part_of EMAP:11850 ! TS26,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11854 -name: TS26,superior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001989 ! superior cervical ganglion -relationship: part_of EMAP:11850 ! TS26,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11855 -name: TS26,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:11848 ! TS26,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11856 -name: TS26,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:11847 ! TS26,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11857 -name: TS26,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:11833 ! TS26,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11858 -name: TS26,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11857 ! TS26,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:11859 -name: TS26,dorsal root ganglion,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:11858 ! TS26,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1186 -name: TS15,myocoele,somite 29 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1184 ! TS15,somite 29 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11860 -name: TS26,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:11857 ! TS26,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11861 -name: TS26,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:11860 ! TS26,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11862 -name: TS26,median nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001148 ! median nerve -relationship: part_of EMAP:11861 ! TS26,brachial plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001148 ! median nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11863 -name: TS26,radial nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001492 ! radial nerve -relationship: part_of EMAP:11861 ! TS26,brachial plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11864 -name: TS26,ulnar nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001494 ! ulnar nerve -relationship: part_of EMAP:11861 ! TS26,brachial plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11865 -name: TS26,lumbo-sacral plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001815 ! lumbosacral nerve plexus -relationship: part_of EMAP:11860 ! TS26,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11866 -name: TS26,sciatic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001322 ! sciatic nerve -relationship: part_of EMAP:11865 ! TS26,lumbo-sacral plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001322 ! sciatic nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1187 -name: TS15,sclerotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1184 ! TS15,somite 29 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11872 -name: TS26,axillary nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001493 ! axillary nerve -relationship: part_of EMAP:11861 ! TS26,brachial plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001493 ! axillary nerve -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11873 -name: TS26,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:11160 ! TS26,organ system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11874 -name: TS26,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:11873 ! TS26,sensory organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11875 -name: TS26,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:11874 ! TS26,ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11876 -name: TS26,external auditory meatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001352 ! external acoustic meatus -relationship: part_of EMAP:11875 ! TS26,external ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1188 -name: TS15,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1087 ! TS15,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11880 -name: TS26,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001757 ! pinna -relationship: part_of EMAP:11875 ! TS26,external ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001757 ! pinna -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11881 -name: TS26,cartilage condensation,pinna,external ear -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11880 ! TS26,pinna,external ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11882 -name: TS26,mesenchyme,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0003325 ! mesenchyme of pinna -relationship: part_of EMAP:11880 ! TS26,pinna,external ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11883 -name: TS26,surface epithelium,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0006938 ! pinna surface epithelium -relationship: part_of EMAP:11880 ! TS26,pinna,external ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11884 -name: TS26,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:11874 ! TS26,ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11885 -name: TS26,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:11884 ! TS26,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11886 -name: TS26,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11885 ! TS26,endolymphatic appendage -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:11887 -name: TS26,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11885 ! TS26,endolymphatic appendage -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:11888 -name: TS26,endolymphatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001860 ! endolymphatic duct -relationship: part_of EMAP:11884 ! TS26,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11889 -name: TS26,associated mesenchyme,endolymphatic duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11888 ! TS26,endolymphatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001860 ! endolymphatic duct - -[Term] -id: EMAP:1189 -name: TS15,dermomyotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1188 ! TS15,somite 30 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11890 -name: TS26,epithelium,endolymphatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003362 ! epithelium of endolymphatic duct -relationship: part_of EMAP:11888 ! TS26,endolymphatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003362 ! epithelium of endolymphatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11891 -name: TS26,labyrinth -namespace: mouse_anatomy_stages -is_a: UBERON:0001849 ! membranous labyrinth -relationship: part_of EMAP:11884 ! TS26,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11892 -name: TS26,associated mesenchyme,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11891 ! TS26,labyrinth -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:11893 -name: TS26,epithelium,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11891 ! TS26,labyrinth -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:11894 -name: TS26,otic cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0005410 ! cartilaginous otic capsule -relationship: part_of EMAP:11884 ! TS26,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11895 -name: TS26,vestibular component,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001862 ! vestibular labyrinth -relationship: part_of EMAP:11884 ! TS26,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11896 -name: TS26,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0001861 ! ductus reuniens -relationship: part_of EMAP:11895 ! TS26,vestibular component,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11897 -name: TS26,associated mesenchyme,ductus reuniens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11896 ! TS26,ductus reuniens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001861 ! ductus reuniens - -[Term] -id: EMAP:11898 -name: TS26,epithelium,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0003363 ! epithelium of ductus reuniens -relationship: part_of EMAP:11896 ! TS26,ductus reuniens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11899 -name: TS26,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0001854 ! saccule of membranous labyrinth -relationship: part_of EMAP:11895 ! TS26,vestibular component,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:119 -name: TS10,amniotic fold -namespace: mouse_anatomy_stages -is_a: UBERON:0005971 ! amniotic fold -relationship: part_of EMAP:118 ! TS10,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0005971 ! amniotic fold -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1190 -name: TS15,myocoele,somite 30 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1188 ! TS15,somite 30 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11900 -name: TS26,associated mesenchyme,saccule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11899 ! TS26,saccule -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EMAP:11901 -name: TS26,cochlea -namespace: mouse_anatomy_stages -is_a: UBERON:0001844 ! cochlea -relationship: part_of EMAP:11899 ! TS26,saccule -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001844 ! cochlea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11902 -name: TS26,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth -relationship: part_of EMAP:11901 ! TS26,cochlea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11903 -name: TS26,associated mesenchyme,cochlear duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11902 ! TS26,cochlear duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: EMAP:11904 -name: TS26,epithelium,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003243 ! epithelium of cochlear duct -relationship: part_of EMAP:11902 ! TS26,cochlear duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003243 ! epithelium of cochlear duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11905 -name: TS26,epithelium,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0003242 ! epithelium of saccule -relationship: part_of EMAP:11899 ! TS26,saccule -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11906 -name: TS26,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0001853 ! utricle of membranous labyrinth -relationship: part_of EMAP:11895 ! TS26,vestibular component,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11907 -name: TS26,associated mesenchyme,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11906 ! TS26,utricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EMAP:11908 -name: TS26,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0005600 ! crus commune -relationship: part_of EMAP:11906 ! TS26,utricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005600 ! crus commune -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11909 -name: TS26,associated mesenchyme,crus commune,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11908 ! TS26,crus commune,utricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005600 ! crus commune - -[Term] -id: EMAP:1191 -name: TS15,sclerotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1188 ! TS15,somite 30 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:11910 -name: TS26,epithelium,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:11908 ! TS26,crus commune,utricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11911 -name: TS26,epithelium,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:11906 ! TS26,utricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11912 -name: TS26,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001843 ! lateral semicircular canal -relationship: part_of EMAP:11906 ! TS26,utricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11913 -name: TS26,associated mesenchyme,lateral semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11912 ! TS26,lateral semicircular canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001843 ! lateral semicircular canal - -[Term] -id: EMAP:11914 -name: TS26,epithelium,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003240 ! epithelium of lateral semicircular canal -relationship: part_of EMAP:11912 ! TS26,lateral semicircular canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11915 -name: TS26,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001842 ! posterior semicircular canal -relationship: part_of EMAP:11906 ! TS26,utricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11916 -name: TS26,associated mesenchyme,posterior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11915 ! TS26,posterior semicircular canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EMAP:11917 -name: TS26,epithelium,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal -relationship: part_of EMAP:11915 ! TS26,posterior semicircular canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11918 -name: TS26,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001841 ! anterior semicircular canal -relationship: part_of EMAP:11906 ! TS26,utricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11919 -name: TS26,associated mesenchyme,superior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11918 ! TS26,superior semicircular canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EMAP:1192 -name: TS15,septum transversum -namespace: mouse_anatomy_stages -is_a: UBERON:0004161 ! septum transversum -relationship: part_of EMAP:1080 ! TS15,trunk mesenchyme -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11920 -name: TS26,epithelium,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003238 ! epithelium of superior semicircular canal -relationship: part_of EMAP:11918 ! TS26,superior semicircular canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11921 -name: TS26,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:11874 ! TS26,ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11922 -name: TS26,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:11921 ! TS26,middle ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11923 -name: TS26,ossicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001686 ! auditory ossicle -relationship: part_of EMAP:11921 ! TS26,middle ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001686 ! auditory ossicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11924 -name: TS26,incus -namespace: mouse_anatomy_stages -is_a: UBERON:0001688 ! incus -relationship: part_of EMAP:11923 ! TS26,ossicle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001688 ! incus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11925 -name: TS26,malleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001689 ! malleus -relationship: part_of EMAP:11923 ! TS26,ossicle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001689 ! malleus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11926 -name: TS26,stapes -namespace: mouse_anatomy_stages -is_a: UBERON:0001687 ! stapes -relationship: part_of EMAP:11923 ! TS26,ossicle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001687 ! stapes -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11927 -name: TS26,pharyngo-tympanic tube -namespace: mouse_anatomy_stages -is_a: UBERON:0002393 ! pharyngotympanic tube -relationship: part_of EMAP:11921 ! TS26,middle ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11928 -name: TS26,stapedius muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001599 ! stapedius muscle -relationship: part_of EMAP:11921 ! TS26,middle ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001599 ! stapedius muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11929 -name: TS26,tensor tympani muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001600 ! tensor tympani -relationship: part_of EMAP:11921 ! TS26,middle ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001600 ! tensor tympani -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1193 -name: TS15,hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1192 ! TS15,septum transversum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:11930 -name: TS26,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:11921 ! TS26,middle ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11931 -name: TS26,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:11873 ! TS26,sensory organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11932 -name: TS26,anterior chamber,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001766 ! anterior chamber of eyeball -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11933 -name: TS26,aqueous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001796 ! aqueous humor of eyeball -relationship: part_of EMAP:11932 ! TS26,anterior chamber,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11934 -name: TS26,choroidal blood vessels,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0002443 ! choroidal blood vessel -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11935 -name: TS26,conjunctival sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005908 ! conjunctival sac -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005908 ! conjunctival sac -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11936 -name: TS26,lower recess,conjunctival sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11935 ! TS26,conjunctival sac -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005908 ! conjunctival sac - -[Term] -id: EMAP:11937 -name: TS26,upper recess,conjunctival sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11935 ! TS26,conjunctival sac -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005908 ! conjunctival sac - -[Term] -id: EMAP:11938 -name: TS26,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11939 -name: TS26,Descemet's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004367 ! Descemet's membrane -relationship: part_of EMAP:11938 ! TS26,cornea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004367 ! Descemet's membrane -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1194 -name: TS15,non-hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1192 ! TS15,septum transversum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:11940 -name: TS26,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:11938 ! TS26,cornea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11941 -name: TS26,stroma,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001777 ! substantia propria of cornea -relationship: part_of EMAP:11938 ! TS26,cornea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11942 -name: TS26,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001711 ! eyelid -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001711 ! eyelid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11943 -name: TS26,inner canthus,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0005611 ! inner canthus -relationship: part_of EMAP:11942 ! TS26,eyelid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11944 -name: TS26,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001713 ! lower eyelid -relationship: part_of EMAP:11942 ! TS26,eyelid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11945 -name: TS26,epithelium,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003845 ! lower eyelid epithelium -relationship: part_of EMAP:11944 ! TS26,lower,eyelid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003845 ! lower eyelid epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11946 -name: TS26,mesenchyme,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:11944 ! TS26,lower,eyelid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11947 -name: TS26,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001712 ! upper eyelid -relationship: part_of EMAP:11942 ! TS26,eyelid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11948 -name: TS26,epithelium,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003844 ! upper eyelid epithelium -relationship: part_of EMAP:11947 ! TS26,upper,eyelid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003844 ! upper eyelid epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11949 -name: TS26,mesenchyme,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:11947 ! TS26,upper,eyelid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1195 -name: TS15,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11950 -name: TS26,hyaloid cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005606 ! hyaloid cavity -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11951 -name: TS26,hyaloid vascular plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005607 ! hyaloid vascular plexus -relationship: part_of EMAP:11950 ! TS26,hyaloid cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11952 -name: TS26,tunica vasculosa lentis -namespace: mouse_anatomy_stages -is_a: UBERON:0006305 ! tunica vasculosa lentis -relationship: part_of EMAP:11951 ! TS26,hyaloid vascular plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006305 ! tunica vasculosa lentis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11953 -name: TS26,vasa hyaloidea propria -namespace: mouse_anatomy_stages -is_a: UBERON:0006358 ! vasa hyaloidea propria -relationship: part_of EMAP:11951 ! TS26,hyaloid vascular plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006358 ! vasa hyaloidea propria -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11954 -name: TS26,vitreous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001797 ! vitreous humor -relationship: part_of EMAP:11950 ! TS26,hyaloid cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11955 -name: TS26,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0000965 ! lens of camera-type eye -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11956 -name: TS26,anterior epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005614 ! lens anterior epithelium -relationship: part_of EMAP:11955 ! TS26,lens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11957 -name: TS26,capsule,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0001804 ! capsule of lens -relationship: part_of EMAP:11955 ! TS26,lens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11958 -name: TS26,equatorial epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005615 ! lens equatorial epithelium -relationship: part_of EMAP:11955 ! TS26,lens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005615 ! lens equatorial epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11959 -name: TS26,lens fibres -namespace: mouse_anatomy_stages -is_a: UBERON:0002444 ! lens fiber -relationship: part_of EMAP:11955 ! TS26,lens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1196 -name: TS15,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11960 -name: TS26,anterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11959 ! TS26,lens fibres -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:11961 -name: TS26,posterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11959 ! TS26,lens fibres -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:11962 -name: TS26,optic chiasma -namespace: mouse_anatomy_stages -is_a: UBERON:0000959 ! optic chiasma -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11963 -name: TS26,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11964 -name: TS26,optic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:11963 ! TS26,optic stalk -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11965 -name: TS26,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11966 -name: TS26,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11967 -name: TS26,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:11966 ! TS26,retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11968 -name: TS26,nerve fibre layer,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0001793 ! nerve fiber layer of retina -relationship: part_of EMAP:11967 ! TS26,neural retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11969 -name: TS26,nuclear layer,neural retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11967 ! TS26,neural retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003902 ! retinal neural layer - -[Term] -id: EMAP:1197 -name: TS15,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:1196 ! TS15,organ system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11972 -name: TS26,optic disc -namespace: mouse_anatomy_stages -is_a: UBERON:0001783 ! optic disc -relationship: part_of EMAP:11966 ! TS26,retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001783 ! optic disc -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11973 -name: TS26,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:11966 ! TS26,retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11974 -name: TS26,skeletal muscle,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003269 ! skeletal muscle of eye -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003269 ! skeletal muscle of eye -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11975 -name: TS26,extrinsic ocular muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001601 ! extra-ocular muscle -relationship: part_of EMAP:11974 ! TS26,skeletal muscle,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11976 -name: TS26,smooth muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003386 ! smooth muscle of eye -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003386 ! smooth muscle of eye -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11977 -name: TS26,intrinsic ocular muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0011222 ! intra-ocular muscle -relationship: part_of EMAP:11976 ! TS26,smooth muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011222 ! intra-ocular muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11978 -name: TS26,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:11873 ! TS26,sensory organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11979 -name: TS26,meatus,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11978 ! TS26,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000004 ! olfactory apparatus - -[Term] -id: EMAP:1198 -name: TS15,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:1197 ! TS15,nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11980 -name: TS26,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000003 ! naris -relationship: part_of EMAP:11978 ! TS26,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000003 ! naris -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11981 -name: TS26,anterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11980 ! TS26,naris,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:11982 -name: TS26,epithelium,anterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11981 ! TS26,anterior,naris,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:11983 -name: TS26,external,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0005928 ! external naris -relationship: part_of EMAP:11980 ! TS26,naris,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005928 ! external naris -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11984 -name: TS26,epithelium,external,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0004692 ! external naris epithelium -relationship: part_of EMAP:11983 ! TS26,external,naris,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004692 ! external naris epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11985 -name: TS26,posterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11980 ! TS26,naris,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:11986 -name: TS26,epithelium,posterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11985 ! TS26,posterior,naris,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:11987 -name: TS26,primary choana -namespace: mouse_anatomy_stages -is_a: UBERON:0005931 ! primary choana -relationship: part_of EMAP:11980 ! TS26,naris,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005931 ! primary choana -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11988 -name: TS26,nasal capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0006332 ! nasal capsule -relationship: part_of EMAP:11978 ! TS26,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11989 -name: TS26,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001707 ! nasal cavity -relationship: part_of EMAP:11978 ! TS26,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1199 -name: TS15,future brain -namespace: mouse_anatomy_stages -is_a: UBERON:0006238 ! future brain -relationship: part_of EMAP:1198 ! TS15,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006238 ! future brain -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:11990 -name: TS26,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005384 ! nasal cavity epithelium -relationship: part_of EMAP:11989 ! TS26,nasal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11991 -name: TS26,olfactory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001997 ! olfactory epithelium -relationship: part_of EMAP:11990 ! TS26,epithelium,nasal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11992 -name: TS26,respiratory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000171 ! respiration organ -relationship: part_of EMAP:11990 ! TS26,epithelium,nasal cavity -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11993 -name: TS26,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0001706 ! nasal septum -relationship: part_of EMAP:11978 ! TS26,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11994 -name: TS26,epithelium,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003356 ! epithelium of nasal septum -relationship: part_of EMAP:11993 ! TS26,nasal septum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003356 ! epithelium of nasal septum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11995 -name: TS26,mesenchyme,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003415 ! mesenchyme of nasal septum -relationship: part_of EMAP:11993 ! TS26,nasal septum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11996 -name: TS26,naso-lacrimal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002392 ! nasolacrimal duct -relationship: part_of EMAP:11978 ! TS26,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11997 -name: TS26,turbinate bones,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11978 ! TS26,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11998 -name: TS26,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002255 ! vomeronasal organ -relationship: part_of EMAP:11978 ! TS26,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:11999 -name: TS26,mesenchyme,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003421 ! mesenchyme of vomeronasal organ -relationship: part_of EMAP:11998 ! TS26,vomeronasal organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12 -name: TS4,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000008 ! Theiler stage 04 - -[Term] -id: EMAP:120 -name: TS10,ectoderm,amniotic fold -namespace: mouse_anatomy_stages -relationship: part_of EMAP:119 ! TS10,amniotic fold -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0005971 ! amniotic fold - -[Term] -id: EMAP:1200 -name: TS15,future forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0006240 ! future forebrain -relationship: part_of EMAP:1199 ! TS15,future brain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006240 ! future forebrain -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12000 -name: TS26,epithelium,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003367 ! epithelium of vomeronasal organ -relationship: part_of EMAP:11998 ! TS26,vomeronasal organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12001 -name: TS26,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:11161 ! TS26,visceral organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12002 -name: TS26,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:12001 ! TS26,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12003 -name: TS26,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:12002 ! TS26,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12004 -name: TS26,salivary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001044 ! salivary gland -relationship: part_of EMAP:12003 ! TS26,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001044 ! salivary gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12005 -name: TS26,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001832 ! sublingual gland -relationship: part_of EMAP:12004 ! TS26,salivary gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001832 ! sublingual gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12006 -name: TS26,epithelium,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003361 ! epithelium of sublingual gland -relationship: part_of EMAP:12005 ! TS26,sublingual gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003361 ! epithelium of sublingual gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12007 -name: TS26,mesenchyme,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003420 ! mesenchyme of sublingual gland -relationship: part_of EMAP:12005 ! TS26,sublingual gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003420 ! mesenchyme of sublingual gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12008 -name: TS26,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001736 ! submandibular gland -relationship: part_of EMAP:12004 ! TS26,salivary gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001736 ! submandibular gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12009 -name: TS26,epithelium,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003359 ! epithelium of submandibular gland -relationship: part_of EMAP:12008 ! TS26,submandibular gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003359 ! epithelium of submandibular gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1201 -name: TS15,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:1200 ! TS15,future forebrain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12010 -name: TS26,mesenchyme,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003418 ! mesenchyme of submandibular gland -relationship: part_of EMAP:12008 ! TS26,submandibular gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003418 ! mesenchyme of submandibular gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12011 -name: TS26,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:12001 ! TS26,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12012 -name: TS26,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0003408 ! gland of gut -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003408 ! gland of gut -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12013 -name: TS26,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001264 ! pancreas -relationship: part_of EMAP:12012 ! TS26,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001264 ! pancreas -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12014 -name: TS26,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001150 ! body of pancreas -relationship: part_of EMAP:12013 ! TS26,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12015 -name: TS26,dorsal pancreatic duct,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:12014 ! TS26,body,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12016 -name: TS26,parenchyma,body,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12014 ! TS26,body,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001150 ! body of pancreas - -[Term] -id: EMAP:12017 -name: TS26,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001069 ! head of pancreas -relationship: part_of EMAP:12013 ! TS26,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12018 -name: TS26,ventral pancreatic duct,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001064 ! ventral pancreatic duct -relationship: part_of EMAP:12017 ! TS26,head,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001064 ! ventral pancreatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12019 -name: TS26,parenchyma,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12017 ! TS26,head,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:1202 -name: TS15,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0013148 ! early midbrain vesicle -relationship: part_of EMAP:1201 ! TS15,diencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0013148 ! early midbrain vesicle -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12020 -name: TS26,uncinate process,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0010373 ! uncinate process of pancreas -relationship: part_of EMAP:12017 ! TS26,head,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010373 ! uncinate process of pancreas -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12021 -name: TS26,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001151 ! tail of pancreas -relationship: part_of EMAP:12013 ! TS26,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12022 -name: TS26,dorsal pancreatic duct,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:12021 ! TS26,tail,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12023 -name: TS26,parenchyma,tail,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12021 ! TS26,tail,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001151 ! tail of pancreas - -[Term] -id: EMAP:12024 -name: TS26,thyroid,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:12012 ! TS26,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12025 -name: TS26,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0001831 ! parotid gland -relationship: part_of EMAP:12003 ! TS26,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001831 ! parotid gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12026 -name: TS26,epithelium,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0003360 ! epithelium of parotid gland -relationship: part_of EMAP:12025 ! TS26,parotid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003360 ! epithelium of parotid gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12027 -name: TS26,mesenchyme,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0003419 ! mesenchyme of parotid -relationship: part_of EMAP:12025 ! TS26,parotid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003419 ! mesenchyme of parotid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12028 -name: TS26,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:12024 ! TS26,thyroid,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12029 -name: TS26,isthmus -namespace: mouse_anatomy_stages -is_a: UBERON:0001609 ! isthmus of thyroid gland -relationship: part_of EMAP:12024 ! TS26,thyroid,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1203 -name: TS15,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:1202 ! TS15,3rd ventricle -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12030 -name: TS26,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001118 ! lobe of thyroid gland -relationship: part_of EMAP:12024 ! TS26,thyroid,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12031 -name: TS26,left,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12030 ! TS26,lobe,thyroid,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001118 ! lobe of thyroid gland - -[Term] -id: EMAP:12032 -name: TS26,right,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12030 ! TS26,lobe,thyroid,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001118 ! lobe of thyroid gland - -[Term] -id: EMAP:12033 -name: TS26,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:12024 ! TS26,thyroid,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12034 -name: TS26,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:12001 ! TS26,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12035 -name: TS26,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0000159 ! anal canal -relationship: part_of EMAP:12034 ! TS26,anal region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000159 ! anal canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12036 -name: TS26,associated mesenchyme,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12035 ! TS26,anal canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12037 -name: TS26,epithelium,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12035 ! TS26,anal canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12038 -name: TS26,lumen,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007158 ! lumen of anal canal -relationship: part_of EMAP:12035 ! TS26,anal canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007158 ! lumen of anal canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12039 -name: TS26,vascular element,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12035 ! TS26,anal canal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:1204 -name: TS15,optic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0002287 ! optic recess of third ventricle -relationship: part_of EMAP:1202 ! TS15,3rd ventricle -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12040 -name: TS26,external sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001367 ! external anal sphincter -relationship: part_of EMAP:12034 ! TS26,anal region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001367 ! external anal sphincter -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12041 -name: TS26,internal sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001244 ! internal anal sphincter -relationship: part_of EMAP:12034 ! TS26,anal region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001244 ! internal anal sphincter -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12042 -name: TS26,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12043 -name: TS26,skeleton,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:12044 -name: TS26,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001685 ! hyoid bone -relationship: part_of EMAP:12043 ! TS26,skeleton,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001685 ! hyoid bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12045 -name: TS26,greater horn,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0003997 ! hyoid bone greater horn -relationship: part_of EMAP:12044 ! TS26,hyoid bone -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003997 ! hyoid bone greater horn -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12046 -name: TS26,lesser horn,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0003998 ! hyoid bone lesser horn -relationship: part_of EMAP:12044 ! TS26,hyoid bone -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003998 ! hyoid bone lesser horn -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12047 -name: TS26,body -namespace: mouse_anatomy_stages -is_a: UBERON:0003999 ! hyoid bone body -relationship: part_of EMAP:12044 ! TS26,hyoid bone -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003999 ! hyoid bone body -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1205 -name: TS15,floor plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003309 ! floor plate of diencephalon -relationship: part_of EMAP:1201 ! TS15,diencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12056 -name: TS26,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0002114 ! duodenum -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002114 ! duodenum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12057 -name: TS26,duodenal papilla -namespace: mouse_anatomy_stages -is_a: UBERON:0004914 ! duodenal papilla -relationship: part_of EMAP:12056 ! TS26,duodenum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004914 ! duodenal papilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12058 -name: TS26,sphincter of Oddi -namespace: mouse_anatomy_stages -is_a: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -relationship: part_of EMAP:12056 ! TS26,duodenum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12059 -name: TS26,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:1206 -name: TS15,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:1201 ! TS15,diencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12060 -name: TS26,associated mesenchyme,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12059 ! TS26,gastro-oesophageal junction -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12061 -name: TS26,epithelium,gastro-oesophageal junction -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12059 ! TS26,gastro-oesophageal junction -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12062 -name: TS26,lumen,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12059 ! TS26,gastro-oesophageal junction -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:12063 -name: TS26,vascular element,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12059 ! TS26,gastro-oesophageal junction -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:12064 -name: TS26,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12065 -name: TS26,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12064 ! TS26,oesophagus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12066 -name: TS26,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12064 ! TS26,oesophagus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12067 -name: TS26,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12064 ! TS26,oesophagus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:12068 -name: TS26,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:12064 ! TS26,oesophagus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12069 -name: TS26,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:12068 ! TS26,mesentery,oesophagus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1207 -name: TS15,pituitary,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:1206 ! TS15,gland,diencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12070 -name: TS26,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12064 ! TS26,oesophagus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:12071 -name: TS26,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12072 -name: TS26,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12073 -name: TS26,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12074 -name: TS26,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12075 -name: TS26,circumvallate papilla,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0000396 ! vallate papilla -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000396 ! vallate papilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12076 -name: TS26,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003357 ! epithelium of tongue -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12077 -name: TS26,filiform papillae,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0002467 ! filiform papilla -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002467 ! filiform papilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12078 -name: TS26,frenulum,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006689 ! frenulum of tongue -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006689 ! frenulum of tongue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12079 -name: TS26,fungiform papillae,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:1208 -name: TS15,infundibular recess of 3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006250 ! infundibular recess of 3rd ventricle -relationship: part_of EMAP:1207 ! TS15,pituitary,gland,diencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006250 ! infundibular recess of 3rd ventricle -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12080 -name: TS26,intermolar eminence,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006360 ! intermolar eminence -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006360 ! intermolar eminence -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12081 -name: TS26,median fibrous septum,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:12082 -name: TS26,mesenchyme,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003416 ! mesenchyme of tongue -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003416 ! mesenchyme of tongue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12083 -name: TS26,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003273 ! skeletal muscle of tongue -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003273 ! skeletal muscle of tongue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12084 -name: TS26,extrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001575 ! extrinsic muscle of tongue -relationship: part_of EMAP:12083 ! TS26,skeletal muscle,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12085 -name: TS26,genioglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001571 ! genioglossus -relationship: part_of EMAP:12084 ! TS26,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001571 ! genioglossus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12086 -name: TS26,hyoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001572 ! hyoglossus muscle -relationship: part_of EMAP:12084 ! TS26,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12087 -name: TS26,palatoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001574 ! palatoglossus muscle -relationship: part_of EMAP:12084 ! TS26,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001574 ! palatoglossus muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12088 -name: TS26,styloglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001573 ! styloglossus -relationship: part_of EMAP:12084 ! TS26,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001573 ! styloglossus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12089 -name: TS26,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001576 ! intrinsic muscle of tongue -relationship: part_of EMAP:12083 ! TS26,skeletal muscle,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1209 -name: TS15,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:1201 ! TS15,diencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12090 -name: TS26,transverse component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12089 ! TS26,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:12091 -name: TS26,vertical component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12089 ! TS26,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:12092 -name: TS26,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:12093 -name: TS26,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12094 -name: TS26,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12093 ! TS26,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12095 -name: TS26,vascular element,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12094 ! TS26,fundus,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12096 -name: TS26,associated mesenchyme,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12094 ! TS26,fundus,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12097 -name: TS26,epithelium,fundus,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12094 ! TS26,fundus,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12098 -name: TS26,lumen,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12094 ! TS26,fundus,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12099 -name: TS26,glandular mucous membrane,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12094 ! TS26,fundus,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:121 -name: TS10,mesoderm,amniotic fold -namespace: mouse_anatomy_stages -relationship: part_of EMAP:119 ! TS10,amniotic fold -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0005971 ! amniotic fold - -[Term] -id: EMAP:1210 -name: TS15,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:1201 ! TS15,diencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12100 -name: TS26,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12093 ! TS26,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12101 -name: TS26,vascular element,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12100 ! TS26,glandular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12102 -name: TS26,associated mesenchyme,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12100 ! TS26,glandular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12103 -name: TS26,epithelium,glandular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12100 ! TS26,glandular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12104 -name: TS26,lumen,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12100 ! TS26,glandular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12105 -name: TS26,glandular mucous membrane,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12100 ! TS26,glandular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12106 -name: TS26,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:12093 ! TS26,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12107 -name: TS26,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:12106 ! TS26,mesentery,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12108 -name: TS26,greater omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0005448 ! greater omentum -relationship: part_of EMAP:12107 ! TS26,dorsal mesogastrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005448 ! greater omentum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12109 -name: TS26,gastro-splenic ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004686 ! gastro-splenic ligament -relationship: part_of EMAP:12108 ! TS26,greater omentum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1211 -name: TS15,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:1201 ! TS15,diencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12110 -name: TS26,lieno-renal ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004687 ! lieno-renal ligament -relationship: part_of EMAP:12108 ! TS26,greater omentum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12111 -name: TS26,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:12106 ! TS26,mesentery,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12112 -name: TS26,falciform ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0001247 ! falciform ligament -relationship: part_of EMAP:12111 ! TS26,ventral mesogastrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12113 -name: TS26,lesser omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0002399 ! lesser omentum -relationship: part_of EMAP:12111 ! TS26,ventral mesogastrium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12114 -name: TS26,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12093 ! TS26,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12115 -name: TS26,associated mesenchyme,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12114 ! TS26,proventricular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12116 -name: TS26,epithelium,proventricular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12114 ! TS26,proventricular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12117 -name: TS26,lumen,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12114 ! TS26,proventricular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12118 -name: TS26,vascular element,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12114 ! TS26,proventricular region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:12119 -name: TS26,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0001166 ! pylorus -relationship: part_of EMAP:12093 ! TS26,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001166 ! pylorus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1212 -name: TS15,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:1200 ! TS15,future forebrain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12120 -name: TS26,associated mesenchyme,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12119 ! TS26,pyloric region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12121 -name: TS26,epithelium,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12119 ! TS26,pyloric region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12122 -name: TS26,lumen,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12119 ! TS26,pyloric region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:12123 -name: TS26,pyloric antrum -namespace: mouse_anatomy_stages -is_a: UBERON:0001165 ! pyloric antrum -relationship: part_of EMAP:12119 ! TS26,pyloric region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12124 -name: TS26,vascular element,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12119 ! TS26,pyloric region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:12125 -name: TS26,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0006654 ! perineal body -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006654 ! perineal body -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12126 -name: TS26,associated mesenchyme,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12125 ! TS26,perineal body -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12127 -name: TS26,muscle,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0004486 ! musculature of perineum -relationship: part_of EMAP:12125 ! TS26,perineal body -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004486 ! musculature of perineum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12128 -name: TS26,vascular element,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12125 ! TS26,perineal body -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:12129 -name: TS26,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0001052 ! rectum -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001052 ! rectum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1213 -name: TS15,telencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1212 ! TS15,telencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:12130 -name: TS26,associated mesenchyme,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12129 ! TS26,rectum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12131 -name: TS26,epithelium,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12129 ! TS26,rectum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12132 -name: TS26,lumen,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12129 ! TS26,rectum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:12133 -name: TS26,mesentery,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003395 ! mesentery of rectum -relationship: part_of EMAP:12129 ! TS26,rectum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003395 ! mesentery of rectum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12134 -name: TS26,dorsal mesentery,mesentery,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12133 ! TS26,mesentery,rectum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003395 ! mesentery of rectum - -[Term] -id: EMAP:12135 -name: TS26,vascular element,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12129 ! TS26,rectum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:12136 -name: TS26,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0002115 ! jejunum -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002115 ! jejunum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12137 -name: TS26,associated mesenchyme,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12136 ! TS26,jejunum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12138 -name: TS26,epithelium,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12136 ! TS26,jejunum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12139 -name: TS26,lumen,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12136 ! TS26,jejunum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002115 ! jejunum - -[Term] -id: EMAP:1214 -name: TS15,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:1213 ! TS15,telencephalic vesicle -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12140 -name: TS26,vascular element,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12136 ! TS26,jejunum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002115 ! jejunum - -[Term] -id: EMAP:12141 -name: TS26,mesentery,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0003398 ! mesentery of jejunum -relationship: part_of EMAP:12136 ! TS26,jejunum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003398 ! mesentery of jejunum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12142 -name: TS26,dorsal mesentery,mesentery,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12141 ! TS26,mesentery,jejunum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003398 ! mesentery of jejunum - -[Term] -id: EMAP:12143 -name: TS26,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0001155 ! colon -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001155 ! colon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12144 -name: TS26,associated mesenchyme,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12143 ! TS26,colon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12145 -name: TS26,epithelium,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12143 ! TS26,colon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12146 -name: TS26,mesentery,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0003396 ! mesentery of colon -relationship: part_of EMAP:12143 ! TS26,colon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003396 ! mesentery of colon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12147 -name: TS26,dorsal mesentery,mesentery,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12146 ! TS26,mesentery,colon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003396 ! mesentery of colon - -[Term] -id: EMAP:12148 -name: TS26,vascular element,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12143 ! TS26,colon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001155 ! colon - -[Term] -id: EMAP:12149 -name: TS26,lumen,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0007159 ! lumen of colon -relationship: part_of EMAP:12143 ! TS26,colon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007159 ! lumen of colon -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1215 -name: TS15,floor plate,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003308 ! floor plate of telencephalon -relationship: part_of EMAP:1212 ! TS15,telencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003308 ! floor plate of telencephalon -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12150 -name: TS26,epiglottis -namespace: mouse_anatomy_stages -is_a: UBERON:0000388 ! epiglottis -relationship: part_of EMAP:12002 ! TS26,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000388 ! epiglottis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12151 -name: TS26,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001710 ! lower jaw region -relationship: part_of EMAP:12002 ! TS26,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12152 -name: TS26,epithelium,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12151 ! TS26,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12153 -name: TS26,lip,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001835 ! lower lip -relationship: part_of EMAP:12151 ! TS26,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001835 ! lower lip -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12154 -name: TS26,skeleton,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003278 ! skeleton of lower jaw -relationship: part_of EMAP:12151 ! TS26,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12155 -name: TS26,mandible -namespace: mouse_anatomy_stages -is_a: UBERON:0001684 ! mandible -relationship: part_of EMAP:12154 ! TS26,skeleton,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001684 ! mandible -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12156 -name: TS26,Meckel's cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0003107 ! Meckel's cartilage -relationship: part_of EMAP:12151 ! TS26,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12157 -name: TS26,mesenchyme,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003324 ! mesenchyme of lower jaw -relationship: part_of EMAP:12151 ! TS26,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003324 ! mesenchyme of lower jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12158 -name: TS26,alveolar sulcus,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12151 ! TS26,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001710 ! lower jaw region - -[Term] -id: EMAP:12159 -name: TS26,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003268 ! tooth of lower jaw -relationship: part_of EMAP:12151 ! TS26,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1216 -name: TS15,lateral wall,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005561 ! telencephalon lateral wall -relationship: part_of EMAP:1212 ! TS15,telencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005561 ! telencephalon lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12160 -name: TS26,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003451 ! lower jaw incisor -relationship: part_of EMAP:12159 ! TS26,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12161 -name: TS26,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:12160 ! TS26,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12162 -name: TS26,dental lamina,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:12161 ! TS26,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12163 -name: TS26,enamel organ,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12161 ! TS26,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:12164 -name: TS26,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005708 ! lower jaw incisor odontogenic papilla -relationship: part_of EMAP:12160 ! TS26,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005708 ! lower jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12165 -name: TS26,dental papilla,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12164 ! TS26,mesenchyme,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005708 ! lower jaw incisor odontogenic papilla - -[Term] -id: EMAP:12166 -name: TS26,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003667 ! lower jaw molar -relationship: part_of EMAP:12159 ! TS26,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12167 -name: TS26,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:12166 ! TS26,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12168 -name: TS26,dental lamina,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:12167 ! TS26,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12169 -name: TS26,enamel organ,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12167 ! TS26,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003236 ! epithelium of lower jaw - -[Term] -id: EMAP:1217 -name: TS15,roof plate,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003300 ! roof plate of telencephalon -relationship: part_of EMAP:1212 ! TS15,telencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003300 ! roof plate of telencephalon -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12170 -name: TS26,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005701 ! lower jaw molar odontogenic papilla -relationship: part_of EMAP:12166 ! TS26,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005701 ! lower jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12171 -name: TS26,dental papilla,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12170 ! TS26,mesenchyme,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005701 ! lower jaw molar odontogenic papilla - -[Term] -id: EMAP:12172 -name: TS26,oral cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000167 ! oral cavity -relationship: part_of EMAP:12002 ! TS26,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12173 -name: TS26,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:12002 ! TS26,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12174 -name: TS26,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001709 ! upper jaw region -relationship: part_of EMAP:12002 ! TS26,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12175 -name: TS26,lip,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001834 ! upper lip -relationship: part_of EMAP:12174 ! TS26,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001834 ! upper lip -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12176 -name: TS26,philtrum -namespace: mouse_anatomy_stages -is_a: UBERON:0005402 ! philtrum -relationship: part_of EMAP:12175 ! TS26,lip,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005402 ! philtrum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12177 -name: TS26,skeleton,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003277 ! skeleton of upper jaw -relationship: part_of EMAP:12174 ! TS26,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12178 -name: TS26,maxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002397 ! maxilla -relationship: part_of EMAP:12177 ! TS26,skeleton,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002397 ! maxilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12179 -name: TS26,mesenchyme,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003323 ! mesenchyme of upper jaw -relationship: part_of EMAP:12174 ! TS26,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003323 ! mesenchyme of upper jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1218 -name: TS15,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1199 ! TS15,future brain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:12180 -name: TS26,alveolar sulcus,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12174 ! TS26,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001709 ! upper jaw region - -[Term] -id: EMAP:12181 -name: TS26,palate -namespace: mouse_anatomy_stages -is_a: UBERON:0001716 ! secondary palate -relationship: part_of EMAP:12174 ! TS26,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001716 ! secondary palate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12182 -name: TS26,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0001733 ! soft palate -relationship: part_of EMAP:12181 ! TS26,palate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001733 ! soft palate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12183 -name: TS26,epithelium,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003358 ! epithelium of soft palate -relationship: part_of EMAP:12182 ! TS26,soft palate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003358 ! epithelium of soft palate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12184 -name: TS26,mesenchyme,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003417 ! mesenchyme of soft palate -relationship: part_of EMAP:12182 ! TS26,soft palate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003417 ! mesenchyme of soft palate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12185 -name: TS26,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003216 ! hard palate -relationship: part_of EMAP:12181 ! TS26,palate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003216 ! hard palate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12186 -name: TS26,epithelium,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003368 ! epithelium of hard palate -relationship: part_of EMAP:12185 ! TS26,hard palate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003368 ! epithelium of hard palate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12187 -name: TS26,mesenchyme,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003424 ! mesenchyme of hard palate -relationship: part_of EMAP:12185 ! TS26,hard palate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003424 ! mesenchyme of hard palate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12188 -name: TS26,naso-palatine canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12185 ! TS26,hard palate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003216 ! hard palate - -[Term] -id: EMAP:1219 -name: TS15,floor plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1218 ! TS15,future midbrain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:12195 -name: TS26,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003267 ! tooth of upper jaw -relationship: part_of EMAP:12174 ! TS26,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003267 ! tooth of upper jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12196 -name: TS26,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003450 ! upper jaw incisor -relationship: part_of EMAP:12195 ! TS26,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12197 -name: TS26,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:12196 ! TS26,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12198 -name: TS26,dental lamina,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:12197 ! TS26,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12199 -name: TS26,enamel organ,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12197 ! TS26,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:122 -name: TS10,cavities -namespace: mouse_anatomy_stages -is_a: UBERON:0012466 ! extraembryonic cavities -relationship: part_of EMAP:118 ! TS10,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0012466 ! extraembryonic cavities -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1220 -name: TS15,lateral wall,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1218 ! TS15,future midbrain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:12200 -name: TS26,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005707 ! upper jaw incisor odontogenic papilla -relationship: part_of EMAP:12196 ! TS26,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005707 ! upper jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12201 -name: TS26,dental papilla,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12200 ! TS26,mesenchyme,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005707 ! upper jaw incisor odontogenic papilla - -[Term] -id: EMAP:12202 -name: TS26,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003666 ! upper jaw molar -relationship: part_of EMAP:12195 ! TS26,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12203 -name: TS26,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:12202 ! TS26,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12204 -name: TS26,dental lamina,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:12203 ! TS26,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12205 -name: TS26,enamel organ,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12203 ! TS26,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003235 ! epithelium of upper jaw - -[Term] -id: EMAP:12206 -name: TS26,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005700 ! upper jaw molar odontogenic papilla -relationship: part_of EMAP:12202 ! TS26,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005700 ! upper jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12207 -name: TS26,dental papilla,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12206 ! TS26,mesenchyme,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005700 ! upper jaw molar odontogenic papilla - -[Term] -id: EMAP:12208 -name: TS26,sublingual caruncle -namespace: mouse_anatomy_stages -is_a: UBERON:0006688 ! sublingual caruncle -relationship: part_of EMAP:12002 ! TS26,oral region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006688 ! sublingual caruncle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12209 -name: TS26,sulcus terminalis,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12074 ! TS26,tongue -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:1221 -name: TS15,mesencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1218 ! TS15,future midbrain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:12210 -name: TS26,skeletal muscle,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003384 ! skeletal muscle of pharynx -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003384 ! skeletal muscle of pharynx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12211 -name: TS26,constrictor muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001569 ! constrictor muscle of pharynx -relationship: part_of EMAP:12210 ! TS26,skeletal muscle,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001569 ! constrictor muscle of pharynx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12212 -name: TS26,inferior,constrictor muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12211 ! TS26,constrictor muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001569 ! constrictor muscle of pharynx - -[Term] -id: EMAP:12213 -name: TS26,superior,constrictor muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0006329 ! superior pharyngeal constrictor -relationship: part_of EMAP:12211 ! TS26,constrictor muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006329 ! superior pharyngeal constrictor -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12214 -name: TS26,gum,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0011602 ! gingiva of lower jaw -relationship: part_of EMAP:12151 ! TS26,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011602 ! gingiva of lower jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12215 -name: TS26,epithelium,gum,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:12214 ! TS26,gum,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003236 ! epithelium of lower jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12216 -name: TS26,mesenchyme,gum,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12214 ! TS26,gum,lower jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0011602 ! gingiva of lower jaw - -[Term] -id: EMAP:12217 -name: TS26,gum,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0011601 ! gingiva of upper jaw -relationship: part_of EMAP:12174 ! TS26,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011601 ! gingiva of upper jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12218 -name: TS26,epithelium,gum,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:12217 ! TS26,gum,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003235 ! epithelium of upper jaw -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12219 -name: TS26,mesenchyme,gum,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12217 ! TS26,gum,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0011601 ! gingiva of upper jaw - -[Term] -id: EMAP:1222 -name: TS15,roof plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1218 ! TS15,future midbrain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:12220 -name: TS26,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:11161 ! TS26,visceral organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12221 -name: TS26,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:12220 ! TS26,liver and biliary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12222 -name: TS26,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:12220 ! TS26,liver and biliary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12223 -name: TS26,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:12220 ! TS26,liver and biliary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12224 -name: TS26,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:12220 ! TS26,liver and biliary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12225 -name: TS26,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:12224 ! TS26,hepatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12226 -name: TS26,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:12224 ! TS26,hepatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12227 -name: TS26,left,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:12226 ! TS26,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12228 -name: TS26,right,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:12226 ! TS26,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12229 -name: TS26,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:12220 ! TS26,liver and biliary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1223 -name: TS15,future rhombencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001892 ! rhombomere -relationship: part_of EMAP:1199 ! TS15,future brain -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12230 -name: TS26,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001113 ! lobe of liver -relationship: part_of EMAP:12229 ! TS26,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001113 ! lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12231 -name: TS26,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001115 ! left lobe of liver -relationship: part_of EMAP:12230 ! TS26,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12232 -name: TS26,bare area,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:12231 ! TS26,left,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12233 -name: TS26,hepatic ducts,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:12231 ! TS26,left,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12234 -name: TS26,hepatic sinusoids,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -relationship: part_of EMAP:12231 ! TS26,left,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12235 -name: TS26,parenchyma,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005222 ! liver left lobe parenchyma -relationship: part_of EMAP:12231 ! TS26,left,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005222 ! liver left lobe parenchyma -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12236 -name: TS26,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001114 ! right lobe of liver -relationship: part_of EMAP:12230 ! TS26,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12237 -name: TS26,bare area,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:12236 ! TS26,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12238 -name: TS26,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001117 ! caudate lobe of liver -relationship: part_of EMAP:12236 ! TS26,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12239 -name: TS26,hepatic sinusoids,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011737 ! caudate lobe hepatic sinusoids -relationship: part_of EMAP:12238 ! TS26,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011737 ! caudate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1224 -name: TS15,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12240 -name: TS26,parenchyma,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010706 ! parenchyma of caudate lobe of liver -relationship: part_of EMAP:12238 ! TS26,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010706 ! parenchyma of caudate lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12241 -name: TS26,hepatic sinusoids,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -relationship: part_of EMAP:12236 ! TS26,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12242 -name: TS26,parenchyma,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005221 ! liver right lobe parenchyma -relationship: part_of EMAP:12236 ! TS26,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005221 ! liver right lobe parenchyma -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12243 -name: TS26,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001116 ! quadrate lobe of liver -relationship: part_of EMAP:12236 ! TS26,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12244 -name: TS26,hepatic sinusoids,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011738 ! quadrate lobe hepatic sinusoids -relationship: part_of EMAP:12243 ! TS26,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011738 ! quadrate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12245 -name: TS26,parenchyma,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010704 ! parenchyma of quadrate lobe of liver -relationship: part_of EMAP:12243 ! TS26,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010704 ! parenchyma of quadrate lobe of liver -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12246 -name: TS26,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001008 ! excretory system -relationship: part_of EMAP:11161 ! TS26,visceral organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001008 ! excretory system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12247 -name: TS26,associated mesenchyme,renal/urinary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12246 ! TS26,renal/urinary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12248 -name: TS26,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0001255 ! urinary bladder -relationship: part_of EMAP:12246 ! TS26,renal/urinary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12249 -name: TS26,fundus region,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0006082 ! fundus of urinary bladder -relationship: part_of EMAP:12248 ! TS26,bladder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1225 -name: TS15,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005499 ! rhombomere 1 -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12250 -name: TS26,trigone region,bladder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12248 ! TS26,bladder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12251 -name: TS26,urachus -namespace: mouse_anatomy_stages -is_a: UBERON:0002068 ! urachus -relationship: part_of EMAP:12248 ! TS26,bladder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002068 ! urachus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12252 -name: TS26,wall,bladder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12248 ! TS26,bladder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12253 -name: TS26,detrusor muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12252 ! TS26,wall,bladder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12254 -name: TS26,mesentery,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0003393 ! mesentery of urinary system -relationship: part_of EMAP:12246 ! TS26,renal/urinary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12255 -name: TS26,urogenital mesentery -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12254 ! TS26,mesentery,renal/urinary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003393 ! mesentery of urinary system - -[Term] -id: EMAP:12256 -name: TS26,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:12246 ! TS26,renal/urinary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12257 -name: TS26,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12256 ! TS26,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12258 -name: TS26,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12256 ! TS26,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12259 -name: TS26,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0006517 ! kidney calyx -relationship: part_of EMAP:12258 ! TS26,drainage component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006517 ! kidney calyx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1226 -name: TS15,floor plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005566 ! rhombomere 1 floor plate -relationship: part_of EMAP:1225 ! TS15,rhombomere 01 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12260 -name: TS26,major,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001226 ! major calyx -relationship: part_of EMAP:12259 ! TS26,calyces,drainage component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001226 ! major calyx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12261 -name: TS26,minor,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001227 ! minor calyx -relationship: part_of EMAP:12259 ! TS26,calyces,drainage component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001227 ! minor calyx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12262 -name: TS26,pelvis,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001224 ! renal pelvis -relationship: part_of EMAP:12258 ! TS26,drainage component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12264 -name: TS26,ureter -namespace: mouse_anatomy_stages -is_a: UBERON:0000056 ! ureter -relationship: part_of EMAP:12258 ! TS26,drainage component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000056 ! ureter -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12265 -name: TS26,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12256 ! TS26,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12266 -name: TS26,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001225 ! cortex of kidney -relationship: part_of EMAP:12265 ! TS26,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12267 -name: TS26,capsule,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0002015 ! kidney capsule -relationship: part_of EMAP:12266 ! TS26,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002015 ! kidney capsule -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12268 -name: TS26,glomeruli,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12266 ! TS26,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12269 -name: TS26,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12266 ! TS26,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000081 ! metanephros - -[Term] -id: EMAP:1227 -name: TS15,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005567 ! rhombomere 1 lateral wall -relationship: part_of EMAP:1225 ! TS15,rhombomere 01 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12270 -name: TS26,stem cells,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12266 ! TS26,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12271 -name: TS26,medullary stroma,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0005211 ! renal medulla interstitium -relationship: part_of EMAP:12265 ! TS26,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005211 ! renal medulla interstitium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12272 -name: TS26,medullary tubules,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12265 ! TS26,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12273 -name: TS26,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:12246 ! TS26,renal/urinary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12275 -name: TS26,Bowman's capsule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12268 ! TS26,glomeruli,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12276 -name: TS26,convoluted tubules,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0006853 ! renal cortex tubule -relationship: part_of EMAP:12269 ! TS26,nephrons,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006853 ! renal cortex tubule -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12277 -name: TS26,female,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000474 ! female reproductive system -relationship: part_of EMAP:11162 ! TS26,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12278 -name: TS26,Mullerian tubercle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000474 ! female reproductive system - -[Term] -id: EMAP:12279 -name: TS26,clitoris -namespace: mouse_anatomy_stages -is_a: UBERON:0006233 ! female genital tubercle -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006233 ! female genital tubercle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1228 -name: TS15,roof plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005568 ! rhombomere 1 roof plate -relationship: part_of EMAP:1225 ! TS15,rhombomere 01 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005568 ! rhombomere 1 roof plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12280 -name: TS26,genital tubercle,female,reproductive system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12281 -name: TS26,labial swelling -namespace: mouse_anatomy_stages -is_a: UBERON:0011755 ! female labial swelling -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011755 ! female labial swelling -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12282 -name: TS26,mesovarium -namespace: mouse_anatomy_stages -is_a: UBERON:0001342 ! mesovarium -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12283 -name: TS26,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0000992 ! female gonad -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000992 ! female gonad -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12284 -name: TS26,germinal epithelium,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:12285 -name: TS26,cystic vesicular appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000474 ! female reproductive system - -[Term] -id: EMAP:12286 -name: TS26,mesenchyme,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12287 -name: TS26,primordial germ cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:12288 -name: TS26,rete ovarii,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0010185 ! rete ovarii -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010185 ! rete ovarii -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12289 -name: TS26,capsule,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1229 -name: TS15,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005569 ! rhombomere 2 -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12290 -name: TS26,germinal cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12291 -name: TS26,ovigerous cords,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12292 -name: TS26,primary oocytes,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12294 -name: TS26,oviduct -namespace: mouse_anatomy_stages -is_a: UBERON:0000993 ! oviduct -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000993 ! oviduct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12295 -name: TS26,uterine horn -namespace: mouse_anatomy_stages -is_a: UBERON:0002247 ! uterine horn -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002247 ! uterine horn -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12296 -name: TS26,vagina -namespace: mouse_anatomy_stages -is_a: UBERON:0000996 ! vagina -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000996 ! vagina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12297 -name: TS26,upper part,vagina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12296 ! TS26,vagina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000996 ! vagina - -[Term] -id: EMAP:12298 -name: TS26,ductus deferens -namespace: mouse_anatomy_stages -is_a: UBERON:0001000 ! vas deferens -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001000 ! vas deferens -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12299 -name: TS26,genital tubercle,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0006261 ! male genital tubercle -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006261 ! male genital tubercle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:123 -name: TS10,amniotic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000301 ! amniotic cavity -relationship: part_of EMAP:122 ! TS10,cavities -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0000301 ! amniotic cavity -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1230 -name: TS15,floor plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005570 ! rhombomere 2 floor plate -relationship: part_of EMAP:1229 ! TS15,rhombomere 02 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12300 -name: TS26,mesorchium -namespace: mouse_anatomy_stages -is_a: UBERON:0011879 ! mesorchium -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12301 -name: TS26,penis -namespace: mouse_anatomy_stages -is_a: UBERON:0000989 ! penis -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000989 ! penis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12302 -name: TS26,glans penis -namespace: mouse_anatomy_stages -is_a: UBERON:0001299 ! glans penis -relationship: part_of EMAP:12301 ! TS26,penis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001299 ! glans penis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12303 -name: TS26,prepuce -namespace: mouse_anatomy_stages -is_a: UBERON:0001332 ! prepuce of penis -relationship: part_of EMAP:12301 ! TS26,penis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001332 ! prepuce of penis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12307 -name: TS26,efferent duct -namespace: mouse_anatomy_stages -is_a: UBERON:0006946 ! efferent duct -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006946 ! efferent duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12309 -name: TS26,urethra -namespace: mouse_anatomy_stages -is_a: UBERON:0001333 ! male urethra -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001333 ! male urethra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1231 -name: TS15,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005571 ! rhombomere 2 lateral wall -relationship: part_of EMAP:1229 ! TS15,rhombomere 02 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12310 -name: TS26,prostatic region,urethra -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12309 ! TS26,urethra -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:12311 -name: TS26,penile region,urethra -namespace: mouse_anatomy_stages -is_a: UBERON:0000989 ! penis -relationship: part_of EMAP:12309 ! TS26,urethra -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000989 ! penis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12312 -name: TS26,distal region,urethra -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12309 ! TS26,urethra -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12313 -name: TS26,urethral plate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12309 ! TS26,urethra -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:12314 -name: TS26,lower part,vagina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12296 ! TS26,vagina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000996 ! vagina - -[Term] -id: EMAP:12315 -name: TS26,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:11161 ! TS26,visceral organ -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12316 -name: TS26,cartilage,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0003406 ! cartilage of respiratory system -relationship: part_of EMAP:12315 ! TS26,respiratory system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003406 ! cartilage of respiratory system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12317 -name: TS26,arytenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001740 ! arytenoid cartilage -relationship: part_of EMAP:12316 ! TS26,cartilage,respiratory system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12318 -name: TS26,cricoid -namespace: mouse_anatomy_stages -is_a: UBERON:0002375 ! cricoid cartilage -relationship: part_of EMAP:12316 ! TS26,cartilage,respiratory system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12319 -name: TS26,laryngeal -namespace: mouse_anatomy_stages -is_a: UBERON:0001739 ! laryngeal cartilage -relationship: part_of EMAP:12316 ! TS26,cartilage,respiratory system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001739 ! laryngeal cartilage -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1232 -name: TS15,roof plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005572 ! rhombomere 2 roof plate -relationship: part_of EMAP:1229 ! TS15,rhombomere 02 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005572 ! rhombomere 2 roof plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12320 -name: TS26,thyroid,cartilage,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001738 ! thyroid cartilage -relationship: part_of EMAP:12316 ! TS26,cartilage,respiratory system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001738 ! thyroid cartilage -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12322 -name: TS26,larynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001737 ! larynx -relationship: part_of EMAP:12315 ! TS26,respiratory system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001737 ! larynx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12323 -name: TS26,mucous membranes -namespace: mouse_anatomy_stages -is_a: UBERON:0001824 ! mucosa of larynx -relationship: part_of EMAP:12322 ! TS26,larynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12324 -name: TS26,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:12315 ! TS26,respiratory system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12325 -name: TS26,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002168 ! left lung -relationship: part_of EMAP:12324 ! TS26,lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002168 ! left lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12326 -name: TS26,associated mesenchyme,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:12325 ! TS26,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12327 -name: TS26,epithelium,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003365 ! epithelium of left lung -relationship: part_of EMAP:12325 ! TS26,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12328 -name: TS26,hilus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004887 ! left lung hilus -relationship: part_of EMAP:12325 ! TS26,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12329 -name: TS26,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003405 ! lobar bronchus of left lung -relationship: part_of EMAP:12325 ! TS26,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1233 -name: TS15,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005507 ! rhombomere 3 -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12330 -name: TS26,associated mesenchyme,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12329 ! TS26,lobar bronchus,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:12331 -name: TS26,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003539 ! left lung bronchiole -relationship: part_of EMAP:12329 ! TS26,lobar bronchus,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003539 ! left lung bronchiole -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12332 -name: TS26,alveolar system,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:12331 ! TS26,bronchiole,lobar bronchus,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12333 -name: TS26,vascular element,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12329 ! TS26,lobar bronchus,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:12334 -name: TS26,vascular element,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009536 ! vascular element of left lung -relationship: part_of EMAP:12325 ! TS26,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12335 -name: TS26,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002167 ! right lung -relationship: part_of EMAP:12324 ! TS26,lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002167 ! right lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12336 -name: TS26,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004890 ! right lung accessory lobe -relationship: part_of EMAP:12335 ! TS26,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12337 -name: TS26,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004896 ! right lung accessory lobe lobar bronchus -relationship: part_of EMAP:12336 ! TS26,accessory lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004896 ! right lung accessory lobe lobar bronchus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12338 -name: TS26,associated mesenchyme,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12337 ! TS26,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:12339 -name: TS26,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005682 ! right lung accessory lobe bronchiole -relationship: part_of EMAP:12337 ! TS26,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005682 ! right lung accessory lobe bronchiole -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1234 -name: TS15,floor plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005573 ! rhombomere 3 floor plate -relationship: part_of EMAP:1233 ! TS15,rhombomere 03 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12340 -name: TS26,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:12339 ! TS26,bronchiole,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12341 -name: TS26,vascular element,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12337 ! TS26,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:12342 -name: TS26,associated mesenchyme,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009603 ! right lung associated mesenchyme -relationship: part_of EMAP:12335 ! TS26,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12343 -name: TS26,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002171 ! lower lobe of right lung -relationship: part_of EMAP:12335 ! TS26,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12344 -name: TS26,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -relationship: part_of EMAP:12343 ! TS26,caudal lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12345 -name: TS26,associated mesenchyme,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12344 ! TS26,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:12346 -name: TS26,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0012059 ! right lung lower lobe bronchiole -relationship: part_of EMAP:12344 ! TS26,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0012059 ! right lung lower lobe bronchiole -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12347 -name: TS26,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:12346 ! TS26,bronchiole,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12348 -name: TS26,vascular element,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12344 ! TS26,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:12349 -name: TS26,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002170 ! upper lobe of right lung -relationship: part_of EMAP:12335 ! TS26,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1235 -name: TS15,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005574 ! rhombomere 3 lateral wall -relationship: part_of EMAP:1233 ! TS15,rhombomere 03 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12350 -name: TS26,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -relationship: part_of EMAP:12349 ! TS26,cranial lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12351 -name: TS26,associated mesenchyme,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12350 ! TS26,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:12352 -name: TS26,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005681 ! right lung upper lobe bronchiole -relationship: part_of EMAP:12350 ! TS26,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005681 ! right lung upper lobe bronchiole -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12353 -name: TS26,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:12352 ! TS26,bronchiole,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12354 -name: TS26,vascular element,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12350 ! TS26,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:12355 -name: TS26,epithelium,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003364 ! epithelium of right lung -relationship: part_of EMAP:12335 ! TS26,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12356 -name: TS26,hilus,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004888 ! right lung hilus -relationship: part_of EMAP:12335 ! TS26,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12357 -name: TS26,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002174 ! middle lobe of right lung -relationship: part_of EMAP:12335 ! TS26,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12358 -name: TS26,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002183 ! lobar bronchus -relationship: part_of EMAP:12357 ! TS26,middle lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12359 -name: TS26,associated mesenchyme,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12358 ! TS26,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:1236 -name: TS15,roof plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005575 ! rhombomere 3 roof plate -relationship: part_of EMAP:1233 ! TS15,rhombomere 03 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12360 -name: TS26,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0012068 ! right lung middle lobe bronchiole -relationship: part_of EMAP:12358 ! TS26,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0012068 ! right lung middle lobe bronchiole -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12361 -name: TS26,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:12360 ! TS26,bronchiole,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12362 -name: TS26,vascular element,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12358 ! TS26,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:12363 -name: TS26,vascular element,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009537 ! vascular element of right lung -relationship: part_of EMAP:12335 ! TS26,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12364 -name: TS26,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:12315 ! TS26,respiratory system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12365 -name: TS26,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:12364 ! TS26,respiratory tract -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12366 -name: TS26,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:12365 ! TS26,lower,respiratory tract -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12367 -name: TS26,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:12366 ! TS26,main bronchus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12368 -name: TS26,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:12366 ! TS26,main bronchus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12369 -name: TS26,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12366 ! TS26,main bronchus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:1237 -name: TS15,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005511 ! rhombomere 4 -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12370 -name: TS26,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:12365 ! TS26,lower,respiratory tract -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12371 -name: TS26,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:12370 ! TS26,trachea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12372 -name: TS26,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:12370 ! TS26,trachea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12373 -name: TS26,cartilaginous ring,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003604 ! trachea cartilage -relationship: part_of EMAP:12370 ! TS26,trachea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003604 ! trachea cartilage -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12374 -name: TS26,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12370 ! TS26,trachea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:12375 -name: TS26,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:12370 ! TS26,trachea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12376 -name: TS26,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12375 ! TS26,carina tracheae -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:12377 -name: TS26,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:12375 ! TS26,carina tracheae -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12378 -name: TS26,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12375 ! TS26,carina tracheae -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:12379 -name: TS26,upper,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001557 ! upper respiratory tract -relationship: part_of EMAP:12364 ! TS26,respiratory tract -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1238 -name: TS15,floor plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005576 ! rhombomere 4 floor plate -relationship: part_of EMAP:1237 ! TS15,rhombomere 04 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12380 -name: TS26,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001728 ! nasopharynx -relationship: part_of EMAP:12379 ! TS26,upper,respiratory tract -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12381 -name: TS26,associated mesenchyme,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12380 ! TS26,nasopharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:12382 -name: TS26,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:11159 ! TS26,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12383 -name: TS26,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:12382 ! TS26,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12384 -name: TS26,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:12383 ! TS26,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12385 -name: TS26,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002413 ! cervical vertebra -relationship: part_of EMAP:12384 ! TS26,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12386 -name: TS26,C1,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12385 ! TS26,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:12387 -name: TS26,cruciate ligament,C1,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0011106 ! cruciate ligament of atlas -relationship: part_of EMAP:12386 ! TS26,C1,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011106 ! cruciate ligament of atlas -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12388 -name: TS26,C2,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12385 ! TS26,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:1239 -name: TS15,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005577 ! rhombomere 4 lateral wall -relationship: part_of EMAP:1237 ! TS15,rhombomere 04 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12391 -name: TS26,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:12383 ! TS26,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12392 -name: TS26,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002414 ! lumbar vertebra -relationship: part_of EMAP:12391 ! TS26,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002414 ! lumbar vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12393 -name: TS26,nucleus pulposus,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12383 ! TS26,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:12394 -name: TS26,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:12383 ! TS26,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12395 -name: TS26,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0001094 ! sacral vertebra -relationship: part_of EMAP:12394 ! TS26,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001094 ! sacral vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12396 -name: TS26,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:12383 ! TS26,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:124 -name: TS10,ectoplacental cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0008851 ! ectoplacental cavity -relationship: part_of EMAP:122 ! TS10,cavities -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0008851 ! ectoplacental cavity -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1240 -name: TS15,roof plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005578 ! rhombomere 4 roof plate -relationship: part_of EMAP:1237 ! TS15,rhombomere 04 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12401 -name: TS26,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002347 ! thoracic vertebra -relationship: part_of EMAP:12396 ! TS26,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002347 ! thoracic vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12402 -name: TS26,cranium -namespace: mouse_anatomy_stages -is_a: UBERON:0003129 ! skull -relationship: part_of EMAP:12382 ! TS26,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003129 ! skull -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12403 -name: TS26,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0002241 ! chondrocranium -relationship: part_of EMAP:12402 ! TS26,cranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12404 -name: TS26,basioccipital bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001692 ! basioccipital bone -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12405 -name: TS26,basisphenoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0006428 ! basisphenoid bone -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12406 -name: TS26,carotid canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006668 ! carotid canal -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006668 ! carotid canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12407 -name: TS26,exoccipital bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001693 ! exoccipital bone -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1241 -name: TS15,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005515 ! rhombomere 5 -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12410 -name: TS26,foramen ovale,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001698 ! foramen ovale of skull -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001698 ! foramen ovale of skull -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12411 -name: TS26,foramen rotundum -namespace: mouse_anatomy_stages -is_a: UBERON:0005446 ! foramen rotundum -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005446 ! foramen rotundum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12412 -name: TS26,hypoglossal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006682 ! hypoglossal canal -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006682 ! hypoglossal canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12413 -name: TS26,jugular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0005456 ! jugular foramen -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005456 ! jugular foramen -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12414 -name: TS26,sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001677 ! sphenoid bone -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001677 ! sphenoid bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12415 -name: TS26,sphenoidal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12414 ! TS26,sphenoid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001677 ! sphenoid bone - -[Term] -id: EMAP:12416 -name: TS26,supraoccipital cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0011162 ! supraoccipital cartilaginous condensation -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011162 ! supraoccipital cartilaginous condensation -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12417 -name: TS26,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12418 -name: TS26,petrous part,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001694 ! petrous part of temporal bone -relationship: part_of EMAP:12417 ! TS26,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12419 -name: TS26,tempero-mandibular joint -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12418 ! TS26,petrous part,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1242 -name: TS15,floor plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005579 ! rhombomere 5 floor plate -relationship: part_of EMAP:1241 ! TS15,rhombomere 05 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12420 -name: TS26,zygomatic process -namespace: mouse_anatomy_stages -is_a: UBERON:0004655 ! zygomatic process of temporal bone -relationship: part_of EMAP:12417 ! TS26,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004655 ! zygomatic process of temporal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12421 -name: TS26,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0004339 ! vault of skull -relationship: part_of EMAP:12402 ! TS26,cranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12422 -name: TS26,frontal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0000209 ! tetrapod frontal bone -relationship: part_of EMAP:12421 ! TS26,vault of skull -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000209 ! tetrapod frontal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12423 -name: TS26,inter-parietal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0002229 ! interparietal bone -relationship: part_of EMAP:12421 ! TS26,vault of skull -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002229 ! interparietal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12424 -name: TS26,parietal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0000210 ! tetrapod parietal bone -relationship: part_of EMAP:12421 ! TS26,vault of skull -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000210 ! tetrapod parietal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12425 -name: TS26,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:12421 ! TS26,vault of skull -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12426 -name: TS26,squamous part,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001695 ! squamous part of temporal bone -relationship: part_of EMAP:12425 ! TS26,temporal bone,vault of skull -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12427 -name: TS26,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0011156 ! facial skeleton -relationship: part_of EMAP:12402 ! TS26,cranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12428 -name: TS26,ethmoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001679 ! ethmoid bone -relationship: part_of EMAP:12427 ! TS26,viscerocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001679 ! ethmoid bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12429 -name: TS26,facial bones -namespace: mouse_anatomy_stages -is_a: UBERON:0003462 ! facial bone -relationship: part_of EMAP:12427 ! TS26,viscerocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003462 ! facial bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1243 -name: TS15,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005580 ! rhombomere 5 lateral wall -relationship: part_of EMAP:1241 ! TS15,rhombomere 05 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12430 -name: TS26,optic foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006269 ! optic foramen -relationship: part_of EMAP:12427 ! TS26,viscerocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006269 ! optic foramen -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12431 -name: TS26,orbital fissure,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0006271 ! orbital fissure -relationship: part_of EMAP:12427 ! TS26,viscerocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006271 ! orbital fissure -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12432 -name: TS26,superior,orbital fissure,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0005480 ! superior orbital fissure -relationship: part_of EMAP:12431 ! TS26,orbital fissure,viscerocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005480 ! superior orbital fissure -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12433 -name: TS26,orbito-sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0002478 ! orbitosphenoid -relationship: part_of EMAP:12427 ! TS26,viscerocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12434 -name: TS26,turbinate,viscerocranium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12427 ! TS26,viscerocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12435 -name: TS26,pectoral girdle and thoracic body wall,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007831 ! skeleton of pectoral girdle -relationship: part_of EMAP:12382 ! TS26,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007831 ! skeleton of pectoral girdle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12436 -name: TS26,clavicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001105 ! clavicle -relationship: part_of EMAP:12435 ! TS26,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001105 ! clavicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12437 -name: TS26,costo-vertebral joint -namespace: mouse_anatomy_stages -is_a: UBERON:0002292 ! costovertebral joint -relationship: part_of EMAP:12435 ! TS26,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002292 ! costovertebral joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12438 -name: TS26,scapula -namespace: mouse_anatomy_stages -is_a: UBERON:0001124 ! pectoral limb scapula -relationship: part_of EMAP:12435 ! TS26,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001124 ! pectoral limb scapula -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12439 -name: TS26,sternum -namespace: mouse_anatomy_stages -is_a: UBERON:0000975 ! sternum -relationship: part_of EMAP:12435 ! TS26,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000975 ! sternum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1244 -name: TS15,roof plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005581 ! rhombomere 5 roof plate -relationship: part_of EMAP:1241 ! TS15,rhombomere 05 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12440 -name: TS26,manubrium sterni -namespace: mouse_anatomy_stages -is_a: UBERON:0002205 ! manubrium of sternum -relationship: part_of EMAP:12439 ! TS26,sternum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002205 ! manubrium of sternum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12441 -name: TS26,sternebral bone -namespace: mouse_anatomy_stages -is_a: UBERON:0002208 ! sternebra -relationship: part_of EMAP:12439 ! TS26,sternum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002208 ! sternebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12442 -name: TS26,xiphisternum -namespace: mouse_anatomy_stages -is_a: UBERON:0006430 ! xiphoid cartilage -relationship: part_of EMAP:12439 ! TS26,sternum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006430 ! xiphoid cartilage -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12443 -name: TS26,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007832 ! skeleton of pelvic girdle -relationship: part_of EMAP:12382 ! TS26,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007832 ! skeleton of pelvic girdle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12444 -name: TS26,acetabular region,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12443 ! TS26,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:12445 -name: TS26,synovial cavity of hip bone -namespace: mouse_anatomy_stages -is_a: UBERON:0007618 ! synovial cavity of hip joint -relationship: part_of EMAP:12444 ! TS26,acetabular region,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007618 ! synovial cavity of hip joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12446 -name: TS26,iliac bone -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12443 ! TS26,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:12447 -name: TS26,ischial bone -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12443 ! TS26,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:12448 -name: TS26,pubic bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001275 ! pubis -relationship: part_of EMAP:12443 ! TS26,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001275 ! pubis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12449 -name: TS26,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:11159 ! TS26,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1245 -name: TS15,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005519 ! rhombomere 6 -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12450 -name: TS26,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12449 ! TS26,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:12451 -name: TS26,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:12450 ! TS26,mesenchyme,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12452 -name: TS26,unsegmented mesenchyme,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12451 ! TS26,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:12453 -name: TS26,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12449 ! TS26,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:12454 -name: TS26,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:12453 ! TS26,nervous system,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12455 -name: TS26,spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:12454 ! TS26,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12456 -name: TS26,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:12453 ! TS26,nervous system,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12457 -name: TS26,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003338 ! ganglion of peripheral nervous system -relationship: part_of EMAP:12456 ! TS26,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003338 ! ganglion of peripheral nervous system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12458 -name: TS26,dorsal root ganglion,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:12457 ! TS26,ganglion,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12459 -name: TS26,segmental spinal nerve,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12456 ! TS26,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1246 -name: TS15,floor plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005582 ! rhombomere 6 floor plate -relationship: part_of EMAP:1245 ! TS15,rhombomere 06 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12460 -name: TS26,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12449 ! TS26,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:12461 -name: TS26,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:12460 ! TS26,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12462 -name: TS26,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001095 ! caudal vertebra -relationship: part_of EMAP:12461 ! TS26,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12463 -name: TS26,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11159 ! TS26,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:12464 -name: TS26,anterior abdominal wall -namespace: mouse_anatomy_stages -is_a: UBERON:0006635 ! anterior abdominal wall -relationship: part_of EMAP:12463 ! TS26,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006635 ! anterior abdominal wall -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12465 -name: TS26,skeletal muscle,anterior abdominal wall -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12464 ! TS26,anterior abdominal wall -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006635 ! anterior abdominal wall - -[Term] -id: EMAP:12466 -name: TS26,external oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005442 ! external oblique -relationship: part_of EMAP:12465 ! TS26,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005442 ! external oblique -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12467 -name: TS26,internal oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005454 ! internal oblique -relationship: part_of EMAP:12465 ! TS26,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005454 ! internal oblique -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12468 -name: TS26,rectus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0002382 ! rectus abdominis muscle -relationship: part_of EMAP:12465 ! TS26,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12469 -name: TS26,transversus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0001221 ! transversus abdominis muscle -relationship: part_of EMAP:12465 ! TS26,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1247 -name: TS15,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005583 ! rhombomere 6 lateral wall -relationship: part_of EMAP:1245 ! TS15,rhombomere 06 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12470 -name: TS26,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:12463 ! TS26,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12471 -name: TS26,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:12470 ! TS26,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12472 -name: TS26,erector spinae -namespace: mouse_anatomy_stages -is_a: UBERON:0002462 ! erector spinae muscle group -relationship: part_of EMAP:12471 ! TS26,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12474 -name: TS26,ilio-psoas -namespace: mouse_anatomy_stages -is_a: UBERON:0001999 ! iliopsoas -relationship: part_of EMAP:12471 ! TS26,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001999 ! iliopsoas -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12476 -name: TS26,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12471 ! TS26,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:12477 -name: TS26,external layer,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12476 ! TS26,intercostal,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:12478 -name: TS26,internal layer,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12476 ! TS26,intercostal,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:12479 -name: TS26,psoas major -namespace: mouse_anatomy_stages -is_a: UBERON:0001298 ! psoas major muscle -relationship: part_of EMAP:12471 ! TS26,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001298 ! psoas major muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1248 -name: TS15,roof plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005584 ! rhombomere 6 roof plate -relationship: part_of EMAP:1245 ! TS15,rhombomere 06 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12480 -name: TS26,psoas minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001372 ! psoas minor muscle -relationship: part_of EMAP:12471 ! TS26,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001372 ! psoas minor muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12481 -name: TS26,quadratus lumborum -namespace: mouse_anatomy_stages -is_a: UBERON:0001220 ! quadratus lumborum -relationship: part_of EMAP:12471 ! TS26,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001220 ! quadratus lumborum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12482 -name: TS26,serratus anterior -namespace: mouse_anatomy_stages -is_a: UBERON:0001125 ! serratus anterior -relationship: part_of EMAP:12471 ! TS26,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001125 ! serratus anterior -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12483 -name: TS26,cranial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0002376 ! muscle of head -relationship: part_of EMAP:12463 ! TS26,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002376 ! muscle of head -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12484 -name: TS26,skeletal muscle,cranial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12483 ! TS26,cranial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002376 ! muscle of head - -[Term] -id: EMAP:12485 -name: TS26,masseter -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12484 ! TS26,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12486 -name: TS26,myelohyoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12484 ! TS26,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12487 -name: TS26,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12484 ! TS26,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12488 -name: TS26,lateral,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12487 ! TS26,pterygoid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12489 -name: TS26,medial,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12487 ! TS26,pterygoid -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1249 -name: TS15,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005523 ! rhombomere 7 -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12490 -name: TS26,sterno-mastoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12484 ! TS26,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12491 -name: TS26,temporalis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12484 ! TS26,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12492 -name: TS26,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12463 ! TS26,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:12493 -name: TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12492 ! TS26,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:12494 -name: TS26,deltoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001476 ! deltoid -relationship: part_of EMAP:12493 ! TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001476 ! deltoid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12495 -name: TS26,infraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001477 ! infraspinatus muscle -relationship: part_of EMAP:12493 ! TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001477 ! infraspinatus muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12496 -name: TS26,latissimus dorsi -namespace: mouse_anatomy_stages -is_a: UBERON:0001112 ! latissimus dorsi muscle -relationship: part_of EMAP:12493 ! TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12497 -name: TS26,pectoralis major -namespace: mouse_anatomy_stages -is_a: UBERON:0002381 ! pectoralis major -relationship: part_of EMAP:12493 ! TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12498 -name: TS26,pectoralis minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001100 ! pectoralis minor -relationship: part_of EMAP:12493 ! TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12499 -name: TS26,subscapularis -namespace: mouse_anatomy_stages -is_a: UBERON:0001129 ! subscapularis muscle -relationship: part_of EMAP:12493 ! TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:125 -name: TS10,exocoelomic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003888 ! extraembryonic coelom -relationship: part_of EMAP:122 ! TS10,cavities -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0003888 ! extraembryonic coelom -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1250 -name: TS15,floor plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005585 ! rhombomere 7 floor plate -relationship: part_of EMAP:1249 ! TS15,rhombomere 07 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12500 -name: TS26,supraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0002383 ! supraspinatus muscle -relationship: part_of EMAP:12493 ! TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12501 -name: TS26,trapezius -namespace: mouse_anatomy_stages -is_a: UBERON:0002380 ! trapezius -relationship: part_of EMAP:12493 ! TS26,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002380 ! trapezius -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12502 -name: TS26,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12463 ! TS26,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:12503 -name: TS26,skeletal muscle,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -is_a: UBERON:0003271 ! skeletal muscle of pelvic girdle -relationship: part_of EMAP:12502 ! TS26,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003271 ! skeletal muscle of pelvic girdle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12504 -name: TS26,gluteus maximus -namespace: mouse_anatomy_stages -is_a: UBERON:0001370 ! gluteus maximus -relationship: part_of EMAP:12503 ! TS26,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001370 ! gluteus maximus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1251 -name: TS15,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005586 ! rhombomere 7 lateral wall -relationship: part_of EMAP:1249 ! TS15,rhombomere 07 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12511 -name: TS26,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12512 -name: TS26,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:12511 ! TS26,extraembryonic component -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12513 -name: TS26,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:12512 ! TS26,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12514 -name: TS26,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:12513 ! TS26,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12515 -name: TS26,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12514 ! TS26,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:12516 -name: TS26,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12512 ! TS26,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:12517 -name: TS26,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:12516 ! TS26,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12518 -name: TS26,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12517 ! TS26,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:12519 -name: TS23,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:1252 -name: TS15,roof plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005587 ! rhombomere 7 roof plate -relationship: part_of EMAP:1249 ! TS15,rhombomere 07 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12520 -name: TS24,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12521 -name: TS25,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:10124 ! TS25,heart -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12522 -name: TS26,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:11484 ! TS26,heart -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12523 -name: TS23,parietal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:12519 ! TS23,pericardium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12527 -name: TS23,visceral pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:12519 ! TS23,pericardium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:1253 -name: TS15,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005527 ! rhombomere 8 -relationship: part_of EMAP:1223 ! TS15,future rhombencephalon -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12531 -name: TS23,cavity,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7173 ! TS23,pleural cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002402 ! pleural cavity - -[Term] -id: EMAP:12532 -name: TS23,epithelium,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001951 ! epithelium of nasopharynx -relationship: part_of EMAP:8336 ! TS23,nasopharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12533 -name: TS24,epithelium,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001951 ! epithelium of nasopharynx -relationship: part_of EMAP:9660 ! TS24,nasopharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12534 -name: TS25,epithelium,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001951 ! epithelium of nasopharynx -relationship: part_of EMAP:11020 ! TS25,nasopharynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12535 -name: TS26,epithelium,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001951 ! epithelium of nasopharynx -relationship: part_of EMAP:12380 ! TS26,nasopharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12536 -name: TS22,splenic primordium,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0006293 ! spleen primordium -relationship: part_of EMAP:6538 ! TS22,dorsal mesogastrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006293 ! spleen primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:12537 -name: TS22,falx cerebri -namespace: mouse_anatomy_stages -is_a: UBERON:0006059 ! falx cerebri -relationship: part_of EMAP:6096 ! TS22,dura mater,meninges,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006059 ! falx cerebri -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:12538 -name: TS24,mantle layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9110 ! TS24,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:12539 -name: TS25,mantle layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10470 ! TS25,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:1254 -name: TS15,floor plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005588 ! rhombomere 8 floor plate -relationship: part_of EMAP:1253 ! TS15,rhombomere 08 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12540 -name: TS26,mantle layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11830 ! TS26,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:12541 -name: TS24,sclera -namespace: mouse_anatomy_stages -is_a: UBERON:0001773 ! sclera -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001773 ! sclera -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12542 -name: TS25,sclera -namespace: mouse_anatomy_stages -is_a: UBERON:0001773 ! sclera -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001773 ! sclera -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12543 -name: TS26,sclera -namespace: mouse_anatomy_stages -is_a: UBERON:0001773 ! sclera -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001773 ! sclera -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12544 -name: TS24,Peyer's patches -namespace: mouse_anatomy_stages -is_a: UBERON:0001211 ! Peyer's patch -relationship: part_of EMAP:8817 ! TS24,lymphatic system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001211 ! Peyer's patch -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12545 -name: TS25,Peyer's patches -namespace: mouse_anatomy_stages -is_a: UBERON:0001211 ! Peyer's patch -relationship: part_of EMAP:10177 ! TS25,lymphatic system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001211 ! Peyer's patch -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12546 -name: TS26,Peyer's patches -namespace: mouse_anatomy_stages -is_a: UBERON:0001211 ! Peyer's patch -relationship: part_of EMAP:11537 ! TS26,lymphatic system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001211 ! Peyer's patch -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12547 -name: TS24,fibrous pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002359 ! fibrous pericardium -relationship: part_of EMAP:12520 ! TS24,pericardium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002359 ! fibrous pericardium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12548 -name: TS25,fibrous pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002359 ! fibrous pericardium -relationship: part_of EMAP:12521 ! TS25,pericardium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002359 ! fibrous pericardium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12549 -name: TS26,fibrous pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002359 ! fibrous pericardium -relationship: part_of EMAP:12522 ! TS26,pericardium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002359 ! fibrous pericardium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1255 -name: TS15,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005589 ! rhombomere 8 lateral wall -relationship: part_of EMAP:1253 ! TS15,rhombomere 08 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12550 -name: TS24,serosal pericardium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12520 ! TS24,pericardium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002407 ! pericardium - -[Term] -id: EMAP:12551 -name: TS25,serosal pericardium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12521 ! TS25,pericardium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002407 ! pericardium - -[Term] -id: EMAP:12552 -name: TS26,serosal pericardium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12522 ! TS26,pericardium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002407 ! pericardium - -[Term] -id: EMAP:12553 -name: TS24,parietal,serosal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:12550 ! TS24,serosal pericardium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12554 -name: TS25,parietal,serosal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:12551 ! TS25,serosal pericardium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12555 -name: TS26,parietal,serosal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:12552 ! TS26,serosal pericardium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12556 -name: TS24,visceral,serosal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:12550 ! TS24,serosal pericardium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12557 -name: TS25,visceral,serosal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:12551 ! TS25,serosal pericardium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12558 -name: TS26,visceral,serosal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:12552 ! TS26,serosal pericardium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12559 -name: TS24,premaxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002244 ! premaxilla -relationship: part_of EMAP:9457 ! TS24,skeleton,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1256 -name: TS15,roof plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005590 ! rhombomere 8 roof plate -relationship: part_of EMAP:1253 ! TS15,rhombomere 08 -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12560 -name: TS25,premaxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002244 ! premaxilla -relationship: part_of EMAP:10817 ! TS25,skeleton,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12561 -name: TS26,premaxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002244 ! premaxilla -relationship: part_of EMAP:12177 ! TS26,skeleton,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12562 -name: TS24,incisive canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006672 ! incisive canal -relationship: part_of EMAP:9465 ! TS24,hard palate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006672 ! incisive canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12563 -name: TS25,incisive canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006672 ! incisive canal -relationship: part_of EMAP:10825 ! TS25,hard palate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006672 ! incisive canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12564 -name: TS26,incisive canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006672 ! incisive canal -relationship: part_of EMAP:12185 ! TS26,hard palate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006672 ! incisive canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12565 -name: TS24,hypochordal arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9666 ! TS24,C1,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:12566 -name: TS25,hypochordal arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11026 ! TS25,C1,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:12567 -name: TS26,hypochordal arch,C1,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12386 ! TS26,C1,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:12568 -name: TS25,stalk,pineal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0011768 ! pineal gland stalk -relationship: part_of EMAP:10281 ! TS25,pineal gland -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011768 ! pineal gland stalk -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12569 -name: TS26,stalk,pineal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0011768 ! pineal gland stalk -relationship: part_of EMAP:11641 ! TS26,pineal gland -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011768 ! pineal gland stalk -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1257 -name: TS15,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:1198 ! TS15,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12570 -name: TS25,dentate gyrus -namespace: mouse_anatomy_stages -is_a: UBERON:0001885 ! dentate gyrus of hippocampal formation -relationship: part_of EMAP:10311 ! TS25,corpus striatum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001885 ! dentate gyrus of hippocampal formation -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12571 -name: TS26,dentate gyrus -namespace: mouse_anatomy_stages -is_a: UBERON:0001885 ! dentate gyrus of hippocampal formation -relationship: part_of EMAP:11671 ! TS26,corpus striatum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001885 ! dentate gyrus of hippocampal formation -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12572 -name: TS25,anterior commissure -namespace: mouse_anatomy_stages -is_a: UBERON:0000935 ! anterior commissure -relationship: part_of EMAP:10273 ! TS25,3rd ventricle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12573 -name: TS26,anterior commissure -namespace: mouse_anatomy_stages -is_a: UBERON:0000935 ! anterior commissure -relationship: part_of EMAP:11633 ! TS26,3rd ventricle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12574 -name: TS25,hippocampus,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0001954 ! Ammon's horn -relationship: part_of EMAP:10304 ! TS25,cerebral cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12575 -name: TS26,hippocampus,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0001954 ! Ammon's horn -relationship: part_of EMAP:11664 ! TS26,cerebral cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12576 -name: TS25,mantle layer,hippocampus,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12574 ! TS25,hippocampus,cerebral cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001954 ! Ammon's horn - -[Term] -id: EMAP:12577 -name: TS26,mantle layer,hippocampus,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12575 ! TS26,hippocampus,cerebral cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001954 ! Ammon's horn - -[Term] -id: EMAP:12578 -name: TS25,marginal layer,hippocampus,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12574 ! TS25,hippocampus,cerebral cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001954 ! Ammon's horn - -[Term] -id: EMAP:12579 -name: TS26,marginal layer,hippocampus,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12575 ! TS26,hippocampus,cerebral cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001954 ! Ammon's horn - -[Term] -id: EMAP:1258 -name: TS15,caudal neuropore -namespace: mouse_anatomy_stages -is_a: UBERON:0005071 ! posterior neuropore -relationship: part_of EMAP:1257 ! TS15,future spinal cord -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005071 ! posterior neuropore -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12580 -name: TS25,rest of cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10304 ! TS25,cerebral cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:12581 -name: TS26,rest of cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11664 ! TS26,cerebral cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:12582 -name: TS25,ventricular layer,hippocampus,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12574 ! TS25,hippocampus,cerebral cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001954 ! Ammon's horn - -[Term] -id: EMAP:12583 -name: TS26,ventricular layer,hippocampus,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12575 ! TS26,hippocampus,cerebral cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001954 ! Ammon's horn - -[Term] -id: EMAP:12584 -name: TS25,mantle layer,rest of cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12580 ! TS25,rest of cerebral cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:12585 -name: TS26,mantle layer,rest of cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12581 ! TS26,rest of cerebral cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:12586 -name: TS25,marginal layer,rest of cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12580 ! TS25,rest of cerebral cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:12587 -name: TS26,marginal layer,rest of cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12581 ! TS26,rest of cerebral cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:12588 -name: TS25,ventricular layer,rest of cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12580 ! TS25,rest of cerebral cortex -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:12589 -name: TS26,ventricular layer,rest of cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12581 ! TS26,rest of cerebral cortex -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:1259 -name: TS15,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:1257 ! TS15,future spinal cord -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12590 -name: TS25,dorsal part,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10376 ! TS25,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:12591 -name: TS26,dorsal part,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11736 ! TS26,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:12592 -name: TS25,mantle layer,dorsal part,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12590 ! TS25,dorsal part,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:12593 -name: TS26,mantle layer,dorsal part,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12591 ! TS26,dorsal part,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:12594 -name: TS25,marginal layer,dorsal part,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12590 ! TS25,dorsal part,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:12595 -name: TS26,marginal layer,dorsal part,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12591 ! TS26,dorsal part,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:12596 -name: TS25,ventricular layer,dorsal part,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12590 ! TS25,dorsal part,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:12597 -name: TS26,ventricular layer,dorsal part,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12591 ! TS26,dorsal part,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:12598 -name: TS25,tectum,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002314 ! midbrain tectum -relationship: part_of EMAP:10413 ! TS25,roof plate,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12599 -name: TS26,tectum,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002314 ! midbrain tectum -relationship: part_of EMAP:11773 ! TS26,roof plate,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:126 -name: TS10,extraembryonic component of the proamniotic cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:122 ! TS10,cavities -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0012466 ! extraembryonic cavities - -[Term] -id: EMAP:1260 -name: TS15,floor plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003306 ! floor plate of neural tube -relationship: part_of EMAP:1259 ! TS15,neural tube,future spinal cord -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12600 -name: TS25,rest of roof plate,roof plate,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10413 ! TS25,roof plate,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003299 ! roof plate of midbrain - -[Term] -id: EMAP:12601 -name: TS26,rest of roof plate,roof plate,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11773 ! TS26,roof plate,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003299 ! roof plate of midbrain - -[Term] -id: EMAP:12602 -name: TS21,subarachnoid space,meninges,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4984 ! TS21,meninges,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003290 ! meninx of diencephalon - -[Term] -id: EMAP:12603 -name: TS22,subarachnoid space,meninges,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6066 ! TS22,meninges,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003290 ! meninx of diencephalon - -[Term] -id: EMAP:12604 -name: TS23,subarachnoid space,meninges,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7526 ! TS23,meninges,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003290 ! meninx of diencephalon - -[Term] -id: EMAP:12605 -name: TS24,subarachnoid space,meninges,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8933 ! TS24,meninges,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003290 ! meninx of diencephalon - -[Term] -id: EMAP:12606 -name: TS25,subarachnoid space,meninges,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10293 ! TS25,meninges,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003290 ! meninx of diencephalon - -[Term] -id: EMAP:12607 -name: TS26,subarachnoid space,meninges,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11653 ! TS26,meninges,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003290 ! meninx of diencephalon - -[Term] -id: EMAP:12608 -name: TS21,subarachnoid space,meninges,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5010 ! TS21,meninges,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003289 ! meninx of telencephalon - -[Term] -id: EMAP:12609 -name: TS22,subarachnoid space,meninges,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6094 ! TS22,meninges,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003289 ! meninx of telencephalon - -[Term] -id: EMAP:1261 -name: TS15,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1259 ! TS15,neural tube,future spinal cord -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001049 ! neural tube - -[Term] -id: EMAP:12610 -name: TS23,subarachnoid space,meninges,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7559 ! TS23,meninges,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003289 ! meninx of telencephalon - -[Term] -id: EMAP:12611 -name: TS24,subarachnoid space,meninges,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8973 ! TS24,meninges,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003289 ! meninx of telencephalon - -[Term] -id: EMAP:12612 -name: TS25,subarachnoid space,meninges,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10333 ! TS25,meninges,telencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003289 ! meninx of telencephalon - -[Term] -id: EMAP:12613 -name: TS26,subarachnoid space,meninges,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11693 ! TS26,meninges,telencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003289 ! meninx of telencephalon - -[Term] -id: EMAP:12614 -name: TS21,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005217 ! midbrain subarachnoid space -relationship: part_of EMAP:5060 ! TS21,meninges,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005217 ! midbrain subarachnoid space -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:12615 -name: TS22,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005217 ! midbrain subarachnoid space -relationship: part_of EMAP:6148 ! TS22,meninges,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005217 ! midbrain subarachnoid space -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:12616 -name: TS23,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005217 ! midbrain subarachnoid space -relationship: part_of EMAP:7625 ! TS23,meninges,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005217 ! midbrain subarachnoid space -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12617 -name: TS24,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005217 ! midbrain subarachnoid space -relationship: part_of EMAP:9043 ! TS24,meninges,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005217 ! midbrain subarachnoid space -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12618 -name: TS25,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005217 ! midbrain subarachnoid space -relationship: part_of EMAP:10403 ! TS25,meninges,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005217 ! midbrain subarachnoid space -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12619 -name: TS26,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005217 ! midbrain subarachnoid space -relationship: part_of EMAP:11763 ! TS26,meninges,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005217 ! midbrain subarachnoid space -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1262 -name: TS15,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003842 ! neural tube lumen -relationship: part_of EMAP:1259 ! TS15,neural tube,future spinal cord -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12620 -name: TS25,basal cistern,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0004047 ! basal cistern -relationship: part_of EMAP:10370 ! TS25,subarachnoid space,meninges,hindbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004047 ! basal cistern -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12621 -name: TS26,basal cistern,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0004047 ! basal cistern -relationship: part_of EMAP:11730 ! TS26,subarachnoid space,meninges,hindbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004047 ! basal cistern -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12622 -name: TS25,cisterna chiasmatica,subarachnoid space,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002898 ! chiasmatic cistern -relationship: part_of EMAP:12606 ! TS25,subarachnoid space,meninges,diencephalon -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002898 ! chiasmatic cistern -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12623 -name: TS26,cisterna chiasmatica,subarachnoid space,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002898 ! chiasmatic cistern -relationship: part_of EMAP:12607 ! TS26,subarachnoid space,meninges,diencephalon -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002898 ! chiasmatic cistern -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12626 -name: TS25,cavernous,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003712 ! cavernous sinus -relationship: part_of EMAP:10183 ! TS25,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003712 ! cavernous sinus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12627 -name: TS26,cavernous,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003712 ! cavernous sinus -relationship: part_of EMAP:11543 ! TS26,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003712 ! cavernous sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12628 -name: TS25,sigmoid,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005475 ! sigmoid sinus -relationship: part_of EMAP:10183 ! TS25,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005475 ! sigmoid sinus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12629 -name: TS26,sigmoid,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005475 ! sigmoid sinus -relationship: part_of EMAP:11543 ! TS26,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005475 ! sigmoid sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1263 -name: TS15,neural luminal occlusion,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1262 ! TS15,neural lumen,neural tube,future spinal cord -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0003842 ! neural tube lumen - -[Term] -id: EMAP:12630 -name: TS24,inferior sagittal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0007152 ! inferior sagittal sinus -relationship: part_of EMAP:8823 ! TS24,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007152 ! inferior sagittal sinus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12631 -name: TS25,inferior sagittal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0007152 ! inferior sagittal sinus -relationship: part_of EMAP:10183 ! TS25,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007152 ! inferior sagittal sinus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12632 -name: TS26,inferior sagittal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0007152 ! inferior sagittal sinus -relationship: part_of EMAP:11543 ! TS26,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007152 ! inferior sagittal sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12633 -name: TS24,superior sagittal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009968 ! primitive superior sagittal sinus -relationship: part_of EMAP:8823 ! TS24,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009968 ! primitive superior sagittal sinus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12634 -name: TS25,superior sagittal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009968 ! primitive superior sagittal sinus -relationship: part_of EMAP:10183 ! TS25,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009968 ! primitive superior sagittal sinus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12635 -name: TS26,superior sagittal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009968 ! primitive superior sagittal sinus -relationship: part_of EMAP:11543 ! TS26,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0009968 ! primitive superior sagittal sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12636 -name: TS25,organ of Corti -namespace: mouse_anatomy_stages -is_a: UBERON:0002227 ! spiral organ of cochlea -relationship: part_of EMAP:10541 ! TS25,cochlea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002227 ! spiral organ of cochlea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12637 -name: TS26,organ of Corti -namespace: mouse_anatomy_stages -is_a: UBERON:0002227 ! spiral organ of cochlea -relationship: part_of EMAP:11901 ! TS26,cochlea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002227 ! spiral organ of cochlea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12638 -name: TS25,tympanic membrane primodium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10515 ! TS25,external ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001691 ! external ear - -[Term] -id: EMAP:12639 -name: TS26,tympanic membrane primodium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11875 ! TS26,external ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001691 ! external ear - -[Term] -id: EMAP:1264 -name: TS15,roof plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003298 ! roof plate of neural tube -relationship: part_of EMAP:1259 ! TS15,neural tube,future spinal cord -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003298 ! roof plate of neural tube -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12640 -name: TS25,endothelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001986 ! endothelium -relationship: part_of EMAP:12638 ! TS25,tympanic membrane primodium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001986 ! endothelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12641 -name: TS26,endothelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001986 ! endothelium -relationship: part_of EMAP:12639 ! TS26,tympanic membrane primodium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001986 ! endothelium -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12642 -name: TS25,epithelium,tympanic membrane primodium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12638 ! TS25,tympanic membrane primodium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001691 ! external ear - -[Term] -id: EMAP:12643 -name: TS26,epithelium,tympanic membrane primodium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12639 ! TS26,tympanic membrane primodium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001691 ! external ear - -[Term] -id: EMAP:12644 -name: TS25,ciliary body -namespace: mouse_anatomy_stages -is_a: UBERON:0001775 ! ciliary body -relationship: part_of EMAP:10606 ! TS25,retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001775 ! ciliary body -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12645 -name: TS26,ciliary body -namespace: mouse_anatomy_stages -is_a: UBERON:0001775 ! ciliary body -relationship: part_of EMAP:11966 ! TS26,retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001775 ! ciliary body -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12646 -name: TS23,skeletal muscle,mesenchyme,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003385 ! skeletal muscle of mesenchyme -relationship: part_of EMAP:7203 ! TS23,mesenchyme,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003385 ! skeletal muscle of mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:1265 -name: TS15,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:1198 ! TS15,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12650 -name: TS23,biceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001507 ! biceps brachii -relationship: part_of EMAP:12646 ! TS23,skeletal muscle,mesenchyme,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001507 ! biceps brachii -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12654 -name: TS23,brachialis -namespace: mouse_anatomy_stages -is_a: UBERON:0001506 ! brachialis muscle -relationship: part_of EMAP:12646 ! TS23,skeletal muscle,mesenchyme,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001506 ! brachialis muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12658 -name: TS23,teres major -namespace: mouse_anatomy_stages -is_a: UBERON:0001478 ! teres major muscle -relationship: part_of EMAP:12646 ! TS23,skeletal muscle,mesenchyme,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001478 ! teres major muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:1266 -name: TS15,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:1265 ! TS15,ganglion,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12662 -name: TS23,triceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001509 ! triceps brachii -relationship: part_of EMAP:12646 ! TS23,skeletal muscle,mesenchyme,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001509 ! triceps brachii -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12664 -name: TS23,skeletal muscle,mesenchyme,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003385 ! skeletal muscle of mesenchyme -relationship: part_of EMAP:7370 ! TS23,mesenchyme,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003385 ! skeletal muscle of mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12668 -name: TS23,hamstring -namespace: mouse_anatomy_stages -is_a: UBERON:0002463 ! hamstring muscle -relationship: part_of EMAP:12664 ! TS23,skeletal muscle,mesenchyme,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002463 ! hamstring muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:1267 -name: TS15,facio-acoustic VII-VIII preganglion complex -namespace: mouse_anatomy_stages -is_a: UBERON:0006232 ! facio-acoustic VII-VIII preganglion complex -relationship: part_of EMAP:1266 ! TS15,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006232 ! facio-acoustic VII-VIII preganglion complex -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12672 -name: TS23,quadriceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001377 ! quadriceps femoris -relationship: part_of EMAP:12664 ! TS23,skeletal muscle,mesenchyme,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001377 ! quadriceps femoris -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12676 -name: TS20,choroid plexus,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4202 ! TS20,roof,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:12677 -name: TS21,choroid plexus,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5035 ! TS21,roof,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:12678 -name: TS22,choroid plexus,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6119 ! TS22,roof,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:12679 -name: TS23,choroid plexus,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7586 ! TS23,roof,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:1268 -name: TS15,glossopharyngeal IX preganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0006243 ! glossopharyngeal IX preganglion -relationship: part_of EMAP:1266 ! TS15,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006243 ! glossopharyngeal IX preganglion -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12680 -name: TS24,choroid plexus,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9004 ! TS24,roof,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:12681 -name: TS25,choroid plexus,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10364 ! TS25,roof,medulla oblongata -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:12682 -name: TS26,choroid plexus,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11724 ! TS26,roof,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:12683 -name: TS24,middle,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001990 ! middle cervical ganglion -relationship: part_of EMAP:9130 ! TS24,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12684 -name: TS25,middle,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001990 ! middle cervical ganglion -relationship: part_of EMAP:10490 ! TS25,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12685 -name: TS26,middle,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001990 ! middle cervical ganglion -relationship: part_of EMAP:11850 ! TS26,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1269 -name: TS15,glossopharyngeal-vagus IX-X preganglion complex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1266 ! TS15,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001714 ! cranial ganglion - -[Term] -id: EMAP:12692 -name: TS21,choroid,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001776 ! choroid -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001776 ! choroid -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:12693 -name: TS22,choroid,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001776 ! choroid -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001776 ! choroid -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:12694 -name: TS23,choroid,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001776 ! choroid -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001776 ! choroid -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12695 -name: TS24,choroid,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001776 ! choroid -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001776 ! choroid -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12696 -name: TS25,choroid,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001776 ! choroid -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001776 ! choroid -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12697 -name: TS26,choroid,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001776 ! choroid -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001776 ! choroid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12698 -name: TS24,epithelium,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9336 ! TS24,duodenum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12699 -name: TS25,epithelium,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:10696 ! TS25,duodenum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:127 -name: TS10,within amniotic fold,cavities -namespace: mouse_anatomy_stages -relationship: part_of EMAP:122 ! TS10,cavities -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0012466 ! extraembryonic cavities - -[Term] -id: EMAP:1270 -name: TS15,trigeminal V preganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0006304 ! trigeminal V preganglion -relationship: part_of EMAP:1266 ! TS15,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006304 ! trigeminal V preganglion -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12700 -name: TS26,epithelium,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:12056 ! TS26,duodenum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12701 -name: TS24,associated mesenchyme,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9336 ! TS24,duodenum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12702 -name: TS25,associated mesenchyme,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10696 ! TS25,duodenum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12703 -name: TS26,associated mesenchyme,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12056 ! TS26,duodenum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12704 -name: TS24,lumen,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9336 ! TS24,duodenum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002114 ! duodenum - -[Term] -id: EMAP:12705 -name: TS25,lumen,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10696 ! TS25,duodenum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002114 ! duodenum - -[Term] -id: EMAP:12706 -name: TS26,lumen,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12056 ! TS26,duodenum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002114 ! duodenum - -[Term] -id: EMAP:12707 -name: TS24,mesentery,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0003397 ! mesentery of duodenum -relationship: part_of EMAP:9336 ! TS24,duodenum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003397 ! mesentery of duodenum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12708 -name: TS25,mesentery,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0003397 ! mesentery of duodenum -relationship: part_of EMAP:10696 ! TS25,duodenum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003397 ! mesentery of duodenum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12709 -name: TS26,mesentery,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0003397 ! mesentery of duodenum -relationship: part_of EMAP:12056 ! TS26,duodenum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003397 ! mesentery of duodenum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1271 -name: TS15,vagus X preganglion -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1266 ! TS15,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001714 ! cranial ganglion - -[Term] -id: EMAP:12710 -name: TS24,mesoduodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:12707 ! TS24,mesentery,duodenum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12711 -name: TS25,mesoduodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:12708 ! TS25,mesentery,duodenum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12712 -name: TS26,mesoduodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:12709 ! TS26,mesentery,duodenum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12713 -name: TS24,vascular element,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9336 ! TS24,duodenum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002114 ! duodenum - -[Term] -id: EMAP:12714 -name: TS25,vascular element,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10696 ! TS25,duodenum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002114 ! duodenum - -[Term] -id: EMAP:12715 -name: TS26,vascular element,duodenum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12056 ! TS26,duodenum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002114 ! duodenum - -[Term] -id: EMAP:12716 -name: TS24,mesentery,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9339 ! TS24,gastro-oesophageal junction -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:12717 -name: TS25,mesentery,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10699 ! TS25,gastro-oesophageal junction -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:12718 -name: TS26,mesentery,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12059 ! TS26,gastro-oesophageal junction -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:12719 -name: TS24,suspensory ligament of ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0006649 ! suspensory ligament of ovary -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006649 ! suspensory ligament of ovary -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1272 -name: TS15,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:1197 ! TS15,nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12720 -name: TS25,suspensory ligament of ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0006649 ! suspensory ligament of ovary -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006649 ! suspensory ligament of ovary -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12721 -name: TS26,suspensory ligament of ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0006649 ! suspensory ligament of ovary -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006649 ! suspensory ligament of ovary -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12722 -name: TS24,appendix epididymis -namespace: mouse_anatomy_stages -is_a: UBERON:0006641 ! appendix epididymis -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006641 ! appendix epididymis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12723 -name: TS25,appendix epididymis -namespace: mouse_anatomy_stages -is_a: UBERON:0006641 ! appendix epididymis -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006641 ! appendix epididymis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12724 -name: TS26,appendix epididymis -namespace: mouse_anatomy_stages -is_a: UBERON:0006641 ! appendix epididymis -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006641 ! appendix epididymis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12725 -name: TS24,appendix testis -namespace: mouse_anatomy_stages -is_a: UBERON:0006651 ! appendix testis -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006651 ! appendix testis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12726 -name: TS25,appendix testis -namespace: mouse_anatomy_stages -is_a: UBERON:0006651 ! appendix testis -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006651 ! appendix testis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12727 -name: TS26,appendix testis -namespace: mouse_anatomy_stages -is_a: UBERON:0006651 ! appendix testis -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006651 ! appendix testis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12728 -name: TS24,ejaculatory duct -namespace: mouse_anatomy_stages -is_a: UBERON:0000999 ! ejaculatory duct -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000999 ! ejaculatory duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12729 -name: TS25,ejaculatory duct -namespace: mouse_anatomy_stages -is_a: UBERON:0000999 ! ejaculatory duct -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000999 ! ejaculatory duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1273 -name: TS15,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:1272 ! TS15,peripheral nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12730 -name: TS26,ejaculatory duct -namespace: mouse_anatomy_stages -is_a: UBERON:0000999 ! ejaculatory duct -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000999 ! ejaculatory duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12731 -name: TS23,gubernaculum -namespace: mouse_anatomy_stages -is_a: UBERON:0008843 ! gubernaculum testis -relationship: part_of EMAP:8257 ! TS23,male,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0008843 ! gubernaculum testis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12732 -name: TS24,gubernaculum -namespace: mouse_anatomy_stages -is_a: UBERON:0008843 ! gubernaculum testis -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0008843 ! gubernaculum testis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12733 -name: TS25,gubernaculum -namespace: mouse_anatomy_stages -is_a: UBERON:0008843 ! gubernaculum testis -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0008843 ! gubernaculum testis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12734 -name: TS26,gubernaculum -namespace: mouse_anatomy_stages -is_a: UBERON:0008843 ! gubernaculum testis -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0008843 ! gubernaculum testis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12735 -name: TS24,suspensory ligament of testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12736 -name: TS25,suspensory ligament of testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12737 -name: TS26,suspensory ligament of testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12738 -name: TS23,aditus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8283 ! TS23,larynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001737 ! larynx - -[Term] -id: EMAP:12739 -name: TS24,aditus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9602 ! TS24,larynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001737 ! larynx - -[Term] -id: EMAP:1274 -name: TS15,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1273 ! TS15,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:12740 -name: TS25,aditus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10962 ! TS25,larynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001737 ! larynx - -[Term] -id: EMAP:12741 -name: TS26,aditus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12322 ! TS26,larynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001737 ! larynx - -[Term] -id: EMAP:12742 -name: TS23,cartilaginous ring,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0001102 ! cartilage of main bronchus -relationship: part_of EMAP:8322 ! TS23,main bronchus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001102 ! cartilage of main bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12743 -name: TS24,cartilaginous ring,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0001102 ! cartilage of main bronchus -relationship: part_of EMAP:9646 ! TS24,main bronchus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001102 ! cartilage of main bronchus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12744 -name: TS25,cartilaginous ring,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0001102 ! cartilage of main bronchus -relationship: part_of EMAP:11006 ! TS25,main bronchus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001102 ! cartilage of main bronchus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12745 -name: TS26,cartilaginous ring,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0001102 ! cartilage of main bronchus -relationship: part_of EMAP:12366 ! TS26,main bronchus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001102 ! cartilage of main bronchus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1275 -name: TS15,dorsal root ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:1274 ! TS15,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12754 -name: TS23,caudate-putamen -namespace: mouse_anatomy_stages -is_a: UBERON:0005383 ! caudate-putamen -relationship: part_of EMAP:7545 ! TS23,caudate nucleus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005383 ! caudate-putamen -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12755 -name: TS24,caudate-putamen -namespace: mouse_anatomy_stages -is_a: UBERON:0005383 ! caudate-putamen -relationship: part_of EMAP:8952 ! TS24,caudate nucleus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005383 ! caudate-putamen -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12756 -name: TS25,caudate-putamen -namespace: mouse_anatomy_stages -is_a: UBERON:0005383 ! caudate-putamen -relationship: part_of EMAP:10312 ! TS25,caudate nucleus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005383 ! caudate-putamen -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12757 -name: TS26,caudate-putamen -namespace: mouse_anatomy_stages -is_a: UBERON:0005383 ! caudate-putamen -relationship: part_of EMAP:11672 ! TS26,caudate nucleus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005383 ! caudate-putamen -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12758 -name: TS23,rib -namespace: mouse_anatomy_stages -is_a: UBERON:0002228 ! rib -relationship: part_of EMAP:8351 ! TS23,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002228 ! rib -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12759 -name: TS24,rib -namespace: mouse_anatomy_stages -is_a: UBERON:0002228 ! rib -relationship: part_of EMAP:9676 ! TS24,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002228 ! rib -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1276 -name: TS15,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:1196 ! TS15,organ system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12760 -name: TS25,rib -namespace: mouse_anatomy_stages -is_a: UBERON:0002228 ! rib -relationship: part_of EMAP:11036 ! TS25,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002228 ! rib -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12761 -name: TS26,rib -namespace: mouse_anatomy_stages -is_a: UBERON:0002228 ! rib -relationship: part_of EMAP:12396 ! TS26,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002228 ! rib -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12762 -name: TS24,lumbar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006636 ! lumbar artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006636 ! lumbar artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12763 -name: TS25,lumbar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006636 ! lumbar artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006636 ! lumbar artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12764 -name: TS26,lumbar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006636 ! lumbar artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006636 ! lumbar artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12765 -name: TS24,subcostal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001561 ! subcostal artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001561 ! subcostal artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12766 -name: TS25,subcostal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001561 ! subcostal artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001561 ! subcostal artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12767 -name: TS26,subcostal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001561 ! subcostal artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001561 ! subcostal artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12768 -name: TS21,rest of upper lip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5469 ! TS21,lip,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001834 ! upper lip - -[Term] -id: EMAP:12769 -name: TS22,rest of upper lip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6616 ! TS22,lip,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001834 ! upper lip - -[Term] -id: EMAP:1277 -name: TS15,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:1276 ! TS15,sensory organ -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12770 -name: TS23,rest of upper lip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8165 ! TS23,lip,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001834 ! upper lip - -[Term] -id: EMAP:12771 -name: TS24,rest of upper lip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9455 ! TS24,lip,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001834 ! upper lip - -[Term] -id: EMAP:12772 -name: TS25,rest of upper lip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10815 ! TS25,lip,upper jaw -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001834 ! upper lip - -[Term] -id: EMAP:12773 -name: TS26,rest of upper lip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12175 ! TS26,lip,upper jaw -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001834 ! upper lip - -[Term] -id: EMAP:12774 -name: TS22,left,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:6647 ! TS22,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:12775 -name: TS23,left,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:8196 ! TS23,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12776 -name: TS24,left,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:9505 ! TS24,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12777 -name: TS25,left,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:10865 ! TS25,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12778 -name: TS26,left,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:12225 ! TS26,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12779 -name: TS22,right,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:6647 ! TS22,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:1278 -name: TS15,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:1277 ! TS15,ear -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12780 -name: TS23,right,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:8196 ! TS23,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12781 -name: TS24,right,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:9505 ! TS24,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12782 -name: TS25,right,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:10865 ! TS25,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12783 -name: TS26,right,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:12225 ! TS26,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12784 -name: TS22,common,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001175 ! common hepatic duct -relationship: part_of EMAP:6647 ! TS22,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001175 ! common hepatic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:12785 -name: TS23,common,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001175 ! common hepatic duct -relationship: part_of EMAP:8196 ! TS23,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001175 ! common hepatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12786 -name: TS24,common,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001175 ! common hepatic duct -relationship: part_of EMAP:9505 ! TS24,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001175 ! common hepatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12787 -name: TS25,common,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001175 ! common hepatic duct -relationship: part_of EMAP:10865 ! TS25,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001175 ! common hepatic duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12788 -name: TS26,common,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001175 ! common hepatic duct -relationship: part_of EMAP:12225 ! TS26,extrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001175 ! common hepatic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12789 -name: TS24,elbow joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001490 ! elbow joint -relationship: part_of EMAP:8487 ! TS24,elbow -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001490 ! elbow joint -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1279 -name: TS15,otic pit -namespace: mouse_anatomy_stages -is_a: UBERON:0006273 ! otic pit -relationship: part_of EMAP:1278 ! TS15,inner ear -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006273 ! otic pit -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12790 -name: TS25,elbow joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001490 ! elbow joint -relationship: part_of EMAP:9847 ! TS25,elbow -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001490 ! elbow joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12791 -name: TS26,elbow joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001490 ! elbow joint -relationship: part_of EMAP:11207 ! TS26,elbow -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001490 ! elbow joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12792 -name: TS24,radius -namespace: mouse_anatomy_stages -is_a: UBERON:0001423 ! radius bone -relationship: part_of EMAP:8494 ! TS24,forearm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001423 ! radius bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12793 -name: TS25,radius -namespace: mouse_anatomy_stages -is_a: UBERON:0001423 ! radius bone -relationship: part_of EMAP:9854 ! TS25,forearm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001423 ! radius bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12794 -name: TS26,radius -namespace: mouse_anatomy_stages -is_a: UBERON:0001423 ! radius bone -relationship: part_of EMAP:11214 ! TS26,forearm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001423 ! radius bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12795 -name: TS24,ulna -namespace: mouse_anatomy_stages -is_a: UBERON:0001424 ! ulna -relationship: part_of EMAP:8494 ! TS24,forearm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001424 ! ulna -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12796 -name: TS25,ulna -namespace: mouse_anatomy_stages -is_a: UBERON:0001424 ! ulna -relationship: part_of EMAP:9854 ! TS25,forearm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001424 ! ulna -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12797 -name: TS26,ulna -namespace: mouse_anatomy_stages -is_a: UBERON:0001424 ! ulna -relationship: part_of EMAP:11214 ! TS26,forearm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001424 ! ulna -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12798 -name: TS24,shoulder joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001470 ! glenohumeral joint -relationship: part_of EMAP:8502 ! TS24,shoulder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001470 ! glenohumeral joint -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12799 -name: TS25,shoulder joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001470 ! glenohumeral joint -relationship: part_of EMAP:9862 ! TS25,shoulder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001470 ! glenohumeral joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:128 -name: TS10,yolk sac cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005251 ! yolk sac cavity -relationship: part_of EMAP:122 ! TS10,cavities -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0005251 ! yolk sac cavity -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1280 -name: TS15,associated mesenchyme,otic pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1279 ! TS15,otic pit -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006273 ! otic pit - -[Term] -id: EMAP:12800 -name: TS26,shoulder joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001470 ! glenohumeral joint -relationship: part_of EMAP:11222 ! TS26,shoulder -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001470 ! glenohumeral joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12801 -name: TS24,humerus -namespace: mouse_anatomy_stages -is_a: UBERON:0000976 ! humerus -relationship: part_of EMAP:8509 ! TS24,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000976 ! humerus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12802 -name: TS24,skeletal muscle,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003272 ! skeletal muscle of arm -relationship: part_of EMAP:8509 ! TS24,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003272 ! skeletal muscle of arm -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12803 -name: TS25,skeletal muscle,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003272 ! skeletal muscle of arm -relationship: part_of EMAP:9869 ! TS25,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003272 ! skeletal muscle of arm -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12804 -name: TS26,skeletal muscle,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003272 ! skeletal muscle of arm -relationship: part_of EMAP:11229 ! TS26,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003272 ! skeletal muscle of arm -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12805 -name: TS24,biceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001507 ! biceps brachii -relationship: part_of EMAP:12802 ! TS24,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001507 ! biceps brachii -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12806 -name: TS25,biceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001507 ! biceps brachii -relationship: part_of EMAP:12803 ! TS25,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001507 ! biceps brachii -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12807 -name: TS26,biceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001507 ! biceps brachii -relationship: part_of EMAP:12804 ! TS26,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001507 ! biceps brachii -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12808 -name: TS24,brachialis -namespace: mouse_anatomy_stages -is_a: UBERON:0001506 ! brachialis muscle -relationship: part_of EMAP:12802 ! TS24,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001506 ! brachialis muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12809 -name: TS25,brachialis -namespace: mouse_anatomy_stages -is_a: UBERON:0001506 ! brachialis muscle -relationship: part_of EMAP:12803 ! TS25,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001506 ! brachialis muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1281 -name: TS15,epithelium,otic pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1279 ! TS15,otic pit -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006273 ! otic pit - -[Term] -id: EMAP:12810 -name: TS26,brachialis -namespace: mouse_anatomy_stages -is_a: UBERON:0001506 ! brachialis muscle -relationship: part_of EMAP:12804 ! TS26,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001506 ! brachialis muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12811 -name: TS24,teres major -namespace: mouse_anatomy_stages -is_a: UBERON:0001478 ! teres major muscle -relationship: part_of EMAP:12802 ! TS24,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001478 ! teres major muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12812 -name: TS25,teres major -namespace: mouse_anatomy_stages -is_a: UBERON:0001478 ! teres major muscle -relationship: part_of EMAP:12803 ! TS25,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001478 ! teres major muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12813 -name: TS26,teres major -namespace: mouse_anatomy_stages -is_a: UBERON:0001478 ! teres major muscle -relationship: part_of EMAP:12804 ! TS26,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001478 ! teres major muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12814 -name: TS24,triceps -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12802 ! TS24,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003272 ! skeletal muscle of arm - -[Term] -id: EMAP:12815 -name: TS25,triceps -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12803 ! TS25,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003272 ! skeletal muscle of arm - -[Term] -id: EMAP:12816 -name: TS26,triceps -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12804 ! TS26,skeletal muscle,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003272 ! skeletal muscle of arm - -[Term] -id: EMAP:12817 -name: TS24,metacarpus,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003645 ! metacarpal bone of digit 1 -relationship: part_of EMAP:8523 ! TS24,digit 1,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003645 ! metacarpal bone of digit 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12818 -name: TS25,metacarpus,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003645 ! metacarpal bone of digit 1 -relationship: part_of EMAP:9883 ! TS25,digit 1,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003645 ! metacarpal bone of digit 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12819 -name: TS26,metacarpus,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003645 ! metacarpal bone of digit 1 -relationship: part_of EMAP:11243 ! TS26,digit 1,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003645 ! metacarpal bone of digit 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1282 -name: TS15,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0003051 ! ear vesicle -relationship: part_of EMAP:1278 ! TS15,inner ear -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12820 -name: TS24,phalanx,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003620 ! manual digit 1 phalanx -relationship: part_of EMAP:8523 ! TS24,digit 1,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003620 ! manual digit 1 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12821 -name: TS25,phalanx,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003620 ! manual digit 1 phalanx -relationship: part_of EMAP:9883 ! TS25,digit 1,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003620 ! manual digit 1 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12822 -name: TS26,phalanx,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003620 ! manual digit 1 phalanx -relationship: part_of EMAP:11243 ! TS26,digit 1,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003620 ! manual digit 1 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12823 -name: TS24,metacarpus,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003646 ! metacarpal bone of digit 2 -relationship: part_of EMAP:8531 ! TS24,digit 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003646 ! metacarpal bone of digit 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12824 -name: TS25,metacarpus,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003646 ! metacarpal bone of digit 2 -relationship: part_of EMAP:9891 ! TS25,digit 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003646 ! metacarpal bone of digit 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12825 -name: TS26,metacarpus,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003646 ! metacarpal bone of digit 2 -relationship: part_of EMAP:11251 ! TS26,digit 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003646 ! metacarpal bone of digit 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12826 -name: TS24,phalanx,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003636 ! manual digit 2 phalanx -relationship: part_of EMAP:8531 ! TS24,digit 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003636 ! manual digit 2 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12827 -name: TS25,phalanx,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003636 ! manual digit 2 phalanx -relationship: part_of EMAP:9891 ! TS25,digit 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003636 ! manual digit 2 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12828 -name: TS26,phalanx,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003636 ! manual digit 2 phalanx -relationship: part_of EMAP:11251 ! TS26,digit 2,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003636 ! manual digit 2 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12829 -name: TS24,metacarpus,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003647 ! metacarpal bone of digit 3 -relationship: part_of EMAP:8539 ! TS24,digit 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003647 ! metacarpal bone of digit 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1283 -name: TS15,associated mesenchyme,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0009500 ! associated mesenchyme of otocyst -relationship: part_of EMAP:1282 ! TS15,otocyst -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009500 ! associated mesenchyme of otocyst -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12830 -name: TS25,metacarpus,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003647 ! metacarpal bone of digit 3 -relationship: part_of EMAP:9899 ! TS25,digit 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003647 ! metacarpal bone of digit 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12831 -name: TS26,metacarpus,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003647 ! metacarpal bone of digit 3 -relationship: part_of EMAP:11259 ! TS26,digit 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003647 ! metacarpal bone of digit 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12832 -name: TS24,phalanx,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003637 ! manual digit 3 phalanx -relationship: part_of EMAP:8539 ! TS24,digit 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003637 ! manual digit 3 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12833 -name: TS25,phalanx,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003637 ! manual digit 3 phalanx -relationship: part_of EMAP:9899 ! TS25,digit 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003637 ! manual digit 3 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12834 -name: TS26,phalanx,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003637 ! manual digit 3 phalanx -relationship: part_of EMAP:11259 ! TS26,digit 3,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003637 ! manual digit 3 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12835 -name: TS24,metacarpus,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003648 ! metacarpal bone of digit 4 -relationship: part_of EMAP:8547 ! TS24,digit 4,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003648 ! metacarpal bone of digit 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12836 -name: TS25,metacarpus,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003648 ! metacarpal bone of digit 4 -relationship: part_of EMAP:9907 ! TS25,digit 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003648 ! metacarpal bone of digit 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12837 -name: TS26,metacarpus,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003648 ! metacarpal bone of digit 4 -relationship: part_of EMAP:11267 ! TS26,digit 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003648 ! metacarpal bone of digit 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12838 -name: TS24,phalanx,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003638 ! manual digit 4 phalanx -relationship: part_of EMAP:8547 ! TS24,digit 4,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003638 ! manual digit 4 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12839 -name: TS25,phalanx,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003638 ! manual digit 4 phalanx -relationship: part_of EMAP:9907 ! TS25,digit 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003638 ! manual digit 4 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1284 -name: TS15,epithelium,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0005641 ! otocyst epithelium -relationship: part_of EMAP:1282 ! TS15,otocyst -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005641 ! otocyst epithelium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12840 -name: TS26,phalanx,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003638 ! manual digit 4 phalanx -relationship: part_of EMAP:11267 ! TS26,digit 4,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003638 ! manual digit 4 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12841 -name: TS24,metacarpus,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003649 ! metacarpal bone of digit 5 -relationship: part_of EMAP:8555 ! TS24,digit 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003649 ! metacarpal bone of digit 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12842 -name: TS25,metacarpus,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003649 ! metacarpal bone of digit 5 -relationship: part_of EMAP:9915 ! TS25,digit 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003649 ! metacarpal bone of digit 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12843 -name: TS26,metacarpus,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003649 ! metacarpal bone of digit 5 -relationship: part_of EMAP:11275 ! TS26,digit 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003649 ! metacarpal bone of digit 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12844 -name: TS24,phalanx,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003639 ! manual digit 5 phalanx -relationship: part_of EMAP:8555 ! TS24,digit 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003639 ! manual digit 5 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12845 -name: TS25,phalanx,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003639 ! manual digit 5 phalanx -relationship: part_of EMAP:9915 ! TS25,digit 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003639 ! manual digit 5 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12846 -name: TS26,phalanx,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003639 ! manual digit 5 phalanx -relationship: part_of EMAP:11275 ! TS26,digit 5,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003639 ! manual digit 5 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12847 -name: TS24,carpus -namespace: mouse_anatomy_stages -is_a: UBERON:0004452 ! carpal region -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004452 ! carpal region -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12848 -name: TS25,carpus -namespace: mouse_anatomy_stages -is_a: UBERON:0004452 ! carpal region -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004452 ! carpal region -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12849 -name: TS26,carpus -namespace: mouse_anatomy_stages -is_a: UBERON:0004452 ! carpal region -relationship: part_of EMAP:11242 ! TS26,handplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004452 ! carpal region -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1285 -name: TS15,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:1276 ! TS15,sensory organ -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12850 -name: TS25,humerus -namespace: mouse_anatomy_stages -is_a: UBERON:0000976 ! humerus -relationship: part_of EMAP:9869 ! TS25,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000976 ! humerus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12851 -name: TS26,humerus -namespace: mouse_anatomy_stages -is_a: UBERON:0000976 ! humerus -relationship: part_of EMAP:11229 ! TS26,upper arm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000976 ! humerus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12852 -name: TS24,metatarsus,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003650 ! metatarsal bone of digit 1 -relationship: part_of EMAP:8591 ! TS24,digit 1,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003650 ! metatarsal bone of digit 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12853 -name: TS25,metatarsus,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003650 ! metatarsal bone of digit 1 -relationship: part_of EMAP:9951 ! TS25,digit 1,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003650 ! metatarsal bone of digit 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12854 -name: TS26,metatarsus,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003650 ! metatarsal bone of digit 1 -relationship: part_of EMAP:11311 ! TS26,digit 1,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003650 ! metatarsal bone of digit 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12855 -name: TS24,phalanx,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003640 ! pedal digit 1 phalanx -relationship: part_of EMAP:8591 ! TS24,digit 1,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003640 ! pedal digit 1 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12856 -name: TS25,phalanx,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003640 ! pedal digit 1 phalanx -relationship: part_of EMAP:9951 ! TS25,digit 1,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003640 ! pedal digit 1 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12857 -name: TS26,phalanx,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003640 ! pedal digit 1 phalanx -relationship: part_of EMAP:11311 ! TS26,digit 1,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003640 ! pedal digit 1 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12858 -name: TS24,metatarsus,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003651 ! metatarsal bone of digit 2 -relationship: part_of EMAP:8599 ! TS24,digit 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003651 ! metatarsal bone of digit 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12859 -name: TS25,metatarsus,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003651 ! metatarsal bone of digit 2 -relationship: part_of EMAP:9959 ! TS25,digit 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003651 ! metatarsal bone of digit 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1286 -name: TS15,lens placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003073 ! lens placode -relationship: part_of EMAP:1285 ! TS15,eye -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003073 ! lens placode -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12860 -name: TS26,metatarsus,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003651 ! metatarsal bone of digit 2 -relationship: part_of EMAP:11319 ! TS26,digit 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003651 ! metatarsal bone of digit 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12861 -name: TS24,phalanx,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003641 ! pedal digit 2 phalanx -relationship: part_of EMAP:8599 ! TS24,digit 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003641 ! pedal digit 2 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12862 -name: TS25,phalanx,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003641 ! pedal digit 2 phalanx -relationship: part_of EMAP:9959 ! TS25,digit 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003641 ! pedal digit 2 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12863 -name: TS26,phalanx,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003641 ! pedal digit 2 phalanx -relationship: part_of EMAP:11319 ! TS26,digit 2,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003641 ! pedal digit 2 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12864 -name: TS24,metatarsus,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003652 ! metatarsal bone of digit 3 -relationship: part_of EMAP:8607 ! TS24,digit 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003652 ! metatarsal bone of digit 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12865 -name: TS25,metatarsus,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003652 ! metatarsal bone of digit 3 -relationship: part_of EMAP:9967 ! TS25,digit 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003652 ! metatarsal bone of digit 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12866 -name: TS26,metatarsus,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003652 ! metatarsal bone of digit 3 -relationship: part_of EMAP:11327 ! TS26,digit 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003652 ! metatarsal bone of digit 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12867 -name: TS24,phalanx,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003642 ! pedal digit 3 phalanx -relationship: part_of EMAP:8607 ! TS24,digit 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003642 ! pedal digit 3 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12868 -name: TS25,phalanx,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003642 ! pedal digit 3 phalanx -relationship: part_of EMAP:9967 ! TS25,digit 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003642 ! pedal digit 3 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12869 -name: TS26,phalanx,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003642 ! pedal digit 3 phalanx -relationship: part_of EMAP:11327 ! TS26,digit 3,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003642 ! pedal digit 3 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1287 -name: TS15,mesenchyme,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:1285 ! TS15,eye -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12870 -name: TS24,metatarsus,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003653 ! metatarsal bone of digit 4 -relationship: part_of EMAP:8615 ! TS24,digit 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003653 ! metatarsal bone of digit 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12871 -name: TS25,metatarsus,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003653 ! metatarsal bone of digit 4 -relationship: part_of EMAP:9975 ! TS25,digit 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003653 ! metatarsal bone of digit 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12872 -name: TS26,metatarsus,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003653 ! metatarsal bone of digit 4 -relationship: part_of EMAP:11335 ! TS26,digit 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003653 ! metatarsal bone of digit 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12873 -name: TS24,phalanx,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003862 ! pedal digit 4 phalanx -relationship: part_of EMAP:8615 ! TS24,digit 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003862 ! pedal digit 4 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12874 -name: TS25,phalanx,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003862 ! pedal digit 4 phalanx -relationship: part_of EMAP:9975 ! TS25,digit 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003862 ! pedal digit 4 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12875 -name: TS26,phalanx,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003862 ! pedal digit 4 phalanx -relationship: part_of EMAP:11335 ! TS26,digit 4,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003862 ! pedal digit 4 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12876 -name: TS24,metatarsus,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003654 ! metatarsal bone of digit 5 -relationship: part_of EMAP:8623 ! TS24,digit 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003654 ! metatarsal bone of digit 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12877 -name: TS25,metatarsus,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003654 ! metatarsal bone of digit 5 -relationship: part_of EMAP:9983 ! TS25,digit 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003654 ! metatarsal bone of digit 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12878 -name: TS26,metatarsus,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003654 ! metatarsal bone of digit 5 -relationship: part_of EMAP:11343 ! TS26,digit 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003654 ! metatarsal bone of digit 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12879 -name: TS24,phalanx,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003863 ! pedal digit 5 phalanx -relationship: part_of EMAP:8623 ! TS24,digit 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003863 ! pedal digit 5 phalanx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1288 -name: TS15,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0003072 ! optic cup -relationship: part_of EMAP:1285 ! TS15,eye -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003072 ! optic cup -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12880 -name: TS25,phalanx,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003863 ! pedal digit 5 phalanx -relationship: part_of EMAP:9983 ! TS25,digit 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003863 ! pedal digit 5 phalanx -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12881 -name: TS26,phalanx,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003863 ! pedal digit 5 phalanx -relationship: part_of EMAP:11343 ! TS26,digit 5,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003863 ! pedal digit 5 phalanx -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12882 -name: TS24,tarsus -namespace: mouse_anatomy_stages -is_a: UBERON:0004454 ! tarsal region -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004454 ! tarsal region -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12883 -name: TS25,tarsus -namespace: mouse_anatomy_stages -is_a: UBERON:0004454 ! tarsal region -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004454 ! tarsal region -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12884 -name: TS26,tarsus -namespace: mouse_anatomy_stages -is_a: UBERON:0004454 ! tarsal region -relationship: part_of EMAP:11310 ! TS26,footplate -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004454 ! tarsal region -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12885 -name: TS24,calcaneum -namespace: mouse_anatomy_stages -is_a: UBERON:0001450 ! calcaneus -relationship: part_of EMAP:12882 ! TS24,tarsus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001450 ! calcaneus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12886 -name: TS25,calcaneum -namespace: mouse_anatomy_stages -is_a: UBERON:0001450 ! calcaneus -relationship: part_of EMAP:12883 ! TS25,tarsus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001450 ! calcaneus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12887 -name: TS26,calcaneum -namespace: mouse_anatomy_stages -is_a: UBERON:0001450 ! calcaneus -relationship: part_of EMAP:12884 ! TS26,tarsus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001450 ! calcaneus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12888 -name: TS24,talus -namespace: mouse_anatomy_stages -is_a: UBERON:0002395 ! talus -relationship: part_of EMAP:12882 ! TS24,tarsus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002395 ! talus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12889 -name: TS25,talus -namespace: mouse_anatomy_stages -is_a: UBERON:0002395 ! talus -relationship: part_of EMAP:12883 ! TS25,tarsus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002395 ! talus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1289 -name: TS15,inner layer,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0005425 ! presumptive neural retina -relationship: part_of EMAP:1288 ! TS15,optic cup -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005425 ! presumptive neural retina -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12890 -name: TS26,talus -namespace: mouse_anatomy_stages -is_a: UBERON:0002395 ! talus -relationship: part_of EMAP:12884 ! TS26,tarsus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002395 ! talus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12891 -name: TS24,hip joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001486 ! hip joint -relationship: part_of EMAP:8661 ! TS24,hip -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001486 ! hip joint -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12892 -name: TS25,hip joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001486 ! hip joint -relationship: part_of EMAP:10021 ! TS25,hip -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001486 ! hip joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12893 -name: TS26,hip joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001486 ! hip joint -relationship: part_of EMAP:11381 ! TS26,hip -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001486 ! hip joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12894 -name: TS24,knee joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001485 ! knee joint -relationship: part_of EMAP:8668 ! TS24,knee -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001485 ! knee joint -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12895 -name: TS25,knee joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001485 ! knee joint -relationship: part_of EMAP:10028 ! TS25,knee -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001485 ! knee joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12896 -name: TS26,knee joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001485 ! knee joint -relationship: part_of EMAP:11388 ! TS26,knee -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001485 ! knee joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12897 -name: TS24,fabella CC -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12894 ! TS24,knee joint -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001485 ! knee joint - -[Term] -id: EMAP:12898 -name: TS25,fabella CC -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12895 ! TS25,knee joint -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001485 ! knee joint - -[Term] -id: EMAP:12899 -name: TS26,fabella CC -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12896 ! TS26,knee joint -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001485 ! knee joint - -[Term] -id: EMAP:129 -name: TS10,ectoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004366 ! extraembryonic ectoderm -relationship: part_of EMAP:118 ! TS10,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0004366 ! extraembryonic ectoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1290 -name: TS15,intraretinal space -namespace: mouse_anatomy_stages -is_a: UBERON:0006253 ! embryonic intraretinal space -relationship: part_of EMAP:1288 ! TS15,optic cup -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006253 ! embryonic intraretinal space -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12900 -name: TS24,ligamentum patellae -namespace: mouse_anatomy_stages -is_a: UBERON:0003676 ! patellar ligament -relationship: part_of EMAP:12894 ! TS24,knee joint -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003676 ! patellar ligament -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12901 -name: TS25,ligamentum patellae -namespace: mouse_anatomy_stages -is_a: UBERON:0003676 ! patellar ligament -relationship: part_of EMAP:12895 ! TS25,knee joint -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003676 ! patellar ligament -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12902 -name: TS26,ligamentum patellae -namespace: mouse_anatomy_stages -is_a: UBERON:0003676 ! patellar ligament -relationship: part_of EMAP:12896 ! TS26,knee joint -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003676 ! patellar ligament -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12903 -name: TS24,patella CC -namespace: mouse_anatomy_stages -is_a: UBERON:0012080 ! patella cartilaginous condensation -relationship: part_of EMAP:12894 ! TS24,knee joint -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0012080 ! patella cartilaginous condensation -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12904 -name: TS25,patella CC -namespace: mouse_anatomy_stages -is_a: UBERON:0012080 ! patella cartilaginous condensation -relationship: part_of EMAP:12895 ! TS25,knee joint -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0012080 ! patella cartilaginous condensation -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12905 -name: TS26,patella CC -namespace: mouse_anatomy_stages -is_a: UBERON:0012080 ! patella cartilaginous condensation -relationship: part_of EMAP:12896 ! TS26,knee joint -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0012080 ! patella cartilaginous condensation -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12906 -name: TS24,fibula -namespace: mouse_anatomy_stages -is_a: UBERON:0001446 ! fibula -relationship: part_of EMAP:8678 ! TS24,lower leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001446 ! fibula -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12907 -name: TS25,fibula -namespace: mouse_anatomy_stages -is_a: UBERON:0001446 ! fibula -relationship: part_of EMAP:10038 ! TS25,lower leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001446 ! fibula -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12908 -name: TS26,fibula -namespace: mouse_anatomy_stages -is_a: UBERON:0001446 ! fibula -relationship: part_of EMAP:11398 ! TS26,lower leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001446 ! fibula -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12909 -name: TS24,tibia -namespace: mouse_anatomy_stages -is_a: UBERON:0000979 ! tibia -relationship: part_of EMAP:8678 ! TS24,lower leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000979 ! tibia -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1291 -name: TS15,outer layer,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0005424 ! presumptive retinal pigmented epithelium -relationship: part_of EMAP:1288 ! TS15,optic cup -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005424 ! presumptive retinal pigmented epithelium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12910 -name: TS25,tibia -namespace: mouse_anatomy_stages -is_a: UBERON:0000979 ! tibia -relationship: part_of EMAP:10038 ! TS25,lower leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000979 ! tibia -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12911 -name: TS26,tibia -namespace: mouse_anatomy_stages -is_a: UBERON:0000979 ! tibia -relationship: part_of EMAP:11398 ! TS26,lower leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000979 ! tibia -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12912 -name: TS24,femur -namespace: mouse_anatomy_stages -is_a: UBERON:0000981 ! femur -relationship: part_of EMAP:8686 ! TS24,upper leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000981 ! femur -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12913 -name: TS25,femur -namespace: mouse_anatomy_stages -is_a: UBERON:0000981 ! femur -relationship: part_of EMAP:10046 ! TS25,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000981 ! femur -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12914 -name: TS26,femur -namespace: mouse_anatomy_stages -is_a: UBERON:0000981 ! femur -relationship: part_of EMAP:11406 ! TS26,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000981 ! femur -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12915 -name: TS24,skeletal muscle,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003270 ! skeletal muscle of leg -relationship: part_of EMAP:8686 ! TS24,upper leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003270 ! skeletal muscle of leg -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12916 -name: TS25,skeletal muscle,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003270 ! skeletal muscle of leg -relationship: part_of EMAP:10046 ! TS25,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003270 ! skeletal muscle of leg -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12917 -name: TS26,skeletal muscle,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003270 ! skeletal muscle of leg -relationship: part_of EMAP:11406 ! TS26,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003270 ! skeletal muscle of leg -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12918 -name: TS24,hamstrings -namespace: mouse_anatomy_stages -is_a: UBERON:0002463 ! hamstring muscle -relationship: part_of EMAP:12915 ! TS24,skeletal muscle,upper leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002463 ! hamstring muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12919 -name: TS25,hamstrings -namespace: mouse_anatomy_stages -is_a: UBERON:0002463 ! hamstring muscle -relationship: part_of EMAP:12916 ! TS25,skeletal muscle,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002463 ! hamstring muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1292 -name: TS15,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:1285 ! TS15,eye -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12920 -name: TS26,hamstrings -namespace: mouse_anatomy_stages -is_a: UBERON:0002463 ! hamstring muscle -relationship: part_of EMAP:12917 ! TS26,skeletal muscle,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002463 ! hamstring muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12921 -name: TS24,quadriceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001377 ! quadriceps femoris -relationship: part_of EMAP:12915 ! TS24,skeletal muscle,upper leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001377 ! quadriceps femoris -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12922 -name: TS25,quadriceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001377 ! quadriceps femoris -relationship: part_of EMAP:12916 ! TS25,skeletal muscle,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001377 ! quadriceps femoris -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12923 -name: TS26,quadriceps -namespace: mouse_anatomy_stages -is_a: UBERON:0001377 ! quadriceps femoris -relationship: part_of EMAP:12917 ! TS26,skeletal muscle,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001377 ! quadriceps femoris -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12924 -name: TS23,muscle,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0004253 ! skin muscle -relationship: part_of EMAP:7490 ! TS23,integumental system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12925 -name: TS24,muscle,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0004253 ! skin muscle -relationship: part_of EMAP:8877 ! TS24,integumental system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12926 -name: TS25,muscle,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0004253 ! skin muscle -relationship: part_of EMAP:10237 ! TS25,integumental system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12927 -name: TS26,muscle,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0004253 ! skin muscle -relationship: part_of EMAP:11597 ! TS26,integumental system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12928 -name: TS23,superficial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12924 ! TS23,muscle,integumental system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004253 ! skin muscle - -[Term] -id: EMAP:12929 -name: TS24,superficial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12925 ! TS24,muscle,integumental system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004253 ! skin muscle - -[Term] -id: EMAP:1293 -name: TS15,optic vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0004128 ! optic vesicle -relationship: part_of EMAP:1285 ! TS15,eye -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12930 -name: TS25,superficial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12926 ! TS25,muscle,integumental system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004253 ! skin muscle - -[Term] -id: EMAP:12931 -name: TS26,superficial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12927 ! TS26,muscle,integumental system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004253 ! skin muscle - -[Term] -id: EMAP:12932 -name: TS23,panniculus carnosus group,superficial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0010934 ! panniculus carnosus -relationship: part_of EMAP:12928 ! TS23,superficial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010934 ! panniculus carnosus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12933 -name: TS24,panniculus carnosus group,superficial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0010934 ! panniculus carnosus -relationship: part_of EMAP:12929 ! TS24,superficial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010934 ! panniculus carnosus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12934 -name: TS25,panniculus carnosus group,superficial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0010934 ! panniculus carnosus -relationship: part_of EMAP:12930 ! TS25,superficial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010934 ! panniculus carnosus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12935 -name: TS26,panniculus carnosus group,superficial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0010934 ! panniculus carnosus -relationship: part_of EMAP:12931 ! TS26,superficial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0010934 ! panniculus carnosus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12936 -name: TS23,platysma -namespace: mouse_anatomy_stages -is_a: UBERON:0005467 ! platysma -relationship: part_of EMAP:12932 ! TS23,panniculus carnosus group,superficial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005467 ! platysma -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:12937 -name: TS24,platysma -namespace: mouse_anatomy_stages -is_a: UBERON:0005467 ! platysma -relationship: part_of EMAP:12933 ! TS24,panniculus carnosus group,superficial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005467 ! platysma -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:12938 -name: TS25,platysma -namespace: mouse_anatomy_stages -is_a: UBERON:0005467 ! platysma -relationship: part_of EMAP:12934 ! TS25,panniculus carnosus group,superficial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005467 ! platysma -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12939 -name: TS26,platysma -namespace: mouse_anatomy_stages -is_a: UBERON:0005467 ! platysma -relationship: part_of EMAP:12935 ! TS26,panniculus carnosus group,superficial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005467 ! platysma -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1294 -name: TS15,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:1276 ! TS15,sensory organ -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12940 -name: TS25,lenticular nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002263 ! lentiform nucleus -relationship: part_of EMAP:10284 ! TS25,mantle layer,hypothalamus -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12941 -name: TS26,lenticular nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002263 ! lentiform nucleus -relationship: part_of EMAP:11644 ! TS26,mantle layer,hypothalamus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12942 -name: TS25,hippocampus,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001954 ! Ammon's horn -relationship: part_of EMAP:10260 ! TS25,forebrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12943 -name: TS26,hippocampus,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001954 ! Ammon's horn -relationship: part_of EMAP:11620 ! TS26,forebrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12944 -name: TS25,basal cistern,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0004047 ! basal cistern -relationship: part_of EMAP:12618 ! TS25,subarachnoid space,meninges,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004047 ! basal cistern -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12945 -name: TS26,basal cistern,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0004047 ! basal cistern -relationship: part_of EMAP:12619 ! TS26,subarachnoid space,meninges,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004047 ! basal cistern -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12946 -name: TS25,cisterna chiasmatica,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002898 ! chiasmatic cistern -relationship: part_of EMAP:12618 ! TS25,subarachnoid space,meninges,midbrain -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002898 ! chiasmatic cistern -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12947 -name: TS26,cisterna chiasmatica,subarachnoid space,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002898 ! chiasmatic cistern -relationship: part_of EMAP:12619 ! TS26,subarachnoid space,meninges,midbrain -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002898 ! chiasmatic cistern -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12948 -name: TS25,spiral organ of Corti -namespace: mouse_anatomy_stages -is_a: UBERON:0002227 ! spiral organ of cochlea -relationship: part_of EMAP:10524 ! TS25,inner ear -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002227 ! spiral organ of cochlea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12949 -name: TS26,spiral organ of Corti -namespace: mouse_anatomy_stages -is_a: UBERON:0002227 ! spiral organ of cochlea -relationship: part_of EMAP:11884 ! TS26,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002227 ! spiral organ of cochlea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1295 -name: TS15,naso-lacrimal groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006266 ! nasolacrimal groove -relationship: part_of EMAP:1294 ! TS15,nose -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12950 -name: TS25,orbital fat pad -namespace: mouse_anatomy_stages -is_a: UBERON:0006671 ! orbital fat pad -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006671 ! orbital fat pad -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12951 -name: TS26,orbital fat pad -namespace: mouse_anatomy_stages -is_a: UBERON:0006671 ! orbital fat pad -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006671 ! orbital fat pad -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12952 -name: TS25,Harderian gland -namespace: mouse_anatomy_stages -is_a: UBERON:0004187 ! Harderian gland -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004187 ! Harderian gland -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12953 -name: TS26,Harderian gland -namespace: mouse_anatomy_stages -is_a: UBERON:0004187 ! Harderian gland -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004187 ! Harderian gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12954 -name: TS25,iris -namespace: mouse_anatomy_stages -is_a: UBERON:0001769 ! iris -relationship: part_of EMAP:10571 ! TS25,eye -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001769 ! iris -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12955 -name: TS26,iris -namespace: mouse_anatomy_stages -is_a: UBERON:0001769 ! iris -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001769 ! iris -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12956 -name: TS25,inner nuclear layer,nuclear layer,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0001791 ! inner nuclear layer of retina -relationship: part_of EMAP:10609 ! TS25,nuclear layer,neural retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001791 ! inner nuclear layer of retina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12957 -name: TS26,inner nuclear layer,nuclear layer,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0001791 ! inner nuclear layer of retina -relationship: part_of EMAP:11969 ! TS26,nuclear layer,neural retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001791 ! inner nuclear layer of retina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12958 -name: TS25,intermediate anuclear layer,nuclear layer,neural retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10609 ! TS25,nuclear layer,neural retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003902 ! retinal neural layer - -[Term] -id: EMAP:12959 -name: TS26,intermediate anuclear layer,nuclear layer,neural retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11969 ! TS26,nuclear layer,neural retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003902 ! retinal neural layer - -[Term] -id: EMAP:1296 -name: TS15,olfactory placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003050 ! olfactory placode -relationship: part_of EMAP:1294 ! TS15,nose -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12960 -name: TS25,outer nuclear layer,nuclear layer,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0001789 ! outer nuclear layer of retina -relationship: part_of EMAP:10609 ! TS25,nuclear layer,neural retina -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001789 ! outer nuclear layer of retina -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12961 -name: TS26,outer nuclear layer,nuclear layer,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0001789 ! outer nuclear layer of retina -relationship: part_of EMAP:11969 ! TS26,nuclear layer,neural retina -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001789 ! outer nuclear layer of retina -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12964 -name: TS25,pectinate line -namespace: mouse_anatomy_stages -is_a: UBERON:0006574 ! pectinate line -relationship: part_of EMAP:10674 ! TS25,anal region,alimentary system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006574 ! pectinate line -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12965 -name: TS26,pectinate line,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0006574 ! pectinate line -relationship: part_of EMAP:12034 ! TS26,anal region,alimentary system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006574 ! pectinate line -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12966 -name: TS25,coronary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001621 ! coronary artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001621 ! coronary artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12967 -name: TS26,coronary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001621 ! coronary artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001621 ! coronary artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12968 -name: TS25,mandibular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006673 ! mandibular canal -relationship: part_of EMAP:10795 ! TS25,mandible -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006673 ! mandibular canal -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12969 -name: TS26,mandibular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006673 ! mandibular canal -relationship: part_of EMAP:12155 ! TS26,mandible -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006673 ! mandibular canal -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1297 -name: TS15,process,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0009292 ! embryonic nasal process -relationship: part_of EMAP:1294 ! TS15,nose -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12970 -name: TS25,digastric muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11124 ! TS25,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12971 -name: TS26,digastric muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12484 ! TS26,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12972 -name: TS25,gluteus medius -namespace: mouse_anatomy_stages -is_a: UBERON:0001371 ! gluteus medius -relationship: part_of EMAP:11143 ! TS25,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001371 ! gluteus medius -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12973 -name: TS26,gluteus medius -namespace: mouse_anatomy_stages -is_a: UBERON:0001371 ! gluteus medius -relationship: part_of EMAP:12503 ! TS26,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001371 ! gluteus medius -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12974 -name: TS25,iliacus -namespace: mouse_anatomy_stages -is_a: UBERON:0001369 ! iliacus muscle -relationship: part_of EMAP:11143 ! TS25,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001369 ! iliacus muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12975 -name: TS26,iliacus -namespace: mouse_anatomy_stages -is_a: UBERON:0001369 ! iliacus muscle -relationship: part_of EMAP:12503 ! TS26,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001369 ! iliacus muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12976 -name: TS25,levator ani -namespace: mouse_anatomy_stages -is_a: UBERON:0001326 ! levator ani muscle -relationship: part_of EMAP:11143 ! TS25,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001326 ! levator ani muscle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12977 -name: TS26,levator ani -namespace: mouse_anatomy_stages -is_a: UBERON:0001326 ! levator ani muscle -relationship: part_of EMAP:12503 ! TS26,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001326 ! levator ani muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12978 -name: TS25,adductor group,skeletal muscle,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12916 ! TS25,skeletal muscle,upper leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003270 ! skeletal muscle of leg - -[Term] -id: EMAP:12979 -name: TS26,adductor group,skeletal muscle,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12917 ! TS26,skeletal muscle,upper leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003270 ! skeletal muscle of leg - -[Term] -id: EMAP:1298 -name: TS15,fronto-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004066 ! frontonasal prominence -relationship: part_of EMAP:1297 ! TS15,process,nose -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:12982 -name: TS25,lingual branch,mandibular division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10442 ! TS25,mandibular division,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:12983 -name: TS26,lingual branch,mandibular division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11802 ! TS26,mandibular division,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:12984 -name: TS25,crus of clitoris -namespace: mouse_anatomy_stages -is_a: UBERON:0006640 ! crus of clitoris -relationship: part_of EMAP:10919 ! TS25,clitoris -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006640 ! crus of clitoris -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12985 -name: TS26,crus of clitoris -namespace: mouse_anatomy_stages -is_a: UBERON:0006640 ! crus of clitoris -relationship: part_of EMAP:12279 ! TS26,clitoris -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006640 ! crus of clitoris -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12986 -name: TS25,glans clitoridis -namespace: mouse_anatomy_stages -is_a: UBERON:0006653 ! glans clitoris -relationship: part_of EMAP:10919 ! TS25,clitoris -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12987 -name: TS26,glans clitoridis -namespace: mouse_anatomy_stages -is_a: UBERON:0006653 ! glans clitoris -relationship: part_of EMAP:12279 ! TS26,clitoris -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12988 -name: TS25,inguinal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003702 ! inguinal canal -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12989 -name: TS26,inguinal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003702 ! inguinal canal -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1299 -name: TS15,ectoderm,fronto-nasal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1298 ! TS15,fronto-nasal process -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004066 ! frontonasal prominence - -[Term] -id: EMAP:12990 -name: TS25,inguinal ring -namespace: mouse_anatomy_stages -is_a: UBERON:0006674 ! inguinal ring -relationship: part_of EMAP:10917 ! TS25,female,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006674 ! inguinal ring -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:12991 -name: TS26,inguinal ring -namespace: mouse_anatomy_stages -is_a: UBERON:0006674 ! inguinal ring -relationship: part_of EMAP:12277 ! TS26,female,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006674 ! inguinal ring -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:12992 -name: TS25,internal,inguinal ring -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12990 ! TS25,inguinal ring -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006674 ! inguinal ring - -[Term] -id: EMAP:12993 -name: TS26,internal,inguinal ring -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12991 ! TS26,inguinal ring -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006674 ! inguinal ring - -[Term] -id: EMAP:12994 -name: TS25,external,inguinal ring -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12990 ! TS25,inguinal ring -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006674 ! inguinal ring - -[Term] -id: EMAP:12995 -name: TS26,external,inguinal ring -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12991 ! TS26,inguinal ring -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0006674 ! inguinal ring - -[Term] -id: EMAP:12996 -name: TS25,future Leydig cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9809 ! TS25,intestitial tissue,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005212 ! testis interstitial tissue - -[Term] -id: EMAP:12997 -name: TS26,future Leydig cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11169 ! TS26,intestitial tissue,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005212 ! testis interstitial tissue - -[Term] -id: EMAP:12998 -name: TS25,non-specific mesenchyme,intestitial tissue,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9809 ! TS25,intestitial tissue,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005212 ! testis interstitial tissue - -[Term] -id: EMAP:12999 -name: TS26,non-specific mesenchyme,intestitial tissue,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11169 ! TS26,intestitial tissue,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005212 ! testis interstitial tissue - -[Term] -id: EMAP:13 -name: TS4,compacted morula -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12 ! TS4,embryo -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:130 -name: TS10,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0008945 ! extraembryonic endoderm -relationship: part_of EMAP:118 ! TS10,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1300 -name: TS15,mesenchyme,fronto-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009501 ! mesenchyme of fronto-nasal process -relationship: part_of EMAP:1298 ! TS15,fronto-nasal process -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009501 ! mesenchyme of fronto-nasal process -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13000 -name: TS25,primitive Sertoli cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9807 ! TS25,primitive seminiferous tubules,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: EMAP:13002 -name: TS25,suspensory ligament,cortical region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9812 ! TS25,cortical region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13003 -name: TS26,suspensory ligament,cortical region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11172 ! TS26,cortical region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13004 -name: TS25,tunica vaginalis testis -namespace: mouse_anatomy_stages -is_a: UBERON:0006650 ! tunica vaginalis testis -relationship: part_of EMAP:9812 ! TS25,cortical region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006650 ! tunica vaginalis testis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13005 -name: TS26,tunica vaginalis testis -namespace: mouse_anatomy_stages -is_a: UBERON:0006650 ! tunica vaginalis testis -relationship: part_of EMAP:11172 ! TS26,cortical region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006650 ! tunica vaginalis testis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13006 -name: TS25,seminal vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0000998 ! seminal vesicle -relationship: part_of EMAP:10938 ! TS25,ductus deferens -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000998 ! seminal vesicle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13007 -name: TS26,seminal vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0000998 ! seminal vesicle -relationship: part_of EMAP:12298 ! TS26,ductus deferens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000998 ! seminal vesicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13008 -name: TS25,vocal folds -namespace: mouse_anatomy_stages -is_a: UBERON:0003706 ! vocal cord -relationship: part_of EMAP:10962 ! TS25,larynx -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003706 ! vocal cord -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13009 -name: TS26,vocal folds -namespace: mouse_anatomy_stages -is_a: UBERON:0003706 ! vocal cord -relationship: part_of EMAP:12322 ! TS26,larynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003706 ! vocal cord -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1301 -name: TS15,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:1196 ! TS15,organ system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13010 -name: TS25,alveolus,alveolar system,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004862 ! left lung alveolus -relationship: part_of EMAP:10972 ! TS25,alveolar system,bronchiole,lobar bronchus,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004862 ! left lung alveolus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13011 -name: TS26,alveolus,alveolar system,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004862 ! left lung alveolus -relationship: part_of EMAP:12332 ! TS26,alveolar system,bronchiole,lobar bronchus,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004862 ! left lung alveolus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13012 -name: TS25,alveolar duct,alveolar system,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003537 ! left lung alveolar duct -relationship: part_of EMAP:10972 ! TS25,alveolar system,bronchiole,lobar bronchus,left lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003537 ! left lung alveolar duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13013 -name: TS26,alveolar duct,alveolar system,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003537 ! left lung alveolar duct -relationship: part_of EMAP:12332 ! TS26,alveolar system,bronchiole,lobar bronchus,left lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003537 ! left lung alveolar duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13014 -name: TS25,alveolus,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004861 ! right lung alveolus -relationship: part_of EMAP:11001 ! TS25,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13015 -name: TS26,alveolus,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004861 ! right lung alveolus -relationship: part_of EMAP:12361 ! TS26,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13016 -name: TS25,alveolar duct,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003536 ! right lung alveolar duct -relationship: part_of EMAP:11001 ! TS25,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13017 -name: TS26,alveolar duct,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003536 ! right lung alveolar duct -relationship: part_of EMAP:12361 ! TS26,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13018 -name: TS25,alveolus,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004861 ! right lung alveolus -relationship: part_of EMAP:10993 ! TS25,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13019 -name: TS26,alveolus,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004861 ! right lung alveolus -relationship: part_of EMAP:12353 ! TS26,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1302 -name: TS15,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:1301 ! TS15,cardiovascular system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13020 -name: TS25,alveolar duct,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003536 ! right lung alveolar duct -relationship: part_of EMAP:10993 ! TS25,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13021 -name: TS26,alveolar duct,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003536 ! right lung alveolar duct -relationship: part_of EMAP:12353 ! TS26,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13022 -name: TS25,alveolus,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004861 ! right lung alveolus -relationship: part_of EMAP:10987 ! TS25,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13023 -name: TS26,alveolus,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004861 ! right lung alveolus -relationship: part_of EMAP:12347 ! TS26,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13024 -name: TS25,alveolar duct,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003536 ! right lung alveolar duct -relationship: part_of EMAP:10987 ! TS25,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13025 -name: TS26,alveolar duct,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003536 ! right lung alveolar duct -relationship: part_of EMAP:12347 ! TS26,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13026 -name: TS25,alveolus,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004861 ! right lung alveolus -relationship: part_of EMAP:10980 ! TS25,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13027 -name: TS26,alveolus,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004861 ! right lung alveolus -relationship: part_of EMAP:12340 ! TS26,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13028 -name: TS25,alveolar duct,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003536 ! right lung alveolar duct -relationship: part_of EMAP:10980 ! TS25,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13029 -name: TS26,alveolar duct,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003536 ! right lung alveolar duct -relationship: part_of EMAP:12340 ! TS26,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1303 -name: TS15,branchial arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004363 ! aortic arch -relationship: part_of EMAP:1302 ! TS15,arterial system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004363 ! aortic arch -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13030 -name: TS25,smooth muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003387 ! smooth muscle of trachea -relationship: part_of EMAP:11010 ! TS25,trachea -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003387 ! smooth muscle of trachea -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13031 -name: TS26,smooth muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003387 ! smooth muscle of trachea -relationship: part_of EMAP:12370 ! TS26,trachea -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003387 ! smooth muscle of trachea -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13032 -name: TS25,trachealis -namespace: mouse_anatomy_stages -is_a: UBERON:0006680 ! trachealis -relationship: part_of EMAP:13030 ! TS25,smooth muscle -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006680 ! trachealis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13033 -name: TS26,trachealis -namespace: mouse_anatomy_stages -is_a: UBERON:0006680 ! trachealis -relationship: part_of EMAP:13031 ! TS26,smooth muscle -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006680 ! trachealis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13034 -name: TS25,craniopharyngeal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002241 ! chondrocranium - -[Term] -id: EMAP:13035 -name: TS26,craniopharyngeal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002241 ! chondrocranium - -[Term] -id: EMAP:13036 -name: TS25,pituitary fossa -namespace: mouse_anatomy_stages -is_a: UBERON:0006667 ! pituitary fossa -relationship: part_of EMAP:11043 ! TS25,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006667 ! pituitary fossa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13037 -name: TS26,pituitary fossa -namespace: mouse_anatomy_stages -is_a: UBERON:0006667 ! pituitary fossa -relationship: part_of EMAP:12403 ! TS26,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006667 ! pituitary fossa -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13038 -name: TS25,temporo-mandibular joint -namespace: mouse_anatomy_stages -is_a: UBERON:0003700 ! temporomandibular joint -relationship: part_of EMAP:11057 ! TS25,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003700 ! temporomandibular joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13039 -name: TS26,temporo-mandibular joint -namespace: mouse_anatomy_stages -is_a: UBERON:0003700 ! temporomandibular joint -relationship: part_of EMAP:12417 ! TS26,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003700 ! temporomandibular joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1304 -name: TS15,1st arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003118 ! aortic arch 1 -relationship: part_of EMAP:1303 ! TS15,branchial arch artery -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003118 ! aortic arch 1 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13040 -name: TS25,tympanic ring -namespace: mouse_anatomy_stages -is_a: UBERON:0002218 ! tympanic ring -relationship: part_of EMAP:11057 ! TS25,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002218 ! tympanic ring -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13041 -name: TS26,tympanic ring -namespace: mouse_anatomy_stages -is_a: UBERON:0002218 ! tympanic ring -relationship: part_of EMAP:12417 ! TS26,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002218 ! tympanic ring -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13042 -name: TS25,sutures and fontanelles -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11061 ! TS25,vault of skull -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0004339 ! vault of skull - -[Term] -id: EMAP:13043 -name: TS26,sutures and fontanelles -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12421 ! TS26,vault of skull -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004339 ! vault of skull - -[Term] -id: EMAP:13044 -name: TS25,anterior fontanelle -namespace: mouse_anatomy_stages -is_a: UBERON:0002510 ! anterior fontanel -relationship: part_of EMAP:13042 ! TS25,sutures and fontanelles -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002510 ! anterior fontanel -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13045 -name: TS26,anterior fontanelle -namespace: mouse_anatomy_stages -is_a: UBERON:0002510 ! anterior fontanel -relationship: part_of EMAP:13043 ! TS26,sutures and fontanelles -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002510 ! anterior fontanel -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13046 -name: TS25,posterior fontanelle -namespace: mouse_anatomy_stages -is_a: UBERON:0006683 ! posterior fontanelle -relationship: part_of EMAP:13042 ! TS25,sutures and fontanelles -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006683 ! posterior fontanelle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13047 -name: TS26,posterior fontanelle -namespace: mouse_anatomy_stages -is_a: UBERON:0006683 ! posterior fontanelle -relationship: part_of EMAP:13043 ! TS26,sutures and fontanelles -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006683 ! posterior fontanelle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13048 -name: TS25,cribriform plate -namespace: mouse_anatomy_stages -is_a: UBERON:0004546 ! cribriform plate -relationship: part_of EMAP:11068 ! TS25,ethmoid bone -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004546 ! cribriform plate -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13049 -name: TS26,cribriform plate -namespace: mouse_anatomy_stages -is_a: UBERON:0004546 ! cribriform plate -relationship: part_of EMAP:12428 ! TS26,ethmoid bone -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004546 ! cribriform plate -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1305 -name: TS15,2nd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003119 ! aortic arch 2 -relationship: part_of EMAP:1303 ! TS15,branchial arch artery -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003119 ! aortic arch 2 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13050 -name: TS25,nasal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001681 ! nasal bone -relationship: part_of EMAP:11067 ! TS25,viscerocranium -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001681 ! nasal bone -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13051 -name: TS26,nasal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001681 ! nasal bone -relationship: part_of EMAP:12427 ! TS26,viscerocranium -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001681 ! nasal bone -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13052 -name: TS25,sterno-clavicular joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001469 ! sternoclavicular joint -relationship: part_of EMAP:11079 ! TS25,sternum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001469 ! sternoclavicular joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13053 -name: TS26,sterno-clavicular joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001469 ! sternoclavicular joint -relationship: part_of EMAP:12439 ! TS26,sternum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001469 ! sternoclavicular joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13054 -name: TS25,joint,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0003839 ! forelimb joint -relationship: part_of EMAP:9845 ! TS25,forelimb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003839 ! forelimb joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13055 -name: TS26,joint,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0003839 ! forelimb joint -relationship: part_of EMAP:11205 ! TS26,forelimb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003839 ! forelimb joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13056 -name: TS25,radio-carpal joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001491 ! wrist joint -relationship: part_of EMAP:13054 ! TS25,joint,forelimb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001491 ! wrist joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13057 -name: TS26,radio-carpal joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001491 ! wrist joint -relationship: part_of EMAP:13055 ! TS26,joint,forelimb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001491 ! wrist joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13058 -name: TS25,radio-ulnar joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001528 ! radio-ulnar joint -relationship: part_of EMAP:13054 ! TS25,joint,forelimb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001528 ! radio-ulnar joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13059 -name: TS26,radio-ulnar joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001528 ! radio-ulnar joint -relationship: part_of EMAP:13055 ! TS26,joint,forelimb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001528 ! radio-ulnar joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1306 -name: TS15,3rd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003120 ! aortic arch 3 -relationship: part_of EMAP:1303 ! TS15,branchial arch artery -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003120 ! aortic arch 3 -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13060 -name: TS25,ligamentum nuchae -namespace: mouse_anatomy_stages -is_a: UBERON:0000351 ! nuchal ligament -relationship: part_of EMAP:11024 ! TS25,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000351 ! nuchal ligament -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13061 -name: TS26,ligamentum nuchae,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0000351 ! nuchal ligament -relationship: part_of EMAP:12384 ! TS26,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000351 ! nuchal ligament -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13062 -name: TS25,costo-vertebral joint -namespace: mouse_anatomy_stages -is_a: UBERON:0002292 ! costovertebral joint -relationship: part_of EMAP:11036 ! TS25,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002292 ! costovertebral joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13063 -name: TS26,costo-vertebral joint -namespace: mouse_anatomy_stages -is_a: UBERON:0002292 ! costovertebral joint -relationship: part_of EMAP:12396 ! TS26,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002292 ! costovertebral joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13064 -name: TS25,brown fat -namespace: mouse_anatomy_stages -is_a: UBERON:0001348 ! brown adipose tissue -relationship: part_of EMAP:10250 ! TS25,rest of skin -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001348 ! brown adipose tissue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13065 -name: TS26,brown fat -namespace: mouse_anatomy_stages -is_a: UBERON:0001348 ! brown adipose tissue -relationship: part_of EMAP:11610 ! TS26,rest of skin -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001348 ! brown adipose tissue -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13066 -name: TS25,epicranial aponeurosis -namespace: mouse_anatomy_stages -is_a: UBERON:0006661 ! epicranial aponeurosis -relationship: part_of EMAP:10250 ! TS25,rest of skin -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006661 ! epicranial aponeurosis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13067 -name: TS26,epicranial aponeurosis -namespace: mouse_anatomy_stages -is_a: UBERON:0006661 ! epicranial aponeurosis -relationship: part_of EMAP:11610 ! TS26,rest of skin -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006661 ! epicranial aponeurosis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13068 -name: TS25,carotid body -namespace: mouse_anatomy_stages -is_a: UBERON:0001629 ! carotid body -relationship: part_of EMAP:10078 ! TS25,carotid artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001629 ! carotid body -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13069 -name: TS26,carotid body -namespace: mouse_anatomy_stages -is_a: UBERON:0001629 ! carotid body -relationship: part_of EMAP:11438 ! TS26,carotid artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001629 ! carotid body -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1307 -name: TS15,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1302 ! TS15,arterial system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:13070 -name: TS25,coeliac trunk,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0006637 ! coeliac trunk -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006637 ! coeliac trunk -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13071 -name: TS26,coeliac trunk,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0006637 ! coeliac trunk -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006637 ! coeliac trunk -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13072 -name: TS25,facial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001612 ! facial artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001612 ! facial artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13073 -name: TS26,facial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001612 ! facial artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001612 ! facial artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13074 -name: TS25,median sacral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005464 ! median sacral artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005464 ! median sacral artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13075 -name: TS26,median sacral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005464 ! median sacral artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005464 ! median sacral artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13076 -name: TS25,musculo-phrenic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006632 ! musculo-phrenic artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006632 ! musculo-phrenic artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13077 -name: TS26,musculo-phrenic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006632 ! musculo-phrenic artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006632 ! musculo-phrenic artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13078 -name: TS25,splenic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001194 ! splenic artery -relationship: part_of EMAP:10062 ! TS25,arterial system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001194 ! splenic artery -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13079 -name: TS26,splenic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001194 ! splenic artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001194 ! splenic artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1308 -name: TS15,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:1307 ! TS15,dorsal aorta -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13080 -name: TS25,accessory hemiazygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006665 ! accessory hemiazygos vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006665 ! accessory hemiazygos vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13081 -name: TS26,accessory hemiazygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006665 ! accessory hemiazygos vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006665 ! accessory hemiazygos vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13082 -name: TS25,deep dorsal vein of clitoris -namespace: mouse_anatomy_stages -is_a: UBERON:0006690 ! deep dorsal vein of clitoris -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006690 ! deep dorsal vein of clitoris -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13083 -name: TS26,deep dorsal vein of clitoris -namespace: mouse_anatomy_stages -is_a: UBERON:0006690 ! deep dorsal vein of clitoris -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006690 ! deep dorsal vein of clitoris -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13084 -name: TS25,deep dorsal vein of penis -namespace: mouse_anatomy_stages -is_a: UBERON:0006656 ! deep dorsal vein of penis -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006656 ! deep dorsal vein of penis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13085 -name: TS26,deep dorsal vein of penis -namespace: mouse_anatomy_stages -is_a: UBERON:0006656 ! deep dorsal vein of penis -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006656 ! deep dorsal vein of penis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13086 -name: TS25,facial vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001653 ! facial vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001653 ! facial vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13087 -name: TS26,facial vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001653 ! facial vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001653 ! facial vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13088 -name: TS25,hepatic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001143 ! hepatic vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13089 -name: TS26,hepatic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001143 ! hepatic vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1309 -name: TS15,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:1307 ! TS15,dorsal aorta -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13090 -name: TS25,musculo-phrenic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006662 ! musculo-phrenic vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006662 ! musculo-phrenic vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13091 -name: TS26,musculo-phrenic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006662 ! musculo-phrenic vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006662 ! musculo-phrenic vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13092 -name: TS25,renal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001140 ! renal vein -relationship: part_of EMAP:10179 ! TS25,venous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001140 ! renal vein -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13093 -name: TS26,renal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001140 ! renal vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001140 ! renal vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13094 -name: TS25,sagittal suture -namespace: mouse_anatomy_stages -is_a: UBERON:0002492 ! sagittal suture -relationship: part_of EMAP:13042 ! TS25,sutures and fontanelles -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002492 ! sagittal suture -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13095 -name: TS26,sagittal suture -namespace: mouse_anatomy_stages -is_a: UBERON:0002492 ! sagittal suture -relationship: part_of EMAP:13043 ! TS26,sutures and fontanelles -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002492 ! sagittal suture -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13096 -name: TS25,coronal suture -namespace: mouse_anatomy_stages -is_a: UBERON:0002489 ! coronal suture -relationship: part_of EMAP:13042 ! TS25,sutures and fontanelles -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002489 ! coronal suture -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13097 -name: TS26,coronal suture -namespace: mouse_anatomy_stages -is_a: UBERON:0002489 ! coronal suture -relationship: part_of EMAP:13043 ! TS26,sutures and fontanelles -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002489 ! coronal suture -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13098 -name: TS25,metopic suture -namespace: mouse_anatomy_stages -is_a: UBERON:0002490 ! frontal suture -relationship: part_of EMAP:13042 ! TS25,sutures and fontanelles -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002490 ! frontal suture -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13099 -name: TS26,metopic suture -namespace: mouse_anatomy_stages -is_a: UBERON:0002490 ! frontal suture -relationship: part_of EMAP:13043 ! TS26,sutures and fontanelles -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002490 ! frontal suture -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:131 -name: TS10,intermediate endoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:130 ! TS10,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0008945 ! extraembryonic endoderm - -[Term] -id: EMAP:1310 -name: TS15,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:1307 ! TS15,dorsal aorta -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13100 -name: TS25,lambdoidal suture -namespace: mouse_anatomy_stages -is_a: UBERON:0002491 ! lambdoid suture -relationship: part_of EMAP:13042 ! TS25,sutures and fontanelles -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002491 ! lambdoid suture -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13101 -name: TS26,lambdoidal suture -namespace: mouse_anatomy_stages -is_a: UBERON:0002491 ! lambdoid suture -relationship: part_of EMAP:13043 ! TS26,sutures and fontanelles -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002491 ! lambdoid suture -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13102 -name: TS25,squamo-parietal suture -namespace: mouse_anatomy_stages -is_a: UBERON:0003954 ! squamoparietal suture -relationship: part_of EMAP:13042 ! TS25,sutures and fontanelles -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003954 ! squamoparietal suture -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13103 -name: TS26,squamo-parietal suture -namespace: mouse_anatomy_stages -is_a: UBERON:0003954 ! squamoparietal suture -relationship: part_of EMAP:13043 ! TS26,sutures and fontanelles -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003954 ! squamoparietal suture -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13104 -name: TS25,sphenoidal fontanelle -namespace: mouse_anatomy_stages -is_a: UBERON:0006684 ! sphenoidal fontanelle -relationship: part_of EMAP:13042 ! TS25,sutures and fontanelles -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006684 ! sphenoidal fontanelle -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13105 -name: TS26,sphenoidal fontanelle -namespace: mouse_anatomy_stages -is_a: UBERON:0006684 ! sphenoidal fontanelle -relationship: part_of EMAP:13043 ! TS26,sutures and fontanelles -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006684 ! sphenoidal fontanelle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1311 -name: TS15,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:1302 ! TS15,arterial system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13110 -name: TS26,inferior petrosal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0007160 ! inferior petrosal sinus -relationship: part_of EMAP:11543 ! TS26,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007160 ! inferior petrosal sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13111 -name: TS26,pineal venous plexus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11543 ! TS26,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0005486 ! venous dural sinus - -[Term] -id: EMAP:13112 -name: TS26,arcuate ligaments -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11178 ! TS26,diaphragm -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001103 ! diaphragm - -[Term] -id: EMAP:13113 -name: TS26,medial,arcuate ligaments -namespace: mouse_anatomy_stages -is_a: UBERON:0007161 ! medial arcuate ligament -relationship: part_of EMAP:13112 ! TS26,arcuate ligaments -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007161 ! medial arcuate ligament -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13114 -name: TS26,lateral,arcuate ligaments -namespace: mouse_anatomy_stages -is_a: UBERON:0007162 ! lateral arcuate ligament -relationship: part_of EMAP:13112 ! TS26,arcuate ligaments -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007162 ! lateral arcuate ligament -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13115 -name: TS26,fenestra cochleae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11884 ! TS26,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001846 ! internal ear - -[Term] -id: EMAP:13116 -name: TS26,fenestra vestibuli -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11884 ! TS26,inner ear -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001846 ! internal ear - -[Term] -id: EMAP:13117 -name: TS26,inferior olivary nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0007244 ! inferior olivary nucleus -relationship: part_of EMAP:11715 ! TS26,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007244 ! inferior olivary nucleus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13118 -name: TS26,hyaloid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002270 ! hyaloid artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002270 ! hyaloid artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13119 -name: TS26,embryonic nucleus,lens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11955 ! TS26,lens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000965 ! lens of camera-type eye - -[Term] -id: EMAP:1312 -name: TS15,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:1302 ! TS15,arterial system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13120 -name: TS26,posterior suture,lens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11955 ! TS26,lens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000965 ! lens of camera-type eye - -[Term] -id: EMAP:13121 -name: TS26,tear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001850 ! lacrimal duct -relationship: part_of EMAP:11931 ! TS26,eye -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001850 ! lacrimal duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13122 -name: TS26,islets of Langerhans,parenchyma,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0000006 ! islet of Langerhans -relationship: part_of EMAP:12016 ! TS26,parenchyma,body,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000006 ! islet of Langerhans -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13123 -name: TS26,islets of Langerhans,parenchyma,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0000006 ! islet of Langerhans -relationship: part_of EMAP:12019 ! TS26,parenchyma,head,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000006 ! islet of Langerhans -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13124 -name: TS26,islets of Langerhans,parenchyma,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0000006 ! islet of Langerhans -relationship: part_of EMAP:12023 ! TS26,parenchyma,tail,pancreas -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000006 ! islet of Langerhans -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13125 -name: TS26,pharyngeal ligament -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:13126 -name: TS26,pharyngeal tubercle -namespace: mouse_anatomy_stages -is_a: UBERON:0006685 ! pharyngeal tubercle -relationship: part_of EMAP:12042 ! TS26,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006685 ! pharyngeal tubercle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13127 -name: TS26,pyloric sphincter -namespace: mouse_anatomy_stages -is_a: UBERON:0001202 ! pyloric sphincter -relationship: part_of EMAP:12119 ! TS26,pyloric region,stomach -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001202 ! pyloric sphincter -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13128 -name: TS26,large intestine -namespace: mouse_anatomy_stages -is_a: UBERON:0000059 ! large intestine -relationship: part_of EMAP:12011 ! TS26,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000059 ! large intestine -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13129 -name: TS26,midgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13128 ! TS26,large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:1313 -name: TS15,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:1312 ! TS15,umbilical artery -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13130 -name: TS26,hindgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13128 ! TS26,large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13131 -name: TS26,associated mesenchyme,midgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13129 ! TS26,midgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13132 -name: TS26,associated mesenchyme,hindgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13130 ! TS26,hindgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13133 -name: TS26,epithelium,midgut derived large intestine -namespace: mouse_anatomy_stages -is_a: UBERON:0001278 ! epithelium of large intestine -relationship: part_of EMAP:13129 ! TS26,midgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001278 ! epithelium of large intestine -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13134 -name: TS26,lumen,midgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13129 ! TS26,midgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13135 -name: TS26,mesentery,midgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13129 ! TS26,midgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13136 -name: TS26,dorsal mesentery,mesentery,midgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13135 ! TS26,mesentery,midgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13137 -name: TS26,vascular element,midgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13129 ! TS26,midgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13138 -name: TS26,epithelium,hindgut derived large intestine -namespace: mouse_anatomy_stages -is_a: UBERON:0001278 ! epithelium of large intestine -relationship: part_of EMAP:13130 ! TS26,hindgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001278 ! epithelium of large intestine -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13139 -name: TS26,lumen,hindgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13130 ! TS26,hindgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:1314 -name: TS15,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:1312 ! TS15,umbilical artery -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13140 -name: TS26,mesentery,hindgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13130 ! TS26,hindgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13141 -name: TS26,dorsal mesentery,mesentery,hindgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13140 ! TS26,mesentery,hindgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13142 -name: TS26,vascular element,hindgut derived large intestine -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13130 ! TS26,hindgut derived large intestine -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000059 ! large intestine - -[Term] -id: EMAP:13143 -name: TS26,transversus thoracis -namespace: mouse_anatomy_stages -is_a: UBERON:0002404 ! transversus thoracis -relationship: part_of EMAP:12492 ! TS26,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002404 ! transversus thoracis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13145 -name: TS26,pretracheal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12210 ! TS26,skeletal muscle,pharynx -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003384 ! skeletal muscle of pharynx - -[Term] -id: EMAP:13146 -name: TS26,cricothyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0001566 ! cricothyroid muscle -relationship: part_of EMAP:13145 ! TS26,pretracheal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001566 ! cricothyroid muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13147 -name: TS26,sternohyoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001107 ! sternohyoid -relationship: part_of EMAP:13145 ! TS26,pretracheal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001107 ! sternohyoid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13148 -name: TS26,sternothyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0001109 ! sternothyroid -relationship: part_of EMAP:13145 ! TS26,pretracheal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001109 ! sternothyroid -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13149 -name: TS26,thyrohyoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001110 ! thyrohyoid muscle -relationship: part_of EMAP:13145 ! TS26,pretracheal -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001110 ! thyrohyoid muscle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1315 -name: TS15,vitelline artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006002 ! vitelline artery -relationship: part_of EMAP:1302 ! TS15,arterial system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13150 -name: TS26,superior,hypogastric plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0002013 ! superior hypogastric nerve plexus -relationship: part_of EMAP:11839 ! TS26,hypogastric plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002013 ! superior hypogastric nerve plexus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13151 -name: TS26,inferior,hypogastric plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0002014 ! inferior hypogastric nerve plexus -relationship: part_of EMAP:11839 ! TS26,hypogastric plexus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002014 ! inferior hypogastric nerve plexus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13152 -name: TS26,superior,meatus,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0007163 ! superior meatus -relationship: part_of EMAP:11979 ! TS26,meatus,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007163 ! superior meatus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13153 -name: TS26,middle,meatus,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11979 ! TS26,meatus,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000004 ! olfactory apparatus - -[Term] -id: EMAP:13154 -name: TS26,inferior,meatus,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11979 ! TS26,meatus,nose -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000004 ! olfactory apparatus - -[Term] -id: EMAP:13155 -name: TS26,medulla,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000362 ! renal medulla -relationship: part_of EMAP:12265 ! TS26,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000362 ! renal medulla -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13156 -name: TS26,loops of Henle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13155 ! TS26,medulla,excretory component,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000362 ! renal medulla - -[Term] -id: EMAP:13158 -name: TS26,cortex,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12257 ! TS26,associated mesenchyme,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13159 -name: TS26,medulla,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12257 ! TS26,associated mesenchyme,metanephros -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1316 -name: TS15,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:1301 ! TS15,cardiovascular system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13160 -name: TS26,primary follicles,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0000035 ! primary ovarian follicle -relationship: part_of EMAP:12283 ! TS26,ovary -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0000035 ! primary ovarian follicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13161 -name: TS26,gland,male,reproductive system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0000079 ! male reproductive system - -[Term] -id: EMAP:13162 -name: TS26,bulbo-urethral gland -namespace: mouse_anatomy_stages -is_a: UBERON:0002366 ! bulbo-urethral gland -relationship: part_of EMAP:13161 ! TS26,gland,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002366 ! bulbo-urethral gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13163 -name: TS26,prostate gland -namespace: mouse_anatomy_stages -is_a: UBERON:0002367 ! prostate gland -relationship: part_of EMAP:13161 ! TS26,gland,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002367 ! prostate gland -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13164 -name: TS26,Sertoli cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11167 ! TS26,primitive seminiferous tubules,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13165 -name: TS26,tunica albuginea -namespace: mouse_anatomy_stages -is_a: UBERON:0006643 ! tunica albuginea of testis -relationship: part_of EMAP:11172 ! TS26,cortical region,testis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006643 ! tunica albuginea of testis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13166 -name: TS26,epididymis -namespace: mouse_anatomy_stages -is_a: UBERON:0001301 ! epididymis -relationship: part_of EMAP:12298 ! TS26,ductus deferens -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001301 ! epididymis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13167 -name: TS26,caput,epididymis -namespace: mouse_anatomy_stages -is_a: UBERON:0004358 ! caput epididymis -relationship: part_of EMAP:13166 ! TS26,epididymis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004358 ! caput epididymis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13168 -name: TS26,cauda,epididymis -namespace: mouse_anatomy_stages -is_a: UBERON:0004360 ! cauda epididymis -relationship: part_of EMAP:13166 ! TS26,epididymis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004360 ! cauda epididymis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13169 -name: TS26,corpus -namespace: mouse_anatomy_stages -is_a: UBERON:0004359 ! corpus epididymis -relationship: part_of EMAP:13166 ! TS26,epididymis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004359 ! corpus epididymis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1317 -name: TS15,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:1301 ! TS15,cardiovascular system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13170 -name: TS26,crus penis -namespace: mouse_anatomy_stages -is_a: UBERON:0006639 ! crus penis -relationship: part_of EMAP:12301 ! TS26,penis -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006639 ! crus penis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13171 -name: TS26,vasa efferentia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13172 -name: TS26,scrotum -namespace: mouse_anatomy_stages -is_a: UBERON:0001300 ! scrotum -relationship: part_of EMAP:11163 ! TS26,male,reproductive system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001300 ! scrotum -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13173 -name: TS26,bulbar part,urethra -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12309 ! TS26,urethra -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13174 -name: TS26,bulbo-urethral glands -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12309 ! TS26,urethra -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13175 -name: TS26,prostatic utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12309 ! TS26,urethra -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13176 -name: TS26,sacro-iliac joint -namespace: mouse_anatomy_stages -is_a: UBERON:0001365 ! sacro-iliac joint -relationship: part_of EMAP:12443 ! TS26,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001365 ! sacro-iliac joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13178 -name: TS26,metacarpo-phalangeal -namespace: mouse_anatomy_stages -is_a: UBERON:0003695 ! metacarpophalangeal joint -relationship: part_of EMAP:13055 ! TS26,joint,forelimb -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003695 ! metacarpophalangeal joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13179 -name: TS26,hilum,spleen -namespace: mouse_anatomy_stages -is_a: UBERON:0001248 ! hilum of spleen -relationship: part_of EMAP:11595 ! TS26,spleen -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001248 ! hilum of spleen -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1318 -name: TS15,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13180 -name: TS26,medullary region,spleen -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11595 ! TS26,spleen -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002106 ! spleen - -[Term] -id: EMAP:13181 -name: TS26,medullay core,thymus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11596 ! TS26,thymus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002370 ! thymus - -[Term] -id: EMAP:13182 -name: TS26,thin fibrous capsule,thymus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11596 ! TS26,thymus -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002370 ! thymus - -[Term] -id: EMAP:13183 -name: TS26,colloid-filled follicles,left,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0005305 ! thyroid follicle -relationship: part_of EMAP:12031 ! TS26,left,lobe,thyroid,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005305 ! thyroid follicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13184 -name: TS26,colloid-filled follicles,right,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0005305 ! thyroid follicle -relationship: part_of EMAP:12032 ! TS26,right,lobe,thyroid,gland,gut -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0005305 ! thyroid follicle -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13185 -name: TS26,superior cerebellar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001635 ! superior cerebellar artery -relationship: part_of EMAP:11422 ! TS26,arterial system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001635 ! superior cerebellar artery -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13186 -name: TS26,thoracic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001631 ! thoracic duct -relationship: part_of EMAP:11537 ! TS26,lymphatic system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001631 ! thoracic duct -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13187 -name: TS26,great cerebral vein of Galen -namespace: mouse_anatomy_stages -is_a: UBERON:0006666 ! great cerebral vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006666 ! great cerebral vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13188 -name: TS26,lingual vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006634 ! lingual vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0006634 ! lingual vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13189 -name: TS26,ophthalmic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0011191 ! ophthalmic vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011191 ! ophthalmic vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1319 -name: TS15,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13190 -name: TS26,greater palatine vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:13191 -name: TS26,superficial temporal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001657 ! superficial temporal vein -relationship: part_of EMAP:11539 ! TS26,venous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001657 ! superficial temporal vein -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13192 -name: TS25,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:10376 ! TS25,cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:13193 -name: TS26,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11736 ! TS26,cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:13194 -name: TS25,mantle layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13192 ! TS25,rest of cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:13195 -name: TS26,mantle layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13193 ! TS26,rest of cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:13196 -name: TS25,marginal layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13192 ! TS25,rest of cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:13197 -name: TS26,marginal layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13193 ! TS26,rest of cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:13198 -name: TS25,ventricular layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13192 ! TS25,rest of cerebellum -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:13199 -name: TS26,ventricular layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13193 ! TS26,rest of cerebellum -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:132 -name: TS10,parietal endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008800 ! parietal endoderm -relationship: part_of EMAP:130 ! TS10,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0008800 ! parietal endoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1320 -name: TS15,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006218 ! common atrial chamber -relationship: part_of EMAP:1319 ! TS15,atrium -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006218 ! common atrial chamber -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13200 -name: TS25,distal,radio-ulnar joint -namespace: mouse_anatomy_stages -is_a: UBERON:0007164 ! distal radio-ulnar joint -relationship: part_of EMAP:13058 ! TS25,radio-ulnar joint -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007164 ! distal radio-ulnar joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13201 -name: TS26,distal,radio-ulnar joint -namespace: mouse_anatomy_stages -is_a: UBERON:0007164 ! distal radio-ulnar joint -relationship: part_of EMAP:13059 ! TS26,radio-ulnar joint -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007164 ! distal radio-ulnar joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13202 -name: TS25,proximal,radio-ulnar joint -namespace: mouse_anatomy_stages -is_a: UBERON:0007165 ! proximal radio-ulnar joint -relationship: part_of EMAP:13058 ! TS25,radio-ulnar joint -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007165 ! proximal radio-ulnar joint -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13203 -name: TS26,proximal,radio-ulnar joint -namespace: mouse_anatomy_stages -is_a: UBERON:0007165 ! proximal radio-ulnar joint -relationship: part_of EMAP:13059 ! TS26,radio-ulnar joint -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007165 ! proximal radio-ulnar joint -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13204 -name: TS25,skeletal muscle,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003270 ! skeletal muscle of leg -relationship: part_of EMAP:10038 ! TS25,lower leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003270 ! skeletal muscle of leg -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13205 -name: TS26,skeletal muscle,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003270 ! skeletal muscle of leg -relationship: part_of EMAP:11398 ! TS26,lower leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003270 ! skeletal muscle of leg -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13206 -name: TS25,flexor digitorum profundus -namespace: mouse_anatomy_stages -is_a: UBERON:0001523 ! flexor digitorum profundus -relationship: part_of EMAP:13204 ! TS25,skeletal muscle,lower leg -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001523 ! flexor digitorum profundus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13207 -name: TS26,flexor digitorum profundus -namespace: mouse_anatomy_stages -is_a: UBERON:0001523 ! flexor digitorum profundus -relationship: part_of EMAP:13205 ! TS26,skeletal muscle,lower leg -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0001523 ! flexor digitorum profundus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13208 -name: TS25,carotid sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0003708 ! carotid sinus -relationship: part_of EMAP:10078 ! TS25,carotid artery -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003708 ! carotid sinus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13209 -name: TS26,carotid sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0003708 ! carotid sinus -relationship: part_of EMAP:11438 ! TS26,carotid artery -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003708 ! carotid sinus -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1321 -name: TS15,cardiac jelly,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0005261 ! atrium cardiac jelly -relationship: part_of EMAP:1320 ! TS15,common atrial chamber -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005261 ! atrium cardiac jelly -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13210 -name: TS25,coeliac,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002262 ! celiac ganglion -relationship: part_of EMAP:10488 ! TS25,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002262 ! celiac ganglion -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13211 -name: TS26,coeliac,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002262 ! celiac ganglion -relationship: part_of EMAP:11848 ! TS26,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0002262 ! celiac ganglion -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13212 -name: TS26,annular ligament,proximal,radio-ulnar joint -namespace: mouse_anatomy_stages -is_a: UBERON:0007657 ! anular ligament of radius -relationship: part_of EMAP:13203 ! TS26,proximal,radio-ulnar joint -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007657 ! anular ligament of radius -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:13213 -name: TS15,skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13214 -name: TS15,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:13213 ! TS15,skeleton -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13215 -name: TS15,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:13214 ! TS15,axial skeleton -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13216 -name: TS15,vertebral pre-cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13215 ! TS15,cervical region,axial skeleton -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13217 -name: TS15,C1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13216 ! TS15,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13218 -name: TS15,C2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13216 ! TS15,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13219 -name: TS15,C3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13216 ! TS15,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:1322 -name: TS15,endocardial lining,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1320 ! TS15,common atrial chamber -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:13220 -name: TS15,C4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13216 ! TS15,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13221 -name: TS15,C5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13216 ! TS15,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13222 -name: TS16,skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:13223 -name: TS16,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:13222 ! TS16,skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:13224 -name: TS16,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:13223 ! TS16,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:13225 -name: TS16,vertebral pre-cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13224 ! TS16,cervical region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13226 -name: TS16,C1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13225 ! TS16,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13227 -name: TS16,C2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13225 ! TS16,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13228 -name: TS16,C3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13225 ! TS16,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13229 -name: TS16,C4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13225 ! TS16,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:1323 -name: TS15,cardiac muscle,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1320 ! TS15,common atrial chamber -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:13230 -name: TS16,C5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13225 ! TS16,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13231 -name: TS16,C6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13225 ! TS16,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13232 -name: TS16,C7 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13225 ! TS16,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13233 -name: TS16,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:13223 ! TS16,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:13234 -name: TS16,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13233 ! TS16,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13235 -name: TS16,T1,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13234 ! TS16,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13236 -name: TS16,T2,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13234 ! TS16,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13237 -name: TS16,T3,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13234 ! TS16,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13238 -name: TS16,T4,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13234 ! TS16,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13239 -name: TS16,T5,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13234 ! TS16,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1324 -name: TS15,bulboventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006212 ! bulbo-ventricular groove -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006212 ! bulbo-ventricular groove -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13240 -name: TS17,skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:13241 -name: TS17,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:13240 ! TS17,skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:13242 -name: TS17,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:13241 ! TS17,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:13243 -name: TS17,vertebral cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13242 ! TS17,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13244 -name: TS17,C1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13243 ! TS17,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13245 -name: TS17,C2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13243 ! TS17,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13246 -name: TS17,C3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13243 ! TS17,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13247 -name: TS17,C4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13243 ! TS17,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13248 -name: TS17,C5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13243 ! TS17,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13249 -name: TS17,vertebral pre-cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13242 ! TS17,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:1325 -name: TS15,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0004706 ! bulbus cordis -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13250 -name: TS17,C6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13249 ! TS17,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13251 -name: TS17,C7 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13249 ! TS17,vertebral pre-cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13252 -name: TS17,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:13241 ! TS17,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:13253 -name: TS17,vertebral pre-cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13252 ! TS17,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13254 -name: TS17,L1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13253 ! TS17,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13255 -name: TS17,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:13241 ! TS17,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:13256 -name: TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13255 ! TS17,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13257 -name: TS17,T1,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13258 -name: TS17,T2,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13259 -name: TS17,T3,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1326 -name: TS15,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1325 ! TS15,bulbus cordis -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:13260 -name: TS17,T4,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13261 -name: TS17,T5,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13262 -name: TS17,T6,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13263 -name: TS17,T7,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13264 -name: TS17,T8,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13265 -name: TS17,T9,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13266 -name: TS17,T10,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13267 -name: TS17,T11,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13268 -name: TS17,T12,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13269 -name: TS17,T13,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13256 ! TS17,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1327 -name: TS15,cardiac jelly,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1326 ! TS15,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:13271 -name: TS18,C1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3243 ! TS18,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13272 -name: TS18,C2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3243 ! TS18,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13273 -name: TS18,C3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3243 ! TS18,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13274 -name: TS18,C4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3243 ! TS18,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13275 -name: TS18,C5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3243 ! TS18,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13276 -name: TS18,C6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3243 ! TS18,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13277 -name: TS18,C7 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3243 ! TS18,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13278 -name: TS18,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:3241 ! TS18,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:13279 -name: TS18,vertebral pre-cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13278 ! TS18,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:1328 -name: TS15,endocardial lining,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1326 ! TS15,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:13280 -name: TS18,L1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13279 ! TS18,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13281 -name: TS18,L2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13279 ! TS18,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13282 -name: TS18,L3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13279 ! TS18,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13283 -name: TS18,L4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13279 ! TS18,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13284 -name: TS18,L5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13279 ! TS18,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13285 -name: TS18,L6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13279 ! TS18,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13286 -name: TS18,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:3241 ! TS18,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:13287 -name: TS18,vertebral pre-cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0010744 ! sacral vertebra pre-cartilage condensation -relationship: part_of EMAP:13286 ! TS18,sacral region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010744 ! sacral vertebra pre-cartilage condensation -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:13288 -name: TS18,S1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13287 ! TS18,vertebral pre-cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0010744 ! sacral vertebra pre-cartilage condensation - -[Term] -id: EMAP:13289 -name: TS18,S2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13287 ! TS18,vertebral pre-cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0010744 ! sacral vertebra pre-cartilage condensation - -[Term] -id: EMAP:1329 -name: TS15,cardiac muscle,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1326 ! TS15,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:13290 -name: TS18,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:3241 ! TS18,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:13291 -name: TS18,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13290 ! TS18,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13292 -name: TS18,T1,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13291 ! TS18,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13293 -name: TS18,T2,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13291 ! TS18,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13294 -name: TS18,T3,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13291 ! TS18,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13295 -name: TS18,T4,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13291 ! TS18,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13296 -name: TS18,T5,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13291 ! TS18,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13297 -name: TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13290 ! TS18,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13298 -name: TS18,T6,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13297 ! TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13299 -name: TS18,T7,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13297 ! TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:133 -name: TS10,Reichert's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004369 ! Reichert's membrane -relationship: part_of EMAP:132 ! TS10,parietal endoderm -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0004369 ! Reichert's membrane -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1330 -name: TS15,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0006060 ! conotruncus -relationship: part_of EMAP:1325 ! TS15,bulbus cordis -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006060 ! conotruncus -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13300 -name: TS18,T8,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13297 ! TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13301 -name: TS18,T9,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13297 ! TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13302 -name: TS18,T10,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13297 ! TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13303 -name: TS18,T11,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13297 ! TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13304 -name: TS18,T12,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13297 ! TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13305 -name: TS18,T13,vertebral pre-cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13297 ! TS18,vertebral pre-cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13306 -name: TS19,C1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3883 ! TS19,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13307 -name: TS19,C2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3883 ! TS19,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13308 -name: TS19,C3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3883 ! TS19,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13309 -name: TS19,C4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3883 ! TS19,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:1331 -name: TS15,cardiac jelly,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1330 ! TS15,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:13310 -name: TS19,C5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3883 ! TS19,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13311 -name: TS19,C6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3883 ! TS19,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13312 -name: TS19,C7 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3883 ! TS19,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13313 -name: TS19,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3884 ! TS19,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13314 -name: TS19,L1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13313 ! TS19,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13315 -name: TS19,L2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3885 ! TS19,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13316 -name: TS19,L3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3885 ! TS19,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13317 -name: TS19,L4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3885 ! TS19,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13318 -name: TS19,L5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3885 ! TS19,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13319 -name: TS19,L6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3885 ! TS19,vertebral pre-cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:1332 -name: TS15,endocardial lining,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1330 ! TS15,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:13320 -name: TS19,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:3881 ! TS19,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:13321 -name: TS19,vertebral pre-cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0010744 ! sacral vertebra pre-cartilage condensation -relationship: part_of EMAP:13320 ! TS19,sacral region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010744 ! sacral vertebra pre-cartilage condensation -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:13322 -name: TS19,S1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13321 ! TS19,vertebral pre-cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0010744 ! sacral vertebra pre-cartilage condensation - -[Term] -id: EMAP:13323 -name: TS19,S2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13321 ! TS19,vertebral pre-cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0010744 ! sacral vertebra pre-cartilage condensation - -[Term] -id: EMAP:13324 -name: TS19,S3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13321 ! TS19,vertebral pre-cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0010744 ! sacral vertebra pre-cartilage condensation - -[Term] -id: EMAP:13325 -name: TS19,S4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13321 ! TS19,vertebral pre-cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0010744 ! sacral vertebra pre-cartilage condensation - -[Term] -id: EMAP:13326 -name: TS19,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3890 ! TS19,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:13327 -name: TS19,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:13326 ! TS19,skeleton,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:13328 -name: TS19,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13327 ! TS19,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13329 -name: TS19,Tl1,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13328 ! TS19,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1333 -name: TS15,cardiac muscle,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1330 ! TS15,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:13330 -name: TS19,Tl2,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13328 ! TS19,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13331 -name: TS19,Tl3,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13328 ! TS19,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13332 -name: TS19,T1,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3888 ! TS19,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13333 -name: TS19,T2,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3888 ! TS19,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13334 -name: TS19,T3,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3888 ! TS19,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13335 -name: TS19,T4,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3888 ! TS19,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13336 -name: TS19,T5,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3888 ! TS19,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13338 -name: TS19,T1,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13339 -name: TS19,T2,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1334 -name: TS15,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13340 -name: TS19,T3,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13341 -name: TS19,T4,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13342 -name: TS19,T5,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13343 -name: TS19,T6,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13344 -name: TS19,T7,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13345 -name: TS19,T8,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13346 -name: TS19,T9,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13347 -name: TS19,T10,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13348 -name: TS19,T11,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13349 -name: TS19,T12,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1335 -name: TS15,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13350 -name: TS19,T13,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3889 ! TS19,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13352 -name: TS20,C1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4639 ! TS20,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13353 -name: TS20,C2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4639 ! TS20,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13354 -name: TS20,C3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4639 ! TS20,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13355 -name: TS20,C4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4639 ! TS20,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13356 -name: TS20,C5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4639 ! TS20,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13357 -name: TS20,C6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4639 ! TS20,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13358 -name: TS20,C7 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4639 ! TS20,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13359 -name: TS20,L1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4641 ! TS20,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:1336 -name: TS15,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:1335 ! TS15,mesentery,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13360 -name: TS20,L2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4641 ! TS20,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13361 -name: TS20,L3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4641 ! TS20,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13362 -name: TS20,L4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4641 ! TS20,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13363 -name: TS20,L5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4641 ! TS20,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13364 -name: TS20,L6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4641 ! TS20,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13365 -name: TS20,vertebral cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0010745 ! sacral vertebra cartilage condensation -relationship: part_of EMAP:4642 ! TS20,sacral region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010745 ! sacral vertebra cartilage condensation -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:13366 -name: TS20,S1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13365 ! TS20,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13367 -name: TS20,S2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13365 ! TS20,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13368 -name: TS20,S3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4643 ! TS20,vertebral pre-cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0010744 ! sacral vertebra pre-cartilage condensation - -[Term] -id: EMAP:13369 -name: TS20,S4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4643 ! TS20,vertebral pre-cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0010744 ! sacral vertebra pre-cartilage condensation - -[Term] -id: EMAP:1337 -name: TS15,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:1336 ! TS15,dorsal mesocardium -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13370 -name: TS20,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4651 ! TS20,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:13371 -name: TS20,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:13370 ! TS20,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:13372 -name: TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13371 ! TS20,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13373 -name: TS20,Tl1,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13372 ! TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13374 -name: TS20,Tl2,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13372 ! TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13375 -name: TS20,Tl3,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13372 ! TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13376 -name: TS20,Tl4,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13372 ! TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13377 -name: TS20,Tl5,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13372 ! TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13378 -name: TS20,Tl6,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13372 ! TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13379 -name: TS20,Tl7,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13372 ! TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1338 -name: TS15,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13380 -name: TS20,Tl8,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13372 ! TS20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13382 -name: TS20,T1,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13383 -name: TS20,T2,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13384 -name: TS20,T3,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13385 -name: TS20,T4,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13386 -name: TS20,T5,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13387 -name: TS20,T6,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13388 -name: TS20,T7,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13389 -name: TS20,T8,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:1339 -name: TS15,cardiac jelly,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005263 ! outflow tract cardiac jelly -relationship: part_of EMAP:1338 ! TS15,outflow tract,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005263 ! outflow tract cardiac jelly -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13390 -name: TS20,T9,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13391 -name: TS20,T10,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13392 -name: TS20,T11,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13393 -name: TS20,T12,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13394 -name: TS20,T13,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4645 ! TS20,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13395 -name: TS20,T1,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13396 -name: TS20,T2,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13397 -name: TS20,T3,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13398 -name: TS20,T4,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13399 -name: TS20,T5,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:134 -name: TS10,visceral endoderm,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004877 ! visceral endoderm -relationship: part_of EMAP:130 ! TS10,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0004877 ! visceral endoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1340 -name: TS15,endocardial tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1338 ! TS15,outflow tract,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:13400 -name: TS20,T6,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13401 -name: TS20,T7,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13402 -name: TS20,T8,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13403 -name: TS20,T9,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13404 -name: TS20,T10,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13405 -name: TS20,T11,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13406 -name: TS20,T12,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13407 -name: TS20,T13,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4646 ! TS20,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1341 -name: TS15,mesenchyme,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1338 ! TS15,outflow tract,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:13411 -name: TS21,C3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5598 ! TS21,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13412 -name: TS21,C4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5598 ! TS21,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13413 -name: TS21,C5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5598 ! TS21,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13414 -name: TS21,C6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5598 ! TS21,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13415 -name: TS21,C7 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5598 ! TS21,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13417 -name: TS21,L1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5605 ! TS21,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13418 -name: TS21,L2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5605 ! TS21,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13419 -name: TS21,L3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5605 ! TS21,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:1342 -name: TS15,primitive ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006283 ! primitive ventricle of heart -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006283 ! primitive ventricle of heart -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13420 -name: TS21,L4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5605 ! TS21,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13421 -name: TS21,L5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5605 ! TS21,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13422 -name: TS21,L6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5605 ! TS21,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13423 -name: TS21,S1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5608 ! TS21,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13424 -name: TS21,S2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5608 ! TS21,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13425 -name: TS21,S3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5608 ! TS21,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13426 -name: TS21,S4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5608 ! TS21,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13427 -name: TS21,Tl1,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5709 ! TS21,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13428 -name: TS21,Tl2,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5709 ! TS21,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13429 -name: TS21,Tl3,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5709 ! TS21,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1343 -name: TS15,cardiac jelly,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1342 ! TS15,primitive ventricle -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:13430 -name: TS21,Tl4,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5710 ! TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13431 -name: TS21,Tl5,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5710 ! TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13432 -name: TS21,Tl6,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5710 ! TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13433 -name: TS21,Tl7,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5710 ! TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13434 -name: TS21,Tl8,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5710 ! TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13435 -name: TS21,Tl9,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5710 ! TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13436 -name: TS21,Tl10,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5710 ! TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13437 -name: TS21,Tl11,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5710 ! TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13438 -name: TS21,rib cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006288 ! rib cartilage condensation -relationship: part_of EMAP:5609 ! TS21,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006288 ! rib cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:13439 -name: TS21,T1,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13438 ! TS21,rib cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:1344 -name: TS15,endocardial lining,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1342 ! TS15,primitive ventricle -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:13440 -name: TS21,T2,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13438 ! TS21,rib cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13441 -name: TS21,T3,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13438 ! TS21,rib cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13442 -name: TS21,T4,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13438 ! TS21,rib cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13443 -name: TS21,T5,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13438 ! TS21,rib cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13445 -name: TS21,T6,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5610 ! TS21,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13446 -name: TS21,T7,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5610 ! TS21,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13447 -name: TS21,T8,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5610 ! TS21,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13448 -name: TS21,T9,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5610 ! TS21,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13449 -name: TS21,T10,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5610 ! TS21,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:1345 -name: TS15,cardiac muscle,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1342 ! TS15,primitive ventricle -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:13450 -name: TS21,T11,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5610 ! TS21,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13451 -name: TS21,T12,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5610 ! TS21,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13452 -name: TS21,T13,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5610 ! TS21,rib pre-cartilage condensation -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006289 ! rib pre-cartilage condensation - -[Term] -id: EMAP:13454 -name: TS21,T1,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13455 -name: TS21,T2,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13456 -name: TS21,T3,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13457 -name: TS21,T4,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13458 -name: TS21,T5,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13459 -name: TS21,T6,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1346 -name: TS15,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:1317 ! TS15,heart -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13460 -name: TS21,T7,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13461 -name: TS21,T8,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13462 -name: TS21,T9,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13463 -name: TS21,T10,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13464 -name: TS21,T11,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13465 -name: TS21,T12,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13466 -name: TS21,T13,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5611 ! TS21,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13467 -name: TS22,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007252 ! intervertebral disk of cervical vertebra -relationship: part_of EMAP:6774 ! TS22,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007252 ! intervertebral disk of cervical vertebra -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13468 -name: TS22,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007266 ! intervertebral disk of atlas -relationship: part_of EMAP:13467 ! TS22,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007266 ! intervertebral disk of atlas -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13469 -name: TS22,nucleus polposus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13468 ! TS22,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:1347 -name: TS15,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:1346 ! TS15,sinus venosus -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13470 -name: TS22,annulus fibrosus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13468 ! TS22,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:13471 -name: TS22,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007265 ! intervertebral disk of axis -relationship: part_of EMAP:13467 ! TS22,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007265 ! intervertebral disk of axis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13472 -name: TS22,nucleus polposus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13471 ! TS22,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:13473 -name: TS22,annulus fibrosus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13471 ! TS22,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:13474 -name: TS22,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007260 ! intervertebral disk of third cervical vertebra -relationship: part_of EMAP:13467 ! TS22,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007260 ! intervertebral disk of third cervical vertebra -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13475 -name: TS22,nucleus polposus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13474 ! TS22,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:13476 -name: TS22,annulus fibrosus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13474 ! TS22,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:13477 -name: TS22,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -relationship: part_of EMAP:13467 ! TS22,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13478 -name: TS22,nucleus polposus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13477 ! TS22,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:13479 -name: TS22,annulus fibrosus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13477 ! TS22,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:1348 -name: TS15,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:1346 ! TS15,sinus venosus -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13480 -name: TS22,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -relationship: part_of EMAP:13467 ! TS22,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13481 -name: TS22,nucleus polposus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13480 ! TS22,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:13482 -name: TS22,annulus fibrosus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13480 ! TS22,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:13485 -name: TS22,C3,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004612 ! mammalian cervical vertebra 3 -relationship: part_of EMAP:6775 ! TS22,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004612 ! mammalian cervical vertebra 3 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13486 -name: TS22,C4,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004613 ! mammalian cervical vertebra 4 -relationship: part_of EMAP:6775 ! TS22,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004613 ! mammalian cervical vertebra 4 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13487 -name: TS22,C5,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004614 ! mammalian cervical vertebra 5 -relationship: part_of EMAP:6775 ! TS22,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004614 ! mammalian cervical vertebra 5 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:13488 -name: TS22,vertebral cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6774 ! TS22,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13489 -name: TS22,C6,vertebral cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13488 ! TS22,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:1349 -name: TS15,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:1301 ! TS15,cardiovascular system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13490 -name: TS22,C7,vertebral cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13488 ! TS22,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:13492 -name: TS22,L1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6782 ! TS22,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13493 -name: TS22,L2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6782 ! TS22,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13494 -name: TS22,L3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6782 ! TS22,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13495 -name: TS22,L4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6782 ! TS22,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13496 -name: TS22,L5 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6782 ! TS22,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13497 -name: TS22,L6 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6782 ! TS22,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13499 -name: TS22,S1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6785 ! TS22,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:135 -name: TS10,mesoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000926 ! mesoderm -relationship: part_of EMAP:118 ! TS10,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1350 -name: TS15,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004344 ! cardinal vein -relationship: part_of EMAP:1349 ! TS15,venous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13500 -name: TS22,S2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6785 ! TS22,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13501 -name: TS22,S3 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6785 ! TS22,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13502 -name: TS22,S4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6785 ! TS22,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13503 -name: TS22,Tl1,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13504 -name: TS22,Tl2,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13505 -name: TS22,Tl3,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13506 -name: TS22,Tl4,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13507 -name: TS22,Tl5,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13508 -name: TS22,Tl6,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13509 -name: TS22,Tl7,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1351 -name: TS15,anterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:1350 ! TS15,cardinal vein -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13510 -name: TS22,Tl8,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13511 -name: TS22,Tl9,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13512 -name: TS22,Tl10,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13513 -name: TS22,Tl11,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6892 ! TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13514 -name: TS22,Tl12,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6893 ! TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13515 -name: TS22,Tl13,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6893 ! TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13516 -name: TS22,Tl14,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6893 ! TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13517 -name: TS22,Tl15,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6893 ! TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13518 -name: TS22,Tl16,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6893 ! TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13519 -name: TS22,Tl17,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6893 ! TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1352 -name: TS15,common,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002064 ! common cardinal vein -relationship: part_of EMAP:1350 ! TS15,cardinal vein -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13520 -name: TS22,Tl18,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6893 ! TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13521 -name: TS22,Tl19,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6893 ! TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13523 -name: TS22,T1,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13524 -name: TS22,T2,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13525 -name: TS22,T3,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13526 -name: TS22,T4,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13527 -name: TS22,T5,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13528 -name: TS22,T6,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13529 -name: TS22,T7,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:1353 -name: TS15,posterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002065 ! posterior cardinal vein -relationship: part_of EMAP:1350 ! TS15,cardinal vein -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13530 -name: TS22,T8,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13531 -name: TS22,T9,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13532 -name: TS22,T10,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13533 -name: TS22,T11,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13534 -name: TS22,T12,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13535 -name: TS22,T13,rib cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6787 ! TS22,rib cartilage condensation -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006288 ! rib cartilage condensation - -[Term] -id: EMAP:13537 -name: TS22,T1,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13538 -name: TS22,T2,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13539 -name: TS22,T3,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1354 -name: TS15,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:1349 ! TS15,venous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13540 -name: TS22,T4,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13541 -name: TS22,T5,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13542 -name: TS22,T6,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13543 -name: TS22,T7,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13544 -name: TS22,T8,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13545 -name: TS22,T9,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13546 -name: TS22,T10,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13547 -name: TS22,T11,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13548 -name: TS22,T12,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:13549 -name: TS22,T13,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6788 ! TS22,vertebral cartilage condensation,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:1355 -name: TS15,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:1349 ! TS15,venous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13550 -name: TS23,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007252 ! intervertebral disk of cervical vertebra -relationship: part_of EMAP:8340 ! TS23,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007252 ! intervertebral disk of cervical vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13551 -name: TS23,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007266 ! intervertebral disk of atlas -relationship: part_of EMAP:13550 ! TS23,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007266 ! intervertebral disk of atlas -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13552 -name: TS23,nucleus polposus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13551 ! TS23,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:13553 -name: TS23,annulus fibrosus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13551 ! TS23,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:13554 -name: TS23,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007265 ! intervertebral disk of axis -relationship: part_of EMAP:13550 ! TS23,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007265 ! intervertebral disk of axis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13555 -name: TS23,nucleus polposus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13554 ! TS23,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:13556 -name: TS23,annulus fibrosus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13554 ! TS23,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:13557 -name: TS23,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007260 ! intervertebral disk of third cervical vertebra -relationship: part_of EMAP:13550 ! TS23,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007260 ! intervertebral disk of third cervical vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13558 -name: TS23,nucleus polposus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13557 ! TS23,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:13559 -name: TS23,annulus fibrosus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13557 ! TS23,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:1356 -name: TS15,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:1355 ! TS15,umbilical vein -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13560 -name: TS23,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -relationship: part_of EMAP:13550 ! TS23,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13561 -name: TS23,nucleus polposus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13560 ! TS23,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:13562 -name: TS23,annulus fibrosus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13560 ! TS23,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:13563 -name: TS23,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -relationship: part_of EMAP:13550 ! TS23,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13564 -name: TS23,nucleus polposus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13563 ! TS23,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:13565 -name: TS23,annulus fibrosus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13563 ! TS23,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:13566 -name: TS23,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -relationship: part_of EMAP:13550 ! TS23,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13567 -name: TS23,nucleus polposus,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13566 ! TS23,C6,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007263 ! intervertebral disk of sixth cervical vertebra - -[Term] -id: EMAP:13568 -name: TS23,annulus fibrosus,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13566 ! TS23,C6,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007263 ! intervertebral disk of sixth cervical vertebra - -[Term] -id: EMAP:13569 -name: TS23,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -relationship: part_of EMAP:13550 ! TS23,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:1357 -name: TS15,right,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005471 ! right umbilical vein -relationship: part_of EMAP:1355 ! TS15,umbilical vein -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13570 -name: TS23,nucleus polposus,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13569 ! TS23,C7,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007264 ! intervertebral disk of seventh cervical vertebra - -[Term] -id: EMAP:13571 -name: TS23,annulus fibrosus,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13569 ! TS23,C7,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007264 ! intervertebral disk of seventh cervical vertebra - -[Term] -id: EMAP:13574 -name: TS23,C3,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004612 ! mammalian cervical vertebra 3 -relationship: part_of EMAP:8341 ! TS23,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004612 ! mammalian cervical vertebra 3 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13575 -name: TS23,C4,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004613 ! mammalian cervical vertebra 4 -relationship: part_of EMAP:8341 ! TS23,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004613 ! mammalian cervical vertebra 4 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13576 -name: TS23,C5,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004614 ! mammalian cervical vertebra 5 -relationship: part_of EMAP:8341 ! TS23,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004614 ! mammalian cervical vertebra 5 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13577 -name: TS23,C6,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004615 ! mammalian cervical vertebra 6 -relationship: part_of EMAP:8341 ! TS23,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004615 ! mammalian cervical vertebra 6 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13578 -name: TS23,C7,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004616 ! mammalian cervical vertebra 7 -relationship: part_of EMAP:8341 ! TS23,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004616 ! mammalian cervical vertebra 7 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13579 -name: TS23,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007255 ! intervertebral disk of lumbar vertebra -relationship: part_of EMAP:8346 ! TS23,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007255 ! intervertebral disk of lumbar vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:1358 -name: TS15,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:1349 ! TS15,venous system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13580 -name: TS23,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13579 ! TS23,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13581 -name: TS23,nucleus polposus,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13580 ! TS23,L1,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13582 -name: TS23,annulus fibrosus,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13580 ! TS23,L1,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13583 -name: TS23,L1,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004617 ! lumbar vertebra 1 -relationship: part_of EMAP:8347 ! TS23,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004617 ! lumbar vertebra 1 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13584 -name: TS23,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8346 ! TS23,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13585 -name: TS23,L2,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13584 ! TS23,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13586 -name: TS23,L3,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13584 ! TS23,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13587 -name: TS23,L4,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13584 ! TS23,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13588 -name: TS23,L5,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13584 ! TS23,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:13589 -name: TS23,L6,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13584 ! TS23,vertebral cartilage condensation,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:1359 -name: TS15,left,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005460 ! left vitelline vein -relationship: part_of EMAP:1358 ! TS15,vitelline vein -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13591 -name: TS23,S1,vertebral cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8350 ! TS23,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13592 -name: TS23,S2,vertebral cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8350 ! TS23,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13593 -name: TS23,S3,vertebral cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8350 ! TS23,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13594 -name: TS23,S4,vertebral cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8350 ! TS23,vertebral cartilage condensation,sacral region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010745 ! sacral vertebra cartilage condensation - -[Term] -id: EMAP:13596 -name: TS23,Tl1,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13597 -name: TS23,Tl2,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13598 -name: TS23,Tl3,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13599 -name: TS23,Tl4,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:136 -name: TS10,allantois -namespace: mouse_anatomy_stages -is_a: UBERON:0004340 ! allantois -relationship: part_of EMAP:135 ! TS10,mesoderm,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0004340 ! allantois -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1360 -name: TS15,right,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005472 ! right vitelline vein -relationship: part_of EMAP:1358 ! TS15,vitelline vein -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13600 -name: TS23,Tl5,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13601 -name: TS23,Tl6,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13602 -name: TS23,Tl7,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13603 -name: TS23,Tl8,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13604 -name: TS23,Tl9,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13605 -name: TS23,Tl10,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13606 -name: TS23,Tl11,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13607 -name: TS23,Tl12,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13608 -name: TS23,Tl13,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13609 -name: TS23,Tl14,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1361 -name: TS15,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:1196 ! TS15,organ system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13610 -name: TS23,Tl15,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13611 -name: TS23,Tl16,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13612 -name: TS23,Tl17,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13613 -name: TS23,Tl18,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13614 -name: TS23,Tl19,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8412 ! TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13615 -name: TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8411 ! TS23,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13616 -name: TS23,Tl20,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13615 ! TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13617 -name: TS23,Tl21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13615 ! TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13618 -name: TS23,Tl22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13615 ! TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13619 -name: TS23,Tl23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13615 ! TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1362 -name: TS15,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:1361 ! TS15,visceral organ -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13620 -name: TS23,Tl24,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13615 ! TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13621 -name: TS23,Tl25,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13615 ! TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13622 -name: TS23,Tl26,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13615 ! TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13623 -name: TS23,Tl27,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13615 ! TS23,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13624 -name: TS23,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007254 ! intervertebral disk of thoracic vertebra -relationship: part_of EMAP:8351 ! TS23,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007254 ! intervertebral disk of thoracic vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13625 -name: TS23,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13626 -name: TS23,nucleus polposus,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13625 ! TS23,T1,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13627 -name: TS23,annulus fibrosus,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13625 ! TS23,T1,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13628 -name: TS23,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13629 -name: TS23,nucleus polposus,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13628 ! TS23,T2,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1363 -name: TS15,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:1362 ! TS15,alimentary system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13630 -name: TS23,annulus fibrosus,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13628 ! TS23,T2,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13631 -name: TS23,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13632 -name: TS23,nucleus polposus,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13631 ! TS23,T3,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13633 -name: TS23,annulus fibrosus,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13631 ! TS23,T3,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13634 -name: TS23,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13635 -name: TS23,nucleus polposus,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13634 ! TS23,T4,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13636 -name: TS23,annulus fibrosus,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13634 ! TS23,T4,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13637 -name: TS23,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13638 -name: TS23,nucleus polposus,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13637 ! TS23,T5,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13639 -name: TS23,annulus fibrosus,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13637 ! TS23,T5,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1364 -name: TS15,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:1363 ! TS15,gut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13640 -name: TS23,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13641 -name: TS23,nucleus polposus,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13640 ! TS23,T6,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13642 -name: TS23,annulus fibrosus,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13640 ! TS23,T6,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13643 -name: TS23,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13644 -name: TS23,nucleus polposus,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13643 ! TS23,T7,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13645 -name: TS23,annulus fibrosus,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13643 ! TS23,T7,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13646 -name: TS23,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13647 -name: TS23,nucleus polposus,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13646 ! TS23,T8,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13648 -name: TS23,annulus fibrosus,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13646 ! TS23,T8,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13649 -name: TS23,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1365 -name: TS15,oesophageal region,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0009143 ! developing esophageal region -relationship: part_of EMAP:1364 ! TS15,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009143 ! developing esophageal region -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13650 -name: TS23,nucleus polposus,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13649 ! TS23,T9,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13651 -name: TS23,annulus fibrosus,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13649 ! TS23,T9,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13652 -name: TS23,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13653 -name: TS23,nucleus polposus,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13652 ! TS23,T10,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13654 -name: TS23,annulus fibrosus,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13652 ! TS23,T10,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13655 -name: TS23,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13656 -name: TS23,nucleus polposus,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13655 ! TS23,T11,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13657 -name: TS23,annulus fibrosus,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13655 ! TS23,T11,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13658 -name: TS23,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13659 -name: TS23,nucleus polposus,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13658 ! TS23,T12,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1366 -name: TS15,associated mesenchyme,oesophageal region,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1365 ! TS15,oesophageal region,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009143 ! developing esophageal region - -[Term] -id: EMAP:13660 -name: TS23,annulus fibrosus,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13658 ! TS23,T12,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13661 -name: TS23,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13624 ! TS23,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13662 -name: TS23,nucleus polposus,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13661 ! TS23,T13,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13663 -name: TS23,annulus fibrosus,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13661 ! TS23,T13,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13664 -name: TS23,T1,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13665 -name: TS23,T2,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13666 -name: TS23,T3,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13667 -name: TS23,T4,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13668 -name: TS23,T5,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13669 -name: TS23,T6,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:1367 -name: TS15,epithelium,oesophageal region,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1365 ! TS15,oesophageal region,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009143 ! developing esophageal region - -[Term] -id: EMAP:13670 -name: TS23,T7,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13671 -name: TS23,T8,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13672 -name: TS23,T9,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13673 -name: TS23,T10,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13674 -name: TS23,T11,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13675 -name: TS23,T12,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13676 -name: TS23,T13,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12758 ! TS23,rib -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13677 -name: TS23,T1,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004626 ! thoracic vertebra 1 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004626 ! thoracic vertebra 1 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13678 -name: TS23,T2,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004627 ! thoracic vertebra 2 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004627 ! thoracic vertebra 2 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13679 -name: TS23,T3,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004628 ! thoracic vertebra 3 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004628 ! thoracic vertebra 3 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:1368 -name: TS15,mesentery,oesophageal region,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1365 ! TS15,oesophageal region,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009143 ! developing esophageal region - -[Term] -id: EMAP:13680 -name: TS23,T4,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004629 ! thoracic vertebra 4 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004629 ! thoracic vertebra 4 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13681 -name: TS23,T5,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004630 ! thoracic vertebra 5 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004630 ! thoracic vertebra 5 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13682 -name: TS23,T6,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004631 ! thoracic vertebra 6 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004631 ! thoracic vertebra 6 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13683 -name: TS23,T7,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004632 ! thoracic vertebra 7 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004632 ! thoracic vertebra 7 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13684 -name: TS23,T8,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0011050 ! thoracic vertebra 8 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011050 ! thoracic vertebra 8 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13685 -name: TS23,T9,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004633 ! thoracic vertebra 9 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004633 ! thoracic vertebra 9 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13686 -name: TS23,T10,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004634 ! thoracic vertebra 10 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004634 ! thoracic vertebra 10 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13687 -name: TS23,T11,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004635 ! thoracic vertebra 11 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004635 ! thoracic vertebra 11 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13688 -name: TS23,T12,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004636 ! thoracic vertebra 12 -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004636 ! thoracic vertebra 12 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:13689 -name: TS23,T13,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8356 ! TS23,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002347 ! thoracic vertebra - -[Term] -id: EMAP:1369 -name: TS15,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:1368 ! TS15,mesentery,oesophageal region,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13690 -name: TS24,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007252 ! intervertebral disk of cervical vertebra -relationship: part_of EMAP:9664 ! TS24,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007252 ! intervertebral disk of cervical vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13691 -name: TS24,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007266 ! intervertebral disk of atlas -relationship: part_of EMAP:13690 ! TS24,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007266 ! intervertebral disk of atlas -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13692 -name: TS24,nucleus polposus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13691 ! TS24,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:13693 -name: TS24,annulus fibrosus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13691 ! TS24,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:13694 -name: TS24,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007265 ! intervertebral disk of axis -relationship: part_of EMAP:13690 ! TS24,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007265 ! intervertebral disk of axis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13695 -name: TS24,nucleus polposus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13694 ! TS24,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:13696 -name: TS24,annulus fibrosus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13694 ! TS24,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:13697 -name: TS24,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007260 ! intervertebral disk of third cervical vertebra -relationship: part_of EMAP:13690 ! TS24,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007260 ! intervertebral disk of third cervical vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13698 -name: TS24,nucleus polposus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13697 ! TS24,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:13699 -name: TS24,annulus fibrosus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13697 ! TS24,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:137 -name: TS10,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:118 ! TS10,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1370 -name: TS15,vascular element,oesophageal region,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1365 ! TS15,oesophageal region,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009143 ! developing esophageal region - -[Term] -id: EMAP:13700 -name: TS24,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -relationship: part_of EMAP:13690 ! TS24,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13701 -name: TS24,nucleus polposus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13700 ! TS24,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:13702 -name: TS24,annulus fibrosus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13700 ! TS24,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:13703 -name: TS24,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -relationship: part_of EMAP:13690 ! TS24,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13704 -name: TS24,nucleus polposus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13703 ! TS24,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:13705 -name: TS24,annulus fibrosus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13703 ! TS24,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:13706 -name: TS24,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -relationship: part_of EMAP:13690 ! TS24,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13707 -name: TS24,nucleus polposus,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13706 ! TS24,C6,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007263 ! intervertebral disk of sixth cervical vertebra - -[Term] -id: EMAP:13708 -name: TS24,annulus fibrosus,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13706 ! TS24,C6,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007263 ! intervertebral disk of sixth cervical vertebra - -[Term] -id: EMAP:13709 -name: TS24,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -relationship: part_of EMAP:13690 ! TS24,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1371 -name: TS15,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:1364 ! TS15,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13710 -name: TS24,nucleus polposus,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13709 ! TS24,C7,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007264 ! intervertebral disk of seventh cervical vertebra - -[Term] -id: EMAP:13711 -name: TS24,annulus fibrosus,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13709 ! TS24,C7,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007264 ! intervertebral disk of seventh cervical vertebra - -[Term] -id: EMAP:13714 -name: TS24,C3,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004612 ! mammalian cervical vertebra 3 -relationship: part_of EMAP:9665 ! TS24,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004612 ! mammalian cervical vertebra 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13715 -name: TS24,C4,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004613 ! mammalian cervical vertebra 4 -relationship: part_of EMAP:9665 ! TS24,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004613 ! mammalian cervical vertebra 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13716 -name: TS24,C5,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004614 ! mammalian cervical vertebra 5 -relationship: part_of EMAP:9665 ! TS24,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004614 ! mammalian cervical vertebra 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13717 -name: TS24,C6,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004615 ! mammalian cervical vertebra 6 -relationship: part_of EMAP:9665 ! TS24,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004615 ! mammalian cervical vertebra 6 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13718 -name: TS24,C7,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004616 ! mammalian cervical vertebra 7 -relationship: part_of EMAP:9665 ! TS24,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004616 ! mammalian cervical vertebra 7 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13719 -name: TS24,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007255 ! intervertebral disk of lumbar vertebra -relationship: part_of EMAP:9671 ! TS24,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007255 ! intervertebral disk of lumbar vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1372 -name: TS15,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1371 ! TS15,pharynx -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:13720 -name: TS24,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13719 ! TS24,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13721 -name: TS24,nucleus polposus,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13720 ! TS24,L1,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13722 -name: TS24,annulus fibrosus,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13720 ! TS24,L1,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13723 -name: TS24,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13719 ! TS24,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13724 -name: TS24,nucleus polposus,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13723 ! TS24,L2,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13725 -name: TS24,annulus fibrosus,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13723 ! TS24,L2,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13726 -name: TS24,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13719 ! TS24,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13727 -name: TS24,nucleus polposus,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13726 ! TS24,L3,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13728 -name: TS24,annulus fibrosus,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13726 ! TS24,L3,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13729 -name: TS24,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13719 ! TS24,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:1373 -name: TS15,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:1371 ! TS15,pharynx -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13730 -name: TS24,nucleus polposus,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13729 ! TS24,L4,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13731 -name: TS24,annulus fibrosus,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13729 ! TS24,L4,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13732 -name: TS24,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13719 ! TS24,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13733 -name: TS24,nucleus polposus,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13732 ! TS24,L5,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13734 -name: TS24,annulus fibrosus,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13732 ! TS24,L5,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13735 -name: TS24,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13719 ! TS24,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13736 -name: TS24,nucleus polposus,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13735 ! TS24,L6,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13737 -name: TS24,annulus fibrosus,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13735 ! TS24,L6,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13738 -name: TS24,L1,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004617 ! lumbar vertebra 1 -relationship: part_of EMAP:9672 ! TS24,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004617 ! lumbar vertebra 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13739 -name: TS24,L2,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004618 ! lumbar vertebra 2 -relationship: part_of EMAP:9672 ! TS24,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004618 ! lumbar vertebra 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1374 -name: TS15,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1371 ! TS15,pharynx -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:13740 -name: TS24,L3,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004619 ! lumbar vertebra 3 -relationship: part_of EMAP:9672 ! TS24,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004619 ! lumbar vertebra 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13741 -name: TS24,L4,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004620 ! lumbar vertebra 4 -relationship: part_of EMAP:9672 ! TS24,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004620 ! lumbar vertebra 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13742 -name: TS24,L5,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004621 ! lumbar vertebra 5 -relationship: part_of EMAP:9672 ! TS24,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004621 ! lumbar vertebra 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13743 -name: TS24,L6,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9672 ! TS24,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002414 ! lumbar vertebra - -[Term] -id: EMAP:13744 -name: TS24,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007257 ! intervertebral disk of sacral vertebra -relationship: part_of EMAP:9674 ! TS24,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007257 ! intervertebral disk of sacral vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13745 -name: TS24,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13744 ! TS24,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13746 -name: TS24,nucleus polposus,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13745 ! TS24,S1,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13747 -name: TS24,annulus fibrosus,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13745 ! TS24,S1,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13748 -name: TS24,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13744 ! TS24,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13749 -name: TS24,nucleus polposus,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13748 ! TS24,S2,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:1375 -name: TS15,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1364 ! TS15,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:13750 -name: TS24,annulus fibrosus,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13748 ! TS24,S2,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13751 -name: TS24,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13744 ! TS24,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13752 -name: TS24,nucleus polposus,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13751 ! TS24,S3,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13753 -name: TS24,annulus fibrosus,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13751 ! TS24,S3,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13754 -name: TS24,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13744 ! TS24,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13755 -name: TS24,nucleus polposus,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13754 ! TS24,S4,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13756 -name: TS24,annulus fibrosus,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13754 ! TS24,S4,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13757 -name: TS24,S1,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004622 ! sacral vertebra 1 -relationship: part_of EMAP:9675 ! TS24,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004622 ! sacral vertebra 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13758 -name: TS24,S2,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004623 ! sacral vertebra 2 -relationship: part_of EMAP:9675 ! TS24,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004623 ! sacral vertebra 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13759 -name: TS24,S3,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004624 ! sacral vertebra 3 -relationship: part_of EMAP:9675 ! TS24,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004624 ! sacral vertebra 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1376 -name: TS15,associated mesenchyme,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1375 ! TS15,rest of foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:13760 -name: TS24,S4,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004625 ! sacral vertebra 4 -relationship: part_of EMAP:9675 ! TS24,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004625 ! sacral vertebra 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13761 -name: TS24,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003449 ! tail intervertebral disc -relationship: part_of EMAP:9741 ! TS24,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003449 ! tail intervertebral disc -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13762 -name: TS24,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13761 ! TS24,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13763 -name: TS24,nucleus polposus,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13762 ! TS24,Tl1,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13764 -name: TS24,annulus fibrosus,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13762 ! TS24,Tl1,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13765 -name: TS24,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13761 ! TS24,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13766 -name: TS24,nucleus polposus,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13765 ! TS24,Tl2,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13767 -name: TS24,annulus fibrosus,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13765 ! TS24,Tl2,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13768 -name: TS24,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13761 ! TS24,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13769 -name: TS24,nucleus polposus,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13768 ! TS24,Tl3,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1377 -name: TS15,epithelium,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1375 ! TS15,rest of foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:13770 -name: TS24,annulus fibrosus,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13768 ! TS24,Tl3,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13771 -name: TS24,Tl1,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9742 ! TS24,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13772 -name: TS24,Tl2,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9742 ! TS24,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13773 -name: TS24,Tl3,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9742 ! TS24,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13774 -name: TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9741 ! TS24,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13775 -name: TS24,Tl4,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13776 -name: TS24,Tl5,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13777 -name: TS24,Tl6,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13778 -name: TS24,Tl7,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13779 -name: TS24,Tl8,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1378 -name: TS15,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1375 ! TS15,rest of foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:13780 -name: TS24,Tl9,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13781 -name: TS24,Tl10,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13782 -name: TS24,Tl11,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13783 -name: TS24,Tl12,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13784 -name: TS24,Tl13,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13785 -name: TS24,Tl14,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13786 -name: TS24,Tl15,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13787 -name: TS24,Tl16,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13788 -name: TS24,Tl17,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13789 -name: TS24,Tl18,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1379 -name: TS15,dorsal mesentery,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1378 ! TS15,mesentery,rest of foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:13790 -name: TS24,Tl19,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13791 -name: TS24,Tl20,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13792 -name: TS24,Tl21,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13793 -name: TS24,Tl22,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13794 -name: TS24,Tl23,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13795 -name: TS24,Tl24,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13796 -name: TS24,Tl25,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13797 -name: TS24,Tl26,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13798 -name: TS24,Tl27,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13774 ! TS24,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13799 -name: TS24,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9741 ! TS24,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:138 -name: TS10,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:137 ! TS10,trophectoderm -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1380 -name: TS15,ventral mesentery,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1378 ! TS15,mesentery,rest of foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:13800 -name: TS24,Tl28,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13799 ! TS24,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13801 -name: TS24,Tl29,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13799 ! TS24,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13802 -name: TS24,Tl30,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13799 ! TS24,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13803 -name: TS24,Tl31,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13799 ! TS24,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13804 -name: TS24,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007254 ! intervertebral disk of thoracic vertebra -relationship: part_of EMAP:9676 ! TS24,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007254 ! intervertebral disk of thoracic vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13805 -name: TS24,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13806 -name: TS24,nucleus polposus,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13805 ! TS24,T1,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13807 -name: TS24,annulus fibrosus,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13805 ! TS24,T1,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13808 -name: TS24,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13809 -name: TS24,nucleus polposus,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13808 ! TS24,T2,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1381 -name: TS15,vascular element,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1375 ! TS15,rest of foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:13810 -name: TS24,annulus fibrosus,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13808 ! TS24,T2,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13811 -name: TS24,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13812 -name: TS24,nucleus polposus,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13811 ! TS24,T3,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13813 -name: TS24,annulus fibrosus,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13811 ! TS24,T3,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13814 -name: TS24,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13815 -name: TS24,nucleus polposus,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13814 ! TS24,T4,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13816 -name: TS24,annulus fibrosus,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13814 ! TS24,T4,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13817 -name: TS24,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13818 -name: TS24,nucleus polposus,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13817 ! TS24,T5,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13819 -name: TS24,annulus fibrosus,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13817 ! TS24,T5,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1382 -name: TS15,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:1364 ! TS15,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13820 -name: TS24,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13821 -name: TS24,nucleus polposus,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13820 ! TS24,T6,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13822 -name: TS24,annulus fibrosus,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13820 ! TS24,T6,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13823 -name: TS24,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13824 -name: TS24,nucleus polposus,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13823 ! TS24,T7,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13825 -name: TS24,annulus fibrosus,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13823 ! TS24,T7,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13826 -name: TS24,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13827 -name: TS24,nucleus polposus,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13826 ! TS24,T8,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13828 -name: TS24,annulus fibrosus,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13826 ! TS24,T8,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13829 -name: TS24,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1383 -name: TS15,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003091 ! thyroid primordium -relationship: part_of EMAP:1382 ! TS15,gland,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13830 -name: TS24,nucleus polposus,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13829 ! TS24,T9,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13831 -name: TS24,annulus fibrosus,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13829 ! TS24,T9,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13832 -name: TS24,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13833 -name: TS24,nucleus polposus,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13832 ! TS24,T10,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13834 -name: TS24,annulus fibrosus,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13832 ! TS24,T10,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13835 -name: TS24,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13836 -name: TS24,nucleus polposus,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13835 ! TS24,T11,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13837 -name: TS24,annulus fibrosus,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13835 ! TS24,T11,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13838 -name: TS24,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13839 -name: TS24,nucleus polposus,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13838 ! TS24,T12,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1384 -name: TS15,associated mesenchyme,thyroid primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1383 ! TS15,thyroid primordium -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0003091 ! thyroid primordium - -[Term] -id: EMAP:13840 -name: TS24,annulus fibrosus,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13838 ! TS24,T12,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13841 -name: TS24,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13804 ! TS24,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13842 -name: TS24,nucleus polposus,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13841 ! TS24,T13,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13843 -name: TS24,annulus fibrosus,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13841 ! TS24,T13,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:13844 -name: TS24,T1,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13845 -name: TS24,T2,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13846 -name: TS24,T3,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13847 -name: TS24,T4,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13848 -name: TS24,T5,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13849 -name: TS24,T6,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:1385 -name: TS15,endoderm,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003261 ! thyroid primordium endoderm -relationship: part_of EMAP:1383 ! TS15,thyroid primordium -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003261 ! thyroid primordium endoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13850 -name: TS24,T7,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13851 -name: TS24,T8,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13852 -name: TS24,T9,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13853 -name: TS24,T10,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13854 -name: TS24,T11,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13855 -name: TS24,T12,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13856 -name: TS24,T13,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12759 ! TS24,rib -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:13857 -name: TS24,T1,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004626 ! thoracic vertebra 1 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004626 ! thoracic vertebra 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13858 -name: TS24,T2,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004627 ! thoracic vertebra 2 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004627 ! thoracic vertebra 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13859 -name: TS24,T3,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004628 ! thoracic vertebra 3 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004628 ! thoracic vertebra 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:1386 -name: TS15,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:1363 ! TS15,gut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13860 -name: TS24,T4,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004629 ! thoracic vertebra 4 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004629 ! thoracic vertebra 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13861 -name: TS24,T5,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004630 ! thoracic vertebra 5 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004630 ! thoracic vertebra 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13862 -name: TS24,T6,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004631 ! thoracic vertebra 6 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004631 ! thoracic vertebra 6 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13863 -name: TS24,T7,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004632 ! thoracic vertebra 7 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004632 ! thoracic vertebra 7 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13864 -name: TS24,T8,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0011050 ! thoracic vertebra 8 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011050 ! thoracic vertebra 8 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13865 -name: TS24,T9,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004633 ! thoracic vertebra 9 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004633 ! thoracic vertebra 9 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13866 -name: TS24,T10,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004634 ! thoracic vertebra 10 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004634 ! thoracic vertebra 10 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13867 -name: TS24,T11,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004635 ! thoracic vertebra 11 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004635 ! thoracic vertebra 11 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13868 -name: TS24,T12,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004636 ! thoracic vertebra 12 -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004636 ! thoracic vertebra 12 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:13869 -name: TS24,T13,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9681 ! TS24,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002347 ! thoracic vertebra - -[Term] -id: EMAP:1387 -name: TS15,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:1386 ! TS15,foregut-midgut junction -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13870 -name: TS25,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007252 ! intervertebral disk of cervical vertebra -relationship: part_of EMAP:11024 ! TS25,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007252 ! intervertebral disk of cervical vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13871 -name: TS25,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007266 ! intervertebral disk of atlas -relationship: part_of EMAP:13870 ! TS25,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007266 ! intervertebral disk of atlas -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13872 -name: TS25,nucleus polposus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13871 ! TS25,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:13873 -name: TS25,annulus fibrosus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13871 ! TS25,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:13874 -name: TS25,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007265 ! intervertebral disk of axis -relationship: part_of EMAP:13870 ! TS25,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007265 ! intervertebral disk of axis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13875 -name: TS25,nucleus polposus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13874 ! TS25,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:13876 -name: TS25,annulus fibrosus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13874 ! TS25,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:13877 -name: TS25,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007260 ! intervertebral disk of third cervical vertebra -relationship: part_of EMAP:13870 ! TS25,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007260 ! intervertebral disk of third cervical vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13878 -name: TS25,nucleus polposus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13877 ! TS25,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:13879 -name: TS25,annulus fibrosus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13877 ! TS25,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:1388 -name: TS15,biliary bud -namespace: mouse_anatomy_stages -is_a: UBERON:0004912 ! biliary bud -relationship: part_of EMAP:1386 ! TS15,foregut-midgut junction -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004912 ! biliary bud -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13880 -name: TS25,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -relationship: part_of EMAP:13870 ! TS25,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13881 -name: TS25,nucleus polposus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13880 ! TS25,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:13882 -name: TS25,annulus fibrosus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13880 ! TS25,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:13883 -name: TS25,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -relationship: part_of EMAP:13870 ! TS25,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13884 -name: TS25,nucleus polposus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13883 ! TS25,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:13885 -name: TS25,annulus fibrosus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13883 ! TS25,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:13886 -name: TS25,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -relationship: part_of EMAP:13870 ! TS25,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13887 -name: TS25,nucleus polposus,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13886 ! TS25,C6,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007263 ! intervertebral disk of sixth cervical vertebra - -[Term] -id: EMAP:13888 -name: TS25,annulus fibrosus,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13886 ! TS25,C6,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007263 ! intervertebral disk of sixth cervical vertebra - -[Term] -id: EMAP:13889 -name: TS25,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -relationship: part_of EMAP:13870 ! TS25,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1389 -name: TS15,extrahepatic part,biliary bud -namespace: mouse_anatomy_stages -is_a: UBERON:0009495 ! extrahepatic part of biliary bud -relationship: part_of EMAP:1388 ! TS15,biliary bud -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009495 ! extrahepatic part of biliary bud -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13890 -name: TS25,nucleus polposus,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13889 ! TS25,C7,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007264 ! intervertebral disk of seventh cervical vertebra - -[Term] -id: EMAP:13891 -name: TS25,annulus fibrosus,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13889 ! TS25,C7,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007264 ! intervertebral disk of seventh cervical vertebra - -[Term] -id: EMAP:13894 -name: TS25,C3,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004612 ! mammalian cervical vertebra 3 -relationship: part_of EMAP:11025 ! TS25,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004612 ! mammalian cervical vertebra 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13895 -name: TS25,C4,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004613 ! mammalian cervical vertebra 4 -relationship: part_of EMAP:11025 ! TS25,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004613 ! mammalian cervical vertebra 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13896 -name: TS25,C5,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004614 ! mammalian cervical vertebra 5 -relationship: part_of EMAP:11025 ! TS25,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004614 ! mammalian cervical vertebra 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13897 -name: TS25,C6,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004615 ! mammalian cervical vertebra 6 -relationship: part_of EMAP:11025 ! TS25,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004615 ! mammalian cervical vertebra 6 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13898 -name: TS25,C7,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004616 ! mammalian cervical vertebra 7 -relationship: part_of EMAP:11025 ! TS25,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004616 ! mammalian cervical vertebra 7 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13899 -name: TS25,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007255 ! intervertebral disk of lumbar vertebra -relationship: part_of EMAP:11031 ! TS25,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007255 ! intervertebral disk of lumbar vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:139 -name: TS10,primary trophoblast giant cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:138 ! TS10,mural trophectoderm -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -relationship: part_of UBERON:0006265 ! mural trophectoderm - -[Term] -id: EMAP:1390 -name: TS15,gall bladder primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006242 ! gall bladder primordium -relationship: part_of EMAP:1388 ! TS15,biliary bud -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006242 ! gall bladder primordium -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13900 -name: TS25,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13899 ! TS25,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13901 -name: TS25,nucleus polposus,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13900 ! TS25,L1,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13902 -name: TS25,annulus fibrosus,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13900 ! TS25,L1,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13903 -name: TS25,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13899 ! TS25,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13904 -name: TS25,nucleus polposus,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13903 ! TS25,L2,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13905 -name: TS25,annulus fibrosus,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13903 ! TS25,L2,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13906 -name: TS25,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13899 ! TS25,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13907 -name: TS25,nucleus polposus,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13906 ! TS25,L3,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13908 -name: TS25,annulus fibrosus,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13906 ! TS25,L3,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13909 -name: TS25,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13899 ! TS25,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:1391 -name: TS15,intrahepatic part,biliary bud -namespace: mouse_anatomy_stages -is_a: UBERON:0009496 ! intrahepatic part of biliary bud -relationship: part_of EMAP:1388 ! TS15,biliary bud -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009496 ! intrahepatic part of biliary bud -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13910 -name: TS25,nucleus polposus,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13909 ! TS25,L4,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13911 -name: TS25,annulus fibrosus,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13909 ! TS25,L4,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13912 -name: TS25,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13899 ! TS25,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13913 -name: TS25,nucleus polposus,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13912 ! TS25,L5,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13914 -name: TS25,annulus fibrosus,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13912 ! TS25,L5,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13915 -name: TS25,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13899 ! TS25,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13916 -name: TS25,nucleus polposus,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13915 ! TS25,L6,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13917 -name: TS25,annulus fibrosus,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13915 ! TS25,L6,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:13918 -name: TS25,L1,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004617 ! lumbar vertebra 1 -relationship: part_of EMAP:11032 ! TS25,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004617 ! lumbar vertebra 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13919 -name: TS25,L2,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004618 ! lumbar vertebra 2 -relationship: part_of EMAP:11032 ! TS25,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004618 ! lumbar vertebra 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1392 -name: TS15,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:1386 ! TS15,foregut-midgut junction -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13920 -name: TS25,L3,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004619 ! lumbar vertebra 3 -relationship: part_of EMAP:11032 ! TS25,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004619 ! lumbar vertebra 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13921 -name: TS25,L4,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004620 ! lumbar vertebra 4 -relationship: part_of EMAP:11032 ! TS25,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004620 ! lumbar vertebra 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13922 -name: TS25,L5,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004621 ! lumbar vertebra 5 -relationship: part_of EMAP:11032 ! TS25,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004621 ! lumbar vertebra 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13923 -name: TS25,L6,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11032 ! TS25,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002414 ! lumbar vertebra - -[Term] -id: EMAP:13924 -name: TS25,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007257 ! intervertebral disk of sacral vertebra -relationship: part_of EMAP:11034 ! TS25,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007257 ! intervertebral disk of sacral vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13925 -name: TS25,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13924 ! TS25,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13926 -name: TS25,nucleus polposus,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13925 ! TS25,S1,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13927 -name: TS25,annulus fibrosus,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13925 ! TS25,S1,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13928 -name: TS25,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13924 ! TS25,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13929 -name: TS25,nucleus polposus,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13928 ! TS25,S2,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:1393 -name: TS15,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:1386 ! TS15,foregut-midgut junction -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13930 -name: TS25,annulus fibrosus,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13928 ! TS25,S2,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13931 -name: TS25,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13924 ! TS25,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13932 -name: TS25,nucleus polposus,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13931 ! TS25,S3,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13933 -name: TS25,annulus fibrosus,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13931 ! TS25,S3,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13934 -name: TS25,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13924 ! TS25,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13935 -name: TS25,nucleus polposus,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13934 ! TS25,S4,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13936 -name: TS25,annulus fibrosus,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13934 ! TS25,S4,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:13937 -name: TS25,S1,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004622 ! sacral vertebra 1 -relationship: part_of EMAP:11035 ! TS25,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004622 ! sacral vertebra 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13938 -name: TS25,S2,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004623 ! sacral vertebra 2 -relationship: part_of EMAP:11035 ! TS25,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004623 ! sacral vertebra 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13939 -name: TS25,S3,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004624 ! sacral vertebra 3 -relationship: part_of EMAP:11035 ! TS25,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004624 ! sacral vertebra 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1394 -name: TS15,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:1393 ! TS15,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13940 -name: TS25,S4,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004625 ! sacral vertebra 4 -relationship: part_of EMAP:11035 ! TS25,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004625 ! sacral vertebra 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13941 -name: TS25,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003449 ! tail intervertebral disc -relationship: part_of EMAP:11101 ! TS25,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003449 ! tail intervertebral disc -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:13942 -name: TS25,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13943 -name: TS25,nucleus polposus,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13942 ! TS25,Tl1,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13944 -name: TS25,annulus fibrosus,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13942 ! TS25,Tl1,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13945 -name: TS25,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13946 -name: TS25,nucleus polposus,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13945 ! TS25,Tl2,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13947 -name: TS25,annulus fibrosus,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13945 ! TS25,Tl2,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13948 -name: TS25,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13949 -name: TS25,nucleus polposus,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13948 ! TS25,Tl3,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1395 -name: TS15,ventral mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:1393 ! TS15,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:13950 -name: TS25,annulus fibrosus,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13948 ! TS25,Tl3,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13951 -name: TS25,Tl4,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13952 -name: TS25,nucleus polposus,Tl4,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13951 ! TS25,Tl4,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13953 -name: TS25,annulus fibrosus,Tl4,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13951 ! TS25,Tl4,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13954 -name: TS25,Tl5,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13955 -name: TS25,nucleus polposus,Tl5,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13954 ! TS25,Tl5,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13956 -name: TS25,annulus fibrosus,Tl5,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13954 ! TS25,Tl5,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13957 -name: TS25,Tl6,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13958 -name: TS25,nucleus polposus,Tl6,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13957 ! TS25,Tl6,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13959 -name: TS25,annulus fibrosus,Tl6,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13957 ! TS25,Tl6,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1396 -name: TS15,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1386 ! TS15,foregut-midgut junction -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:13960 -name: TS25,Tl7,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13961 -name: TS25,nucleus polposus,Tl7,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13960 ! TS25,Tl7,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13962 -name: TS25,annulus fibrosus,Tl7,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13960 ! TS25,Tl7,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13963 -name: TS25,Tl8,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13964 -name: TS25,nucleus polposus,Tl8,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13963 ! TS25,Tl8,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13965 -name: TS25,annulus fibrosus,Tl8,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13963 ! TS25,Tl8,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13966 -name: TS25,Tl9,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13967 -name: TS25,nucleus polposus,Tl9,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13966 ! TS25,Tl9,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13968 -name: TS25,annulus fibrosus,Tl9,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13966 ! TS25,Tl9,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13969 -name: TS25,Tl10,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1397 -name: TS15,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1363 ! TS15,gut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:13970 -name: TS25,nucleus polposus,Tl10,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13969 ! TS25,Tl10,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13971 -name: TS25,annulus fibrosus,Tl10,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13969 ! TS25,Tl10,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13972 -name: TS25,Tl11,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13941 ! TS25,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13973 -name: TS25,nucleus polposus,Tl11,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13972 ! TS25,Tl11,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13974 -name: TS25,annulus fibrosus,Tl11,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13972 ! TS25,Tl11,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:13975 -name: TS25,Tl1,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13976 -name: TS25,Tl2,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13977 -name: TS25,Tl3,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13978 -name: TS25,Tl4,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13979 -name: TS25,Tl5,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:1398 -name: TS15,associated mesenchyme,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1397 ! TS15,hindgut diverticulum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:13980 -name: TS25,Tl6,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13981 -name: TS25,Tl7,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13982 -name: TS25,Tl8,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13983 -name: TS25,Tl9,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13984 -name: TS25,Tl10,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13985 -name: TS25,Tl11,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11102 ! TS25,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:13986 -name: TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11101 ! TS25,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13987 -name: TS25,Tl12,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13988 -name: TS25,Tl13,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13989 -name: TS25,Tl14,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1399 -name: TS15,epithelium,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1397 ! TS15,hindgut diverticulum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:13990 -name: TS25,Tl15,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13991 -name: TS25,Tl16,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13992 -name: TS25,Tl17,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13993 -name: TS25,Tl18,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13994 -name: TS25,Tl19,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13995 -name: TS25,Tl20,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13996 -name: TS25,Tl21,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13997 -name: TS25,Tl22,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13998 -name: TS25,Tl23,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:13999 -name: TS25,Tl24,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14 -name: TS4,inner cell mass -namespace: mouse_anatomy_stages -is_a: UBERON:0000087 ! inner cell mass -relationship: part_of EMAP:12 ! TS4,embryo -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -intersection_of: UBERON:0000087 ! inner cell mass -intersection_of: exists_during MmusDv:0000008 ! Theiler stage 04 - -[Term] -id: EMAP:140 -name: TS10,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:137 ! TS10,trophectoderm -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1400 -name: TS15,vascular element,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1397 ! TS15,hindgut diverticulum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:14000 -name: TS25,Tl25,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14001 -name: TS25,Tl26,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14002 -name: TS25,Tl27,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:13986 ! TS25,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14003 -name: TS25,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11101 ! TS25,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14004 -name: TS25,Tl28,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14003 ! TS25,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14005 -name: TS25,Tl29,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14003 ! TS25,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14006 -name: TS25,Tl30,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14003 ! TS25,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14007 -name: TS25,Tl31,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14003 ! TS25,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14008 -name: TS25,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007254 ! intervertebral disk of thoracic vertebra -relationship: part_of EMAP:11036 ! TS25,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007254 ! intervertebral disk of thoracic vertebra -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14009 -name: TS25,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1401 -name: TS15,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:1363 ! TS15,gut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14010 -name: TS25,nucleus polposus,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14009 ! TS25,T1,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14011 -name: TS25,annulus fibrosus,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14009 ! TS25,T1,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14012 -name: TS25,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14013 -name: TS25,nucleus polposus,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14012 ! TS25,T2,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14014 -name: TS25,annulus fibrosus,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14012 ! TS25,T2,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14015 -name: TS25,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14016 -name: TS25,nucleus polposus,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14015 ! TS25,T3,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14017 -name: TS25,annulus fibrosus,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14015 ! TS25,T3,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14018 -name: TS25,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14019 -name: TS25,nucleus polposus,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14018 ! TS25,T4,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1402 -name: TS15,associated mesenchyme,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009503 ! associated mesenchyme of hindgut -relationship: part_of EMAP:1401 ! TS15,hindgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009503 ! associated mesenchyme of hindgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14020 -name: TS25,annulus fibrosus,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14018 ! TS25,T4,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14021 -name: TS25,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14022 -name: TS25,nucleus polposus,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14021 ! TS25,T5,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14023 -name: TS25,annulus fibrosus,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14021 ! TS25,T5,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14024 -name: TS25,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14025 -name: TS25,nucleus polposus,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14024 ! TS25,T6,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14026 -name: TS25,annulus fibrosus,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14024 ! TS25,T6,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14027 -name: TS25,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14028 -name: TS25,nucleus polposus,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14027 ! TS25,T7,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14029 -name: TS25,annulus fibrosus,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14027 ! TS25,T7,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1403 -name: TS15,epithelium,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003353 ! epithelium of hindgut -relationship: part_of EMAP:1401 ! TS15,hindgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14030 -name: TS25,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14031 -name: TS25,nucleus polposus,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14030 ! TS25,T8,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14032 -name: TS25,annulus fibrosus,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14030 ! TS25,T8,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14033 -name: TS25,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14034 -name: TS25,nucleus polposus,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14033 ! TS25,T9,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14035 -name: TS25,annulus fibrosus,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14033 ! TS25,T9,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14036 -name: TS25,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14037 -name: TS25,nucleus polposus,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14036 ! TS25,T10,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14038 -name: TS25,annulus fibrosus,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14036 ! TS25,T10,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14039 -name: TS25,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1404 -name: TS15,mesentery,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003394 ! mesentery of hindgut -relationship: part_of EMAP:1401 ! TS15,hindgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003394 ! mesentery of hindgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14040 -name: TS25,nucleus polposus,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14039 ! TS25,T11,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14041 -name: TS25,annulus fibrosus,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14039 ! TS25,T11,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14042 -name: TS25,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14043 -name: TS25,nucleus polposus,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14042 ! TS25,T12,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14044 -name: TS25,annulus fibrosus,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14042 ! TS25,T12,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14045 -name: TS25,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14008 ! TS25,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14046 -name: TS25,nucleus polposus,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14045 ! TS25,T13,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14047 -name: TS25,annulus fibrosus,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14045 ! TS25,T13,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14048 -name: TS25,T1,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14049 -name: TS25,T2,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:1405 -name: TS15,dorsal mesentery,mesentery,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1404 ! TS15,mesentery,hindgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0003394 ! mesentery of hindgut - -[Term] -id: EMAP:14050 -name: TS25,T3,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14051 -name: TS25,T4,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14052 -name: TS25,T5,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14053 -name: TS25,T6,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14054 -name: TS25,T7,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14055 -name: TS25,T8,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14056 -name: TS25,T9,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14057 -name: TS25,T10,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14058 -name: TS25,T11,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14059 -name: TS25,T12,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:1406 -name: TS15,vascular element,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1401 ! TS15,hindgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:14060 -name: TS25,T13,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12760 ! TS25,rib -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14061 -name: TS25,T1,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004626 ! thoracic vertebra 1 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004626 ! thoracic vertebra 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14062 -name: TS25,T2,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004627 ! thoracic vertebra 2 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004627 ! thoracic vertebra 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14063 -name: TS25,T3,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004628 ! thoracic vertebra 3 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004628 ! thoracic vertebra 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14064 -name: TS25,T4,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004629 ! thoracic vertebra 4 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004629 ! thoracic vertebra 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14065 -name: TS25,T5,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004630 ! thoracic vertebra 5 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004630 ! thoracic vertebra 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14066 -name: TS25,T6,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004631 ! thoracic vertebra 6 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004631 ! thoracic vertebra 6 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14067 -name: TS25,T7,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004632 ! thoracic vertebra 7 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004632 ! thoracic vertebra 7 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14068 -name: TS25,T8,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0011050 ! thoracic vertebra 8 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011050 ! thoracic vertebra 8 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14069 -name: TS25,T9,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004633 ! thoracic vertebra 9 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004633 ! thoracic vertebra 9 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:1407 -name: TS15,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:1363 ! TS15,gut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14070 -name: TS25,T10,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004634 ! thoracic vertebra 10 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004634 ! thoracic vertebra 10 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14071 -name: TS25,T11,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004635 ! thoracic vertebra 11 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004635 ! thoracic vertebra 11 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14072 -name: TS25,T12,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004636 ! thoracic vertebra 12 -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004636 ! thoracic vertebra 12 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:14073 -name: TS25,T13,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:11041 ! TS25,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002347 ! thoracic vertebra - -[Term] -id: EMAP:14074 -name: TS26,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007252 ! intervertebral disk of cervical vertebra -relationship: part_of EMAP:12384 ! TS26,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007252 ! intervertebral disk of cervical vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14075 -name: TS26,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007266 ! intervertebral disk of atlas -relationship: part_of EMAP:14074 ! TS26,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007266 ! intervertebral disk of atlas -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14076 -name: TS26,nucleus polposus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14075 ! TS26,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:14077 -name: TS26,annulus fibrosus,C1,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14075 ! TS26,C1,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007266 ! intervertebral disk of atlas - -[Term] -id: EMAP:14078 -name: TS26,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007265 ! intervertebral disk of axis -relationship: part_of EMAP:14074 ! TS26,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007265 ! intervertebral disk of axis -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14079 -name: TS26,nucleus polposus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14078 ! TS26,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:1408 -name: TS15,associated mesenchyme,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009478 ! associated mesenchyme of midgut -relationship: part_of EMAP:1407 ! TS15,midgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009478 ! associated mesenchyme of midgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14080 -name: TS26,annulus fibrosus,C2,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14078 ! TS26,C2,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007265 ! intervertebral disk of axis - -[Term] -id: EMAP:14081 -name: TS26,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007260 ! intervertebral disk of third cervical vertebra -relationship: part_of EMAP:14074 ! TS26,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007260 ! intervertebral disk of third cervical vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14082 -name: TS26,nucleus polposus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14081 ! TS26,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:14083 -name: TS26,annulus fibrosus,C3,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14081 ! TS26,C3,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007260 ! intervertebral disk of third cervical vertebra - -[Term] -id: EMAP:14084 -name: TS26,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -relationship: part_of EMAP:14074 ! TS26,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14085 -name: TS26,nucleus polposus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14084 ! TS26,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:14086 -name: TS26,annulus fibrosus,C4,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14084 ! TS26,C4,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: EMAP:14087 -name: TS26,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -relationship: part_of EMAP:14074 ! TS26,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14088 -name: TS26,nucleus polposus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14087 ! TS26,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:14089 -name: TS26,annulus fibrosus,C5,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14087 ! TS26,C5,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: EMAP:1409 -name: TS15,epithelium,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003352 ! epithelium of midgut -relationship: part_of EMAP:1407 ! TS15,midgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003352 ! epithelium of midgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14090 -name: TS26,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -relationship: part_of EMAP:14074 ! TS26,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14091 -name: TS26,nucleus polposus,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14090 ! TS26,C6,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007263 ! intervertebral disk of sixth cervical vertebra - -[Term] -id: EMAP:14092 -name: TS26,annulus fibrosus,C6,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14090 ! TS26,C6,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007263 ! intervertebral disk of sixth cervical vertebra - -[Term] -id: EMAP:14093 -name: TS26,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -relationship: part_of EMAP:14074 ! TS26,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14094 -name: TS26,nucleus polposus,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14093 ! TS26,C7,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007264 ! intervertebral disk of seventh cervical vertebra - -[Term] -id: EMAP:14095 -name: TS26,annulus fibrosus,C7,intervertebral disc,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14093 ! TS26,C7,intervertebral disc,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007264 ! intervertebral disk of seventh cervical vertebra - -[Term] -id: EMAP:14098 -name: TS26,C3,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004612 ! mammalian cervical vertebra 3 -relationship: part_of EMAP:12385 ! TS26,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004612 ! mammalian cervical vertebra 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14099 -name: TS26,C4,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004613 ! mammalian cervical vertebra 4 -relationship: part_of EMAP:12385 ! TS26,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004613 ! mammalian cervical vertebra 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:141 -name: TS10,ectoplacental cone -namespace: mouse_anatomy_stages -is_a: UBERON:0004364 ! ectoplacental cone -relationship: part_of EMAP:140 ! TS10,polar trophectoderm -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0004364 ! ectoplacental cone -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1410 -name: TS15,mesentery,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:1407 ! TS15,midgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14100 -name: TS26,C5,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004614 ! mammalian cervical vertebra 5 -relationship: part_of EMAP:12385 ! TS26,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004614 ! mammalian cervical vertebra 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14101 -name: TS26,C6,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004615 ! mammalian cervical vertebra 6 -relationship: part_of EMAP:12385 ! TS26,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004615 ! mammalian cervical vertebra 6 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14102 -name: TS26,C7,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004616 ! mammalian cervical vertebra 7 -relationship: part_of EMAP:12385 ! TS26,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004616 ! mammalian cervical vertebra 7 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14103 -name: TS26,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007255 ! intervertebral disk of lumbar vertebra -relationship: part_of EMAP:12391 ! TS26,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007255 ! intervertebral disk of lumbar vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14104 -name: TS26,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14103 ! TS26,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14105 -name: TS26,nucleus polposus,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14104 ! TS26,L1,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14106 -name: TS26,annulus fibrosus,L1,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14104 ! TS26,L1,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14107 -name: TS26,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14103 ! TS26,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14108 -name: TS26,nucleus polposus,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14107 ! TS26,L2,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14109 -name: TS26,annulus fibrosus,L2,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14107 ! TS26,L2,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:1411 -name: TS15,dorsal mesentery,mesentery,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:1410 ! TS15,mesentery,midgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14110 -name: TS26,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14103 ! TS26,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14111 -name: TS26,nucleus polposus,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14110 ! TS26,L3,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14112 -name: TS26,annulus fibrosus,L3,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14110 ! TS26,L3,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14113 -name: TS26,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14103 ! TS26,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14114 -name: TS26,nucleus polposus,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14113 ! TS26,L4,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14115 -name: TS26,annulus fibrosus,L4,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14113 ! TS26,L4,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14116 -name: TS26,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14103 ! TS26,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14117 -name: TS26,nucleus polposus,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14116 ! TS26,L5,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14118 -name: TS26,annulus fibrosus,L5,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14116 ! TS26,L5,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14119 -name: TS26,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14103 ! TS26,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:1412 -name: TS15,vascular element,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1407 ! TS15,midgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:14120 -name: TS26,nucleus polposus,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14119 ! TS26,L6,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14121 -name: TS26,annulus fibrosus,L6,intervertebral disc,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14119 ! TS26,L6,intervertebral disc,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007255 ! intervertebral disk of lumbar vertebra - -[Term] -id: EMAP:14122 -name: TS26,L1,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004617 ! lumbar vertebra 1 -relationship: part_of EMAP:12392 ! TS26,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004617 ! lumbar vertebra 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14123 -name: TS26,L2,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004618 ! lumbar vertebra 2 -relationship: part_of EMAP:12392 ! TS26,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004618 ! lumbar vertebra 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14124 -name: TS26,L3,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004619 ! lumbar vertebra 3 -relationship: part_of EMAP:12392 ! TS26,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004619 ! lumbar vertebra 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14125 -name: TS26,L4,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004620 ! lumbar vertebra 4 -relationship: part_of EMAP:12392 ! TS26,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004620 ! lumbar vertebra 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14126 -name: TS26,L5,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004621 ! lumbar vertebra 5 -relationship: part_of EMAP:12392 ! TS26,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004621 ! lumbar vertebra 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14127 -name: TS26,L6,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12392 ! TS26,vertebra,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002414 ! lumbar vertebra - -[Term] -id: EMAP:14128 -name: TS26,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007257 ! intervertebral disk of sacral vertebra -relationship: part_of EMAP:12394 ! TS26,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007257 ! intervertebral disk of sacral vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14129 -name: TS26,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14128 ! TS26,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:1413 -name: TS15,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:1362 ! TS15,alimentary system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14130 -name: TS26,nucleus polposus,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14129 ! TS26,S1,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14131 -name: TS26,annulus fibrosus,S1,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14129 ! TS26,S1,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14132 -name: TS26,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14128 ! TS26,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14133 -name: TS26,nucleus polposus,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14132 ! TS26,S2,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14134 -name: TS26,annulus fibrosus,S2,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14132 ! TS26,S2,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14135 -name: TS26,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14128 ! TS26,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14136 -name: TS26,nucleus polposus,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14135 ! TS26,S3,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14137 -name: TS26,annulus fibrosus,S3,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14135 ! TS26,S3,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14138 -name: TS26,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14128 ! TS26,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14139 -name: TS26,nucleus polposus,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14138 ! TS26,S4,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:1414 -name: TS15,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:1413 ! TS15,oral region,alimentary system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14140 -name: TS26,annulus fibrosus,S4,intervertebral disc,sacral region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14138 ! TS26,S4,intervertebral disc,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14141 -name: TS26,S1,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004622 ! sacral vertebra 1 -relationship: part_of EMAP:12395 ! TS26,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004622 ! sacral vertebra 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14142 -name: TS26,S2,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004623 ! sacral vertebra 2 -relationship: part_of EMAP:12395 ! TS26,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004623 ! sacral vertebra 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14143 -name: TS26,S3,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004624 ! sacral vertebra 3 -relationship: part_of EMAP:12395 ! TS26,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004624 ! sacral vertebra 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14144 -name: TS26,S4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12395 ! TS26,vertebra,sacral region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007257 ! intervertebral disk of sacral vertebra - -[Term] -id: EMAP:14145 -name: TS26,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003449 ! tail intervertebral disc -relationship: part_of EMAP:12461 ! TS26,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0003449 ! tail intervertebral disc -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14146 -name: TS26,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14147 -name: TS26,nucleus polposus,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14146 ! TS26,Tl1,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14148 -name: TS26,annulus fibrosus,Tl1,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14146 ! TS26,Tl1,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14149 -name: TS26,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1415 -name: TS15,pituitary,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1414 ! TS15,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0010047 ! oral gland - -[Term] -id: EMAP:14150 -name: TS26,nucleus polposus,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14149 ! TS26,Tl2,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14151 -name: TS26,annulus fibrosus,Tl2,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14149 ! TS26,Tl2,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14152 -name: TS26,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14153 -name: TS26,nucleus polposus,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14152 ! TS26,Tl3,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14154 -name: TS26,annulus fibrosus,Tl3,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14152 ! TS26,Tl3,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14155 -name: TS26,Tl4,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14156 -name: TS26,nucleus polposus,Tl4,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14155 ! TS26,Tl4,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14157 -name: TS26,annulus fibrosus,Tl4,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14155 ! TS26,Tl4,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14158 -name: TS26,Tl5,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14159 -name: TS26,nucleus polposus,Tl5,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14158 ! TS26,Tl5,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1416 -name: TS15,Rathke's pouch,pituitary,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005356 ! Rathke's pouch -relationship: part_of EMAP:1415 ! TS15,pituitary,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14160 -name: TS26,annulus fibrosus,Tl5,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14158 ! TS26,Tl5,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14161 -name: TS26,Tl6,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14162 -name: TS26,nucleus polposus,Tl6,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14161 ! TS26,Tl6,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14163 -name: TS26,annulus fibrosus,Tl6,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14161 ! TS26,Tl6,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14164 -name: TS26,Tl7,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14165 -name: TS26,nucleus polposus,Tl7,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14164 ! TS26,Tl7,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14166 -name: TS26,annulus fibrosus,Tl7,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14164 ! TS26,Tl7,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14167 -name: TS26,Tl8,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14168 -name: TS26,nucleus polposus,Tl8,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14167 ! TS26,Tl8,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14169 -name: TS26,annulus fibrosus,Tl8,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14167 ! TS26,Tl8,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1417 -name: TS15,rest of ectoderm,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1413 ! TS15,oral region,alimentary system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0000165 ! mouth - -[Term] -id: EMAP:14170 -name: TS26,Tl9,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14171 -name: TS26,nucleus polposus,Tl9,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14170 ! TS26,Tl9,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14172 -name: TS26,annulus fibrosus,Tl9,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14170 ! TS26,Tl9,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14173 -name: TS26,Tl10,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14174 -name: TS26,nucleus polposus,Tl10,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14173 ! TS26,Tl10,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14175 -name: TS26,annulus fibrosus,Tl10,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14173 ! TS26,Tl10,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14176 -name: TS26,Tl11,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14177 -name: TS26,nucleus polposus,Tl11,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14176 ! TS26,Tl11,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14178 -name: TS26,annulus fibrosus,Tl11,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14176 ! TS26,Tl11,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14179 -name: TS26,Tl12,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1418 -name: TS15,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:1361 ! TS15,visceral organ -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14180 -name: TS26,nucleus polposus,Tl12,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14179 ! TS26,Tl12,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14181 -name: TS26,annulus fibrosus,Tl12,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14179 ! TS26,Tl12,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14182 -name: TS26,Tl13,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14183 -name: TS26,nucleus polposus,Tl13,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14182 ! TS26,Tl13,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14184 -name: TS26,annulus fibrosus,Tl13,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14182 ! TS26,Tl13,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14185 -name: TS26,Tl14,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14186 -name: TS26,nucleus polposus,Tl14,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14185 ! TS26,Tl14,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14187 -name: TS26,annulus fibrosus,Tl14,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14185 ! TS26,Tl14,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14188 -name: TS26,Tl15,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14189 -name: TS26,nucleus polposus,Tl15,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14188 ! TS26,Tl15,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:1419 -name: TS15,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:1418 ! TS15,respiratory system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14190 -name: TS26,annulus fibrosus,Tl15,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14188 ! TS26,Tl15,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14191 -name: TS26,Tl16,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14192 -name: TS26,nucleus polposus,Tl16,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14191 ! TS26,Tl16,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14193 -name: TS26,annulus fibrosus,Tl16,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14191 ! TS26,Tl16,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14194 -name: TS26,Tl17,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14195 -name: TS26,nucleus polposus,Tl17,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14194 ! TS26,Tl17,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14196 -name: TS26,annulus fibrosus,Tl17,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14194 ! TS26,Tl17,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14197 -name: TS26,Tl18,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14198 -name: TS26,nucleus polposus,Tl18,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14197 ! TS26,Tl18,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14199 -name: TS26,annulus fibrosus,Tl18,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14197 ! TS26,Tl18,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:142 -name: TS10,cytotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000319 ! cytotrophoblast -relationship: part_of EMAP:141 ! TS10,ectoplacental cone -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0000319 ! cytotrophoblast -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1420 -name: TS15,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1419 ! TS15,lung -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:14200 -name: TS26,Tl19,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14145 ! TS26,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14201 -name: TS26,nucleus polposus,Tl19,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14200 ! TS26,Tl19,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14202 -name: TS26,annulus fibrosus,Tl19,intervertebral disc,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14200 ! TS26,Tl19,intervertebral disc,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0003449 ! tail intervertebral disc - -[Term] -id: EMAP:14203 -name: TS26,Tl1,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14204 -name: TS26,Tl2,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14205 -name: TS26,Tl3,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14206 -name: TS26,Tl4,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14207 -name: TS26,Tl5,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14208 -name: TS26,Tl6,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14209 -name: TS26,Tl7,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:1421 -name: TS15,associated mesenchyme,left lung rudiment -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:1420 ! TS15,left lung rudiment -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14210 -name: TS26,Tl8,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14211 -name: TS26,Tl9,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14212 -name: TS26,Tl10,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14213 -name: TS26,Tl11,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14214 -name: TS26,Tl12,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14215 -name: TS26,Tl13,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14216 -name: TS26,Tl14,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14217 -name: TS26,Tl15,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14218 -name: TS26,Tl16,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14219 -name: TS26,Tl17,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:1422 -name: TS15,epithelium,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1420 ! TS15,left lung rudiment -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:14220 -name: TS26,Tl18,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14221 -name: TS26,Tl19,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12462 ! TS26,vertebra,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0001095 ! caudal vertebra - -[Term] -id: EMAP:14222 -name: TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12461 ! TS26,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14223 -name: TS26,Tl20,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14222 ! TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14224 -name: TS26,Tl21,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14222 ! TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14225 -name: TS26,Tl22,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14222 ! TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14226 -name: TS26,Tl23,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14222 ! TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14227 -name: TS26,Tl24,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14222 ! TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14228 -name: TS26,Tl25,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14222 ! TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14229 -name: TS26,Tl26,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14222 ! TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:1423 -name: TS15,vascular element,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1420 ! TS15,left lung rudiment -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:14230 -name: TS26,Tl27,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14222 ! TS26,vertebral cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14231 -name: TS26,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12461 ! TS26,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14232 -name: TS26,Tl28,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14231 ! TS26,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14233 -name: TS26,Tl29,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14231 ! TS26,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14234 -name: TS26,Tl30,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14231 ! TS26,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14235 -name: TS26,Tl31,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14231 ! TS26,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:14236 -name: TS26,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0007254 ! intervertebral disk of thoracic vertebra -relationship: part_of EMAP:12396 ! TS26,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0007254 ! intervertebral disk of thoracic vertebra -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14237 -name: TS26,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14238 -name: TS26,nucleus polposus,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14237 ! TS26,T1,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14239 -name: TS26,annulus fibrosus,T1,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14237 ! TS26,T1,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1424 -name: TS15,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1419 ! TS15,lung -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:14240 -name: TS26,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14241 -name: TS26,nucleus polposus,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14240 ! TS26,T2,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14242 -name: TS26,annulus fibrosus,T2,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14240 ! TS26,T2,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14243 -name: TS26,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14244 -name: TS26,nucleus polposus,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14243 ! TS26,T3,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14245 -name: TS26,annulus fibrosus,T3,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14243 ! TS26,T3,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14246 -name: TS26,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14247 -name: TS26,nucleus polposus,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14246 ! TS26,T4,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14248 -name: TS26,annulus fibrosus,T4,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14246 ! TS26,T4,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14249 -name: TS26,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1425 -name: TS15,associated mesenchyme,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1424 ! TS15,right lung rudiment -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:14250 -name: TS26,nucleus polposus,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14249 ! TS26,T5,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14251 -name: TS26,annulus fibrosus,T5,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14249 ! TS26,T5,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14252 -name: TS26,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14253 -name: TS26,nucleus polposus,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14252 ! TS26,T6,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14254 -name: TS26,annulus fibrosus,T6,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14252 ! TS26,T6,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14255 -name: TS26,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14256 -name: TS26,nucleus polposus,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14255 ! TS26,T7,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14257 -name: TS26,annulus fibrosus,T7,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14255 ! TS26,T7,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14258 -name: TS26,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14259 -name: TS26,nucleus polposus,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14258 ! TS26,T8,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1426 -name: TS15,epithelium,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1424 ! TS15,right lung rudiment -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:14260 -name: TS26,annulus fibrosus,T8,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14258 ! TS26,T8,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14261 -name: TS26,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14262 -name: TS26,nucleus polposus,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14261 ! TS26,T9,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14263 -name: TS26,annulus fibrosus,T9,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14261 ! TS26,T9,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14264 -name: TS26,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14265 -name: TS26,nucleus polposus,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14264 ! TS26,T10,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14266 -name: TS26,annulus fibrosus,T10,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14264 ! TS26,T10,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14267 -name: TS26,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14268 -name: TS26,nucleus polposus,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14267 ! TS26,T11,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14269 -name: TS26,annulus fibrosus,T11,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14267 ! TS26,T11,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:1427 -name: TS15,vascular element,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1424 ! TS15,right lung rudiment -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:14270 -name: TS26,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14271 -name: TS26,nucleus polposus,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14270 ! TS26,T12,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14272 -name: TS26,annulus fibrosus,T12,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14270 ! TS26,T12,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14273 -name: TS26,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14236 ! TS26,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14274 -name: TS26,nucleus polposus,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14273 ! TS26,T13,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14275 -name: TS26,annulus fibrosus,T13,intervertebral disc,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:14273 ! TS26,T13,intervertebral disc,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0007254 ! intervertebral disk of thoracic vertebra - -[Term] -id: EMAP:14276 -name: TS26,T1,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14277 -name: TS26,T2,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14278 -name: TS26,T3,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14279 -name: TS26,T4,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:1428 -name: TS15,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:1418 ! TS15,respiratory system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14280 -name: TS26,T5,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14281 -name: TS26,T6,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14282 -name: TS26,T7,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14283 -name: TS26,T8,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14284 -name: TS26,T9,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14285 -name: TS26,T10,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14286 -name: TS26,T11,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14287 -name: TS26,T12,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14288 -name: TS26,T13,rib -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12761 ! TS26,rib -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002228 ! rib - -[Term] -id: EMAP:14289 -name: TS26,T1,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004626 ! thoracic vertebra 1 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004626 ! thoracic vertebra 1 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:1429 -name: TS15,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:1428 ! TS15,respiratory tract -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14290 -name: TS26,T2,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004627 ! thoracic vertebra 2 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004627 ! thoracic vertebra 2 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14291 -name: TS26,T3,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004628 ! thoracic vertebra 3 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004628 ! thoracic vertebra 3 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14292 -name: TS26,T4,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004629 ! thoracic vertebra 4 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004629 ! thoracic vertebra 4 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14293 -name: TS26,T5,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004630 ! thoracic vertebra 5 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004630 ! thoracic vertebra 5 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14294 -name: TS26,T6,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004631 ! thoracic vertebra 6 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004631 ! thoracic vertebra 6 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14295 -name: TS26,T7,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004632 ! thoracic vertebra 7 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004632 ! thoracic vertebra 7 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14296 -name: TS26,T8,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0011050 ! thoracic vertebra 8 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0011050 ! thoracic vertebra 8 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14297 -name: TS26,T9,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004633 ! thoracic vertebra 9 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004633 ! thoracic vertebra 9 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14298 -name: TS26,T10,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004634 ! thoracic vertebra 10 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004634 ! thoracic vertebra 10 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14299 -name: TS26,T11,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004635 ! thoracic vertebra 11 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004635 ! thoracic vertebra 11 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:143 -name: TS10,syncytiotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000371 ! syncytiotrophoblast -relationship: part_of EMAP:141 ! TS10,ectoplacental cone -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0000371 ! syncytiotrophoblast -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1430 -name: TS15,laryngo-tracheal groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006257 ! laryngotracheal groove -relationship: part_of EMAP:1429 ! TS15,lower,respiratory tract -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006257 ! laryngotracheal groove -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:14300 -name: TS26,T12,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0004636 ! thoracic vertebra 12 -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -intersection_of: UBERON:0004636 ! thoracic vertebra 12 -intersection_of: exists_during MmusDv:0000035 ! Theiler stage 26 - -[Term] -id: EMAP:14301 -name: TS26,T13,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:12401 ! TS26,vertebra,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000035 ! Theiler stage 26 -relationship: part_of UBERON:0002347 ! thoracic vertebra - -[Term] -id: EMAP:1431 -name: TS15,tracheal diverticulum -namespace: mouse_anatomy_stages -is_a: UBERON:0006303 ! tracheal diverticulum -relationship: part_of EMAP:1430 ! TS15,laryngo-tracheal groove -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006303 ! tracheal diverticulum -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1432 -name: TS15,associated mesenchyme,tracheal diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1431 ! TS15,tracheal diverticulum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006303 ! tracheal diverticulum - -[Term] -id: EMAP:1433 -name: TS15,epithelium,tracheal diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1431 ! TS15,tracheal diverticulum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006303 ! tracheal diverticulum - -[Term] -id: EMAP:1434 -name: TS15,vascular element,tracheal diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1431 ! TS15,tracheal diverticulum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006303 ! tracheal diverticulum - -[Term] -id: EMAP:1435 -name: TS15,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0004122 ! genitourinary system -relationship: part_of EMAP:1361 ! TS15,visceral organ -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1436 -name: TS15,mesonephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000080 ! mesonephros -relationship: part_of EMAP:1435 ! TS15,urogenital system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1437 -name: TS15,associated mesenchyme,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1436 ! TS15,mesonephros -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:1438 -name: TS15,non-tubular part,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1436 ! TS15,mesonephros -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:1439 -name: TS15,tubule,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1436 ! TS15,mesonephros -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:144 -name: TS10,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0001040 ! yolk sac -relationship: part_of EMAP:118 ! TS10,extraembryonic component -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0001040 ! yolk sac -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1440 -name: TS15,nephric cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005792 ! nephric ridge -relationship: part_of EMAP:1435 ! TS15,urogenital system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0005792 ! nephric ridge -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1441 -name: TS15,nephric duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003074 ! mesonephric duct -relationship: part_of EMAP:1435 ! TS15,urogenital system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1442 -name: TS15,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1435 ! TS15,urogenital system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004122 ! genitourinary system - -[Term] -id: EMAP:1443 -name: TS15,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:1001 ! TS15,embryo -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1444 -name: TS15,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1443 ! TS15,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:1445 -name: TS15,mesenchyme derived from neural crest,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1444 ! TS15,mesenchyme,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:1446 -name: TS15,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:1444 ! TS15,mesenchyme,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1447 -name: TS15,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1446 ! TS15,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:1448 -name: TS15,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1443 ! TS15,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:1449 -name: TS15,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:1448 ! TS15,nervous system,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:145 -name: TS10,endoderm,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003257 ! yolk sac endoderm -relationship: part_of EMAP:144 ! TS10,yolk sac -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0003257 ! yolk sac endoderm -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1450 -name: TS15,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:1449 ! TS15,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1451 -name: TS15,neural plate,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003075 ! neural plate -relationship: part_of EMAP:1450 ! TS15,future spinal cord,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0003075 ! neural plate -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1452 -name: TS15,neural tube,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:1450 ! TS15,future spinal cord,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1453 -name: TS15,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1454 -name: TS15,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:1453 ! TS15,extraembryonic component -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1455 -name: TS15,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:1454 ! TS15,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1456 -name: TS15,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:1455 ! TS15,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:1457 -name: TS15,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1456 ! TS15,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:1458 -name: TS15,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1454 ! TS15,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:1459 -name: TS15,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:1458 ! TS15,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:146 -name: TS10,mesoderm,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003264 ! mesoderm of yolk sac -relationship: part_of EMAP:144 ! TS10,yolk sac -relationship: exists_during MmusDv:0000015 ! Theiler stage 10 -intersection_of: UBERON:0003264 ! mesoderm of yolk sac -intersection_of: exists_during MmusDv:0000015 ! Theiler stage 10 - -[Term] -id: EMAP:1460 -name: TS15,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1459 ! TS15,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:1461 -name: TS16,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1462 -name: TS16,branchial arch -namespace: mouse_anatomy_stages -is_a: UBERON:0002539 ! pharyngeal arch -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1463 -name: TS16,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0004362 ! pharyngeal arch 1 -relationship: part_of EMAP:1462 ! TS16,branchial arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1464 -name: TS16,branchial groove,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft -relationship: part_of EMAP:1463 ! TS16,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1465 -name: TS16,ectoderm,branchial groove,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1464 ! TS16,branchial groove,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EMAP:1466 -name: TS16,branchial membrane,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:1463 ! TS16,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1467 -name: TS16,ectoderm,branchial membrane,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1466 ! TS16,branchial membrane,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:1468 -name: TS16,endoderm,branchial membrane,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1466 ! TS16,branchial membrane,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:1469 -name: TS16,branchial pouch,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007122 ! pharyngeal pouch 1 -relationship: part_of EMAP:1463 ! TS16,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:147 -name: TS11,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1470 -name: TS16,endoderm,branchial pouch,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1469 ! TS16,branchial pouch,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EMAP:1471 -name: TS16,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007237 ! 1st arch mandibular component -relationship: part_of EMAP:1463 ! TS16,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007237 ! 1st arch mandibular component -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1472 -name: TS16,ectoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013155 ! 1st arch mandibular ectoderm -relationship: part_of EMAP:1471 ! TS16,mandibular component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0013155 ! 1st arch mandibular ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1473 -name: TS16,endoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013156 ! 1st arch mandibular endoderm -relationship: part_of EMAP:1471 ! TS16,mandibular component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0013156 ! 1st arch mandibular endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1474 -name: TS16,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009584 ! 1st arch mandibular mesenchyme -relationship: part_of EMAP:1471 ! TS16,mandibular component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009584 ! 1st arch mandibular mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1475 -name: TS16,mesenchyme derived from head mesoderm,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1474 ! TS16,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:1476 -name: TS16,mesenchyme derived from neural crest,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1474 ! TS16,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:1477 -name: TS16,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007238 ! 1st arch maxillary component -relationship: part_of EMAP:1463 ! TS16,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007238 ! 1st arch maxillary component -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1478 -name: TS16,ectoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0012313 ! 1st arch maxillary ectoderm -relationship: part_of EMAP:1477 ! TS16,maxillary component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012313 ! 1st arch maxillary ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1479 -name: TS16,endoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013154 ! 1st arch maxillary endoderm -relationship: part_of EMAP:1477 ! TS16,maxillary component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0013154 ! 1st arch maxillary endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:148 -name: TS11,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1480 -name: TS16,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010045 ! 1st arch maxillary mesenchyme -relationship: part_of EMAP:1477 ! TS16,maxillary component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010045 ! 1st arch maxillary mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1481 -name: TS16,mesenchyme derived from head mesoderm,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1480 ! TS16,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:1482 -name: TS16,mesenchyme derived from neural crest,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1480 ! TS16,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:1483 -name: TS16,maxillary-mandibular groove -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1463 ! TS16,1st arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:1484 -name: TS16,ectoderm,maxillary-mandibular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -relationship: part_of EMAP:1483 ! TS16,maxillary-mandibular groove -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1485 -name: TS16,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003066 ! pharyngeal arch 2 -relationship: part_of EMAP:1462 ! TS16,branchial arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1486 -name: TS16,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005873 ! 2nd arch pharyngeal cleft -relationship: part_of EMAP:1485 ! TS16,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005873 ! 2nd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1487 -name: TS16,ectoderm,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:1486 ! TS16,branchial groove,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1488 -name: TS16,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009215 ! pharyngeal membrane of 2nd arch -relationship: part_of EMAP:1485 ! TS16,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009215 ! pharyngeal membrane of 2nd arch -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1489 -name: TS16,ectoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:1488 ! TS16,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:149 -name: TS11,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:148 ! TS11,cavities and their linings -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1490 -name: TS16,endoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:1488 ! TS16,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1491 -name: TS16,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007123 ! pharyngeal pouch 2 -relationship: part_of EMAP:1485 ! TS16,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1492 -name: TS16,endoderm,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:1491 ! TS16,branchial pouch,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1493 -name: TS16,ectoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:1485 ! TS16,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1494 -name: TS16,endoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:1485 ! TS16,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1495 -name: TS16,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005689 ! 2nd arch mesenchyme -relationship: part_of EMAP:1485 ! TS16,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1496 -name: TS16,mesenchyme derived from head mesoderm,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:1495 ! TS16,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1497 -name: TS16,mesenchyme derived from neural crest,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -relationship: part_of EMAP:1495 ! TS16,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1498 -name: TS16,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003114 ! pharyngeal arch 3 -relationship: part_of EMAP:1462 ! TS16,branchial arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1499 -name: TS16,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005874 ! 3rd arch pharyngeal cleft -relationship: part_of EMAP:1498 ! TS16,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005874 ! 3rd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:15 -name: TS4,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000008 ! Theiler stage 04 - -[Term] -id: EMAP:150 -name: TS11,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1500 -name: TS16,ectoderm,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:1499 ! TS16,branchial groove,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1501 -name: TS16,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009216 ! pharyngeal membrane of 3rd arch -relationship: part_of EMAP:1498 ! TS16,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009216 ! pharyngeal membrane of 3rd arch -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1502 -name: TS16,ectoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:1501 ! TS16,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1503 -name: TS16,endoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:1501 ! TS16,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1504 -name: TS16,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007124 ! pharyngeal pouch 3 -relationship: part_of EMAP:1498 ! TS16,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1505 -name: TS16,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:1504 ! TS16,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1506 -name: TS16,dorsal,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -relationship: part_of EMAP:1505 ! TS16,endoderm,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1507 -name: TS16,ventral,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -relationship: part_of EMAP:1505 ! TS16,endoderm,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1508 -name: TS16,ectoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:1498 ! TS16,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1509 -name: TS16,endoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:1498 ! TS16,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:151 -name: TS11,neural ectoderm,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0002346 ! neurectoderm -relationship: part_of EMAP:150 ! TS11,ectoderm,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1510 -name: TS16,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005690 ! 3rd arch mesenchyme -relationship: part_of EMAP:1498 ! TS16,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1511 -name: TS16,mesenchyme derived from head mesoderm,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:1510 ! TS16,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1512 -name: TS16,mesenchyme derived from neural crest,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -relationship: part_of EMAP:1510 ! TS16,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1513 -name: TS16,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003115 ! pharyngeal arch 4 -relationship: part_of EMAP:1462 ! TS16,branchial arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1514 -name: TS16,branchial groove,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005875 ! 4th arch pharyngeal cleft -relationship: part_of EMAP:1513 ! TS16,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005875 ! 4th arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1515 -name: TS16,ectoderm,branchial groove,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:1514 ! TS16,branchial groove,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1516 -name: TS16,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009217 ! pharyngeal membrane of 4th arch -relationship: part_of EMAP:1513 ! TS16,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009217 ! pharyngeal membrane of 4th arch -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1517 -name: TS16,ectoderm,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:1516 ! TS16,branchial membrane,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1518 -name: TS16,endoderm,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:1516 ! TS16,branchial membrane,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1519 -name: TS16,branchial pouch,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007125 ! pharyngeal pouch 4 -relationship: part_of EMAP:1513 ! TS16,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:152 -name: TS11,future brain -namespace: mouse_anatomy_stages -is_a: UBERON:0006238 ! future brain -relationship: part_of EMAP:151 ! TS11,neural ectoderm,ectoderm,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0006238 ! future brain -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1520 -name: TS16,endoderm,branchial pouch,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:1519 ! TS16,branchial pouch,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1521 -name: TS16,ectoderm,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:1513 ! TS16,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1522 -name: TS16,endoderm,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:1513 ! TS16,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1523 -name: TS16,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005691 ! 4th arch mesenchyme -relationship: part_of EMAP:1513 ! TS16,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005691 ! 4th arch mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1524 -name: TS16,mesenchyme derived from head mesoderm,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -relationship: part_of EMAP:1523 ! TS16,mesenchyme,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1525 -name: TS16,mesenchyme derived from neural crest,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010256 ! 4th arch mesenchyme from neural crest -relationship: part_of EMAP:1523 ! TS16,mesenchyme,4th arch -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010256 ! 4th arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1526 -name: TS16,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1527 -name: TS16,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:1526 ! TS16,cavities and their linings -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1528 -name: TS16,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1527 ! TS16,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:1529 -name: TS16,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1528 ! TS16,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:153 -name: TS11,neural fold,future brain -namespace: mouse_anatomy_stages -is_a: UBERON:0009748 ! cephalic neural fold -relationship: part_of EMAP:152 ! TS11,future brain -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0009748 ! cephalic neural fold -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1530 -name: TS16,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:1528 ! TS16,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1531 -name: TS16,parietal,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007187 ! pericardial parietal mesothelium -relationship: part_of EMAP:1530 ! TS16,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1532 -name: TS16,visceral,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007186 ! pericardial visceral mesothelium -relationship: part_of EMAP:1530 ! TS16,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1533 -name: TS16,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:1527 ! TS16,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1534 -name: TS16,cavity,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:1533 ! TS16,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1535 -name: TS16,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:1533 ! TS16,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1536 -name: TS16,parietal,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -relationship: part_of EMAP:1535 ! TS16,mesothelium,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1537 -name: TS16,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1527 ! TS16,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:1538 -name: TS16,cavity,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1537 ! TS16,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:1539 -name: TS16,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0005669 ! peritoneal cavity mesothelium -relationship: part_of EMAP:1537 ! TS16,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005669 ! peritoneal cavity mesothelium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:154 -name: TS11,neural crest,neural fold,future brain -namespace: mouse_anatomy_stages -is_a: UBERON:0003099 ! cranial neural crest -relationship: part_of EMAP:153 ! TS11,neural fold,future brain -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003099 ! cranial neural crest -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1540 -name: TS16,parietal,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1539 ! TS16,mesothelium,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005669 ! peritoneal cavity mesothelium - -[Term] -id: EMAP:1541 -name: TS16,visceral,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1539 ! TS16,mesothelium,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005669 ! peritoneal cavity mesothelium - -[Term] -id: EMAP:1542 -name: TS16,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1527 ! TS16,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:1543 -name: TS16,cavity,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1542 ! TS16,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:1544 -name: TS16,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1542 ! TS16,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:1545 -name: TS16,parietal,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1544 ! TS16,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:1546 -name: TS16,visceral,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1544 ! TS16,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:1547 -name: TS16,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1548 -name: TS16,surface ectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:1547 ! TS16,ectoderm,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1549 -name: TS16,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:155 -name: TS11,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:151 ! TS11,neural ectoderm,ectoderm,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1550 -name: TS16,forelimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005417 ! forelimb bud -relationship: part_of EMAP:1549 ! TS16,limb -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1551 -name: TS16,ectoderm,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1550 ! TS16,forelimb bud -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:1552 -name: TS16,apical ectodermal ridge -namespace: mouse_anatomy_stages -is_a: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -relationship: part_of EMAP:1551 ! TS16,ectoderm,forelimb bud -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1553 -name: TS16,mesenchyme,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1550 ! TS16,forelimb bud -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:1554 -name: TS16,hindlimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005418 ! hindlimb bud -relationship: part_of EMAP:1549 ! TS16,limb -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005418 ! hindlimb bud -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1555 -name: TS16,ectoderm,hindlimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1554 ! TS16,hindlimb bud -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005418 ! hindlimb bud - -[Term] -id: EMAP:1556 -name: TS16,mesenchyme,hindlimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1554 ! TS16,hindlimb bud -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005418 ! hindlimb bud - -[Term] -id: EMAP:1557 -name: TS16,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1558 -name: TS16,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:1557 ! TS16,mesenchyme,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1559 -name: TS16,mesenchyme derived from head mesoderm,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:1558 ! TS16,head mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:156 -name: TS11,neural fold,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:155 ! TS11,future spinal cord -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1560 -name: TS16,mesenchyme derived from neural crest,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:1558 ! TS16,head mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1561 -name: TS16,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:1557 ! TS16,mesenchyme,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1562 -name: TS16,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007214 ! mesenchyme derived from trunk neural crest -relationship: part_of EMAP:1561 ! TS16,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1563 -name: TS16,lateral migration pathway,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -relationship: part_of EMAP:1562 ! TS16,mesenchyme derived from neural crest,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1564 -name: TS16,medial migration pathway,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -relationship: part_of EMAP:1562 ! TS16,mesenchyme derived from neural crest,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1565 -name: TS16,mesenchyme derived from somatopleure -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1561 ! TS16,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EMAP:1566 -name: TS16,mesenchyme derived from splanchnopleure -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1561 ! TS16,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EMAP:1567 -name: TS16,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:1561 ! TS16,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1568 -name: TS16,somite,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005598 ! trunk somite -relationship: part_of EMAP:1567 ! TS16,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1569 -name: TS16,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:157 -name: TS11,neural crest,neural fold,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003853 ! spinal cord neural crest -relationship: part_of EMAP:156 ! TS11,neural fold,future spinal cord -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003853 ! spinal cord neural crest -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1570 -name: TS16,dermomyotome,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1569 ! TS16,somite 05 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1571 -name: TS16,myocoele,somite 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1569 ! TS16,somite 05 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1572 -name: TS16,sclerotome,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1569 ! TS16,somite 05 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1573 -name: TS16,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1574 -name: TS16,dermomyotome,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1573 ! TS16,somite 06 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1575 -name: TS16,myocoele,somite 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1573 ! TS16,somite 06 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1576 -name: TS16,sclerotome,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1573 ! TS16,somite 06 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1577 -name: TS16,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1578 -name: TS16,dermomyotome,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1577 ! TS16,somite 07 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1579 -name: TS16,myocoele,somite 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1577 ! TS16,somite 07 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:158 -name: TS11,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003075 ! neural plate -relationship: part_of EMAP:155 ! TS11,future spinal cord -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003075 ! neural plate -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1580 -name: TS16,sclerotome,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1577 ! TS16,somite 07 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1581 -name: TS16,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1582 -name: TS16,dermomyotome,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1581 ! TS16,somite 08 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1583 -name: TS16,myocoele,somite 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1581 ! TS16,somite 08 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1584 -name: TS16,sclerotome,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1581 ! TS16,somite 08 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1585 -name: TS16,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1586 -name: TS16,dermomyotome,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1585 ! TS16,somite 09 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1587 -name: TS16,myocoele,somite 09 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1585 ! TS16,somite 09 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1588 -name: TS16,sclerotome,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1585 ! TS16,somite 09 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1589 -name: TS16,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:159 -name: TS11,surface ectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:150 ! TS11,ectoderm,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1590 -name: TS16,dermomyotome,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1589 ! TS16,somite 10 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1591 -name: TS16,myocoele,somite 10 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1589 ! TS16,somite 10 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1592 -name: TS16,sclerotome,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1589 ! TS16,somite 10 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1593 -name: TS16,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1594 -name: TS16,dermomyotome,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1593 ! TS16,somite 11 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1595 -name: TS16,myocoele,somite 11 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1593 ! TS16,somite 11 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1596 -name: TS16,sclerotome,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1593 ! TS16,somite 11 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1597 -name: TS16,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1598 -name: TS16,dermomyotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1597 ! TS16,somite 12 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1599 -name: TS16,myocoele,somite 12 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1597 ! TS16,somite 12 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:16 -name: TS4,cavities and their linings -namespace: mouse_anatomy_stages -relationship: part_of EMAP:15 ! TS4,extraembryonic component -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -relationship: part_of UBERON:0000478 ! extraembryonic structure - -[Term] -id: EMAP:160 -name: TS11,endoderm,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:1600 -name: TS16,sclerotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1597 ! TS16,somite 12 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1601 -name: TS16,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1602 -name: TS16,dermomyotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1601 ! TS16,somite 13 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1603 -name: TS16,myocoele,somite 13 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1601 ! TS16,somite 13 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1604 -name: TS16,sclerotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1601 ! TS16,somite 13 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1605 -name: TS16,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1606 -name: TS16,dermomyotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1605 ! TS16,somite 14 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1607 -name: TS16,myocoele,somite 14 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1605 ! TS16,somite 14 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1608 -name: TS16,sclerotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1605 ! TS16,somite 14 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1609 -name: TS16,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:161 -name: TS11,definitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0005439 ! definitive endoderm -relationship: part_of EMAP:160 ! TS11,endoderm,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0005439 ! definitive endoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1610 -name: TS16,dermomyotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1609 ! TS16,somite 15 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1611 -name: TS16,myocoele,somite 15 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1609 ! TS16,somite 15 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1612 -name: TS16,sclerotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1609 ! TS16,somite 15 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1613 -name: TS16,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1614 -name: TS16,dermomyotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1613 ! TS16,somite 16 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1615 -name: TS16,myocoele,somite 16 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1613 ! TS16,somite 16 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1616 -name: TS16,sclerotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1613 ! TS16,somite 16 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1617 -name: TS16,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1618 -name: TS16,dermomyotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1617 ! TS16,somite 17 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1619 -name: TS16,myocoele,somite 17 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1617 ! TS16,somite 17 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:162 -name: TS11,primitive endoderm,endoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0008776 ! inner cell mass derived hypoblast -relationship: part_of EMAP:160 ! TS11,endoderm,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1620 -name: TS16,sclerotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1617 ! TS16,somite 17 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1621 -name: TS16,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1622 -name: TS16,dermomyotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1621 ! TS16,somite 18 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1623 -name: TS16,myocoele,somite 18 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1621 ! TS16,somite 18 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1624 -name: TS16,sclerotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1621 ! TS16,somite 18 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1625 -name: TS16,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1626 -name: TS16,dermomyotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1625 ! TS16,somite 19 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1627 -name: TS16,myocoele,somite 19 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1625 ! TS16,somite 19 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1628 -name: TS16,sclerotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1625 ! TS16,somite 19 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1629 -name: TS16,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:163 -name: TS11,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1630 -name: TS16,dermomyotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1629 ! TS16,somite 20 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1631 -name: TS16,myocoele,somite 20 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1629 ! TS16,somite 20 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1632 -name: TS16,sclerotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1629 ! TS16,somite 20 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1633 -name: TS16,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1634 -name: TS16,dermomyotome,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1633 ! TS16,somite 21 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1635 -name: TS16,myocoele,somite 21 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1633 ! TS16,somite 21 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1636 -name: TS16,sclerotome,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1633 ! TS16,somite 21 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1637 -name: TS16,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1638 -name: TS16,dermomyotome,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1637 ! TS16,somite 22 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1639 -name: TS16,myocoele,somite 22 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1637 ! TS16,somite 22 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:164 -name: TS11,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:163 ! TS11,mesenchyme,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1640 -name: TS16,sclerotome,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1637 ! TS16,somite 22 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1641 -name: TS16,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1642 -name: TS16,dermomyotome,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1641 ! TS16,somite 23 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1643 -name: TS16,myocoele,somite 23 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1641 ! TS16,somite 23 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1644 -name: TS16,sclerotome,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1641 ! TS16,somite 23 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1645 -name: TS16,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1646 -name: TS16,dermomyotome,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1645 ! TS16,somite 24 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1647 -name: TS16,myocoele,somite 24 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1645 ! TS16,somite 24 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1648 -name: TS16,sclerotome,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1645 ! TS16,somite 24 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1649 -name: TS16,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:165 -name: TS11,mesenchyme derived from head mesoderm,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:164 ! TS11,head mesenchyme -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1650 -name: TS16,dermomyotome,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1649 ! TS16,somite 25 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1651 -name: TS16,myocoele,somite 25 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1649 ! TS16,somite 25 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1652 -name: TS16,sclerotome,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1649 ! TS16,somite 25 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1653 -name: TS16,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1654 -name: TS16,dermomyotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1653 ! TS16,somite 26 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1655 -name: TS16,myocoele,somite 26 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1653 ! TS16,somite 26 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1656 -name: TS16,sclerotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1653 ! TS16,somite 26 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1657 -name: TS16,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1658 -name: TS16,dermomyotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1657 ! TS16,somite 27 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1659 -name: TS16,myocoele,somite 27 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1657 ! TS16,somite 27 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:166 -name: TS11,mesenchyme derived from neural-crest,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:164 ! TS11,head mesenchyme -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1660 -name: TS16,sclerotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1657 ! TS16,somite 27 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1661 -name: TS16,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1662 -name: TS16,dermomyotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1661 ! TS16,somite 28 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1663 -name: TS16,myocoele,somite 28 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1661 ! TS16,somite 28 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1664 -name: TS16,sclerotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1661 ! TS16,somite 28 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1665 -name: TS16,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1666 -name: TS16,dermomyotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1665 ! TS16,somite 29 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1667 -name: TS16,myocoele,somite 29 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1665 ! TS16,somite 29 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1668 -name: TS16,sclerotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1665 ! TS16,somite 29 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1669 -name: TS16,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1568 ! TS16,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:167 -name: TS11,mesoderm,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:1670 -name: TS16,dermomyotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1669 ! TS16,somite 30 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1671 -name: TS16,myocoele,somite 30 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1669 ! TS16,somite 30 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1672 -name: TS16,sclerotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1669 ! TS16,somite 30 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:1673 -name: TS16,septum transversum -namespace: mouse_anatomy_stages -is_a: UBERON:0004161 ! septum transversum -relationship: part_of EMAP:1561 ! TS16,trunk mesenchyme -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1674 -name: TS16,non-hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1673 ! TS16,septum transversum -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:1675 -name: TS16,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1676 -name: TS16,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1677 -name: TS16,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:1676 ! TS16,organ system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1678 -name: TS16,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:1677 ! TS16,visceral organ -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1679 -name: TS16,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:1678 ! TS16,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:168 -name: TS11,notochordal plate -namespace: mouse_anatomy_stages -is_a: UBERON:0006267 ! notochordal plate -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0006267 ! notochordal plate -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1680 -name: TS16,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:1679 ! TS16,oral region,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1681 -name: TS16,pituitary,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1680 ! TS16,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0010047 ! oral gland - -[Term] -id: EMAP:1682 -name: TS16,Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0005356 ! Rathke's pouch -relationship: part_of EMAP:1681 ! TS16,pituitary,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1683 -name: TS16,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:1676 ! TS16,organ system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1684 -name: TS16,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:1683 ! TS16,nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1685 -name: TS16,future brain -namespace: mouse_anatomy_stages -is_a: UBERON:0006238 ! future brain -relationship: part_of EMAP:1684 ! TS16,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006238 ! future brain -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1686 -name: TS16,future forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0006240 ! future forebrain -relationship: part_of EMAP:1685 ! TS16,future brain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006240 ! future forebrain -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1687 -name: TS16,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:1686 ! TS16,future forebrain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1688 -name: TS16,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:1687 ! TS16,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1689 -name: TS16,pituitary,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:1688 ! TS16,gland,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:169 -name: TS11,notochordal process -namespace: mouse_anatomy_stages -is_a: UBERON:0006268 ! notochordal process -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0006268 ! notochordal process -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1690 -name: TS16,infundibular recess of 3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006250 ! infundibular recess of 3rd ventricle -relationship: part_of EMAP:1689 ! TS16,pituitary,gland,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006250 ! infundibular recess of 3rd ventricle -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1691 -name: TS16,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:1678 ! TS16,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1692 -name: TS16,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:1691 ! TS16,gut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1693 -name: TS16,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:1692 ! TS16,foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1694 -name: TS16,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003091 ! thyroid primordium -relationship: part_of EMAP:1693 ! TS16,gland,foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1695 -name: TS16,associated mesenchyme,thyroid primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1694 ! TS16,thyroid primordium -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003091 ! thyroid primordium - -[Term] -id: EMAP:1696 -name: TS16,endoderm,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003261 ! thyroid primordium endoderm -relationship: part_of EMAP:1694 ! TS16,thyroid primordium -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003261 ! thyroid primordium endoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1697 -name: TS16,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0013148 ! early midbrain vesicle -relationship: part_of EMAP:1687 ! TS16,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0013148 ! early midbrain vesicle -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1698 -name: TS16,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:1697 ! TS16,3rd ventricle -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1699 -name: TS16,optic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0002287 ! optic recess of third ventricle -relationship: part_of EMAP:1697 ! TS16,3rd ventricle -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:17 -name: TS4,blastocoelic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000090 ! blastocele -relationship: part_of EMAP:16 ! TS4,cavities and their linings -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -intersection_of: UBERON:0000090 ! blastocele -intersection_of: exists_during MmusDv:0000008 ! Theiler stage 04 - -[Term] -id: EMAP:170 -name: TS11,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1700 -name: TS16,floor plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003309 ! floor plate of diencephalon -relationship: part_of EMAP:1687 ! TS16,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1701 -name: TS16,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:1687 ! TS16,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1702 -name: TS16,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:1687 ! TS16,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1703 -name: TS16,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1702 ! TS16,lateral wall,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:1704 -name: TS16,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:1687 ! TS16,diencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1705 -name: TS16,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:1686 ! TS16,future forebrain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1706 -name: TS16,telencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1705 ! TS16,telencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:1707 -name: TS16,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:1706 ! TS16,telencephalic vesicle -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1708 -name: TS16,ventricular layer,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0004060 ! neural tube ventricular layer -relationship: part_of EMAP:1705 ! TS16,telencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004060 ! neural tube ventricular layer -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1709 -name: TS16,floor plate,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003308 ! floor plate of telencephalon -relationship: part_of EMAP:1705 ! TS16,telencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003308 ! floor plate of telencephalon -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:171 -name: TS11,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:170 ! TS11,organ system -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1710 -name: TS16,lateral wall,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005561 ! telencephalon lateral wall -relationship: part_of EMAP:1705 ! TS16,telencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005561 ! telencephalon lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1711 -name: TS16,ventricular layer,lateral wall,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1710 ! TS16,lateral wall,telencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005561 ! telencephalon lateral wall - -[Term] -id: EMAP:1712 -name: TS16,roof plate,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003300 ! roof plate of telencephalon -relationship: part_of EMAP:1705 ! TS16,telencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003300 ! roof plate of telencephalon -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1713 -name: TS16,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1685 ! TS16,future brain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:1714 -name: TS16,floor plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1713 ! TS16,future midbrain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:1715 -name: TS16,lateral wall,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1713 ! TS16,future midbrain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:1716 -name: TS16,ventricular layer,lateral wall,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1715 ! TS16,lateral wall,future midbrain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:1717 -name: TS16,mesencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1713 ! TS16,future midbrain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:1718 -name: TS16,roof plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1713 ! TS16,future midbrain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:1719 -name: TS16,future rhombencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001892 ! rhombomere -relationship: part_of EMAP:1685 ! TS16,future brain -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:172 -name: TS11,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:171 ! TS11,cardiovascular system -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1720 -name: TS16,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1721 -name: TS16,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005499 ! rhombomere 1 -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1722 -name: TS16,floor plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005566 ! rhombomere 1 floor plate -relationship: part_of EMAP:1721 ! TS16,rhombomere 01 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1723 -name: TS16,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005567 ! rhombomere 1 lateral wall -relationship: part_of EMAP:1721 ! TS16,rhombomere 01 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1724 -name: TS16,ventricular layer,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1723 ! TS16,lateral wall,rhombomere 01 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005567 ! rhombomere 1 lateral wall - -[Term] -id: EMAP:1725 -name: TS16,roof plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005568 ! rhombomere 1 roof plate -relationship: part_of EMAP:1721 ! TS16,rhombomere 01 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005568 ! rhombomere 1 roof plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1726 -name: TS16,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005569 ! rhombomere 2 -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1727 -name: TS16,floor plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005570 ! rhombomere 2 floor plate -relationship: part_of EMAP:1726 ! TS16,rhombomere 02 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1728 -name: TS16,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005571 ! rhombomere 2 lateral wall -relationship: part_of EMAP:1726 ! TS16,rhombomere 02 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1729 -name: TS16,ventricular layer,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1728 ! TS16,lateral wall,rhombomere 02 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005571 ! rhombomere 2 lateral wall - -[Term] -id: EMAP:173 -name: TS11,cardiogenic plate -namespace: mouse_anatomy_stages -is_a: UBERON:0004139 ! cardiogenic plate -relationship: part_of EMAP:172 ! TS11,heart -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004139 ! cardiogenic plate -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1730 -name: TS16,roof plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005572 ! rhombomere 2 roof plate -relationship: part_of EMAP:1726 ! TS16,rhombomere 02 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005572 ! rhombomere 2 roof plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1731 -name: TS16,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005507 ! rhombomere 3 -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1732 -name: TS16,floor plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005573 ! rhombomere 3 floor plate -relationship: part_of EMAP:1731 ! TS16,rhombomere 03 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1733 -name: TS16,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005574 ! rhombomere 3 lateral wall -relationship: part_of EMAP:1731 ! TS16,rhombomere 03 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1734 -name: TS16,ventricular layer,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1733 ! TS16,lateral wall,rhombomere 03 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005574 ! rhombomere 3 lateral wall - -[Term] -id: EMAP:1735 -name: TS16,roof plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005575 ! rhombomere 3 roof plate -relationship: part_of EMAP:1731 ! TS16,rhombomere 03 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1736 -name: TS16,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005511 ! rhombomere 4 -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1737 -name: TS16,floor plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005576 ! rhombomere 4 floor plate -relationship: part_of EMAP:1736 ! TS16,rhombomere 04 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1738 -name: TS16,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005577 ! rhombomere 4 lateral wall -relationship: part_of EMAP:1736 ! TS16,rhombomere 04 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1739 -name: TS16,ventricular layer,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1738 ! TS16,lateral wall,rhombomere 04 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005577 ! rhombomere 4 lateral wall - -[Term] -id: EMAP:174 -name: TS11,primitive streak -namespace: mouse_anatomy_stages -is_a: UBERON:0004341 ! primitive streak -relationship: part_of EMAP:147 ! TS11,embryo -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1740 -name: TS16,roof plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005578 ! rhombomere 4 roof plate -relationship: part_of EMAP:1736 ! TS16,rhombomere 04 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1741 -name: TS16,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005515 ! rhombomere 5 -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1742 -name: TS16,floor plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005579 ! rhombomere 5 floor plate -relationship: part_of EMAP:1741 ! TS16,rhombomere 05 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1743 -name: TS16,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005580 ! rhombomere 5 lateral wall -relationship: part_of EMAP:1741 ! TS16,rhombomere 05 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1744 -name: TS16,ventricular layer,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1743 ! TS16,lateral wall,rhombomere 05 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005580 ! rhombomere 5 lateral wall - -[Term] -id: EMAP:1745 -name: TS16,roof plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005581 ! rhombomere 5 roof plate -relationship: part_of EMAP:1741 ! TS16,rhombomere 05 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1746 -name: TS16,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005519 ! rhombomere 6 -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1747 -name: TS16,floor plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005582 ! rhombomere 6 floor plate -relationship: part_of EMAP:1746 ! TS16,rhombomere 06 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1748 -name: TS16,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005583 ! rhombomere 6 lateral wall -relationship: part_of EMAP:1746 ! TS16,rhombomere 06 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1749 -name: TS16,ventricular layer,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1748 ! TS16,lateral wall,rhombomere 06 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005583 ! rhombomere 6 lateral wall - -[Term] -id: EMAP:175 -name: TS11,node -namespace: mouse_anatomy_stages -is_a: UBERON:0003062 ! primitive knot -relationship: part_of EMAP:174 ! TS11,primitive streak -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1750 -name: TS16,roof plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005584 ! rhombomere 6 roof plate -relationship: part_of EMAP:1746 ! TS16,rhombomere 06 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1751 -name: TS16,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005523 ! rhombomere 7 -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1752 -name: TS16,floor plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005585 ! rhombomere 7 floor plate -relationship: part_of EMAP:1751 ! TS16,rhombomere 07 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1753 -name: TS16,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005586 ! rhombomere 7 lateral wall -relationship: part_of EMAP:1751 ! TS16,rhombomere 07 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1754 -name: TS16,ventricular layer,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1753 ! TS16,lateral wall,rhombomere 07 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005586 ! rhombomere 7 lateral wall - -[Term] -id: EMAP:1755 -name: TS16,roof plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005587 ! rhombomere 7 roof plate -relationship: part_of EMAP:1751 ! TS16,rhombomere 07 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1756 -name: TS16,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005527 ! rhombomere 8 -relationship: part_of EMAP:1719 ! TS16,future rhombencephalon -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1757 -name: TS16,roof plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005590 ! rhombomere 8 roof plate -relationship: part_of EMAP:1756 ! TS16,rhombomere 08 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1758 -name: TS16,floor plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005588 ! rhombomere 8 floor plate -relationship: part_of EMAP:1756 ! TS16,rhombomere 08 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1759 -name: TS16,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005589 ! rhombomere 8 lateral wall -relationship: part_of EMAP:1756 ! TS16,rhombomere 08 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:176 -name: TS11,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1760 -name: TS16,ventricular layer,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1759 ! TS16,lateral wall,rhombomere 08 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005589 ! rhombomere 8 lateral wall - -[Term] -id: EMAP:1761 -name: TS16,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:1684 ! TS16,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1762 -name: TS16,caudal neuropore -namespace: mouse_anatomy_stages -is_a: UBERON:0005071 ! posterior neuropore -relationship: part_of EMAP:1761 ! TS16,future spinal cord -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005071 ! posterior neuropore -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1763 -name: TS16,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:1761 ! TS16,future spinal cord -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1764 -name: TS16,floor plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003306 ! floor plate of neural tube -relationship: part_of EMAP:1763 ! TS16,neural tube,future spinal cord -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1765 -name: TS16,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1763 ! TS16,neural tube,future spinal cord -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001049 ! neural tube - -[Term] -id: EMAP:1766 -name: TS16,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003842 ! neural tube lumen -relationship: part_of EMAP:1763 ! TS16,neural tube,future spinal cord -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1767 -name: TS16,neural luminal occlusion,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1766 ! TS16,neural lumen,neural tube,future spinal cord -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003842 ! neural tube lumen - -[Term] -id: EMAP:1768 -name: TS16,roof plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003298 ! roof plate of neural tube -relationship: part_of EMAP:1763 ! TS16,neural tube,future spinal cord -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003298 ! roof plate of neural tube -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1769 -name: TS16,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:1684 ! TS16,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:177 -name: TS11,allantois -namespace: mouse_anatomy_stages -is_a: UBERON:0004340 ! allantois -relationship: part_of EMAP:176 ! TS11,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004340 ! allantois -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1770 -name: TS16,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:1769 ! TS16,ganglion,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1771 -name: TS16,facio-acoustic ganglion complex VII-VIII -namespace: mouse_anatomy_stages -is_a: UBERON:0012175 ! acoustico-facial VII-VIII ganglion complex -relationship: part_of EMAP:1770 ! TS16,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012175 ! acoustico-facial VII-VIII ganglion complex -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1772 -name: TS16,glossopharyngeal IX -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:1770 ! TS16,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1773 -name: TS16,glossopharyngeal-vagus IX-X ganglion complex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1770 ! TS16,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001714 ! cranial ganglion - -[Term] -id: EMAP:1774 -name: TS16,trigeminal V -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:1770 ! TS16,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1775 -name: TS16,vagus X -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:1770 ! TS16,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1776 -name: TS16,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:1683 ! TS16,nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1777 -name: TS16,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:1776 ! TS16,peripheral nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1778 -name: TS16,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1777 ! TS16,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:1779 -name: TS16,dorsal root ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:1778 ! TS16,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:178 -name: TS11,mesoderm,allantois -namespace: mouse_anatomy_stages -relationship: part_of EMAP:177 ! TS11,allantois -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -relationship: part_of UBERON:0004340 ! allantois - -[Term] -id: EMAP:1780 -name: TS16,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:1676 ! TS16,organ system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1781 -name: TS16,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:1780 ! TS16,sensory organ -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1782 -name: TS16,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:1781 ! TS16,ear -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1783 -name: TS16,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0003051 ! ear vesicle -relationship: part_of EMAP:1782 ! TS16,inner ear -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1784 -name: TS16,associated mesenchyme,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0009500 ! associated mesenchyme of otocyst -relationship: part_of EMAP:1783 ! TS16,otocyst -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009500 ! associated mesenchyme of otocyst -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1785 -name: TS16,epithelium,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0005641 ! otocyst epithelium -relationship: part_of EMAP:1783 ! TS16,otocyst -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005641 ! otocyst epithelium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1786 -name: TS16,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:1780 ! TS16,sensory organ -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1787 -name: TS16,lens pit -namespace: mouse_anatomy_stages -is_a: UBERON:0006259 ! lens pit -relationship: part_of EMAP:1786 ! TS16,eye -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006259 ! lens pit -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1788 -name: TS16,mesenchyme,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:1786 ! TS16,eye -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1789 -name: TS16,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0003072 ! optic cup -relationship: part_of EMAP:1786 ! TS16,eye -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003072 ! optic cup -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:179 -name: TS11,amnion -namespace: mouse_anatomy_stages -is_a: UBERON:0000305 ! amnion -relationship: part_of EMAP:176 ! TS11,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000305 ! amnion -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1790 -name: TS16,inner layer,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0005425 ! presumptive neural retina -relationship: part_of EMAP:1789 ! TS16,optic cup -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005425 ! presumptive neural retina -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1791 -name: TS16,intraretinal space -namespace: mouse_anatomy_stages -is_a: UBERON:0006253 ! embryonic intraretinal space -relationship: part_of EMAP:1789 ! TS16,optic cup -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006253 ! embryonic intraretinal space -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1792 -name: TS16,outer layer,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0005424 ! presumptive retinal pigmented epithelium -relationship: part_of EMAP:1789 ! TS16,optic cup -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005424 ! presumptive retinal pigmented epithelium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1793 -name: TS16,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:1786 ! TS16,eye -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1794 -name: TS16,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:1780 ! TS16,sensory organ -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1795 -name: TS16,naso-lacrimal groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006266 ! nasolacrimal groove -relationship: part_of EMAP:1794 ! TS16,nose -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1796 -name: TS16,olfactory pit -namespace: mouse_anatomy_stages -is_a: UBERON:0005870 ! olfactory pit -relationship: part_of EMAP:1794 ! TS16,nose -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1797 -name: TS16,nasal epithelium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1796 ! TS16,olfactory pit -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0005870 ! olfactory pit - -[Term] -id: EMAP:1798 -name: TS16,process,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0009292 ! embryonic nasal process -relationship: part_of EMAP:1794 ! TS16,nose -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1799 -name: TS16,fronto-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004066 ! frontonasal prominence -relationship: part_of EMAP:1798 ! TS16,process,nose -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:18 -name: TS4,second polar body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:15 ! TS4,extraembryonic component -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -relationship: part_of UBERON:0000478 ! extraembryonic structure - -[Term] -id: EMAP:180 -name: TS11,ectoderm,amnion -namespace: mouse_anatomy_stages -is_a: UBERON:0003254 ! amniotic ectoderm -relationship: part_of EMAP:179 ! TS11,amnion -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003254 ! amniotic ectoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1800 -name: TS16,frontal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009293 ! embryonic frontal process -relationship: part_of EMAP:1799 ! TS16,fronto-nasal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009293 ! embryonic frontal process -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1801 -name: TS16,ectoderm,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1800 ! TS16,frontal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:1802 -name: TS16,mesenchyme,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1800 ! TS16,frontal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:1803 -name: TS16,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004067 ! lateral nasal prominence -relationship: part_of EMAP:1799 ! TS16,fronto-nasal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004067 ! lateral nasal prominence -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1804 -name: TS16,ectoderm,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009206 ! lateral nasal process surface ectoderm -relationship: part_of EMAP:1803 ! TS16,latero-nasal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009206 ! lateral nasal process surface ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1805 -name: TS16,mesenchyme,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009205 ! lateral nasal process mesenchyme -relationship: part_of EMAP:1803 ! TS16,latero-nasal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009205 ! lateral nasal process mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1806 -name: TS16,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004068 ! medial nasal prominence -relationship: part_of EMAP:1799 ! TS16,fronto-nasal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004068 ! medial nasal prominence -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1807 -name: TS16,ectoderm,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0005233 ! medial-nasal process ectoderm -relationship: part_of EMAP:1806 ! TS16,medial-nasal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005233 ! medial-nasal process ectoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1808 -name: TS16,mesenchyme,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009204 ! medial nasal process mesenchyme -relationship: part_of EMAP:1806 ! TS16,medial-nasal process -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009204 ! medial nasal process mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1809 -name: TS16,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:1676 ! TS16,organ system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:181 -name: TS11,mesoderm,amnion -namespace: mouse_anatomy_stages -is_a: UBERON:0003262 ! amniotic mesoderm -relationship: part_of EMAP:179 ! TS11,amnion -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003262 ! amniotic mesoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1810 -name: TS16,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:1809 ! TS16,cardiovascular system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1811 -name: TS16,branchial arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004363 ! aortic arch -relationship: part_of EMAP:1810 ! TS16,arterial system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004363 ! aortic arch -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1812 -name: TS16,1st arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003118 ! aortic arch 1 -relationship: part_of EMAP:1811 ! TS16,branchial arch artery -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003118 ! aortic arch 1 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1813 -name: TS16,2nd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003119 ! aortic arch 2 -relationship: part_of EMAP:1811 ! TS16,branchial arch artery -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003119 ! aortic arch 2 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1814 -name: TS16,3rd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003120 ! aortic arch 3 -relationship: part_of EMAP:1811 ! TS16,branchial arch artery -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003120 ! aortic arch 3 -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1815 -name: TS16,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1810 ! TS16,arterial system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:1816 -name: TS16,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:1815 ! TS16,dorsal aorta -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1817 -name: TS16,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:1815 ! TS16,dorsal aorta -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1818 -name: TS16,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:1815 ! TS16,dorsal aorta -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1819 -name: TS16,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:1810 ! TS16,arterial system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:182 -name: TS11,cavities -namespace: mouse_anatomy_stages -is_a: UBERON:0012466 ! extraembryonic cavities -relationship: part_of EMAP:176 ! TS11,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0012466 ! extraembryonic cavities -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1820 -name: TS16,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:1810 ! TS16,arterial system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1821 -name: TS16,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:1810 ! TS16,arterial system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1822 -name: TS16,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:1810 ! TS16,arterial system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1823 -name: TS16,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:1822 ! TS16,umbilical artery -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1824 -name: TS16,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:1822 ! TS16,umbilical artery -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1825 -name: TS16,vitelline artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006002 ! vitelline artery -relationship: part_of EMAP:1810 ! TS16,arterial system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1826 -name: TS16,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:1809 ! TS16,cardiovascular system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1827 -name: TS16,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:1809 ! TS16,cardiovascular system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1828 -name: TS16,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1829 -name: TS16,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:183 -name: TS11,amniotic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000301 ! amniotic cavity -relationship: part_of EMAP:182 ! TS11,cavities -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000301 ! amniotic cavity -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1830 -name: TS16,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006218 ! common atrial chamber -relationship: part_of EMAP:1829 ! TS16,atrium -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006218 ! common atrial chamber -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1831 -name: TS16,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1830 ! TS16,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:1832 -name: TS16,cardiac jelly,left part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0005261 ! atrium cardiac jelly -relationship: part_of EMAP:1831 ! TS16,left part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005261 ! atrium cardiac jelly -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1833 -name: TS16,endocardial lining,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1831 ! TS16,left part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:1834 -name: TS16,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006630 ! left atrium auricular region -relationship: part_of EMAP:1831 ! TS16,left part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006630 ! left atrium auricular region -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1835 -name: TS16,endocardial lining,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1834 ! TS16,left auricular region,left part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006630 ! left atrium auricular region - -[Term] -id: EMAP:1836 -name: TS16,cardiac muscle,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:1834 ! TS16,left auricular region,left part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1837 -name: TS16,cardiac muscle,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1831 ! TS16,left part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:1838 -name: TS16,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1830 ! TS16,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:1839 -name: TS16,cardiac jelly,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0005261 ! atrium cardiac jelly -relationship: part_of EMAP:1838 ! TS16,right part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005261 ! atrium cardiac jelly -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:184 -name: TS11,ectoplacental cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0008851 ! ectoplacental cavity -relationship: part_of EMAP:182 ! TS11,cavities -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0008851 ! ectoplacental cavity -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1840 -name: TS16,endocardial lining,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1838 ! TS16,right part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:1841 -name: TS16,cardiac muscle,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1838 ! TS16,right part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:1842 -name: TS16,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006631 ! right atrium auricular region -relationship: part_of EMAP:1838 ! TS16,right part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006631 ! right atrium auricular region -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1843 -name: TS16,endocardial lining,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1842 ! TS16,right auricular region,right part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006631 ! right atrium auricular region - -[Term] -id: EMAP:1844 -name: TS16,cardiac muscle,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:1842 ! TS16,right auricular region,right part,common atrial chamber -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1845 -name: TS16,bulboventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006212 ! bulbo-ventricular groove -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006212 ! bulbo-ventricular groove -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1846 -name: TS16,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0004706 ! bulbus cordis -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1847 -name: TS16,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1846 ! TS16,bulbus cordis -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:1848 -name: TS16,cardiac jelly,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1847 ! TS16,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:1849 -name: TS16,endocardial lining,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1847 ! TS16,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:185 -name: TS11,exocoelomic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003888 ! extraembryonic coelom -relationship: part_of EMAP:182 ! TS11,cavities -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003888 ! extraembryonic coelom -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1850 -name: TS16,cardiac muscle,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1847 ! TS16,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:1851 -name: TS16,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0006060 ! conotruncus -relationship: part_of EMAP:1846 ! TS16,bulbus cordis -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006060 ! conotruncus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1852 -name: TS16,cardiac jelly,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1851 ! TS16,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:1853 -name: TS16,endocardial lining,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1851 ! TS16,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:1854 -name: TS16,cardiac muscle,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1851 ! TS16,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:1855 -name: TS16,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1856 -name: TS16,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1857 -name: TS16,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:1856 ! TS16,mesentery,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1858 -name: TS16,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:1857 ! TS16,dorsal mesocardium -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1859 -name: TS16,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:186 -name: TS11,yolk sac cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005251 ! yolk sac cavity -relationship: part_of EMAP:182 ! TS11,cavities -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0005251 ! yolk sac cavity -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1860 -name: TS16,aortico-pulmonary spiral septum -namespace: mouse_anatomy_stages -is_a: UBERON:0006207 ! aortico-pulmonary spiral septum -relationship: part_of EMAP:1859 ! TS16,outflow tract,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1861 -name: TS16,cardiac jelly,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005263 ! outflow tract cardiac jelly -relationship: part_of EMAP:1859 ! TS16,outflow tract,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005263 ! outflow tract cardiac jelly -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1862 -name: TS16,endocardial tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1859 ! TS16,outflow tract,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:1863 -name: TS16,mesenchyme,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1859 ! TS16,outflow tract,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:1864 -name: TS16,primitive ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006283 ! primitive ventricle of heart -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006283 ! primitive ventricle of heart -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1865 -name: TS16,cardiac jelly,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1864 ! TS16,primitive ventricle -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:1866 -name: TS16,endocardial lining,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1864 ! TS16,primitive ventricle -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:1867 -name: TS16,cardiac muscle,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1864 ! TS16,primitive ventricle -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:1868 -name: TS16,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:1827 ! TS16,heart -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1869 -name: TS16,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:1868 ! TS16,sinus venosus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:187 -name: TS11,chorion -namespace: mouse_anatomy_stages -is_a: UBERON:0003124 ! chorion -relationship: part_of EMAP:176 ! TS11,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003124 ! chorion -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1870 -name: TS16,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:1868 ! TS16,sinus venosus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1871 -name: TS16,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:1809 ! TS16,cardiovascular system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1872 -name: TS16,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004344 ! cardinal vein -relationship: part_of EMAP:1871 ! TS16,venous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1873 -name: TS16,anterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:1872 ! TS16,cardinal vein -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1874 -name: TS16,common,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002064 ! common cardinal vein -relationship: part_of EMAP:1872 ! TS16,cardinal vein -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1875 -name: TS16,posterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002065 ! posterior cardinal vein -relationship: part_of EMAP:1872 ! TS16,cardinal vein -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1876 -name: TS16,inter-subcardinal venous anastomosis -namespace: mouse_anatomy_stages -is_a: UBERON:0006252 ! intersubcardinal venous anastomosis -relationship: part_of EMAP:1871 ! TS16,venous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006252 ! intersubcardinal venous anastomosis -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1877 -name: TS16,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:1871 ! TS16,venous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1878 -name: TS16,subcardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006296 ! subcardinal vein -relationship: part_of EMAP:1871 ! TS16,venous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006296 ! subcardinal vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1879 -name: TS16,supracardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006300 ! supracardinal vein -relationship: part_of EMAP:1871 ! TS16,venous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006300 ! supracardinal vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:188 -name: TS11,ectoderm,chorion -namespace: mouse_anatomy_stages -is_a: UBERON:0003374 ! chorionic ectoderm -relationship: part_of EMAP:187 ! TS11,chorion -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003374 ! chorionic ectoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1880 -name: TS16,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:1871 ! TS16,venous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1881 -name: TS16,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:1880 ! TS16,umbilical vein -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1882 -name: TS16,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:1871 ! TS16,venous system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1883 -name: TS16,left,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005460 ! left vitelline vein -relationship: part_of EMAP:1882 ! TS16,vitelline vein -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1884 -name: TS16,right,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005472 ! right vitelline vein -relationship: part_of EMAP:1882 ! TS16,vitelline vein -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1885 -name: TS16,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:1678 ! TS16,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1886 -name: TS16,cloacal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006217 ! cloacal membrane -relationship: part_of EMAP:1885 ! TS16,anal region,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006217 ! cloacal membrane -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1887 -name: TS16,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:1692 ! TS16,foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1888 -name: TS16,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1887 ! TS16,oesophagus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:1889 -name: TS16,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001976 ! epithelium of esophagus -relationship: part_of EMAP:1887 ! TS16,oesophagus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:189 -name: TS11,mesoderm,chorion -namespace: mouse_anatomy_stages -is_a: UBERON:0003265 ! chorionic mesoderm -relationship: part_of EMAP:187 ! TS11,chorion -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003265 ! chorionic mesoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1890 -name: TS16,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:1887 ! TS16,oesophagus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1891 -name: TS16,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:1890 ! TS16,mesentery,oesophagus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1892 -name: TS16,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1887 ! TS16,oesophagus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:1893 -name: TS16,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:1692 ! TS16,foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1894 -name: TS16,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1893 ! TS16,pharynx -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:1895 -name: TS16,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:1893 ! TS16,pharynx -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1896 -name: TS16,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1893 ! TS16,pharynx -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:1897 -name: TS16,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1692 ! TS16,foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:1898 -name: TS16,associated mesenchyme,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1897 ! TS16,rest of foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:1899 -name: TS16,epithelium,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1897 ! TS16,rest of foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:19 -name: TS4,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:15 ! TS4,extraembryonic component -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000008 ! Theiler stage 04 - -[Term] -id: EMAP:190 -name: TS11,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0008945 ! extraembryonic endoderm -relationship: part_of EMAP:176 ! TS11,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1900 -name: TS16,vascular element,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1897 ! TS16,rest of foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:1901 -name: TS16,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1897 ! TS16,rest of foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:1902 -name: TS16,dorsal mesentery,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1901 ! TS16,mesentery,rest of foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:1903 -name: TS16,ventral mesentery,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1901 ! TS16,mesentery,rest of foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:1904 -name: TS16,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:1691 ! TS16,gut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1905 -name: TS16,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:1904 ! TS16,foregut-midgut junction -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1906 -name: TS16,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:1904 ! TS16,foregut-midgut junction -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1907 -name: TS16,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1904 ! TS16,foregut-midgut junction -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:1908 -name: TS16,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:1904 ! TS16,foregut-midgut junction -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1909 -name: TS16,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:1908 ! TS16,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:191 -name: TS11,intermediate endoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:190 ! TS11,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -relationship: part_of UBERON:0008945 ! extraembryonic endoderm - -[Term] -id: EMAP:1910 -name: TS16,ventral mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:1908 ! TS16,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1911 -name: TS16,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1691 ! TS16,gut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:1912 -name: TS16,associated mesenchyme,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1911 ! TS16,hindgut diverticulum -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:1913 -name: TS16,epithelium,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1911 ! TS16,hindgut diverticulum -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:1914 -name: TS16,vascular element,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1911 ! TS16,hindgut diverticulum -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:1915 -name: TS16,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:1691 ! TS16,gut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1916 -name: TS16,associated mesenchyme,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009503 ! associated mesenchyme of hindgut -relationship: part_of EMAP:1915 ! TS16,hindgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009503 ! associated mesenchyme of hindgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1917 -name: TS16,epithelium,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003353 ! epithelium of hindgut -relationship: part_of EMAP:1915 ! TS16,hindgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1918 -name: TS16,mesentery,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003394 ! mesentery of hindgut -relationship: part_of EMAP:1915 ! TS16,hindgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003394 ! mesentery of hindgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1919 -name: TS16,dorsal mesentery,mesentery,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1918 ! TS16,mesentery,hindgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003394 ! mesentery of hindgut - -[Term] -id: EMAP:192 -name: TS11,parietal endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008800 ! parietal endoderm -relationship: part_of EMAP:190 ! TS11,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0008800 ! parietal endoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1920 -name: TS16,vascular element,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1915 ! TS16,hindgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:1921 -name: TS16,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:1691 ! TS16,gut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1922 -name: TS16,associated mesenchyme,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009478 ! associated mesenchyme of midgut -relationship: part_of EMAP:1921 ! TS16,midgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009478 ! associated mesenchyme of midgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1923 -name: TS16,epithelium,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003352 ! epithelium of midgut -relationship: part_of EMAP:1921 ! TS16,midgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003352 ! epithelium of midgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1924 -name: TS16,mesentery,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:1921 ! TS16,midgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1925 -name: TS16,dorsal mesentery,mesentery,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:1924 ! TS16,mesentery,midgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1926 -name: TS16,vascular element,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1921 ! TS16,midgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:1927 -name: TS16,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:1679 ! TS16,oral region,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1928 -name: TS16,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:1677 ! TS16,visceral organ -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1929 -name: TS16,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:1928 ! TS16,liver and biliary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:193 -name: TS11,Reichert's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004369 ! Reichert's membrane -relationship: part_of EMAP:192 ! TS11,parietal endoderm -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004369 ! Reichert's membrane -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1930 -name: TS16,gall bladder primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006242 ! gall bladder primordium -relationship: part_of EMAP:1928 ! TS16,liver and biliary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006242 ! gall bladder primordium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1931 -name: TS16,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:1928 ! TS16,liver and biliary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1932 -name: TS16,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:1931 ! TS16,hepatic duct -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1933 -name: TS16,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:1931 ! TS16,hepatic duct -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1934 -name: TS16,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:1928 ! TS16,liver and biliary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1935 -name: TS16,hepatic primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003894 ! liver primordium -relationship: part_of EMAP:1934 ! TS16,liver -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003894 ! liver primordium -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1936 -name: TS16,parenchyma,hepatic primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1935 ! TS16,hepatic primordium -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003894 ! liver primordium - -[Term] -id: EMAP:1937 -name: TS16,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:1677 ! TS16,visceral organ -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1938 -name: TS16,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:1937 ! TS16,respiratory system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1939 -name: TS16,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1938 ! TS16,lung -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:194 -name: TS11,visceral endoderm,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004877 ! visceral endoderm -relationship: part_of EMAP:190 ! TS11,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004877 ! visceral endoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1940 -name: TS16,associated mesenchyme,left lung rudiment -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:1939 ! TS16,left lung rudiment -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1941 -name: TS16,epithelium,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1939 ! TS16,left lung rudiment -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:1942 -name: TS16,vascular element,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1939 ! TS16,left lung rudiment -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:1943 -name: TS16,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1938 ! TS16,lung -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:1944 -name: TS16,associated mesenchyme,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1943 ! TS16,right lung rudiment -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:1945 -name: TS16,epithelium,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1943 ! TS16,right lung rudiment -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:1946 -name: TS16,vascular element,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1943 ! TS16,right lung rudiment -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:1947 -name: TS16,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:1937 ! TS16,respiratory system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1948 -name: TS16,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:1947 ! TS16,respiratory tract -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1949 -name: TS16,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:1948 ! TS16,lower,respiratory tract -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:195 -name: TS11,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:176 ! TS11,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1950 -name: TS16,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:1949 ! TS16,main bronchus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1951 -name: TS16,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:1949 ! TS16,main bronchus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1952 -name: TS16,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1949 ! TS16,main bronchus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:1953 -name: TS16,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:1948 ! TS16,lower,respiratory tract -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1954 -name: TS16,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:1953 ! TS16,trachea -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1955 -name: TS16,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:1953 ! TS16,trachea -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1956 -name: TS16,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1953 ! TS16,trachea -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:1957 -name: TS16,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0004122 ! genitourinary system -relationship: part_of EMAP:1677 ! TS16,visceral organ -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1958 -name: TS16,gonadal component,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0000991 ! gonad -relationship: part_of EMAP:1957 ! TS16,urogenital system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000991 ! gonad -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1959 -name: TS16,associated mesenchyme,gonadal component,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0003855 ! gonad mesenchyme -relationship: part_of EMAP:1958 ! TS16,gonadal component,urogenital system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003855 ! gonad mesenchyme -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:196 -name: TS11,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:195 ! TS11,trophectoderm -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1960 -name: TS16,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1958 ! TS16,gonadal component,urogenital system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0000991 ! gonad - -[Term] -id: EMAP:1961 -name: TS16,mesonephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000080 ! mesonephros -relationship: part_of EMAP:1957 ! TS16,urogenital system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1962 -name: TS16,associated mesenchyme,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1961 ! TS16,mesonephros -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:1963 -name: TS16,non-tubular part,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1961 ! TS16,mesonephros -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:1964 -name: TS16,tubule,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1961 ! TS16,mesonephros -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:1965 -name: TS16,nephric cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005792 ! nephric ridge -relationship: part_of EMAP:1957 ! TS16,urogenital system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0005792 ! nephric ridge -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1966 -name: TS16,nephric duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003074 ! mesonephric duct -relationship: part_of EMAP:1957 ! TS16,urogenital system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1967 -name: TS16,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:1461 ! TS16,embryo -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1968 -name: TS16,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1967 ! TS16,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:1969 -name: TS16,mesenchyme derived from neural crest,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1968 ! TS16,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:197 -name: TS11,primary trophoblast giant cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:196 ! TS11,mural trophectoderm -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -relationship: part_of UBERON:0006265 ! mural trophectoderm - -[Term] -id: EMAP:1970 -name: TS16,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:1968 ! TS16,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1971 -name: TS16,somite,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0009621 ! tail somite -relationship: part_of EMAP:1970 ! TS16,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0009621 ! tail somite -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1972 -name: TS16,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1971 ! TS16,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1973 -name: TS16,dermomyotome,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1972 ! TS16,somite 31 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1974 -name: TS16,myocoele,somite 31 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1972 ! TS16,somite 31 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1975 -name: TS16,sclerotome,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1972 ! TS16,somite 31 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1976 -name: TS16,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1971 ! TS16,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1977 -name: TS16,dermomyotome,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1976 ! TS16,somite 32 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1978 -name: TS16,myocoele,somite 32 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1976 ! TS16,somite 32 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1979 -name: TS16,sclerotome,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1976 ! TS16,somite 32 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:198 -name: TS11,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:195 ! TS11,trophectoderm -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1980 -name: TS16,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1971 ! TS16,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1981 -name: TS16,dermomyotome,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1980 ! TS16,somite 33 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1982 -name: TS16,myocoele,somite 33 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1980 ! TS16,somite 33 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1983 -name: TS16,sclerotome,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1980 ! TS16,somite 33 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1984 -name: TS16,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1971 ! TS16,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1985 -name: TS16,dermomyotome,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1984 ! TS16,somite 34 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1986 -name: TS16,myocoele,somite 34 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1984 ! TS16,somite 34 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1987 -name: TS16,sclerotome,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1984 ! TS16,somite 34 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1988 -name: TS16,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1971 ! TS16,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1989 -name: TS16,dermomyotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1988 ! TS16,somite 35 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:199 -name: TS11,ectoplacental cone -namespace: mouse_anatomy_stages -is_a: UBERON:0004364 ! ectoplacental cone -relationship: part_of EMAP:198 ! TS11,polar trophectoderm -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0004364 ! ectoplacental cone -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:1990 -name: TS16,myocoele,somite 35 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:1988 ! TS16,somite 35 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1991 -name: TS16,sclerotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1988 ! TS16,somite 35 -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:1992 -name: TS16,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1970 ! TS16,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:1993 -name: TS16,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1967 ! TS16,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:1994 -name: TS16,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:1993 ! TS16,nervous system,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1995 -name: TS16,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:1994 ! TS16,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1996 -name: TS16,neural plate,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003075 ! neural plate -relationship: part_of EMAP:1995 ! TS16,future spinal cord,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003075 ! neural plate -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1997 -name: TS16,neural crest,neural plate,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003853 ! spinal cord neural crest -relationship: part_of EMAP:1996 ! TS16,neural plate,future spinal cord,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0003853 ! spinal cord neural crest -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1998 -name: TS16,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:1999 -name: TS16,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:1998 ! TS16,extraembryonic component -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:2 -name: TS1,one-cell stage -namespace: mouse_anatomy_stages -is_a: UBERON:0000106 ! zygote stage -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000003 ! Theiler stage 01 -intersection_of: UBERON:0000106 ! zygote stage -intersection_of: exists_during MmusDv:0000003 ! Theiler stage 01 - -[Term] -id: EMAP:20 -name: TS4,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:19 ! TS4,trophectoderm -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000008 ! Theiler stage 04 - -[Term] -id: EMAP:200 -name: TS11,cytotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000319 ! cytotrophoblast -relationship: part_of EMAP:199 ! TS11,ectoplacental cone -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000319 ! cytotrophoblast -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:2000 -name: TS16,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:1999 ! TS16,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:2001 -name: TS16,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:2000 ! TS16,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:2002 -name: TS16,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2001 ! TS16,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:2003 -name: TS16,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1999 ! TS16,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:2004 -name: TS16,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:2003 ! TS16,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:2005 -name: TS16,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2004 ! TS16,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:2006 -name: TS17,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2007 -name: TS17,branchial arch -namespace: mouse_anatomy_stages -is_a: UBERON:0002539 ! pharyngeal arch -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2008 -name: TS17,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0004362 ! pharyngeal arch 1 -relationship: part_of EMAP:2007 ! TS17,branchial arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2009 -name: TS17,branchial groove,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft -relationship: part_of EMAP:2008 ! TS17,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:201 -name: TS11,syncytiotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000371 ! syncytiotrophoblast -relationship: part_of EMAP:199 ! TS11,ectoplacental cone -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0000371 ! syncytiotrophoblast -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:2010 -name: TS17,ectoderm,branchial groove,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2009 ! TS17,branchial groove,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EMAP:2011 -name: TS17,branchial pouch,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007122 ! pharyngeal pouch 1 -relationship: part_of EMAP:2008 ! TS17,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2012 -name: TS17,endoderm,branchial pouch,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2011 ! TS17,branchial pouch,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EMAP:2013 -name: TS17,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007237 ! 1st arch mandibular component -relationship: part_of EMAP:2008 ! TS17,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007237 ! 1st arch mandibular component -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2014 -name: TS17,ectoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013155 ! 1st arch mandibular ectoderm -relationship: part_of EMAP:2013 ! TS17,mandibular component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0013155 ! 1st arch mandibular ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2015 -name: TS17,endoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013156 ! 1st arch mandibular endoderm -relationship: part_of EMAP:2013 ! TS17,mandibular component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0013156 ! 1st arch mandibular endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2016 -name: TS17,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009584 ! 1st arch mandibular mesenchyme -relationship: part_of EMAP:2013 ! TS17,mandibular component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009584 ! 1st arch mandibular mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2017 -name: TS17,mesenchyme derived from head mesoderm,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2016 ! TS17,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:2018 -name: TS17,mesenchyme derived from neural crest,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2016 ! TS17,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:2019 -name: TS17,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007238 ! 1st arch maxillary component -relationship: part_of EMAP:2008 ! TS17,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007238 ! 1st arch maxillary component -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:202 -name: TS11,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0001040 ! yolk sac -relationship: part_of EMAP:176 ! TS11,extraembryonic component -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0001040 ! yolk sac -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:2020 -name: TS17,ectoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0012313 ! 1st arch maxillary ectoderm -relationship: part_of EMAP:2019 ! TS17,maxillary component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012313 ! 1st arch maxillary ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2021 -name: TS17,endoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013154 ! 1st arch maxillary endoderm -relationship: part_of EMAP:2019 ! TS17,maxillary component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0013154 ! 1st arch maxillary endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2022 -name: TS17,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010045 ! 1st arch maxillary mesenchyme -relationship: part_of EMAP:2019 ! TS17,maxillary component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010045 ! 1st arch maxillary mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2023 -name: TS17,mesenchyme derived from head mesoderm,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2022 ! TS17,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:2024 -name: TS17,mesenchyme derived from neural crest,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2022 ! TS17,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:2025 -name: TS17,maxillary-mandibular groove -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2008 ! TS17,1st arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:2026 -name: TS17,ectoderm,maxillary-mandibular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -relationship: part_of EMAP:2025 ! TS17,maxillary-mandibular groove -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2027 -name: TS17,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003066 ! pharyngeal arch 2 -relationship: part_of EMAP:2007 ! TS17,branchial arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2028 -name: TS17,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005873 ! 2nd arch pharyngeal cleft -relationship: part_of EMAP:2027 ! TS17,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005873 ! 2nd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2029 -name: TS17,ectoderm,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:2028 ! TS17,branchial groove,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:203 -name: TS11,endoderm,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003257 ! yolk sac endoderm -relationship: part_of EMAP:202 ! TS11,yolk sac -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003257 ! yolk sac endoderm -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:2030 -name: TS17,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009215 ! pharyngeal membrane of 2nd arch -relationship: part_of EMAP:2027 ! TS17,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009215 ! pharyngeal membrane of 2nd arch -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2031 -name: TS17,ectoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:2030 ! TS17,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2032 -name: TS17,endoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:2030 ! TS17,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2033 -name: TS17,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007123 ! pharyngeal pouch 2 -relationship: part_of EMAP:2027 ! TS17,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2034 -name: TS17,endoderm,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:2033 ! TS17,branchial pouch,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2035 -name: TS17,endoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:2027 ! TS17,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2036 -name: TS17,epithelium,2nd arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2027 ! TS17,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003066 ! pharyngeal arch 2 - -[Term] -id: EMAP:2037 -name: TS17,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005689 ! 2nd arch mesenchyme -relationship: part_of EMAP:2027 ! TS17,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2038 -name: TS17,mesenchyme derived from head mesoderm,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:2037 ! TS17,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2039 -name: TS17,mesenchyme derived from neural crest,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -relationship: part_of EMAP:2037 ! TS17,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:204 -name: TS11,mesoderm,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003264 ! mesoderm of yolk sac -relationship: part_of EMAP:202 ! TS11,yolk sac -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -intersection_of: UBERON:0003264 ! mesoderm of yolk sac -intersection_of: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:2040 -name: TS17,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003114 ! pharyngeal arch 3 -relationship: part_of EMAP:2007 ! TS17,branchial arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2041 -name: TS17,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005874 ! 3rd arch pharyngeal cleft -relationship: part_of EMAP:2040 ! TS17,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005874 ! 3rd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2042 -name: TS17,epithelium,branchial groove,3rd arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2041 ! TS17,branchial groove,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005874 ! 3rd arch pharyngeal cleft - -[Term] -id: EMAP:2043 -name: TS17,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009216 ! pharyngeal membrane of 3rd arch -relationship: part_of EMAP:2040 ! TS17,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009216 ! pharyngeal membrane of 3rd arch -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2044 -name: TS17,ectoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:2043 ! TS17,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2045 -name: TS17,endoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:2043 ! TS17,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2046 -name: TS17,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007124 ! pharyngeal pouch 3 -relationship: part_of EMAP:2040 ! TS17,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2047 -name: TS17,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:2046 ! TS17,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2048 -name: TS17,dorsal,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -relationship: part_of EMAP:2047 ! TS17,endoderm,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2049 -name: TS17,ventral,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -relationship: part_of EMAP:2047 ! TS17,endoderm,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:205 -name: TS11,blood island -namespace: mouse_anatomy_stages -is_a: UBERON:0003304 ! mesoderm blood island -relationship: part_of EMAP:204 ! TS11,mesoderm,yolk sac -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 - -[Term] -id: EMAP:2050 -name: TS17,ectoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:2040 ! TS17,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2051 -name: TS17,endoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:2040 ! TS17,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2052 -name: TS17,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005690 ! 3rd arch mesenchyme -relationship: part_of EMAP:2040 ! TS17,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2053 -name: TS17,mesenchyme derived from head mesoderm,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:2052 ! TS17,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2054 -name: TS17,mesenchyme derived from neural crest,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -relationship: part_of EMAP:2052 ! TS17,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2055 -name: TS17,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003115 ! pharyngeal arch 4 -relationship: part_of EMAP:2007 ! TS17,branchial arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2056 -name: TS17,branchial groove,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005875 ! 4th arch pharyngeal cleft -relationship: part_of EMAP:2055 ! TS17,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005875 ! 4th arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2057 -name: TS17,ectoderm,branchial groove,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:2056 ! TS17,branchial groove,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2058 -name: TS17,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009217 ! pharyngeal membrane of 4th arch -relationship: part_of EMAP:2055 ! TS17,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009217 ! pharyngeal membrane of 4th arch -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2059 -name: TS17,ectoderm,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:2058 ! TS17,branchial membrane,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:206 -name: TS11,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:204 ! TS11,mesoderm,yolk sac -relationship: exists_during MmusDv:0000017 ! Theiler stage 11 -relationship: part_of UBERON:0003264 ! mesoderm of yolk sac - -[Term] -id: EMAP:2060 -name: TS17,endoderm,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:2058 ! TS17,branchial membrane,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2061 -name: TS17,branchial pouch,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007125 ! pharyngeal pouch 4 -relationship: part_of EMAP:2055 ! TS17,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2062 -name: TS17,endoderm,branchial pouch,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:2061 ! TS17,branchial pouch,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2063 -name: TS17,cervical sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2055 ! TS17,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003115 ! pharyngeal arch 4 - -[Term] -id: EMAP:2064 -name: TS17,ectoderm,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:2055 ! TS17,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2065 -name: TS17,endoderm,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:2055 ! TS17,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2066 -name: TS17,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005691 ! 4th arch mesenchyme -relationship: part_of EMAP:2055 ! TS17,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005691 ! 4th arch mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2067 -name: TS17,mesenchyme derived from head mesoderm,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -relationship: part_of EMAP:2066 ! TS17,mesenchyme,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2068 -name: TS17,mesenchyme derived from neural crest,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010256 ! 4th arch mesenchyme from neural crest -relationship: part_of EMAP:2066 ! TS17,mesenchyme,4th arch -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010256 ! 4th arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2069 -name: TS17,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:207 -name: TS12,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2070 -name: TS17,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:2069 ! TS17,cavities and their linings -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2071 -name: TS17,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2070 ! TS17,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2072 -name: TS17,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2071 ! TS17,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2073 -name: TS17,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:2071 ! TS17,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2074 -name: TS17,parietal,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007187 ! pericardial parietal mesothelium -relationship: part_of EMAP:2073 ! TS17,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2075 -name: TS17,visceral,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007186 ! pericardial visceral mesothelium -relationship: part_of EMAP:2073 ! TS17,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2076 -name: TS17,pericardio-peritoneal canal,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:2070 ! TS17,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2077 -name: TS17,cavity,pericardio-peritoneal canal,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:2076 ! TS17,pericardio-peritoneal canal,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2078 -name: TS17,mesothelium,pericardio-peritoneal canal,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:2076 ! TS17,pericardio-peritoneal canal,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2079 -name: TS17,parietal,mesothelium,pericardio-peritoneal canal,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -relationship: part_of EMAP:2078 ! TS17,mesothelium,pericardio-peritoneal canal,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:208 -name: TS12,branchial arch -namespace: mouse_anatomy_stages -is_a: UBERON:0002539 ! pharyngeal arch -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2080 -name: TS17,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2070 ! TS17,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2081 -name: TS17,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:2080 ! TS17,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2082 -name: TS17,cavity,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005450 ! greater sac cavity -relationship: part_of EMAP:2081 ! TS17,greater sac -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2083 -name: TS17,mesothelium,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:2081 ! TS17,greater sac -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2084 -name: TS17,parietal,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2083 ! TS17,mesothelium,greater sac -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:2085 -name: TS17,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:2080 ! TS17,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2086 -name: TS17,mesothelium,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:2085 ! TS17,omental bursa -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2087 -name: TS17,parietal,mesothelium,omental bursa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2086 ! TS17,mesothelium,omental bursa -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:2088 -name: TS17,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2070 ! TS17,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2089 -name: TS17,cavity,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2088 ! TS17,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:209 -name: TS12,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0004362 ! pharyngeal arch 1 -relationship: part_of EMAP:208 ! TS12,branchial arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2090 -name: TS17,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2088 ! TS17,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2091 -name: TS17,parietal,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2090 ! TS17,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2092 -name: TS17,visceral,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2090 ! TS17,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2093 -name: TS17,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2094 -name: TS17,surface ectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:2093 ! TS17,ectoderm,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2095 -name: TS17,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2096 -name: TS17,forelimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005417 ! forelimb bud -relationship: part_of EMAP:2095 ! TS17,limb -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2097 -name: TS17,ectoderm,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2096 ! TS17,forelimb bud -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:2098 -name: TS17,apical ectodermal ridge,ectoderm,forelimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -relationship: part_of EMAP:2097 ! TS17,ectoderm,forelimb bud -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2099 -name: TS17,mesenchyme,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2096 ! TS17,forelimb bud -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:21 -name: TS4,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:19 ! TS4,trophectoderm -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000008 ! Theiler stage 04 - -[Term] -id: EMAP:210 -name: TS12,branchial groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft -relationship: part_of EMAP:209 ! TS12,1st arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2100 -name: TS17,hindlimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005418 ! hindlimb bud -relationship: part_of EMAP:2095 ! TS17,limb -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005418 ! hindlimb bud -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2101 -name: TS17,ectoderm,hindlimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2100 ! TS17,hindlimb bud -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005418 ! hindlimb bud - -[Term] -id: EMAP:2102 -name: TS17,apical ectodermal ridge,ectoderm,hindlimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -relationship: part_of EMAP:2101 ! TS17,ectoderm,hindlimb bud -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2103 -name: TS17,mesenchyme,hindlimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2100 ! TS17,hindlimb bud -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005418 ! hindlimb bud - -[Term] -id: EMAP:2104 -name: TS17,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2105 -name: TS17,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:2104 ! TS17,mesenchyme,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2106 -name: TS17,mesenchyme derived from head mesoderm,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:2105 ! TS17,head mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2107 -name: TS17,mesenchyme derived from neural crest,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:2105 ! TS17,head mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2108 -name: TS17,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:2104 ! TS17,mesenchyme,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2109 -name: TS17,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:2108 ! TS17,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:211 -name: TS12,ectoderm,branchial groove -namespace: mouse_anatomy_stages -relationship: part_of EMAP:210 ! TS12,branchial groove -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EMAP:2110 -name: TS17,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007214 ! mesenchyme derived from trunk neural crest -relationship: part_of EMAP:2108 ! TS17,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2111 -name: TS17,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:2108 ! TS17,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2112 -name: TS17,somite,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005598 ! trunk somite -relationship: part_of EMAP:2111 ! TS17,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2113 -name: TS17,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2114 -name: TS17,dermomyotome,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2113 ! TS17,somite 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2115 -name: TS17,myocoele,somite 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2113 ! TS17,somite 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2116 -name: TS17,sclerotome,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2113 ! TS17,somite 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2117 -name: TS17,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2118 -name: TS17,dermomyotome,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2117 ! TS17,somite 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2119 -name: TS17,myocoele,somite 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2117 ! TS17,somite 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:212 -name: TS12,branchial membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:209 ! TS12,1st arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2120 -name: TS17,sclerotome,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2117 ! TS17,somite 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2121 -name: TS17,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2122 -name: TS17,dermomyotome,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2121 ! TS17,somite 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2123 -name: TS17,myocoele,somite 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2121 ! TS17,somite 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2124 -name: TS17,sclerotome,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2121 ! TS17,somite 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2125 -name: TS17,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2126 -name: TS17,dermomyotome,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2125 ! TS17,somite 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2127 -name: TS17,myocoele,somite 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2125 ! TS17,somite 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2128 -name: TS17,sclerotome,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2125 ! TS17,somite 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2129 -name: TS17,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:213 -name: TS12,ectoderm,branchial membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:212 ! TS12,branchial membrane -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:2130 -name: TS17,dermomyotome,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2129 ! TS17,somite 09 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2131 -name: TS17,myocoele,somite 09 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2129 ! TS17,somite 09 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2132 -name: TS17,sclerotome,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2129 ! TS17,somite 09 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2133 -name: TS17,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2134 -name: TS17,dermomyotome,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2133 ! TS17,somite 10 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2135 -name: TS17,myocoele,somite 10 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2133 ! TS17,somite 10 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2136 -name: TS17,sclerotome,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2133 ! TS17,somite 10 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2137 -name: TS17,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2138 -name: TS17,dermomyotome,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2137 ! TS17,somite 11 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2139 -name: TS17,myocoele,somite 11 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2137 ! TS17,somite 11 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:214 -name: TS12,endoderm,branchial membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:212 ! TS12,branchial membrane -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:2140 -name: TS17,sclerotome,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2137 ! TS17,somite 11 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2141 -name: TS17,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2142 -name: TS17,dermomyotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2141 ! TS17,somite 12 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2143 -name: TS17,myocoele,somite 12 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2141 ! TS17,somite 12 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2144 -name: TS17,sclerotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2141 ! TS17,somite 12 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2145 -name: TS17,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2146 -name: TS17,dermomyotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2145 ! TS17,somite 13 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2147 -name: TS17,myocoele,somite 13 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2145 ! TS17,somite 13 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2148 -name: TS17,sclerotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2145 ! TS17,somite 13 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2149 -name: TS17,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:215 -name: TS12,branchial pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0007122 ! pharyngeal pouch 1 -relationship: part_of EMAP:209 ! TS12,1st arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2150 -name: TS17,dermomyotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2149 ! TS17,somite 14 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2151 -name: TS17,myocoele,somite 14 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2149 ! TS17,somite 14 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2152 -name: TS17,sclerotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2149 ! TS17,somite 14 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2153 -name: TS17,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2154 -name: TS17,dermomyotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2153 ! TS17,somite 15 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2155 -name: TS17,myocoele,somite 15 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2153 ! TS17,somite 15 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2156 -name: TS17,sclerotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2153 ! TS17,somite 15 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2157 -name: TS17,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2158 -name: TS17,dermomyotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2157 ! TS17,somite 16 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2159 -name: TS17,myocoele,somite 16 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2157 ! TS17,somite 16 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:216 -name: TS12,endoderm,branchial pouch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:215 ! TS12,branchial pouch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EMAP:2160 -name: TS17,sclerotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2157 ! TS17,somite 16 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2161 -name: TS17,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2162 -name: TS17,dermomyotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2161 ! TS17,somite 17 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2163 -name: TS17,myocoele,somite 17 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2161 ! TS17,somite 17 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2164 -name: TS17,sclerotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2161 ! TS17,somite 17 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2165 -name: TS17,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2166 -name: TS17,dermomyotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2165 ! TS17,somite 18 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2167 -name: TS17,myocoele,somite 18 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2165 ! TS17,somite 18 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2168 -name: TS17,sclerotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2165 ! TS17,somite 18 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2169 -name: TS17,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:217 -name: TS12,ectoderm,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:209 ! TS12,1st arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:2170 -name: TS17,dermomyotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2169 ! TS17,somite 19 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2171 -name: TS17,myocoele,somite 19 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2169 ! TS17,somite 19 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2172 -name: TS17,sclerotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2169 ! TS17,somite 19 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2173 -name: TS17,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2174 -name: TS17,dermomyotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2173 ! TS17,somite 20 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2175 -name: TS17,myocoele,somite 20 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2173 ! TS17,somite 20 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2176 -name: TS17,sclerotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2173 ! TS17,somite 20 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2177 -name: TS17,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2178 -name: TS17,dermomyotome,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2177 ! TS17,somite 21 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2179 -name: TS17,myocoele,somite 21 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2177 ! TS17,somite 21 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:218 -name: TS12,endoderm,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:209 ! TS12,1st arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:2180 -name: TS17,sclerotome,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2177 ! TS17,somite 21 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2181 -name: TS17,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2182 -name: TS17,dermomyotome,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2181 ! TS17,somite 22 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2183 -name: TS17,myocoele,somite 22 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2181 ! TS17,somite 22 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2184 -name: TS17,sclerotome,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2181 ! TS17,somite 22 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2185 -name: TS17,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2186 -name: TS17,dermomyotome,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2185 ! TS17,somite 23 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2187 -name: TS17,myocoele,somite 23 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2185 ! TS17,somite 23 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2188 -name: TS17,sclerotome,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2185 ! TS17,somite 23 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2189 -name: TS17,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:219 -name: TS12,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010042 ! 1st arch mesenchyme -relationship: part_of EMAP:209 ! TS12,1st arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0010042 ! 1st arch mesenchyme -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2190 -name: TS17,dermomyotome,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2189 ! TS17,somite 24 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2191 -name: TS17,myocoele,somite 24 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2189 ! TS17,somite 24 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2192 -name: TS17,sclerotome,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2189 ! TS17,somite 24 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2193 -name: TS17,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2194 -name: TS17,dermomyotome,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2193 ! TS17,somite 25 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2195 -name: TS17,myocoele,somite 25 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2193 ! TS17,somite 25 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2196 -name: TS17,sclerotome,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2193 ! TS17,somite 25 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2197 -name: TS17,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2198 -name: TS17,dermomyotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2197 ! TS17,somite 26 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2199 -name: TS17,myocoele,somite 26 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2197 ! TS17,somite 26 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:22 -name: TS4,zona pellucida -namespace: mouse_anatomy_stages -is_a: UBERON:0000086 ! zona pellucida -relationship: part_of EMAP:15 ! TS4,extraembryonic component -relationship: exists_during MmusDv:0000008 ! Theiler stage 04 -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: exists_during MmusDv:0000008 ! Theiler stage 04 - -[Term] -id: EMAP:220 -name: TS12,mesenchyme derived from neural crest,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010259 ! 1st arch mesenchyme from neural crest -relationship: part_of EMAP:219 ! TS12,mesenchyme,1st arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0010259 ! 1st arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2200 -name: TS17,sclerotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2197 ! TS17,somite 26 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2201 -name: TS17,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2202 -name: TS17,dermomyotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2201 ! TS17,somite 27 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2203 -name: TS17,myocoele,somite 27 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2201 ! TS17,somite 27 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2204 -name: TS17,sclerotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2201 ! TS17,somite 27 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2205 -name: TS17,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2206 -name: TS17,dermomyotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2205 ! TS17,somite 28 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2207 -name: TS17,myocoele,somite 28 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2205 ! TS17,somite 28 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2208 -name: TS17,sclerotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2205 ! TS17,somite 28 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2209 -name: TS17,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:221 -name: TS12,mesenchyme derived from head mesoderm,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010341 ! 1st arch mesenchyme from head mesenchyme -relationship: part_of EMAP:219 ! TS12,mesenchyme,1st arch -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0010341 ! 1st arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2210 -name: TS17,dermomyotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2209 ! TS17,somite 29 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2211 -name: TS17,myocoele,somite 29 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2209 ! TS17,somite 29 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2212 -name: TS17,sclerotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2209 ! TS17,somite 29 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2213 -name: TS17,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2112 ! TS17,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2214 -name: TS17,dermomyotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2213 ! TS17,somite 30 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2215 -name: TS17,myocoele,somite 30 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2213 ! TS17,somite 30 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2216 -name: TS17,sclerotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2213 ! TS17,somite 30 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2217 -name: TS17,septum transversum -namespace: mouse_anatomy_stages -is_a: UBERON:0004161 ! septum transversum -relationship: part_of EMAP:2108 ! TS17,trunk mesenchyme -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2218 -name: TS17,non-hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2217 ! TS17,septum transversum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:2219 -name: TS17,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:222 -name: TS12,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2220 -name: TS17,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2221 -name: TS17,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:2220 ! TS17,organ system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2222 -name: TS17,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:2221 ! TS17,visceral organ -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2223 -name: TS17,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:2222 ! TS17,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2224 -name: TS17,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:2223 ! TS17,oral region,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2225 -name: TS17,pituitary,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2224 ! TS17,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0010047 ! oral gland - -[Term] -id: EMAP:2226 -name: TS17,Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0005356 ! Rathke's pouch -relationship: part_of EMAP:2225 ! TS17,pituitary,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2227 -name: TS17,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:2220 ! TS17,organ system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2228 -name: TS17,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:2227 ! TS17,nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2229 -name: TS17,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:2228 ! TS17,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:223 -name: TS12,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:222 ! TS12,cavities and their linings -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2230 -name: TS17,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:2229 ! TS17,brain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2231 -name: TS17,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:2230 ! TS17,forebrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2232 -name: TS17,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:2231 ! TS17,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2233 -name: TS17,pituitary,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:2232 ! TS17,gland,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2234 -name: TS17,infundibular recess of 3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006250 ! infundibular recess of 3rd ventricle -relationship: part_of EMAP:2233 ! TS17,pituitary,gland,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006250 ! infundibular recess of 3rd ventricle -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2235 -name: TS17,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:2222 ! TS17,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2236 -name: TS17,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:2235 ! TS17,gut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2237 -name: TS17,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:2236 ! TS17,foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2238 -name: TS17,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003091 ! thyroid primordium -relationship: part_of EMAP:2237 ! TS17,gland,foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2239 -name: TS17,associated mesenchyme,thyroid primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2238 ! TS17,thyroid primordium -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003091 ! thyroid primordium - -[Term] -id: EMAP:224 -name: TS12,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:223 ! TS12,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2240 -name: TS17,endoderm,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003261 ! thyroid primordium endoderm -relationship: part_of EMAP:2238 ! TS17,thyroid primordium -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003261 ! thyroid primordium endoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2241 -name: TS17,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:2231 ! TS17,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2242 -name: TS17,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:2241 ! TS17,3rd ventricle -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2243 -name: TS17,optic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0002287 ! optic recess of third ventricle -relationship: part_of EMAP:2241 ! TS17,3rd ventricle -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2244 -name: TS17,floor plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003309 ! floor plate of diencephalon -relationship: part_of EMAP:2231 ! TS17,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2245 -name: TS17,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:2231 ! TS17,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2246 -name: TS17,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:2231 ! TS17,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2247 -name: TS17,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:2246 ! TS17,lateral wall,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2248 -name: TS17,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2246 ! TS17,lateral wall,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:2249 -name: TS17,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2246 ! TS17,lateral wall,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:225 -name: TS12,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:224 ! TS12,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2250 -name: TS17,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:2231 ! TS17,diencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2251 -name: TS17,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:2230 ! TS17,forebrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2252 -name: TS17,mantle layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2251 ! TS17,telencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:2253 -name: TS17,marginal layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2251 ! TS17,telencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:2254 -name: TS17,ventricular layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2251 ! TS17,telencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:2255 -name: TS17,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:2251 ! TS17,telencephalon -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2256 -name: TS17,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:2255 ! TS17,lateral ventricle -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2257 -name: TS17,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:2229 ! TS17,brain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2258 -name: TS17,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2259 -name: TS17,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005499 ! rhombomere 1 -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:226 -name: TS12,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:224 ! TS12,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2260 -name: TS17,floor plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005566 ! rhombomere 1 floor plate -relationship: part_of EMAP:2259 ! TS17,rhombomere 01 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2261 -name: TS17,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005567 ! rhombomere 1 lateral wall -relationship: part_of EMAP:2259 ! TS17,rhombomere 01 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2262 -name: TS17,mantle layer,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2261 ! TS17,lateral wall,rhombomere 01 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005567 ! rhombomere 1 lateral wall - -[Term] -id: EMAP:2263 -name: TS17,marginal layer,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2261 ! TS17,lateral wall,rhombomere 01 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005567 ! rhombomere 1 lateral wall - -[Term] -id: EMAP:2264 -name: TS17,ventricular layer,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2261 ! TS17,lateral wall,rhombomere 01 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005567 ! rhombomere 1 lateral wall - -[Term] -id: EMAP:2265 -name: TS17,roof plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005568 ! rhombomere 1 roof plate -relationship: part_of EMAP:2259 ! TS17,rhombomere 01 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005568 ! rhombomere 1 roof plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2266 -name: TS17,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005569 ! rhombomere 2 -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2267 -name: TS17,floor plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005570 ! rhombomere 2 floor plate -relationship: part_of EMAP:2266 ! TS17,rhombomere 02 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2268 -name: TS17,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005571 ! rhombomere 2 lateral wall -relationship: part_of EMAP:2266 ! TS17,rhombomere 02 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2269 -name: TS17,mantle layer,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2268 ! TS17,lateral wall,rhombomere 02 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005571 ! rhombomere 2 lateral wall - -[Term] -id: EMAP:227 -name: TS12,pericardio-peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:223 ! TS12,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2270 -name: TS17,marginal layer,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2268 ! TS17,lateral wall,rhombomere 02 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005571 ! rhombomere 2 lateral wall - -[Term] -id: EMAP:2271 -name: TS17,ventricular layer,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2268 ! TS17,lateral wall,rhombomere 02 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005571 ! rhombomere 2 lateral wall - -[Term] -id: EMAP:2272 -name: TS17,roof plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005572 ! rhombomere 2 roof plate -relationship: part_of EMAP:2266 ! TS17,rhombomere 02 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005572 ! rhombomere 2 roof plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2273 -name: TS17,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005507 ! rhombomere 3 -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2274 -name: TS17,floor plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005573 ! rhombomere 3 floor plate -relationship: part_of EMAP:2273 ! TS17,rhombomere 03 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2275 -name: TS17,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005574 ! rhombomere 3 lateral wall -relationship: part_of EMAP:2273 ! TS17,rhombomere 03 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2276 -name: TS17,mantle layer,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2275 ! TS17,lateral wall,rhombomere 03 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005574 ! rhombomere 3 lateral wall - -[Term] -id: EMAP:2277 -name: TS17,marginal layer,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2275 ! TS17,lateral wall,rhombomere 03 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005574 ! rhombomere 3 lateral wall - -[Term] -id: EMAP:2278 -name: TS17,ventricular layer,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2275 ! TS17,lateral wall,rhombomere 03 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005574 ! rhombomere 3 lateral wall - -[Term] -id: EMAP:2279 -name: TS17,roof plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005575 ! rhombomere 3 roof plate -relationship: part_of EMAP:2273 ! TS17,rhombomere 03 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:228 -name: TS12,cavity,pericardio-peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:227 ! TS12,pericardio-peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2280 -name: TS17,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005511 ! rhombomere 4 -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2281 -name: TS17,floor plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005576 ! rhombomere 4 floor plate -relationship: part_of EMAP:2280 ! TS17,rhombomere 04 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2282 -name: TS17,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005577 ! rhombomere 4 lateral wall -relationship: part_of EMAP:2280 ! TS17,rhombomere 04 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2283 -name: TS17,mantle layer,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2282 ! TS17,lateral wall,rhombomere 04 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005577 ! rhombomere 4 lateral wall - -[Term] -id: EMAP:2284 -name: TS17,marginal layer,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2282 ! TS17,lateral wall,rhombomere 04 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005577 ! rhombomere 4 lateral wall - -[Term] -id: EMAP:2285 -name: TS17,ventricular layer,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2282 ! TS17,lateral wall,rhombomere 04 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005577 ! rhombomere 4 lateral wall - -[Term] -id: EMAP:2286 -name: TS17,roof plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005578 ! rhombomere 4 roof plate -relationship: part_of EMAP:2280 ! TS17,rhombomere 04 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2287 -name: TS17,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005515 ! rhombomere 5 -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2288 -name: TS17,floor plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005579 ! rhombomere 5 floor plate -relationship: part_of EMAP:2287 ! TS17,rhombomere 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2289 -name: TS17,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005580 ! rhombomere 5 lateral wall -relationship: part_of EMAP:2287 ! TS17,rhombomere 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:229 -name: TS12,mesothelium,pericardio-peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:227 ! TS12,pericardio-peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2290 -name: TS17,mantle layer,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2289 ! TS17,lateral wall,rhombomere 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005580 ! rhombomere 5 lateral wall - -[Term] -id: EMAP:2291 -name: TS17,marginal layer,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2289 ! TS17,lateral wall,rhombomere 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005580 ! rhombomere 5 lateral wall - -[Term] -id: EMAP:2292 -name: TS17,ventricular layer,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2289 ! TS17,lateral wall,rhombomere 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005580 ! rhombomere 5 lateral wall - -[Term] -id: EMAP:2293 -name: TS17,roof plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005581 ! rhombomere 5 roof plate -relationship: part_of EMAP:2287 ! TS17,rhombomere 05 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2294 -name: TS17,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005519 ! rhombomere 6 -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2295 -name: TS17,floor plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005582 ! rhombomere 6 floor plate -relationship: part_of EMAP:2294 ! TS17,rhombomere 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2296 -name: TS17,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005583 ! rhombomere 6 lateral wall -relationship: part_of EMAP:2294 ! TS17,rhombomere 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2297 -name: TS17,mantle layer,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2296 ! TS17,lateral wall,rhombomere 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005583 ! rhombomere 6 lateral wall - -[Term] -id: EMAP:2298 -name: TS17,marginal layer,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2296 ! TS17,lateral wall,rhombomere 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005583 ! rhombomere 6 lateral wall - -[Term] -id: EMAP:2299 -name: TS17,ventricular layer,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2296 ! TS17,lateral wall,rhombomere 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005583 ! rhombomere 6 lateral wall - -[Term] -id: EMAP:23 -name: TS5,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000009 ! Theiler stage 05 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000009 ! Theiler stage 05 - -[Term] -id: EMAP:230 -name: TS12,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:223 ! TS12,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2300 -name: TS17,roof plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005584 ! rhombomere 6 roof plate -relationship: part_of EMAP:2294 ! TS17,rhombomere 06 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2301 -name: TS17,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005523 ! rhombomere 7 -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2302 -name: TS17,floor plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005585 ! rhombomere 7 floor plate -relationship: part_of EMAP:2301 ! TS17,rhombomere 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2303 -name: TS17,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005586 ! rhombomere 7 lateral wall -relationship: part_of EMAP:2301 ! TS17,rhombomere 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2304 -name: TS17,mantle layer,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2303 ! TS17,lateral wall,rhombomere 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005586 ! rhombomere 7 lateral wall - -[Term] -id: EMAP:2305 -name: TS17,marginal layer,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2303 ! TS17,lateral wall,rhombomere 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005586 ! rhombomere 7 lateral wall - -[Term] -id: EMAP:2306 -name: TS17,ventricular layer,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2303 ! TS17,lateral wall,rhombomere 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005586 ! rhombomere 7 lateral wall - -[Term] -id: EMAP:2307 -name: TS17,roof plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005587 ! rhombomere 7 roof plate -relationship: part_of EMAP:2301 ! TS17,rhombomere 07 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2308 -name: TS17,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005527 ! rhombomere 8 -relationship: part_of EMAP:2257 ! TS17,hindbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2309 -name: TS17,floor plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005588 ! rhombomere 8 floor plate -relationship: part_of EMAP:2308 ! TS17,rhombomere 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:231 -name: TS12,cavity,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:230 ! TS12,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2310 -name: TS17,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005589 ! rhombomere 8 lateral wall -relationship: part_of EMAP:2308 ! TS17,rhombomere 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2311 -name: TS17,mantle layer,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2310 ! TS17,lateral wall,rhombomere 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005589 ! rhombomere 8 lateral wall - -[Term] -id: EMAP:2312 -name: TS17,marginal layer,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2310 ! TS17,lateral wall,rhombomere 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005589 ! rhombomere 8 lateral wall - -[Term] -id: EMAP:2313 -name: TS17,ventricular layer,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2310 ! TS17,lateral wall,rhombomere 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005589 ! rhombomere 8 lateral wall - -[Term] -id: EMAP:2314 -name: TS17,roof plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005590 ! rhombomere 8 roof plate -relationship: part_of EMAP:2308 ! TS17,rhombomere 08 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2315 -name: TS17,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:2229 ! TS17,brain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2316 -name: TS17,floor plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003307 ! floor plate of midbrain -relationship: part_of EMAP:2315 ! TS17,midbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2317 -name: TS17,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:2315 ! TS17,midbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2318 -name: TS17,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:2317 ! TS17,lateral wall,midbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2319 -name: TS17,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2317 ! TS17,lateral wall,midbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:232 -name: TS12,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0005669 ! peritoneal cavity mesothelium -relationship: part_of EMAP:230 ! TS12,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005669 ! peritoneal cavity mesothelium -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2320 -name: TS17,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2317 ! TS17,lateral wall,midbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:2321 -name: TS17,mesencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2315 ! TS17,midbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001891 ! midbrain - -[Term] -id: EMAP:2322 -name: TS17,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003299 ! roof plate of midbrain -relationship: part_of EMAP:2315 ! TS17,midbrain -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2323 -name: TS17,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:2228 ! TS17,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2324 -name: TS17,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:2323 ! TS17,future spinal cord -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2325 -name: TS17,floor plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003306 ! floor plate of neural tube -relationship: part_of EMAP:2324 ! TS17,neural tube,future spinal cord -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2326 -name: TS17,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2324 ! TS17,neural tube,future spinal cord -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001049 ! neural tube - -[Term] -id: EMAP:2327 -name: TS17,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003842 ! neural tube lumen -relationship: part_of EMAP:2324 ! TS17,neural tube,future spinal cord -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2328 -name: TS17,neural luminal occlusion,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2327 ! TS17,neural lumen,neural tube,future spinal cord -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003842 ! neural tube lumen - -[Term] -id: EMAP:2329 -name: TS17,roof plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003298 ! roof plate of neural tube -relationship: part_of EMAP:2324 ! TS17,neural tube,future spinal cord -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003298 ! roof plate of neural tube -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:233 -name: TS12,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2330 -name: TS17,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:2228 ! TS17,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2331 -name: TS17,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:2330 ! TS17,ganglion,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2332 -name: TS17,acoustic ganglion VIII -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2331 ! TS17,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001714 ! cranial ganglion - -[Term] -id: EMAP:2333 -name: TS17,facial ganglion VII -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:2331 ! TS17,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2334 -name: TS17,glossopharyngeal IX -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:2331 ! TS17,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2335 -name: TS17,trigeminal V -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:2331 ! TS17,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2336 -name: TS17,vagus X -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:2331 ! TS17,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2337 -name: TS17,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:2227 ! TS17,nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2338 -name: TS17,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:2337 ! TS17,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2339 -name: TS17,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:2338 ! TS17,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:234 -name: TS12,neural ectoderm,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0002346 ! neurectoderm -relationship: part_of EMAP:233 ! TS12,ectoderm,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2340 -name: TS17,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:2339 ! TS17,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2341 -name: TS17,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:2337 ! TS17,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2342 -name: TS17,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2341 ! TS17,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:2343 -name: TS17,dorsal root ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:2342 ! TS17,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2344 -name: TS17,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:2341 ! TS17,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2345 -name: TS17,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:2344 ! TS17,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2346 -name: TS17,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001780 ! spinal nerve -relationship: part_of EMAP:2341 ! TS17,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2347 -name: TS17,segmental spinal nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0005197 ! segmental spinal nerve -relationship: part_of EMAP:2346 ! TS17,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2348 -name: TS17,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:2220 ! TS17,organ system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2349 -name: TS17,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:2348 ! TS17,sensory organ -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:235 -name: TS12,future brain -namespace: mouse_anatomy_stages -is_a: UBERON:0006238 ! future brain -relationship: part_of EMAP:234 ! TS12,neural ectoderm,ectoderm,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006238 ! future brain -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2350 -name: TS17,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:2349 ! TS17,ear -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2351 -name: TS17,1st branchial membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:2350 ! TS17,external ear -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2352 -name: TS17,epithelium,1st branchial membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2351 ! TS17,1st branchial membrane -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:2353 -name: TS17,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:2349 ! TS17,ear -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2354 -name: TS17,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0003051 ! ear vesicle -relationship: part_of EMAP:2353 ! TS17,inner ear -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2355 -name: TS17,endolymphatic appendage,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:2354 ! TS17,otocyst -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2356 -name: TS17,associated mesenchyme,endolymphatic appendage,otocyst -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2355 ! TS17,endolymphatic appendage,otocyst -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:2357 -name: TS17,epithelium,endolymphatic appendage,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0005641 ! otocyst epithelium -relationship: part_of EMAP:2355 ! TS17,endolymphatic appendage,otocyst -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005641 ! otocyst epithelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2358 -name: TS17,other part,otocyst -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2354 ! TS17,otocyst -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003051 ! ear vesicle - -[Term] -id: EMAP:2359 -name: TS17,associated mesenchyme,other part,otocyst -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2358 ! TS17,other part,otocyst -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003051 ! ear vesicle - -[Term] -id: EMAP:236 -name: TS12,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:235 ! TS12,future brain -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:2360 -name: TS17,epithelium,other part,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0005641 ! otocyst epithelium -relationship: part_of EMAP:2358 ! TS17,other part,otocyst -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005641 ! otocyst epithelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2361 -name: TS17,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:2349 ! TS17,ear -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2362 -name: TS17,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:2361 ! TS17,middle ear -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2363 -name: TS17,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:2361 ! TS17,middle ear -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2364 -name: TS17,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:2348 ! TS17,sensory organ -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2365 -name: TS17,lens pit -namespace: mouse_anatomy_stages -is_a: UBERON:0006259 ! lens pit -relationship: part_of EMAP:2364 ! TS17,eye -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006259 ! lens pit -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2366 -name: TS17,mesenchyme,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:2364 ! TS17,eye -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2367 -name: TS17,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0003072 ! optic cup -relationship: part_of EMAP:2364 ! TS17,eye -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003072 ! optic cup -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2368 -name: TS17,inner layer,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0005425 ! presumptive neural retina -relationship: part_of EMAP:2367 ! TS17,optic cup -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005425 ! presumptive neural retina -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2369 -name: TS17,intraretinal space -namespace: mouse_anatomy_stages -is_a: UBERON:0006253 ! embryonic intraretinal space -relationship: part_of EMAP:2367 ! TS17,optic cup -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006253 ! embryonic intraretinal space -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:237 -name: TS12,floor plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:236 ! TS12,future midbrain -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:2370 -name: TS17,outer layer,optic cup -namespace: mouse_anatomy_stages -is_a: UBERON:0005424 ! presumptive retinal pigmented epithelium -relationship: part_of EMAP:2367 ! TS17,optic cup -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005424 ! presumptive retinal pigmented epithelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2371 -name: TS17,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:2364 ! TS17,eye -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2372 -name: TS17,surface ectoderm of the eye -namespace: mouse_anatomy_stages -is_a: UBERON:0004348 ! optic eminence -relationship: part_of EMAP:2364 ! TS17,eye -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004348 ! optic eminence -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2373 -name: TS17,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:2348 ! TS17,sensory organ -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2374 -name: TS17,naso-lacrimal groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006266 ! nasolacrimal groove -relationship: part_of EMAP:2373 ! TS17,nose -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2375 -name: TS17,olfactory pit -namespace: mouse_anatomy_stages -is_a: UBERON:0005870 ! olfactory pit -relationship: part_of EMAP:2373 ! TS17,nose -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2376 -name: TS17,nasal epithelium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2375 ! TS17,olfactory pit -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005870 ! olfactory pit - -[Term] -id: EMAP:2377 -name: TS17,process,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0009292 ! embryonic nasal process -relationship: part_of EMAP:2373 ! TS17,nose -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2378 -name: TS17,fronto-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004066 ! frontonasal prominence -relationship: part_of EMAP:2377 ! TS17,process,nose -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2379 -name: TS17,frontal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009293 ! embryonic frontal process -relationship: part_of EMAP:2378 ! TS17,fronto-nasal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009293 ! embryonic frontal process -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:238 -name: TS12,neural fold,future midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:236 ! TS12,future midbrain -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2380 -name: TS17,ectoderm,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2379 ! TS17,frontal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:2381 -name: TS17,mesenchyme,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2379 ! TS17,frontal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:2382 -name: TS17,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004067 ! lateral nasal prominence -relationship: part_of EMAP:2378 ! TS17,fronto-nasal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004067 ! lateral nasal prominence -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2383 -name: TS17,ectoderm,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009206 ! lateral nasal process surface ectoderm -relationship: part_of EMAP:2382 ! TS17,latero-nasal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009206 ! lateral nasal process surface ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2384 -name: TS17,mesenchyme,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009205 ! lateral nasal process mesenchyme -relationship: part_of EMAP:2382 ! TS17,latero-nasal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009205 ! lateral nasal process mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2385 -name: TS17,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004068 ! medial nasal prominence -relationship: part_of EMAP:2378 ! TS17,fronto-nasal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004068 ! medial nasal prominence -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2386 -name: TS17,ectoderm,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0005233 ! medial-nasal process ectoderm -relationship: part_of EMAP:2385 ! TS17,medial-nasal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005233 ! medial-nasal process ectoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2387 -name: TS17,mesenchyme,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009204 ! medial nasal process mesenchyme -relationship: part_of EMAP:2385 ! TS17,medial-nasal process -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009204 ! medial nasal process mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2388 -name: TS17,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:2220 ! TS17,organ system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2389 -name: TS17,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:2388 ! TS17,cardiovascular system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:239 -name: TS12,neural crest,neural fold,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:238 ! TS12,neural fold,future midbrain -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:2390 -name: TS17,branchial arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004363 ! aortic arch -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004363 ! aortic arch -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2391 -name: TS17,1st arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003118 ! aortic arch 1 -relationship: part_of EMAP:2390 ! TS17,branchial arch artery -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003118 ! aortic arch 1 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2392 -name: TS17,2nd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003119 ! aortic arch 2 -relationship: part_of EMAP:2390 ! TS17,branchial arch artery -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003119 ! aortic arch 2 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2393 -name: TS17,3rd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003120 ! aortic arch 3 -relationship: part_of EMAP:2390 ! TS17,branchial arch artery -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003120 ! aortic arch 3 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2394 -name: TS17,4th arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003121 ! aortic arch 4 -relationship: part_of EMAP:2390 ! TS17,branchial arch artery -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003121 ! aortic arch 4 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2395 -name: TS17,6th arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003123 ! aortic arch 6 -relationship: part_of EMAP:2390 ! TS17,branchial arch artery -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003123 ! aortic arch 6 -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2396 -name: TS17,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:2397 -name: TS17,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:2396 ! TS17,dorsal aorta -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2398 -name: TS17,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:2396 ! TS17,dorsal aorta -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2399 -name: TS17,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:2396 ! TS17,dorsal aorta -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:24 -name: TS5,inner cell mass -namespace: mouse_anatomy_stages -is_a: UBERON:0000087 ! inner cell mass -relationship: part_of EMAP:23 ! TS5,embryo -relationship: exists_during MmusDv:0000009 ! Theiler stage 05 -intersection_of: UBERON:0000087 ! inner cell mass -intersection_of: exists_during MmusDv:0000009 ! Theiler stage 05 - -[Term] -id: EMAP:240 -name: TS12,future prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:235 ! TS12,future brain -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:2400 -name: TS17,ductus caroticus -namespace: mouse_anatomy_stages -is_a: UBERON:0010198 ! carotid duct -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010198 ! carotid duct -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2401 -name: TS17,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2402 -name: TS17,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2403 -name: TS17,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2404 -name: TS17,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2405 -name: TS17,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2406 -name: TS17,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2407 -name: TS17,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:2406 ! TS17,umbilical artery -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2408 -name: TS17,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:2406 ! TS17,umbilical artery -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2409 -name: TS17,vitelline artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006002 ! vitelline artery -relationship: part_of EMAP:2389 ! TS17,arterial system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:241 -name: TS12,floor plate,future prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:240 ! TS12,future prosencephalon -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:2410 -name: TS17,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:2388 ! TS17,cardiovascular system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2411 -name: TS17,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:2388 ! TS17,cardiovascular system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2412 -name: TS17,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2413 -name: TS17,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2414 -name: TS17,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006218 ! common atrial chamber -relationship: part_of EMAP:2413 ! TS17,atrium -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006218 ! common atrial chamber -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2415 -name: TS17,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2414 ! TS17,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:2416 -name: TS17,cardiac jelly,left part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0005261 ! atrium cardiac jelly -relationship: part_of EMAP:2415 ! TS17,left part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005261 ! atrium cardiac jelly -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2417 -name: TS17,endocardial lining,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2415 ! TS17,left part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:2418 -name: TS17,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006630 ! left atrium auricular region -relationship: part_of EMAP:2415 ! TS17,left part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006630 ! left atrium auricular region -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2419 -name: TS17,endocardial lining,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2418 ! TS17,left auricular region,left part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006630 ! left atrium auricular region - -[Term] -id: EMAP:242 -name: TS12,neural fold,future prosencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:240 ! TS12,future prosencephalon -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2420 -name: TS17,cardiac muscle,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:2418 ! TS17,left auricular region,left part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2421 -name: TS17,cardiac muscle,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2415 ! TS17,left part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:2422 -name: TS17,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2414 ! TS17,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:2423 -name: TS17,cardiac jelly,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0005261 ! atrium cardiac jelly -relationship: part_of EMAP:2422 ! TS17,right part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005261 ! atrium cardiac jelly -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2424 -name: TS17,endocardial lining,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2422 ! TS17,right part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:2425 -name: TS17,cardiac muscle,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2422 ! TS17,right part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:2426 -name: TS17,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006631 ! right atrium auricular region -relationship: part_of EMAP:2422 ! TS17,right part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006631 ! right atrium auricular region -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2427 -name: TS17,endocardial lining,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2426 ! TS17,right auricular region,right part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006631 ! right atrium auricular region - -[Term] -id: EMAP:2428 -name: TS17,cardiac muscle,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:2426 ! TS17,right auricular region,right part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2429 -name: TS17,valve,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2422 ! TS17,right part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:243 -name: TS12,neural crest,neural fold,future prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:242 ! TS12,neural fold,future prosencephalon -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:2430 -name: TS17,venous valve,valve,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:2429 ! TS17,valve,right part,common atrial chamber -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2431 -name: TS17,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:2413 ! TS17,atrium -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2432 -name: TS17,foramen primum -namespace: mouse_anatomy_stages -is_a: UBERON:0009149 ! foramen primum -relationship: part_of EMAP:2431 ! TS17,interatrial septum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009149 ! foramen primum -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2433 -name: TS17,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:2431 ! TS17,interatrial septum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2434 -name: TS17,bulboventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006212 ! bulbo-ventricular groove -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006212 ! bulbo-ventricular groove -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2435 -name: TS17,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0004706 ! bulbus cordis -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2436 -name: TS17,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2435 ! TS17,bulbus cordis -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:2437 -name: TS17,cardiac jelly,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2436 ! TS17,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:2438 -name: TS17,endocardial lining,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2436 ! TS17,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:2439 -name: TS17,cardiac muscle,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2436 ! TS17,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:244 -name: TS12,future rhombencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001892 ! rhombomere -relationship: part_of EMAP:235 ! TS12,future brain -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2440 -name: TS17,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0006060 ! conotruncus -relationship: part_of EMAP:2435 ! TS17,bulbus cordis -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006060 ! conotruncus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2441 -name: TS17,cardiac jelly,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2440 ! TS17,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:2442 -name: TS17,endocardial lining,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2440 ! TS17,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:2443 -name: TS17,cardiac muscle,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2440 ! TS17,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:2444 -name: TS17,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2445 -name: TS17,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2446 -name: TS17,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:2445 ! TS17,mesentery,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2447 -name: TS17,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:2446 ! TS17,dorsal mesocardium -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2448 -name: TS17,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2449 -name: TS17,aortico-pulmonary spiral septum -namespace: mouse_anatomy_stages -is_a: UBERON:0006207 ! aortico-pulmonary spiral septum -relationship: part_of EMAP:2448 ! TS17,outflow tract,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:245 -name: TS12,anterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:244 ! TS12,future rhombencephalon -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:2450 -name: TS17,ascending aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001496 ! ascending aorta -relationship: part_of EMAP:2449 ! TS17,aortico-pulmonary spiral septum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2451 -name: TS17,pulmonary trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0002333 ! pulmonary trunk -relationship: part_of EMAP:2449 ! TS17,aortico-pulmonary spiral septum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2452 -name: TS17,cardiac jelly,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005263 ! outflow tract cardiac jelly -relationship: part_of EMAP:2448 ! TS17,outflow tract,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005263 ! outflow tract cardiac jelly -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2453 -name: TS17,endocardial tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2448 ! TS17,outflow tract,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:2454 -name: TS17,primitive ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006283 ! primitive ventricle of heart -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006283 ! primitive ventricle of heart -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2455 -name: TS17,cardiac jelly,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2454 ! TS17,primitive ventricle -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:2456 -name: TS17,endocardial lining,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2454 ! TS17,primitive ventricle -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:2457 -name: TS17,cardiac muscle,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2454 ! TS17,primitive ventricle -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:2458 -name: TS17,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:2411 ! TS17,heart -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2459 -name: TS17,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:2458 ! TS17,sinus venosus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:246 -name: TS12,floor plate,anterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:245 ! TS12,anterior pro-rhombomere -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:2460 -name: TS17,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:2458 ! TS17,sinus venosus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2461 -name: TS17,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:2388 ! TS17,cardiovascular system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2462 -name: TS17,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004344 ! cardinal vein -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2463 -name: TS17,anterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:2462 ! TS17,cardinal vein -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2464 -name: TS17,common,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002064 ! common cardinal vein -relationship: part_of EMAP:2462 ! TS17,cardinal vein -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2465 -name: TS17,posterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002065 ! posterior cardinal vein -relationship: part_of EMAP:2462 ! TS17,cardinal vein -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2466 -name: TS17,inter-subcardinal venous anastomosis -namespace: mouse_anatomy_stages -is_a: UBERON:0006252 ! intersubcardinal venous anastomosis -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006252 ! intersubcardinal venous anastomosis -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2467 -name: TS17,marginal vein of forelimb -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:2468 -name: TS17,marginal vein of hindlimb -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:2469 -name: TS17,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:247 -name: TS12,neural fold,anterior pro-rhombomere -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:245 ! TS12,anterior pro-rhombomere -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2470 -name: TS17,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2471 -name: TS17,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2472 -name: TS17,subcardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006296 ! subcardinal vein -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006296 ! subcardinal vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2473 -name: TS17,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2474 -name: TS17,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:2473 ! TS17,umbilical vein -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2475 -name: TS17,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2476 -name: TS17,left,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005460 ! left vitelline vein -relationship: part_of EMAP:2475 ! TS17,vitelline vein -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2477 -name: TS17,right,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005472 ! right vitelline vein -relationship: part_of EMAP:2475 ! TS17,vitelline vein -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2478 -name: TS17,vitelline venous plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0006309 ! venous vitelline plexus -relationship: part_of EMAP:2461 ! TS17,venous system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2479 -name: TS17,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:2222 ! TS17,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:248 -name: TS12,neural crest,neural fold,anterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:247 ! TS12,neural fold,anterior pro-rhombomere -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:2480 -name: TS17,cloacal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006217 ! cloacal membrane -relationship: part_of EMAP:2479 ! TS17,anal region,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006217 ! cloacal membrane -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2481 -name: TS17,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:2236 ! TS17,foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2482 -name: TS17,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2481 ! TS17,oesophagus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:2483 -name: TS17,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001976 ! epithelium of esophagus -relationship: part_of EMAP:2481 ! TS17,oesophagus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2484 -name: TS17,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:2481 ! TS17,oesophagus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2485 -name: TS17,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:2484 ! TS17,mesentery,oesophagus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2486 -name: TS17,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2481 ! TS17,oesophagus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:2487 -name: TS17,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:2236 ! TS17,foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2488 -name: TS17,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2487 ! TS17,pharynx -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:2489 -name: TS17,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:2487 ! TS17,pharynx -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:249 -name: TS12,early hindbrain neural ectoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:244 ! TS12,future rhombencephalon -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:2490 -name: TS17,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2487 ! TS17,pharynx -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:2491 -name: TS17,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2236 ! TS17,foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:2492 -name: TS17,associated mesenchyme,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2491 ! TS17,rest of foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:2493 -name: TS17,epithelium,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2491 ! TS17,rest of foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:2494 -name: TS17,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2491 ! TS17,rest of foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:2495 -name: TS17,dorsal mesentery,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2494 ! TS17,mesentery,rest of foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:2496 -name: TS17,ventral mesentery,mesentery,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2494 ! TS17,mesentery,rest of foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:2497 -name: TS17,vascular element,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2491 ! TS17,rest of foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:2498 -name: TS17,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:2236 ! TS17,foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2499 -name: TS17,associated mesenchyme,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2498 ! TS17,stomach -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:25 -name: TS5,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000009 ! Theiler stage 05 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000009 ! Theiler stage 05 - -[Term] -id: EMAP:250 -name: TS12,floor plate,early hindbrain neural ectoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:249 ! TS12,early hindbrain neural ectoderm -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:2500 -name: TS17,epithelium,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2498 ! TS17,stomach -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:2501 -name: TS17,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:2498 ! TS17,stomach -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2502 -name: TS17,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:2501 ! TS17,mesentery,stomach -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2503 -name: TS17,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:2501 ! TS17,mesentery,stomach -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2504 -name: TS17,vascular element,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2498 ! TS17,stomach -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:2505 -name: TS17,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:2235 ! TS17,gut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2506 -name: TS17,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:2505 ! TS17,foregut-midgut junction -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2507 -name: TS17,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:2505 ! TS17,foregut-midgut junction -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2508 -name: TS17,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:2505 ! TS17,foregut-midgut junction -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2509 -name: TS17,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:2508 ! TS17,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:251 -name: TS12,neural fold,early hindbrain neural ectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:249 ! TS12,early hindbrain neural ectoderm -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2510 -name: TS17,ventral mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:2508 ! TS17,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2511 -name: TS17,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2505 ! TS17,foregut-midgut junction -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:2512 -name: TS17,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2235 ! TS17,gut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:2513 -name: TS17,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2512 ! TS17,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:2514 -name: TS17,associated mesenchyme,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2513 ! TS17,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:2515 -name: TS17,epithelium,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2513 ! TS17,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:2516 -name: TS17,vascular element,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2513 ! TS17,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:2517 -name: TS17,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2512 ! TS17,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:2518 -name: TS17,associated mesenchyme,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2517 ! TS17,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:2519 -name: TS17,epithelium,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2517 ! TS17,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:252 -name: TS12,neural crest,neural fold,early hindbrain neural ectoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:251 ! TS12,neural fold,early hindbrain neural ectoderm -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:2520 -name: TS17,vascular element,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2517 ! TS17,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:2521 -name: TS17,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:2235 ! TS17,gut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2522 -name: TS17,associated mesenchyme,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009503 ! associated mesenchyme of hindgut -relationship: part_of EMAP:2521 ! TS17,hindgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009503 ! associated mesenchyme of hindgut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2523 -name: TS17,epithelium,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003353 ! epithelium of hindgut -relationship: part_of EMAP:2521 ! TS17,hindgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2524 -name: TS17,mesentery,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003394 ! mesentery of hindgut -relationship: part_of EMAP:2521 ! TS17,hindgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003394 ! mesentery of hindgut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2525 -name: TS17,dorsal mesentery,mesentery,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2524 ! TS17,mesentery,hindgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003394 ! mesentery of hindgut - -[Term] -id: EMAP:2526 -name: TS17,vascular element,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2521 ! TS17,hindgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:2527 -name: TS17,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:2235 ! TS17,gut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2528 -name: TS17,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0011698 ! midgut loop -relationship: part_of EMAP:2527 ! TS17,midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0011698 ! midgut loop -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2529 -name: TS17,associated mesenchyme,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2528 ! TS17,loop,midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:253 -name: TS12,posterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:244 ! TS12,future rhombencephalon -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:2530 -name: TS17,epithelium,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2528 ! TS17,loop,midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:2531 -name: TS17,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:2528 ! TS17,loop,midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2532 -name: TS17,dorsal mesentery,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:2531 ! TS17,mesentery,loop,midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2533 -name: TS17,vascular element,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2528 ! TS17,loop,midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:2534 -name: TS17,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2527 ! TS17,midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:2535 -name: TS17,associated mesenchyme,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2534 ! TS17,rest of midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:2536 -name: TS17,epithelium,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2534 ! TS17,rest of midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:2537 -name: TS17,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:2534 ! TS17,rest of midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2538 -name: TS17,dorsal mesentery,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:2537 ! TS17,mesentery,rest of midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2539 -name: TS17,vascular element,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2534 ! TS17,rest of midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:254 -name: TS12,floor plate,posterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:253 ! TS12,posterior pro-rhombomere -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:2540 -name: TS17,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:2223 ! TS17,oral region,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2541 -name: TS17,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:2221 ! TS17,visceral organ -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2542 -name: TS17,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:2541 ! TS17,liver and biliary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2543 -name: TS17,gall bladder primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006242 ! gall bladder primordium -relationship: part_of EMAP:2541 ! TS17,liver and biliary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006242 ! gall bladder primordium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2544 -name: TS17,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:2541 ! TS17,liver and biliary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2545 -name: TS17,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:2544 ! TS17,hepatic duct -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2546 -name: TS17,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:2544 ! TS17,hepatic duct -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2547 -name: TS17,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:2541 ! TS17,liver and biliary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2548 -name: TS17,hepatic primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003894 ! liver primordium -relationship: part_of EMAP:2547 ! TS17,liver -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003894 ! liver primordium -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2549 -name: TS17,parenchyma,hepatic primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2548 ! TS17,hepatic primordium -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003894 ! liver primordium - -[Term] -id: EMAP:255 -name: TS12,neural fold,posterior pro-rhombomere -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:253 ! TS12,posterior pro-rhombomere -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2550 -name: TS17,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:2221 ! TS17,visceral organ -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2551 -name: TS17,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:2550 ! TS17,respiratory system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2552 -name: TS17,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2551 ! TS17,lung -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:2553 -name: TS17,associated mesenchyme,left lung rudiment -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:2552 ! TS17,left lung rudiment -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2554 -name: TS17,epithelium,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2552 ! TS17,left lung rudiment -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:2555 -name: TS17,vascular element,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2552 ! TS17,left lung rudiment -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:2556 -name: TS17,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2551 ! TS17,lung -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:2557 -name: TS17,associated mesenchyme,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2556 ! TS17,right lung rudiment -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:2558 -name: TS17,epithelium,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2556 ! TS17,right lung rudiment -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:2559 -name: TS17,vascular element,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2556 ! TS17,right lung rudiment -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:256 -name: TS12,neural crest,neural fold,posterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:255 ! TS12,neural fold,posterior pro-rhombomere -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:2560 -name: TS17,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:2550 ! TS17,respiratory system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2561 -name: TS17,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:2560 ! TS17,respiratory tract -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2562 -name: TS17,laryngo-tracheal groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006257 ! laryngotracheal groove -relationship: part_of EMAP:2561 ! TS17,lower,respiratory tract -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006257 ! laryngotracheal groove -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2563 -name: TS17,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:2561 ! TS17,lower,respiratory tract -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2564 -name: TS17,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:2563 ! TS17,main bronchus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2565 -name: TS17,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:2563 ! TS17,main bronchus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2566 -name: TS17,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2563 ! TS17,main bronchus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:2567 -name: TS17,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:2561 ! TS17,lower,respiratory tract -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2568 -name: TS17,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:2567 ! TS17,trachea -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2569 -name: TS17,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:2567 ! TS17,trachea -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:257 -name: TS12,pre-otic sulcus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:244 ! TS12,future rhombencephalon -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:2570 -name: TS17,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2567 ! TS17,trachea -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:2571 -name: TS17,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0004122 ! genitourinary system -relationship: part_of EMAP:2221 ! TS17,visceral organ -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2572 -name: TS17,gonadal component,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0000991 ! gonad -relationship: part_of EMAP:2571 ! TS17,urogenital system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000991 ! gonad -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2573 -name: TS17,associated mesenchyme,gonadal component,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0003855 ! gonad mesenchyme -relationship: part_of EMAP:2572 ! TS17,gonadal component,urogenital system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003855 ! gonad mesenchyme -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2574 -name: TS17,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2572 ! TS17,gonadal component,urogenital system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000991 ! gonad - -[Term] -id: EMAP:2575 -name: TS17,incomplete urorectal septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2571 ! TS17,urogenital system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2576 -name: TS17,mesonephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000080 ! mesonephros -relationship: part_of EMAP:2571 ! TS17,urogenital system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2577 -name: TS17,associated mesenchyme,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2576 ! TS17,mesonephros -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:2578 -name: TS17,non-tubular part,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2576 ! TS17,mesonephros -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:2579 -name: TS17,tubule,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2576 ! TS17,mesonephros -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:258 -name: TS12,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:234 ! TS12,neural ectoderm,ectoderm,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2580 -name: TS17,nephric cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005792 ! nephric ridge -relationship: part_of EMAP:2571 ! TS17,urogenital system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0005792 ! nephric ridge -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2581 -name: TS17,nephric duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003074 ! mesonephric duct -relationship: part_of EMAP:2571 ! TS17,urogenital system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2582 -name: TS17,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2583 -name: TS17,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2582 ! TS17,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:2584 -name: TS17,mesenchyme derived from neural crest,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2583 ! TS17,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:2585 -name: TS17,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:2583 ! TS17,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2586 -name: TS17,somite,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0009621 ! tail somite -relationship: part_of EMAP:2585 ! TS17,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0009621 ! tail somite -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2587 -name: TS17,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2588 -name: TS17,dermomyotome,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2587 ! TS17,somite 31 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2589 -name: TS17,myocoele,somite 31 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2587 ! TS17,somite 31 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:259 -name: TS12,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003075 ! neural plate -relationship: part_of EMAP:258 ! TS12,future spinal cord -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003075 ! neural plate -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2590 -name: TS17,sclerotome,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2587 ! TS17,somite 31 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2591 -name: TS17,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2592 -name: TS17,dermomyotome,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2591 ! TS17,somite 32 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2593 -name: TS17,myocoele,somite 32 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2591 ! TS17,somite 32 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2594 -name: TS17,sclerotome,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2591 ! TS17,somite 32 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2595 -name: TS17,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2596 -name: TS17,dermomyotome,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2595 ! TS17,somite 33 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2597 -name: TS17,myocoele,somite 33 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2595 ! TS17,somite 33 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2598 -name: TS17,sclerotome,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2595 ! TS17,somite 33 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2599 -name: TS17,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:26 -name: TS5,cavities and their linings -namespace: mouse_anatomy_stages -relationship: part_of EMAP:25 ! TS5,extraembryonic component -relationship: exists_during MmusDv:0000009 ! Theiler stage 05 -relationship: part_of UBERON:0000478 ! extraembryonic structure - -[Term] -id: EMAP:260 -name: TS12,neural fold,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:259 ! TS12,neural plate,future spinal cord -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2600 -name: TS17,dermomyotome,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2599 ! TS17,somite 34 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2601 -name: TS17,myocoele,somite 34 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2599 ! TS17,somite 34 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2602 -name: TS17,sclerotome,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2599 ! TS17,somite 34 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2603 -name: TS17,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2604 -name: TS17,dermomyotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2603 ! TS17,somite 35 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2605 -name: TS17,myocoele,somite 35 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2603 ! TS17,somite 35 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2606 -name: TS17,sclerotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2603 ! TS17,somite 35 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2607 -name: TS17,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2608 -name: TS17,dermomyotome,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2607 ! TS17,somite 36 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2609 -name: TS17,myocoele,somite 36 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2607 ! TS17,somite 36 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:261 -name: TS12,neural crest,neural fold,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003853 ! spinal cord neural crest -relationship: part_of EMAP:260 ! TS12,neural fold,neural plate,future spinal cord -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003853 ! spinal cord neural crest -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2610 -name: TS17,sclerotome,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2607 ! TS17,somite 36 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2611 -name: TS17,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2612 -name: TS17,dermomyotome,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2611 ! TS17,somite 37 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2613 -name: TS17,myocoele,somite 37 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2611 ! TS17,somite 37 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2614 -name: TS17,sclerotome,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2611 ! TS17,somite 37 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2615 -name: TS17,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2616 -name: TS17,dermomyotome,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2615 ! TS17,somite 38 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2617 -name: TS17,myocoele,somite 38 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2615 ! TS17,somite 38 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2618 -name: TS17,sclerotome,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2615 ! TS17,somite 38 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2619 -name: TS17,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2586 ! TS17,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:262 -name: TS12,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:258 ! TS12,future spinal cord -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2620 -name: TS17,dermomyotome,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2619 ! TS17,somite 39 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2621 -name: TS17,myocoele,somite 39 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2619 ! TS17,somite 39 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2622 -name: TS17,sclerotome,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2619 ! TS17,somite 39 -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:2623 -name: TS17,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2585 ! TS17,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:2624 -name: TS17,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2582 ! TS17,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:2625 -name: TS17,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:2624 ! TS17,nervous system,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2626 -name: TS17,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:2625 ! TS17,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2627 -name: TS17,neural tube,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:2626 ! TS17,future spinal cord,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2628 -name: TS17,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2629 -name: TS17,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:2628 ! TS17,extraembryonic component -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:263 -name: TS12,floor plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003306 ! floor plate of neural tube -relationship: part_of EMAP:262 ! TS12,neural tube,future spinal cord -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2630 -name: TS17,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:2629 ! TS17,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2631 -name: TS17,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:2630 ! TS17,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2632 -name: TS17,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2631 ! TS17,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:2633 -name: TS17,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2629 ! TS17,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:2634 -name: TS17,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:2633 ! TS17,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:2635 -name: TS17,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2634 ! TS17,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:2636 -name: TS18,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2637 -name: TS18,branchial arch -namespace: mouse_anatomy_stages -is_a: UBERON:0002539 ! pharyngeal arch -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2638 -name: TS18,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0004362 ! pharyngeal arch 1 -relationship: part_of EMAP:2637 ! TS18,branchial arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2639 -name: TS18,branchial groove,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft -relationship: part_of EMAP:2638 ! TS18,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:264 -name: TS12,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:262 ! TS12,neural tube,future spinal cord -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001049 ! neural tube - -[Term] -id: EMAP:2640 -name: TS18,ectoderm,branchial groove,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2639 ! TS18,branchial groove,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EMAP:2641 -name: TS18,branchial pouch,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007122 ! pharyngeal pouch 1 -relationship: part_of EMAP:2638 ! TS18,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2642 -name: TS18,endoderm,branchial pouch,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2641 ! TS18,branchial pouch,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EMAP:2643 -name: TS18,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007237 ! 1st arch mandibular component -relationship: part_of EMAP:2638 ! TS18,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007237 ! 1st arch mandibular component -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2644 -name: TS18,ectoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013155 ! 1st arch mandibular ectoderm -relationship: part_of EMAP:2643 ! TS18,mandibular component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0013155 ! 1st arch mandibular ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2645 -name: TS18,endoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013156 ! 1st arch mandibular endoderm -relationship: part_of EMAP:2643 ! TS18,mandibular component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0013156 ! 1st arch mandibular endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2646 -name: TS18,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009584 ! 1st arch mandibular mesenchyme -relationship: part_of EMAP:2643 ! TS18,mandibular component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009584 ! 1st arch mandibular mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2647 -name: TS18,mesenchyme derived from head mesoderm,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2646 ! TS18,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:2648 -name: TS18,mesenchyme derived from neural crest,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2646 ! TS18,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:2649 -name: TS18,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007238 ! 1st arch maxillary component -relationship: part_of EMAP:2638 ! TS18,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007238 ! 1st arch maxillary component -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:265 -name: TS12,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003842 ! neural tube lumen -relationship: part_of EMAP:262 ! TS12,neural tube,future spinal cord -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2650 -name: TS18,ectoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0012313 ! 1st arch maxillary ectoderm -relationship: part_of EMAP:2649 ! TS18,maxillary component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012313 ! 1st arch maxillary ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2651 -name: TS18,endoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013154 ! 1st arch maxillary endoderm -relationship: part_of EMAP:2649 ! TS18,maxillary component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0013154 ! 1st arch maxillary endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2652 -name: TS18,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010045 ! 1st arch maxillary mesenchyme -relationship: part_of EMAP:2649 ! TS18,maxillary component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010045 ! 1st arch maxillary mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2653 -name: TS18,mesenchyme derived from head mesoderm,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2652 ! TS18,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:2654 -name: TS18,mesenchyme derived from neural crest,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2652 ! TS18,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:2655 -name: TS18,maxillary-mandibular groove -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2638 ! TS18,1st arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:2656 -name: TS18,ectoderm,maxillary-mandibular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -relationship: part_of EMAP:2655 ! TS18,maxillary-mandibular groove -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2657 -name: TS18,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003066 ! pharyngeal arch 2 -relationship: part_of EMAP:2637 ! TS18,branchial arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2658 -name: TS18,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005873 ! 2nd arch pharyngeal cleft -relationship: part_of EMAP:2657 ! TS18,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005873 ! 2nd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2659 -name: TS18,ectoderm,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:2658 ! TS18,branchial groove,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:266 -name: TS12,roof plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003298 ! roof plate of neural tube -relationship: part_of EMAP:262 ! TS12,neural tube,future spinal cord -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003298 ! roof plate of neural tube -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2660 -name: TS18,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009215 ! pharyngeal membrane of 2nd arch -relationship: part_of EMAP:2657 ! TS18,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009215 ! pharyngeal membrane of 2nd arch -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2661 -name: TS18,ectoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:2660 ! TS18,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2662 -name: TS18,endoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:2660 ! TS18,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2663 -name: TS18,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007123 ! pharyngeal pouch 2 -relationship: part_of EMAP:2657 ! TS18,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2664 -name: TS18,endoderm,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:2663 ! TS18,branchial pouch,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2665 -name: TS18,ectoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:2657 ! TS18,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2666 -name: TS18,endoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:2657 ! TS18,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2667 -name: TS18,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005689 ! 2nd arch mesenchyme -relationship: part_of EMAP:2657 ! TS18,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2668 -name: TS18,mesenchyme derived from head mesoderm,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:2667 ! TS18,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2669 -name: TS18,mesenchyme derived from neural crest,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -relationship: part_of EMAP:2667 ! TS18,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:267 -name: TS12,surface ectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:233 ! TS12,ectoderm,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2670 -name: TS18,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003114 ! pharyngeal arch 3 -relationship: part_of EMAP:2637 ! TS18,branchial arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2671 -name: TS18,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005874 ! 3rd arch pharyngeal cleft -relationship: part_of EMAP:2670 ! TS18,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005874 ! 3rd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2672 -name: TS18,ectoderm,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:2671 ! TS18,branchial groove,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2673 -name: TS18,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009216 ! pharyngeal membrane of 3rd arch -relationship: part_of EMAP:2670 ! TS18,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009216 ! pharyngeal membrane of 3rd arch -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2674 -name: TS18,ectoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:2673 ! TS18,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2675 -name: TS18,endoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:2673 ! TS18,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2676 -name: TS18,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007124 ! pharyngeal pouch 3 -relationship: part_of EMAP:2670 ! TS18,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2677 -name: TS18,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:2676 ! TS18,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2678 -name: TS18,dorsal,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -relationship: part_of EMAP:2677 ! TS18,endoderm,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2679 -name: TS18,ventral,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -relationship: part_of EMAP:2677 ! TS18,endoderm,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:268 -name: TS12,endoderm,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:2680 -name: TS18,ectoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:2670 ! TS18,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2681 -name: TS18,endoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:2670 ! TS18,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2682 -name: TS18,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005690 ! 3rd arch mesenchyme -relationship: part_of EMAP:2670 ! TS18,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2683 -name: TS18,mesenchyme derived from head mesoderm,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:2682 ! TS18,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2684 -name: TS18,mesenchyme derived from neural crest,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -relationship: part_of EMAP:2682 ! TS18,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2685 -name: TS18,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003115 ! pharyngeal arch 4 -relationship: part_of EMAP:2637 ! TS18,branchial arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2686 -name: TS18,branchial groove,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005875 ! 4th arch pharyngeal cleft -relationship: part_of EMAP:2685 ! TS18,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005875 ! 4th arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2687 -name: TS18,ectoderm,branchial groove,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:2686 ! TS18,branchial groove,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2688 -name: TS18,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009217 ! pharyngeal membrane of 4th arch -relationship: part_of EMAP:2685 ! TS18,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009217 ! pharyngeal membrane of 4th arch -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2689 -name: TS18,ectoderm,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:2688 ! TS18,branchial membrane,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:269 -name: TS12,primitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008776 ! inner cell mass derived hypoblast -relationship: part_of EMAP:268 ! TS12,endoderm,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2690 -name: TS18,endoderm,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:2688 ! TS18,branchial membrane,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2691 -name: TS18,branchial pouch,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007125 ! pharyngeal pouch 4 -relationship: part_of EMAP:2685 ! TS18,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2692 -name: TS18,endoderm,branchial pouch,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:2691 ! TS18,branchial pouch,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2693 -name: TS18,cervical sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2685 ! TS18,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003115 ! pharyngeal arch 4 - -[Term] -id: EMAP:2694 -name: TS18,ectoderm,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:2685 ! TS18,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2695 -name: TS18,endoderm,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:2685 ! TS18,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2696 -name: TS18,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005691 ! 4th arch mesenchyme -relationship: part_of EMAP:2685 ! TS18,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005691 ! 4th arch mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2697 -name: TS18,mesenchyme derived from head mesoderm,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -relationship: part_of EMAP:2696 ! TS18,mesenchyme,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2698 -name: TS18,mesenchyme derived from neural crest,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010256 ! 4th arch mesenchyme from neural crest -relationship: part_of EMAP:2696 ! TS18,mesenchyme,4th arch -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010256 ! 4th arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2699 -name: TS18,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:27 -name: TS5,blastocoelic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000090 ! blastocele -relationship: part_of EMAP:26 ! TS5,cavities and their linings -relationship: exists_during MmusDv:0000009 ! Theiler stage 05 -intersection_of: UBERON:0000090 ! blastocele -intersection_of: exists_during MmusDv:0000009 ! Theiler stage 05 - -[Term] -id: EMAP:270 -name: TS12,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2700 -name: TS18,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:2699 ! TS18,cavities and their linings -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2701 -name: TS18,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2700 ! TS18,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2702 -name: TS18,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2701 ! TS18,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2703 -name: TS18,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:2701 ! TS18,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2704 -name: TS18,parietal,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007187 ! pericardial parietal mesothelium -relationship: part_of EMAP:2703 ! TS18,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2705 -name: TS18,visceral,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007186 ! pericardial visceral mesothelium -relationship: part_of EMAP:2703 ! TS18,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2706 -name: TS18,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:2700 ! TS18,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2707 -name: TS18,cavity,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:2706 ! TS18,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2708 -name: TS18,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:2706 ! TS18,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2709 -name: TS18,parietal,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -relationship: part_of EMAP:2708 ! TS18,mesothelium,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:271 -name: TS12,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:270 ! TS12,mesenchyme,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2710 -name: TS18,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2700 ! TS18,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2711 -name: TS18,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:2710 ! TS18,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2712 -name: TS18,cavity,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005450 ! greater sac cavity -relationship: part_of EMAP:2711 ! TS18,greater sac -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2713 -name: TS18,mesothelium,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:2711 ! TS18,greater sac -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2714 -name: TS18,parietal,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2713 ! TS18,mesothelium,greater sac -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:2715 -name: TS18,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:2710 ! TS18,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2716 -name: TS18,mesothelium,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:2715 ! TS18,omental bursa -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2717 -name: TS18,parietal,mesothelium,omental bursa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2716 ! TS18,mesothelium,omental bursa -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:2718 -name: TS18,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2700 ! TS18,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2719 -name: TS18,cavity,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2718 ! TS18,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:272 -name: TS12,mesenchyme derived from head mesoderm,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:271 ! TS12,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2720 -name: TS18,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2718 ! TS18,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2721 -name: TS18,parietal,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2720 ! TS18,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2722 -name: TS18,visceral,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2720 ! TS18,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:2723 -name: TS18,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2724 -name: TS18,surface ectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:2723 ! TS18,ectoderm,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2725 -name: TS18,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2726 -name: TS18,forelimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005417 ! forelimb bud -relationship: part_of EMAP:2725 ! TS18,limb -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2727 -name: TS18,ectoderm,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2726 ! TS18,forelimb bud -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:2728 -name: TS18,apical ectodermal ridge,ectoderm,forelimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -relationship: part_of EMAP:2727 ! TS18,ectoderm,forelimb bud -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2729 -name: TS18,mesenchyme,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2726 ! TS18,forelimb bud -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:273 -name: TS12,mesenchyme derived from neural crest,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:271 ! TS12,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2730 -name: TS18,hindlimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005418 ! hindlimb bud -relationship: part_of EMAP:2725 ! TS18,limb -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005418 ! hindlimb bud -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2731 -name: TS18,ectoderm,hindlimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2730 ! TS18,hindlimb bud -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005418 ! hindlimb bud - -[Term] -id: EMAP:2732 -name: TS18,apical ectodermal ridge,ectoderm,hindlimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -relationship: part_of EMAP:2731 ! TS18,ectoderm,hindlimb bud -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2733 -name: TS18,mesenchyme,hindlimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2730 ! TS18,hindlimb bud -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005418 ! hindlimb bud - -[Term] -id: EMAP:2734 -name: TS18,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2735 -name: TS18,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:2734 ! TS18,mesenchyme,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2736 -name: TS18,mesenchyme derived from head mesoderm,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:2735 ! TS18,head mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2737 -name: TS18,mesenchyme derived from neural crest,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:2735 ! TS18,head mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2738 -name: TS18,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:2734 ! TS18,mesenchyme,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2739 -name: TS18,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:2738 ! TS18,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:274 -name: TS12,trigeminal neural crest -namespace: mouse_anatomy_stages -is_a: UBERON:0005563 ! trigeminal neural crest -relationship: part_of EMAP:273 ! TS12,mesenchyme derived from neural crest,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005563 ! trigeminal neural crest -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2740 -name: TS18,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007214 ! mesenchyme derived from trunk neural crest -relationship: part_of EMAP:2738 ! TS18,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2741 -name: TS18,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:2738 ! TS18,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2742 -name: TS18,somite,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005598 ! trunk somite -relationship: part_of EMAP:2741 ! TS18,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2743 -name: TS18,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2744 -name: TS18,dermomyotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2743 ! TS18,somite 12 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2745 -name: TS18,myocoele,somite 12 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2743 ! TS18,somite 12 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2746 -name: TS18,sclerotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2743 ! TS18,somite 12 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2747 -name: TS18,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2748 -name: TS18,dermomyotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2747 ! TS18,somite 13 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2749 -name: TS18,myocoele,somite 13 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2747 ! TS18,somite 13 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:275 -name: TS12,paraxial mesenchyme,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0009617 ! head paraxial mesoderm -relationship: part_of EMAP:271 ! TS12,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0009617 ! head paraxial mesoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2750 -name: TS18,sclerotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2747 ! TS18,somite 13 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2751 -name: TS18,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2752 -name: TS18,dermomyotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2751 ! TS18,somite 14 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2753 -name: TS18,myocoele,somite 14 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2751 ! TS18,somite 14 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2754 -name: TS18,sclerotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2751 ! TS18,somite 14 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2755 -name: TS18,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2756 -name: TS18,dermomyotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2755 ! TS18,somite 15 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2757 -name: TS18,myocoele,somite 15 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2755 ! TS18,somite 15 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2758 -name: TS18,sclerotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2755 ! TS18,somite 15 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2759 -name: TS18,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:276 -name: TS12,somite,paraxial mesenchyme,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005594 ! head somite -relationship: part_of EMAP:275 ! TS12,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005594 ! head somite -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2760 -name: TS18,dermomyotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2759 ! TS18,somite 16 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2761 -name: TS18,myocoele,somite 16 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2759 ! TS18,somite 16 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2762 -name: TS18,sclerotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2759 ! TS18,somite 16 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2763 -name: TS18,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2764 -name: TS18,dermomyotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2763 ! TS18,somite 17 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2765 -name: TS18,myocoele,somite 17 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2763 ! TS18,somite 17 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2766 -name: TS18,sclerotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2763 ! TS18,somite 17 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2767 -name: TS18,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2768 -name: TS18,dermomyotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2767 ! TS18,somite 18 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2769 -name: TS18,myocoele,somite 18 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2767 ! TS18,somite 18 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:277 -name: TS12,somite 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:276 ! TS12,somite,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:2770 -name: TS18,sclerotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2767 ! TS18,somite 18 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2771 -name: TS18,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2772 -name: TS18,dermomyotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2771 ! TS18,somite 19 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2773 -name: TS18,myocoele,somite 19 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2771 ! TS18,somite 19 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2774 -name: TS18,sclerotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2771 ! TS18,somite 19 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2775 -name: TS18,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2776 -name: TS18,dermomyotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2775 ! TS18,somite 20 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2777 -name: TS18,myocoele,somite 20 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2775 ! TS18,somite 20 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2778 -name: TS18,sclerotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2775 ! TS18,somite 20 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2779 -name: TS18,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:278 -name: TS12,somite 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:276 ! TS12,somite,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:2780 -name: TS18,dermomyotome,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2779 ! TS18,somite 21 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2781 -name: TS18,myocoele,somite 21 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2779 ! TS18,somite 21 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2782 -name: TS18,sclerotome,somite 21 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2779 ! TS18,somite 21 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2783 -name: TS18,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2784 -name: TS18,dermomyotome,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2783 ! TS18,somite 22 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2785 -name: TS18,myocoele,somite 22 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2783 ! TS18,somite 22 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2786 -name: TS18,sclerotome,somite 22 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2783 ! TS18,somite 22 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2787 -name: TS18,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2788 -name: TS18,dermomyotome,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2787 ! TS18,somite 23 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2789 -name: TS18,myocoele,somite 23 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2787 ! TS18,somite 23 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:279 -name: TS12,somite 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:276 ! TS12,somite,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:2790 -name: TS18,sclerotome,somite 23 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2787 ! TS18,somite 23 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2791 -name: TS18,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2792 -name: TS18,dermomyotome,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2791 ! TS18,somite 24 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2793 -name: TS18,myocoele,somite 24 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2791 ! TS18,somite 24 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2794 -name: TS18,sclerotome,somite 24 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2791 ! TS18,somite 24 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2795 -name: TS18,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2796 -name: TS18,dermomyotome,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2795 ! TS18,somite 25 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2797 -name: TS18,myocoele,somite 25 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2795 ! TS18,somite 25 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2798 -name: TS18,sclerotome,somite 25 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2795 ! TS18,somite 25 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2799 -name: TS18,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:28 -name: TS5,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:25 ! TS5,extraembryonic component -relationship: exists_during MmusDv:0000009 ! Theiler stage 05 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000009 ! Theiler stage 05 - -[Term] -id: EMAP:280 -name: TS12,somite 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:276 ! TS12,somite,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:2800 -name: TS18,dermomyotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2799 ! TS18,somite 26 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2801 -name: TS18,myocoele,somite 26 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2799 ! TS18,somite 26 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2802 -name: TS18,sclerotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2799 ! TS18,somite 26 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2803 -name: TS18,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2804 -name: TS18,dermomyotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2803 ! TS18,somite 27 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2805 -name: TS18,myocoele,somite 27 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2803 ! TS18,somite 27 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2806 -name: TS18,sclerotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2803 ! TS18,somite 27 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2807 -name: TS18,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2808 -name: TS18,dermomyotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2807 ! TS18,somite 28 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2809 -name: TS18,myocoele,somite 28 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2807 ! TS18,somite 28 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:281 -name: TS12,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:270 ! TS12,mesenchyme,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2810 -name: TS18,sclerotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2807 ! TS18,somite 28 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2811 -name: TS18,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2812 -name: TS18,dermomyotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2811 ! TS18,somite 29 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2813 -name: TS18,myocoele,somite 29 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2811 ! TS18,somite 29 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2814 -name: TS18,sclerotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2811 ! TS18,somite 29 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2815 -name: TS18,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2742 ! TS18,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2816 -name: TS18,dermomyotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2815 ! TS18,somite 30 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2817 -name: TS18,myocoele,somite 30 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:2815 ! TS18,somite 30 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2818 -name: TS18,sclerotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2815 ! TS18,somite 30 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2819 -name: TS18,septum transversum -namespace: mouse_anatomy_stages -is_a: UBERON:0004161 ! septum transversum -relationship: part_of EMAP:2738 ! TS18,trunk mesenchyme -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:282 -name: TS12,intermediate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003064 ! intermediate mesoderm -relationship: part_of EMAP:281 ! TS12,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2820 -name: TS18,non-hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2819 ! TS18,septum transversum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:2821 -name: TS18,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2822 -name: TS18,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2823 -name: TS18,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:2822 ! TS18,organ system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2824 -name: TS18,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:2823 ! TS18,visceral organ -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2825 -name: TS18,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:2824 ! TS18,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2826 -name: TS18,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:2825 ! TS18,gut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2827 -name: TS18,gland,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0013158 ! foregut-midgut junction gland -relationship: part_of EMAP:2826 ! TS18,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0013158 ! foregut-midgut junction gland -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2828 -name: TS18,pancreas primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003921 ! pancreas primordium -relationship: part_of EMAP:2827 ! TS18,gland,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003921 ! pancreas primordium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2829 -name: TS18,dorsal bud,pancreas primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003923 ! dorsal pancreatic bud -relationship: part_of EMAP:2828 ! TS18,pancreas primordium -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003923 ! dorsal pancreatic bud -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:283 -name: TS12,lateral plate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003081 ! lateral plate mesoderm -relationship: part_of EMAP:281 ! TS12,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2830 -name: TS18,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:2824 ! TS18,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2831 -name: TS18,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:2830 ! TS18,oral region,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2832 -name: TS18,pituitary,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2831 ! TS18,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0010047 ! oral gland - -[Term] -id: EMAP:2833 -name: TS18,Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0005356 ! Rathke's pouch -relationship: part_of EMAP:2832 ! TS18,pituitary,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2834 -name: TS18,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:2822 ! TS18,organ system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2835 -name: TS18,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:2834 ! TS18,nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2836 -name: TS18,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:2835 ! TS18,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2837 -name: TS18,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:2836 ! TS18,brain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2838 -name: TS18,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:2837 ! TS18,forebrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2839 -name: TS18,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:2838 ! TS18,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:284 -name: TS12,somatopleure,lateral plate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0004874 ! somatopleure -relationship: part_of EMAP:283 ! TS12,lateral plate mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004874 ! somatopleure -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2840 -name: TS18,pituitary,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:2839 ! TS18,gland,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2841 -name: TS18,infundibular recess of 3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006250 ! infundibular recess of 3rd ventricle -relationship: part_of EMAP:2840 ! TS18,pituitary,gland,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006250 ! infundibular recess of 3rd ventricle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2842 -name: TS18,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:2825 ! TS18,gut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2843 -name: TS18,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:2842 ! TS18,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2844 -name: TS18,thyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:2843 ! TS18,gland,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2845 -name: TS18,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:2844 ! TS18,thyroid -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2846 -name: TS18,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:2844 ! TS18,thyroid -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2847 -name: TS18,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:2838 ! TS18,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2848 -name: TS18,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:2847 ! TS18,3rd ventricle -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2849 -name: TS18,optic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0002287 ! optic recess of third ventricle -relationship: part_of EMAP:2847 ! TS18,3rd ventricle -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:285 -name: TS12,splanchnopleure,lateral plate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0004873 ! splanchnopleure -relationship: part_of EMAP:283 ! TS12,lateral plate mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004873 ! splanchnopleure -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2850 -name: TS18,floor plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003309 ! floor plate of diencephalon -relationship: part_of EMAP:2838 ! TS18,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2851 -name: TS18,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:2838 ! TS18,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2852 -name: TS18,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:2838 ! TS18,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2853 -name: TS18,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:2852 ! TS18,lateral wall,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2854 -name: TS18,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2852 ! TS18,lateral wall,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:2855 -name: TS18,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2852 ! TS18,lateral wall,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:2856 -name: TS18,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:2838 ! TS18,diencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2857 -name: TS18,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:2837 ! TS18,forebrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2858 -name: TS18,mantle layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2857 ! TS18,telencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:2859 -name: TS18,marginal layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2857 ! TS18,telencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:2860 -name: TS18,ventricular layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2857 ! TS18,telencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:2861 -name: TS18,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:2857 ! TS18,telencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2862 -name: TS18,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:2861 ! TS18,lateral ventricle -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2863 -name: TS18,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:2836 ! TS18,brain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2864 -name: TS18,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:2863 ! TS18,hindbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2865 -name: TS18,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:2863 ! TS18,hindbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2866 -name: TS18,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2865 ! TS18,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:2867 -name: TS18,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2866 ! TS18,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:2868 -name: TS18,cerebellum primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0013163 ! future cerebellum -relationship: part_of EMAP:2867 ! TS18,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0013163 ! future cerebellum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2869 -name: TS18,mantle layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2867 ! TS18,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:287 -name: TS12,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:281 ! TS12,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2870 -name: TS18,marginal layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2867 ! TS18,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:2871 -name: TS18,ventricular layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2867 ! TS18,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:2872 -name: TS18,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:2866 ! TS18,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2873 -name: TS18,mantle layer,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2872 ! TS18,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005239 ! basal plate metencephalon - -[Term] -id: EMAP:2874 -name: TS18,marginal layer,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2872 ! TS18,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005239 ! basal plate metencephalon - -[Term] -id: EMAP:2875 -name: TS18,ventricular layer,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2872 ! TS18,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005239 ! basal plate metencephalon - -[Term] -id: EMAP:2876 -name: TS18,myelencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005290 ! myelencephalon -relationship: part_of EMAP:2863 ! TS18,hindbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005290 ! myelencephalon -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2877 -name: TS18,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2876 ! TS18,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:2878 -name: TS18,alar plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2877 ! TS18,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:2879 -name: TS18,mantle layer,alar plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2878 ! TS18,alar plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:288 -name: TS12,somite,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005598 ! trunk somite -relationship: part_of EMAP:287 ! TS12,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2880 -name: TS18,marginal layer,alar plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2878 ! TS18,alar plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:2881 -name: TS18,ventricular layer,alar plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2878 ! TS18,alar plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:2882 -name: TS18,basal plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009579 ! myelencephalon basal plate -relationship: part_of EMAP:2877 ! TS18,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009579 ! myelencephalon basal plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2883 -name: TS18,mantle layer,basal plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2882 ! TS18,basal plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009579 ! myelencephalon basal plate - -[Term] -id: EMAP:2884 -name: TS18,marginal layer,basal plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2882 ! TS18,basal plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009579 ! myelencephalon basal plate - -[Term] -id: EMAP:2885 -name: TS18,ventricular layer,basal plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2882 ! TS18,basal plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009579 ! myelencephalon basal plate - -[Term] -id: EMAP:2886 -name: TS18,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005499 ! rhombomere 1 -relationship: part_of EMAP:2865 ! TS18,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2887 -name: TS18,floor plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0003310 ! floor plate of metencephalon -relationship: part_of EMAP:2886 ! TS18,rhombomere 01 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2888 -name: TS18,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005567 ! rhombomere 1 lateral wall -relationship: part_of EMAP:2886 ! TS18,rhombomere 01 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2889 -name: TS18,mantle layer,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2888 ! TS18,lateral wall,rhombomere 01 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005567 ! rhombomere 1 lateral wall - -[Term] -id: EMAP:289 -name: TS12,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:288 ! TS12,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2890 -name: TS18,marginal layer,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2888 ! TS18,lateral wall,rhombomere 01 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005567 ! rhombomere 1 lateral wall - -[Term] -id: EMAP:2891 -name: TS18,ventricular layer,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2888 ! TS18,lateral wall,rhombomere 01 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005567 ! rhombomere 1 lateral wall - -[Term] -id: EMAP:2892 -name: TS18,roof plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0003302 ! roof plate of metencephalon -relationship: part_of EMAP:2886 ! TS18,rhombomere 01 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2893 -name: TS18,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005569 ! rhombomere 2 -relationship: part_of EMAP:2865 ! TS18,metencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2894 -name: TS18,floor plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0003310 ! floor plate of metencephalon -relationship: part_of EMAP:2893 ! TS18,rhombomere 02 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2895 -name: TS18,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005571 ! rhombomere 2 lateral wall -relationship: part_of EMAP:2893 ! TS18,rhombomere 02 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2896 -name: TS18,mantle layer,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2895 ! TS18,lateral wall,rhombomere 02 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005571 ! rhombomere 2 lateral wall - -[Term] -id: EMAP:2897 -name: TS18,marginal layer,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2895 ! TS18,lateral wall,rhombomere 02 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005571 ! rhombomere 2 lateral wall - -[Term] -id: EMAP:2898 -name: TS18,ventricular layer,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2895 ! TS18,lateral wall,rhombomere 02 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005571 ! rhombomere 2 lateral wall - -[Term] -id: EMAP:2899 -name: TS18,roof plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0003302 ! roof plate of metencephalon -relationship: part_of EMAP:2893 ! TS18,rhombomere 02 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:29 -name: TS5,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:28 ! TS5,trophectoderm -relationship: exists_during MmusDv:0000009 ! Theiler stage 05 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000009 ! Theiler stage 05 - -[Term] -id: EMAP:290 -name: TS12,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:288 ! TS12,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2900 -name: TS18,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005507 ! rhombomere 3 -relationship: part_of EMAP:2876 ! TS18,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2901 -name: TS18,floor plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005573 ! rhombomere 3 floor plate -relationship: part_of EMAP:2900 ! TS18,rhombomere 03 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2902 -name: TS18,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005574 ! rhombomere 3 lateral wall -relationship: part_of EMAP:2900 ! TS18,rhombomere 03 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2903 -name: TS18,mantle layer,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2902 ! TS18,lateral wall,rhombomere 03 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005574 ! rhombomere 3 lateral wall - -[Term] -id: EMAP:2904 -name: TS18,marginal layer,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2902 ! TS18,lateral wall,rhombomere 03 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005574 ! rhombomere 3 lateral wall - -[Term] -id: EMAP:2905 -name: TS18,ventricular layer,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2902 ! TS18,lateral wall,rhombomere 03 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005574 ! rhombomere 3 lateral wall - -[Term] -id: EMAP:2906 -name: TS18,roof plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005575 ! rhombomere 3 roof plate -relationship: part_of EMAP:2900 ! TS18,rhombomere 03 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2907 -name: TS18,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005511 ! rhombomere 4 -relationship: part_of EMAP:2876 ! TS18,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2908 -name: TS18,floor plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005576 ! rhombomere 4 floor plate -relationship: part_of EMAP:2907 ! TS18,rhombomere 04 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2909 -name: TS18,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005577 ! rhombomere 4 lateral wall -relationship: part_of EMAP:2907 ! TS18,rhombomere 04 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:291 -name: TS12,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:288 ! TS12,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2910 -name: TS18,mantle layer,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2909 ! TS18,lateral wall,rhombomere 04 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005577 ! rhombomere 4 lateral wall - -[Term] -id: EMAP:2911 -name: TS18,marginal layer,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2909 ! TS18,lateral wall,rhombomere 04 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005577 ! rhombomere 4 lateral wall - -[Term] -id: EMAP:2912 -name: TS18,ventricular layer,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2909 ! TS18,lateral wall,rhombomere 04 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005577 ! rhombomere 4 lateral wall - -[Term] -id: EMAP:2913 -name: TS18,roof plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005578 ! rhombomere 4 roof plate -relationship: part_of EMAP:2907 ! TS18,rhombomere 04 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2914 -name: TS18,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005515 ! rhombomere 5 -relationship: part_of EMAP:2876 ! TS18,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2915 -name: TS18,floor plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005579 ! rhombomere 5 floor plate -relationship: part_of EMAP:2914 ! TS18,rhombomere 05 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2916 -name: TS18,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005580 ! rhombomere 5 lateral wall -relationship: part_of EMAP:2914 ! TS18,rhombomere 05 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2917 -name: TS18,mantle layer,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2916 ! TS18,lateral wall,rhombomere 05 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005580 ! rhombomere 5 lateral wall - -[Term] -id: EMAP:2918 -name: TS18,marginal layer,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2916 ! TS18,lateral wall,rhombomere 05 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005580 ! rhombomere 5 lateral wall - -[Term] -id: EMAP:2919 -name: TS18,ventricular layer,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2916 ! TS18,lateral wall,rhombomere 05 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005580 ! rhombomere 5 lateral wall - -[Term] -id: EMAP:292 -name: TS12,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:288 ! TS12,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:2920 -name: TS18,roof plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005581 ! rhombomere 5 roof plate -relationship: part_of EMAP:2914 ! TS18,rhombomere 05 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2921 -name: TS18,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005519 ! rhombomere 6 -relationship: part_of EMAP:2876 ! TS18,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2922 -name: TS18,floor plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005582 ! rhombomere 6 floor plate -relationship: part_of EMAP:2921 ! TS18,rhombomere 06 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2923 -name: TS18,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005583 ! rhombomere 6 lateral wall -relationship: part_of EMAP:2921 ! TS18,rhombomere 06 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2924 -name: TS18,mantle layer,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2923 ! TS18,lateral wall,rhombomere 06 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005583 ! rhombomere 6 lateral wall - -[Term] -id: EMAP:2925 -name: TS18,marginal layer,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2923 ! TS18,lateral wall,rhombomere 06 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005583 ! rhombomere 6 lateral wall - -[Term] -id: EMAP:2926 -name: TS18,ventricular layer,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2923 ! TS18,lateral wall,rhombomere 06 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005583 ! rhombomere 6 lateral wall - -[Term] -id: EMAP:2927 -name: TS18,roof plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005584 ! rhombomere 6 roof plate -relationship: part_of EMAP:2921 ! TS18,rhombomere 06 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2928 -name: TS18,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005523 ! rhombomere 7 -relationship: part_of EMAP:2876 ! TS18,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2929 -name: TS18,floor plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005585 ! rhombomere 7 floor plate -relationship: part_of EMAP:2928 ! TS18,rhombomere 07 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:293 -name: TS12,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:287 ! TS12,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:2930 -name: TS18,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005586 ! rhombomere 7 lateral wall -relationship: part_of EMAP:2928 ! TS18,rhombomere 07 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2931 -name: TS18,mantle layer,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2930 ! TS18,lateral wall,rhombomere 07 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005586 ! rhombomere 7 lateral wall - -[Term] -id: EMAP:2932 -name: TS18,marginal layer,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2930 ! TS18,lateral wall,rhombomere 07 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005586 ! rhombomere 7 lateral wall - -[Term] -id: EMAP:2933 -name: TS18,ventricular layer,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2930 ! TS18,lateral wall,rhombomere 07 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005586 ! rhombomere 7 lateral wall - -[Term] -id: EMAP:2934 -name: TS18,roof plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005587 ! rhombomere 7 roof plate -relationship: part_of EMAP:2928 ! TS18,rhombomere 07 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2935 -name: TS18,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005527 ! rhombomere 8 -relationship: part_of EMAP:2876 ! TS18,myelencephalon -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2936 -name: TS18,floor plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005588 ! rhombomere 8 floor plate -relationship: part_of EMAP:2935 ! TS18,rhombomere 08 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2937 -name: TS18,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005589 ! rhombomere 8 lateral wall -relationship: part_of EMAP:2935 ! TS18,rhombomere 08 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2938 -name: TS18,mantle layer,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2937 ! TS18,lateral wall,rhombomere 08 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005589 ! rhombomere 8 lateral wall - -[Term] -id: EMAP:2939 -name: TS18,marginal layer,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2937 ! TS18,lateral wall,rhombomere 08 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005589 ! rhombomere 8 lateral wall - -[Term] -id: EMAP:294 -name: TS12,primordial germ cells,trunk mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:281 ! TS12,trunk mesenchyme -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EMAP:2940 -name: TS18,ventricular layer,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2937 ! TS18,lateral wall,rhombomere 08 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005589 ! rhombomere 8 lateral wall - -[Term] -id: EMAP:2941 -name: TS18,roof plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005590 ! rhombomere 8 roof plate -relationship: part_of EMAP:2935 ! TS18,rhombomere 08 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2942 -name: TS18,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:2836 ! TS18,brain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2943 -name: TS18,floor plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003307 ! floor plate of midbrain -relationship: part_of EMAP:2942 ! TS18,midbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2944 -name: TS18,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:2942 ! TS18,midbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2945 -name: TS18,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:2944 ! TS18,lateral wall,midbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2946 -name: TS18,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2944 ! TS18,lateral wall,midbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:2947 -name: TS18,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2944 ! TS18,lateral wall,midbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:2948 -name: TS18,mesencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2942 ! TS18,midbrain -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001891 ! midbrain - -[Term] -id: EMAP:2949 -name: TS18,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:2835 ! TS18,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:295 -name: TS12,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2950 -name: TS18,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:2949 ! TS18,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2951 -name: TS18,floor plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003306 ! floor plate of neural tube -relationship: part_of EMAP:2950 ! TS18,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2952 -name: TS18,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2950 ! TS18,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001049 ! neural tube - -[Term] -id: EMAP:2953 -name: TS18,mantle layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004061 ! neural tube mantle layer -relationship: part_of EMAP:2952 ! TS18,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004061 ! neural tube mantle layer -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2954 -name: TS18,alar columns,mantle layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:2953 ! TS18,mantle layer,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2955 -name: TS18,basal columns,mantle layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2953 ! TS18,mantle layer,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004061 ! neural tube mantle layer - -[Term] -id: EMAP:2956 -name: TS18,marginal layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004062 ! neural tube marginal layer -relationship: part_of EMAP:2952 ! TS18,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004062 ! neural tube marginal layer -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2957 -name: TS18,ventricular layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004060 ! neural tube ventricular layer -relationship: part_of EMAP:2952 ! TS18,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004060 ! neural tube ventricular layer -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2958 -name: TS18,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003842 ! neural tube lumen -relationship: part_of EMAP:2950 ! TS18,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2959 -name: TS18,neural luminal occlusion,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2958 ! TS18,neural lumen,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003842 ! neural tube lumen - -[Term] -id: EMAP:296 -name: TS12,notochordal plate -namespace: mouse_anatomy_stages -is_a: UBERON:0006267 ! notochordal plate -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006267 ! notochordal plate -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2960 -name: TS18,roof plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003298 ! roof plate of neural tube -relationship: part_of EMAP:2950 ! TS18,neural tube,future spinal cord -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003298 ! roof plate of neural tube -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2961 -name: TS18,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:2835 ! TS18,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2962 -name: TS18,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:2961 ! TS18,ganglion,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2963 -name: TS18,acoustic ganglion VIII -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2962 ! TS18,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001714 ! cranial ganglion - -[Term] -id: EMAP:2964 -name: TS18,facial ganglion VII -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:2962 ! TS18,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2965 -name: TS18,glossopharyngeal IX -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:2962 ! TS18,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2966 -name: TS18,inferior,glossopharyngeal IX -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2965 ! TS18,glossopharyngeal IX -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:2967 -name: TS18,superior,glossopharyngeal IX -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2965 ! TS18,glossopharyngeal IX -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:2968 -name: TS18,trigeminal V -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:2962 ! TS18,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2969 -name: TS18,vagus X -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:2962 ! TS18,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:297 -name: TS12,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2970 -name: TS18,inferior,vagus X -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:2969 ! TS18,vagus X -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2971 -name: TS18,superior,vagus X -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:2969 ! TS18,vagus X -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2972 -name: TS18,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:2834 ! TS18,nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2973 -name: TS18,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:2972 ! TS18,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2974 -name: TS18,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:2973 ! TS18,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2975 -name: TS18,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:2974 ! TS18,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2976 -name: TS18,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:2975 ! TS18,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2977 -name: TS18,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:2974 ! TS18,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2978 -name: TS18,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:2972 ! TS18,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2979 -name: TS18,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2978 ! TS18,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:298 -name: TS12,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:297 ! TS12,organ system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2980 -name: TS18,dorsal root ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:2979 ! TS18,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2981 -name: TS18,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:2978 ! TS18,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2982 -name: TS18,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:2981 ! TS18,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2983 -name: TS18,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001780 ! spinal nerve -relationship: part_of EMAP:2978 ! TS18,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2984 -name: TS18,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:2983 ! TS18,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2985 -name: TS18,spinal component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009674 ! accessory XI nerve spinal component -relationship: part_of EMAP:2984 ! TS18,accessory XI -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009674 ! accessory XI nerve spinal component -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2986 -name: TS18,segmental spinal nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0005197 ! segmental spinal nerve -relationship: part_of EMAP:2983 ! TS18,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2987 -name: TS18,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:2822 ! TS18,organ system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2988 -name: TS18,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:2987 ! TS18,sensory organ -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2989 -name: TS18,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:2988 ! TS18,ear -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:299 -name: TS12,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:298 ! TS12,sensory organ -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:2990 -name: TS18,1st branchial membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:2989 ! TS18,external ear -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2991 -name: TS18,epithelium,1st branchial membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2990 ! TS18,1st branchial membrane -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:2992 -name: TS18,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:2988 ! TS18,ear -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2993 -name: TS18,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0003051 ! ear vesicle -relationship: part_of EMAP:2992 ! TS18,inner ear -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2994 -name: TS18,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:2993 ! TS18,otocyst -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2995 -name: TS18,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2994 ! TS18,endolymphatic appendage -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:2996 -name: TS18,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0005641 ! otocyst epithelium -relationship: part_of EMAP:2994 ! TS18,endolymphatic appendage -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005641 ! otocyst epithelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:2997 -name: TS18,other part,otocyst -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2993 ! TS18,otocyst -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003051 ! ear vesicle - -[Term] -id: EMAP:2998 -name: TS18,associated mesenchyme,other part,otocyst -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2997 ! TS18,other part,otocyst -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003051 ! ear vesicle - -[Term] -id: EMAP:2999 -name: TS18,epithelium,other part,otocyst -namespace: mouse_anatomy_stages -is_a: UBERON:0005641 ! otocyst epithelium -relationship: part_of EMAP:2997 ! TS18,other part,otocyst -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005641 ! otocyst epithelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3 -name: TS1,second polar body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000003 ! Theiler stage 01 -relationship: part_of UBERON:0000468 ! multi-cellular organism - -[Term] -id: EMAP:30 -name: TS5,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:28 ! TS5,trophectoderm -relationship: exists_during MmusDv:0000009 ! Theiler stage 05 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000009 ! Theiler stage 05 - -[Term] -id: EMAP:300 -name: TS12,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:299 ! TS12,ear -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3000 -name: TS18,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:2988 ! TS18,ear -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3001 -name: TS18,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:3000 ! TS18,middle ear -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3002 -name: TS18,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:3000 ! TS18,middle ear -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3003 -name: TS18,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:2987 ! TS18,sensory organ -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3004 -name: TS18,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:3003 ! TS18,eye -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3005 -name: TS18,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:3004 ! TS18,cornea -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3006 -name: TS18,lens pit -namespace: mouse_anatomy_stages -is_a: UBERON:0006259 ! lens pit -relationship: part_of EMAP:3003 ! TS18,eye -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006259 ! lens pit -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3007 -name: TS18,lens vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0005426 ! lens vesicle -relationship: part_of EMAP:3003 ! TS18,eye -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005426 ! lens vesicle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3008 -name: TS18,cavity,lens vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0005688 ! lens vesicle cavity -relationship: part_of EMAP:3007 ! TS18,lens vesicle -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005688 ! lens vesicle cavity -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3009 -name: TS18,epithelium,lens vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0005656 ! lens vesicle epithelium -relationship: part_of EMAP:3007 ! TS18,lens vesicle -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005656 ! lens vesicle epithelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:301 -name: TS12,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003069 ! otic placode -relationship: part_of EMAP:300 ! TS12,inner ear -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003069 ! otic placode -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3010 -name: TS18,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:3003 ! TS18,eye -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3011 -name: TS18,fissure,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0005412 ! optic fissure -relationship: part_of EMAP:3010 ! TS18,optic stalk -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3012 -name: TS18,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:3003 ! TS18,eye -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3013 -name: TS18,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:3003 ! TS18,eye -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3014 -name: TS18,embryonic fissure,retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3013 ! TS18,retina -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000966 ! retina - -[Term] -id: EMAP:3015 -name: TS18,intraretinal space -namespace: mouse_anatomy_stages -is_a: UBERON:0006253 ! embryonic intraretinal space -relationship: part_of EMAP:3013 ! TS18,retina -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006253 ! embryonic intraretinal space -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3016 -name: TS18,neural retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:3013 ! TS18,retina -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3017 -name: TS18,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:3013 ! TS18,retina -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3018 -name: TS18,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:2987 ! TS18,sensory organ -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3019 -name: TS18,naso-lacrimal groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006266 ! nasolacrimal groove -relationship: part_of EMAP:3018 ! TS18,nose -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:302 -name: TS12,associated mesenchyme,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0009477 ! associated mesenchyme of otic placode -relationship: part_of EMAP:301 ! TS12,otic placode -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0009477 ! associated mesenchyme of otic placode -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3020 -name: TS18,olfactory pit -namespace: mouse_anatomy_stages -is_a: UBERON:0005870 ! olfactory pit -relationship: part_of EMAP:3018 ! TS18,nose -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3021 -name: TS18,nasal epithelium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3020 ! TS18,olfactory pit -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005870 ! olfactory pit - -[Term] -id: EMAP:3022 -name: TS18,process,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0009292 ! embryonic nasal process -relationship: part_of EMAP:3018 ! TS18,nose -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3023 -name: TS18,fronto-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004066 ! frontonasal prominence -relationship: part_of EMAP:3022 ! TS18,process,nose -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3024 -name: TS18,frontal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009293 ! embryonic frontal process -relationship: part_of EMAP:3023 ! TS18,fronto-nasal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009293 ! embryonic frontal process -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3025 -name: TS18,ectoderm,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3024 ! TS18,frontal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:3026 -name: TS18,mesenchyme,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3024 ! TS18,frontal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:3027 -name: TS18,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004067 ! lateral nasal prominence -relationship: part_of EMAP:3023 ! TS18,fronto-nasal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004067 ! lateral nasal prominence -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3028 -name: TS18,ectoderm,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009206 ! lateral nasal process surface ectoderm -relationship: part_of EMAP:3027 ! TS18,latero-nasal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009206 ! lateral nasal process surface ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3029 -name: TS18,mesenchyme,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009205 ! lateral nasal process mesenchyme -relationship: part_of EMAP:3027 ! TS18,latero-nasal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009205 ! lateral nasal process mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:303 -name: TS12,epithelium,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003249 ! epithelium of otic placode -relationship: part_of EMAP:301 ! TS12,otic placode -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003249 ! epithelium of otic placode -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3030 -name: TS18,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004068 ! medial nasal prominence -relationship: part_of EMAP:3023 ! TS18,fronto-nasal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004068 ! medial nasal prominence -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3031 -name: TS18,ectoderm,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0005233 ! medial-nasal process ectoderm -relationship: part_of EMAP:3030 ! TS18,medial-nasal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005233 ! medial-nasal process ectoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3032 -name: TS18,mesenchyme,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009204 ! medial nasal process mesenchyme -relationship: part_of EMAP:3030 ! TS18,medial-nasal process -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009204 ! medial nasal process mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3033 -name: TS18,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:2822 ! TS18,organ system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3034 -name: TS18,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:3033 ! TS18,cardiovascular system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3035 -name: TS18,branchial arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004363 ! aortic arch -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004363 ! aortic arch -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3036 -name: TS18,1st arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003118 ! aortic arch 1 -relationship: part_of EMAP:3035 ! TS18,branchial arch artery -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003118 ! aortic arch 1 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3037 -name: TS18,2nd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003119 ! aortic arch 2 -relationship: part_of EMAP:3035 ! TS18,branchial arch artery -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003119 ! aortic arch 2 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3038 -name: TS18,3rd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003120 ! aortic arch 3 -relationship: part_of EMAP:3035 ! TS18,branchial arch artery -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003120 ! aortic arch 3 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3039 -name: TS18,4th arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003121 ! aortic arch 4 -relationship: part_of EMAP:3035 ! TS18,branchial arch artery -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003121 ! aortic arch 4 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:304 -name: TS12,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:298 ! TS12,sensory organ -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3040 -name: TS18,6th arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003123 ! aortic arch 6 -relationship: part_of EMAP:3035 ! TS18,branchial arch artery -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003123 ! aortic arch 6 -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3041 -name: TS18,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:3042 -name: TS18,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:3041 ! TS18,dorsal aorta -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3043 -name: TS18,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:3041 ! TS18,dorsal aorta -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3044 -name: TS18,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:3041 ! TS18,dorsal aorta -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3045 -name: TS18,ductus caroticus -namespace: mouse_anatomy_stages -is_a: UBERON:0010198 ! carotid duct -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010198 ! carotid duct -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3046 -name: TS18,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3047 -name: TS18,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3048 -name: TS18,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3049 -name: TS18,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:305 -name: TS12,optic sulcus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:304 ! TS12,eye -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0000019 ! camera-type eye - -[Term] -id: EMAP:3050 -name: TS18,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3051 -name: TS18,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3052 -name: TS18,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:3051 ! TS18,umbilical artery -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3053 -name: TS18,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:3051 ! TS18,umbilical artery -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3054 -name: TS18,vitelline artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006002 ! vitelline artery -relationship: part_of EMAP:3034 ! TS18,arterial system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3055 -name: TS18,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:3033 ! TS18,cardiovascular system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3056 -name: TS18,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:3033 ! TS18,cardiovascular system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3057 -name: TS18,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3058 -name: TS18,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3059 -name: TS18,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006218 ! common atrial chamber -relationship: part_of EMAP:3058 ! TS18,atrium -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006218 ! common atrial chamber -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:306 -name: TS12,neural ectoderm,optic sulcus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:305 ! TS12,optic sulcus -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0000019 ! camera-type eye - -[Term] -id: EMAP:3060 -name: TS18,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3059 ! TS18,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3061 -name: TS18,endocardial lining,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3060 ! TS18,left part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3062 -name: TS18,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006630 ! left atrium auricular region -relationship: part_of EMAP:3060 ! TS18,left part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006630 ! left atrium auricular region -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3063 -name: TS18,endocardial lining,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3062 ! TS18,left auricular region,left part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006630 ! left atrium auricular region - -[Term] -id: EMAP:3064 -name: TS18,cardiac muscle,left auricular region,left part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:3062 ! TS18,left auricular region,left part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3065 -name: TS18,cardiac muscle,left part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3060 ! TS18,left part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3066 -name: TS18,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3059 ! TS18,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3067 -name: TS18,endocardial lining,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3066 ! TS18,right part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3068 -name: TS18,cardiac muscle,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3066 ! TS18,right part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3069 -name: TS18,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006631 ! right atrium auricular region -relationship: part_of EMAP:3066 ! TS18,right part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006631 ! right atrium auricular region -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:307 -name: TS12,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:297 ! TS12,organ system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3070 -name: TS18,endocardial lining,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3069 ! TS18,right auricular region,right part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006631 ! right atrium auricular region - -[Term] -id: EMAP:3071 -name: TS18,cardiac muscle,right auricular region,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:3069 ! TS18,right auricular region,right part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3072 -name: TS18,valve,right part,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3066 ! TS18,right part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3073 -name: TS18,venous valve,valve,right part,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:3072 ! TS18,valve,right part,common atrial chamber -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3074 -name: TS18,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:3058 ! TS18,atrium -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3075 -name: TS18,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:3074 ! TS18,interatrial septum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3076 -name: TS18,foramen primum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3075 ! TS18,septum primum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004154 ! septum primum - -[Term] -id: EMAP:3077 -name: TS18,bulboventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006212 ! bulbo-ventricular groove -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006212 ! bulbo-ventricular groove -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3078 -name: TS18,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0004706 ! bulbus cordis -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3079 -name: TS18,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3078 ! TS18,bulbus cordis -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:308 -name: TS12,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:307 ! TS12,cardiovascular system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3080 -name: TS18,endocardial lining,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3079 ! TS18,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:3081 -name: TS18,cardiac muscle,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3079 ! TS18,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:3082 -name: TS18,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0006060 ! conotruncus -relationship: part_of EMAP:3078 ! TS18,bulbus cordis -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006060 ! conotruncus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3083 -name: TS18,endocardial lining,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3082 ! TS18,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:3084 -name: TS18,cardiac muscle,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3082 ! TS18,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:3085 -name: TS18,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3086 -name: TS18,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3087 -name: TS18,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:3086 ! TS18,mesentery,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3088 -name: TS18,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:3087 ! TS18,dorsal mesocardium -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3089 -name: TS18,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:309 -name: TS12,1st arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003118 ! aortic arch 1 -relationship: part_of EMAP:308 ! TS12,arterial system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003118 ! aortic arch 1 -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3090 -name: TS18,aortico-pulmonary spiral septum -namespace: mouse_anatomy_stages -is_a: UBERON:0006207 ! aortico-pulmonary spiral septum -relationship: part_of EMAP:3089 ! TS18,outflow tract,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3091 -name: TS18,endocardial tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3089 ! TS18,outflow tract,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:3092 -name: TS18,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3093 -name: TS18,parietal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:3092 ! TS18,pericardium -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3094 -name: TS18,visceral pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:3092 ! TS18,pericardium -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3095 -name: TS18,primitive ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006283 ! primitive ventricle of heart -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006283 ! primitive ventricle of heart -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3096 -name: TS18,endocardial lining,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3095 ! TS18,primitive ventricle -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:3097 -name: TS18,cardiac muscle,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3095 ! TS18,primitive ventricle -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:3098 -name: TS18,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:3056 ! TS18,heart -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3099 -name: TS18,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:3098 ! TS18,sinus venosus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:31 -name: TS6,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:310 -name: TS12,2nd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003119 ! aortic arch 2 -relationship: part_of EMAP:308 ! TS12,arterial system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003119 ! aortic arch 2 -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3100 -name: TS18,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:3098 ! TS18,sinus venosus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3101 -name: TS18,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:3033 ! TS18,cardiovascular system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3102 -name: TS18,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004344 ! cardinal vein -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3103 -name: TS18,anterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:3102 ! TS18,cardinal vein -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3104 -name: TS18,common,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002064 ! common cardinal vein -relationship: part_of EMAP:3102 ! TS18,cardinal vein -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3105 -name: TS18,posterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002065 ! posterior cardinal vein -relationship: part_of EMAP:3102 ! TS18,cardinal vein -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3106 -name: TS18,inter-subcardinal venous anastomosis -namespace: mouse_anatomy_stages -is_a: UBERON:0006252 ! intersubcardinal venous anastomosis -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006252 ! intersubcardinal venous anastomosis -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3107 -name: TS18,marginal vein of forelimb -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:3108 -name: TS18,marginal vein of hindlimb -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:3109 -name: TS18,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:311 -name: TS12,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:308 ! TS12,arterial system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:3110 -name: TS18,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3111 -name: TS18,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3112 -name: TS18,subcardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006296 ! subcardinal vein -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006296 ! subcardinal vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3113 -name: TS18,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3114 -name: TS18,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:3113 ! TS18,umbilical vein -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3115 -name: TS18,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3116 -name: TS18,left,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005460 ! left vitelline vein -relationship: part_of EMAP:3115 ! TS18,vitelline vein -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3117 -name: TS18,right,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005472 ! right vitelline vein -relationship: part_of EMAP:3115 ! TS18,vitelline vein -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3118 -name: TS18,vitelline venous plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0006309 ! venous vitelline plexus -relationship: part_of EMAP:3101 ! TS18,venous system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3119 -name: TS18,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:2824 ! TS18,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:312 -name: TS12,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:311 ! TS12,dorsal aorta -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3120 -name: TS18,anal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009521 ! anal membrane endodermal component -relationship: part_of EMAP:3119 ! TS18,anal region,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009521 ! anal membrane endodermal component -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3121 -name: TS18,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003286 ! foregut region of duodenum -relationship: part_of EMAP:2842 ! TS18,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003286 ! foregut region of duodenum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3122 -name: TS18,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3121 ! TS18,duodenum,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3123 -name: TS18,associated mesenchyme,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3122 ! TS18,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3124 -name: TS18,epithelium,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3122 ! TS18,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3125 -name: TS18,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3122 ! TS18,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3126 -name: TS18,mesoduodenum,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:3125 ! TS18,mesentery,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3127 -name: TS18,vascular element,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3122 ! TS18,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3128 -name: TS18,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:2842 ! TS18,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3129 -name: TS18,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3128 ! TS18,oesophagus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:313 -name: TS12,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:311 ! TS12,dorsal aorta -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3130 -name: TS18,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001976 ! epithelium of esophagus -relationship: part_of EMAP:3128 ! TS18,oesophagus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3131 -name: TS18,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:3128 ! TS18,oesophagus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3132 -name: TS18,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:3131 ! TS18,mesentery,oesophagus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3133 -name: TS18,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3128 ! TS18,oesophagus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:3134 -name: TS18,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:2842 ! TS18,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3135 -name: TS18,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3134 ! TS18,pharynx -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:3136 -name: TS18,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:3134 ! TS18,pharynx -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3137 -name: TS18,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:3134 ! TS18,pharynx -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3138 -name: TS18,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006260 ! lingual swellings -relationship: part_of EMAP:3137 ! TS18,tongue -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006260 ! lingual swellings -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3139 -name: TS18,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006756 ! median lingual swelling -relationship: part_of EMAP:3138 ! TS18,lingual swelling,tongue -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006756 ! median lingual swelling -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:314 -name: TS12,vitelline artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006002 ! vitelline artery -relationship: part_of EMAP:308 ! TS12,arterial system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3140 -name: TS18,epithelium,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3139 ! TS18,median,lingual swelling,tongue -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006756 ! median lingual swelling - -[Term] -id: EMAP:3141 -name: TS18,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006757 ! lateral lingual swelling -relationship: part_of EMAP:3138 ! TS18,lingual swelling,tongue -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006757 ! lateral lingual swelling -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3142 -name: TS18,epithelium,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0009522 ! lateral lingual swelling epithelium -relationship: part_of EMAP:3141 ! TS18,lateral,lingual swelling,tongue -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009522 ! lateral lingual swelling epithelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3143 -name: TS18,mesenchyme,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3141 ! TS18,lateral,lingual swelling,tongue -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006757 ! lateral lingual swelling - -[Term] -id: EMAP:3144 -name: TS18,mesenchyme,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3139 ! TS18,median,lingual swelling,tongue -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006756 ! median lingual swelling - -[Term] -id: EMAP:3145 -name: TS18,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3134 ! TS18,pharynx -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:3146 -name: TS18,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:2842 ! TS18,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3147 -name: TS18,associated mesenchyme,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3146 ! TS18,stomach -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:3148 -name: TS18,epithelium,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3146 ! TS18,stomach -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:3149 -name: TS18,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:3146 ! TS18,stomach -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:315 -name: TS12,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:307 ! TS12,cardiovascular system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3150 -name: TS18,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:3149 ! TS18,mesentery,stomach -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3151 -name: TS18,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:3149 ! TS18,mesentery,stomach -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3152 -name: TS18,vascular element,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3146 ! TS18,stomach -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:3153 -name: TS18,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:2826 ! TS18,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3154 -name: TS18,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:2826 ! TS18,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3155 -name: TS18,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:2826 ! TS18,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3156 -name: TS18,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:3155 ! TS18,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3157 -name: TS18,ventral mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:3155 ! TS18,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3158 -name: TS18,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2826 ! TS18,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:3159 -name: TS18,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2825 ! TS18,gut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:316 -name: TS12,cardiogenic plate -namespace: mouse_anatomy_stages -is_a: UBERON:0004139 ! cardiogenic plate -relationship: part_of EMAP:315 ! TS12,heart -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004139 ! cardiogenic plate -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3160 -name: TS18,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3159 ! TS18,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3161 -name: TS18,associated mesenchyme,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3160 ! TS18,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3162 -name: TS18,epithelium,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3160 ! TS18,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3163 -name: TS18,vascular element,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3160 ! TS18,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3164 -name: TS18,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3159 ! TS18,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3165 -name: TS18,associated mesenchyme,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3164 ! TS18,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3166 -name: TS18,epithelium,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3164 ! TS18,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3167 -name: TS18,vascular element,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3164 ! TS18,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3168 -name: TS18,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:2825 ! TS18,gut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3169 -name: TS18,associated mesenchyme,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009503 ! associated mesenchyme of hindgut -relationship: part_of EMAP:3168 ! TS18,hindgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009503 ! associated mesenchyme of hindgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:317 -name: TS12,early primitive heart tube -namespace: mouse_anatomy_stages -is_a: UBERON:0004141 ! heart tube -relationship: part_of EMAP:315 ! TS12,heart -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004141 ! heart tube -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3170 -name: TS18,epithelium,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003353 ! epithelium of hindgut -relationship: part_of EMAP:3168 ! TS18,hindgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3171 -name: TS18,mesentery,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003394 ! mesentery of hindgut -relationship: part_of EMAP:3168 ! TS18,hindgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003394 ! mesentery of hindgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3172 -name: TS18,dorsal mesentery,mesentery,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3171 ! TS18,mesentery,hindgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003394 ! mesentery of hindgut - -[Term] -id: EMAP:3173 -name: TS18,vascular element,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3168 ! TS18,hindgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:3174 -name: TS18,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:2825 ! TS18,gut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3175 -name: TS18,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003287 ! midgut region of duodenum -relationship: part_of EMAP:3174 ! TS18,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003287 ! midgut region of duodenum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3176 -name: TS18,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3175 ! TS18,duodenum,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:3177 -name: TS18,associated mesenchyme,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3176 ! TS18,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:3178 -name: TS18,epithelium,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3176 ! TS18,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:3179 -name: TS18,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:3176 ! TS18,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:318 -name: TS12,cardiac jelly,early primitive heart tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:317 ! TS12,early primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004141 ! heart tube - -[Term] -id: EMAP:3180 -name: TS18,mesoduodenum,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:3179 ! TS18,mesentery,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3181 -name: TS18,vascular element,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3176 ! TS18,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:3182 -name: TS18,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0011698 ! midgut loop -relationship: part_of EMAP:3174 ! TS18,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0011698 ! midgut loop -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3183 -name: TS18,associated mesenchyme,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3182 ! TS18,loop,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:3184 -name: TS18,epithelium,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3182 ! TS18,loop,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:3185 -name: TS18,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:3182 ! TS18,loop,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3186 -name: TS18,dorsal mesentery,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:3185 ! TS18,mesentery,loop,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3187 -name: TS18,vascular element,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3182 ! TS18,loop,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:3188 -name: TS18,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3174 ! TS18,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:3189 -name: TS18,associated mesenchyme,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3188 ! TS18,rest of midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:319 -name: TS12,endocardial tube,early primitive heart tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:317 ! TS12,early primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004141 ! heart tube - -[Term] -id: EMAP:3190 -name: TS18,epithelium,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3188 ! TS18,rest of midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:3191 -name: TS18,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:3188 ! TS18,rest of midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3192 -name: TS18,dorsal mesentery,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:3191 ! TS18,mesentery,rest of midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3193 -name: TS18,vascular element,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3188 ! TS18,rest of midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:3194 -name: TS18,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:2830 ! TS18,oral region,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3195 -name: TS18,oronasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0006272 ! oronasal cavity -relationship: part_of EMAP:2830 ! TS18,oral region,alimentary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006272 ! oronasal cavity -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3196 -name: TS18,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:2823 ! TS18,visceral organ -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3197 -name: TS18,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:3196 ! TS18,liver and biliary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3198 -name: TS18,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:3196 ! TS18,liver and biliary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3199 -name: TS18,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:3196 ! TS18,liver and biliary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:32 -name: TS6,epiblast -namespace: mouse_anatomy_stages -is_a: UBERON:0008780 ! inner cell mass derived epiblast -relationship: part_of EMAP:31 ! TS6,embryo -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0008780 ! inner cell mass derived epiblast -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:320 -name: TS12,cardiac muscle,early primitive heart tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:317 ! TS12,early primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004141 ! heart tube - -[Term] -id: EMAP:3200 -name: TS18,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:3196 ! TS18,liver and biliary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3201 -name: TS18,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:3200 ! TS18,hepatic duct -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3202 -name: TS18,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:3200 ! TS18,hepatic duct -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3203 -name: TS18,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:3196 ! TS18,liver and biliary system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3204 -name: TS18,parenchyma,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001280 ! liver parenchyma -relationship: part_of EMAP:3203 ! TS18,liver -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3205 -name: TS18,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:2823 ! TS18,visceral organ -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3206 -name: TS18,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:3205 ! TS18,respiratory system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3207 -name: TS18,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3206 ! TS18,lung -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3208 -name: TS18,associated mesenchyme,left lung rudiment -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:3207 ! TS18,left lung rudiment -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3209 -name: TS18,epithelium,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3207 ! TS18,left lung rudiment -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:321 -name: TS12,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:315 ! TS12,heart -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3210 -name: TS18,vascular element,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3207 ! TS18,left lung rudiment -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3211 -name: TS18,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3206 ! TS18,lung -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3212 -name: TS18,associated mesenchyme,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3211 ! TS18,right lung rudiment -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3213 -name: TS18,epithelium,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3211 ! TS18,right lung rudiment -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3214 -name: TS18,vascular element,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3211 ! TS18,right lung rudiment -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3215 -name: TS18,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:3205 ! TS18,respiratory system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3216 -name: TS18,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:3215 ! TS18,respiratory tract -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3217 -name: TS18,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:3216 ! TS18,lower,respiratory tract -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3218 -name: TS18,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:3217 ! TS18,main bronchus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3219 -name: TS18,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:3217 ! TS18,main bronchus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:322 -name: TS12,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:321 ! TS12,mesentery,heart -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3220 -name: TS18,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3217 ! TS18,main bronchus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:3221 -name: TS18,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:3216 ! TS18,lower,respiratory tract -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3222 -name: TS18,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:3221 ! TS18,trachea -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3223 -name: TS18,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:3221 ! TS18,trachea -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3224 -name: TS18,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3221 ! TS18,trachea -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:3225 -name: TS18,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0004122 ! genitourinary system -relationship: part_of EMAP:2823 ! TS18,visceral organ -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3226 -name: TS18,gonad primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0005564 ! gonad primordium -relationship: part_of EMAP:3225 ! TS18,urogenital system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005564 ! gonad primordium -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3227 -name: TS18,mesenchyme,gonad primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3226 ! TS18,gonad primordium -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:3228 -name: TS18,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3226 ! TS18,gonad primordium -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3229 -name: TS18,mesonephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000080 ! mesonephros -relationship: part_of EMAP:3225 ! TS18,urogenital system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:323 -name: TS12,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:322 ! TS12,dorsal mesocardium -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3230 -name: TS18,associated mesenchyme,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3229 ! TS18,mesonephros -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:3231 -name: TS18,non-tubular part,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3229 ! TS18,mesonephros -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:3232 -name: TS18,tubule,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3229 ! TS18,mesonephros -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000080 ! mesonephros - -[Term] -id: EMAP:3233 -name: TS18,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:3225 ! TS18,urogenital system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3234 -name: TS18,metanephric mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003220 ! metanephric mesenchyme -relationship: part_of EMAP:3233 ! TS18,metanephros -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003220 ! metanephric mesenchyme -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3235 -name: TS18,ureteric bud -namespace: mouse_anatomy_stages -is_a: UBERON:0000084 ! ureteric bud -relationship: part_of EMAP:3233 ! TS18,metanephros -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000084 ! ureteric bud -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3236 -name: TS18,nephric duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003074 ! mesonephric duct -relationship: part_of EMAP:3225 ! TS18,urogenital system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3237 -name: TS18,urogenital membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006307 ! urogenital membrane -relationship: part_of EMAP:3225 ! TS18,urogenital system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006307 ! urogenital membrane -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3238 -name: TS18,urogenital sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0000164 ! primitive urogenital sinus -relationship: part_of EMAP:3225 ! TS18,urogenital system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000164 ! primitive urogenital sinus -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3239 -name: TS18,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:3225 ! TS18,urogenital system -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:324 -name: TS12,primitive heart tube -namespace: mouse_anatomy_stages -is_a: UBERON:0005498 ! primitive heart tube -relationship: part_of EMAP:315 ! TS12,heart -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005498 ! primitive heart tube -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3240 -name: TS18,skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3241 -name: TS18,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:3240 ! TS18,skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3242 -name: TS18,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:3241 ! TS18,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3243 -name: TS18,vertebral cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3242 ! TS18,cervical region,axial skeleton -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:3244 -name: TS18,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3245 -name: TS18,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3244 ! TS18,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:3246 -name: TS18,mesenchyme derived from neural crest,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3245 ! TS18,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:3247 -name: TS18,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:3245 ! TS18,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3248 -name: TS18,somite,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0009621 ! tail somite -relationship: part_of EMAP:3247 ! TS18,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0009621 ! tail somite -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3249 -name: TS18,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:325 -name: TS12,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0004706 ! bulbus cordis -relationship: part_of EMAP:324 ! TS12,primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3250 -name: TS18,dermomyotome,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3249 ! TS18,somite 31 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3251 -name: TS18,myocoele,somite 31 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3249 ! TS18,somite 31 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3252 -name: TS18,sclerotome,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3249 ! TS18,somite 31 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3253 -name: TS18,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3254 -name: TS18,dermomyotome,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3253 ! TS18,somite 32 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3255 -name: TS18,myocoele,somite 32 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3253 ! TS18,somite 32 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3256 -name: TS18,sclerotome,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3253 ! TS18,somite 32 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3257 -name: TS18,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3258 -name: TS18,dermomyotome,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3257 ! TS18,somite 33 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3259 -name: TS18,myocoele,somite 33 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3257 ! TS18,somite 33 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:326 -name: TS12,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:325 ! TS12,bulbus cordis -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:3260 -name: TS18,sclerotome,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3257 ! TS18,somite 33 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3261 -name: TS18,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3262 -name: TS18,dermomyotome,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3261 ! TS18,somite 34 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3263 -name: TS18,myocoele,somite 34 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3261 ! TS18,somite 34 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3264 -name: TS18,sclerotome,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3261 ! TS18,somite 34 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3265 -name: TS18,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3266 -name: TS18,dermomyotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3265 ! TS18,somite 35 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3267 -name: TS18,myocoele,somite 35 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3265 ! TS18,somite 35 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3268 -name: TS18,sclerotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3265 ! TS18,somite 35 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3269 -name: TS18,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:327 -name: TS12,cardiac jelly,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:326 ! TS12,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:3270 -name: TS18,dermomyotome,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3269 ! TS18,somite 36 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3271 -name: TS18,myocoele,somite 36 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3269 ! TS18,somite 36 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3272 -name: TS18,sclerotome,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3269 ! TS18,somite 36 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3273 -name: TS18,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3274 -name: TS18,dermomyotome,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3273 ! TS18,somite 37 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3275 -name: TS18,myocoele,somite 37 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3273 ! TS18,somite 37 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3276 -name: TS18,sclerotome,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3273 ! TS18,somite 37 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3277 -name: TS18,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3278 -name: TS18,dermomyotome,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3277 ! TS18,somite 38 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3279 -name: TS18,myocoele,somite 38 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3277 ! TS18,somite 38 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:328 -name: TS12,endocardial tube,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:326 ! TS12,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:3280 -name: TS18,sclerotome,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3277 ! TS18,somite 38 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3281 -name: TS18,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3282 -name: TS18,dermomyotome,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3281 ! TS18,somite 39 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3283 -name: TS18,myocoele,somite 39 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3281 ! TS18,somite 39 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3284 -name: TS18,sclerotome,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3281 ! TS18,somite 39 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3285 -name: TS18,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3286 -name: TS18,dermomyotome,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3285 ! TS18,somite 40 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3287 -name: TS18,myocoele,somite 40 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3285 ! TS18,somite 40 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3288 -name: TS18,sclerotome,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3285 ! TS18,somite 40 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3289 -name: TS18,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:329 -name: TS12,cardiac muscle,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:326 ! TS12,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:3290 -name: TS18,dermomyotome,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3289 ! TS18,somite 41 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3291 -name: TS18,myocoele,somite 41 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3289 ! TS18,somite 41 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3292 -name: TS18,sclerotome,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3289 ! TS18,somite 41 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3293 -name: TS18,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3294 -name: TS18,dermomyotome,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3293 ! TS18,somite 42 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3295 -name: TS18,myocoele,somite 42 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3293 ! TS18,somite 42 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3296 -name: TS18,sclerotome,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3293 ! TS18,somite 42 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3297 -name: TS18,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3298 -name: TS18,dermomyotome,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3297 ! TS18,somite 43 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3299 -name: TS18,myocoele,somite 43 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3297 ! TS18,somite 43 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:33 -name: TS6,primitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008776 ! inner cell mass derived hypoblast -relationship: part_of EMAP:31 ! TS6,embryo -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:330 -name: TS12,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0006060 ! conotruncus -relationship: part_of EMAP:325 ! TS12,bulbus cordis -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006060 ! conotruncus -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3300 -name: TS18,sclerotome,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3297 ! TS18,somite 43 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3301 -name: TS18,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3302 -name: TS18,dermomyotome,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3301 ! TS18,somite 44 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3303 -name: TS18,myocoele,somite 44 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3301 ! TS18,somite 44 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3304 -name: TS18,sclerotome,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3301 ! TS18,somite 44 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3305 -name: TS18,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3248 ! TS18,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3306 -name: TS18,dermomyotome,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3305 ! TS18,somite 45 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3307 -name: TS18,myocoele,somite 45 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3305 ! TS18,somite 45 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3308 -name: TS18,sclerotome,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3305 ! TS18,somite 45 -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3309 -name: TS18,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3247 ! TS18,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:331 -name: TS12,cardiac jelly,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:330 ! TS12,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:3310 -name: TS18,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3244 ! TS18,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:3311 -name: TS18,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:3310 ! TS18,nervous system,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3312 -name: TS18,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:3311 ! TS18,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3313 -name: TS18,neural tube,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:3312 ! TS18,future spinal cord,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3314 -name: TS18,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3315 -name: TS18,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:3314 ! TS18,extraembryonic component -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3316 -name: TS18,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:3315 ! TS18,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3317 -name: TS18,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:3316 ! TS18,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3318 -name: TS18,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3317 ! TS18,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:3319 -name: TS18,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3315 ! TS18,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:332 -name: TS12,endocardial tube,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:330 ! TS12,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:3320 -name: TS18,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:3319 ! TS18,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:3321 -name: TS18,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3320 ! TS18,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:3322 -name: TS19,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3323 -name: TS19,branchial arch -namespace: mouse_anatomy_stages -is_a: UBERON:0002539 ! pharyngeal arch -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3324 -name: TS19,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0004362 ! pharyngeal arch 1 -relationship: part_of EMAP:3323 ! TS19,branchial arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3325 -name: TS19,branchial groove,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft -relationship: part_of EMAP:3324 ! TS19,1st arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3326 -name: TS19,epithelium,branchial groove,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3325 ! TS19,branchial groove,1st arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EMAP:3327 -name: TS19,branchial pouch,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007122 ! pharyngeal pouch 1 -relationship: part_of EMAP:3324 ! TS19,1st arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3328 -name: TS19,endoderm,branchial pouch,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3327 ! TS19,branchial pouch,1st arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EMAP:3329 -name: TS19,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003066 ! pharyngeal arch 2 -relationship: part_of EMAP:3323 ! TS19,branchial arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:333 -name: TS12,cardiac muscle,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:330 ! TS12,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:3330 -name: TS19,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005873 ! 2nd arch pharyngeal cleft -relationship: part_of EMAP:3329 ! TS19,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005873 ! 2nd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3331 -name: TS19,ectoderm,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:3330 ! TS19,branchial groove,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3332 -name: TS19,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009215 ! pharyngeal membrane of 2nd arch -relationship: part_of EMAP:3329 ! TS19,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009215 ! pharyngeal membrane of 2nd arch -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3333 -name: TS19,ectoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:3332 ! TS19,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3334 -name: TS19,endoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:3332 ! TS19,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3335 -name: TS19,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007123 ! pharyngeal pouch 2 -relationship: part_of EMAP:3329 ! TS19,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3336 -name: TS19,endoderm,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:3335 ! TS19,branchial pouch,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3337 -name: TS19,ectoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:3329 ! TS19,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3338 -name: TS19,endoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:3329 ! TS19,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3339 -name: TS19,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005689 ! 2nd arch mesenchyme -relationship: part_of EMAP:3329 ! TS19,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:334 -name: TS12,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006218 ! common atrial chamber -relationship: part_of EMAP:324 ! TS12,primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006218 ! common atrial chamber -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3340 -name: TS19,mesenchyme derived from head mesoderm,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:3339 ! TS19,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3341 -name: TS19,mesenchyme derived from neural crest,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -relationship: part_of EMAP:3339 ! TS19,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3342 -name: TS19,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003114 ! pharyngeal arch 3 -relationship: part_of EMAP:3323 ! TS19,branchial arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3343 -name: TS19,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005874 ! 3rd arch pharyngeal cleft -relationship: part_of EMAP:3342 ! TS19,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005874 ! 3rd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3344 -name: TS19,ectoderm,branchial groove,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:3343 ! TS19,branchial groove,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3345 -name: TS19,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009216 ! pharyngeal membrane of 3rd arch -relationship: part_of EMAP:3342 ! TS19,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009216 ! pharyngeal membrane of 3rd arch -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3346 -name: TS19,ectoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:3345 ! TS19,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3347 -name: TS19,endoderm,branchial membrane,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:3345 ! TS19,branchial membrane,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3348 -name: TS19,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007124 ! pharyngeal pouch 3 -relationship: part_of EMAP:3342 ! TS19,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3349 -name: TS19,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:3348 ! TS19,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:335 -name: TS12,cardiac jelly,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:334 ! TS12,common atrial chamber -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3350 -name: TS19,dorsal,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -relationship: part_of EMAP:3349 ! TS19,endoderm,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3351 -name: TS19,ventral,endoderm,branchial pouch,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -relationship: part_of EMAP:3349 ! TS19,endoderm,branchial pouch,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3352 -name: TS19,ectoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:3342 ! TS19,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3353 -name: TS19,endoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:3342 ! TS19,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3354 -name: TS19,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005690 ! 3rd arch mesenchyme -relationship: part_of EMAP:3342 ! TS19,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3355 -name: TS19,mesenchyme derived from head mesoderm,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:3354 ! TS19,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3356 -name: TS19,mesenchyme derived from neural crest,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -relationship: part_of EMAP:3354 ! TS19,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3357 -name: TS19,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003115 ! pharyngeal arch 4 -relationship: part_of EMAP:3323 ! TS19,branchial arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3358 -name: TS19,branchial groove,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005875 ! 4th arch pharyngeal cleft -relationship: part_of EMAP:3357 ! TS19,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005875 ! 4th arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3359 -name: TS19,ectoderm,branchial groove,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:3358 ! TS19,branchial groove,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:336 -name: TS12,endocardial tube,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:334 ! TS12,common atrial chamber -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3360 -name: TS19,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009217 ! pharyngeal membrane of 4th arch -relationship: part_of EMAP:3357 ! TS19,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009217 ! pharyngeal membrane of 4th arch -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3361 -name: TS19,ectoderm,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:3360 ! TS19,branchial membrane,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3362 -name: TS19,endoderm,branchial membrane,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:3360 ! TS19,branchial membrane,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3363 -name: TS19,branchial pouch,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007125 ! pharyngeal pouch 4 -relationship: part_of EMAP:3357 ! TS19,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3364 -name: TS19,endoderm,branchial pouch,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:3363 ! TS19,branchial pouch,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3365 -name: TS19,cervical sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3357 ! TS19,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003115 ! pharyngeal arch 4 - -[Term] -id: EMAP:3366 -name: TS19,ectoderm,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005662 ! 4th arch ectoderm -relationship: part_of EMAP:3357 ! TS19,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3367 -name: TS19,endoderm,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005666 ! 4th arch endoderm -relationship: part_of EMAP:3357 ! TS19,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3368 -name: TS19,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005691 ! 4th arch mesenchyme -relationship: part_of EMAP:3357 ! TS19,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005691 ! 4th arch mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3369 -name: TS19,mesenchyme derived from head mesoderm,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -relationship: part_of EMAP:3368 ! TS19,mesenchyme,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:337 -name: TS12,cardiac muscle,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:334 ! TS12,common atrial chamber -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:3370 -name: TS19,mesenchyme derived from neural crest,mesenchyme,4th arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010256 ! 4th arch mesenchyme from neural crest -relationship: part_of EMAP:3368 ! TS19,mesenchyme,4th arch -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010256 ! 4th arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3371 -name: TS19,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3372 -name: TS19,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:3371 ! TS19,cavities and their linings -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3373 -name: TS19,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3372 ! TS19,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3374 -name: TS19,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3373 ! TS19,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3375 -name: TS19,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:3373 ! TS19,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3376 -name: TS19,parietal,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007187 ! pericardial parietal mesothelium -relationship: part_of EMAP:3375 ! TS19,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3377 -name: TS19,visceral,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007186 ! pericardial visceral mesothelium -relationship: part_of EMAP:3375 ! TS19,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3378 -name: TS19,pericardio-peritoneal canal,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:3372 ! TS19,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3379 -name: TS19,cavity,pericardio-peritoneal canal,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:3378 ! TS19,pericardio-peritoneal canal,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:338 -name: TS12,outflow tract,primitive heart tube -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:324 ! TS12,primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3380 -name: TS19,mesothelium,pericardio-peritoneal canal,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:3378 ! TS19,pericardio-peritoneal canal,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3381 -name: TS19,parietal,mesothelium,pericardio-peritoneal canal,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -relationship: part_of EMAP:3380 ! TS19,mesothelium,pericardio-peritoneal canal,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3382 -name: TS19,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3372 ! TS19,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3383 -name: TS19,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:3382 ! TS19,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3384 -name: TS19,cavity,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005450 ! greater sac cavity -relationship: part_of EMAP:3383 ! TS19,greater sac -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3385 -name: TS19,mesothelium,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:3383 ! TS19,greater sac -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3386 -name: TS19,parietal,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3385 ! TS19,mesothelium,greater sac -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:3387 -name: TS19,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:3382 ! TS19,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3388 -name: TS19,mesothelium,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:3387 ! TS19,omental bursa -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3389 -name: TS19,parietal,mesothelium,omental bursa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3388 ! TS19,mesothelium,omental bursa -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:339 -name: TS12,cardiac jelly,outflow tract,primitive heart tube -namespace: mouse_anatomy_stages -is_a: UBERON:0005263 ! outflow tract cardiac jelly -relationship: part_of EMAP:338 ! TS12,outflow tract,primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005263 ! outflow tract cardiac jelly -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3390 -name: TS19,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3372 ! TS19,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3391 -name: TS19,cavity,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3390 ! TS19,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3392 -name: TS19,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3390 ! TS19,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3393 -name: TS19,parietal,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3392 ! TS19,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3394 -name: TS19,visceral,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3392 ! TS19,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3395 -name: TS19,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3396 -name: TS19,surface ectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:3395 ! TS19,ectoderm,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3397 -name: TS19,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3398 -name: TS19,forelimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005417 ! forelimb bud -relationship: part_of EMAP:3397 ! TS19,limb -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3399 -name: TS19,arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3398 ! TS19,forelimb bud -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:34 -name: TS6,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:340 -name: TS12,endocardial tube,outflow tract,primitive heart tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:338 ! TS12,outflow tract,primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:3400 -name: TS19,ectoderm,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003372 ! pectoral appendage bud ectoderm -relationship: part_of EMAP:3399 ! TS19,arm -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003372 ! pectoral appendage bud ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3401 -name: TS19,mesenchyme,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003413 ! pectoral appendage bud mesenchyme -relationship: part_of EMAP:3399 ! TS19,arm -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003413 ! pectoral appendage bud mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3402 -name: TS19,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006875 ! handplate -relationship: part_of EMAP:3398 ! TS19,forelimb bud -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006875 ! handplate -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3403 -name: TS19,ectoderm,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3402 ! TS19,handplate -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006875 ! handplate - -[Term] -id: EMAP:3404 -name: TS19,apical ectodermal ridge,ectoderm,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006872 ! handplate apical ectodermal ridge -relationship: part_of EMAP:3403 ! TS19,ectoderm,handplate -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006872 ! handplate apical ectodermal ridge -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3405 -name: TS19,mesenchyme,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009523 ! mesenchyme of handplate -relationship: part_of EMAP:3402 ! TS19,handplate -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009523 ! mesenchyme of handplate -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3406 -name: TS19,hindlimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005418 ! hindlimb bud -relationship: part_of EMAP:3397 ! TS19,limb -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005418 ! hindlimb bud -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3407 -name: TS19,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006871 ! footplate -relationship: part_of EMAP:3406 ! TS19,hindlimb bud -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006871 ! footplate -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3408 -name: TS19,ectoderm,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003373 ! ectoderm of footplate -relationship: part_of EMAP:3407 ! TS19,footplate -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003373 ! ectoderm of footplate -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3409 -name: TS19,apical ectodermal ridge,ectoderm,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005719 ! footplate apical ectodermal ridge -relationship: part_of EMAP:3408 ! TS19,ectoderm,footplate -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005719 ! footplate apical ectodermal ridge -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:341 -name: TS12,mesenchyme,outflow tract,primitive heart tube -namespace: mouse_anatomy_stages -relationship: part_of EMAP:338 ! TS12,outflow tract,primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:3410 -name: TS19,mesenchyme,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003328 ! mesenchyme of footplate -relationship: part_of EMAP:3407 ! TS19,footplate -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003328 ! mesenchyme of footplate -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3411 -name: TS19,leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3406 ! TS19,hindlimb bud -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005418 ! hindlimb bud - -[Term] -id: EMAP:3412 -name: TS19,ectoderm,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003371 ! pelvic appendage bud ectoderm -relationship: part_of EMAP:3411 ! TS19,leg -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003371 ! pelvic appendage bud ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3413 -name: TS19,mesenchyme,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003412 ! pelvic appendage bud mesenchyme -relationship: part_of EMAP:3411 ! TS19,leg -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003412 ! pelvic appendage bud mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3414 -name: TS19,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3415 -name: TS19,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:3414 ! TS19,mesenchyme,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3416 -name: TS19,mesenchyme derived from head mesoderm,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:3415 ! TS19,head mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3417 -name: TS19,mesenchyme derived from neural crest,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:3415 ! TS19,head mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3418 -name: TS19,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:3414 ! TS19,mesenchyme,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3419 -name: TS19,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:3418 ! TS19,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:342 -name: TS12,primitive ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006283 ! primitive ventricle of heart -relationship: part_of EMAP:324 ! TS12,primitive heart tube -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006283 ! primitive ventricle of heart -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3420 -name: TS19,mesenchyme derived from neural crest,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007214 ! mesenchyme derived from trunk neural crest -relationship: part_of EMAP:3418 ! TS19,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3421 -name: TS19,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:3418 ! TS19,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3422 -name: TS19,somite,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005598 ! trunk somite -relationship: part_of EMAP:3421 ! TS19,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3423 -name: TS19,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3422 ! TS19,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3424 -name: TS19,dermomyotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3423 ! TS19,somite 26 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3425 -name: TS19,myocoele,somite 26 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3423 ! TS19,somite 26 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3426 -name: TS19,sclerotome,somite 26 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3423 ! TS19,somite 26 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3427 -name: TS19,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3422 ! TS19,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3428 -name: TS19,dermomyotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3427 ! TS19,somite 27 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3429 -name: TS19,myocoele,somite 27 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3427 ! TS19,somite 27 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:343 -name: TS12,cardiac jelly,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:342 ! TS12,primitive ventricle -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:3430 -name: TS19,sclerotome,somite 27 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3427 ! TS19,somite 27 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3431 -name: TS19,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3422 ! TS19,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3432 -name: TS19,dermomyotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3431 ! TS19,somite 28 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3433 -name: TS19,myocoele,somite 28 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3431 ! TS19,somite 28 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3434 -name: TS19,sclerotome,somite 28 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3431 ! TS19,somite 28 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3435 -name: TS19,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3422 ! TS19,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3436 -name: TS19,dermomyotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3435 ! TS19,somite 29 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3437 -name: TS19,myocoele,somite 29 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3435 ! TS19,somite 29 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3438 -name: TS19,sclerotome,somite 29 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3435 ! TS19,somite 29 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3439 -name: TS19,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3422 ! TS19,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:344 -name: TS12,endocardial tube,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:342 ! TS12,primitive ventricle -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:3440 -name: TS19,dermomyotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3439 ! TS19,somite 30 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3441 -name: TS19,myocoele,somite 30 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3439 ! TS19,somite 30 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3442 -name: TS19,sclerotome,somite 30 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3439 ! TS19,somite 30 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:3443 -name: TS19,septum transversum -namespace: mouse_anatomy_stages -is_a: UBERON:0004161 ! septum transversum -relationship: part_of EMAP:3418 ! TS19,trunk mesenchyme -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3444 -name: TS19,non-hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3443 ! TS19,septum transversum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:3445 -name: TS19,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3446 -name: TS19,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3447 -name: TS19,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:3446 ! TS19,organ system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3448 -name: TS19,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:3447 ! TS19,visceral organ -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3449 -name: TS19,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:3448 ! TS19,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:345 -name: TS12,cardiac muscle,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:342 ! TS12,primitive ventricle -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:3450 -name: TS19,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:3449 ! TS19,gut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3451 -name: TS19,gland,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0013158 ! foregut-midgut junction gland -relationship: part_of EMAP:3450 ! TS19,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0013158 ! foregut-midgut junction gland -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3452 -name: TS19,pancreas primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003921 ! pancreas primordium -relationship: part_of EMAP:3451 ! TS19,gland,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003921 ! pancreas primordium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3453 -name: TS19,dorsal bud,pancreas primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003923 ! dorsal pancreatic bud -relationship: part_of EMAP:3452 ! TS19,pancreas primordium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003923 ! dorsal pancreatic bud -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3454 -name: TS19,ventral bud,pancreas primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003924 ! ventral pancreatic bud -relationship: part_of EMAP:3452 ! TS19,pancreas primordium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003924 ! ventral pancreatic bud -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3455 -name: TS19,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:3448 ! TS19,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3456 -name: TS19,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:3455 ! TS19,oral region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3457 -name: TS19,pituitary,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3456 ! TS19,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0010047 ! oral gland - -[Term] -id: EMAP:3458 -name: TS19,Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0005356 ! Rathke's pouch -relationship: part_of EMAP:3457 ! TS19,pituitary,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3459 -name: TS19,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:3446 ! TS19,organ system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:346 -name: TS12,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:315 ! TS12,heart -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3460 -name: TS19,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:3459 ! TS19,nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3461 -name: TS19,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:3460 ! TS19,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3462 -name: TS19,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:3461 ! TS19,brain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3463 -name: TS19,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:3462 ! TS19,forebrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3464 -name: TS19,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:3463 ! TS19,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3465 -name: TS19,pituitary,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:3464 ! TS19,gland,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3466 -name: TS19,infundibular recess of 3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006250 ! infundibular recess of 3rd ventricle -relationship: part_of EMAP:3465 ! TS19,pituitary,gland,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006250 ! infundibular recess of 3rd ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3467 -name: TS19,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:3449 ! TS19,gut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3468 -name: TS19,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:3467 ! TS19,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3469 -name: TS19,thyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:3468 ! TS19,gland,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:347 -name: TS12,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:346 ! TS12,sinus venosus -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3470 -name: TS19,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:3469 ! TS19,thyroid -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3471 -name: TS19,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:3469 ! TS19,thyroid -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3472 -name: TS19,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:3463 ! TS19,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3473 -name: TS19,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:3472 ! TS19,3rd ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3474 -name: TS19,optic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0002287 ! optic recess of third ventricle -relationship: part_of EMAP:3472 ! TS19,3rd ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3475 -name: TS19,floor plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003309 ! floor plate of diencephalon -relationship: part_of EMAP:3463 ! TS19,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3476 -name: TS19,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:3463 ! TS19,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3477 -name: TS19,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:3463 ! TS19,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3478 -name: TS19,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:3477 ! TS19,lateral wall,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3479 -name: TS19,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3477 ! TS19,lateral wall,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:348 -name: TS12,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:346 ! TS12,sinus venosus -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3480 -name: TS19,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3477 ! TS19,lateral wall,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:3481 -name: TS19,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:3463 ! TS19,diencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3482 -name: TS19,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:3462 ! TS19,forebrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3483 -name: TS19,mantle layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3482 ! TS19,telencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:3484 -name: TS19,marginal layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3482 ! TS19,telencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:3485 -name: TS19,ventricular layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3482 ! TS19,telencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:3486 -name: TS19,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:3482 ! TS19,telencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3487 -name: TS19,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:3486 ! TS19,lateral ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3488 -name: TS19,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:3461 ! TS19,brain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3489 -name: TS19,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:3488 ! TS19,hindbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:349 -name: TS12,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:307 ! TS12,cardiovascular system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3490 -name: TS19,lateral recess,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0007656 ! lateral recess of fourth ventricle -relationship: part_of EMAP:3489 ! TS19,4th ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3491 -name: TS19,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:3488 ! TS19,hindbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3492 -name: TS19,floor plate,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003310 ! floor plate of metencephalon -relationship: part_of EMAP:3491 ! TS19,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003310 ! floor plate of metencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3493 -name: TS19,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3491 ! TS19,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:3494 -name: TS19,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3493 ! TS19,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:3495 -name: TS19,cerebellum primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0013163 ! future cerebellum -relationship: part_of EMAP:3494 ! TS19,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0013163 ! future cerebellum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3496 -name: TS19,mantle layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3494 ! TS19,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:3497 -name: TS19,marginal layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3494 ! TS19,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:3498 -name: TS19,ventricular layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3494 ! TS19,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:3499 -name: TS19,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:3493 ! TS19,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:35 -name: TS6,cavities and their linings -namespace: mouse_anatomy_stages -relationship: part_of EMAP:34 ! TS6,extraembryonic component -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -relationship: part_of UBERON:0000478 ! extraembryonic structure - -[Term] -id: EMAP:350 -name: TS12,anterior cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:349 ! TS12,venous system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3500 -name: TS19,mantle layer,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3499 ! TS19,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005239 ! basal plate metencephalon - -[Term] -id: EMAP:3501 -name: TS19,marginal layer,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3499 ! TS19,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005239 ! basal plate metencephalon - -[Term] -id: EMAP:3502 -name: TS19,ventricular layer,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3499 ! TS19,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005239 ! basal plate metencephalon - -[Term] -id: EMAP:3503 -name: TS19,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3491 ! TS19,metencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:3504 -name: TS19,myelencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005290 ! myelencephalon -relationship: part_of EMAP:3488 ! TS19,hindbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005290 ! myelencephalon -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3505 -name: TS19,floor plate,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3504 ! TS19,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:3506 -name: TS19,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3504 ! TS19,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:3507 -name: TS19,alar plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3506 ! TS19,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:3508 -name: TS19,mantle layer,alar plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3507 ! TS19,alar plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:3509 -name: TS19,marginal layer,alar plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3507 ! TS19,alar plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:351 -name: TS12,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:349 ! TS12,venous system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3510 -name: TS19,ventricular layer,alar plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3507 ! TS19,alar plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:3511 -name: TS19,basal plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009579 ! myelencephalon basal plate -relationship: part_of EMAP:3506 ! TS19,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009579 ! myelencephalon basal plate -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3512 -name: TS19,mantle layer,basal plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3511 ! TS19,basal plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009579 ! myelencephalon basal plate - -[Term] -id: EMAP:3513 -name: TS19,marginal layer,basal plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3511 ! TS19,basal plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009579 ! myelencephalon basal plate - -[Term] -id: EMAP:3514 -name: TS19,ventricular layer,basal plate,lateral wall,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3511 ! TS19,basal plate,lateral wall,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009579 ! myelencephalon basal plate - -[Term] -id: EMAP:3515 -name: TS19,roof plate,myelencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3504 ! TS19,myelencephalon -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005290 ! myelencephalon - -[Term] -id: EMAP:3516 -name: TS19,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:3461 ! TS19,brain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3517 -name: TS19,floor plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003307 ! floor plate of midbrain -relationship: part_of EMAP:3516 ! TS19,midbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3518 -name: TS19,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:3516 ! TS19,midbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3519 -name: TS19,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:3518 ! TS19,lateral wall,midbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:352 -name: TS12,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:349 ! TS12,venous system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3520 -name: TS19,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3518 ! TS19,lateral wall,midbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:3521 -name: TS19,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3518 ! TS19,lateral wall,midbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:3522 -name: TS19,mesencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3516 ! TS19,midbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001891 ! midbrain - -[Term] -id: EMAP:3523 -name: TS19,roof,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3516 ! TS19,midbrain -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001891 ! midbrain - -[Term] -id: EMAP:3524 -name: TS19,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:3460 ! TS19,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3525 -name: TS19,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:3524 ! TS19,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3526 -name: TS19,floor plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003306 ! floor plate of neural tube -relationship: part_of EMAP:3525 ! TS19,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3527 -name: TS19,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3525 ! TS19,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001049 ! neural tube - -[Term] -id: EMAP:3528 -name: TS19,mantle layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004061 ! neural tube mantle layer -relationship: part_of EMAP:3527 ! TS19,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004061 ! neural tube mantle layer -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3529 -name: TS19,alar columns,mantle layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:3528 ! TS19,mantle layer,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:353 -name: TS12,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:349 ! TS12,venous system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3530 -name: TS19,basal columns,mantle layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3528 ! TS19,mantle layer,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0004061 ! neural tube mantle layer - -[Term] -id: EMAP:3531 -name: TS19,marginal layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004062 ! neural tube marginal layer -relationship: part_of EMAP:3527 ! TS19,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004062 ! neural tube marginal layer -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3532 -name: TS19,ventricular layer,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004060 ! neural tube ventricular layer -relationship: part_of EMAP:3527 ! TS19,lateral wall,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004060 ! neural tube ventricular layer -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3533 -name: TS19,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003842 ! neural tube lumen -relationship: part_of EMAP:3525 ! TS19,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3534 -name: TS19,roof plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003298 ! roof plate of neural tube -relationship: part_of EMAP:3525 ! TS19,neural tube,future spinal cord -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003298 ! roof plate of neural tube -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3535 -name: TS19,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:3460 ! TS19,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3536 -name: TS19,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:3535 ! TS19,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3537 -name: TS19,acoustic ganglion VIII -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3536 ! TS19,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001714 ! cranial ganglion - -[Term] -id: EMAP:3538 -name: TS19,facial ganglion VII -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:3536 ! TS19,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3539 -name: TS19,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:3536 ! TS19,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:354 -name: TS12,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:297 ! TS12,organ system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3540 -name: TS19,inferior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3539 ! TS19,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:3541 -name: TS19,superior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3539 ! TS19,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:3542 -name: TS19,trigeminal V -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:3536 ! TS19,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3543 -name: TS19,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:3536 ! TS19,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3544 -name: TS19,inferior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:3543 ! TS19,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3545 -name: TS19,superior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:3543 ! TS19,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3546 -name: TS19,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:3460 ! TS19,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3547 -name: TS19,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:3546 ! TS19,nerve,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3548 -name: TS19,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:3547 ! TS19,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3549 -name: TS19,cranial component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009673 ! accessory XI nerve cranial component -relationship: part_of EMAP:3548 ! TS19,accessory XI -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:355 -name: TS12,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:354 ! TS12,visceral organ -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3550 -name: TS19,spinal component,accessory XI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3548 ! TS19,accessory XI -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002019 ! accessory XI nerve - -[Term] -id: EMAP:3551 -name: TS19,glossopharyngeal IX,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001649 ! glossopharyngeal nerve -relationship: part_of EMAP:3547 ! TS19,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3552 -name: TS19,hypoglossal XII -namespace: mouse_anatomy_stages -is_a: UBERON:0001650 ! hypoglossal nerve -relationship: part_of EMAP:3547 ! TS19,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3553 -name: TS19,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:3459 ! TS19,nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3554 -name: TS19,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:3553 ! TS19,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3555 -name: TS19,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000011 ! parasympathetic nervous system -relationship: part_of EMAP:3554 ! TS19,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3556 -name: TS19,nerve,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004293 ! parasympathetic nerve -relationship: part_of EMAP:3555 ! TS19,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3557 -name: TS19,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0006308 ! vagal X nerve trunk -relationship: part_of EMAP:3556 ! TS19,nerve,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006308 ! vagal X nerve trunk -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3558 -name: TS19,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3557 ! TS19,vagal X nerve trunk -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3559 -name: TS19,recurrent laryngeal branch,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3558 ! TS19,left recurrent laryngeal branch,vagal X nerve trunk -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:356 -name: TS12,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:355 ! TS12,alimentary system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3560 -name: TS19,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -relationship: part_of EMAP:3557 ! TS19,vagal X nerve trunk -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3561 -name: TS19,recurrent laryngeal branch,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3560 ! TS19,right recurrent laryngeal branch,vagal X nerve trunk -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3562 -name: TS19,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:3554 ! TS19,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3563 -name: TS19,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:3562 ! TS19,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3564 -name: TS19,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:3563 ! TS19,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3565 -name: TS19,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:3562 ! TS19,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3566 -name: TS19,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:3553 ! TS19,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3567 -name: TS19,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3566 ! TS19,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:3568 -name: TS19,dorsal root ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:3567 ! TS19,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3569 -name: TS19,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:3566 ! TS19,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:357 -name: TS12,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:356 ! TS12,gut -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3570 -name: TS19,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:3569 ! TS19,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3571 -name: TS19,median nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001148 ! median nerve -relationship: part_of EMAP:3570 ! TS19,brachial plexus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001148 ! median nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3572 -name: TS19,radial nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001492 ! radial nerve -relationship: part_of EMAP:3570 ! TS19,brachial plexus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3573 -name: TS19,ulnar nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001494 ! ulnar nerve -relationship: part_of EMAP:3570 ! TS19,brachial plexus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3574 -name: TS19,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001780 ! spinal nerve -relationship: part_of EMAP:3566 ! TS19,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3575 -name: TS19,segmental spinal nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0005197 ! segmental spinal nerve -relationship: part_of EMAP:3574 ! TS19,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3576 -name: TS19,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:3446 ! TS19,organ system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3577 -name: TS19,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:3576 ! TS19,sensory organ -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3578 -name: TS19,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:3577 ! TS19,ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3579 -name: TS19,auditory hillocks -namespace: mouse_anatomy_stages -is_a: UBERON:0006208 ! auditory hillocks -relationship: part_of EMAP:3578 ! TS19,external ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006208 ! auditory hillocks -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:358 -name: TS12,associated mesenchyme,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:357 ! TS12,foregut diverticulum -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3580 -name: TS19,future tympanic membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:3578 ! TS19,external ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3581 -name: TS19,epithelium,future tympanic membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3580 ! TS19,future tympanic membrane -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:3582 -name: TS19,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:3577 ! TS19,ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3583 -name: TS19,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:3582 ! TS19,inner ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3584 -name: TS19,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3583 ! TS19,endolymphatic appendage -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:3585 -name: TS19,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3583 ! TS19,endolymphatic appendage -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:3586 -name: TS19,vestibular component,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001862 ! vestibular labyrinth -relationship: part_of EMAP:3582 ! TS19,inner ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3587 -name: TS19,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0001861 ! ductus reuniens -relationship: part_of EMAP:3586 ! TS19,vestibular component,inner ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3588 -name: TS19,associated mesenchyme,ductus reuniens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3587 ! TS19,ductus reuniens -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001861 ! ductus reuniens - -[Term] -id: EMAP:3589 -name: TS19,epithelium,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0003363 ! epithelium of ductus reuniens -relationship: part_of EMAP:3587 ! TS19,ductus reuniens -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:359 -name: TS12,endoderm,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:357 ! TS12,foregut diverticulum -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3590 -name: TS19,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0001854 ! saccule of membranous labyrinth -relationship: part_of EMAP:3586 ! TS19,vestibular component,inner ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3591 -name: TS19,associated mesenchyme,saccule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3590 ! TS19,saccule -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EMAP:3592 -name: TS19,epithelium,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0003242 ! epithelium of saccule -relationship: part_of EMAP:3590 ! TS19,saccule -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3593 -name: TS19,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0001853 ! utricle of membranous labyrinth -relationship: part_of EMAP:3586 ! TS19,vestibular component,inner ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3594 -name: TS19,associated mesenchyme,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3593 ! TS19,utricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EMAP:3595 -name: TS19,epithelium,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:3593 ! TS19,utricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3596 -name: TS19,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001842 ! posterior semicircular canal -relationship: part_of EMAP:3593 ! TS19,utricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3597 -name: TS19,associated mesenchyme,posterior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3596 ! TS19,posterior semicircular canal -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EMAP:3598 -name: TS19,epithelium,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal -relationship: part_of EMAP:3596 ! TS19,posterior semicircular canal -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3599 -name: TS19,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001841 ! anterior semicircular canal -relationship: part_of EMAP:3593 ! TS19,utricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:36 -name: TS6,blastocoelic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000090 ! blastocele -relationship: part_of EMAP:35 ! TS6,cavities and their linings -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0000090 ! blastocele -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:360 -name: TS12,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:356 ! TS12,gut -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3600 -name: TS19,associated mesenchyme,superior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3599 ! TS19,superior semicircular canal -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EMAP:3601 -name: TS19,epithelium,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003238 ! epithelium of superior semicircular canal -relationship: part_of EMAP:3599 ! TS19,superior semicircular canal -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3602 -name: TS19,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:3577 ! TS19,ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3603 -name: TS19,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:3602 ! TS19,middle ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3604 -name: TS19,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:3602 ! TS19,middle ear -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3605 -name: TS19,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:3576 ! TS19,sensory organ -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3606 -name: TS19,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:3605 ! TS19,eye -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3607 -name: TS19,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:3606 ! TS19,cornea -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3608 -name: TS19,hyaloid cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005606 ! hyaloid cavity -relationship: part_of EMAP:3605 ! TS19,eye -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3609 -name: TS19,hyaloid vascular plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005607 ! hyaloid vascular plexus -relationship: part_of EMAP:3608 ! TS19,hyaloid cavity -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:361 -name: TS12,associated mesenchyme,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:360 ! TS12,hindgut diverticulum -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3610 -name: TS19,lens vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0005426 ! lens vesicle -relationship: part_of EMAP:3605 ! TS19,eye -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005426 ! lens vesicle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3611 -name: TS19,anterior epithelium,lens vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3610 ! TS19,lens vesicle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005426 ! lens vesicle - -[Term] -id: EMAP:3612 -name: TS19,cavity,lens vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0005688 ! lens vesicle cavity -relationship: part_of EMAP:3610 ! TS19,lens vesicle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005688 ! lens vesicle cavity -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3613 -name: TS19,equatorial epithelium,lens vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3610 ! TS19,lens vesicle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005426 ! lens vesicle - -[Term] -id: EMAP:3614 -name: TS19,posterior epithelium,lens vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3610 ! TS19,lens vesicle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005426 ! lens vesicle - -[Term] -id: EMAP:3615 -name: TS19,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:3605 ! TS19,eye -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3616 -name: TS19,fissure,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0005412 ! optic fissure -relationship: part_of EMAP:3615 ! TS19,optic stalk -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3617 -name: TS19,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:3605 ! TS19,eye -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3618 -name: TS19,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:3605 ! TS19,eye -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3619 -name: TS19,embryonic fissure,retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3618 ! TS19,retina -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000966 ! retina - -[Term] -id: EMAP:362 -name: TS12,endoderm,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:360 ! TS12,hindgut diverticulum -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3620 -name: TS19,intraretinal space -namespace: mouse_anatomy_stages -is_a: UBERON:0006253 ! embryonic intraretinal space -relationship: part_of EMAP:3618 ! TS19,retina -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006253 ! embryonic intraretinal space -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3621 -name: TS19,neural retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:3618 ! TS19,retina -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3622 -name: TS19,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:3618 ! TS19,retina -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3623 -name: TS19,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:3576 ! TS19,sensory organ -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3624 -name: TS19,naso-lacrimal groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006266 ! nasolacrimal groove -relationship: part_of EMAP:3623 ! TS19,nose -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3625 -name: TS19,olfactory pit -namespace: mouse_anatomy_stages -is_a: UBERON:0005870 ! olfactory pit -relationship: part_of EMAP:3623 ! TS19,nose -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3626 -name: TS19,nasal epithelium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3625 ! TS19,olfactory pit -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005870 ! olfactory pit - -[Term] -id: EMAP:3627 -name: TS19,process,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0009292 ! embryonic nasal process -relationship: part_of EMAP:3623 ! TS19,nose -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3628 -name: TS19,fronto-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004066 ! frontonasal prominence -relationship: part_of EMAP:3627 ! TS19,process,nose -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3629 -name: TS19,frontal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009293 ! embryonic frontal process -relationship: part_of EMAP:3628 ! TS19,fronto-nasal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009293 ! embryonic frontal process -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:363 -name: TS12,primordial germ cells,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:360 ! TS12,hindgut diverticulum -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3630 -name: TS19,ectoderm,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3629 ! TS19,frontal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:3631 -name: TS19,mesenchyme,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3629 ! TS19,frontal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:3632 -name: TS19,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004067 ! lateral nasal prominence -relationship: part_of EMAP:3628 ! TS19,fronto-nasal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004067 ! lateral nasal prominence -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3633 -name: TS19,ectoderm,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009206 ! lateral nasal process surface ectoderm -relationship: part_of EMAP:3632 ! TS19,latero-nasal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009206 ! lateral nasal process surface ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3634 -name: TS19,mesenchyme,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009205 ! lateral nasal process mesenchyme -relationship: part_of EMAP:3632 ! TS19,latero-nasal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009205 ! lateral nasal process mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3635 -name: TS19,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004068 ! medial nasal prominence -relationship: part_of EMAP:3628 ! TS19,fronto-nasal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004068 ! medial nasal prominence -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3636 -name: TS19,ectoderm,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0005233 ! medial-nasal process ectoderm -relationship: part_of EMAP:3635 ! TS19,medial-nasal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005233 ! medial-nasal process ectoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3637 -name: TS19,mesenchyme,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009204 ! medial nasal process mesenchyme -relationship: part_of EMAP:3635 ! TS19,medial-nasal process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009204 ! medial nasal process mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3638 -name: TS19,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:3446 ! TS19,organ system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3639 -name: TS19,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:3638 ! TS19,cardiovascular system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:364 -name: TS12,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:356 ! TS12,gut -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3640 -name: TS19,basilar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001633 ! basilar artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3641 -name: TS19,branchial arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004363 ! aortic arch -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004363 ! aortic arch -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3642 -name: TS19,3rd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003120 ! aortic arch 3 -relationship: part_of EMAP:3641 ! TS19,branchial arch artery -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003120 ! aortic arch 3 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3643 -name: TS19,4th arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003121 ! aortic arch 4 -relationship: part_of EMAP:3641 ! TS19,branchial arch artery -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003121 ! aortic arch 4 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3644 -name: TS19,6th arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003123 ! aortic arch 6 -relationship: part_of EMAP:3641 ! TS19,branchial arch artery -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003123 ! aortic arch 6 -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3645 -name: TS19,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:3646 -name: TS19,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:3645 ! TS19,dorsal aorta -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3647 -name: TS19,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:3645 ! TS19,dorsal aorta -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3648 -name: TS19,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:3645 ! TS19,dorsal aorta -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3649 -name: TS19,ductus caroticus -namespace: mouse_anatomy_stages -is_a: UBERON:0010198 ! carotid duct -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010198 ! carotid duct -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:365 -name: TS12,associated mesenchyme,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009478 ! associated mesenchyme of midgut -relationship: part_of EMAP:364 ! TS12,midgut -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0009478 ! associated mesenchyme of midgut -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3650 -name: TS19,hyoid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005608 ! hyoid artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3651 -name: TS19,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005609 ! iliac artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3652 -name: TS19,common,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001191 ! common iliac artery -relationship: part_of EMAP:3651 ! TS19,iliac artery -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3653 -name: TS19,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3654 -name: TS19,maxillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001616 ! maxillary artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3655 -name: TS19,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005616 ! mesenteric artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3656 -name: TS19,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3657 -name: TS19,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3658 -name: TS19,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3659 -name: TS19,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:366 -name: TS12,endoderm,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003259 ! endoderm of midgut -relationship: part_of EMAP:364 ! TS12,midgut -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003259 ! endoderm of midgut -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3660 -name: TS19,stapedial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006345 ! stapedial artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3661 -name: TS19,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3662 -name: TS19,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:3661 ! TS19,umbilical artery -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3663 -name: TS19,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:3661 ! TS19,umbilical artery -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3664 -name: TS19,vertebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001535 ! vertebral artery -relationship: part_of EMAP:3639 ! TS19,arterial system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3665 -name: TS19,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:3638 ! TS19,cardiovascular system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3666 -name: TS19,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:3638 ! TS19,cardiovascular system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3667 -name: TS19,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:3666 ! TS19,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3668 -name: TS19,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:3666 ! TS19,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3669 -name: TS19,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:3668 ! TS19,atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:367 -name: TS12,mouth-foregut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006264 ! mouth-foregut junction -relationship: part_of EMAP:355 ! TS12,alimentary system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006264 ! mouth-foregut junction -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3670 -name: TS19,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:3669 ! TS19,interatrial septum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3671 -name: TS19,foramen primum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3670 ! TS19,septum primum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0004154 ! septum primum - -[Term] -id: EMAP:3672 -name: TS19,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002079 ! left atrium -relationship: part_of EMAP:3668 ! TS19,atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002079 ! left atrium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3673 -name: TS19,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3672 ! TS19,left atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:3674 -name: TS19,endocardial lining,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3673 ! TS19,auricular region,left atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:3675 -name: TS19,cardiac muscle,auricular region,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:3673 ! TS19,auricular region,left atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3676 -name: TS19,endocardial lining,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3672 ! TS19,left atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:3677 -name: TS19,cardiac muscle,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003380 ! cardiac muscle of left atrium -relationship: part_of EMAP:3672 ! TS19,left atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3678 -name: TS19,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002078 ! right atrium -relationship: part_of EMAP:3668 ! TS19,atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002078 ! right atrium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3679 -name: TS19,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3678 ! TS19,right atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:368 -name: TS12,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006211 ! buccopharyngeal membrane -relationship: part_of EMAP:367 ! TS12,mouth-foregut junction -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006211 ! buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3680 -name: TS19,endocardial lining,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3679 ! TS19,auricular region,right atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:3681 -name: TS19,cardiac muscle,auricular region,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:3679 ! TS19,auricular region,right atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3682 -name: TS19,endocardial lining,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3678 ! TS19,right atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:3683 -name: TS19,cardiac muscle,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003379 ! cardiac muscle of right atrium -relationship: part_of EMAP:3678 ! TS19,right atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3684 -name: TS19,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005208 ! right atrium valve -relationship: part_of EMAP:3678 ! TS19,right atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3685 -name: TS19,venous valve,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:3684 ! TS19,valve,right atrium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3686 -name: TS19,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:3666 ! TS19,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3687 -name: TS19,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:3666 ! TS19,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3688 -name: TS19,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:3687 ! TS19,mesentery,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3689 -name: TS19,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:3688 ! TS19,dorsal mesocardium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:369 -name: TS12,ectoderm,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009479 ! ectoderm of buccopharyngeal membrane -relationship: part_of EMAP:368 ! TS12,buccopharyngeal membrane -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0009479 ! ectoderm of buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3690 -name: TS19,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:3666 ! TS19,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3691 -name: TS19,aortic component,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005338 ! outflow tract aortic component -relationship: part_of EMAP:3690 ! TS19,outflow tract,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005338 ! outflow tract aortic component -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3692 -name: TS19,aortico-pulmonary spiral septum -namespace: mouse_anatomy_stages -is_a: UBERON:0006207 ! aortico-pulmonary spiral septum -relationship: part_of EMAP:3690 ! TS19,outflow tract,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3693 -name: TS19,pulmonary component,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005339 ! outflow tract pulmonary component -relationship: part_of EMAP:3690 ! TS19,outflow tract,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005339 ! outflow tract pulmonary component -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3694 -name: TS19,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:3666 ! TS19,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3695 -name: TS19,parietal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:3694 ! TS19,pericardium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3696 -name: TS19,visceral pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:3694 ! TS19,pericardium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3697 -name: TS19,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:3666 ! TS19,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3698 -name: TS19,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:3697 ! TS19,sinus venosus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3699 -name: TS19,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:3697 ! TS19,sinus venosus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:37 -name: TS6,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0008945 ! extraembryonic endoderm -relationship: part_of EMAP:34 ! TS6,extraembryonic component -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:370 -name: TS12,endoderm,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009480 ! endoderm of buccopharyngeal membrane -relationship: part_of EMAP:368 ! TS12,buccopharyngeal membrane -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0009480 ! endoderm of buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3700 -name: TS19,ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002082 ! cardiac ventricle -relationship: part_of EMAP:3666 ! TS19,heart -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3701 -name: TS19,bulbar ridge -namespace: mouse_anatomy_stages -is_a: UBERON:0005967 ! conotruncal ridge -relationship: part_of EMAP:3700 ! TS19,ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005967 ! conotruncal ridge -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3702 -name: TS19,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002094 ! interventricular septum -relationship: part_of EMAP:3700 ! TS19,ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3703 -name: TS19,endocardial lining,interventricular septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3702 ! TS19,interventricular septum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002094 ! interventricular septum - -[Term] -id: EMAP:3704 -name: TS19,cardiac muscle,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003383 ! cardiac muscle of interventricular septum -relationship: part_of EMAP:3702 ! TS19,interventricular septum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003383 ! cardiac muscle of interventricular septum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3705 -name: TS19,interventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005455 ! interventricular groove -relationship: part_of EMAP:3700 ! TS19,ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3706 -name: TS19,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002084 ! heart left ventricle -relationship: part_of EMAP:3700 ! TS19,ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3707 -name: TS19,endocardial lining,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009713 ! endocardium of left ventricle -relationship: part_of EMAP:3706 ! TS19,left ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3708 -name: TS19,cardiac muscle,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003382 ! cardiac muscle of left ventricle -relationship: part_of EMAP:3706 ! TS19,left ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3709 -name: TS19,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002080 ! heart right ventricle -relationship: part_of EMAP:3700 ! TS19,ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:371 -name: TS12,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:355 ! TS12,alimentary system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3710 -name: TS19,endocardial lining,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009712 ! endocardium of right ventricle -relationship: part_of EMAP:3709 ! TS19,right ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3711 -name: TS19,cardiac muscle,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003381 ! cardiac muscle of right ventricle -relationship: part_of EMAP:3709 ! TS19,right ventricle -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3712 -name: TS19,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:3638 ! TS19,cardiovascular system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3713 -name: TS19,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004344 ! cardinal vein -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3714 -name: TS19,anterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:3713 ! TS19,cardinal vein -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3715 -name: TS19,common,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002064 ! common cardinal vein -relationship: part_of EMAP:3713 ! TS19,cardinal vein -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3716 -name: TS19,posterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002065 ! posterior cardinal vein -relationship: part_of EMAP:3713 ! TS19,cardinal vein -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3717 -name: TS19,ductus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002083 ! ductus venosus -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:372 -name: TS12,stomatodaeum -namespace: mouse_anatomy_stages -is_a: UBERON:0000930 ! stomodeum -relationship: part_of EMAP:371 ! TS12,oral region,alimentary system -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3722 -name: TS19,marginal vein of forelimb -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:3723 -name: TS19,marginal vein of hindlimb -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:3724 -name: TS19,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005617 ! mesenteric vein -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3725 -name: TS19,portal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002017 ! portal vein -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002017 ! portal vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3726 -name: TS19,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3727 -name: TS19,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3728 -name: TS19,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3729 -name: TS19,subcardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006296 ! subcardinal vein -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006296 ! subcardinal vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:373 -name: TS12,primitive streak -namespace: mouse_anatomy_stages -is_a: UBERON:0004341 ! primitive streak -relationship: part_of EMAP:207 ! TS12,embryo -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3730 -name: TS19,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3731 -name: TS19,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:3730 ! TS19,umbilical vein -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3732 -name: TS19,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:3448 ! TS19,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3733 -name: TS19,anal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009521 ! anal membrane endodermal component -relationship: part_of EMAP:3732 ! TS19,anal region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009521 ! anal membrane endodermal component -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3734 -name: TS19,anal pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3732 ! TS19,anal region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001353 ! anal region - -[Term] -id: EMAP:3735 -name: TS19,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003286 ! foregut region of duodenum -relationship: part_of EMAP:3467 ! TS19,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003286 ! foregut region of duodenum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3736 -name: TS19,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3735 ! TS19,duodenum,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3737 -name: TS19,associated mesenchyme,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3736 ! TS19,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3738 -name: TS19,epithelium,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3736 ! TS19,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3739 -name: TS19,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3736 ! TS19,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:374 -name: TS12,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3740 -name: TS19,mesoduodenum,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:3739 ! TS19,mesentery,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3741 -name: TS19,vascular element,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3736 ! TS19,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:3742 -name: TS19,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:3467 ! TS19,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3743 -name: TS19,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3742 ! TS19,oesophagus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:3744 -name: TS19,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001976 ! epithelium of esophagus -relationship: part_of EMAP:3742 ! TS19,oesophagus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3745 -name: TS19,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:3742 ! TS19,oesophagus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3746 -name: TS19,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:3745 ! TS19,mesentery,oesophagus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3747 -name: TS19,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3742 ! TS19,oesophagus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:3748 -name: TS19,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:3467 ! TS19,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3749 -name: TS19,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3748 ! TS19,pharynx -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:375 -name: TS12,allantois -namespace: mouse_anatomy_stages -is_a: UBERON:0004340 ! allantois -relationship: part_of EMAP:374 ! TS12,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004340 ! allantois -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3750 -name: TS19,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:3748 ! TS19,pharynx -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3751 -name: TS19,hyoid cartilage pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010354 ! Reichert's cartilage pre-cartilage condensation -relationship: part_of EMAP:3748 ! TS19,pharynx -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010354 ! Reichert's cartilage pre-cartilage condensation -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3752 -name: TS19,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:3748 ! TS19,pharynx -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3753 -name: TS19,hypobranchial eminence -namespace: mouse_anatomy_stages -is_a: UBERON:0010057 ! hypopharyngeal eminence -relationship: part_of EMAP:3752 ! TS19,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010057 ! hypopharyngeal eminence -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3754 -name: TS19,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006260 ! lingual swellings -relationship: part_of EMAP:3752 ! TS19,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006260 ! lingual swellings -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3755 -name: TS19,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006757 ! lateral lingual swelling -relationship: part_of EMAP:3754 ! TS19,lingual swelling,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006757 ! lateral lingual swelling -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3756 -name: TS19,epithelium,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0009522 ! lateral lingual swelling epithelium -relationship: part_of EMAP:3755 ! TS19,lateral,lingual swelling,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009522 ! lateral lingual swelling epithelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3757 -name: TS19,mesenchyme,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3755 ! TS19,lateral,lingual swelling,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006757 ! lateral lingual swelling - -[Term] -id: EMAP:3758 -name: TS19,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006756 ! median lingual swelling -relationship: part_of EMAP:3754 ! TS19,lingual swelling,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006756 ! median lingual swelling -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3759 -name: TS19,epithelium,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3758 ! TS19,median,lingual swelling,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006756 ! median lingual swelling - -[Term] -id: EMAP:376 -name: TS12,mesenchyme,allantois -namespace: mouse_anatomy_stages -relationship: part_of EMAP:375 ! TS12,allantois -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0004340 ! allantois - -[Term] -id: EMAP:3760 -name: TS19,mesenchyme,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3758 ! TS19,median,lingual swelling,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006756 ! median lingual swelling - -[Term] -id: EMAP:3761 -name: TS19,occipital myotome -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3752 ! TS19,tongue -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:3762 -name: TS19,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3748 ! TS19,pharynx -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:3763 -name: TS19,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:3467 ! TS19,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3764 -name: TS19,associated mesenchyme,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3763 ! TS19,stomach -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:3765 -name: TS19,epithelium,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3763 ! TS19,stomach -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:3766 -name: TS19,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:3763 ! TS19,stomach -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3767 -name: TS19,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:3766 ! TS19,mesentery,stomach -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3768 -name: TS19,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:3766 ! TS19,mesentery,stomach -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3769 -name: TS19,vascular element,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3763 ! TS19,stomach -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:377 -name: TS12,amnion -namespace: mouse_anatomy_stages -is_a: UBERON:0000305 ! amnion -relationship: part_of EMAP:374 ! TS12,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000305 ! amnion -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3770 -name: TS19,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:3450 ! TS19,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3771 -name: TS19,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:3450 ! TS19,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3772 -name: TS19,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:3450 ! TS19,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3773 -name: TS19,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:3772 ! TS19,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3774 -name: TS19,ventral mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:3772 ! TS19,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3775 -name: TS19,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3450 ! TS19,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:3776 -name: TS19,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3449 ! TS19,gut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3777 -name: TS19,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3776 ! TS19,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3778 -name: TS19,associated mesenchyme,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3777 ! TS19,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3779 -name: TS19,epithelium,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3777 ! TS19,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:378 -name: TS12,ectoderm,amnion -namespace: mouse_anatomy_stages -is_a: UBERON:0003254 ! amniotic ectoderm -relationship: part_of EMAP:377 ! TS12,amnion -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003254 ! amniotic ectoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3780 -name: TS19,vascular element,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3777 ! TS19,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3781 -name: TS19,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3776 ! TS19,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3782 -name: TS19,associated mesenchyme,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3781 ! TS19,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3783 -name: TS19,epithelium,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3781 ! TS19,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3784 -name: TS19,vascular element,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3781 ! TS19,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:3785 -name: TS19,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:3449 ! TS19,gut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3786 -name: TS19,associated mesenchyme,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009503 ! associated mesenchyme of hindgut -relationship: part_of EMAP:3785 ! TS19,hindgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009503 ! associated mesenchyme of hindgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3787 -name: TS19,epithelium,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003353 ! epithelium of hindgut -relationship: part_of EMAP:3785 ! TS19,hindgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3788 -name: TS19,mesentery,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003394 ! mesentery of hindgut -relationship: part_of EMAP:3785 ! TS19,hindgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003394 ! mesentery of hindgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3789 -name: TS19,dorsal mesentery,mesentery,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3788 ! TS19,mesentery,hindgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003394 ! mesentery of hindgut - -[Term] -id: EMAP:379 -name: TS12,mesenchyme,amnion -namespace: mouse_anatomy_stages -is_a: UBERON:0003262 ! amniotic mesoderm -relationship: part_of EMAP:377 ! TS12,amnion -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003262 ! amniotic mesoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3790 -name: TS19,vascular element,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3785 ! TS19,hindgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:3791 -name: TS19,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:3449 ! TS19,gut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3792 -name: TS19,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003287 ! midgut region of duodenum -relationship: part_of EMAP:3791 ! TS19,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003287 ! midgut region of duodenum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3793 -name: TS19,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3792 ! TS19,duodenum,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:3794 -name: TS19,associated mesenchyme,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3793 ! TS19,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:3795 -name: TS19,epithelium,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3793 ! TS19,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:3796 -name: TS19,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:3793 ! TS19,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3797 -name: TS19,mesoduodenum,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:3796 ! TS19,mesentery,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3798 -name: TS19,vascular element,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3793 ! TS19,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:3799 -name: TS19,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0011698 ! midgut loop -relationship: part_of EMAP:3791 ! TS19,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0011698 ! midgut loop -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:38 -name: TS6,parietal endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008800 ! parietal endoderm -relationship: part_of EMAP:37 ! TS6,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0008800 ! parietal endoderm -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:380 -name: TS12,cavities -namespace: mouse_anatomy_stages -is_a: UBERON:0012466 ! extraembryonic cavities -relationship: part_of EMAP:374 ! TS12,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0012466 ! extraembryonic cavities -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3800 -name: TS19,associated mesenchyme,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3799 ! TS19,loop,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:3801 -name: TS19,epithelium,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3799 ! TS19,loop,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:3802 -name: TS19,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:3799 ! TS19,loop,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3803 -name: TS19,dorsal mesentery,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:3802 ! TS19,mesentery,loop,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3804 -name: TS19,vascular element,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3799 ! TS19,loop,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:3805 -name: TS19,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3791 ! TS19,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:3806 -name: TS19,associated mesenchyme,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3805 ! TS19,rest of midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:3807 -name: TS19,epithelium,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3805 ! TS19,rest of midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:3808 -name: TS19,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:3805 ! TS19,rest of midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3809 -name: TS19,dorsal mesentery,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:3808 ! TS19,mesentery,rest of midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:381 -name: TS12,amniotic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000301 ! amniotic cavity -relationship: part_of EMAP:380 ! TS12,cavities -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000301 ! amniotic cavity -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3810 -name: TS19,vascular element,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3805 ! TS19,rest of midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:3811 -name: TS19,epiglottal primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3455 ! TS19,oral region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000165 ! mouth - -[Term] -id: EMAP:3812 -name: TS19,mandibular process -namespace: mouse_anatomy_stages -is_a: UBERON:0005867 ! mandibular prominence -relationship: part_of EMAP:3455 ! TS19,oral region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005867 ! mandibular prominence -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3813 -name: TS19,mandible primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3812 ! TS19,mandibular process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005867 ! mandibular prominence - -[Term] -id: EMAP:3814 -name: TS19,mesenchyme,mandibular process -namespace: mouse_anatomy_stages -is_a: UBERON:0006905 ! mandibular process mesenchyme -relationship: part_of EMAP:3812 ! TS19,mandibular process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006905 ! mandibular process mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3815 -name: TS19,Meckel's cartilage pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006263 ! Meckel's cartilage pre-cartilage condensation -relationship: part_of EMAP:3814 ! TS19,mesenchyme,mandibular process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006263 ! Meckel's cartilage pre-cartilage condensation -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3816 -name: TS19,maxillary process -namespace: mouse_anatomy_stages -is_a: UBERON:0005868 ! maxillary prominence -relationship: part_of EMAP:3455 ! TS19,oral region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005868 ! maxillary prominence -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3817 -name: TS19,maxilla primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3816 ! TS19,maxillary process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005868 ! maxillary prominence - -[Term] -id: EMAP:3818 -name: TS19,mesenchyme,maxillary process -namespace: mouse_anatomy_stages -is_a: UBERON:0009526 ! maxillary process mesenchyme -relationship: part_of EMAP:3816 ! TS19,maxillary process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009526 ! maxillary process mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3819 -name: TS19,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005619 ! secondary palatal shelf -relationship: part_of EMAP:3816 ! TS19,maxillary process -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:382 -name: TS12,exocoelomic cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003888 ! extraembryonic coelom -relationship: part_of EMAP:380 ! TS12,cavities -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003888 ! extraembryonic coelom -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3820 -name: TS19,epithelium,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005658 ! secondary palatal shelf epithelium -relationship: part_of EMAP:3819 ! TS19,palatal shelf -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005658 ! secondary palatal shelf epithelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3821 -name: TS19,mesenchyme,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005704 ! secondary palatal shelf mesenchyme -relationship: part_of EMAP:3819 ! TS19,palatal shelf -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005704 ! secondary palatal shelf mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3822 -name: TS19,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:3455 ! TS19,oral region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3823 -name: TS19,oronasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0006272 ! oronasal cavity -relationship: part_of EMAP:3455 ! TS19,oral region,alimentary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006272 ! oronasal cavity -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3824 -name: TS19,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:3447 ! TS19,visceral organ -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3825 -name: TS19,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:3824 ! TS19,liver and biliary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3826 -name: TS19,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:3824 ! TS19,liver and biliary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3827 -name: TS19,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:3824 ! TS19,liver and biliary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3828 -name: TS19,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:3824 ! TS19,liver and biliary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3829 -name: TS19,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:3828 ! TS19,hepatic duct -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:383 -name: TS12,yolk sac cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005251 ! yolk sac cavity -relationship: part_of EMAP:380 ! TS12,cavities -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0005251 ! yolk sac cavity -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3830 -name: TS19,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:3828 ! TS19,hepatic duct -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3831 -name: TS19,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:3824 ! TS19,liver and biliary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3832 -name: TS19,hepatic sinusoids,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001281 ! hepatic sinusoid -relationship: part_of EMAP:3831 ! TS19,liver -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3833 -name: TS19,parenchyma,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001280 ! liver parenchyma -relationship: part_of EMAP:3831 ! TS19,liver -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3834 -name: TS19,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001008 ! excretory system -relationship: part_of EMAP:3447 ! TS19,visceral organ -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001008 ! excretory system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3835 -name: TS19,mesentery,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0003393 ! mesentery of urinary system -relationship: part_of EMAP:3834 ! TS19,renal/urinary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3836 -name: TS19,urogenital mesentery -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3835 ! TS19,mesentery,renal/urinary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003393 ! mesentery of urinary system - -[Term] -id: EMAP:3837 -name: TS19,mesonephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000080 ! mesonephros -relationship: part_of EMAP:3834 ! TS19,renal/urinary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3838 -name: TS19,associated mesenchyme,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3837 ! TS19,mesonephros -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3839 -name: TS19,non-tubular part,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3837 ! TS19,mesonephros -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:384 -name: TS12,chorion -namespace: mouse_anatomy_stages -is_a: UBERON:0003124 ! chorion -relationship: part_of EMAP:374 ! TS12,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003124 ! chorion -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3840 -name: TS19,tubule,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3837 ! TS19,mesonephros -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3841 -name: TS19,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:3834 ! TS19,renal/urinary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3842 -name: TS19,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3841 ! TS19,metanephros -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3843 -name: TS19,metanephric mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003220 ! metanephric mesenchyme -relationship: part_of EMAP:3841 ! TS19,metanephros -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003220 ! metanephric mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3844 -name: TS19,ureteric bud -namespace: mouse_anatomy_stages -is_a: UBERON:0000084 ! ureteric bud -relationship: part_of EMAP:3841 ! TS19,metanephros -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000084 ! ureteric bud -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3845 -name: TS19,nephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3834 ! TS19,renal/urinary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001008 ! excretory system - -[Term] -id: EMAP:3846 -name: TS19,urogenital membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006307 ! urogenital membrane -relationship: part_of EMAP:3834 ! TS19,renal/urinary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006307 ! urogenital membrane -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3847 -name: TS19,urogenital sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0000164 ! primitive urogenital sinus -relationship: part_of EMAP:3834 ! TS19,renal/urinary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000164 ! primitive urogenital sinus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3848 -name: TS19,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:3834 ! TS19,renal/urinary system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3849 -name: TS19,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000990 ! reproductive system -relationship: part_of EMAP:3447 ! TS19,visceral organ -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:385 -name: TS12,ectoderm,chorion -namespace: mouse_anatomy_stages -is_a: UBERON:0003374 ! chorionic ectoderm -relationship: part_of EMAP:384 ! TS12,chorion -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003374 ! chorionic ectoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3850 -name: TS19,genital tubercle -namespace: mouse_anatomy_stages -is_a: UBERON:0005876 ! undifferentiated genital tubercle -relationship: part_of EMAP:3849 ! TS19,reproductive system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005876 ! undifferentiated genital tubercle -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3851 -name: TS19,gonad primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0000991 ! gonad -relationship: part_of EMAP:3849 ! TS19,reproductive system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000991 ! gonad -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3852 -name: TS19,\"germinal\" epithelium,gonad primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0005890 ! gonad germinal epithelium -relationship: part_of EMAP:3851 ! TS19,gonad primordium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0005890 ! gonad germinal epithelium -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3853 -name: TS19,mesenchyme,gonad primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003855 ! gonad mesenchyme -relationship: part_of EMAP:3851 ! TS19,gonad primordium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003855 ! gonad mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3854 -name: TS19,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3851 ! TS19,gonad primordium -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000991 ! gonad - -[Term] -id: EMAP:3855 -name: TS19,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:3447 ! TS19,visceral organ -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3856 -name: TS19,arytenoid swelling pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010220 ! arytenoid pre-cartilage condensation -relationship: part_of EMAP:3855 ! TS19,respiratory system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0010220 ! arytenoid pre-cartilage condensation -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3857 -name: TS19,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:3855 ! TS19,respiratory system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3858 -name: TS19,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3857 ! TS19,lung -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3859 -name: TS19,associated mesenchyme,left lung rudiment -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:3858 ! TS19,left lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:386 -name: TS12,mesenchyme,chorion -namespace: mouse_anatomy_stages -is_a: UBERON:0003265 ! chorionic mesoderm -relationship: part_of EMAP:384 ! TS12,chorion -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003265 ! chorionic mesoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3860 -name: TS19,epithelium,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3858 ! TS19,left lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3861 -name: TS19,lobar bronchus,left lung rudiment -namespace: mouse_anatomy_stages -is_a: UBERON:0003405 ! lobar bronchus of left lung -relationship: part_of EMAP:3858 ! TS19,left lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3862 -name: TS19,associated mesenchyme,lobar bronchus,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3861 ! TS19,lobar bronchus,left lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:3863 -name: TS19,epithelium,lobar bronchus,left lung rudiment -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:3861 ! TS19,lobar bronchus,left lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3864 -name: TS19,vascular element,lobar bronchus,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3861 ! TS19,lobar bronchus,left lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:3865 -name: TS19,vascular element,left lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3858 ! TS19,left lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3866 -name: TS19,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3857 ! TS19,lung -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3867 -name: TS19,associated mesenchyme,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3866 ! TS19,right lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3868 -name: TS19,epithelium,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3866 ! TS19,right lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:3869 -name: TS19,vascular element,right lung rudiment -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3866 ! TS19,right lung rudiment -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002048 ! lung - -[Term] -id: EMAP:387 -name: TS12,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0008945 ! extraembryonic endoderm -relationship: part_of EMAP:374 ! TS12,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3870 -name: TS19,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:3855 ! TS19,respiratory system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3871 -name: TS19,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:3870 ! TS19,respiratory tract -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3872 -name: TS19,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:3871 ! TS19,lower,respiratory tract -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3873 -name: TS19,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:3872 ! TS19,main bronchus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3874 -name: TS19,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:3872 ! TS19,main bronchus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3875 -name: TS19,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3872 ! TS19,main bronchus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:3876 -name: TS19,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:3871 ! TS19,lower,respiratory tract -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3877 -name: TS19,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:3876 ! TS19,trachea -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3878 -name: TS19,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:3876 ! TS19,trachea -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3879 -name: TS19,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3876 ! TS19,trachea -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:388 -name: TS12,parietal endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008800 ! parietal endoderm -relationship: part_of EMAP:387 ! TS12,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0008800 ! parietal endoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3880 -name: TS19,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3881 -name: TS19,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:3880 ! TS19,skeleton,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3882 -name: TS19,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:3881 ! TS19,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3883 -name: TS19,vertebral cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3882 ! TS19,cervical region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:3884 -name: TS19,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:3881 ! TS19,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3885 -name: TS19,vertebral pre-cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3884 ! TS19,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:3886 -name: TS19,sclerotome condensation,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3881 ! TS19,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:3887 -name: TS19,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:3881 ! TS19,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3888 -name: TS19,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006289 ! rib pre-cartilage condensation -relationship: part_of EMAP:3887 ! TS19,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006289 ! rib pre-cartilage condensation -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3889 -name: TS19,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3887 ! TS19,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:389 -name: TS12,Reichert's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004369 ! Reichert's membrane -relationship: part_of EMAP:388 ! TS12,parietal endoderm -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004369 ! Reichert's membrane -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3890 -name: TS19,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3891 -name: TS19,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3890 ! TS19,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:3892 -name: TS19,mesenchyme derived from neural crest,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3891 ! TS19,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:3893 -name: TS19,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:3891 ! TS19,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3894 -name: TS19,somite,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0009621 ! tail somite -relationship: part_of EMAP:3893 ! TS19,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0009621 ! tail somite -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3895 -name: TS19,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3896 -name: TS19,dermomyotome,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3895 ! TS19,somite 31 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3897 -name: TS19,myocoele,somite 31 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3895 ! TS19,somite 31 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3898 -name: TS19,sclerotome,somite 31 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3895 ! TS19,somite 31 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3899 -name: TS19,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:39 -name: TS6,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:34 ! TS6,extraembryonic component -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:390 -name: TS12,visceral endoderm,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004877 ! visceral endoderm -relationship: part_of EMAP:387 ! TS12,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004877 ! visceral endoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3900 -name: TS19,dermomyotome,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3899 ! TS19,somite 32 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3901 -name: TS19,myocoele,somite 32 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3899 ! TS19,somite 32 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3902 -name: TS19,sclerotome,somite 32 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3899 ! TS19,somite 32 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3903 -name: TS19,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3904 -name: TS19,dermomyotome,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3903 ! TS19,somite 33 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3905 -name: TS19,myocoele,somite 33 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3903 ! TS19,somite 33 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3906 -name: TS19,sclerotome,somite 33 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3903 ! TS19,somite 33 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3907 -name: TS19,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3908 -name: TS19,dermomyotome,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3907 ! TS19,somite 34 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3909 -name: TS19,myocoele,somite 34 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3907 ! TS19,somite 34 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:391 -name: TS12,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:374 ! TS12,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3910 -name: TS19,sclerotome,somite 34 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3907 ! TS19,somite 34 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3911 -name: TS19,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3912 -name: TS19,dermomyotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3911 ! TS19,somite 35 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3913 -name: TS19,myocoele,somite 35 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3911 ! TS19,somite 35 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3914 -name: TS19,sclerotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3911 ! TS19,somite 35 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3915 -name: TS19,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3916 -name: TS19,dermomyotome,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3915 ! TS19,somite 36 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3917 -name: TS19,myocoele,somite 36 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3915 ! TS19,somite 36 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3918 -name: TS19,sclerotome,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3915 ! TS19,somite 36 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3919 -name: TS19,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:392 -name: TS12,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:391 ! TS12,trophectoderm -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3920 -name: TS19,dermomyotome,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3919 ! TS19,somite 37 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3921 -name: TS19,myocoele,somite 37 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3919 ! TS19,somite 37 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3922 -name: TS19,sclerotome,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3919 ! TS19,somite 37 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3923 -name: TS19,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3924 -name: TS19,dermomyotome,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3923 ! TS19,somite 38 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3925 -name: TS19,myocoele,somite 38 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3923 ! TS19,somite 38 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3926 -name: TS19,sclerotome,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3923 ! TS19,somite 38 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3927 -name: TS19,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3928 -name: TS19,dermomyotome,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3927 ! TS19,somite 39 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3929 -name: TS19,myocoele,somite 39 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3927 ! TS19,somite 39 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:393 -name: TS12,primary trophoblast giant cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:392 ! TS12,mural trophectoderm -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0006265 ! mural trophectoderm - -[Term] -id: EMAP:3930 -name: TS19,sclerotome,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3927 ! TS19,somite 39 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3931 -name: TS19,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3932 -name: TS19,dermomyotome,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3931 ! TS19,somite 40 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3933 -name: TS19,myocoele,somite 40 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3931 ! TS19,somite 40 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3934 -name: TS19,sclerotome,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3931 ! TS19,somite 40 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3935 -name: TS19,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3936 -name: TS19,dermomyotome,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3935 ! TS19,somite 41 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3937 -name: TS19,myocoele,somite 41 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3935 ! TS19,somite 41 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3938 -name: TS19,sclerotome,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3935 ! TS19,somite 41 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3939 -name: TS19,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:394 -name: TS12,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:391 ! TS12,trophectoderm -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3940 -name: TS19,dermomyotome,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3939 ! TS19,somite 42 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3941 -name: TS19,myocoele,somite 42 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3939 ! TS19,somite 42 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3942 -name: TS19,sclerotome,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3939 ! TS19,somite 42 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3943 -name: TS19,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3944 -name: TS19,dermomyotome,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3943 ! TS19,somite 43 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3945 -name: TS19,myocoele,somite 43 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3943 ! TS19,somite 43 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3946 -name: TS19,sclerotome,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3943 ! TS19,somite 43 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3947 -name: TS19,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3948 -name: TS19,dermomyotome,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3947 ! TS19,somite 44 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3949 -name: TS19,myocoele,somite 44 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3947 ! TS19,somite 44 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:395 -name: TS12,ectoplacental cone -namespace: mouse_anatomy_stages -is_a: UBERON:0004364 ! ectoplacental cone -relationship: part_of EMAP:394 ! TS12,polar trophectoderm -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0004364 ! ectoplacental cone -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3950 -name: TS19,sclerotome,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3947 ! TS19,somite 44 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3951 -name: TS19,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3952 -name: TS19,dermomyotome,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3951 ! TS19,somite 45 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3953 -name: TS19,myocoele,somite 45 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3951 ! TS19,somite 45 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3954 -name: TS19,sclerotome,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3951 ! TS19,somite 45 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3955 -name: TS19,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3956 -name: TS19,dermomyotome,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3955 ! TS19,somite 46 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3957 -name: TS19,myocoele,somite 46 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3955 ! TS19,somite 46 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3958 -name: TS19,sclerotome,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3955 ! TS19,somite 46 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3959 -name: TS19,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:396 -name: TS12,cytotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000319 ! cytotrophoblast -relationship: part_of EMAP:395 ! TS12,ectoplacental cone -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000319 ! cytotrophoblast -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3960 -name: TS19,dermomyotome,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3959 ! TS19,somite 47 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3961 -name: TS19,myocoele,somite 47 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3959 ! TS19,somite 47 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3962 -name: TS19,sclerotome,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3959 ! TS19,somite 47 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3963 -name: TS19,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3894 ! TS19,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3964 -name: TS19,dermomyotome,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3963 ! TS19,somite 48 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3965 -name: TS19,myocoele,somite 48 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:3963 ! TS19,somite 48 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3966 -name: TS19,sclerotome,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3963 ! TS19,somite 48 -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:3967 -name: TS19,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3893 ! TS19,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:3968 -name: TS19,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3890 ! TS19,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:3969 -name: TS19,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:3968 ! TS19,nervous system,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:397 -name: TS12,syncytiotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000371 ! syncytiotrophoblast -relationship: part_of EMAP:395 ! TS12,ectoplacental cone -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0000371 ! syncytiotrophoblast -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3970 -name: TS19,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:3969 ! TS19,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3971 -name: TS19,neural tube,future spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:3970 ! TS19,future spinal cord,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3972 -name: TS19,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3973 -name: TS19,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:3972 ! TS19,extraembryonic component -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3974 -name: TS19,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:3973 ! TS19,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3975 -name: TS19,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:3974 ! TS19,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3976 -name: TS19,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3975 ! TS19,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:3977 -name: TS19,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3973 ! TS19,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:3978 -name: TS19,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:3977 ! TS19,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:3979 -name: TS19,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3978 ! TS19,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:398 -name: TS12,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0001040 ! yolk sac -relationship: part_of EMAP:374 ! TS12,extraembryonic component -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0001040 ! yolk sac -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3980 -name: TS20,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3981 -name: TS20,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:3980 ! TS20,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3982 -name: TS20,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:3981 ! TS20,organ system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3983 -name: TS20,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:3982 ! TS20,visceral organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3984 -name: TS20,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:3983 ! TS20,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3985 -name: TS20,oral cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000167 ! oral cavity -relationship: part_of EMAP:3984 ! TS20,oral region,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3986 -name: TS20,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:3984 ! TS20,oral region,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3987 -name: TS20,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:3980 ! TS20,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3988 -name: TS20,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:3987 ! TS20,cavities and their linings -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3989 -name: TS20,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3988 ! TS20,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:399 -name: TS12,endoderm,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003257 ! yolk sac endoderm -relationship: part_of EMAP:398 ! TS12,yolk sac -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003257 ! yolk sac endoderm -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:3990 -name: TS20,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3989 ! TS20,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3991 -name: TS20,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:3989 ! TS20,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3992 -name: TS20,parietal,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007187 ! pericardial parietal mesothelium -relationship: part_of EMAP:3991 ! TS20,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3993 -name: TS20,visceral,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007186 ! pericardial visceral mesothelium -relationship: part_of EMAP:3991 ! TS20,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3994 -name: TS20,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:3988 ! TS20,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3995 -name: TS20,cavity,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:3994 ! TS20,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3996 -name: TS20,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:3994 ! TS20,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3997 -name: TS20,parietal,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -relationship: part_of EMAP:3996 ! TS20,mesothelium,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:3998 -name: TS20,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3988 ! TS20,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:3999 -name: TS20,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:3998 ! TS20,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4 -name: TS1,zona pellucida -namespace: mouse_anatomy_stages -is_a: UBERON:0000086 ! zona pellucida -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000003 ! Theiler stage 01 -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: exists_during MmusDv:0000003 ! Theiler stage 01 - -[Term] -id: EMAP:40 -name: TS6,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:39 ! TS6,trophectoderm -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:400 -name: TS12,mesenchyme,yolk sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003316 ! mesenchyme of yolk sac -relationship: part_of EMAP:398 ! TS12,yolk sac -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0003316 ! mesenchyme of yolk sac -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:4000 -name: TS20,cavity,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005450 ! greater sac cavity -relationship: part_of EMAP:3999 ! TS20,greater sac -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4001 -name: TS20,mesothelium,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:3999 ! TS20,greater sac -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4002 -name: TS20,parietal,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4001 ! TS20,mesothelium,greater sac -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:4003 -name: TS20,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:3998 ! TS20,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4004 -name: TS20,mesothelium,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:4003 ! TS20,omental bursa -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4005 -name: TS20,parietal,mesothelium,omental bursa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4004 ! TS20,mesothelium,omental bursa -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:4006 -name: TS20,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3988 ! TS20,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4007 -name: TS20,cavity,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4006 ! TS20,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4008 -name: TS20,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4006 ! TS20,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4009 -name: TS20,parietal,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4008 ! TS20,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:401 -name: TS12,blood island -namespace: mouse_anatomy_stages -is_a: UBERON:0003304 ! mesoderm blood island -relationship: part_of EMAP:400 ! TS12,mesenchyme,yolk sac -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:4010 -name: TS20,visceral,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4008 ! TS20,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4011 -name: TS20,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:3980 ! TS20,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4012 -name: TS20,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002102 ! forelimb -relationship: part_of EMAP:4011 ! TS20,limb -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002102 ! forelimb -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4013 -name: TS20,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0001460 ! arm -relationship: part_of EMAP:4012 ! TS20,forelimb -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001460 ! arm -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4014 -name: TS20,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001461 ! elbow -relationship: part_of EMAP:4013 ! TS20,arm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001461 ! elbow -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4015 -name: TS20,epithelium,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003229 ! epithelium of elbow -relationship: part_of EMAP:4014 ! TS20,elbow -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003229 ! epithelium of elbow -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4016 -name: TS20,mesenchyme,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003318 ! mesenchyme of elbow -relationship: part_of EMAP:4014 ! TS20,elbow -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4017 -name: TS20,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0002386 ! forelimb zeugopod -relationship: part_of EMAP:4013 ! TS20,arm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4018 -name: TS20,epithelium,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003247 ! epithelium of forearm -relationship: part_of EMAP:4017 ! TS20,forearm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003247 ! epithelium of forearm -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4019 -name: TS20,mesenchyme,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003327 ! mesenchyme of forearm -relationship: part_of EMAP:4017 ! TS20,forearm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:402 -name: TS13,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4020 -name: TS20,radius-ulna pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006287 ! radius-ulna pre-cartilage condensation -relationship: part_of EMAP:4019 ! TS20,mesenchyme,forearm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006287 ! radius-ulna pre-cartilage condensation -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4021 -name: TS20,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001467 ! shoulder -relationship: part_of EMAP:4013 ! TS20,arm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001467 ! shoulder -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4022 -name: TS20,epithelium,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003233 ! epithelium of shoulder -relationship: part_of EMAP:4021 ! TS20,shoulder -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003233 ! epithelium of shoulder -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4023 -name: TS20,mesenchyme,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003322 ! mesenchyme of shoulder -relationship: part_of EMAP:4021 ! TS20,shoulder -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4024 -name: TS20,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003822 ! forelimb stylopod -relationship: part_of EMAP:4013 ! TS20,arm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4025 -name: TS20,epithelium,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005228 ! upper arm epithelium -relationship: part_of EMAP:4024 ! TS20,upper arm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005228 ! upper arm epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4026 -name: TS20,mesenchyme,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005258 ! upper arm mesenchyme -relationship: part_of EMAP:4024 ! TS20,upper arm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4027 -name: TS20,humerus pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006246 ! humerus pre-cartilage condensation -relationship: part_of EMAP:4026 ! TS20,mesenchyme,upper arm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006246 ! humerus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4028 -name: TS20,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002398 ! manus -relationship: part_of EMAP:4012 ! TS20,forelimb -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002398 ! manus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4029 -name: TS20,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001463 ! manual digit 1 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:403 -name: TS13,branchial arch -namespace: mouse_anatomy_stages -is_a: UBERON:0002539 ! pharyngeal arch -relationship: part_of EMAP:402 ! TS13,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4030 -name: TS20,epithelium,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010690 ! manual digit 1 epithelium -relationship: part_of EMAP:4029 ! TS20,digit 1,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010690 ! manual digit 1 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4031 -name: TS20,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010564 ! manual digit 1 mesenchyme -relationship: part_of EMAP:4029 ! TS20,digit 1,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4032 -name: TS20,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003622 ! manual digit 2 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4033 -name: TS20,epithelium,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005645 ! manual digit 2 epithelium -relationship: part_of EMAP:4032 ! TS20,digit 2,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005645 ! manual digit 2 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4034 -name: TS20,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005692 ! manual digit 2 mesenchyme -relationship: part_of EMAP:4032 ! TS20,digit 2,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4035 -name: TS20,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003623 ! manual digit 3 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4036 -name: TS20,epithelium,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005646 ! manual digit 3 epithelium -relationship: part_of EMAP:4035 ! TS20,digit 3,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005646 ! manual digit 3 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4037 -name: TS20,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005693 ! manual digit 3 mesenchyme -relationship: part_of EMAP:4035 ! TS20,digit 3,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4038 -name: TS20,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003624 ! manual digit 4 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4039 -name: TS20,epithelium,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005647 ! manual digit 4 epithelium -relationship: part_of EMAP:4038 ! TS20,digit 4,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005647 ! manual digit 4 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:404 -name: TS13,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0004362 ! pharyngeal arch 1 -relationship: part_of EMAP:403 ! TS13,branchial arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4040 -name: TS20,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005694 ! manual digit 4 mesenchyme -relationship: part_of EMAP:4038 ! TS20,digit 4,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4041 -name: TS20,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003625 ! manual digit 5 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4042 -name: TS20,epithelium,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005648 ! manual digit 5 epithelium -relationship: part_of EMAP:4041 ! TS20,digit 5,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005648 ! manual digit 5 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4043 -name: TS20,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005695 ! manual digit 5 mesenchyme -relationship: part_of EMAP:4041 ! TS20,digit 5,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4044 -name: TS20,rest of epithelium,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:4045 -name: TS20,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4046 -name: TS20,epithelium,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4045 ! TS20,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:4047 -name: TS20,mesenchyme,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:4045 ! TS20,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4048 -name: TS20,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4049 -name: TS20,epithelium,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4048 ! TS20,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:405 -name: TS13,branchial groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft -relationship: part_of EMAP:404 ! TS13,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4050 -name: TS20,mesenchyme,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:4048 ! TS20,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4051 -name: TS20,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4052 -name: TS20,epithelium,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4051 ! TS20,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:4053 -name: TS20,mesenchyme,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:4051 ! TS20,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4054 -name: TS20,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4055 -name: TS20,epithelium,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4054 ! TS20,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:4056 -name: TS20,mesenchyme,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:4054 ! TS20,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4057 -name: TS20,mesenchyme,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4028 ! TS20,handplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:4058 -name: TS20,hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002103 ! hindlimb -relationship: part_of EMAP:4011 ! TS20,limb -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4059 -name: TS20,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002387 ! pes -relationship: part_of EMAP:4058 ! TS20,hindlimb -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002387 ! pes -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:406 -name: TS13,ectoderm,branchial groove -namespace: mouse_anatomy_stages -relationship: part_of EMAP:405 ! TS13,branchial groove -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EMAP:4060 -name: TS20,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003631 ! pedal digit 1 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4061 -name: TS20,epithelium,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010693 ! pedal digit 1 epithelium -relationship: part_of EMAP:4060 ! TS20,digit 1,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010693 ! pedal digit 1 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4062 -name: TS20,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010562 ! pedal digit 1 mesenchyme -relationship: part_of EMAP:4060 ! TS20,digit 1,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4063 -name: TS20,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003632 ! pedal digit 2 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4064 -name: TS20,epithelium,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005649 ! pedal digit 2 epithelium -relationship: part_of EMAP:4063 ! TS20,digit 2,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005649 ! pedal digit 2 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4065 -name: TS20,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005696 ! pedal digit 2 mesenchyme -relationship: part_of EMAP:4063 ! TS20,digit 2,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4066 -name: TS20,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003633 ! pedal digit 3 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4067 -name: TS20,epithelium,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005650 ! pedal digit 3 epithelium -relationship: part_of EMAP:4066 ! TS20,digit 3,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005650 ! pedal digit 3 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4068 -name: TS20,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005697 ! pedal digit 3 mesenchyme -relationship: part_of EMAP:4066 ! TS20,digit 3,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4069 -name: TS20,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003634 ! pedal digit 4 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:407 -name: TS13,branchial membrane,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:404 ! TS13,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4070 -name: TS20,epithelium,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005651 ! pedal digit 4 epithelium -relationship: part_of EMAP:4069 ! TS20,digit 4,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005651 ! pedal digit 4 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4071 -name: TS20,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005698 ! pedal digit 4 mesenchyme -relationship: part_of EMAP:4069 ! TS20,digit 4,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4072 -name: TS20,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003635 ! pedal digit 5 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4073 -name: TS20,epithelium,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005652 ! pedal digit 5 epithelium -relationship: part_of EMAP:4072 ! TS20,digit 5,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005652 ! pedal digit 5 epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4074 -name: TS20,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005699 ! pedal digit 5 mesenchyme -relationship: part_of EMAP:4072 ! TS20,digit 5,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4075 -name: TS20,rest of epithelium,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:4076 -name: TS20,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4077 -name: TS20,epithelium,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4076 ! TS20,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:4078 -name: TS20,mesenchyme,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:4076 ! TS20,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4079 -name: TS20,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:408 -name: TS13,ectoderm,branchial membrane,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:407 ! TS13,branchial membrane,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:4080 -name: TS20,epithelium,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4079 ! TS20,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:4081 -name: TS20,mesenchyme,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:4079 ! TS20,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4082 -name: TS20,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4083 -name: TS20,epithelium,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4082 ! TS20,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:4084 -name: TS20,mesenchyme,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:4082 ! TS20,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4085 -name: TS20,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4086 -name: TS20,epithelium,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4085 ! TS20,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:4087 -name: TS20,mesenchyme,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:4085 ! TS20,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4088 -name: TS20,mesenchyme,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4059 ! TS20,footplate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:4089 -name: TS20,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000978 ! leg -relationship: part_of EMAP:4058 ! TS20,hindlimb -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000978 ! leg -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:409 -name: TS13,endoderm,branchial membrane,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:407 ! TS13,branchial membrane,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:4090 -name: TS20,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001464 ! hip -relationship: part_of EMAP:4089 ! TS20,leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001464 ! hip -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4091 -name: TS20,epithelium,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003231 ! epithelium of hip -relationship: part_of EMAP:4090 ! TS20,hip -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003231 ! epithelium of hip -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4092 -name: TS20,mesenchyme,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003320 ! mesenchyme of hip -relationship: part_of EMAP:4090 ! TS20,hip -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4093 -name: TS20,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001465 ! knee -relationship: part_of EMAP:4089 ! TS20,leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001465 ! knee -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4094 -name: TS20,epithelium,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003232 ! epithelium of knee -relationship: part_of EMAP:4093 ! TS20,knee -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003232 ! epithelium of knee -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4095 -name: TS20,mesenchyme,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003321 ! mesenchyme of knee -relationship: part_of EMAP:4093 ! TS20,knee -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4096 -name: TS20,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003823 ! hindlimb zeugopod -relationship: part_of EMAP:4089 ! TS20,leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4097 -name: TS20,epithelium,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005229 ! lower leg epithelium -relationship: part_of EMAP:4096 ! TS20,lower leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005229 ! lower leg epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4098 -name: TS20,mesenchyme,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005259 ! lower leg mesenchyme -relationship: part_of EMAP:4096 ! TS20,lower leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4099 -name: TS20,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000376 ! hindlimb stylopod -relationship: part_of EMAP:4089 ! TS20,leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:41 -name: TS6,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:39 ! TS6,trophectoderm -relationship: exists_during MmusDv:0000010 ! Theiler stage 06 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000010 ! Theiler stage 06 - -[Term] -id: EMAP:410 -name: TS13,branchial pouch,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007122 ! pharyngeal pouch 1 -relationship: part_of EMAP:404 ! TS13,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4100 -name: TS20,epithelium,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005225 ! upper leg epithelium -relationship: part_of EMAP:4099 ! TS20,upper leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005225 ! upper leg epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4101 -name: TS20,mesenchyme,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005254 ! upper leg mesenchyme -relationship: part_of EMAP:4099 ! TS20,upper leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4102 -name: TS20,femur pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006234 ! femur pre-cartilage condensation -relationship: part_of EMAP:4101 ! TS20,mesenchyme,upper leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006234 ! femur pre-cartilage condensation -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4103 -name: TS20,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:3980 ! TS20,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4104 -name: TS20,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:4103 ! TS20,mesenchyme,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4105 -name: TS20,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:4103 ! TS20,mesenchyme,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4106 -name: TS20,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:4105 ! TS20,trunk mesenchyme -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4107 -name: TS20,septum transversum -namespace: mouse_anatomy_stages -is_a: UBERON:0004161 ! septum transversum -relationship: part_of EMAP:4105 ! TS20,trunk mesenchyme -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4108 -name: TS20,non-hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4107 ! TS20,septum transversum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:4109 -name: TS20,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:3980 ! TS20,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:411 -name: TS13,endoderm,branchial pouch,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:410 ! TS13,branchial pouch,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EMAP:4110 -name: TS20,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:3983 ! TS20,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4111 -name: TS20,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:4110 ! TS20,gut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4112 -name: TS20,gland,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0013158 ! foregut-midgut junction gland -relationship: part_of EMAP:4111 ! TS20,foregut-midgut junction -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0013158 ! foregut-midgut junction gland -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4113 -name: TS20,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001264 ! pancreas -relationship: part_of EMAP:4112 ! TS20,gland,foregut-midgut junction -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001264 ! pancreas -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4114 -name: TS20,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001150 ! body of pancreas -relationship: part_of EMAP:4113 ! TS20,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4115 -name: TS20,dorsal pancreatic duct,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:4114 ! TS20,body,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4116 -name: TS20,parenchyma,body,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4114 ! TS20,body,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001150 ! body of pancreas - -[Term] -id: EMAP:4117 -name: TS20,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001069 ! head of pancreas -relationship: part_of EMAP:4113 ! TS20,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4118 -name: TS20,parenchyma,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4117 ! TS20,head,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:4119 -name: TS20,uncinate process,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4117 ! TS20,head,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:412 -name: TS13,ectoderm,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:404 ! TS13,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:4120 -name: TS20,ventral pancreatic duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4117 ! TS20,head,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:4121 -name: TS20,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001151 ! tail of pancreas -relationship: part_of EMAP:4113 ! TS20,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4122 -name: TS20,dorsal pancreatic duct,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:4121 ! TS20,tail,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4123 -name: TS20,parenchyma,tail,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4121 ! TS20,tail,pancreas -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001151 ! tail of pancreas - -[Term] -id: EMAP:4124 -name: TS20,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:3981 ! TS20,organ system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4125 -name: TS20,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:4124 ! TS20,nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4126 -name: TS20,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:4125 ! TS20,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4127 -name: TS20,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:4126 ! TS20,brain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4128 -name: TS20,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:4127 ! TS20,forebrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4129 -name: TS20,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:413 -name: TS13,endoderm,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:404 ! TS13,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:4130 -name: TS20,pituitary -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:4129 ! TS20,gland,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4131 -name: TS20,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002196 ! adenohypophysis -relationship: part_of EMAP:4130 ! TS20,pituitary -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4132 -name: TS20,pars anterior,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0006964 ! pars distalis of adenohypophysis -relationship: part_of EMAP:4131 ! TS20,adenohypophysis -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4133 -name: TS20,pars intermedia,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis -relationship: part_of EMAP:4131 ! TS20,adenohypophysis -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4134 -name: TS20,pars tuberalis,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002433 ! pars tuberalis of adenohypophysis -relationship: part_of EMAP:4131 ! TS20,adenohypophysis -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4135 -name: TS20,remnant of Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0006377 ! remnant of Rathke's pouch -relationship: part_of EMAP:4131 ! TS20,adenohypophysis -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4136 -name: TS20,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002198 ! neurohypophysis -relationship: part_of EMAP:4130 ! TS20,pituitary -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4137 -name: TS20,infundibulum,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002434 ! pituitary stalk -relationship: part_of EMAP:4136 ! TS20,neurohypophysis -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4138 -name: TS20,median eminence,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002197 ! median eminence of neurohypophysis -relationship: part_of EMAP:4136 ! TS20,neurohypophysis -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4139 -name: TS20,pars nervosa,neurohypophysis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4136 ! TS20,neurohypophysis -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:414 -name: TS13,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010042 ! 1st arch mesenchyme -relationship: part_of EMAP:404 ! TS13,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0010042 ! 1st arch mesenchyme -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4140 -name: TS20,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:4110 ! TS20,gut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4141 -name: TS20,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:4140 ! TS20,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4142 -name: TS20,thymus primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0005562 ! thymus primordium -relationship: part_of EMAP:4141 ! TS20,gland,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005562 ! thymus primordium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4143 -name: TS20,thyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:4141 ! TS20,gland,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4144 -name: TS20,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:4143 ! TS20,thyroid -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4145 -name: TS20,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:4143 ! TS20,thyroid -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4146 -name: TS20,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0002416 ! integumental system -relationship: part_of EMAP:3981 ! TS20,organ system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002416 ! integumental system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4147 -name: TS20,skin -namespace: mouse_anatomy_stages -is_a: UBERON:0002097 ! skin of body -relationship: part_of EMAP:4146 ! TS20,integumental system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002097 ! skin of body -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4148 -name: TS20,cervical sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0006216 ! cervical sinus -relationship: part_of EMAP:4147 ! TS20,skin -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006216 ! cervical sinus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4149 -name: TS20,dermis,skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4147 ! TS20,skin -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002097 ! skin of body - -[Term] -id: EMAP:415 -name: TS13,head mesenchyme,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:414 ! TS13,mesenchyme,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4150 -name: TS20,epidermis,skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4147 ! TS20,skin -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002097 ! skin of body - -[Term] -id: EMAP:4151 -name: TS20,vibrissa -namespace: mouse_anatomy_stages -is_a: UBERON:0006378 ! vibrissa hair -relationship: part_of EMAP:4147 ! TS20,skin -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006378 ! vibrissa hair -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4152 -name: TS20,epithelium,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4151 ! TS20,vibrissa -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006378 ! vibrissa hair - -[Term] -id: EMAP:4153 -name: TS20,mesenchyme,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4151 ! TS20,vibrissa -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006378 ! vibrissa hair - -[Term] -id: EMAP:4154 -name: TS20,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4155 -name: TS20,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:4154 ! TS20,3rd ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4156 -name: TS20,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001899 ! epithalamus -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4157 -name: TS20,mantle layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013159 ! epithalamus mantle layer -relationship: part_of EMAP:4156 ! TS20,epithalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4158 -name: TS20,marginal layer,epithalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4156 ! TS20,epithalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:4159 -name: TS20,ventricular layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013160 ! epithalamus ventricular layer -relationship: part_of EMAP:4156 ! TS20,epithalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:416 -name: TS13,mesenchyme derived from head mesoderm,head mesenchyme,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:415 ! TS13,head mesenchyme,mesenchyme,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4160 -name: TS20,floor plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003309 ! floor plate of diencephalon -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4161 -name: TS20,hypothalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001898 ! hypothalamus -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4162 -name: TS20,mantle layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4161 ! TS20,hypothalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:4163 -name: TS20,marginal layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4161 ! TS20,hypothalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:4164 -name: TS20,ventricular layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4161 ! TS20,hypothalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:4165 -name: TS20,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4166 -name: TS20,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4167 -name: TS20,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:4166 ! TS20,lateral wall,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4168 -name: TS20,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4166 ! TS20,lateral wall,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:4169 -name: TS20,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4166 ! TS20,lateral wall,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:417 -name: TS13,mesenchyme derived from neural crest,head mesenchyme,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:415 ! TS13,head mesenchyme,mesenchyme,1st arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4170 -name: TS20,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4171 -name: TS20,thalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001897 ! thalamus -relationship: part_of EMAP:4128 ! TS20,diencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001897 ! thalamus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4172 -name: TS20,mantle layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4171 ! TS20,thalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:4173 -name: TS20,marginal layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4171 ! TS20,thalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:4174 -name: TS20,ventricular layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4171 ! TS20,thalamus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:4175 -name: TS20,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:4127 ! TS20,forebrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4176 -name: TS20,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0000956 ! cerebral cortex -relationship: part_of EMAP:4175 ! TS20,telencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4177 -name: TS20,mantle layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4176 ! TS20,cerebral cortex -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:4178 -name: TS20,marginal layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4176 ! TS20,cerebral cortex -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:4179 -name: TS20,ventricular layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4176 ! TS20,cerebral cortex -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:418 -name: TS13,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003066 ! pharyngeal arch 2 -relationship: part_of EMAP:403 ! TS13,branchial arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4180 -name: TS20,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:4175 ! TS20,telencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4181 -name: TS20,corpus striatum -namespace: mouse_anatomy_stages -is_a: UBERON:0000369 ! corpus striatum -relationship: part_of EMAP:4175 ! TS20,telencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4182 -name: TS20,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:4175 ! TS20,telencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4183 -name: TS20,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:4182 ! TS20,lateral ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4184 -name: TS20,mantle layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4175 ! TS20,telencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:4185 -name: TS20,marginal layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4175 ! TS20,telencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:4186 -name: TS20,ventricular layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4175 ! TS20,telencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:4187 -name: TS20,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:4126 ! TS20,brain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4188 -name: TS20,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:4187 ! TS20,hindbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4189 -name: TS20,lateral recess,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0007656 ! lateral recess of fourth ventricle -relationship: part_of EMAP:4188 ! TS20,4th ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:419 -name: TS13,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009215 ! pharyngeal membrane of 2nd arch -relationship: part_of EMAP:418 ! TS13,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009215 ! pharyngeal membrane of 2nd arch -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4190 -name: TS20,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0001896 ! medulla oblongata -relationship: part_of EMAP:4187 ! TS20,hindbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4191 -name: TS20,floor plate,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0003311 ! floor plate of medulla oblongata -relationship: part_of EMAP:4190 ! TS20,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4192 -name: TS20,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4190 ! TS20,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:4193 -name: TS20,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4192 ! TS20,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:4194 -name: TS20,mantle layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4193 ! TS20,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:4195 -name: TS20,marginal layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4193 ! TS20,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:4196 -name: TS20,ventricular layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4193 ! TS20,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:4197 -name: TS20,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0005240 ! basal plate medulla oblongata -relationship: part_of EMAP:4192 ! TS20,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4198 -name: TS20,mantle layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4197 ! TS20,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:4199 -name: TS20,marginal layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4197 ! TS20,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:42 -name: TS7,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:420 -name: TS13,endoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:419 ! TS13,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4200 -name: TS20,ventricular layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4197 ! TS20,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:4201 -name: TS20,sulcus limitans,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0009576 ! medulla oblongata sulcus limitans -relationship: part_of EMAP:4192 ! TS20,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4202 -name: TS20,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4190 ! TS20,medulla oblongata -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:4203 -name: TS20,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:4187 ! TS20,hindbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4204 -name: TS20,floor plate,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003310 ! floor plate of metencephalon -relationship: part_of EMAP:4203 ! TS20,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003310 ! floor plate of metencephalon -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4205 -name: TS20,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4203 ! TS20,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:4206 -name: TS20,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4205 ! TS20,lateral wall,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:4207 -name: TS20,cerebellum primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0013163 ! future cerebellum -relationship: part_of EMAP:4206 ! TS20,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0013163 ! future cerebellum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4208 -name: TS20,mantle layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4206 ! TS20,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:4209 -name: TS20,marginal layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4206 ! TS20,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:421 -name: TS13,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007123 ! pharyngeal pouch 2 -relationship: part_of EMAP:418 ! TS13,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4210 -name: TS20,ventricular layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4206 ! TS20,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:4211 -name: TS20,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:4205 ! TS20,lateral wall,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4212 -name: TS20,pons -namespace: mouse_anatomy_stages -is_a: UBERON:0000988 ! pons -relationship: part_of EMAP:4211 ! TS20,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000988 ! pons -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4213 -name: TS20,mantle layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4212 ! TS20,pons -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:4214 -name: TS20,marginal layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4212 ! TS20,pons -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:4215 -name: TS20,ventricular layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4212 ! TS20,pons -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:4216 -name: TS20,sulcus limitans,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009577 ! metencephalon sulcus limitans -relationship: part_of EMAP:4205 ! TS20,lateral wall,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4217 -name: TS20,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4203 ! TS20,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:4218 -name: TS20,choroid plexus,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4217 ! TS20,roof,metencephalon -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:4219 -name: TS20,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:4126 ! TS20,brain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:422 -name: TS13,endoderm,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:421 ! TS13,branchial pouch,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4220 -name: TS20,floor plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003307 ! floor plate of midbrain -relationship: part_of EMAP:4219 ! TS20,midbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4221 -name: TS20,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:4219 ! TS20,midbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4222 -name: TS20,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:4221 ! TS20,lateral wall,midbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4223 -name: TS20,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4221 ! TS20,lateral wall,midbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:4224 -name: TS20,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4221 ! TS20,lateral wall,midbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:4225 -name: TS20,mesencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4219 ! TS20,midbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001891 ! midbrain - -[Term] -id: EMAP:4226 -name: TS20,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003299 ! roof plate of midbrain -relationship: part_of EMAP:4219 ! TS20,midbrain -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4227 -name: TS20,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:4125 ! TS20,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4228 -name: TS20,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:4227 ! TS20,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4229 -name: TS20,facial VII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:4228 ! TS20,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:423 -name: TS13,ectoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:418 ! TS13,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4230 -name: TS20,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:4228 ! TS20,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4231 -name: TS20,inferior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4230 ! TS20,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:4232 -name: TS20,superior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4230 ! TS20,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:4233 -name: TS20,trigeminal V,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:4228 ! TS20,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4234 -name: TS20,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:4228 ! TS20,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4235 -name: TS20,inferior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:4234 ! TS20,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4236 -name: TS20,superior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:4234 ! TS20,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4237 -name: TS20,vestibulo-cochlear VIII ganglion complex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4228 ! TS20,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001714 ! cranial ganglion - -[Term] -id: EMAP:4238 -name: TS20,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002827 ! auditory ganglion -relationship: part_of EMAP:4228 ! TS20,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002827 ! auditory ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4239 -name: TS20,cochlear component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4238 ! TS20,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002827 ! auditory ganglion - -[Term] -id: EMAP:424 -name: TS13,endoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:418 ! TS13,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4240 -name: TS20,vestibular component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002824 ! vestibular ganglion -relationship: part_of EMAP:4238 ! TS20,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4241 -name: TS20,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:4125 ! TS20,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4242 -name: TS20,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:4241 ! TS20,nerve,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4243 -name: TS20,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:4242 ! TS20,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4244 -name: TS20,cranial component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009673 ! accessory XI nerve cranial component -relationship: part_of EMAP:4243 ! TS20,accessory XI -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4245 -name: TS20,spinal component,accessory XI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4243 ! TS20,accessory XI -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002019 ! accessory XI nerve - -[Term] -id: EMAP:4246 -name: TS20,glossopharyngeal IX,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001649 ! glossopharyngeal nerve -relationship: part_of EMAP:4242 ! TS20,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4247 -name: TS20,hypoglossal XII -namespace: mouse_anatomy_stages -is_a: UBERON:0001650 ! hypoglossal nerve -relationship: part_of EMAP:4242 ! TS20,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4248 -name: TS20,oculomotor III -namespace: mouse_anatomy_stages -is_a: UBERON:0001643 ! oculomotor nerve -relationship: part_of EMAP:4242 ! TS20,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4249 -name: TS20,optic II -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:4242 ! TS20,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:425 -name: TS13,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005689 ! 2nd arch mesenchyme -relationship: part_of EMAP:418 ! TS13,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4250 -name: TS20,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001645 ! trigeminal nerve -relationship: part_of EMAP:4242 ! TS20,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4251 -name: TS20,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:4125 ! TS20,central nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4252 -name: TS20,floor plate,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005723 ! floor plate spinal cord region -relationship: part_of EMAP:4251 ! TS20,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005723 ! floor plate spinal cord region -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4253 -name: TS20,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009582 ! spinal cord lateral wall -relationship: part_of EMAP:4251 ! TS20,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4254 -name: TS20,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009583 ! spinal cord mantle layer -relationship: part_of EMAP:4253 ! TS20,lateral wall,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009583 ! spinal cord mantle layer -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4255 -name: TS20,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:4254 ! TS20,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4256 -name: TS20,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4254 ! TS20,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:4257 -name: TS20,marginal layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4253 ! TS20,lateral wall,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009582 ! spinal cord lateral wall - -[Term] -id: EMAP:4258 -name: TS20,sulcus limitans,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009570 ! spinal cord sulcus limitans -relationship: part_of EMAP:4253 ! TS20,lateral wall,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4259 -name: TS20,ventricular layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005359 ! spinal cord ependyma -relationship: part_of EMAP:4253 ! TS20,lateral wall,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:426 -name: TS13,mesenchyme derived from head mesoderm,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:425 ! TS13,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4260 -name: TS20,roof plate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4251 ! TS20,spinal cord -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002240 ! spinal cord - -[Term] -id: EMAP:4261 -name: TS20,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:4124 ! TS20,nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4262 -name: TS20,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:4261 ! TS20,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4263 -name: TS20,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000011 ! parasympathetic nervous system -relationship: part_of EMAP:4262 ! TS20,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4264 -name: TS20,nerve,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004293 ! parasympathetic nerve -relationship: part_of EMAP:4263 ! TS20,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4265 -name: TS20,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0006308 ! vagal X nerve trunk -relationship: part_of EMAP:4264 ! TS20,nerve,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006308 ! vagal X nerve trunk -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4266 -name: TS20,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4265 ! TS20,vagal X nerve trunk -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4267 -name: TS20,recurrent laryngeal branch,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4266 ! TS20,left recurrent laryngeal branch,vagal X nerve trunk -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4268 -name: TS20,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -relationship: part_of EMAP:4265 ! TS20,vagal X nerve trunk -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4269 -name: TS20,recurrent laryngeal branch,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4268 ! TS20,right recurrent laryngeal branch,vagal X nerve trunk -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:427 -name: TS13,mesenchyme derived from neural crest,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -relationship: part_of EMAP:425 ! TS13,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4270 -name: TS20,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:4262 ! TS20,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4271 -name: TS20,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:4270 ! TS20,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4272 -name: TS20,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:4271 ! TS20,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4273 -name: TS20,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:4270 ! TS20,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4274 -name: TS20,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:4261 ! TS20,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4275 -name: TS20,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4274 ! TS20,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:4276 -name: TS20,dorsal root ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:4275 ! TS20,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4277 -name: TS20,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:4274 ! TS20,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4278 -name: TS20,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:4277 ! TS20,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4279 -name: TS20,median nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001148 ! median nerve -relationship: part_of EMAP:4278 ! TS20,brachial plexus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001148 ! median nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:428 -name: TS13,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:402 ! TS13,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4280 -name: TS20,radial nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001492 ! radial nerve -relationship: part_of EMAP:4278 ! TS20,brachial plexus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4281 -name: TS20,ulnar nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001494 ! ulnar nerve -relationship: part_of EMAP:4278 ! TS20,brachial plexus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4282 -name: TS20,lumbo-sacral plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001815 ! lumbosacral nerve plexus -relationship: part_of EMAP:4277 ! TS20,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4283 -name: TS20,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001780 ! spinal nerve -relationship: part_of EMAP:4274 ! TS20,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4284 -name: TS20,segmental spinal nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0005197 ! segmental spinal nerve -relationship: part_of EMAP:4283 ! TS20,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4285 -name: TS20,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:3981 ! TS20,organ system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4286 -name: TS20,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:4285 ! TS20,sensory organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4287 -name: TS20,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:4286 ! TS20,ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4288 -name: TS20,external auditory meatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001352 ! external acoustic meatus -relationship: part_of EMAP:4287 ! TS20,external ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4289 -name: TS20,future tympanic membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:4287 ! TS20,external ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:429 -name: TS13,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:428 ! TS13,cavities and their linings -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4290 -name: TS20,epithelium,future tympanic membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4289 ! TS20,future tympanic membrane -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:4291 -name: TS20,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001757 ! pinna -relationship: part_of EMAP:4287 ! TS20,external ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001757 ! pinna -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4292 -name: TS20,mesenchyme condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4291 ! TS20,pinna,external ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4293 -name: TS20,mesenchyme,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0003325 ! mesenchyme of pinna -relationship: part_of EMAP:4291 ! TS20,pinna,external ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4294 -name: TS20,surface epithelium,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0006938 ! pinna surface epithelium -relationship: part_of EMAP:4291 ! TS20,pinna,external ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4295 -name: TS20,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:4286 ! TS20,ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4296 -name: TS20,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:4295 ! TS20,inner ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4297 -name: TS20,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4296 ! TS20,endolymphatic appendage -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:4298 -name: TS20,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4296 ! TS20,endolymphatic appendage -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:4299 -name: TS20,endolymphatic sac -namespace: mouse_anatomy_stages -is_a: UBERON:0002223 ! endolymphatic sac -relationship: part_of EMAP:4295 ! TS20,inner ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002223 ! endolymphatic sac -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:43 -name: TS7,epiblast -namespace: mouse_anatomy_stages -is_a: UBERON:0008780 ! inner cell mass derived epiblast -relationship: part_of EMAP:42 ! TS7,embryo -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0008780 ! inner cell mass derived epiblast -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:430 -name: TS13,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:429 ! TS13,intraembryonic coelom -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4300 -name: TS20,associated mesenchyme,endolymphatic sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4299 ! TS20,endolymphatic sac -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002223 ! endolymphatic sac - -[Term] -id: EMAP:4301 -name: TS20,epithelium,endolymphatic sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003246 ! epithelium of endolymphatic sac -relationship: part_of EMAP:4299 ! TS20,endolymphatic sac -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003246 ! epithelium of endolymphatic sac -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4302 -name: TS20,otic capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0010351 ! otic capsule cartilage condensation -relationship: part_of EMAP:4295 ! TS20,inner ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010351 ! otic capsule cartilage condensation -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4303 -name: TS20,vestibular component,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001862 ! vestibular labyrinth -relationship: part_of EMAP:4295 ! TS20,inner ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4304 -name: TS20,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0001861 ! ductus reuniens -relationship: part_of EMAP:4303 ! TS20,vestibular component,inner ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4305 -name: TS20,associated mesenchyme,ductus reuniens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4304 ! TS20,ductus reuniens -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001861 ! ductus reuniens - -[Term] -id: EMAP:4306 -name: TS20,epithelium,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0003363 ! epithelium of ductus reuniens -relationship: part_of EMAP:4304 ! TS20,ductus reuniens -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4307 -name: TS20,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0001854 ! saccule of membranous labyrinth -relationship: part_of EMAP:4303 ! TS20,vestibular component,inner ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4308 -name: TS20,associated mesenchyme,saccule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4307 ! TS20,saccule -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EMAP:4309 -name: TS20,cochlea -namespace: mouse_anatomy_stages -is_a: UBERON:0001844 ! cochlea -relationship: part_of EMAP:4307 ! TS20,saccule -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001844 ! cochlea -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:431 -name: TS13,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:430 ! TS13,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4310 -name: TS20,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth -relationship: part_of EMAP:4309 ! TS20,cochlea -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4311 -name: TS20,associated mesenchyme,cochlear duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4310 ! TS20,cochlear duct -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: EMAP:4312 -name: TS20,epithelium,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003243 ! epithelium of cochlear duct -relationship: part_of EMAP:4310 ! TS20,cochlear duct -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003243 ! epithelium of cochlear duct -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4313 -name: TS20,epithelium,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0003242 ! epithelium of saccule -relationship: part_of EMAP:4307 ! TS20,saccule -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4314 -name: TS20,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0001853 ! utricle of membranous labyrinth -relationship: part_of EMAP:4303 ! TS20,vestibular component,inner ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4315 -name: TS20,associated mesenchyme,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4314 ! TS20,utricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EMAP:4316 -name: TS20,epithelium,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:4314 ! TS20,utricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4317 -name: TS20,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001842 ! posterior semicircular canal -relationship: part_of EMAP:4314 ! TS20,utricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4318 -name: TS20,associated mesenchyme,posterior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4317 ! TS20,posterior semicircular canal -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EMAP:4319 -name: TS20,epithelium,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal -relationship: part_of EMAP:4317 ! TS20,posterior semicircular canal -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:432 -name: TS13,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:430 ! TS13,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4320 -name: TS20,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001841 ! anterior semicircular canal -relationship: part_of EMAP:4314 ! TS20,utricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4321 -name: TS20,associated mesenchyme,superior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4320 ! TS20,superior semicircular canal -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EMAP:4322 -name: TS20,epithelium,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003238 ! epithelium of superior semicircular canal -relationship: part_of EMAP:4320 ! TS20,superior semicircular canal -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4323 -name: TS20,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:4286 ! TS20,ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4324 -name: TS20,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:4323 ! TS20,middle ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4325 -name: TS20,pharyngo-tympanic tube -namespace: mouse_anatomy_stages -is_a: UBERON:0002393 ! pharyngotympanic tube -relationship: part_of EMAP:4323 ! TS20,middle ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4326 -name: TS20,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:4323 ! TS20,middle ear -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4327 -name: TS20,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:4285 ! TS20,sensory organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4328 -name: TS20,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:4327 ! TS20,eye -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4329 -name: TS20,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:4328 ! TS20,cornea -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:433 -name: TS13,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:429 ! TS13,intraembryonic coelom -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4330 -name: TS20,stroma,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001777 ! substantia propria of cornea -relationship: part_of EMAP:4328 ! TS20,cornea -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4331 -name: TS20,hyaloid cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005606 ! hyaloid cavity -relationship: part_of EMAP:4327 ! TS20,eye -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4332 -name: TS20,hyaloid vascular plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005607 ! hyaloid vascular plexus -relationship: part_of EMAP:4331 ! TS20,hyaloid cavity -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4333 -name: TS20,lens vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0005426 ! lens vesicle -relationship: part_of EMAP:4327 ! TS20,eye -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005426 ! lens vesicle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4334 -name: TS20,anterior epithelium,lens vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4333 ! TS20,lens vesicle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005426 ! lens vesicle - -[Term] -id: EMAP:4335 -name: TS20,cavity,lens vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0005688 ! lens vesicle cavity -relationship: part_of EMAP:4333 ! TS20,lens vesicle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005688 ! lens vesicle cavity -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4336 -name: TS20,equatorial epithelium,lens vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4333 ! TS20,lens vesicle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005426 ! lens vesicle - -[Term] -id: EMAP:4337 -name: TS20,posterior epithelium,lens vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4333 ! TS20,lens vesicle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005426 ! lens vesicle - -[Term] -id: EMAP:4338 -name: TS20,optic chiasma -namespace: mouse_anatomy_stages -is_a: UBERON:0000959 ! optic chiasma -relationship: part_of EMAP:4327 ! TS20,eye -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4339 -name: TS20,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:4327 ! TS20,eye -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:434 -name: TS13,cavity,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:433 ! TS13,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4340 -name: TS20,fissure,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0005412 ! optic fissure -relationship: part_of EMAP:4339 ! TS20,optic stalk -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4341 -name: TS20,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:4327 ! TS20,eye -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4342 -name: TS20,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:4327 ! TS20,eye -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4343 -name: TS20,embryonic fissure,retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4342 ! TS20,retina -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000966 ! retina - -[Term] -id: EMAP:4344 -name: TS20,neural retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:4342 ! TS20,retina -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4345 -name: TS20,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:4342 ! TS20,retina -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4346 -name: TS20,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:4285 ! TS20,sensory organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4347 -name: TS20,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001707 ! nasal cavity -relationship: part_of EMAP:4346 ! TS20,nose -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4348 -name: TS20,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005384 ! nasal cavity epithelium -relationship: part_of EMAP:4347 ! TS20,nasal cavity -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4349 -name: TS20,olfactory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001997 ! olfactory epithelium -relationship: part_of EMAP:4348 ! TS20,epithelium,nasal cavity -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:435 -name: TS13,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:433 ! TS13,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4350 -name: TS20,respiratory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000171 ! respiration organ -relationship: part_of EMAP:4348 ! TS20,epithelium,nasal cavity -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4351 -name: TS20,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0001706 ! nasal septum -relationship: part_of EMAP:4346 ! TS20,nose -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4352 -name: TS20,naso-lacrimal groove -namespace: mouse_anatomy_stages -is_a: UBERON:0006266 ! nasolacrimal groove -relationship: part_of EMAP:4346 ! TS20,nose -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4353 -name: TS20,process,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0009292 ! embryonic nasal process -relationship: part_of EMAP:4346 ! TS20,nose -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4354 -name: TS20,fronto-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004066 ! frontonasal prominence -relationship: part_of EMAP:4353 ! TS20,process,nose -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4355 -name: TS20,frontal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009293 ! embryonic frontal process -relationship: part_of EMAP:4354 ! TS20,fronto-nasal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009293 ! embryonic frontal process -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4356 -name: TS20,epithelium,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4355 ! TS20,frontal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:4357 -name: TS20,mesenchyme,frontal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4355 ! TS20,frontal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009293 ! embryonic frontal process - -[Term] -id: EMAP:4358 -name: TS20,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004067 ! lateral nasal prominence -relationship: part_of EMAP:4354 ! TS20,fronto-nasal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004067 ! lateral nasal prominence -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4359 -name: TS20,epithelium,latero-nasal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4358 ! TS20,latero-nasal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0004067 ! lateral nasal prominence - -[Term] -id: EMAP:436 -name: TS13,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:429 ! TS13,intraembryonic coelom -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4360 -name: TS20,mesenchyme,latero-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009205 ! lateral nasal process mesenchyme -relationship: part_of EMAP:4358 ! TS20,latero-nasal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009205 ! lateral nasal process mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4361 -name: TS20,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0004068 ! medial nasal prominence -relationship: part_of EMAP:4354 ! TS20,fronto-nasal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004068 ! medial nasal prominence -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4362 -name: TS20,epithelium,medial-nasal process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4361 ! TS20,medial-nasal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0004068 ! medial nasal prominence - -[Term] -id: EMAP:4363 -name: TS20,mesenchyme,medial-nasal process -namespace: mouse_anatomy_stages -is_a: UBERON:0009204 ! medial nasal process mesenchyme -relationship: part_of EMAP:4361 ! TS20,medial-nasal process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009204 ! medial nasal process mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4364 -name: TS20,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002255 ! vomeronasal organ -relationship: part_of EMAP:4346 ! TS20,nose -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4365 -name: TS20,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:3981 ! TS20,organ system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4366 -name: TS20,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:4365 ! TS20,cardiovascular system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4367 -name: TS20,arch of aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001508 ! arch of aorta -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4368 -name: TS20,basilar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001633 ! basilar artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4369 -name: TS20,branchial arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004363 ! aortic arch -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004363 ! aortic arch -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:437 -name: TS13,cavity,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:436 ! TS13,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4370 -name: TS20,6th arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003123 ! aortic arch 6 -relationship: part_of EMAP:4369 ! TS20,branchial arch artery -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003123 ! aortic arch 6 -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4371 -name: TS20,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:4372 -name: TS20,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:4371 ! TS20,dorsal aorta -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4373 -name: TS20,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:4371 ! TS20,dorsal aorta -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4374 -name: TS20,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:4371 ! TS20,dorsal aorta -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4375 -name: TS20,ductus caroticus -namespace: mouse_anatomy_stages -is_a: UBERON:0010198 ! carotid duct -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010198 ! carotid duct -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4376 -name: TS20,hyoid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005608 ! hyoid artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4377 -name: TS20,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005609 ! iliac artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4378 -name: TS20,external,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001308 ! external iliac artery -relationship: part_of EMAP:4377 ! TS20,iliac artery -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4379 -name: TS20,common,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001191 ! common iliac artery -relationship: part_of EMAP:4377 ! TS20,iliac artery -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:438 -name: TS13,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0005669 ! peritoneal cavity mesothelium -relationship: part_of EMAP:436 ! TS13,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005669 ! peritoneal cavity mesothelium -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4380 -name: TS20,innominate artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001529 ! brachiocephalic artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4381 -name: TS20,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4382 -name: TS20,intersegmental artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002457 ! intersegmental artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002457 ! intersegmental artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4383 -name: TS20,maxillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001616 ! maxillary artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4384 -name: TS20,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005616 ! mesenteric artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4385 -name: TS20,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4386 -name: TS20,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4387 -name: TS20,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4388 -name: TS20,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4389 -name: TS20,stapedial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006345 ! stapedial artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:439 -name: TS13,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:402 ! TS13,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4390 -name: TS20,subclavian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001533 ! subclavian artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4391 -name: TS20,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4392 -name: TS20,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:4391 ! TS20,umbilical artery -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4393 -name: TS20,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:4391 ! TS20,umbilical artery -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4394 -name: TS20,vertebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001535 ! vertebral artery -relationship: part_of EMAP:4366 ! TS20,arterial system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4395 -name: TS20,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:4365 ! TS20,cardiovascular system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4396 -name: TS20,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:4365 ! TS20,cardiovascular system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4397 -name: TS20,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4398 -name: TS20,atrio-ventricular cushion tissue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:4399 -name: TS20,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:44 -name: TS7,primitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008776 ! inner cell mass derived hypoblast -relationship: part_of EMAP:42 ! TS7,embryo -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:440 -name: TS13,neural ectoderm,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0002346 ! neurectoderm -relationship: part_of EMAP:439 ! TS13,ectoderm,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4400 -name: TS20,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:4399 ! TS20,atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4401 -name: TS20,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:4400 ! TS20,interatrial septum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4402 -name: TS20,foramen primum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4401 ! TS20,septum primum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0004154 ! septum primum - -[Term] -id: EMAP:4403 -name: TS20,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002079 ! left atrium -relationship: part_of EMAP:4399 ! TS20,atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002079 ! left atrium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4404 -name: TS20,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4403 ! TS20,left atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:4405 -name: TS20,endocardial lining,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4404 ! TS20,auricular region,left atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:4406 -name: TS20,cardiac muscle,auricular region,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:4404 ! TS20,auricular region,left atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4407 -name: TS20,endocardial lining,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4403 ! TS20,left atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:4408 -name: TS20,cardiac muscle,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003380 ! cardiac muscle of left atrium -relationship: part_of EMAP:4403 ! TS20,left atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4409 -name: TS20,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002078 ! right atrium -relationship: part_of EMAP:4399 ! TS20,atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002078 ! right atrium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:441 -name: TS13,future brain -namespace: mouse_anatomy_stages -is_a: UBERON:0006238 ! future brain -relationship: part_of EMAP:440 ! TS13,neural ectoderm,ectoderm,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006238 ! future brain -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4410 -name: TS20,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4409 ! TS20,right atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:4411 -name: TS20,endocardial lining,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4410 ! TS20,auricular region,right atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:4412 -name: TS20,cardiac muscle,auricular region,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:4410 ! TS20,auricular region,right atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4413 -name: TS20,endocardial lining,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4409 ! TS20,right atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:4414 -name: TS20,cardiac muscle,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003379 ! cardiac muscle of right atrium -relationship: part_of EMAP:4409 ! TS20,right atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4415 -name: TS20,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005208 ! right atrium valve -relationship: part_of EMAP:4409 ! TS20,right atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4416 -name: TS20,venous valve,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:4415 ! TS20,valve,right atrium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4417 -name: TS20,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4418 -name: TS20,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:4417 ! TS20,mesentery,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4419 -name: TS20,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:4418 ! TS20,dorsal mesocardium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:442 -name: TS13,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:441 ! TS13,future brain -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:4420 -name: TS20,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4421 -name: TS20,aortic component,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005338 ! outflow tract aortic component -relationship: part_of EMAP:4420 ! TS20,outflow tract,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005338 ! outflow tract aortic component -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4422 -name: TS20,aortico-pulmonary spiral septum -namespace: mouse_anatomy_stages -is_a: UBERON:0006207 ! aortico-pulmonary spiral septum -relationship: part_of EMAP:4420 ! TS20,outflow tract,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4423 -name: TS20,pulmonary component,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005339 ! outflow tract pulmonary component -relationship: part_of EMAP:4420 ! TS20,outflow tract,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005339 ! outflow tract pulmonary component -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4424 -name: TS20,proximal part,pulmonary component,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4423 ! TS20,pulmonary component,outflow tract,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005339 ! outflow tract pulmonary component - -[Term] -id: EMAP:4425 -name: TS20,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4426 -name: TS20,parietal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:4425 ! TS20,pericardium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4427 -name: TS20,visceral pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:4425 ! TS20,pericardium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4428 -name: TS20,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4429 -name: TS20,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:4428 ! TS20,sinus venosus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:443 -name: TS13,floor plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:442 ! TS13,future midbrain -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:4430 -name: TS20,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:4428 ! TS20,sinus venosus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4431 -name: TS20,ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002082 ! cardiac ventricle -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4432 -name: TS20,interventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005455 ! interventricular groove -relationship: part_of EMAP:4431 ! TS20,ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4433 -name: TS20,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002094 ! interventricular septum -relationship: part_of EMAP:4431 ! TS20,ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4434 -name: TS20,endocardial lining,interventricular septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4433 ! TS20,interventricular septum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002094 ! interventricular septum - -[Term] -id: EMAP:4435 -name: TS20,cardiac muscle,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003383 ! cardiac muscle of interventricular septum -relationship: part_of EMAP:4433 ! TS20,interventricular septum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003383 ! cardiac muscle of interventricular septum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4436 -name: TS20,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002084 ! heart left ventricle -relationship: part_of EMAP:4431 ! TS20,ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4437 -name: TS20,endocardial lining,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009713 ! endocardium of left ventricle -relationship: part_of EMAP:4436 ! TS20,left ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4438 -name: TS20,cardiac muscle,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003382 ! cardiac muscle of left ventricle -relationship: part_of EMAP:4436 ! TS20,left ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4439 -name: TS20,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002080 ! heart right ventricle -relationship: part_of EMAP:4431 ! TS20,ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:444 -name: TS13,neural fold,future midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:442 ! TS13,future midbrain -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4440 -name: TS20,endocardial lining,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009712 ! endocardium of right ventricle -relationship: part_of EMAP:4439 ! TS20,right ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4441 -name: TS20,cardiac muscle,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003381 ! cardiac muscle of right ventricle -relationship: part_of EMAP:4439 ! TS20,right ventricle -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4442 -name: TS20,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:4365 ! TS20,cardiovascular system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4443 -name: TS20,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004344 ! cardinal vein -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4444 -name: TS20,anterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:4443 ! TS20,cardinal vein -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4445 -name: TS20,common,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002064 ! common cardinal vein -relationship: part_of EMAP:4443 ! TS20,cardinal vein -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4446 -name: TS20,ductus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002083 ! ductus venosus -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4449 -name: TS20,internal jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001586 ! internal jugular vein -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:445 -name: TS13,neural crest,neural fold,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:444 ! TS13,neural fold,future midbrain -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4450 -name: TS20,marginal vein of forelimb -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:4451 -name: TS20,marginal vein of hindlimb -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:4452 -name: TS20,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005617 ! mesenteric vein -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4453 -name: TS20,portal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002017 ! portal vein -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002017 ! portal vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4454 -name: TS20,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4455 -name: TS20,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4456 -name: TS20,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4457 -name: TS20,subcardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006296 ! subcardinal vein -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006296 ! subcardinal vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4458 -name: TS20,subclavian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001587 ! subclavian vein -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4459 -name: TS20,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:446 -name: TS13,roof plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:442 ! TS13,future midbrain -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:4460 -name: TS20,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:4459 ! TS20,umbilical vein -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4461 -name: TS20,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:3983 ! TS20,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4462 -name: TS20,anal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009521 ! anal membrane endodermal component -relationship: part_of EMAP:4461 ! TS20,anal region,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009521 ! anal membrane endodermal component -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4463 -name: TS20,anal pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4461 ! TS20,anal region,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001353 ! anal region - -[Term] -id: EMAP:4464 -name: TS20,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003286 ! foregut region of duodenum -relationship: part_of EMAP:4140 ! TS20,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003286 ! foregut region of duodenum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4465 -name: TS20,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4464 ! TS20,duodenum,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:4466 -name: TS20,associated mesenchyme,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4465 ! TS20,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:4467 -name: TS20,epithelium,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4465 ! TS20,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:4468 -name: TS20,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4465 ! TS20,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:4469 -name: TS20,mesoduodenum,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:4468 ! TS20,mesentery,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:447 -name: TS13,future prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:441 ! TS13,future brain -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:4470 -name: TS20,vascular element,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4465 ! TS20,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:4471 -name: TS20,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:4140 ! TS20,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4472 -name: TS20,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4471 ! TS20,oesophagus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:4473 -name: TS20,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001976 ! epithelium of esophagus -relationship: part_of EMAP:4471 ! TS20,oesophagus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4474 -name: TS20,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:4471 ! TS20,oesophagus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4475 -name: TS20,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:4474 ! TS20,mesentery,oesophagus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4476 -name: TS20,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4471 ! TS20,oesophagus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:4477 -name: TS20,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:4140 ! TS20,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4478 -name: TS20,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4477 ! TS20,pharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:4479 -name: TS20,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:4477 ! TS20,pharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:448 -name: TS13,floor plate,future prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:447 ! TS13,future prosencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:4480 -name: TS20,hyoid cartilage cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0004368 ! Reichert's cartilage -relationship: part_of EMAP:4477 ! TS20,pharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004368 ! Reichert's cartilage -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4481 -name: TS20,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:4477 ! TS20,pharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4482 -name: TS20,hypobranchial eminence -namespace: mouse_anatomy_stages -is_a: UBERON:0010057 ! hypopharyngeal eminence -relationship: part_of EMAP:4481 ! TS20,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010057 ! hypopharyngeal eminence -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4483 -name: TS20,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006260 ! lingual swellings -relationship: part_of EMAP:4481 ! TS20,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006260 ! lingual swellings -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4484 -name: TS20,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006757 ! lateral lingual swelling -relationship: part_of EMAP:4483 ! TS20,lingual swelling,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006757 ! lateral lingual swelling -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4485 -name: TS20,epithelium,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0009522 ! lateral lingual swelling epithelium -relationship: part_of EMAP:4484 ! TS20,lateral,lingual swelling,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009522 ! lateral lingual swelling epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4486 -name: TS20,mesenchyme,lateral,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4484 ! TS20,lateral,lingual swelling,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006757 ! lateral lingual swelling - -[Term] -id: EMAP:4487 -name: TS20,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006756 ! median lingual swelling -relationship: part_of EMAP:4483 ! TS20,lingual swelling,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006756 ! median lingual swelling -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4488 -name: TS20,epithelium,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4487 ! TS20,median,lingual swelling,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006756 ! median lingual swelling - -[Term] -id: EMAP:4489 -name: TS20,mesenchyme,median,lingual swelling,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4487 ! TS20,median,lingual swelling,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006756 ! median lingual swelling - -[Term] -id: EMAP:449 -name: TS13,neural fold,future prosencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:447 ! TS13,future prosencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4490 -name: TS20,occipital myotome -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4481 ! TS20,tongue -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:4491 -name: TS20,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4477 ! TS20,pharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:4492 -name: TS20,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:4140 ! TS20,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4493 -name: TS20,associated mesenchyme,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4492 ! TS20,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:4494 -name: TS20,epithelium,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4492 ! TS20,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:4495 -name: TS20,glandular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0006924 ! stomach glandular epithelium -relationship: part_of EMAP:4492 ! TS20,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006924 ! stomach glandular epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4496 -name: TS20,associated mesenchyme,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4495 ! TS20,glandular region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:4497 -name: TS20,epithelium,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4495 ! TS20,glandular region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:4498 -name: TS20,vascular element,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4495 ! TS20,glandular region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:4499 -name: TS20,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:4492 ! TS20,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:45 -name: TS7,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:450 -name: TS13,neural crest,neural fold,future prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:449 ! TS13,neural fold,future prosencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4500 -name: TS20,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:4499 ! TS20,mesentery,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4501 -name: TS20,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:4499 ! TS20,mesentery,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4502 -name: TS20,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4492 ! TS20,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:4503 -name: TS20,associated mesenchyme,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4502 ! TS20,proventricular region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:4504 -name: TS20,epithelium,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4502 ! TS20,proventricular region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:4505 -name: TS20,vascular element,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4502 ! TS20,proventricular region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:4506 -name: TS20,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0001166 ! pylorus -relationship: part_of EMAP:4492 ! TS20,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001166 ! pylorus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4507 -name: TS20,associated mesenchyme,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4506 ! TS20,pyloric region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:4508 -name: TS20,epithelium,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0005637 ! pyloric region epithelium -relationship: part_of EMAP:4506 ! TS20,pyloric region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005637 ! pyloric region epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4509 -name: TS20,vascular element,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4506 ! TS20,pyloric region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:451 -name: TS13,future rhombencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001892 ! rhombomere -relationship: part_of EMAP:441 ! TS13,future brain -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4510 -name: TS20,vascular element,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4492 ! TS20,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:4511 -name: TS20,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:4111 ! TS20,foregut-midgut junction -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4512 -name: TS20,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:4111 ! TS20,foregut-midgut junction -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4513 -name: TS20,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:4111 ! TS20,foregut-midgut junction -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4514 -name: TS20,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:4513 ! TS20,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4515 -name: TS20,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4111 ! TS20,foregut-midgut junction -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:4516 -name: TS20,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4110 ! TS20,gut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:4517 -name: TS20,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4516 ! TS20,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:4518 -name: TS20,associated mesenchyme,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4517 ! TS20,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:4519 -name: TS20,epithelium,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4517 ! TS20,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:452 -name: TS13,anterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:4520 -name: TS20,vascular element,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4517 ! TS20,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:4521 -name: TS20,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4516 ! TS20,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:4522 -name: TS20,associated mesenchyme,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4521 ! TS20,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:4523 -name: TS20,epithelium,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4521 ! TS20,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:4524 -name: TS20,vascular element,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4521 ! TS20,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:4525 -name: TS20,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:4110 ! TS20,gut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4526 -name: TS20,associated mesenchyme,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009503 ! associated mesenchyme of hindgut -relationship: part_of EMAP:4525 ! TS20,hindgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009503 ! associated mesenchyme of hindgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4527 -name: TS20,epithelium,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003353 ! epithelium of hindgut -relationship: part_of EMAP:4525 ! TS20,hindgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4528 -name: TS20,mesentery,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003394 ! mesentery of hindgut -relationship: part_of EMAP:4525 ! TS20,hindgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003394 ! mesentery of hindgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4529 -name: TS20,dorsal mesentery,mesentery,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4528 ! TS20,mesentery,hindgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003394 ! mesentery of hindgut - -[Term] -id: EMAP:453 -name: TS13,floor plate,anterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:452 ! TS13,anterior pro-rhombomere -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:4530 -name: TS20,vascular element,hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4525 ! TS20,hindgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:4531 -name: TS20,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:4110 ! TS20,gut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4532 -name: TS20,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003287 ! midgut region of duodenum -relationship: part_of EMAP:4531 ! TS20,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003287 ! midgut region of duodenum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4533 -name: TS20,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4532 ! TS20,duodenum,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:4534 -name: TS20,associated mesenchyme,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4533 ! TS20,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:4535 -name: TS20,epithelium,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4533 ! TS20,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:4536 -name: TS20,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:4533 ! TS20,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4537 -name: TS20,mesoduodenum,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:4536 ! TS20,mesentery,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4538 -name: TS20,vascular element,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4533 ! TS20,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:4539 -name: TS20,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0011698 ! midgut loop -relationship: part_of EMAP:4531 ! TS20,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0011698 ! midgut loop -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:454 -name: TS13,neural fold,anterior pro-rhombomere -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:452 ! TS13,anterior pro-rhombomere -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4540 -name: TS20,associated mesenchyme,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4539 ! TS20,loop,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:4541 -name: TS20,epithelium,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4539 ! TS20,loop,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:4542 -name: TS20,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:4539 ! TS20,loop,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4543 -name: TS20,dorsal mesentery,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:4542 ! TS20,mesentery,loop,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4544 -name: TS20,vascular element,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4539 ! TS20,loop,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:4545 -name: TS20,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4531 ! TS20,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:4546 -name: TS20,associated mesenchyme,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4545 ! TS20,rest of midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:4547 -name: TS20,epithelium,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4545 ! TS20,rest of midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:4548 -name: TS20,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:4545 ! TS20,rest of midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4549 -name: TS20,dorsal mesentery,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:4548 ! TS20,mesentery,rest of midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:455 -name: TS13,neural crest,neural fold,anterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:454 ! TS13,neural fold,anterior pro-rhombomere -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4550 -name: TS20,vascular element,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4545 ! TS20,rest of midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:4551 -name: TS20,epiglottal primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3984 ! TS20,oral region,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000165 ! mouth - -[Term] -id: EMAP:4552 -name: TS20,mandibular process -namespace: mouse_anatomy_stages -is_a: UBERON:0005867 ! mandibular prominence -relationship: part_of EMAP:3984 ! TS20,oral region,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005867 ! mandibular prominence -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4553 -name: TS20,Meckel's cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0003107 ! Meckel's cartilage -relationship: part_of EMAP:4552 ! TS20,mandibular process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4554 -name: TS20,mandible primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4552 ! TS20,mandibular process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005867 ! mandibular prominence - -[Term] -id: EMAP:4555 -name: TS20,alveolar sulcus,mandible primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4554 ! TS20,mandible primordium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005867 ! mandibular prominence - -[Term] -id: EMAP:4556 -name: TS20,mesenchyme,mandibular process -namespace: mouse_anatomy_stages -is_a: UBERON:0006905 ! mandibular process mesenchyme -relationship: part_of EMAP:4552 ! TS20,mandibular process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006905 ! mandibular process mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4557 -name: TS20,maxillary process -namespace: mouse_anatomy_stages -is_a: UBERON:0005868 ! maxillary prominence -relationship: part_of EMAP:3984 ! TS20,oral region,alimentary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005868 ! maxillary prominence -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4558 -name: TS20,epithelium,maxillary process -namespace: mouse_anatomy_stages -is_a: UBERON:0012312 ! maxillary process ectoderm -relationship: part_of EMAP:4557 ! TS20,maxillary process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012312 ! maxillary process ectoderm -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4559 -name: TS20,skeleton,maxillary process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4557 ! TS20,maxillary process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005868 ! maxillary prominence - -[Term] -id: EMAP:456 -name: TS13,hindbrain posterior to rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:4560 -name: TS20,maxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002397 ! maxilla -relationship: part_of EMAP:4559 ! TS20,skeleton,maxillary process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002397 ! maxilla -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4561 -name: TS20,mesenchyme,maxillary process -namespace: mouse_anatomy_stages -is_a: UBERON:0009526 ! maxillary process mesenchyme -relationship: part_of EMAP:4557 ! TS20,maxillary process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009526 ! maxillary process mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4562 -name: TS20,alveolar sulcus,maxillary process -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4557 ! TS20,maxillary process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005868 ! maxillary prominence - -[Term] -id: EMAP:4563 -name: TS20,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005619 ! secondary palatal shelf -relationship: part_of EMAP:4557 ! TS20,maxillary process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4564 -name: TS20,epithelium,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005658 ! secondary palatal shelf epithelium -relationship: part_of EMAP:4563 ! TS20,palatal shelf -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005658 ! secondary palatal shelf epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4565 -name: TS20,mesenchyme,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005704 ! secondary palatal shelf mesenchyme -relationship: part_of EMAP:4563 ! TS20,palatal shelf -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005704 ! secondary palatal shelf mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4566 -name: TS20,premaxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002244 ! premaxilla -relationship: part_of EMAP:4557 ! TS20,maxillary process -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4567 -name: TS20,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005620 ! primary palate -relationship: part_of EMAP:4566 ! TS20,premaxilla -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005620 ! primary palate -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4568 -name: TS20,epithelium,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005659 ! primary palate epithelium -relationship: part_of EMAP:4567 ! TS20,primary palate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005659 ! primary palate epithelium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4569 -name: TS20,mesenchyme,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005705 ! primary palate mesenchyme -relationship: part_of EMAP:4567 ! TS20,primary palate -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005705 ! primary palate mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:457 -name: TS13,floor plate,hindbrain posterior to rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:456 ! TS13,hindbrain posterior to rhombomere 05 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:4570 -name: TS20,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:3982 ! TS20,visceral organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4571 -name: TS20,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:4570 ! TS20,liver and biliary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4572 -name: TS20,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:4570 ! TS20,liver and biliary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4573 -name: TS20,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:4570 ! TS20,liver and biliary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4574 -name: TS20,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:4570 ! TS20,liver and biliary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4575 -name: TS20,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:4574 ! TS20,hepatic duct -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4576 -name: TS20,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:4574 ! TS20,hepatic duct -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4577 -name: TS20,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:4570 ! TS20,liver and biliary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4578 -name: TS20,hepatic sinusoids,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001281 ! hepatic sinusoid -relationship: part_of EMAP:4577 ! TS20,liver -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4579 -name: TS20,parenchyma,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001280 ! liver parenchyma -relationship: part_of EMAP:4577 ! TS20,liver -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:458 -name: TS13,neural fold,hindbrain posterior to rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:456 ! TS13,hindbrain posterior to rhombomere 05 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4580 -name: TS20,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001008 ! excretory system -relationship: part_of EMAP:3982 ! TS20,visceral organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001008 ! excretory system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4581 -name: TS20,mesentery,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0003393 ! mesentery of urinary system -relationship: part_of EMAP:4580 ! TS20,renal/urinary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4582 -name: TS20,urogenital mesentery -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4581 ! TS20,mesentery,renal/urinary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003393 ! mesentery of urinary system - -[Term] -id: EMAP:4583 -name: TS20,mesonephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000080 ! mesonephros -relationship: part_of EMAP:4580 ! TS20,renal/urinary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4584 -name: TS20,associated mesenchyme,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4583 ! TS20,mesonephros -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4585 -name: TS20,non-tubular part,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4583 ! TS20,mesonephros -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4586 -name: TS20,tubule,mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4583 ! TS20,mesonephros -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4587 -name: TS20,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:4580 ! TS20,renal/urinary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4588 -name: TS20,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4587 ! TS20,metanephros -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4589 -name: TS20,induced blastemal cells -namespace: mouse_anatomy_stages -is_a: UBERON:0010531 ! metanephros induced blastemal cells -relationship: part_of EMAP:4587 ! TS20,metanephros -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010531 ! metanephros induced blastemal cells -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:459 -name: TS13,neural crest,neural fold,hindbrain posterior to rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:458 ! TS13,neural fold,hindbrain posterior to rhombomere 05 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4590 -name: TS20,primitive collecting duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4587 ! TS20,metanephros -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000081 ! metanephros - -[Term] -id: EMAP:4591 -name: TS20,primitive ureter -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4587 ! TS20,metanephros -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4592 -name: TS20,nephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4580 ! TS20,renal/urinary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001008 ! excretory system - -[Term] -id: EMAP:4593 -name: TS20,urogenital membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006307 ! urogenital membrane -relationship: part_of EMAP:4580 ! TS20,renal/urinary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006307 ! urogenital membrane -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4594 -name: TS20,urogenital sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0000164 ! primitive urogenital sinus -relationship: part_of EMAP:4580 ! TS20,renal/urinary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000164 ! primitive urogenital sinus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4595 -name: TS20,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:4580 ! TS20,renal/urinary system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4596 -name: TS20,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000990 ! reproductive system -relationship: part_of EMAP:3982 ! TS20,visceral organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4597 -name: TS20,genital tubercle -namespace: mouse_anatomy_stages -is_a: UBERON:0005876 ! undifferentiated genital tubercle -relationship: part_of EMAP:4596 ! TS20,reproductive system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0005876 ! undifferentiated genital tubercle -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4598 -name: TS20,gonad -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4596 ! TS20,reproductive system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4599 -name: TS20,\"germinal\" epithelium,gonad -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4598 ! TS20,gonad -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:46 -name: TS7,cavities -namespace: mouse_anatomy_stages -is_a: UBERON:0012466 ! extraembryonic cavities -relationship: part_of EMAP:45 ! TS7,extraembryonic component -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0012466 ! extraembryonic cavities -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:460 -name: TS13,posterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:4600 -name: TS20,mesenchyme,gonad -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4598 ! TS20,gonad -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4601 -name: TS20,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4598 ! TS20,gonad -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4602 -name: TS20,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:3982 ! TS20,visceral organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4603 -name: TS20,arytenoid swelling cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4602 ! TS20,respiratory system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001004 ! respiratory system - -[Term] -id: EMAP:4604 -name: TS20,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:4602 ! TS20,respiratory system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4605 -name: TS20,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002168 ! left lung -relationship: part_of EMAP:4604 ! TS20,lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002168 ! left lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4606 -name: TS20,associated mesenchyme,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:4605 ! TS20,left lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4607 -name: TS20,epithelium,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003365 ! epithelium of left lung -relationship: part_of EMAP:4605 ! TS20,left lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4608 -name: TS20,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003405 ! lobar bronchus of left lung -relationship: part_of EMAP:4605 ! TS20,left lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4609 -name: TS20,associated mesenchyme,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4608 ! TS20,lobar bronchus,left lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:461 -name: TS13,floor plate,posterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:460 ! TS13,posterior pro-rhombomere -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:4610 -name: TS20,epithelium,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:4608 ! TS20,lobar bronchus,left lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4611 -name: TS20,vascular element,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4608 ! TS20,lobar bronchus,left lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:4612 -name: TS20,vascular element,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009536 ! vascular element of left lung -relationship: part_of EMAP:4605 ! TS20,left lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4613 -name: TS20,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002167 ! right lung -relationship: part_of EMAP:4604 ! TS20,lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002167 ! right lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4614 -name: TS20,associated mesenchyme,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009603 ! right lung associated mesenchyme -relationship: part_of EMAP:4613 ! TS20,right lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4615 -name: TS20,epithelium,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003364 ! epithelium of right lung -relationship: part_of EMAP:4613 ! TS20,right lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4616 -name: TS20,lobar bronchus,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003404 ! lobar bronchus of right lung -relationship: part_of EMAP:4613 ! TS20,right lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003404 ! lobar bronchus of right lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4617 -name: TS20,associated mesenchyme,lobar bronchus,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4616 ! TS20,lobar bronchus,right lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003404 ! lobar bronchus of right lung - -[Term] -id: EMAP:4618 -name: TS20,epithelium,lobar bronchus,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:4616 ! TS20,lobar bronchus,right lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4619 -name: TS20,vascular element,lobar bronchus,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4616 ! TS20,lobar bronchus,right lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003404 ! lobar bronchus of right lung - -[Term] -id: EMAP:462 -name: TS13,neural fold,posterior pro-rhombomere -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:460 ! TS13,posterior pro-rhombomere -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4620 -name: TS20,vascular element,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009537 ! vascular element of right lung -relationship: part_of EMAP:4613 ! TS20,right lung -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4621 -name: TS20,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:4602 ! TS20,respiratory system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4622 -name: TS20,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:4621 ! TS20,respiratory tract -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4623 -name: TS20,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:4622 ! TS20,lower,respiratory tract -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4624 -name: TS20,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:4623 ! TS20,main bronchus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4625 -name: TS20,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:4623 ! TS20,main bronchus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4626 -name: TS20,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4623 ! TS20,main bronchus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:4627 -name: TS20,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:4622 ! TS20,lower,respiratory tract -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4628 -name: TS20,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:4627 ! TS20,trachea -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4629 -name: TS20,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:4627 ! TS20,trachea -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:463 -name: TS13,neural crest,neural fold,posterior pro-rhombomere -namespace: mouse_anatomy_stages -relationship: part_of EMAP:462 ! TS13,neural fold,posterior pro-rhombomere -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4630 -name: TS20,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4627 ! TS20,trachea -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:4631 -name: TS20,upper,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001557 ! upper respiratory tract -relationship: part_of EMAP:4621 ! TS20,respiratory tract -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4632 -name: TS20,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001728 ! nasopharynx -relationship: part_of EMAP:4631 ! TS20,upper,respiratory tract -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4633 -name: TS20,associated mesenchyme,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4632 ! TS20,nasopharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:4634 -name: TS20,epithelium,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001951 ! epithelium of nasopharynx -relationship: part_of EMAP:4632 ! TS20,nasopharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4635 -name: TS20,vascular element,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4632 ! TS20,nasopharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:4636 -name: TS20,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:3980 ! TS20,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4637 -name: TS20,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:4636 ! TS20,skeleton,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4638 -name: TS20,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:4637 ! TS20,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4639 -name: TS20,vertebral cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4638 ! TS20,cervical region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:464 -name: TS13,pre-otic sulcus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001892 ! rhombomere - -[Term] -id: EMAP:4640 -name: TS20,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:4637 ! TS20,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4641 -name: TS20,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4640 ! TS20,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:4642 -name: TS20,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:4637 ! TS20,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4643 -name: TS20,vertebral pre-cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0010744 ! sacral vertebra pre-cartilage condensation -relationship: part_of EMAP:4642 ! TS20,sacral region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0010744 ! sacral vertebra pre-cartilage condensation -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4644 -name: TS20,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:4637 ! TS20,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4645 -name: TS20,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006289 ! rib pre-cartilage condensation -relationship: part_of EMAP:4644 ! TS20,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006289 ! rib pre-cartilage condensation -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4646 -name: TS20,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4644 ! TS20,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:4647 -name: TS20,cranium -namespace: mouse_anatomy_stages -is_a: UBERON:0003129 ! skull -relationship: part_of EMAP:4636 ! TS20,skeleton,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003129 ! skull -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4648 -name: TS20,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0002241 ! chondrocranium -relationship: part_of EMAP:4647 ! TS20,cranium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4649 -name: TS20,temporal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:4648 ! TS20,chondrocranium -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:465 -name: TS13,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005499 ! rhombomere 1 -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4650 -name: TS20,petrous part,temporal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001694 ! petrous part of temporal bone -relationship: part_of EMAP:4649 ! TS20,temporal bone -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4651 -name: TS20,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:3980 ! TS20,embryo -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4652 -name: TS20,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4651 ! TS20,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:4653 -name: TS20,mesenchyme derived from neural crest -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4652 ! TS20,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:4654 -name: TS20,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:4652 ! TS20,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4655 -name: TS20,somite,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0009621 ! tail somite -relationship: part_of EMAP:4654 ! TS20,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0009621 ! tail somite -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4656 -name: TS20,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4657 -name: TS20,dermomyotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4656 ! TS20,somite 35 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4658 -name: TS20,myocoele,somite 35 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4656 ! TS20,somite 35 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4659 -name: TS20,sclerotome,somite 35 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4656 ! TS20,somite 35 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:466 -name: TS13,floor plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005566 ! rhombomere 1 floor plate -relationship: part_of EMAP:465 ! TS13,rhombomere 01 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4660 -name: TS20,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4661 -name: TS20,dermomyotome,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4660 ! TS20,somite 36 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4662 -name: TS20,myocoele,somite 36 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4660 ! TS20,somite 36 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4663 -name: TS20,sclerotome,somite 36 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4660 ! TS20,somite 36 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4664 -name: TS20,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4665 -name: TS20,dermomyotome,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4664 ! TS20,somite 37 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4666 -name: TS20,myocoele,somite 37 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4664 ! TS20,somite 37 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4667 -name: TS20,sclerotome,somite 37 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4664 ! TS20,somite 37 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4668 -name: TS20,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4669 -name: TS20,dermomyotome,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4668 ! TS20,somite 38 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:467 -name: TS13,neural fold,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:465 ! TS13,rhombomere 01 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4670 -name: TS20,myocoele,somite 38 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4668 ! TS20,somite 38 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4671 -name: TS20,sclerotome,somite 38 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4668 ! TS20,somite 38 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4672 -name: TS20,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4673 -name: TS20,dermomyotome,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4672 ! TS20,somite 39 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4674 -name: TS20,myocoele,somite 39 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4672 ! TS20,somite 39 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4675 -name: TS20,sclerotome,somite 39 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4672 ! TS20,somite 39 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4676 -name: TS20,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4677 -name: TS20,dermomyotome,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4676 ! TS20,somite 40 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4678 -name: TS20,myocoele,somite 40 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4676 ! TS20,somite 40 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4679 -name: TS20,sclerotome,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4676 ! TS20,somite 40 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:468 -name: TS13,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005569 ! rhombomere 2 -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4680 -name: TS20,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4681 -name: TS20,dermomyotome,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4680 ! TS20,somite 41 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4682 -name: TS20,myocoele,somite 41 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4680 ! TS20,somite 41 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4683 -name: TS20,sclerotome,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4680 ! TS20,somite 41 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4684 -name: TS20,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4685 -name: TS20,dermomyotome,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4684 ! TS20,somite 42 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4686 -name: TS20,myocoele,somite 42 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4684 ! TS20,somite 42 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4687 -name: TS20,sclerotome,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4684 ! TS20,somite 42 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4688 -name: TS20,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4689 -name: TS20,dermomyotome,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4688 ! TS20,somite 43 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:469 -name: TS13,floor plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005570 ! rhombomere 2 floor plate -relationship: part_of EMAP:468 ! TS13,rhombomere 02 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4690 -name: TS20,myocoele,somite 43 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4688 ! TS20,somite 43 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4691 -name: TS20,sclerotome,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4688 ! TS20,somite 43 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4692 -name: TS20,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4693 -name: TS20,dermomyotome,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4692 ! TS20,somite 44 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4694 -name: TS20,myocoele,somite 44 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4692 ! TS20,somite 44 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4695 -name: TS20,sclerotome,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4692 ! TS20,somite 44 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4696 -name: TS20,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4697 -name: TS20,dermomyotome,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4696 ! TS20,somite 45 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4698 -name: TS20,myocoele,somite 45 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4696 ! TS20,somite 45 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4699 -name: TS20,sclerotome,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4696 ! TS20,somite 45 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:47 -name: TS7,yolk sac cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005251 ! yolk sac cavity -relationship: part_of EMAP:46 ! TS7,cavities -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0005251 ! yolk sac cavity -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:470 -name: TS13,neural fold,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:468 ! TS13,rhombomere 02 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4700 -name: TS20,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4701 -name: TS20,dermomyotome,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4700 ! TS20,somite 46 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4702 -name: TS20,myocoele,somite 46 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4700 ! TS20,somite 46 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4703 -name: TS20,sclerotome,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4700 ! TS20,somite 46 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4704 -name: TS20,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4705 -name: TS20,dermomyotome,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4704 ! TS20,somite 47 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4706 -name: TS20,myocoele,somite 47 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4704 ! TS20,somite 47 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4707 -name: TS20,sclerotome,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4704 ! TS20,somite 47 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4708 -name: TS20,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4709 -name: TS20,dermomyotome,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4708 ! TS20,somite 48 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:471 -name: TS13,neural crest,neural fold,rhombomere 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:470 ! TS13,neural fold,rhombomere 02 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4710 -name: TS20,myocoele,somite 48 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4708 ! TS20,somite 48 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4711 -name: TS20,sclerotome,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4708 ! TS20,somite 48 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4712 -name: TS20,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4713 -name: TS20,dermomyotome,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4712 ! TS20,somite 49 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4714 -name: TS20,myocoele,somite 49 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4712 ! TS20,somite 49 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4715 -name: TS20,sclerotome,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4712 ! TS20,somite 49 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4716 -name: TS20,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4717 -name: TS20,dermomyotome,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4716 ! TS20,somite 50 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4718 -name: TS20,myocoele,somite 50 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4716 ! TS20,somite 50 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4719 -name: TS20,sclerotome,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4716 ! TS20,somite 50 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:472 -name: TS13,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005507 ! rhombomere 3 -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4720 -name: TS20,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4721 -name: TS20,dermomyotome,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4720 ! TS20,somite 51 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4722 -name: TS20,myocoele,somite 51 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4720 ! TS20,somite 51 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4723 -name: TS20,sclerotome,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4720 ! TS20,somite 51 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4724 -name: TS20,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4655 ! TS20,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4725 -name: TS20,dermomyotome,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4724 ! TS20,somite 52 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4726 -name: TS20,myocoele,somite 52 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:4724 ! TS20,somite 52 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4727 -name: TS20,sclerotome,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4724 ! TS20,somite 52 -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:4728 -name: TS20,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4654 ! TS20,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:4729 -name: TS20,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4651 ! TS20,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:473 -name: TS13,floor plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005573 ! rhombomere 3 floor plate -relationship: part_of EMAP:472 ! TS13,rhombomere 03 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4730 -name: TS20,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:4729 ! TS20,nervous system,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4731 -name: TS20,spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:4730 ! TS20,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4732 -name: TS20,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4733 -name: TS20,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:4732 ! TS20,extraembryonic component -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4734 -name: TS20,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:4733 ! TS20,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4735 -name: TS20,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:4734 ! TS20,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4736 -name: TS20,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4735 ! TS20,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:4737 -name: TS20,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4733 ! TS20,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:4738 -name: TS20,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:4737 ! TS20,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:4739 -name: TS20,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4738 ! TS20,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:474 -name: TS13,neural fold,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:472 ! TS13,rhombomere 03 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4740 -name: TS21,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4741 -name: TS21,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:4740 ! TS21,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4742 -name: TS21,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:4741 ! TS21,cavities and their linings -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4743 -name: TS21,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0001103 ! diaphragm -relationship: part_of EMAP:4742 ! TS21,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4744 -name: TS21,central tendon,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0006670 ! central tendon -relationship: part_of EMAP:4743 ! TS21,diaphragm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006670 ! central tendon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4745 -name: TS21,crus,diaphragm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4743 ! TS21,diaphragm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001103 ! diaphragm - -[Term] -id: EMAP:4746 -name: TS21,pleuro-pericardial canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006277 ! pleuropericardial canals -relationship: part_of EMAP:4743 ! TS21,diaphragm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006277 ! pleuropericardial canals -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4747 -name: TS21,mesothelial lining,pleuro-pericardial canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4746 ! TS21,pleuro-pericardial canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006277 ! pleuropericardial canals - -[Term] -id: EMAP:4748 -name: TS21,pleuro-pericardial folds -namespace: mouse_anatomy_stages -is_a: UBERON:0006278 ! pleuropericardial folds -relationship: part_of EMAP:4743 ! TS21,diaphragm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006278 ! pleuropericardial folds -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4749 -name: TS21,pleuro-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006279 ! pleuroperitoneal canal -relationship: part_of EMAP:4743 ! TS21,diaphragm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006279 ! pleuroperitoneal canal -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:475 -name: TS13,neural crest,neural fold,rhombomere 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:474 ! TS13,neural fold,rhombomere 03 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4750 -name: TS21,mesothelial lining,pleuro-peritoneal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4749 ! TS21,pleuro-peritoneal canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006279 ! pleuroperitoneal canal - -[Term] -id: EMAP:4751 -name: TS21,pleuro-peritoneal folds -namespace: mouse_anatomy_stages -is_a: UBERON:0009133 ! pleuroperitoneal membrane -relationship: part_of EMAP:4743 ! TS21,diaphragm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009133 ! pleuroperitoneal membrane -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4752 -name: TS21,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4742 ! TS21,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4753 -name: TS21,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4752 ! TS21,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4754 -name: TS21,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:4752 ! TS21,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4755 -name: TS21,parietal,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007187 ! pericardial parietal mesothelium -relationship: part_of EMAP:4754 ! TS21,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4756 -name: TS21,visceral,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007186 ! pericardial visceral mesothelium -relationship: part_of EMAP:4754 ! TS21,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4757 -name: TS21,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:4742 ! TS21,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4758 -name: TS21,cavity,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:4757 ! TS21,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4759 -name: TS21,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:4757 ! TS21,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:476 -name: TS13,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005511 ! rhombomere 4 -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4760 -name: TS21,parietal,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -relationship: part_of EMAP:4759 ! TS21,mesothelium,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4761 -name: TS21,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4742 ! TS21,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4762 -name: TS21,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:4761 ! TS21,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4763 -name: TS21,cavity,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005450 ! greater sac cavity -relationship: part_of EMAP:4762 ! TS21,greater sac -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4764 -name: TS21,mesothelium,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:4762 ! TS21,greater sac -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4765 -name: TS21,parietal,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4764 ! TS21,mesothelium,greater sac -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:4766 -name: TS21,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:4761 ! TS21,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4767 -name: TS21,mesothelium,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:4766 ! TS21,omental bursa -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4768 -name: TS21,parietal,mesothelium,omental bursa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4767 ! TS21,mesothelium,omental bursa -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:4769 -name: TS21,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4742 ! TS21,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:477 -name: TS13,floor plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005576 ! rhombomere 4 floor plate -relationship: part_of EMAP:476 ! TS13,rhombomere 04 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4770 -name: TS21,cavity,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4769 ! TS21,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4771 -name: TS21,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4769 ! TS21,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4772 -name: TS21,parietal,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4771 ! TS21,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4773 -name: TS21,visceral,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4771 ! TS21,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:4774 -name: TS21,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:4740 ! TS21,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4775 -name: TS21,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002102 ! forelimb -relationship: part_of EMAP:4774 ! TS21,limb -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002102 ! forelimb -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4776 -name: TS21,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0001460 ! arm -relationship: part_of EMAP:4775 ! TS21,forelimb -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001460 ! arm -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4777 -name: TS21,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001461 ! elbow -relationship: part_of EMAP:4776 ! TS21,arm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001461 ! elbow -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4778 -name: TS21,epithelium,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003229 ! epithelium of elbow -relationship: part_of EMAP:4777 ! TS21,elbow -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003229 ! epithelium of elbow -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4779 -name: TS21,mesenchyme,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003318 ! mesenchyme of elbow -relationship: part_of EMAP:4777 ! TS21,elbow -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:478 -name: TS13,neural fold,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:476 ! TS13,rhombomere 04 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4780 -name: TS21,elbow joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006224 ! elbow joint primordium -relationship: part_of EMAP:4779 ! TS21,mesenchyme,elbow -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006224 ! elbow joint primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4781 -name: TS21,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0002386 ! forelimb zeugopod -relationship: part_of EMAP:4776 ! TS21,arm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4782 -name: TS21,epithelium,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003247 ! epithelium of forearm -relationship: part_of EMAP:4781 ! TS21,forearm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003247 ! epithelium of forearm -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4783 -name: TS21,mesenchyme,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003327 ! mesenchyme of forearm -relationship: part_of EMAP:4781 ! TS21,forearm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4784 -name: TS21,radius-ulna cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010848 ! radius-ulna cartilage condensation -relationship: part_of EMAP:4783 ! TS21,mesenchyme,forearm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010848 ! radius-ulna cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4785 -name: TS21,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001467 ! shoulder -relationship: part_of EMAP:4776 ! TS21,arm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001467 ! shoulder -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4786 -name: TS21,epithelium,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003233 ! epithelium of shoulder -relationship: part_of EMAP:4785 ! TS21,shoulder -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003233 ! epithelium of shoulder -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4787 -name: TS21,mesenchyme,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003322 ! mesenchyme of shoulder -relationship: part_of EMAP:4785 ! TS21,shoulder -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4788 -name: TS21,shoulder joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006292 ! shoulder joint primordium -relationship: part_of EMAP:4787 ! TS21,mesenchyme,shoulder -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006292 ! shoulder joint primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4789 -name: TS21,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003822 ! forelimb stylopod -relationship: part_of EMAP:4776 ! TS21,arm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:479 -name: TS13,neural crest,neural fold,rhombomere 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:478 ! TS13,neural fold,rhombomere 04 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4790 -name: TS21,epithelium,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005228 ! upper arm epithelium -relationship: part_of EMAP:4789 ! TS21,upper arm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005228 ! upper arm epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4791 -name: TS21,mesenchyme,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005258 ! upper arm mesenchyme -relationship: part_of EMAP:4789 ! TS21,upper arm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4792 -name: TS21,humerus cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006245 ! humerus cartilage condensation -relationship: part_of EMAP:4791 ! TS21,mesenchyme,upper arm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006245 ! humerus cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4793 -name: TS21,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002398 ! manus -relationship: part_of EMAP:4775 ! TS21,forelimb -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002398 ! manus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4794 -name: TS21,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001463 ! manual digit 1 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4795 -name: TS21,epithelium,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010690 ! manual digit 1 epithelium -relationship: part_of EMAP:4794 ! TS21,digit 1,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010690 ! manual digit 1 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4796 -name: TS21,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010564 ! manual digit 1 mesenchyme -relationship: part_of EMAP:4794 ! TS21,digit 1,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4797 -name: TS21,metacarpus pre-cartilage condensation,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010565 ! manual digit 1 metacarpus pre-cartilage condensation -relationship: part_of EMAP:4796 ! TS21,mesenchyme,digit 1,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010565 ! manual digit 1 metacarpus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4798 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010575 ! manual digit 1 phalanx pre-cartilage condensation -relationship: part_of EMAP:4796 ! TS21,mesenchyme,digit 1,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010575 ! manual digit 1 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4799 -name: TS21,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003622 ! manual digit 2 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:48 -name: TS7,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0008945 ! extraembryonic endoderm -relationship: part_of EMAP:45 ! TS7,extraembryonic component -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:480 -name: TS13,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005515 ! rhombomere 5 -relationship: part_of EMAP:451 ! TS13,future rhombencephalon -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4800 -name: TS21,epithelium,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005645 ! manual digit 2 epithelium -relationship: part_of EMAP:4799 ! TS21,digit 2,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005645 ! manual digit 2 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4801 -name: TS21,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005692 ! manual digit 2 mesenchyme -relationship: part_of EMAP:4799 ! TS21,digit 2,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4802 -name: TS21,metacarpus pre-cartilage condensation,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010566 ! manual digit 2 metacarpus pre-cartilage condensation -relationship: part_of EMAP:4801 ! TS21,mesenchyme,digit 2,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010566 ! manual digit 2 metacarpus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4803 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010576 ! manual digit 2 phalanx pre-cartilage condensation -relationship: part_of EMAP:4801 ! TS21,mesenchyme,digit 2,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010576 ! manual digit 2 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4804 -name: TS21,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003623 ! manual digit 3 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4805 -name: TS21,epithelium,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005646 ! manual digit 3 epithelium -relationship: part_of EMAP:4804 ! TS21,digit 3,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005646 ! manual digit 3 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4806 -name: TS21,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005693 ! manual digit 3 mesenchyme -relationship: part_of EMAP:4804 ! TS21,digit 3,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4807 -name: TS21,metacarpus pre-cartilage condensation,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010567 ! manual digit 3 metacarpus pre-cartilage condensation -relationship: part_of EMAP:4806 ! TS21,mesenchyme,digit 3,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010567 ! manual digit 3 metacarpus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4808 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010577 ! manual digit 3 phalanx pre-cartilage condensation -relationship: part_of EMAP:4806 ! TS21,mesenchyme,digit 3,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010577 ! manual digit 3 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4809 -name: TS21,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003624 ! manual digit 4 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:481 -name: TS13,floor plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005579 ! rhombomere 5 floor plate -relationship: part_of EMAP:480 ! TS13,rhombomere 05 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4810 -name: TS21,epithelium,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005647 ! manual digit 4 epithelium -relationship: part_of EMAP:4809 ! TS21,digit 4,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005647 ! manual digit 4 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4811 -name: TS21,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005694 ! manual digit 4 mesenchyme -relationship: part_of EMAP:4809 ! TS21,digit 4,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4812 -name: TS21,metacarpus pre-cartilage condensation,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010568 ! manual digit 4 metacarpus pre-cartilage condensation -relationship: part_of EMAP:4811 ! TS21,mesenchyme,digit 4,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010568 ! manual digit 4 metacarpus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4813 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010578 ! manual digit 4 phalanx pre-cartilage condensation -relationship: part_of EMAP:4811 ! TS21,mesenchyme,digit 4,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010578 ! manual digit 4 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4814 -name: TS21,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003625 ! manual digit 5 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4815 -name: TS21,epithelium,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005648 ! manual digit 5 epithelium -relationship: part_of EMAP:4814 ! TS21,digit 5,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005648 ! manual digit 5 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4816 -name: TS21,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005695 ! manual digit 5 mesenchyme -relationship: part_of EMAP:4814 ! TS21,digit 5,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4817 -name: TS21,metacarpus pre-cartilage condensation,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010569 ! manual digit 5 metacarpus pre-cartilage condensation -relationship: part_of EMAP:4816 ! TS21,mesenchyme,digit 5,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010569 ! manual digit 5 metacarpus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4818 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010579 ! manual digit 5 phalanx pre-cartilage condensation -relationship: part_of EMAP:4816 ! TS21,mesenchyme,digit 5,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010579 ! manual digit 5 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4819 -name: TS21,rest of epithelium,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:482 -name: TS13,neural fold,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:480 ! TS13,rhombomere 05 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4820 -name: TS21,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4821 -name: TS21,epithelium,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4820 ! TS21,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:4822 -name: TS21,mesenchyme,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:4820 ! TS21,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4823 -name: TS21,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4824 -name: TS21,epithelium,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4823 ! TS21,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:4825 -name: TS21,mesenchyme,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:4823 ! TS21,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4826 -name: TS21,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4827 -name: TS21,epithelium,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4826 ! TS21,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:4828 -name: TS21,mesenchyme,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:4826 ! TS21,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4829 -name: TS21,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:483 -name: TS13,neural crest,neural fold,rhombomere 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:482 ! TS13,neural fold,rhombomere 05 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4830 -name: TS21,epithelium,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4829 ! TS21,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:4831 -name: TS21,mesenchyme,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:4829 ! TS21,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4832 -name: TS21,mesenchyme,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4793 ! TS21,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:4833 -name: TS21,carpus pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006214 ! carpus pre-cartilage condensation -relationship: part_of EMAP:4832 ! TS21,mesenchyme,handplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006214 ! carpus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4834 -name: TS21,hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002103 ! hindlimb -relationship: part_of EMAP:4774 ! TS21,limb -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4835 -name: TS21,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002387 ! pes -relationship: part_of EMAP:4834 ! TS21,hindlimb -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002387 ! pes -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4836 -name: TS21,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003631 ! pedal digit 1 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4837 -name: TS21,epithelium,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010693 ! pedal digit 1 epithelium -relationship: part_of EMAP:4836 ! TS21,digit 1,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010693 ! pedal digit 1 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4838 -name: TS21,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010562 ! pedal digit 1 mesenchyme -relationship: part_of EMAP:4836 ! TS21,digit 1,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4839 -name: TS21,metatarsus pre-cartilage condensation,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010547 ! pedal digit 1 metatarsal pre-cartilage condensation -relationship: part_of EMAP:4838 ! TS21,mesenchyme,digit 1,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010547 ! pedal digit 1 metatarsal pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:484 -name: TS13,neural crest,neural fold,rhombomere 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:467 ! TS13,neural fold,rhombomere 01 -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005062 ! neural fold - -[Term] -id: EMAP:4840 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010580 ! pedal digit 1 phalanx pre-cartilage condensation -relationship: part_of EMAP:4838 ! TS21,mesenchyme,digit 1,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010580 ! pedal digit 1 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4841 -name: TS21,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003632 ! pedal digit 2 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4842 -name: TS21,epithelium,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005649 ! pedal digit 2 epithelium -relationship: part_of EMAP:4841 ! TS21,digit 2,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005649 ! pedal digit 2 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4843 -name: TS21,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005696 ! pedal digit 2 mesenchyme -relationship: part_of EMAP:4841 ! TS21,digit 2,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4844 -name: TS21,metatarsus pre-cartilage condensation,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010548 ! pedal digit 2 metatarsal pre-cartilage condensation -relationship: part_of EMAP:4843 ! TS21,mesenchyme,digit 2,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010548 ! pedal digit 2 metatarsal pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4845 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010581 ! pedal digit 2 phalanx pre-cartilage condensation -relationship: part_of EMAP:4843 ! TS21,mesenchyme,digit 2,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010581 ! pedal digit 2 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4846 -name: TS21,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003633 ! pedal digit 3 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4847 -name: TS21,epithelium,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005650 ! pedal digit 3 epithelium -relationship: part_of EMAP:4846 ! TS21,digit 3,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005650 ! pedal digit 3 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4848 -name: TS21,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005697 ! pedal digit 3 mesenchyme -relationship: part_of EMAP:4846 ! TS21,digit 3,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4849 -name: TS21,metatarsus pre-cartilage condensation,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010549 ! pedal digit 3 metatarsal pre-cartilage condensation -relationship: part_of EMAP:4848 ! TS21,mesenchyme,digit 3,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010549 ! pedal digit 3 metatarsal pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:485 -name: TS13,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:440 ! TS13,neural ectoderm,ectoderm,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4850 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010582 ! pedal digit 3 phalanx pre-cartilage condensation -relationship: part_of EMAP:4848 ! TS21,mesenchyme,digit 3,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010582 ! pedal digit 3 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4851 -name: TS21,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003634 ! pedal digit 4 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4852 -name: TS21,epithelium,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005651 ! pedal digit 4 epithelium -relationship: part_of EMAP:4851 ! TS21,digit 4,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005651 ! pedal digit 4 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4853 -name: TS21,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005698 ! pedal digit 4 mesenchyme -relationship: part_of EMAP:4851 ! TS21,digit 4,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4854 -name: TS21,metatarsus pre-cartilage condensation,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010550 ! pedal digit 4 metatarsal pre-cartilage condensation -relationship: part_of EMAP:4853 ! TS21,mesenchyme,digit 4,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010550 ! pedal digit 4 metatarsal pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4855 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010583 ! pedal digit 4 phalanx pre-cartilage condensation -relationship: part_of EMAP:4853 ! TS21,mesenchyme,digit 4,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010583 ! pedal digit 4 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4856 -name: TS21,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003635 ! pedal digit 5 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4857 -name: TS21,epithelium,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005652 ! pedal digit 5 epithelium -relationship: part_of EMAP:4856 ! TS21,digit 5,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005652 ! pedal digit 5 epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4858 -name: TS21,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005699 ! pedal digit 5 mesenchyme -relationship: part_of EMAP:4856 ! TS21,digit 5,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4859 -name: TS21,metatarsus pre-cartilage condensation,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010551 ! pedal digit 5 metatarsal pre-cartilage condensation -relationship: part_of EMAP:4858 ! TS21,mesenchyme,digit 5,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010551 ! pedal digit 5 metatarsal pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:486 -name: TS13,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003075 ! neural plate -relationship: part_of EMAP:485 ! TS13,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003075 ! neural plate -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4860 -name: TS21,phalanx pre-cartilage condensation,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010584 ! pedal digit 5 phalanx pre-cartilage condensation -relationship: part_of EMAP:4858 ! TS21,mesenchyme,digit 5,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010584 ! pedal digit 5 phalanx pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4861 -name: TS21,rest of epithelium,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:4862 -name: TS21,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4863 -name: TS21,epithelium,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4862 ! TS21,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:4864 -name: TS21,mesenchyme,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:4862 ! TS21,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4865 -name: TS21,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4866 -name: TS21,epithelium,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4865 ! TS21,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:4867 -name: TS21,mesenchyme,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:4865 ! TS21,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4868 -name: TS21,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4869 -name: TS21,epithelium,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4868 ! TS21,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:487 -name: TS13,neural fold,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:486 ! TS13,neural plate,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4870 -name: TS21,mesenchyme,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:4868 ! TS21,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4871 -name: TS21,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4872 -name: TS21,epithelium,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4871 ! TS21,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:4873 -name: TS21,mesenchyme,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:4871 ! TS21,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4874 -name: TS21,mesenchyme,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4835 ! TS21,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:4875 -name: TS21,future tarsus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4874 ! TS21,mesenchyme,footplate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:4876 -name: TS21,calcaneum pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010801 ! calcaneum pre-cartilage condensation -relationship: part_of EMAP:4875 ! TS21,future tarsus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010801 ! calcaneum pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4877 -name: TS21,other mesenchyme,future tarsus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4875 ! TS21,future tarsus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:4878 -name: TS21,talus pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4875 ! TS21,future tarsus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:4879 -name: TS21,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000978 ! leg -relationship: part_of EMAP:4834 ! TS21,hindlimb -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000978 ! leg -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:488 -name: TS13,neural crest,neural fold,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003853 ! spinal cord neural crest -relationship: part_of EMAP:487 ! TS13,neural fold,neural plate,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003853 ! spinal cord neural crest -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4880 -name: TS21,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001464 ! hip -relationship: part_of EMAP:4879 ! TS21,leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001464 ! hip -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4881 -name: TS21,epithelium,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003231 ! epithelium of hip -relationship: part_of EMAP:4880 ! TS21,hip -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003231 ! epithelium of hip -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4882 -name: TS21,mesenchyme,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003320 ! mesenchyme of hip -relationship: part_of EMAP:4880 ! TS21,hip -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4883 -name: TS21,hip joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006244 ! hip joint primordium -relationship: part_of EMAP:4882 ! TS21,mesenchyme,hip -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006244 ! hip joint primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4884 -name: TS21,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001465 ! knee -relationship: part_of EMAP:4879 ! TS21,leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001465 ! knee -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4885 -name: TS21,epithelium,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003232 ! epithelium of knee -relationship: part_of EMAP:4884 ! TS21,knee -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003232 ! epithelium of knee -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4886 -name: TS21,mesenchyme,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003321 ! mesenchyme of knee -relationship: part_of EMAP:4884 ! TS21,knee -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4887 -name: TS21,knee joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006256 ! knee joint primordium -relationship: part_of EMAP:4886 ! TS21,mesenchyme,knee -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006256 ! knee joint primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4888 -name: TS21,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003823 ! hindlimb zeugopod -relationship: part_of EMAP:4879 ! TS21,leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4889 -name: TS21,epithelium,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005229 ! lower leg epithelium -relationship: part_of EMAP:4888 ! TS21,lower leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005229 ! lower leg epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:489 -name: TS13,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:485 ! TS13,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4890 -name: TS21,mesenchyme,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005259 ! lower leg mesenchyme -relationship: part_of EMAP:4888 ! TS21,lower leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4891 -name: TS21,tibia-fibular pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4890 ! TS21,mesenchyme,lower leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005259 ! lower leg mesenchyme - -[Term] -id: EMAP:4892 -name: TS21,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000376 ! hindlimb stylopod -relationship: part_of EMAP:4879 ! TS21,leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4893 -name: TS21,epithelium,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005225 ! upper leg epithelium -relationship: part_of EMAP:4892 ! TS21,upper leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005225 ! upper leg epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4894 -name: TS21,mesenchyme,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005254 ! upper leg mesenchyme -relationship: part_of EMAP:4892 ! TS21,upper leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4895 -name: TS21,femur cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010129 ! femur cartilage condensation -relationship: part_of EMAP:4894 ! TS21,mesenchyme,upper leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010129 ! femur cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4896 -name: TS21,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:4740 ! TS21,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4897 -name: TS21,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:4896 ! TS21,mesenchyme,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4898 -name: TS21,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:4896 ! TS21,mesenchyme,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4899 -name: TS21,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:4898 ! TS21,trunk mesenchyme -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:49 -name: TS7,intermediate endoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:48 ! TS7,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -relationship: part_of UBERON:0008945 ! extraembryonic endoderm - -[Term] -id: EMAP:490 -name: TS13,floor plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003306 ! floor plate of neural tube -relationship: part_of EMAP:489 ! TS13,neural tube,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4900 -name: TS21,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4740 ! TS21,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:4901 -name: TS21,anterior abdominal wall -namespace: mouse_anatomy_stages -is_a: UBERON:0006635 ! anterior abdominal wall -relationship: part_of EMAP:4900 ! TS21,vertebral axis muscle system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006635 ! anterior abdominal wall -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4902 -name: TS21,skeletal muscle,anterior abdominal wall -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4901 ! TS21,anterior abdominal wall -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006635 ! anterior abdominal wall - -[Term] -id: EMAP:4903 -name: TS21,undifferentiated pre-muscle mass -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4902 ! TS21,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006635 ! anterior abdominal wall - -[Term] -id: EMAP:4904 -name: TS21,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4900 ! TS21,vertebral axis muscle system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:4905 -name: TS21,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4904 ! TS21,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:4906 -name: TS21,deltoid pre-muscle mass -namespace: mouse_anatomy_stages -is_a: UBERON:0006219 ! deltoid pre-muscle mass -relationship: part_of EMAP:4905 ! TS21,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006219 ! deltoid pre-muscle mass -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4907 -name: TS21,subscapularis pre-muscle mass -namespace: mouse_anatomy_stages -is_a: UBERON:0010993 ! subscapularis pre-muscle mass -relationship: part_of EMAP:4905 ! TS21,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010993 ! subscapularis pre-muscle mass -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4908 -name: TS21,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:4740 ! TS21,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4909 -name: TS21,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:4908 ! TS21,organ system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:491 -name: TS13,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:489 ! TS13,neural tube,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001049 ! neural tube - -[Term] -id: EMAP:4910 -name: TS21,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:4909 ! TS21,visceral organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4911 -name: TS21,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:4910 ! TS21,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4912 -name: TS21,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:4911 ! TS21,oral region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4913 -name: TS21,salivary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001044 ! salivary gland -relationship: part_of EMAP:4912 ! TS21,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001044 ! salivary gland -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4914 -name: TS21,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006297 ! sublingual gland primordium -relationship: part_of EMAP:4913 ! TS21,salivary gland -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006297 ! sublingual gland primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4915 -name: TS21,epithelium,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0004809 ! salivary gland epithelium -relationship: part_of EMAP:4914 ! TS21,sublingual gland primordium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004809 ! salivary gland epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4916 -name: TS21,mesenchyme,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0009538 ! mesenchyme of sublingual gland primordium -relationship: part_of EMAP:4914 ! TS21,sublingual gland primordium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009538 ! mesenchyme of sublingual gland primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4917 -name: TS21,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006298 ! submandibular gland primordium -relationship: part_of EMAP:4913 ! TS21,salivary gland -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006298 ! submandibular gland primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4918 -name: TS21,epithelium,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0004809 ! salivary gland epithelium -relationship: part_of EMAP:4917 ! TS21,submandibular gland primordium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4919 -name: TS21,mesenchyme,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0009539 ! mesenchyme of submandibular gland primordium -relationship: part_of EMAP:4917 ! TS21,submandibular gland primordium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009539 ! mesenchyme of submandibular gland primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:492 -name: TS13,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003842 ! neural tube lumen -relationship: part_of EMAP:489 ! TS13,neural tube,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4920 -name: TS21,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:4910 ! TS21,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4921 -name: TS21,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:4920 ! TS21,gut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4922 -name: TS21,gland,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0013158 ! foregut-midgut junction gland -relationship: part_of EMAP:4921 ! TS21,foregut-midgut junction -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0013158 ! foregut-midgut junction gland -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4923 -name: TS21,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001264 ! pancreas -relationship: part_of EMAP:4922 ! TS21,gland,foregut-midgut junction -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001264 ! pancreas -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4924 -name: TS21,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001150 ! body of pancreas -relationship: part_of EMAP:4923 ! TS21,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4925 -name: TS21,dorsal pancreatic duct,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:4924 ! TS21,body,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4926 -name: TS21,parenchyma,body,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4924 ! TS21,body,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001150 ! body of pancreas - -[Term] -id: EMAP:4927 -name: TS21,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001069 ! head of pancreas -relationship: part_of EMAP:4923 ! TS21,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4928 -name: TS21,parenchyma,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4927 ! TS21,head,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:4929 -name: TS21,uncinate process,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4927 ! TS21,head,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:493 -name: TS13,neural luminal occlusion,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:492 ! TS13,neural lumen,neural tube,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0003842 ! neural tube lumen - -[Term] -id: EMAP:4930 -name: TS21,ventral pancreatic duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4927 ! TS21,head,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:4931 -name: TS21,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001151 ! tail of pancreas -relationship: part_of EMAP:4923 ! TS21,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4932 -name: TS21,dorsal pancreatic duct,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:4931 ! TS21,tail,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4933 -name: TS21,parenchyma,tail,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4931 ! TS21,tail,pancreas -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001151 ! tail of pancreas - -[Term] -id: EMAP:4934 -name: TS21,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:4908 ! TS21,organ system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4935 -name: TS21,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:4934 ! TS21,nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4936 -name: TS21,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:4935 ! TS21,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4937 -name: TS21,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:4936 ! TS21,brain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4938 -name: TS21,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:4937 ! TS21,forebrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4939 -name: TS21,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:494 -name: TS13,roof plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003298 ! roof plate of neural tube -relationship: part_of EMAP:489 ! TS13,neural tube,future spinal cord -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003298 ! roof plate of neural tube -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4940 -name: TS21,pituitary -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:4939 ! TS21,gland,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4941 -name: TS21,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002196 ! adenohypophysis -relationship: part_of EMAP:4940 ! TS21,pituitary -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4942 -name: TS21,pars anterior,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0006964 ! pars distalis of adenohypophysis -relationship: part_of EMAP:4941 ! TS21,adenohypophysis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4943 -name: TS21,pars intermedia,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis -relationship: part_of EMAP:4941 ! TS21,adenohypophysis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4944 -name: TS21,pars tuberalis,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002433 ! pars tuberalis of adenohypophysis -relationship: part_of EMAP:4941 ! TS21,adenohypophysis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4945 -name: TS21,remnant of Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0006377 ! remnant of Rathke's pouch -relationship: part_of EMAP:4941 ! TS21,adenohypophysis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4946 -name: TS21,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002198 ! neurohypophysis -relationship: part_of EMAP:4940 ! TS21,pituitary -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4947 -name: TS21,infundibulum,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002434 ! pituitary stalk -relationship: part_of EMAP:4946 ! TS21,neurohypophysis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4948 -name: TS21,median eminence,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002197 ! median eminence of neurohypophysis -relationship: part_of EMAP:4946 ! TS21,neurohypophysis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4949 -name: TS21,pars nervosa,neurohypophysis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4946 ! TS21,neurohypophysis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:495 -name: TS13,surface ectoderm,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:439 ! TS13,ectoderm,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4950 -name: TS21,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:4920 ! TS21,gut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4951 -name: TS21,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:4950 ! TS21,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4952 -name: TS21,thymus primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0005562 ! thymus primordium -relationship: part_of EMAP:4951 ! TS21,gland,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005562 ! thymus primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4953 -name: TS21,thyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:4951 ! TS21,gland,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4954 -name: TS21,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:4953 ! TS21,thyroid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4955 -name: TS21,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:4953 ! TS21,thyroid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4956 -name: TS21,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0002416 ! integumental system -relationship: part_of EMAP:4908 ! TS21,organ system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002416 ! integumental system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4957 -name: TS21,gland,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0003297 ! gland of integumental system -relationship: part_of EMAP:4956 ! TS21,integumental system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4958 -name: TS21,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001911 ! mammary gland -relationship: part_of EMAP:4957 ! TS21,gland,integumental system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4959 -name: TS21,epithelium,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003244 ! epithelium of mammary gland -relationship: part_of EMAP:4958 ! TS21,mammary gland -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:496 -name: TS13,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:402 ! TS13,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4960 -name: TS21,mesenchyme,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003326 ! mesenchyme of mammary gland -relationship: part_of EMAP:4958 ! TS21,mammary gland -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003326 ! mesenchyme of mammary gland -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4961 -name: TS21,skin -namespace: mouse_anatomy_stages -is_a: UBERON:0002097 ! skin of body -relationship: part_of EMAP:4956 ! TS21,integumental system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002097 ! skin of body -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4962 -name: TS21,cervical sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0006216 ! cervical sinus -relationship: part_of EMAP:4961 ! TS21,skin -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006216 ! cervical sinus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4963 -name: TS21,dermis,skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4961 ! TS21,skin -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002097 ! skin of body - -[Term] -id: EMAP:4964 -name: TS21,epidermis,skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4961 ! TS21,skin -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002097 ! skin of body - -[Term] -id: EMAP:4965 -name: TS21,vibrissa -namespace: mouse_anatomy_stages -is_a: UBERON:0006378 ! vibrissa hair -relationship: part_of EMAP:4961 ! TS21,skin -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006378 ! vibrissa hair -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4966 -name: TS21,dermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4965 ! TS21,vibrissa -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006378 ! vibrissa hair - -[Term] -id: EMAP:4967 -name: TS21,epidermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4965 ! TS21,vibrissa -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006378 ! vibrissa hair - -[Term] -id: EMAP:4968 -name: TS21,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4969 -name: TS21,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:4968 ! TS21,3rd ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:497 -name: TS13,head mesenchyme,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:496 ! TS13,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4970 -name: TS21,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001899 ! epithalamus -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4971 -name: TS21,mantle layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013159 ! epithalamus mantle layer -relationship: part_of EMAP:4970 ! TS21,epithalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4972 -name: TS21,marginal layer,epithalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4970 ! TS21,epithalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:4973 -name: TS21,ventricular layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013160 ! epithalamus ventricular layer -relationship: part_of EMAP:4970 ! TS21,epithalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4974 -name: TS21,floor plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003309 ! floor plate of diencephalon -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4975 -name: TS21,hypothalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001898 ! hypothalamus -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4976 -name: TS21,mantle layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4975 ! TS21,hypothalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:4977 -name: TS21,marginal layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4975 ! TS21,hypothalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:4978 -name: TS21,ventricular layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4975 ! TS21,hypothalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:4979 -name: TS21,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:498 -name: TS13,mesenchyme derived from head mesoderm,head mesenchyme,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:497 ! TS13,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4980 -name: TS21,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4981 -name: TS21,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:4980 ! TS21,lateral wall,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4982 -name: TS21,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4980 ! TS21,lateral wall,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:4983 -name: TS21,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4980 ! TS21,lateral wall,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:4984 -name: TS21,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003290 ! meninx of diencephalon -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4985 -name: TS21,arachnoid mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:4984 ! TS21,meninges,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4986 -name: TS21,dura mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:4984 ! TS21,meninges,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4987 -name: TS21,pia mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:4984 ! TS21,meninges,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4988 -name: TS21,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4989 -name: TS21,thalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001897 ! thalamus -relationship: part_of EMAP:4938 ! TS21,diencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001897 ! thalamus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:499 -name: TS13,mesenchyme derived from neural crest,head mesenchyme,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:497 ! TS13,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:4990 -name: TS21,mantle layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4989 ! TS21,thalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:4991 -name: TS21,marginal layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4989 ! TS21,thalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:4992 -name: TS21,ventricular layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4989 ! TS21,thalamus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:4993 -name: TS21,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:4937 ! TS21,forebrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4994 -name: TS21,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0000956 ! cerebral cortex -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4995 -name: TS21,mantle layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4994 ! TS21,cerebral cortex -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:4996 -name: TS21,marginal layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4994 ! TS21,cerebral cortex -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:4997 -name: TS21,ventricular layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4994 ! TS21,cerebral cortex -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:4998 -name: TS21,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:4999 -name: TS21,choroid fissure,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:4998 ! TS21,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5 -name: TS2,second polar body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000005 ! Theiler stage 02 -relationship: part_of UBERON:0000468 ! multi-cellular organism - -[Term] -id: EMAP:50 -name: TS7,parietal endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008800 ! parietal endoderm -relationship: part_of EMAP:48 ! TS7,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0008800 ! parietal endoderm -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:500 -name: TS13,facial neural crest -namespace: mouse_anatomy_stages -is_a: UBERON:0007681 ! facial neural crest -relationship: part_of EMAP:499 ! TS13,mesenchyme derived from neural crest,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007681 ! facial neural crest -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5000 -name: TS21,choroid plexus,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4998 ! TS21,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002192 ! ventricular system choroidal fissure - -[Term] -id: EMAP:5001 -name: TS21,corpus striatum -namespace: mouse_anatomy_stages -is_a: UBERON:0000369 ! corpus striatum -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5002 -name: TS21,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5003 -name: TS21,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5002 ! TS21,lateral ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:5004 -name: TS21,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5002 ! TS21,lateral ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:5005 -name: TS21,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5002 ! TS21,lateral ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:5006 -name: TS21,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5002 ! TS21,lateral ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:5007 -name: TS21,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:5002 ! TS21,lateral ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5008 -name: TS21,mantle layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:5009 -name: TS21,marginal layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:501 -name: TS13,facio-acoustic neural crest -namespace: mouse_anatomy_stages -is_a: UBERON:0005565 ! facio-acoustic neural crest -relationship: part_of EMAP:499 ! TS13,mesenchyme derived from neural crest,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005565 ! facio-acoustic neural crest -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5010 -name: TS21,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003289 ! meninx of telencephalon -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5011 -name: TS21,arachnoid mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:5010 ! TS21,meninges,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5012 -name: TS21,dura mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002363 ! dura mater -relationship: part_of EMAP:5010 ! TS21,meninges,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002363 ! dura mater -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5013 -name: TS21,pia mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:5010 ! TS21,meninges,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5014 -name: TS21,olfactory lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005366 ! olfactory lobe -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005366 ! olfactory lobe -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5015 -name: TS21,olfactory cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0002894 ! olfactory cortex -relationship: part_of EMAP:5014 ! TS21,olfactory lobe,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5016 -name: TS21,mantle layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5015 ! TS21,olfactory cortex -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:5017 -name: TS21,marginal layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5015 ! TS21,olfactory cortex -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:5018 -name: TS21,ventricular layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5015 ! TS21,olfactory cortex -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:5019 -name: TS21,ventricular layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4993 ! TS21,telencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:502 -name: TS13,trigeminal neural crest -namespace: mouse_anatomy_stages -is_a: UBERON:0005563 ! trigeminal neural crest -relationship: part_of EMAP:499 ! TS13,mesenchyme derived from neural crest,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005563 ! trigeminal neural crest -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5020 -name: TS21,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:4936 ! TS21,brain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5021 -name: TS21,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:5020 ! TS21,hindbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5022 -name: TS21,lateral recess,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0007656 ! lateral recess of fourth ventricle -relationship: part_of EMAP:5021 ! TS21,4th ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5023 -name: TS21,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0001896 ! medulla oblongata -relationship: part_of EMAP:5020 ! TS21,hindbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5024 -name: TS21,floor plate,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0003311 ! floor plate of medulla oblongata -relationship: part_of EMAP:5023 ! TS21,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5025 -name: TS21,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5023 ! TS21,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:5026 -name: TS21,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5025 ! TS21,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:5027 -name: TS21,mantle layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5026 ! TS21,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:5028 -name: TS21,marginal layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5026 ! TS21,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:5029 -name: TS21,ventricular layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5026 ! TS21,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:503 -name: TS13,paraxial mesenchyme,head mesenchyme,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009617 ! head paraxial mesoderm -relationship: part_of EMAP:497 ! TS13,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009617 ! head paraxial mesoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5030 -name: TS21,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0005240 ! basal plate medulla oblongata -relationship: part_of EMAP:5025 ! TS21,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5031 -name: TS21,mantle layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5030 ! TS21,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:5032 -name: TS21,marginal layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5030 ! TS21,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:5033 -name: TS21,ventricular layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5030 ! TS21,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:5034 -name: TS21,sulcus limitans,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0009576 ! medulla oblongata sulcus limitans -relationship: part_of EMAP:5025 ! TS21,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5035 -name: TS21,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5023 ! TS21,medulla oblongata -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:5036 -name: TS21,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003291 ! meninx of hindbrain -relationship: part_of EMAP:5020 ! TS21,hindbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5037 -name: TS21,arachnoid mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003559 ! hindbrain arachnoid mater -relationship: part_of EMAP:5036 ! TS21,meninges,hindbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003559 ! hindbrain arachnoid mater -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5038 -name: TS21,dura mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:5036 ! TS21,meninges,hindbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5039 -name: TS21,pia mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003554 ! hindbrain pia mater -relationship: part_of EMAP:5036 ! TS21,meninges,hindbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:504 -name: TS13,somite,paraxial mesenchyme,head mesenchyme,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0005594 ! head somite -relationship: part_of EMAP:503 ! TS13,paraxial mesenchyme,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005594 ! head somite -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5040 -name: TS21,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:5020 ! TS21,hindbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5041 -name: TS21,floor plate,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003310 ! floor plate of metencephalon -relationship: part_of EMAP:5040 ! TS21,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003310 ! floor plate of metencephalon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5042 -name: TS21,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5040 ! TS21,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:5043 -name: TS21,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5042 ! TS21,lateral wall,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:5044 -name: TS21,cerebellum -namespace: mouse_anatomy_stages -is_a: UBERON:0002037 ! cerebellum -relationship: part_of EMAP:5043 ! TS21,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5045 -name: TS21,mantle layer,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5044 ! TS21,cerebellum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:5046 -name: TS21,marginal layer,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5044 ! TS21,cerebellum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:5047 -name: TS21,ventricular layer,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5044 ! TS21,cerebellum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:5048 -name: TS21,mantle layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5043 ! TS21,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:5049 -name: TS21,marginal layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5043 ! TS21,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:505 -name: TS13,somite 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:504 ! TS13,somite,paraxial mesenchyme,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:5050 -name: TS21,ventricular layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5043 ! TS21,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:5051 -name: TS21,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:5042 ! TS21,lateral wall,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5052 -name: TS21,pons -namespace: mouse_anatomy_stages -is_a: UBERON:0000988 ! pons -relationship: part_of EMAP:5051 ! TS21,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000988 ! pons -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5053 -name: TS21,mantle layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5052 ! TS21,pons -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:5054 -name: TS21,marginal layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5052 ! TS21,pons -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:5055 -name: TS21,ventricular layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5052 ! TS21,pons -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:5056 -name: TS21,sulcus limitans,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009577 ! metencephalon sulcus limitans -relationship: part_of EMAP:5042 ! TS21,lateral wall,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5057 -name: TS21,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5040 ! TS21,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:5058 -name: TS21,choroid plexus,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5057 ! TS21,roof,metencephalon -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:5059 -name: TS21,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:4936 ! TS21,brain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:506 -name: TS13,somite 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:504 ! TS13,somite,paraxial mesenchyme,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:5060 -name: TS21,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003288 ! meninx of midbrain -relationship: part_of EMAP:5059 ! TS21,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5061 -name: TS21,arachnoid mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003557 ! midbrain arachnoid mater -relationship: part_of EMAP:5060 ! TS21,meninges,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003557 ! midbrain arachnoid mater -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5062 -name: TS21,dura mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:5060 ! TS21,meninges,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5063 -name: TS21,pia mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003551 ! midbrain pia mater -relationship: part_of EMAP:5060 ! TS21,meninges,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5064 -name: TS21,cerebral aqueduct -namespace: mouse_anatomy_stages -is_a: UBERON:0002289 ! midbrain cerebral aqueduct -relationship: part_of EMAP:5059 ! TS21,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5065 -name: TS21,floor plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003307 ! floor plate of midbrain -relationship: part_of EMAP:5059 ! TS21,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5066 -name: TS21,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:5059 ! TS21,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5067 -name: TS21,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:5066 ! TS21,lateral wall,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5068 -name: TS21,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5066 ! TS21,lateral wall,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:5069 -name: TS21,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5066 ! TS21,lateral wall,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:507 -name: TS13,somite 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:504 ! TS13,somite,paraxial mesenchyme,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:5070 -name: TS21,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003299 ! roof plate of midbrain -relationship: part_of EMAP:5059 ! TS21,midbrain -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5071 -name: TS21,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:4935 ! TS21,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5072 -name: TS21,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:5071 ! TS21,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5073 -name: TS21,facial VII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:5072 ! TS21,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5074 -name: TS21,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:5072 ! TS21,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5075 -name: TS21,inferior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5074 ! TS21,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:5076 -name: TS21,superior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5074 ! TS21,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:5077 -name: TS21,trigeminal V,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:5072 ! TS21,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5078 -name: TS21,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:5072 ! TS21,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5079 -name: TS21,inferior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:5078 ! TS21,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:508 -name: TS13,somite 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:504 ! TS13,somite,paraxial mesenchyme,head mesenchyme,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:5080 -name: TS21,superior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:5078 ! TS21,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5081 -name: TS21,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002827 ! auditory ganglion -relationship: part_of EMAP:5072 ! TS21,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002827 ! auditory ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5082 -name: TS21,cochlear component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5081 ! TS21,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002827 ! auditory ganglion - -[Term] -id: EMAP:5083 -name: TS21,vestibular component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002824 ! vestibular ganglion -relationship: part_of EMAP:5081 ! TS21,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5084 -name: TS21,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:4935 ! TS21,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5085 -name: TS21,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:5084 ! TS21,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5086 -name: TS21,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5087 -name: TS21,cranial component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009673 ! accessory XI nerve cranial component -relationship: part_of EMAP:5086 ! TS21,accessory XI -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5088 -name: TS21,spinal component,accessory XI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5086 ! TS21,accessory XI -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002019 ! accessory XI nerve - -[Term] -id: EMAP:5089 -name: TS21,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001647 ! facial nerve -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:509 -name: TS13,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:496 ! TS13,mesenchyme,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5090 -name: TS21,glossopharyngeal IX,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001649 ! glossopharyngeal nerve -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5091 -name: TS21,hypoglossal XII -namespace: mouse_anatomy_stages -is_a: UBERON:0001650 ! hypoglossal nerve -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5092 -name: TS21,oculomotor III -namespace: mouse_anatomy_stages -is_a: UBERON:0001643 ! oculomotor nerve -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5093 -name: TS21,olfactory I -namespace: mouse_anatomy_stages -is_a: UBERON:0001579 ! olfactory nerve -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5094 -name: TS21,optic II -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5095 -name: TS21,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001645 ! trigeminal nerve -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5096 -name: TS21,mandibular division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5095 ! TS21,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:5097 -name: TS21,maxillary division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5095 ! TS21,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:5098 -name: TS21,ophthalmic division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000348 ! ophthalmic nerve -relationship: part_of EMAP:5095 ! TS21,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5099 -name: TS21,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001648 ! vestibulocochlear nerve -relationship: part_of EMAP:5085 ! TS21,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:51 -name: TS7,Reichert's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004369 ! Reichert's membrane -relationship: part_of EMAP:50 ! TS7,parietal endoderm -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0004369 ! Reichert's membrane -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:510 -name: TS13,intermediate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003064 ! intermediate mesoderm -relationship: part_of EMAP:509 ! TS13,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5100 -name: TS21,cochlear component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5099 ! TS21,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:5101 -name: TS21,vestibular component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5099 ! TS21,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:5102 -name: TS21,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:4935 ! TS21,central nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5103 -name: TS21,floor plate,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005723 ! floor plate spinal cord region -relationship: part_of EMAP:5102 ! TS21,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005723 ! floor plate spinal cord region -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5104 -name: TS21,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009582 ! spinal cord lateral wall -relationship: part_of EMAP:5102 ! TS21,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5105 -name: TS21,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009583 ! spinal cord mantle layer -relationship: part_of EMAP:5104 ! TS21,lateral wall,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009583 ! spinal cord mantle layer -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5106 -name: TS21,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:5105 ! TS21,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5107 -name: TS21,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5105 ! TS21,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:5108 -name: TS21,marginal layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5104 ! TS21,lateral wall,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009582 ! spinal cord lateral wall - -[Term] -id: EMAP:5109 -name: TS21,sulcus limitans,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009570 ! spinal cord sulcus limitans -relationship: part_of EMAP:5104 ! TS21,lateral wall,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:511 -name: TS13,lateral plate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003081 ! lateral plate mesoderm -relationship: part_of EMAP:509 ! TS13,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5110 -name: TS21,ventricular layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005359 ! spinal cord ependyma -relationship: part_of EMAP:5104 ! TS21,lateral wall,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5111 -name: TS21,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003292 ! meninx of spinal cord -relationship: part_of EMAP:5102 ! TS21,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5112 -name: TS21,arachnoid mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003560 ! spinal cord arachnoid mater -relationship: part_of EMAP:5111 ! TS21,meninges,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003560 ! spinal cord arachnoid mater -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5113 -name: TS21,dura mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002093 ! spinal dura mater -relationship: part_of EMAP:5111 ! TS21,meninges,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5114 -name: TS21,pia mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003555 ! spinal cord pia mater -relationship: part_of EMAP:5111 ! TS21,meninges,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5115 -name: TS21,roof plate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5102 ! TS21,spinal cord -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002240 ! spinal cord - -[Term] -id: EMAP:5116 -name: TS21,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:4934 ! TS21,nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5117 -name: TS21,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:5116 ! TS21,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5118 -name: TS21,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000011 ! parasympathetic nervous system -relationship: part_of EMAP:5117 ! TS21,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5119 -name: TS21,nerve,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004293 ! parasympathetic nerve -relationship: part_of EMAP:5118 ! TS21,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:512 -name: TS13,somatopleure,lateral plate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0004874 ! somatopleure -relationship: part_of EMAP:511 ! TS13,lateral plate mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004874 ! somatopleure -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5120 -name: TS21,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0006308 ! vagal X nerve trunk -relationship: part_of EMAP:5119 ! TS21,nerve,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006308 ! vagal X nerve trunk -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5121 -name: TS21,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5120 ! TS21,vagal X nerve trunk -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5122 -name: TS21,recurrent laryngeal branch,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5121 ! TS21,left recurrent laryngeal branch,vagal X nerve trunk -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5123 -name: TS21,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -relationship: part_of EMAP:5120 ! TS21,vagal X nerve trunk -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5124 -name: TS21,recurrent laryngeal branch,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5123 ! TS21,right recurrent laryngeal branch,vagal X nerve trunk -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5125 -name: TS21,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:5117 ! TS21,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5126 -name: TS21,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:5125 ! TS21,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:513 -name: TS13,splanchnopleure,lateral plate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0004873 ! splanchnopleure -relationship: part_of EMAP:511 ! TS13,lateral plate mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004873 ! splanchnopleure -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5130 -name: TS21,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:5126 ! TS21,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5131 -name: TS21,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:5125 ! TS21,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5132 -name: TS21,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:5116 ! TS21,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5133 -name: TS21,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5132 ! TS21,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:5134 -name: TS21,dorsal root ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:5133 ! TS21,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5135 -name: TS21,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:5132 ! TS21,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5136 -name: TS21,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:5135 ! TS21,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5137 -name: TS21,median nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001148 ! median nerve -relationship: part_of EMAP:5136 ! TS21,brachial plexus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001148 ! median nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5138 -name: TS21,radial nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001492 ! radial nerve -relationship: part_of EMAP:5136 ! TS21,brachial plexus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5139 -name: TS21,ulnar nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001494 ! ulnar nerve -relationship: part_of EMAP:5136 ! TS21,brachial plexus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:514 -name: TS13,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:509 ! TS13,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5140 -name: TS21,lumbo-sacral plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001815 ! lumbosacral nerve plexus -relationship: part_of EMAP:5135 ! TS21,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5141 -name: TS21,sciatic,lumbo-sacral plexus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5140 ! TS21,lumbo-sacral plexus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5143 -name: TS21,phrenic,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001884 ! phrenic nerve -relationship: part_of EMAP:5144 ! TS21,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001884 ! phrenic nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5144 -name: TS21,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001780 ! spinal nerve -relationship: part_of EMAP:5132 ! TS21,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5145 -name: TS21,segmental spinal nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0005197 ! segmental spinal nerve -relationship: part_of EMAP:5144 ! TS21,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5146 -name: TS21,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:4908 ! TS21,organ system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5147 -name: TS21,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:5146 ! TS21,sensory organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5148 -name: TS21,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:5147 ! TS21,ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5149 -name: TS21,external auditory meatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001352 ! external acoustic meatus -relationship: part_of EMAP:5148 ! TS21,external ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:515 -name: TS13,somite,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005598 ! trunk somite -relationship: part_of EMAP:514 ! TS13,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5150 -name: TS21,future tympanic membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:5148 ! TS21,external ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5151 -name: TS21,epithelium,future tympanic membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5150 ! TS21,future tympanic membrane -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:5152 -name: TS21,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001757 ! pinna -relationship: part_of EMAP:5148 ! TS21,external ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001757 ! pinna -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5153 -name: TS21,mesenchymal condensation,pinna,external ear -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5152 ! TS21,pinna,external ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5154 -name: TS21,mesenchyme,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0003325 ! mesenchyme of pinna -relationship: part_of EMAP:5152 ! TS21,pinna,external ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5155 -name: TS21,surface epithelium,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0006938 ! pinna surface epithelium -relationship: part_of EMAP:5152 ! TS21,pinna,external ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5156 -name: TS21,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:5147 ! TS21,ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5157 -name: TS21,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:5156 ! TS21,inner ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5158 -name: TS21,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5157 ! TS21,endolymphatic appendage -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:5159 -name: TS21,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5157 ! TS21,endolymphatic appendage -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:516 -name: TS13,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5160 -name: TS21,endolymphatic sac -namespace: mouse_anatomy_stages -is_a: UBERON:0002223 ! endolymphatic sac -relationship: part_of EMAP:5156 ! TS21,inner ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002223 ! endolymphatic sac -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5161 -name: TS21,associated mesenchyme,endolymphatic sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5160 ! TS21,endolymphatic sac -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002223 ! endolymphatic sac - -[Term] -id: EMAP:5162 -name: TS21,epithelium,endolymphatic sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003246 ! epithelium of endolymphatic sac -relationship: part_of EMAP:5160 ! TS21,endolymphatic sac -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003246 ! epithelium of endolymphatic sac -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5163 -name: TS21,labyrinth -namespace: mouse_anatomy_stages -is_a: UBERON:0001849 ! membranous labyrinth -relationship: part_of EMAP:5156 ! TS21,inner ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5164 -name: TS21,associated mesenchyme,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5163 ! TS21,labyrinth -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:5165 -name: TS21,epithelium,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5163 ! TS21,labyrinth -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:5166 -name: TS21,otic capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0010351 ! otic capsule cartilage condensation -relationship: part_of EMAP:5156 ! TS21,inner ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010351 ! otic capsule cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5167 -name: TS21,vestibular component,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001862 ! vestibular labyrinth -relationship: part_of EMAP:5156 ! TS21,inner ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5168 -name: TS21,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0001861 ! ductus reuniens -relationship: part_of EMAP:5167 ! TS21,vestibular component,inner ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5169 -name: TS21,associated mesenchyme,ductus reuniens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5168 ! TS21,ductus reuniens -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001861 ! ductus reuniens - -[Term] -id: EMAP:517 -name: TS13,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5170 -name: TS21,epithelium,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0003363 ! epithelium of ductus reuniens -relationship: part_of EMAP:5168 ! TS21,ductus reuniens -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5171 -name: TS21,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0001854 ! saccule of membranous labyrinth -relationship: part_of EMAP:5167 ! TS21,vestibular component,inner ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5172 -name: TS21,associated mesenchyme,saccule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5171 ! TS21,saccule -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EMAP:5173 -name: TS21,cochlea -namespace: mouse_anatomy_stages -is_a: UBERON:0001844 ! cochlea -relationship: part_of EMAP:5171 ! TS21,saccule -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001844 ! cochlea -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5174 -name: TS21,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth -relationship: part_of EMAP:5173 ! TS21,cochlea -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5175 -name: TS21,associated mesenchyme,cochlear duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5174 ! TS21,cochlear duct -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: EMAP:5176 -name: TS21,epithelium,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003243 ! epithelium of cochlear duct -relationship: part_of EMAP:5174 ! TS21,cochlear duct -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003243 ! epithelium of cochlear duct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5177 -name: TS21,epithelium,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0003242 ! epithelium of saccule -relationship: part_of EMAP:5171 ! TS21,saccule -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5178 -name: TS21,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0001853 ! utricle of membranous labyrinth -relationship: part_of EMAP:5167 ! TS21,vestibular component,inner ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5179 -name: TS21,associated mesenchyme,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5178 ! TS21,utricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EMAP:518 -name: TS13,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5180 -name: TS21,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0005600 ! crus commune -relationship: part_of EMAP:5178 ! TS21,utricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005600 ! crus commune -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5181 -name: TS21,associated mesenchyme,crus commune,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5180 ! TS21,crus commune,utricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005600 ! crus commune - -[Term] -id: EMAP:5182 -name: TS21,epithelium,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:5180 ! TS21,crus commune,utricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5183 -name: TS21,epithelium,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:5178 ! TS21,utricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5184 -name: TS21,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001843 ! lateral semicircular canal -relationship: part_of EMAP:5178 ! TS21,utricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5185 -name: TS21,associated mesenchyme,lateral semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5184 ! TS21,lateral semicircular canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001843 ! lateral semicircular canal - -[Term] -id: EMAP:5186 -name: TS21,epithelium,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003240 ! epithelium of lateral semicircular canal -relationship: part_of EMAP:5184 ! TS21,lateral semicircular canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5187 -name: TS21,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001842 ! posterior semicircular canal -relationship: part_of EMAP:5178 ! TS21,utricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5188 -name: TS21,associated mesenchyme,posterior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5187 ! TS21,posterior semicircular canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EMAP:5189 -name: TS21,epithelium,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal -relationship: part_of EMAP:5187 ! TS21,posterior semicircular canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:519 -name: TS13,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5190 -name: TS21,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001841 ! anterior semicircular canal -relationship: part_of EMAP:5178 ! TS21,utricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5191 -name: TS21,associated mesenchyme,superior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5190 ! TS21,superior semicircular canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EMAP:5192 -name: TS21,epithelium,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003238 ! epithelium of superior semicircular canal -relationship: part_of EMAP:5190 ! TS21,superior semicircular canal -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5193 -name: TS21,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:5147 ! TS21,ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5194 -name: TS21,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:5193 ! TS21,middle ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5195 -name: TS21,ossicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001686 ! auditory ossicle -relationship: part_of EMAP:5193 ! TS21,middle ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001686 ! auditory ossicle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5196 -name: TS21,incus pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006248 ! incus pre-cartilage condensation -relationship: part_of EMAP:5195 ! TS21,ossicle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006248 ! incus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5197 -name: TS21,malleus pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006262 ! malleus pre-cartilage condensation -relationship: part_of EMAP:5195 ! TS21,ossicle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006262 ! malleus pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5198 -name: TS21,stapes pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006294 ! stapes pre-cartilage condensation -relationship: part_of EMAP:5195 ! TS21,ossicle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006294 ! stapes pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5199 -name: TS21,pharyngo-tympanic tube -namespace: mouse_anatomy_stages -is_a: UBERON:0002393 ! pharyngotympanic tube -relationship: part_of EMAP:5193 ! TS21,middle ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:52 -name: TS7,visceral endoderm,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004877 ! visceral endoderm -relationship: part_of EMAP:48 ! TS7,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0004877 ! visceral endoderm -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:520 -name: TS13,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5200 -name: TS21,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:5193 ! TS21,middle ear -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5201 -name: TS21,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:5146 ! TS21,sensory organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5202 -name: TS21,choroidal blood vessels -namespace: mouse_anatomy_stages -is_a: UBERON:0002443 ! choroidal blood vessel -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5203 -name: TS21,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5204 -name: TS21,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:5203 ! TS21,cornea -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5205 -name: TS21,stroma,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001777 ! substantia propria of cornea -relationship: part_of EMAP:5203 ! TS21,cornea -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5206 -name: TS21,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001711 ! eyelid -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001711 ! eyelid -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5207 -name: TS21,inner canthus -namespace: mouse_anatomy_stages -is_a: UBERON:0005611 ! inner canthus -relationship: part_of EMAP:5206 ! TS21,eyelid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5208 -name: TS21,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001713 ! lower eyelid -relationship: part_of EMAP:5206 ! TS21,eyelid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5209 -name: TS21,epithelium,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003845 ! lower eyelid epithelium -relationship: part_of EMAP:5208 ! TS21,lower,eyelid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003845 ! lower eyelid epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:521 -name: TS13,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5210 -name: TS21,mesenchyme,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:5208 ! TS21,lower,eyelid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5211 -name: TS21,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001712 ! upper eyelid -relationship: part_of EMAP:5206 ! TS21,eyelid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5212 -name: TS21,epithelium,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003844 ! upper eyelid epithelium -relationship: part_of EMAP:5211 ! TS21,upper,eyelid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003844 ! upper eyelid epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5213 -name: TS21,mesenchyme,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:5211 ! TS21,upper,eyelid -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5214 -name: TS21,hyaloid cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005606 ! hyaloid cavity -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5215 -name: TS21,hyaloid vascular plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005607 ! hyaloid vascular plexus -relationship: part_of EMAP:5214 ! TS21,hyaloid cavity -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5216 -name: TS21,vitreous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001797 ! vitreous humor -relationship: part_of EMAP:5214 ! TS21,hyaloid cavity -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5217 -name: TS21,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0000965 ! lens of camera-type eye -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5218 -name: TS21,anterior epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005614 ! lens anterior epithelium -relationship: part_of EMAP:5217 ! TS21,lens -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5219 -name: TS21,equatorial epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005615 ! lens equatorial epithelium -relationship: part_of EMAP:5217 ! TS21,lens -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005615 ! lens equatorial epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:522 -name: TS13,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5220 -name: TS21,lens fibres -namespace: mouse_anatomy_stages -is_a: UBERON:0002444 ! lens fiber -relationship: part_of EMAP:5217 ! TS21,lens -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5221 -name: TS21,anterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5220 ! TS21,lens fibres -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:5222 -name: TS21,posterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5220 ! TS21,lens fibres -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:5223 -name: TS21,skeletal muscle,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003269 ! skeletal muscle of eye -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003269 ! skeletal muscle of eye -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5224 -name: TS21,extrinsic ocular pre-muscle mass -namespace: mouse_anatomy_stages -is_a: UBERON:0006230 ! extrinsic ocular pre-muscle mass -relationship: part_of EMAP:5223 ! TS21,skeletal muscle,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006230 ! extrinsic ocular pre-muscle mass -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5225 -name: TS21,optic chiasma -namespace: mouse_anatomy_stages -is_a: UBERON:0000959 ! optic chiasma -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5226 -name: TS21,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5227 -name: TS21,fissure,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0005412 ! optic fissure -relationship: part_of EMAP:5226 ! TS21,optic stalk -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5228 -name: TS21,optic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:5226 ! TS21,optic stalk -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5229 -name: TS21,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:523 -name: TS13,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5230 -name: TS21,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:5201 ! TS21,eye -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5231 -name: TS21,embryonic fissure,retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5230 ! TS21,retina -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000966 ! retina - -[Term] -id: EMAP:5232 -name: TS21,neural retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:5230 ! TS21,retina -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5233 -name: TS21,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:5230 ! TS21,retina -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5234 -name: TS21,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:5146 ! TS21,sensory organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5235 -name: TS21,naris -namespace: mouse_anatomy_stages -is_a: UBERON:0000003 ! naris -relationship: part_of EMAP:5234 ! TS21,nose -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000003 ! naris -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5236 -name: TS21,external,naris -namespace: mouse_anatomy_stages -is_a: UBERON:0005928 ! external naris -relationship: part_of EMAP:5235 ! TS21,naris -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005928 ! external naris -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5237 -name: TS21,posterior,naris -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5235 ! TS21,naris -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:5238 -name: TS21,epithelium,posterior,naris -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5237 ! TS21,posterior,naris -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:5239 -name: TS21,primary choana -namespace: mouse_anatomy_stages -is_a: UBERON:0005931 ! primary choana -relationship: part_of EMAP:5235 ! TS21,naris -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005931 ! primary choana -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:524 -name: TS13,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:515 ! TS13,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:5240 -name: TS21,nasal capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0006332 ! nasal capsule -relationship: part_of EMAP:5234 ! TS21,nose -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5241 -name: TS21,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001707 ! nasal cavity -relationship: part_of EMAP:5234 ! TS21,nose -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5242 -name: TS21,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005384 ! nasal cavity epithelium -relationship: part_of EMAP:5241 ! TS21,nasal cavity -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5243 -name: TS21,olfactory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001997 ! olfactory epithelium -relationship: part_of EMAP:5242 ! TS21,epithelium,nasal cavity -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5244 -name: TS21,respiratory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000171 ! respiration organ -relationship: part_of EMAP:5242 ! TS21,epithelium,nasal cavity -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5245 -name: TS21,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0001706 ! nasal septum -relationship: part_of EMAP:5234 ! TS21,nose -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5246 -name: TS21,naso-lacrimal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002392 ! nasolacrimal duct -relationship: part_of EMAP:5234 ! TS21,nose -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5247 -name: TS21,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002255 ! vomeronasal organ -relationship: part_of EMAP:5234 ! TS21,nose -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5248 -name: TS21,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:4908 ! TS21,organ system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5249 -name: TS21,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:5248 ! TS21,cardiovascular system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:525 -name: TS13,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:514 ! TS13,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:5250 -name: TS21,anterior cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001624 ! anterior cerebral artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5251 -name: TS21,arch of aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001508 ! arch of aorta -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5252 -name: TS21,basilar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001633 ! basilar artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5253 -name: TS21,common carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001530 ! common carotid artery plus branches -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001530 ! common carotid artery plus branches -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5254 -name: TS21,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:5255 -name: TS21,abdominal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001516 ! abdominal aorta -relationship: part_of EMAP:5254 ! TS21,dorsal aorta -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5256 -name: TS21,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:5254 ! TS21,dorsal aorta -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5257 -name: TS21,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:5254 ! TS21,dorsal aorta -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5258 -name: TS21,post-ductal part of thoracic aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5257 ! TS21,left,dorsal aorta -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005613 ! left dorsal aorta - -[Term] -id: EMAP:5259 -name: TS21,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:5254 ! TS21,dorsal aorta -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:526 -name: TS13,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:509 ! TS13,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EMAP:5260 -name: TS21,ductus arteriosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005440 ! ductus arteriosus -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5261 -name: TS21,hepatic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001193 ! hepatic artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5262 -name: TS21,hyoid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005608 ! hyoid artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5263 -name: TS21,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005609 ! iliac artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5264 -name: TS21,common,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001191 ! common iliac artery -relationship: part_of EMAP:5263 ! TS21,iliac artery -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5265 -name: TS21,external,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001308 ! external iliac artery -relationship: part_of EMAP:5263 ! TS21,iliac artery -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5266 -name: TS21,internal,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001309 ! internal iliac artery -relationship: part_of EMAP:5263 ! TS21,iliac artery -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5267 -name: TS21,innominate artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001529 ! brachiocephalic artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5268 -name: TS21,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5269 -name: TS21,intersegmental artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002457 ! intersegmental artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002457 ! intersegmental artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:527 -name: TS13,septum transversum -namespace: mouse_anatomy_stages -is_a: UBERON:0004161 ! septum transversum -relationship: part_of EMAP:509 ! TS13,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5270 -name: TS21,maxillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001616 ! maxillary artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5271 -name: TS21,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005616 ! mesenteric artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5272 -name: TS21,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5273 -name: TS21,posterior cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001636 ! posterior cerebral artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5274 -name: TS21,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5275 -name: TS21,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5276 -name: TS21,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5277 -name: TS21,renal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001184 ! renal artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001184 ! renal artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5278 -name: TS21,stapedial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006345 ! stapedial artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5279 -name: TS21,subclavian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001533 ! subclavian artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:528 -name: TS13,hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:527 ! TS13,septum transversum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:5280 -name: TS21,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5281 -name: TS21,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:5280 ! TS21,umbilical artery -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5282 -name: TS21,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:5280 ! TS21,umbilical artery -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5283 -name: TS21,vertebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001535 ! vertebral artery -relationship: part_of EMAP:5249 ! TS21,arterial system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5284 -name: TS21,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:5248 ! TS21,cardiovascular system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5285 -name: TS21,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:5248 ! TS21,cardiovascular system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5286 -name: TS21,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5287 -name: TS21,atrio-ventricular cushion tissue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:5288 -name: TS21,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5289 -name: TS21,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:5288 ! TS21,atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:529 -name: TS13,non-hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:527 ! TS13,septum transversum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:5290 -name: TS21,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:5289 ! TS21,interatrial septum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5291 -name: TS21,foramen primum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5290 ! TS21,septum primum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0004154 ! septum primum - -[Term] -id: EMAP:5292 -name: TS21,foramen secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0006678 ! foramen secundum -relationship: part_of EMAP:5290 ! TS21,septum primum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5293 -name: TS21,septum secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0004155 ! septum secundum -relationship: part_of EMAP:5289 ! TS21,interatrial septum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004155 ! septum secundum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5294 -name: TS21,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002079 ! left atrium -relationship: part_of EMAP:5288 ! TS21,atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002079 ! left atrium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5295 -name: TS21,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5294 ! TS21,left atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:5296 -name: TS21,endocardial lining,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5295 ! TS21,auricular region,left atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:5297 -name: TS21,cardiac muscle,auricular region,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:5295 ! TS21,auricular region,left atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5298 -name: TS21,endocardial lining,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5294 ! TS21,left atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:5299 -name: TS21,cardiac muscle,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003380 ! cardiac muscle of left atrium -relationship: part_of EMAP:5294 ! TS21,left atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:53 -name: TS7,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:45 ! TS7,extraembryonic component -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:530 -name: TS13,trunk mesenchyme from neural crest -namespace: mouse_anatomy_stages -relationship: part_of EMAP:509 ! TS13,trunk mesenchyme -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EMAP:5300 -name: TS21,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002078 ! right atrium -relationship: part_of EMAP:5288 ! TS21,atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002078 ! right atrium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5301 -name: TS21,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5300 ! TS21,right atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:5302 -name: TS21,endocardial lining,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5301 ! TS21,auricular region,right atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:5303 -name: TS21,cardiac muscle,auricular region,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:5301 ! TS21,auricular region,right atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5304 -name: TS21,endocardial lining,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5300 ! TS21,right atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:5305 -name: TS21,cardiac muscle,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003379 ! cardiac muscle of right atrium -relationship: part_of EMAP:5300 ! TS21,right atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5306 -name: TS21,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005208 ! right atrium valve -relationship: part_of EMAP:5300 ! TS21,right atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5307 -name: TS21,venous valve,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:5306 ! TS21,valve,right atrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5308 -name: TS21,bulbo-ventricular region,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:5309 -name: TS21,bulbar cushion -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5308 ! TS21,bulbo-ventricular region,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:531 -name: TS13,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:402 ! TS13,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5310 -name: TS21,bulbar ridge -namespace: mouse_anatomy_stages -is_a: UBERON:0005967 ! conotruncal ridge -relationship: part_of EMAP:5308 ! TS21,bulbo-ventricular region,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005967 ! conotruncal ridge -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5311 -name: TS21,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5312 -name: TS21,endocardial tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002165 ! endocardium -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002165 ! endocardium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5313 -name: TS21,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5314 -name: TS21,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:5313 ! TS21,mesentery,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5315 -name: TS21,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:5314 ! TS21,dorsal mesocardium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5316 -name: TS21,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5317 -name: TS21,aortic component,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005338 ! outflow tract aortic component -relationship: part_of EMAP:5316 ! TS21,outflow tract,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005338 ! outflow tract aortic component -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5318 -name: TS21,aortico-pulmonary spiral septum -namespace: mouse_anatomy_stages -is_a: UBERON:0006207 ! aortico-pulmonary spiral septum -relationship: part_of EMAP:5316 ! TS21,outflow tract,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5319 -name: TS21,pulmonary component,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005339 ! outflow tract pulmonary component -relationship: part_of EMAP:5316 ! TS21,outflow tract,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005339 ! outflow tract pulmonary component -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:532 -name: TS13,notochordal plate -namespace: mouse_anatomy_stages -is_a: UBERON:0006267 ! notochordal plate -relationship: part_of EMAP:402 ! TS13,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006267 ! notochordal plate -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5320 -name: TS21,proximal part,pulmonary component,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5319 ! TS21,pulmonary component,outflow tract,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005339 ! outflow tract pulmonary component - -[Term] -id: EMAP:5321 -name: TS21,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5322 -name: TS21,parietal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:5321 ! TS21,pericardium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5323 -name: TS21,visceral pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:5321 ! TS21,pericardium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5324 -name: TS21,valve,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000946 ! cardial valve -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000946 ! cardial valve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5325 -name: TS21,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002137 ! aortic valve -relationship: part_of EMAP:5324 ! TS21,valve,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5326 -name: TS21,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002135 ! mitral valve -relationship: part_of EMAP:5324 ! TS21,valve,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5327 -name: TS21,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002146 ! pulmonary valve -relationship: part_of EMAP:5324 ! TS21,valve,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5328 -name: TS21,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002134 ! tricuspid valve -relationship: part_of EMAP:5324 ! TS21,valve,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5329 -name: TS21,ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002082 ! cardiac ventricle -relationship: part_of EMAP:5285 ! TS21,heart -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:533 -name: TS13,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:402 ! TS13,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5330 -name: TS21,interventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005455 ! interventricular groove -relationship: part_of EMAP:5329 ! TS21,ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5331 -name: TS21,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002094 ! interventricular septum -relationship: part_of EMAP:5329 ! TS21,ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5332 -name: TS21,endocardial lining,interventricular septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5331 ! TS21,interventricular septum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002094 ! interventricular septum - -[Term] -id: EMAP:5333 -name: TS21,cardiac muscle,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003383 ! cardiac muscle of interventricular septum -relationship: part_of EMAP:5331 ! TS21,interventricular septum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003383 ! cardiac muscle of interventricular septum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5334 -name: TS21,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002084 ! heart left ventricle -relationship: part_of EMAP:5329 ! TS21,ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5335 -name: TS21,endocardial lining,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009713 ! endocardium of left ventricle -relationship: part_of EMAP:5334 ! TS21,left ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5336 -name: TS21,cardiac muscle,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003382 ! cardiac muscle of left ventricle -relationship: part_of EMAP:5334 ! TS21,left ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5337 -name: TS21,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002080 ! heart right ventricle -relationship: part_of EMAP:5329 ! TS21,ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5338 -name: TS21,endocardial lining,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009712 ! endocardium of right ventricle -relationship: part_of EMAP:5337 ! TS21,right ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5339 -name: TS21,cardiac muscle,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003381 ! cardiac muscle of right ventricle -relationship: part_of EMAP:5337 ! TS21,right ventricle -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:534 -name: TS13,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:533 ! TS13,organ system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5340 -name: TS21,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:5248 ! TS21,cardiovascular system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5341 -name: TS21,common iliac vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001139 ! common iliac vein -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5342 -name: TS21,ductus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002083 ! ductus venosus -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5343 -name: TS21,external jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001101 ! external jugular vein -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001101 ! external jugular vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5344 -name: TS21,femoral vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001361 ! femoral vein -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5348 -name: TS21,internal jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001586 ! internal jugular vein -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5349 -name: TS21,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005617 ! mesenteric vein -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:535 -name: TS13,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:534 ! TS13,sensory organ -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5350 -name: TS21,portal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002017 ! portal vein -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002017 ! portal vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5351 -name: TS21,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5352 -name: TS21,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5353 -name: TS21,subclavian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001587 ! subclavian vein -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5357 -name: TS21,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5358 -name: TS21,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:5357 ! TS21,umbilical vein -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5359 -name: TS21,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:4910 ! TS21,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:536 -name: TS13,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:535 ! TS13,ear -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5360 -name: TS21,anal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009521 ! anal membrane endodermal component -relationship: part_of EMAP:5359 ! TS21,anal region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009521 ! anal membrane endodermal component -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5361 -name: TS21,anal pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5359 ! TS21,anal region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001353 ! anal region - -[Term] -id: EMAP:5362 -name: TS21,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003286 ! foregut region of duodenum -relationship: part_of EMAP:4950 ! TS21,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003286 ! foregut region of duodenum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5363 -name: TS21,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5362 ! TS21,duodenum,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:5364 -name: TS21,associated mesenchyme,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5363 ! TS21,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:5365 -name: TS21,epithelium,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5363 ! TS21,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:5366 -name: TS21,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5363 ! TS21,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:5367 -name: TS21,mesoduodenum,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:5366 ! TS21,mesentery,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5368 -name: TS21,vascular element,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5363 ! TS21,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:5369 -name: TS21,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:4950 ! TS21,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:537 -name: TS13,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003069 ! otic placode -relationship: part_of EMAP:536 ! TS13,inner ear -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003069 ! otic placode -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5370 -name: TS21,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5369 ! TS21,oesophagus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:5371 -name: TS21,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001976 ! epithelium of esophagus -relationship: part_of EMAP:5369 ! TS21,oesophagus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5372 -name: TS21,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:5369 ! TS21,oesophagus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5373 -name: TS21,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:5372 ! TS21,mesentery,oesophagus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5374 -name: TS21,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5369 ! TS21,oesophagus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:5375 -name: TS21,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:4950 ! TS21,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5376 -name: TS21,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5375 ! TS21,pharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:5377 -name: TS21,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:5375 ! TS21,pharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5378 -name: TS21,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:5375 ! TS21,pharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5379 -name: TS21,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003357 ! epithelium of tongue -relationship: part_of EMAP:5378 ! TS21,tongue -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:538 -name: TS13,associated mesenchyme,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0009477 ! associated mesenchyme of otic placode -relationship: part_of EMAP:537 ! TS13,otic placode -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009477 ! associated mesenchyme of otic placode -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5380 -name: TS21,mesenchyme,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003416 ! mesenchyme of tongue -relationship: part_of EMAP:5378 ! TS21,tongue -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003416 ! mesenchyme of tongue -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5381 -name: TS21,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003273 ! skeletal muscle of tongue -relationship: part_of EMAP:5378 ! TS21,tongue -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003273 ! skeletal muscle of tongue -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5382 -name: TS21,extrinsic pre-muscle mass,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0011332 ! extrinsic tongue pre-muscle mass -relationship: part_of EMAP:5381 ! TS21,skeletal muscle,tongue -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0011332 ! extrinsic tongue pre-muscle mass -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5383 -name: TS21,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5375 ! TS21,pharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:5384 -name: TS21,hyoid bone pre-cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5375 ! TS21,pharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:5385 -name: TS21,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:4950 ! TS21,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5386 -name: TS21,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5385 ! TS21,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:5387 -name: TS21,associated mesenchyme,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5386 ! TS21,fundus,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:5388 -name: TS21,epithelium,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5386 ! TS21,fundus,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:5389 -name: TS21,vascular element,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5386 ! TS21,fundus,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:539 -name: TS13,epithelium,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003249 ! epithelium of otic placode -relationship: part_of EMAP:537 ! TS13,otic placode -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003249 ! epithelium of otic placode -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5390 -name: TS21,glandular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0006924 ! stomach glandular epithelium -relationship: part_of EMAP:5385 ! TS21,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006924 ! stomach glandular epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5391 -name: TS21,associated mesenchyme,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5390 ! TS21,glandular region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:5392 -name: TS21,epithelium,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5390 ! TS21,glandular region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:5393 -name: TS21,vascular element,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5390 ! TS21,glandular region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:5394 -name: TS21,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:5385 ! TS21,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5395 -name: TS21,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:5394 ! TS21,mesentery,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5396 -name: TS21,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:5394 ! TS21,mesentery,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5397 -name: TS21,lesser omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0002399 ! lesser omentum -relationship: part_of EMAP:5396 ! TS21,ventral mesogastrium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5398 -name: TS21,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5385 ! TS21,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:5399 -name: TS21,associated mesenchyme,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5398 ! TS21,proventricular region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:54 -name: TS7,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:53 ! TS7,trophectoderm -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:540 -name: TS13,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:534 ! TS13,sensory organ -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5400 -name: TS21,epithelium,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5398 ! TS21,proventricular region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:5401 -name: TS21,vascular element,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5398 ! TS21,proventricular region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:5402 -name: TS21,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0001166 ! pylorus -relationship: part_of EMAP:5385 ! TS21,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001166 ! pylorus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5403 -name: TS21,associated mesenchyme,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5402 ! TS21,pyloric region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:5404 -name: TS21,epithelium,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0005637 ! pyloric region epithelium -relationship: part_of EMAP:5402 ! TS21,pyloric region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005637 ! pyloric region epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5405 -name: TS21,pyloric antrum -namespace: mouse_anatomy_stages -is_a: UBERON:0001165 ! pyloric antrum -relationship: part_of EMAP:5402 ! TS21,pyloric region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5406 -name: TS21,vascular element,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5402 ! TS21,pyloric region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:5407 -name: TS21,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:4921 ! TS21,foregut-midgut junction -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5408 -name: TS21,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:4921 ! TS21,foregut-midgut junction -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5409 -name: TS21,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:4921 ! TS21,foregut-midgut junction -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:541 -name: TS13,optic eminence -namespace: mouse_anatomy_stages -is_a: UBERON:0004348 ! optic eminence -relationship: part_of EMAP:540 ! TS13,eye -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004348 ! optic eminence -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5410 -name: TS21,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:5409 ! TS21,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5411 -name: TS21,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4921 ! TS21,foregut-midgut junction -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:5412 -name: TS21,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:4920 ! TS21,gut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5413 -name: TS21,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0006654 ! perineal body -relationship: part_of EMAP:5412 ! TS21,hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006654 ! perineal body -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5414 -name: TS21,associated mesenchyme,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5413 ! TS21,perineal body -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:5415 -name: TS21,epithelium,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5413 ! TS21,perineal body -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:5416 -name: TS21,vascular element,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5413 ! TS21,perineal body -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:5417 -name: TS21,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0001052 ! rectum -relationship: part_of EMAP:5412 ! TS21,hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001052 ! rectum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5418 -name: TS21,associated mesenchyme,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5417 ! TS21,rectum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:5419 -name: TS21,epithelium,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003354 ! epithelium of rectum -relationship: part_of EMAP:5417 ! TS21,rectum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003354 ! epithelium of rectum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:542 -name: TS13,ectoderm,optic eminence -namespace: mouse_anatomy_stages -is_a: UBERON:0005234 ! optic eminence ectoderm -relationship: part_of EMAP:541 ! TS13,optic eminence -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005234 ! optic eminence ectoderm -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5420 -name: TS21,vascular element,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5417 ! TS21,rectum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:5421 -name: TS21,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5412 ! TS21,hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:5422 -name: TS21,associated mesenchyme,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5421 ! TS21,rest of hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:5423 -name: TS21,epithelium,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5421 ! TS21,rest of hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:5424 -name: TS21,mesentery,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5421 ! TS21,rest of hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:5425 -name: TS21,dorsal mesentery,mesentery,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5424 ! TS21,mesentery,rest of hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:5426 -name: TS21,vascular element,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5421 ! TS21,rest of hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:5427 -name: TS21,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:4920 ! TS21,gut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5428 -name: TS21,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003287 ! midgut region of duodenum -relationship: part_of EMAP:5427 ! TS21,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003287 ! midgut region of duodenum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5429 -name: TS21,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5428 ! TS21,duodenum,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:543 -name: TS13,mesenchyme,optic eminence -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:541 ! TS13,optic eminence -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5430 -name: TS21,associated mesenchyme,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5429 ! TS21,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:5431 -name: TS21,epithelium,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5429 ! TS21,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:5432 -name: TS21,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:5429 ! TS21,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5433 -name: TS21,mesoduodenum,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:5432 ! TS21,mesentery,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5434 -name: TS21,vascular element,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5429 ! TS21,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:5435 -name: TS21,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0011698 ! midgut loop -relationship: part_of EMAP:5427 ! TS21,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0011698 ! midgut loop -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5436 -name: TS21,associated mesenchyme,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5435 ! TS21,loop,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:5437 -name: TS21,epithelium,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5435 ! TS21,loop,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:5438 -name: TS21,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:5435 ! TS21,loop,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5439 -name: TS21,dorsal mesentery,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:5438 ! TS21,mesentery,loop,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:544 -name: TS13,optic pit -namespace: mouse_anatomy_stages -is_a: UBERON:0006270 ! optic pit -relationship: part_of EMAP:540 ! TS13,eye -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006270 ! optic pit -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5440 -name: TS21,vascular element,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5435 ! TS21,loop,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:5441 -name: TS21,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5427 ! TS21,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:5442 -name: TS21,associated mesenchyme,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5441 ! TS21,rest of midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:5443 -name: TS21,epithelium,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5441 ! TS21,rest of midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:5444 -name: TS21,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:5441 ! TS21,rest of midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5445 -name: TS21,dorsal mesentery,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:5444 ! TS21,mesentery,rest of midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5446 -name: TS21,vascular element,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5441 ! TS21,rest of midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:5447 -name: TS21,epiglottal primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4911 ! TS21,oral region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000165 ! mouth - -[Term] -id: EMAP:5448 -name: TS21,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001710 ! lower jaw region -relationship: part_of EMAP:4911 ! TS21,oral region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5449 -name: TS21,Meckel's cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0003107 ! Meckel's cartilage -relationship: part_of EMAP:5448 ! TS21,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:545 -name: TS13,neural ectoderm,optic pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:544 ! TS13,optic pit -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006270 ! optic pit - -[Term] -id: EMAP:5450 -name: TS21,epithelium,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5448 ! TS21,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5451 -name: TS21,lip,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001835 ! lower lip -relationship: part_of EMAP:5448 ! TS21,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001835 ! lower lip -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5452 -name: TS21,skeleton,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003278 ! skeleton of lower jaw -relationship: part_of EMAP:5448 ! TS21,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5453 -name: TS21,mandible,skeleton,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001684 ! mandible -relationship: part_of EMAP:5452 ! TS21,skeleton,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001684 ! mandible -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5454 -name: TS21,mesenchyme,mandible,skeleton,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003414 ! mesenchyme of mandible -relationship: part_of EMAP:5453 ! TS21,mandible,skeleton,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003414 ! mesenchyme of mandible -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5458 -name: TS21,mesenchyme,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003324 ! mesenchyme of lower jaw -relationship: part_of EMAP:5448 ! TS21,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003324 ! mesenchyme of lower jaw -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5459 -name: TS21,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003268 ! tooth of lower jaw -relationship: part_of EMAP:5448 ! TS21,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:546 -name: TS13,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:533 ! TS13,organ system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5460 -name: TS21,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003451 ! lower jaw incisor -relationship: part_of EMAP:5459 ! TS21,tooth,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5461 -name: TS21,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:5460 ! TS21,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5462 -name: TS21,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005708 ! lower jaw incisor odontogenic papilla -relationship: part_of EMAP:5460 ! TS21,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005708 ! lower jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5463 -name: TS21,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003667 ! lower jaw molar -relationship: part_of EMAP:5459 ! TS21,tooth,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5464 -name: TS21,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:5463 ! TS21,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5465 -name: TS21,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005701 ! lower jaw molar odontogenic papilla -relationship: part_of EMAP:5463 ! TS21,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005701 ! lower jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5466 -name: TS21,oral cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000167 ! oral cavity -relationship: part_of EMAP:4911 ! TS21,oral region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5467 -name: TS21,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:4911 ! TS21,oral region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5468 -name: TS21,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001709 ! upper jaw region -relationship: part_of EMAP:4911 ! TS21,oral region,alimentary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5469 -name: TS21,lip,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001834 ! upper lip -relationship: part_of EMAP:5468 ! TS21,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001834 ! upper lip -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:547 -name: TS13,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:546 ! TS13,cardiovascular system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5470 -name: TS21,philtrum -namespace: mouse_anatomy_stages -is_a: UBERON:0005402 ! philtrum -relationship: part_of EMAP:5469 ! TS21,lip,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005402 ! philtrum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5471 -name: TS21,skeleton,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003277 ! skeleton of upper jaw -relationship: part_of EMAP:5468 ! TS21,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5472 -name: TS21,maxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002397 ! maxilla -relationship: part_of EMAP:5471 ! TS21,skeleton,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002397 ! maxilla -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5473 -name: TS21,mesenchyme,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003323 ! mesenchyme of upper jaw -relationship: part_of EMAP:5468 ! TS21,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003323 ! mesenchyme of upper jaw -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5474 -name: TS21,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005619 ! secondary palatal shelf -relationship: part_of EMAP:5468 ! TS21,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5475 -name: TS21,epithelium,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005658 ! secondary palatal shelf epithelium -relationship: part_of EMAP:5474 ! TS21,palatal shelf -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005658 ! secondary palatal shelf epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5476 -name: TS21,mesenchyme,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005704 ! secondary palatal shelf mesenchyme -relationship: part_of EMAP:5474 ! TS21,palatal shelf -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005704 ! secondary palatal shelf mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5477 -name: TS21,premaxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002244 ! premaxilla -relationship: part_of EMAP:5468 ! TS21,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5478 -name: TS21,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005620 ! primary palate -relationship: part_of EMAP:5477 ! TS21,premaxilla -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005620 ! primary palate -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5479 -name: TS21,epithelium,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005659 ! primary palate epithelium -relationship: part_of EMAP:5478 ! TS21,primary palate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005659 ! primary palate epithelium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:548 -name: TS13,1st arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003118 ! aortic arch 1 -relationship: part_of EMAP:547 ! TS13,arterial system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003118 ! aortic arch 1 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5480 -name: TS21,mesenchyme,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005705 ! primary palate mesenchyme -relationship: part_of EMAP:5478 ! TS21,primary palate -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005705 ! primary palate mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5481 -name: TS21,alveolar sulcus,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5468 ! TS21,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001709 ! upper jaw region - -[Term] -id: EMAP:5482 -name: TS21,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003267 ! tooth of upper jaw -relationship: part_of EMAP:5468 ! TS21,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003267 ! tooth of upper jaw -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5483 -name: TS21,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003450 ! upper jaw incisor -relationship: part_of EMAP:5482 ! TS21,tooth,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5484 -name: TS21,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:5483 ! TS21,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5485 -name: TS21,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005707 ! upper jaw incisor odontogenic papilla -relationship: part_of EMAP:5483 ! TS21,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005707 ! upper jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5486 -name: TS21,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003666 ! upper jaw molar -relationship: part_of EMAP:5482 ! TS21,tooth,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5487 -name: TS21,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:5486 ! TS21,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5488 -name: TS21,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005700 ! upper jaw molar odontogenic papilla -relationship: part_of EMAP:5486 ! TS21,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005700 ! upper jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5489 -name: TS21,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:4909 ! TS21,visceral organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:549 -name: TS13,2nd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003119 ! aortic arch 2 -relationship: part_of EMAP:547 ! TS13,arterial system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003119 ! aortic arch 2 -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5490 -name: TS21,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:5489 ! TS21,liver and biliary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5491 -name: TS21,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:5489 ! TS21,liver and biliary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5492 -name: TS21,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:5489 ! TS21,liver and biliary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5493 -name: TS21,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:5489 ! TS21,liver and biliary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5494 -name: TS21,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:5493 ! TS21,hepatic duct -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5495 -name: TS21,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:5493 ! TS21,hepatic duct -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5496 -name: TS21,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:5489 ! TS21,liver and biliary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5497 -name: TS21,bare area,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:5496 ! TS21,liver -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5498 -name: TS21,hepatic sinusoids,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001281 ! hepatic sinusoid -relationship: part_of EMAP:5496 ! TS21,liver -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5499 -name: TS21,parenchyma,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001280 ! liver parenchyma -relationship: part_of EMAP:5496 ! TS21,liver -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:55 -name: TS7,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:53 ! TS7,trophectoderm -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:550 -name: TS13,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:547 ! TS13,arterial system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:5500 -name: TS21,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001008 ! excretory system -relationship: part_of EMAP:4909 ! TS21,visceral organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001008 ! excretory system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5501 -name: TS21,degenerating mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5500 ! TS21,renal/urinary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5502 -name: TS21,mesentery,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0003393 ! mesentery of urinary system -relationship: part_of EMAP:5500 ! TS21,renal/urinary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5503 -name: TS21,urogenital mesentery -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5502 ! TS21,mesentery,renal/urinary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003393 ! mesentery of urinary system - -[Term] -id: EMAP:5504 -name: TS21,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:5500 ! TS21,renal/urinary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5505 -name: TS21,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5504 ! TS21,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5506 -name: TS21,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5504 ! TS21,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5507 -name: TS21,pelvis,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001224 ! renal pelvis -relationship: part_of EMAP:5506 ! TS21,drainage component,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5508 -name: TS21,collecting ducts,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5506 ! TS21,drainage component,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5509 -name: TS21,ureter -namespace: mouse_anatomy_stages -is_a: UBERON:0000056 ! ureter -relationship: part_of EMAP:5506 ! TS21,drainage component,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000056 ! ureter -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:551 -name: TS13,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:550 ! TS13,dorsal aorta -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5510 -name: TS21,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5504 ! TS21,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5511 -name: TS21,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001225 ! cortex of kidney -relationship: part_of EMAP:5510 ! TS21,excretory component,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5512 -name: TS21,induced blastemal cells,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0010531 ! metanephros induced blastemal cells -relationship: part_of EMAP:5511 ! TS21,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010531 ! metanephros induced blastemal cells -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5513 -name: TS21,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5511 ! TS21,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000081 ! metanephros - -[Term] -id: EMAP:5514 -name: TS21,medullary tubules,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5510 ! TS21,excretory component,metanephros -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5515 -name: TS21,nephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5500 ! TS21,renal/urinary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001008 ! excretory system - -[Term] -id: EMAP:5516 -name: TS21,urogenital membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006307 ! urogenital membrane -relationship: part_of EMAP:5500 ! TS21,renal/urinary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006307 ! urogenital membrane -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5517 -name: TS21,urogenital sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0000164 ! primitive urogenital sinus -relationship: part_of EMAP:5500 ! TS21,renal/urinary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000164 ! primitive urogenital sinus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5518 -name: TS21,phallic part,urogenital sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5517 ! TS21,urogenital sinus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:5519 -name: TS21,urachus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5517 ! TS21,urogenital sinus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:552 -name: TS13,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:550 ! TS13,dorsal aorta -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5520 -name: TS21,vesical part,urogenital sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5517 ! TS21,urogenital sinus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5521 -name: TS21,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:5500 ! TS21,renal/urinary system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5522 -name: TS21,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000990 ! reproductive system -relationship: part_of EMAP:4909 ! TS21,visceral organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5523 -name: TS21,female,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000474 ! female reproductive system -relationship: part_of EMAP:5522 ! TS21,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5524 -name: TS21,genital tubercle,female,reproductive system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5523 ! TS21,female,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5525 -name: TS21,mesovarium -namespace: mouse_anatomy_stages -is_a: UBERON:0001342 ! mesovarium -relationship: part_of EMAP:5523 ! TS21,female,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5526 -name: TS21,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0000992 ! female gonad -relationship: part_of EMAP:5523 ! TS21,female,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000992 ! female gonad -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5527 -name: TS21,germinal epithelium,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5526 ! TS21,ovary -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:5528 -name: TS21,mesenchyme,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5526 ! TS21,ovary -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5529 -name: TS21,primordial germ cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5526 ! TS21,ovary -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:553 -name: TS13,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:550 ! TS13,dorsal aorta -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5530 -name: TS21,rete ovarii -namespace: mouse_anatomy_stages -is_a: UBERON:0010185 ! rete ovarii -relationship: part_of EMAP:5526 ! TS21,ovary -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010185 ! rete ovarii -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5531 -name: TS21,paramesonephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5523 ! TS21,female,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5532 -name: TS21,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000079 ! male reproductive system -relationship: part_of EMAP:5522 ! TS21,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5533 -name: TS21,genital tubercle,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0006261 ! male genital tubercle -relationship: part_of EMAP:5532 ! TS21,male,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006261 ! male genital tubercle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5534 -name: TS21,mesonephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5532 ! TS21,male,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000079 ! male reproductive system - -[Term] -id: EMAP:5535 -name: TS21,mesorchium -namespace: mouse_anatomy_stages -is_a: UBERON:0011879 ! mesorchium -relationship: part_of EMAP:5532 ! TS21,male,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5536 -name: TS21,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0000473 ! testis -relationship: part_of EMAP:5532 ! TS21,male,reproductive system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000473 ! testis -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5537 -name: TS21,\"germinal\" epithelium,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0004910 ! epithelium of male gonad -relationship: part_of EMAP:5536 ! TS21,testis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004910 ! epithelium of male gonad -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5538 -name: TS21,mesenchyme,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5536 ! TS21,testis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5539 -name: TS21,primordial germ cells,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5536 ! TS21,testis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005297 ! testis sex cord - -[Term] -id: EMAP:554 -name: TS13,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:547 ! TS13,arterial system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5540 -name: TS21,testicular cords -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5536 ! TS21,testis -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5541 -name: TS21,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:4909 ! TS21,visceral organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5542 -name: TS21,arytenoid cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0001740 ! arytenoid cartilage -relationship: part_of EMAP:5541 ! TS21,respiratory system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5543 -name: TS21,laryngeal aditus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5541 ! TS21,respiratory system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001004 ! respiratory system - -[Term] -id: EMAP:5544 -name: TS21,laryngeal cartilage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5541 ! TS21,respiratory system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5545 -name: TS21,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:5541 ! TS21,respiratory system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5546 -name: TS21,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002168 ! left lung -relationship: part_of EMAP:5545 ! TS21,lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002168 ! left lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5547 -name: TS21,associated mesenchyme,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:5546 ! TS21,left lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5548 -name: TS21,epithelium,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003365 ! epithelium of left lung -relationship: part_of EMAP:5546 ! TS21,left lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5549 -name: TS21,hilus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004887 ! left lung hilus -relationship: part_of EMAP:5546 ! TS21,left lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:555 -name: TS13,left,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007142 ! left internal carotid artery -relationship: part_of EMAP:554 ! TS13,internal carotid artery -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007142 ! left internal carotid artery -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5550 -name: TS21,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003405 ! lobar bronchus of left lung -relationship: part_of EMAP:5546 ! TS21,left lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5551 -name: TS21,associated mesenchyme,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5550 ! TS21,lobar bronchus,left lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:5552 -name: TS21,epithelium,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:5550 ! TS21,lobar bronchus,left lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5553 -name: TS21,vascular element,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5550 ! TS21,lobar bronchus,left lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:5554 -name: TS21,vascular element,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009536 ! vascular element of left lung -relationship: part_of EMAP:5546 ! TS21,left lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5555 -name: TS21,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002167 ! right lung -relationship: part_of EMAP:5545 ! TS21,lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002167 ! right lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5556 -name: TS21,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004890 ! right lung accessory lobe -relationship: part_of EMAP:5555 ! TS21,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5557 -name: TS21,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004896 ! right lung accessory lobe lobar bronchus -relationship: part_of EMAP:5556 ! TS21,accessory lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004896 ! right lung accessory lobe lobar bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5558 -name: TS21,associated mesenchyme,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5557 ! TS21,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:5559 -name: TS21,epithelium,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:5557 ! TS21,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:556 -name: TS13,right,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007143 ! right internal carotid artery -relationship: part_of EMAP:554 ! TS13,internal carotid artery -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007143 ! right internal carotid artery -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5560 -name: TS21,vascular element,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5557 ! TS21,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:5561 -name: TS21,associated mesenchyme,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009603 ! right lung associated mesenchyme -relationship: part_of EMAP:5555 ! TS21,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5562 -name: TS21,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002171 ! lower lobe of right lung -relationship: part_of EMAP:5555 ! TS21,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5563 -name: TS21,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -relationship: part_of EMAP:5562 ! TS21,caudal lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5564 -name: TS21,associated mesenchyme,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5563 ! TS21,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:5565 -name: TS21,epithelium,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:5563 ! TS21,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5566 -name: TS21,vascular element,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5563 ! TS21,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:5567 -name: TS21,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002170 ! upper lobe of right lung -relationship: part_of EMAP:5555 ! TS21,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5568 -name: TS21,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -relationship: part_of EMAP:5567 ! TS21,cranial lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5569 -name: TS21,associated mesenchyme,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5568 ! TS21,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:557 -name: TS13,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:547 ! TS13,arterial system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5570 -name: TS21,epithelium,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:5568 ! TS21,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5571 -name: TS21,vascular element,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5568 ! TS21,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:5572 -name: TS21,epithelium,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003364 ! epithelium of right lung -relationship: part_of EMAP:5555 ! TS21,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5573 -name: TS21,hilus,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004888 ! right lung hilus -relationship: part_of EMAP:5555 ! TS21,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5574 -name: TS21,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002174 ! middle lobe of right lung -relationship: part_of EMAP:5555 ! TS21,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5575 -name: TS21,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002183 ! lobar bronchus -relationship: part_of EMAP:5574 ! TS21,middle lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5576 -name: TS21,associated mesenchyme,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5575 ! TS21,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:5577 -name: TS21,epithelium,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:5575 ! TS21,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5578 -name: TS21,vascular element,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5575 ! TS21,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:5579 -name: TS21,vascular element,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009537 ! vascular element of right lung -relationship: part_of EMAP:5555 ! TS21,right lung -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:558 -name: TS13,vitelline artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006002 ! vitelline artery -relationship: part_of EMAP:547 ! TS13,arterial system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5580 -name: TS21,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:5541 ! TS21,respiratory system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5581 -name: TS21,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:5580 ! TS21,respiratory tract -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5582 -name: TS21,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:5581 ! TS21,lower,respiratory tract -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5583 -name: TS21,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:5582 ! TS21,main bronchus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5584 -name: TS21,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:5582 ! TS21,main bronchus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5585 -name: TS21,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5582 ! TS21,main bronchus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:5586 -name: TS21,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:5581 ! TS21,lower,respiratory tract -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5587 -name: TS21,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:5586 ! TS21,trachea -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5588 -name: TS21,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:5586 ! TS21,trachea -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5589 -name: TS21,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5586 ! TS21,trachea -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:559 -name: TS13,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:546 ! TS13,cardiovascular system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5590 -name: TS21,upper,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001557 ! upper respiratory tract -relationship: part_of EMAP:5580 ! TS21,respiratory tract -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5591 -name: TS21,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001728 ! nasopharynx -relationship: part_of EMAP:5590 ! TS21,upper,respiratory tract -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5592 -name: TS21,associated mesenchyme,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5591 ! TS21,nasopharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:5593 -name: TS21,epithelium,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001951 ! epithelium of nasopharynx -relationship: part_of EMAP:5591 ! TS21,nasopharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5594 -name: TS21,vascular element,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5591 ! TS21,nasopharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:5595 -name: TS21,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:4740 ! TS21,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5596 -name: TS21,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:5595 ! TS21,skeleton,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5597 -name: TS21,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:5596 ! TS21,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5598 -name: TS21,vertebral cartilage condensation,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5597 ! TS21,cervical region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:5599 -name: TS21,C1 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5598 ! TS21,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:56 -name: TS7,ectoplacental cone -namespace: mouse_anatomy_stages -is_a: UBERON:0004364 ! ectoplacental cone -relationship: part_of EMAP:55 ! TS7,polar trophectoderm -relationship: exists_during MmusDv:0000011 ! Theiler stage 07 -intersection_of: UBERON:0004364 ! ectoplacental cone -intersection_of: exists_during MmusDv:0000011 ! Theiler stage 07 - -[Term] -id: EMAP:560 -name: TS13,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:546 ! TS13,cardiovascular system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5600 -name: TS21,C2 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5598 ! TS21,vertebral cartilage condensation,cervical region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: EMAP:5604 -name: TS21,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:5596 ! TS21,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5605 -name: TS21,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5604 ! TS21,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:5606 -name: TS21,nucleus pulposus,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5596 ! TS21,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:5607 -name: TS21,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:5596 ! TS21,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5608 -name: TS21,vertebral cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0010745 ! sacral vertebra cartilage condensation -relationship: part_of EMAP:5607 ! TS21,sacral region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010745 ! sacral vertebra cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5609 -name: TS21,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:5596 ! TS21,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:561 -name: TS13,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0004706 ! bulbus cordis -relationship: part_of EMAP:560 ! TS13,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5610 -name: TS21,rib pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006289 ! rib pre-cartilage condensation -relationship: part_of EMAP:5609 ! TS21,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006289 ! rib pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5611 -name: TS21,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5609 ! TS21,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:5612 -name: TS21,cranium -namespace: mouse_anatomy_stages -is_a: UBERON:0003129 ! skull -relationship: part_of EMAP:5595 ! TS21,skeleton,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003129 ! skull -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5613 -name: TS21,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0002241 ! chondrocranium -relationship: part_of EMAP:5612 ! TS21,cranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5614 -name: TS21,basioccipital pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0009197 ! basioccipital pre-cartilage condensation -relationship: part_of EMAP:5613 ! TS21,chondrocranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009197 ! basioccipital pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5615 -name: TS21,basispenoid pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0009192 ! basisphenoid pre-cartilage condensation -relationship: part_of EMAP:5613 ! TS21,chondrocranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009192 ! basisphenoid pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5616 -name: TS21,exoccipital pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006228 ! exoccipital pre-cartilage condensation -relationship: part_of EMAP:5613 ! TS21,chondrocranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006228 ! exoccipital pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5617 -name: TS21,sphenoid bone pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0009191 ! sphenoid bone pre-cartilage condensation -relationship: part_of EMAP:5613 ! TS21,chondrocranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009191 ! sphenoid bone pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5618 -name: TS21,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:5613 ! TS21,chondrocranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5619 -name: TS21,petrous part,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001694 ! petrous part of temporal bone -relationship: part_of EMAP:5618 ! TS21,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:562 -name: TS13,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:561 ! TS13,bulbus cordis -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:5620 -name: TS21,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0004339 ! vault of skull -relationship: part_of EMAP:5612 ! TS21,cranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5621 -name: TS21,frontal bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006236 ! frontal bone primordium -relationship: part_of EMAP:5620 ! TS21,vault of skull -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006236 ! frontal bone primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5622 -name: TS21,inter-parietal bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006251 ! interparietal bone primordium -relationship: part_of EMAP:5620 ! TS21,vault of skull -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006251 ! interparietal bone primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5623 -name: TS21,parietal bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006274 ! parietal bone primordium -relationship: part_of EMAP:5620 ! TS21,vault of skull -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006274 ! parietal bone primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5624 -name: TS21,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:5620 ! TS21,vault of skull -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5625 -name: TS21,squamous part,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001695 ! squamous part of temporal bone -relationship: part_of EMAP:5624 ! TS21,temporal bone,vault of skull -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5626 -name: TS21,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0011156 ! facial skeleton -relationship: part_of EMAP:5612 ! TS21,cranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5627 -name: TS21,ethmoid bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006227 ! ethmoid bone primordium -relationship: part_of EMAP:5626 ! TS21,viscerocranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006227 ! ethmoid bone primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5628 -name: TS21,facial bones primordia -namespace: mouse_anatomy_stages -is_a: UBERON:0006231 ! facial bone primordium -relationship: part_of EMAP:5626 ! TS21,viscerocranium -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006231 ! facial bone primordium -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5629 -name: TS21,pectoral girdle and thoracic body wall,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007831 ! skeleton of pectoral girdle -relationship: part_of EMAP:5595 ! TS21,skeleton,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0007831 ! skeleton of pectoral girdle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:563 -name: TS13,cardiac jelly,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:562 ! TS13,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:5630 -name: TS21,clavicle pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010844 ! clavicle pre-cartilage condensation -relationship: part_of EMAP:5629 ! TS21,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0010844 ! clavicle pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5631 -name: TS21,scapula pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006291 ! scapula pre-cartilage condensation -relationship: part_of EMAP:5629 ! TS21,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006291 ! scapula pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5632 -name: TS21,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007832 ! skeleton of pelvic girdle -relationship: part_of EMAP:5595 ! TS21,skeleton,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0007832 ! skeleton of pelvic girdle -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5633 -name: TS21,iliac pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006247 ! iliac pre-cartilage condensation -relationship: part_of EMAP:5632 ! TS21,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006247 ! iliac pre-cartilage condensation -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5634 -name: TS21,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:4740 ! TS21,embryo -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5635 -name: TS21,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5634 ! TS21,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:5636 -name: TS21,mesenchyme derived from neural crest -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5635 ! TS21,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:5637 -name: TS21,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:5635 ! TS21,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5638 -name: TS21,somite,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0009621 ! tail somite -relationship: part_of EMAP:5637 ! TS21,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0009621 ! tail somite -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5639 -name: TS21,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:564 -name: TS13,endocardial tube,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:562 ! TS13,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:5640 -name: TS21,dermomyotome,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5639 ! TS21,somite 40 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5641 -name: TS21,myocoele,somite 40 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5639 ! TS21,somite 40 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5642 -name: TS21,sclerotome,somite 40 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5639 ! TS21,somite 40 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5643 -name: TS21,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5644 -name: TS21,dermomyotome,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5643 ! TS21,somite 41 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5645 -name: TS21,myocoele,somite 41 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5643 ! TS21,somite 41 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5646 -name: TS21,sclerotome,somite 41 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5643 ! TS21,somite 41 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5647 -name: TS21,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5648 -name: TS21,dermomyotome,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5647 ! TS21,somite 42 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5649 -name: TS21,myocoele,somite 42 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5647 ! TS21,somite 42 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:565 -name: TS13,cardiac muscle,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:562 ! TS13,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:5650 -name: TS21,sclerotome,somite 42 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5647 ! TS21,somite 42 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5651 -name: TS21,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5652 -name: TS21,dermomyotome,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5651 ! TS21,somite 43 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5653 -name: TS21,myocoele,somite 43 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5651 ! TS21,somite 43 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5654 -name: TS21,sclerotome,somite 43 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5651 ! TS21,somite 43 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5655 -name: TS21,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5656 -name: TS21,dermomyotome,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5655 ! TS21,somite 44 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5657 -name: TS21,myocoele,somite 44 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5655 ! TS21,somite 44 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5658 -name: TS21,sclerotome,somite 44 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5655 ! TS21,somite 44 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5659 -name: TS21,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:566 -name: TS13,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0006060 ! conotruncus -relationship: part_of EMAP:561 ! TS13,bulbus cordis -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006060 ! conotruncus -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5660 -name: TS21,dermomyotome,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5659 ! TS21,somite 45 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5661 -name: TS21,myocoele,somite 45 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5659 ! TS21,somite 45 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5662 -name: TS21,sclerotome,somite 45 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5659 ! TS21,somite 45 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5663 -name: TS21,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5664 -name: TS21,dermomyotome,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5663 ! TS21,somite 46 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5665 -name: TS21,myocoele,somite 46 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5663 ! TS21,somite 46 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5666 -name: TS21,sclerotome,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5663 ! TS21,somite 46 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5667 -name: TS21,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5668 -name: TS21,dermomyotome,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5667 ! TS21,somite 47 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5669 -name: TS21,myocoele,somite 47 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5667 ! TS21,somite 47 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:567 -name: TS13,cardiac jelly,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:566 ! TS13,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:5670 -name: TS21,sclerotome,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5667 ! TS21,somite 47 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5671 -name: TS21,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5672 -name: TS21,dermomyotome,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5671 ! TS21,somite 48 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5673 -name: TS21,myocoele,somite 48 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5671 ! TS21,somite 48 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5674 -name: TS21,sclerotome,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5671 ! TS21,somite 48 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5675 -name: TS21,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5676 -name: TS21,dermomyotome,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5675 ! TS21,somite 49 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5677 -name: TS21,myocoele,somite 49 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5675 ! TS21,somite 49 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5678 -name: TS21,sclerotome,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5675 ! TS21,somite 49 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5679 -name: TS21,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:568 -name: TS13,endocardial tube,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:566 ! TS13,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:5680 -name: TS21,dermomyotome,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5679 ! TS21,somite 50 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5681 -name: TS21,myocoele,somite 50 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5679 ! TS21,somite 50 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5682 -name: TS21,sclerotome,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5679 ! TS21,somite 50 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5683 -name: TS21,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5684 -name: TS21,dermomyotome,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5683 ! TS21,somite 51 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5685 -name: TS21,myocoele,somite 51 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5683 ! TS21,somite 51 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5686 -name: TS21,sclerotome,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5683 ! TS21,somite 51 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5687 -name: TS21,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5688 -name: TS21,dermomyotome,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5687 ! TS21,somite 52 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5689 -name: TS21,myocoele,somite 52 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5687 ! TS21,somite 52 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:569 -name: TS13,cardiac muscle,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:566 ! TS13,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:5690 -name: TS21,sclerotome,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5687 ! TS21,somite 52 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5691 -name: TS21,somite 53 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5692 -name: TS21,dermomyotome,somite 53 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5691 ! TS21,somite 53 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5693 -name: TS21,myocoele,somite 53 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5691 ! TS21,somite 53 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5694 -name: TS21,sclerotome,somite 53 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5691 ! TS21,somite 53 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5695 -name: TS21,somite 54 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5696 -name: TS21,dermomyotome,somite 54 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5695 ! TS21,somite 54 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5697 -name: TS21,myocoele,somite 54 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5695 ! TS21,somite 54 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5698 -name: TS21,sclerotome,somite 54 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5695 ! TS21,somite 54 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5699 -name: TS21,somite 55 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5638 ! TS21,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:57 -name: TS8,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:570 -name: TS13,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006218 ! common atrial chamber -relationship: part_of EMAP:560 ! TS13,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006218 ! common atrial chamber -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5700 -name: TS21,dermomyotome,somite 55 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5699 ! TS21,somite 55 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5701 -name: TS21,myocoele,somite 55 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:5699 ! TS21,somite 55 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5702 -name: TS21,sclerotome,somite 55 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5699 ! TS21,somite 55 -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:5703 -name: TS21,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5637 ! TS21,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:5704 -name: TS21,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5634 ! TS21,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:5705 -name: TS21,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:5704 ! TS21,nervous system,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5706 -name: TS21,spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:5705 ! TS21,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5707 -name: TS21,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5634 ! TS21,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:5708 -name: TS21,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:5707 ! TS21,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5709 -name: TS21,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5708 ! TS21,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:571 -name: TS13,cardiac jelly,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:570 ! TS13,common atrial chamber -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:5710 -name: TS21,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5708 ! TS21,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:5711 -name: TS21,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5712 -name: TS21,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:5711 ! TS21,extraembryonic component -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5713 -name: TS21,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:5712 ! TS21,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5714 -name: TS21,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:5713 ! TS21,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5715 -name: TS21,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5714 ! TS21,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:5716 -name: TS21,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5712 ! TS21,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:5717 -name: TS21,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:5716 ! TS21,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:5718 -name: TS21,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5717 ! TS21,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:5719 -name: TS22,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:572 -name: TS13,endocardial tube,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:570 ! TS13,common atrial chamber -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:5720 -name: TS22,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:5719 ! TS22,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5721 -name: TS22,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:5720 ! TS22,organ system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5722 -name: TS22,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:5721 ! TS22,visceral organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5723 -name: TS22,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:5722 ! TS22,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5724 -name: TS22,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:5723 ! TS22,gut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5725 -name: TS22,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:5724 ! TS22,foregut-midgut junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5726 -name: TS22,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:5725 ! TS22,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5727 -name: TS22,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:5719 ! TS22,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5728 -name: TS22,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:5727 ! TS22,cavities and their linings -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5729 -name: TS22,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0001103 ! diaphragm -relationship: part_of EMAP:5728 ! TS22,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:573 -name: TS13,cardiac muscle,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:570 ! TS13,common atrial chamber -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:5730 -name: TS22,central tendon,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0006670 ! central tendon -relationship: part_of EMAP:5729 ! TS22,diaphragm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006670 ! central tendon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5731 -name: TS22,crus,diaphragm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5729 ! TS22,diaphragm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001103 ! diaphragm - -[Term] -id: EMAP:5732 -name: TS22,dome,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0007145 ! dome of diaphragm -relationship: part_of EMAP:5729 ! TS22,diaphragm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007145 ! dome of diaphragm -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5733 -name: TS22,pleuro-pericardial canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006277 ! pleuropericardial canals -relationship: part_of EMAP:5729 ! TS22,diaphragm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006277 ! pleuropericardial canals -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5734 -name: TS22,mesothelial lining,pleuro-pericardial canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5733 ! TS22,pleuro-pericardial canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006277 ! pleuropericardial canals - -[Term] -id: EMAP:5735 -name: TS22,pleuro-pericardial folds -namespace: mouse_anatomy_stages -is_a: UBERON:0006278 ! pleuropericardial folds -relationship: part_of EMAP:5729 ! TS22,diaphragm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006278 ! pleuropericardial folds -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5736 -name: TS22,pleuro-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006279 ! pleuroperitoneal canal -relationship: part_of EMAP:5729 ! TS22,diaphragm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006279 ! pleuroperitoneal canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5737 -name: TS22,mesothelial lining,pleuro-peritoneal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5736 ! TS22,pleuro-peritoneal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006279 ! pleuroperitoneal canal - -[Term] -id: EMAP:5738 -name: TS22,pleuro-peritoneal folds -namespace: mouse_anatomy_stages -is_a: UBERON:0009133 ! pleuroperitoneal membrane -relationship: part_of EMAP:5729 ! TS22,diaphragm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009133 ! pleuroperitoneal membrane -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5739 -name: TS22,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5728 ! TS22,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:574 -name: TS13,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:560 ! TS13,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5740 -name: TS22,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5739 ! TS22,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:5741 -name: TS22,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:5739 ! TS22,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5742 -name: TS22,parietal,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007187 ! pericardial parietal mesothelium -relationship: part_of EMAP:5741 ! TS22,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5743 -name: TS22,visceral,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007186 ! pericardial visceral mesothelium -relationship: part_of EMAP:5741 ! TS22,mesothelium,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5744 -name: TS22,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:5728 ! TS22,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5745 -name: TS22,cavity,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:5744 ! TS22,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5746 -name: TS22,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:5744 ! TS22,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5747 -name: TS22,parietal,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -relationship: part_of EMAP:5746 ! TS22,mesothelium,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5748 -name: TS22,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5728 ! TS22,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:5749 -name: TS22,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:5748 ! TS22,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:575 -name: TS13,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:574 ! TS13,mesentery,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5750 -name: TS22,cavity,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005450 ! greater sac cavity -relationship: part_of EMAP:5749 ! TS22,greater sac -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5751 -name: TS22,mesothelium,greater sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:5749 ! TS22,greater sac -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5752 -name: TS22,parietal,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5751 ! TS22,mesothelium,greater sac -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:5753 -name: TS22,left hepatic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0006342 ! left subhepatic recess -relationship: part_of EMAP:5748 ! TS22,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006342 ! left subhepatic recess -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5754 -name: TS22,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:5748 ! TS22,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5755 -name: TS22,inferior recess,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0001181 ! inferior recess of lesser sac -relationship: part_of EMAP:5754 ! TS22,omental bursa -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001181 ! inferior recess of lesser sac -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5756 -name: TS22,mesothelium,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:5754 ! TS22,omental bursa -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5757 -name: TS22,parietal,mesothelium,omental bursa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5756 ! TS22,mesothelium,omental bursa -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:5758 -name: TS22,superior recess,omental bursa -namespace: mouse_anatomy_stages -is_a: UBERON:0001180 ! superior recess of lesser sac -relationship: part_of EMAP:5754 ! TS22,omental bursa -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001180 ! superior recess of lesser sac -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5759 -name: TS22,right hepatic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0006343 ! right subhepatic recess -relationship: part_of EMAP:5748 ! TS22,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006343 ! right subhepatic recess -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:576 -name: TS13,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:575 ! TS13,dorsal mesocardium -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5760 -name: TS22,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5728 ! TS22,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:5761 -name: TS22,cavity,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5760 ! TS22,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:5762 -name: TS22,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5760 ! TS22,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:5763 -name: TS22,parietal,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5762 ! TS22,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:5764 -name: TS22,visceral,mesothelium,pleural component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5762 ! TS22,mesothelium,pleural component,intraembryonic coelom -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:5765 -name: TS22,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:5719 ! TS22,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5766 -name: TS22,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002102 ! forelimb -relationship: part_of EMAP:5765 ! TS22,limb -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002102 ! forelimb -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5767 -name: TS22,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0001460 ! arm -relationship: part_of EMAP:5766 ! TS22,forelimb -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001460 ! arm -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5768 -name: TS22,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001461 ! elbow -relationship: part_of EMAP:5767 ! TS22,arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001461 ! elbow -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5769 -name: TS22,mesenchyme,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003318 ! mesenchyme of elbow -relationship: part_of EMAP:5768 ! TS22,elbow -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:577 -name: TS13,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:560 ! TS13,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5770 -name: TS22,elbow joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006224 ! elbow joint primordium -relationship: part_of EMAP:5769 ! TS22,mesenchyme,elbow -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006224 ! elbow joint primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5771 -name: TS22,skin,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001517 ! skin of elbow -relationship: part_of EMAP:5768 ! TS22,elbow -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001517 ! skin of elbow -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5772 -name: TS22,dermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5771 ! TS22,skin,elbow -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:5773 -name: TS22,epidermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5771 ! TS22,skin,elbow -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:5774 -name: TS22,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0002386 ! forelimb zeugopod -relationship: part_of EMAP:5767 ! TS22,arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5775 -name: TS22,mesenchyme,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003327 ! mesenchyme of forearm -relationship: part_of EMAP:5774 ! TS22,forearm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5776 -name: TS22,radius cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006286 ! radius cartilage condensation -relationship: part_of EMAP:5775 ! TS22,mesenchyme,forearm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006286 ! radius cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5777 -name: TS22,ulna cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006306 ! ulna cartilage condensation -relationship: part_of EMAP:5775 ! TS22,mesenchyme,forearm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006306 ! ulna cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5778 -name: TS22,skin,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003403 ! skin of forearm -relationship: part_of EMAP:5774 ! TS22,forearm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003403 ! skin of forearm -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5779 -name: TS22,dermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5778 ! TS22,skin,forearm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:578 -name: TS13,cardiac jelly,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005263 ! outflow tract cardiac jelly -relationship: part_of EMAP:577 ! TS13,outflow tract,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005263 ! outflow tract cardiac jelly -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5780 -name: TS22,epidermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5778 ! TS22,skin,forearm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:5781 -name: TS22,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001467 ! shoulder -relationship: part_of EMAP:5767 ! TS22,arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001467 ! shoulder -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5782 -name: TS22,mesenchyme,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003322 ! mesenchyme of shoulder -relationship: part_of EMAP:5781 ! TS22,shoulder -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5783 -name: TS22,shoulder joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006292 ! shoulder joint primordium -relationship: part_of EMAP:5782 ! TS22,mesenchyme,shoulder -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006292 ! shoulder joint primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5784 -name: TS22,skin,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001483 ! skin of shoulder -relationship: part_of EMAP:5781 ! TS22,shoulder -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001483 ! skin of shoulder -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5785 -name: TS22,dermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5784 ! TS22,skin,shoulder -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:5786 -name: TS22,epidermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5784 ! TS22,skin,shoulder -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:5787 -name: TS22,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003822 ! forelimb stylopod -relationship: part_of EMAP:5767 ! TS22,arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5788 -name: TS22,mesenchyme,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005258 ! upper arm mesenchyme -relationship: part_of EMAP:5787 ! TS22,upper arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5789 -name: TS22,humerus cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006245 ! humerus cartilage condensation -relationship: part_of EMAP:5788 ! TS22,mesenchyme,upper arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006245 ! humerus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:579 -name: TS13,endocardial tube,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:577 ! TS13,outflow tract,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:5790 -name: TS22,skin,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0002427 ! arm skin -relationship: part_of EMAP:5787 ! TS22,upper arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5791 -name: TS22,dermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5790 ! TS22,skin,upper arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:5792 -name: TS22,epidermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5790 ! TS22,skin,upper arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:5793 -name: TS22,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002398 ! manus -relationship: part_of EMAP:5766 ! TS22,forelimb -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002398 ! manus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5794 -name: TS22,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001463 ! manual digit 1 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5795 -name: TS22,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010564 ! manual digit 1 mesenchyme -relationship: part_of EMAP:5794 ! TS22,digit 1,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5796 -name: TS22,metacarpus cartilage condensation,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010570 ! manual digit 1 metacarpus cartilage condensation -relationship: part_of EMAP:5795 ! TS22,mesenchyme,digit 1,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010570 ! manual digit 1 metacarpus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5797 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010675 ! manual digit 1 phalanx cartilage condensation -relationship: part_of EMAP:5795 ! TS22,mesenchyme,digit 1,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010675 ! manual digit 1 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5798 -name: TS22,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5794 ! TS22,digit 1,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:5799 -name: TS22,dermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5798 ! TS22,skin,digit 1,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:58 -name: TS8,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:57 ! TS8,embryo -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:580 -name: TS13,mesenchyme,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:577 ! TS13,outflow tract,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:5800 -name: TS22,epidermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5798 ! TS22,skin,digit 1,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:5801 -name: TS22,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003622 ! manual digit 2 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5802 -name: TS22,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005692 ! manual digit 2 mesenchyme -relationship: part_of EMAP:5801 ! TS22,digit 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5803 -name: TS22,metacarpus cartilage condensation,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010571 ! manual digit 2 metacarpus cartilage condensation -relationship: part_of EMAP:5802 ! TS22,mesenchyme,digit 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010571 ! manual digit 2 metacarpus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5804 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010676 ! manual digit 2 phalanx cartilage condensation -relationship: part_of EMAP:5802 ! TS22,mesenchyme,digit 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010676 ! manual digit 2 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5805 -name: TS22,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5801 ! TS22,digit 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:5806 -name: TS22,dermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5805 ! TS22,skin,digit 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:5807 -name: TS22,epidermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5805 ! TS22,skin,digit 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:5808 -name: TS22,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003623 ! manual digit 3 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5809 -name: TS22,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005693 ! manual digit 3 mesenchyme -relationship: part_of EMAP:5808 ! TS22,digit 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:581 -name: TS13,primitive ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006283 ! primitive ventricle of heart -relationship: part_of EMAP:560 ! TS13,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006283 ! primitive ventricle of heart -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5810 -name: TS22,metacarpus cartilage condensation,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010572 ! manual digit 3 metacarpus cartilage condensation -relationship: part_of EMAP:5809 ! TS22,mesenchyme,digit 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010572 ! manual digit 3 metacarpus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5811 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010677 ! manual digit 3 phalanx cartilage condensation -relationship: part_of EMAP:5809 ! TS22,mesenchyme,digit 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010677 ! manual digit 3 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5812 -name: TS22,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5808 ! TS22,digit 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:5813 -name: TS22,dermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5812 ! TS22,skin,digit 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:5814 -name: TS22,epidermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5812 ! TS22,skin,digit 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:5815 -name: TS22,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003624 ! manual digit 4 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5816 -name: TS22,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005694 ! manual digit 4 mesenchyme -relationship: part_of EMAP:5815 ! TS22,digit 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5817 -name: TS22,metacarpus cartilage condensation,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010573 ! manual digit 4 metacarpus cartilage condensation -relationship: part_of EMAP:5816 ! TS22,mesenchyme,digit 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010573 ! manual digit 4 metacarpus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5818 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010678 ! manual digit 4 phalanx cartilage condensation -relationship: part_of EMAP:5816 ! TS22,mesenchyme,digit 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010678 ! manual digit 4 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5819 -name: TS22,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5815 ! TS22,digit 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:582 -name: TS13,cardiac jelly,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:581 ! TS13,primitive ventricle -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:5820 -name: TS22,dermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5819 ! TS22,skin,digit 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:5821 -name: TS22,epidermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5819 ! TS22,skin,digit 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:5822 -name: TS22,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003625 ! manual digit 5 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5823 -name: TS22,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005695 ! manual digit 5 mesenchyme -relationship: part_of EMAP:5822 ! TS22,digit 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5824 -name: TS22,metacarpus cartilage condensation,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010574 ! manual digit 5 metacarpus cartilage condensation -relationship: part_of EMAP:5823 ! TS22,mesenchyme,digit 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010574 ! manual digit 5 metacarpus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5825 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010679 ! manual digit 5 phalanx cartilage condensation -relationship: part_of EMAP:5823 ! TS22,mesenchyme,digit 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010679 ! manual digit 5 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5826 -name: TS22,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5822 ! TS22,digit 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:5827 -name: TS22,dermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5826 ! TS22,skin,digit 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:5828 -name: TS22,epidermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5826 ! TS22,skin,digit 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:5829 -name: TS22,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:583 -name: TS13,endocardial tube,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:581 ! TS13,primitive ventricle -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:5830 -name: TS22,mesenchyme,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:5829 ! TS22,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5831 -name: TS22,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5829 ! TS22,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:5832 -name: TS22,dermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5831 ! TS22,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:5833 -name: TS22,epidermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5831 ! TS22,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:5834 -name: TS22,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5835 -name: TS22,mesenchyme,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:5834 ! TS22,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5836 -name: TS22,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5834 ! TS22,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:5837 -name: TS22,dermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5836 ! TS22,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:5838 -name: TS22,epidermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5836 ! TS22,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:5839 -name: TS22,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:584 -name: TS13,cardiac muscle,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:581 ! TS13,primitive ventricle -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:5840 -name: TS22,mesenchyme,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:5839 ! TS22,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5841 -name: TS22,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5839 ! TS22,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:5842 -name: TS22,dermis,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5841 ! TS22,skin,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:5843 -name: TS22,epidermis,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5841 ! TS22,skin,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:5844 -name: TS22,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5845 -name: TS22,mesenchyme,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:5844 ! TS22,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5846 -name: TS22,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5844 ! TS22,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:5847 -name: TS22,dermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5846 ! TS22,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:5848 -name: TS22,epidermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5846 ! TS22,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:5849 -name: TS22,mesenchyme,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:585 -name: TS13,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:560 ! TS13,heart -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5850 -name: TS22,carpus cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006213 ! carpus cartilage condensation -relationship: part_of EMAP:5849 ! TS22,mesenchyme,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006213 ! carpus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5851 -name: TS22,rest of skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5793 ! TS22,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:5852 -name: TS22,dermis,rest of skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5851 ! TS22,rest of skin,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:5853 -name: TS22,epidermis,rest of skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5851 ! TS22,rest of skin,handplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:5854 -name: TS22,hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002103 ! hindlimb -relationship: part_of EMAP:5765 ! TS22,limb -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5855 -name: TS22,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002387 ! pes -relationship: part_of EMAP:5854 ! TS22,hindlimb -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002387 ! pes -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5856 -name: TS22,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003631 ! pedal digit 1 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5857 -name: TS22,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010562 ! pedal digit 1 mesenchyme -relationship: part_of EMAP:5856 ! TS22,digit 1,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5858 -name: TS22,metatarsus cartilage condensation,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010557 ! pedal digit 1 metatarsal cartilage condensation -relationship: part_of EMAP:5857 ! TS22,mesenchyme,digit 1,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010557 ! pedal digit 1 metatarsal cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5859 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010680 ! pedal digit 1 phalanx cartilage condensation -relationship: part_of EMAP:5857 ! TS22,mesenchyme,digit 1,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010680 ! pedal digit 1 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:586 -name: TS13,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:585 ! TS13,sinus venosus -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5860 -name: TS22,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5856 ! TS22,digit 1,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:5861 -name: TS22,dermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5860 ! TS22,skin,digit 1,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:5862 -name: TS22,epidermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5860 ! TS22,skin,digit 1,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:5863 -name: TS22,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003632 ! pedal digit 2 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5864 -name: TS22,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005696 ! pedal digit 2 mesenchyme -relationship: part_of EMAP:5863 ! TS22,digit 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5865 -name: TS22,metatarsus cartilage condensation,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010558 ! pedal digit 2 metatarsal cartilage condensation -relationship: part_of EMAP:5864 ! TS22,mesenchyme,digit 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010558 ! pedal digit 2 metatarsal cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5866 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010681 ! pedal digit 2 phalanx cartilage condensation -relationship: part_of EMAP:5864 ! TS22,mesenchyme,digit 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010681 ! pedal digit 2 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5867 -name: TS22,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5863 ! TS22,digit 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:5868 -name: TS22,dermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5867 ! TS22,skin,digit 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:5869 -name: TS22,epidermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5867 ! TS22,skin,digit 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:587 -name: TS13,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:585 ! TS13,sinus venosus -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5870 -name: TS22,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003633 ! pedal digit 3 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5871 -name: TS22,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005697 ! pedal digit 3 mesenchyme -relationship: part_of EMAP:5870 ! TS22,digit 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5872 -name: TS22,metatarsus cartilage condensation,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010559 ! pedal digit 3 metatarsal cartilage condensation -relationship: part_of EMAP:5871 ! TS22,mesenchyme,digit 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010559 ! pedal digit 3 metatarsal cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5873 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010682 ! pedal digit 3 phalanx cartilage condensation -relationship: part_of EMAP:5871 ! TS22,mesenchyme,digit 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010682 ! pedal digit 3 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5874 -name: TS22,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5870 ! TS22,digit 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:5875 -name: TS22,dermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5874 ! TS22,skin,digit 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:5876 -name: TS22,epidermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5874 ! TS22,skin,digit 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:5877 -name: TS22,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003634 ! pedal digit 4 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5878 -name: TS22,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005698 ! pedal digit 4 mesenchyme -relationship: part_of EMAP:5877 ! TS22,digit 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5879 -name: TS22,metatarsus cartilage condensation,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010560 ! pedal digit 4 metatarsal cartilage condensation -relationship: part_of EMAP:5878 ! TS22,mesenchyme,digit 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010560 ! pedal digit 4 metatarsal cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:588 -name: TS13,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:546 ! TS13,cardiovascular system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5880 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010683 ! pedal digit 4 phalanx cartilage condensation -relationship: part_of EMAP:5878 ! TS22,mesenchyme,digit 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010683 ! pedal digit 4 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5881 -name: TS22,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5877 ! TS22,digit 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:5882 -name: TS22,dermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5881 ! TS22,skin,digit 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:5883 -name: TS22,epidermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5881 ! TS22,skin,digit 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:5884 -name: TS22,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003635 ! pedal digit 5 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5885 -name: TS22,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005699 ! pedal digit 5 mesenchyme -relationship: part_of EMAP:5884 ! TS22,digit 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5886 -name: TS22,metatarsus cartilage condensation,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010561 ! pedal digit 5 metatarsal cartilage condensation -relationship: part_of EMAP:5885 ! TS22,mesenchyme,digit 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010561 ! pedal digit 5 metatarsal cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5887 -name: TS22,phalanx cartilage condensation,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010684 ! pedal digit 5 phalanx cartilage condensation -relationship: part_of EMAP:5885 ! TS22,mesenchyme,digit 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010684 ! pedal digit 5 phalanx cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5888 -name: TS22,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5884 ! TS22,digit 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:5889 -name: TS22,dermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5888 ! TS22,skin,digit 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:589 -name: TS13,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004344 ! cardinal vein -relationship: part_of EMAP:588 ! TS13,venous system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5890 -name: TS22,epidermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5888 ! TS22,skin,digit 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:5891 -name: TS22,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5892 -name: TS22,mesenchyme,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:5891 ! TS22,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5893 -name: TS22,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5891 ! TS22,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:5894 -name: TS22,dermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5893 ! TS22,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:5895 -name: TS22,epidermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5893 ! TS22,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:5896 -name: TS22,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5897 -name: TS22,mesenchyme,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:5896 ! TS22,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5898 -name: TS22,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5896 ! TS22,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:5899 -name: TS22,dermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5898 ! TS22,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:59 -name: TS8,embryonic component of the proamniotic cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:58 ! TS8,cavities and their linings -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -relationship: part_of UBERON:0004458 ! body cavity or lining - -[Term] -id: EMAP:590 -name: TS13,anterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:589 ! TS13,cardinal vein -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5900 -name: TS22,epidermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5898 ! TS22,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:5901 -name: TS22,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5902 -name: TS22,mesenchyme,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:5901 ! TS22,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5903 -name: TS22,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5901 ! TS22,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:5904 -name: TS22,dermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5903 ! TS22,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:5905 -name: TS22,epidermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5903 ! TS22,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:5906 -name: TS22,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5907 -name: TS22,mesenchyme,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:5906 ! TS22,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5908 -name: TS22,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5906 ! TS22,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:5909 -name: TS22,dermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5908 ! TS22,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:591 -name: TS13,common,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002064 ! common cardinal vein -relationship: part_of EMAP:589 ! TS13,cardinal vein -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5910 -name: TS22,epidermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5908 ! TS22,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:5911 -name: TS22,mesenchyme,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:5912 -name: TS22,future tarsus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5911 ! TS22,mesenchyme,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:5913 -name: TS22,calcaneum cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010842 ! calcaneum cartilage condensation -relationship: part_of EMAP:5912 ! TS22,future tarsus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010842 ! calcaneum cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5914 -name: TS22,other mesenchyme,future tarsus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5912 ! TS22,future tarsus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:5915 -name: TS22,talus cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5912 ! TS22,future tarsus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:5916 -name: TS22,rest of skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5855 ! TS22,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:5917 -name: TS22,dermis,rest of skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5916 ! TS22,rest of skin,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:5918 -name: TS22,epidermis,rest of skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5916 ! TS22,rest of skin,footplate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:5919 -name: TS22,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000978 ! leg -relationship: part_of EMAP:5854 ! TS22,hindlimb -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000978 ! leg -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:592 -name: TS13,posterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002065 ! posterior cardinal vein -relationship: part_of EMAP:589 ! TS13,cardinal vein -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5920 -name: TS22,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001464 ! hip -relationship: part_of EMAP:5919 ! TS22,leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001464 ! hip -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5921 -name: TS22,mesenchyme,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003320 ! mesenchyme of hip -relationship: part_of EMAP:5920 ! TS22,hip -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5922 -name: TS22,hip joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006244 ! hip joint primordium -relationship: part_of EMAP:5921 ! TS22,mesenchyme,hip -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006244 ! hip joint primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5923 -name: TS22,skin,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001554 ! skin of hip -relationship: part_of EMAP:5920 ! TS22,hip -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001554 ! skin of hip -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5924 -name: TS22,dermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5923 ! TS22,skin,hip -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:5925 -name: TS22,epidermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5923 ! TS22,skin,hip -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:5926 -name: TS22,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001465 ! knee -relationship: part_of EMAP:5919 ! TS22,leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001465 ! knee -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5927 -name: TS22,mesenchyme,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003321 ! mesenchyme of knee -relationship: part_of EMAP:5926 ! TS22,knee -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5928 -name: TS22,knee joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006256 ! knee joint primordium -relationship: part_of EMAP:5927 ! TS22,mesenchyme,knee -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006256 ! knee joint primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5929 -name: TS22,skin,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001510 ! skin of knee -relationship: part_of EMAP:5926 ! TS22,knee -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001510 ! skin of knee -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:593 -name: TS13,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:588 ! TS13,venous system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5930 -name: TS22,dermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5929 ! TS22,skin,knee -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:5931 -name: TS22,epidermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5929 ! TS22,skin,knee -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:5932 -name: TS22,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003823 ! hindlimb zeugopod -relationship: part_of EMAP:5919 ! TS22,leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5933 -name: TS22,mesenchyme,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005259 ! lower leg mesenchyme -relationship: part_of EMAP:5932 ! TS22,lower leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5934 -name: TS22,fibular cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010851 ! fibula cartilaginous condensation -relationship: part_of EMAP:5933 ! TS22,mesenchyme,lower leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010851 ! fibula cartilaginous condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5935 -name: TS22,tibia cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010849 ! tibia cartilaginous condensation -relationship: part_of EMAP:5933 ! TS22,mesenchyme,lower leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010849 ! tibia cartilaginous condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5936 -name: TS22,skin,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:5932 ! TS22,lower leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5937 -name: TS22,dermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5936 ! TS22,skin,lower leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:5938 -name: TS22,epidermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5936 ! TS22,skin,lower leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:5939 -name: TS22,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000376 ! hindlimb stylopod -relationship: part_of EMAP:5919 ! TS22,leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:594 -name: TS13,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:588 ! TS13,venous system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5940 -name: TS22,mesenchyme,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005254 ! upper leg mesenchyme -relationship: part_of EMAP:5939 ! TS22,upper leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5941 -name: TS22,femur cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010129 ! femur cartilage condensation -relationship: part_of EMAP:5940 ! TS22,mesenchyme,upper leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010129 ! femur cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5942 -name: TS22,skin,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:5939 ! TS22,upper leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5943 -name: TS22,dermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5942 ! TS22,skin,upper leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:5944 -name: TS22,epidermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5942 ! TS22,skin,upper leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:5945 -name: TS22,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:5719 ! TS22,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5946 -name: TS22,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:5945 ! TS22,mesenchyme,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5947 -name: TS22,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:5945 ! TS22,mesenchyme,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5948 -name: TS22,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:5947 ! TS22,trunk mesenchyme -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5949 -name: TS22,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5719 ! TS22,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:595 -name: TS13,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:594 ! TS13,umbilical vein -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5950 -name: TS22,anterior abdominal wall -namespace: mouse_anatomy_stages -is_a: UBERON:0006635 ! anterior abdominal wall -relationship: part_of EMAP:5949 ! TS22,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006635 ! anterior abdominal wall -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5951 -name: TS22,skeletal muscle,anterior abdominal wall -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5950 ! TS22,anterior abdominal wall -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006635 ! anterior abdominal wall - -[Term] -id: EMAP:5952 -name: TS22,external oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005442 ! external oblique -relationship: part_of EMAP:5951 ! TS22,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005442 ! external oblique -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5953 -name: TS22,internal oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005454 ! internal oblique -relationship: part_of EMAP:5951 ! TS22,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005454 ! internal oblique -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5954 -name: TS22,rectus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0002382 ! rectus abdominis muscle -relationship: part_of EMAP:5951 ! TS22,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5955 -name: TS22,transversus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0001221 ! transversus abdominis muscle -relationship: part_of EMAP:5951 ! TS22,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5956 -name: TS22,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:5949 ! TS22,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5957 -name: TS22,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:5956 ! TS22,axial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5958 -name: TS22,erector spinae -namespace: mouse_anatomy_stages -is_a: UBERON:0002462 ! erector spinae muscle group -relationship: part_of EMAP:5957 ! TS22,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5959 -name: TS22,psoas major -namespace: mouse_anatomy_stages -is_a: UBERON:0001298 ! psoas major muscle -relationship: part_of EMAP:5957 ! TS22,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001298 ! psoas major muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:596 -name: TS13,right,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005471 ! right umbilical vein -relationship: part_of EMAP:594 ! TS13,umbilical vein -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5960 -name: TS22,psoas minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001372 ! psoas minor muscle -relationship: part_of EMAP:5957 ! TS22,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001372 ! psoas minor muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5961 -name: TS22,cranial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0002376 ! muscle of head -relationship: part_of EMAP:5949 ! TS22,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002376 ! muscle of head -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5962 -name: TS22,skeletal muscle,cranial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5961 ! TS22,cranial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002376 ! muscle of head - -[Term] -id: EMAP:5963 -name: TS22,masseter -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5962 ! TS22,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5964 -name: TS22,myelohyoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5962 ! TS22,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5965 -name: TS22,sterno-mastoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5962 ! TS22,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5966 -name: TS22,temporalis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5962 ! TS22,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5967 -name: TS22,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5949 ! TS22,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:5968 -name: TS22,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5967 ! TS22,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:5969 -name: TS22,deltoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001476 ! deltoid -relationship: part_of EMAP:5968 ! TS22,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001476 ! deltoid -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:597 -name: TS13,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:588 ! TS13,venous system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5970 -name: TS22,latissimus dorsi -namespace: mouse_anatomy_stages -is_a: UBERON:0001112 ! latissimus dorsi muscle -relationship: part_of EMAP:5968 ! TS22,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5971 -name: TS22,pectoralis major -namespace: mouse_anatomy_stages -is_a: UBERON:0002381 ! pectoralis major -relationship: part_of EMAP:5968 ! TS22,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5972 -name: TS22,pectoralis minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001100 ! pectoralis minor -relationship: part_of EMAP:5968 ! TS22,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5973 -name: TS22,subscapularis -namespace: mouse_anatomy_stages -is_a: UBERON:0001129 ! subscapularis muscle -relationship: part_of EMAP:5968 ! TS22,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5974 -name: TS22,supraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0002383 ! supraspinatus muscle -relationship: part_of EMAP:5968 ! TS22,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5975 -name: TS22,trapezius -namespace: mouse_anatomy_stages -is_a: UBERON:0002380 ! trapezius -relationship: part_of EMAP:5968 ! TS22,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002380 ! trapezius -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5976 -name: TS22,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5949 ! TS22,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:5977 -name: TS22,skeletal muscle,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -is_a: UBERON:0003271 ! skeletal muscle of pelvic girdle -relationship: part_of EMAP:5976 ! TS22,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003271 ! skeletal muscle of pelvic girdle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5978 -name: TS22,gluteal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5977 ! TS22,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003271 ! skeletal muscle of pelvic girdle - -[Term] -id: EMAP:5979 -name: TS22,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0002416 ! integumental system -relationship: part_of EMAP:5720 ! TS22,organ system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002416 ! integumental system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:598 -name: TS13,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:533 ! TS13,organ system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5980 -name: TS22,muscle,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0004253 ! skin muscle -relationship: part_of EMAP:5979 ! TS22,integumental system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5981 -name: TS22,superficial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5980 ! TS22,muscle,integumental system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004253 ! skin muscle - -[Term] -id: EMAP:5982 -name: TS22,panniculus carnosus group -namespace: mouse_anatomy_stages -is_a: UBERON:0010934 ! panniculus carnosus -relationship: part_of EMAP:5981 ! TS22,superficial muscle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010934 ! panniculus carnosus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5983 -name: TS22,platysma -namespace: mouse_anatomy_stages -is_a: UBERON:0005467 ! platysma -relationship: part_of EMAP:5982 ! TS22,panniculus carnosus group -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005467 ! platysma -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5984 -name: TS22,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:5720 ! TS22,organ system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5985 -name: TS22,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:5984 ! TS22,nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5986 -name: TS22,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:5985 ! TS22,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5987 -name: TS22,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:5986 ! TS22,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:599 -name: TS13,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:598 ! TS13,visceral organ -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:5992 -name: TS22,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:5722 ! TS22,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5993 -name: TS22,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:5992 ! TS22,oral region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5994 -name: TS22,salivary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001044 ! salivary gland -relationship: part_of EMAP:5993 ! TS22,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001044 ! salivary gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5995 -name: TS22,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006297 ! sublingual gland primordium -relationship: part_of EMAP:5994 ! TS22,salivary gland -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006297 ! sublingual gland primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5996 -name: TS22,epithelium,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0004809 ! salivary gland epithelium -relationship: part_of EMAP:5995 ! TS22,sublingual gland primordium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004809 ! salivary gland epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5997 -name: TS22,mesenchyme,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0009538 ! mesenchyme of sublingual gland primordium -relationship: part_of EMAP:5995 ! TS22,sublingual gland primordium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009538 ! mesenchyme of sublingual gland primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5998 -name: TS22,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006298 ! submandibular gland primordium -relationship: part_of EMAP:5994 ! TS22,salivary gland -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006298 ! submandibular gland primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:5999 -name: TS22,epithelium,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0004809 ! salivary gland epithelium -relationship: part_of EMAP:5998 ! TS22,submandibular gland primordium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6 -name: TS2,two-cell stage -namespace: mouse_anatomy_stages -is_a: UBERON:0007232 ! 2 cell stage -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000005 ! Theiler stage 02 -intersection_of: UBERON:0007232 ! 2 cell stage -intersection_of: exists_during MmusDv:0000005 ! Theiler stage 02 - -[Term] -id: EMAP:60 -name: TS8,endoderm,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:57 ! TS8,embryo -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:600 -name: TS13,gut,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:599 ! TS13,alimentary system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6000 -name: TS22,mesenchyme,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0009539 ! mesenchyme of submandibular gland primordium -relationship: part_of EMAP:5998 ! TS22,submandibular gland primordium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009539 ! mesenchyme of submandibular gland primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6001 -name: TS22,gland,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0013158 ! foregut-midgut junction gland -relationship: part_of EMAP:5724 ! TS22,foregut-midgut junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0013158 ! foregut-midgut junction gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6002 -name: TS22,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001264 ! pancreas -relationship: part_of EMAP:6001 ! TS22,gland,foregut-midgut junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001264 ! pancreas -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6003 -name: TS22,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001150 ! body of pancreas -relationship: part_of EMAP:6002 ! TS22,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6004 -name: TS22,dorsal pancreatic duct,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:6003 ! TS22,body,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6005 -name: TS22,parenchyma,body,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6003 ! TS22,body,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001150 ! body of pancreas - -[Term] -id: EMAP:6006 -name: TS22,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001069 ! head of pancreas -relationship: part_of EMAP:6002 ! TS22,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6007 -name: TS22,parenchyma,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6006 ! TS22,head,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:6008 -name: TS22,uncinate process,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6006 ! TS22,head,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:6009 -name: TS22,ventral pancreatic duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6006 ! TS22,head,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:601 -name: TS13,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:600 ! TS13,gut,alimentary system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6010 -name: TS22,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001151 ! tail of pancreas -relationship: part_of EMAP:6002 ! TS22,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6011 -name: TS22,dorsal pancreatic duct,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:6010 ! TS22,tail,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6012 -name: TS22,parenchyma,tail,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6010 ! TS22,tail,pancreas -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001151 ! tail of pancreas - -[Term] -id: EMAP:6013 -name: TS22,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:5723 ! TS22,gut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6014 -name: TS22,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:6013 ! TS22,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6015 -name: TS22,thymus primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0005562 ! thymus primordium -relationship: part_of EMAP:6014 ! TS22,gland,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005562 ! thymus primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6016 -name: TS22,thyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:6014 ! TS22,gland,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6017 -name: TS22,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:5984 ! TS22,nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6018 -name: TS22,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:6017 ! TS22,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6019 -name: TS22,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:6018 ! TS22,brain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:602 -name: TS13,associated mesenchyme,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:601 ! TS13,foregut diverticulum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6020 -name: TS22,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:6019 ! TS22,forebrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6021 -name: TS22,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6022 -name: TS22,pituitary -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:6021 ! TS22,gland,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6023 -name: TS22,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002196 ! adenohypophysis -relationship: part_of EMAP:6022 ! TS22,pituitary -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6024 -name: TS22,pars anterior,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0006964 ! pars distalis of adenohypophysis -relationship: part_of EMAP:6023 ! TS22,adenohypophysis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6025 -name: TS22,pars intermedia,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis -relationship: part_of EMAP:6023 ! TS22,adenohypophysis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6026 -name: TS22,pars tuberalis,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002433 ! pars tuberalis of adenohypophysis -relationship: part_of EMAP:6023 ! TS22,adenohypophysis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6027 -name: TS22,remnant of Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0006377 ! remnant of Rathke's pouch -relationship: part_of EMAP:6023 ! TS22,adenohypophysis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6028 -name: TS22,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002198 ! neurohypophysis -relationship: part_of EMAP:6022 ! TS22,pituitary -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6029 -name: TS22,infundibulum,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002434 ! pituitary stalk -relationship: part_of EMAP:6028 ! TS22,neurohypophysis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:603 -name: TS13,endoderm,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:601 ! TS13,foregut diverticulum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6030 -name: TS22,median eminence,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002197 ! median eminence of neurohypophysis -relationship: part_of EMAP:6028 ! TS22,neurohypophysis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6031 -name: TS22,pars nervosa,neurohypophysis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6028 ! TS22,neurohypophysis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6032 -name: TS22,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:6016 ! TS22,thyroid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6033 -name: TS22,isthmus -namespace: mouse_anatomy_stages -is_a: UBERON:0001609 ! isthmus of thyroid gland -relationship: part_of EMAP:6016 ! TS22,thyroid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6034 -name: TS22,lobe,thyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0001118 ! lobe of thyroid gland -relationship: part_of EMAP:6016 ! TS22,thyroid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6035 -name: TS22,left,lobe,thyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0001120 ! left lobe of thyroid gland -relationship: part_of EMAP:6034 ! TS22,lobe,thyroid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001120 ! left lobe of thyroid gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6036 -name: TS22,right,lobe,thyroid -namespace: mouse_anatomy_stages -is_a: UBERON:0001119 ! right lobe of thyroid gland -relationship: part_of EMAP:6034 ! TS22,lobe,thyroid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001119 ! right lobe of thyroid gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6037 -name: TS22,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:6016 ! TS22,thyroid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6038 -name: TS22,gland,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0003297 ! gland of integumental system -relationship: part_of EMAP:5979 ! TS22,integumental system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6039 -name: TS22,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001911 ! mammary gland -relationship: part_of EMAP:6038 ! TS22,gland,integumental system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:604 -name: TS13,gland,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:601 ! TS13,foregut diverticulum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6040 -name: TS22,epithelium,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003244 ! epithelium of mammary gland -relationship: part_of EMAP:6039 ! TS22,mammary gland -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6041 -name: TS22,mesenchyme,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003326 ! mesenchyme of mammary gland -relationship: part_of EMAP:6039 ! TS22,mammary gland -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003326 ! mesenchyme of mammary gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6042 -name: TS22,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5979 ! TS22,integumental system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6043 -name: TS22,cervical sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6042 ! TS22,rest of skin -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6044 -name: TS22,dermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6042 ! TS22,rest of skin -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6045 -name: TS22,epidermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6042 ! TS22,rest of skin -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6046 -name: TS22,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6042 ! TS22,rest of skin -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6047 -name: TS22,dermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6046 ! TS22,vibrissa -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6048 -name: TS22,epidermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6046 ! TS22,vibrissa -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6049 -name: TS22,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:605 -name: TS13,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003091 ! thyroid primordium -relationship: part_of EMAP:604 ! TS13,gland,foregut diverticulum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6050 -name: TS22,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:6049 ! TS22,3rd ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6051 -name: TS22,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001899 ! epithalamus -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6052 -name: TS22,mantle layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013159 ! epithalamus mantle layer -relationship: part_of EMAP:6051 ! TS22,epithalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6053 -name: TS22,marginal layer,epithalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6051 ! TS22,epithalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:6054 -name: TS22,ventricular layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013160 ! epithalamus ventricular layer -relationship: part_of EMAP:6051 ! TS22,epithalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6055 -name: TS22,floor plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003309 ! floor plate of diencephalon -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6056 -name: TS22,hypothalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001898 ! hypothalamus -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6057 -name: TS22,mantle layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6056 ! TS22,hypothalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:6058 -name: TS22,marginal layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6056 ! TS22,hypothalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:6059 -name: TS22,ventricular layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6056 ! TS22,hypothalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:606 -name: TS13,associated mesenchyme,thyroid primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:605 ! TS13,thyroid primordium -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0003091 ! thyroid primordium - -[Term] -id: EMAP:6060 -name: TS22,internal capsule,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001887 ! internal capsule -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001887 ! internal capsule -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6061 -name: TS22,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6062 -name: TS22,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6063 -name: TS22,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:6062 ! TS22,lateral wall,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6064 -name: TS22,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6062 ! TS22,lateral wall,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:6065 -name: TS22,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6062 ! TS22,lateral wall,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:6066 -name: TS22,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003290 ! meninx of diencephalon -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6067 -name: TS22,arachnoid mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:6066 ! TS22,meninges,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6068 -name: TS22,dura mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:6066 ! TS22,meninges,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6069 -name: TS22,pia mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:6066 ! TS22,meninges,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:607 -name: TS13,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:600 ! TS13,gut,alimentary system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6070 -name: TS22,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6071 -name: TS22,thalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001897 ! thalamus -relationship: part_of EMAP:6020 ! TS22,diencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001897 ! thalamus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6072 -name: TS22,mantle layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6071 ! TS22,thalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:6073 -name: TS22,marginal layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6071 ! TS22,thalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:6074 -name: TS22,ventricular layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6071 ! TS22,thalamus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:6075 -name: TS22,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:6019 ! TS22,forebrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6076 -name: TS22,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0000956 ! cerebral cortex -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6077 -name: TS22,mantle layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6076 ! TS22,cerebral cortex -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:6078 -name: TS22,marginal layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6076 ! TS22,cerebral cortex -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:6079 -name: TS22,ventricular layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6076 ! TS22,cerebral cortex -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:608 -name: TS13,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:607 ! TS13,foregut-midgut junction -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6080 -name: TS22,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6081 -name: TS22,choroid fissure,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:6080 ! TS22,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6082 -name: TS22,choroid plexus,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6080 ! TS22,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002192 ! ventricular system choroidal fissure - -[Term] -id: EMAP:6083 -name: TS22,corpus striatum -namespace: mouse_anatomy_stages -is_a: UBERON:0000369 ! corpus striatum -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6084 -name: TS22,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001873 ! caudate nucleus -relationship: part_of EMAP:6083 ! TS22,corpus striatum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6085 -name: TS22,lentiform nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002263 ! lentiform nucleus -relationship: part_of EMAP:6083 ! TS22,corpus striatum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6086 -name: TS22,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6087 -name: TS22,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6086 ! TS22,lateral ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:6088 -name: TS22,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6086 ! TS22,lateral ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:6089 -name: TS22,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6086 ! TS22,lateral ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:609 -name: TS13,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:607 ! TS13,foregut-midgut junction -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6090 -name: TS22,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6086 ! TS22,lateral ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:6091 -name: TS22,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:6086 ! TS22,lateral ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6092 -name: TS22,mantle layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:6093 -name: TS22,marginal layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:6094 -name: TS22,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003289 ! meninx of telencephalon -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6095 -name: TS22,arachnoid mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:6094 ! TS22,meninges,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6096 -name: TS22,dura mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002363 ! dura mater -relationship: part_of EMAP:6094 ! TS22,meninges,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002363 ! dura mater -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6097 -name: TS22,pia mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:6094 ! TS22,meninges,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6098 -name: TS22,olfactory lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005366 ! olfactory lobe -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005366 ! olfactory lobe -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6099 -name: TS22,olfactory cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0002894 ! olfactory cortex -relationship: part_of EMAP:6098 ! TS22,olfactory lobe,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:61 -name: TS8,primitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008776 ! inner cell mass derived hypoblast -relationship: part_of EMAP:60 ! TS8,endoderm,embryo -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:610 -name: TS13,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:609 ! TS13,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6100 -name: TS22,mantle layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6099 ! TS22,olfactory cortex -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:6101 -name: TS22,marginal layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6099 ! TS22,olfactory cortex -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:6102 -name: TS22,ventricular layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6099 ! TS22,olfactory cortex -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:6103 -name: TS22,ventricular layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6075 ! TS22,telencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:6104 -name: TS22,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:6018 ! TS22,brain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6105 -name: TS22,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:6104 ! TS22,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6106 -name: TS22,lateral recess,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0007656 ! lateral recess of fourth ventricle -relationship: part_of EMAP:6105 ! TS22,4th ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6107 -name: TS22,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0001896 ! medulla oblongata -relationship: part_of EMAP:6104 ! TS22,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6108 -name: TS22,floor plate,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0003311 ! floor plate of medulla oblongata -relationship: part_of EMAP:6107 ! TS22,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6109 -name: TS22,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6107 ! TS22,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:611 -name: TS13,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:600 ! TS13,gut,alimentary system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6110 -name: TS22,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6109 ! TS22,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:6111 -name: TS22,mantle layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6110 ! TS22,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:6112 -name: TS22,marginal layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6110 ! TS22,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:6113 -name: TS22,ventricular layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6110 ! TS22,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:6114 -name: TS22,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0005240 ! basal plate medulla oblongata -relationship: part_of EMAP:6109 ! TS22,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6115 -name: TS22,mantle layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6114 ! TS22,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:6116 -name: TS22,marginal layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6114 ! TS22,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:6117 -name: TS22,ventricular layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6114 ! TS22,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:6118 -name: TS22,sulcus limitans,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0009576 ! medulla oblongata sulcus limitans -relationship: part_of EMAP:6109 ! TS22,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6119 -name: TS22,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6107 ! TS22,medulla oblongata -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:612 -name: TS13,associated mesenchyme,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:611 ! TS13,hindgut diverticulum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6120 -name: TS22,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003291 ! meninx of hindbrain -relationship: part_of EMAP:6104 ! TS22,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6121 -name: TS22,arachnoid mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003559 ! hindbrain arachnoid mater -relationship: part_of EMAP:6120 ! TS22,meninges,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003559 ! hindbrain arachnoid mater -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6122 -name: TS22,dura mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:6120 ! TS22,meninges,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6123 -name: TS22,falx cerebri -namespace: mouse_anatomy_stages -is_a: UBERON:0006059 ! falx cerebri -relationship: part_of EMAP:6122 ! TS22,dura mater,meninges,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006059 ! falx cerebri -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6124 -name: TS22,tentorium cerebelli -namespace: mouse_anatomy_stages -is_a: UBERON:0006691 ! tentorium cerebelli -relationship: part_of EMAP:6122 ! TS22,dura mater,meninges,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006691 ! tentorium cerebelli -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6125 -name: TS22,pia mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003554 ! hindbrain pia mater -relationship: part_of EMAP:6120 ! TS22,meninges,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6126 -name: TS22,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005219 ! hindbrain subarachnoid space -relationship: part_of EMAP:6120 ! TS22,meninges,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005219 ! hindbrain subarachnoid space -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6127 -name: TS22,pontine cistern -namespace: mouse_anatomy_stages -is_a: UBERON:0004048 ! pontine cistern -relationship: part_of EMAP:6126 ! TS22,subarachnoid space,meninges,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004048 ! pontine cistern -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6128 -name: TS22,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:6104 ! TS22,hindbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6129 -name: TS22,floor plate,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003310 ! floor plate of metencephalon -relationship: part_of EMAP:6128 ! TS22,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003310 ! floor plate of metencephalon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:613 -name: TS13,endoderm,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:611 ! TS13,hindgut diverticulum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6130 -name: TS22,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6128 ! TS22,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:6131 -name: TS22,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6130 ! TS22,lateral wall,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:6132 -name: TS22,cerebellum -namespace: mouse_anatomy_stages -is_a: UBERON:0002037 ! cerebellum -relationship: part_of EMAP:6131 ! TS22,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6133 -name: TS22,mantle layer,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6132 ! TS22,cerebellum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:6134 -name: TS22,marginal layer,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6132 ! TS22,cerebellum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:6135 -name: TS22,ventricular layer,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6132 ! TS22,cerebellum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:6136 -name: TS22,mantle layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6131 ! TS22,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:6137 -name: TS22,marginal layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6131 ! TS22,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:6138 -name: TS22,ventricular layer,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6131 ! TS22,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:6139 -name: TS22,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:6130 ! TS22,lateral wall,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:614 -name: TS13,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:600 ! TS13,gut,alimentary system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6140 -name: TS22,pons -namespace: mouse_anatomy_stages -is_a: UBERON:0000988 ! pons -relationship: part_of EMAP:6139 ! TS22,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000988 ! pons -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6141 -name: TS22,mantle layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6140 ! TS22,pons -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:6142 -name: TS22,marginal layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6140 ! TS22,pons -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:6143 -name: TS22,ventricular layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6140 ! TS22,pons -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:6144 -name: TS22,sulcus limitans,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009577 ! metencephalon sulcus limitans -relationship: part_of EMAP:6130 ! TS22,lateral wall,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6145 -name: TS22,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6128 ! TS22,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:6146 -name: TS22,choroid plexus,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6145 ! TS22,roof,metencephalon -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:6147 -name: TS22,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:6018 ! TS22,brain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6148 -name: TS22,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003288 ! meninx of midbrain -relationship: part_of EMAP:6147 ! TS22,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6149 -name: TS22,arachnoid mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003557 ! midbrain arachnoid mater -relationship: part_of EMAP:6148 ! TS22,meninges,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003557 ! midbrain arachnoid mater -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:615 -name: TS13,associated mesenchyme,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009478 ! associated mesenchyme of midgut -relationship: part_of EMAP:614 ! TS13,midgut -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009478 ! associated mesenchyme of midgut -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6150 -name: TS22,dura mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:6148 ! TS22,meninges,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6151 -name: TS22,pia mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003551 ! midbrain pia mater -relationship: part_of EMAP:6148 ! TS22,meninges,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6152 -name: TS22,cerebral aqueduct -namespace: mouse_anatomy_stages -is_a: UBERON:0002289 ! midbrain cerebral aqueduct -relationship: part_of EMAP:6147 ! TS22,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6153 -name: TS22,floor plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003307 ! floor plate of midbrain -relationship: part_of EMAP:6147 ! TS22,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6154 -name: TS22,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:6147 ! TS22,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6155 -name: TS22,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:6154 ! TS22,lateral wall,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6156 -name: TS22,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6154 ! TS22,lateral wall,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:6157 -name: TS22,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6154 ! TS22,lateral wall,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:6158 -name: TS22,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003299 ! roof plate of midbrain -relationship: part_of EMAP:6147 ! TS22,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6159 -name: TS22,tegmentum,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001943 ! midbrain tegmentum -relationship: part_of EMAP:6147 ! TS22,midbrain -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:616 -name: TS13,endoderm,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003259 ! endoderm of midgut -relationship: part_of EMAP:614 ! TS13,midgut -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0003259 ! endoderm of midgut -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6160 -name: TS22,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:6017 ! TS22,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6161 -name: TS22,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:6160 ! TS22,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6162 -name: TS22,facial VII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:6161 ! TS22,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6163 -name: TS22,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:6161 ! TS22,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6164 -name: TS22,inferior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6163 ! TS22,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:6165 -name: TS22,superior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6163 ! TS22,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:6166 -name: TS22,trigeminal V,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:6161 ! TS22,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6167 -name: TS22,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:6161 ! TS22,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6168 -name: TS22,inferior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:6167 ! TS22,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6169 -name: TS22,superior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:6167 ! TS22,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:617 -name: TS13,mouth-foregut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006264 ! mouth-foregut junction -relationship: part_of EMAP:599 ! TS13,alimentary system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006264 ! mouth-foregut junction -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6170 -name: TS22,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002827 ! auditory ganglion -relationship: part_of EMAP:6161 ! TS22,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002827 ! auditory ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6171 -name: TS22,cochlear component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6170 ! TS22,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002827 ! auditory ganglion - -[Term] -id: EMAP:6172 -name: TS22,vestibular component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002824 ! vestibular ganglion -relationship: part_of EMAP:6170 ! TS22,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6173 -name: TS22,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:6017 ! TS22,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6174 -name: TS22,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:6173 ! TS22,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6175 -name: TS22,abducent VI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001785 ! cranial nerve - -[Term] -id: EMAP:6176 -name: TS22,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6177 -name: TS22,cranial component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009673 ! accessory XI nerve cranial component -relationship: part_of EMAP:6176 ! TS22,accessory XI -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6178 -name: TS22,spinal component,accessory XI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6176 ! TS22,accessory XI -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002019 ! accessory XI nerve - -[Term] -id: EMAP:6179 -name: TS22,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001647 ! facial nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:618 -name: TS13,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006211 ! buccopharyngeal membrane -relationship: part_of EMAP:617 ! TS13,mouth-foregut junction -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0006211 ! buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6180 -name: TS22,chorda tympani branch,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009675 ! facial VII nerve chorda tympani branch -relationship: part_of EMAP:6179 ! TS22,facial VII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009675 ! facial VII nerve chorda tympani branch -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6181 -name: TS22,glossopharyngeal IX,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001649 ! glossopharyngeal nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6182 -name: TS22,hypoglossal XII -namespace: mouse_anatomy_stages -is_a: UBERON:0001650 ! hypoglossal nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6183 -name: TS22,oculomotor III -namespace: mouse_anatomy_stages -is_a: UBERON:0001643 ! oculomotor nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6184 -name: TS22,olfactory I -namespace: mouse_anatomy_stages -is_a: UBERON:0001579 ! olfactory nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6185 -name: TS22,optic II -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6186 -name: TS22,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001645 ! trigeminal nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6187 -name: TS22,mandibular division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6186 ! TS22,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:6188 -name: TS22,maxillary division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6186 ! TS22,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:6189 -name: TS22,ophthalmic division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000348 ! ophthalmic nerve -relationship: part_of EMAP:6186 ! TS22,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:619 -name: TS13,ectoderm,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009479 ! ectoderm of buccopharyngeal membrane -relationship: part_of EMAP:618 ! TS13,buccopharyngeal membrane -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009479 ! ectoderm of buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6190 -name: TS22,trochlear IV -namespace: mouse_anatomy_stages -is_a: UBERON:0001644 ! trochlear nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6191 -name: TS22,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001648 ! vestibulocochlear nerve -relationship: part_of EMAP:6174 ! TS22,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6192 -name: TS22,cochlear component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6191 ! TS22,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:6193 -name: TS22,vestibular component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6191 ! TS22,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:6194 -name: TS22,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:6017 ! TS22,central nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6195 -name: TS22,conus medullaris,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005437 ! conus medullaris -relationship: part_of EMAP:6194 ! TS22,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005437 ! conus medullaris -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6196 -name: TS22,filum terminale,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005443 ! filum terminale -relationship: part_of EMAP:6194 ! TS22,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005443 ! filum terminale -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6197 -name: TS22,floor plate,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005723 ! floor plate spinal cord region -relationship: part_of EMAP:6194 ! TS22,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005723 ! floor plate spinal cord region -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6198 -name: TS22,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009582 ! spinal cord lateral wall -relationship: part_of EMAP:6194 ! TS22,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6199 -name: TS22,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009583 ! spinal cord mantle layer -relationship: part_of EMAP:6198 ! TS22,lateral wall,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009583 ! spinal cord mantle layer -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:62 -name: TS8,epiblast -namespace: mouse_anatomy_stages -is_a: UBERON:0008780 ! inner cell mass derived epiblast -relationship: part_of EMAP:57 ! TS8,embryo -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0008780 ! inner cell mass derived epiblast -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:620 -name: TS13,endoderm,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009480 ! endoderm of buccopharyngeal membrane -relationship: part_of EMAP:618 ! TS13,buccopharyngeal membrane -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009480 ! endoderm of buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6200 -name: TS22,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:6199 ! TS22,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6201 -name: TS22,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6199 ! TS22,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:6202 -name: TS22,marginal layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6198 ! TS22,lateral wall,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009582 ! spinal cord lateral wall - -[Term] -id: EMAP:6203 -name: TS22,sulcus limitans,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009570 ! spinal cord sulcus limitans -relationship: part_of EMAP:6198 ! TS22,lateral wall,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6204 -name: TS22,ventricular layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005359 ! spinal cord ependyma -relationship: part_of EMAP:6198 ! TS22,lateral wall,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6205 -name: TS22,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003292 ! meninx of spinal cord -relationship: part_of EMAP:6194 ! TS22,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6206 -name: TS22,arachnoid mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003560 ! spinal cord arachnoid mater -relationship: part_of EMAP:6205 ! TS22,meninges,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003560 ! spinal cord arachnoid mater -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6207 -name: TS22,dura mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002093 ! spinal dura mater -relationship: part_of EMAP:6205 ! TS22,meninges,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6208 -name: TS22,pia mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003555 ! spinal cord pia mater -relationship: part_of EMAP:6205 ! TS22,meninges,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6209 -name: TS22,roof plate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6194 ! TS22,spinal cord -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002240 ! spinal cord - -[Term] -id: EMAP:621 -name: TS13,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:599 ! TS13,alimentary system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6210 -name: TS22,ganglion,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:5986 ! TS22,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6211 -name: TS22,ciliary ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0002058 ! ciliary ganglion -relationship: part_of EMAP:6210 ! TS22,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002058 ! ciliary ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6212 -name: TS22,paraganglion of Zuckerkandl -namespace: mouse_anatomy_stages -is_a: UBERON:0001237 ! paraaortic body -relationship: part_of EMAP:6210 ! TS22,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6213 -name: TS22,nerve plexus,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001816 ! autonomic nerve plexus -relationship: part_of EMAP:5986 ! TS22,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001816 ! autonomic nerve plexus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6214 -name: TS22,hypogastric plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005303 ! hypogastric nerve -relationship: part_of EMAP:6213 ! TS22,nerve plexus,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005303 ! hypogastric nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6215 -name: TS22,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000011 ! parasympathetic nervous system -relationship: part_of EMAP:5986 ! TS22,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6216 -name: TS22,nerve,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004293 ! parasympathetic nerve -relationship: part_of EMAP:6215 ! TS22,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6217 -name: TS22,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0006308 ! vagal X nerve trunk -relationship: part_of EMAP:6216 ! TS22,nerve,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006308 ! vagal X nerve trunk -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6218 -name: TS22,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6217 ! TS22,vagal X nerve trunk -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6219 -name: TS22,recurrent laryngeal branch,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6218 ! TS22,left recurrent laryngeal branch,vagal X nerve trunk -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:622 -name: TS13,stomatodaeum -namespace: mouse_anatomy_stages -is_a: UBERON:0000930 ! stomodeum -relationship: part_of EMAP:621 ! TS13,oral region,alimentary system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6220 -name: TS22,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -relationship: part_of EMAP:6217 ! TS22,vagal X nerve trunk -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6221 -name: TS22,recurrent laryngeal branch,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6220 ! TS22,right recurrent laryngeal branch,vagal X nerve trunk -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6222 -name: TS22,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:5987 ! TS22,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6223 -name: TS22,cervico-thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002441 ! cervicothoracic ganglion -relationship: part_of EMAP:6222 ! TS22,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002441 ! cervicothoracic ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6227 -name: TS22,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:6222 ! TS22,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6228 -name: TS22,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:5987 ! TS22,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6229 -name: TS22,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:5985 ! TS22,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:623 -name: TS13,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0004122 ! genitourinary system -relationship: part_of EMAP:598 ! TS13,visceral organ -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6230 -name: TS22,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6229 ! TS22,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:6231 -name: TS22,dorsal root ganglion,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:6230 ! TS22,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6232 -name: TS22,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:6229 ! TS22,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6233 -name: TS22,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:6232 ! TS22,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6234 -name: TS22,median nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001148 ! median nerve -relationship: part_of EMAP:6233 ! TS22,brachial plexus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001148 ! median nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6235 -name: TS22,radial nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001492 ! radial nerve -relationship: part_of EMAP:6233 ! TS22,brachial plexus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6236 -name: TS22,ulnar nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001494 ! ulnar nerve -relationship: part_of EMAP:6233 ! TS22,brachial plexus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6237 -name: TS22,lumbo-sacral plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001815 ! lumbosacral nerve plexus -relationship: part_of EMAP:6232 ! TS22,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6238 -name: TS22,sciatic,lumbo-sacral plexus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6237 ! TS22,lumbo-sacral plexus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:624 -name: TS13,nephric cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005792 ! nephric ridge -relationship: part_of EMAP:623 ! TS13,urogenital system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005792 ! nephric ridge -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6240 -name: TS22,intercostal,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003727 ! intercostal nerve -relationship: part_of EMAP:6242 ! TS22,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003727 ! intercostal nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6241 -name: TS22,phrenic,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001884 ! phrenic nerve -relationship: part_of EMAP:6242 ! TS22,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001884 ! phrenic nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6242 -name: TS22,nerve,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001780 ! spinal nerve -relationship: part_of EMAP:6229 ! TS22,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6243 -name: TS22,segmental spinal nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0005197 ! segmental spinal nerve -relationship: part_of EMAP:6242 ! TS22,nerve,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6244 -name: TS22,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:5720 ! TS22,organ system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6245 -name: TS22,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:6244 ! TS22,sensory organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6246 -name: TS22,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:6245 ! TS22,ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6247 -name: TS22,external auditory meatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001352 ! external acoustic meatus -relationship: part_of EMAP:6246 ! TS22,external ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6248 -name: TS22,future tympanic membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:6246 ! TS22,external ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6249 -name: TS22,epithelium,future tympanic membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6248 ! TS22,future tympanic membrane -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:625 -name: TS13,presumptive nephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:623 ! TS13,urogenital system -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004122 ! genitourinary system - -[Term] -id: EMAP:6250 -name: TS22,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001757 ! pinna -relationship: part_of EMAP:6246 ! TS22,external ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001757 ! pinna -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6251 -name: TS22,mesenchymal condensation,pinna,external ear -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6250 ! TS22,pinna,external ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6252 -name: TS22,mesenchyme,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0003325 ! mesenchyme of pinna -relationship: part_of EMAP:6250 ! TS22,pinna,external ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6253 -name: TS22,surface epithelium,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0006938 ! pinna surface epithelium -relationship: part_of EMAP:6250 ! TS22,pinna,external ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6254 -name: TS22,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:6245 ! TS22,ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6255 -name: TS22,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:6254 ! TS22,inner ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6256 -name: TS22,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6255 ! TS22,endolymphatic appendage -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:6257 -name: TS22,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6255 ! TS22,endolymphatic appendage -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:6258 -name: TS22,endolymphatic sac -namespace: mouse_anatomy_stages -is_a: UBERON:0002223 ! endolymphatic sac -relationship: part_of EMAP:6254 ! TS22,inner ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002223 ! endolymphatic sac -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6259 -name: TS22,associated mesenchyme,endolymphatic sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6258 ! TS22,endolymphatic sac -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002223 ! endolymphatic sac - -[Term] -id: EMAP:626 -name: TS13,primitive streak -namespace: mouse_anatomy_stages -is_a: UBERON:0004341 ! primitive streak -relationship: part_of EMAP:402 ! TS13,embryo -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6260 -name: TS22,epithelium,endolymphatic sac -namespace: mouse_anatomy_stages -is_a: UBERON:0003246 ! epithelium of endolymphatic sac -relationship: part_of EMAP:6258 ! TS22,endolymphatic sac -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003246 ! epithelium of endolymphatic sac -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6261 -name: TS22,labyrinth -namespace: mouse_anatomy_stages -is_a: UBERON:0001849 ! membranous labyrinth -relationship: part_of EMAP:6254 ! TS22,inner ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6262 -name: TS22,associated mesenchyme,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6261 ! TS22,labyrinth -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:6263 -name: TS22,epithelium,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6261 ! TS22,labyrinth -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:6264 -name: TS22,otic capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0010351 ! otic capsule cartilage condensation -relationship: part_of EMAP:6254 ! TS22,inner ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010351 ! otic capsule cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6265 -name: TS22,vestibular component,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001862 ! vestibular labyrinth -relationship: part_of EMAP:6254 ! TS22,inner ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6266 -name: TS22,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0001861 ! ductus reuniens -relationship: part_of EMAP:6265 ! TS22,vestibular component,inner ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6267 -name: TS22,associated mesenchyme,ductus reuniens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6266 ! TS22,ductus reuniens -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001861 ! ductus reuniens - -[Term] -id: EMAP:6268 -name: TS22,epithelium,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0003363 ! epithelium of ductus reuniens -relationship: part_of EMAP:6266 ! TS22,ductus reuniens -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6269 -name: TS22,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0001854 ! saccule of membranous labyrinth -relationship: part_of EMAP:6265 ! TS22,vestibular component,inner ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:627 -name: TS13,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6270 -name: TS22,associated mesenchyme,saccule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6269 ! TS22,saccule -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EMAP:6271 -name: TS22,cochlea -namespace: mouse_anatomy_stages -is_a: UBERON:0001844 ! cochlea -relationship: part_of EMAP:6269 ! TS22,saccule -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001844 ! cochlea -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6272 -name: TS22,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth -relationship: part_of EMAP:6271 ! TS22,cochlea -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6273 -name: TS22,associated mesenchyme,cochlear duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6272 ! TS22,cochlear duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: EMAP:6274 -name: TS22,epithelium,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003243 ! epithelium of cochlear duct -relationship: part_of EMAP:6272 ! TS22,cochlear duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003243 ! epithelium of cochlear duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6275 -name: TS22,epithelium,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0003242 ! epithelium of saccule -relationship: part_of EMAP:6269 ! TS22,saccule -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6276 -name: TS22,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0001853 ! utricle of membranous labyrinth -relationship: part_of EMAP:6265 ! TS22,vestibular component,inner ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6277 -name: TS22,associated mesenchyme,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6276 ! TS22,utricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EMAP:6278 -name: TS22,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0005600 ! crus commune -relationship: part_of EMAP:6276 ! TS22,utricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005600 ! crus commune -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6279 -name: TS22,associated mesenchyme,crus commune,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6278 ! TS22,crus commune,utricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005600 ! crus commune - -[Term] -id: EMAP:628 -name: TS13,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:627 ! TS13,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6280 -name: TS22,epithelium,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:6278 ! TS22,crus commune,utricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6281 -name: TS22,epithelium,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:6276 ! TS22,utricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6282 -name: TS22,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001843 ! lateral semicircular canal -relationship: part_of EMAP:6276 ! TS22,utricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6283 -name: TS22,associated mesenchyme,lateral semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6282 ! TS22,lateral semicircular canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001843 ! lateral semicircular canal - -[Term] -id: EMAP:6284 -name: TS22,epithelium,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003240 ! epithelium of lateral semicircular canal -relationship: part_of EMAP:6282 ! TS22,lateral semicircular canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6285 -name: TS22,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001842 ! posterior semicircular canal -relationship: part_of EMAP:6276 ! TS22,utricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6286 -name: TS22,associated mesenchyme,posterior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6285 ! TS22,posterior semicircular canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EMAP:6287 -name: TS22,epithelium,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal -relationship: part_of EMAP:6285 ! TS22,posterior semicircular canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6288 -name: TS22,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001841 ! anterior semicircular canal -relationship: part_of EMAP:6276 ! TS22,utricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6289 -name: TS22,associated mesenchyme,superior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6288 ! TS22,superior semicircular canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EMAP:629 -name: TS13,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:628 ! TS13,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6290 -name: TS22,epithelium,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003238 ! epithelium of superior semicircular canal -relationship: part_of EMAP:6288 ! TS22,superior semicircular canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6291 -name: TS22,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:6245 ! TS22,ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6292 -name: TS22,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:6291 ! TS22,middle ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6293 -name: TS22,ossicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001686 ! auditory ossicle -relationship: part_of EMAP:6291 ! TS22,middle ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001686 ! auditory ossicle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6294 -name: TS22,incus cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0007374 ! incus cartilage condensation -relationship: part_of EMAP:6293 ! TS22,ossicle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007374 ! incus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6295 -name: TS22,malleus cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010054 ! malleus cartilage condensation -relationship: part_of EMAP:6293 ! TS22,ossicle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010054 ! malleus cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6296 -name: TS22,stapes cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010055 ! stapes cartilage condensation -relationship: part_of EMAP:6293 ! TS22,ossicle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010055 ! stapes cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6297 -name: TS22,pharyngo-tympanic tube -namespace: mouse_anatomy_stages -is_a: UBERON:0002393 ! pharyngotympanic tube -relationship: part_of EMAP:6291 ! TS22,middle ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6298 -name: TS22,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:6291 ! TS22,middle ear -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6299 -name: TS22,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:6244 ! TS22,sensory organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:63 -name: TS8,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:630 -name: TS13,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:629 ! TS13,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6300 -name: TS22,anterior chamber,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001766 ! anterior chamber of eyeball -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6301 -name: TS22,aqueous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001796 ! aqueous humor of eyeball -relationship: part_of EMAP:6300 ! TS22,anterior chamber,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6302 -name: TS22,choroidal blood vessels -namespace: mouse_anatomy_stages -is_a: UBERON:0002443 ! choroidal blood vessel -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6303 -name: TS22,conjunctival sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005908 ! conjunctival sac -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005908 ! conjunctival sac -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6304 -name: TS22,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6305 -name: TS22,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:6304 ! TS22,cornea -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6306 -name: TS22,stroma,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001777 ! substantia propria of cornea -relationship: part_of EMAP:6304 ! TS22,cornea -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6307 -name: TS22,skeletal muscle,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003269 ! skeletal muscle of eye -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003269 ! skeletal muscle of eye -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6308 -name: TS22,extrinsic ocular muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001601 ! extra-ocular muscle -relationship: part_of EMAP:6307 ! TS22,skeletal muscle,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6309 -name: TS22,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001711 ! eyelid -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001711 ! eyelid -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:631 -name: TS13,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:630 ! TS13,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:6310 -name: TS22,inner canthus -namespace: mouse_anatomy_stages -is_a: UBERON:0005611 ! inner canthus -relationship: part_of EMAP:6309 ! TS22,eyelid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6311 -name: TS22,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001713 ! lower eyelid -relationship: part_of EMAP:6309 ! TS22,eyelid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6312 -name: TS22,epithelium,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003845 ! lower eyelid epithelium -relationship: part_of EMAP:6311 ! TS22,lower,eyelid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003845 ! lower eyelid epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6313 -name: TS22,mesenchyme,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:6311 ! TS22,lower,eyelid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6314 -name: TS22,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001712 ! upper eyelid -relationship: part_of EMAP:6309 ! TS22,eyelid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6315 -name: TS22,epithelium,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003844 ! upper eyelid epithelium -relationship: part_of EMAP:6314 ! TS22,upper,eyelid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003844 ! upper eyelid epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6316 -name: TS22,mesenchyme,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:6314 ! TS22,upper,eyelid -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6317 -name: TS22,hyaloid cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005606 ! hyaloid cavity -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6318 -name: TS22,hyaloid vascular plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005607 ! hyaloid vascular plexus -relationship: part_of EMAP:6317 ! TS22,hyaloid cavity -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6319 -name: TS22,tunica vasculosa lentis -namespace: mouse_anatomy_stages -is_a: UBERON:0006305 ! tunica vasculosa lentis -relationship: part_of EMAP:6318 ! TS22,hyaloid vascular plexus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006305 ! tunica vasculosa lentis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:632 -name: TS13,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:628 ! TS13,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:6320 -name: TS22,vasa hyaloidea propria -namespace: mouse_anatomy_stages -is_a: UBERON:0006358 ! vasa hyaloidea propria -relationship: part_of EMAP:6318 ! TS22,hyaloid vascular plexus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006358 ! vasa hyaloidea propria -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6321 -name: TS22,vitreous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001797 ! vitreous humor -relationship: part_of EMAP:6317 ! TS22,hyaloid cavity -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6322 -name: TS22,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0000965 ! lens of camera-type eye -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6323 -name: TS22,anterior epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005614 ! lens anterior epithelium -relationship: part_of EMAP:6322 ! TS22,lens -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6324 -name: TS22,capsule,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0001804 ! capsule of lens -relationship: part_of EMAP:6322 ! TS22,lens -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6325 -name: TS22,equatorial epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005615 ! lens equatorial epithelium -relationship: part_of EMAP:6322 ! TS22,lens -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005615 ! lens equatorial epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6326 -name: TS22,lens fibres -namespace: mouse_anatomy_stages -is_a: UBERON:0002444 ! lens fiber -relationship: part_of EMAP:6322 ! TS22,lens -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6327 -name: TS22,anterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6326 ! TS22,lens fibres -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:6328 -name: TS22,posterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6326 ! TS22,lens fibres -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:6329 -name: TS22,optic chiasma -namespace: mouse_anatomy_stages -is_a: UBERON:0000959 ! optic chiasma -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:633 -name: TS13,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:632 ! TS13,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6330 -name: TS22,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6331 -name: TS22,fissure,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0005412 ! optic fissure -relationship: part_of EMAP:6330 ! TS22,optic stalk -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6332 -name: TS22,optic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:6330 ! TS22,optic stalk -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6333 -name: TS22,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6334 -name: TS22,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:6299 ! TS22,eye -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6335 -name: TS22,embryonic fissure,retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6334 ! TS22,retina -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000966 ! retina - -[Term] -id: EMAP:6336 -name: TS22,neural retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:6334 ! TS22,retina -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6337 -name: TS22,optic disc -namespace: mouse_anatomy_stages -is_a: UBERON:0001783 ! optic disc -relationship: part_of EMAP:6334 ! TS22,retina -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001783 ! optic disc -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6338 -name: TS22,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:6334 ! TS22,retina -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6339 -name: TS22,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:6244 ! TS22,sensory organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:634 -name: TS13,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:633 ! TS13,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:6340 -name: TS22,naris -namespace: mouse_anatomy_stages -is_a: UBERON:0000003 ! naris -relationship: part_of EMAP:6339 ! TS22,nose -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000003 ! naris -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6341 -name: TS22,external,naris -namespace: mouse_anatomy_stages -is_a: UBERON:0005928 ! external naris -relationship: part_of EMAP:6340 ! TS22,naris -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005928 ! external naris -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6342 -name: TS22,posterior,naris -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6340 ! TS22,naris -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:6343 -name: TS22,epithelium,posterior,naris -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6342 ! TS22,posterior,naris -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:6344 -name: TS22,primary choana -namespace: mouse_anatomy_stages -is_a: UBERON:0005931 ! primary choana -relationship: part_of EMAP:6340 ! TS22,naris -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005931 ! primary choana -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6345 -name: TS22,nasal capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0006332 ! nasal capsule -relationship: part_of EMAP:6339 ! TS22,nose -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6346 -name: TS22,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001707 ! nasal cavity -relationship: part_of EMAP:6339 ! TS22,nose -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6347 -name: TS22,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005384 ! nasal cavity epithelium -relationship: part_of EMAP:6346 ! TS22,nasal cavity -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6348 -name: TS22,olfactory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001997 ! olfactory epithelium -relationship: part_of EMAP:6347 ! TS22,epithelium,nasal cavity -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6349 -name: TS22,respiratory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000171 ! respiration organ -relationship: part_of EMAP:6347 ! TS22,epithelium,nasal cavity -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:635 -name: TS13,left,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:633 ! TS13,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6350 -name: TS22,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0001706 ! nasal septum -relationship: part_of EMAP:6339 ! TS22,nose -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6351 -name: TS22,naso-lacrimal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002392 ! nasolacrimal duct -relationship: part_of EMAP:6339 ! TS22,nose -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6352 -name: TS22,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002255 ! vomeronasal organ -relationship: part_of EMAP:6339 ! TS22,nose -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6353 -name: TS22,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:5720 ! TS22,organ system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6354 -name: TS22,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:6353 ! TS22,cardiovascular system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6355 -name: TS22,anterior cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001624 ! anterior cerebral artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6356 -name: TS22,arch of aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001508 ! arch of aorta -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6357 -name: TS22,basilar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001633 ! basilar artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6358 -name: TS22,common carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001530 ! common carotid artery plus branches -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001530 ! common carotid artery plus branches -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6359 -name: TS22,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:636 -name: TS13,right,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005471 ! right umbilical vein -relationship: part_of EMAP:633 ! TS13,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6360 -name: TS22,abdominal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001516 ! abdominal aorta -relationship: part_of EMAP:6359 ! TS22,dorsal aorta -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6361 -name: TS22,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:6359 ! TS22,dorsal aorta -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6362 -name: TS22,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:6359 ! TS22,dorsal aorta -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6363 -name: TS22,post-ductal part of thoracic aorta,left,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6362 ! TS22,left,dorsal aorta -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005613 ! left dorsal aorta - -[Term] -id: EMAP:6364 -name: TS22,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:6359 ! TS22,dorsal aorta -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6365 -name: TS22,ductus arteriosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005440 ! ductus arteriosus -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6366 -name: TS22,hepatic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001193 ! hepatic artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6367 -name: TS22,hyoid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005608 ! hyoid artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6368 -name: TS22,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005609 ! iliac artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6369 -name: TS22,common,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001191 ! common iliac artery -relationship: part_of EMAP:6368 ! TS22,iliac artery -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:637 -name: TS13,vitelline vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:632 ! TS13,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6370 -name: TS22,external,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001308 ! external iliac artery -relationship: part_of EMAP:6368 ! TS22,iliac artery -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6371 -name: TS22,internal,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001309 ! internal iliac artery -relationship: part_of EMAP:6368 ! TS22,iliac artery -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6372 -name: TS22,innominate artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001529 ! brachiocephalic artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6373 -name: TS22,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6374 -name: TS22,intersegmental artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002457 ! intersegmental artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002457 ! intersegmental artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6375 -name: TS22,maxillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001616 ! maxillary artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6376 -name: TS22,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005616 ! mesenteric artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6377 -name: TS22,middle cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001627 ! middle cerebral artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6378 -name: TS22,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6379 -name: TS22,posterior cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001636 ! posterior cerebral artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:638 -name: TS13,left,vitelline vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005460 ! left vitelline vein -relationship: part_of EMAP:637 ! TS13,vitelline vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6380 -name: TS22,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6381 -name: TS22,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6382 -name: TS22,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6383 -name: TS22,pulmonary trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0002333 ! pulmonary trunk -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6384 -name: TS22,renal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001184 ! renal artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001184 ! renal artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6385 -name: TS22,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002458 ! spinal artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6386 -name: TS22,anterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005431 ! anterior spinal artery -relationship: part_of EMAP:6385 ! TS22,spinal artery -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005431 ! anterior spinal artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6387 -name: TS22,posterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007146 ! posterior spinal artery -relationship: part_of EMAP:6385 ! TS22,spinal artery -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007146 ! posterior spinal artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6388 -name: TS22,stapedial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006345 ! stapedial artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6389 -name: TS22,subclavian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001533 ! subclavian artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:639 -name: TS13,right,vitelline vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005472 ! right vitelline vein -relationship: part_of EMAP:637 ! TS13,vitelline vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6390 -name: TS22,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6391 -name: TS22,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:6390 ! TS22,umbilical artery -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6392 -name: TS22,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:6390 ! TS22,umbilical artery -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6393 -name: TS22,vertebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001535 ! vertebral artery -relationship: part_of EMAP:6354 ! TS22,arterial system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6394 -name: TS22,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:6353 ! TS22,cardiovascular system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6395 -name: TS22,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:6353 ! TS22,cardiovascular system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6396 -name: TS22,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6397 -name: TS22,atrio-ventricular cushion tissue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:6398 -name: TS22,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6399 -name: TS22,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:6398 ! TS22,atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:64 -name: TS8,cavities -namespace: mouse_anatomy_stages -is_a: UBERON:0012466 ! extraembryonic cavities -relationship: part_of EMAP:63 ! TS8,extraembryonic component -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0012466 ! extraembryonic cavities -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:640 -name: TS14,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6400 -name: TS22,foramen ovale,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004754 ! foramen ovale of heart -relationship: part_of EMAP:6399 ! TS22,interatrial septum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6401 -name: TS22,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:6399 ! TS22,interatrial septum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6402 -name: TS22,foramen primum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6401 ! TS22,septum primum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004154 ! septum primum - -[Term] -id: EMAP:6403 -name: TS22,foramen secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0006678 ! foramen secundum -relationship: part_of EMAP:6401 ! TS22,septum primum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6404 -name: TS22,septum secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0004155 ! septum secundum -relationship: part_of EMAP:6399 ! TS22,interatrial septum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004155 ! septum secundum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6405 -name: TS22,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002079 ! left atrium -relationship: part_of EMAP:6398 ! TS22,atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002079 ! left atrium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6406 -name: TS22,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6405 ! TS22,left atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:6407 -name: TS22,endocardial lining,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6406 ! TS22,auricular region,left atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:6408 -name: TS22,cardiac muscle,auricular region,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:6406 ! TS22,auricular region,left atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6409 -name: TS22,endocardial lining,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6405 ! TS22,left atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:641 -name: TS14,branchial arch -namespace: mouse_anatomy_stages -is_a: UBERON:0002539 ! pharyngeal arch -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6410 -name: TS22,cardiac muscle,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003380 ! cardiac muscle of left atrium -relationship: part_of EMAP:6405 ! TS22,left atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6411 -name: TS22,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002078 ! right atrium -relationship: part_of EMAP:6398 ! TS22,atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002078 ! right atrium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6412 -name: TS22,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6411 ! TS22,right atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:6413 -name: TS22,endocardial lining,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6412 ! TS22,auricular region,right atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:6414 -name: TS22,cardiac muscle,auricular region,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:6412 ! TS22,auricular region,right atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6415 -name: TS22,endocardial lining,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6411 ! TS22,right atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:6416 -name: TS22,cardiac muscle,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003379 ! cardiac muscle of right atrium -relationship: part_of EMAP:6411 ! TS22,right atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6417 -name: TS22,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005208 ! right atrium valve -relationship: part_of EMAP:6411 ! TS22,right atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6418 -name: TS22,venous valve,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:6417 ! TS22,valve,right atrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6419 -name: TS22,bulbar cushion -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:642 -name: TS14,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0004362 ! pharyngeal arch 1 -relationship: part_of EMAP:641 ! TS14,branchial arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6420 -name: TS22,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6421 -name: TS22,endocardial tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002165 ! endocardium -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002165 ! endocardium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6422 -name: TS22,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6423 -name: TS22,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:6422 ! TS22,mesentery,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6424 -name: TS22,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:6423 ! TS22,dorsal mesocardium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6425 -name: TS22,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6426 -name: TS22,aortic component,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005338 ! outflow tract aortic component -relationship: part_of EMAP:6425 ! TS22,outflow tract,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005338 ! outflow tract aortic component -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6427 -name: TS22,aortico-pulmonary spiral septum -namespace: mouse_anatomy_stages -is_a: UBERON:0006207 ! aortico-pulmonary spiral septum -relationship: part_of EMAP:6425 ! TS22,outflow tract,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6428 -name: TS22,pulmonary component,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005339 ! outflow tract pulmonary component -relationship: part_of EMAP:6425 ! TS22,outflow tract,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005339 ! outflow tract pulmonary component -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6429 -name: TS22,proximal part,pulmonary component,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6428 ! TS22,pulmonary component,outflow tract,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005339 ! outflow tract pulmonary component - -[Term] -id: EMAP:643 -name: TS14,branchial groove,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005872 ! 1st arch pharyngeal cleft -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6430 -name: TS22,pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002407 ! pericardium -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002407 ! pericardium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6431 -name: TS22,parietal pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002408 ! parietal serous pericardium -relationship: part_of EMAP:6430 ! TS22,pericardium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6432 -name: TS22,visceral pericardium -namespace: mouse_anatomy_stages -is_a: UBERON:0002425 ! visceral serous pericardium -relationship: part_of EMAP:6430 ! TS22,pericardium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6433 -name: TS22,valve,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000946 ! cardial valve -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000946 ! cardial valve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6434 -name: TS22,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002137 ! aortic valve -relationship: part_of EMAP:6433 ! TS22,valve,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6435 -name: TS22,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002135 ! mitral valve -relationship: part_of EMAP:6433 ! TS22,valve,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6436 -name: TS22,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002146 ! pulmonary valve -relationship: part_of EMAP:6433 ! TS22,valve,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6437 -name: TS22,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002134 ! tricuspid valve -relationship: part_of EMAP:6433 ! TS22,valve,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6438 -name: TS22,ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002082 ! cardiac ventricle -relationship: part_of EMAP:6395 ! TS22,heart -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6439 -name: TS22,interventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005455 ! interventricular groove -relationship: part_of EMAP:6438 ! TS22,ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:644 -name: TS14,ectoderm,branchial groove,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:643 ! TS14,branchial groove,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005872 ! 1st arch pharyngeal cleft - -[Term] -id: EMAP:6440 -name: TS22,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002094 ! interventricular septum -relationship: part_of EMAP:6438 ! TS22,ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6441 -name: TS22,endocardial lining,interventricular septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6440 ! TS22,interventricular septum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002094 ! interventricular septum - -[Term] -id: EMAP:6442 -name: TS22,membranous part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004666 ! interventricular septum membranous part -relationship: part_of EMAP:6440 ! TS22,interventricular septum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6443 -name: TS22,muscular part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004667 ! interventricular septum muscular part -relationship: part_of EMAP:6440 ! TS22,interventricular septum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6444 -name: TS22,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002084 ! heart left ventricle -relationship: part_of EMAP:6438 ! TS22,ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6445 -name: TS22,endocardial lining,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009713 ! endocardium of left ventricle -relationship: part_of EMAP:6444 ! TS22,left ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6446 -name: TS22,cardiac muscle,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003382 ! cardiac muscle of left ventricle -relationship: part_of EMAP:6444 ! TS22,left ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6447 -name: TS22,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002080 ! heart right ventricle -relationship: part_of EMAP:6438 ! TS22,ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6448 -name: TS22,endocardial lining,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009712 ! endocardium of right ventricle -relationship: part_of EMAP:6447 ! TS22,right ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6449 -name: TS22,cardiac muscle,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003381 ! cardiac muscle of right ventricle -relationship: part_of EMAP:6447 ! TS22,right ventricle -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:645 -name: TS14,branchial membrane,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6450 -name: TS22,lymphatic system -namespace: mouse_anatomy_stages -is_a: UBERON:0006558 ! lymphatic part of lymphoid system -relationship: part_of EMAP:6353 ! TS22,cardiovascular system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6451 -name: TS22,jugular lymph sac -namespace: mouse_anatomy_stages -is_a: UBERON:0011765 ! jugular lymph sac -relationship: part_of EMAP:6450 ! TS22,lymphatic system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011765 ! jugular lymph sac -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6452 -name: TS22,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:6353 ! TS22,cardiovascular system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6453 -name: TS22,azygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001594 ! azygos vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001594 ! azygos vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6454 -name: TS22,common iliac vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001139 ! common iliac vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6455 -name: TS22,ductus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002083 ! ductus venosus -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6456 -name: TS22,external jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001101 ! external jugular vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001101 ! external jugular vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6457 -name: TS22,femoral vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001361 ! femoral vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6458 -name: TS22,hemiazygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006663 ! hemiazygos vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006663 ! hemiazygos vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6459 -name: TS22,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:646 -name: TS14,ectoderm,branchial membrane,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:645 ! TS14,branchial membrane,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:6460 -name: TS22,left,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6459 ! TS22,hepatico-cardiac vein -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:6461 -name: TS22,right,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6459 ! TS22,hepatico-cardiac vein -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:6465 -name: TS22,internal jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001586 ! internal jugular vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6466 -name: TS22,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005617 ! mesenteric vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6467 -name: TS22,portal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002017 ! portal vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002017 ! portal vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6468 -name: TS22,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6469 -name: TS22,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:647 -name: TS14,endoderm,branchial membrane,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:645 ! TS14,branchial membrane,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:6470 -name: TS22,spinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006686 ! spinal vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006686 ! spinal vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6471 -name: TS22,subclavian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001587 ! subclavian vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6475 -name: TS22,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6476 -name: TS22,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:6475 ! TS22,umbilical vein -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6477 -name: TS22,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:5722 ! TS22,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6478 -name: TS22,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0000159 ! anal canal -relationship: part_of EMAP:6477 ! TS22,anal region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000159 ! anal canal -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6479 -name: TS22,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6478 ! TS22,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:648 -name: TS14,branchial pouch,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007122 ! pharyngeal pouch 1 -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6480 -name: TS22,associated mesenchyme,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6479 ! TS22,rostral part,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:6481 -name: TS22,epithelium,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6479 ! TS22,rostral part,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:6482 -name: TS22,vascular element,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6479 ! TS22,rostral part,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:6483 -name: TS22,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6478 ! TS22,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:6484 -name: TS22,associated mesenchyme,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6483 ! TS22,caudal part,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:6485 -name: TS22,epithelium,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6483 ! TS22,caudal part,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:6486 -name: TS22,vascular element,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6483 ! TS22,caudal part,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:6487 -name: TS22,external sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001367 ! external anal sphincter -relationship: part_of EMAP:6477 ! TS22,anal region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001367 ! external anal sphincter -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6488 -name: TS22,internal sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001244 ! internal anal sphincter -relationship: part_of EMAP:6477 ! TS22,anal region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001244 ! internal anal sphincter -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6489 -name: TS22,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003286 ! foregut region of duodenum -relationship: part_of EMAP:6013 ! TS22,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003286 ! foregut region of duodenum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:649 -name: TS14,endoderm,branchial pouch,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:648 ! TS14,branchial pouch,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EMAP:6490 -name: TS22,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6489 ! TS22,duodenum,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6491 -name: TS22,associated mesenchyme,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6490 ! TS22,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6492 -name: TS22,epithelium,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6490 ! TS22,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6493 -name: TS22,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6490 ! TS22,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6494 -name: TS22,mesoduodenum,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:6493 ! TS22,mesentery,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6495 -name: TS22,vascular element,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6490 ! TS22,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6496 -name: TS22,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6013 ! TS22,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:6497 -name: TS22,associated mesenchyme,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6496 ! TS22,gastro-oesophageal junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:6498 -name: TS22,epithelium,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6496 ! TS22,gastro-oesophageal junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:6499 -name: TS22,vascular element,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6496 ! TS22,gastro-oesophageal junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:65 -name: TS8,extraembryonic component of the proamniotic cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:64 ! TS8,cavities -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -relationship: part_of UBERON:0012466 ! extraembryonic cavities - -[Term] -id: EMAP:650 -name: TS14,ectoderm,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:6500 -name: TS22,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:6013 ! TS22,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6501 -name: TS22,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6500 ! TS22,oesophagus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6502 -name: TS22,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001976 ! epithelium of esophagus -relationship: part_of EMAP:6500 ! TS22,oesophagus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6503 -name: TS22,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:6500 ! TS22,oesophagus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6504 -name: TS22,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:6503 ! TS22,mesentery,oesophagus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6505 -name: TS22,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6500 ! TS22,oesophagus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6506 -name: TS22,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:6013 ! TS22,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6507 -name: TS22,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6506 ! TS22,pharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:6508 -name: TS22,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:6506 ! TS22,pharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6509 -name: TS22,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:6506 ! TS22,pharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:651 -name: TS14,endoderm,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:6510 -name: TS22,circumvallate papilla,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0000396 ! vallate papilla -relationship: part_of EMAP:6509 ! TS22,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000396 ! vallate papilla -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6511 -name: TS22,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003357 ! epithelium of tongue -relationship: part_of EMAP:6509 ! TS22,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6512 -name: TS22,fungiform papillae,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6509 ! TS22,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:6513 -name: TS22,intermolar eminence,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006360 ! intermolar eminence -relationship: part_of EMAP:6509 ! TS22,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006360 ! intermolar eminence -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6514 -name: TS22,median fibrous septum,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6509 ! TS22,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:6515 -name: TS22,mesenchyme,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003416 ! mesenchyme of tongue -relationship: part_of EMAP:6509 ! TS22,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003416 ! mesenchyme of tongue -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6516 -name: TS22,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003273 ! skeletal muscle of tongue -relationship: part_of EMAP:6509 ! TS22,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003273 ! skeletal muscle of tongue -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6517 -name: TS22,extrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001575 ! extrinsic muscle of tongue -relationship: part_of EMAP:6516 ! TS22,skeletal muscle,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6518 -name: TS22,genioglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001571 ! genioglossus -relationship: part_of EMAP:6517 ! TS22,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001571 ! genioglossus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6519 -name: TS22,hyoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001572 ! hyoglossus muscle -relationship: part_of EMAP:6517 ! TS22,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:652 -name: TS14,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010042 ! 1st arch mesenchyme -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010042 ! 1st arch mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6520 -name: TS22,palatoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001574 ! palatoglossus muscle -relationship: part_of EMAP:6517 ! TS22,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001574 ! palatoglossus muscle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6521 -name: TS22,styloglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001573 ! styloglossus -relationship: part_of EMAP:6517 ! TS22,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001573 ! styloglossus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6522 -name: TS22,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001576 ! intrinsic muscle of tongue -relationship: part_of EMAP:6516 ! TS22,skeletal muscle,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6523 -name: TS22,transverse component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6522 ! TS22,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:6524 -name: TS22,vertical component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6522 ! TS22,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:6525 -name: TS22,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6506 ! TS22,pharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:6526 -name: TS22,hyoid bone cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6506 ! TS22,pharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:6527 -name: TS22,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:6013 ! TS22,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6528 -name: TS22,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6527 ! TS22,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6529 -name: TS22,associated mesenchyme,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6528 ! TS22,fundus,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:653 -name: TS14,mesenchyme derived from head mesoderm,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010341 ! 1st arch mesenchyme from head mesenchyme -relationship: part_of EMAP:652 ! TS14,mesenchyme,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010341 ! 1st arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6530 -name: TS22,epithelium,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6528 ! TS22,fundus,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6531 -name: TS22,glandular mucous membrane,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6528 ! TS22,fundus,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6532 -name: TS22,vascular element,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6528 ! TS22,fundus,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6533 -name: TS22,glandular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0006924 ! stomach glandular epithelium -relationship: part_of EMAP:6527 ! TS22,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006924 ! stomach glandular epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6534 -name: TS22,associated mesenchyme,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6533 ! TS22,glandular region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:6535 -name: TS22,epithelium,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6533 ! TS22,glandular region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:6536 -name: TS22,vascular element,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6533 ! TS22,glandular region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:6537 -name: TS22,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:6527 ! TS22,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6538 -name: TS22,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:6537 ! TS22,mesentery,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6539 -name: TS22,gastro-splenic ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004686 ! gastro-splenic ligament -relationship: part_of EMAP:6538 ! TS22,dorsal mesogastrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:654 -name: TS14,mesenchyme derived from neural crest,mesenchyme,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010259 ! 1st arch mesenchyme from neural crest -relationship: part_of EMAP:652 ! TS14,mesenchyme,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010259 ! 1st arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6540 -name: TS22,lieno-renal ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004687 ! lieno-renal ligament -relationship: part_of EMAP:6538 ! TS22,dorsal mesogastrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6541 -name: TS22,splenic primordium,lieno-renal ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0006293 ! spleen primordium -relationship: part_of EMAP:6540 ! TS22,lieno-renal ligament -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006293 ! spleen primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6542 -name: TS22,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:6537 ! TS22,mesentery,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6543 -name: TS22,falciform ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0001247 ! falciform ligament -relationship: part_of EMAP:6542 ! TS22,ventral mesogastrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6544 -name: TS22,lesser omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0002399 ! lesser omentum -relationship: part_of EMAP:6542 ! TS22,ventral mesogastrium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6545 -name: TS22,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6527 ! TS22,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6546 -name: TS22,associated mesenchyme,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6545 ! TS22,proventricular region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6547 -name: TS22,epithelium,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6545 ! TS22,proventricular region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6548 -name: TS22,vascular element,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6545 ! TS22,proventricular region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6549 -name: TS22,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0001166 ! pylorus -relationship: part_of EMAP:6527 ! TS22,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001166 ! pylorus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:655 -name: TS14,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007237 ! 1st arch mandibular component -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007237 ! 1st arch mandibular component -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6550 -name: TS22,associated mesenchyme,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6549 ! TS22,pyloric region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:6551 -name: TS22,epithelium,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0005637 ! pyloric region epithelium -relationship: part_of EMAP:6549 ! TS22,pyloric region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005637 ! pyloric region epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6552 -name: TS22,pyloric antrum -namespace: mouse_anatomy_stages -is_a: UBERON:0001165 ! pyloric antrum -relationship: part_of EMAP:6549 ! TS22,pyloric region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6553 -name: TS22,vascular element,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6549 ! TS22,pyloric region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:6554 -name: TS22,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:5724 ! TS22,foregut-midgut junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6555 -name: TS22,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:5724 ! TS22,foregut-midgut junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6556 -name: TS22,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5724 ! TS22,foregut-midgut junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6557 -name: TS22,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:5723 ! TS22,gut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6558 -name: TS22,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0006654 ! perineal body -relationship: part_of EMAP:6557 ! TS22,hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006654 ! perineal body -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6559 -name: TS22,associated mesenchyme,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6558 ! TS22,perineal body -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:656 -name: TS14,ectoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013155 ! 1st arch mandibular ectoderm -relationship: part_of EMAP:655 ! TS14,mandibular component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0013155 ! 1st arch mandibular ectoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6560 -name: TS22,epithelium,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6558 ! TS22,perineal body -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:6561 -name: TS22,vascular element,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6558 ! TS22,perineal body -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:6562 -name: TS22,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0001052 ! rectum -relationship: part_of EMAP:6557 ! TS22,hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001052 ! rectum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6563 -name: TS22,associated mesenchyme,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6562 ! TS22,rectum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:6564 -name: TS22,epithelium,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003354 ! epithelium of rectum -relationship: part_of EMAP:6562 ! TS22,rectum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003354 ! epithelium of rectum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6565 -name: TS22,vascular element,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6562 ! TS22,rectum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:6566 -name: TS22,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6557 ! TS22,hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:6567 -name: TS22,associated mesenchyme,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6566 ! TS22,rest of hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:6568 -name: TS22,epithelium,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6566 ! TS22,rest of hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:6569 -name: TS22,mesentery,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6566 ! TS22,rest of hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:657 -name: TS14,endoderm,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013156 ! 1st arch mandibular endoderm -relationship: part_of EMAP:655 ! TS14,mandibular component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0013156 ! 1st arch mandibular endoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6570 -name: TS22,dorsal mesentery,mesentery,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6569 ! TS22,mesentery,rest of hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:6571 -name: TS22,vascular element,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6566 ! TS22,rest of hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:6572 -name: TS22,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:5723 ! TS22,gut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6573 -name: TS22,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003287 ! midgut region of duodenum -relationship: part_of EMAP:6572 ! TS22,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003287 ! midgut region of duodenum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6574 -name: TS22,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6573 ! TS22,duodenum,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:6575 -name: TS22,associated mesenchyme,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6574 ! TS22,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:6576 -name: TS22,epithelium,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6574 ! TS22,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:6577 -name: TS22,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:6574 ! TS22,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6578 -name: TS22,mesoduodenum,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:6577 ! TS22,mesentery,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6579 -name: TS22,vascular element,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6574 ! TS22,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:658 -name: TS14,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009584 ! 1st arch mandibular mesenchyme -relationship: part_of EMAP:655 ! TS14,mandibular component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009584 ! 1st arch mandibular mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6580 -name: TS22,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0011698 ! midgut loop -relationship: part_of EMAP:6572 ! TS22,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011698 ! midgut loop -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6581 -name: TS22,associated mesenchyme,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6580 ! TS22,loop,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:6582 -name: TS22,epithelium,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6580 ! TS22,loop,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:6583 -name: TS22,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:6580 ! TS22,loop,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6584 -name: TS22,dorsal mesentery,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:6583 ! TS22,mesentery,loop,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6585 -name: TS22,vascular element,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6580 ! TS22,loop,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:6586 -name: TS22,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6572 ! TS22,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6587 -name: TS22,associated mesenchyme,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6586 ! TS22,rest of midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6588 -name: TS22,epithelium,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6586 ! TS22,rest of midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6589 -name: TS22,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:6586 ! TS22,rest of midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:659 -name: TS14,mesenchyme derived from head mesoderm,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:658 ! TS14,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:6590 -name: TS22,dorsal mesentery,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:6589 ! TS22,mesentery,rest of midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6591 -name: TS22,vascular element,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6586 ! TS22,rest of midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6592 -name: TS22,epiglottis -namespace: mouse_anatomy_stages -is_a: UBERON:0000388 ! epiglottis -relationship: part_of EMAP:5992 ! TS22,oral region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000388 ! epiglottis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6593 -name: TS22,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001710 ! lower jaw region -relationship: part_of EMAP:5992 ! TS22,oral region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6594 -name: TS22,Meckel's cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0003107 ! Meckel's cartilage -relationship: part_of EMAP:6593 ! TS22,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6595 -name: TS22,epithelium,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6593 ! TS22,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6596 -name: TS22,lip,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001835 ! lower lip -relationship: part_of EMAP:6593 ! TS22,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001835 ! lower lip -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6597 -name: TS22,mandible -namespace: mouse_anatomy_stages -is_a: UBERON:0001684 ! mandible -relationship: part_of EMAP:7144 ! TS22,skeleton,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001684 ! mandible -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6598 -name: TS22,mesenchyme,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003324 ! mesenchyme of lower jaw -relationship: part_of EMAP:6593 ! TS22,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003324 ! mesenchyme of lower jaw -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6599 -name: TS22,alveolar sulcus,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6593 ! TS22,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001710 ! lower jaw region - -[Term] -id: EMAP:66 -name: TS8,yolk sac cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005251 ! yolk sac cavity -relationship: part_of EMAP:64 ! TS8,cavities -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0005251 ! yolk sac cavity -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:660 -name: TS14,mesenchyme derived from neural crest,mesenchyme,mandibular component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:658 ! TS14,mesenchyme,mandibular component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0009584 ! 1st arch mandibular mesenchyme - -[Term] -id: EMAP:6600 -name: TS22,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003268 ! tooth of lower jaw -relationship: part_of EMAP:6593 ! TS22,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6601 -name: TS22,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003451 ! lower jaw incisor -relationship: part_of EMAP:6600 ! TS22,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6602 -name: TS22,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:6601 ! TS22,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6603 -name: TS22,dental lamina,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:6602 ! TS22,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6604 -name: TS22,enamel organ,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6602 ! TS22,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:6605 -name: TS22,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005708 ! lower jaw incisor odontogenic papilla -relationship: part_of EMAP:6601 ! TS22,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005708 ! lower jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6606 -name: TS22,dental papilla,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6605 ! TS22,mesenchyme,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005708 ! lower jaw incisor odontogenic papilla - -[Term] -id: EMAP:6607 -name: TS22,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003667 ! lower jaw molar -relationship: part_of EMAP:6600 ! TS22,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6608 -name: TS22,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:6607 ! TS22,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6609 -name: TS22,dental lamina,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:6608 ! TS22,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:661 -name: TS14,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007238 ! 1st arch maxillary component -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007238 ! 1st arch maxillary component -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6610 -name: TS22,enamel organ,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6608 ! TS22,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003236 ! epithelium of lower jaw - -[Term] -id: EMAP:6611 -name: TS22,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005701 ! lower jaw molar odontogenic papilla -relationship: part_of EMAP:6607 ! TS22,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005701 ! lower jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6612 -name: TS22,dental papilla,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6611 ! TS22,mesenchyme,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005701 ! lower jaw molar odontogenic papilla - -[Term] -id: EMAP:6613 -name: TS22,oral cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000167 ! oral cavity -relationship: part_of EMAP:5992 ! TS22,oral region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6614 -name: TS22,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:5992 ! TS22,oral region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6615 -name: TS22,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001709 ! upper jaw region -relationship: part_of EMAP:5992 ! TS22,oral region,alimentary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6616 -name: TS22,lip,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001834 ! upper lip -relationship: part_of EMAP:6615 ! TS22,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001834 ! upper lip -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6617 -name: TS22,philtrum -namespace: mouse_anatomy_stages -is_a: UBERON:0005402 ! philtrum -relationship: part_of EMAP:6616 ! TS22,lip,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005402 ! philtrum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6618 -name: TS22,skeleton,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003277 ! skeleton of upper jaw -relationship: part_of EMAP:6615 ! TS22,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6619 -name: TS22,maxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002397 ! maxilla -relationship: part_of EMAP:6618 ! TS22,skeleton,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002397 ! maxilla -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:662 -name: TS14,ectoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0012313 ! 1st arch maxillary ectoderm -relationship: part_of EMAP:661 ! TS14,maxillary component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012313 ! 1st arch maxillary ectoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6620 -name: TS22,mesenchyme,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003323 ! mesenchyme of upper jaw -relationship: part_of EMAP:6615 ! TS22,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003323 ! mesenchyme of upper jaw -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6621 -name: TS22,alveolar sulcus,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6615 ! TS22,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001709 ! upper jaw region - -[Term] -id: EMAP:6622 -name: TS22,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005619 ! secondary palatal shelf -relationship: part_of EMAP:6615 ! TS22,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6623 -name: TS22,epithelium,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005658 ! secondary palatal shelf epithelium -relationship: part_of EMAP:6622 ! TS22,palatal shelf -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005658 ! secondary palatal shelf epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6624 -name: TS22,mesenchyme,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005704 ! secondary palatal shelf mesenchyme -relationship: part_of EMAP:6622 ! TS22,palatal shelf -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005704 ! secondary palatal shelf mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6625 -name: TS22,premaxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002244 ! premaxilla -relationship: part_of EMAP:6615 ! TS22,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6626 -name: TS22,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005620 ! primary palate -relationship: part_of EMAP:6625 ! TS22,premaxilla -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005620 ! primary palate -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6627 -name: TS22,epithelium,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005659 ! primary palate epithelium -relationship: part_of EMAP:6626 ! TS22,primary palate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005659 ! primary palate epithelium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6628 -name: TS22,mesenchyme,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005705 ! primary palate mesenchyme -relationship: part_of EMAP:6626 ! TS22,primary palate -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005705 ! primary palate mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6629 -name: TS22,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003267 ! tooth of upper jaw -relationship: part_of EMAP:6615 ! TS22,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003267 ! tooth of upper jaw -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:663 -name: TS14,endoderm,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0013154 ! 1st arch maxillary endoderm -relationship: part_of EMAP:661 ! TS14,maxillary component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0013154 ! 1st arch maxillary endoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6630 -name: TS22,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003450 ! upper jaw incisor -relationship: part_of EMAP:6629 ! TS22,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6631 -name: TS22,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:6630 ! TS22,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6632 -name: TS22,dental lamina,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:6631 ! TS22,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6633 -name: TS22,enamel organ,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6631 ! TS22,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:6634 -name: TS22,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005707 ! upper jaw incisor odontogenic papilla -relationship: part_of EMAP:6630 ! TS22,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005707 ! upper jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6635 -name: TS22,dental papilla,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6634 ! TS22,mesenchyme,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005707 ! upper jaw incisor odontogenic papilla - -[Term] -id: EMAP:6636 -name: TS22,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003666 ! upper jaw molar -relationship: part_of EMAP:6629 ! TS22,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6637 -name: TS22,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:6636 ! TS22,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6638 -name: TS22,dental lamina,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:6637 ! TS22,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6639 -name: TS22,enamel organ,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6637 ! TS22,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003235 ! epithelium of upper jaw - -[Term] -id: EMAP:664 -name: TS14,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010045 ! 1st arch maxillary mesenchyme -relationship: part_of EMAP:661 ! TS14,maxillary component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010045 ! 1st arch maxillary mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6640 -name: TS22,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005700 ! upper jaw molar odontogenic papilla -relationship: part_of EMAP:6636 ! TS22,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005700 ! upper jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6641 -name: TS22,dental papilla,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6640 ! TS22,mesenchyme,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005700 ! upper jaw molar odontogenic papilla - -[Term] -id: EMAP:6642 -name: TS22,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:5721 ! TS22,visceral organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6643 -name: TS22,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:6642 ! TS22,liver and biliary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6644 -name: TS22,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:6642 ! TS22,liver and biliary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6645 -name: TS22,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:6642 ! TS22,liver and biliary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6646 -name: TS22,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:6642 ! TS22,liver and biliary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6647 -name: TS22,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:6646 ! TS22,hepatic duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6648 -name: TS22,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:6646 ! TS22,hepatic duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6649 -name: TS22,left,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:6648 ! TS22,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:665 -name: TS14,mesenchyme derived from head mesoderm,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:664 ! TS14,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:6650 -name: TS22,right,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:6648 ! TS22,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6651 -name: TS22,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:6642 ! TS22,liver and biliary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6652 -name: TS22,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001113 ! lobe of liver -relationship: part_of EMAP:6651 ! TS22,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001113 ! lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6653 -name: TS22,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001115 ! left lobe of liver -relationship: part_of EMAP:6652 ! TS22,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6654 -name: TS22,bare area,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:6653 ! TS22,left,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6655 -name: TS22,hepatic sinusoids,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -relationship: part_of EMAP:6653 ! TS22,left,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6656 -name: TS22,parenchyma,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005222 ! liver left lobe parenchyma -relationship: part_of EMAP:6653 ! TS22,left,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005222 ! liver left lobe parenchyma -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6657 -name: TS22,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001114 ! right lobe of liver -relationship: part_of EMAP:6652 ! TS22,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6658 -name: TS22,bare area,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:6657 ! TS22,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6659 -name: TS22,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001117 ! caudate lobe of liver -relationship: part_of EMAP:6657 ! TS22,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:666 -name: TS14,mesenchyme derived from neural crest,mesenchyme,maxillary component,1st arch -namespace: mouse_anatomy_stages -relationship: part_of EMAP:664 ! TS14,mesenchyme,maxillary component,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0010045 ! 1st arch maxillary mesenchyme - -[Term] -id: EMAP:6660 -name: TS22,hepatic sinusoids,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011737 ! caudate lobe hepatic sinusoids -relationship: part_of EMAP:6659 ! TS22,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011737 ! caudate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6661 -name: TS22,parenchyma,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010706 ! parenchyma of caudate lobe of liver -relationship: part_of EMAP:6659 ! TS22,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010706 ! parenchyma of caudate lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6662 -name: TS22,hepatic sinusoids,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -relationship: part_of EMAP:6657 ! TS22,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6663 -name: TS22,parenchyma,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005221 ! liver right lobe parenchyma -relationship: part_of EMAP:6657 ! TS22,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005221 ! liver right lobe parenchyma -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6664 -name: TS22,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001116 ! quadrate lobe of liver -relationship: part_of EMAP:6657 ! TS22,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6665 -name: TS22,hepatic sinusoids,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011738 ! quadrate lobe hepatic sinusoids -relationship: part_of EMAP:6664 ! TS22,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011738 ! quadrate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6666 -name: TS22,parenchyma,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010704 ! parenchyma of quadrate lobe of liver -relationship: part_of EMAP:6664 ! TS22,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010704 ! parenchyma of quadrate lobe of liver -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6667 -name: TS22,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001008 ! excretory system -relationship: part_of EMAP:5721 ! TS22,visceral organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001008 ! excretory system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6668 -name: TS22,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0001255 ! urinary bladder -relationship: part_of EMAP:6667 ! TS22,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6669 -name: TS22,fundus region,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0006082 ! fundus of urinary bladder -relationship: part_of EMAP:6668 ! TS22,bladder -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:667 -name: TS14,maxillary-mandibular groove -namespace: mouse_anatomy_stages -relationship: part_of EMAP:642 ! TS14,1st arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: EMAP:6670 -name: TS22,urachus -namespace: mouse_anatomy_stages -is_a: UBERON:0002068 ! urachus -relationship: part_of EMAP:6668 ! TS22,bladder -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002068 ! urachus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6671 -name: TS22,degenerating mesonephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6667 ! TS22,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6672 -name: TS22,mesentery,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0003393 ! mesentery of urinary system -relationship: part_of EMAP:6667 ! TS22,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6673 -name: TS22,urogenital mesentery -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6672 ! TS22,mesentery,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003393 ! mesentery of urinary system - -[Term] -id: EMAP:6674 -name: TS22,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:6667 ! TS22,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6675 -name: TS22,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6674 ! TS22,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6676 -name: TS22,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6674 ! TS22,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6677 -name: TS22,pelvis,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001224 ! renal pelvis -relationship: part_of EMAP:6676 ! TS22,drainage component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6678 -name: TS22,collecting ducts,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6676 ! TS22,drainage component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6679 -name: TS22,ureter -namespace: mouse_anatomy_stages -is_a: UBERON:0000056 ! ureter -relationship: part_of EMAP:6676 ! TS22,drainage component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000056 ! ureter -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:668 -name: TS14,ectoderm,maxillary-mandibular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -relationship: part_of EMAP:667 ! TS14,maxillary-mandibular groove -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6680 -name: TS22,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6674 ! TS22,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6681 -name: TS22,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001225 ! cortex of kidney -relationship: part_of EMAP:6680 ! TS22,excretory component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6682 -name: TS22,glomeruli,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6681 ! TS22,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6683 -name: TS22,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6681 ! TS22,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000081 ! metanephros - -[Term] -id: EMAP:6684 -name: TS22,stem cells,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6681 ! TS22,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6685 -name: TS22,medullary stroma,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0005211 ! renal medulla interstitium -relationship: part_of EMAP:6680 ! TS22,excretory component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005211 ! renal medulla interstitium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6686 -name: TS22,medullary tubules,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6680 ! TS22,excretory component,metanephros -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6687 -name: TS22,nephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6667 ! TS22,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001008 ! excretory system - -[Term] -id: EMAP:6688 -name: TS22,urogenital membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006307 ! urogenital membrane -relationship: part_of EMAP:6667 ! TS22,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006307 ! urogenital membrane -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6689 -name: TS22,urogenital sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0000164 ! primitive urogenital sinus -relationship: part_of EMAP:6667 ! TS22,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000164 ! primitive urogenital sinus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:669 -name: TS14,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003066 ! pharyngeal arch 2 -relationship: part_of EMAP:641 ! TS14,branchial arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6690 -name: TS22,pelvic part,urogenital sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6689 ! TS22,urogenital sinus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6691 -name: TS22,phallic part,urogenital sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6689 ! TS22,urogenital sinus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:6692 -name: TS22,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:6667 ! TS22,renal/urinary system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6693 -name: TS22,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000990 ! reproductive system -relationship: part_of EMAP:5721 ! TS22,visceral organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6694 -name: TS22,female,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000474 ! female reproductive system -relationship: part_of EMAP:6693 ! TS22,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6695 -name: TS22,Mullerian tubercle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6694 ! TS22,female,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000474 ! female reproductive system - -[Term] -id: EMAP:6696 -name: TS22,genital tubercle,female,reproductive system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6694 ! TS22,female,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6697 -name: TS22,labial swelling -namespace: mouse_anatomy_stages -is_a: UBERON:0011755 ! female labial swelling -relationship: part_of EMAP:6694 ! TS22,female,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011755 ! female labial swelling -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6698 -name: TS22,mesovarium -namespace: mouse_anatomy_stages -is_a: UBERON:0001342 ! mesovarium -relationship: part_of EMAP:6694 ! TS22,female,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6699 -name: TS22,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0000992 ! female gonad -relationship: part_of EMAP:6694 ! TS22,female,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000992 ! female gonad -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:67 -name: TS8,ectoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004366 ! extraembryonic ectoderm -relationship: part_of EMAP:63 ! TS8,extraembryonic component -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0004366 ! extraembryonic ectoderm -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:670 -name: TS14,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005873 ! 2nd arch pharyngeal cleft -relationship: part_of EMAP:669 ! TS14,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005873 ! 2nd arch pharyngeal cleft -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6700 -name: TS22,germinal epithelium,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6699 ! TS22,ovary -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:6701 -name: TS22,mesenchyme,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6699 ! TS22,ovary -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6702 -name: TS22,primordial germ cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6699 ! TS22,ovary -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:6703 -name: TS22,rete ovarii -namespace: mouse_anatomy_stages -is_a: UBERON:0010185 ! rete ovarii -relationship: part_of EMAP:6699 ! TS22,ovary -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010185 ! rete ovarii -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6704 -name: TS22,paramesonephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6694 ! TS22,female,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6705 -name: TS22,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000079 ! male reproductive system -relationship: part_of EMAP:6693 ! TS22,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6706 -name: TS22,genital tubercle,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0006261 ! male genital tubercle -relationship: part_of EMAP:6705 ! TS22,male,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006261 ! male genital tubercle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6707 -name: TS22,mesonephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6705 ! TS22,male,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000079 ! male reproductive system - -[Term] -id: EMAP:6708 -name: TS22,mesorchium -namespace: mouse_anatomy_stages -is_a: UBERON:0011879 ! mesorchium -relationship: part_of EMAP:6705 ! TS22,male,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6709 -name: TS22,primitive seminiferous tubules -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6705 ! TS22,male,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:671 -name: TS14,ectoderm,branchial groove,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:670 ! TS14,branchial groove,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6710 -name: TS22,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0000473 ! testis -relationship: part_of EMAP:6705 ! TS22,male,reproductive system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000473 ! testis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6711 -name: TS22,\"germinal\" epithelium,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0004910 ! epithelium of male gonad -relationship: part_of EMAP:6710 ! TS22,testis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004910 ! epithelium of male gonad -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6712 -name: TS22,mesenchyme,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6710 ! TS22,testis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6713 -name: TS22,primordial germ cells,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6710 ! TS22,testis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005297 ! testis sex cord - -[Term] -id: EMAP:6714 -name: TS22,mediastinum testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005051 ! mediastinum testis -relationship: part_of EMAP:6710 ! TS22,testis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005051 ! mediastinum testis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6715 -name: TS22,rete testis -namespace: mouse_anatomy_stages -is_a: UBERON:0003959 ! rete testis -relationship: part_of EMAP:6710 ! TS22,testis -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003959 ! rete testis -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6716 -name: TS22,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:5721 ! TS22,visceral organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6717 -name: TS22,arytenoid cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0001740 ! arytenoid cartilage -relationship: part_of EMAP:6716 ! TS22,respiratory system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6718 -name: TS22,laryngeal aditus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6716 ! TS22,respiratory system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001004 ! respiratory system - -[Term] -id: EMAP:6719 -name: TS22,laryngeal cartilage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6716 ! TS22,respiratory system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:672 -name: TS14,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0009215 ! pharyngeal membrane of 2nd arch -relationship: part_of EMAP:669 ! TS14,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009215 ! pharyngeal membrane of 2nd arch -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6720 -name: TS22,larynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001737 ! larynx -relationship: part_of EMAP:6716 ! TS22,respiratory system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001737 ! larynx -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6721 -name: TS22,mucous membranes -namespace: mouse_anatomy_stages -is_a: UBERON:0001824 ! mucosa of larynx -relationship: part_of EMAP:6720 ! TS22,larynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6722 -name: TS22,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:6716 ! TS22,respiratory system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6723 -name: TS22,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002168 ! left lung -relationship: part_of EMAP:6722 ! TS22,lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002168 ! left lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6724 -name: TS22,associated mesenchyme,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:6723 ! TS22,left lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6725 -name: TS22,epithelium,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003365 ! epithelium of left lung -relationship: part_of EMAP:6723 ! TS22,left lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6726 -name: TS22,hilus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004887 ! left lung hilus -relationship: part_of EMAP:6723 ! TS22,left lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6727 -name: TS22,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003405 ! lobar bronchus of left lung -relationship: part_of EMAP:6723 ! TS22,left lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6728 -name: TS22,associated mesenchyme,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6727 ! TS22,lobar bronchus,left lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:6729 -name: TS22,epithelium,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:6727 ! TS22,lobar bronchus,left lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:673 -name: TS14,ectoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:672 ! TS14,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6730 -name: TS22,vascular element,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6727 ! TS22,lobar bronchus,left lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:6731 -name: TS22,vascular element,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009536 ! vascular element of left lung -relationship: part_of EMAP:6723 ! TS22,left lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6732 -name: TS22,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002167 ! right lung -relationship: part_of EMAP:6722 ! TS22,lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002167 ! right lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6733 -name: TS22,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004890 ! right lung accessory lobe -relationship: part_of EMAP:6732 ! TS22,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6734 -name: TS22,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004896 ! right lung accessory lobe lobar bronchus -relationship: part_of EMAP:6733 ! TS22,accessory lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004896 ! right lung accessory lobe lobar bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6735 -name: TS22,associated mesenchyme,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6734 ! TS22,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:6736 -name: TS22,epithelium,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:6734 ! TS22,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6737 -name: TS22,vascular element,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6734 ! TS22,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:6738 -name: TS22,associated mesenchyme,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009603 ! right lung associated mesenchyme -relationship: part_of EMAP:6732 ! TS22,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6739 -name: TS22,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002171 ! lower lobe of right lung -relationship: part_of EMAP:6732 ! TS22,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:674 -name: TS14,endoderm,branchial membrane,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:672 ! TS14,branchial membrane,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6740 -name: TS22,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -relationship: part_of EMAP:6739 ! TS22,caudal lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6741 -name: TS22,associated mesenchyme,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6740 ! TS22,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:6742 -name: TS22,epithelium,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:6740 ! TS22,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6743 -name: TS22,vascular element,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6740 ! TS22,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:6744 -name: TS22,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002170 ! upper lobe of right lung -relationship: part_of EMAP:6732 ! TS22,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6745 -name: TS22,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -relationship: part_of EMAP:6744 ! TS22,cranial lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6746 -name: TS22,associated mesenchyme,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6745 ! TS22,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:6747 -name: TS22,epithelium,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:6745 ! TS22,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6748 -name: TS22,vascular element,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6745 ! TS22,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:6749 -name: TS22,epithelium,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003364 ! epithelium of right lung -relationship: part_of EMAP:6732 ! TS22,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:675 -name: TS14,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0007123 ! pharyngeal pouch 2 -relationship: part_of EMAP:669 ! TS14,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6750 -name: TS22,hilus,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004888 ! right lung hilus -relationship: part_of EMAP:6732 ! TS22,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6751 -name: TS22,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002174 ! middle lobe of right lung -relationship: part_of EMAP:6732 ! TS22,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6752 -name: TS22,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002183 ! lobar bronchus -relationship: part_of EMAP:6751 ! TS22,middle lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6753 -name: TS22,associated mesenchyme,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6752 ! TS22,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:6754 -name: TS22,epithelium,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:6752 ! TS22,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6755 -name: TS22,vascular element,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6752 ! TS22,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:6756 -name: TS22,vascular element,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009537 ! vascular element of right lung -relationship: part_of EMAP:6732 ! TS22,right lung -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6757 -name: TS22,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:6716 ! TS22,respiratory system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6758 -name: TS22,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:6757 ! TS22,respiratory tract -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6759 -name: TS22,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:6758 ! TS22,lower,respiratory tract -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:676 -name: TS14,endoderm,branchial pouch,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:675 ! TS14,branchial pouch,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6760 -name: TS22,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:6759 ! TS22,main bronchus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6761 -name: TS22,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:6759 ! TS22,main bronchus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6762 -name: TS22,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6759 ! TS22,main bronchus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:6763 -name: TS22,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:6758 ! TS22,lower,respiratory tract -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6764 -name: TS22,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:6763 ! TS22,trachea -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6765 -name: TS22,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:6763 ! TS22,trachea -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6766 -name: TS22,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6763 ! TS22,trachea -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:6767 -name: TS22,upper,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001557 ! upper respiratory tract -relationship: part_of EMAP:6757 ! TS22,respiratory tract -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6768 -name: TS22,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001728 ! nasopharynx -relationship: part_of EMAP:6767 ! TS22,upper,respiratory tract -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6769 -name: TS22,associated mesenchyme,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6768 ! TS22,nasopharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:677 -name: TS14,ectoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005660 ! 2nd arch ectoderm -relationship: part_of EMAP:669 ! TS14,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6770 -name: TS22,epithelium,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001951 ! epithelium of nasopharynx -relationship: part_of EMAP:6768 ! TS22,nasopharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6771 -name: TS22,vascular element,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6768 ! TS22,nasopharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:6772 -name: TS22,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:5719 ! TS22,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6773 -name: TS22,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:6772 ! TS22,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6774 -name: TS22,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:6773 ! TS22,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6775 -name: TS22,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002413 ! cervical vertebra -relationship: part_of EMAP:6774 ! TS22,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6776 -name: TS22,C1,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6775 ! TS22,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:6778 -name: TS22,C2,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6775 ! TS22,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:678 -name: TS14,endoderm,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005664 ! 2nd arch endoderm -relationship: part_of EMAP:669 ! TS14,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6781 -name: TS22,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:6773 ! TS22,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6782 -name: TS22,vertebral cartilage condensation,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6781 ! TS22,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: EMAP:6783 -name: TS22,nucleus pulposus,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6773 ! TS22,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:6784 -name: TS22,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:6773 ! TS22,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6785 -name: TS22,vertebral cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0010745 ! sacral vertebra cartilage condensation -relationship: part_of EMAP:6784 ! TS22,sacral region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010745 ! sacral vertebra cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6786 -name: TS22,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:6773 ! TS22,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6787 -name: TS22,rib cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006288 ! rib cartilage condensation -relationship: part_of EMAP:6786 ! TS22,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006288 ! rib cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6788 -name: TS22,vertebral cartilage condensation,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6786 ! TS22,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: EMAP:6789 -name: TS22,cranium -namespace: mouse_anatomy_stages -is_a: UBERON:0003129 ! skull -relationship: part_of EMAP:6772 ! TS22,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003129 ! skull -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:679 -name: TS14,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005689 ! 2nd arch mesenchyme -relationship: part_of EMAP:669 ! TS14,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6790 -name: TS22,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0002241 ! chondrocranium -relationship: part_of EMAP:6789 ! TS22,cranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6791 -name: TS22,basioccipital cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006209 ! basioccipital cartilage condensation -relationship: part_of EMAP:6790 ! TS22,chondrocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006209 ! basioccipital cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6792 -name: TS22,basisphenoid cartilage condensation -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6790 ! TS22,chondrocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002241 ! chondrocranium - -[Term] -id: EMAP:6793 -name: TS22,exoccipital cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010752 ! exoccipital cartilage condensation -relationship: part_of EMAP:6790 ! TS22,chondrocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010752 ! exoccipital cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6794 -name: TS22,sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001677 ! sphenoid bone -relationship: part_of EMAP:6790 ! TS22,chondrocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001677 ! sphenoid bone -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6795 -name: TS22,supraoccipital cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0011162 ! supraoccipital cartilaginous condensation -relationship: part_of EMAP:6790 ! TS22,chondrocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011162 ! supraoccipital cartilaginous condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6796 -name: TS22,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:6790 ! TS22,chondrocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6797 -name: TS22,petrous part,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001694 ! petrous part of temporal bone -relationship: part_of EMAP:6796 ! TS22,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6798 -name: TS22,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0004339 ! vault of skull -relationship: part_of EMAP:6789 ! TS22,cranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6799 -name: TS22,frontal bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006236 ! frontal bone primordium -relationship: part_of EMAP:6798 ! TS22,vault of skull -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006236 ! frontal bone primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:68 -name: TS8,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0008945 ! extraembryonic endoderm -relationship: part_of EMAP:63 ! TS8,extraembryonic component -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:680 -name: TS14,mesenchyme derived from head mesoderm,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:679 ! TS14,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6800 -name: TS22,inter-parietal bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006251 ! interparietal bone primordium -relationship: part_of EMAP:6798 ! TS22,vault of skull -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006251 ! interparietal bone primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6801 -name: TS22,parietal bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006274 ! parietal bone primordium -relationship: part_of EMAP:6798 ! TS22,vault of skull -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006274 ! parietal bone primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6802 -name: TS22,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:6798 ! TS22,vault of skull -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6803 -name: TS22,squamous part,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001695 ! squamous part of temporal bone -relationship: part_of EMAP:6802 ! TS22,temporal bone,vault of skull -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6804 -name: TS22,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0011156 ! facial skeleton -relationship: part_of EMAP:6789 ! TS22,cranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6805 -name: TS22,ethmoid bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006227 ! ethmoid bone primordium -relationship: part_of EMAP:6804 ! TS22,viscerocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006227 ! ethmoid bone primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6806 -name: TS22,facial bones primordia -namespace: mouse_anatomy_stages -is_a: UBERON:0006231 ! facial bone primordium -relationship: part_of EMAP:6804 ! TS22,viscerocranium -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006231 ! facial bone primordium -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6807 -name: TS22,pectoral girdle and thoracic body wall,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007831 ! skeleton of pectoral girdle -relationship: part_of EMAP:6772 ! TS22,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007831 ! skeleton of pectoral girdle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6808 -name: TS22,clavicle cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010843 ! clavicle cartilaginous condensation -relationship: part_of EMAP:6807 ! TS22,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010843 ! clavicle cartilaginous condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6809 -name: TS22,scapula cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006290 ! scapula cartilage condensation -relationship: part_of EMAP:6807 ! TS22,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006290 ! scapula cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:681 -name: TS14,mesenchyme derived from neural crest,mesenchyme,2nd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -relationship: part_of EMAP:679 ! TS14,mesenchyme,2nd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6810 -name: TS22,sternum -namespace: mouse_anatomy_stages -is_a: UBERON:0000975 ! sternum -relationship: part_of EMAP:6807 ! TS22,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000975 ! sternum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6811 -name: TS22,sternebral bone pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006295 ! sternebral bone pre-cartilage condensation -relationship: part_of EMAP:6810 ! TS22,sternum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006295 ! sternebral bone pre-cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6812 -name: TS22,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007832 ! skeleton of pelvic girdle -relationship: part_of EMAP:6772 ! TS22,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007832 ! skeleton of pelvic girdle -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6813 -name: TS22,acetabular region,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6812 ! TS22,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:6814 -name: TS22,iliac cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0010714 ! iliac cartilage condensation -relationship: part_of EMAP:6812 ! TS22,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0010714 ! iliac cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6815 -name: TS22,ischial pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006255 ! ischial pre-cartilage condensation -relationship: part_of EMAP:6812 ! TS22,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006255 ! ischial pre-cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6816 -name: TS22,pubic pre-cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0006285 ! pubic pre-cartilage condensation -relationship: part_of EMAP:6812 ! TS22,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006285 ! pubic pre-cartilage condensation -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6817 -name: TS22,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:5719 ! TS22,embryo -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6818 -name: TS22,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6817 ! TS22,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:6819 -name: TS22,mesenchyme derived from neural crest -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6818 ! TS22,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:682 -name: TS14,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0003114 ! pharyngeal arch 3 -relationship: part_of EMAP:641 ! TS14,branchial arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6820 -name: TS22,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:6818 ! TS22,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6821 -name: TS22,somite,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0009621 ! tail somite -relationship: part_of EMAP:6820 ! TS22,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0009621 ! tail somite -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6822 -name: TS22,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6823 -name: TS22,dermomyotome,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6822 ! TS22,somite 46 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6824 -name: TS22,myocoele,somite 46 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6822 ! TS22,somite 46 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6825 -name: TS22,sclerotome,somite 46 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6822 ! TS22,somite 46 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6826 -name: TS22,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6827 -name: TS22,dermomyotome,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6826 ! TS22,somite 47 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6828 -name: TS22,myocoele,somite 47 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6826 ! TS22,somite 47 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6829 -name: TS22,sclerotome,somite 47 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6826 ! TS22,somite 47 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:683 -name: TS14,ectoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005661 ! 3rd arch ectoderm -relationship: part_of EMAP:682 ! TS14,3rd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6830 -name: TS22,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6831 -name: TS22,dermomyotome,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6830 ! TS22,somite 48 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6832 -name: TS22,myocoele,somite 48 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6830 ! TS22,somite 48 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6833 -name: TS22,sclerotome,somite 48 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6830 ! TS22,somite 48 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6834 -name: TS22,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6835 -name: TS22,dermomyotome,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6834 ! TS22,somite 49 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6836 -name: TS22,myocoele,somite 49 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6834 ! TS22,somite 49 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6837 -name: TS22,sclerotome,somite 49 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6834 ! TS22,somite 49 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6838 -name: TS22,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6839 -name: TS22,dermomyotome,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6838 ! TS22,somite 50 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:684 -name: TS14,endoderm,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005665 ! 3rd arch endoderm -relationship: part_of EMAP:682 ! TS14,3rd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6840 -name: TS22,myocoele,somite 50 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6838 ! TS22,somite 50 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6841 -name: TS22,sclerotome,somite 50 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6838 ! TS22,somite 50 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6842 -name: TS22,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6843 -name: TS22,dermomyotome,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6842 ! TS22,somite 51 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6844 -name: TS22,myocoele,somite 51 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6842 ! TS22,somite 51 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6845 -name: TS22,sclerotome,somite 51 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6842 ! TS22,somite 51 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6846 -name: TS22,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6847 -name: TS22,dermomyotome,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6846 ! TS22,somite 52 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6848 -name: TS22,myocoele,somite 52 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6846 ! TS22,somite 52 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6849 -name: TS22,sclerotome,somite 52 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6846 ! TS22,somite 52 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:685 -name: TS14,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0005690 ! 3rd arch mesenchyme -relationship: part_of EMAP:682 ! TS14,3rd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6850 -name: TS22,somite 53 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6851 -name: TS22,dermomyotome,somite 53 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6850 ! TS22,somite 53 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6852 -name: TS22,myocoele,somite 53 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6850 ! TS22,somite 53 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6853 -name: TS22,sclerotome,somite 53 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6850 ! TS22,somite 53 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6854 -name: TS22,somite 54 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6855 -name: TS22,dermomyotome,somite 54 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6854 ! TS22,somite 54 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6856 -name: TS22,myocoele,somite 54 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6854 ! TS22,somite 54 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6857 -name: TS22,sclerotome,somite 54 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6854 ! TS22,somite 54 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6858 -name: TS22,somite 55 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6859 -name: TS22,dermomyotome,somite 55 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6858 ! TS22,somite 55 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:686 -name: TS14,mesenchyme derived from head mesoderm,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -relationship: part_of EMAP:685 ! TS14,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6860 -name: TS22,myocoele,somite 55 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6858 ! TS22,somite 55 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6861 -name: TS22,sclerotome,somite 55 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6858 ! TS22,somite 55 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6862 -name: TS22,somite 56 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6863 -name: TS22,dermomyotome,somite 56 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6862 ! TS22,somite 56 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6864 -name: TS22,myocoele,somite 56 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6862 ! TS22,somite 56 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6865 -name: TS22,sclerotome,somite 56 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6862 ! TS22,somite 56 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6866 -name: TS22,somite 57 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6867 -name: TS22,dermomyotome,somite 57 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6866 ! TS22,somite 57 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6868 -name: TS22,myocoele,somite 57 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6866 ! TS22,somite 57 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6869 -name: TS22,sclerotome,somite 57 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6866 ! TS22,somite 57 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:687 -name: TS14,mesenchyme derived from neural crest,mesenchyme,3rd arch -namespace: mouse_anatomy_stages -is_a: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -relationship: part_of EMAP:685 ! TS14,mesenchyme,3rd arch -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6870 -name: TS22,somite 58 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6871 -name: TS22,dermomyotome,somite 58 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6870 ! TS22,somite 58 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6872 -name: TS22,myocoele,somite 58 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6870 ! TS22,somite 58 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6873 -name: TS22,sclerotome,somite 58 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6870 ! TS22,somite 58 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6874 -name: TS22,somite 59 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6875 -name: TS22,dermomyotome,somite 59 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6874 ! TS22,somite 59 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6876 -name: TS22,myocoele,somite 59 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6874 ! TS22,somite 59 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6877 -name: TS22,sclerotome,somite 59 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6874 ! TS22,somite 59 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6878 -name: TS22,somite 60 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6821 ! TS22,somite,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6879 -name: TS22,dermomyotome,somite 60 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6878 ! TS22,somite 60 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:688 -name: TS14,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6880 -name: TS22,myocoele,somite 60 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:6878 ! TS22,somite 60 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6881 -name: TS22,sclerotome,somite 60 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6878 ! TS22,somite 60 -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0009621 ! tail somite - -[Term] -id: EMAP:6882 -name: TS22,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6817 ! TS22,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:6883 -name: TS22,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:6882 ! TS22,nervous system,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6884 -name: TS22,spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:6883 ! TS22,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6885 -name: TS22,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:6882 ! TS22,nervous system,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6886 -name: TS22,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003338 ! ganglion of peripheral nervous system -relationship: part_of EMAP:6885 ! TS22,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003338 ! ganglion of peripheral nervous system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6887 -name: TS22,dorsal root ganglion,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:6886 ! TS22,ganglion,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6888 -name: TS22,segmental spinal nerve,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6885 ! TS22,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6889 -name: TS22,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6817 ! TS22,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:689 -name: TS14,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:688 ! TS14,cavities and their linings -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6890 -name: TS22,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:6889 ! TS22,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6892 -name: TS22,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6890 ! TS22,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:6893 -name: TS22,vertebral pre-cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6890 ! TS22,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:6894 -name: TS22,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6895 -name: TS22,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:6894 ! TS22,extraembryonic component -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6896 -name: TS22,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:6895 ! TS22,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6897 -name: TS22,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:6896 ! TS22,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6898 -name: TS22,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6897 ! TS22,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:6899 -name: TS22,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6895 ! TS22,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:69 -name: TS8,intermediate endoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:68 ! TS8,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -relationship: part_of UBERON:0008945 ! extraembryonic endoderm - -[Term] -id: EMAP:690 -name: TS14,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:689 ! TS14,intraembryonic coelom -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:6900 -name: TS22,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:6899 ! TS22,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6901 -name: TS22,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6900 ! TS22,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:6902 -name: TS12,lumen,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:357 ! TS12,foregut diverticulum -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6903 -name: TS13,lumen,foregut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:601 ! TS13,foregut diverticulum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6904 -name: TS12,lumen,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:360 ! TS12,hindgut diverticulum -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6905 -name: TS13,lumen,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:611 ! TS13,hindgut diverticulum -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6906 -name: TS14,lumen,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:963 ! TS14,hindgut diverticulum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6907 -name: TS15,lumen,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1397 ! TS15,hindgut diverticulum -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:6908 -name: TS16,lumen,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1911 ! TS16,hindgut diverticulum -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:691 -name: TS14,cavity,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:690 ! TS14,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:6913 -name: TS12,lumen,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007147 ! lumen of midgut -relationship: part_of EMAP:364 ! TS12,midgut -relationship: exists_during MmusDv:0000019 ! Theiler stage 12 -intersection_of: UBERON:0007147 ! lumen of midgut -intersection_of: exists_during MmusDv:0000019 ! Theiler stage 12 - -[Term] -id: EMAP:6914 -name: TS13,lumen,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007147 ! lumen of midgut -relationship: part_of EMAP:614 ! TS13,midgut -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0007147 ! lumen of midgut -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:6915 -name: TS14,lumen,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007147 ! lumen of midgut -relationship: part_of EMAP:967 ! TS14,midgut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007147 ! lumen of midgut -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6916 -name: TS15,lumen,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007147 ! lumen of midgut -relationship: part_of EMAP:1407 ! TS15,midgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007147 ! lumen of midgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:6917 -name: TS16,lumen,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007147 ! lumen of midgut -relationship: part_of EMAP:1921 ! TS16,midgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007147 ! lumen of midgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:692 -name: TS14,mesothelium,pericardial component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0007188 ! mesothelium of serous pericardium -relationship: part_of EMAP:690 ! TS14,pericardial component,intraembryonic coelom -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6924 -name: TS18,lumen,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3122 ! TS18,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6925 -name: TS19,lumen,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3736 ! TS19,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6926 -name: TS20,lumen,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4465 ! TS20,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6927 -name: TS21,lumen,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5363 ! TS21,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6928 -name: TS22,lumen,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6490 ! TS22,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:6929 -name: TS22,lumen,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6496 ! TS22,gastro-oesophageal junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:693 -name: TS14,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006275 ! pericardio-peritoneal canal -relationship: part_of EMAP:689 ! TS14,intraembryonic coelom -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6930 -name: TS16,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1887 ! TS16,oesophagus -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6931 -name: TS17,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2481 ! TS17,oesophagus -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6932 -name: TS18,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3128 ! TS18,oesophagus -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6933 -name: TS19,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3742 ! TS19,oesophagus -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6934 -name: TS20,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4471 ! TS20,oesophagus -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6935 -name: TS21,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5369 ! TS21,oesophagus -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6936 -name: TS22,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6500 ! TS22,oesophagus -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:6937 -name: TS15,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:1371 ! TS15,pharynx -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:6938 -name: TS16,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:1893 ! TS16,pharynx -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:6939 -name: TS17,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:2487 ! TS17,pharynx -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:694 -name: TS14,cavity,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0009481 ! cavity of pericardio-peritoneal canal -relationship: part_of EMAP:693 ! TS14,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6940 -name: TS18,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:3134 ! TS18,pharynx -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:6941 -name: TS19,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:3748 ! TS19,pharynx -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:6942 -name: TS20,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:4477 ! TS20,pharynx -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:6943 -name: TS21,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:5375 ! TS21,pharynx -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:6944 -name: TS22,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:6506 ! TS22,pharynx -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:6945 -name: TS21,lumen,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5386 ! TS21,fundus,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6946 -name: TS22,lumen,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6528 ! TS22,fundus,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6947 -name: TS20,lumen,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4495 ! TS20,glandular region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:6948 -name: TS21,lumen,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5390 ! TS21,glandular region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:6949 -name: TS22,lumen,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6533 ! TS22,glandular region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:695 -name: TS14,mesothelium,pericardio-peritoneal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -relationship: part_of EMAP:693 ! TS14,pericardio-peritoneal canal -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6950 -name: TS20,lumen,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4502 ! TS20,proventricular region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6951 -name: TS21,lumen,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5398 ! TS21,proventricular region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6952 -name: TS22,lumen,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6545 ! TS22,proventricular region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6953 -name: TS20,lumen,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4506 ! TS20,pyloric region,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:6954 -name: TS21,lumen,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5402 ! TS21,pyloric region,stomach -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:6955 -name: TS22,lumen,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6549 ! TS22,pyloric region,stomach -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:6956 -name: TS13,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:607 ! TS13,foregut-midgut junction -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6957 -name: TS14,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:953 ! TS14,foregut-midgut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6958 -name: TS15,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1386 ! TS15,foregut-midgut junction -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6959 -name: TS16,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1904 ! TS16,foregut-midgut junction -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:696 -name: TS14,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:689 ! TS14,intraembryonic coelom -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:6960 -name: TS17,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2505 ! TS17,foregut-midgut junction -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6961 -name: TS18,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2826 ! TS18,foregut-midgut junction -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6962 -name: TS19,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3450 ! TS19,foregut-midgut junction -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6963 -name: TS20,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4111 ! TS20,foregut-midgut junction -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6964 -name: TS21,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4921 ! TS21,foregut-midgut junction -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6965 -name: TS22,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5724 ! TS22,foregut-midgut junction -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:6966 -name: TS21,lumen,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5413 ! TS21,perineal body -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:6967 -name: TS22,lumen,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6558 ! TS22,perineal body -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:6968 -name: TS21,lumen,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5417 ! TS21,rectum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:6969 -name: TS22,lumen,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6562 ! TS22,rectum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:697 -name: TS14,cavity,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -relationship: part_of EMAP:696 ! TS14,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0003887 ! intraembryonic coelom - -[Term] -id: EMAP:6970 -name: TS21,lumen,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5421 ! TS21,rest of hindgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:6971 -name: TS22,lumen,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6566 ! TS22,rest of hindgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:6972 -name: TS18,lumen,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3176 ! TS18,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:6973 -name: TS19,lumen,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3793 ! TS19,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:6974 -name: TS20,lumen,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4533 ! TS20,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:6975 -name: TS21,lumen,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5429 ! TS21,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:6976 -name: TS22,lumen,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6574 ! TS22,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:6977 -name: TS17,lumen,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2528 ! TS17,loop,midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:6978 -name: TS18,lumen,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3182 ! TS18,loop,midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:6979 -name: TS19,lumen,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3799 ! TS19,loop,midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:698 -name: TS14,mesothelium,peritoneal component,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0005669 ! peritoneal cavity mesothelium -relationship: part_of EMAP:696 ! TS14,peritoneal component,intraembryonic coelom -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005669 ! peritoneal cavity mesothelium -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6980 -name: TS20,lumen,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4539 ! TS20,loop,midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:6981 -name: TS21,lumen,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5435 ! TS21,loop,midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:6982 -name: TS22,lumen,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6580 ! TS22,loop,midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:6983 -name: TS17,lumen,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2534 ! TS17,rest of midgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6984 -name: TS18,lumen,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3188 ! TS18,rest of midgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6985 -name: TS19,lumen,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3805 ! TS19,rest of midgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6986 -name: TS20,lumen,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4545 ! TS20,rest of midgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6987 -name: TS21,lumen,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5441 ! TS21,rest of midgut -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6988 -name: TS22,lumen,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6586 ! TS22,rest of midgut -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:6989 -name: TS22,lumen,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6483 ! TS22,caudal part,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:699 -name: TS14,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:6990 -name: TS22,lumen,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:6479 ! TS22,rostral part,anal canal -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:6991 -name: TS17,lumen,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2498 ! TS17,stomach -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6992 -name: TS18,lumen,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3146 ! TS18,stomach -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6993 -name: TS19,lumen,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3763 ! TS19,stomach -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6994 -name: TS20,lumen,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4492 ! TS20,stomach -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:6995 -name: TS15,lumen,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007148 ! lumen of hindgut -relationship: part_of EMAP:1401 ! TS15,hindgut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -intersection_of: UBERON:0007148 ! lumen of hindgut -intersection_of: exists_during MmusDv:0000022 ! Theiler stage 15 - -[Term] -id: EMAP:6996 -name: TS16,lumen,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007148 ! lumen of hindgut -relationship: part_of EMAP:1915 ! TS16,hindgut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -intersection_of: UBERON:0007148 ! lumen of hindgut -intersection_of: exists_during MmusDv:0000023 ! Theiler stage 16 - -[Term] -id: EMAP:6997 -name: TS17,lumen,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007148 ! lumen of hindgut -relationship: part_of EMAP:2521 ! TS17,hindgut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0007148 ! lumen of hindgut -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:6998 -name: TS18,lumen,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007148 ! lumen of hindgut -relationship: part_of EMAP:3168 ! TS18,hindgut -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0007148 ! lumen of hindgut -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:6999 -name: TS19,lumen,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007148 ! lumen of hindgut -relationship: part_of EMAP:3785 ! TS19,hindgut -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0007148 ! lumen of hindgut -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:7 -name: TS2,zona pellucida -namespace: mouse_anatomy_stages -is_a: UBERON:0000086 ! zona pellucida -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000005 ! Theiler stage 02 -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: exists_during MmusDv:0000005 ! Theiler stage 02 - -[Term] -id: EMAP:70 -name: TS8,parietal endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008800 ! parietal endoderm -relationship: part_of EMAP:68 ! TS8,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0008800 ! parietal endoderm -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:700 -name: TS14,surface ectoderm,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:699 ! TS14,ectoderm,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7000 -name: TS20,lumen,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0007148 ! lumen of hindgut -relationship: part_of EMAP:4525 ! TS20,hindgut -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0007148 ! lumen of hindgut -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7001 -name: TS17,lumen,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2513 ! TS17,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:7002 -name: TS18,lumen,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3160 ! TS18,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:7003 -name: TS19,lumen,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3777 ! TS19,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:7004 -name: TS20,lumen,postanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4517 ! TS20,postanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:7005 -name: TS17,lumen,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2517 ! TS17,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:7006 -name: TS18,lumen,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3164 ! TS18,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:7007 -name: TS19,lumen,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3781 ! TS19,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:7008 -name: TS20,lumen,preanal component,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4521 ! TS20,preanal component,hindgut diverticulum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:7009 -name: TS15,cavity,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1413 ! TS15,oral region,alimentary system -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0000165 ! mouth - -[Term] -id: EMAP:701 -name: TS14,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7010 -name: TS16,cavity,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1679 ! TS16,oral region,alimentary system -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0000165 ! mouth - -[Term] -id: EMAP:7011 -name: TS17,cavity,oral region,alimentary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2223 ! TS17,oral region,alimentary system -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000165 ! mouth - -[Term] -id: EMAP:7012 -name: TS14,lumen,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:945 ! TS14,rest of foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:7013 -name: TS15,lumen,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1375 ! TS15,rest of foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:7014 -name: TS16,lumen,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1897 ! TS16,rest of foregut -relationship: exists_during MmusDv:0000023 ! Theiler stage 16 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:7015 -name: TS17,lumen,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2491 ! TS17,rest of foregut -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:7016 -name: TS15,lumen,oesophageal region,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1365 ! TS15,oesophageal region,foregut -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0009143 ! developing esophageal region - -[Term] -id: EMAP:7017 -name: TS14,lumen,pharyngeal region,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:941 ! TS14,pharyngeal region,foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0009145 ! pharyngeal region - -[Term] -id: EMAP:7018 -name: TS13,endoderm,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009550 ! endoderm of foregut-midgut junction -relationship: part_of EMAP:607 ! TS13,foregut-midgut junction -relationship: exists_during MmusDv:0000020 ! Theiler stage 13 -intersection_of: UBERON:0009550 ! endoderm of foregut-midgut junction -intersection_of: exists_during MmusDv:0000020 ! Theiler stage 13 - -[Term] -id: EMAP:7019 -name: TS20,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:4396 ! TS20,heart -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:702 -name: TS14,forelimb bud -namespace: mouse_anatomy_stages -is_a: UBERON:0005417 ! forelimb bud -relationship: part_of EMAP:701 ! TS14,limb -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7020 -name: TS14,endoderm,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009480 ! endoderm of buccopharyngeal membrane -relationship: part_of EMAP:972 ! TS14,buccopharyngeal membrane -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009480 ! endoderm of buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7021 -name: TS20,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4146 ! TS20,integumental system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7022 -name: TS21,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4956 ! TS21,integumental system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7023 -name: TS22,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5979 ! TS22,integumental system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7024 -name: TS20,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7021 ! TS20,physiological umbilical hernia -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7025 -name: TS21,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7022 ! TS21,physiological umbilical hernia -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7026 -name: TS22,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7023 ! TS22,physiological umbilical hernia -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7027 -name: TS20,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7021 ! TS20,physiological umbilical hernia -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7028 -name: TS21,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7022 ! TS21,physiological umbilical hernia -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7029 -name: TS22,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7023 ! TS22,physiological umbilical hernia -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:703 -name: TS14,ectoderm,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:702 ! TS14,forelimb bud -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:7030 -name: TS17,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:2567 ! TS17,trachea -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:7031 -name: TS18,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:3221 ! TS18,trachea -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:7032 -name: TS19,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:3876 ! TS19,trachea -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:7033 -name: TS20,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:4627 ! TS20,trachea -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7034 -name: TS21,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:5586 ! TS21,trachea -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7035 -name: TS22,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:6763 ! TS22,trachea -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7036 -name: TS17,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7030 ! TS17,carina tracheae -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7037 -name: TS18,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7031 ! TS18,carina tracheae -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7038 -name: TS19,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7032 ! TS19,carina tracheae -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7039 -name: TS20,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7033 ! TS20,carina tracheae -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:704 -name: TS14,mesenchyme,forelimb bud -namespace: mouse_anatomy_stages -relationship: part_of EMAP:702 ! TS14,forelimb bud -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005417 ! forelimb bud - -[Term] -id: EMAP:7040 -name: TS21,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7034 ! TS21,carina tracheae -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7041 -name: TS22,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7035 ! TS22,carina tracheae -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7042 -name: TS17,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:7030 ! TS17,carina tracheae -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000024 ! Theiler stage 17 - -[Term] -id: EMAP:7043 -name: TS18,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:7031 ! TS18,carina tracheae -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000025 ! Theiler stage 18 - -[Term] -id: EMAP:7044 -name: TS19,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:7032 ! TS19,carina tracheae -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:7045 -name: TS20,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:7033 ! TS20,carina tracheae -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7046 -name: TS21,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:7034 ! TS21,carina tracheae -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7047 -name: TS22,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:7035 ! TS22,carina tracheae -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7048 -name: TS17,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7030 ! TS17,carina tracheae -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7049 -name: TS18,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7031 ! TS18,carina tracheae -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:705 -name: TS14,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7050 -name: TS19,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7032 ! TS19,carina tracheae -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7051 -name: TS20,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7033 ! TS20,carina tracheae -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7052 -name: TS21,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7034 ! TS21,carina tracheae -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7053 -name: TS22,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7035 ! TS22,carina tracheae -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:7054 -name: TS17,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2006 ! TS17,embryo -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7055 -name: TS18,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2636 ! TS18,embryo -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7056 -name: TS19,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3322 ! TS19,embryo -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7057 -name: TS17,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7054 ! TS17,physiological umbilical hernia -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7058 -name: TS18,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7055 ! TS18,physiological umbilical hernia -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7059 -name: TS19,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7056 ! TS19,physiological umbilical hernia -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:706 -name: TS14,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:705 ! TS14,mesenchyme,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7060 -name: TS17,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7054 ! TS17,physiological umbilical hernia -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7061 -name: TS18,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7055 ! TS18,physiological umbilical hernia -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7062 -name: TS19,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7056 ! TS19,physiological umbilical hernia -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7063 -name: TS14,ectoderm,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009479 ! ectoderm of buccopharyngeal membrane -relationship: part_of EMAP:972 ! TS14,buccopharyngeal membrane -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009479 ! ectoderm of buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7064 -name: TS17,visceral,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2083 ! TS17,mesothelium,greater sac -relationship: exists_during MmusDv:0000024 ! Theiler stage 17 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:7065 -name: TS18,visceral,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:2713 ! TS18,mesothelium,greater sac -relationship: exists_during MmusDv:0000025 ! Theiler stage 18 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:7066 -name: TS19,visceral,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:3385 ! TS19,mesothelium,greater sac -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:7067 -name: TS20,visceral,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4001 ! TS20,mesothelium,greater sac -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:7068 -name: TS21,visceral,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4764 ! TS21,mesothelium,greater sac -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:7069 -name: TS22,visceral,mesothelium,greater sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5751 ! TS22,mesothelium,greater sac -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:707 -name: TS14,mesenchyme derived from head mesoderm,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006904 ! head mesenchyme from mesoderm -relationship: part_of EMAP:706 ! TS14,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7070 -name: TS19,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0004087 ! vena cava -relationship: part_of EMAP:3712 ! TS19,venous system -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0004087 ! vena cava -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:7071 -name: TS20,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0004087 ! vena cava -relationship: part_of EMAP:4442 ! TS20,venous system -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0004087 ! vena cava -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7072 -name: TS21,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0004087 ! vena cava -relationship: part_of EMAP:5340 ! TS21,venous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0004087 ! vena cava -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7073 -name: TS22,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0004087 ! vena cava -relationship: part_of EMAP:6452 ! TS22,venous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0004087 ! vena cava -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7074 -name: TS19,inferior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001072 ! inferior vena cava -relationship: part_of EMAP:7070 ! TS19,vena cava -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -intersection_of: UBERON:0001072 ! inferior vena cava -intersection_of: exists_during MmusDv:0000026 ! Theiler stage 19 - -[Term] -id: EMAP:7075 -name: TS20,inferior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001072 ! inferior vena cava -relationship: part_of EMAP:7071 ! TS20,vena cava -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0001072 ! inferior vena cava -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7076 -name: TS21,inferior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001072 ! inferior vena cava -relationship: part_of EMAP:7072 ! TS21,vena cava -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001072 ! inferior vena cava -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7077 -name: TS22,inferior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001072 ! inferior vena cava -relationship: part_of EMAP:7073 ! TS22,vena cava -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001072 ! inferior vena cava -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7078 -name: TS21,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001585 ! anterior vena cava -relationship: part_of EMAP:7072 ! TS21,vena cava -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7079 -name: TS22,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001585 ! anterior vena cava -relationship: part_of EMAP:7073 ! TS22,vena cava -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:708 -name: TS14,mesenchyme derived from neural crest,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0007213 ! mesenchyme derived from head neural crest -relationship: part_of EMAP:706 ! TS14,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7080 -name: TS21,left,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006765 ! left anterior vena cava -relationship: part_of EMAP:7078 ! TS21,superior,vena cava -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006765 ! left anterior vena cava -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7081 -name: TS22,left,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006765 ! left anterior vena cava -relationship: part_of EMAP:7079 ! TS22,superior,vena cava -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006765 ! left anterior vena cava -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7082 -name: TS21,right,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006766 ! right anterior vena cava -relationship: part_of EMAP:7078 ! TS21,superior,vena cava -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0006766 ! right anterior vena cava -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7083 -name: TS22,right,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006766 ! right anterior vena cava -relationship: part_of EMAP:7079 ! TS22,superior,vena cava -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0006766 ! right anterior vena cava -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7084 -name: TS19,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7074 ! TS19,inferior,vena cava -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7085 -name: TS20,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7075 ! TS20,inferior,vena cava -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7086 -name: TS21,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7076 ! TS21,inferior,vena cava -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7087 -name: TS22,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7077 ! TS22,inferior,vena cava -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:709 -name: TS14,facial neural crest -namespace: mouse_anatomy_stages -is_a: UBERON:0007681 ! facial neural crest -relationship: part_of EMAP:708 ! TS14,mesenchyme derived from neural crest,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007681 ! facial neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7090 -name: TS21,pre-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7076 ! TS21,inferior,vena cava -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7091 -name: TS22,pre-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7077 ! TS22,inferior,vena cava -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7092 -name: TS19,left,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7084 ! TS19,post-hepatic part,inferior,vena cava -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7093 -name: TS19,right,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7084 ! TS19,post-hepatic part,inferior,vena cava -relationship: exists_during MmusDv:0000026 ! Theiler stage 19 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7094 -name: TS22,gland,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0002530 ! gland -relationship: part_of EMAP:5720 ! TS22,organ system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002530 ! gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7095 -name: TS22,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0002369 ! adrenal gland -relationship: part_of EMAP:7094 ! TS22,gland,organ system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7096 -name: TS22,cortex,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001235 ! adrenal cortex -relationship: part_of EMAP:7095 ! TS22,adrenal gland -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7097 -name: TS22,medulla,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001236 ! adrenal medulla -relationship: part_of EMAP:7095 ! TS22,adrenal gland -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7098 -name: TS21,mesothelium,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0003389 ! mesothelium of diaphragm -relationship: part_of EMAP:4743 ! TS21,diaphragm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003389 ! mesothelium of diaphragm -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7099 -name: TS22,mesothelium,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0003389 ! mesothelium of diaphragm -relationship: part_of EMAP:5729 ! TS22,diaphragm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003389 ! mesothelium of diaphragm -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:71 -name: TS8,Reichert's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004369 ! Reichert's membrane -relationship: part_of EMAP:70 ! TS8,parietal endoderm -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0004369 ! Reichert's membrane -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:710 -name: TS14,facio-acoustic neural crest -namespace: mouse_anatomy_stages -is_a: UBERON:0005565 ! facio-acoustic neural crest -relationship: part_of EMAP:708 ! TS14,mesenchyme derived from neural crest,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005565 ! facio-acoustic neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7101 -name: TS21,rest of mesenchyme,mesenchyme,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4779 ! TS21,mesenchyme,elbow -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003318 ! mesenchyme of elbow - -[Term] -id: EMAP:7102 -name: TS22,rest of mesenchyme,mesenchyme,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5769 ! TS22,mesenchyme,elbow -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003318 ! mesenchyme of elbow - -[Term] -id: EMAP:7103 -name: TS20,rest of mesenchyme,mesenchyme,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4019 ! TS20,mesenchyme,forearm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0003327 ! mesenchyme of forearm - -[Term] -id: EMAP:7104 -name: TS21,rest of mesenchyme,mesenchyme,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4783 ! TS21,mesenchyme,forearm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003327 ! mesenchyme of forearm - -[Term] -id: EMAP:7105 -name: TS22,rest of mesenchyme,mesenchyme,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5775 ! TS22,mesenchyme,forearm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003327 ! mesenchyme of forearm - -[Term] -id: EMAP:7107 -name: TS21,rest of mesenchyme,mesenchyme,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4787 ! TS21,mesenchyme,shoulder -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003322 ! mesenchyme of shoulder - -[Term] -id: EMAP:7108 -name: TS22,rest of mesenchyme,mesenchyme,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5782 ! TS22,mesenchyme,shoulder -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003322 ! mesenchyme of shoulder - -[Term] -id: EMAP:7109 -name: TS20,rest of mesenchyme,mesenchyme,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4026 ! TS20,mesenchyme,upper arm -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005258 ! upper arm mesenchyme - -[Term] -id: EMAP:711 -name: TS14,trigeminal neural crest -namespace: mouse_anatomy_stages -is_a: UBERON:0005563 ! trigeminal neural crest -relationship: part_of EMAP:708 ! TS14,mesenchyme derived from neural crest,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005563 ! trigeminal neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7110 -name: TS21,rest of mesenchyme,mesenchyme,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4791 ! TS21,mesenchyme,upper arm -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005258 ! upper arm mesenchyme - -[Term] -id: EMAP:7111 -name: TS22,rest of mesenchyme,mesenchyme,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5788 ! TS22,mesenchyme,upper arm -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005258 ! upper arm mesenchyme - -[Term] -id: EMAP:7113 -name: TS21,rest of mesenchyme,mesenchyme,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4882 ! TS21,mesenchyme,hip -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003320 ! mesenchyme of hip - -[Term] -id: EMAP:7114 -name: TS22,rest of mesenchyme,mesenchyme,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5921 ! TS22,mesenchyme,hip -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003320 ! mesenchyme of hip - -[Term] -id: EMAP:7116 -name: TS21,rest of mesenchyme,mesenchyme,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4886 ! TS21,mesenchyme,knee -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0003321 ! mesenchyme of knee - -[Term] -id: EMAP:7117 -name: TS22,rest of mesenchyme,mesenchyme,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5927 ! TS22,mesenchyme,knee -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0003321 ! mesenchyme of knee - -[Term] -id: EMAP:7119 -name: TS21,rest of mesenchyme,mesenchyme,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4890 ! TS21,mesenchyme,lower leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005259 ! lower leg mesenchyme - -[Term] -id: EMAP:712 -name: TS14,paraxial mesenchyme,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0009617 ! head paraxial mesoderm -relationship: part_of EMAP:706 ! TS14,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009617 ! head paraxial mesoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7120 -name: TS22,rest of mesenchyme,mesenchyme,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5933 ! TS22,mesenchyme,lower leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005259 ! lower leg mesenchyme - -[Term] -id: EMAP:7121 -name: TS20,rest of mesenchyme,mesenchyme,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4101 ! TS20,mesenchyme,upper leg -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -relationship: part_of UBERON:0005254 ! upper leg mesenchyme - -[Term] -id: EMAP:7122 -name: TS21,rest of mesenchyme,mesenchyme,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:4894 ! TS21,mesenchyme,upper leg -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0005254 ! upper leg mesenchyme - -[Term] -id: EMAP:7123 -name: TS22,rest of mesenchyme,mesenchyme,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5940 ! TS22,mesenchyme,upper leg -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -relationship: part_of UBERON:0005254 ! upper leg mesenchyme - -[Term] -id: EMAP:7124 -name: TS21,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001991 ! cervical ganglion -relationship: part_of EMAP:5126 ! TS21,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7125 -name: TS22,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001991 ! cervical ganglion -relationship: part_of EMAP:6222 ! TS22,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7126 -name: TS21,inferior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002440 ! inferior cervical ganglion -relationship: part_of EMAP:7124 ! TS21,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7127 -name: TS22,inferior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002440 ! inferior cervical ganglion -relationship: part_of EMAP:7125 ! TS22,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7128 -name: TS21,middle,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001990 ! middle cervical ganglion -relationship: part_of EMAP:7124 ! TS21,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7129 -name: TS22,middle,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001990 ! middle cervical ganglion -relationship: part_of EMAP:7125 ! TS22,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:713 -name: TS14,somite,paraxial mesenchyme,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005594 ! head somite -relationship: part_of EMAP:712 ! TS14,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005594 ! head somite -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7130 -name: TS21,superior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001989 ! superior cervical ganglion -relationship: part_of EMAP:7124 ! TS21,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7131 -name: TS22,superior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001989 ! superior cervical ganglion -relationship: part_of EMAP:7125 ! TS22,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7132 -name: TS20,epithelium,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003356 ! epithelium of nasal septum -relationship: part_of EMAP:4351 ! TS20,nasal septum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003356 ! epithelium of nasal septum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7133 -name: TS21,epithelium,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003356 ! epithelium of nasal septum -relationship: part_of EMAP:5245 ! TS21,nasal septum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003356 ! epithelium of nasal septum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7134 -name: TS22,epithelium,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003356 ! epithelium of nasal septum -relationship: part_of EMAP:6350 ! TS22,nasal septum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003356 ! epithelium of nasal septum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7135 -name: TS20,mesenchyme,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003415 ! mesenchyme of nasal septum -relationship: part_of EMAP:4351 ! TS20,nasal septum -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7136 -name: TS21,mesenchyme,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003415 ! mesenchyme of nasal septum -relationship: part_of EMAP:5245 ! TS21,nasal septum -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7137 -name: TS22,mesenchyme,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003415 ! mesenchyme of nasal septum -relationship: part_of EMAP:6350 ! TS22,nasal septum -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7138 -name: TS20,epithelium,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003367 ! epithelium of vomeronasal organ -relationship: part_of EMAP:4364 ! TS20,vomeronasal organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7139 -name: TS21,epithelium,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003367 ! epithelium of vomeronasal organ -relationship: part_of EMAP:5247 ! TS21,vomeronasal organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:714 -name: TS14,somite 01 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:713 ! TS14,somite,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:7140 -name: TS22,epithelium,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003367 ! epithelium of vomeronasal organ -relationship: part_of EMAP:6352 ! TS22,vomeronasal organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7141 -name: TS20,mesenchyme,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003421 ! mesenchyme of vomeronasal organ -relationship: part_of EMAP:4364 ! TS20,vomeronasal organ -relationship: exists_during MmusDv:0000027 ! Theiler stage 20 -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: exists_during MmusDv:0000027 ! Theiler stage 20 - -[Term] -id: EMAP:7142 -name: TS21,mesenchyme,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003421 ! mesenchyme of vomeronasal organ -relationship: part_of EMAP:5247 ! TS21,vomeronasal organ -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: exists_during MmusDv:0000028 ! Theiler stage 21 - -[Term] -id: EMAP:7143 -name: TS22,mesenchyme,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003421 ! mesenchyme of vomeronasal organ -relationship: part_of EMAP:6352 ! TS22,vomeronasal organ -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7144 -name: TS22,skeleton,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003278 ! skeleton of lower jaw -relationship: part_of EMAP:6593 ! TS22,lower jaw -relationship: exists_during MmusDv:0000029 ! Theiler stage 22 -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: exists_during MmusDv:0000029 ! Theiler stage 22 - -[Term] -id: EMAP:7145 -name: TS14,lumen,otic pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:867 ! TS14,otic pit -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006273 ! otic pit - -[Term] -id: EMAP:7146 -name: TS15,lumen,otic pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:1279 ! TS15,otic pit -relationship: exists_during MmusDv:0000022 ! Theiler stage 15 -relationship: part_of UBERON:0006273 ! otic pit - -[Term] -id: EMAP:7147 -name: TS21,alveolar sulcus,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:5448 ! TS21,lower jaw -relationship: exists_during MmusDv:0000028 ! Theiler stage 21 -relationship: part_of UBERON:0001710 ! lower jaw region - -[Term] -id: EMAP:7148 -name: TS23,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7149 -name: TS23,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:7148 ! TS23,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:715 -name: TS14,somite 02 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:713 ! TS14,somite,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:7150 -name: TS23,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:7149 ! TS23,cavities and their linings -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7151 -name: TS23,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0001103 ! diaphragm -relationship: part_of EMAP:7150 ! TS23,intraembryonic coelom -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7152 -name: TS23,central tendon,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0006670 ! central tendon -relationship: part_of EMAP:7151 ! TS23,diaphragm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006670 ! central tendon -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7153 -name: TS23,crus,diaphragm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7151 ! TS23,diaphragm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001103 ! diaphragm - -[Term] -id: EMAP:7154 -name: TS23,dome,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0007145 ! dome of diaphragm -relationship: part_of EMAP:7151 ! TS23,diaphragm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007145 ! dome of diaphragm -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7155 -name: TS23,pleuro-pericardial folds -namespace: mouse_anatomy_stages -is_a: UBERON:0006278 ! pleuropericardial folds -relationship: part_of EMAP:7151 ! TS23,diaphragm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006278 ! pleuropericardial folds -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7156 -name: TS23,pleuro-peritoneal folds -namespace: mouse_anatomy_stages -is_a: UBERON:0009133 ! pleuroperitoneal membrane -relationship: part_of EMAP:7151 ! TS23,diaphragm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009133 ! pleuroperitoneal membrane -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7157 -name: TS23,mesothelium,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0003389 ! mesothelium of diaphragm -relationship: part_of EMAP:7151 ! TS23,diaphragm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003389 ! mesothelium of diaphragm -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7158 -name: TS23,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001074 ! pericardial cavity -relationship: part_of EMAP:7150 ! TS23,intraembryonic coelom -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7159 -name: TS23,cavity,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001074 ! pericardial cavity -relationship: part_of EMAP:7158 ! TS23,pericardial cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:716 -name: TS14,somite 03 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:713 ! TS14,somite,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:7160 -name: TS23,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003388 ! mesothelium of pericardial cavity -relationship: part_of EMAP:7158 ! TS23,pericardial cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003388 ! mesothelium of pericardial cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7161 -name: TS23,parietal,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7160 ! TS23,mesothelium,pericardial cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003388 ! mesothelium of pericardial cavity - -[Term] -id: EMAP:7162 -name: TS23,visceral,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7160 ! TS23,mesothelium,pericardial cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003388 ! mesothelium of pericardial cavity - -[Term] -id: EMAP:7163 -name: TS23,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:7150 ! TS23,intraembryonic coelom -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001179 ! peritoneal cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7164 -name: TS23,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:7163 ! TS23,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7165 -name: TS23,cavity,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:7164 ! TS23,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7166 -name: TS23,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:7164 ! TS23,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7167 -name: TS23,parietal,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7166 ! TS23,mesothelium,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:7168 -name: TS23,visceral,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7166 ! TS23,mesothelium,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:7169 -name: TS23,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:7163 ! TS23,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:717 -name: TS14,somite 04 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:713 ! TS14,somite,paraxial mesenchyme,head mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005594 ! head somite - -[Term] -id: EMAP:7170 -name: TS23,mesothelium,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:7169 ! TS23,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7171 -name: TS23,parietal,mesothelium,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7170 ! TS23,mesothelium,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:7172 -name: TS23,cavity,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:7169 ! TS23,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7173 -name: TS23,pleural cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0002402 ! pleural cavity -relationship: part_of EMAP:7150 ! TS23,intraembryonic coelom -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7174 -name: TS23,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003390 ! mesothelium of pleural cavity -relationship: part_of EMAP:7173 ! TS23,pleural cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003390 ! mesothelium of pleural cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7175 -name: TS23,parietal,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7174 ! TS23,mesothelium,pleural cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003390 ! mesothelium of pleural cavity - -[Term] -id: EMAP:7176 -name: TS23,visceral,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7174 ! TS23,mesothelium,pleural cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003390 ! mesothelium of pleural cavity - -[Term] -id: EMAP:7177 -name: TS23,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:7148 ! TS23,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7178 -name: TS23,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002102 ! forelimb -relationship: part_of EMAP:7177 ! TS23,limb -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002102 ! forelimb -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7179 -name: TS23,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0001460 ! arm -relationship: part_of EMAP:7178 ! TS23,forelimb -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001460 ! arm -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:718 -name: TS14,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:705 ! TS14,mesenchyme,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7180 -name: TS23,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001461 ! elbow -relationship: part_of EMAP:7179 ! TS23,arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001461 ! elbow -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7181 -name: TS23,mesenchyme,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003318 ! mesenchyme of elbow -relationship: part_of EMAP:7180 ! TS23,elbow -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7182 -name: TS23,elbow joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006224 ! elbow joint primordium -relationship: part_of EMAP:7181 ! TS23,mesenchyme,elbow -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006224 ! elbow joint primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7183 -name: TS23,rest of mesenchyme,mesenchyme,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7181 ! TS23,mesenchyme,elbow -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003318 ! mesenchyme of elbow - -[Term] -id: EMAP:7184 -name: TS23,skin,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001517 ! skin of elbow -relationship: part_of EMAP:7180 ! TS23,elbow -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001517 ! skin of elbow -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7185 -name: TS23,dermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7184 ! TS23,skin,elbow -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:7186 -name: TS23,epidermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7184 ! TS23,skin,elbow -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:7187 -name: TS23,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0002386 ! forelimb zeugopod -relationship: part_of EMAP:7179 ! TS23,arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7188 -name: TS23,mesenchyme,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003327 ! mesenchyme of forearm -relationship: part_of EMAP:7187 ! TS23,forearm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7189 -name: TS23,radius -namespace: mouse_anatomy_stages -is_a: UBERON:0001423 ! radius bone -relationship: part_of EMAP:7188 ! TS23,mesenchyme,forearm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001423 ! radius bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:719 -name: TS14,intermediate mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003064 ! intermediate mesoderm -relationship: part_of EMAP:718 ! TS14,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7190 -name: TS23,ulna -namespace: mouse_anatomy_stages -is_a: UBERON:0001424 ! ulna -relationship: part_of EMAP:7188 ! TS23,mesenchyme,forearm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001424 ! ulna -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7191 -name: TS23,rest of mesenchyme,mesenchyme,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7188 ! TS23,mesenchyme,forearm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003327 ! mesenchyme of forearm - -[Term] -id: EMAP:7192 -name: TS23,skin,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003403 ! skin of forearm -relationship: part_of EMAP:7187 ! TS23,forearm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003403 ! skin of forearm -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7193 -name: TS23,dermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7192 ! TS23,skin,forearm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:7194 -name: TS23,epidermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7192 ! TS23,skin,forearm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:7195 -name: TS23,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001467 ! shoulder -relationship: part_of EMAP:7179 ! TS23,arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001467 ! shoulder -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7196 -name: TS23,mesenchyme,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003322 ! mesenchyme of shoulder -relationship: part_of EMAP:7195 ! TS23,shoulder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7197 -name: TS23,shoulder joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006292 ! shoulder joint primordium -relationship: part_of EMAP:7196 ! TS23,mesenchyme,shoulder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006292 ! shoulder joint primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7198 -name: TS23,rest of mesenchyme,mesenchyme,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7196 ! TS23,mesenchyme,shoulder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003322 ! mesenchyme of shoulder - -[Term] -id: EMAP:7199 -name: TS23,skin,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001483 ! skin of shoulder -relationship: part_of EMAP:7195 ! TS23,shoulder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001483 ! skin of shoulder -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:72 -name: TS8,visceral endoderm,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004877 ! visceral endoderm -relationship: part_of EMAP:68 ! TS8,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0004877 ! visceral endoderm -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:720 -name: TS14,lateral mesenchyme derived from mesoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0007683 ! lateral mesenchyme derived from mesoderm -relationship: part_of EMAP:718 ! TS14,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007683 ! lateral mesenchyme derived from mesoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7200 -name: TS23,dermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7199 ! TS23,skin,shoulder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:7201 -name: TS23,epidermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7199 ! TS23,skin,shoulder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:7202 -name: TS23,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003822 ! forelimb stylopod -relationship: part_of EMAP:7179 ! TS23,arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7203 -name: TS23,mesenchyme,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005258 ! upper arm mesenchyme -relationship: part_of EMAP:7202 ! TS23,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7204 -name: TS23,humerus -namespace: mouse_anatomy_stages -is_a: UBERON:0000976 ! humerus -relationship: part_of EMAP:7203 ! TS23,mesenchyme,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000976 ! humerus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7205 -name: TS23,rest of mesenchyme,mesenchyme,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7203 ! TS23,mesenchyme,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005258 ! upper arm mesenchyme - -[Term] -id: EMAP:7206 -name: TS23,skin,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0002427 ! arm skin -relationship: part_of EMAP:7202 ! TS23,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7207 -name: TS23,dermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7206 ! TS23,skin,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:7208 -name: TS23,epidermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7206 ! TS23,skin,upper arm -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:721 -name: TS14,mesenchyme derived from somatopleure -namespace: mouse_anatomy_stages -relationship: part_of EMAP:720 ! TS14,lateral mesenchyme derived from mesoderm -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0007683 ! lateral mesenchyme derived from mesoderm - -[Term] -id: EMAP:7215 -name: TS23,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002398 ! manus -relationship: part_of EMAP:7178 ! TS23,forelimb -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002398 ! manus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7216 -name: TS23,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001463 ! manual digit 1 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7217 -name: TS23,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010564 ! manual digit 1 mesenchyme -relationship: part_of EMAP:7216 ! TS23,digit 1,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7218 -name: TS23,metacarpus,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7217 ! TS23,mesenchyme,digit 1,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010564 ! manual digit 1 mesenchyme - -[Term] -id: EMAP:7219 -name: TS23,phalanx,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7217 ! TS23,mesenchyme,digit 1,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010564 ! manual digit 1 mesenchyme - -[Term] -id: EMAP:722 -name: TS14,mesenchyme derived from splanchnopleure -namespace: mouse_anatomy_stages -relationship: part_of EMAP:720 ! TS14,lateral mesenchyme derived from mesoderm -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0007683 ! lateral mesenchyme derived from mesoderm - -[Term] -id: EMAP:7220 -name: TS23,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7216 ! TS23,digit 1,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:7221 -name: TS23,dermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7220 ! TS23,skin,digit 1,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:7222 -name: TS23,epidermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7220 ! TS23,skin,digit 1,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:7223 -name: TS23,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003622 ! manual digit 2 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7224 -name: TS23,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005692 ! manual digit 2 mesenchyme -relationship: part_of EMAP:7223 ! TS23,digit 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7225 -name: TS23,metacarpus,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7224 ! TS23,mesenchyme,digit 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005692 ! manual digit 2 mesenchyme - -[Term] -id: EMAP:7226 -name: TS23,phalanx,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7224 ! TS23,mesenchyme,digit 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005692 ! manual digit 2 mesenchyme - -[Term] -id: EMAP:7227 -name: TS23,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7223 ! TS23,digit 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:7228 -name: TS23,dermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7227 ! TS23,skin,digit 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:7229 -name: TS23,epidermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7227 ! TS23,skin,digit 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:7230 -name: TS23,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003623 ! manual digit 3 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7231 -name: TS23,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005693 ! manual digit 3 mesenchyme -relationship: part_of EMAP:7230 ! TS23,digit 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7232 -name: TS23,metacarpus,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7231 ! TS23,mesenchyme,digit 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005693 ! manual digit 3 mesenchyme - -[Term] -id: EMAP:7233 -name: TS23,phalanx,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7231 ! TS23,mesenchyme,digit 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005693 ! manual digit 3 mesenchyme - -[Term] -id: EMAP:7234 -name: TS23,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7230 ! TS23,digit 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:7235 -name: TS23,dermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7234 ! TS23,skin,digit 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:7236 -name: TS23,epidermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7234 ! TS23,skin,digit 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:7237 -name: TS23,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003624 ! manual digit 4 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7238 -name: TS23,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005694 ! manual digit 4 mesenchyme -relationship: part_of EMAP:7237 ! TS23,digit 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7239 -name: TS23,metacarpus,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7238 ! TS23,mesenchyme,digit 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005694 ! manual digit 4 mesenchyme - -[Term] -id: EMAP:724 -name: TS14,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:718 ! TS14,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7240 -name: TS23,phalanx,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7238 ! TS23,mesenchyme,digit 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005694 ! manual digit 4 mesenchyme - -[Term] -id: EMAP:7241 -name: TS23,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7237 ! TS23,digit 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:7242 -name: TS23,dermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7241 ! TS23,skin,digit 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:7243 -name: TS23,epidermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7241 ! TS23,skin,digit 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:7244 -name: TS23,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003625 ! manual digit 5 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7245 -name: TS23,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005695 ! manual digit 5 mesenchyme -relationship: part_of EMAP:7244 ! TS23,digit 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7246 -name: TS23,metacarpus,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7245 ! TS23,mesenchyme,digit 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005695 ! manual digit 5 mesenchyme - -[Term] -id: EMAP:7247 -name: TS23,phalanx,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7245 ! TS23,mesenchyme,digit 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005695 ! manual digit 5 mesenchyme - -[Term] -id: EMAP:7248 -name: TS23,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7244 ! TS23,digit 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:7249 -name: TS23,dermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7248 ! TS23,skin,digit 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:725 -name: TS14,mesenchyme derived from neural crest,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:724 ! TS14,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:7250 -name: TS23,epidermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7248 ! TS23,skin,digit 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:7251 -name: TS23,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7252 -name: TS23,mesenchyme,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:7251 ! TS23,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7253 -name: TS23,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7251 ! TS23,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:7254 -name: TS23,dermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7253 ! TS23,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:7255 -name: TS23,epidermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7253 ! TS23,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:7256 -name: TS23,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7257 -name: TS23,mesenchyme,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:7256 ! TS23,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7258 -name: TS23,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7256 ! TS23,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:7259 -name: TS23,dermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7258 ! TS23,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:726 -name: TS14,somite,paraxial mesenchyme,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005598 ! trunk somite -relationship: part_of EMAP:724 ! TS14,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7260 -name: TS23,epidermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7258 ! TS23,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:7261 -name: TS23,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7262 -name: TS23,mesenchyme,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:7261 ! TS23,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7263 -name: TS23,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7261 ! TS23,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:7264 -name: TS23,dermis,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7263 ! TS23,skin,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:7265 -name: TS23,epidermis,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7263 ! TS23,skin,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:7266 -name: TS23,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7267 -name: TS23,mesenchyme,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:7266 ! TS23,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7268 -name: TS23,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7266 ! TS23,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:7269 -name: TS23,dermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7268 ! TS23,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:727 -name: TS14,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7270 -name: TS23,epidermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7268 ! TS23,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:7271 -name: TS23,mesenchyme,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:7272 -name: TS23,carpus -namespace: mouse_anatomy_stages -is_a: UBERON:0003319 ! mesenchyme of carpal region -relationship: part_of EMAP:7271 ! TS23,mesenchyme,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003319 ! mesenchyme of carpal region -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7273 -name: TS23,skin,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001519 ! skin of manus -relationship: part_of EMAP:7215 ! TS23,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001519 ! skin of manus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7274 -name: TS23,dermis,skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7273 ! TS23,skin,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001519 ! skin of manus - -[Term] -id: EMAP:7275 -name: TS23,epidermis,skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7273 ! TS23,skin,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001519 ! skin of manus - -[Term] -id: EMAP:7276 -name: TS23,palmar pads,skin,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0008839 ! palmar pad -relationship: part_of EMAP:7273 ! TS23,skin,handplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0008839 ! palmar pad -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7277 -name: TS23,hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002103 ! hindlimb -relationship: part_of EMAP:7177 ! TS23,limb -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7278 -name: TS23,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002387 ! pes -relationship: part_of EMAP:7277 ! TS23,hindlimb -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002387 ! pes -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7279 -name: TS23,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003631 ! pedal digit 1 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:728 -name: TS14,dermomyotome,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:727 ! TS14,somite 05 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7280 -name: TS23,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010562 ! pedal digit 1 mesenchyme -relationship: part_of EMAP:7279 ! TS23,digit 1,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7281 -name: TS23,metatarsus,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7280 ! TS23,mesenchyme,digit 1,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010562 ! pedal digit 1 mesenchyme - -[Term] -id: EMAP:7282 -name: TS23,phalanx,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7280 ! TS23,mesenchyme,digit 1,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010562 ! pedal digit 1 mesenchyme - -[Term] -id: EMAP:7283 -name: TS23,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7279 ! TS23,digit 1,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:7284 -name: TS23,dermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7283 ! TS23,skin,digit 1,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:7285 -name: TS23,epidermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7283 ! TS23,skin,digit 1,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:7286 -name: TS23,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003632 ! pedal digit 2 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7287 -name: TS23,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005696 ! pedal digit 2 mesenchyme -relationship: part_of EMAP:7286 ! TS23,digit 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7288 -name: TS23,metatarsus,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7287 ! TS23,mesenchyme,digit 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005696 ! pedal digit 2 mesenchyme - -[Term] -id: EMAP:7289 -name: TS23,phalanx,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7287 ! TS23,mesenchyme,digit 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005696 ! pedal digit 2 mesenchyme - -[Term] -id: EMAP:729 -name: TS14,myocoele,somite 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:727 ! TS14,somite 05 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7290 -name: TS23,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7286 ! TS23,digit 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:7291 -name: TS23,dermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7290 ! TS23,skin,digit 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:7292 -name: TS23,epidermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7290 ! TS23,skin,digit 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:7293 -name: TS23,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003633 ! pedal digit 3 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7294 -name: TS23,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005697 ! pedal digit 3 mesenchyme -relationship: part_of EMAP:7293 ! TS23,digit 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7295 -name: TS23,metatarsus,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7294 ! TS23,mesenchyme,digit 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005697 ! pedal digit 3 mesenchyme - -[Term] -id: EMAP:7296 -name: TS23,phalanx,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7294 ! TS23,mesenchyme,digit 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005697 ! pedal digit 3 mesenchyme - -[Term] -id: EMAP:7297 -name: TS23,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7293 ! TS23,digit 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:7298 -name: TS23,dermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7297 ! TS23,skin,digit 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:7299 -name: TS23,epidermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7297 ! TS23,skin,digit 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:73 -name: TS8,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:63 ! TS8,extraembryonic component -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:730 -name: TS14,sclerotome,somite 05 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:727 ! TS14,somite 05 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7300 -name: TS23,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003634 ! pedal digit 4 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7301 -name: TS23,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005698 ! pedal digit 4 mesenchyme -relationship: part_of EMAP:7300 ! TS23,digit 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7302 -name: TS23,metatarsus,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7301 ! TS23,mesenchyme,digit 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005698 ! pedal digit 4 mesenchyme - -[Term] -id: EMAP:7303 -name: TS23,phalanx,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7301 ! TS23,mesenchyme,digit 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005698 ! pedal digit 4 mesenchyme - -[Term] -id: EMAP:7304 -name: TS23,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7300 ! TS23,digit 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:7305 -name: TS23,dermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7304 ! TS23,skin,digit 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:7306 -name: TS23,epidermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7304 ! TS23,skin,digit 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:7307 -name: TS23,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003635 ! pedal digit 5 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7308 -name: TS23,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005699 ! pedal digit 5 mesenchyme -relationship: part_of EMAP:7307 ! TS23,digit 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7309 -name: TS23,metatarsus,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7308 ! TS23,mesenchyme,digit 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005699 ! pedal digit 5 mesenchyme - -[Term] -id: EMAP:731 -name: TS14,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7310 -name: TS23,phalanx,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7308 ! TS23,mesenchyme,digit 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005699 ! pedal digit 5 mesenchyme - -[Term] -id: EMAP:7311 -name: TS23,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7307 ! TS23,digit 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:7312 -name: TS23,dermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7311 ! TS23,skin,digit 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:7313 -name: TS23,epidermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7311 ! TS23,skin,digit 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:7314 -name: TS23,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7315 -name: TS23,mesenchyme,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:7314 ! TS23,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7316 -name: TS23,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7314 ! TS23,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:7317 -name: TS23,dermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7316 ! TS23,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:7318 -name: TS23,epidermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7316 ! TS23,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:7319 -name: TS23,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:732 -name: TS14,dermomyotome,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:731 ! TS14,somite 06 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7320 -name: TS23,mesenchyme,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:7319 ! TS23,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7321 -name: TS23,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7319 ! TS23,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:7322 -name: TS23,dermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7321 ! TS23,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:7323 -name: TS23,epidermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7321 ! TS23,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:7324 -name: TS23,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7325 -name: TS23,mesenchyme,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:7324 ! TS23,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7326 -name: TS23,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7324 ! TS23,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:7327 -name: TS23,dermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7326 ! TS23,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:7328 -name: TS23,epidermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7326 ! TS23,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:7329 -name: TS23,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:733 -name: TS14,myocoele,somite 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:731 ! TS14,somite 06 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7330 -name: TS23,mesenchyme,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:7329 ! TS23,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7331 -name: TS23,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7329 ! TS23,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:7332 -name: TS23,dermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7331 ! TS23,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:7333 -name: TS23,epidermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7331 ! TS23,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:7334 -name: TS23,mesenchyme,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:7335 -name: TS23,tarsus -namespace: mouse_anatomy_stages -is_a: UBERON:0010695 ! mesenchyme of tarsal region -relationship: part_of EMAP:7334 ! TS23,mesenchyme,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010695 ! mesenchyme of tarsal region -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7336 -name: TS23,calcaneum -namespace: mouse_anatomy_stages -is_a: UBERON:0001450 ! calcaneus -relationship: part_of EMAP:7335 ! TS23,tarsus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001450 ! calcaneus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7337 -name: TS23,other mesenchyme,tarsus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7335 ! TS23,tarsus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0010695 ! mesenchyme of tarsal region - -[Term] -id: EMAP:7338 -name: TS23,talus -namespace: mouse_anatomy_stages -is_a: UBERON:0002395 ! talus -relationship: part_of EMAP:7335 ! TS23,tarsus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002395 ! talus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7339 -name: TS23,skin,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001513 ! skin of pes -relationship: part_of EMAP:7278 ! TS23,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001513 ! skin of pes -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:734 -name: TS14,sclerotome,somite 06 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:731 ! TS14,somite 06 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7340 -name: TS23,dermis,skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7339 ! TS23,skin,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001513 ! skin of pes - -[Term] -id: EMAP:7341 -name: TS23,epidermis,skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7339 ! TS23,skin,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001513 ! skin of pes - -[Term] -id: EMAP:7342 -name: TS23,plantar pads,skin,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0008840 ! plantar pad -relationship: part_of EMAP:7339 ! TS23,skin,footplate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0008840 ! plantar pad -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7343 -name: TS23,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000978 ! leg -relationship: part_of EMAP:7277 ! TS23,hindlimb -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000978 ! leg -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7344 -name: TS23,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001464 ! hip -relationship: part_of EMAP:7343 ! TS23,leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001464 ! hip -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7345 -name: TS23,mesenchyme,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003320 ! mesenchyme of hip -relationship: part_of EMAP:7344 ! TS23,hip -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7346 -name: TS23,hip joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006244 ! hip joint primordium -relationship: part_of EMAP:7345 ! TS23,mesenchyme,hip -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006244 ! hip joint primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7347 -name: TS23,rest of mesenchyme,mesenchyme,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7345 ! TS23,mesenchyme,hip -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003320 ! mesenchyme of hip - -[Term] -id: EMAP:7348 -name: TS23,skin,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001554 ! skin of hip -relationship: part_of EMAP:7344 ! TS23,hip -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001554 ! skin of hip -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7349 -name: TS23,dermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7348 ! TS23,skin,hip -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:735 -name: TS14,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7350 -name: TS23,epidermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7348 ! TS23,skin,hip -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:7351 -name: TS23,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001465 ! knee -relationship: part_of EMAP:7343 ! TS23,leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001465 ! knee -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7352 -name: TS23,mesenchyme,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003321 ! mesenchyme of knee -relationship: part_of EMAP:7351 ! TS23,knee -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7353 -name: TS23,knee joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006256 ! knee joint primordium -relationship: part_of EMAP:7352 ! TS23,mesenchyme,knee -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006256 ! knee joint primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7354 -name: TS23,fabella PCC -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7353 ! TS23,knee joint primordium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006256 ! knee joint primordium - -[Term] -id: EMAP:7355 -name: TS23,ligamentum patellae -namespace: mouse_anatomy_stages -is_a: UBERON:0003676 ! patellar ligament -relationship: part_of EMAP:7353 ! TS23,knee joint primordium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003676 ! patellar ligament -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7356 -name: TS23,patella PCC -namespace: mouse_anatomy_stages -is_a: UBERON:0012081 ! patella pre-cartilage condensation -relationship: part_of EMAP:7353 ! TS23,knee joint primordium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0012081 ! patella pre-cartilage condensation -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7357 -name: TS23,rest of mesencyme,mesenchyme,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7352 ! TS23,mesenchyme,knee -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003321 ! mesenchyme of knee - -[Term] -id: EMAP:7358 -name: TS23,skin,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001510 ! skin of knee -relationship: part_of EMAP:7351 ! TS23,knee -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001510 ! skin of knee -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7359 -name: TS23,dermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7358 ! TS23,skin,knee -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:736 -name: TS14,dermomyotome,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:735 ! TS14,somite 07 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7360 -name: TS23,epidermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7358 ! TS23,skin,knee -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:7361 -name: TS23,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003823 ! hindlimb zeugopod -relationship: part_of EMAP:7343 ! TS23,leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7362 -name: TS23,mesenchyme,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005259 ! lower leg mesenchyme -relationship: part_of EMAP:7361 ! TS23,lower leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7363 -name: TS23,fibula -namespace: mouse_anatomy_stages -is_a: UBERON:0001446 ! fibula -relationship: part_of EMAP:7362 ! TS23,mesenchyme,lower leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001446 ! fibula -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7364 -name: TS23,tibia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7362 ! TS23,mesenchyme,lower leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005259 ! lower leg mesenchyme - -[Term] -id: EMAP:7365 -name: TS23,rest of mesenchyme,mesenchyme,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7362 ! TS23,mesenchyme,lower leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005259 ! lower leg mesenchyme - -[Term] -id: EMAP:7366 -name: TS23,skin,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:7361 ! TS23,lower leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7367 -name: TS23,dermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7366 ! TS23,skin,lower leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:7368 -name: TS23,epidermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7366 ! TS23,skin,lower leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:7369 -name: TS23,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000376 ! hindlimb stylopod -relationship: part_of EMAP:7343 ! TS23,leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:737 -name: TS14,myocoele,somite 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:735 ! TS14,somite 07 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7370 -name: TS23,mesenchyme,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005254 ! upper leg mesenchyme -relationship: part_of EMAP:7369 ! TS23,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7371 -name: TS23,femur -namespace: mouse_anatomy_stages -is_a: UBERON:0000981 ! femur -relationship: part_of EMAP:7370 ! TS23,mesenchyme,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000981 ! femur -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7372 -name: TS23,rest of mesenchyme,mesenchyme,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7370 ! TS23,mesenchyme,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005254 ! upper leg mesenchyme - -[Term] -id: EMAP:7377 -name: TS23,skin,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:7369 ! TS23,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7378 -name: TS23,dermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7377 ! TS23,skin,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:7379 -name: TS23,epidermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7377 ! TS23,skin,upper leg -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:738 -name: TS14,sclerotome,somite 07 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:735 ! TS14,somite 07 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7380 -name: TS23,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:7148 ! TS23,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7381 -name: TS23,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:7380 ! TS23,mesenchyme,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7382 -name: TS23,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:7380 ! TS23,mesenchyme,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7383 -name: TS23,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:7382 ! TS23,trunk mesenchyme -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7384 -name: TS23,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7148 ! TS23,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7385 -name: TS23,anterior abdominal wall -namespace: mouse_anatomy_stages -is_a: UBERON:0006635 ! anterior abdominal wall -relationship: part_of EMAP:7384 ! TS23,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006635 ! anterior abdominal wall -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7386 -name: TS23,skeletal muscle,anterior abdominal wall -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7385 ! TS23,anterior abdominal wall -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006635 ! anterior abdominal wall - -[Term] -id: EMAP:7387 -name: TS23,external oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005442 ! external oblique -relationship: part_of EMAP:7386 ! TS23,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005442 ! external oblique -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7388 -name: TS23,internal oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005454 ! internal oblique -relationship: part_of EMAP:7386 ! TS23,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005454 ! internal oblique -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7389 -name: TS23,rectus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0002382 ! rectus abdominis muscle -relationship: part_of EMAP:7386 ! TS23,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:739 -name: TS14,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7390 -name: TS23,transversus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0001221 ! transversus abdominis muscle -relationship: part_of EMAP:7386 ! TS23,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7391 -name: TS23,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:7384 ! TS23,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7392 -name: TS23,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:7391 ! TS23,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7393 -name: TS23,erector spinae -namespace: mouse_anatomy_stages -is_a: UBERON:0002462 ! erector spinae muscle group -relationship: part_of EMAP:7392 ! TS23,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7395 -name: TS23,ilio-psoas -namespace: mouse_anatomy_stages -is_a: UBERON:0001999 ! iliopsoas -relationship: part_of EMAP:7392 ! TS23,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001999 ! iliopsoas -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7396 -name: TS23,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7392 ! TS23,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:7397 -name: TS23,external layer,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7396 ! TS23,intercostal,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:7398 -name: TS23,internal layer,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7396 ! TS23,intercostal,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:7399 -name: TS23,psoas major -namespace: mouse_anatomy_stages -is_a: UBERON:0001298 ! psoas major muscle -relationship: part_of EMAP:7392 ! TS23,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001298 ! psoas major muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:74 -name: TS8,mural trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006265 ! mural trophectoderm -relationship: part_of EMAP:73 ! TS8,trophectoderm -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:740 -name: TS14,dermomyotome,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:739 ! TS14,somite 08 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7400 -name: TS23,psoas minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001372 ! psoas minor muscle -relationship: part_of EMAP:7392 ! TS23,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001372 ! psoas minor muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7401 -name: TS23,quadratus lumborum -namespace: mouse_anatomy_stages -is_a: UBERON:0001220 ! quadratus lumborum -relationship: part_of EMAP:7392 ! TS23,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001220 ! quadratus lumborum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7402 -name: TS23,serratus anterior -namespace: mouse_anatomy_stages -is_a: UBERON:0001125 ! serratus anterior -relationship: part_of EMAP:7392 ! TS23,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001125 ! serratus anterior -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7403 -name: TS23,cranial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0002376 ! muscle of head -relationship: part_of EMAP:7384 ! TS23,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002376 ! muscle of head -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7404 -name: TS23,skeletal muscle,cranial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7403 ! TS23,cranial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002376 ! muscle of head - -[Term] -id: EMAP:7405 -name: TS23,masseter -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7404 ! TS23,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7406 -name: TS23,myelohyoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7404 ! TS23,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7407 -name: TS23,sterno-mastoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7404 ! TS23,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7408 -name: TS23,temporalis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7404 ! TS23,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7409 -name: TS23,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7384 ! TS23,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:741 -name: TS14,myocoele,somite 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:739 ! TS14,somite 08 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7410 -name: TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7409 ! TS23,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:7411 -name: TS23,deltoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001476 ! deltoid -relationship: part_of EMAP:7410 ! TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001476 ! deltoid -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7412 -name: TS23,infraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001477 ! infraspinatus muscle -relationship: part_of EMAP:7410 ! TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001477 ! infraspinatus muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7413 -name: TS23,latissimus dorsi -namespace: mouse_anatomy_stages -is_a: UBERON:0001112 ! latissimus dorsi muscle -relationship: part_of EMAP:7410 ! TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7414 -name: TS23,pectoralis major -namespace: mouse_anatomy_stages -is_a: UBERON:0002381 ! pectoralis major -relationship: part_of EMAP:7410 ! TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7415 -name: TS23,pectoralis minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001100 ! pectoralis minor -relationship: part_of EMAP:7410 ! TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7416 -name: TS23,subscapularis -namespace: mouse_anatomy_stages -is_a: UBERON:0001129 ! subscapularis muscle -relationship: part_of EMAP:7410 ! TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7417 -name: TS23,supraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0002383 ! supraspinatus muscle -relationship: part_of EMAP:7410 ! TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7418 -name: TS23,trapezius -namespace: mouse_anatomy_stages -is_a: UBERON:0002380 ! trapezius -relationship: part_of EMAP:7410 ! TS23,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002380 ! trapezius -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7419 -name: TS23,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7384 ! TS23,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:742 -name: TS14,sclerotome,somite 08 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:739 ! TS14,somite 08 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7420 -name: TS23,skeletal muscle,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -is_a: UBERON:0003271 ! skeletal muscle of pelvic girdle -relationship: part_of EMAP:7419 ! TS23,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003271 ! skeletal muscle of pelvic girdle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7421 -name: TS23,gluteus maximus -namespace: mouse_anatomy_stages -is_a: UBERON:0001370 ! gluteus maximus -relationship: part_of EMAP:7420 ! TS23,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001370 ! gluteus maximus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7428 -name: TS23,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:7148 ! TS23,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7429 -name: TS23,gland,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0002530 ! gland -relationship: part_of EMAP:7428 ! TS23,organ system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002530 ! gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:743 -name: TS14,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7430 -name: TS23,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0002369 ! adrenal gland -relationship: part_of EMAP:7429 ! TS23,gland,organ system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7431 -name: TS23,cortex,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001235 ! adrenal cortex -relationship: part_of EMAP:7430 ! TS23,adrenal gland -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7432 -name: TS23,medulla,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001236 ! adrenal medulla -relationship: part_of EMAP:7430 ! TS23,adrenal gland -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7433 -name: TS23,haemolymphoid system -namespace: mouse_anatomy_stages -is_a: UBERON:0002193 ! hemolymphoid system -relationship: part_of EMAP:7429 ! TS23,gland,organ system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002193 ! hemolymphoid system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7434 -name: TS23,spleen primordium,haemolymphoid system -namespace: mouse_anatomy_stages -is_a: UBERON:0006293 ! spleen primordium -relationship: part_of EMAP:7433 ! TS23,haemolymphoid system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006293 ! spleen primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7435 -name: TS23,thymus primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0005562 ! thymus primordium -relationship: part_of EMAP:7433 ! TS23,haemolymphoid system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005562 ! thymus primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7436 -name: TS23,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:7428 ! TS23,organ system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7437 -name: TS23,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:7436 ! TS23,visceral organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7438 -name: TS23,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:7437 ! TS23,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7439 -name: TS23,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:7438 ! TS23,oral region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:744 -name: TS14,dermomyotome,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:743 ! TS14,somite 09 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7440 -name: TS23,salivary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001044 ! salivary gland -relationship: part_of EMAP:7439 ! TS23,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001044 ! salivary gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7441 -name: TS23,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006297 ! sublingual gland primordium -relationship: part_of EMAP:7440 ! TS23,salivary gland -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006297 ! sublingual gland primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7442 -name: TS23,epithelium,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0004809 ! salivary gland epithelium -relationship: part_of EMAP:7441 ! TS23,sublingual gland primordium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004809 ! salivary gland epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7443 -name: TS23,mesenchyme,sublingual gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0009538 ! mesenchyme of sublingual gland primordium -relationship: part_of EMAP:7441 ! TS23,sublingual gland primordium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009538 ! mesenchyme of sublingual gland primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7444 -name: TS23,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006298 ! submandibular gland primordium -relationship: part_of EMAP:7440 ! TS23,salivary gland -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006298 ! submandibular gland primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7445 -name: TS23,epithelium,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0004809 ! salivary gland epithelium -relationship: part_of EMAP:7444 ! TS23,submandibular gland primordium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7446 -name: TS23,mesenchyme,submandibular gland primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0009539 ! mesenchyme of submandibular gland primordium -relationship: part_of EMAP:7444 ! TS23,submandibular gland primordium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009539 ! mesenchyme of submandibular gland primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7447 -name: TS23,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0001831 ! parotid gland -relationship: part_of EMAP:7439 ! TS23,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001831 ! parotid gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7448 -name: TS23,epithelium,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0003360 ! epithelium of parotid gland -relationship: part_of EMAP:7447 ! TS23,parotid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003360 ! epithelium of parotid gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7449 -name: TS23,mesenchyme,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0003419 ! mesenchyme of parotid -relationship: part_of EMAP:7447 ! TS23,parotid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003419 ! mesenchyme of parotid -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:745 -name: TS14,myocoele,somite 09 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:743 ! TS14,somite 09 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7450 -name: TS23,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:7437 ! TS23,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7451 -name: TS23,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:7450 ! TS23,gut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7452 -name: TS23,gland,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0013158 ! foregut-midgut junction gland -relationship: part_of EMAP:7451 ! TS23,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0013158 ! foregut-midgut junction gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7453 -name: TS23,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001264 ! pancreas -relationship: part_of EMAP:7452 ! TS23,gland,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001264 ! pancreas -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7454 -name: TS23,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001150 ! body of pancreas -relationship: part_of EMAP:7453 ! TS23,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7455 -name: TS23,dorsal pancreatic duct,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:7454 ! TS23,body,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7456 -name: TS23,parenchyma,body,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7454 ! TS23,body,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001150 ! body of pancreas - -[Term] -id: EMAP:7457 -name: TS23,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001069 ! head of pancreas -relationship: part_of EMAP:7453 ! TS23,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7458 -name: TS23,ventral pancreatic duct,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7457 ! TS23,head,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:7459 -name: TS23,parenchyma,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7457 ! TS23,head,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:746 -name: TS14,sclerotome,somite 09 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:743 ! TS14,somite 09 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7460 -name: TS23,uncinate process,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7457 ! TS23,head,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:7461 -name: TS23,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001151 ! tail of pancreas -relationship: part_of EMAP:7453 ! TS23,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7462 -name: TS23,dorsal pancreatic duct,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:7461 ! TS23,tail,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7463 -name: TS23,parenchyma,tail,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7461 ! TS23,tail,pancreas -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001151 ! tail of pancreas - -[Term] -id: EMAP:7464 -name: TS23,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:7450 ! TS23,gut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7465 -name: TS23,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:7464 ! TS23,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7466 -name: TS23,thyroid,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:7465 ! TS23,gland,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7467 -name: TS23,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:7428 ! TS23,organ system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7468 -name: TS23,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:7467 ! TS23,nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7469 -name: TS23,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:7468 ! TS23,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:747 -name: TS14,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7470 -name: TS23,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:7469 ! TS23,brain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7471 -name: TS23,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:7470 ! TS23,forebrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7472 -name: TS23,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7473 -name: TS23,pituitary -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:7472 ! TS23,gland,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7474 -name: TS23,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002196 ! adenohypophysis -relationship: part_of EMAP:7473 ! TS23,pituitary -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7475 -name: TS23,pars anterior,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0006964 ! pars distalis of adenohypophysis -relationship: part_of EMAP:7474 ! TS23,adenohypophysis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7476 -name: TS23,pars intermedia,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis -relationship: part_of EMAP:7474 ! TS23,adenohypophysis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7477 -name: TS23,pars tuberalis,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002433 ! pars tuberalis of adenohypophysis -relationship: part_of EMAP:7474 ! TS23,adenohypophysis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7478 -name: TS23,remnant of Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0006377 ! remnant of Rathke's pouch -relationship: part_of EMAP:7474 ! TS23,adenohypophysis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7479 -name: TS23,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002198 ! neurohypophysis -relationship: part_of EMAP:7473 ! TS23,pituitary -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:748 -name: TS14,dermomyotome,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:747 ! TS14,somite 10 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7480 -name: TS23,infundibulum,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002434 ! pituitary stalk -relationship: part_of EMAP:7479 ! TS23,neurohypophysis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7481 -name: TS23,median eminence,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002197 ! median eminence of neurohypophysis -relationship: part_of EMAP:7479 ! TS23,neurohypophysis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7482 -name: TS23,pars nervosa,neurohypophysis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7479 ! TS23,neurohypophysis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7483 -name: TS23,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:7466 ! TS23,thyroid,gland,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7484 -name: TS23,isthmus -namespace: mouse_anatomy_stages -is_a: UBERON:0001609 ! isthmus of thyroid gland -relationship: part_of EMAP:7466 ! TS23,thyroid,gland,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7485 -name: TS23,lobe,thyroid,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001118 ! lobe of thyroid gland -relationship: part_of EMAP:7466 ! TS23,thyroid,gland,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7486 -name: TS23,left,lobe,thyroid,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001120 ! left lobe of thyroid gland -relationship: part_of EMAP:7485 ! TS23,lobe,thyroid,gland,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001120 ! left lobe of thyroid gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7487 -name: TS23,right,lobe,thyroid,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001119 ! right lobe of thyroid gland -relationship: part_of EMAP:7485 ! TS23,lobe,thyroid,gland,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001119 ! right lobe of thyroid gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7488 -name: TS23,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:7466 ! TS23,thyroid,gland,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7489 -name: TS23,median lobe,thyroglossal duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7488 ! TS23,thyroglossal duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002254 ! thyroglossal duct - -[Term] -id: EMAP:749 -name: TS14,myocoele,somite 10 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:747 ! TS14,somite 10 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7490 -name: TS23,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0002416 ! integumental system -relationship: part_of EMAP:7428 ! TS23,organ system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002416 ! integumental system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7491 -name: TS23,gland,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0003297 ! gland of integumental system -relationship: part_of EMAP:7490 ! TS23,integumental system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7492 -name: TS23,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001911 ! mammary gland -relationship: part_of EMAP:7491 ! TS23,gland,integumental system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7493 -name: TS23,epithelium,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003244 ! epithelium of mammary gland -relationship: part_of EMAP:7492 ! TS23,mammary gland -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7494 -name: TS23,mesenchyme,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003326 ! mesenchyme of mammary gland -relationship: part_of EMAP:7492 ! TS23,mammary gland -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003326 ! mesenchyme of mammary gland -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7495 -name: TS23,ridge,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0008425 ! mammary ridge -relationship: part_of EMAP:7492 ! TS23,mammary gland -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0008425 ! mammary ridge -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7496 -name: TS23,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7490 ! TS23,integumental system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7497 -name: TS23,cervical sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7496 ! TS23,rest of skin -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7498 -name: TS23,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7490 ! TS23,integumental system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7499 -name: TS23,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7498 ! TS23,physiological umbilical hernia -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:75 -name: TS8,primary trophoblast giant cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:74 ! TS8,mural trophectoderm -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -relationship: part_of UBERON:0006265 ! mural trophectoderm - -[Term] -id: EMAP:750 -name: TS14,sclerotome,somite 10 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:747 ! TS14,somite 10 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7500 -name: TS23,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7498 ! TS23,physiological umbilical hernia -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:7501 -name: TS23,dermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7496 ! TS23,rest of skin -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7502 -name: TS23,epidermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7496 ! TS23,rest of skin -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7503 -name: TS23,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7496 ! TS23,rest of skin -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7504 -name: TS23,dermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7503 ! TS23,vibrissa -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7505 -name: TS23,epidermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7503 ! TS23,vibrissa -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7506 -name: TS23,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7507 -name: TS23,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:7506 ! TS23,3rd ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7508 -name: TS23,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001899 ! epithalamus -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7509 -name: TS23,mantle layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013159 ! epithalamus mantle layer -relationship: part_of EMAP:7508 ! TS23,epithalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:751 -name: TS14,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7510 -name: TS23,marginal layer,epithalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7508 ! TS23,epithalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:7511 -name: TS23,ventricular layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013160 ! epithalamus ventricular layer -relationship: part_of EMAP:7508 ! TS23,epithalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7512 -name: TS23,epithalamic recess -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7508 ! TS23,epithalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:7513 -name: TS23,choroid plexus,epithalamic recess -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7512 ! TS23,epithalamic recess -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:7514 -name: TS23,pineal primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7508 ! TS23,epithalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:7515 -name: TS23,floorplate,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7516 -name: TS23,hypothalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001898 ! hypothalamus -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7517 -name: TS23,mantle layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7516 ! TS23,hypothalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:7518 -name: TS23,marginal layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7516 ! TS23,hypothalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:7519 -name: TS23,ventricular layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7516 ! TS23,hypothalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:752 -name: TS14,dermomyotome,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:751 ! TS14,somite 11 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7520 -name: TS23,internal capsule,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001887 ! internal capsule -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001887 ! internal capsule -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7521 -name: TS23,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7522 -name: TS23,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7523 -name: TS23,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:7522 ! TS23,lateral wall,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7524 -name: TS23,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7522 ! TS23,lateral wall,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:7525 -name: TS23,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7522 ! TS23,lateral wall,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:7526 -name: TS23,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003290 ! meninx of diencephalon -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7527 -name: TS23,arachnoid mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:7526 ! TS23,meninges,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7528 -name: TS23,dura mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:7526 ! TS23,meninges,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7529 -name: TS23,pia mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:7526 ! TS23,meninges,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:753 -name: TS14,myocoele,somite 11 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:751 ! TS14,somite 11 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7530 -name: TS23,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7531 -name: TS23,thalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001897 ! thalamus -relationship: part_of EMAP:7471 ! TS23,diencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001897 ! thalamus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7532 -name: TS23,interthalamic adhesion -namespace: mouse_anatomy_stages -is_a: UBERON:0006681 ! interthalamic adhesion -relationship: part_of EMAP:7531 ! TS23,thalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006681 ! interthalamic adhesion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7533 -name: TS23,mantle layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7531 ! TS23,thalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:7534 -name: TS23,marginal layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7531 ! TS23,thalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:7535 -name: TS23,ventricular layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7531 ! TS23,thalamus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:7536 -name: TS23,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:7470 ! TS23,forebrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7537 -name: TS23,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0000956 ! cerebral cortex -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7538 -name: TS23,mantle layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7537 ! TS23,cerebral cortex -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:7539 -name: TS23,marginal layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7537 ! TS23,cerebral cortex -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:754 -name: TS14,sclerotome,somite 11 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:751 ! TS14,somite 11 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7540 -name: TS23,ventricular layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7537 ! TS23,cerebral cortex -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:7541 -name: TS23,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7542 -name: TS23,choroid fissure,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:7541 ! TS23,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7543 -name: TS23,choroid plexus,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7541 ! TS23,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002192 ! ventricular system choroidal fissure - -[Term] -id: EMAP:7544 -name: TS23,corpus striatum -namespace: mouse_anatomy_stages -is_a: UBERON:0000369 ! corpus striatum -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7545 -name: TS23,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001873 ! caudate nucleus -relationship: part_of EMAP:7544 ! TS23,corpus striatum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7546 -name: TS23,head,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002626 ! head of caudate nucleus -relationship: part_of EMAP:7545 ! TS23,caudate nucleus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002626 ! head of caudate nucleus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7547 -name: TS23,tail,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002628 ! tail of caudate nucleus -relationship: part_of EMAP:7545 ! TS23,caudate nucleus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002628 ! tail of caudate nucleus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7548 -name: TS23,lentiform nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002263 ! lentiform nucleus -relationship: part_of EMAP:7544 ! TS23,corpus striatum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7549 -name: TS23,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:755 -name: TS14,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7550 -name: TS23,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:7549 ! TS23,lateral ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7551 -name: TS23,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7549 ! TS23,lateral ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:7552 -name: TS23,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7549 ! TS23,lateral ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:7553 -name: TS23,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7549 ! TS23,lateral ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:7554 -name: TS23,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7549 ! TS23,lateral ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:7555 -name: TS23,head,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7549 ! TS23,lateral ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:7556 -name: TS23,tail,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7549 ! TS23,lateral ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:7557 -name: TS23,mantle layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:7558 -name: TS23,marginal layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:7559 -name: TS23,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003289 ! meninx of telencephalon -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:756 -name: TS14,dermomyotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:755 ! TS14,somite 12 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7560 -name: TS23,arachnoid mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:7559 ! TS23,meninges,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7561 -name: TS23,dura mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002363 ! dura mater -relationship: part_of EMAP:7559 ! TS23,meninges,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002363 ! dura mater -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7562 -name: TS23,falx cerebri -namespace: mouse_anatomy_stages -is_a: UBERON:0006059 ! falx cerebri -relationship: part_of EMAP:7561 ! TS23,dura mater,meninges,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006059 ! falx cerebri -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7563 -name: TS23,pia mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:7559 ! TS23,meninges,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7564 -name: TS23,olfactory lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005366 ! olfactory lobe -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005366 ! olfactory lobe -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7565 -name: TS23,olfactory cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0002894 ! olfactory cortex -relationship: part_of EMAP:7564 ! TS23,olfactory lobe,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7566 -name: TS23,mantle layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7565 ! TS23,olfactory cortex -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:7567 -name: TS23,marginal layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7565 ! TS23,olfactory cortex -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:7568 -name: TS23,ventricular layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7565 ! TS23,olfactory cortex -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:7569 -name: TS23,ventricular layer,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7536 ! TS23,telencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001893 ! telencephalon - -[Term] -id: EMAP:757 -name: TS14,myocoele,somite 12 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:755 ! TS14,somite 12 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7570 -name: TS23,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:7469 ! TS23,brain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7571 -name: TS23,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:7570 ! TS23,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7572 -name: TS23,lateral recess,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0007656 ! lateral recess of fourth ventricle -relationship: part_of EMAP:7571 ! TS23,4th ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7573 -name: TS23,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0001896 ! medulla oblongata -relationship: part_of EMAP:7570 ! TS23,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7574 -name: TS23,floor plate,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0003311 ! floor plate of medulla oblongata -relationship: part_of EMAP:7573 ! TS23,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7575 -name: TS23,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7573 ! TS23,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:7576 -name: TS23,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7575 ! TS23,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:7577 -name: TS23,mantle layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7576 ! TS23,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:7578 -name: TS23,marginal layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7576 ! TS23,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:7579 -name: TS23,ventricular layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7576 ! TS23,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:758 -name: TS14,sclerotome,somite 12 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:755 ! TS14,somite 12 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7580 -name: TS23,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0005240 ! basal plate medulla oblongata -relationship: part_of EMAP:7575 ! TS23,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7581 -name: TS23,mantle layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7580 ! TS23,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:7582 -name: TS23,marginal layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7580 ! TS23,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:7583 -name: TS23,ventricular layer,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7580 ! TS23,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:7584 -name: TS23,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7580 ! TS23,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:7585 -name: TS23,sulcus limitans,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0009576 ! medulla oblongata sulcus limitans -relationship: part_of EMAP:7575 ! TS23,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7586 -name: TS23,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7573 ! TS23,medulla oblongata -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:7587 -name: TS23,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003291 ! meninx of hindbrain -relationship: part_of EMAP:7570 ! TS23,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7588 -name: TS23,arachnoid mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003559 ! hindbrain arachnoid mater -relationship: part_of EMAP:7587 ! TS23,meninges,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003559 ! hindbrain arachnoid mater -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7589 -name: TS23,dura mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:7587 ! TS23,meninges,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:759 -name: TS14,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7590 -name: TS23,tentorium cerebelli -namespace: mouse_anatomy_stages -is_a: UBERON:0006691 ! tentorium cerebelli -relationship: part_of EMAP:7589 ! TS23,dura mater,meninges,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006691 ! tentorium cerebelli -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7591 -name: TS23,pia mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003554 ! hindbrain pia mater -relationship: part_of EMAP:7587 ! TS23,meninges,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7592 -name: TS23,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005219 ! hindbrain subarachnoid space -relationship: part_of EMAP:7587 ! TS23,meninges,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005219 ! hindbrain subarachnoid space -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7593 -name: TS23,pontine cistern -namespace: mouse_anatomy_stages -is_a: UBERON:0004048 ! pontine cistern -relationship: part_of EMAP:7592 ! TS23,subarachnoid space,meninges,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004048 ! pontine cistern -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7594 -name: TS23,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:7570 ! TS23,hindbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7595 -name: TS23,floorplate,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7594 ! TS23,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7596 -name: TS23,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7594 ! TS23,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:7597 -name: TS23,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7596 ! TS23,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:7598 -name: TS23,cerebellum -namespace: mouse_anatomy_stages -is_a: UBERON:0002037 ! cerebellum -relationship: part_of EMAP:7597 ! TS23,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7599 -name: TS23,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7598 ! TS23,cerebellum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:76 -name: TS8,polar trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0006280 ! polar trophectoderm -relationship: part_of EMAP:73 ! TS8,trophectoderm -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:760 -name: TS14,dermomyotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:759 ! TS14,somite 13 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7600 -name: TS23,mantle layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7599 ! TS23,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:7601 -name: TS23,marginal layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7599 ! TS23,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:7602 -name: TS23,ventricular layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7599 ! TS23,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:7603 -name: TS23,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7598 ! TS23,cerebellum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:7604 -name: TS23,mantle layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7603 ! TS23,rest of cerebellum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:7605 -name: TS23,marginal layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7603 ! TS23,rest of cerebellum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:7606 -name: TS23,ventricular layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7603 ! TS23,rest of cerebellum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:7607 -name: TS23,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7597 ! TS23,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:7608 -name: TS23,mantle layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7607 ! TS23,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:7609 -name: TS23,marginal layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7607 ! TS23,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:761 -name: TS14,myocoele,somite 13 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:759 ! TS14,somite 13 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7610 -name: TS23,ventricular layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7607 ! TS23,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:7611 -name: TS23,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:7596 ! TS23,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7612 -name: TS23,pons -namespace: mouse_anatomy_stages -is_a: UBERON:0000988 ! pons -relationship: part_of EMAP:7611 ! TS23,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000988 ! pons -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7613 -name: TS23,mantle layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7612 ! TS23,pons -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:7614 -name: TS23,marginal layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7612 ! TS23,pons -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:7615 -name: TS23,ventricular layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7612 ! TS23,pons -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:7616 -name: TS23,sulcus limitans,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009577 ! metencephalon sulcus limitans -relationship: part_of EMAP:7596 ! TS23,lateral wall,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7617 -name: TS23,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7594 ! TS23,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:7618 -name: TS23,choroid plexus,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7617 ! TS23,roof,metencephalon -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:762 -name: TS14,sclerotome,somite 13 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:759 ! TS14,somite 13 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7624 -name: TS23,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:7469 ! TS23,brain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7625 -name: TS23,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003288 ! meninx of midbrain -relationship: part_of EMAP:7624 ! TS23,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7626 -name: TS23,arachnoid mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003557 ! midbrain arachnoid mater -relationship: part_of EMAP:7625 ! TS23,meninges,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003557 ! midbrain arachnoid mater -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7627 -name: TS23,dura mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:7625 ! TS23,meninges,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7628 -name: TS23,pia mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003551 ! midbrain pia mater -relationship: part_of EMAP:7625 ! TS23,meninges,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7629 -name: TS23,cerebral aqueduct -namespace: mouse_anatomy_stages -is_a: UBERON:0002289 ! midbrain cerebral aqueduct -relationship: part_of EMAP:7624 ! TS23,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:763 -name: TS14,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7630 -name: TS23,floorplate,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7624 ! TS23,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7631 -name: TS23,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:7624 ! TS23,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7632 -name: TS23,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:7631 ! TS23,lateral wall,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7633 -name: TS23,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7631 ! TS23,lateral wall,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:7634 -name: TS23,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7631 ! TS23,lateral wall,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:7635 -name: TS23,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003299 ! roof plate of midbrain -relationship: part_of EMAP:7624 ! TS23,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7636 -name: TS23,tegmentum,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001943 ! midbrain tegmentum -relationship: part_of EMAP:7624 ! TS23,midbrain -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7637 -name: TS23,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:7468 ! TS23,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7638 -name: TS23,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:7637 ! TS23,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7639 -name: TS23,facial VII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:7638 ! TS23,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:764 -name: TS14,dermomyotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:763 ! TS14,somite 14 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7640 -name: TS23,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:7638 ! TS23,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7641 -name: TS23,inferior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7640 ! TS23,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:7642 -name: TS23,superior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7640 ! TS23,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:7643 -name: TS23,trigeminal V,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:7638 ! TS23,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7644 -name: TS23,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:7638 ! TS23,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7645 -name: TS23,inferior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:7644 ! TS23,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7646 -name: TS23,superior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:7644 ! TS23,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7647 -name: TS23,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002827 ! auditory ganglion -relationship: part_of EMAP:7638 ! TS23,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002827 ! auditory ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7648 -name: TS23,cochlear component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7647 ! TS23,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002827 ! auditory ganglion - -[Term] -id: EMAP:7649 -name: TS23,vestibular component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002824 ! vestibular ganglion -relationship: part_of EMAP:7647 ! TS23,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:765 -name: TS14,myocoele,somite 14 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:763 ! TS14,somite 14 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7650 -name: TS23,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:7468 ! TS23,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7651 -name: TS23,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:7650 ! TS23,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7652 -name: TS23,abducent VI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001785 ! cranial nerve - -[Term] -id: EMAP:7653 -name: TS23,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7654 -name: TS23,cranial component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009673 ! accessory XI nerve cranial component -relationship: part_of EMAP:7653 ! TS23,accessory XI -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7655 -name: TS23,spinal component,accessory XI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7653 ! TS23,accessory XI -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002019 ! accessory XI nerve - -[Term] -id: EMAP:7656 -name: TS23,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001647 ! facial nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7657 -name: TS23,chorda tympani branch,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009675 ! facial VII nerve chorda tympani branch -relationship: part_of EMAP:7656 ! TS23,facial VII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009675 ! facial VII nerve chorda tympani branch -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7658 -name: TS23,glossopharyngeal IX -namespace: mouse_anatomy_stages -is_a: UBERON:0001649 ! glossopharyngeal nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7659 -name: TS23,hypoglossal XII -namespace: mouse_anatomy_stages -is_a: UBERON:0001650 ! hypoglossal nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:766 -name: TS14,sclerotome,somite 14 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:763 ! TS14,somite 14 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7660 -name: TS23,oculomotor III -namespace: mouse_anatomy_stages -is_a: UBERON:0001643 ! oculomotor nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7661 -name: TS23,olfactory I -namespace: mouse_anatomy_stages -is_a: UBERON:0001579 ! olfactory nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7662 -name: TS23,optic II -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7663 -name: TS23,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001645 ! trigeminal nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7664 -name: TS23,mandibular division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7663 ! TS23,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:7665 -name: TS23,maxillary division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7663 ! TS23,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:7666 -name: TS23,ophthalmic division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000348 ! ophthalmic nerve -relationship: part_of EMAP:7663 ! TS23,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7667 -name: TS23,trochlear IV -namespace: mouse_anatomy_stages -is_a: UBERON:0001644 ! trochlear nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7668 -name: TS23,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001648 ! vestibulocochlear nerve -relationship: part_of EMAP:7651 ! TS23,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7669 -name: TS23,cochlear component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7668 ! TS23,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:767 -name: TS14,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7670 -name: TS23,vestibular component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7668 ! TS23,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:7671 -name: TS23,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:7468 ! TS23,central nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7672 -name: TS23,conus medullaris,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005437 ! conus medullaris -relationship: part_of EMAP:7671 ! TS23,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005437 ! conus medullaris -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7673 -name: TS23,filum terminale,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005443 ! filum terminale -relationship: part_of EMAP:7671 ! TS23,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005443 ! filum terminale -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7674 -name: TS23,floorplate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7671 ! TS23,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7675 -name: TS23,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009582 ! spinal cord lateral wall -relationship: part_of EMAP:7671 ! TS23,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7676 -name: TS23,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009583 ! spinal cord mantle layer -relationship: part_of EMAP:7675 ! TS23,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009583 ! spinal cord mantle layer -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7677 -name: TS23,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:7676 ! TS23,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7678 -name: TS23,dorsal grey horn,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002256 ! dorsal horn of spinal cord -relationship: part_of EMAP:7677 ! TS23,alar columns,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7679 -name: TS23,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7676 ! TS23,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:768 -name: TS14,dermomyotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:767 ! TS14,somite 15 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7680 -name: TS23,ventral grey horn,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002257 ! ventral horn of spinal cord -relationship: part_of EMAP:7679 ! TS23,basal columns,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7681 -name: TS23,intermediate grey horn,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7676 ! TS23,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:7682 -name: TS23,marginal layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7675 ! TS23,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009582 ! spinal cord lateral wall - -[Term] -id: EMAP:7683 -name: TS23,sulcus limitans,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009570 ! spinal cord sulcus limitans -relationship: part_of EMAP:7675 ! TS23,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7684 -name: TS23,ventricular layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005359 ! spinal cord ependyma -relationship: part_of EMAP:7675 ! TS23,lateral wall,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7685 -name: TS23,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003292 ! meninx of spinal cord -relationship: part_of EMAP:7671 ! TS23,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7686 -name: TS23,arachnoid mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003560 ! spinal cord arachnoid mater -relationship: part_of EMAP:7685 ! TS23,meninges,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003560 ! spinal cord arachnoid mater -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7687 -name: TS23,dura mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002093 ! spinal dura mater -relationship: part_of EMAP:7685 ! TS23,meninges,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7688 -name: TS23,pia mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003555 ! spinal cord pia mater -relationship: part_of EMAP:7685 ! TS23,meninges,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7689 -name: TS23,roof plate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7671 ! TS23,spinal cord -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002240 ! spinal cord - -[Term] -id: EMAP:769 -name: TS14,myocoele,somite 15 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:767 ! TS14,somite 15 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7690 -name: TS23,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:7467 ! TS23,nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7691 -name: TS23,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:7690 ! TS23,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7692 -name: TS23,ganglion,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:7691 ! TS23,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7693 -name: TS23,ciliary ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0002058 ! ciliary ganglion -relationship: part_of EMAP:7692 ! TS23,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002058 ! ciliary ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7694 -name: TS23,paraganglion of Zuckerkandl -namespace: mouse_anatomy_stages -is_a: UBERON:0001237 ! paraaortic body -relationship: part_of EMAP:7692 ! TS23,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7695 -name: TS23,nerve plexus,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001816 ! autonomic nerve plexus -relationship: part_of EMAP:7691 ! TS23,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001816 ! autonomic nerve plexus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7696 -name: TS23,hypogastric plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005303 ! hypogastric nerve -relationship: part_of EMAP:7695 ! TS23,nerve plexus,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005303 ! hypogastric nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7697 -name: TS23,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000011 ! parasympathetic nervous system -relationship: part_of EMAP:7691 ! TS23,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7698 -name: TS23,nerve,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004293 ! parasympathetic nerve -relationship: part_of EMAP:7697 ! TS23,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7699 -name: TS23,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0006308 ! vagal X nerve trunk -relationship: part_of EMAP:7698 ! TS23,nerve,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006308 ! vagal X nerve trunk -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:77 -name: TS8,ectoplacental cone -namespace: mouse_anatomy_stages -is_a: UBERON:0004364 ! ectoplacental cone -relationship: part_of EMAP:76 ! TS8,polar trophectoderm -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0004364 ! ectoplacental cone -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:770 -name: TS14,sclerotome,somite 15 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:767 ! TS14,somite 15 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7700 -name: TS23,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7699 ! TS23,vagal X nerve trunk -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7702 -name: TS23,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -relationship: part_of EMAP:7699 ! TS23,vagal X nerve trunk -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7704 -name: TS23,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:7691 ! TS23,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7705 -name: TS23,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:7704 ! TS23,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7706 -name: TS23,cervico-thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002441 ! cervicothoracic ganglion -relationship: part_of EMAP:7705 ! TS23,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002441 ! cervicothoracic ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7707 -name: TS23,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001991 ! cervical ganglion -relationship: part_of EMAP:7705 ! TS23,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7708 -name: TS23,inferior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002440 ! inferior cervical ganglion -relationship: part_of EMAP:7707 ! TS23,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7709 -name: TS23,middle,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001990 ! middle cervical ganglion -relationship: part_of EMAP:7707 ! TS23,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:771 -name: TS14,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7710 -name: TS23,superior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001989 ! superior cervical ganglion -relationship: part_of EMAP:7707 ! TS23,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7711 -name: TS23,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:7705 ! TS23,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7712 -name: TS23,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:7704 ! TS23,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7713 -name: TS23,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:7690 ! TS23,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7714 -name: TS23,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7713 ! TS23,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:7715 -name: TS23,dorsal root ganglion,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:7714 ! TS23,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7716 -name: TS23,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:7713 ! TS23,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7717 -name: TS23,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:7716 ! TS23,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7718 -name: TS23,median nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001148 ! median nerve -relationship: part_of EMAP:7717 ! TS23,brachial plexus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001148 ! median nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7719 -name: TS23,radial nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001492 ! radial nerve -relationship: part_of EMAP:7717 ! TS23,brachial plexus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:772 -name: TS14,dermomyotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:771 ! TS14,somite 16 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7720 -name: TS23,ulnar nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001494 ! ulnar nerve -relationship: part_of EMAP:7717 ! TS23,brachial plexus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7721 -name: TS23,lumbo-sacral plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001815 ! lumbosacral nerve plexus -relationship: part_of EMAP:7716 ! TS23,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7722 -name: TS23,sciatic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001322 ! sciatic nerve -relationship: part_of EMAP:7721 ! TS23,lumbo-sacral plexus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001322 ! sciatic nerve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7728 -name: TS23,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:7428 ! TS23,organ system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7729 -name: TS23,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:7728 ! TS23,sensory organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:773 -name: TS14,myocoele,somite 16 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:771 ! TS14,somite 16 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7730 -name: TS23,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:7729 ! TS23,ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7731 -name: TS23,external auditory meatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001352 ! external acoustic meatus -relationship: part_of EMAP:7730 ! TS23,external ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7732 -name: TS23,future tympanic membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:7730 ! TS23,external ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7733 -name: TS23,epithelium,future tympanic membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7732 ! TS23,future tympanic membrane -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:7734 -name: TS23,endothelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001986 ! endothelium -relationship: part_of EMAP:7732 ! TS23,future tympanic membrane -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001986 ! endothelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7735 -name: TS23,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001757 ! pinna -relationship: part_of EMAP:7730 ! TS23,external ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001757 ! pinna -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7736 -name: TS23,cartilage condensation,pinna,external ear -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7735 ! TS23,pinna,external ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7737 -name: TS23,mesenchyme,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0003325 ! mesenchyme of pinna -relationship: part_of EMAP:7735 ! TS23,pinna,external ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7738 -name: TS23,surface epithelium,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0006938 ! pinna surface epithelium -relationship: part_of EMAP:7735 ! TS23,pinna,external ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7739 -name: TS23,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:7729 ! TS23,ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:774 -name: TS14,sclerotome,somite 16 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:771 ! TS14,somite 16 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7740 -name: TS23,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:7739 ! TS23,inner ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7741 -name: TS23,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7740 ! TS23,endolymphatic appendage -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:7742 -name: TS23,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7740 ! TS23,endolymphatic appendage -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:7743 -name: TS23,endolymphatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001860 ! endolymphatic duct -relationship: part_of EMAP:7739 ! TS23,inner ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7744 -name: TS23,associated mesenchyme,endolymphatic duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7743 ! TS23,endolymphatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001860 ! endolymphatic duct - -[Term] -id: EMAP:7745 -name: TS23,epithelium,endolymphatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003362 ! epithelium of endolymphatic duct -relationship: part_of EMAP:7743 ! TS23,endolymphatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003362 ! epithelium of endolymphatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7746 -name: TS23,labyrinth -namespace: mouse_anatomy_stages -is_a: UBERON:0001849 ! membranous labyrinth -relationship: part_of EMAP:7739 ! TS23,inner ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7747 -name: TS23,associated mesenchyme,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7746 ! TS23,labyrinth -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:7748 -name: TS23,epithelium,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7746 ! TS23,labyrinth -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:7749 -name: TS23,otic capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0010351 ! otic capsule cartilage condensation -relationship: part_of EMAP:7739 ! TS23,inner ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010351 ! otic capsule cartilage condensation -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:775 -name: TS14,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7750 -name: TS23,vestibular component,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001862 ! vestibular labyrinth -relationship: part_of EMAP:7739 ! TS23,inner ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7751 -name: TS23,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0001861 ! ductus reuniens -relationship: part_of EMAP:7750 ! TS23,vestibular component,inner ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7752 -name: TS23,associated mesenchyme,ductus reuniens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7751 ! TS23,ductus reuniens -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001861 ! ductus reuniens - -[Term] -id: EMAP:7753 -name: TS23,epithelium,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0003363 ! epithelium of ductus reuniens -relationship: part_of EMAP:7751 ! TS23,ductus reuniens -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7754 -name: TS23,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0001854 ! saccule of membranous labyrinth -relationship: part_of EMAP:7750 ! TS23,vestibular component,inner ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7755 -name: TS23,associated mesenchyme,saccule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7754 ! TS23,saccule -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EMAP:7756 -name: TS23,cochlea -namespace: mouse_anatomy_stages -is_a: UBERON:0001844 ! cochlea -relationship: part_of EMAP:7754 ! TS23,saccule -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001844 ! cochlea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7757 -name: TS23,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth -relationship: part_of EMAP:7756 ! TS23,cochlea -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7758 -name: TS23,associated mesenchyme,cochlear duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7757 ! TS23,cochlear duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: EMAP:7759 -name: TS23,epithelium,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003243 ! epithelium of cochlear duct -relationship: part_of EMAP:7757 ! TS23,cochlear duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003243 ! epithelium of cochlear duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:776 -name: TS14,dermomyotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:775 ! TS14,somite 17 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7760 -name: TS23,epithelium,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0003242 ! epithelium of saccule -relationship: part_of EMAP:7754 ! TS23,saccule -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7761 -name: TS23,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0001853 ! utricle of membranous labyrinth -relationship: part_of EMAP:7750 ! TS23,vestibular component,inner ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7762 -name: TS23,associated mesenchyme,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7761 ! TS23,utricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EMAP:7763 -name: TS23,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0005600 ! crus commune -relationship: part_of EMAP:7761 ! TS23,utricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005600 ! crus commune -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7764 -name: TS23,associated mesenchyme,crus commune,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7763 ! TS23,crus commune,utricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005600 ! crus commune - -[Term] -id: EMAP:7765 -name: TS23,epithelium,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:7763 ! TS23,crus commune,utricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7766 -name: TS23,epithelium,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:7761 ! TS23,utricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7767 -name: TS23,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001843 ! lateral semicircular canal -relationship: part_of EMAP:7761 ! TS23,utricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7768 -name: TS23,associated mesenchyme,lateral semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7767 ! TS23,lateral semicircular canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001843 ! lateral semicircular canal - -[Term] -id: EMAP:7769 -name: TS23,epithelium,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003240 ! epithelium of lateral semicircular canal -relationship: part_of EMAP:7767 ! TS23,lateral semicircular canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:777 -name: TS14,myocoele,somite 17 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:775 ! TS14,somite 17 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7770 -name: TS23,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001842 ! posterior semicircular canal -relationship: part_of EMAP:7761 ! TS23,utricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7771 -name: TS23,associated mesenchyme,posterior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7770 ! TS23,posterior semicircular canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EMAP:7772 -name: TS23,epithelium,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal -relationship: part_of EMAP:7770 ! TS23,posterior semicircular canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7773 -name: TS23,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001841 ! anterior semicircular canal -relationship: part_of EMAP:7761 ! TS23,utricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7774 -name: TS23,associated mesenchyme,superior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7773 ! TS23,superior semicircular canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EMAP:7775 -name: TS23,epithelium,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003238 ! epithelium of superior semicircular canal -relationship: part_of EMAP:7773 ! TS23,superior semicircular canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7776 -name: TS23,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:7729 ! TS23,ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7777 -name: TS23,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:7776 ! TS23,middle ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7778 -name: TS23,ossicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001686 ! auditory ossicle -relationship: part_of EMAP:7776 ! TS23,middle ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001686 ! auditory ossicle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7779 -name: TS23,incus -namespace: mouse_anatomy_stages -is_a: UBERON:0001688 ! incus -relationship: part_of EMAP:7778 ! TS23,ossicle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001688 ! incus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:778 -name: TS14,sclerotome,somite 17 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:775 ! TS14,somite 17 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7780 -name: TS23,malleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001689 ! malleus -relationship: part_of EMAP:7778 ! TS23,ossicle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001689 ! malleus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7781 -name: TS23,stapes -namespace: mouse_anatomy_stages -is_a: UBERON:0001687 ! stapes -relationship: part_of EMAP:7778 ! TS23,ossicle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001687 ! stapes -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7782 -name: TS23,pharyngo-tympanic tube -namespace: mouse_anatomy_stages -is_a: UBERON:0002393 ! pharyngotympanic tube -relationship: part_of EMAP:7776 ! TS23,middle ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7783 -name: TS23,stapedius muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001599 ! stapedius muscle -relationship: part_of EMAP:7776 ! TS23,middle ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001599 ! stapedius muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7784 -name: TS23,tensor tympani muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001600 ! tensor tympani -relationship: part_of EMAP:7776 ! TS23,middle ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001600 ! tensor tympani -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7785 -name: TS23,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:7776 ! TS23,middle ear -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7786 -name: TS23,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:7728 ! TS23,sensory organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7787 -name: TS23,anterior chamber,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001766 ! anterior chamber of eyeball -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7788 -name: TS23,aqueous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001796 ! aqueous humor of eyeball -relationship: part_of EMAP:7787 ! TS23,anterior chamber,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7789 -name: TS23,choroidal blood vessels,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0002443 ! choroidal blood vessel -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:779 -name: TS14,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7790 -name: TS23,conjunctival sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005908 ! conjunctival sac -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005908 ! conjunctival sac -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7791 -name: TS23,lower recess,conjunctival sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7790 ! TS23,conjunctival sac -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005908 ! conjunctival sac - -[Term] -id: EMAP:7792 -name: TS23,upper recess,conjunctival sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7790 ! TS23,conjunctival sac -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005908 ! conjunctival sac - -[Term] -id: EMAP:7793 -name: TS23,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7794 -name: TS23,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:7793 ! TS23,cornea -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7795 -name: TS23,stroma,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001777 ! substantia propria of cornea -relationship: part_of EMAP:7793 ! TS23,cornea -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7796 -name: TS23,skeletal muscle,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003269 ! skeletal muscle of eye -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003269 ! skeletal muscle of eye -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7797 -name: TS23,extrinsic ocular muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001601 ! extra-ocular muscle -relationship: part_of EMAP:7796 ! TS23,skeletal muscle,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7798 -name: TS23,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7799 -name: TS23,optic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:7798 ! TS23,optic stalk -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:78 -name: TS8,cytotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000319 ! cytotrophoblast -relationship: part_of EMAP:77 ! TS8,ectoplacental cone -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0000319 ! cytotrophoblast -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:780 -name: TS14,dermomyotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:779 ! TS14,somite 18 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7800 -name: TS23,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001711 ! eyelid -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001711 ! eyelid -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7801 -name: TS23,inner canthus,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0005611 ! inner canthus -relationship: part_of EMAP:7800 ! TS23,eyelid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7802 -name: TS23,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001713 ! lower eyelid -relationship: part_of EMAP:7800 ! TS23,eyelid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7803 -name: TS23,epithelium,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003845 ! lower eyelid epithelium -relationship: part_of EMAP:7802 ! TS23,lower,eyelid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003845 ! lower eyelid epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7804 -name: TS23,mesenchyme,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:7802 ! TS23,lower,eyelid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7805 -name: TS23,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001712 ! upper eyelid -relationship: part_of EMAP:7800 ! TS23,eyelid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7806 -name: TS23,epithelium,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003844 ! upper eyelid epithelium -relationship: part_of EMAP:7805 ! TS23,upper,eyelid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003844 ! upper eyelid epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7807 -name: TS23,mesenchyme,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:7805 ! TS23,upper,eyelid -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7808 -name: TS23,hyaloid cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005606 ! hyaloid cavity -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7809 -name: TS23,hyaloid vascular plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005607 ! hyaloid vascular plexus -relationship: part_of EMAP:7808 ! TS23,hyaloid cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:781 -name: TS14,myocoele,somite 18 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:779 ! TS14,somite 18 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7810 -name: TS23,tunica vasculosa lentis -namespace: mouse_anatomy_stages -is_a: UBERON:0006305 ! tunica vasculosa lentis -relationship: part_of EMAP:7809 ! TS23,hyaloid vascular plexus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006305 ! tunica vasculosa lentis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7811 -name: TS23,vasa hyaloidea propria -namespace: mouse_anatomy_stages -is_a: UBERON:0006358 ! vasa hyaloidea propria -relationship: part_of EMAP:7809 ! TS23,hyaloid vascular plexus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006358 ! vasa hyaloidea propria -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7812 -name: TS23,vitreous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001797 ! vitreous humor -relationship: part_of EMAP:7808 ! TS23,hyaloid cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7813 -name: TS23,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0000965 ! lens of camera-type eye -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7814 -name: TS23,anterior epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005614 ! lens anterior epithelium -relationship: part_of EMAP:7813 ! TS23,lens -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7815 -name: TS23,capsule,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0001804 ! capsule of lens -relationship: part_of EMAP:7813 ! TS23,lens -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7816 -name: TS23,equatorial epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005615 ! lens equatorial epithelium -relationship: part_of EMAP:7813 ! TS23,lens -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005615 ! lens equatorial epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7817 -name: TS23,lens fibres -namespace: mouse_anatomy_stages -is_a: UBERON:0002444 ! lens fiber -relationship: part_of EMAP:7813 ! TS23,lens -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7818 -name: TS23,anterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7817 ! TS23,lens fibres -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:7819 -name: TS23,posterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7817 ! TS23,lens fibres -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:782 -name: TS14,sclerotome,somite 18 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:779 ! TS14,somite 18 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7820 -name: TS23,optic chiasma -namespace: mouse_anatomy_stages -is_a: UBERON:0000959 ! optic chiasma -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7821 -name: TS23,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7822 -name: TS23,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:7786 ! TS23,eye -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7823 -name: TS23,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:7822 ! TS23,retina -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7824 -name: TS23,nerve fibre layer,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0001793 ! nerve fiber layer of retina -relationship: part_of EMAP:7823 ! TS23,neural retina -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7825 -name: TS23,nuclear layer,neural retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7823 ! TS23,neural retina -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003902 ! retinal neural layer - -[Term] -id: EMAP:7826 -name: TS23,optic disc -namespace: mouse_anatomy_stages -is_a: UBERON:0001783 ! optic disc -relationship: part_of EMAP:7822 ! TS23,retina -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001783 ! optic disc -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7827 -name: TS23,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:7822 ! TS23,retina -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7828 -name: TS23,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:7728 ! TS23,sensory organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7829 -name: TS23,meatus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7828 ! TS23,nose -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000004 ! olfactory apparatus - -[Term] -id: EMAP:783 -name: TS14,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7830 -name: TS23,naris -namespace: mouse_anatomy_stages -is_a: UBERON:0000003 ! naris -relationship: part_of EMAP:7828 ! TS23,nose -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000003 ! naris -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7831 -name: TS23,anterior,naris -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7830 ! TS23,naris -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:7832 -name: TS23,epithelium,anterior,naris -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7831 ! TS23,anterior,naris -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:7833 -name: TS23,external,naris -namespace: mouse_anatomy_stages -is_a: UBERON:0005928 ! external naris -relationship: part_of EMAP:7830 ! TS23,naris -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005928 ! external naris -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7834 -name: TS23,epithelium,external,naris -namespace: mouse_anatomy_stages -is_a: UBERON:0004692 ! external naris epithelium -relationship: part_of EMAP:7833 ! TS23,external,naris -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004692 ! external naris epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7835 -name: TS23,posterior,naris -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7830 ! TS23,naris -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:7836 -name: TS23,epithelium,posterior,naris -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7835 ! TS23,posterior,naris -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:7837 -name: TS23,primary choana,naris -namespace: mouse_anatomy_stages -is_a: UBERON:0005931 ! primary choana -relationship: part_of EMAP:7830 ! TS23,naris -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005931 ! primary choana -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7838 -name: TS23,nasal capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0006332 ! nasal capsule -relationship: part_of EMAP:7828 ! TS23,nose -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7839 -name: TS23,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001707 ! nasal cavity -relationship: part_of EMAP:7828 ! TS23,nose -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:784 -name: TS14,dermomyotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:783 ! TS14,somite 19 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7840 -name: TS23,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005384 ! nasal cavity epithelium -relationship: part_of EMAP:7839 ! TS23,nasal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7841 -name: TS23,olfactory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001997 ! olfactory epithelium -relationship: part_of EMAP:7840 ! TS23,epithelium,nasal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7842 -name: TS23,respiratory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000171 ! respiration organ -relationship: part_of EMAP:7840 ! TS23,epithelium,nasal cavity -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7843 -name: TS23,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0001706 ! nasal septum -relationship: part_of EMAP:7828 ! TS23,nose -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7844 -name: TS23,epithelium,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003356 ! epithelium of nasal septum -relationship: part_of EMAP:7843 ! TS23,nasal septum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003356 ! epithelium of nasal septum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7845 -name: TS23,mesenchyme,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003415 ! mesenchyme of nasal septum -relationship: part_of EMAP:7843 ! TS23,nasal septum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7846 -name: TS23,naso-lacrimal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002392 ! nasolacrimal duct -relationship: part_of EMAP:7828 ! TS23,nose -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7847 -name: TS23,turbinate bones,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7828 ! TS23,nose -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7848 -name: TS23,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002255 ! vomeronasal organ -relationship: part_of EMAP:7828 ! TS23,nose -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7849 -name: TS23,epithelium,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003367 ! epithelium of vomeronasal organ -relationship: part_of EMAP:7848 ! TS23,vomeronasal organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:785 -name: TS14,myocoele,somite 19 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:783 ! TS14,somite 19 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7850 -name: TS23,mesenchyme,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003421 ! mesenchyme of vomeronasal organ -relationship: part_of EMAP:7848 ! TS23,vomeronasal organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7851 -name: TS23,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:7428 ! TS23,organ system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7852 -name: TS23,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:7851 ! TS23,cardiovascular system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7853 -name: TS23,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006347 ! communicating artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006347 ! communicating artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7854 -name: TS23,anterior,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006764 ! anterior communicating artery -relationship: part_of EMAP:7853 ! TS23,communicating artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006764 ! anterior communicating artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7855 -name: TS23,posterior,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001628 ! posterior communicating artery -relationship: part_of EMAP:7853 ! TS23,communicating artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7856 -name: TS23,aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0000947 ! aorta -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000947 ! aorta -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7857 -name: TS23,arch of aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001508 ! arch of aorta -relationship: part_of EMAP:7856 ! TS23,aorta -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7858 -name: TS23,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001515 ! thoracic aorta -relationship: part_of EMAP:7856 ! TS23,aorta -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001515 ! thoracic aorta -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7859 -name: TS23,ascending,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001496 ! ascending aorta -relationship: part_of EMAP:7858 ! TS23,thoracic aorta -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:786 -name: TS14,sclerotome,somite 19 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:783 ! TS14,somite 19 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7860 -name: TS23,descending,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001514 ! descending aorta -relationship: part_of EMAP:7858 ! TS23,thoracic aorta -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7861 -name: TS23,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005805 ! dorsal aorta -relationship: part_of EMAP:7856 ! TS23,aorta -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7862 -name: TS23,abdominal aorta,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001516 ! abdominal aorta -relationship: part_of EMAP:7861 ! TS23,dorsal aorta -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7863 -name: TS23,basilar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001633 ! basilar artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7864 -name: TS23,bronchial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002040 ! bronchial artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002040 ! bronchial artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7865 -name: TS23,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005396 ! carotid artery segment -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7866 -name: TS23,common,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0010197 ! trunk of common carotid artery -relationship: part_of EMAP:7865 ! TS23,carotid artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010197 ! trunk of common carotid artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7867 -name: TS23,external,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001070 ! external carotid artery -relationship: part_of EMAP:7865 ! TS23,carotid artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7868 -name: TS23,internal,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:7865 ! TS23,carotid artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7869 -name: TS23,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004449 ! cerebral artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:787 -name: TS14,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:726 ! TS14,somite,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7870 -name: TS23,anterior,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001624 ! anterior cerebral artery -relationship: part_of EMAP:7869 ! TS23,cerebral artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7871 -name: TS23,middle,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001627 ! middle cerebral artery -relationship: part_of EMAP:7869 ! TS23,cerebral artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7872 -name: TS23,posterior,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001636 ! posterior cerebral artery -relationship: part_of EMAP:7869 ! TS23,cerebral artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7873 -name: TS23,hepatic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001193 ! hepatic artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7874 -name: TS23,hyoid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005608 ! hyoid artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7875 -name: TS23,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005609 ! iliac artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7876 -name: TS23,common,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001191 ! common iliac artery -relationship: part_of EMAP:7875 ! TS23,iliac artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7877 -name: TS23,external,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001308 ! external iliac artery -relationship: part_of EMAP:7875 ! TS23,iliac artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7878 -name: TS23,internal,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001309 ! internal iliac artery -relationship: part_of EMAP:7875 ! TS23,iliac artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7879 -name: TS23,innominate artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001529 ! brachiocephalic artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:788 -name: TS14,dermomyotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:787 ! TS14,somite 20 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7880 -name: TS23,internal thoracic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002456 ! internal thoracic artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7881 -name: TS23,intersegmental artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002457 ! intersegmental artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002457 ! intersegmental artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7882 -name: TS23,maxillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001616 ! maxillary artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7883 -name: TS23,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005616 ! mesenteric artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7884 -name: TS23,inferior,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001183 ! inferior mesenteric artery -relationship: part_of EMAP:7883 ! TS23,mesenteric artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001183 ! inferior mesenteric artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7885 -name: TS23,superior,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001182 ! superior mesenteric artery -relationship: part_of EMAP:7883 ! TS23,mesenteric artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001182 ! superior mesenteric artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7886 -name: TS23,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7887 -name: TS23,ovarian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001190 ! ovarian artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001190 ! ovarian artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7888 -name: TS23,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7889 -name: TS23,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:789 -name: TS14,myocoele,somite 20 -namespace: mouse_anatomy_stages -is_a: UBERON:0012054 ! myocoele -relationship: part_of EMAP:787 ! TS14,somite 20 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0012054 ! myocoele -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7890 -name: TS23,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7891 -name: TS23,pulmonary trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0002333 ! pulmonary trunk -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7892 -name: TS23,renal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001184 ! renal artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001184 ! renal artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7893 -name: TS23,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002458 ! spinal artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7894 -name: TS23,anterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005431 ! anterior spinal artery -relationship: part_of EMAP:7893 ! TS23,spinal artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005431 ! anterior spinal artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7895 -name: TS23,posterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007146 ! posterior spinal artery -relationship: part_of EMAP:7893 ! TS23,spinal artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007146 ! posterior spinal artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7896 -name: TS23,stapedial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006345 ! stapedial artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7897 -name: TS23,subclavian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001533 ! subclavian artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7898 -name: TS23,testicular artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001187 ! testicular artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001187 ! testicular artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7899 -name: TS23,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003847 ! thyroid artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003847 ! thyroid artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:79 -name: TS8,syncytiotrophoblast -namespace: mouse_anatomy_stages -is_a: UBERON:0000371 ! syncytiotrophoblast -relationship: part_of EMAP:77 ! TS8,ectoplacental cone -relationship: exists_during MmusDv:0000012 ! Theiler stage 08 -intersection_of: UBERON:0000371 ! syncytiotrophoblast -intersection_of: exists_during MmusDv:0000012 ! Theiler stage 08 - -[Term] -id: EMAP:790 -name: TS14,sclerotome,somite 20 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:787 ! TS14,somite 20 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0005598 ! trunk somite - -[Term] -id: EMAP:7900 -name: TS23,inferior,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007149 ! inferior thyroid artery -relationship: part_of EMAP:7899 ! TS23,thyroid artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007149 ! inferior thyroid artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7901 -name: TS23,superior,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007150 ! superior thyroid artery -relationship: part_of EMAP:7899 ! TS23,thyroid artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007150 ! superior thyroid artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7902 -name: TS23,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7903 -name: TS23,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:7902 ! TS23,umbilical artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7904 -name: TS23,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:7902 ! TS23,umbilical artery -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7905 -name: TS23,vertebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001535 ! vertebral artery -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7906 -name: TS23,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:7851 ! TS23,cardiovascular system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7907 -name: TS23,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:7851 ! TS23,cardiovascular system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7908 -name: TS23,aortic sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0003707 ! sinus of Valsalva -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003707 ! sinus of Valsalva -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7909 -name: TS23,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:791 -name: TS14,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:724 ! TS14,paraxial mesenchyme,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:7910 -name: TS23,atrio-ventricular cushion tissue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:7911 -name: TS23,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7912 -name: TS23,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:7911 ! TS23,atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7913 -name: TS23,foramen ovale,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004754 ! foramen ovale of heart -relationship: part_of EMAP:7912 ! TS23,interatrial septum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7914 -name: TS23,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:7912 ! TS23,interatrial septum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7915 -name: TS23,foramen secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0006678 ! foramen secundum -relationship: part_of EMAP:7914 ! TS23,septum primum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7916 -name: TS23,septum secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0004155 ! septum secundum -relationship: part_of EMAP:7912 ! TS23,interatrial septum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004155 ! septum secundum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7917 -name: TS23,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002079 ! left atrium -relationship: part_of EMAP:7911 ! TS23,atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002079 ! left atrium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7918 -name: TS23,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7917 ! TS23,left atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:7919 -name: TS23,endocardial lining,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7918 ! TS23,auricular region,left atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:792 -name: TS14,septum transversum -namespace: mouse_anatomy_stages -is_a: UBERON:0004161 ! septum transversum -relationship: part_of EMAP:718 ! TS14,trunk mesenchyme -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7920 -name: TS23,cardiac muscle,auricular region,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:7918 ! TS23,auricular region,left atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7921 -name: TS23,endocardial lining,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7917 ! TS23,left atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:7922 -name: TS23,cardiac muscle,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003380 ! cardiac muscle of left atrium -relationship: part_of EMAP:7917 ! TS23,left atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7923 -name: TS23,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002078 ! right atrium -relationship: part_of EMAP:7911 ! TS23,atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002078 ! right atrium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7924 -name: TS23,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7923 ! TS23,right atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:7925 -name: TS23,endocardial lining,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7924 ! TS23,auricular region,right atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:7926 -name: TS23,cardiac muscle,auricular region,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:7924 ! TS23,auricular region,right atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7927 -name: TS23,endocardial lining,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7923 ! TS23,right atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:7928 -name: TS23,cardiac muscle,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003379 ! cardiac muscle of right atrium -relationship: part_of EMAP:7923 ! TS23,right atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7929 -name: TS23,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005208 ! right atrium valve -relationship: part_of EMAP:7923 ! TS23,right atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:793 -name: TS14,hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:792 ! TS14,septum transversum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:7930 -name: TS23,venous valve,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:7929 ! TS23,valve,right atrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7931 -name: TS23,bulbar cushion -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:7932 -name: TS23,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7933 -name: TS23,endocardial tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002165 ! endocardium -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002165 ! endocardium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7934 -name: TS23,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7935 -name: TS23,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:7934 ! TS23,mesentery,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7936 -name: TS23,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:7935 ! TS23,dorsal mesocardium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7937 -name: TS23,ductus arteriosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005440 ! ductus arteriosus -relationship: part_of EMAP:7852 ! TS23,arterial system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7938 -name: TS23,trabeculae carneae -namespace: mouse_anatomy_stages -is_a: UBERON:0002511 ! trabecula carnea -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002511 ! trabecula carnea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7939 -name: TS23,valve,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000946 ! cardial valve -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000946 ! cardial valve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:794 -name: TS14,non-hepatic component,septum transversum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:792 ! TS14,septum transversum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004161 ! septum transversum - -[Term] -id: EMAP:7940 -name: TS23,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002137 ! aortic valve -relationship: part_of EMAP:7939 ! TS23,valve,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7941 -name: TS23,leaflets,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0011742 ! aortic valve leaflet -relationship: part_of EMAP:7940 ! TS23,aortic valve -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011742 ! aortic valve leaflet -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7942 -name: TS23,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002135 ! mitral valve -relationship: part_of EMAP:7939 ! TS23,valve,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7943 -name: TS23,leaflets,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0007151 ! leaflets of mitral valve -relationship: part_of EMAP:7942 ! TS23,mitral valve -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007151 ! leaflets of mitral valve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7944 -name: TS23,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002146 ! pulmonary valve -relationship: part_of EMAP:7939 ! TS23,valve,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7945 -name: TS23,leaflets,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0011745 ! pulmonary valve leaflets -relationship: part_of EMAP:7944 ! TS23,pulmonary valve -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011745 ! pulmonary valve leaflets -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7946 -name: TS23,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002134 ! tricuspid valve -relationship: part_of EMAP:7939 ! TS23,valve,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7947 -name: TS23,leaflets,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0005484 ! tricuspid valve leaflet -relationship: part_of EMAP:7946 ! TS23,tricuspid valve -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005484 ! tricuspid valve leaflet -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7948 -name: TS23,ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002082 ! cardiac ventricle -relationship: part_of EMAP:7907 ! TS23,heart -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7949 -name: TS23,interventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005455 ! interventricular groove -relationship: part_of EMAP:7948 ! TS23,ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:795 -name: TS14,notochord -namespace: mouse_anatomy_stages -is_a: UBERON:0002328 ! notochord -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002328 ! notochord -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7950 -name: TS23,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002094 ! interventricular septum -relationship: part_of EMAP:7948 ! TS23,ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7951 -name: TS23,endocardial lining,interventricular septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7950 ! TS23,interventricular septum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002094 ! interventricular septum - -[Term] -id: EMAP:7952 -name: TS23,membranous part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004666 ! interventricular septum membranous part -relationship: part_of EMAP:7950 ! TS23,interventricular septum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7953 -name: TS23,muscular part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004667 ! interventricular septum muscular part -relationship: part_of EMAP:7950 ! TS23,interventricular septum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7954 -name: TS23,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002084 ! heart left ventricle -relationship: part_of EMAP:7948 ! TS23,ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7955 -name: TS23,endocardial lining,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009713 ! endocardium of left ventricle -relationship: part_of EMAP:7954 ! TS23,left ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7956 -name: TS23,cardiac muscle,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003382 ! cardiac muscle of left ventricle -relationship: part_of EMAP:7954 ! TS23,left ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7957 -name: TS23,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002080 ! heart right ventricle -relationship: part_of EMAP:7948 ! TS23,ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7958 -name: TS23,endocardial lining,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009712 ! endocardium of right ventricle -relationship: part_of EMAP:7957 ! TS23,right ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7959 -name: TS23,cardiac muscle,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003381 ! cardiac muscle of right ventricle -relationship: part_of EMAP:7957 ! TS23,right ventricle -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:796 -name: TS14,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7960 -name: TS23,lymphatic system -namespace: mouse_anatomy_stages -is_a: UBERON:0006558 ! lymphatic part of lymphoid system -relationship: part_of EMAP:7851 ! TS23,cardiovascular system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7961 -name: TS23,jugular lymph sac -namespace: mouse_anatomy_stages -is_a: UBERON:0011765 ! jugular lymph sac -relationship: part_of EMAP:7960 ! TS23,lymphatic system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011765 ! jugular lymph sac -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7962 -name: TS23,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:7851 ! TS23,cardiovascular system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7963 -name: TS23,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0013146 ! venous system of brain -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0013146 ! venous system of brain -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7964 -name: TS23,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005720 ! hindbrain venous system -relationship: part_of EMAP:7963 ! TS23,brain,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005720 ! hindbrain venous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7965 -name: TS23,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7964 ! TS23,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005720 ! hindbrain venous system - -[Term] -id: EMAP:7966 -name: TS23,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005486 ! venous dural sinus -relationship: part_of EMAP:7965 ! TS23,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005486 ! venous dural sinus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7967 -name: TS23,inferior sagittal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0007152 ! inferior sagittal sinus -relationship: part_of EMAP:7966 ! TS23,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007152 ! inferior sagittal sinus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7968 -name: TS23,superior sagittal,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009968 ! primitive superior sagittal sinus -relationship: part_of EMAP:7966 ! TS23,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009968 ! primitive superior sagittal sinus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7969 -name: TS23,transverse,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001641 ! transverse sinus -relationship: part_of EMAP:7966 ! TS23,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001641 ! transverse sinus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:797 -name: TS14,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:796 ! TS14,organ system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7970 -name: TS23,azygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001594 ! azygos vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001594 ! azygos vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7971 -name: TS23,common iliac vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001139 ! common iliac vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7972 -name: TS23,ductus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002083 ! ductus venosus -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7973 -name: TS23,femoral vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001361 ! femoral vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7974 -name: TS23,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:7975 -name: TS23,left,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7974 ! TS23,hepatico-cardiac vein -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:7976 -name: TS23,right,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7974 ! TS23,hepatico-cardiac vein -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:7977 -name: TS23,hemiazygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006663 ! hemiazygos vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006663 ! hemiazygos vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7978 -name: TS23,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0004087 ! vena cava -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004087 ! vena cava -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7979 -name: TS23,inferior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001072 ! inferior vena cava -relationship: part_of EMAP:7978 ! TS23,vena cava -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001072 ! inferior vena cava -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:798 -name: TS14,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:797 ! TS14,nervous system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7980 -name: TS23,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7979 ! TS23,inferior,vena cava -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7981 -name: TS23,pre-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7979 ! TS23,inferior,vena cava -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:7982 -name: TS23,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001585 ! anterior vena cava -relationship: part_of EMAP:7978 ! TS23,vena cava -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7983 -name: TS23,left,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006765 ! left anterior vena cava -relationship: part_of EMAP:7982 ! TS23,superior,vena cava -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006765 ! left anterior vena cava -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7984 -name: TS23,right,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006766 ! right anterior vena cava -relationship: part_of EMAP:7982 ! TS23,superior,vena cava -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006766 ! right anterior vena cava -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7985 -name: TS23,jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004711 ! jugular vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004711 ! jugular vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7986 -name: TS23,external,jugular vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7985 ! TS23,jugular vein -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004711 ! jugular vein - -[Term] -id: EMAP:7987 -name: TS23,internal,jugular vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7985 ! TS23,jugular vein -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004711 ! jugular vein - -[Term] -id: EMAP:7988 -name: TS23,internal thoracic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001589 ! internal thoracic vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001589 ! internal thoracic vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7989 -name: TS23,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005617 ! mesenteric vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:799 -name: TS14,future brain -namespace: mouse_anatomy_stages -is_a: UBERON:0006238 ! future brain -relationship: part_of EMAP:798 ! TS14,central nervous system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006238 ! future brain -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:7990 -name: TS23,inferior,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001215 ! inferior mesenteric vein -relationship: part_of EMAP:7989 ! TS23,mesenteric vein -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001215 ! inferior mesenteric vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7991 -name: TS23,superior,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001138 ! superior mesenteric vein -relationship: part_of EMAP:7989 ! TS23,mesenteric vein -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001138 ! superior mesenteric vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7992 -name: TS23,ovarian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001145 ! ovarian vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001145 ! ovarian vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7993 -name: TS23,portal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002017 ! portal vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002017 ! portal vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7994 -name: TS23,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7995 -name: TS23,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7996 -name: TS23,pulmonary vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002016 ! pulmonary vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7997 -name: TS23,spinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006686 ! spinal vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006686 ! spinal vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7998 -name: TS23,subclavian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001587 ! subclavian vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:7999 -name: TS23,superior vesical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006355 ! superior vesical vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006355 ! superior vesical vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8 -name: TS3,4-8 cell stage -namespace: mouse_anatomy_stages -is_a: UBERON:0007234 ! 4-8 cell stage -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000006 ! Theiler stage 03 -intersection_of: UBERON:0007234 ! 4-8 cell stage -intersection_of: exists_during MmusDv:0000006 ! Theiler stage 03 - -[Term] -id: EMAP:80 -name: TS9,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:800 -name: TS14,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:799 ! TS14,future brain -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8000 -name: TS23,testicular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001144 ! testicular vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001144 ! testicular vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8001 -name: TS23,thyroid vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:8002 -name: TS23,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:7962 ! TS23,venous system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8003 -name: TS23,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:8002 ! TS23,umbilical vein -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8004 -name: TS23,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:7437 ! TS23,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8005 -name: TS23,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0000159 ! anal canal -relationship: part_of EMAP:8004 ! TS23,anal region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000159 ! anal canal -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8006 -name: TS23,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8005 ! TS23,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8007 -name: TS23,associated mesenchyme,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8006 ! TS23,caudal part,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8008 -name: TS23,epithelium,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8006 ! TS23,caudal part,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8009 -name: TS23,vascular element,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8006 ! TS23,caudal part,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:801 -name: TS14,floor plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:800 ! TS14,future midbrain -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8010 -name: TS23,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8005 ! TS23,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8011 -name: TS23,associated mesenchyme,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8010 ! TS23,rostral part,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8012 -name: TS23,epithelium,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8010 ! TS23,rostral part,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8013 -name: TS23,vascular element,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8010 ! TS23,rostral part,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8014 -name: TS23,external sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001367 ! external anal sphincter -relationship: part_of EMAP:8004 ! TS23,anal region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001367 ! external anal sphincter -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8015 -name: TS23,internal sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001244 ! internal anal sphincter -relationship: part_of EMAP:8004 ! TS23,anal region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001244 ! internal anal sphincter -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8016 -name: TS23,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:7464 ! TS23,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8017 -name: TS23,skeleton,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8016 ! TS23,pharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:8018 -name: TS23,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001685 ! hyoid bone -relationship: part_of EMAP:8017 ! TS23,skeleton,pharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001685 ! hyoid bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8019 -name: TS23,greater horn,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0003997 ! hyoid bone greater horn -relationship: part_of EMAP:8018 ! TS23,hyoid bone -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003997 ! hyoid bone greater horn -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:802 -name: TS14,lateral wall,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:800 ! TS14,future midbrain -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8020 -name: TS23,lesser horn,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0003998 ! hyoid bone lesser horn -relationship: part_of EMAP:8018 ! TS23,hyoid bone -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003998 ! hyoid bone lesser horn -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8021 -name: TS23,body -namespace: mouse_anatomy_stages -is_a: UBERON:0003999 ! hyoid bone body -relationship: part_of EMAP:8018 ! TS23,hyoid bone -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003999 ! hyoid bone body -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8022 -name: TS23,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003286 ! foregut region of duodenum -relationship: part_of EMAP:7464 ! TS23,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003286 ! foregut region of duodenum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8023 -name: TS23,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8022 ! TS23,duodenum,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:8024 -name: TS23,associated mesenchyme,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8023 ! TS23,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:8025 -name: TS23,epithelium,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8023 ! TS23,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:8026 -name: TS23,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8023 ! TS23,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:8027 -name: TS23,mesoduodenum,mesentery,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:8026 ! TS23,mesentery,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8028 -name: TS23,vascular element,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8023 ! TS23,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:8029 -name: TS23,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7464 ! TS23,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:803 -name: TS14,mesencephalic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:800 ! TS14,future midbrain -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8030 -name: TS23,associated mesenchyme,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8029 ! TS23,gastro-oesophageal junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:8031 -name: TS23,epithelium,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8029 ! TS23,gastro-oesophageal junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:8032 -name: TS23,vascular element,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8029 ! TS23,gastro-oesophageal junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:8033 -name: TS23,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:7464 ! TS23,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8034 -name: TS23,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8033 ! TS23,oesophagus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:8035 -name: TS23,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001976 ! epithelium of esophagus -relationship: part_of EMAP:8033 ! TS23,oesophagus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8036 -name: TS23,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:8033 ! TS23,oesophagus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8037 -name: TS23,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:8036 ! TS23,mesentery,oesophagus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8038 -name: TS23,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8033 ! TS23,oesophagus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:8039 -name: TS23,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8016 ! TS23,pharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:804 -name: TS14,neural crest,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:800 ! TS14,future midbrain -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8040 -name: TS23,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:8016 ! TS23,pharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8041 -name: TS23,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:8016 ! TS23,pharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8042 -name: TS23,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003357 ! epithelium of tongue -relationship: part_of EMAP:8041 ! TS23,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8043 -name: TS23,circumvallate papilla,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0000396 ! vallate papilla -relationship: part_of EMAP:8042 ! TS23,epithelium,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000396 ! vallate papilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8044 -name: TS23,filiform papillae,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0002467 ! filiform papilla -relationship: part_of EMAP:8042 ! TS23,epithelium,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002467 ! filiform papilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8045 -name: TS23,frenulum,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006689 ! frenulum of tongue -relationship: part_of EMAP:8041 ! TS23,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006689 ! frenulum of tongue -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8046 -name: TS23,fungiform papillae,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0002448 ! fungiform papilla -relationship: part_of EMAP:8042 ! TS23,epithelium,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002448 ! fungiform papilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8047 -name: TS23,intermolar eminence,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006360 ! intermolar eminence -relationship: part_of EMAP:8041 ! TS23,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006360 ! intermolar eminence -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8048 -name: TS23,median fibrous septum,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8041 ! TS23,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:8049 -name: TS23,mesenchyme,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003416 ! mesenchyme of tongue -relationship: part_of EMAP:8041 ! TS23,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003416 ! mesenchyme of tongue -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:805 -name: TS14,roof plate,future midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:800 ! TS14,future midbrain -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8050 -name: TS23,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003273 ! skeletal muscle of tongue -relationship: part_of EMAP:8041 ! TS23,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003273 ! skeletal muscle of tongue -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8051 -name: TS23,extrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001575 ! extrinsic muscle of tongue -relationship: part_of EMAP:8050 ! TS23,skeletal muscle,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8052 -name: TS23,genioglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001571 ! genioglossus -relationship: part_of EMAP:8051 ! TS23,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001571 ! genioglossus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8053 -name: TS23,hyoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001572 ! hyoglossus muscle -relationship: part_of EMAP:8051 ! TS23,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8054 -name: TS23,palatoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001574 ! palatoglossus muscle -relationship: part_of EMAP:8051 ! TS23,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001574 ! palatoglossus muscle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8055 -name: TS23,styloglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001573 ! styloglossus -relationship: part_of EMAP:8051 ! TS23,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001573 ! styloglossus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8056 -name: TS23,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001576 ! intrinsic muscle of tongue -relationship: part_of EMAP:8050 ! TS23,skeletal muscle,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8057 -name: TS23,transverse component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8056 ! TS23,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:8058 -name: TS23,vertical component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8056 ! TS23,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:8059 -name: TS23,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8016 ! TS23,pharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:806 -name: TS14,future rhombencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001892 ! rhombomere -relationship: part_of EMAP:799 ! TS14,future brain -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8060 -name: TS23,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:7464 ! TS23,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8061 -name: TS23,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8060 ! TS23,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8062 -name: TS23,vascular element,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8061 ! TS23,fundus,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8063 -name: TS23,associated mesenchyme,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8061 ! TS23,fundus,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8064 -name: TS23,epithelium,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8061 ! TS23,fundus,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8065 -name: TS23,glandular mucous membrane,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8061 ! TS23,fundus,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8066 -name: TS23,glandular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0006924 ! stomach glandular epithelium -relationship: part_of EMAP:8060 ! TS23,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006924 ! stomach glandular epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8067 -name: TS23,vascular element,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8066 ! TS23,glandular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:8068 -name: TS23,associated mesenchyme,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8066 ! TS23,glandular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:8069 -name: TS23,epithelium,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8066 ! TS23,glandular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:807 -name: TS14,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8070 -name: TS23,glandular mucous membrane,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8066 ! TS23,glandular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8071 -name: TS23,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:8060 ! TS23,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8072 -name: TS23,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:8071 ! TS23,mesentery,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8073 -name: TS23,gastro-splenic ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004686 ! gastro-splenic ligament -relationship: part_of EMAP:8072 ! TS23,dorsal mesogastrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8074 -name: TS23,splenic primordium,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0006293 ! spleen primordium -relationship: part_of EMAP:8072 ! TS23,dorsal mesogastrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006293 ! spleen primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8075 -name: TS23,lieno-renal ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004687 ! lieno-renal ligament -relationship: part_of EMAP:8072 ! TS23,dorsal mesogastrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8076 -name: TS23,greater omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0005448 ! greater omentum -relationship: part_of EMAP:8072 ! TS23,dorsal mesogastrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005448 ! greater omentum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8077 -name: TS23,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:8071 ! TS23,mesentery,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8078 -name: TS23,falciform ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0001247 ! falciform ligament -relationship: part_of EMAP:8077 ! TS23,ventral mesogastrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8079 -name: TS23,lesser omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0002399 ! lesser omentum -relationship: part_of EMAP:8077 ! TS23,ventral mesogastrium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:808 -name: TS14,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005499 ! rhombomere 1 -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8080 -name: TS23,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8060 ! TS23,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8081 -name: TS23,associated mesenchyme,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8080 ! TS23,proventricular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8082 -name: TS23,epithelium,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8080 ! TS23,proventricular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8083 -name: TS23,vascular element,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8080 ! TS23,proventricular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8084 -name: TS23,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0001166 ! pylorus -relationship: part_of EMAP:8060 ! TS23,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001166 ! pylorus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8085 -name: TS23,associated mesenchyme,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8084 ! TS23,pyloric region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:8086 -name: TS23,epithelium,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0005637 ! pyloric region epithelium -relationship: part_of EMAP:8084 ! TS23,pyloric region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005637 ! pyloric region epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8087 -name: TS23,pyloric antrum -namespace: mouse_anatomy_stages -is_a: UBERON:0001165 ! pyloric antrum -relationship: part_of EMAP:8084 ! TS23,pyloric region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8088 -name: TS23,vascular element,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8084 ! TS23,pyloric region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:8089 -name: TS23,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:7451 ! TS23,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:809 -name: TS14,floor plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005566 ! rhombomere 1 floor plate -relationship: part_of EMAP:808 ! TS14,rhombomere 01 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8090 -name: TS23,duodenum,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7451 ! TS23,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:8091 -name: TS23,duodenal papilla -namespace: mouse_anatomy_stages -is_a: UBERON:0004914 ! duodenal papilla -relationship: part_of EMAP:8090 ! TS23,duodenum,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004914 ! duodenal papilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8092 -name: TS23,sphincter of Oddi -namespace: mouse_anatomy_stages -is_a: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -relationship: part_of EMAP:8090 ! TS23,duodenum,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8093 -name: TS23,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:7451 ! TS23,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8094 -name: TS23,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:7451 ! TS23,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8095 -name: TS23,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:8094 ! TS23,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8096 -name: TS23,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7451 ! TS23,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:8097 -name: TS23,hindgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001046 ! hindgut -relationship: part_of EMAP:7450 ! TS23,gut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001046 ! hindgut -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8098 -name: TS23,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0006654 ! perineal body -relationship: part_of EMAP:8097 ! TS23,hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006654 ! perineal body -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8099 -name: TS23,associated mesenchyme,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8098 ! TS23,perineal body -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:81 -name: TS9,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:80 ! TS9,embryo -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:810 -name: TS14,lateral wall,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005567 ! rhombomere 1 lateral wall -relationship: part_of EMAP:808 ! TS14,rhombomere 01 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8100 -name: TS23,epithelium,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8098 ! TS23,perineal body -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:8101 -name: TS23,vascular element,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8098 ! TS23,perineal body -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:8102 -name: TS23,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0001052 ! rectum -relationship: part_of EMAP:8097 ! TS23,hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001052 ! rectum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8103 -name: TS23,associated mesenchyme,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8102 ! TS23,rectum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:8104 -name: TS23,epithelium,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003354 ! epithelium of rectum -relationship: part_of EMAP:8102 ! TS23,rectum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003354 ! epithelium of rectum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8105 -name: TS23,mesentery,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003395 ! mesentery of rectum -relationship: part_of EMAP:8102 ! TS23,rectum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003395 ! mesentery of rectum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8106 -name: TS23,dorsal mesentery,mesentery,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8105 ! TS23,mesentery,rectum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003395 ! mesentery of rectum - -[Term] -id: EMAP:8107 -name: TS23,vascular element,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8102 ! TS23,rectum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:8108 -name: TS23,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8097 ! TS23,hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:8109 -name: TS23,associated mesenchyme,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8108 ! TS23,rest of hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:811 -name: TS14,roof plate,rhombomere 01 -namespace: mouse_anatomy_stages -is_a: UBERON:0005568 ! rhombomere 1 roof plate -relationship: part_of EMAP:808 ! TS14,rhombomere 01 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005568 ! rhombomere 1 roof plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8110 -name: TS23,epithelium,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8108 ! TS23,rest of hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:8111 -name: TS23,mesentery,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8108 ! TS23,rest of hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:8112 -name: TS23,dorsal mesentery,mesentery,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8111 ! TS23,mesentery,rest of hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:8113 -name: TS23,vascular element,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8108 ! TS23,rest of hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:8114 -name: TS23,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:7450 ! TS23,gut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8115 -name: TS23,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003287 ! midgut region of duodenum -relationship: part_of EMAP:8114 ! TS23,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003287 ! midgut region of duodenum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8116 -name: TS23,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8115 ! TS23,duodenum,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:8117 -name: TS23,associated mesenchyme,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8116 ! TS23,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:8118 -name: TS23,epithelium,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8116 ! TS23,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:8119 -name: TS23,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:8116 ! TS23,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:812 -name: TS14,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005569 ! rhombomere 2 -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8120 -name: TS23,mesoduodenum,mesentery,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0006359 ! mesoduodenum -relationship: part_of EMAP:8119 ! TS23,mesentery,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8121 -name: TS23,vascular element,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8116 ! TS23,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:8122 -name: TS23,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0002115 ! jejunum -relationship: part_of EMAP:8114 ! TS23,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002115 ! jejunum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8123 -name: TS23,associated mesenchyme,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8122 ! TS23,jejunum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8124 -name: TS23,epithelium,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:8122 ! TS23,jejunum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8125 -name: TS23,vascular element,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8122 ! TS23,jejunum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002115 ! jejunum - -[Term] -id: EMAP:8126 -name: TS23,mesentery,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0003398 ! mesentery of jejunum -relationship: part_of EMAP:8122 ! TS23,jejunum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003398 ! mesentery of jejunum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8127 -name: TS23,dorsal mesentery,mesentery,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:8126 ! TS23,mesentery,jejunum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8128 -name: TS23,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0011698 ! midgut loop -relationship: part_of EMAP:8114 ! TS23,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011698 ! midgut loop -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8129 -name: TS23,associated mesenchyme,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8128 ! TS23,loop,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:813 -name: TS14,floor plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005570 ! rhombomere 2 floor plate -relationship: part_of EMAP:812 ! TS14,rhombomere 02 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8130 -name: TS23,epithelium,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8128 ! TS23,loop,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:8131 -name: TS23,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:8128 ! TS23,loop,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8132 -name: TS23,dorsal mesentery,mesentery,loop,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:8131 ! TS23,mesentery,loop,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8133 -name: TS23,vascular element,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8128 ! TS23,loop,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:8134 -name: TS23,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8114 ! TS23,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:8135 -name: TS23,associated mesenchyme,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8134 ! TS23,rest of midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:8136 -name: TS23,epithelium,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8134 ! TS23,rest of midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:8137 -name: TS23,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003284 ! mesentery of midgut -relationship: part_of EMAP:8134 ! TS23,rest of midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8138 -name: TS23,dorsal mesentery,mesentery,rest of midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0005685 ! midgut dorsal mesentery -relationship: part_of EMAP:8137 ! TS23,mesentery,rest of midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8139 -name: TS23,vascular element,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8134 ! TS23,rest of midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:814 -name: TS14,lateral wall,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005571 ! rhombomere 2 lateral wall -relationship: part_of EMAP:812 ! TS14,rhombomere 02 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8140 -name: TS23,epiglottis -namespace: mouse_anatomy_stages -is_a: UBERON:0000388 ! epiglottis -relationship: part_of EMAP:7438 ! TS23,oral region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000388 ! epiglottis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8141 -name: TS23,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001710 ! lower jaw region -relationship: part_of EMAP:7438 ! TS23,oral region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8142 -name: TS23,epithelium,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8141 ! TS23,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8143 -name: TS23,lip,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001835 ! lower lip -relationship: part_of EMAP:8141 ! TS23,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001835 ! lower lip -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8144 -name: TS23,skeleton,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003278 ! skeleton of lower jaw -relationship: part_of EMAP:8141 ! TS23,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8145 -name: TS23,mandible -namespace: mouse_anatomy_stages -is_a: UBERON:0001684 ! mandible -relationship: part_of EMAP:8144 ! TS23,skeleton,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001684 ! mandible -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8146 -name: TS23,Meckel's cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0003107 ! Meckel's cartilage -relationship: part_of EMAP:8141 ! TS23,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8147 -name: TS23,mesenchyme,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003324 ! mesenchyme of lower jaw -relationship: part_of EMAP:8141 ! TS23,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003324 ! mesenchyme of lower jaw -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8148 -name: TS23,alveolar sulcus,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8141 ! TS23,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001710 ! lower jaw region - -[Term] -id: EMAP:8149 -name: TS23,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003268 ! tooth of lower jaw -relationship: part_of EMAP:8141 ! TS23,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:815 -name: TS14,roof plate,rhombomere 02 -namespace: mouse_anatomy_stages -is_a: UBERON:0005572 ! rhombomere 2 roof plate -relationship: part_of EMAP:812 ! TS14,rhombomere 02 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005572 ! rhombomere 2 roof plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8150 -name: TS23,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003451 ! lower jaw incisor -relationship: part_of EMAP:8149 ! TS23,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8151 -name: TS23,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:8150 ! TS23,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8152 -name: TS23,dental lamina,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:8151 ! TS23,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8153 -name: TS23,enamel organ,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8151 ! TS23,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:8154 -name: TS23,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005708 ! lower jaw incisor odontogenic papilla -relationship: part_of EMAP:8150 ! TS23,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005708 ! lower jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8155 -name: TS23,dental papilla,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8154 ! TS23,mesenchyme,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005708 ! lower jaw incisor odontogenic papilla - -[Term] -id: EMAP:8156 -name: TS23,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003667 ! lower jaw molar -relationship: part_of EMAP:8149 ! TS23,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8157 -name: TS23,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:8156 ! TS23,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8158 -name: TS23,dental lamina,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:8157 ! TS23,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8159 -name: TS23,enamel organ,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8157 ! TS23,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003236 ! epithelium of lower jaw - -[Term] -id: EMAP:816 -name: TS14,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005507 ! rhombomere 3 -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8160 -name: TS23,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005701 ! lower jaw molar odontogenic papilla -relationship: part_of EMAP:8156 ! TS23,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005701 ! lower jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8161 -name: TS23,dental papilla,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8160 ! TS23,mesenchyme,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005701 ! lower jaw molar odontogenic papilla - -[Term] -id: EMAP:8162 -name: TS23,oral cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000167 ! oral cavity -relationship: part_of EMAP:7438 ! TS23,oral region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8163 -name: TS23,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:7438 ! TS23,oral region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8164 -name: TS23,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001709 ! upper jaw region -relationship: part_of EMAP:7438 ! TS23,oral region,alimentary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8165 -name: TS23,lip,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001834 ! upper lip -relationship: part_of EMAP:8164 ! TS23,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001834 ! upper lip -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8166 -name: TS23,philtrum -namespace: mouse_anatomy_stages -is_a: UBERON:0005402 ! philtrum -relationship: part_of EMAP:8165 ! TS23,lip,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005402 ! philtrum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8167 -name: TS23,skeleton,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003277 ! skeleton of upper jaw -relationship: part_of EMAP:8164 ! TS23,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8168 -name: TS23,maxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002397 ! maxilla -relationship: part_of EMAP:8167 ! TS23,skeleton,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002397 ! maxilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8169 -name: TS23,mesenchyme,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003323 ! mesenchyme of upper jaw -relationship: part_of EMAP:8164 ! TS23,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003323 ! mesenchyme of upper jaw -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:817 -name: TS14,floor plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005573 ! rhombomere 3 floor plate -relationship: part_of EMAP:816 ! TS14,rhombomere 03 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8170 -name: TS23,alveolar sulcus,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8164 ! TS23,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001709 ! upper jaw region - -[Term] -id: EMAP:8171 -name: TS23,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005619 ! secondary palatal shelf -relationship: part_of EMAP:8164 ! TS23,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8172 -name: TS23,epithelium,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005658 ! secondary palatal shelf epithelium -relationship: part_of EMAP:8171 ! TS23,palatal shelf -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005658 ! secondary palatal shelf epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8173 -name: TS23,mesenchyme,palatal shelf -namespace: mouse_anatomy_stages -is_a: UBERON:0005704 ! secondary palatal shelf mesenchyme -relationship: part_of EMAP:8171 ! TS23,palatal shelf -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005704 ! secondary palatal shelf mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8174 -name: TS23,premaxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002244 ! premaxilla -relationship: part_of EMAP:8164 ! TS23,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8175 -name: TS23,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005620 ! primary palate -relationship: part_of EMAP:8174 ! TS23,premaxilla -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005620 ! primary palate -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8176 -name: TS23,epithelium,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005659 ! primary palate epithelium -relationship: part_of EMAP:8175 ! TS23,primary palate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005659 ! primary palate epithelium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8177 -name: TS23,mesenchyme,primary palate -namespace: mouse_anatomy_stages -is_a: UBERON:0005705 ! primary palate mesenchyme -relationship: part_of EMAP:8175 ! TS23,primary palate -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005705 ! primary palate mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8178 -name: TS23,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003267 ! tooth of upper jaw -relationship: part_of EMAP:8164 ! TS23,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003267 ! tooth of upper jaw -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8179 -name: TS23,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003450 ! upper jaw incisor -relationship: part_of EMAP:8178 ! TS23,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:818 -name: TS14,lateral wall,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005574 ! rhombomere 3 lateral wall -relationship: part_of EMAP:816 ! TS14,rhombomere 03 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8180 -name: TS23,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:8179 ! TS23,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8181 -name: TS23,dental lamina,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:8180 ! TS23,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8182 -name: TS23,enamel organ,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8180 ! TS23,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:8183 -name: TS23,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005707 ! upper jaw incisor odontogenic papilla -relationship: part_of EMAP:8179 ! TS23,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005707 ! upper jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8184 -name: TS23,dental papilla,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8183 ! TS23,mesenchyme,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005707 ! upper jaw incisor odontogenic papilla - -[Term] -id: EMAP:8185 -name: TS23,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003666 ! upper jaw molar -relationship: part_of EMAP:8178 ! TS23,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8186 -name: TS23,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:8185 ! TS23,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8187 -name: TS23,dental lamina,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:8186 ! TS23,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8188 -name: TS23,enamel organ,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8186 ! TS23,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003235 ! epithelium of upper jaw - -[Term] -id: EMAP:8189 -name: TS23,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005700 ! upper jaw molar odontogenic papilla -relationship: part_of EMAP:8185 ! TS23,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005700 ! upper jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:819 -name: TS14,roof plate,rhombomere 03 -namespace: mouse_anatomy_stages -is_a: UBERON:0005575 ! rhombomere 3 roof plate -relationship: part_of EMAP:816 ! TS14,rhombomere 03 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8190 -name: TS23,dental papilla,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8189 ! TS23,mesenchyme,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005700 ! upper jaw molar odontogenic papilla - -[Term] -id: EMAP:8191 -name: TS23,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:7436 ! TS23,visceral organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8192 -name: TS23,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:8191 ! TS23,liver and biliary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8193 -name: TS23,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:8191 ! TS23,liver and biliary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8194 -name: TS23,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:8191 ! TS23,liver and biliary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8195 -name: TS23,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:8191 ! TS23,liver and biliary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8196 -name: TS23,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:8195 ! TS23,hepatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8197 -name: TS23,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:8195 ! TS23,hepatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8198 -name: TS23,left,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:8197 ! TS23,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8199 -name: TS23,right,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:8197 ! TS23,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:82 -name: TS9,embryonic component of the proamniotic cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:81 ! TS9,cavities and their linings -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -relationship: part_of UBERON:0004458 ! body cavity or lining - -[Term] -id: EMAP:820 -name: TS14,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005511 ! rhombomere 4 -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8200 -name: TS23,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:8191 ! TS23,liver and biliary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8201 -name: TS23,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001113 ! lobe of liver -relationship: part_of EMAP:8200 ! TS23,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001113 ! lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8202 -name: TS23,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001115 ! left lobe of liver -relationship: part_of EMAP:8201 ! TS23,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8203 -name: TS23,bare area,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:8202 ! TS23,left,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8204 -name: TS23,hepatic ducts,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:8202 ! TS23,left,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8205 -name: TS23,hepatic sinusoids,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -relationship: part_of EMAP:8202 ! TS23,left,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8206 -name: TS23,parenchyma,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005222 ! liver left lobe parenchyma -relationship: part_of EMAP:8202 ! TS23,left,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005222 ! liver left lobe parenchyma -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8207 -name: TS23,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001114 ! right lobe of liver -relationship: part_of EMAP:8201 ! TS23,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8208 -name: TS23,bare area,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:8207 ! TS23,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8209 -name: TS23,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001117 ! caudate lobe of liver -relationship: part_of EMAP:8207 ! TS23,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:821 -name: TS14,floor plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005576 ! rhombomere 4 floor plate -relationship: part_of EMAP:820 ! TS14,rhombomere 04 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8210 -name: TS23,hepatic sinusoids,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011737 ! caudate lobe hepatic sinusoids -relationship: part_of EMAP:8209 ! TS23,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011737 ! caudate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8211 -name: TS23,parenchyma,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010706 ! parenchyma of caudate lobe of liver -relationship: part_of EMAP:8209 ! TS23,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010706 ! parenchyma of caudate lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8212 -name: TS23,hepatic sinusoids,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -relationship: part_of EMAP:8207 ! TS23,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8213 -name: TS23,parenchyma,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005221 ! liver right lobe parenchyma -relationship: part_of EMAP:8207 ! TS23,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005221 ! liver right lobe parenchyma -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8214 -name: TS23,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001116 ! quadrate lobe of liver -relationship: part_of EMAP:8207 ! TS23,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8215 -name: TS23,hepatic sinusoids,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011738 ! quadrate lobe hepatic sinusoids -relationship: part_of EMAP:8214 ! TS23,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011738 ! quadrate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8216 -name: TS23,parenchyma,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010704 ! parenchyma of quadrate lobe of liver -relationship: part_of EMAP:8214 ! TS23,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010704 ! parenchyma of quadrate lobe of liver -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8217 -name: TS23,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001008 ! excretory system -relationship: part_of EMAP:7436 ! TS23,visceral organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001008 ! excretory system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8218 -name: TS23,associated mesenchyme,renal/urinary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8217 ! TS23,renal/urinary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8219 -name: TS23,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0001255 ! urinary bladder -relationship: part_of EMAP:8217 ! TS23,renal/urinary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:822 -name: TS14,lateral wall,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005577 ! rhombomere 4 lateral wall -relationship: part_of EMAP:820 ! TS14,rhombomere 04 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8220 -name: TS23,fundus region,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0006082 ! fundus of urinary bladder -relationship: part_of EMAP:8219 ! TS23,bladder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8221 -name: TS23,wall,bladder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8219 ! TS23,bladder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8222 -name: TS23,detrusor muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8221 ! TS23,wall,bladder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8223 -name: TS23,urachus -namespace: mouse_anatomy_stages -is_a: UBERON:0002068 ! urachus -relationship: part_of EMAP:8219 ! TS23,bladder -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002068 ! urachus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8224 -name: TS23,mesentery,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0003393 ! mesentery of urinary system -relationship: part_of EMAP:8217 ! TS23,renal/urinary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8225 -name: TS23,urogenital mesentery -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8224 ! TS23,mesentery,renal/urinary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003393 ! mesentery of urinary system - -[Term] -id: EMAP:8226 -name: TS23,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:8217 ! TS23,renal/urinary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8227 -name: TS23,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8226 ! TS23,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8228 -name: TS23,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8226 ! TS23,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8229 -name: TS23,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0006517 ! kidney calyx -relationship: part_of EMAP:8228 ! TS23,drainage component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006517 ! kidney calyx -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:823 -name: TS14,roof plate,rhombomere 04 -namespace: mouse_anatomy_stages -is_a: UBERON:0005578 ! rhombomere 4 roof plate -relationship: part_of EMAP:820 ! TS14,rhombomere 04 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8230 -name: TS23,major,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001226 ! major calyx -relationship: part_of EMAP:8229 ! TS23,calyces,drainage component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001226 ! major calyx -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8231 -name: TS23,minor,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001227 ! minor calyx -relationship: part_of EMAP:8229 ! TS23,calyces,drainage component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001227 ! minor calyx -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8232 -name: TS23,pelvis,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001224 ! renal pelvis -relationship: part_of EMAP:8228 ! TS23,drainage component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8233 -name: TS23,collecting ducts,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8228 ! TS23,drainage component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8234 -name: TS23,ureter -namespace: mouse_anatomy_stages -is_a: UBERON:0000056 ! ureter -relationship: part_of EMAP:8228 ! TS23,drainage component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000056 ! ureter -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8235 -name: TS23,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8226 ! TS23,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8236 -name: TS23,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001225 ! cortex of kidney -relationship: part_of EMAP:8235 ! TS23,excretory component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8237 -name: TS23,capsule,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0002015 ! kidney capsule -relationship: part_of EMAP:8236 ! TS23,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002015 ! kidney capsule -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8238 -name: TS23,glomeruli,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8236 ! TS23,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8239 -name: TS23,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8236 ! TS23,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000081 ! metanephros - -[Term] -id: EMAP:824 -name: TS14,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005515 ! rhombomere 5 -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8240 -name: TS23,stem cells,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8236 ! TS23,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8241 -name: TS23,medullary stroma,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0005211 ! renal medulla interstitium -relationship: part_of EMAP:8235 ! TS23,excretory component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005211 ! renal medulla interstitium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8242 -name: TS23,medullary tubules,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8235 ! TS23,excretory component,metanephros -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8243 -name: TS23,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:8217 ! TS23,renal/urinary system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8244 -name: TS23,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000990 ! reproductive system -relationship: part_of EMAP:7436 ! TS23,visceral organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8245 -name: TS23,female,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000474 ! female reproductive system -relationship: part_of EMAP:8244 ! TS23,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8246 -name: TS23,Mullerian tubercle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8245 ! TS23,female,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000474 ! female reproductive system - -[Term] -id: EMAP:8247 -name: TS23,clitoris -namespace: mouse_anatomy_stages -is_a: UBERON:0006233 ! female genital tubercle -relationship: part_of EMAP:8245 ! TS23,female,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006233 ! female genital tubercle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8248 -name: TS23,genital tubercle,female,reproductive system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8245 ! TS23,female,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8249 -name: TS23,labial swelling -namespace: mouse_anatomy_stages -is_a: UBERON:0011755 ! female labial swelling -relationship: part_of EMAP:8245 ! TS23,female,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011755 ! female labial swelling -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:825 -name: TS14,floor plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005579 ! rhombomere 5 floor plate -relationship: part_of EMAP:824 ! TS14,rhombomere 05 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8250 -name: TS23,mesovarium -namespace: mouse_anatomy_stages -is_a: UBERON:0001342 ! mesovarium -relationship: part_of EMAP:8245 ! TS23,female,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8251 -name: TS23,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0000992 ! female gonad -relationship: part_of EMAP:8245 ! TS23,female,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000992 ! female gonad -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8252 -name: TS23,germinal epithelium,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8251 ! TS23,ovary -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:8253 -name: TS23,mesenchyme,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8251 ! TS23,ovary -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8254 -name: TS23,primordial germ cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8251 ! TS23,ovary -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:8255 -name: TS23,rete ovarii -namespace: mouse_anatomy_stages -is_a: UBERON:0010185 ! rete ovarii -relationship: part_of EMAP:8251 ! TS23,ovary -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010185 ! rete ovarii -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8256 -name: TS23,paramesonephric duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8245 ! TS23,female,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8257 -name: TS23,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000079 ! male reproductive system -relationship: part_of EMAP:8244 ! TS23,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8258 -name: TS23,ductus deferens -namespace: mouse_anatomy_stages -is_a: UBERON:0001000 ! vas deferens -relationship: part_of EMAP:8257 ! TS23,male,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001000 ! vas deferens -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8259 -name: TS23,genital tubercle,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0006261 ! male genital tubercle -relationship: part_of EMAP:8257 ! TS23,male,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006261 ! male genital tubercle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:826 -name: TS14,lateral wall,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005580 ! rhombomere 5 lateral wall -relationship: part_of EMAP:824 ! TS14,rhombomere 05 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8260 -name: TS23,mesorchium -namespace: mouse_anatomy_stages -is_a: UBERON:0011879 ! mesorchium -relationship: part_of EMAP:8257 ! TS23,male,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8261 -name: TS23,penis -namespace: mouse_anatomy_stages -is_a: UBERON:0000989 ! penis -relationship: part_of EMAP:8257 ! TS23,male,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000989 ! penis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8262 -name: TS23,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0000473 ! testis -relationship: part_of EMAP:8257 ! TS23,male,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000473 ! testis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8263 -name: TS23,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8262 ! TS23,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8264 -name: TS23,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8263 ! TS23,medullary region,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8265 -name: TS23,primitive seminiferous tubules,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0001343 ! seminiferous tubule of testis -relationship: part_of EMAP:8264 ! TS23,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8266 -name: TS23,primordial germ cells,primitive seminiferous tubules,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8265 ! TS23,primitive seminiferous tubules,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: EMAP:8267 -name: TS23,intestitial tissue,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005212 ! testis interstitial tissue -relationship: part_of EMAP:8264 ! TS23,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005212 ! testis interstitial tissue -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8268 -name: TS23,hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8263 ! TS23,medullary region,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8269 -name: TS23,rete testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8268 ! TS23,hilar region,medullary region,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:827 -name: TS14,roof plate,rhombomere 05 -namespace: mouse_anatomy_stages -is_a: UBERON:0005581 ! rhombomere 5 roof plate -relationship: part_of EMAP:824 ! TS14,rhombomere 05 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8270 -name: TS23,cortical region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8262 ! TS23,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8271 -name: TS23,mediastinum testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005051 ! mediastinum testis -relationship: part_of EMAP:8262 ! TS23,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005051 ! mediastinum testis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8273 -name: TS23,mesenchyme,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8262 ! TS23,testis -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8274 -name: TS23,urethra -namespace: mouse_anatomy_stages -is_a: UBERON:0001333 ! male urethra -relationship: part_of EMAP:8257 ! TS23,male,reproductive system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001333 ! male urethra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8275 -name: TS23,urethral groove -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8274 ! TS23,urethra -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:8276 -name: TS23,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:7436 ! TS23,visceral organ -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8277 -name: TS23,cartilage,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0003406 ! cartilage of respiratory system -relationship: part_of EMAP:8276 ! TS23,respiratory system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003406 ! cartilage of respiratory system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8278 -name: TS23,arytenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001740 ! arytenoid cartilage -relationship: part_of EMAP:8277 ! TS23,cartilage,respiratory system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8279 -name: TS23,cricoid -namespace: mouse_anatomy_stages -is_a: UBERON:0002375 ! cricoid cartilage -relationship: part_of EMAP:8277 ! TS23,cartilage,respiratory system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:828 -name: TS14,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005519 ! rhombomere 6 -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8280 -name: TS23,laryngeal -namespace: mouse_anatomy_stages -is_a: UBERON:0001739 ! laryngeal cartilage -relationship: part_of EMAP:8277 ! TS23,cartilage,respiratory system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001739 ! laryngeal cartilage -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8281 -name: TS23,thyroid,cartilage,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001738 ! thyroid cartilage -relationship: part_of EMAP:8277 ! TS23,cartilage,respiratory system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001738 ! thyroid cartilage -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8283 -name: TS23,larynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001737 ! larynx -relationship: part_of EMAP:8276 ! TS23,respiratory system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001737 ! larynx -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8284 -name: TS23,mucous membranes -namespace: mouse_anatomy_stages -is_a: UBERON:0001824 ! mucosa of larynx -relationship: part_of EMAP:8283 ! TS23,larynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8285 -name: TS23,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:8276 ! TS23,respiratory system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8286 -name: TS23,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002168 ! left lung -relationship: part_of EMAP:8285 ! TS23,lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002168 ! left lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8287 -name: TS23,associated mesenchyme,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:8286 ! TS23,left lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8288 -name: TS23,epithelium,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003365 ! epithelium of left lung -relationship: part_of EMAP:8286 ! TS23,left lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8289 -name: TS23,hilus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004887 ! left lung hilus -relationship: part_of EMAP:8286 ! TS23,left lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:829 -name: TS14,floor plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005582 ! rhombomere 6 floor plate -relationship: part_of EMAP:828 ! TS14,rhombomere 06 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8290 -name: TS23,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003405 ! lobar bronchus of left lung -relationship: part_of EMAP:8286 ! TS23,left lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8291 -name: TS23,associated mesenchyme,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8290 ! TS23,lobar bronchus,left lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:8292 -name: TS23,epithelium,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:8290 ! TS23,lobar bronchus,left lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8293 -name: TS23,vascular element,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8290 ! TS23,lobar bronchus,left lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:8294 -name: TS23,vascular element,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009536 ! vascular element of left lung -relationship: part_of EMAP:8286 ! TS23,left lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8295 -name: TS23,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002167 ! right lung -relationship: part_of EMAP:8285 ! TS23,lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002167 ! right lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8296 -name: TS23,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004890 ! right lung accessory lobe -relationship: part_of EMAP:8295 ! TS23,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8297 -name: TS23,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004896 ! right lung accessory lobe lobar bronchus -relationship: part_of EMAP:8296 ! TS23,accessory lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004896 ! right lung accessory lobe lobar bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8298 -name: TS23,associated mesenchyme,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8297 ! TS23,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:8299 -name: TS23,epithelium,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:8297 ! TS23,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:83 -name: TS9,ectoderm,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000924 ! ectoderm -relationship: part_of EMAP:80 ! TS9,embryo -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:830 -name: TS14,lateral wall,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005583 ! rhombomere 6 lateral wall -relationship: part_of EMAP:828 ! TS14,rhombomere 06 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8300 -name: TS23,vascular element,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8297 ! TS23,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:8301 -name: TS23,associated mesenchyme,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009603 ! right lung associated mesenchyme -relationship: part_of EMAP:8295 ! TS23,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8302 -name: TS23,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002171 ! lower lobe of right lung -relationship: part_of EMAP:8295 ! TS23,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8303 -name: TS23,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -relationship: part_of EMAP:8302 ! TS23,caudal lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8304 -name: TS23,associated mesenchyme,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8303 ! TS23,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:8305 -name: TS23,epithelium,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:8303 ! TS23,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8306 -name: TS23,vascular element,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8303 ! TS23,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:8307 -name: TS23,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002170 ! upper lobe of right lung -relationship: part_of EMAP:8295 ! TS23,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8308 -name: TS23,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -relationship: part_of EMAP:8307 ! TS23,cranial lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8309 -name: TS23,associated mesenchyme,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8308 ! TS23,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:831 -name: TS14,roof plate,rhombomere 06 -namespace: mouse_anatomy_stages -is_a: UBERON:0005584 ! rhombomere 6 roof plate -relationship: part_of EMAP:828 ! TS14,rhombomere 06 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8310 -name: TS23,epithelium,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:8308 ! TS23,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8311 -name: TS23,vascular element,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8308 ! TS23,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:8312 -name: TS23,epithelium,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003364 ! epithelium of right lung -relationship: part_of EMAP:8295 ! TS23,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8313 -name: TS23,hilus,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004888 ! right lung hilus -relationship: part_of EMAP:8295 ! TS23,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8314 -name: TS23,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002174 ! middle lobe of right lung -relationship: part_of EMAP:8295 ! TS23,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8315 -name: TS23,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002183 ! lobar bronchus -relationship: part_of EMAP:8314 ! TS23,middle lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8316 -name: TS23,associated mesenchyme,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8315 ! TS23,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:8317 -name: TS23,epithelium,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002339 ! epithelium of lobar bronchus -relationship: part_of EMAP:8315 ! TS23,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8318 -name: TS23,vascular element,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8315 ! TS23,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:8319 -name: TS23,vascular element,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009537 ! vascular element of right lung -relationship: part_of EMAP:8295 ! TS23,right lung -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:832 -name: TS14,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005523 ! rhombomere 7 -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8320 -name: TS23,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:8276 ! TS23,respiratory system -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8321 -name: TS23,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:8320 ! TS23,respiratory tract -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8322 -name: TS23,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:8321 ! TS23,lower,respiratory tract -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8323 -name: TS23,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:8322 ! TS23,main bronchus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8324 -name: TS23,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:8322 ! TS23,main bronchus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8325 -name: TS23,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8322 ! TS23,main bronchus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:8326 -name: TS23,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:8321 ! TS23,lower,respiratory tract -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8327 -name: TS23,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:8326 ! TS23,trachea -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8328 -name: TS23,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:8326 ! TS23,trachea -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8329 -name: TS23,cartilaginous ring,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003604 ! trachea cartilage -relationship: part_of EMAP:8326 ! TS23,trachea -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003604 ! trachea cartilage -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:833 -name: TS14,floor plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005585 ! rhombomere 7 floor plate -relationship: part_of EMAP:832 ! TS14,rhombomere 07 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8330 -name: TS23,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8326 ! TS23,trachea -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:8331 -name: TS23,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:8326 ! TS23,trachea -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8332 -name: TS23,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8331 ! TS23,carina tracheae -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:8333 -name: TS23,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:8331 ! TS23,carina tracheae -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8334 -name: TS23,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8331 ! TS23,carina tracheae -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:8335 -name: TS23,upper,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001557 ! upper respiratory tract -relationship: part_of EMAP:8320 ! TS23,respiratory tract -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8336 -name: TS23,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001728 ! nasopharynx -relationship: part_of EMAP:8335 ! TS23,upper,respiratory tract -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8337 -name: TS23,associated mesenchyme,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8336 ! TS23,nasopharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:8338 -name: TS23,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:7148 ! TS23,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8339 -name: TS23,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:8338 ! TS23,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:834 -name: TS14,lateral wall,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005586 ! rhombomere 7 lateral wall -relationship: part_of EMAP:832 ! TS14,rhombomere 07 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8340 -name: TS23,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:8339 ! TS23,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8341 -name: TS23,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002413 ! cervical vertebra -relationship: part_of EMAP:8340 ! TS23,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8342 -name: TS23,C1,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8341 ! TS23,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:8343 -name: TS23,C2,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8341 ! TS23,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:8346 -name: TS23,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:8339 ! TS23,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8347 -name: TS23,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002414 ! lumbar vertebra -relationship: part_of EMAP:8346 ! TS23,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002414 ! lumbar vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8348 -name: TS23,nucleus pulposus,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8339 ! TS23,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:8349 -name: TS23,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:8339 ! TS23,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:835 -name: TS14,roof plate,rhombomere 07 -namespace: mouse_anatomy_stages -is_a: UBERON:0005587 ! rhombomere 7 roof plate -relationship: part_of EMAP:832 ! TS14,rhombomere 07 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8350 -name: TS23,vertebral cartilage condensation,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0010745 ! sacral vertebra cartilage condensation -relationship: part_of EMAP:8349 ! TS23,sacral region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0010745 ! sacral vertebra cartilage condensation -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8351 -name: TS23,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:8339 ! TS23,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8356 -name: TS23,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002347 ! thoracic vertebra -relationship: part_of EMAP:8351 ! TS23,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002347 ! thoracic vertebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8357 -name: TS23,cranium -namespace: mouse_anatomy_stages -is_a: UBERON:0003129 ! skull -relationship: part_of EMAP:8338 ! TS23,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003129 ! skull -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8358 -name: TS23,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0002241 ! chondrocranium -relationship: part_of EMAP:8357 ! TS23,cranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8359 -name: TS23,basioccipital bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001692 ! basioccipital bone -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:836 -name: TS14,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005527 ! rhombomere 8 -relationship: part_of EMAP:806 ! TS14,future rhombencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8360 -name: TS23,basisphenoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0006428 ! basisphenoid bone -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8361 -name: TS23,carotid canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006668 ! carotid canal -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006668 ! carotid canal -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8362 -name: TS23,exoccipital bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001693 ! exoccipital bone -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8365 -name: TS23,foramen ovale,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001698 ! foramen ovale of skull -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001698 ! foramen ovale of skull -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8366 -name: TS23,foramen rotundum -namespace: mouse_anatomy_stages -is_a: UBERON:0005446 ! foramen rotundum -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005446 ! foramen rotundum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8367 -name: TS23,jugular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0005456 ! jugular foramen -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005456 ! jugular foramen -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8368 -name: TS23,sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001677 ! sphenoid bone -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001677 ! sphenoid bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8369 -name: TS23,supraoccipital cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0011162 ! supraoccipital cartilaginous condensation -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011162 ! supraoccipital cartilaginous condensation -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:837 -name: TS14,floor plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005588 ! rhombomere 8 floor plate -relationship: part_of EMAP:836 ! TS14,rhombomere 08 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8370 -name: TS23,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:8358 ! TS23,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8371 -name: TS23,petrous part,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001694 ! petrous part of temporal bone -relationship: part_of EMAP:8370 ! TS23,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8372 -name: TS23,temporo-mandibular joint primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0011130 ! temporomandibular joint primordium -relationship: part_of EMAP:8371 ! TS23,petrous part,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011130 ! temporomandibular joint primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8373 -name: TS23,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0004339 ! vault of skull -relationship: part_of EMAP:8357 ! TS23,cranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8374 -name: TS23,frontal bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006236 ! frontal bone primordium -relationship: part_of EMAP:8373 ! TS23,vault of skull -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006236 ! frontal bone primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8375 -name: TS23,inter-parietal bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006251 ! interparietal bone primordium -relationship: part_of EMAP:8373 ! TS23,vault of skull -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006251 ! interparietal bone primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8376 -name: TS23,parietal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0000210 ! tetrapod parietal bone -relationship: part_of EMAP:8373 ! TS23,vault of skull -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000210 ! tetrapod parietal bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8377 -name: TS23,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:8373 ! TS23,vault of skull -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8378 -name: TS23,squamous part,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001695 ! squamous part of temporal bone -relationship: part_of EMAP:8377 ! TS23,temporal bone,vault of skull -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8379 -name: TS23,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0011156 ! facial skeleton -relationship: part_of EMAP:8357 ! TS23,cranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:838 -name: TS14,lateral wall,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005589 ! rhombomere 8 lateral wall -relationship: part_of EMAP:836 ! TS14,rhombomere 08 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8380 -name: TS23,ethmoid bone primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0006227 ! ethmoid bone primordium -relationship: part_of EMAP:8379 ! TS23,viscerocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006227 ! ethmoid bone primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8381 -name: TS23,facial bones primordia -namespace: mouse_anatomy_stages -is_a: UBERON:0006231 ! facial bone primordium -relationship: part_of EMAP:8379 ! TS23,viscerocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006231 ! facial bone primordium -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8382 -name: TS23,optic foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006269 ! optic foramen -relationship: part_of EMAP:8379 ! TS23,viscerocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006269 ! optic foramen -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8383 -name: TS23,orbital fissure,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0006271 ! orbital fissure -relationship: part_of EMAP:8379 ! TS23,viscerocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006271 ! orbital fissure -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8384 -name: TS23,superior,orbital fissure,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0005480 ! superior orbital fissure -relationship: part_of EMAP:8383 ! TS23,orbital fissure,viscerocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0005480 ! superior orbital fissure -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8385 -name: TS23,orbito-sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0002478 ! orbitosphenoid -relationship: part_of EMAP:8379 ! TS23,viscerocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8386 -name: TS23,turbinate,viscerocranium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8379 ! TS23,viscerocranium -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8387 -name: TS23,pectoral girdle and thoracic body wall,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007831 ! skeleton of pectoral girdle -relationship: part_of EMAP:8338 ! TS23,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007831 ! skeleton of pectoral girdle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8388 -name: TS23,clavicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001105 ! clavicle -relationship: part_of EMAP:8387 ! TS23,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001105 ! clavicle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8389 -name: TS23,scapula -namespace: mouse_anatomy_stages -is_a: UBERON:0001124 ! pectoral limb scapula -relationship: part_of EMAP:8387 ! TS23,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001124 ! pectoral limb scapula -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:839 -name: TS14,roof plate,rhombomere 08 -namespace: mouse_anatomy_stages -is_a: UBERON:0005590 ! rhombomere 8 roof plate -relationship: part_of EMAP:836 ! TS14,rhombomere 08 -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8390 -name: TS23,sternum -namespace: mouse_anatomy_stages -is_a: UBERON:0000975 ! sternum -relationship: part_of EMAP:8387 ! TS23,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000975 ! sternum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8391 -name: TS23,manubrium sterni -namespace: mouse_anatomy_stages -is_a: UBERON:0002205 ! manubrium of sternum -relationship: part_of EMAP:8390 ! TS23,sternum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002205 ! manubrium of sternum -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8392 -name: TS23,sternebral bone -namespace: mouse_anatomy_stages -is_a: UBERON:0002208 ! sternebra -relationship: part_of EMAP:8390 ! TS23,sternum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002208 ! sternebra -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8393 -name: TS23,xiphisternum -namespace: mouse_anatomy_stages -is_a: UBERON:0006430 ! xiphoid cartilage -relationship: part_of EMAP:8390 ! TS23,sternum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0006430 ! xiphoid cartilage -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8394 -name: TS23,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007832 ! skeleton of pelvic girdle -relationship: part_of EMAP:8338 ! TS23,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007832 ! skeleton of pelvic girdle -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8395 -name: TS23,acetabular region,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8394 ! TS23,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:8396 -name: TS23,iliac bone -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8394 ! TS23,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:8397 -name: TS23,ischial bone -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8394 ! TS23,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:8398 -name: TS23,pubic bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001275 ! pubis -relationship: part_of EMAP:8394 ! TS23,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001275 ! pubis -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8399 -name: TS23,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:7148 ! TS23,embryo -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:84 -name: TS9,endoderm,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:80 ! TS9,embryo -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:840 -name: TS14,prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:799 ! TS14,future brain -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8400 -name: TS23,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8399 ! TS23,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:8401 -name: TS23,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:8400 ! TS23,mesenchyme,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8402 -name: TS23,unsegmented mesenchyme -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8401 ! TS23,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:8403 -name: TS23,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8399 ! TS23,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:8404 -name: TS23,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:8403 ! TS23,nervous system,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8405 -name: TS23,spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:8404 ! TS23,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8406 -name: TS23,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:8403 ! TS23,nervous system,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8407 -name: TS23,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003338 ! ganglion of peripheral nervous system -relationship: part_of EMAP:8406 ! TS23,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0003338 ! ganglion of peripheral nervous system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8408 -name: TS23,dorsal root ganglion,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:8407 ! TS23,ganglion,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8409 -name: TS23,segmental spinal nerve -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8406 ! TS23,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:841 -name: TS14,floor plate,prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:840 ! TS14,prosencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8410 -name: TS23,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8399 ! TS23,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:8411 -name: TS23,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:8410 ! TS23,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8412 -name: TS23,vertebral cartilage condensation,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8411 ! TS23,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:8413 -name: TS23,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8414 -name: TS23,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:8413 ! TS23,extraembryonic component -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8415 -name: TS23,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:8414 ! TS23,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8416 -name: TS23,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:8415 ! TS23,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8417 -name: TS23,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8416 ! TS23,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:8418 -name: TS23,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8414 ! TS23,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:8419 -name: TS23,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:8418 ! TS23,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:842 -name: TS14,future diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0006222 ! future diencephalon -relationship: part_of EMAP:840 ! TS14,prosencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006222 ! future diencephalon -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8420 -name: TS23,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8419 ! TS23,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:8421 -name: TS23,lumen,caudal part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8006 ! TS23,caudal part,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8422 -name: TS23,lumen,rostral part,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8010 ! TS23,rostral part,anal canal -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:8423 -name: TS23,lumen,rostral part,duodenum,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8023 ! TS23,rostral part,duodenum,foregut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003286 ! foregut region of duodenum - -[Term] -id: EMAP:8424 -name: TS23,lumen,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8029 ! TS23,gastro-oesophageal junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:8425 -name: TS23,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8033 ! TS23,oesophagus -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:8426 -name: TS23,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:8016 ! TS23,pharynx -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000032 ! Theiler stage 23 - -[Term] -id: EMAP:8427 -name: TS23,lumen,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8061 ! TS23,fundus,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:8428 -name: TS23,lumen,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8066 ! TS23,glandular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006924 ! stomach glandular epithelium - -[Term] -id: EMAP:8429 -name: TS23,lumen,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8080 ! TS23,proventricular region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:843 -name: TS14,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0013147 ! early mesencephalic vesicle -relationship: part_of EMAP:842 ! TS14,future diencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0013147 ! early mesencephalic vesicle -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8430 -name: TS23,lumen,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8084 ! TS23,pyloric region,stomach -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:8431 -name: TS23,lumen,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:7451 ! TS23,foregut-midgut junction -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:8432 -name: TS23,lumen,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8098 ! TS23,perineal body -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:8433 -name: TS23,lumen,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8102 ! TS23,rectum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:8434 -name: TS23,lumen,rest of hindgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8108 ! TS23,rest of hindgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001046 ! hindgut - -[Term] -id: EMAP:8435 -name: TS23,lumen,caudal part,duodenum,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8116 ! TS23,caudal part,duodenum,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0003287 ! midgut region of duodenum - -[Term] -id: EMAP:8436 -name: TS23,lumen,loop,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8128 ! TS23,loop,midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0011698 ! midgut loop - -[Term] -id: EMAP:8437 -name: TS23,lumen,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8122 ! TS23,jejunum -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0002115 ! jejunum - -[Term] -id: EMAP:8438 -name: TS23,lumen,rest of midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8134 ! TS23,rest of midgut -relationship: exists_during MmusDv:0000032 ! Theiler stage 23 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:8439 -name: TS24,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:844 -name: TS14,floor plate,future diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:842 ! TS14,future diencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006222 ! future diencephalon - -[Term] -id: EMAP:8440 -name: TS24,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:8439 ! TS24,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8441 -name: TS24,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:8440 ! TS24,organ system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8442 -name: TS24,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000990 ! reproductive system -relationship: part_of EMAP:8441 ! TS24,visceral organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8443 -name: TS24,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000079 ! male reproductive system -relationship: part_of EMAP:8442 ! TS24,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8444 -name: TS24,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0000473 ! testis -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000473 ! testis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8445 -name: TS24,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8444 ! TS24,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8446 -name: TS24,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8445 ! TS24,medullary region,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8447 -name: TS24,primitive seminiferous tubules,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0001343 ! seminiferous tubule of testis -relationship: part_of EMAP:8446 ! TS24,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8448 -name: TS24,primordial germ cells,primitive seminiferous tubules,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8447 ! TS24,primitive seminiferous tubules,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: EMAP:8449 -name: TS24,intestitial tissue,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005212 ! testis interstitial tissue -relationship: part_of EMAP:8446 ! TS24,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005212 ! testis interstitial tissue -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:845 -name: TS14,lateral wall,future diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:842 ! TS14,future diencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006222 ! future diencephalon - -[Term] -id: EMAP:8450 -name: TS24,hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8445 ! TS24,medullary region,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8451 -name: TS24,rete testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8450 ! TS24,hilar region,medullary region,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8452 -name: TS24,cortical region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8444 ! TS24,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8453 -name: TS24,mediastinum testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005051 ! mediastinum testis -relationship: part_of EMAP:8444 ! TS24,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005051 ! mediastinum testis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8455 -name: TS24,mesenchyme,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8444 ! TS24,testis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8456 -name: TS24,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:8439 ! TS24,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8457 -name: TS24,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:8456 ! TS24,cavities and their linings -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8458 -name: TS24,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0001103 ! diaphragm -relationship: part_of EMAP:8457 ! TS24,intraembryonic coelom -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8459 -name: TS24,central tendon,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0006670 ! central tendon -relationship: part_of EMAP:8458 ! TS24,diaphragm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006670 ! central tendon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:846 -name: TS14,neural crest,future diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003851 ! diencephalon neural crest -relationship: part_of EMAP:842 ! TS14,future diencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003851 ! diencephalon neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8460 -name: TS24,dome,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0007145 ! dome of diaphragm -relationship: part_of EMAP:8458 ! TS24,diaphragm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007145 ! dome of diaphragm -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8461 -name: TS24,pleuro-pericardial folds -namespace: mouse_anatomy_stages -is_a: UBERON:0006278 ! pleuropericardial folds -relationship: part_of EMAP:8458 ! TS24,diaphragm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006278 ! pleuropericardial folds -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8462 -name: TS24,pleuro-peritoneal folds -namespace: mouse_anatomy_stages -is_a: UBERON:0009133 ! pleuroperitoneal membrane -relationship: part_of EMAP:8458 ! TS24,diaphragm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009133 ! pleuroperitoneal membrane -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8464 -name: TS24,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001074 ! pericardial cavity -relationship: part_of EMAP:8457 ! TS24,intraembryonic coelom -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8465 -name: TS24,cavity,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001074 ! pericardial cavity -relationship: part_of EMAP:8464 ! TS24,pericardial cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8466 -name: TS24,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003388 ! mesothelium of pericardial cavity -relationship: part_of EMAP:8464 ! TS24,pericardial cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003388 ! mesothelium of pericardial cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8467 -name: TS24,parietal,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8466 ! TS24,mesothelium,pericardial cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003388 ! mesothelium of pericardial cavity - -[Term] -id: EMAP:8468 -name: TS24,visceral,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8466 ! TS24,mesothelium,pericardial cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003388 ! mesothelium of pericardial cavity - -[Term] -id: EMAP:8469 -name: TS24,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:8457 ! TS24,intraembryonic coelom -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001179 ! peritoneal cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:847 -name: TS14,roof plate,future diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:842 ! TS14,future diencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006222 ! future diencephalon - -[Term] -id: EMAP:8470 -name: TS24,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:8469 ! TS24,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8471 -name: TS24,cavity,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:8470 ! TS24,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8472 -name: TS24,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:8470 ! TS24,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8473 -name: TS24,parietal,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8472 ! TS24,mesothelium,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:8474 -name: TS24,visceral,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8472 ! TS24,mesothelium,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:8475 -name: TS24,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:8469 ! TS24,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8476 -name: TS24,mesothelium,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:8475 ! TS24,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8477 -name: TS24,parietal,mesothelium,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8476 ! TS24,mesothelium,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:8478 -name: TS24,cavity,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:8475 ! TS24,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8479 -name: TS24,pleural cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0002402 ! pleural cavity -relationship: part_of EMAP:8457 ! TS24,intraembryonic coelom -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:848 -name: TS14,lateral wall,prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:840 ! TS14,prosencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8480 -name: TS24,cavity,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8479 ! TS24,pleural cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002402 ! pleural cavity - -[Term] -id: EMAP:8481 -name: TS24,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003390 ! mesothelium of pleural cavity -relationship: part_of EMAP:8479 ! TS24,pleural cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003390 ! mesothelium of pleural cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8482 -name: TS24,parietal,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8481 ! TS24,mesothelium,pleural cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003390 ! mesothelium of pleural cavity - -[Term] -id: EMAP:8483 -name: TS24,visceral,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8481 ! TS24,mesothelium,pleural cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003390 ! mesothelium of pleural cavity - -[Term] -id: EMAP:8484 -name: TS24,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:8439 ! TS24,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8485 -name: TS24,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002102 ! forelimb -relationship: part_of EMAP:8484 ! TS24,limb -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002102 ! forelimb -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8486 -name: TS24,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0001460 ! arm -relationship: part_of EMAP:8485 ! TS24,forelimb -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001460 ! arm -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8487 -name: TS24,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001461 ! elbow -relationship: part_of EMAP:8486 ! TS24,arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001461 ! elbow -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8488 -name: TS24,mesenchyme,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003318 ! mesenchyme of elbow -relationship: part_of EMAP:8487 ! TS24,elbow -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:849 -name: TS14,prosencephalic vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0006284 ! early prosencephalic vesicle -relationship: part_of EMAP:840 ! TS14,prosencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006284 ! early prosencephalic vesicle -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8491 -name: TS24,skin,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001517 ! skin of elbow -relationship: part_of EMAP:8487 ! TS24,elbow -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001517 ! skin of elbow -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8492 -name: TS24,dermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8491 ! TS24,skin,elbow -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:8493 -name: TS24,epidermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8491 ! TS24,skin,elbow -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:8494 -name: TS24,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0002386 ! forelimb zeugopod -relationship: part_of EMAP:8486 ! TS24,arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8495 -name: TS24,mesenchyme,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003327 ! mesenchyme of forearm -relationship: part_of EMAP:8494 ! TS24,forearm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8499 -name: TS24,skin,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003403 ! skin of forearm -relationship: part_of EMAP:8494 ! TS24,forearm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003403 ! skin of forearm -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:85 -name: TS9,definitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0005439 ! definitive endoderm -relationship: part_of EMAP:84 ! TS9,endoderm,embryo -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0005439 ! definitive endoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:850 -name: TS14,roof plate,prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:840 ! TS14,prosencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8500 -name: TS24,dermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8499 ! TS24,skin,forearm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:8501 -name: TS24,epidermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8499 ! TS24,skin,forearm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:8502 -name: TS24,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001467 ! shoulder -relationship: part_of EMAP:8486 ! TS24,arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001467 ! shoulder -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8503 -name: TS24,mesenchyme,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003322 ! mesenchyme of shoulder -relationship: part_of EMAP:8502 ! TS24,shoulder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8506 -name: TS24,skin,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001483 ! skin of shoulder -relationship: part_of EMAP:8502 ! TS24,shoulder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001483 ! skin of shoulder -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8507 -name: TS24,dermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8506 ! TS24,skin,shoulder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:8508 -name: TS24,epidermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8506 ! TS24,skin,shoulder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:8509 -name: TS24,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003822 ! forelimb stylopod -relationship: part_of EMAP:8486 ! TS24,arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:851 -name: TS14,rostral neuropore -namespace: mouse_anatomy_stages -is_a: UBERON:0005070 ! anterior neuropore -relationship: part_of EMAP:840 ! TS14,prosencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005070 ! anterior neuropore -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8516 -name: TS24,mesenchyme,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005258 ! upper arm mesenchyme -relationship: part_of EMAP:8509 ! TS24,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8519 -name: TS24,skin,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0002427 ! arm skin -relationship: part_of EMAP:8509 ! TS24,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:852 -name: TS14,neural crest,prosencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:840 ! TS14,prosencephalon -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006238 ! future brain - -[Term] -id: EMAP:8520 -name: TS24,dermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8519 ! TS24,skin,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:8521 -name: TS24,epidermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8519 ! TS24,skin,upper arm -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:8522 -name: TS24,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002398 ! manus -relationship: part_of EMAP:8485 ! TS24,forelimb -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002398 ! manus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8523 -name: TS24,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001463 ! manual digit 1 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8524 -name: TS24,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010564 ! manual digit 1 mesenchyme -relationship: part_of EMAP:8523 ! TS24,digit 1,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8527 -name: TS24,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8523 ! TS24,digit 1,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:8528 -name: TS24,dermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8527 ! TS24,skin,digit 1,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:8529 -name: TS24,epidermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8527 ! TS24,skin,digit 1,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:853 -name: TS14,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0006241 ! future spinal cord -relationship: part_of EMAP:798 ! TS14,central nervous system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8530 -name: TS24,claw,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011273 ! nail of manual digit 1 -relationship: part_of EMAP:8523 ! TS24,digit 1,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011273 ! nail of manual digit 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8531 -name: TS24,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003622 ! manual digit 2 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8532 -name: TS24,claw,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011274 ! nail of manual digit 2 -relationship: part_of EMAP:8531 ! TS24,digit 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011274 ! nail of manual digit 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8533 -name: TS24,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005692 ! manual digit 2 mesenchyme -relationship: part_of EMAP:8531 ! TS24,digit 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8536 -name: TS24,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8531 ! TS24,digit 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:8537 -name: TS24,dermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8536 ! TS24,skin,digit 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:8538 -name: TS24,epidermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8536 ! TS24,skin,digit 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:8539 -name: TS24,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003623 ! manual digit 3 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:854 -name: TS14,caudal neuropore -namespace: mouse_anatomy_stages -is_a: UBERON:0005071 ! posterior neuropore -relationship: part_of EMAP:853 ! TS14,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005071 ! posterior neuropore -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8540 -name: TS24,claw primordium,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011275 ! nail of manual digit 3 -relationship: part_of EMAP:8539 ! TS24,digit 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011275 ! nail of manual digit 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8541 -name: TS24,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005693 ! manual digit 3 mesenchyme -relationship: part_of EMAP:8539 ! TS24,digit 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8544 -name: TS24,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8539 ! TS24,digit 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:8545 -name: TS24,dermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8544 ! TS24,skin,digit 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:8546 -name: TS24,epidermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8544 ! TS24,skin,digit 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:8547 -name: TS24,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003624 ! manual digit 4 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8548 -name: TS24,claw,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011276 ! nail of manual digit 4 -relationship: part_of EMAP:8547 ! TS24,digit 4,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011276 ! nail of manual digit 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8549 -name: TS24,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005694 ! manual digit 4 mesenchyme -relationship: part_of EMAP:8547 ! TS24,digit 4,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:855 -name: TS14,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003075 ! neural plate -relationship: part_of EMAP:853 ! TS14,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003075 ! neural plate -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8552 -name: TS24,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8547 ! TS24,digit 4,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:8553 -name: TS24,dermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8552 ! TS24,skin,digit 4,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:8554 -name: TS24,epidermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8552 ! TS24,skin,digit 4,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:8555 -name: TS24,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003625 ! manual digit 5 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8556 -name: TS24,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005695 ! manual digit 5 mesenchyme -relationship: part_of EMAP:8555 ! TS24,digit 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8559 -name: TS24,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8555 ! TS24,digit 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:856 -name: TS14,neural fold,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005062 ! neural fold -relationship: part_of EMAP:855 ! TS14,neural plate,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005062 ! neural fold -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8560 -name: TS24,dermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8559 ! TS24,skin,digit 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:8561 -name: TS24,epidermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8559 ! TS24,skin,digit 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:8562 -name: TS24,claw,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011277 ! nail of manual digit 5 -relationship: part_of EMAP:8555 ! TS24,digit 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011277 ! nail of manual digit 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8563 -name: TS24,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8564 -name: TS24,mesenchyme,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:8563 ! TS24,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8565 -name: TS24,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8563 ! TS24,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:8566 -name: TS24,dermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8565 ! TS24,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:8567 -name: TS24,epidermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8565 ! TS24,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:8568 -name: TS24,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8569 -name: TS24,mesenchyme,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:8568 ! TS24,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:857 -name: TS14,neural crest,neural fold,neural plate,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003853 ! spinal cord neural crest -relationship: part_of EMAP:856 ! TS14,neural fold,neural plate,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003853 ! spinal cord neural crest -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8570 -name: TS24,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8568 ! TS24,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:8571 -name: TS24,dermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8570 ! TS24,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:8572 -name: TS24,epidermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8570 ! TS24,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:8573 -name: TS24,interdigital region between digits 3 and 4 -namespace: mouse_anatomy_stages -is_a: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8574 -name: TS24,mesenchyme,interdigital region between digits 3 and 4 -namespace: mouse_anatomy_stages -is_a: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:8573 ! TS24,interdigital region between digits 3 and 4 -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8575 -name: TS24,skin,interdigital region between digits 3 and 4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8573 ! TS24,interdigital region between digits 3 and 4 -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:8576 -name: TS24,dermis,skin,interdigital region between digits 3 and 4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8575 ! TS24,skin,interdigital region between digits 3 and 4 -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:8577 -name: TS24,epidermis,skin,interdigital region between digits 3 and 4 -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8575 ! TS24,skin,interdigital region between digits 3 and 4 -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:8578 -name: TS24,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8579 -name: TS24,mesenchyme,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:8578 ! TS24,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:858 -name: TS14,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0001049 ! neural tube -relationship: part_of EMAP:853 ! TS14,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001049 ! neural tube -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8580 -name: TS24,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8578 ! TS24,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:8581 -name: TS24,dermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8580 ! TS24,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:8582 -name: TS24,epidermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8580 ! TS24,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:8583 -name: TS24,mesenchyme,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:8585 -name: TS24,skin,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001519 ! skin of manus -relationship: part_of EMAP:8522 ! TS24,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001519 ! skin of manus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8586 -name: TS24,dermis,skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8585 ! TS24,skin,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001519 ! skin of manus - -[Term] -id: EMAP:8587 -name: TS24,epidermis,skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8585 ! TS24,skin,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001519 ! skin of manus - -[Term] -id: EMAP:8588 -name: TS24,palmar pads,skin,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0008839 ! palmar pad -relationship: part_of EMAP:8585 ! TS24,skin,handplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0008839 ! palmar pad -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8589 -name: TS24,hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002103 ! hindlimb -relationship: part_of EMAP:8484 ! TS24,limb -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:859 -name: TS14,floor plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003306 ! floor plate of neural tube -relationship: part_of EMAP:858 ! TS14,neural tube,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8590 -name: TS24,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002387 ! pes -relationship: part_of EMAP:8589 ! TS24,hindlimb -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002387 ! pes -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8591 -name: TS24,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003631 ! pedal digit 1 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8592 -name: TS24,claw,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011278 ! nail of pedal digit 1 -relationship: part_of EMAP:8591 ! TS24,digit 1,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011278 ! nail of pedal digit 1 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8593 -name: TS24,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010562 ! pedal digit 1 mesenchyme -relationship: part_of EMAP:8591 ! TS24,digit 1,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8596 -name: TS24,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8591 ! TS24,digit 1,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:8597 -name: TS24,dermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8596 ! TS24,skin,digit 1,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:8598 -name: TS24,epidermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8596 ! TS24,skin,digit 1,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:8599 -name: TS24,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003632 ! pedal digit 2 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:86 -name: TS9,primitive endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008776 ! inner cell mass derived hypoblast -relationship: part_of EMAP:84 ! TS9,endoderm,embryo -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:860 -name: TS14,lateral wall,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:858 ! TS14,neural tube,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001049 ! neural tube - -[Term] -id: EMAP:8600 -name: TS24,claw,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011279 ! nail of pedal digit 2 -relationship: part_of EMAP:8599 ! TS24,digit 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011279 ! nail of pedal digit 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8601 -name: TS24,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005696 ! pedal digit 2 mesenchyme -relationship: part_of EMAP:8599 ! TS24,digit 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8604 -name: TS24,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8599 ! TS24,digit 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:8605 -name: TS24,dermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8604 ! TS24,skin,digit 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:8606 -name: TS24,epidermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8604 ! TS24,skin,digit 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:8607 -name: TS24,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003633 ! pedal digit 3 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8608 -name: TS24,claw,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011280 ! nail of pedal digit 3 -relationship: part_of EMAP:8607 ! TS24,digit 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011280 ! nail of pedal digit 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8609 -name: TS24,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005697 ! pedal digit 3 mesenchyme -relationship: part_of EMAP:8607 ! TS24,digit 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:861 -name: TS14,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003842 ! neural tube lumen -relationship: part_of EMAP:858 ! TS14,neural tube,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8612 -name: TS24,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8607 ! TS24,digit 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:8613 -name: TS24,dermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8612 ! TS24,skin,digit 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:8614 -name: TS24,epidermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8612 ! TS24,skin,digit 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:8615 -name: TS24,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003634 ! pedal digit 4 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8616 -name: TS24,claw,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011281 ! nail of pedal digit 4 -relationship: part_of EMAP:8615 ! TS24,digit 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011281 ! nail of pedal digit 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8617 -name: TS24,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005698 ! pedal digit 4 mesenchyme -relationship: part_of EMAP:8615 ! TS24,digit 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:862 -name: TS14,neural luminal occlusion,neural lumen,neural tube,future spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:861 ! TS14,neural lumen,neural tube,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0003842 ! neural tube lumen - -[Term] -id: EMAP:8620 -name: TS24,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8615 ! TS24,digit 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:8621 -name: TS24,dermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8620 ! TS24,skin,digit 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:8622 -name: TS24,epidermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8620 ! TS24,skin,digit 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:8623 -name: TS24,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003635 ! pedal digit 5 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8624 -name: TS24,claw,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011282 ! nail of pedal digit 5 -relationship: part_of EMAP:8623 ! TS24,digit 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011282 ! nail of pedal digit 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8625 -name: TS24,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005699 ! pedal digit 5 mesenchyme -relationship: part_of EMAP:8623 ! TS24,digit 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8628 -name: TS24,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8623 ! TS24,digit 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:8629 -name: TS24,dermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8628 ! TS24,skin,digit 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:863 -name: TS14,roof plate,neural tube,future spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003298 ! roof plate of neural tube -relationship: part_of EMAP:858 ! TS14,neural tube,future spinal cord -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003298 ! roof plate of neural tube -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8630 -name: TS24,epidermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8628 ! TS24,skin,digit 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:8631 -name: TS24,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8632 -name: TS24,mesenchyme,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:8631 ! TS24,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8633 -name: TS24,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8631 ! TS24,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:8634 -name: TS24,dermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8633 ! TS24,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:8635 -name: TS24,epidermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8633 ! TS24,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:8636 -name: TS24,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8637 -name: TS24,mesenchyme,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:8636 ! TS24,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8638 -name: TS24,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8636 ! TS24,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:8639 -name: TS24,dermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8638 ! TS24,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:864 -name: TS14,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:796 ! TS14,organ system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8640 -name: TS24,epidermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8638 ! TS24,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:8641 -name: TS24,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8642 -name: TS24,mesenchyme,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -relationship: part_of EMAP:8641 ! TS24,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8643 -name: TS24,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8641 ! TS24,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:8644 -name: TS24,dermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8643 ! TS24,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:8645 -name: TS24,epidermis,skin,interdigital region between digits 3 and 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8643 ! TS24,skin,interdigital region between digits 3 and 4,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006044 ! interdigital region between pedal digits 3 and 4 - -[Term] -id: EMAP:8646 -name: TS24,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8647 -name: TS24,mesenchyme,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -relationship: part_of EMAP:8646 ! TS24,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8648 -name: TS24,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8646 ! TS24,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:8649 -name: TS24,dermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8648 ! TS24,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:865 -name: TS14,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:864 ! TS14,sensory organ -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8650 -name: TS24,epidermis,skin,interdigital region between digits 4 and 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8648 ! TS24,skin,interdigital region between digits 4 and 5,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006047 ! interdigital region between pedal digits 4 and 5 - -[Term] -id: EMAP:8651 -name: TS24,mesenchyme,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002387 ! pes - -[Term] -id: EMAP:8656 -name: TS24,skin,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001513 ! skin of pes -relationship: part_of EMAP:8590 ! TS24,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001513 ! skin of pes -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8657 -name: TS24,dermis,skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8656 ! TS24,skin,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001513 ! skin of pes - -[Term] -id: EMAP:8658 -name: TS24,epidermis,skin,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8656 ! TS24,skin,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001513 ! skin of pes - -[Term] -id: EMAP:8659 -name: TS24,plantar pads,skin,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0008840 ! plantar pad -relationship: part_of EMAP:8656 ! TS24,skin,footplate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0008840 ! plantar pad -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:866 -name: TS14,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:865 ! TS14,ear -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8660 -name: TS24,leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000978 ! leg -relationship: part_of EMAP:8589 ! TS24,hindlimb -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000978 ! leg -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8661 -name: TS24,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001464 ! hip -relationship: part_of EMAP:8660 ! TS24,leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001464 ! hip -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8662 -name: TS24,mesenchyme,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0003320 ! mesenchyme of hip -relationship: part_of EMAP:8661 ! TS24,hip -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8665 -name: TS24,skin,hip -namespace: mouse_anatomy_stages -is_a: UBERON:0001554 ! skin of hip -relationship: part_of EMAP:8661 ! TS24,hip -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001554 ! skin of hip -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8666 -name: TS24,dermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8665 ! TS24,skin,hip -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:8667 -name: TS24,epidermis,skin,hip -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8665 ! TS24,skin,hip -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001554 ! skin of hip - -[Term] -id: EMAP:8668 -name: TS24,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001465 ! knee -relationship: part_of EMAP:8660 ! TS24,leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001465 ! knee -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8669 -name: TS24,mesenchyme,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0003321 ! mesenchyme of knee -relationship: part_of EMAP:8668 ! TS24,knee -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:867 -name: TS14,otic pit -namespace: mouse_anatomy_stages -is_a: UBERON:0006273 ! otic pit -relationship: part_of EMAP:866 ! TS14,inner ear -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006273 ! otic pit -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8675 -name: TS24,skin,knee -namespace: mouse_anatomy_stages -is_a: UBERON:0001510 ! skin of knee -relationship: part_of EMAP:8668 ! TS24,knee -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001510 ! skin of knee -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8676 -name: TS24,dermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8675 ! TS24,skin,knee -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:8677 -name: TS24,epidermis,skin,knee -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8675 ! TS24,skin,knee -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001510 ! skin of knee - -[Term] -id: EMAP:8678 -name: TS24,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0003823 ! hindlimb zeugopod -relationship: part_of EMAP:8660 ! TS24,leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8679 -name: TS24,mesenchyme,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005259 ! lower leg mesenchyme -relationship: part_of EMAP:8678 ! TS24,lower leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:868 -name: TS14,associated mesenchyme,otic pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:867 ! TS14,otic pit -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006273 ! otic pit - -[Term] -id: EMAP:8683 -name: TS24,skin,lower leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:8678 ! TS24,lower leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8684 -name: TS24,dermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8683 ! TS24,skin,lower leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:8685 -name: TS24,epidermis,skin,lower leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8683 ! TS24,skin,lower leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:8686 -name: TS24,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0000376 ! hindlimb stylopod -relationship: part_of EMAP:8660 ! TS24,leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:869 -name: TS14,epithelium,otic pit -namespace: mouse_anatomy_stages -relationship: part_of EMAP:867 ! TS14,otic pit -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006273 ! otic pit - -[Term] -id: EMAP:8691 -name: TS24,mesenchyme,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0005254 ! upper leg mesenchyme -relationship: part_of EMAP:8686 ! TS24,upper leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8694 -name: TS24,skin,upper leg -namespace: mouse_anatomy_stages -is_a: UBERON:0001511 ! skin of leg -relationship: part_of EMAP:8686 ! TS24,upper leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8695 -name: TS24,dermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8694 ! TS24,skin,upper leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:8696 -name: TS24,epidermis,skin,upper leg -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8694 ! TS24,skin,upper leg -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001511 ! skin of leg - -[Term] -id: EMAP:8697 -name: TS24,mesenchyme,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0009142 ! entire mesenchyme -relationship: part_of EMAP:8439 ! TS24,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009142 ! entire mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8698 -name: TS24,head mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005253 ! head mesenchyme -relationship: part_of EMAP:8697 ! TS24,mesenchyme,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8699 -name: TS24,trunk mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0005256 ! trunk mesenchyme -relationship: part_of EMAP:8697 ! TS24,mesenchyme,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:87 -name: TS9,mesoderm,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:80 ! TS9,embryo -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:870 -name: TS14,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003069 ! otic placode -relationship: part_of EMAP:866 ! TS14,inner ear -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003069 ! otic placode -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8700 -name: TS24,body-wall mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006210 ! body-wall mesenchyme -relationship: part_of EMAP:8699 ! TS24,trunk mesenchyme -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8701 -name: TS24,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:8440 ! TS24,organ system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8702 -name: TS24,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:8701 ! TS24,cardiovascular system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8703 -name: TS24,aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0000947 ! aorta -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000947 ! aorta -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8704 -name: TS24,arch of aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001508 ! arch of aorta -relationship: part_of EMAP:8703 ! TS24,aorta -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8705 -name: TS24,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001515 ! thoracic aorta -relationship: part_of EMAP:8703 ! TS24,aorta -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001515 ! thoracic aorta -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8706 -name: TS24,ascending,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001496 ! ascending aorta -relationship: part_of EMAP:8705 ! TS24,thoracic aorta -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8707 -name: TS24,descending,thoracic aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001514 ! descending aorta -relationship: part_of EMAP:8705 ! TS24,thoracic aorta -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8708 -name: TS24,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005805 ! dorsal aorta -relationship: part_of EMAP:8703 ! TS24,aorta -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8709 -name: TS24,abdominal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0001516 ! abdominal aorta -relationship: part_of EMAP:8708 ! TS24,dorsal aorta -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:871 -name: TS14,associated mesenchyme,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0009477 ! associated mesenchyme of otic placode -relationship: part_of EMAP:870 ! TS14,otic placode -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009477 ! associated mesenchyme of otic placode -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8710 -name: TS24,axillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001394 ! axillary artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001394 ! axillary artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8711 -name: TS24,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006349 ! epigastric artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006349 ! epigastric artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8712 -name: TS24,inferior,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001354 ! inferior epigastric artery -relationship: part_of EMAP:8711 ! TS24,epigastric artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001354 ! inferior epigastric artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8713 -name: TS24,superior,epigastric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007153 ! superior epigastric artery -relationship: part_of EMAP:8711 ! TS24,epigastric artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007153 ! superior epigastric artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8714 -name: TS24,intercostal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005612 ! intercostal artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005612 ! intercostal artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8715 -name: TS24,greater palatine artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006664 ! greater palatine artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006664 ! greater palatine artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8716 -name: TS24,basilar artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001633 ! basilar artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8717 -name: TS24,bronchial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002040 ! bronchial artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002040 ! bronchial artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8718 -name: TS24,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005396 ! carotid artery segment -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8719 -name: TS24,common,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0010197 ! trunk of common carotid artery -relationship: part_of EMAP:8718 ! TS24,carotid artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010197 ! trunk of common carotid artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:872 -name: TS14,epithelium,otic placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003249 ! epithelium of otic placode -relationship: part_of EMAP:870 ! TS14,otic placode -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003249 ! epithelium of otic placode -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8720 -name: TS24,external,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001070 ! external carotid artery -relationship: part_of EMAP:8718 ! TS24,carotid artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8721 -name: TS24,internal,carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:8718 ! TS24,carotid artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8722 -name: TS24,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0004449 ! cerebral artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8723 -name: TS24,anterior,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001624 ! anterior cerebral artery -relationship: part_of EMAP:8722 ! TS24,cerebral artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8724 -name: TS24,middle,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001627 ! middle cerebral artery -relationship: part_of EMAP:8722 ! TS24,cerebral artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8725 -name: TS24,posterior,cerebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001636 ! posterior cerebral artery -relationship: part_of EMAP:8722 ! TS24,cerebral artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8726 -name: TS24,hepatic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001193 ! hepatic artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8727 -name: TS24,hyoid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005608 ! hyoid artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8728 -name: TS24,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005609 ! iliac artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8729 -name: TS24,common,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001191 ! common iliac artery -relationship: part_of EMAP:8728 ! TS24,iliac artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:873 -name: TS14,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:864 ! TS14,sensory organ -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8730 -name: TS24,external,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001308 ! external iliac artery -relationship: part_of EMAP:8728 ! TS24,iliac artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8731 -name: TS24,internal,iliac artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001309 ! internal iliac artery -relationship: part_of EMAP:8728 ! TS24,iliac artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8732 -name: TS24,innominate artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001529 ! brachiocephalic artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8733 -name: TS24,internal thoracic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002456 ! internal thoracic artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8735 -name: TS24,maxillary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001616 ! maxillary artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8736 -name: TS24,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005616 ! mesenteric artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8737 -name: TS24,inferior,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001183 ! inferior mesenteric artery -relationship: part_of EMAP:8736 ! TS24,mesenteric artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001183 ! inferior mesenteric artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8738 -name: TS24,superior,mesenteric artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001182 ! superior mesenteric artery -relationship: part_of EMAP:8736 ! TS24,mesenteric artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001182 ! superior mesenteric artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8739 -name: TS24,ophthalmic artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001619 ! ophthalmic artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:874 -name: TS14,optic eminence -namespace: mouse_anatomy_stages -is_a: UBERON:0004348 ! optic eminence -relationship: part_of EMAP:873 ! TS14,eye -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004348 ! optic eminence -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8740 -name: TS24,ovarian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001190 ! ovarian artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001190 ! ovarian artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8741 -name: TS24,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006347 ! communicating artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006347 ! communicating artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8742 -name: TS24,anterior,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006764 ! anterior communicating artery -relationship: part_of EMAP:8741 ! TS24,communicating artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006764 ! anterior communicating artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8743 -name: TS24,posterior,communicating artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001628 ! posterior communicating artery -relationship: part_of EMAP:8741 ! TS24,communicating artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8744 -name: TS24,principal artery to forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006436 ! principal artery to forelimb -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8745 -name: TS24,principal artery to hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006438 ! principal artery to hindlimb -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8746 -name: TS24,pulmonary artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002012 ! pulmonary artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8747 -name: TS24,pulmonary trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0002333 ! pulmonary trunk -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8748 -name: TS24,renal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001184 ! renal artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001184 ! renal artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8749 -name: TS24,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0002458 ! spinal artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:875 -name: TS14,mesenchyme,optic eminence -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:874 ! TS14,optic eminence -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8750 -name: TS24,anterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005431 ! anterior spinal artery -relationship: part_of EMAP:8749 ! TS24,spinal artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005431 ! anterior spinal artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8751 -name: TS24,posterior,spinal artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007146 ! posterior spinal artery -relationship: part_of EMAP:8749 ! TS24,spinal artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007146 ! posterior spinal artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8752 -name: TS24,stapedial artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006345 ! stapedial artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8753 -name: TS24,subclavian artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001533 ! subclavian artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8754 -name: TS24,testicular artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001187 ! testicular artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001187 ! testicular artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8755 -name: TS24,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003847 ! thyroid artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003847 ! thyroid artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8756 -name: TS24,inferior,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007149 ! inferior thyroid artery -relationship: part_of EMAP:8755 ! TS24,thyroid artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007149 ! inferior thyroid artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8757 -name: TS24,superior,thyroid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007150 ! superior thyroid artery -relationship: part_of EMAP:8755 ! TS24,thyroid artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007150 ! superior thyroid artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8758 -name: TS24,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8759 -name: TS24,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:8758 ! TS24,umbilical artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:876 -name: TS14,surface ectoderm,optic eminence -namespace: mouse_anatomy_stages -is_a: UBERON:0000076 ! external ectoderm -relationship: part_of EMAP:874 ! TS14,optic eminence -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8760 -name: TS24,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:8758 ! TS24,umbilical artery -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8761 -name: TS24,vertebral artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001535 ! vertebral artery -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8762 -name: TS24,ductus arteriosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005440 ! ductus arteriosus -relationship: part_of EMAP:8702 ! TS24,arterial system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8763 -name: TS24,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:8701 ! TS24,cardiovascular system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8764 -name: TS24,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:8701 ! TS24,cardiovascular system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8765 -name: TS24,aortic sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0003707 ! sinus of Valsalva -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003707 ! sinus of Valsalva -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8766 -name: TS24,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8767 -name: TS24,atrio-ventricular cushion tissue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:8768 -name: TS24,atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002081 ! cardiac atrium -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8769 -name: TS24,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002085 ! interatrial septum -relationship: part_of EMAP:8768 ! TS24,atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:877 -name: TS14,optic vesicle -namespace: mouse_anatomy_stages -is_a: UBERON:0004128 ! optic vesicle -relationship: part_of EMAP:873 ! TS14,eye -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8770 -name: TS24,foramen ovale,interatrial septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004754 ! foramen ovale of heart -relationship: part_of EMAP:8769 ! TS24,interatrial septum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8771 -name: TS24,septum primum -namespace: mouse_anatomy_stages -is_a: UBERON:0004154 ! septum primum -relationship: part_of EMAP:8769 ! TS24,interatrial septum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004154 ! septum primum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8772 -name: TS24,foramen secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0006678 ! foramen secundum -relationship: part_of EMAP:8771 ! TS24,septum primum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8773 -name: TS24,septum secundum -namespace: mouse_anatomy_stages -is_a: UBERON:0004155 ! septum secundum -relationship: part_of EMAP:8769 ! TS24,interatrial septum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004155 ! septum secundum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8774 -name: TS24,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002079 ! left atrium -relationship: part_of EMAP:8768 ! TS24,atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002079 ! left atrium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8775 -name: TS24,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8774 ! TS24,left atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:8776 -name: TS24,endocardial lining,auricular region,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8775 ! TS24,auricular region,left atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:8777 -name: TS24,cardiac muscle,auricular region,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009780 ! cardiac muscle tissue of left auricle -relationship: part_of EMAP:8775 ! TS24,auricular region,left atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8778 -name: TS24,endocardial lining,left atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8774 ! TS24,left atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002079 ! left atrium - -[Term] -id: EMAP:8779 -name: TS24,cardiac muscle,left atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003380 ! cardiac muscle of left atrium -relationship: part_of EMAP:8774 ! TS24,left atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:878 -name: TS14,neural ectoderm,optic vesicle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:877 ! TS14,optic vesicle -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004128 ! optic vesicle - -[Term] -id: EMAP:8780 -name: TS24,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0002078 ! right atrium -relationship: part_of EMAP:8768 ! TS24,atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002078 ! right atrium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8781 -name: TS24,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8780 ! TS24,right atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:8782 -name: TS24,endocardial lining,auricular region,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8781 ! TS24,auricular region,right atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:8783 -name: TS24,cardiac muscle,auricular region,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0009779 ! cardiac muscle tissue of right auricle -relationship: part_of EMAP:8781 ! TS24,auricular region,right atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8784 -name: TS24,endocardial lining,right atrium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8780 ! TS24,right atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002078 ! right atrium - -[Term] -id: EMAP:8785 -name: TS24,cardiac muscle,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0003379 ! cardiac muscle of right atrium -relationship: part_of EMAP:8780 ! TS24,right atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8786 -name: TS24,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005208 ! right atrium valve -relationship: part_of EMAP:8780 ! TS24,right atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8787 -name: TS24,venous valve,valve,right atrium -namespace: mouse_anatomy_stages -is_a: UBERON:0010189 ! right atrium venous valve -relationship: part_of EMAP:8786 ! TS24,valve,right atrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8788 -name: TS24,bulbar cushion -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000948 ! heart - -[Term] -id: EMAP:8789 -name: TS24,endocardial cushion tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002062 ! endocardial cushion -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:879 -name: TS14,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:864 ! TS14,sensory organ -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8790 -name: TS24,endocardial tissue -namespace: mouse_anatomy_stages -is_a: UBERON:0002165 ! endocardium -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002165 ! endocardium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8792 -name: TS24,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8793 -name: TS24,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:8792 ! TS24,mesentery,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8794 -name: TS24,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:8793 ! TS24,dorsal mesocardium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8795 -name: TS24,trabeculae carneae -namespace: mouse_anatomy_stages -is_a: UBERON:0002511 ! trabecula carnea -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002511 ! trabecula carnea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8796 -name: TS24,valve,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000946 ! cardial valve -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000946 ! cardial valve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8797 -name: TS24,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002137 ! aortic valve -relationship: part_of EMAP:8796 ! TS24,valve,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8798 -name: TS24,leaflets,aortic valve -namespace: mouse_anatomy_stages -is_a: UBERON:0011742 ! aortic valve leaflet -relationship: part_of EMAP:8797 ! TS24,aortic valve -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011742 ! aortic valve leaflet -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8799 -name: TS24,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002135 ! mitral valve -relationship: part_of EMAP:8796 ! TS24,valve,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:88 -name: TS9,primitive streak -namespace: mouse_anatomy_stages -is_a: UBERON:0004341 ! primitive streak -relationship: part_of EMAP:80 ! TS9,embryo -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:880 -name: TS14,olfactory placode -namespace: mouse_anatomy_stages -is_a: UBERON:0003050 ! olfactory placode -relationship: part_of EMAP:879 ! TS14,nose -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8800 -name: TS24,leaflets,mitral valve -namespace: mouse_anatomy_stages -is_a: UBERON:0007151 ! leaflets of mitral valve -relationship: part_of EMAP:8799 ! TS24,mitral valve -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007151 ! leaflets of mitral valve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8801 -name: TS24,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002146 ! pulmonary valve -relationship: part_of EMAP:8796 ! TS24,valve,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8802 -name: TS24,leaflets,pulmonary valve -namespace: mouse_anatomy_stages -is_a: UBERON:0011745 ! pulmonary valve leaflets -relationship: part_of EMAP:8801 ! TS24,pulmonary valve -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011745 ! pulmonary valve leaflets -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8803 -name: TS24,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0002134 ! tricuspid valve -relationship: part_of EMAP:8796 ! TS24,valve,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8804 -name: TS24,leaflets,tricuspid valve -namespace: mouse_anatomy_stages -is_a: UBERON:0005484 ! tricuspid valve leaflet -relationship: part_of EMAP:8803 ! TS24,tricuspid valve -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005484 ! tricuspid valve leaflet -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8805 -name: TS24,ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002082 ! cardiac ventricle -relationship: part_of EMAP:8764 ! TS24,heart -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8806 -name: TS24,interventricular groove -namespace: mouse_anatomy_stages -is_a: UBERON:0005455 ! interventricular groove -relationship: part_of EMAP:8805 ! TS24,ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8807 -name: TS24,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0002094 ! interventricular septum -relationship: part_of EMAP:8805 ! TS24,ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8808 -name: TS24,endocardial lining,interventricular septum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8807 ! TS24,interventricular septum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002094 ! interventricular septum - -[Term] -id: EMAP:8809 -name: TS24,membranous part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004666 ! interventricular septum membranous part -relationship: part_of EMAP:8807 ! TS24,interventricular septum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:881 -name: TS14,cardiovascular system -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:796 ! TS14,organ system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8810 -name: TS24,muscular part,interventricular septum -namespace: mouse_anatomy_stages -is_a: UBERON:0004667 ! interventricular septum muscular part -relationship: part_of EMAP:8807 ! TS24,interventricular septum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8811 -name: TS24,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002084 ! heart left ventricle -relationship: part_of EMAP:8805 ! TS24,ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8812 -name: TS24,endocardial lining,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009713 ! endocardium of left ventricle -relationship: part_of EMAP:8811 ! TS24,left ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8813 -name: TS24,cardiac muscle,left ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003382 ! cardiac muscle of left ventricle -relationship: part_of EMAP:8811 ! TS24,left ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8814 -name: TS24,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002080 ! heart right ventricle -relationship: part_of EMAP:8805 ! TS24,ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8815 -name: TS24,endocardial lining,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009712 ! endocardium of right ventricle -relationship: part_of EMAP:8814 ! TS24,right ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8816 -name: TS24,cardiac muscle,right ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003381 ! cardiac muscle of right ventricle -relationship: part_of EMAP:8814 ! TS24,right ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8817 -name: TS24,lymphatic system -namespace: mouse_anatomy_stages -is_a: UBERON:0006558 ! lymphatic part of lymphoid system -relationship: part_of EMAP:8701 ! TS24,cardiovascular system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8818 -name: TS24,jugular lymph sac -namespace: mouse_anatomy_stages -is_a: UBERON:0011765 ! jugular lymph sac -relationship: part_of EMAP:8817 ! TS24,lymphatic system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011765 ! jugular lymph sac -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8819 -name: TS24,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:8701 ! TS24,cardiovascular system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:882 -name: TS14,arterial system -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:881 ! TS14,cardiovascular system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8820 -name: TS24,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0013146 ! venous system of brain -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0013146 ! venous system of brain -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8821 -name: TS24,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005720 ! hindbrain venous system -relationship: part_of EMAP:8820 ! TS24,brain,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005720 ! hindbrain venous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8822 -name: TS24,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8821 ! TS24,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005720 ! hindbrain venous system - -[Term] -id: EMAP:8823 -name: TS24,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005486 ! venous dural sinus -relationship: part_of EMAP:8822 ! TS24,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005486 ! venous dural sinus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8826 -name: TS24,transverse,venous dural,sinus,hindbrain,brain,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001641 ! transverse sinus -relationship: part_of EMAP:8823 ! TS24,venous dural,sinus,hindbrain,brain,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001641 ! transverse sinus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8827 -name: TS24,azygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001594 ! azygos vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001594 ! azygos vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8828 -name: TS24,axillary vein -namespace: mouse_anatomy_stages -is_a: UBERON:0000985 ! axillary vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000985 ! axillary vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8829 -name: TS24,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006356 ! epigastric vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006356 ! epigastric vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:883 -name: TS14,1st arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003118 ! aortic arch 1 -relationship: part_of EMAP:882 ! TS14,arterial system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003118 ! aortic arch 1 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8830 -name: TS24,inferior,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007154 ! inferior epigastric vein -relationship: part_of EMAP:8829 ! TS24,epigastric vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007154 ! inferior epigastric vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8831 -name: TS24,superior,epigastric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007155 ! superior epigastric vein -relationship: part_of EMAP:8829 ! TS24,epigastric vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007155 ! superior epigastric vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8832 -name: TS24,intercostal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0012197 ! intercostal vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0012197 ! intercostal vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8833 -name: TS24,common iliac vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001139 ! common iliac vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8834 -name: TS24,ductus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002083 ! ductus venosus -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8835 -name: TS24,jugular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004711 ! jugular vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004711 ! jugular vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8836 -name: TS24,external,jugular vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8835 ! TS24,jugular vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004711 ! jugular vein - -[Term] -id: EMAP:8837 -name: TS24,internal,jugular vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8835 ! TS24,jugular vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004711 ! jugular vein - -[Term] -id: EMAP:8838 -name: TS24,femoral vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001361 ! femoral vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8839 -name: TS24,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:884 -name: TS14,2nd arch artery -namespace: mouse_anatomy_stages -is_a: UBERON:0003119 ! aortic arch 2 -relationship: part_of EMAP:882 ! TS14,arterial system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003119 ! aortic arch 2 -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8840 -name: TS24,left,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8839 ! TS24,hepatico-cardiac vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:8841 -name: TS24,right,hepatico-cardiac vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8839 ! TS24,hepatico-cardiac vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:8842 -name: TS24,hemiazygos vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006663 ! hemiazygos vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006663 ! hemiazygos vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8843 -name: TS24,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0004087 ! vena cava -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004087 ! vena cava -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8844 -name: TS24,inferior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001072 ! inferior vena cava -relationship: part_of EMAP:8843 ! TS24,vena cava -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001072 ! inferior vena cava -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8845 -name: TS24,post-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8844 ! TS24,inferior,vena cava -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:8846 -name: TS24,pre-hepatic part,inferior,vena cava -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8844 ! TS24,inferior,vena cava -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001072 ! inferior vena cava - -[Term] -id: EMAP:8847 -name: TS24,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0001585 ! anterior vena cava -relationship: part_of EMAP:8843 ! TS24,vena cava -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8848 -name: TS24,left,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006765 ! left anterior vena cava -relationship: part_of EMAP:8847 ! TS24,superior,vena cava -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006765 ! left anterior vena cava -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8849 -name: TS24,right,superior,vena cava -namespace: mouse_anatomy_stages -is_a: UBERON:0006766 ! right anterior vena cava -relationship: part_of EMAP:8847 ! TS24,superior,vena cava -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006766 ! right anterior vena cava -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:885 -name: TS14,dorsal aorta -namespace: mouse_anatomy_stages -relationship: part_of EMAP:882 ! TS14,arterial system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004572 ! arterial system - -[Term] -id: EMAP:8851 -name: TS24,internal thoracic vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001589 ! internal thoracic vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001589 ! internal thoracic vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8852 -name: TS24,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005617 ! mesenteric vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8853 -name: TS24,inferior,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001215 ! inferior mesenteric vein -relationship: part_of EMAP:8852 ! TS24,mesenteric vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001215 ! inferior mesenteric vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8854 -name: TS24,superior,mesenteric vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001138 ! superior mesenteric vein -relationship: part_of EMAP:8852 ! TS24,mesenteric vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001138 ! superior mesenteric vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8855 -name: TS24,ovarian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001145 ! ovarian vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001145 ! ovarian vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8856 -name: TS24,portal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002017 ! portal vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002017 ! portal vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8857 -name: TS24,principal vein of forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006351 ! principal vein of forelimb -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8858 -name: TS24,principal vein of hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0006353 ! principal vein of hindlimb -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8859 -name: TS24,pulmonary vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002016 ! pulmonary vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:886 -name: TS14,common,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005599 ! common dorsal aorta -relationship: part_of EMAP:885 ! TS14,dorsal aorta -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8860 -name: TS24,spinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006686 ! spinal vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006686 ! spinal vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8861 -name: TS24,subclavian vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001587 ! subclavian vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8862 -name: TS24,superior vesical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006355 ! superior vesical vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006355 ! superior vesical vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8863 -name: TS24,testicular vein -namespace: mouse_anatomy_stages -is_a: UBERON:0001144 ! testicular vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001144 ! testicular vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8864 -name: TS24,thyroid vein -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:8865 -name: TS24,inferior,thyroid vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007156 ! inferior thyroid vein -relationship: part_of EMAP:8864 ! TS24,thyroid vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007156 ! inferior thyroid vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8866 -name: TS24,superior,thyroid vein -namespace: mouse_anatomy_stages -is_a: UBERON:0007157 ! superior thyroid vein -relationship: part_of EMAP:8864 ! TS24,thyroid vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007157 ! superior thyroid vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8867 -name: TS24,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:8819 ! TS24,venous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8868 -name: TS24,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:8867 ! TS24,umbilical vein -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8869 -name: TS24,gland,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0002530 ! gland -relationship: part_of EMAP:8440 ! TS24,organ system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002530 ! gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:887 -name: TS14,left,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005613 ! left dorsal aorta -relationship: part_of EMAP:885 ! TS14,dorsal aorta -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8870 -name: TS24,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0002369 ! adrenal gland -relationship: part_of EMAP:8869 ! TS24,gland,organ system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8871 -name: TS24,cortex,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001235 ! adrenal cortex -relationship: part_of EMAP:8870 ! TS24,adrenal gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8872 -name: TS24,medulla,adrenal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001236 ! adrenal medulla -relationship: part_of EMAP:8870 ! TS24,adrenal gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8873 -name: TS24,haemolymphoid system -namespace: mouse_anatomy_stages -is_a: UBERON:0002193 ! hemolymphoid system -relationship: part_of EMAP:8440 ! TS24,organ system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002193 ! hemolymphoid system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8874 -name: TS24,gland,haemolymphoid system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8873 ! TS24,haemolymphoid system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002193 ! hemolymphoid system - -[Term] -id: EMAP:8875 -name: TS24,spleen -namespace: mouse_anatomy_stages -is_a: UBERON:0002106 ! spleen -relationship: part_of EMAP:8874 ! TS24,gland,haemolymphoid system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002106 ! spleen -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8876 -name: TS24,thymus -namespace: mouse_anatomy_stages -is_a: UBERON:0002370 ! thymus -relationship: part_of EMAP:8874 ! TS24,gland,haemolymphoid system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002370 ! thymus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8877 -name: TS24,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0002416 ! integumental system -relationship: part_of EMAP:8440 ! TS24,organ system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002416 ! integumental system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8878 -name: TS24,gland,integumental system -namespace: mouse_anatomy_stages -is_a: UBERON:0003297 ! gland of integumental system -relationship: part_of EMAP:8877 ! TS24,integumental system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8879 -name: TS24,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001911 ! mammary gland -relationship: part_of EMAP:8878 ! TS24,gland,integumental system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:888 -name: TS14,right,dorsal aorta -namespace: mouse_anatomy_stages -is_a: UBERON:0005622 ! right dorsal aorta -relationship: part_of EMAP:885 ! TS14,dorsal aorta -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8880 -name: TS24,epithelium,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003244 ! epithelium of mammary gland -relationship: part_of EMAP:8879 ! TS24,mammary gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8881 -name: TS24,mesenchyme,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003326 ! mesenchyme of mammary gland -relationship: part_of EMAP:8879 ! TS24,mammary gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003326 ! mesenchyme of mammary gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8882 -name: TS24,ridge,mammary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0008425 ! mammary ridge -relationship: part_of EMAP:8879 ! TS24,mammary gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0008425 ! mammary ridge -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8883 -name: TS24,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0001037 ! strand of hair -relationship: part_of EMAP:8877 ! TS24,integumental system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001037 ! strand of hair -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8884 -name: TS24,bulb,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0005932 ! bulb of hair follicle -relationship: part_of EMAP:8883 ! TS24,hair -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005932 ! bulb of hair follicle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8885 -name: TS24,follicle,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0002073 ! hair follicle -relationship: part_of EMAP:8883 ! TS24,hair -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002073 ! hair follicle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8886 -name: TS24,root sheath,hair -namespace: mouse_anatomy_stages -is_a: UBERON:0005933 ! hair root sheath -relationship: part_of EMAP:8883 ! TS24,hair -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005933 ! hair root sheath -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8887 -name: TS24,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8877 ! TS24,integumental system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:8888 -name: TS24,dermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8887 ! TS24,physiological umbilical hernia -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:8889 -name: TS24,epidermis,physiological umbilical hernia -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8887 ! TS24,physiological umbilical hernia -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002416 ! integumental system - -[Term] -id: EMAP:889 -name: TS14,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001532 ! internal carotid artery -relationship: part_of EMAP:882 ! TS14,arterial system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8890 -name: TS24,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8877 ! TS24,integumental system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8891 -name: TS24,cervical sinus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8890 ! TS24,rest of skin -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8892 -name: TS24,dermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8890 ! TS24,rest of skin -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8893 -name: TS24,epidermis,rest of skin -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8890 ! TS24,rest of skin -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8894 -name: TS24,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8877 ! TS24,integumental system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8895 -name: TS24,dermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8894 ! TS24,vibrissa -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8896 -name: TS24,epidermal component,vibrissa -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8894 ! TS24,vibrissa -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8897 -name: TS24,nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001016 ! nervous system -relationship: part_of EMAP:8440 ! TS24,organ system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001016 ! nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8898 -name: TS24,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:8897 ! TS24,nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8899 -name: TS24,brain -namespace: mouse_anatomy_stages -is_a: UBERON:0000955 ! brain -relationship: part_of EMAP:8898 ! TS24,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000955 ! brain -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:89 -name: TS9,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:890 -name: TS14,left,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007142 ! left internal carotid artery -relationship: part_of EMAP:889 ! TS14,internal carotid artery -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007142 ! left internal carotid artery -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8900 -name: TS24,forebrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001890 ! forebrain -relationship: part_of EMAP:8899 ! TS24,brain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001890 ! forebrain -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8901 -name: TS24,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001894 ! diencephalon -relationship: part_of EMAP:8900 ! TS24,forebrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8902 -name: TS24,gland,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003296 ! gland of diencephalon -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8903 -name: TS24,pituitary -namespace: mouse_anatomy_stages -is_a: UBERON:0000007 ! pituitary gland -relationship: part_of EMAP:8902 ! TS24,gland,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8904 -name: TS24,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002196 ! adenohypophysis -relationship: part_of EMAP:8903 ! TS24,pituitary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8905 -name: TS24,pars anterior,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0006964 ! pars distalis of adenohypophysis -relationship: part_of EMAP:8904 ! TS24,adenohypophysis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8906 -name: TS24,pars intermedia,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis -relationship: part_of EMAP:8904 ! TS24,adenohypophysis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8907 -name: TS24,pars tuberalis,adenohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002433 ! pars tuberalis of adenohypophysis -relationship: part_of EMAP:8904 ! TS24,adenohypophysis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8908 -name: TS24,remnant of Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0006377 ! remnant of Rathke's pouch -relationship: part_of EMAP:8904 ! TS24,adenohypophysis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8909 -name: TS24,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002198 ! neurohypophysis -relationship: part_of EMAP:8903 ! TS24,pituitary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:891 -name: TS14,right,internal carotid artery -namespace: mouse_anatomy_stages -is_a: UBERON:0007143 ! right internal carotid artery -relationship: part_of EMAP:889 ! TS14,internal carotid artery -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0007143 ! right internal carotid artery -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8910 -name: TS24,infundibulum,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002434 ! pituitary stalk -relationship: part_of EMAP:8909 ! TS24,neurohypophysis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8911 -name: TS24,median eminence,neurohypophysis -namespace: mouse_anatomy_stages -is_a: UBERON:0002197 ! median eminence of neurohypophysis -relationship: part_of EMAP:8909 ! TS24,neurohypophysis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8912 -name: TS24,pars nervosa,neurohypophysis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8909 ! TS24,neurohypophysis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8913 -name: TS24,3rd ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002286 ! third ventricle -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8914 -name: TS24,diencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006220 ! diencephalic part of interventricular foramen -relationship: part_of EMAP:8913 ! TS24,3rd ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8915 -name: TS24,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001899 ! epithalamus -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8916 -name: TS24,mantle layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013159 ! epithalamus mantle layer -relationship: part_of EMAP:8915 ! TS24,epithalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8917 -name: TS24,marginal layer,epithalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8915 ! TS24,epithalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:8918 -name: TS24,ventricular layer,epithalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0013160 ! epithalamus ventricular layer -relationship: part_of EMAP:8915 ! TS24,epithalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8919 -name: TS24,epithalamic recess -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8915 ! TS24,epithalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:892 -name: TS14,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:882 ! TS14,arterial system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8920 -name: TS24,choroid plexus,epithalamic recess -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8919 ! TS24,epithalamic recess -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001899 ! epithalamus - -[Term] -id: EMAP:8921 -name: TS24,pineal gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001905 ! pineal body -relationship: part_of EMAP:8915 ! TS24,epithalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001905 ! pineal body -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8922 -name: TS24,floorplate,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8923 -name: TS24,hypothalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001898 ! hypothalamus -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8924 -name: TS24,mantle layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8923 ! TS24,hypothalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:8925 -name: TS24,marginal layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8923 ! TS24,hypothalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:8926 -name: TS24,ventricular layer,hypothalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8923 ! TS24,hypothalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001898 ! hypothalamus - -[Term] -id: EMAP:8927 -name: TS24,internal capsule,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001887 ! internal capsule -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001887 ! internal capsule -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8928 -name: TS24,lamina terminalis,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005078 ! lamina terminalis -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005078 ! lamina terminalis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8929 -name: TS24,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005591 ! diencephalon lateral wall -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:893 -name: TS14,left,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005458 ! left umbilical artery -relationship: part_of EMAP:892 ! TS14,umbilical artery -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8930 -name: TS24,mantle layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009580 ! diencephalon mantle layer -relationship: part_of EMAP:8929 ! TS24,lateral wall,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8931 -name: TS24,marginal layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8929 ! TS24,lateral wall,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:8932 -name: TS24,ventricular layer,lateral wall,diencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8929 ! TS24,lateral wall,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005591 ! diencephalon lateral wall - -[Term] -id: EMAP:8933 -name: TS24,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003290 ! meninx of diencephalon -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8934 -name: TS24,arachnoid mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:8933 ! TS24,meninges,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8935 -name: TS24,dura mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:8933 ! TS24,meninges,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8936 -name: TS24,pia mater,meninges,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:8933 ! TS24,meninges,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8937 -name: TS24,roof plate,diencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003301 ! roof plate of diencephalon -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8938 -name: TS24,thalamus -namespace: mouse_anatomy_stages -is_a: UBERON:0001897 ! thalamus -relationship: part_of EMAP:8901 ! TS24,diencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001897 ! thalamus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8939 -name: TS24,interthalamic adhesion -namespace: mouse_anatomy_stages -is_a: UBERON:0006681 ! interthalamic adhesion -relationship: part_of EMAP:8938 ! TS24,thalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006681 ! interthalamic adhesion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:894 -name: TS14,right,umbilical artery -namespace: mouse_anatomy_stages -is_a: UBERON:0005470 ! right umbilical artery -relationship: part_of EMAP:892 ! TS14,umbilical artery -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8940 -name: TS24,mantle layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8938 ! TS24,thalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:8941 -name: TS24,marginal layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8938 ! TS24,thalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:8942 -name: TS24,ventricular layer,thalamus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8938 ! TS24,thalamus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001897 ! thalamus - -[Term] -id: EMAP:8943 -name: TS24,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001893 ! telencephalon -relationship: part_of EMAP:8900 ! TS24,forebrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8944 -name: TS24,cerebral cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0000956 ! cerebral cortex -relationship: part_of EMAP:8943 ! TS24,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8945 -name: TS24,mantle layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8944 ! TS24,cerebral cortex -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:8946 -name: TS24,marginal layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8944 ! TS24,cerebral cortex -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:8947 -name: TS24,ventricular layer,cerebral cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8944 ! TS24,cerebral cortex -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000956 ! cerebral cortex - -[Term] -id: EMAP:8948 -name: TS24,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:8943 ! TS24,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8949 -name: TS24,choroid fissure,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002192 ! ventricular system choroidal fissure -relationship: part_of EMAP:8948 ! TS24,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:895 -name: TS14,vitelline artery -namespace: mouse_anatomy_stages -is_a: UBERON:0006002 ! vitelline artery -relationship: part_of EMAP:882 ! TS14,arterial system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8950 -name: TS24,choroid plexus,choroid invagination,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8948 ! TS24,choroid invagination,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002192 ! ventricular system choroidal fissure - -[Term] -id: EMAP:8951 -name: TS24,corpus striatum -namespace: mouse_anatomy_stages -is_a: UBERON:0000369 ! corpus striatum -relationship: part_of EMAP:8943 ! TS24,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8952 -name: TS24,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001873 ! caudate nucleus -relationship: part_of EMAP:8951 ! TS24,corpus striatum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8953 -name: TS24,head,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002626 ! head of caudate nucleus -relationship: part_of EMAP:8952 ! TS24,caudate nucleus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002626 ! head of caudate nucleus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8954 -name: TS24,tail,caudate nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002628 ! tail of caudate nucleus -relationship: part_of EMAP:8952 ! TS24,caudate nucleus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002628 ! tail of caudate nucleus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8955 -name: TS24,lentiform nucleus -namespace: mouse_anatomy_stages -is_a: UBERON:0002263 ! lentiform nucleus -relationship: part_of EMAP:8951 ! TS24,corpus striatum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8956 -name: TS24,lateral ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0009676 ! early telencephalic vesicle -relationship: part_of EMAP:8943 ! TS24,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8957 -name: TS24,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8956 ! TS24,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8958 -name: TS24,choroid plexus,anterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8957 ! TS24,anterior horn,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8959 -name: TS24,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8956 ! TS24,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:896 -name: TS14,blood -namespace: mouse_anatomy_stages -is_a: UBERON:0000178 ! blood -relationship: part_of EMAP:881 ! TS14,cardiovascular system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000178 ! blood -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8960 -name: TS24,choroid plexus,inferior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8959 ! TS24,inferior horn,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8961 -name: TS24,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8956 ! TS24,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8962 -name: TS24,choroid plexus,posterior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8961 ! TS24,posterior horn,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8963 -name: TS24,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8956 ! TS24,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8964 -name: TS24,choroid plexus,superior horn,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8963 ! TS24,superior horn,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8965 -name: TS24,telencephalic part of interventricular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006301 ! telencephalic part of interventricular foramen -relationship: part_of EMAP:8956 ! TS24,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8967 -name: TS24,head,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8956 ! TS24,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8968 -name: TS24,choroid plexus,head,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8967 ! TS24,head,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8969 -name: TS24,tail,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8956 ! TS24,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:897 -name: TS14,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0000948 ! heart -relationship: part_of EMAP:881 ! TS14,cardiovascular system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000948 ! heart -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8970 -name: TS24,choroid plexus,tail,lateral ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8969 ! TS24,tail,lateral ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EMAP:8973 -name: TS24,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003289 ! meninx of telencephalon -relationship: part_of EMAP:8943 ! TS24,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8974 -name: TS24,arachnoid mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003556 ! forebrain arachnoid mater -relationship: part_of EMAP:8973 ! TS24,meninges,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8975 -name: TS24,dura mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0002363 ! dura mater -relationship: part_of EMAP:8973 ! TS24,meninges,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002363 ! dura mater -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8976 -name: TS24,falx cerebri -namespace: mouse_anatomy_stages -is_a: UBERON:0006059 ! falx cerebri -relationship: part_of EMAP:8975 ! TS24,dura mater,meninges,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006059 ! falx cerebri -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8977 -name: TS24,pia mater,meninges,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0003550 ! forebrain pia mater -relationship: part_of EMAP:8973 ! TS24,meninges,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8978 -name: TS24,olfactory lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005366 ! olfactory lobe -relationship: part_of EMAP:8943 ! TS24,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005366 ! olfactory lobe -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8979 -name: TS24,olfactory cortex -namespace: mouse_anatomy_stages -is_a: UBERON:0002894 ! olfactory cortex -relationship: part_of EMAP:8978 ! TS24,olfactory lobe,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:898 -name: TS14,atrio-ventricular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0002087 ! atrioventricular canal -relationship: part_of EMAP:897 ! TS14,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8980 -name: TS24,mantle layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8979 ! TS24,olfactory cortex -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:8981 -name: TS24,marginal layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8979 ! TS24,olfactory cortex -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:8982 -name: TS24,ventricular layer,olfactory cortex -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8979 ! TS24,olfactory cortex -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002894 ! olfactory cortex - -[Term] -id: EMAP:8984 -name: TS24,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002028 ! hindbrain -relationship: part_of EMAP:8899 ! TS24,brain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8985 -name: TS24,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0002422 ! fourth ventricle -relationship: part_of EMAP:8984 ! TS24,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8986 -name: TS24,lateral recess,4th ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0007656 ! lateral recess of fourth ventricle -relationship: part_of EMAP:8985 ! TS24,4th ventricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8987 -name: TS24,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0001896 ! medulla oblongata -relationship: part_of EMAP:8984 ! TS24,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8988 -name: TS24,floor plate,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0003311 ! floor plate of medulla oblongata -relationship: part_of EMAP:8987 ! TS24,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8989 -name: TS24,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8987 ! TS24,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:899 -name: TS14,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0004706 ! bulbus cordis -relationship: part_of EMAP:897 ! TS14,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:8990 -name: TS24,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8989 ! TS24,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:8991 -name: TS24,mantle layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8990 ! TS24,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:8992 -name: TS24,marginal layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8990 ! TS24,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:8993 -name: TS24,ventricular layer,alar plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8990 ! TS24,alar plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:8994 -name: TS24,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0005240 ! basal plate medulla oblongata -relationship: part_of EMAP:8989 ! TS24,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:8995 -name: TS24,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8994 ! TS24,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:8996 -name: TS24,mantle layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8995 ! TS24,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:8997 -name: TS24,marginal layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8995 ! TS24,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:8998 -name: TS24,ventricular layer,rest of basal plate,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8995 ! TS24,rest of basal plate,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:8999 -name: TS24,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8994 ! TS24,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:9 -name: TS3,compacted morula -namespace: mouse_anatomy_stages -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000006 ! Theiler stage 03 - -[Term] -id: EMAP:90 -name: TS9,cavities -namespace: mouse_anatomy_stages -is_a: UBERON:0012466 ! extraembryonic cavities -relationship: part_of EMAP:89 ! TS9,extraembryonic component -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0012466 ! extraembryonic cavities -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:900 -name: TS14,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:899 ! TS14,bulbus cordis -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:9000 -name: TS24,mantle layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8999 ! TS24,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:9001 -name: TS24,marginal layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8999 ! TS24,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:9002 -name: TS24,ventricular layer,medullary raphe,basal plate,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8999 ! TS24,medullary raphe,basal plate,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005240 ! basal plate medulla oblongata - -[Term] -id: EMAP:9003 -name: TS24,sulcus limitans,lateral wall,medulla oblongata -namespace: mouse_anatomy_stages -is_a: UBERON:0009576 ! medulla oblongata sulcus limitans -relationship: part_of EMAP:8989 ! TS24,lateral wall,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9004 -name: TS24,roof,medulla oblongata -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8987 ! TS24,medulla oblongata -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001896 ! medulla oblongata - -[Term] -id: EMAP:9005 -name: TS24,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003291 ! meninx of hindbrain -relationship: part_of EMAP:8984 ! TS24,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9006 -name: TS24,arachnoid mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003559 ! hindbrain arachnoid mater -relationship: part_of EMAP:9005 ! TS24,meninges,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003559 ! hindbrain arachnoid mater -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9007 -name: TS24,dura mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:9005 ! TS24,meninges,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9008 -name: TS24,tentorium cerebelli -namespace: mouse_anatomy_stages -is_a: UBERON:0006691 ! tentorium cerebelli -relationship: part_of EMAP:9007 ! TS24,dura mater,meninges,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006691 ! tentorium cerebelli -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9009 -name: TS24,pia mater,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003554 ! hindbrain pia mater -relationship: part_of EMAP:9005 ! TS24,meninges,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:901 -name: TS14,cardiac jelly,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:900 ! TS14,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:9010 -name: TS24,subarachnoid space,meninges,hindbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005219 ! hindbrain subarachnoid space -relationship: part_of EMAP:9005 ! TS24,meninges,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005219 ! hindbrain subarachnoid space -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9011 -name: TS24,pontine cistern -namespace: mouse_anatomy_stages -is_a: UBERON:0004048 ! pontine cistern -relationship: part_of EMAP:9010 ! TS24,subarachnoid space,meninges,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004048 ! pontine cistern -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9012 -name: TS24,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001895 ! metencephalon -relationship: part_of EMAP:8984 ! TS24,hindbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9013 -name: TS24,floorplate,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9012 ! TS24,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9014 -name: TS24,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9012 ! TS24,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:9015 -name: TS24,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9014 ! TS24,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:9016 -name: TS24,cerebellum -namespace: mouse_anatomy_stages -is_a: UBERON:0002037 ! cerebellum -relationship: part_of EMAP:9015 ! TS24,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9017 -name: TS24,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9016 ! TS24,cerebellum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:9018 -name: TS24,mantle layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9017 ! TS24,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:9019 -name: TS24,marginal layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9017 ! TS24,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:902 -name: TS14,endocardial tube,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:900 ! TS14,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:9020 -name: TS24,ventricular layer,intraventricular portion,cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9017 ! TS24,intraventricular portion,cerebellum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:9021 -name: TS24,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9016 ! TS24,cerebellum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:9022 -name: TS24,mantle layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9021 ! TS24,rest of cerebellum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:9023 -name: TS24,marginal layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9021 ! TS24,rest of cerebellum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:9024 -name: TS24,ventricular layer,rest of cerebellum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9021 ! TS24,rest of cerebellum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002037 ! cerebellum - -[Term] -id: EMAP:9025 -name: TS24,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9015 ! TS24,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:9026 -name: TS24,mantle layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9025 ! TS24,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:9027 -name: TS24,marginal layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9025 ! TS24,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:9028 -name: TS24,ventricular layer,rest of alar plate,alar plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9025 ! TS24,rest of alar plate,alar plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:9029 -name: TS24,basal plate,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0005239 ! basal plate metencephalon -relationship: part_of EMAP:9014 ! TS24,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:903 -name: TS14,cardiac muscle,caudal half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:900 ! TS14,caudal half,bulbus cordis -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004706 ! bulbus cordis - -[Term] -id: EMAP:9030 -name: TS24,pons -namespace: mouse_anatomy_stages -is_a: UBERON:0000988 ! pons -relationship: part_of EMAP:9029 ! TS24,basal plate,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000988 ! pons -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9031 -name: TS24,mantle layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9030 ! TS24,pons -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:9032 -name: TS24,marginal layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9030 ! TS24,pons -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:9033 -name: TS24,ventricular layer,pons -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9030 ! TS24,pons -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000988 ! pons - -[Term] -id: EMAP:9034 -name: TS24,sulcus limitans,lateral wall,metencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0009577 ! metencephalon sulcus limitans -relationship: part_of EMAP:9014 ! TS24,lateral wall,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9035 -name: TS24,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9012 ! TS24,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:9036 -name: TS24,choroid plexus,roof,metencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9035 ! TS24,roof,metencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001895 ! metencephalon - -[Term] -id: EMAP:904 -name: TS14,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -is_a: UBERON:0006060 ! conotruncus -relationship: part_of EMAP:899 ! TS14,bulbus cordis -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006060 ! conotruncus -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9042 -name: TS24,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001891 ! midbrain -relationship: part_of EMAP:8899 ! TS24,brain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001891 ! midbrain -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9043 -name: TS24,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003288 ! meninx of midbrain -relationship: part_of EMAP:9042 ! TS24,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9044 -name: TS24,arachnoid mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003557 ! midbrain arachnoid mater -relationship: part_of EMAP:9043 ! TS24,meninges,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003557 ! midbrain arachnoid mater -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9045 -name: TS24,dura mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0002092 ! brain dura mater -relationship: part_of EMAP:9043 ! TS24,meninges,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9046 -name: TS24,pia mater,meninges,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003551 ! midbrain pia mater -relationship: part_of EMAP:9043 ! TS24,meninges,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9047 -name: TS24,cerebral aqueduct -namespace: mouse_anatomy_stages -is_a: UBERON:0002289 ! midbrain cerebral aqueduct -relationship: part_of EMAP:9042 ! TS24,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9048 -name: TS24,floorplate,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9042 ! TS24,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9049 -name: TS24,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0005495 ! midbrain lateral wall -relationship: part_of EMAP:9042 ! TS24,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:905 -name: TS14,cardiac jelly,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:904 ! TS14,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:9050 -name: TS24,mantle layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0009581 ! midbrain mantle layer -relationship: part_of EMAP:9049 ! TS24,lateral wall,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9051 -name: TS24,marginal layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9049 ! TS24,lateral wall,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:9052 -name: TS24,ventricular layer,lateral wall,midbrain -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9049 ! TS24,lateral wall,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005495 ! midbrain lateral wall - -[Term] -id: EMAP:9053 -name: TS24,roof plate,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0003299 ! roof plate of midbrain -relationship: part_of EMAP:9042 ! TS24,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9054 -name: TS24,tegmentum,midbrain -namespace: mouse_anatomy_stages -is_a: UBERON:0001943 ! midbrain tegmentum -relationship: part_of EMAP:9042 ! TS24,midbrain -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9055 -name: TS24,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0003339 ! ganglion of central nervous system -relationship: part_of EMAP:8898 ! TS24,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9056 -name: TS24,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001714 ! cranial ganglion -relationship: part_of EMAP:9055 ! TS24,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9057 -name: TS24,facial VII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001700 ! geniculate ganglion -relationship: part_of EMAP:9056 ! TS24,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9058 -name: TS24,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001701 ! glossopharyngeal ganglion -relationship: part_of EMAP:9056 ! TS24,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9059 -name: TS24,inferior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9058 ! TS24,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:906 -name: TS14,endocardial tube,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:904 ! TS14,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:9060 -name: TS24,superior,glossopharyngeal IX,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9058 ! TS24,glossopharyngeal IX,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: EMAP:9061 -name: TS24,trigeminal V,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001675 ! trigeminal ganglion -relationship: part_of EMAP:9056 ! TS24,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9062 -name: TS24,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005362 ! vagus X ganglion -relationship: part_of EMAP:9056 ! TS24,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9063 -name: TS24,inferior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005363 ! inferior vagus X ganglion -relationship: part_of EMAP:9062 ! TS24,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9064 -name: TS24,superior,vagus X,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0005364 ! superior vagus X ganglion -relationship: part_of EMAP:9062 ! TS24,vagus X,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9065 -name: TS24,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002827 ! auditory ganglion -relationship: part_of EMAP:9056 ! TS24,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002827 ! auditory ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9066 -name: TS24,cochlear component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9065 ! TS24,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002827 ! auditory ganglion - -[Term] -id: EMAP:9067 -name: TS24,vestibular component,vestibulocochlear VIII,cranial,ganglion,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002824 ! vestibular ganglion -relationship: part_of EMAP:9065 ! TS24,vestibulocochlear VIII,cranial,ganglion,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9068 -name: TS24,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:8898 ! TS24,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9069 -name: TS24,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001785 ! cranial nerve -relationship: part_of EMAP:9068 ! TS24,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:907 -name: TS14,cardiac muscle,rostral half,bulbus cordis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:904 ! TS14,rostral half,bulbus cordis -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006060 ! conotruncus - -[Term] -id: EMAP:9070 -name: TS24,abducent VI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001785 ! cranial nerve - -[Term] -id: EMAP:9071 -name: TS24,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0002019 ! accessory XI nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9072 -name: TS24,cranial component,accessory XI -namespace: mouse_anatomy_stages -is_a: UBERON:0009673 ! accessory XI nerve cranial component -relationship: part_of EMAP:9071 ! TS24,accessory XI -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9073 -name: TS24,spinal component,accessory XI -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9071 ! TS24,accessory XI -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002019 ! accessory XI nerve - -[Term] -id: EMAP:9074 -name: TS24,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001647 ! facial nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9075 -name: TS24,chorda tympani branch,facial VII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0009675 ! facial VII nerve chorda tympani branch -relationship: part_of EMAP:9074 ! TS24,facial VII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009675 ! facial VII nerve chorda tympani branch -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9076 -name: TS24,glossopharyngeal IX,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001649 ! glossopharyngeal nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9077 -name: TS24,hypoglossal XII -namespace: mouse_anatomy_stages -is_a: UBERON:0001650 ! hypoglossal nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9078 -name: TS24,oculomotor III -namespace: mouse_anatomy_stages -is_a: UBERON:0001643 ! oculomotor nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9079 -name: TS24,olfactory I -namespace: mouse_anatomy_stages -is_a: UBERON:0001579 ! olfactory nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:908 -name: TS14,common atrial chamber -namespace: mouse_anatomy_stages -is_a: UBERON:0006218 ! common atrial chamber -relationship: part_of EMAP:897 ! TS14,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006218 ! common atrial chamber -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9080 -name: TS24,optic II -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9081 -name: TS24,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001645 ! trigeminal nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9082 -name: TS24,mandibular division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9081 ! TS24,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:9083 -name: TS24,maxillary division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9081 ! TS24,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001645 ! trigeminal nerve - -[Term] -id: EMAP:9084 -name: TS24,ophthalmic division,trigeminal V,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000348 ! ophthalmic nerve -relationship: part_of EMAP:9081 ! TS24,trigeminal V,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9085 -name: TS24,trochlear IV -namespace: mouse_anatomy_stages -is_a: UBERON:0001644 ! trochlear nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9086 -name: TS24,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001648 ! vestibulocochlear nerve -relationship: part_of EMAP:9069 ! TS24,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9087 -name: TS24,cochlear component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9086 ! TS24,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:9088 -name: TS24,vestibular component,vestibulocochlear VIII,cranial,nerve,central nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9086 ! TS24,vestibulocochlear VIII,cranial,nerve,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: EMAP:9089 -name: TS24,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:8898 ! TS24,central nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:909 -name: TS14,cardiac jelly,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:908 ! TS14,common atrial chamber -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:9090 -name: TS24,conus medullaris,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005437 ! conus medullaris -relationship: part_of EMAP:9089 ! TS24,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005437 ! conus medullaris -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9091 -name: TS24,filum terminale,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005443 ! filum terminale -relationship: part_of EMAP:9089 ! TS24,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005443 ! filum terminale -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9092 -name: TS24,floorplate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9089 ! TS24,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9093 -name: TS24,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009582 ! spinal cord lateral wall -relationship: part_of EMAP:9089 ! TS24,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9094 -name: TS24,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009583 ! spinal cord mantle layer -relationship: part_of EMAP:9093 ! TS24,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009583 ! spinal cord mantle layer -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9095 -name: TS24,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0004063 ! spinal cord alar plate -relationship: part_of EMAP:9094 ! TS24,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9096 -name: TS24,dorsal grey horn,alar columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002256 ! dorsal horn of spinal cord -relationship: part_of EMAP:9095 ! TS24,alar columns,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9097 -name: TS24,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9094 ! TS24,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:9098 -name: TS24,ventral grey horn,basal columns,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002257 ! ventral horn of spinal cord -relationship: part_of EMAP:9097 ! TS24,basal columns,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9099 -name: TS24,intermediate grey horn,mantle layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9094 ! TS24,mantle layer,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009583 ! spinal cord mantle layer - -[Term] -id: EMAP:91 -name: TS9,extraembryonic component of the proamniotic cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:90 ! TS9,cavities -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -relationship: part_of UBERON:0012466 ! extraembryonic cavities - -[Term] -id: EMAP:910 -name: TS14,endocardial tube,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:908 ! TS14,common atrial chamber -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:9100 -name: TS24,marginal layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9093 ! TS24,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009582 ! spinal cord lateral wall - -[Term] -id: EMAP:9101 -name: TS24,sulcus limitans,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0009570 ! spinal cord sulcus limitans -relationship: part_of EMAP:9093 ! TS24,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9102 -name: TS24,ventricular layer,lateral wall,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005359 ! spinal cord ependyma -relationship: part_of EMAP:9093 ! TS24,lateral wall,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9103 -name: TS24,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003292 ! meninx of spinal cord -relationship: part_of EMAP:9089 ! TS24,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9104 -name: TS24,arachnoid mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003560 ! spinal cord arachnoid mater -relationship: part_of EMAP:9103 ! TS24,meninges,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003560 ! spinal cord arachnoid mater -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9105 -name: TS24,dura mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0002093 ! spinal dura mater -relationship: part_of EMAP:9103 ! TS24,meninges,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9106 -name: TS24,pia mater,meninges,spinal cord -namespace: mouse_anatomy_stages -is_a: UBERON:0003555 ! spinal cord pia mater -relationship: part_of EMAP:9103 ! TS24,meninges,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9107 -name: TS24,roof plate,spinal cord -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9089 ! TS24,spinal cord -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002240 ! spinal cord - -[Term] -id: EMAP:911 -name: TS14,cardiac muscle,common atrial chamber -namespace: mouse_anatomy_stages -relationship: part_of EMAP:908 ! TS14,common atrial chamber -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006218 ! common atrial chamber - -[Term] -id: EMAP:9110 -name: TS24,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -is_a: UBERON:0001871 ! temporal lobe -relationship: part_of EMAP:8943 ! TS24,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001871 ! temporal lobe -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9111 -name: TS24,marginal layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9110 ! TS24,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:9112 -name: TS24,ventricular layer,temporal lobe,telencephalon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9110 ! TS24,temporal lobe,telencephalon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001871 ! temporal lobe - -[Term] -id: EMAP:9113 -name: TS24,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:8897 ! TS24,nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9114 -name: TS24,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002410 ! autonomic nervous system -relationship: part_of EMAP:9113 ! TS24,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9115 -name: TS24,ganglion,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:9114 ! TS24,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9116 -name: TS24,ciliary ganglion -namespace: mouse_anatomy_stages -is_a: UBERON:0002058 ! ciliary ganglion -relationship: part_of EMAP:9115 ! TS24,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002058 ! ciliary ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9117 -name: TS24,paraganglion of Zuckerkandl -namespace: mouse_anatomy_stages -is_a: UBERON:0001237 ! paraaortic body -relationship: part_of EMAP:9115 ! TS24,ganglion,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9118 -name: TS24,nerve plexus,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001816 ! autonomic nerve plexus -relationship: part_of EMAP:9114 ! TS24,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001816 ! autonomic nerve plexus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9119 -name: TS24,hypogastric plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005303 ! hypogastric nerve -relationship: part_of EMAP:9118 ! TS24,nerve plexus,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005303 ! hypogastric nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:912 -name: TS14,mesentery,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0003282 ! mesentery of heart -relationship: part_of EMAP:897 ! TS14,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9120 -name: TS24,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000011 ! parasympathetic nervous system -relationship: part_of EMAP:9114 ! TS24,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9121 -name: TS24,nerve,parasympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004293 ! parasympathetic nerve -relationship: part_of EMAP:9120 ! TS24,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9122 -name: TS24,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0006308 ! vagal X nerve trunk -relationship: part_of EMAP:9121 ! TS24,nerve,parasympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006308 ! vagal X nerve trunk -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9123 -name: TS24,left recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9122 ! TS24,vagal X nerve trunk -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9125 -name: TS24,right recurrent laryngeal branch,vagal X nerve trunk -namespace: mouse_anatomy_stages -is_a: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -relationship: part_of EMAP:9122 ! TS24,vagal X nerve trunk -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011767 ! vagus X nerve right recurrent laryngeal branch -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9127 -name: TS24,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000013 ! sympathetic nervous system -relationship: part_of EMAP:9114 ! TS24,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9128 -name: TS24,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001805 ! autonomic ganglion -relationship: part_of EMAP:9127 ! TS24,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9129 -name: TS24,cervico-thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002441 ! cervicothoracic ganglion -relationship: part_of EMAP:9128 ! TS24,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002441 ! cervicothoracic ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:913 -name: TS14,dorsal mesocardium -namespace: mouse_anatomy_stages -is_a: UBERON:0005601 ! dorsal mesocardium -relationship: part_of EMAP:912 ! TS14,mesentery,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9130 -name: TS24,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001991 ! cervical ganglion -relationship: part_of EMAP:9128 ! TS24,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9131 -name: TS24,inferior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0002440 ! inferior cervical ganglion -relationship: part_of EMAP:9130 ! TS24,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9134 -name: TS24,superior,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001989 ! superior cervical ganglion -relationship: part_of EMAP:9130 ! TS24,cervical,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9135 -name: TS24,thoracic,ganglion,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000961 ! thoracic ganglion -relationship: part_of EMAP:9128 ! TS24,ganglion,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9136 -name: TS24,nerve trunk,sympathetic,autonomic,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001147 ! trunk of peripheral nerve -relationship: part_of EMAP:9127 ! TS24,sympathetic,autonomic,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9137 -name: TS24,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001130 ! vertebral column -relationship: part_of EMAP:9113 ! TS24,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9138 -name: TS24,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9137 ! TS24,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001130 ! vertebral column - -[Term] -id: EMAP:9139 -name: TS24,dorsal root ganglion,ganglion,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:9138 ! TS24,ganglion,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:914 -name: TS14,transverse pericardial sinus -namespace: mouse_anatomy_stages -is_a: UBERON:0002248 ! transverse pericardial sinus -relationship: part_of EMAP:913 ! TS14,dorsal mesocardium -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9140 -name: TS24,nerve plexus,spinal,peripheral nervous system -namespace: mouse_anatomy_stages -is_a: UBERON:0001813 ! somatic nerve plexus -relationship: part_of EMAP:9137 ! TS24,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001813 ! somatic nerve plexus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9141 -name: TS24,brachial plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001814 ! brachial nerve plexus -relationship: part_of EMAP:9140 ! TS24,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9142 -name: TS24,median nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001148 ! median nerve -relationship: part_of EMAP:9141 ! TS24,brachial plexus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001148 ! median nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9143 -name: TS24,radial nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001492 ! radial nerve -relationship: part_of EMAP:9141 ! TS24,brachial plexus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9144 -name: TS24,ulnar nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001494 ! ulnar nerve -relationship: part_of EMAP:9141 ! TS24,brachial plexus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9145 -name: TS24,lumbo-sacral plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0001815 ! lumbosacral nerve plexus -relationship: part_of EMAP:9140 ! TS24,nerve plexus,spinal,peripheral nervous system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9146 -name: TS24,sciatic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001322 ! sciatic nerve -relationship: part_of EMAP:9145 ! TS24,lumbo-sacral plexus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001322 ! sciatic nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:915 -name: TS14,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0004145 ! outflow tract -relationship: part_of EMAP:897 ! TS14,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9152 -name: TS24,axillary nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0001493 ! axillary nerve -relationship: part_of EMAP:9141 ! TS24,brachial plexus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001493 ! axillary nerve -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9153 -name: TS24,sensory organ -namespace: mouse_anatomy_stages -is_a: UBERON:0000020 ! sense organ -relationship: part_of EMAP:8440 ! TS24,organ system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000020 ! sense organ -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9154 -name: TS24,ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001690 ! ear -relationship: part_of EMAP:9153 ! TS24,sensory organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001690 ! ear -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9155 -name: TS24,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001691 ! external ear -relationship: part_of EMAP:9154 ! TS24,ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001691 ! external ear -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9156 -name: TS24,external auditory meatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001352 ! external acoustic meatus -relationship: part_of EMAP:9155 ! TS24,external ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9157 -name: TS24,future tympanic membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0009213 ! pharyngeal membrane of 1st arch -relationship: part_of EMAP:9155 ! TS24,external ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9158 -name: TS24,epithelium,future tympanic membrane -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9157 ! TS24,future tympanic membrane -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0009213 ! pharyngeal membrane of 1st arch - -[Term] -id: EMAP:9159 -name: TS24,endothelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001986 ! endothelium -relationship: part_of EMAP:9157 ! TS24,future tympanic membrane -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001986 ! endothelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:916 -name: TS14,cardiac jelly,outflow tract,heart -namespace: mouse_anatomy_stages -is_a: UBERON:0005263 ! outflow tract cardiac jelly -relationship: part_of EMAP:915 ! TS14,outflow tract,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005263 ! outflow tract cardiac jelly -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9160 -name: TS24,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001757 ! pinna -relationship: part_of EMAP:9155 ! TS24,external ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001757 ! pinna -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9161 -name: TS24,cartilage condensation,pinna,external ear -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9160 ! TS24,pinna,external ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9162 -name: TS24,mesenchyme,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0003325 ! mesenchyme of pinna -relationship: part_of EMAP:9160 ! TS24,pinna,external ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9163 -name: TS24,surface epithelium,pinna,external ear -namespace: mouse_anatomy_stages -is_a: UBERON:0006938 ! pinna surface epithelium -relationship: part_of EMAP:9160 ! TS24,pinna,external ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9164 -name: TS24,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001846 ! internal ear -relationship: part_of EMAP:9154 ! TS24,ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001846 ! internal ear -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9165 -name: TS24,endolymphatic appendage -namespace: mouse_anatomy_stages -is_a: UBERON:0006226 ! endolymphatic appendage -relationship: part_of EMAP:9164 ! TS24,inner ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9166 -name: TS24,associated mesenchyme,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9165 ! TS24,endolymphatic appendage -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:9167 -name: TS24,epithelium,endolymphatic appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9165 ! TS24,endolymphatic appendage -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006226 ! endolymphatic appendage - -[Term] -id: EMAP:9168 -name: TS24,endolymphatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001860 ! endolymphatic duct -relationship: part_of EMAP:9164 ! TS24,inner ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9169 -name: TS24,associated mesenchyme,endolymphatic duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9168 ! TS24,endolymphatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001860 ! endolymphatic duct - -[Term] -id: EMAP:917 -name: TS14,endocardial tube,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:915 ! TS14,outflow tract,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:9170 -name: TS24,epithelium,endolymphatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003362 ! epithelium of endolymphatic duct -relationship: part_of EMAP:9168 ! TS24,endolymphatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003362 ! epithelium of endolymphatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9171 -name: TS24,labyrinth -namespace: mouse_anatomy_stages -is_a: UBERON:0001849 ! membranous labyrinth -relationship: part_of EMAP:9164 ! TS24,inner ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9172 -name: TS24,associated mesenchyme,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9171 ! TS24,labyrinth -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:9173 -name: TS24,epithelium,labyrinth -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9171 ! TS24,labyrinth -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001849 ! membranous labyrinth - -[Term] -id: EMAP:9174 -name: TS24,otic cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0005410 ! cartilaginous otic capsule -relationship: part_of EMAP:9164 ! TS24,inner ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9175 -name: TS24,vestibular component,inner ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001862 ! vestibular labyrinth -relationship: part_of EMAP:9164 ! TS24,inner ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9176 -name: TS24,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0001861 ! ductus reuniens -relationship: part_of EMAP:9175 ! TS24,vestibular component,inner ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9177 -name: TS24,associated mesenchyme,ductus reuniens -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9176 ! TS24,ductus reuniens -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001861 ! ductus reuniens - -[Term] -id: EMAP:9178 -name: TS24,epithelium,ductus reuniens -namespace: mouse_anatomy_stages -is_a: UBERON:0003363 ! epithelium of ductus reuniens -relationship: part_of EMAP:9176 ! TS24,ductus reuniens -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9179 -name: TS24,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0001854 ! saccule of membranous labyrinth -relationship: part_of EMAP:9175 ! TS24,vestibular component,inner ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:918 -name: TS14,mesenchyme,outflow tract,heart -namespace: mouse_anatomy_stages -relationship: part_of EMAP:915 ! TS14,outflow tract,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004145 ! outflow tract - -[Term] -id: EMAP:9180 -name: TS24,associated mesenchyme,saccule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9179 ! TS24,saccule -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EMAP:9181 -name: TS24,cochlea -namespace: mouse_anatomy_stages -is_a: UBERON:0001844 ! cochlea -relationship: part_of EMAP:9179 ! TS24,saccule -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001844 ! cochlea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9182 -name: TS24,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth -relationship: part_of EMAP:9181 ! TS24,cochlea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9183 -name: TS24,associated mesenchyme,cochlear duct -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9182 ! TS24,cochlear duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: EMAP:9184 -name: TS24,epithelium,cochlear duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003243 ! epithelium of cochlear duct -relationship: part_of EMAP:9182 ! TS24,cochlear duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003243 ! epithelium of cochlear duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9185 -name: TS24,epithelium,saccule -namespace: mouse_anatomy_stages -is_a: UBERON:0003242 ! epithelium of saccule -relationship: part_of EMAP:9179 ! TS24,saccule -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9186 -name: TS24,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0001853 ! utricle of membranous labyrinth -relationship: part_of EMAP:9175 ! TS24,vestibular component,inner ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9187 -name: TS24,associated mesenchyme,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9186 ! TS24,utricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EMAP:9188 -name: TS24,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0005600 ! crus commune -relationship: part_of EMAP:9186 ! TS24,utricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005600 ! crus commune -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9189 -name: TS24,associated mesenchyme,crus commune,utricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9188 ! TS24,crus commune,utricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005600 ! crus commune - -[Term] -id: EMAP:919 -name: TS14,primitive ventricle -namespace: mouse_anatomy_stages -is_a: UBERON:0006283 ! primitive ventricle of heart -relationship: part_of EMAP:897 ! TS14,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006283 ! primitive ventricle of heart -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9190 -name: TS24,epithelium,crus commune,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:9188 ! TS24,crus commune,utricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9191 -name: TS24,epithelium,utricle -namespace: mouse_anatomy_stages -is_a: UBERON:0003241 ! epithelium of utricle -relationship: part_of EMAP:9186 ! TS24,utricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9192 -name: TS24,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001843 ! lateral semicircular canal -relationship: part_of EMAP:9186 ! TS24,utricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9193 -name: TS24,associated mesenchyme,lateral semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9192 ! TS24,lateral semicircular canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001843 ! lateral semicircular canal - -[Term] -id: EMAP:9194 -name: TS24,epithelium,lateral semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003240 ! epithelium of lateral semicircular canal -relationship: part_of EMAP:9192 ! TS24,lateral semicircular canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9195 -name: TS24,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001842 ! posterior semicircular canal -relationship: part_of EMAP:9186 ! TS24,utricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9196 -name: TS24,associated mesenchyme,posterior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9195 ! TS24,posterior semicircular canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001842 ! posterior semicircular canal - -[Term] -id: EMAP:9197 -name: TS24,epithelium,posterior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003239 ! epithelium of posterior semicircular canal -relationship: part_of EMAP:9195 ! TS24,posterior semicircular canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9198 -name: TS24,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0001841 ! anterior semicircular canal -relationship: part_of EMAP:9186 ! TS24,utricle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9199 -name: TS24,associated mesenchyme,superior semicircular canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9198 ! TS24,superior semicircular canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001841 ! anterior semicircular canal - -[Term] -id: EMAP:92 -name: TS9,yolk sac cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005251 ! yolk sac cavity -relationship: part_of EMAP:90 ! TS9,cavities -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0005251 ! yolk sac cavity -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:920 -name: TS14,cardiac jelly,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:919 ! TS14,primitive ventricle -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:9200 -name: TS24,epithelium,superior semicircular canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003238 ! epithelium of superior semicircular canal -relationship: part_of EMAP:9198 ! TS24,superior semicircular canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9201 -name: TS24,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0001756 ! middle ear -relationship: part_of EMAP:9154 ! TS24,ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001756 ! middle ear -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9202 -name: TS24,associated mesenchyme,middle ear -namespace: mouse_anatomy_stages -is_a: UBERON:0009506 ! associated mesenchyme of middle ear -relationship: part_of EMAP:9201 ! TS24,middle ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009506 ! associated mesenchyme of middle ear -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9203 -name: TS24,ossicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001686 ! auditory ossicle -relationship: part_of EMAP:9201 ! TS24,middle ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001686 ! auditory ossicle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9204 -name: TS24,incus -namespace: mouse_anatomy_stages -is_a: UBERON:0001688 ! incus -relationship: part_of EMAP:9203 ! TS24,ossicle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001688 ! incus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9205 -name: TS24,malleus -namespace: mouse_anatomy_stages -is_a: UBERON:0001689 ! malleus -relationship: part_of EMAP:9203 ! TS24,ossicle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001689 ! malleus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9206 -name: TS24,stapes -namespace: mouse_anatomy_stages -is_a: UBERON:0001687 ! stapes -relationship: part_of EMAP:9203 ! TS24,ossicle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001687 ! stapes -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9207 -name: TS24,pharyngo-tympanic tube -namespace: mouse_anatomy_stages -is_a: UBERON:0002393 ! pharyngotympanic tube -relationship: part_of EMAP:9201 ! TS24,middle ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9208 -name: TS24,stapedius muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001599 ! stapedius muscle -relationship: part_of EMAP:9201 ! TS24,middle ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001599 ! stapedius muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9209 -name: TS24,tensor tympani muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001600 ! tensor tympani -relationship: part_of EMAP:9201 ! TS24,middle ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001600 ! tensor tympani -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:921 -name: TS14,endocardial tube,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:919 ! TS14,primitive ventricle -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:9210 -name: TS24,tubo-tympanic recess -namespace: mouse_anatomy_stages -is_a: UBERON:0005625 ! tubotympanic recess -relationship: part_of EMAP:9201 ! TS24,middle ear -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005625 ! tubotympanic recess -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9211 -name: TS24,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0000019 ! camera-type eye -relationship: part_of EMAP:9153 ! TS24,sensory organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9212 -name: TS24,anterior chamber,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0001766 ! anterior chamber of eyeball -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9213 -name: TS24,aqueous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001796 ! aqueous humor of eyeball -relationship: part_of EMAP:9212 ! TS24,anterior chamber,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9214 -name: TS24,choroidal blood vessels,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0002443 ! choroidal blood vessel -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9215 -name: TS24,conjunctival sac -namespace: mouse_anatomy_stages -is_a: UBERON:0005908 ! conjunctival sac -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005908 ! conjunctival sac -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9216 -name: TS24,lower recess,conjunctival sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9215 ! TS24,conjunctival sac -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005908 ! conjunctival sac - -[Term] -id: EMAP:9217 -name: TS24,upper recess,conjunctival sac -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9215 ! TS24,conjunctival sac -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005908 ! conjunctival sac - -[Term] -id: EMAP:9218 -name: TS24,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0000964 ! cornea -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000964 ! cornea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9219 -name: TS24,Descemet's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004367 ! Descemet's membrane -relationship: part_of EMAP:9218 ! TS24,cornea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004367 ! Descemet's membrane -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:922 -name: TS14,cardiac muscle,primitive ventricle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:919 ! TS14,primitive ventricle -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006283 ! primitive ventricle of heart - -[Term] -id: EMAP:9220 -name: TS24,epithelium,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001772 ! corneal epithelium -relationship: part_of EMAP:9218 ! TS24,cornea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9221 -name: TS24,stroma,cornea -namespace: mouse_anatomy_stages -is_a: UBERON:0001777 ! substantia propria of cornea -relationship: part_of EMAP:9218 ! TS24,cornea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9222 -name: TS24,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001711 ! eyelid -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001711 ! eyelid -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9223 -name: TS24,inner canthus,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0005611 ! inner canthus -relationship: part_of EMAP:9222 ! TS24,eyelid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9224 -name: TS24,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001713 ! lower eyelid -relationship: part_of EMAP:9222 ! TS24,eyelid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9225 -name: TS24,epithelium,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003845 ! lower eyelid epithelium -relationship: part_of EMAP:9224 ! TS24,lower,eyelid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003845 ! lower eyelid epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9226 -name: TS24,mesenchyme,lower,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:9224 ! TS24,lower,eyelid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9227 -name: TS24,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0001712 ! upper eyelid -relationship: part_of EMAP:9222 ! TS24,eyelid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9228 -name: TS24,epithelium,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003844 ! upper eyelid epithelium -relationship: part_of EMAP:9227 ! TS24,upper,eyelid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003844 ! upper eyelid epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9229 -name: TS24,mesenchyme,upper,eyelid -namespace: mouse_anatomy_stages -is_a: UBERON:0003314 ! eye mesenchyme -relationship: part_of EMAP:9227 ! TS24,upper,eyelid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:923 -name: TS14,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0002063 ! sinus venosus -relationship: part_of EMAP:897 ! TS14,heart -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9230 -name: TS24,hyaloid cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005606 ! hyaloid cavity -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9231 -name: TS24,hyaloid vascular plexus -namespace: mouse_anatomy_stages -is_a: UBERON:0005607 ! hyaloid vascular plexus -relationship: part_of EMAP:9230 ! TS24,hyaloid cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9232 -name: TS24,tunica vasculosa lentis -namespace: mouse_anatomy_stages -is_a: UBERON:0006305 ! tunica vasculosa lentis -relationship: part_of EMAP:9231 ! TS24,hyaloid vascular plexus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006305 ! tunica vasculosa lentis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9233 -name: TS24,vasa hyaloidea propria -namespace: mouse_anatomy_stages -is_a: UBERON:0006358 ! vasa hyaloidea propria -relationship: part_of EMAP:9231 ! TS24,hyaloid vascular plexus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006358 ! vasa hyaloidea propria -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9234 -name: TS24,vitreous humour -namespace: mouse_anatomy_stages -is_a: UBERON:0001797 ! vitreous humor -relationship: part_of EMAP:9230 ! TS24,hyaloid cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9235 -name: TS24,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0000965 ! lens of camera-type eye -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9236 -name: TS24,anterior epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005614 ! lens anterior epithelium -relationship: part_of EMAP:9235 ! TS24,lens -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9237 -name: TS24,capsule,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0001804 ! capsule of lens -relationship: part_of EMAP:9235 ! TS24,lens -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9238 -name: TS24,equatorial epithelium,lens -namespace: mouse_anatomy_stages -is_a: UBERON:0005615 ! lens equatorial epithelium -relationship: part_of EMAP:9235 ! TS24,lens -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005615 ! lens equatorial epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9239 -name: TS24,lens fibres -namespace: mouse_anatomy_stages -is_a: UBERON:0002444 ! lens fiber -relationship: part_of EMAP:9235 ! TS24,lens -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:924 -name: TS14,left horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005091 ! left horn of sinus venosus -relationship: part_of EMAP:923 ! TS14,sinus venosus -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9240 -name: TS24,anterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9239 ! TS24,lens fibres -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:9241 -name: TS24,posterior,lens fibres -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9239 ! TS24,lens fibres -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002444 ! lens fiber - -[Term] -id: EMAP:9242 -name: TS24,optic chiasma -namespace: mouse_anatomy_stages -is_a: UBERON:0000959 ! optic chiasma -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9243 -name: TS24,optic stalk -namespace: mouse_anatomy_stages -is_a: UBERON:0003098 ! optic stalk -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9244 -name: TS24,optic nerve -namespace: mouse_anatomy_stages -is_a: UBERON:0000941 ! cranial nerve II -relationship: part_of EMAP:9243 ! TS24,optic stalk -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9245 -name: TS24,perioptic mesenchyme -namespace: mouse_anatomy_stages -is_a: UBERON:0006276 ! perioptic mesenchyme -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9246 -name: TS24,retina -namespace: mouse_anatomy_stages -is_a: UBERON:0000966 ! retina -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000966 ! retina -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9247 -name: TS24,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0003902 ! retinal neural layer -relationship: part_of EMAP:9246 ! TS24,retina -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9248 -name: TS24,nerve fibre layer,neural retina -namespace: mouse_anatomy_stages -is_a: UBERON:0001793 ! nerve fiber layer of retina -relationship: part_of EMAP:9247 ! TS24,neural retina -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9249 -name: TS24,nuclear layer,neural retina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9247 ! TS24,neural retina -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003902 ! retinal neural layer - -[Term] -id: EMAP:925 -name: TS14,right horn,sinus venosus -namespace: mouse_anatomy_stages -is_a: UBERON:0005092 ! right horn of sinus venosus -relationship: part_of EMAP:923 ! TS14,sinus venosus -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9252 -name: TS24,optic disc -namespace: mouse_anatomy_stages -is_a: UBERON:0001783 ! optic disc -relationship: part_of EMAP:9246 ! TS24,retina -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001783 ! optic disc -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9253 -name: TS24,pigmented retinal epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0001782 ! pigmented layer of retina -relationship: part_of EMAP:9246 ! TS24,retina -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9254 -name: TS24,skeletal muscle,eye -namespace: mouse_anatomy_stages -is_a: UBERON:0003269 ! skeletal muscle of eye -relationship: part_of EMAP:9211 ! TS24,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003269 ! skeletal muscle of eye -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9255 -name: TS24,extrinsic ocular muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001601 ! extra-ocular muscle -relationship: part_of EMAP:9254 ! TS24,skeletal muscle,eye -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9258 -name: TS24,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000004 ! olfactory apparatus -relationship: part_of EMAP:9153 ! TS24,sensory organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000004 ! olfactory apparatus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9259 -name: TS24,meatus,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9258 ! TS24,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000004 ! olfactory apparatus - -[Term] -id: EMAP:926 -name: TS14,venous system -namespace: mouse_anatomy_stages -is_a: UBERON:0004582 ! venous system -relationship: part_of EMAP:881 ! TS14,cardiovascular system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004582 ! venous system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9260 -name: TS24,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0000003 ! naris -relationship: part_of EMAP:9258 ! TS24,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000003 ! naris -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9261 -name: TS24,anterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9260 ! TS24,naris,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:9262 -name: TS24,epithelium,anterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9261 ! TS24,anterior,naris,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:9263 -name: TS24,external,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0005928 ! external naris -relationship: part_of EMAP:9260 ! TS24,naris,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005928 ! external naris -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9264 -name: TS24,epithelium,external,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0004692 ! external naris epithelium -relationship: part_of EMAP:9263 ! TS24,external,naris,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004692 ! external naris epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9265 -name: TS24,posterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9260 ! TS24,naris,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:9266 -name: TS24,epithelium,posterior,naris,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9265 ! TS24,posterior,naris,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000003 ! naris - -[Term] -id: EMAP:9267 -name: TS24,primary choana,naris,nose -namespace: mouse_anatomy_stages -is_a: UBERON:0005931 ! primary choana -relationship: part_of EMAP:9260 ! TS24,naris,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005931 ! primary choana -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9268 -name: TS24,nasal capsule -namespace: mouse_anatomy_stages -is_a: UBERON:0006332 ! nasal capsule -relationship: part_of EMAP:9258 ! TS24,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9269 -name: TS24,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001707 ! nasal cavity -relationship: part_of EMAP:9258 ! TS24,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:927 -name: TS14,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0004344 ! cardinal vein -relationship: part_of EMAP:926 ! TS14,venous system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9270 -name: TS24,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005384 ! nasal cavity epithelium -relationship: part_of EMAP:9269 ! TS24,nasal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9271 -name: TS24,olfactory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001997 ! olfactory epithelium -relationship: part_of EMAP:9270 ! TS24,epithelium,nasal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9272 -name: TS24,respiratory,epithelium,nasal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000171 ! respiration organ -relationship: part_of EMAP:9270 ! TS24,epithelium,nasal cavity -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9273 -name: TS24,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0001706 ! nasal septum -relationship: part_of EMAP:9258 ! TS24,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9274 -name: TS24,epithelium,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003356 ! epithelium of nasal septum -relationship: part_of EMAP:9273 ! TS24,nasal septum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003356 ! epithelium of nasal septum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9275 -name: TS24,mesenchyme,nasal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0003415 ! mesenchyme of nasal septum -relationship: part_of EMAP:9273 ! TS24,nasal septum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9276 -name: TS24,naso-lacrimal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002392 ! nasolacrimal duct -relationship: part_of EMAP:9258 ! TS24,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9277 -name: TS24,turbinate bones,nose -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9258 ! TS24,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9278 -name: TS24,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002255 ! vomeronasal organ -relationship: part_of EMAP:9258 ! TS24,nose -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9279 -name: TS24,mesenchyme,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003421 ! mesenchyme of vomeronasal organ -relationship: part_of EMAP:9278 ! TS24,vomeronasal organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:928 -name: TS14,anterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0003087 ! anterior cardinal vein -relationship: part_of EMAP:927 ! TS14,cardinal vein -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9280 -name: TS24,epithelium,vomeronasal organ -namespace: mouse_anatomy_stages -is_a: UBERON:0003367 ! epithelium of vomeronasal organ -relationship: part_of EMAP:9278 ! TS24,vomeronasal organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9281 -name: TS24,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:8441 ! TS24,visceral organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9282 -name: TS24,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:9281 ! TS24,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9283 -name: TS24,gland,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:9282 ! TS24,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9284 -name: TS24,salivary gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001044 ! salivary gland -relationship: part_of EMAP:9283 ! TS24,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001044 ! salivary gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9285 -name: TS24,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001832 ! sublingual gland -relationship: part_of EMAP:9284 ! TS24,salivary gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001832 ! sublingual gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9286 -name: TS24,epithelium,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003361 ! epithelium of sublingual gland -relationship: part_of EMAP:9285 ! TS24,sublingual gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003361 ! epithelium of sublingual gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9287 -name: TS24,mesenchyme,sublingual gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003420 ! mesenchyme of sublingual gland -relationship: part_of EMAP:9285 ! TS24,sublingual gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003420 ! mesenchyme of sublingual gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9288 -name: TS24,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0001736 ! submandibular gland -relationship: part_of EMAP:9284 ! TS24,salivary gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001736 ! submandibular gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9289 -name: TS24,epithelium,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003359 ! epithelium of submandibular gland -relationship: part_of EMAP:9288 ! TS24,submandibular gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003359 ! epithelium of submandibular gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:929 -name: TS14,common,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002064 ! common cardinal vein -relationship: part_of EMAP:927 ! TS14,cardinal vein -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9290 -name: TS24,mesenchyme,submandibular gland -namespace: mouse_anatomy_stages -is_a: UBERON:0003418 ! mesenchyme of submandibular gland -relationship: part_of EMAP:9288 ! TS24,submandibular gland -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003418 ! mesenchyme of submandibular gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9291 -name: TS24,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:9281 ! TS24,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9292 -name: TS24,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0003408 ! gland of gut -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003408 ! gland of gut -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9293 -name: TS24,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001264 ! pancreas -relationship: part_of EMAP:9292 ! TS24,gland,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001264 ! pancreas -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9294 -name: TS24,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001150 ! body of pancreas -relationship: part_of EMAP:9293 ! TS24,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9295 -name: TS24,dorsal pancreatic duct,body,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:9294 ! TS24,body,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9296 -name: TS24,parenchyma,body,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9294 ! TS24,body,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001150 ! body of pancreas - -[Term] -id: EMAP:9297 -name: TS24,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001069 ! head of pancreas -relationship: part_of EMAP:9293 ! TS24,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9298 -name: TS24,ventral pancreatic duct,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001064 ! ventral pancreatic duct -relationship: part_of EMAP:9297 ! TS24,head,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001064 ! ventral pancreatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9299 -name: TS24,parenchyma,head,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9297 ! TS24,head,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001069 ! head of pancreas - -[Term] -id: EMAP:93 -name: TS9,ectoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004366 ! extraembryonic ectoderm -relationship: part_of EMAP:89 ! TS9,extraembryonic component -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0004366 ! extraembryonic ectoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:930 -name: TS14,posterior,cardinal vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002065 ! posterior cardinal vein -relationship: part_of EMAP:927 ! TS14,cardinal vein -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9300 -name: TS24,uncinate process,head,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0010373 ! uncinate process of pancreas -relationship: part_of EMAP:9297 ! TS24,head,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010373 ! uncinate process of pancreas -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9301 -name: TS24,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0001151 ! tail of pancreas -relationship: part_of EMAP:9293 ! TS24,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9302 -name: TS24,dorsal pancreatic duct,tail,pancreas -namespace: mouse_anatomy_stages -is_a: UBERON:0005429 ! dorsal pancreatic duct -relationship: part_of EMAP:9301 ! TS24,tail,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9303 -name: TS24,parenchyma,tail,pancreas -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9301 ! TS24,tail,pancreas -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001151 ! tail of pancreas - -[Term] -id: EMAP:9304 -name: TS24,thyroid,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0002046 ! thyroid gland -relationship: part_of EMAP:9292 ! TS24,gland,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9305 -name: TS24,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0001831 ! parotid gland -relationship: part_of EMAP:9283 ! TS24,gland,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001831 ! parotid gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9306 -name: TS24,epithelium,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0003360 ! epithelium of parotid gland -relationship: part_of EMAP:9305 ! TS24,parotid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003360 ! epithelium of parotid gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9307 -name: TS24,mesenchyme,parotid -namespace: mouse_anatomy_stages -is_a: UBERON:0003419 ! mesenchyme of parotid -relationship: part_of EMAP:9305 ! TS24,parotid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003419 ! mesenchyme of parotid -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9308 -name: TS24,foramen caecum -namespace: mouse_anatomy_stages -is_a: UBERON:0001761 ! foramen caecum of thyroid -relationship: part_of EMAP:9304 ! TS24,thyroid,gland,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001761 ! foramen caecum of thyroid -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9309 -name: TS24,isthmus -namespace: mouse_anatomy_stages -is_a: UBERON:0001609 ! isthmus of thyroid gland -relationship: part_of EMAP:9304 ! TS24,thyroid,gland,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:931 -name: TS14,primary head vein -namespace: mouse_anatomy_stages -is_a: UBERON:0006282 ! primary head vein -relationship: part_of EMAP:926 ! TS14,venous system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9310 -name: TS24,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001118 ! lobe of thyroid gland -relationship: part_of EMAP:9304 ! TS24,thyroid,gland,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9311 -name: TS24,left,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9310 ! TS24,lobe,thyroid,gland,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001118 ! lobe of thyroid gland - -[Term] -id: EMAP:9312 -name: TS24,right,lobe,thyroid,gland,gut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9310 ! TS24,lobe,thyroid,gland,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001118 ! lobe of thyroid gland - -[Term] -id: EMAP:9313 -name: TS24,thyroglossal duct -namespace: mouse_anatomy_stages -is_a: UBERON:0002254 ! thyroglossal duct -relationship: part_of EMAP:9304 ! TS24,thyroid,gland,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9314 -name: TS24,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001353 ! anal region -relationship: part_of EMAP:9281 ! TS24,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001353 ! anal region -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9315 -name: TS24,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0000159 ! anal canal -relationship: part_of EMAP:9314 ! TS24,anal region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000159 ! anal canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9316 -name: TS24,associated mesenchyme,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9315 ! TS24,anal canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9317 -name: TS24,epithelium,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9315 ! TS24,anal canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9318 -name: TS24,lumen,anal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0007158 ! lumen of anal canal -relationship: part_of EMAP:9315 ! TS24,anal canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007158 ! lumen of anal canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9319 -name: TS24,vascular element,anal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9315 ! TS24,anal canal -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000159 ! anal canal - -[Term] -id: EMAP:932 -name: TS14,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:926 ! TS14,venous system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9320 -name: TS24,external sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001367 ! external anal sphincter -relationship: part_of EMAP:9314 ! TS24,anal region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001367 ! external anal sphincter -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9321 -name: TS24,internal sphincter,anal region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001244 ! internal anal sphincter -relationship: part_of EMAP:9314 ! TS24,anal region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001244 ! internal anal sphincter -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9322 -name: TS24,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001042 ! chordate pharynx -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9323 -name: TS24,skeleton,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9322 ! TS24,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:9324 -name: TS24,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001685 ! hyoid bone -relationship: part_of EMAP:9323 ! TS24,skeleton,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001685 ! hyoid bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9325 -name: TS24,greater horn,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0003997 ! hyoid bone greater horn -relationship: part_of EMAP:9324 ! TS24,hyoid bone -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003997 ! hyoid bone greater horn -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9326 -name: TS24,lesser horn,hyoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0003998 ! hyoid bone lesser horn -relationship: part_of EMAP:9324 ! TS24,hyoid bone -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003998 ! hyoid bone lesser horn -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9327 -name: TS24,body -namespace: mouse_anatomy_stages -is_a: UBERON:0003999 ! hyoid bone body -relationship: part_of EMAP:9324 ! TS24,hyoid bone -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003999 ! hyoid bone body -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:933 -name: TS14,left,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:932 ! TS14,umbilical vein -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9336 -name: TS24,duodenum -namespace: mouse_anatomy_stages -is_a: UBERON:0002114 ! duodenum -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002114 ! duodenum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9337 -name: TS24,duodenal papilla -namespace: mouse_anatomy_stages -is_a: UBERON:0004914 ! duodenal papilla -relationship: part_of EMAP:9336 ! TS24,duodenum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004914 ! duodenal papilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9338 -name: TS24,sphincter of Oddi -namespace: mouse_anatomy_stages -is_a: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -relationship: part_of EMAP:9336 ! TS24,duodenum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9339 -name: TS24,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:934 -name: TS14,right,umbilical vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005471 ! right umbilical vein -relationship: part_of EMAP:932 ! TS14,umbilical vein -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9340 -name: TS24,associated mesenchyme,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9339 ! TS24,gastro-oesophageal junction -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9341 -name: TS24,epithelium,gastro-oesophageal junction -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9339 ! TS24,gastro-oesophageal junction -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9342 -name: TS24,lumen,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9339 ! TS24,gastro-oesophageal junction -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:9343 -name: TS24,vascular element,gastro-oesophageal junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9339 ! TS24,gastro-oesophageal junction -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:9344 -name: TS24,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0001043 ! esophagus -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001043 ! esophagus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9345 -name: TS24,associated mesenchyme,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9344 ! TS24,oesophagus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9346 -name: TS24,epithelium,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9344 ! TS24,oesophagus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9347 -name: TS24,lumen,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9344 ! TS24,oesophagus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:9348 -name: TS24,mesentery,oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0003283 ! mesentery of oesophagus -relationship: part_of EMAP:9344 ! TS24,oesophagus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9349 -name: TS24,dorsal meso-oesophagus -namespace: mouse_anatomy_stages -is_a: UBERON:0006223 ! dorsal meso-oesophagus -relationship: part_of EMAP:9348 ! TS24,mesentery,oesophagus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:935 -name: TS14,vessels connecting internal carotid artery to primary head veins -namespace: mouse_anatomy_stages -relationship: part_of EMAP:926 ! TS14,venous system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004582 ! venous system - -[Term] -id: EMAP:9350 -name: TS24,vascular element,oesophagus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9344 ! TS24,oesophagus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001043 ! esophagus - -[Term] -id: EMAP:9351 -name: TS24,associated mesenchyme,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9322 ! TS24,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9352 -name: TS24,epithelium,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9322 ! TS24,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9353 -name: TS24,lumen,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001731 ! cavity of pharynx -relationship: part_of EMAP:9322 ! TS24,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9354 -name: TS24,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001723 ! tongue -relationship: part_of EMAP:9322 ! TS24,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001723 ! tongue -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9355 -name: TS24,circumvallate papilla,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0000396 ! vallate papilla -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000396 ! vallate papilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9356 -name: TS24,epithelium,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003357 ! epithelium of tongue -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9357 -name: TS24,filiform papillae,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0002467 ! filiform papilla -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002467 ! filiform papilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9358 -name: TS24,frenulum,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006689 ! frenulum of tongue -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006689 ! frenulum of tongue -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9359 -name: TS24,fungiform papillae,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:936 -name: TS14,vitelline vein -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:926 ! TS14,venous system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9360 -name: TS24,intermolar eminence,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0006360 ! intermolar eminence -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006360 ! intermolar eminence -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9361 -name: TS24,median fibrous septum,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:9362 -name: TS24,mesenchyme,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003416 ! mesenchyme of tongue -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003416 ! mesenchyme of tongue -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9363 -name: TS24,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0003273 ! skeletal muscle of tongue -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003273 ! skeletal muscle of tongue -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9364 -name: TS24,extrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001575 ! extrinsic muscle of tongue -relationship: part_of EMAP:9363 ! TS24,skeletal muscle,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9365 -name: TS24,genioglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001571 ! genioglossus -relationship: part_of EMAP:9364 ! TS24,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001571 ! genioglossus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9366 -name: TS24,hyoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001572 ! hyoglossus muscle -relationship: part_of EMAP:9364 ! TS24,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9367 -name: TS24,palatoglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001574 ! palatoglossus muscle -relationship: part_of EMAP:9364 ! TS24,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001574 ! palatoglossus muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9368 -name: TS24,styloglossus -namespace: mouse_anatomy_stages -is_a: UBERON:0001573 ! styloglossus -relationship: part_of EMAP:9364 ! TS24,extrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001573 ! styloglossus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9369 -name: TS24,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -is_a: UBERON:0001576 ! intrinsic muscle of tongue -relationship: part_of EMAP:9363 ! TS24,skeletal muscle,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:937 -name: TS14,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:796 ! TS14,organ system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9370 -name: TS24,transverse component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9369 ! TS24,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:9371 -name: TS24,vertical component,intrinsic,skeletal muscle,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9369 ! TS24,intrinsic,skeletal muscle,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: EMAP:9372 -name: TS24,vascular element,pharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9322 ! TS24,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001042 ! chordate pharynx - -[Term] -id: EMAP:9373 -name: TS24,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0000945 ! stomach -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000945 ! stomach -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9374 -name: TS24,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9373 ! TS24,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9375 -name: TS24,vascular element,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9374 ! TS24,fundus,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9376 -name: TS24,associated mesenchyme,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9374 ! TS24,fundus,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9377 -name: TS24,epithelium,fundus,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9374 ! TS24,fundus,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9378 -name: TS24,lumen,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9374 ! TS24,fundus,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9379 -name: TS24,glandular mucous membrane,fundus,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9374 ! TS24,fundus,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:938 -name: TS14,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0005409 ! gastrointestinal system -relationship: part_of EMAP:937 ! TS14,visceral organ -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005409 ! gastrointestinal system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9380 -name: TS24,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9373 ! TS24,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9381 -name: TS24,vascular element,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9380 ! TS24,glandular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9382 -name: TS24,associated mesenchyme,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9380 ! TS24,glandular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9383 -name: TS24,epithelium,glandular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9380 ! TS24,glandular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9384 -name: TS24,lumen,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9380 ! TS24,glandular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9385 -name: TS24,glandular mucous membrane,glandular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9380 ! TS24,glandular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9386 -name: TS24,mesentery,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003281 ! mesentery of stomach -relationship: part_of EMAP:9373 ! TS24,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9387 -name: TS24,dorsal mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005602 ! dorsal mesogastrium -relationship: part_of EMAP:9386 ! TS24,mesentery,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9388 -name: TS24,greater omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0005448 ! greater omentum -relationship: part_of EMAP:9387 ! TS24,dorsal mesogastrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005448 ! greater omentum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9389 -name: TS24,gastro-splenic ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004686 ! gastro-splenic ligament -relationship: part_of EMAP:9388 ! TS24,greater omentum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:939 -name: TS14,gut -namespace: mouse_anatomy_stages -is_a: UBERON:0001555 ! digestive tract -relationship: part_of EMAP:938 ! TS14,alimentary system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9390 -name: TS24,lieno-renal ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0004687 ! lieno-renal ligament -relationship: part_of EMAP:9388 ! TS24,greater omentum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9391 -name: TS24,ventral mesogastrium -namespace: mouse_anatomy_stages -is_a: UBERON:0005626 ! ventral mesogastrium -relationship: part_of EMAP:9386 ! TS24,mesentery,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9392 -name: TS24,falciform ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0001247 ! falciform ligament -relationship: part_of EMAP:9391 ! TS24,ventral mesogastrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9393 -name: TS24,lesser omentum -namespace: mouse_anatomy_stages -is_a: UBERON:0002399 ! lesser omentum -relationship: part_of EMAP:9391 ! TS24,ventral mesogastrium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9394 -name: TS24,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9373 ! TS24,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9395 -name: TS24,associated mesenchyme,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9394 ! TS24,proventricular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9396 -name: TS24,epithelium,proventricular region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9394 ! TS24,proventricular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9397 -name: TS24,lumen,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9394 ! TS24,proventricular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9398 -name: TS24,vascular element,proventricular region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9394 ! TS24,proventricular region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000945 ! stomach - -[Term] -id: EMAP:9399 -name: TS24,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0001166 ! pylorus -relationship: part_of EMAP:9373 ! TS24,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001166 ! pylorus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:94 -name: TS9,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0008945 ! extraembryonic endoderm -relationship: part_of EMAP:89 ! TS9,extraembryonic component -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:940 -name: TS14,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0001041 ! foregut -relationship: part_of EMAP:939 ! TS14,gut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001041 ! foregut -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9400 -name: TS24,associated mesenchyme,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9399 ! TS24,pyloric region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9401 -name: TS24,epithelium,pyloric region,stomach -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9399 ! TS24,pyloric region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9402 -name: TS24,lumen,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9399 ! TS24,pyloric region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:9403 -name: TS24,pyloric antrum -namespace: mouse_anatomy_stages -is_a: UBERON:0001165 ! pyloric antrum -relationship: part_of EMAP:9399 ! TS24,pyloric region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9404 -name: TS24,vascular element,pyloric region,stomach -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9399 ! TS24,pyloric region,stomach -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001166 ! pylorus - -[Term] -id: EMAP:9405 -name: TS24,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0006654 ! perineal body -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006654 ! perineal body -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9406 -name: TS24,associated mesenchyme,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9405 ! TS24,perineal body -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9407 -name: TS24,muscle,perineal body -namespace: mouse_anatomy_stages -is_a: UBERON:0004486 ! musculature of perineum -relationship: part_of EMAP:9405 ! TS24,perineal body -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004486 ! musculature of perineum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9408 -name: TS24,vascular element,perineal body -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9405 ! TS24,perineal body -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006654 ! perineal body - -[Term] -id: EMAP:9409 -name: TS24,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0001052 ! rectum -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001052 ! rectum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:941 -name: TS14,pharyngeal region,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0009145 ! pharyngeal region -relationship: part_of EMAP:940 ! TS14,foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009145 ! pharyngeal region -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9410 -name: TS24,associated mesenchyme,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9409 ! TS24,rectum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9411 -name: TS24,epithelium,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9409 ! TS24,rectum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9412 -name: TS24,lumen,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9409 ! TS24,rectum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:9413 -name: TS24,mesentery,rectum -namespace: mouse_anatomy_stages -is_a: UBERON:0003395 ! mesentery of rectum -relationship: part_of EMAP:9409 ! TS24,rectum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003395 ! mesentery of rectum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9414 -name: TS24,dorsal mesentery,mesentery,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9413 ! TS24,mesentery,rectum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003395 ! mesentery of rectum - -[Term] -id: EMAP:9415 -name: TS24,vascular element,rectum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9409 ! TS24,rectum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001052 ! rectum - -[Term] -id: EMAP:9416 -name: TS24,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0002115 ! jejunum -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002115 ! jejunum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9417 -name: TS24,associated mesenchyme,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9416 ! TS24,jejunum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9418 -name: TS24,epithelium,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9416 ! TS24,jejunum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9419 -name: TS24,lumen,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9416 ! TS24,jejunum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002115 ! jejunum - -[Term] -id: EMAP:942 -name: TS14,associated mesenchyme,pharyngeal region,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0010046 ! entire pharyngeal arch associated mesenchyme -relationship: part_of EMAP:941 ! TS14,pharyngeal region,foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010046 ! entire pharyngeal arch associated mesenchyme -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9420 -name: TS24,vascular element,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9416 ! TS24,jejunum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002115 ! jejunum - -[Term] -id: EMAP:9421 -name: TS24,mesentery,jejunum -namespace: mouse_anatomy_stages -is_a: UBERON:0003398 ! mesentery of jejunum -relationship: part_of EMAP:9416 ! TS24,jejunum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003398 ! mesentery of jejunum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9422 -name: TS24,dorsal mesentery,mesentery,jejunum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9421 ! TS24,mesentery,jejunum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003398 ! mesentery of jejunum - -[Term] -id: EMAP:9423 -name: TS24,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0001155 ! colon -relationship: part_of EMAP:9291 ! TS24,gut -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001155 ! colon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9424 -name: TS24,associated mesenchyme,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9423 ! TS24,colon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9425 -name: TS24,epithelium,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0003350 ! epithelium of mucosa -relationship: part_of EMAP:9423 ! TS24,colon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003350 ! epithelium of mucosa -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9426 -name: TS24,mesentery,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0003396 ! mesentery of colon -relationship: part_of EMAP:9423 ! TS24,colon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003396 ! mesentery of colon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9427 -name: TS24,dorsal mesentery,mesentery,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9426 ! TS24,mesentery,colon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003396 ! mesentery of colon - -[Term] -id: EMAP:9428 -name: TS24,vascular element,colon -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9423 ! TS24,colon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001155 ! colon - -[Term] -id: EMAP:9429 -name: TS24,lumen,colon -namespace: mouse_anatomy_stages -is_a: UBERON:0007159 ! lumen of colon -relationship: part_of EMAP:9423 ! TS24,colon -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007159 ! lumen of colon -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:943 -name: TS14,epithelium,pharyngeal region,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003351 ! pharyngeal epithelium -relationship: part_of EMAP:941 ! TS14,pharyngeal region,foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9430 -name: TS24,epiglottis -namespace: mouse_anatomy_stages -is_a: UBERON:0000388 ! epiglottis -relationship: part_of EMAP:9282 ! TS24,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000388 ! epiglottis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9431 -name: TS24,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001710 ! lower jaw region -relationship: part_of EMAP:9282 ! TS24,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9432 -name: TS24,epithelium,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9431 ! TS24,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9433 -name: TS24,lip,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001835 ! lower lip -relationship: part_of EMAP:9431 ! TS24,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001835 ! lower lip -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9434 -name: TS24,skeleton,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003278 ! skeleton of lower jaw -relationship: part_of EMAP:9431 ! TS24,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9435 -name: TS24,mandible -namespace: mouse_anatomy_stages -is_a: UBERON:0001684 ! mandible -relationship: part_of EMAP:9434 ! TS24,skeleton,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001684 ! mandible -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9436 -name: TS24,Meckel's cartilage -namespace: mouse_anatomy_stages -is_a: UBERON:0003107 ! Meckel's cartilage -relationship: part_of EMAP:9431 ! TS24,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9437 -name: TS24,mesenchyme,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003324 ! mesenchyme of lower jaw -relationship: part_of EMAP:9431 ! TS24,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003324 ! mesenchyme of lower jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9438 -name: TS24,alveolar sulcus,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9431 ! TS24,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001710 ! lower jaw region - -[Term] -id: EMAP:9439 -name: TS24,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003268 ! tooth of lower jaw -relationship: part_of EMAP:9431 ! TS24,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:944 -name: TS14,vascular element,pharyngeal region,foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:941 ! TS14,pharyngeal region,foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0009145 ! pharyngeal region - -[Term] -id: EMAP:9440 -name: TS24,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003451 ! lower jaw incisor -relationship: part_of EMAP:9439 ! TS24,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9441 -name: TS24,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:9440 ! TS24,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9442 -name: TS24,dental lamina,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:9441 ! TS24,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9443 -name: TS24,enamel organ,epithelium,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9441 ! TS24,epithelium,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:9444 -name: TS24,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005708 ! lower jaw incisor odontogenic papilla -relationship: part_of EMAP:9440 ! TS24,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005708 ! lower jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9445 -name: TS24,dental papilla,mesenchyme,incisor,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9444 ! TS24,mesenchyme,incisor,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005708 ! lower jaw incisor odontogenic papilla - -[Term] -id: EMAP:9446 -name: TS24,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003667 ! lower jaw molar -relationship: part_of EMAP:9439 ! TS24,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9447 -name: TS24,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:9446 ! TS24,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9448 -name: TS24,dental lamina,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:9447 ! TS24,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9449 -name: TS24,enamel organ,epithelium,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9447 ! TS24,epithelium,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003236 ! epithelium of lower jaw - -[Term] -id: EMAP:945 -name: TS14,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:940 ! TS14,foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:9450 -name: TS24,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005701 ! lower jaw molar odontogenic papilla -relationship: part_of EMAP:9446 ! TS24,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005701 ! lower jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9451 -name: TS24,dental papilla,mesenchyme,molar,tooth,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9450 ! TS24,mesenchyme,molar,tooth,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005701 ! lower jaw molar odontogenic papilla - -[Term] -id: EMAP:9452 -name: TS24,oral cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0000167 ! oral cavity -relationship: part_of EMAP:9282 ! TS24,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9453 -name: TS24,oral epithelium -namespace: mouse_anatomy_stages -is_a: UBERON:0002424 ! oral epithelium -relationship: part_of EMAP:9282 ! TS24,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9454 -name: TS24,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001709 ! upper jaw region -relationship: part_of EMAP:9282 ! TS24,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9455 -name: TS24,lip,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0001834 ! upper lip -relationship: part_of EMAP:9454 ! TS24,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001834 ! upper lip -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9456 -name: TS24,philtrum -namespace: mouse_anatomy_stages -is_a: UBERON:0005402 ! philtrum -relationship: part_of EMAP:9455 ! TS24,lip,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005402 ! philtrum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9457 -name: TS24,skeleton,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003277 ! skeleton of upper jaw -relationship: part_of EMAP:9454 ! TS24,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9458 -name: TS24,maxilla -namespace: mouse_anatomy_stages -is_a: UBERON:0002397 ! maxilla -relationship: part_of EMAP:9457 ! TS24,skeleton,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002397 ! maxilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9459 -name: TS24,mesenchyme,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003323 ! mesenchyme of upper jaw -relationship: part_of EMAP:9454 ! TS24,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003323 ! mesenchyme of upper jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:946 -name: TS14,associated mesenchyme,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:945 ! TS14,rest of foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:9460 -name: TS24,alveolar sulcus,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9454 ! TS24,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001709 ! upper jaw region - -[Term] -id: EMAP:9461 -name: TS24,palate -namespace: mouse_anatomy_stages -is_a: UBERON:0001716 ! secondary palate -relationship: part_of EMAP:9454 ! TS24,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001716 ! secondary palate -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9462 -name: TS24,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0001733 ! soft palate -relationship: part_of EMAP:9461 ! TS24,palate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001733 ! soft palate -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9463 -name: TS24,epithelium,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003358 ! epithelium of soft palate -relationship: part_of EMAP:9462 ! TS24,soft palate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003358 ! epithelium of soft palate -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9464 -name: TS24,mesenchyme,soft palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003417 ! mesenchyme of soft palate -relationship: part_of EMAP:9462 ! TS24,soft palate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003417 ! mesenchyme of soft palate -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9465 -name: TS24,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003216 ! hard palate -relationship: part_of EMAP:9461 ! TS24,palate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003216 ! hard palate -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9466 -name: TS24,epithelium,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003368 ! epithelium of hard palate -relationship: part_of EMAP:9465 ! TS24,hard palate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003368 ! epithelium of hard palate -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9467 -name: TS24,mesenchyme,hard palate -namespace: mouse_anatomy_stages -is_a: UBERON:0003424 ! mesenchyme of hard palate -relationship: part_of EMAP:9465 ! TS24,hard palate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003424 ! mesenchyme of hard palate -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9468 -name: TS24,naso-palatine canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9465 ! TS24,hard palate -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003216 ! hard palate - -[Term] -id: EMAP:947 -name: TS14,epithelium,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:945 ! TS14,rest of foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:9475 -name: TS24,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003267 ! tooth of upper jaw -relationship: part_of EMAP:9454 ! TS24,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003267 ! tooth of upper jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9476 -name: TS24,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003450 ! upper jaw incisor -relationship: part_of EMAP:9475 ! TS24,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9477 -name: TS24,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003355 ! epithelium of incisor -relationship: part_of EMAP:9476 ! TS24,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9478 -name: TS24,dental lamina,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:9477 ! TS24,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9479 -name: TS24,enamel organ,epithelium,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9477 ! TS24,epithelium,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003355 ! epithelium of incisor - -[Term] -id: EMAP:948 -name: TS14,vascular element,rest of foregut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:945 ! TS14,rest of foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001041 ! foregut - -[Term] -id: EMAP:9480 -name: TS24,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005707 ! upper jaw incisor odontogenic papilla -relationship: part_of EMAP:9476 ! TS24,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005707 ! upper jaw incisor odontogenic papilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9481 -name: TS24,dental papilla,mesenchyme,incisor,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9480 ! TS24,mesenchyme,incisor,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005707 ! upper jaw incisor odontogenic papilla - -[Term] -id: EMAP:9482 -name: TS24,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003666 ! upper jaw molar -relationship: part_of EMAP:9475 ! TS24,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9483 -name: TS24,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:9482 ! TS24,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9484 -name: TS24,dental lamina,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0004825 ! dental lamina -relationship: part_of EMAP:9483 ! TS24,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9485 -name: TS24,enamel organ,epithelium,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9483 ! TS24,epithelium,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003235 ! epithelium of upper jaw - -[Term] -id: EMAP:9486 -name: TS24,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0005700 ! upper jaw molar odontogenic papilla -relationship: part_of EMAP:9482 ! TS24,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005700 ! upper jaw molar odontogenic papilla -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9487 -name: TS24,dental papilla,mesenchyme,molar,tooth,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9486 ! TS24,mesenchyme,molar,tooth,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005700 ! upper jaw molar odontogenic papilla - -[Term] -id: EMAP:9488 -name: TS24,sublingual caruncle -namespace: mouse_anatomy_stages -is_a: UBERON:0006688 ! sublingual caruncle -relationship: part_of EMAP:9282 ! TS24,oral region,alimentary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006688 ! sublingual caruncle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9489 -name: TS24,sulcus terminalis,tongue -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9354 ! TS24,tongue -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001723 ! tongue - -[Term] -id: EMAP:949 -name: TS14,gland,foregut -namespace: mouse_anatomy_stages -is_a: UBERON:0003294 ! gland of foregut -relationship: part_of EMAP:940 ! TS14,foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9490 -name: TS24,skeletal muscle,pharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0003384 ! skeletal muscle of pharynx -relationship: part_of EMAP:9322 ! TS24,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003384 ! skeletal muscle of pharynx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9491 -name: TS24,constrictor muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0001569 ! constrictor muscle of pharynx -relationship: part_of EMAP:9490 ! TS24,skeletal muscle,pharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001569 ! constrictor muscle of pharynx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9492 -name: TS24,inferior,constrictor muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9491 ! TS24,constrictor muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001569 ! constrictor muscle of pharynx - -[Term] -id: EMAP:9493 -name: TS24,superior,constrictor muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0006329 ! superior pharyngeal constrictor -relationship: part_of EMAP:9491 ! TS24,constrictor muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006329 ! superior pharyngeal constrictor -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9494 -name: TS24,gum,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0011602 ! gingiva of lower jaw -relationship: part_of EMAP:9431 ! TS24,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011602 ! gingiva of lower jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9495 -name: TS24,epithelium,gum,lower jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003236 ! epithelium of lower jaw -relationship: part_of EMAP:9494 ! TS24,gum,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003236 ! epithelium of lower jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9496 -name: TS24,mesenchyme,gum,lower jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9494 ! TS24,gum,lower jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0011602 ! gingiva of lower jaw - -[Term] -id: EMAP:9497 -name: TS24,gum,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0011601 ! gingiva of upper jaw -relationship: part_of EMAP:9454 ! TS24,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011601 ! gingiva of upper jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9498 -name: TS24,epithelium,gum,upper jaw -namespace: mouse_anatomy_stages -is_a: UBERON:0003235 ! epithelium of upper jaw -relationship: part_of EMAP:9497 ! TS24,gum,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003235 ! epithelium of upper jaw -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9499 -name: TS24,mesenchyme,gum,upper jaw -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9497 ! TS24,gum,upper jaw -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0011601 ! gingiva of upper jaw - -[Term] -id: EMAP:95 -name: TS9,intermediate endoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:94 ! TS9,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -relationship: part_of UBERON:0008945 ! extraembryonic endoderm - -[Term] -id: EMAP:950 -name: TS14,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003091 ! thyroid primordium -relationship: part_of EMAP:949 ! TS14,gland,foregut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9500 -name: TS24,liver and biliary system -namespace: mouse_anatomy_stages -is_a: UBERON:0002423 ! hepatobiliary system -relationship: part_of EMAP:8441 ! TS24,visceral organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9501 -name: TS24,common bile duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001174 ! common bile duct -relationship: part_of EMAP:9500 ! TS24,liver and biliary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9502 -name: TS24,cystic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001152 ! cystic duct -relationship: part_of EMAP:9500 ! TS24,liver and biliary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9503 -name: TS24,gall bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0002110 ! gallbladder -relationship: part_of EMAP:9500 ! TS24,liver and biliary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9504 -name: TS24,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:9500 ! TS24,liver and biliary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9505 -name: TS24,extrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005604 ! hepatic duct extrahepatic part -relationship: part_of EMAP:9504 ! TS24,hepatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005604 ! hepatic duct extrahepatic part -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9506 -name: TS24,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0005605 ! hepatic duct intrahepatic part -relationship: part_of EMAP:9504 ! TS24,hepatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005605 ! hepatic duct intrahepatic part -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9507 -name: TS24,left,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001177 ! left hepatic duct -relationship: part_of EMAP:9506 ! TS24,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9508 -name: TS24,right,intrahepatic part,hepatic duct -namespace: mouse_anatomy_stages -is_a: UBERON:0001176 ! right hepatic duct -relationship: part_of EMAP:9506 ! TS24,intrahepatic part,hepatic duct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9509 -name: TS24,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0002107 ! liver -relationship: part_of EMAP:9500 ! TS24,liver and biliary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002107 ! liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:951 -name: TS14,associated mesenchyme,thyroid primordium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:950 ! TS14,thyroid primordium -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0003091 ! thyroid primordium - -[Term] -id: EMAP:9510 -name: TS24,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001113 ! lobe of liver -relationship: part_of EMAP:9509 ! TS24,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001113 ! lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9511 -name: TS24,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001115 ! left lobe of liver -relationship: part_of EMAP:9510 ! TS24,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9512 -name: TS24,bare area,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:9511 ! TS24,left,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9513 -name: TS24,hepatic ducts,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005171 ! hepatic duct -relationship: part_of EMAP:9511 ! TS24,left,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9514 -name: TS24,hepatic sinusoids,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -relationship: part_of EMAP:9511 ! TS24,left,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9515 -name: TS24,parenchyma,left,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005222 ! liver left lobe parenchyma -relationship: part_of EMAP:9511 ! TS24,left,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005222 ! liver left lobe parenchyma -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9516 -name: TS24,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001114 ! right lobe of liver -relationship: part_of EMAP:9510 ! TS24,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9517 -name: TS24,bare area,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001149 ! bare area of liver -relationship: part_of EMAP:9516 ! TS24,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9518 -name: TS24,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001117 ! caudate lobe of liver -relationship: part_of EMAP:9516 ! TS24,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9519 -name: TS24,hepatic sinusoids,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011737 ! caudate lobe hepatic sinusoids -relationship: part_of EMAP:9518 ! TS24,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011737 ! caudate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:952 -name: TS14,endoderm,thyroid primordium -namespace: mouse_anatomy_stages -is_a: UBERON:0003261 ! thyroid primordium endoderm -relationship: part_of EMAP:950 ! TS14,thyroid primordium -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003261 ! thyroid primordium endoderm -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9520 -name: TS24,parenchyma,caudate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010706 ! parenchyma of caudate lobe of liver -relationship: part_of EMAP:9518 ! TS24,caudate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010706 ! parenchyma of caudate lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9521 -name: TS24,hepatic sinusoids,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -relationship: part_of EMAP:9516 ! TS24,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9522 -name: TS24,parenchyma,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0005221 ! liver right lobe parenchyma -relationship: part_of EMAP:9516 ! TS24,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005221 ! liver right lobe parenchyma -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9523 -name: TS24,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0001116 ! quadrate lobe of liver -relationship: part_of EMAP:9516 ! TS24,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9524 -name: TS24,hepatic sinusoids,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0011738 ! quadrate lobe hepatic sinusoids -relationship: part_of EMAP:9523 ! TS24,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011738 ! quadrate lobe hepatic sinusoids -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9525 -name: TS24,parenchyma,quadrate lobe,right,lobe,liver -namespace: mouse_anatomy_stages -is_a: UBERON:0010704 ! parenchyma of quadrate lobe of liver -relationship: part_of EMAP:9523 ! TS24,quadrate lobe,right,lobe,liver -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010704 ! parenchyma of quadrate lobe of liver -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9526 -name: TS24,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0001008 ! excretory system -relationship: part_of EMAP:8441 ! TS24,visceral organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001008 ! excretory system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9527 -name: TS24,associated mesenchyme,renal/urinary system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9526 ! TS24,renal/urinary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9528 -name: TS24,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0001255 ! urinary bladder -relationship: part_of EMAP:9526 ! TS24,renal/urinary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9529 -name: TS24,fundus region,bladder -namespace: mouse_anatomy_stages -is_a: UBERON:0006082 ! fundus of urinary bladder -relationship: part_of EMAP:9528 ! TS24,bladder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:953 -name: TS14,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006235 ! foregut-midgut junction -relationship: part_of EMAP:939 ! TS14,gut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9530 -name: TS24,trigone region,bladder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9528 ! TS24,bladder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9531 -name: TS24,urachus -namespace: mouse_anatomy_stages -is_a: UBERON:0002068 ! urachus -relationship: part_of EMAP:9528 ! TS24,bladder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002068 ! urachus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9532 -name: TS24,wall,bladder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9528 ! TS24,bladder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9533 -name: TS24,detrusor muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9532 ! TS24,wall,bladder -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9534 -name: TS24,mesentery,renal/urinary system -namespace: mouse_anatomy_stages -is_a: UBERON:0003393 ! mesentery of urinary system -relationship: part_of EMAP:9526 ! TS24,renal/urinary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9535 -name: TS24,urogenital mesentery -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9534 ! TS24,mesentery,renal/urinary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003393 ! mesentery of urinary system - -[Term] -id: EMAP:9536 -name: TS24,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0000081 ! metanephros -relationship: part_of EMAP:9526 ! TS24,renal/urinary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000081 ! metanephros -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9537 -name: TS24,associated mesenchyme,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9536 ! TS24,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9538 -name: TS24,drainage component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9536 ! TS24,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9539 -name: TS24,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0006517 ! kidney calyx -relationship: part_of EMAP:9538 ! TS24,drainage component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006517 ! kidney calyx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:954 -name: TS14,associated mesenchyme,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -relationship: part_of EMAP:953 ! TS14,foregut-midgut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9540 -name: TS24,major,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001226 ! major calyx -relationship: part_of EMAP:9539 ! TS24,calyces,drainage component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001226 ! major calyx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9541 -name: TS24,minor,calyces,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001227 ! minor calyx -relationship: part_of EMAP:9539 ! TS24,calyces,drainage component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001227 ! minor calyx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9542 -name: TS24,pelvis,drainage component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001224 ! renal pelvis -relationship: part_of EMAP:9538 ! TS24,drainage component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9544 -name: TS24,ureter -namespace: mouse_anatomy_stages -is_a: UBERON:0000056 ! ureter -relationship: part_of EMAP:9538 ! TS24,drainage component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000056 ! ureter -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9545 -name: TS24,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9536 ! TS24,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9546 -name: TS24,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0001225 ! cortex of kidney -relationship: part_of EMAP:9545 ! TS24,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9547 -name: TS24,capsule,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0002015 ! kidney capsule -relationship: part_of EMAP:9546 ! TS24,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002015 ! kidney capsule -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9548 -name: TS24,glomeruli,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9546 ! TS24,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9549 -name: TS24,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9546 ! TS24,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000081 ! metanephros - -[Term] -id: EMAP:955 -name: TS14,biliary bud -namespace: mouse_anatomy_stages -is_a: UBERON:0004912 ! biliary bud -relationship: part_of EMAP:953 ! TS14,foregut-midgut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004912 ! biliary bud -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9550 -name: TS24,stem cells,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9546 ! TS24,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9551 -name: TS24,medullary stroma,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0005211 ! renal medulla interstitium -relationship: part_of EMAP:9545 ! TS24,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005211 ! renal medulla interstitium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9552 -name: TS24,medullary tubules,excretory component,metanephros -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9545 ! TS24,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9553 -name: TS24,urorectal septum -namespace: mouse_anatomy_stages -is_a: UBERON:0005760 ! urorectal septum -relationship: part_of EMAP:9526 ! TS24,renal/urinary system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9555 -name: TS24,Bowman's capsule -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9548 ! TS24,glomeruli,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9556 -name: TS24,convoluted tubules,nephrons,cortex,excretory component,metanephros -namespace: mouse_anatomy_stages -is_a: UBERON:0006853 ! renal cortex tubule -relationship: part_of EMAP:9549 ! TS24,nephrons,cortex,excretory component,metanephros -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006853 ! renal cortex tubule -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9557 -name: TS24,female,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000474 ! female reproductive system -relationship: part_of EMAP:8442 ! TS24,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9558 -name: TS24,Mullerian tubercle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000474 ! female reproductive system - -[Term] -id: EMAP:9559 -name: TS24,clitoris -namespace: mouse_anatomy_stages -is_a: UBERON:0006233 ! female genital tubercle -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006233 ! female genital tubercle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:956 -name: TS14,extrahepatic part,biliary bud -namespace: mouse_anatomy_stages -is_a: UBERON:0009495 ! extrahepatic part of biliary bud -relationship: part_of EMAP:955 ! TS14,biliary bud -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009495 ! extrahepatic part of biliary bud -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9560 -name: TS24,genital tubercle,female,reproductive system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9561 -name: TS24,labial swelling -namespace: mouse_anatomy_stages -is_a: UBERON:0011755 ! female labial swelling -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011755 ! female labial swelling -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9562 -name: TS24,mesovarium -namespace: mouse_anatomy_stages -is_a: UBERON:0001342 ! mesovarium -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9563 -name: TS24,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0000992 ! female gonad -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000992 ! female gonad -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9564 -name: TS24,germinal epithelium,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9563 ! TS24,ovary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:9565 -name: TS24,cystic vesicular appendage -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000474 ! female reproductive system - -[Term] -id: EMAP:9566 -name: TS24,mesenchyme,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9563 ! TS24,ovary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9567 -name: TS24,primordial germ cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9563 ! TS24,ovary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000992 ! female gonad - -[Term] -id: EMAP:9568 -name: TS24,rete ovarii,ovary -namespace: mouse_anatomy_stages -is_a: UBERON:0010185 ! rete ovarii -relationship: part_of EMAP:9563 ! TS24,ovary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0010185 ! rete ovarii -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9569 -name: TS24,capsule,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9563 ! TS24,ovary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:957 -name: TS14,intrahepatic part,biliary bud -namespace: mouse_anatomy_stages -is_a: UBERON:0009496 ! intrahepatic part of biliary bud -relationship: part_of EMAP:955 ! TS14,biliary bud -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009496 ! intrahepatic part of biliary bud -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9570 -name: TS24,germinal cells,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9563 ! TS24,ovary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9571 -name: TS24,ovigerous cords,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9563 ! TS24,ovary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9572 -name: TS24,primary oocytes,ovary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9563 ! TS24,ovary -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9574 -name: TS24,oviduct -namespace: mouse_anatomy_stages -is_a: UBERON:0000993 ! oviduct -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000993 ! oviduct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9575 -name: TS24,uterine horn -namespace: mouse_anatomy_stages -is_a: UBERON:0002247 ! uterine horn -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002247 ! uterine horn -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9576 -name: TS24,vagina -namespace: mouse_anatomy_stages -is_a: UBERON:0000996 ! vagina -relationship: part_of EMAP:9557 ! TS24,female,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000996 ! vagina -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9577 -name: TS24,upper part,vagina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9576 ! TS24,vagina -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000996 ! vagina - -[Term] -id: EMAP:9578 -name: TS24,ductus deferens -namespace: mouse_anatomy_stages -is_a: UBERON:0001000 ! vas deferens -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001000 ! vas deferens -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9579 -name: TS24,genital tubercle,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0006261 ! male genital tubercle -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006261 ! male genital tubercle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:958 -name: TS14,epithelium,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009497 ! epithelium of foregut-midgut junction -relationship: part_of EMAP:953 ! TS14,foregut-midgut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9580 -name: TS24,mesorchium -namespace: mouse_anatomy_stages -is_a: UBERON:0011879 ! mesorchium -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9581 -name: TS24,penis -namespace: mouse_anatomy_stages -is_a: UBERON:0000989 ! penis -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000989 ! penis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9582 -name: TS24,glans penis -namespace: mouse_anatomy_stages -is_a: UBERON:0001299 ! glans penis -relationship: part_of EMAP:9581 ! TS24,penis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001299 ! glans penis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9583 -name: TS24,prepuce -namespace: mouse_anatomy_stages -is_a: UBERON:0001332 ! prepuce of penis -relationship: part_of EMAP:9581 ! TS24,penis -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001332 ! prepuce of penis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9587 -name: TS24,efferent duct -namespace: mouse_anatomy_stages -is_a: UBERON:0006946 ! efferent duct -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006946 ! efferent duct -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9589 -name: TS24,urethra -namespace: mouse_anatomy_stages -is_a: UBERON:0001333 ! male urethra -relationship: part_of EMAP:8443 ! TS24,male,reproductive system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001333 ! male urethra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:959 -name: TS14,hepatic diverticulum -namespace: mouse_anatomy_stages -is_a: UBERON:0004912 ! biliary bud -relationship: part_of EMAP:953 ! TS14,foregut-midgut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004912 ! biliary bud -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9590 -name: TS24,prostatic region,urethra -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9589 ! TS24,urethra -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:9591 -name: TS24,penile region,urethra -namespace: mouse_anatomy_stages -is_a: UBERON:0000989 ! penis -relationship: part_of EMAP:9589 ! TS24,urethra -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000989 ! penis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9592 -name: TS24,distal region,urethra -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9589 ! TS24,urethra -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9593 -name: TS24,urethral plate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9589 ! TS24,urethra -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001333 ! male urethra - -[Term] -id: EMAP:9594 -name: TS24,lower part,vagina -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9576 ! TS24,vagina -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000996 ! vagina - -[Term] -id: EMAP:9595 -name: TS24,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001004 ! respiratory system -relationship: part_of EMAP:8441 ! TS24,visceral organ -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9596 -name: TS24,cartilage,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0003406 ! cartilage of respiratory system -relationship: part_of EMAP:9595 ! TS24,respiratory system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003406 ! cartilage of respiratory system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9597 -name: TS24,arytenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001740 ! arytenoid cartilage -relationship: part_of EMAP:9596 ! TS24,cartilage,respiratory system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9598 -name: TS24,cricoid -namespace: mouse_anatomy_stages -is_a: UBERON:0002375 ! cricoid cartilage -relationship: part_of EMAP:9596 ! TS24,cartilage,respiratory system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9599 -name: TS24,laryngeal -namespace: mouse_anatomy_stages -is_a: UBERON:0001739 ! laryngeal cartilage -relationship: part_of EMAP:9596 ! TS24,cartilage,respiratory system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001739 ! laryngeal cartilage -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:96 -name: TS9,parietal endoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0008800 ! parietal endoderm -relationship: part_of EMAP:94 ! TS9,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0008800 ! parietal endoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:960 -name: TS14,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009483 ! mesentery of foregut-midgut junction -relationship: part_of EMAP:953 ! TS14,foregut-midgut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9600 -name: TS24,thyroid,cartilage,respiratory system -namespace: mouse_anatomy_stages -is_a: UBERON:0001738 ! thyroid cartilage -relationship: part_of EMAP:9596 ! TS24,cartilage,respiratory system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001738 ! thyroid cartilage -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9602 -name: TS24,larynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001737 ! larynx -relationship: part_of EMAP:9595 ! TS24,respiratory system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001737 ! larynx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9603 -name: TS24,mucous membranes -namespace: mouse_anatomy_stages -is_a: UBERON:0001824 ! mucosa of larynx -relationship: part_of EMAP:9602 ! TS24,larynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9604 -name: TS24,lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002048 ! lung -relationship: part_of EMAP:9595 ! TS24,respiratory system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002048 ! lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9605 -name: TS24,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002168 ! left lung -relationship: part_of EMAP:9604 ! TS24,lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002168 ! left lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9606 -name: TS24,associated mesenchyme,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009602 ! left lung associated mesenchyme -relationship: part_of EMAP:9605 ! TS24,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9607 -name: TS24,epithelium,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003365 ! epithelium of left lung -relationship: part_of EMAP:9605 ! TS24,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9608 -name: TS24,hilus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004887 ! left lung hilus -relationship: part_of EMAP:9605 ! TS24,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9609 -name: TS24,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003405 ! lobar bronchus of left lung -relationship: part_of EMAP:9605 ! TS24,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:961 -name: TS14,dorsal mesentery,mesentery,foregut-midgut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -relationship: part_of EMAP:960 ! TS14,mesentery,foregut-midgut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9610 -name: TS24,associated mesenchyme,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9609 ! TS24,lobar bronchus,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:9611 -name: TS24,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003539 ! left lung bronchiole -relationship: part_of EMAP:9609 ! TS24,lobar bronchus,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003539 ! left lung bronchiole -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9612 -name: TS24,alveolar system,bronchiole,lobar bronchus,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:9611 ! TS24,bronchiole,lobar bronchus,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9613 -name: TS24,vascular element,lobar bronchus,left lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9609 ! TS24,lobar bronchus,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: EMAP:9614 -name: TS24,vascular element,left lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009536 ! vascular element of left lung -relationship: part_of EMAP:9605 ! TS24,left lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9615 -name: TS24,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002167 ! right lung -relationship: part_of EMAP:9604 ! TS24,lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002167 ! right lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9616 -name: TS24,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004890 ! right lung accessory lobe -relationship: part_of EMAP:9615 ! TS24,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9617 -name: TS24,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004896 ! right lung accessory lobe lobar bronchus -relationship: part_of EMAP:9616 ! TS24,accessory lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004896 ! right lung accessory lobe lobar bronchus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9618 -name: TS24,associated mesenchyme,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9617 ! TS24,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:9619 -name: TS24,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005682 ! right lung accessory lobe bronchiole -relationship: part_of EMAP:9617 ! TS24,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005682 ! right lung accessory lobe bronchiole -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:962 -name: TS14,vascular element,foregut-midgut junction -namespace: mouse_anatomy_stages -relationship: part_of EMAP:953 ! TS14,foregut-midgut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0006235 ! foregut-midgut junction - -[Term] -id: EMAP:9620 -name: TS24,alveolar system,bronchiole,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:9619 ! TS24,bronchiole,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9621 -name: TS24,vascular element,lobar bronchus,accessory lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9617 ! TS24,lobar bronchus,accessory lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004896 ! right lung accessory lobe lobar bronchus - -[Term] -id: EMAP:9622 -name: TS24,associated mesenchyme,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009603 ! right lung associated mesenchyme -relationship: part_of EMAP:9615 ! TS24,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9623 -name: TS24,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002171 ! lower lobe of right lung -relationship: part_of EMAP:9615 ! TS24,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9624 -name: TS24,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -relationship: part_of EMAP:9623 ! TS24,caudal lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9625 -name: TS24,associated mesenchyme,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9624 ! TS24,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:9626 -name: TS24,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0012059 ! right lung lower lobe bronchiole -relationship: part_of EMAP:9624 ! TS24,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0012059 ! right lung lower lobe bronchiole -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9627 -name: TS24,alveolar system,bronchiole,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:9626 ! TS24,bronchiole,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9628 -name: TS24,vascular element,lobar bronchus,caudal lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9624 ! TS24,lobar bronchus,caudal lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005245 ! lobar bronchus of right lung caudal lobe - -[Term] -id: EMAP:9629 -name: TS24,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002170 ! upper lobe of right lung -relationship: part_of EMAP:9615 ! TS24,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:963 -name: TS14,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:939 ! TS14,gut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:9630 -name: TS24,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -relationship: part_of EMAP:9629 ! TS24,cranial lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9631 -name: TS24,associated mesenchyme,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9630 ! TS24,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:9632 -name: TS24,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0005681 ! right lung upper lobe bronchiole -relationship: part_of EMAP:9630 ! TS24,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005681 ! right lung upper lobe bronchiole -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9633 -name: TS24,alveolar system,bronchiole,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:9632 ! TS24,bronchiole,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9634 -name: TS24,vascular element,lobar bronchus,cranial lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9630 ! TS24,lobar bronchus,cranial lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: EMAP:9635 -name: TS24,epithelium,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0003364 ! epithelium of right lung -relationship: part_of EMAP:9615 ! TS24,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9636 -name: TS24,hilus,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0004888 ! right lung hilus -relationship: part_of EMAP:9615 ! TS24,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9637 -name: TS24,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002174 ! middle lobe of right lung -relationship: part_of EMAP:9615 ! TS24,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9638 -name: TS24,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0002183 ! lobar bronchus -relationship: part_of EMAP:9637 ! TS24,middle lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9639 -name: TS24,associated mesenchyme,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9638 ! TS24,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:964 -name: TS14,associated mesenchyme,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:963 ! TS14,hindgut diverticulum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:9640 -name: TS24,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0012068 ! right lung middle lobe bronchiole -relationship: part_of EMAP:9638 ! TS24,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0012068 ! right lung middle lobe bronchiole -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9641 -name: TS24,alveolar system,bronchiole,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0006524 ! alveolar system -relationship: part_of EMAP:9640 ! TS24,bronchiole,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9642 -name: TS24,vascular element,lobar bronchus,middle lobe,right lung -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9638 ! TS24,lobar bronchus,middle lobe,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002183 ! lobar bronchus - -[Term] -id: EMAP:9643 -name: TS24,vascular element,right lung -namespace: mouse_anatomy_stages -is_a: UBERON:0009537 ! vascular element of right lung -relationship: part_of EMAP:9615 ! TS24,right lung -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9644 -name: TS24,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0000065 ! respiratory tract -relationship: part_of EMAP:9595 ! TS24,respiratory system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9645 -name: TS24,lower,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001558 ! lower respiratory tract -relationship: part_of EMAP:9644 ! TS24,respiratory tract -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9646 -name: TS24,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002182 ! main bronchus -relationship: part_of EMAP:9645 ! TS24,lower,respiratory tract -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9647 -name: TS24,associated mesenchyme,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0009504 ! associated mesenchyme of main bronchus -relationship: part_of EMAP:9646 ! TS24,main bronchus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009504 ! associated mesenchyme of main bronchus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9648 -name: TS24,epithelium,main bronchus -namespace: mouse_anatomy_stages -is_a: UBERON:0002340 ! epithelium of main bronchus -relationship: part_of EMAP:9646 ! TS24,main bronchus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9649 -name: TS24,vascular element,main bronchus -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9646 ! TS24,main bronchus -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002182 ! main bronchus - -[Term] -id: EMAP:965 -name: TS14,epithelium,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:963 ! TS14,hindgut diverticulum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:9650 -name: TS24,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003126 ! trachea -relationship: part_of EMAP:9645 ! TS24,lower,respiratory tract -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003126 ! trachea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9651 -name: TS24,associated mesenchyme,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0009505 ! associated mesenchyme of trachea -relationship: part_of EMAP:9650 ! TS24,trachea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0009505 ! associated mesenchyme of trachea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9652 -name: TS24,epithelium,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:9650 ! TS24,trachea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9653 -name: TS24,cartilaginous ring,trachea -namespace: mouse_anatomy_stages -is_a: UBERON:0003604 ! trachea cartilage -relationship: part_of EMAP:9650 ! TS24,trachea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003604 ! trachea cartilage -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9654 -name: TS24,vascular element,trachea -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9650 ! TS24,trachea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003126 ! trachea - -[Term] -id: EMAP:9655 -name: TS24,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0006679 ! carina of trachea -relationship: part_of EMAP:9650 ! TS24,trachea -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9656 -name: TS24,associated mesenchyme,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9655 ! TS24,carina tracheae -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:9657 -name: TS24,epithelium,carina tracheae -namespace: mouse_anatomy_stages -is_a: UBERON:0001901 ! epithelium of trachea -relationship: part_of EMAP:9655 ! TS24,carina tracheae -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9658 -name: TS24,vascular element,carina tracheae -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9655 ! TS24,carina tracheae -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006679 ! carina of trachea - -[Term] -id: EMAP:9659 -name: TS24,upper,respiratory tract -namespace: mouse_anatomy_stages -is_a: UBERON:0001557 ! upper respiratory tract -relationship: part_of EMAP:9644 ! TS24,respiratory tract -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:966 -name: TS14,vascular element,hindgut diverticulum -namespace: mouse_anatomy_stages -relationship: part_of EMAP:963 ! TS14,hindgut diverticulum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001555 ! digestive tract - -[Term] -id: EMAP:9660 -name: TS24,nasopharynx -namespace: mouse_anatomy_stages -is_a: UBERON:0001728 ! nasopharynx -relationship: part_of EMAP:9659 ! TS24,upper,respiratory tract -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9661 -name: TS24,associated mesenchyme,nasopharynx -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9660 ! TS24,nasopharynx -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001728 ! nasopharynx - -[Term] -id: EMAP:9662 -name: TS24,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0003276 ! skeleton of embryo -relationship: part_of EMAP:8439 ! TS24,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003276 ! skeleton of embryo -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9663 -name: TS24,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:9662 ! TS24,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9664 -name: TS24,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006072 ! cervical region of vertebral column -relationship: part_of EMAP:9663 ! TS24,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9665 -name: TS24,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002413 ! cervical vertebra -relationship: part_of EMAP:9664 ! TS24,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9666 -name: TS24,C1,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9665 ! TS24,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:9667 -name: TS24,cruciate ligament -namespace: mouse_anatomy_stages -is_a: UBERON:0011106 ! cruciate ligament of atlas -relationship: part_of EMAP:9666 ! TS24,C1,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011106 ! cruciate ligament of atlas -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9668 -name: TS24,C2,vertebra,cervical region,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9665 ! TS24,vertebra,cervical region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002413 ! cervical vertebra - -[Term] -id: EMAP:967 -name: TS14,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0001045 ! midgut -relationship: part_of EMAP:939 ! TS14,gut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001045 ! midgut -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9671 -name: TS24,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006074 ! lumbar region of vertebral column -relationship: part_of EMAP:9663 ! TS24,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9672 -name: TS24,vertebra,lumbar region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002414 ! lumbar vertebra -relationship: part_of EMAP:9671 ! TS24,lumbar region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002414 ! lumbar vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9673 -name: TS24,nucleus pulposus,axial skeleton -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9663 ! TS24,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EMAP:9674 -name: TS24,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006075 ! sacral region of vertebral column -relationship: part_of EMAP:9663 ! TS24,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9675 -name: TS24,vertebra,sacral region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0001094 ! sacral vertebra -relationship: part_of EMAP:9674 ! TS24,sacral region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001094 ! sacral vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9676 -name: TS24,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0006073 ! thoracic region of vertebral column -relationship: part_of EMAP:9663 ! TS24,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:968 -name: TS14,associated mesenchyme,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0009478 ! associated mesenchyme of midgut -relationship: part_of EMAP:967 ! TS14,midgut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0009478 ! associated mesenchyme of midgut -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9681 -name: TS24,vertebra,thoracic region,axial skeleton -namespace: mouse_anatomy_stages -is_a: UBERON:0002347 ! thoracic vertebra -relationship: part_of EMAP:9676 ! TS24,thoracic region,axial skeleton -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002347 ! thoracic vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9682 -name: TS24,cranium -namespace: mouse_anatomy_stages -is_a: UBERON:0003129 ! skull -relationship: part_of EMAP:9662 ! TS24,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003129 ! skull -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9683 -name: TS24,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0002241 ! chondrocranium -relationship: part_of EMAP:9682 ! TS24,cranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9684 -name: TS24,basioccipital bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001692 ! basioccipital bone -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9685 -name: TS24,basisphenoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0006428 ! basisphenoid bone -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9686 -name: TS24,carotid canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006668 ! carotid canal -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006668 ! carotid canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9687 -name: TS24,exoccipital bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001693 ! exoccipital bone -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:969 -name: TS14,epithelium,midgut -namespace: mouse_anatomy_stages -is_a: UBERON:0003352 ! epithelium of midgut -relationship: part_of EMAP:967 ! TS14,midgut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003352 ! epithelium of midgut -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9690 -name: TS24,foramen ovale,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001698 ! foramen ovale of skull -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001698 ! foramen ovale of skull -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9691 -name: TS24,foramen rotundum -namespace: mouse_anatomy_stages -is_a: UBERON:0005446 ! foramen rotundum -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005446 ! foramen rotundum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9692 -name: TS24,hypoglossal canal -namespace: mouse_anatomy_stages -is_a: UBERON:0006682 ! hypoglossal canal -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006682 ! hypoglossal canal -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9693 -name: TS24,jugular foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0005456 ! jugular foramen -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005456 ! jugular foramen -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9694 -name: TS24,sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001677 ! sphenoid bone -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001677 ! sphenoid bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9695 -name: TS24,sphenoidal canal -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9694 ! TS24,sphenoid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001677 ! sphenoid bone - -[Term] -id: EMAP:9696 -name: TS24,supraoccipital cartilage condensation -namespace: mouse_anatomy_stages -is_a: UBERON:0011162 ! supraoccipital cartilaginous condensation -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011162 ! supraoccipital cartilaginous condensation -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9697 -name: TS24,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:9683 ! TS24,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9698 -name: TS24,petrous part,temporal bone,chondrocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0001694 ! petrous part of temporal bone -relationship: part_of EMAP:9697 ! TS24,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9699 -name: TS24,tempero-mandibular joint -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9698 ! TS24,petrous part,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:97 -name: TS9,Reichert's membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0004369 ! Reichert's membrane -relationship: part_of EMAP:96 ! TS9,parietal endoderm -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0004369 ! Reichert's membrane -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:970 -name: TS14,vascular element,midgut -namespace: mouse_anatomy_stages -relationship: part_of EMAP:967 ! TS14,midgut -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001045 ! midgut - -[Term] -id: EMAP:9700 -name: TS24,zygomatic process -namespace: mouse_anatomy_stages -is_a: UBERON:0004655 ! zygomatic process of temporal bone -relationship: part_of EMAP:9697 ! TS24,temporal bone,chondrocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004655 ! zygomatic process of temporal bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9701 -name: TS24,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0004339 ! vault of skull -relationship: part_of EMAP:9682 ! TS24,cranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9702 -name: TS24,frontal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0000209 ! tetrapod frontal bone -relationship: part_of EMAP:9701 ! TS24,vault of skull -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000209 ! tetrapod frontal bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9703 -name: TS24,inter-parietal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0002229 ! interparietal bone -relationship: part_of EMAP:9701 ! TS24,vault of skull -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002229 ! interparietal bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9704 -name: TS24,parietal bone -namespace: mouse_anatomy_stages -is_a: UBERON:0000210 ! tetrapod parietal bone -relationship: part_of EMAP:9701 ! TS24,vault of skull -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000210 ! tetrapod parietal bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9705 -name: TS24,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001678 ! temporal bone -relationship: part_of EMAP:9701 ! TS24,vault of skull -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9706 -name: TS24,squamous part,temporal bone,vault of skull -namespace: mouse_anatomy_stages -is_a: UBERON:0001695 ! squamous part of temporal bone -relationship: part_of EMAP:9705 ! TS24,temporal bone,vault of skull -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9707 -name: TS24,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0011156 ! facial skeleton -relationship: part_of EMAP:9682 ! TS24,cranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9708 -name: TS24,ethmoid bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001679 ! ethmoid bone -relationship: part_of EMAP:9707 ! TS24,viscerocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001679 ! ethmoid bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9709 -name: TS24,facial bones -namespace: mouse_anatomy_stages -is_a: UBERON:0003462 ! facial bone -relationship: part_of EMAP:9707 ! TS24,viscerocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003462 ! facial bone -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:971 -name: TS14,mouth-foregut junction -namespace: mouse_anatomy_stages -is_a: UBERON:0006264 ! mouth-foregut junction -relationship: part_of EMAP:938 ! TS14,alimentary system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006264 ! mouth-foregut junction -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9710 -name: TS24,optic foramen -namespace: mouse_anatomy_stages -is_a: UBERON:0006269 ! optic foramen -relationship: part_of EMAP:9707 ! TS24,viscerocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006269 ! optic foramen -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9711 -name: TS24,orbital fissure,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0006271 ! orbital fissure -relationship: part_of EMAP:9707 ! TS24,viscerocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006271 ! orbital fissure -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9712 -name: TS24,superior,orbital fissure,viscerocranium -namespace: mouse_anatomy_stages -is_a: UBERON:0005480 ! superior orbital fissure -relationship: part_of EMAP:9711 ! TS24,orbital fissure,viscerocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005480 ! superior orbital fissure -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9713 -name: TS24,orbito-sphenoid -namespace: mouse_anatomy_stages -is_a: UBERON:0002478 ! orbitosphenoid -relationship: part_of EMAP:9707 ! TS24,viscerocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9714 -name: TS24,turbinate,viscerocranium -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9707 ! TS24,viscerocranium -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9715 -name: TS24,pectoral girdle and thoracic body wall,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007831 ! skeleton of pectoral girdle -relationship: part_of EMAP:9662 ! TS24,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007831 ! skeleton of pectoral girdle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9716 -name: TS24,clavicle -namespace: mouse_anatomy_stages -is_a: UBERON:0001105 ! clavicle -relationship: part_of EMAP:9715 ! TS24,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001105 ! clavicle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9717 -name: TS24,costo-vertebral joint -namespace: mouse_anatomy_stages -is_a: UBERON:0002292 ! costovertebral joint -relationship: part_of EMAP:9715 ! TS24,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002292 ! costovertebral joint -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9718 -name: TS24,scapula -namespace: mouse_anatomy_stages -is_a: UBERON:0001124 ! pectoral limb scapula -relationship: part_of EMAP:9715 ! TS24,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001124 ! pectoral limb scapula -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9719 -name: TS24,sternum -namespace: mouse_anatomy_stages -is_a: UBERON:0000975 ! sternum -relationship: part_of EMAP:9715 ! TS24,pectoral girdle and thoracic body wall,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000975 ! sternum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:972 -name: TS14,buccopharyngeal membrane -namespace: mouse_anatomy_stages -is_a: UBERON:0006211 ! buccopharyngeal membrane -relationship: part_of EMAP:971 ! TS14,mouth-foregut junction -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0006211 ! buccopharyngeal membrane -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9720 -name: TS24,manubrium sterni -namespace: mouse_anatomy_stages -is_a: UBERON:0002205 ! manubrium of sternum -relationship: part_of EMAP:9719 ! TS24,sternum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002205 ! manubrium of sternum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9721 -name: TS24,sternebral bone -namespace: mouse_anatomy_stages -is_a: UBERON:0002208 ! sternebra -relationship: part_of EMAP:9719 ! TS24,sternum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002208 ! sternebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9722 -name: TS24,xiphisternum -namespace: mouse_anatomy_stages -is_a: UBERON:0006430 ! xiphoid cartilage -relationship: part_of EMAP:9719 ! TS24,sternum -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006430 ! xiphoid cartilage -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9723 -name: TS24,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0007832 ! skeleton of pelvic girdle -relationship: part_of EMAP:9662 ! TS24,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007832 ! skeleton of pelvic girdle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9724 -name: TS24,acetabular region,pelvic girdle,skeleton,embryo -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9723 ! TS24,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:9725 -name: TS24,synovial cavity of hip bone -namespace: mouse_anatomy_stages -is_a: UBERON:0007618 ! synovial cavity of hip joint -relationship: part_of EMAP:9724 ! TS24,acetabular region,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007618 ! synovial cavity of hip joint -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9726 -name: TS24,iliac bone -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9723 ! TS24,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:9727 -name: TS24,ischial bone -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9723 ! TS24,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: EMAP:9728 -name: TS24,pubic bone -namespace: mouse_anatomy_stages -is_a: UBERON:0001275 ! pubis -relationship: part_of EMAP:9723 ! TS24,pelvic girdle,skeleton,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001275 ! pubis -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9729 -name: TS24,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0007144 ! tail of embryo -relationship: part_of EMAP:8439 ! TS24,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0007144 ! tail of embryo -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9730 -name: TS24,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9729 ! TS24,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:9731 -name: TS24,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003077 ! paraxial mesoderm -relationship: part_of EMAP:9730 ! TS24,mesenchyme,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9732 -name: TS24,unsegmented mesenchyme,paraxial mesenchyme,mesenchyme,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9731 ! TS24,paraxial mesenchyme,mesenchyme,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EMAP:9733 -name: TS24,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9729 ! TS24,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:9734 -name: TS24,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001017 ! central nervous system -relationship: part_of EMAP:9733 ! TS24,nervous system,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9735 -name: TS24,spinal cord,central nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002240 ! spinal cord -relationship: part_of EMAP:9734 ! TS24,central nervous system,nervous system,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9736 -name: TS24,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000010 ! peripheral nervous system -relationship: part_of EMAP:9733 ! TS24,nervous system,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9737 -name: TS24,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0003338 ! ganglion of peripheral nervous system -relationship: part_of EMAP:9736 ! TS24,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003338 ! ganglion of peripheral nervous system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9738 -name: TS24,dorsal root ganglion,ganglion,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0000044 ! dorsal root ganglion -relationship: part_of EMAP:9737 ! TS24,ganglion,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9739 -name: TS24,segmental spinal nerve,peripheral nervous system,nervous system,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9736 ! TS24,peripheral nervous system,nervous system,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:974 -name: TS14,oral region,alimentary system -namespace: mouse_anatomy_stages -is_a: UBERON:0000165 ! mouth -relationship: part_of EMAP:938 ! TS14,alimentary system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000165 ! mouth -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9740 -name: TS24,skeleton,tail -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9729 ! TS24,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0007144 ! tail of embryo - -[Term] -id: EMAP:9741 -name: TS24,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0002090 ! postcranial axial skeleton -relationship: part_of EMAP:9740 ! TS24,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9742 -name: TS24,vertebra,axial skeleton,skeleton,tail -namespace: mouse_anatomy_stages -is_a: UBERON:0001095 ! caudal vertebra -relationship: part_of EMAP:9741 ! TS24,axial skeleton,skeleton,tail -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9743 -name: TS24,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:8439 ! TS24,embryo -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:9744 -name: TS24,anterior abdominal wall -namespace: mouse_anatomy_stages -is_a: UBERON:0006635 ! anterior abdominal wall -relationship: part_of EMAP:9743 ! TS24,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0006635 ! anterior abdominal wall -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9745 -name: TS24,skeletal muscle,anterior abdominal wall -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9744 ! TS24,anterior abdominal wall -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0006635 ! anterior abdominal wall - -[Term] -id: EMAP:9746 -name: TS24,external oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005442 ! external oblique -relationship: part_of EMAP:9745 ! TS24,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005442 ! external oblique -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9747 -name: TS24,internal oblique -namespace: mouse_anatomy_stages -is_a: UBERON:0005454 ! internal oblique -relationship: part_of EMAP:9745 ! TS24,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0005454 ! internal oblique -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9748 -name: TS24,rectus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0002382 ! rectus abdominis muscle -relationship: part_of EMAP:9745 ! TS24,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9749 -name: TS24,transversus abdominis -namespace: mouse_anatomy_stages -is_a: UBERON:0001221 ! transversus abdominis muscle -relationship: part_of EMAP:9745 ! TS24,skeletal muscle,anterior abdominal wall -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:975 -name: TS14,stomatodaeum -namespace: mouse_anatomy_stages -is_a: UBERON:0000930 ! stomodeum -relationship: part_of EMAP:974 ! TS14,oral region,alimentary system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9750 -name: TS24,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:9743 ! TS24,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9751 -name: TS24,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0003897 ! axial muscle -relationship: part_of EMAP:9750 ! TS24,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9752 -name: TS24,erector spinae -namespace: mouse_anatomy_stages -is_a: UBERON:0002462 ! erector spinae muscle group -relationship: part_of EMAP:9751 ! TS24,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9754 -name: TS24,ilio-psoas -namespace: mouse_anatomy_stages -is_a: UBERON:0001999 ! iliopsoas -relationship: part_of EMAP:9751 ! TS24,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001999 ! iliopsoas -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9756 -name: TS24,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9751 ! TS24,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:9757 -name: TS24,external layer,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9756 ! TS24,intercostal,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:9758 -name: TS24,internal layer,intercostal,skeletal muscle,axial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9756 ! TS24,intercostal,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0003897 ! axial muscle - -[Term] -id: EMAP:9759 -name: TS24,psoas major -namespace: mouse_anatomy_stages -is_a: UBERON:0001298 ! psoas major muscle -relationship: part_of EMAP:9751 ! TS24,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001298 ! psoas major muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:976 -name: TS14,gland,stomatodaeum -namespace: mouse_anatomy_stages -is_a: UBERON:0010047 ! oral gland -relationship: part_of EMAP:975 ! TS14,stomatodaeum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0010047 ! oral gland -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9760 -name: TS24,psoas minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001372 ! psoas minor muscle -relationship: part_of EMAP:9751 ! TS24,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001372 ! psoas minor muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9761 -name: TS24,quadratus lumborum -namespace: mouse_anatomy_stages -is_a: UBERON:0001220 ! quadratus lumborum -relationship: part_of EMAP:9751 ! TS24,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001220 ! quadratus lumborum -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9762 -name: TS24,serratus anterior -namespace: mouse_anatomy_stages -is_a: UBERON:0001125 ! serratus anterior -relationship: part_of EMAP:9751 ! TS24,skeletal muscle,axial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001125 ! serratus anterior -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9763 -name: TS24,cranial muscle -namespace: mouse_anatomy_stages -is_a: UBERON:0002376 ! muscle of head -relationship: part_of EMAP:9743 ! TS24,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002376 ! muscle of head -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9764 -name: TS24,skeletal muscle,cranial muscle -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9763 ! TS24,cranial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002376 ! muscle of head - -[Term] -id: EMAP:9765 -name: TS24,masseter -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9764 ! TS24,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9766 -name: TS24,myelohyoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9764 ! TS24,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9767 -name: TS24,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9764 ! TS24,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9768 -name: TS24,lateral,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9767 ! TS24,pterygoid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9769 -name: TS24,medial,pterygoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9767 ! TS24,pterygoid -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:977 -name: TS14,pituitary -namespace: mouse_anatomy_stages -relationship: part_of EMAP:976 ! TS14,gland,stomatodaeum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0010047 ! oral gland - -[Term] -id: EMAP:9770 -name: TS24,sterno-mastoid -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9764 ! TS24,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9771 -name: TS24,temporalis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9764 ! TS24,skeletal muscle,cranial muscle -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9772 -name: TS24,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9743 ! TS24,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:9773 -name: TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9772 ! TS24,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:9774 -name: TS24,deltoid -namespace: mouse_anatomy_stages -is_a: UBERON:0001476 ! deltoid -relationship: part_of EMAP:9773 ! TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001476 ! deltoid -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9775 -name: TS24,infraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0001477 ! infraspinatus muscle -relationship: part_of EMAP:9773 ! TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001477 ! infraspinatus muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9776 -name: TS24,latissimus dorsi -namespace: mouse_anatomy_stages -is_a: UBERON:0001112 ! latissimus dorsi muscle -relationship: part_of EMAP:9773 ! TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9777 -name: TS24,pectoralis major -namespace: mouse_anatomy_stages -is_a: UBERON:0002381 ! pectoralis major -relationship: part_of EMAP:9773 ! TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9778 -name: TS24,pectoralis minor -namespace: mouse_anatomy_stages -is_a: UBERON:0001100 ! pectoralis minor -relationship: part_of EMAP:9773 ! TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9779 -name: TS24,subscapularis -namespace: mouse_anatomy_stages -is_a: UBERON:0001129 ! subscapularis muscle -relationship: part_of EMAP:9773 ! TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:978 -name: TS14,Rathke's pouch -namespace: mouse_anatomy_stages -is_a: UBERON:0005356 ! Rathke's pouch -relationship: part_of EMAP:977 ! TS14,pituitary -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9780 -name: TS24,supraspinatus -namespace: mouse_anatomy_stages -is_a: UBERON:0002383 ! supraspinatus muscle -relationship: part_of EMAP:9773 ! TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9781 -name: TS24,trapezius -namespace: mouse_anatomy_stages -is_a: UBERON:0002380 ! trapezius -relationship: part_of EMAP:9773 ! TS24,skeletal muscle,pectoral girdle and thoracic body wall,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002380 ! trapezius -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9782 -name: TS24,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9743 ! TS24,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0000922 ! embryo - -[Term] -id: EMAP:9783 -name: TS24,skeletal muscle,pelvic girdle,vertebral axis muscle system -namespace: mouse_anatomy_stages -is_a: UBERON:0003271 ! skeletal muscle of pelvic girdle -relationship: part_of EMAP:9782 ! TS24,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0003271 ! skeletal muscle of pelvic girdle -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9784 -name: TS24,gluteus maximus -namespace: mouse_anatomy_stages -is_a: UBERON:0001370 ! gluteus maximus -relationship: part_of EMAP:9783 ! TS24,skeletal muscle,pelvic girdle,vertebral axis muscle system -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001370 ! gluteus maximus -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:979 -name: TS14,rest of ectoderm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:975 ! TS14,stomatodaeum -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0000930 ! stomodeum - -[Term] -id: EMAP:9791 -name: TS24,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9792 -name: TS24,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:9791 ! TS24,extraembryonic component -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9793 -name: TS24,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:9792 ! TS24,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9794 -name: TS24,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:9793 ! TS24,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9795 -name: TS24,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9794 ! TS24,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:9796 -name: TS24,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9792 ! TS24,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:9797 -name: TS24,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:9796 ! TS24,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000033 ! Theiler stage 24 - -[Term] -id: EMAP:9798 -name: TS24,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9797 ! TS24,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000033 ! Theiler stage 24 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:9799 -name: TS25,embryo -namespace: mouse_anatomy_stages -is_a: UBERON:0000922 ! embryo -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000922 ! embryo -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:98 -name: TS9,visceral endoderm,endoderm,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004877 ! visceral endoderm -relationship: part_of EMAP:94 ! TS9,endoderm,extraembryonic component -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0004877 ! visceral endoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:980 -name: TS14,urogenital system -namespace: mouse_anatomy_stages -is_a: UBERON:0004122 ! genitourinary system -relationship: part_of EMAP:937 ! TS14,visceral organ -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9800 -name: TS25,organ system -namespace: mouse_anatomy_stages -is_a: UBERON:0000467 ! anatomical system -relationship: part_of EMAP:9799 ! TS25,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9801 -name: TS25,visceral organ -namespace: mouse_anatomy_stages -is_a: UBERON:0002075 ! viscus -relationship: part_of EMAP:9800 ! TS25,organ system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002075 ! viscus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9802 -name: TS25,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000990 ! reproductive system -relationship: part_of EMAP:9801 ! TS25,visceral organ -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9803 -name: TS25,male,reproductive system -namespace: mouse_anatomy_stages -is_a: UBERON:0000079 ! male reproductive system -relationship: part_of EMAP:9802 ! TS25,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9804 -name: TS25,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0000473 ! testis -relationship: part_of EMAP:9803 ! TS25,male,reproductive system -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0000473 ! testis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9805 -name: TS25,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9804 ! TS25,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9806 -name: TS25,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9805 ! TS25,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9807 -name: TS25,primitive seminiferous tubules,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0001343 ! seminiferous tubule of testis -relationship: part_of EMAP:9806 ! TS25,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9808 -name: TS25,primordial germ cells,primitive seminiferous tubules,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9807 ! TS25,primitive seminiferous tubules,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: EMAP:9809 -name: TS25,intestitial tissue,non-hilar region,medullary region,testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005212 ! testis interstitial tissue -relationship: part_of EMAP:9806 ! TS25,non-hilar region,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005212 ! testis interstitial tissue -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:981 -name: TS14,associated mesenchyme,urogenital system -namespace: mouse_anatomy_stages -relationship: part_of EMAP:980 ! TS14,urogenital system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004122 ! genitourinary system - -[Term] -id: EMAP:9810 -name: TS25,hilar region,medullary region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9805 ! TS25,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9811 -name: TS25,rete testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9810 ! TS25,hilar region,medullary region,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9812 -name: TS25,cortical region,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9804 ! TS25,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9813 -name: TS25,mediastinum testis -namespace: mouse_anatomy_stages -is_a: UBERON:0005051 ! mediastinum testis -relationship: part_of EMAP:9804 ! TS25,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005051 ! mediastinum testis -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9815 -name: TS25,mesenchyme,testis -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9804 ! TS25,testis -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9816 -name: TS25,cavities and their linings -namespace: mouse_anatomy_stages -is_a: UBERON:0004458 ! body cavity or lining -relationship: part_of EMAP:9799 ! TS25,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0004458 ! body cavity or lining -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9817 -name: TS25,intraembryonic coelom -namespace: mouse_anatomy_stages -is_a: UBERON:0003887 ! intraembryonic coelom -relationship: part_of EMAP:9816 ! TS25,cavities and their linings -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9818 -name: TS25,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0001103 ! diaphragm -relationship: part_of EMAP:9817 ! TS25,intraembryonic coelom -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9819 -name: TS25,central tendon,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0006670 ! central tendon -relationship: part_of EMAP:9818 ! TS25,diaphragm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006670 ! central tendon -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:982 -name: TS14,nephric cord -namespace: mouse_anatomy_stages -is_a: UBERON:0005792 ! nephric ridge -relationship: part_of EMAP:980 ! TS14,urogenital system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005792 ! nephric ridge -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9820 -name: TS25,dome,diaphragm -namespace: mouse_anatomy_stages -is_a: UBERON:0007145 ! dome of diaphragm -relationship: part_of EMAP:9818 ! TS25,diaphragm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0007145 ! dome of diaphragm -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9821 -name: TS25,pleuro-pericardial folds -namespace: mouse_anatomy_stages -is_a: UBERON:0006278 ! pleuropericardial folds -relationship: part_of EMAP:9818 ! TS25,diaphragm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006278 ! pleuropericardial folds -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9822 -name: TS25,pleuro-peritoneal folds -namespace: mouse_anatomy_stages -is_a: UBERON:0009133 ! pleuroperitoneal membrane -relationship: part_of EMAP:9818 ! TS25,diaphragm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009133 ! pleuroperitoneal membrane -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9824 -name: TS25,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001074 ! pericardial cavity -relationship: part_of EMAP:9817 ! TS25,intraembryonic coelom -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9825 -name: TS25,cavity,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001074 ! pericardial cavity -relationship: part_of EMAP:9824 ! TS25,pericardial cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9826 -name: TS25,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003388 ! mesothelium of pericardial cavity -relationship: part_of EMAP:9824 ! TS25,pericardial cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003388 ! mesothelium of pericardial cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9827 -name: TS25,parietal,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9826 ! TS25,mesothelium,pericardial cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003388 ! mesothelium of pericardial cavity - -[Term] -id: EMAP:9828 -name: TS25,visceral,mesothelium,pericardial cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9826 ! TS25,mesothelium,pericardial cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003388 ! mesothelium of pericardial cavity - -[Term] -id: EMAP:9829 -name: TS25,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:9817 ! TS25,intraembryonic coelom -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001179 ! peritoneal cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:983 -name: TS14,nephric duct -namespace: mouse_anatomy_stages -is_a: UBERON:0003074 ! mesonephric duct -relationship: part_of EMAP:980 ! TS14,urogenital system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9830 -name: TS25,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005449 ! greater sac -relationship: part_of EMAP:9829 ! TS25,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005449 ! greater sac -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9831 -name: TS25,cavity,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:9830 ! TS25,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9832 -name: TS25,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0005671 ! greater sac mesothelium -relationship: part_of EMAP:9830 ! TS25,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9833 -name: TS25,parietal,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9832 ! TS25,mesothelium,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:9834 -name: TS25,visceral,mesothelium,greater sac,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9832 ! TS25,mesothelium,greater sac,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0005671 ! greater sac mesothelium - -[Term] -id: EMAP:9835 -name: TS25,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001341 ! lesser sac -relationship: part_of EMAP:9829 ! TS25,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9836 -name: TS25,mesothelium,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003274 ! mesothelium of omental bursa -relationship: part_of EMAP:9835 ! TS25,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9837 -name: TS25,parietal,mesothelium,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9836 ! TS25,mesothelium,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003274 ! mesothelium of omental bursa - -[Term] -id: EMAP:9838 -name: TS25,cavity,omental bursa,peritoneal cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0001179 ! peritoneal cavity -relationship: part_of EMAP:9835 ! TS25,omental bursa,peritoneal cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9839 -name: TS25,pleural cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0002402 ! pleural cavity -relationship: part_of EMAP:9817 ! TS25,intraembryonic coelom -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:984 -name: TS14,primordial germ cells -namespace: mouse_anatomy_stages -relationship: part_of EMAP:980 ! TS14,urogenital system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004122 ! genitourinary system - -[Term] -id: EMAP:9840 -name: TS25,cavity,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9839 ! TS25,pleural cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002402 ! pleural cavity - -[Term] -id: EMAP:9841 -name: TS25,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -is_a: UBERON:0003390 ! mesothelium of pleural cavity -relationship: part_of EMAP:9839 ! TS25,pleural cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003390 ! mesothelium of pleural cavity -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9842 -name: TS25,parietal,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9841 ! TS25,mesothelium,pleural cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003390 ! mesothelium of pleural cavity - -[Term] -id: EMAP:9843 -name: TS25,visceral,mesothelium,pleural cavity -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9841 ! TS25,mesothelium,pleural cavity -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003390 ! mesothelium of pleural cavity - -[Term] -id: EMAP:9844 -name: TS25,limb -namespace: mouse_anatomy_stages -is_a: UBERON:0002101 ! limb -relationship: part_of EMAP:9799 ! TS25,embryo -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002101 ! limb -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9845 -name: TS25,forelimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002102 ! forelimb -relationship: part_of EMAP:9844 ! TS25,limb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002102 ! forelimb -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9846 -name: TS25,arm -namespace: mouse_anatomy_stages -is_a: UBERON:0001460 ! arm -relationship: part_of EMAP:9845 ! TS25,forelimb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001460 ! arm -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9847 -name: TS25,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001461 ! elbow -relationship: part_of EMAP:9846 ! TS25,arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001461 ! elbow -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9848 -name: TS25,mesenchyme,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0003318 ! mesenchyme of elbow -relationship: part_of EMAP:9847 ! TS25,elbow -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:985 -name: TS14,pronephros -namespace: mouse_anatomy_stages -is_a: UBERON:0002120 ! pronephros -relationship: part_of EMAP:980 ! TS14,urogenital system -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002120 ! pronephros -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9851 -name: TS25,skin,elbow -namespace: mouse_anatomy_stages -is_a: UBERON:0001517 ! skin of elbow -relationship: part_of EMAP:9847 ! TS25,elbow -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001517 ! skin of elbow -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9852 -name: TS25,dermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9851 ! TS25,skin,elbow -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:9853 -name: TS25,epidermis,skin,elbow -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9851 ! TS25,skin,elbow -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001517 ! skin of elbow - -[Term] -id: EMAP:9854 -name: TS25,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0002386 ! forelimb zeugopod -relationship: part_of EMAP:9846 ! TS25,arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9855 -name: TS25,mesenchyme,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003327 ! mesenchyme of forearm -relationship: part_of EMAP:9854 ! TS25,forearm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9859 -name: TS25,skin,forearm -namespace: mouse_anatomy_stages -is_a: UBERON:0003403 ! skin of forearm -relationship: part_of EMAP:9854 ! TS25,forearm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003403 ! skin of forearm -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:986 -name: TS14,primitive streak -namespace: mouse_anatomy_stages -is_a: UBERON:0004341 ! primitive streak -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9860 -name: TS25,dermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9859 ! TS25,skin,forearm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:9861 -name: TS25,epidermis,skin,forearm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9859 ! TS25,skin,forearm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003403 ! skin of forearm - -[Term] -id: EMAP:9862 -name: TS25,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001467 ! shoulder -relationship: part_of EMAP:9846 ! TS25,arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001467 ! shoulder -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9863 -name: TS25,mesenchyme,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0003322 ! mesenchyme of shoulder -relationship: part_of EMAP:9862 ! TS25,shoulder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9866 -name: TS25,skin,shoulder -namespace: mouse_anatomy_stages -is_a: UBERON:0001483 ! skin of shoulder -relationship: part_of EMAP:9862 ! TS25,shoulder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001483 ! skin of shoulder -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9867 -name: TS25,dermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9866 ! TS25,skin,shoulder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:9868 -name: TS25,epidermis,skin,shoulder -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9866 ! TS25,skin,shoulder -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001483 ! skin of shoulder - -[Term] -id: EMAP:9869 -name: TS25,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0003822 ! forelimb stylopod -relationship: part_of EMAP:9846 ! TS25,arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:987 -name: TS14,tail bud -namespace: mouse_anatomy_stages -is_a: UBERON:0002533 ! tail bud -relationship: part_of EMAP:640 ! TS14,embryo -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002533 ! tail bud -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9876 -name: TS25,mesenchyme,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0005258 ! upper arm mesenchyme -relationship: part_of EMAP:9869 ! TS25,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9879 -name: TS25,skin,upper arm -namespace: mouse_anatomy_stages -is_a: UBERON:0002427 ! arm skin -relationship: part_of EMAP:9869 ! TS25,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:988 -name: TS14,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0000478 ! extraembryonic structure -relationship: part_of EMAP:0 ! Mouse_anatomy_by_time_xproduct -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9880 -name: TS25,dermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9879 ! TS25,skin,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:9881 -name: TS25,epidermis,skin,upper arm -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9879 ! TS25,skin,upper arm -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002427 ! arm skin - -[Term] -id: EMAP:9882 -name: TS25,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002398 ! manus -relationship: part_of EMAP:9845 ! TS25,forelimb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002398 ! manus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9883 -name: TS25,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001463 ! manual digit 1 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9884 -name: TS25,mesenchyme,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010564 ! manual digit 1 mesenchyme -relationship: part_of EMAP:9883 ! TS25,digit 1,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9887 -name: TS25,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9883 ! TS25,digit 1,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:9888 -name: TS25,dermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9887 ! TS25,skin,digit 1,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:9889 -name: TS25,epidermis,skin,digit 1,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9887 ! TS25,skin,digit 1,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001463 ! manual digit 1 - -[Term] -id: EMAP:989 -name: TS14,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004535 ! cardiovascular system -relationship: part_of EMAP:988 ! TS14,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9890 -name: TS25,claw,digit 1,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011273 ! nail of manual digit 1 -relationship: part_of EMAP:9883 ! TS25,digit 1,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011273 ! nail of manual digit 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9891 -name: TS25,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003622 ! manual digit 2 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9892 -name: TS25,claw,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011274 ! nail of manual digit 2 -relationship: part_of EMAP:9891 ! TS25,digit 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011274 ! nail of manual digit 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9893 -name: TS25,mesenchyme,digit 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005692 ! manual digit 2 mesenchyme -relationship: part_of EMAP:9891 ! TS25,digit 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9896 -name: TS25,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9891 ! TS25,digit 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:9897 -name: TS25,dermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9896 ! TS25,skin,digit 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:9898 -name: TS25,epidermis,skin,digit 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9896 ! TS25,skin,digit 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003622 ! manual digit 2 - -[Term] -id: EMAP:9899 -name: TS25,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003623 ! manual digit 3 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:99 -name: TS9,trophectoderm -namespace: mouse_anatomy_stages -is_a: UBERON:0004345 ! trophectoderm -relationship: part_of EMAP:89 ! TS9,extraembryonic component -relationship: exists_during MmusDv:0000014 ! Theiler stage 09 -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: exists_during MmusDv:0000014 ! Theiler stage 09 - -[Term] -id: EMAP:990 -name: TS14,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0004572 ! arterial system -relationship: part_of EMAP:989 ! TS14,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0004572 ! arterial system -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9900 -name: TS25,claw primordium,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011275 ! nail of manual digit 3 -relationship: part_of EMAP:9899 ! TS25,digit 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011275 ! nail of manual digit 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9901 -name: TS25,mesenchyme,digit 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005693 ! manual digit 3 mesenchyme -relationship: part_of EMAP:9899 ! TS25,digit 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9904 -name: TS25,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9899 ! TS25,digit 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:9905 -name: TS25,dermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9904 ! TS25,skin,digit 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:9906 -name: TS25,epidermis,skin,digit 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9904 ! TS25,skin,digit 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003623 ! manual digit 3 - -[Term] -id: EMAP:9907 -name: TS25,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003624 ! manual digit 4 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9908 -name: TS25,claw,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011276 ! nail of manual digit 4 -relationship: part_of EMAP:9907 ! TS25,digit 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011276 ! nail of manual digit 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9909 -name: TS25,mesenchyme,digit 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005694 ! manual digit 4 mesenchyme -relationship: part_of EMAP:9907 ! TS25,digit 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:991 -name: TS14,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0001310 ! umbilical artery -relationship: part_of EMAP:990 ! TS14,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9912 -name: TS25,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9907 ! TS25,digit 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:9913 -name: TS25,dermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9912 ! TS25,skin,digit 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:9914 -name: TS25,epidermis,skin,digit 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9912 ! TS25,skin,digit 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003624 ! manual digit 4 - -[Term] -id: EMAP:9915 -name: TS25,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003625 ! manual digit 5 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9916 -name: TS25,mesenchyme,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005695 ! manual digit 5 mesenchyme -relationship: part_of EMAP:9915 ! TS25,digit 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9919 -name: TS25,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9915 ! TS25,digit 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:992 -name: TS14,common,umbilical artery,arterial system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:991 ! TS14,umbilical artery,arterial system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0001310 ! umbilical artery - -[Term] -id: EMAP:9920 -name: TS25,dermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9919 ! TS25,skin,digit 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:9921 -name: TS25,epidermis,skin,digit 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9919 ! TS25,skin,digit 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003625 ! manual digit 5 - -[Term] -id: EMAP:9922 -name: TS25,claw,digit 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011277 ! nail of manual digit 5 -relationship: part_of EMAP:9915 ! TS25,digit 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011277 ! nail of manual digit 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9923 -name: TS25,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9924 -name: TS25,mesenchyme,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -relationship: part_of EMAP:9923 ! TS25,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9925 -name: TS25,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9923 ! TS25,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:9926 -name: TS25,dermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9925 ! TS25,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:9927 -name: TS25,epidermis,skin,interdigital region between digits 1 and 2,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9925 ! TS25,skin,interdigital region between digits 1 and 2,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006026 ! interdigital region between manual digits 1 and 2 - -[Term] -id: EMAP:9928 -name: TS25,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9929 -name: TS25,mesenchyme,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -relationship: part_of EMAP:9928 ! TS25,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:993 -name: TS14,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:989 ! TS14,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0004535 ! cardiovascular system - -[Term] -id: EMAP:9930 -name: TS25,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9928 ! TS25,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:9931 -name: TS25,dermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9930 ! TS25,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:9932 -name: TS25,epidermis,skin,interdigital region between digits 2 and 3,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9930 ! TS25,skin,interdigital region between digits 2 and 3,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006029 ! interdigital region between manual digits 2 and 3 - -[Term] -id: EMAP:9933 -name: TS25,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9934 -name: TS25,mesenchyme,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -relationship: part_of EMAP:9933 ! TS25,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9935 -name: TS25,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9933 ! TS25,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:9936 -name: TS25,dermis,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9935 ! TS25,skin,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:9937 -name: TS25,epidermis,skin,interdigital region between digits 3 and 4,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9935 ! TS25,skin,interdigital region between digits 3 and 4,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006032 ! interdigital region between manual digits 3 and 4 - -[Term] -id: EMAP:9938 -name: TS25,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9939 -name: TS25,mesenchyme,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -relationship: part_of EMAP:9938 ! TS25,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:994 -name: TS14,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0002066 ! umbilical vein -relationship: part_of EMAP:993 ! TS14,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9940 -name: TS25,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9938 ! TS25,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:9941 -name: TS25,dermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9940 ! TS25,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:9942 -name: TS25,epidermis,skin,interdigital region between digits 4 and 5,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9940 ! TS25,skin,interdigital region between digits 4 and 5,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006035 ! interdigital region between manual digits 4 and 5 - -[Term] -id: EMAP:9943 -name: TS25,mesenchyme,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0002398 ! manus - -[Term] -id: EMAP:9945 -name: TS25,skin,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0001519 ! skin of manus -relationship: part_of EMAP:9882 ! TS25,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0001519 ! skin of manus -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9946 -name: TS25,dermis,skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9945 ! TS25,skin,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001519 ! skin of manus - -[Term] -id: EMAP:9947 -name: TS25,epidermis,skin,handplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9945 ! TS25,skin,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0001519 ! skin of manus - -[Term] -id: EMAP:9948 -name: TS25,palmar pads,skin,handplate -namespace: mouse_anatomy_stages -is_a: UBERON:0008839 ! palmar pad -relationship: part_of EMAP:9945 ! TS25,skin,handplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0008839 ! palmar pad -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9949 -name: TS25,hindlimb -namespace: mouse_anatomy_stages -is_a: UBERON:0002103 ! hindlimb -relationship: part_of EMAP:9844 ! TS25,limb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:995 -name: TS14,common,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -relationship: part_of EMAP:994 ! TS14,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -relationship: part_of UBERON:0002066 ! umbilical vein - -[Term] -id: EMAP:9950 -name: TS25,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0002387 ! pes -relationship: part_of EMAP:9949 ! TS25,hindlimb -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0002387 ! pes -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9951 -name: TS25,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003631 ! pedal digit 1 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9952 -name: TS25,claw,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011278 ! nail of pedal digit 1 -relationship: part_of EMAP:9951 ! TS25,digit 1,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011278 ! nail of pedal digit 1 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9953 -name: TS25,mesenchyme,digit 1,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0010562 ! pedal digit 1 mesenchyme -relationship: part_of EMAP:9951 ! TS25,digit 1,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9956 -name: TS25,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9951 ! TS25,digit 1,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:9957 -name: TS25,dermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9956 ! TS25,skin,digit 1,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:9958 -name: TS25,epidermis,skin,digit 1,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9956 ! TS25,skin,digit 1,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003631 ! pedal digit 1 - -[Term] -id: EMAP:9959 -name: TS25,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003632 ! pedal digit 2 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:996 -name: TS14,left,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005459 ! left umbilical vein -relationship: part_of EMAP:994 ! TS14,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9960 -name: TS25,claw,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011279 ! nail of pedal digit 2 -relationship: part_of EMAP:9959 ! TS25,digit 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011279 ! nail of pedal digit 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9961 -name: TS25,mesenchyme,digit 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005696 ! pedal digit 2 mesenchyme -relationship: part_of EMAP:9959 ! TS25,digit 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9964 -name: TS25,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9959 ! TS25,digit 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:9965 -name: TS25,dermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9964 ! TS25,skin,digit 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:9966 -name: TS25,epidermis,skin,digit 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9964 ! TS25,skin,digit 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003632 ! pedal digit 2 - -[Term] -id: EMAP:9967 -name: TS25,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003633 ! pedal digit 3 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9968 -name: TS25,claw,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011280 ! nail of pedal digit 3 -relationship: part_of EMAP:9967 ! TS25,digit 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011280 ! nail of pedal digit 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9969 -name: TS25,mesenchyme,digit 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005697 ! pedal digit 3 mesenchyme -relationship: part_of EMAP:9967 ! TS25,digit 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:997 -name: TS14,right,umbilical vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005471 ! right umbilical vein -relationship: part_of EMAP:994 ! TS14,umbilical vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9972 -name: TS25,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9967 ! TS25,digit 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:9973 -name: TS25,dermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9972 ! TS25,skin,digit 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:9974 -name: TS25,epidermis,skin,digit 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9972 ! TS25,skin,digit 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003633 ! pedal digit 3 - -[Term] -id: EMAP:9975 -name: TS25,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003634 ! pedal digit 4 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9976 -name: TS25,claw,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011281 ! nail of pedal digit 4 -relationship: part_of EMAP:9975 ! TS25,digit 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011281 ! nail of pedal digit 4 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9977 -name: TS25,mesenchyme,digit 4,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005698 ! pedal digit 4 mesenchyme -relationship: part_of EMAP:9975 ! TS25,digit 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:998 -name: TS14,vitelline vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005487 ! vitelline vein -relationship: part_of EMAP:993 ! TS14,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9980 -name: TS25,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9975 ! TS25,digit 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:9981 -name: TS25,dermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9980 ! TS25,skin,digit 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:9982 -name: TS25,epidermis,skin,digit 4,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9980 ! TS25,skin,digit 4,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003634 ! pedal digit 4 - -[Term] -id: EMAP:9983 -name: TS25,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0003635 ! pedal digit 5 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9984 -name: TS25,claw,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0011282 ! nail of pedal digit 5 -relationship: part_of EMAP:9983 ! TS25,digit 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0011282 ! nail of pedal digit 5 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9985 -name: TS25,mesenchyme,digit 5,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0005699 ! pedal digit 5 mesenchyme -relationship: part_of EMAP:9983 ! TS25,digit 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9988 -name: TS25,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9983 ! TS25,digit 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:9989 -name: TS25,dermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9988 ! TS25,skin,digit 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:999 -name: TS14,left,vitelline vein,venous system,cardiovascular system,extraembryonic component -namespace: mouse_anatomy_stages -is_a: UBERON:0005460 ! left vitelline vein -relationship: part_of EMAP:998 ! TS14,vitelline vein,venous system,cardiovascular system,extraembryonic component -relationship: exists_during MmusDv:0000021 ! Theiler stage 14 -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: exists_during MmusDv:0000021 ! Theiler stage 14 - -[Term] -id: EMAP:9990 -name: TS25,epidermis,skin,digit 5,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9988 ! TS25,skin,digit 5,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0003635 ! pedal digit 5 - -[Term] -id: EMAP:9991 -name: TS25,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9992 -name: TS25,mesenchyme,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -relationship: part_of EMAP:9991 ! TS25,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9993 -name: TS25,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9991 ! TS25,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:9994 -name: TS25,dermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9993 ! TS25,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:9995 -name: TS25,epidermis,skin,interdigital region between digits 1 and 2,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9993 ! TS25,skin,interdigital region between digits 1 and 2,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006038 ! interdigital region between pedal digits 1 and 2 - -[Term] -id: EMAP:9996 -name: TS25,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:9950 ! TS25,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9997 -name: TS25,mesenchyme,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -is_a: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -relationship: part_of EMAP:9996 ! TS25,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: exists_during MmusDv:0000034 ! Theiler stage 25 - -[Term] -id: EMAP:9998 -name: TS25,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9996 ! TS25,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Term] -id: EMAP:9999 -name: TS25,dermis,skin,interdigital region between digits 2 and 3,footplate -namespace: mouse_anatomy_stages -relationship: part_of EMAP:9998 ! TS25,skin,interdigital region between digits 2 and 3,footplate -relationship: exists_during MmusDv:0000034 ! Theiler stage 25 -relationship: part_of UBERON:0006041 ! interdigital region between pedal digits 2 and 3 - -[Typedef] -id: part_of -name: part of -namespace: mouse_anatomy_stages - -[Typedef] -id: exists_during -name: exists_during -namespace: uberon - -[Typedef] -id: part_of -name: part of -namespace: mouse_anatomical_ontology -is_transitive: true -xref: BFO:0000050 - - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - diff --git a/src/ontology/bridge/uberon-bridge-to-ev.obo b/src/ontology/bridge/uberon-bridge-to-ev.obo deleted file mode 100644 index 87e1efd870..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-ev.obo +++ /dev/null @@ -1,1916 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-ev -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: EV:0100114 ! -property_value: IAO:0000589 "uterine cervix (EV)" xsd:string -is_a: UBERON:0000002 ! uterine cervix - -[Term] -id: EV:0100037 ! -property_value: IAO:0000589 "nose (EV)" xsd:string -is_a: UBERON:0000004 ! nose - -[Term] -id: EV:0100370 ! -property_value: IAO:0000589 "nose (EV)" xsd:string -is_a: UBERON:0000004 ! nose - -[Term] -id: EV:0100130 ! -property_value: IAO:0000589 "islet of Langerhans (EV)" xsd:string -is_a: UBERON:0000006 ! islet of Langerhans - -[Term] -id: EV:0100132 ! -property_value: IAO:0000589 "pituitary gland (EV)" xsd:string -is_a: UBERON:0000007 ! pituitary gland - -[Term] -id: EV:0100335 ! -property_value: IAO:0000589 "peripheral nervous system (EV)" xsd:string -is_a: UBERON:0000010 ! peripheral nervous system - -[Term] -id: EV:0100152 ! -property_value: IAO:0000589 "zone of skin (EV)" xsd:string -is_a: UBERON:0000014 ! zone of skin - -[Term] -id: EV:0100129 ! -property_value: IAO:0000589 "endocrine pancreas (EV)" xsd:string -is_a: UBERON:0000016 ! endocrine pancreas - -[Term] -id: EV:0100093 ! -property_value: IAO:0000589 "exocrine pancreas (EV)" xsd:string -is_a: UBERON:0000017 ! exocrine pancreas - -[Term] -id: EV:0100155 ! -property_value: IAO:0000589 "appendage (EV)" xsd:string -is_a: UBERON:0000026 ! appendage - -[Term] -id: EV:0100050 ! -property_value: IAO:0000589 "lymph node (EV)" xsd:string -is_a: UBERON:0000029 ! lymph node - -[Term] -id: EV:0100149 ! -property_value: IAO:0000589 "tendon (EV)" xsd:string -is_a: UBERON:0000043 ! tendon - -[Term] -id: EV:0100373 ! -property_value: IAO:0000589 "dorsal root ganglion (EV)" xsd:string -is_a: UBERON:0000044 ! dorsal root ganglion - -[Term] -id: EV:0100372 ! -property_value: IAO:0000589 "ganglion (EV)" xsd:string -is_a: UBERON:0000045 ! ganglion - -[Term] -id: EV:0100349 ! -property_value: IAO:0000589 "macula lutea (EV)" xsd:string -is_a: UBERON:0000053 ! macula lutea - -[Term] -id: EV:0100097 ! -property_value: IAO:0000589 "ureter (EV)" xsd:string -is_a: UBERON:0000056 ! ureter - -[Term] -id: EV:0100099 ! -property_value: IAO:0000589 "urethra (EV)" xsd:string -is_a: UBERON:0000057 ! urethra - -[Term] -id: EV:0100077 ! -property_value: IAO:0000589 "large intestine (EV)" xsd:string -is_a: UBERON:0000059 ! large intestine - -[Term] -id: EV:0300001 ! -property_value: IAO:0000589 "embryo stage (EV)" xsd:string -is_a: UBERON:0000068 ! embryo stage - -[Term] -id: EV:0100386 ! -property_value: IAO:0000589 "renal glomerulus (EV)" xsd:string -is_a: UBERON:0000074 ! renal glomerulus - -[Term] -id: EV:0100101 ! -property_value: IAO:0000589 "male reproductive system (EV)" xsd:string -is_a: UBERON:0000079 ! male reproductive system - -[Term] -id: EV:0100096 ! -property_value: IAO:0000589 "adult mammalian kidney (EV)" xsd:string -is_a: UBERON:0000082 ! adult mammalian kidney - -[Term] -id: EV:0100120 ! -property_value: IAO:0000589 "trophoblast (EV)" xsd:string -is_a: UBERON:0000088 ! trophoblast - -[Term] -id: EV:0300051 ! -property_value: IAO:0000589 "sexually immature stage (EV)" xsd:string -is_a: UBERON:0000112 ! sexually immature stage - -[Term] -id: EV:0300064 ! -property_value: IAO:0000589 "post-juvenile adult stage (EV)" xsd:string -is_a: UBERON:0000113 ! post-juvenile adult stage - -[Term] -id: EV:0300070 ! -property_value: IAO:0000589 "post-juvenile adult stage (EV)" xsd:string -is_a: UBERON:0000113 ! post-juvenile adult stage - -[Term] -id: EV:0100267 ! -property_value: IAO:0000589 "facial nucleus (EV)" xsd:string -is_a: UBERON:0000127 ! facial nucleus - -[Term] -id: EV:0100071 ! -property_value: IAO:0000589 "intestine (EV)" xsd:string -is_a: UBERON:0000160 ! intestine - -[Term] -id: EV:0100057 ! -property_value: IAO:0000589 "oral cavity (EV)" xsd:string -is_a: UBERON:0000167 ! oral cavity - -[Term] -id: EV:0100123 ! -property_value: IAO:0000589 "amniotic fluid (EV)" xsd:string -is_a: UBERON:0000173 ! amniotic fluid - -[Term] -id: EV:0100047 ! -property_value: IAO:0000589 "blood (EV)" xsd:string -is_a: UBERON:0000178 ! blood - -[Term] -id: EV:0100122 ! -property_value: IAO:0000589 "amnion (EV)" xsd:string -is_a: UBERON:0000305 ! amnion - -[Term] -id: EV:0100124 ! -property_value: IAO:0000589 "breast (EV)" xsd:string -is_a: UBERON:0000310 ! breast - -[Term] -id: EV:0100382 ! -property_value: IAO:0000589 "mucosa (EV)" xsd:string -is_a: UBERON:0000344 ! mucosa - -[Term] -id: EV:0100394 ! -property_value: IAO:0000589 "blastocyst (EV)" xsd:string -is_a: UBERON:0000358 ! blastocyst - -[Term] -id: EV:0100048 ! -property_value: IAO:0000589 "reticuloendothelial system (EV)" xsd:string -is_a: UBERON:0000363 ! reticuloendothelial system - -[Term] -id: EV:0100184 ! -property_value: IAO:0000589 "corpus striatum (EV)" xsd:string -is_a: UBERON:0000369 ! corpus striatum - -[Term] -id: EV:0100145 ! -property_value: IAO:0000589 "meniscus (EV)" xsd:string -is_a: UBERON:0000387 ! meniscus - -[Term] -id: EV:0100374 ! -property_value: IAO:0000589 "sympathetic trunk (EV)" xsd:string -is_a: UBERON:0000407 ! sympathetic trunk - -[Term] -id: EV:0100171 ! -property_value: IAO:0000589 "visual cortex (EV)" xsd:string -is_a: UBERON:0000411 ! visual cortex - -[Term] -id: EV:0100208 ! -property_value: IAO:0000589 "ventral intermediate nucleus of thalamus (EV)" xsd:string -is_a: UBERON:0000430 ! ventral intermediate nucleus of thalamus - -[Term] -id: EV:0100240 ! -property_value: IAO:0000589 "lateral tuberal nucleus (EV)" xsd:string -is_a: UBERON:0000435 ! lateral tuberal nucleus - -[Term] -id: EV:0100000 ! -property_value: IAO:0000589 "anatomical system (EV)" xsd:string -is_a: UBERON:0000467 ! anatomical system - -[Term] -id: EV:0100016 ! -property_value: IAO:0000589 "multicellular organism (EV)" xsd:string -is_a: UBERON:0000468 ! multicellular organism - -[Term] -id: EV:0100102 ! -property_value: IAO:0000589 "testis (EV)" xsd:string -is_a: UBERON:0000473 ! testis - -[Term] -id: EV:0100110 ! -property_value: IAO:0000589 "female reproductive system (EV)" xsd:string -is_a: UBERON:0000474 ! female reproductive system - -[Term] -id: EV:0100011 ! -property_value: IAO:0000589 "abdomen (EV)" xsd:string -is_a: UBERON:0000916 ! abdomen - -[Term] -id: EV:0100003 ! -property_value: IAO:0000589 "ectoderm (EV)" xsd:string -is_a: UBERON:0000924 ! ectoderm - -[Term] -id: EV:0100005 ! -property_value: IAO:0000589 "endoderm (EV)" xsd:string -is_a: UBERON:0000925 ! endoderm - -[Term] -id: EV:0100006 ! -property_value: IAO:0000589 "mesoderm (EV)" xsd:string -is_a: UBERON:0000926 ! mesoderm - -[Term] -id: EV:0100070 ! -property_value: IAO:0000589 "stomach (EV)" xsd:string -is_a: UBERON:0000945 ! stomach - -[Term] -id: EV:0100024 ! -property_value: IAO:0000589 "cardiac valve (EV)" xsd:string -is_a: UBERON:0000946 ! cardiac valve - -[Term] -id: EV:0100027 ! -property_value: IAO:0000589 "aorta (EV)" xsd:string -is_a: UBERON:0000947 ! aorta - -[Term] -id: EV:0100018 ! -property_value: IAO:0000589 "heart (EV)" xsd:string -is_a: UBERON:0000948 ! heart - -[Term] -id: EV:0100128 ! -property_value: IAO:0000589 "endocrine system (EV)" xsd:string -is_a: UBERON:0000949 ! endocrine system - -[Term] -id: EV:0100164 ! -property_value: IAO:0000589 "brain (EV)" xsd:string -is_a: UBERON:0000955 ! brain - -[Term] -id: EV:0100166 ! -property_value: IAO:0000589 "cerebral cortex (EV)" xsd:string -is_a: UBERON:0000956 ! cerebral cortex - -[Term] -id: EV:0100341 ! -property_value: IAO:0000589 "cornea (EV)" xsd:string -is_a: UBERON:0000964 ! cornea - -[Term] -id: EV:0100343 ! -property_value: IAO:0000589 "lens of camera-type eye (EV)" xsd:string -is_a: UBERON:0000965 ! lens of camera-type eye - -[Term] -id: EV:0100348 ! -property_value: IAO:0000589 "retina (EV)" xsd:string -is_a: UBERON:0000966 ! retina - -[Term] -id: EV:0100336 ! -property_value: IAO:0000589 "eye (EV)" xsd:string -is_a: UBERON:0000970 ! eye - -[Term] -id: EV:0100044 ! -property_value: IAO:0000589 "pleura (EV)" xsd:string -is_a: UBERON:0000977 ! pleura - -[Term] -id: EV:0100253 ! -property_value: IAO:0000589 "pons (EV)" xsd:string -is_a: UBERON:0000988 ! pons - -[Term] -id: EV:0100107 ! -property_value: IAO:0000589 "penis (EV)" xsd:string -is_a: UBERON:0000989 ! penis - -[Term] -id: EV:0100100 ! -property_value: IAO:0000589 "reproductive system (EV)" xsd:string -is_a: UBERON:0000990 ! reproductive system - -[Term] -id: EV:0100111 ! -property_value: IAO:0000589 "ovary (EV)" xsd:string -is_a: UBERON:0000992 ! ovary - -[Term] -id: EV:0100113 ! -property_value: IAO:0000589 "uterus (EV)" xsd:string -is_a: UBERON:0000995 ! uterus - -[Term] -id: EV:0100117 ! -property_value: IAO:0000589 "vagina (EV)" xsd:string -is_a: UBERON:0000996 ! vagina - -[Term] -id: EV:0100118 ! -property_value: IAO:0000589 "mammalian vulva (EV)" xsd:string -is_a: UBERON:0000997 ! mammalian vulva - -[Term] -id: EV:0100106 ! -property_value: IAO:0000589 "seminal vesicle (EV)" xsd:string -is_a: UBERON:0000998 ! seminal vesicle - -[Term] -id: EV:0100105 ! -property_value: IAO:0000589 "vas deferens (EV)" xsd:string -is_a: UBERON:0001000 ! vas deferens - -[Term] -id: EV:0100153 ! -property_value: IAO:0000589 "skin epidermis (EV)" xsd:string -is_a: UBERON:0001003 ! skin epidermis - -[Term] -id: EV:0100036 ! -property_value: IAO:0000589 "respiratory system (EV)" xsd:string -is_a: UBERON:0001004 ! respiratory system - -[Term] -id: EV:0100056 ! -property_value: IAO:0000589 "digestive system (EV)" xsd:string -is_a: UBERON:0001007 ! digestive system - -[Term] -id: EV:0100095 ! -property_value: IAO:0000589 "renal system (EV)" xsd:string -is_a: UBERON:0001008 ! renal system - -[Term] -id: EV:0100381 ! -property_value: IAO:0000589 "adipose tissue (EV)" xsd:string -is_a: UBERON:0001013 ! adipose tissue - -[Term] -id: EV:0100162 ! -property_value: IAO:0000589 "nervous system (EV)" xsd:string -is_a: UBERON:0001016 ! nervous system - -[Term] -id: EV:0100163 ! -property_value: IAO:0000589 "central nervous system (EV)" xsd:string -is_a: UBERON:0001017 ! central nervous system - -[Term] -id: EV:0100304 ! -property_value: IAO:0000589 "axon tract (EV)" xsd:string -is_a: UBERON:0001018 ! axon tract - -[Term] -id: EV:0100371 ! -property_value: IAO:0000589 "nerve (EV)" xsd:string -is_a: UBERON:0001021 ! nerve - -[Term] -id: EV:0100157 ! -property_value: IAO:0000589 "strand of hair (EV)" xsd:string -is_a: UBERON:0001037 ! strand of hair - -[Term] -id: EV:0100065 ! -property_value: IAO:0000589 "chordate pharynx (EV)" xsd:string -is_a: UBERON:0001042 ! chordate pharynx - -[Term] -id: EV:0100069 ! -property_value: IAO:0000589 "esophagus (EV)" xsd:string -is_a: UBERON:0001043 ! esophagus - -[Term] -id: EV:0100059 ! -property_value: IAO:0000589 "saliva-secreting gland (EV)" xsd:string -is_a: UBERON:0001044 ! saliva-secreting gland - -[Term] -id: EV:0100068 ! -property_value: IAO:0000589 "hypopharynx (EV)" xsd:string -is_a: UBERON:0001051 ! hypopharynx - -[Term] -id: EV:0100081 ! -property_value: IAO:0000589 "rectum (EV)" xsd:string -is_a: UBERON:0001052 ! rectum - -[Term] -id: EV:0100063 ! -property_value: IAO:0000589 "calcareous tooth (EV)" xsd:string -is_a: UBERON:0001091 ! calcareous tooth - -[Term] -id: EV:0100376 ! -property_value: IAO:0000589 "diaphragm (EV)" xsd:string -is_a: UBERON:0001103 ! diaphragm - -[Term] -id: EV:0100134 ! -property_value: IAO:0000589 "parathyroid gland (EV)" xsd:string -is_a: UBERON:0001132 ! parathyroid gland - -[Term] -id: EV:0100378 ! -property_value: IAO:0000589 "smooth muscle tissue (EV)" xsd:string -is_a: UBERON:0001135 ! smooth muscle tissue - -[Term] -id: EV:0100397 ! -property_value: IAO:0000589 "caecum (EV)" xsd:string -is_a: UBERON:0001153 ! caecum - -[Term] -id: EV:0100076 ! -property_value: IAO:0000589 "vermiform appendix (EV)" xsd:string -is_a: UBERON:0001154 ! vermiform appendix - -[Term] -id: EV:0100080 ! -property_value: IAO:0000589 "vermiform appendix (EV)" xsd:string -is_a: UBERON:0001154 ! vermiform appendix - -[Term] -id: EV:0100079 ! -property_value: IAO:0000589 "colon (EV)" xsd:string -is_a: UBERON:0001155 ! colon - -[Term] -id: EV:0100385 ! -property_value: IAO:0000589 "renal corpuscle (EV)" xsd:string -is_a: UBERON:0001229 ! renal corpuscle - -[Term] -id: EV:0100387 ! -property_value: IAO:0000589 "nephron tubule (EV)" xsd:string -is_a: UBERON:0001231 ! nephron tubule - -[Term] -id: EV:0100391 ! -property_value: IAO:0000589 "collecting duct of renal tubule (EV)" xsd:string -is_a: UBERON:0001232 ! collecting duct of renal tubule - -[Term] -id: EV:0100136 ! -property_value: IAO:0000589 "adrenal cortex (EV)" xsd:string -is_a: UBERON:0001235 ! adrenal cortex - -[Term] -id: EV:0100137 ! -property_value: IAO:0000589 "adrenal medulla (EV)" xsd:string -is_a: UBERON:0001236 ! adrenal medulla - -[Term] -id: EV:0100082 ! -property_value: IAO:0000589 "anus (EV)" xsd:string -is_a: UBERON:0001245 ! anus - -[Term] -id: EV:0100098 ! -property_value: IAO:0000589 "urinary bladder (EV)" xsd:string -is_a: UBERON:0001255 ! urinary bladder - -[Term] -id: EV:0100092 ! -property_value: IAO:0000589 "pancreas (EV)" xsd:string -is_a: UBERON:0001264 ! pancreas - -[Term] -id: EV:0100384 ! -property_value: IAO:0000589 "nephron (EV)" xsd:string -is_a: UBERON:0001285 ! nephron - -[Term] -id: EV:0100388 ! -property_value: IAO:0000589 "proximal convoluted tubule (EV)" xsd:string -is_a: UBERON:0001287 ! proximal convoluted tubule - -[Term] -id: EV:0100390 ! -property_value: IAO:0000589 "loop of Henle (EV)" xsd:string -is_a: UBERON:0001288 ! loop of Henle - -[Term] -id: EV:0100389 ! -property_value: IAO:0000589 "distal convoluted tubule (EV)" xsd:string -is_a: UBERON:0001292 ! distal convoluted tubule - -[Term] -id: EV:0100115 ! -property_value: IAO:0000589 "endometrium (EV)" xsd:string -is_a: UBERON:0001295 ! endometrium - -[Term] -id: EV:0100116 ! -property_value: IAO:0000589 "myometrium (EV)" xsd:string -is_a: UBERON:0001296 ! myometrium - -[Term] -id: EV:0100108 ! -property_value: IAO:0000589 "glans penis (EV)" xsd:string -is_a: UBERON:0001299 ! glans penis - -[Term] -id: EV:0100103 ! -property_value: IAO:0000589 "epididymis (EV)" xsd:string -is_a: UBERON:0001301 ! epididymis - -[Term] -id: EV:0100109 ! -property_value: IAO:0000589 "prepuce of penis (EV)" xsd:string -is_a: UBERON:0001332 ! prepuce of penis - -[Term] -id: EV:0100380 ! -property_value: IAO:0000589 "seminiferous tubule of testis (EV)" xsd:string -is_a: UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: EV:0100356 ! -property_value: IAO:0000589 "external acoustic meatus (EV)" xsd:string -is_a: UBERON:0001352 ! external acoustic meatus - -[Term] -id: EV:0100311 ! -property_value: IAO:0000589 "cerebrospinal fluid (EV)" xsd:string -is_a: UBERON:0001359 ! cerebrospinal fluid - -[Term] -id: EV:0100010 ! -property_value: IAO:0000589 "chest (EV)" xsd:string -is_a: UBERON:0001443 ! chest - -[Term] -id: EV:0100109 ! -property_value: IAO:0000589 "skin of prepuce of penis (EV)" xsd:string -is_a: UBERON:0001471 ! skin of prepuce of penis - -[Term] -id: EV:0100140 ! -property_value: IAO:0000589 "bone element (EV)" xsd:string -is_a: UBERON:0001474 ! bone element - -[Term] -id: EV:0100383 ! -property_value: IAO:0000589 "coronary artery (EV)" xsd:string -is_a: UBERON:0001621 ! coronary artery - -[Term] -id: EV:0100146 ! -property_value: IAO:0000589 "muscle organ (EV)" xsd:string -is_a: UBERON:0001630 ! muscle organ - -[Term] -id: EV:0100026 ! -property_value: IAO:0000589 "artery (EV)" xsd:string -is_a: UBERON:0001637 ! artery - -[Term] -id: EV:0100031 ! -property_value: IAO:0000589 "vein (EV)" xsd:string -is_a: UBERON:0001638 ! vein - -[Term] -id: EV:0100360 ! -property_value: IAO:0000589 "auditory ossicle bone (EV)" xsd:string -is_a: UBERON:0001686 ! auditory ossicle bone - -[Term] -id: EV:0100353 ! -property_value: IAO:0000589 "ear (EV)" xsd:string -is_a: UBERON:0001690 ! ear - -[Term] -id: EV:0100354 ! -property_value: IAO:0000589 "external ear (EV)" xsd:string -is_a: UBERON:0001691 ! external ear - -[Term] -id: EV:0100159 ! -property_value: IAO:0000589 "nail (EV)" xsd:string -is_a: UBERON:0001705 ! nail - -[Term] -id: EV:0100338 ! -property_value: IAO:0000589 "eyelid (EV)" xsd:string -is_a: UBERON:0001711 ! eyelid - -[Term] -id: EV:0100250 ! -property_value: IAO:0000589 "oculomotor nuclear complex (EV)" xsd:string -is_a: UBERON:0001715 ! oculomotor nuclear complex - -[Term] -id: EV:0100252 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (EV)" xsd:string -is_a: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve - -[Term] -id: EV:0100292 ! -property_value: IAO:0000589 "nucleus ambiguus (EV)" xsd:string -is_a: UBERON:0001719 ! nucleus ambiguus - -[Term] -id: EV:0100258 ! -property_value: IAO:0000589 "inferior vestibular nucleus (EV)" xsd:string -is_a: UBERON:0001721 ! inferior vestibular nucleus - -[Term] -id: EV:0100058 ! -property_value: IAO:0000589 "tongue (EV)" xsd:string -is_a: UBERON:0001723 ! tongue - -[Term] -id: EV:0100066 ! -property_value: IAO:0000589 "nasopharynx (EV)" xsd:string -is_a: UBERON:0001728 ! nasopharynx - -[Term] -id: EV:0100067 ! -property_value: IAO:0000589 "oropharynx (EV)" xsd:string -is_a: UBERON:0001729 ! oropharynx - -[Term] -id: EV:0100054 ! -property_value: IAO:0000589 "pharyngeal tonsil (EV)" xsd:string -is_a: UBERON:0001732 ! pharyngeal tonsil - -[Term] -id: EV:0100061 ! -property_value: IAO:0000589 "submandibular gland (EV)" xsd:string -is_a: UBERON:0001736 ! submandibular gland - -[Term] -id: EV:0100039 ! -property_value: IAO:0000589 "larynx (EV)" xsd:string -is_a: UBERON:0001737 ! larynx - -[Term] -id: EV:0100357 ! -property_value: IAO:0000589 "middle ear (EV)" xsd:string -is_a: UBERON:0001756 ! middle ear - -[Term] -id: EV:0100355 ! -property_value: IAO:0000589 "pinna (EV)" xsd:string -is_a: UBERON:0001757 ! pinna - -[Term] -id: EV:0100345 ! -property_value: IAO:0000589 "iris (EV)" xsd:string -is_a: UBERON:0001769 ! iris - -[Term] -id: EV:0100342 ! -property_value: IAO:0000589 "sclera (EV)" xsd:string -is_a: UBERON:0001773 ! sclera - -[Term] -id: EV:0100346 ! -property_value: IAO:0000589 "ciliary body (EV)" xsd:string -is_a: UBERON:0001775 ! ciliary body - -[Term] -id: EV:0100347 ! -property_value: IAO:0000589 "optic choroid (EV)" xsd:string -is_a: UBERON:0001776 ! optic choroid - -[Term] -id: EV:0100350 ! -property_value: IAO:0000589 "fovea centralis (EV)" xsd:string -is_a: UBERON:0001786 ! fovea centralis - -[Term] -id: EV:0100344 ! -property_value: IAO:0000589 "vitreous humor (EV)" xsd:string -is_a: UBERON:0001797 ! vitreous humor - -[Term] -id: EV:0100340 ! -property_value: IAO:0000589 "conjunctiva (EV)" xsd:string -is_a: UBERON:0001811 ! conjunctiva - -[Term] -id: EV:0100339 ! -property_value: IAO:0000589 "lacrimal gland (EV)" xsd:string -is_a: UBERON:0001817 ! lacrimal gland - -[Term] -id: EV:0100160 ! -property_value: IAO:0000589 "sweat gland (EV)" xsd:string -is_a: UBERON:0001820 ! sweat gland - -[Term] -id: EV:0100161 ! -property_value: IAO:0000589 "sebaceous gland (EV)" xsd:string -is_a: UBERON:0001821 ! sebaceous gland - -[Term] -id: EV:0100038 ! -property_value: IAO:0000589 "paranasal sinus (EV)" xsd:string -is_a: UBERON:0001825 ! paranasal sinus - -[Term] -id: EV:0100064 ! -property_value: IAO:0000589 "gingiva (EV)" xsd:string -is_a: UBERON:0001828 ! gingiva - -[Term] -id: EV:0100060 ! -property_value: IAO:0000589 "parotid gland (EV)" xsd:string -is_a: UBERON:0001831 ! parotid gland - -[Term] -id: EV:0100062 ! -property_value: IAO:0000589 "sublingual gland (EV)" xsd:string -is_a: UBERON:0001832 ! sublingual gland - -[Term] -id: EV:0100362 ! -property_value: IAO:0000589 "bony labyrinth (EV)" xsd:string -is_a: UBERON:0001839 ! bony labyrinth - -[Term] -id: EV:0100365 ! -property_value: IAO:0000589 "semicircular canal (EV)" xsd:string -is_a: UBERON:0001840 ! semicircular canal - -[Term] -id: EV:0100363 ! -property_value: IAO:0000589 "cochlea (EV)" xsd:string -is_a: UBERON:0001844 ! cochlea - -[Term] -id: EV:0100361 ! -property_value: IAO:0000589 "internal ear (EV)" xsd:string -is_a: UBERON:0001846 ! internal ear - -[Term] -id: EV:0100367 ! -property_value: IAO:0000589 "membranous labyrinth (EV)" xsd:string -is_a: UBERON:0001849 ! membranous labyrinth - -[Term] -id: EV:0100368 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (EV)" xsd:string -is_a: UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: EV:0100369 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (EV)" xsd:string -is_a: UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: EV:0100169 ! -property_value: IAO:0000589 "temporal lobe (EV)" xsd:string -is_a: UBERON:0001871 ! temporal lobe - -[Term] -id: EV:0100168 ! -property_value: IAO:0000589 "parietal lobe (EV)" xsd:string -is_a: UBERON:0001872 ! parietal lobe - -[Term] -id: EV:0100185 ! -property_value: IAO:0000589 "caudate nucleus (EV)" xsd:string -is_a: UBERON:0001873 ! caudate nucleus - -[Term] -id: EV:0100187 ! -property_value: IAO:0000589 "putamen (EV)" xsd:string -is_a: UBERON:0001874 ! putamen - -[Term] -id: EV:0100188 ! -property_value: IAO:0000589 "globus pallidus (EV)" xsd:string -is_a: UBERON:0001875 ! globus pallidus - -[Term] -id: EV:0100189 ! -property_value: IAO:0000589 "amygdala (EV)" xsd:string -is_a: UBERON:0001876 ! amygdala - -[Term] -id: EV:0100190 ! -property_value: IAO:0000589 "amygdala (EV)" xsd:string -is_a: UBERON:0001876 ! amygdala - -[Term] -id: EV:0100177 ! -property_value: IAO:0000589 "olfactory tubercle (EV)" xsd:string -is_a: UBERON:0001883 ! olfactory tubercle - -[Term] -id: EV:0100175 ! -property_value: IAO:0000589 "lateral olfactory stria (EV)" xsd:string -is_a: UBERON:0001888 ! lateral olfactory stria - -[Term] -id: EV:0100242 ! -property_value: IAO:0000589 "midbrain (EV)" xsd:string -is_a: UBERON:0001891 ! midbrain - -[Term] -id: EV:0100165 ! -property_value: IAO:0000589 "telencephalon (EV)" xsd:string -is_a: UBERON:0001893 ! telencephalon - -[Term] -id: EV:0100194 ! -property_value: IAO:0000589 "diencephalon (EV)" xsd:string -is_a: UBERON:0001894 ! diencephalon - -[Term] -id: EV:0100275 ! -property_value: IAO:0000589 "medulla oblongata (EV)" xsd:string -is_a: UBERON:0001896 ! medulla oblongata - -[Term] -id: EV:0100195 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (EV)" xsd:string -is_a: UBERON:0001897 ! dorsal plus ventral thalamus - -[Term] -id: EV:0100225 ! -property_value: IAO:0000589 "hypothalamus (EV)" xsd:string -is_a: UBERON:0001898 ! hypothalamus - -[Term] -id: EV:0100220 ! -property_value: IAO:0000589 "epithalamus (EV)" xsd:string -is_a: UBERON:0001899 ! epithalamus - -[Term] -id: EV:0100223 ! -property_value: IAO:0000589 "ventral thalamus (EV)" xsd:string -is_a: UBERON:0001900 ! ventral thalamus - -[Term] -id: EV:0100214 ! -property_value: IAO:0000589 "thalamic reticular nucleus (EV)" xsd:string -is_a: UBERON:0001903 ! thalamic reticular nucleus - -[Term] -id: EV:0100222 ! -property_value: IAO:0000589 "habenula (EV)" xsd:string -is_a: UBERON:0001904 ! habenula - -[Term] -id: EV:0100131 ! -property_value: IAO:0000589 "pineal body (EV)" xsd:string -is_a: UBERON:0001905 ! pineal body - -[Term] -id: EV:0100221 ! -property_value: IAO:0000589 "pineal body (EV)" xsd:string -is_a: UBERON:0001905 ! pineal body - -[Term] -id: EV:0100224 ! -property_value: IAO:0000589 "subthalamic nucleus (EV)" xsd:string -is_a: UBERON:0001906 ! subthalamic nucleus - -[Term] -id: EV:0100125 ! -property_value: IAO:0000589 "mammary gland (EV)" xsd:string -is_a: UBERON:0001911 ! mammary gland - -[Term] -id: EV:0100126 ! -property_value: IAO:0000589 "milk (EV)" xsd:string -is_a: UBERON:0001913 ! milk - -[Term] -id: EV:0100202 ! -property_value: IAO:0000589 "parafascicular nucleus (EV)" xsd:string -is_a: UBERON:0001922 ! parafascicular nucleus - -[Term] -id: EV:0100204 ! -property_value: IAO:0000589 "paracentral nucleus (EV)" xsd:string -is_a: UBERON:0001924 ! paracentral nucleus - -[Term] -id: EV:0100219 ! -property_value: IAO:0000589 "lateral geniculate body (EV)" xsd:string -is_a: UBERON:0001926 ! lateral geniculate body - -[Term] -id: EV:0100218 ! -property_value: IAO:0000589 "medial geniculate body (EV)" xsd:string -is_a: UBERON:0001927 ! medial geniculate body - -[Term] -id: EV:0100227 ! -property_value: IAO:0000589 "supraoptic nucleus (EV)" xsd:string -is_a: UBERON:0001929 ! supraoptic nucleus - -[Term] -id: EV:0100229 ! -property_value: IAO:0000589 "paraventricular nucleus of hypothalamus (EV)" xsd:string -is_a: UBERON:0001930 ! paraventricular nucleus of hypothalamus - -[Term] -id: EV:0100230 ! -property_value: IAO:0000589 "arcuate nucleus of hypothalamus (EV)" xsd:string -is_a: UBERON:0001932 ! arcuate nucleus of hypothalamus - -[Term] -id: EV:0100232 ! -property_value: IAO:0000589 "dorsomedial nucleus of hypothalamus (EV)" xsd:string -is_a: UBERON:0001934 ! dorsomedial nucleus of hypothalamus - -[Term] -id: EV:0100233 ! -property_value: IAO:0000589 "ventromedial nucleus of hypothalamus (EV)" xsd:string -is_a: UBERON:0001935 ! ventromedial nucleus of hypothalamus - -[Term] -id: EV:0100237 ! -property_value: IAO:0000589 "tuberomammillary nucleus (EV)" xsd:string -is_a: UBERON:0001936 ! tuberomammillary nucleus - -[Term] -id: EV:0100234 ! -property_value: IAO:0000589 "lateral hypothalamic nucleus (EV)" xsd:string -is_a: UBERON:0001937 ! lateral hypothalamic nucleus - -[Term] -id: EV:0100239 ! -property_value: IAO:0000589 "lateral mammillary nucleus (EV)" xsd:string -is_a: UBERON:0001938 ! lateral mammillary nucleus - -[Term] -id: EV:0100238 ! -property_value: IAO:0000589 "medial mammillary nucleus (EV)" xsd:string -is_a: UBERON:0001939 ! medial mammillary nucleus - -[Term] -id: EV:0100245 ! -property_value: IAO:0000589 "superior colliculus (EV)" xsd:string -is_a: UBERON:0001945 ! superior colliculus - -[Term] -id: EV:0100246 ! -property_value: IAO:0000589 "inferior colliculus (EV)" xsd:string -is_a: UBERON:0001946 ! inferior colliculus - -[Term] -id: EV:0100248 ! -property_value: IAO:0000589 "red nucleus (EV)" xsd:string -is_a: UBERON:0001947 ! red nucleus - -[Term] -id: EV:0100180 ! -property_value: IAO:0000589 "Ammon's horn (EV)" xsd:string -is_a: UBERON:0001954 ! Ammon's horn - -[Term] -id: EV:0100035 ! -property_value: IAO:0000589 "capillary (EV)" xsd:string -is_a: UBERON:0001982 ! capillary - -[Term] -id: EV:0100119 ! -property_value: IAO:0000589 "placenta (EV)" xsd:string -is_a: UBERON:0001987 ! placenta - -[Term] -id: EV:0100143 ! -property_value: IAO:0000589 "synovial membrane of synovial joint (EV)" xsd:string -is_a: UBERON:0002018 ! synovial membrane of synovial joint - -[Term] -id: EV:0100170 ! -property_value: IAO:0000589 "occipital lobe (EV)" xsd:string -is_a: UBERON:0002021 ! occipital lobe - -[Term] -id: EV:0100172 ! -property_value: IAO:0000589 "insula (EV)" xsd:string -is_a: UBERON:0002022 ! insula - -[Term] -id: EV:0100183 ! -property_value: IAO:0000589 "claustrum of brain (EV)" xsd:string -is_a: UBERON:0002023 ! claustrum of brain - -[Term] -id: EV:0100228 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (EV)" xsd:string -is_a: UBERON:0002034 ! suprachiasmatic nucleus - -[Term] -id: EV:0100293 ! -property_value: IAO:0000589 "cerebellum (EV)" xsd:string -is_a: UBERON:0002037 ! cerebellum - -[Term] -id: EV:0100247 ! -property_value: IAO:0000589 "substantia nigra (EV)" xsd:string -is_a: UBERON:0002038 ! substantia nigra - -[Term] -id: EV:0100133 ! -property_value: IAO:0000589 "thyroid gland (EV)" xsd:string -is_a: UBERON:0002046 ! thyroid gland - -[Term] -id: EV:0100042 ! -property_value: IAO:0000589 "lung (EV)" xsd:string -is_a: UBERON:0002048 ! lung - -[Term] -id: EV:0100392 ! -property_value: IAO:0000589 "umbilical vein (EV)" xsd:string -is_a: UBERON:0002066 ! umbilical vein - -[Term] -id: EV:0100154 ! -property_value: IAO:0000589 "dermis (EV)" xsd:string -is_a: UBERON:0002067 ! dermis - -[Term] -id: EV:0100156 ! -property_value: IAO:0000589 "hair follicle (EV)" xsd:string -is_a: UBERON:0002073 ! hair follicle - -[Term] -id: EV:0100019 ! -property_value: IAO:0000589 "cardiac atrium (EV)" xsd:string -is_a: UBERON:0002081 ! cardiac atrium - -[Term] -id: EV:0100020 ! -property_value: IAO:0000589 "cardiac ventricle (EV)" xsd:string -is_a: UBERON:0002082 ! cardiac ventricle - -[Term] -id: EV:0100313 ! -property_value: IAO:0000589 "brain dura mater (EV)" xsd:string -is_a: UBERON:0002092 ! brain dura mater - -[Term] -id: EV:0100083 ! -property_value: IAO:0000589 "mesentery (EV)" xsd:string -is_a: UBERON:0002095 ! mesentery - -[Term] -id: EV:0100014 ! -property_value: IAO:0000589 "forelimb (EV)" xsd:string -is_a: UBERON:0002102 ! forelimb - -[Term] -id: EV:0100015 ! -property_value: IAO:0000589 "hindlimb (EV)" xsd:string -is_a: UBERON:0002103 ! hindlimb - -[Term] -id: EV:0100055 ! -property_value: IAO:0000589 "spleen (EV)" xsd:string -is_a: UBERON:0002106 ! spleen - -[Term] -id: EV:0100089 ! -property_value: IAO:0000589 "liver (EV)" xsd:string -is_a: UBERON:0002107 ! liver - -[Term] -id: EV:0100072 ! -property_value: IAO:0000589 "small intestine (EV)" xsd:string -is_a: UBERON:0002108 ! small intestine - -[Term] -id: EV:0100090 ! -property_value: IAO:0000589 "gallbladder (EV)" xsd:string -is_a: UBERON:0002110 ! gallbladder - -[Term] -id: EV:0100096 ! -property_value: IAO:0000589 "kidney (EV)" xsd:string -is_a: UBERON:0002113 ! kidney - -[Term] -id: EV:0100073 ! -property_value: IAO:0000589 "duodenum (EV)" xsd:string -is_a: UBERON:0002114 ! duodenum - -[Term] -id: EV:0100074 ! -property_value: IAO:0000589 "jejunum (EV)" xsd:string -is_a: UBERON:0002115 ! jejunum - -[Term] -id: EV:0100075 ! -property_value: IAO:0000589 "ileum (EV)" xsd:string -is_a: UBERON:0002116 ! ileum - -[Term] -id: EV:0100277 ! -property_value: IAO:0000589 "inferior olivary complex (EV)" xsd:string -is_a: UBERON:0002127 ! inferior olivary complex - -[Term] -id: EV:0100263 ! -property_value: IAO:0000589 "superior olivary complex (EV)" xsd:string -is_a: UBERON:0002128 ! superior olivary complex - -[Term] -id: EV:0100294 ! -property_value: IAO:0000589 "cerebellar cortex (EV)" xsd:string -is_a: UBERON:0002129 ! cerebellar cortex - -[Term] -id: EV:0100299 ! -property_value: IAO:0000589 "cerebellar nuclear complex (EV)" xsd:string -is_a: UBERON:0002130 ! cerebellar nuclear complex - -[Term] -id: EV:0100295 ! -property_value: IAO:0000589 "anterior lobe of cerebellum (EV)" xsd:string -is_a: UBERON:0002131 ! anterior lobe of cerebellum - -[Term] -id: EV:0100300 ! -property_value: IAO:0000589 "dentate nucleus (EV)" xsd:string -is_a: UBERON:0002132 ! dentate nucleus - -[Term] -id: EV:0100280 ! -property_value: IAO:0000589 "gracile nucleus (EV)" xsd:string -is_a: UBERON:0002161 ! gracile nucleus - -[Term] -id: EV:0100021 ! -property_value: IAO:0000589 "endocardium (EV)" xsd:string -is_a: UBERON:0002165 ! endocardium - -[Term] -id: EV:0100318 ! -property_value: IAO:0000589 "substantia gelatinosa (EV)" xsd:string -is_a: UBERON:0002181 ! substantia gelatinosa - -[Term] -id: EV:0100041 ! -property_value: IAO:0000589 "bronchus (EV)" xsd:string -is_a: UBERON:0002185 ! bronchus - -[Term] -id: EV:0100139 ! -property_value: IAO:0000589 "musculoskeletal system (EV)" xsd:string -is_a: UBERON:0002204 ! musculoskeletal system - -[Term] -id: EV:0100364 ! -property_value: IAO:0000589 "spiral organ of cochlea (EV)" xsd:string -is_a: UBERON:0002227 ! spiral organ of cochlea - -[Term] -id: EV:0100316 ! -property_value: IAO:0000589 "spinal cord (EV)" xsd:string -is_a: UBERON:0002240 ! spinal cord - -[Term] -id: EV:0100244 ! -property_value: IAO:0000589 "corpora quadrigemina (EV)" xsd:string -is_a: UBERON:0002259 ! corpora quadrigemina - -[Term] -id: EV:0100186 ! -property_value: IAO:0000589 "lentiform nucleus (EV)" xsd:string -is_a: UBERON:0002263 ! lentiform nucleus - -[Term] -id: EV:0100173 ! -property_value: IAO:0000589 "olfactory bulb (EV)" xsd:string -is_a: UBERON:0002264 ! olfactory bulb - -[Term] -id: EV:0100174 ! -property_value: IAO:0000589 "anterior olfactory nucleus (EV)" xsd:string -is_a: UBERON:0002266 ! anterior olfactory nucleus - -[Term] -id: EV:0100307 ! -property_value: IAO:0000589 "telencephalic ventricle (EV)" xsd:string -is_a: UBERON:0002285 ! telencephalic ventricle - -[Term] -id: EV:0100308 ! -property_value: IAO:0000589 "third ventricle (EV)" xsd:string -is_a: UBERON:0002286 ! third ventricle - -[Term] -id: EV:0100309 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (EV)" xsd:string -is_a: UBERON:0002289 ! midbrain cerebral aqueduct - -[Term] -id: EV:0100241 ! -property_value: IAO:0000589 "brainstem (EV)" xsd:string -is_a: UBERON:0002298 ! brainstem - -[Term] -id: EV:0100043 ! -property_value: IAO:0000589 "alveolus of lung (EV)" xsd:string -is_a: UBERON:0002299 ! alveolus of lung - -[Term] -id: EV:0100002 ! -property_value: IAO:0000589 "notochord (EV)" xsd:string -is_a: UBERON:0002328 ! notochord - -[Term] -id: EV:0100127 ! -property_value: IAO:0000589 "umbilical cord (EV)" xsd:string -is_a: UBERON:0002331 ! umbilical cord - -[Term] -id: EV:0100305 ! -property_value: IAO:0000589 "corpus callosum (EV)" xsd:string -is_a: UBERON:0002336 ! corpus callosum - -[Term] -id: EV:0100004 ! -property_value: IAO:0000589 "neurectoderm (EV)" xsd:string -is_a: UBERON:0002346 ! neurectoderm - -[Term] -id: EV:0100022 ! -property_value: IAO:0000589 "myocardium (EV)" xsd:string -is_a: UBERON:0002349 ! myocardium - -[Term] -id: EV:0100025 ! -property_value: IAO:0000589 "conducting system of heart (EV)" xsd:string -is_a: UBERON:0002350 ! conducting system of heart - -[Term] -id: EV:0100012 ! -property_value: IAO:0000589 "pelvic region of trunk (EV)" xsd:string -is_a: UBERON:0002355 ! pelvic region of trunk - -[Term] -id: EV:0100013 ! -property_value: IAO:0000589 "perineum (EV)" xsd:string -is_a: UBERON:0002356 ! perineum - -[Term] -id: EV:0100087 ! -property_value: IAO:0000589 "peritoneum (EV)" xsd:string -is_a: UBERON:0002358 ! peritoneum - -[Term] -id: EV:0100312 ! -property_value: IAO:0000589 "meninx (EV)" xsd:string -is_a: UBERON:0002360 ! meninx - -[Term] -id: EV:0100315 ! -property_value: IAO:0000589 "pia mater (EV)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: EV:0100314 ! -property_value: IAO:0000589 "arachnoid mater (EV)" xsd:string -is_a: UBERON:0002362 ! arachnoid mater - -[Term] -id: EV:0100313 ! -property_value: IAO:0000589 "dura mater (EV)" xsd:string -is_a: UBERON:0002363 ! dura mater - -[Term] -id: EV:0100104 ! -property_value: IAO:0000589 "prostate gland (EV)" xsd:string -is_a: UBERON:0002367 ! prostate gland - -[Term] -id: EV:0100135 ! -property_value: IAO:0000589 "adrenal gland (EV)" xsd:string -is_a: UBERON:0002369 ! adrenal gland - -[Term] -id: EV:0100138 ! -property_value: IAO:0000589 "thymus (EV)" xsd:string -is_a: UBERON:0002370 ! thymus - -[Term] -id: EV:0100046 ! -property_value: IAO:0000589 "bone marrow (EV)" xsd:string -is_a: UBERON:0002371 ! bone marrow - -[Term] -id: EV:0100052 ! -property_value: IAO:0000589 "tonsil (EV)" xsd:string -is_a: UBERON:0002372 ! tonsil - -[Term] -id: EV:0100393 ! -property_value: IAO:0000589 "palatine tonsil (EV)" xsd:string -is_a: UBERON:0002373 ! palatine tonsil - -[Term] -id: EV:0100045 ! -property_value: IAO:0000589 "hematopoietic system (EV)" xsd:string -is_a: UBERON:0002390 ! hematopoietic system - -[Term] -id: EV:0100049 ! -property_value: IAO:0000589 "lymph (EV)" xsd:string -is_a: UBERON:0002391 ! lymph - -[Term] -id: EV:0100359 ! -property_value: IAO:0000589 "pharyngotympanic tube (EV)" xsd:string -is_a: UBERON:0002393 ! pharyngotympanic tube - -[Term] -id: EV:0100091 ! -property_value: IAO:0000589 "bile duct (EV)" xsd:string -is_a: UBERON:0002394 ! bile duct - -[Term] -id: EV:0100086 ! -property_value: IAO:0000589 "lesser omentum (EV)" xsd:string -is_a: UBERON:0002399 ! lesser omentum - -[Term] -id: EV:0100023 ! -property_value: IAO:0000589 "pericardium (EV)" xsd:string -is_a: UBERON:0002407 ! pericardium - -[Term] -id: EV:0100151 ! -property_value: IAO:0000589 "integumental system (EV)" xsd:string -is_a: UBERON:0002416 ! integumental system - -[Term] -id: EV:0100141 ! -property_value: IAO:0000589 "cartilage tissue (EV)" xsd:string -is_a: UBERON:0002418 ! cartilage tissue - -[Term] -id: EV:0100310 ! -property_value: IAO:0000589 "fourth ventricle (EV)" xsd:string -is_a: UBERON:0002422 ! fourth ventricle - -[Term] -id: EV:0100088 ! -property_value: IAO:0000589 "hepatobiliary system (EV)" xsd:string -is_a: UBERON:0002423 ! hepatobiliary system - -[Term] -id: EV:0100209 ! -property_value: IAO:0000589 "ventral posterior nucleus of thalamus (EV)" xsd:string -is_a: UBERON:0002596 ! ventral posterior nucleus of thalamus - -[Term] -id: EV:0100274 ! -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (EV)" xsd:string -is_a: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve - -[Term] -id: EV:0100260 ! -property_value: IAO:0000589 "cochlear nuclear complex (EV)" xsd:string -is_a: UBERON:0002610 ! cochlear nuclear complex - -[Term] -id: EV:0100243 ! -property_value: IAO:0000589 "cerebral crus (EV)" xsd:string -is_a: UBERON:0002631 ! cerebral crus - -[Term] -id: EV:0100273 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (EV)" xsd:string -is_a: UBERON:0002633 ! motor nucleus of trigeminal nerve - -[Term] -id: EV:0100231 ! -property_value: IAO:0000589 "anterior nucleus of hypothalamus (EV)" xsd:string -is_a: UBERON:0002634 ! anterior nucleus of hypothalamus - -[Term] -id: EV:0100199 ! -property_value: IAO:0000589 "ventral anterior nucleus of thalamus (EV)" xsd:string -is_a: UBERON:0002637 ! ventral anterior nucleus of thalamus - -[Term] -id: EV:0100254 ! -property_value: IAO:0000589 "vestibular nuclear complex (EV)" xsd:string -is_a: UBERON:0002673 ! vestibular nuclear complex - -[Term] -id: EV:0100266 ! -property_value: IAO:0000589 "abducens nucleus (EV)" xsd:string -is_a: UBERON:0002682 ! abducens nucleus - -[Term] -id: EV:0100199 ! -property_value: IAO:0000589 "anteroventral nucleus of thalamus (EV)" xsd:string -is_a: UBERON:0002685 ! anteroventral nucleus of thalamus - -[Term] -id: EV:0100217 ! -property_value: IAO:0000589 "metathalamus (EV)" xsd:string -is_a: UBERON:0002704 ! metathalamus - -[Term] -id: EV:0100235 ! -property_value: IAO:0000589 "posterior nucleus of hypothalamus (EV)" xsd:string -is_a: UBERON:0002706 ! posterior nucleus of hypothalamus - -[Term] -id: EV:0100251 ! -property_value: IAO:0000589 "trochlear nucleus (EV)" xsd:string -is_a: UBERON:0002722 ! trochlear nucleus - -[Term] -id: EV:0100210 ! -property_value: IAO:0000589 "lateral nuclear group of thalamus (EV)" xsd:string -is_a: UBERON:0002736 ! lateral nuclear group of thalamus - -[Term] -id: EV:0100200 ! -property_value: IAO:0000589 "medial dorsal nucleus of thalamus (EV)" xsd:string -is_a: UBERON:0002739 ! medial dorsal nucleus of thalamus - -[Term] -id: EV:0100206 ! -property_value: IAO:0000589 "ventral nuclear group (EV)" xsd:string -is_a: UBERON:0002776 ! ventral nuclear group - -[Term] -id: EV:0100196 ! -property_value: IAO:0000589 "anterior nuclear group (EV)" xsd:string -is_a: UBERON:0002788 ! anterior nuclear group - -[Term] -id: EV:0100285 ! -property_value: IAO:0000589 "accessory cuneate nucleus (EV)" xsd:string -is_a: UBERON:0002864 ! accessory cuneate nucleus - -[Term] -id: EV:0100287 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (EV)" xsd:string -is_a: UBERON:0002870 ! dorsal motor nucleus of vagus nerve - -[Term] -id: EV:0100286 ! -property_value: IAO:0000589 "hypoglossal nucleus (EV)" xsd:string -is_a: UBERON:0002871 ! hypoglossal nucleus - -[Term] -id: EV:0100291 ! -property_value: IAO:0000589 "nucleus intercalatus (EV)" xsd:string -is_a: UBERON:0002876 ! nucleus intercalatus - -[Term] -id: EV:0100282 ! -property_value: IAO:0000589 "supraspinal nucleus (EV)" xsd:string -is_a: UBERON:0002882 ! supraspinal nucleus - -[Term] -id: EV:0100191 ! -property_value: IAO:0000589 "central amygdaloid nucleus (EV)" xsd:string -is_a: UBERON:0002883 ! central amygdaloid nucleus - -[Term] -id: EV:0100193 ! -property_value: IAO:0000589 "cortical amygdaloid nucleus (EV)" xsd:string -is_a: UBERON:0002891 ! cortical amygdaloid nucleus - -[Term] -id: EV:0100192 ! -property_value: IAO:0000589 "medial amygdaloid nucleus (EV)" xsd:string -is_a: UBERON:0002892 ! medial amygdaloid nucleus - -[Term] -id: EV:0100179 ! -property_value: IAO:0000589 "secondary olfactory cortex (EV)" xsd:string -is_a: UBERON:0002895 ! secondary olfactory cortex - -[Term] -id: EV:0100271 ! -property_value: IAO:0000589 "trigeminal nucleus (EV)" xsd:string -is_a: UBERON:0002925 ! trigeminal nucleus - -[Term] -id: EV:0100209 ! -property_value: IAO:0000589 "ventral posteroinferior nucleus (EV)" xsd:string -is_a: UBERON:0002939 ! ventral posteroinferior nucleus - -[Term] -id: EV:0100215 ! -property_value: IAO:0000589 "centromedian nucleus of thalamus (EV)" xsd:string -is_a: UBERON:0002972 ! centromedian nucleus of thalamus - -[Term] -id: EV:0100181 ! -property_value: IAO:0000589 "parahippocampal gyrus (EV)" xsd:string -is_a: UBERON:0002973 ! parahippocampal gyrus - -[Term] -id: EV:0100213 ! -property_value: IAO:0000589 "pulvinar nucleus (EV)" xsd:string -is_a: UBERON:0002981 ! pulvinar nucleus - -[Term] -id: EV:0100212 ! -property_value: IAO:0000589 "lateral posterior nucleus of thalamus (EV)" xsd:string -is_a: UBERON:0002983 ! lateral posterior nucleus of thalamus - -[Term] -id: EV:0100211 ! -property_value: IAO:0000589 "lateral dorsal nucleus (EV)" xsd:string -is_a: UBERON:0002984 ! lateral dorsal nucleus - -[Term] -id: EV:0100297 ! -property_value: IAO:0000589 "flocculonodular lobe (EV)" xsd:string -is_a: UBERON:0003012 ! flocculonodular lobe - -[Term] -id: EV:0100203 ! -property_value: IAO:0000589 "submedial nucleus of thalamus (EV)" xsd:string -is_a: UBERON:0003031 ! submedial nucleus of thalamus - -[Term] -id: EV:0100205 ! -property_value: IAO:0000589 "central lateral nucleus (EV)" xsd:string -is_a: UBERON:0003036 ! central lateral nucleus - -[Term] -id: EV:0100249 ! -property_value: IAO:0000589 "central gray substance of midbrain (EV)" xsd:string -is_a: UBERON:0003040 ! central gray substance of midbrain - -[Term] -id: EV:0100007 ! -property_value: IAO:0000589 "mesenchyme (EV)" xsd:string -is_a: UBERON:0003104 ! mesenchyme - -[Term] -id: EV:0100121 ! -property_value: IAO:0000589 "chorion membrane (EV)" xsd:string -is_a: UBERON:0003124 ! chorion membrane - -[Term] -id: EV:0100040 ! -property_value: IAO:0000589 "trachea (EV)" xsd:string -is_a: UBERON:0003126 ! trachea - -[Term] -id: EV:0100043 ! -property_value: IAO:0000589 "alveolus (EV)" xsd:string -is_a: UBERON:0003215 ! alveolus - -[Term] -id: EV:0100312 ! -property_value: IAO:0000589 "brain meninx (EV)" xsd:string -is_a: UBERON:0003547 ! brain meninx - -[Term] -id: EV:0100315 ! -property_value: IAO:0000589 "brain pia mater (EV)" xsd:string -is_a: UBERON:0003549 ! brain pia mater - -[Term] -id: EV:0100084 ! -property_value: IAO:0000589 "omentum (EV)" xsd:string -is_a: UBERON:0003688 ! omentum - -[Term] -id: EV:0100112 ! -property_value: IAO:0000589 "fallopian tube (EV)" xsd:string -is_a: UBERON:0003889 ! fallopian tube - -[Term] -id: EV:0100094 ! -property_value: IAO:0000589 "genitourinary system (EV)" xsd:string -is_a: UBERON:0004122 ! genitourinary system - -[Term] -id: EV:0100017 ! -property_value: IAO:0000589 "cardiovascular system (EV)" xsd:string -is_a: UBERON:0004535 ! cardiovascular system - -[Term] -id: EV:0100298 ! -property_value: IAO:0000589 "cerebellar vermis (EV)" xsd:string -is_a: UBERON:0004720 ! cerebellar vermis - -[Term] -id: EV:0100178 ! -property_value: IAO:0000589 "piriform cortex (EV)" xsd:string -is_a: UBERON:0004725 ! piriform cortex - -[Term] -id: EV:0100351 ! -property_value: IAO:0000589 "neuron projection bundle connecting eye with brain (EV)" xsd:string -is_a: UBERON:0004904 ! neuron projection bundle connecting eye with brain - -[Term] -id: EV:0100366 ! -property_value: IAO:0000589 "osseus labyrinth vestibule (EV)" xsd:string -is_a: UBERON:0005236 ! osseus labyrinth vestibule - -[Term] -id: EV:0100158 ! -property_value: IAO:0000589 "nail bed (EV)" xsd:string -is_a: UBERON:0005273 ! nail bed - -[Term] -id: EV:0100306 ! -property_value: IAO:0000589 "ventricular system of central nervous system (EV)" xsd:string -is_a: UBERON:0005281 ! ventricular system of central nervous system - -[Term] -id: EV:0100317 ! -property_value: IAO:0000589 "spinal cord dorsal column (EV)" xsd:string -is_a: UBERON:0005373 ! spinal cord dorsal column - -[Term] -id: EV:0100322 ! -property_value: IAO:0000589 "spinal cord lateral column (EV)" xsd:string -is_a: UBERON:0005374 ! spinal cord lateral column - -[Term] -id: EV:0100326 ! -property_value: IAO:0000589 "spinal cord ventral column (EV)" xsd:string -is_a: UBERON:0005375 ! spinal cord ventral column - -[Term] -id: EV:0100379 ! -property_value: IAO:0000589 "carotid artery segment (EV)" xsd:string -is_a: UBERON:0005396 ! carotid artery segment - -[Term] -id: EV:0100056 ! -property_value: IAO:0000589 "alimentary part of gastrointestinal system (EV)" xsd:string -is_a: UBERON:0005409 ! alimentary part of gastrointestinal system - -[Term] -id: EV:0100085 ! -property_value: IAO:0000589 "greater omentum (EV)" xsd:string -is_a: UBERON:0005448 ! greater omentum - -[Term] -id: EV:0100028 ! -property_value: IAO:0000589 "tunica intima of artery (EV)" xsd:string -is_a: UBERON:0005740 ! tunica intima of artery - -[Term] -id: EV:0200046 ! -property_value: IAO:0000589 "gonad germinal epithelium (EV)" xsd:string -is_a: UBERON:0005890 ! gonad germinal epithelium - -[Term] -id: EV:0100352 ! -property_value: IAO:0000589 "eye trabecular meshwork (EV)" xsd:string -is_a: UBERON:0005969 ! eye trabecular meshwork - -[Term] -id: EV:0100182 ! -property_value: IAO:0000589 "basal nuclear complex (EV)" xsd:string -is_a: UBERON:0006098 ! basal nuclear complex - -[Term] -id: EV:0100265 ! -property_value: IAO:0000589 "nucleus of lateral lemniscus (EV)" xsd:string -is_a: UBERON:0006840 ! nucleus of lateral lemniscus - -[Term] -id: EV:0300011 ! -property_value: IAO:0000589 "late embryonic stage (EV)" xsd:string -is_a: UBERON:0007220 ! late embryonic stage - -[Term] -id: EV:0300037 ! -property_value: IAO:0000589 "neonate stage (EV)" xsd:string -is_a: UBERON:0007221 ! neonate stage - -[Term] -id: EV:0300123 ! -property_value: IAO:0000589 "late adult stage (EV)" xsd:string -is_a: UBERON:0007222 ! late adult stage - -[Term] -id: EV:0100257 ! -property_value: IAO:0000589 "superior vestibular nucleus (EV)" xsd:string -is_a: UBERON:0007227 ! superior vestibular nucleus - -[Term] -id: EV:0100254 ! -property_value: IAO:0000589 "vestibular nucleus (EV)" xsd:string -is_a: UBERON:0007228 ! vestibular nucleus - -[Term] -id: EV:0100029 ! -property_value: IAO:0000589 "tunica media of artery (EV)" xsd:string -is_a: UBERON:0007239 ! tunica media of artery - -[Term] -id: EV:0100030 ! -property_value: IAO:0000589 "tunica adventitia of artery (EV)" xsd:string -is_a: UBERON:0007240 ! tunica adventitia of artery - -[Term] -id: EV:0100034 ! -property_value: IAO:0000589 "tunica adventitia of vein (EV)" xsd:string -is_a: UBERON:0007241 ! tunica adventitia of vein - -[Term] -id: EV:0100032 ! -property_value: IAO:0000589 "tunica intima of vein (EV)" xsd:string -is_a: UBERON:0007242 ! tunica intima of vein - -[Term] -id: EV:0100033 ! -property_value: IAO:0000589 "tunica media of vein (EV)" xsd:string -is_a: UBERON:0007243 ! tunica media of vein - -[Term] -id: EV:0100226 ! -property_value: IAO:0000589 "preoptic nucleus (EV)" xsd:string -is_a: UBERON:0007251 ! preoptic nucleus - -[Term] -id: EV:0100009 ! -property_value: IAO:0000589 "craniocervical region (EV)" xsd:string -is_a: UBERON:0007811 ! craniocervical region - -[Term] -id: EV:0100144 ! -property_value: IAO:0000589 "skeletal ligament (EV)" xsd:string -is_a: UBERON:0008846 ! skeletal ligament - -[Term] -id: EV:0100150 ! -property_value: IAO:0000589 "fascia (EV)" xsd:string -is_a: UBERON:0008982 ! fascia - -[Term] -id: EV:0100288 ! -property_value: IAO:0000589 "nucleus of solitary tract (EV)" xsd:string -is_a: UBERON:0009050 ! nucleus of solitary tract - -[Term] -id: EV:0100051 ! -property_value: IAO:0000589 "germinal center (EV)" xsd:string -is_a: UBERON:0010754 ! germinal center - -[Term] -id: EV:0100377 ! -property_value: IAO:0000589 "skeletal muscle organ (EV)" xsd:string -is_a: UBERON:0014892 ! skeletal muscle organ - -[Term] -id: EV:0100167 ! -property_value: IAO:0000589 "frontal lobe (EV)" xsd:string -is_a: UBERON:0016525 ! frontal lobe - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-ev.owl b/src/ontology/bridge/uberon-bridge-to-ev.owl deleted file mode 100644 index 4468903cfe..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-ev.owl +++ /dev/null @@ -1,5985 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - anatomical system (EV) - EV:0100000 - - - - - - - - - notochord (EV) - EV:0100002 - - - - - - - - - ectoderm (EV) - EV:0100003 - - - - - - - - - neurectoderm (EV) - EV:0100004 - - - - - - - - - endoderm (EV) - EV:0100005 - - - - - - - - - mesoderm (EV) - EV:0100006 - - - - - - - - - mesenchyme (EV) - EV:0100007 - - - - - - - - - craniocervical region (EV) - EV:0100009 - - - - - - - - - chest (EV) - EV:0100010 - - - - - - - - - abdomen (EV) - EV:0100011 - - - - - - - - - pelvic region of trunk (EV) - EV:0100012 - - - - - - - - - perineum (EV) - EV:0100013 - - - - - - - - - forelimb (EV) - EV:0100014 - - - - - - - - - hindlimb (EV) - EV:0100015 - - - - - - - - - multicellular organism (EV) - EV:0100016 - - - - - - - - - cardiovascular system (EV) - EV:0100017 - - - - - - - - - heart (EV) - EV:0100018 - - - - - - - - - cardiac atrium (EV) - EV:0100019 - - - - - - - - - cardiac ventricle (EV) - EV:0100020 - - - - - - - - - endocardium (EV) - EV:0100021 - - - - - - - - - myocardium (EV) - EV:0100022 - - - - - - - - - pericardium (EV) - EV:0100023 - - - - - - - - - cardiac valve (EV) - EV:0100024 - - - - - - - - - conducting system of heart (EV) - EV:0100025 - - - - - - - - - artery (EV) - EV:0100026 - - - - - - - - - aorta (EV) - EV:0100027 - - - - - - - - - tunica intima of artery (EV) - EV:0100028 - - - - - - - - - tunica media of artery (EV) - EV:0100029 - - - - - - - - - tunica adventitia of artery (EV) - EV:0100030 - - - - - - - - - vein (EV) - EV:0100031 - - - - - - - - - tunica intima of vein (EV) - EV:0100032 - - - - - - - - - tunica media of vein (EV) - EV:0100033 - - - - - - - - - tunica adventitia of vein (EV) - EV:0100034 - - - - - - - - - capillary (EV) - EV:0100035 - - - - - - - - - respiratory system (EV) - EV:0100036 - - - - - - - - - nose (EV) - EV:0100037 - - - - - - - - - paranasal sinus (EV) - EV:0100038 - - - - - - - - - larynx (EV) - EV:0100039 - - - - - - - - - trachea (EV) - EV:0100040 - - - - - - - - - bronchus (EV) - EV:0100041 - - - - - - - - - lung (EV) - EV:0100042 - - - - - - - - - - alveolus (EV) - alveolus of lung (EV) - EV:0100043 - - - - - - - - - pleura (EV) - EV:0100044 - - - - - - - - - hematopoietic system (EV) - EV:0100045 - - - - - - - - - bone marrow (EV) - EV:0100046 - - - - - - - - - blood (EV) - EV:0100047 - - - - - - - - - reticuloendothelial system (EV) - EV:0100048 - - - - - - - - - lymph (EV) - EV:0100049 - - - - - - - - - lymph node (EV) - EV:0100050 - - - - - - - - - germinal center (EV) - EV:0100051 - - - - - - - - - tonsil (EV) - EV:0100052 - - - - - - - - - pharyngeal tonsil (EV) - EV:0100054 - - - - - - - - - spleen (EV) - EV:0100055 - - - - - - - - - - alimentary part of gastrointestinal system (EV) - digestive system (EV) - EV:0100056 - - - - - - - - - oral cavity (EV) - EV:0100057 - - - - - - - - - tongue (EV) - EV:0100058 - - - - - - - - - saliva-secreting gland (EV) - EV:0100059 - - - - - - - - - parotid gland (EV) - EV:0100060 - - - - - - - - - submandibular gland (EV) - EV:0100061 - - - - - - - - - sublingual gland (EV) - EV:0100062 - - - - - - - - - calcareous tooth (EV) - EV:0100063 - - - - - - - - - gingiva (EV) - EV:0100064 - - - - - - - - - chordate pharynx (EV) - EV:0100065 - - - - - - - - - nasopharynx (EV) - EV:0100066 - - - - - - - - - oropharynx (EV) - EV:0100067 - - - - - - - - - hypopharynx (EV) - EV:0100068 - - - - - - - - - esophagus (EV) - EV:0100069 - - - - - - - - - stomach (EV) - EV:0100070 - - - - - - - - - intestine (EV) - EV:0100071 - - - - - - - - - small intestine (EV) - EV:0100072 - - - - - - - - - duodenum (EV) - EV:0100073 - - - - - - - - - jejunum (EV) - EV:0100074 - - - - - - - - - ileum (EV) - EV:0100075 - - - - - - - - - vermiform appendix (EV) - EV:0100076 - - - - - - - - - large intestine (EV) - EV:0100077 - - - - - - - - - colon (EV) - EV:0100079 - - - - - - - - - vermiform appendix (EV) - EV:0100080 - - - - - - - - - rectum (EV) - EV:0100081 - - - - - - - - - anus (EV) - EV:0100082 - - - - - - - - - mesentery (EV) - EV:0100083 - - - - - - - - - omentum (EV) - EV:0100084 - - - - - - - - - greater omentum (EV) - EV:0100085 - - - - - - - - - lesser omentum (EV) - EV:0100086 - - - - - - - - - peritoneum (EV) - EV:0100087 - - - - - - - - - hepatobiliary system (EV) - EV:0100088 - - - - - - - - - liver (EV) - EV:0100089 - - - - - - - - - gallbladder (EV) - EV:0100090 - - - - - - - - - bile duct (EV) - EV:0100091 - - - - - - - - - pancreas (EV) - EV:0100092 - - - - - - - - - exocrine pancreas (EV) - EV:0100093 - - - - - - - - - genitourinary system (EV) - EV:0100094 - - - - - - - - - renal system (EV) - EV:0100095 - - - - - - - - - - adult mammalian kidney (EV) - kidney (EV) - EV:0100096 - - - - - - - - - ureter (EV) - EV:0100097 - - - - - - - - - urinary bladder (EV) - EV:0100098 - - - - - - - - - urethra (EV) - EV:0100099 - - - - - - - - - reproductive system (EV) - EV:0100100 - - - - - - - - - male reproductive system (EV) - EV:0100101 - - - - - - - - - testis (EV) - EV:0100102 - - - - - - - - - epididymis (EV) - EV:0100103 - - - - - - - - - prostate gland (EV) - EV:0100104 - - - - - - - - - vas deferens (EV) - EV:0100105 - - - - - - - - - seminal vesicle (EV) - EV:0100106 - - - - - - - - - penis (EV) - EV:0100107 - - - - - - - - - glans penis (EV) - EV:0100108 - - - - - - - - - - prepuce of penis (EV) - skin of prepuce of penis (EV) - EV:0100109 - - - - - - - - - female reproductive system (EV) - EV:0100110 - - - - - - - - - ovary (EV) - EV:0100111 - - - - - - - - - fallopian tube (EV) - EV:0100112 - - - - - - - - - uterus (EV) - EV:0100113 - - - - - - - - - uterine cervix (EV) - EV:0100114 - - - - - - - - - endometrium (EV) - EV:0100115 - - - - - - - - - myometrium (EV) - EV:0100116 - - - - - - - - - vagina (EV) - EV:0100117 - - - - - - - - - mammalian vulva (EV) - EV:0100118 - - - - - - - - - placenta (EV) - EV:0100119 - - - - - - - - - trophoblast (EV) - EV:0100120 - - - - - - - - - chorion membrane (EV) - EV:0100121 - - - - - - - - - amnion (EV) - EV:0100122 - - - - - - - - - amniotic fluid (EV) - EV:0100123 - - - - - - - - - breast (EV) - EV:0100124 - - - - - - - - - mammary gland (EV) - EV:0100125 - - - - - - - - - milk (EV) - EV:0100126 - - - - - - - - - umbilical cord (EV) - EV:0100127 - - - - - - - - - endocrine system (EV) - EV:0100128 - - - - - - - - - endocrine pancreas (EV) - EV:0100129 - - - - - - - - - islet of Langerhans (EV) - EV:0100130 - - - - - - - - - pineal body (EV) - EV:0100131 - - - - - - - - - pituitary gland (EV) - EV:0100132 - - - - - - - - - thyroid gland (EV) - EV:0100133 - - - - - - - - - parathyroid gland (EV) - EV:0100134 - - - - - - - - - adrenal gland (EV) - EV:0100135 - - - - - - - - - adrenal cortex (EV) - EV:0100136 - - - - - - - - - adrenal medulla (EV) - EV:0100137 - - - - - - - - - thymus (EV) - EV:0100138 - - - - - - - - - musculoskeletal system (EV) - EV:0100139 - - - - - - - - - bone element (EV) - EV:0100140 - - - - - - - - - cartilage tissue (EV) - EV:0100141 - - - - - - - - - synovial membrane of synovial joint (EV) - EV:0100143 - - - - - - - - - skeletal ligament (EV) - EV:0100144 - - - - - - - - - meniscus (EV) - EV:0100145 - - - - - - - - - muscle organ (EV) - EV:0100146 - - - - - - - - - tendon (EV) - EV:0100149 - - - - - - - - - fascia (EV) - EV:0100150 - - - - - - - - - integumental system (EV) - EV:0100151 - - - - - - - - - zone of skin (EV) - EV:0100152 - - - - - - - - - skin epidermis (EV) - EV:0100153 - - - - - - - - - dermis (EV) - EV:0100154 - - - - - - - - - appendage (EV) - EV:0100155 - - - - - - - - - hair follicle (EV) - EV:0100156 - - - - - - - - - strand of hair (EV) - EV:0100157 - - - - - - - - - nail bed (EV) - EV:0100158 - - - - - - - - - nail (EV) - EV:0100159 - - - - - - - - - sweat gland (EV) - EV:0100160 - - - - - - - - - sebaceous gland (EV) - EV:0100161 - - - - - - - - - nervous system (EV) - EV:0100162 - - - - - - - - - central nervous system (EV) - EV:0100163 - - - - - - - - - brain (EV) - EV:0100164 - - - - - - - - - telencephalon (EV) - EV:0100165 - - - - - - - - - cerebral cortex (EV) - EV:0100166 - - - - - - - - - frontal lobe (EV) - EV:0100167 - - - - - - - - - parietal lobe (EV) - EV:0100168 - - - - - - - - - temporal lobe (EV) - EV:0100169 - - - - - - - - - occipital lobe (EV) - EV:0100170 - - - - - - - - - visual cortex (EV) - EV:0100171 - - - - - - - - - insula (EV) - EV:0100172 - - - - - - - - - olfactory bulb (EV) - EV:0100173 - - - - - - - - - anterior olfactory nucleus (EV) - EV:0100174 - - - - - - - - - lateral olfactory stria (EV) - EV:0100175 - - - - - - - - - olfactory tubercle (EV) - EV:0100177 - - - - - - - - - piriform cortex (EV) - EV:0100178 - - - - - - - - - secondary olfactory cortex (EV) - EV:0100179 - - - - - - - - - Ammon's horn (EV) - EV:0100180 - - - - - - - - - parahippocampal gyrus (EV) - EV:0100181 - - - - - - - - - basal nuclear complex (EV) - EV:0100182 - - - - - - - - - claustrum of brain (EV) - EV:0100183 - - - - - - - - - corpus striatum (EV) - EV:0100184 - - - - - - - - - caudate nucleus (EV) - EV:0100185 - - - - - - - - - lentiform nucleus (EV) - EV:0100186 - - - - - - - - - putamen (EV) - EV:0100187 - - - - - - - - - globus pallidus (EV) - EV:0100188 - - - - - - - - - amygdala (EV) - EV:0100189 - - - - - - - - - amygdala (EV) - EV:0100190 - - - - - - - - - central amygdaloid nucleus (EV) - EV:0100191 - - - - - - - - - medial amygdaloid nucleus (EV) - EV:0100192 - - - - - - - - - cortical amygdaloid nucleus (EV) - EV:0100193 - - - - - - - - - diencephalon (EV) - EV:0100194 - - - - - - - - - dorsal plus ventral thalamus (EV) - EV:0100195 - - - - - - - - - anterior nuclear group (EV) - EV:0100196 - - - - - - - - - - anteroventral nucleus of thalamus (EV) - ventral anterior nucleus of thalamus (EV) - EV:0100199 - - - - - - - - - medial dorsal nucleus of thalamus (EV) - EV:0100200 - - - - - - - - - parafascicular nucleus (EV) - EV:0100202 - - - - - - - - - submedial nucleus of thalamus (EV) - EV:0100203 - - - - - - - - - paracentral nucleus (EV) - EV:0100204 - - - - - - - - - central lateral nucleus (EV) - EV:0100205 - - - - - - - - - ventral nuclear group (EV) - EV:0100206 - - - - - - - - - ventral intermediate nucleus of thalamus (EV) - EV:0100208 - - - - - - - - - - ventral posterior nucleus of thalamus (EV) - ventral posteroinferior nucleus (EV) - EV:0100209 - - - - - - - - - lateral nuclear group of thalamus (EV) - EV:0100210 - - - - - - - - - lateral dorsal nucleus (EV) - EV:0100211 - - - - - - - - - lateral posterior nucleus of thalamus (EV) - EV:0100212 - - - - - - - - - pulvinar nucleus (EV) - EV:0100213 - - - - - - - - - thalamic reticular nucleus (EV) - EV:0100214 - - - - - - - - - centromedian nucleus of thalamus (EV) - EV:0100215 - - - - - - - - - metathalamus (EV) - EV:0100217 - - - - - - - - - medial geniculate body (EV) - EV:0100218 - - - - - - - - - lateral geniculate body (EV) - EV:0100219 - - - - - - - - - epithalamus (EV) - EV:0100220 - - - - - - - - - pineal body (EV) - EV:0100221 - - - - - - - - - habenula (EV) - EV:0100222 - - - - - - - - - ventral thalamus (EV) - EV:0100223 - - - - - - - - - subthalamic nucleus (EV) - EV:0100224 - - - - - - - - - hypothalamus (EV) - EV:0100225 - - - - - - - - - preoptic nucleus (EV) - EV:0100226 - - - - - - - - - supraoptic nucleus (EV) - EV:0100227 - - - - - - - - - suprachiasmatic nucleus (EV) - EV:0100228 - - - - - - - - - paraventricular nucleus of hypothalamus (EV) - EV:0100229 - - - - - - - - - arcuate nucleus of hypothalamus (EV) - EV:0100230 - - - - - - - - - anterior nucleus of hypothalamus (EV) - EV:0100231 - - - - - - - - - dorsomedial nucleus of hypothalamus (EV) - EV:0100232 - - - - - - - - - ventromedial nucleus of hypothalamus (EV) - EV:0100233 - - - - - - - - - lateral hypothalamic nucleus (EV) - EV:0100234 - - - - - - - - - posterior nucleus of hypothalamus (EV) - EV:0100235 - - - - - - - - - tuberomammillary nucleus (EV) - EV:0100237 - - - - - - - - - medial mammillary nucleus (EV) - EV:0100238 - - - - - - - - - lateral mammillary nucleus (EV) - EV:0100239 - - - - - - - - - lateral tuberal nucleus (EV) - EV:0100240 - - - - - - - - - brainstem (EV) - EV:0100241 - - - - - - - - - midbrain (EV) - EV:0100242 - - - - - - - - - cerebral crus (EV) - EV:0100243 - - - - - - - - - corpora quadrigemina (EV) - EV:0100244 - - - - - - - - - superior colliculus (EV) - EV:0100245 - - - - - - - - - inferior colliculus (EV) - EV:0100246 - - - - - - - - - substantia nigra (EV) - EV:0100247 - - - - - - - - - red nucleus (EV) - EV:0100248 - - - - - - - - - central gray substance of midbrain (EV) - EV:0100249 - - - - - - - - - oculomotor nuclear complex (EV) - EV:0100250 - - - - - - - - - trochlear nucleus (EV) - EV:0100251 - - - - - - - - - mesencephalic nucleus of trigeminal nerve (EV) - EV:0100252 - - - - - - - - - pons (EV) - EV:0100253 - - - - - - - - - - vestibular nuclear complex (EV) - vestibular nucleus (EV) - EV:0100254 - - - - - - - - - superior vestibular nucleus (EV) - EV:0100257 - - - - - - - - - inferior vestibular nucleus (EV) - EV:0100258 - - - - - - - - - cochlear nuclear complex (EV) - EV:0100260 - - - - - - - - - superior olivary complex (EV) - EV:0100263 - - - - - - - - - nucleus of lateral lemniscus (EV) - EV:0100265 - - - - - - - - - abducens nucleus (EV) - EV:0100266 - - - - - - - - - facial nucleus (EV) - EV:0100267 - - - - - - - - - trigeminal nucleus (EV) - EV:0100271 - - - - - - - - - motor nucleus of trigeminal nerve (EV) - EV:0100273 - - - - - - - - - principal sensory nucleus of trigeminal nerve (EV) - EV:0100274 - - - - - - - - - medulla oblongata (EV) - EV:0100275 - - - - - - - - - inferior olivary complex (EV) - EV:0100277 - - - - - - - - - gracile nucleus (EV) - EV:0100280 - - - - - - - - - supraspinal nucleus (EV) - EV:0100282 - - - - - - - - - accessory cuneate nucleus (EV) - EV:0100285 - - - - - - - - - hypoglossal nucleus (EV) - EV:0100286 - - - - - - - - - dorsal motor nucleus of vagus nerve (EV) - EV:0100287 - - - - - - - - - nucleus of solitary tract (EV) - EV:0100288 - - - - - - - - - nucleus intercalatus (EV) - EV:0100291 - - - - - - - - - nucleus ambiguus (EV) - EV:0100292 - - - - - - - - - cerebellum (EV) - EV:0100293 - - - - - - - - - cerebellar cortex (EV) - EV:0100294 - - - - - - - - - anterior lobe of cerebellum (EV) - EV:0100295 - - - - - - - - - flocculonodular lobe (EV) - EV:0100297 - - - - - - - - - cerebellar vermis (EV) - EV:0100298 - - - - - - - - - cerebellar nuclear complex (EV) - EV:0100299 - - - - - - - - - dentate nucleus (EV) - EV:0100300 - - - - - - - - - axon tract (EV) - EV:0100304 - - - - - - - - - corpus callosum (EV) - EV:0100305 - - - - - - - - - ventricular system of central nervous system (EV) - EV:0100306 - - - - - - - - - telencephalic ventricle (EV) - EV:0100307 - - - - - - - - - third ventricle (EV) - EV:0100308 - - - - - - - - - midbrain cerebral aqueduct (EV) - EV:0100309 - - - - - - - - - fourth ventricle (EV) - EV:0100310 - - - - - - - - - cerebrospinal fluid (EV) - EV:0100311 - - - - - - - - - - brain meninx (EV) - meninx (EV) - EV:0100312 - - - - - - - - - - brain dura mater (EV) - dura mater (EV) - EV:0100313 - - - - - - - - - arachnoid mater (EV) - EV:0100314 - - - - - - - - - - brain pia mater (EV) - pia mater (EV) - EV:0100315 - - - - - - - - - spinal cord (EV) - EV:0100316 - - - - - - - - - spinal cord dorsal column (EV) - EV:0100317 - - - - - - - - - substantia gelatinosa (EV) - EV:0100318 - - - - - - - - - spinal cord lateral column (EV) - EV:0100322 - - - - - - - - - spinal cord ventral column (EV) - EV:0100326 - - - - - - - - - peripheral nervous system (EV) - EV:0100335 - - - - - - - - - eye (EV) - EV:0100336 - - - - - - - - - eyelid (EV) - EV:0100338 - - - - - - - - - lacrimal gland (EV) - EV:0100339 - - - - - - - - - conjunctiva (EV) - EV:0100340 - - - - - - - - - cornea (EV) - EV:0100341 - - - - - - - - - sclera (EV) - EV:0100342 - - - - - - - - - lens of camera-type eye (EV) - EV:0100343 - - - - - - - - - vitreous humor (EV) - EV:0100344 - - - - - - - - - iris (EV) - EV:0100345 - - - - - - - - - ciliary body (EV) - EV:0100346 - - - - - - - - - optic choroid (EV) - EV:0100347 - - - - - - - - - retina (EV) - EV:0100348 - - - - - - - - - macula lutea (EV) - EV:0100349 - - - - - - - - - fovea centralis (EV) - EV:0100350 - - - - - - - - - neuron projection bundle connecting eye with brain (EV) - EV:0100351 - - - - - - - - - eye trabecular meshwork (EV) - EV:0100352 - - - - - - - - - ear (EV) - EV:0100353 - - - - - - - - - external ear (EV) - EV:0100354 - - - - - - - - - pinna (EV) - EV:0100355 - - - - - - - - - external acoustic meatus (EV) - EV:0100356 - - - - - - - - - middle ear (EV) - EV:0100357 - - - - - - - - - pharyngotympanic tube (EV) - EV:0100359 - - - - - - - - - auditory ossicle bone (EV) - EV:0100360 - - - - - - - - - internal ear (EV) - EV:0100361 - - - - - - - - - bony labyrinth (EV) - EV:0100362 - - - - - - - - - cochlea (EV) - EV:0100363 - - - - - - - - - spiral organ of cochlea (EV) - EV:0100364 - - - - - - - - - semicircular canal (EV) - EV:0100365 - - - - - - - - - osseus labyrinth vestibule (EV) - EV:0100366 - - - - - - - - - membranous labyrinth (EV) - EV:0100367 - - - - - - - - - utricle of membranous labyrinth (EV) - EV:0100368 - - - - - - - - - saccule of membranous labyrinth (EV) - EV:0100369 - - - - - - - - - nose (EV) - EV:0100370 - - - - - - - - - nerve (EV) - EV:0100371 - - - - - - - - - ganglion (EV) - EV:0100372 - - - - - - - - - dorsal root ganglion (EV) - EV:0100373 - - - - - - - - - sympathetic trunk (EV) - EV:0100374 - - - - - - - - - diaphragm (EV) - EV:0100376 - - - - - - - - - skeletal muscle organ (EV) - EV:0100377 - - - - - - - - - smooth muscle tissue (EV) - EV:0100378 - - - - - - - - - carotid artery segment (EV) - EV:0100379 - - - - - - - - - seminiferous tubule of testis (EV) - EV:0100380 - - - - - - - - - adipose tissue (EV) - EV:0100381 - - - - - - - - - mucosa (EV) - EV:0100382 - - - - - - - - - coronary artery (EV) - EV:0100383 - - - - - - - - - nephron (EV) - EV:0100384 - - - - - - - - - renal corpuscle (EV) - EV:0100385 - - - - - - - - - renal glomerulus (EV) - EV:0100386 - - - - - - - - - nephron tubule (EV) - EV:0100387 - - - - - - - - - proximal convoluted tubule (EV) - EV:0100388 - - - - - - - - - distal convoluted tubule (EV) - EV:0100389 - - - - - - - - - loop of Henle (EV) - EV:0100390 - - - - - - - - - collecting duct of renal tubule (EV) - EV:0100391 - - - - - - - - - umbilical vein (EV) - EV:0100392 - - - - - - - - - palatine tonsil (EV) - EV:0100393 - - - - - - - - - blastocyst (EV) - EV:0100394 - - - - - - - - - caecum (EV) - EV:0100397 - - - - - - - - - gonad germinal epithelium (EV) - EV:0200046 - - - - - - - - - embryo stage (EV) - EV:0300001 - - - - - - - - - late embryonic stage (EV) - EV:0300011 - - - - - - - - - neonate stage (EV) - EV:0300037 - - - - - - - - - sexually immature stage (EV) - EV:0300051 - - - - - - - - - post-juvenile adult stage (EV) - EV:0300064 - - - - - - - - - post-juvenile adult stage (EV) - EV:0300070 - - - - - - - - - late adult stage (EV) - EV:0300123 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-mfo.obo b/src/ontology/bridge/uberon-bridge-to-mfo.obo deleted file mode 100644 index 423790997e..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-mfo.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-mfo -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: MFO:ENTITY -name: MFO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8089 -relationship: only_in_taxon NCBITaxon:8089 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-mfo.owl b/src/ontology/bridge/uberon-bridge-to-mfo.owl deleted file mode 100644 index 0e854c9f30..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-mfo.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MFO:ENTITY - MFO entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-olatdv.obo b/src/ontology/bridge/uberon-bridge-to-olatdv.obo deleted file mode 100644 index 853f03e2ff..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-olatdv.obo +++ /dev/null @@ -1,133 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-olatdv -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: OlatDv:0000010 ! -property_value: IAO:0000589 "life cycle stage (OlatDv)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:8089 - -[Term] -id: OlatDv:ENTITY -name: OlatDv entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8089 -relationship: only_in_taxon NCBITaxon:8089 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-olatdv.owl b/src/ontology/bridge/uberon-bridge-to-olatdv.owl deleted file mode 100644 index c113216ef1..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-olatdv.owl +++ /dev/null @@ -1,394 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - life cycle stage (OlatDv) - OlatDv:0000010 - - - - - - - - - - - - - - - - - - - - - - - - - OlatDv:ENTITY - OlatDv entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-tao.obo b/src/ontology/bridge/uberon-bridge-to-tao.obo deleted file mode 100644 index a15c8aafd4..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-tao.obo +++ /dev/null @@ -1,6056 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-tao -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to tao" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between TAO and Uberon. Note that TAO is in the process of being merged into the core Uberon, so this mapping will become deprecated" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Wasila Dahdul" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/tao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: TAO:0000047 ! -property_value: IAO:0000589 "nose (teleost)" xsd:string -intersection_of: UBERON:0000004 ! nose -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000118 ! -property_value: IAO:0000589 "pituitary gland (teleost)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000142 ! -property_value: IAO:0000589 "peripheral nervous system (teleost)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001575 ! -property_value: IAO:0000589 "parasympathetic nervous system (teleost)" xsd:string -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001576 ! -property_value: IAO:0000589 "sympathetic nervous system (teleost)" xsd:string -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001260 ! -property_value: IAO:0000589 "endocrine pancreas (teleost)" xsd:string -intersection_of: UBERON:0000016 ! endocrine pancreas -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001249 ! -property_value: IAO:0000589 "exocrine pancreas (teleost)" xsd:string -intersection_of: UBERON:0000017 ! exocrine pancreas -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000107 ! -property_value: IAO:0000589 "camera-type eye (teleost)" xsd:string -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001114 ! -property_value: IAO:0000589 "head (teleost)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005425 ! -property_value: IAO:0000589 "serous membrane (teleost)" xsd:string -intersection_of: UBERON:0000042 ! serous membrane -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000200 ! -property_value: IAO:0000589 "dorsal root ganglion (teleost)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000190 ! -property_value: IAO:0000589 "ganglion (teleost)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000386 ! -property_value: IAO:0000589 "macula (teleost)" xsd:string -intersection_of: UBERON:0000054 ! macula -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005171 ! -property_value: IAO:0000589 "duct (teleost)" xsd:string -intersection_of: UBERON:0000058 ! duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000037 ! -property_value: IAO:0000589 "anatomical structure (teleost)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001288 ! -property_value: IAO:0000589 "renal glomerulus (teleost)" xsd:string -intersection_of: UBERON:0000074 ! renal glomerulus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000529 ! -property_value: IAO:0000589 "mesonephros (teleost)" xsd:string -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001111 ! -property_value: IAO:0000589 "zona pellucida (teleost)" xsd:string -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000117 ! -property_value: IAO:0000589 "hypoblast (generic) (teleost)" xsd:string -intersection_of: UBERON:0000089 ! hypoblast (generic) -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002173 ! -property_value: IAO:0000589 "cardiac neural crest (teleost)" xsd:string -intersection_of: UBERON:0000095 ! cardiac neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001161 ! -property_value: IAO:0000589 "pectoral fin (teleost)" xsd:string -intersection_of: UBERON:0000151 ! pectoral fin -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001184 ! -property_value: IAO:0000589 "pelvic fin (teleost)" xsd:string -intersection_of: UBERON:0000152 ! pelvic fin -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001113 ! -property_value: IAO:0000589 "theca cell layer (teleost)" xsd:string -intersection_of: UBERON:0000155 ! theca cell layer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001338 ! -property_value: IAO:0000589 "intestine (teleost)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000547 ! -property_value: IAO:0000589 "mouth (teleost)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000590 ! -property_value: IAO:0000589 "mouth (teleost)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001027 ! -property_value: IAO:0000589 "oral cavity (teleost)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000007 ! -property_value: IAO:0000589 "blood (teleost)" xsd:string -intersection_of: UBERON:0000178 ! blood -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000505 ! -property_value: IAO:0000589 "pallium (teleost)" xsd:string -intersection_of: UBERON:0000203 ! pallium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007007 ! -property_value: IAO:0000589 "pallium (teleost)" xsd:string -intersection_of: UBERON:0000203 ! pallium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000304 ! -property_value: IAO:0000589 "ventral part of telencephalon (teleost)" xsd:string -intersection_of: UBERON:0000204 ! ventral part of telencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001682 ! -property_value: IAO:0000589 "ligament (teleost)" xsd:string -intersection_of: UBERON:0000211 ! ligament -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005271 ! -property_value: IAO:0000589 "flexor muscle (teleost)" xsd:string -intersection_of: UBERON:0000366 ! flexor muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005128 ! -property_value: IAO:0000589 "colonic epithelium (teleost)" xsd:string -intersection_of: UBERON:0000397 ! colonic epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000370 ! -property_value: IAO:0000589 "ventral intermediate nucleus of thalamus (teleost)" xsd:string -intersection_of: UBERON:0000430 ! ventral intermediate nucleus of thalamus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001487 ! -property_value: IAO:0000589 "organism substance (teleost)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001668 ! -property_value: IAO:0000589 "anatomical space (teleost)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001836 ! -property_value: IAO:0000589 "material anatomical entity (teleost)" xsd:string -intersection_of: UBERON:0000465 ! material anatomical entity -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001835 ! -property_value: IAO:0000589 "immaterial anatomical entity (teleost)" xsd:string -intersection_of: UBERON:0000466 ! immaterial anatomical entity -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001439 ! -property_value: IAO:0000589 "anatomical system (teleost)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001094 ! -property_value: IAO:0000589 "multicellular organism (teleost)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001489 ! -property_value: IAO:0000589 "compound organ component (teleost)" xsd:string -intersection_of: UBERON:0000471 ! compound organ component -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001492 ! -property_value: IAO:0000589 "simple organ (teleost)" xsd:string -intersection_of: UBERON:0000472 ! simple organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000598 ! -property_value: IAO:0000589 "testis (teleost)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001308 ! -property_value: IAO:0000589 "organism subdivision (teleost)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000382 ! -property_value: IAO:0000589 "acellular anatomical structure (teleost)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000020 ! -property_value: IAO:0000589 "extraembryonic structure (teleost)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001477 ! -property_value: IAO:0000589 "tissue (teleost)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001512 ! -property_value: IAO:0000589 "anatomical group (teleost)" xsd:string -intersection_of: UBERON:0000480 ! anatomical group -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001488 ! -property_value: IAO:0000589 "multi-tissue structure (teleost)" xsd:string -intersection_of: UBERON:0000481 ! multi-tissue structure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001485 ! -property_value: IAO:0000589 "basal lamina of epithelium (teleost)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001486 ! -property_value: IAO:0000589 "epithelium (teleost)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001497 ! -property_value: IAO:0000589 "simple cuboidal epithelium (teleost)" xsd:string -intersection_of: UBERON:0000484 ! simple cuboidal epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001496 ! -property_value: IAO:0000589 "simple columnar epithelium (teleost)" xsd:string -intersection_of: UBERON:0000485 ! simple columnar epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001494 ! -property_value: IAO:0000589 "multilaminar epithelium (teleost)" xsd:string -intersection_of: UBERON:0000486 ! multilaminar epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001498 ! -property_value: IAO:0000589 "simple squamous epithelium (teleost)" xsd:string -intersection_of: UBERON:0000487 ! simple squamous epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001493 ! -property_value: IAO:0000589 "atypical epithelium (teleost)" xsd:string -intersection_of: UBERON:0000488 ! atypical epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001490 ! -property_value: IAO:0000589 "cavitated compound organ (teleost)" xsd:string -intersection_of: UBERON:0000489 ! cavitated compound organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001495 ! -property_value: IAO:0000589 "unilaminar epithelium (teleost)" xsd:string -intersection_of: UBERON:0000490 ! unilaminar epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001491 ! -property_value: IAO:0000589 "solid compound organ (teleost)" xsd:string -intersection_of: UBERON:0000491 ! solid compound organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000329 ! -property_value: IAO:0000589 "egg chorion (teleost)" xsd:string -intersection_of: UBERON:0000920 ! egg chorion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001122 ! -property_value: IAO:0000589 "germ layer (teleost)" xsd:string -intersection_of: UBERON:0000923 ! germ layer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000016 ! -property_value: IAO:0000589 "ectoderm (teleost)" xsd:string -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000017 ! -property_value: IAO:0000589 "endoderm (teleost)" xsd:string -intersection_of: UBERON:0000925 ! endoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000041 ! -property_value: IAO:0000589 "mesoderm (teleost)" xsd:string -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001290 ! -property_value: IAO:0000589 "stomodeum (teleost)" xsd:string -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000066 ! -property_value: IAO:0000589 "proctodeum (teleost)" xsd:string -intersection_of: UBERON:0000931 ! proctodeum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000172 ! -property_value: IAO:0000589 "chordate pharyngeal muscle (teleost)" xsd:string -intersection_of: UBERON:0000933 ! chordate pharyngeal muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001108 ! -property_value: IAO:0000589 "anterior commissure (teleost)" xsd:string -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000320 ! -property_value: IAO:0000589 "posterior commissure (teleost)" xsd:string -intersection_of: UBERON:0000936 ! posterior commissure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000435 ! -property_value: IAO:0000589 "cranial nerve II (teleost)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002121 ! -property_value: IAO:0000589 "stomach (teleost)" xsd:string -intersection_of: UBERON:0000945 ! stomach -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005065 ! -property_value: IAO:0000589 "cardiac valve (teleost)" xsd:string -intersection_of: UBERON:0000946 ! cardiac valve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000114 ! -property_value: IAO:0000589 "heart (teleost)" xsd:string -intersection_of: UBERON:0000948 ! heart -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001158 ! -property_value: IAO:0000589 "endocrine system (teleost)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000008 ! -property_value: IAO:0000589 "brain (teleost)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000556 ! -property_value: IAO:0000589 "optic chiasma (teleost)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000640 ! -property_value: IAO:0000589 "cornea (teleost)" xsd:string -intersection_of: UBERON:0000964 ! cornea -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000035 ! -property_value: IAO:0000589 "lens of camera-type eye (teleost)" xsd:string -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000152 ! -property_value: IAO:0000589 "retina (teleost)" xsd:string -intersection_of: UBERON:0000966 ! retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000367 ! -property_value: IAO:0000589 "skeletal joint (teleost)" xsd:string -intersection_of: UBERON:0000982 ! skeletal joint -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000632 ! -property_value: IAO:0000589 "reproductive system (teleost)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000413 ! -property_value: IAO:0000589 "gonad (teleost)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000403 ! -property_value: IAO:0000589 "ovary (teleost)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000560 ! -property_value: IAO:0000589 "oviduct (teleost)" xsd:string -intersection_of: UBERON:0000993 ! oviduct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000105 ! -property_value: IAO:0000589 "skin epidermis (teleost)" xsd:string -intersection_of: UBERON:0001003 ! skin epidermis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000272 ! -property_value: IAO:0000589 "respiratory system (teleost)" xsd:string -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000339 ! -property_value: IAO:0000589 "digestive system (teleost)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000163 ! -property_value: IAO:0000589 "renal system (teleost)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002134 ! -property_value: IAO:0000589 "adipose tissue (teleost)" xsd:string -intersection_of: UBERON:0001013 ! adipose tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000548 ! -property_value: IAO:0000589 "musculature (teleost)" xsd:string -intersection_of: UBERON:0001015 ! musculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000396 ! -property_value: IAO:0000589 "nervous system (teleost)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000012 ! -property_value: IAO:0000589 "central nervous system (teleost)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007009 ! -property_value: IAO:0000589 "nerve (teleost)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000282 ! -property_value: IAO:0000589 "sensory system (teleost)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001101 ! -property_value: IAO:0000589 "gustatory system (teleost)" xsd:string -intersection_of: UBERON:0001033 ! gustatory system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000056 ! -property_value: IAO:0000589 "chordate pharynx (teleost)" xsd:string -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000204 ! -property_value: IAO:0000589 "esophagus (teleost)" xsd:string -intersection_of: UBERON:0001043 ! esophagus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001135 ! -property_value: IAO:0000589 "neural tube (teleost)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0100000 ! -property_value: IAO:0000589 "anatomical entity (teleost)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002220 ! -property_value: IAO:0000589 "pericardial cavity (teleost)" xsd:string -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000126 ! -property_value: IAO:0000589 "bony vertebral centrum (teleost)" xsd:string -intersection_of: UBERON:0001075 ! bony vertebral centrum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001336 ! -property_value: IAO:0000589 "neural spine (teleost)" xsd:string -intersection_of: UBERON:0001076 ! neural spine -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001325 ! -property_value: IAO:0000589 "prezygapophysis (teleost)" xsd:string -intersection_of: UBERON:0001079 ! prezygapophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000681 ! -property_value: IAO:0000589 "postzygapophysis (teleost)" xsd:string -intersection_of: UBERON:0001080 ! postzygapophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002247 ! -property_value: IAO:0000589 "endocardium of ventricle (teleost)" xsd:string -intersection_of: UBERON:0001081 ! endocardium of ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005058 ! -property_value: IAO:0000589 "epicardium of ventricle (teleost)" xsd:string -intersection_of: UBERON:0001082 ! epicardium of ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005061 ! -property_value: IAO:0000589 "myocardium of ventricle (teleost)" xsd:string -intersection_of: UBERON:0001083 ! myocardium of ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005154 ! -property_value: IAO:0000589 "synovial fluid (teleost)" xsd:string -intersection_of: UBERON:0001090 ! synovial fluid -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001625 ! -property_value: IAO:0000589 "calcareous tooth (teleost)" xsd:string -intersection_of: UBERON:0001091 ! calcareous tooth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001167 ! -property_value: IAO:0000589 "vertebral bone 1 (teleost)" xsd:string -intersection_of: UBERON:0001092 ! vertebral bone 1 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001168 ! -property_value: IAO:0000589 "vertebral bone 2 (teleost)" xsd:string -intersection_of: UBERON:0001093 ! vertebral bone 2 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000326 ! -property_value: IAO:0000589 "caudal vertebra (teleost)" xsd:string -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005173 ! -property_value: IAO:0000589 "right lobe of liver (teleost)" xsd:string -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005172 ! -property_value: IAO:0000589 "left lobe of liver (teleost)" xsd:string -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001559 ! -property_value: IAO:0000589 "vertebral column (teleost)" xsd:string -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005280 ! -property_value: IAO:0000589 "cardiac muscle tissue (teleost)" xsd:string -intersection_of: UBERON:0001133 ! cardiac muscle tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005274 ! -property_value: IAO:0000589 "smooth muscle tissue (teleost)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000670 ! -property_value: IAO:0000589 "hepatic vein (teleost)" xsd:string -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005166 ! -property_value: IAO:0000589 "cystic duct (teleost)" xsd:string -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000706 ! -property_value: IAO:0000589 "colon (teleost)" xsd:string -intersection_of: UBERON:0001155 ! colon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005165 ! -property_value: IAO:0000589 "common bile duct (teleost)" xsd:string -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005132 ! -property_value: IAO:0000589 "visceral peritoneum (teleost)" xsd:string -intersection_of: UBERON:0001178 ! visceral peritoneum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000420 ! -property_value: IAO:0000589 "renal artery (teleost)" xsd:string -intersection_of: UBERON:0001184 ! renal artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005161 ! -property_value: IAO:0000589 "hepatic artery (teleost)" xsd:string -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005125 ! -property_value: IAO:0000589 "intestinal villus (teleost)" xsd:string -intersection_of: UBERON:0001213 ! intestinal villus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005281 ! -property_value: IAO:0000589 "renal corpuscle (teleost)" xsd:string -intersection_of: UBERON:0001229 ! renal corpuscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005254 ! -property_value: IAO:0000589 "glomerular capsule (teleost)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005310 ! -property_value: IAO:0000589 "glomerular capsule (teleost)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001287 ! -property_value: IAO:0000589 "nephron tubule (teleost)" xsd:string -intersection_of: UBERON:0001231 ! nephron tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005294 ! -property_value: IAO:0000589 "collecting duct of renal tubule (teleost)" xsd:string -intersection_of: UBERON:0001232 ! collecting duct of renal tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000140 ! -property_value: IAO:0000589 "pancreas (teleost)" xsd:string -intersection_of: UBERON:0001264 ! pancreas -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005124 ! -property_value: IAO:0000589 "intestinal epithelium (teleost)" xsd:string -intersection_of: UBERON:0001277 ! intestinal epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005091 ! -property_value: IAO:0000589 "hepatic sinusoid (teleost)" xsd:string -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005163 ! -property_value: IAO:0000589 "bile canaliculus (teleost)" xsd:string -intersection_of: UBERON:0001283 ! bile canaliculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002153 ! -property_value: IAO:0000589 "nephron (teleost)" xsd:string -intersection_of: UBERON:0001285 ! nephron -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005283 ! -property_value: IAO:0000589 "Bowman's space (teleost)" xsd:string -intersection_of: UBERON:0001286 ! Bowman's space -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005312 ! -property_value: IAO:0000589 "Bowman's space (teleost)" xsd:string -intersection_of: UBERON:0001286 ! Bowman's space -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005290 ! -property_value: IAO:0000589 "proximal convoluted tubule (teleost)" xsd:string -intersection_of: UBERON:0001287 ! proximal convoluted tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005291 ! -property_value: IAO:0000589 "proximal straight tubule (teleost)" xsd:string -intersection_of: UBERON:0001290 ! proximal straight tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001110 ! -property_value: IAO:0000589 "ovarian follicle (teleost)" xsd:string -intersection_of: UBERON:0001305 ! ovarian follicle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000333 ! -property_value: IAO:0000589 "mesovarium (teleost)" xsd:string -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002184 ! -property_value: IAO:0000589 "cerebrospinal fluid (teleost)" xsd:string -intersection_of: UBERON:0001359 ! cerebrospinal fluid -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005131 ! -property_value: IAO:0000589 "parietal peritoneum (teleost)" xsd:string -intersection_of: UBERON:0001366 ! parietal peritoneum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005108 ! -property_value: IAO:0000589 "facial lymphatic vessel (teleost)" xsd:string -intersection_of: UBERON:0001422 ! facial lymphatic vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005107 ! -property_value: IAO:0000589 "pectoral lymphatic vessel (teleost)" xsd:string -intersection_of: UBERON:0001425 ! pectoral lymphatic vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005109 ! -property_value: IAO:0000589 "jugular lymphatic vessel (teleost)" xsd:string -intersection_of: UBERON:0001426 ! jugular lymphatic vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000434 ! -property_value: IAO:0000589 "skeletal system (teleost)" xsd:string -intersection_of: UBERON:0001434 ! skeletal system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005105 ! -property_value: IAO:0000589 "lymphatic vessel (teleost)" xsd:string -intersection_of: UBERON:0001473 ! lymphatic vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001514 ! -property_value: IAO:0000589 "bone element (teleost)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005081 ! -property_value: IAO:0000589 "internal carotid artery (teleost)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005086 ! -property_value: IAO:0000589 "subclavian artery (teleost)" xsd:string -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005033 ! -property_value: IAO:0000589 "vertebral artery (teleost)" xsd:string -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000112 ! -property_value: IAO:0000589 "digestive tract (teleost)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002113 ! -property_value: IAO:0000589 "cheek (teleost)" xsd:string -intersection_of: UBERON:0001567 ! cheek -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000249 ! -property_value: IAO:0000589 "olfactory nerve (teleost)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000511 ! -property_value: IAO:0000589 "extra-ocular muscle (teleost)" xsd:string -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000301 ! -property_value: IAO:0000589 "medial rectus extraocular muscle (teleost)" xsd:string -intersection_of: UBERON:0001602 ! medial rectus extraocular muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000383 ! -property_value: IAO:0000589 "lateral rectus extra-ocular muscle (teleost)" xsd:string -intersection_of: UBERON:0001603 ! lateral rectus extra-ocular muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005001 ! -property_value: IAO:0000589 "posterior communicating artery (teleost)" xsd:string -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005145 ! -property_value: IAO:0000589 "muscle organ (teleost)" xsd:string -intersection_of: UBERON:0001630 ! muscle organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005110 ! -property_value: IAO:0000589 "thoracic duct (teleost)" xsd:string -intersection_of: UBERON:0001631 ! thoracic duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005002 ! -property_value: IAO:0000589 "basilar artery (teleost)" xsd:string -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001068 ! -property_value: IAO:0000589 "mesencephalic artery (teleost)" xsd:string -intersection_of: UBERON:0001634 ! mesencephalic artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000005 ! -property_value: IAO:0000589 "artery (teleost)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000082 ! -property_value: IAO:0000589 "vein (teleost)" xsd:string -intersection_of: UBERON:0001638 ! vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005090 ! -property_value: IAO:0000589 "hepatic portal vein (teleost)" xsd:string -intersection_of: UBERON:0001639 ! hepatic portal vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000405 ! -property_value: IAO:0000589 "oculomotor nerve (teleost)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000600 ! -property_value: IAO:0000589 "trochlear nerve (teleost)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000697 ! -property_value: IAO:0000589 "trigeminal nerve (teleost)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000310 ! -property_value: IAO:0000589 "abducens nerve (teleost)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000664 ! -property_value: IAO:0000589 "facial nerve (teleost)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000247 ! -property_value: IAO:0000589 "vestibulocochlear nerve (teleost)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000668 ! -property_value: IAO:0000589 "glossopharyngeal nerve (teleost)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001067 ! -property_value: IAO:0000589 "anterior cerebral vein (teleost)" xsd:string -intersection_of: UBERON:0001672 ! anterior cerebral vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000295 ! -property_value: IAO:0000589 "trigeminal ganglion (teleost)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000365 ! -property_value: IAO:0000589 "nasal bone (teleost)" xsd:string -intersection_of: UBERON:0001681 ! nasal bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000015 ! -property_value: IAO:0000589 "palatine bone (teleost)" xsd:string -intersection_of: UBERON:0001682 ! palatine bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000472 ! -property_value: IAO:0000589 "basioccipital bone (teleost)" xsd:string -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000661 ! -property_value: IAO:0000589 "exoccipital bone (teleost)" xsd:string -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001410 ! -property_value: IAO:0000589 "orbit of skull (teleost)" xsd:string -intersection_of: UBERON:0001697 ! orbit of skull -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000679 ! -property_value: IAO:0000589 "sensory root of facial nerve (teleost)" xsd:string -intersection_of: UBERON:0001699 ! sensory root of facial nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001291 ! -property_value: IAO:0000589 "geniculate ganglion (teleost)" xsd:string -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001301 ! -property_value: IAO:0000589 "glossopharyngeal ganglion (teleost)" xsd:string -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001580 ! -property_value: IAO:0000589 "neurocranium (teleost)" xsd:string -intersection_of: UBERON:0001703 ! neurocranium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000130 ! -property_value: IAO:0000589 "nasal cavity (teleost)" xsd:string -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001227 ! -property_value: IAO:0000589 "jaw skeleton (teleost)" xsd:string -intersection_of: UBERON:0001708 ! jaw skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000013 ! -property_value: IAO:0000589 "cranial ganglion (teleost)" xsd:string -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000553 ! -property_value: IAO:0000589 "oculomotor nuclear complex (teleost)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000312 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (teleost)" xsd:string -intersection_of: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002243 ! -property_value: IAO:0000589 "cochlear nucleus (teleost)" xsd:string -intersection_of: UBERON:0001720 ! cochlear nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005333 ! -property_value: IAO:0000589 "tongue (teleost)" xsd:string -intersection_of: UBERON:0001723 ! tongue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001074 ! -property_value: IAO:0000589 "taste bud (teleost)" xsd:string -intersection_of: UBERON:0001727 ! taste bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005143 ! -property_value: IAO:0000589 "dentine (teleost)" xsd:string -intersection_of: UBERON:0001751 ! dentine -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005141 ! -property_value: IAO:0000589 "dental pulp (teleost)" xsd:string -intersection_of: UBERON:0001754 ! dental pulp -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000453 ! -property_value: IAO:0000589 "vagus nerve (teleost)" xsd:string -intersection_of: UBERON:0001759 ! vagus nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005140 ! -property_value: IAO:0000589 "odontogenic papilla (teleost)" xsd:string -intersection_of: UBERON:0001763 ! odontogenic papilla -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001238 ! -property_value: IAO:0000589 "iris (teleost)" xsd:string -intersection_of: UBERON:0001769 ! iris -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001283 ! -property_value: IAO:0000589 "pupil (teleost)" xsd:string -intersection_of: UBERON:0001771 ! pupil -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002187 ! -property_value: IAO:0000589 "corneal epithelium (teleost)" xsd:string -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000473 ! -property_value: IAO:0000589 "skeletal muscle of trunk (teleost)" xsd:string -intersection_of: UBERON:0001774 ! skeletal muscle of trunk -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005229 ! -property_value: IAO:0000589 "optic choroid (teleost)" xsd:string -intersection_of: UBERON:0001776 ! optic choroid -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002189 ! -property_value: IAO:0000589 "substantia propria of cornea (teleost)" xsd:string -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000144 ! -property_value: IAO:0000589 "pigmented layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000641 ! -property_value: IAO:0000589 "cranial nerve (teleost)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000143 ! -property_value: IAO:0000589 "photoreceptor layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001787 ! photoreceptor layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001331 ! -property_value: IAO:0000589 "outer limiting layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001788 ! outer limiting layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001464 ! -property_value: IAO:0000589 "outer nuclear layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001789 ! outer nuclear layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001330 ! -property_value: IAO:0000589 "outer plexiform layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001790 ! outer plexiform layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000119 ! -property_value: IAO:0000589 "inner nuclear layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001791 ! inner nuclear layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000024 ! -property_value: IAO:0000589 "ganglionic layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001792 ! ganglionic layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002212 ! -property_value: IAO:0000589 "nerve fiber layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001029 ! -property_value: IAO:0000589 "inner limiting layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001794 ! inner limiting layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001329 ! -property_value: IAO:0000589 "inner plexiform layer of retina (teleost)" xsd:string -intersection_of: UBERON:0001795 ! inner plexiform layer of retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001326 ! -property_value: IAO:0000589 "epithelium of lens (teleost)" xsd:string -intersection_of: UBERON:0001803 ! epithelium of lens -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001556 ! -property_value: IAO:0000589 "paravertebral ganglion (teleost)" xsd:string -intersection_of: UBERON:0001807 ! paravertebral ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007006 ! -property_value: IAO:0000589 "lip (teleost)" xsd:string -intersection_of: UBERON:0001833 ! lip -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001970 ! -property_value: IAO:0000589 "upper lip (teleost)" xsd:string -intersection_of: UBERON:0001834 ! upper lip -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002060 ! -property_value: IAO:0000589 "lower lip (teleost)" xsd:string -intersection_of: UBERON:0001835 ! lower lip -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000431 ! -property_value: IAO:0000589 "semicircular canal (teleost)" xsd:string -intersection_of: UBERON:0001840 ! semicircular canal -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000314 ! -property_value: IAO:0000589 "anterior semicircular canal (teleost)" xsd:string -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000262 ! -property_value: IAO:0000589 "posterior semicircular canal (teleost)" xsd:string -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000220 ! -property_value: IAO:0000589 "lateral semicircular canal (teleost)" xsd:string -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000374 ! -property_value: IAO:0000589 "cochlea (teleost)" xsd:string -intersection_of: UBERON:0001844 ! cochlea -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005413 ! -property_value: IAO:0000589 "perilymph (teleost)" xsd:string -intersection_of: UBERON:0001845 ! perilymph -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000217 ! -property_value: IAO:0000589 "internal ear (teleost)" xsd:string -intersection_of: UBERON:0001846 ! internal ear -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005414 ! -property_value: IAO:0000589 "endolymph (teleost)" xsd:string -intersection_of: UBERON:0001852 ! endolymph -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000700 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (teleost)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000428 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (teleost)" xsd:string -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002194 ! -property_value: IAO:0000589 "endolymphatic duct (teleost)" xsd:string -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001443 ! -property_value: IAO:0000589 "choroid plexus (teleost)" xsd:string -intersection_of: UBERON:0001886 ! choroid plexus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000109 ! -property_value: IAO:0000589 "forebrain (teleost)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000128 ! -property_value: IAO:0000589 "midbrain (teleost)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001064 ! -property_value: IAO:0000589 "rhombomere (teleost)" xsd:string -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000079 ! -property_value: IAO:0000589 "telencephalon (teleost)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000101 ! -property_value: IAO:0000589 "diencephalon (teleost)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000545 ! -property_value: IAO:0000589 "medulla oblongata (teleost)" xsd:string -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001215 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (teleost)" xsd:string -intersection_of: UBERON:0001897 ! dorsal plus ventral thalamus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000032 ! -property_value: IAO:0000589 "hypothalamus (teleost)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000509 ! -property_value: IAO:0000589 "epithalamus (teleost)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000458 ! -property_value: IAO:0000589 "ventral thalamus (teleost)" xsd:string -intersection_of: UBERON:0001900 ! ventral thalamus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005127 ! -property_value: IAO:0000589 "epithelium of small intestine (teleost)" xsd:string -intersection_of: UBERON:0001902 ! epithelium of small intestine -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000213 ! -property_value: IAO:0000589 "habenula (teleost)" xsd:string -intersection_of: UBERON:0001904 ! habenula -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000019 ! -property_value: IAO:0000589 "pineal body (teleost)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000252 ! -property_value: IAO:0000589 "optic tract (teleost)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000359 ! -property_value: IAO:0000589 "habenular commissure (teleost)" xsd:string -intersection_of: UBERON:0001909 ! habenular commissure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005111 ! -property_value: IAO:0000589 "medial forebrain bundle (teleost)" xsd:string -intersection_of: UBERON:0001910 ! medial forebrain bundle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000306 ! -property_value: IAO:0000589 "ventral lateral nucleus of thalamus (teleost)" xsd:string -intersection_of: UBERON:0001925 ! ventral lateral nucleus of thalamus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000470 ! -property_value: IAO:0000589 "preoptic area (teleost)" xsd:string -intersection_of: UBERON:0001928 ! preoptic area -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000227 ! -property_value: IAO:0000589 "lateral hypothalamic nucleus (teleost)" xsd:string -intersection_of: UBERON:0001937 ! lateral hypothalamic nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000160 ! -property_value: IAO:0000589 "midbrain tegmentum (teleost)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000418 ! -property_value: IAO:0000589 "pretectal region (teleost)" xsd:string -intersection_of: UBERON:0001944 ! pretectal region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000445 ! -property_value: IAO:0000589 "superior colliculus (teleost)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000552 ! -property_value: IAO:0000589 "red nucleus (teleost)" xsd:string -intersection_of: UBERON:0001947 ! red nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001499 ! -property_value: IAO:0000589 "epithelium of esophagus (teleost)" xsd:string -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005315 ! -property_value: IAO:0000589 "venule (teleost)" xsd:string -intersection_of: UBERON:0001979 ! venule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002138 ! -property_value: IAO:0000589 "arteriole (teleost)" xsd:string -intersection_of: UBERON:0001980 ! arteriole -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002137 ! -property_value: IAO:0000589 "blood vessel (teleost)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005250 ! -property_value: IAO:0000589 "capillary (teleost)" xsd:string -intersection_of: UBERON:0001982 ! capillary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002186 ! -property_value: IAO:0000589 "corneal endothelium (teleost)" xsd:string -intersection_of: UBERON:0001985 ! corneal endothelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001572 ! -property_value: IAO:0000589 "superior cervical ganglion (teleost)" xsd:string -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000554 ! -property_value: IAO:0000589 "olfactory epithelium (teleost)" xsd:string -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001155 ! -property_value: IAO:0000589 "enteric nervous system (teleost)" xsd:string -intersection_of: UBERON:0002005 ! enteric nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002197 ! -property_value: IAO:0000589 "gray matter (teleost)" xsd:string -intersection_of: UBERON:0002020 ! gray matter -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001180 ! -property_value: IAO:0000589 "stratum basale of epidermis (teleost)" xsd:string -intersection_of: UBERON:0002025 ! stratum basale of epidermis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000029 ! -property_value: IAO:0000589 "hindbrain (teleost)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000441 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (teleost)" xsd:string -intersection_of: UBERON:0002034 ! suprachiasmatic nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000100 ! -property_value: IAO:0000589 "cerebellum (teleost)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005258 ! -property_value: IAO:0000589 "lymphatic vessel endothelium (teleost)" xsd:string -intersection_of: UBERON:0002042 ! lymphatic vessel endothelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000366 ! -property_value: IAO:0000589 "dorsal raphe nucleus (teleost)" xsd:string -intersection_of: UBERON:0002043 ! dorsal raphe nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005249 ! -property_value: IAO:0000589 "vasculature (teleost)" xsd:string -intersection_of: UBERON:0002049 ! vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001105 ! -property_value: IAO:0000589 "embryonic structure (teleost)" xsd:string -intersection_of: UBERON:0002050 ! embryonic structure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001317 ! -property_value: IAO:0000589 "endocardial cushion (teleost)" xsd:string -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000154 ! -property_value: IAO:0000589 "sinus venosus (teleost)" xsd:string -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000186 ! -property_value: IAO:0000589 "common cardinal vein (teleost)" xsd:string -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000477 ! -property_value: IAO:0000589 "posterior cardinal vein (teleost)" xsd:string -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001119 ! -property_value: IAO:0000589 "dermis (teleost)" xsd:string -intersection_of: UBERON:0002067 ! dermis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001136 ! -property_value: IAO:0000589 "hypodermis (teleost)" xsd:string -intersection_of: UBERON:0002072 ! hypodermis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000471 ! -property_value: IAO:0000589 "cardiac atrium (teleost)" xsd:string -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000009 ! -property_value: IAO:0000589 "cardiac ventricle (teleost)" xsd:string -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000680 ! -property_value: IAO:0000589 "sinoatrial valve (teleost)" xsd:string -intersection_of: UBERON:0002086 ! sinoatrial valve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001315 ! -property_value: IAO:0000589 "atrioventricular canal (teleost)" xsd:string -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000317 ! -property_value: IAO:0000589 "postcranial axial skeleton (teleost)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001115 ! -property_value: IAO:0000589 "trunk (teleost)" xsd:string -intersection_of: UBERON:0002100 ! trunk -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001127 ! -property_value: IAO:0000589 "visual system (teleost)" xsd:string -intersection_of: UBERON:0002104 ! visual system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001138 ! -property_value: IAO:0000589 "vestibulo-auditory system (teleost)" xsd:string -intersection_of: UBERON:0002105 ! vestibulo-auditory system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000436 ! -property_value: IAO:0000589 "spleen (teleost)" xsd:string -intersection_of: UBERON:0002106 ! spleen -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000123 ! -property_value: IAO:0000589 "liver (teleost)" xsd:string -intersection_of: UBERON:0002107 ! liver -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001323 ! -property_value: IAO:0000589 "small intestine (teleost)" xsd:string -intersection_of: UBERON:0002108 ! small intestine -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000208 ! -property_value: IAO:0000589 "gallbladder (teleost)" xsd:string -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000151 ! -property_value: IAO:0000589 "pronephros (teleost)" xsd:string -intersection_of: UBERON:0002120 ! pronephros -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000215 ! -property_value: IAO:0000589 "inferior olivary complex (teleost)" xsd:string -intersection_of: UBERON:0002127 ! inferior olivary complex -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005064 ! -property_value: IAO:0000589 "atrioventricular valve (teleost)" xsd:string -intersection_of: UBERON:0002133 ! atrioventricular valve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000353 ! -property_value: IAO:0000589 "habenulo-interpeduncular tract (teleost)" xsd:string -intersection_of: UBERON:0002138 ! habenulo-interpeduncular tract -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000683 ! -property_value: IAO:0000589 "subcommissural organ (teleost)" xsd:string -intersection_of: UBERON:0002139 ! subcommissural organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000244 ! -property_value: IAO:0000589 "parvocellular oculomotor nucleus (teleost)" xsd:string -intersection_of: UBERON:0002141 ! parvocellular oculomotor nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000346 ! -property_value: IAO:0000589 "dorsal tegmental nucleus (teleost)" xsd:string -intersection_of: UBERON:0002143 ! dorsal tegmental nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000903 ! -property_value: IAO:0000589 "interpeduncular nucleus (teleost)" xsd:string -intersection_of: UBERON:0002145 ! interpeduncular nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000539 ! -property_value: IAO:0000589 "locus ceruleus (teleost)" xsd:string -intersection_of: UBERON:0002148 ! locus ceruleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000535 ! -property_value: IAO:0000589 "lateral reticular nucleus (teleost)" xsd:string -intersection_of: UBERON:0002154 ! lateral reticular nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005146 ! -property_value: IAO:0000589 "area postrema (teleost)" xsd:string -intersection_of: UBERON:0002162 ! area postrema -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000446 ! -property_value: IAO:0000589 "tectobulbar tract (teleost)" xsd:string -intersection_of: UBERON:0002164 ! tectobulbar tract -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001320 ! -property_value: IAO:0000589 "endocardium (teleost)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002169 ! -property_value: IAO:0000589 "endocardium of atrium (teleost)" xsd:string -intersection_of: UBERON:0002166 ! endocardium of atrium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000533 ! -property_value: IAO:0000589 "lateral funiculus of spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002179 ! lateral funiculus of spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000605 ! -property_value: IAO:0000589 "ventral funiculus of spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002180 ! ventral funiculus of spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001075 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (teleost)" xsd:string -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001282 ! -property_value: IAO:0000589 "adenohypophysis (teleost)" xsd:string -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001271 ! -property_value: IAO:0000589 "neurohypophysis (teleost)" xsd:string -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000368 ! -property_value: IAO:0000589 "integument (teleost)" xsd:string -intersection_of: UBERON:0002199 ! integument -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001267 ! -property_value: IAO:0000589 "vasculature of head (teleost)" xsd:string -intersection_of: UBERON:0002200 ! vasculature of head -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005024 ! -property_value: IAO:0000589 "vasculature of trunk (teleost)" xsd:string -intersection_of: UBERON:0002201 ! vasculature of trunk -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007057 ! -property_value: IAO:0000589 "vasculature of eye (teleost)" xsd:string -intersection_of: UBERON:0002203 ! vasculature of eye -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000334 ! -property_value: IAO:0000589 "mammillary body (teleost)" xsd:string -intersection_of: UBERON:0002206 ! mammillary body -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005156 ! -property_value: IAO:0000589 "fibrous joint (teleost)" xsd:string -intersection_of: UBERON:0002209 ! fibrous joint -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007000 ! -property_value: IAO:0000589 "macula of saccule of membranous labyrinth (teleost)" xsd:string -intersection_of: UBERON:0002212 ! macula of saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005155 ! -property_value: IAO:0000589 "cartilaginous joint (teleost)" xsd:string -intersection_of: UBERON:0002213 ! cartilaginous joint -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000030 ! -property_value: IAO:0000589 "macula of utricle of membranous labyrinth (teleost)" xsd:string -intersection_of: UBERON:0002214 ! macula of utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005153 ! -property_value: IAO:0000589 "synovial joint (teleost)" xsd:string -intersection_of: UBERON:0002217 ! synovial joint -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001738 ! -property_value: IAO:0000589 "fontanelle (teleost)" xsd:string -intersection_of: UBERON:0002221 ! fontanelle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001643 ! -property_value: IAO:0000589 "perichondrium (teleost)" xsd:string -intersection_of: UBERON:0002222 ! perichondrium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000538 ! -property_value: IAO:0000589 "rib (teleost)" xsd:string -intersection_of: UBERON:0002228 ! rib -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000075 ! -property_value: IAO:0000589 "spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001424 ! -property_value: IAO:0000589 "chondrocranium (teleost)" xsd:string -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000567 ! -property_value: IAO:0000589 "premaxilla (teleost)" xsd:string -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000649 ! -property_value: IAO:0000589 "dorsal horn of spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000702 ! -property_value: IAO:0000589 "ventral horn of spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000501 ! -property_value: IAO:0000589 "dorsal funiculus of spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002258 ! dorsal funiculus of spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000705 ! -property_value: IAO:0000589 "ventral root of spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002260 ! ventral root of spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000652 ! -property_value: IAO:0000589 "dorsal root of spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002261 ! dorsal root of spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000402 ! -property_value: IAO:0000589 "olfactory bulb (teleost)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005045 ! -property_value: IAO:0000589 "hyaloid artery (teleost)" xsd:string -intersection_of: UBERON:0002270 ! hyaloid artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001621 ! -property_value: IAO:0000589 "otolith (teleost)" xsd:string -intersection_of: UBERON:0002280 ! otolith -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000696 ! -property_value: IAO:0000589 "telencephalic ventricle (teleost)" xsd:string -intersection_of: UBERON:0002285 ! telencephalic ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000161 ! -property_value: IAO:0000589 "third ventricle (teleost)" xsd:string -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000049 ! -property_value: IAO:0000589 "optic recess of third ventricle (teleost)" xsd:string -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001444 ! -property_value: IAO:0000589 "choroid plexus of third ventricle (teleost)" xsd:string -intersection_of: UBERON:0002288 ! choroid plexus of third ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000159 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (teleost)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001446 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (teleost)" xsd:string -intersection_of: UBERON:0002290 ! choroid plexus of fourth ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000938 ! -property_value: IAO:0000589 "central canal of spinal cord (teleost)" xsd:string -intersection_of: UBERON:0002291 ! central canal of spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005130 ! -property_value: IAO:0000589 "dorsal mesentery (teleost)" xsd:string -intersection_of: UBERON:0002296 ! dorsal mesentery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002156 ! -property_value: IAO:0000589 "brainstem (teleost)" xsd:string -intersection_of: UBERON:0002298 ! brainstem -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001374 ! -property_value: IAO:0000589 "myocardium of atrium (teleost)" xsd:string -intersection_of: UBERON:0002302 ! myocardium of atrium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001447 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (teleost)" xsd:string -intersection_of: UBERON:0002307 ! choroid plexus of lateral ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000543 ! -property_value: IAO:0000589 "medial longitudinal fasciculus (teleost)" xsd:string -intersection_of: UBERON:0002309 ! medial longitudinal fasciculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001353 ! -property_value: IAO:0000589 "midbrain tectum (teleost)" xsd:string -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000145 ! -property_value: IAO:0000589 "white matter (teleost)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002142 ! -property_value: IAO:0000589 "white matter (teleost)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002143 ! -property_value: IAO:0000589 "white matter (teleost)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002183 ! -property_value: IAO:0000589 "white matter of cerebellum (teleost)" xsd:string -intersection_of: UBERON:0002317 ! white matter of cerebellum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000260 ! -property_value: IAO:0000589 "periventricular nucleus (teleost)" xsd:string -intersection_of: UBERON:0002322 ! periventricular nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001438 ! -property_value: IAO:0000589 "coelemic cavity lumen (teleost)" xsd:string -intersection_of: UBERON:0002323 ! coelemic cavity lumen -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000135 ! -property_value: IAO:0000589 "notochord (teleost)" xsd:string -intersection_of: UBERON:0002328 ! notochord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000155 ! -property_value: IAO:0000589 "somite (teleost)" xsd:string -intersection_of: UBERON:0002329 ! somite -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000045 ! -property_value: IAO:0000589 "neural crest (teleost)" xsd:string -intersection_of: UBERON:0002342 ! neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001327 ! -property_value: IAO:0000589 "abdomen musculature (teleost)" xsd:string -intersection_of: UBERON:0002343 ! abdomen musculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001120 ! -property_value: IAO:0000589 "neurectoderm (teleost)" xsd:string -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005057 ! -property_value: IAO:0000589 "epicardium (teleost)" xsd:string -intersection_of: UBERON:0002348 ! epicardium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001319 ! -property_value: IAO:0000589 "myocardium (teleost)" xsd:string -intersection_of: UBERON:0002349 ! myocardium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005063 ! -property_value: IAO:0000589 "conducting system of heart (teleost)" xsd:string -intersection_of: UBERON:0002350 ! conducting system of heart -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005069 ! -property_value: IAO:0000589 "sinoatrial node (teleost)" xsd:string -intersection_of: UBERON:0002351 ! sinoatrial node -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005070 ! -property_value: IAO:0000589 "atrioventricular node (teleost)" xsd:string -intersection_of: UBERON:0002352 ! atrioventricular node -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005120 ! -property_value: IAO:0000589 "peritoneum (teleost)" xsd:string -intersection_of: UBERON:0002358 ! peritoneum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001355 ! -property_value: IAO:0000589 "meninx (teleost)" xsd:string -intersection_of: UBERON:0002360 ! meninx -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001078 ! -property_value: IAO:0000589 "thymus (teleost)" xsd:string -intersection_of: UBERON:0002370 ! thymus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001641 ! -property_value: IAO:0000589 "connective tissue (teleost)" xsd:string -intersection_of: UBERON:0002384 ! connective tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005023 ! -property_value: IAO:0000589 "hematopoietic system (teleost)" xsd:string -intersection_of: UBERON:0002390 ! hematopoietic system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001100 ! -property_value: IAO:0000589 "bile duct (teleost)" xsd:string -intersection_of: UBERON:0002394 ! bile duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000308 ! -property_value: IAO:0000589 "vomer (teleost)" xsd:string -intersection_of: UBERON:0002396 ! vomer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000270 ! -property_value: IAO:0000589 "maxilla (teleost)" xsd:string -intersection_of: UBERON:0002397 ! maxilla -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001159 ! -property_value: IAO:0000589 "immune system (teleost)" xsd:string -intersection_of: UBERON:0002405 ! immune system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000054 ! -property_value: IAO:0000589 "pericardial sac (teleost)" xsd:string -intersection_of: UBERON:0002406 ! pericardial sac -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000054 ! -property_value: IAO:0000589 "pericardium (teleost)" xsd:string -intersection_of: UBERON:0002407 ! pericardium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001574 ! -property_value: IAO:0000589 "autonomic nervous system (teleost)" xsd:string -intersection_of: UBERON:0002410 ! autonomic nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001189 ! -property_value: IAO:0000589 "vertebra (teleost)" xsd:string -intersection_of: UBERON:0002412 ! vertebra -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001501 ! -property_value: IAO:0000589 "cartilage tissue (teleost)" xsd:string -intersection_of: UBERON:0002418 ! cartilage tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000110 ! -property_value: IAO:0000589 "fourth ventricle (teleost)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000036 ! -property_value: IAO:0000589 "hepatobiliary system (teleost)" xsd:string -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000816 ! -property_value: IAO:0000589 "oral epithelium (teleost)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001197 ! -property_value: IAO:0000589 "pars intermedia of adenohypophysis (teleost)" xsd:string -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001196 ! -property_value: IAO:0000589 "pars tuberalis of adenohypophysis (teleost)" xsd:string -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001199 ! -property_value: IAO:0000589 "pituitary stalk (teleost)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000275 ! -property_value: IAO:0000589 "ventral tegmental nucleus (teleost)" xsd:string -intersection_of: UBERON:0002438 ! ventral tegmental nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001061 ! -property_value: IAO:0000589 "intersomitic artery (teleost)" xsd:string -intersection_of: UBERON:0002457 ! intersomitic artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000682 ! -property_value: IAO:0000589 "spinal artery (teleost)" xsd:string -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000385 ! -property_value: IAO:0000589 "lymphoid system (teleost)" xsd:string -intersection_of: UBERON:0002465 ! lymphoid system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000253 ! -property_value: IAO:0000589 "orbitosphenoid (teleost)" xsd:string -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001591 ! -property_value: IAO:0000589 "endochondral bone (teleost)" xsd:string -intersection_of: UBERON:0002513 ! endochondral bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001644 ! -property_value: IAO:0000589 "intramembranous bone (teleost)" xsd:string -intersection_of: UBERON:0002514 ! intramembranous bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000559 ! -property_value: IAO:0000589 "otolith organ (teleost)" xsd:string -intersection_of: UBERON:0002518 ! otolith organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001383 ! -property_value: IAO:0000589 "paired fin bud (teleost)" xsd:string -intersection_of: UBERON:0002531 ! paired fin bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000077 ! -property_value: IAO:0000589 "post-anal tail bud (teleost)" xsd:string -intersection_of: UBERON:0002533 ! post-anal tail bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002278 ! -property_value: IAO:0000589 "paired fin (teleost)" xsd:string -intersection_of: UBERON:0002534 ! paired fin -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000026 ! -property_value: IAO:0000589 "hatching gland (teleost)" xsd:string -intersection_of: UBERON:0002538 ! hatching gland -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001306 ! -property_value: IAO:0000589 "pharyngeal arch (teleost)" xsd:string -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000034 ! -property_value: IAO:0000589 "lateral line system (teleost)" xsd:string -intersection_of: UBERON:0002540 ! lateral line system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000111 ! -property_value: IAO:0000589 "germ ring (teleost)" xsd:string -intersection_of: UBERON:0002541 ! germ ring -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002048 ! -property_value: IAO:0000589 "larva (teleost)" xsd:string -intersection_of: UBERON:0002548 ! larva -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0006000 ! -property_value: IAO:0000589 "intermediate hypothalamic region (teleost)" xsd:string -intersection_of: UBERON:0002555 ! intermediate hypothalamic region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000421 ! -property_value: IAO:0000589 "medullary reticular formation (teleost)" xsd:string -intersection_of: UBERON:0002559 ! medullary reticular formation -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000684 ! -property_value: IAO:0000589 "commissure of superior colliculus (teleost)" xsd:string -intersection_of: UBERON:0002583 ! commissure of superior colliculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001365 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (teleost)" xsd:string -intersection_of: UBERON:0002633 ! motor nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000713 ! -property_value: IAO:0000589 "abducens nucleus (teleost)" xsd:string -intersection_of: UBERON:0002682 ! abducens nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000450 ! -property_value: IAO:0000589 "trochlear nucleus (teleost)" xsd:string -intersection_of: UBERON:0002722 ! trochlear nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000709 ! -property_value: IAO:0000589 "vestibulospinal tract (teleost)" xsd:string -intersection_of: UBERON:0002768 ! vestibulospinal tract -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000427 ! -property_value: IAO:0000589 "anterior nuclear group (teleost)" xsd:string -intersection_of: UBERON:0002788 ! anterior nuclear group -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000650 ! -property_value: IAO:0000589 "motor root of trigeminal nerve (teleost)" xsd:string -intersection_of: UBERON:0002796 ! motor root of trigeminal nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000588 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (teleost)" xsd:string -intersection_of: UBERON:0002827 ! vestibulocochlear ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001356 ! -property_value: IAO:0000589 "terminal nerve (teleost)" xsd:string -intersection_of: UBERON:0002924 ! terminal nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000206 ! -property_value: IAO:0000589 "facial motor nucleus (teleost)" xsd:string -intersection_of: UBERON:0003011 ! facial motor nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000325 ! -property_value: IAO:0000589 "posterior nucleus of thalamus (teleost)" xsd:string -intersection_of: UBERON:0003030 ! posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000518 ! -property_value: IAO:0000589 "central gray substance of midbrain (teleost)" xsd:string -intersection_of: UBERON:0003040 ! central gray substance of midbrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000048 ! -property_value: IAO:0000589 "olfactory placode (teleost)" xsd:string -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000051 ! -property_value: IAO:0000589 "ear vesicle (teleost)" xsd:string -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000042 ! -property_value: IAO:0000589 "midbrain-hindbrain boundary (teleost)" xsd:string -intersection_of: UBERON:0003052 ! midbrain-hindbrain boundary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001083 ! -property_value: IAO:0000589 "ventricular zone (teleost)" xsd:string -intersection_of: UBERON:0003053 ! ventricular zone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001436 ! -property_value: IAO:0000589 "roof plate (teleost)" xsd:string -intersection_of: UBERON:0003054 ! roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007058 ! -property_value: IAO:0000589 "roof plate (teleost)" xsd:string -intersection_of: UBERON:0003054 ! roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001185 ! -property_value: IAO:0000589 "periderm (teleost)" xsd:string -intersection_of: UBERON:0003055 ! periderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007016 ! -property_value: IAO:0000589 "pre-chordal neural plate (teleost)" xsd:string -intersection_of: UBERON:0003056 ! pre-chordal neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007017 ! -property_value: IAO:0000589 "chordal neural plate (teleost)" xsd:string -intersection_of: UBERON:0003057 ! chordal neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000031 ! -property_value: IAO:0000589 "hypochord (teleost)" xsd:string -intersection_of: UBERON:0003058 ! hypochord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000279 ! -property_value: IAO:0000589 "presomitic mesoderm (teleost)" xsd:string -intersection_of: UBERON:0003059 ! presomitic mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000150 ! -property_value: IAO:0000589 "pronephric duct (teleost)" xsd:string -intersection_of: UBERON:0003060 ! pronephric duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000094 ! -property_value: IAO:0000589 "blood island (teleost)" xsd:string -intersection_of: UBERON:0003061 ! blood island -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000071 ! -property_value: IAO:0000589 "primitive knot (teleost)" xsd:string -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000060 ! -property_value: IAO:0000589 "prechordal plate (teleost)" xsd:string -intersection_of: UBERON:0003063 ! prechordal plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001206 ! -property_value: IAO:0000589 "intermediate mesoderm (teleost)" xsd:string -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001289 ! -property_value: IAO:0000589 "ciliary marginal zone (teleost)" xsd:string -intersection_of: UBERON:0003065 ! ciliary marginal zone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001596 ! -property_value: IAO:0000589 "pharyngeal arch 2 (teleost)" xsd:string -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001310 ! -property_value: IAO:0000589 "dorsolateral placode (teleost)" xsd:string -intersection_of: UBERON:0003067 ! dorsolateral placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001204 ! -property_value: IAO:0000589 "axial mesoderm (teleost)" xsd:string -intersection_of: UBERON:0003068 ! axial mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000138 ! -property_value: IAO:0000589 "otic placode (teleost)" xsd:string -intersection_of: UBERON:0003069 ! otic placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000162 ! -property_value: IAO:0000589 "trigeminal placode complex (teleost)" xsd:string -intersection_of: UBERON:0003070 ! trigeminal placode complex -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000570 ! -property_value: IAO:0000589 "eye primordium (teleost)" xsd:string -intersection_of: UBERON:0003071 ! eye primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001202 ! -property_value: IAO:0000589 "optic cup (teleost)" xsd:string -intersection_of: UBERON:0003072 ! optic cup -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000122 ! -property_value: IAO:0000589 "lens placode (teleost)" xsd:string -intersection_of: UBERON:0003073 ! lens placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000546 ! -property_value: IAO:0000589 "mesonephric duct (teleost)" xsd:string -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000132 ! -property_value: IAO:0000589 "neural plate (teleost)" xsd:string -intersection_of: UBERON:0003075 ! neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007037 ! -property_value: IAO:0000589 "posterior neural tube (teleost)" xsd:string -intersection_of: UBERON:0003076 ! posterior neural tube -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000255 ! -property_value: IAO:0000589 "paraxial mesoderm (teleost)" xsd:string -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001294 ! -property_value: IAO:0000589 "epibranchial placode (teleost)" xsd:string -intersection_of: UBERON:0003078 ! epibranchial placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000022 ! -property_value: IAO:0000589 "floor plate (teleost)" xsd:string -intersection_of: UBERON:0003079 ! floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007038 ! -property_value: IAO:0000589 "anterior neural tube (teleost)" xsd:string -intersection_of: UBERON:0003080 ! anterior neural tube -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000121 ! -property_value: IAO:0000589 "lateral plate mesoderm (teleost)" xsd:string -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001056 ! -property_value: IAO:0000589 "myotome (teleost)" xsd:string -intersection_of: UBERON:0003082 ! myotome -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001024 ! -property_value: IAO:0000589 "trunk neural crest (teleost)" xsd:string -intersection_of: UBERON:0003083 ! trunk neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000028 ! -property_value: IAO:0000589 "heart primordium (teleost)" xsd:string -intersection_of: UBERON:0003084 ! heart primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000604 ! -property_value: IAO:0000589 "ventral aorta (teleost)" xsd:string -intersection_of: UBERON:0003085 ! ventral aorta -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000011 ! -property_value: IAO:0000589 "caudal artery (teleost)" xsd:string -intersection_of: UBERON:0003086 ! caudal artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000423 ! -property_value: IAO:0000589 "anterior cardinal vein (teleost)" xsd:string -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000180 ! -property_value: IAO:0000589 "caudal vein (teleost)" xsd:string -intersection_of: UBERON:0003088 ! caudal vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001080 ! -property_value: IAO:0000589 "sclerotome (teleost)" xsd:string -intersection_of: UBERON:0003089 ! sclerotome -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000443 ! -property_value: IAO:0000589 "supraorbital lateral line (teleost)" xsd:string -intersection_of: UBERON:0003090 ! supraorbital lateral line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001081 ! -property_value: IAO:0000589 "thyroid primordium (teleost)" xsd:string -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001448 ! -property_value: IAO:0000589 "ultimobranchial body (teleost)" xsd:string -intersection_of: UBERON:0003092 ! ultimobranchial body -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000400 ! -property_value: IAO:0000589 "occipital lateral line (teleost)" xsd:string -intersection_of: UBERON:0003093 ! occipital lateral line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000524 ! -property_value: IAO:0000589 "infraorbital lateral line (teleost)" xsd:string -intersection_of: UBERON:0003094 ! infraorbital lateral line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005112 ! -property_value: IAO:0000589 "dorsal lateral line (teleost)" xsd:string -intersection_of: UBERON:0003095 ! dorsal lateral line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000344 ! -property_value: IAO:0000589 "middle lateral line (teleost)" xsd:string -intersection_of: UBERON:0003096 ! middle lateral line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001173 ! -property_value: IAO:0000589 "dorsal fin (teleost)" xsd:string -intersection_of: UBERON:0003097 ! dorsal fin -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000137 ! -property_value: IAO:0000589 "optic stalk (teleost)" xsd:string -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001194 ! -property_value: IAO:0000589 "cranial neural crest (teleost)" xsd:string -intersection_of: UBERON:0003099 ! cranial neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000303 ! -property_value: IAO:0000589 "female organism (teleost)" xsd:string -intersection_of: UBERON:0003100 ! female organism -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000242 ! -property_value: IAO:0000589 "male organism (teleost)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000292 ! -property_value: IAO:0000589 "surface structure (teleost)" xsd:string -intersection_of: UBERON:0003102 ! surface structure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000496 ! -property_value: IAO:0000589 "compound organ (teleost)" xsd:string -intersection_of: UBERON:0003103 ! compound organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000393 ! -property_value: IAO:0000589 "mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0003104 ! mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000158 ! -property_value: IAO:0000589 "urostyle (teleost)" xsd:string -intersection_of: UBERON:0003106 ! urostyle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001205 ! -property_value: IAO:0000589 "Meckel's cartilage (teleost)" xsd:string -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000444 ! -property_value: IAO:0000589 "suspensorium (teleost)" xsd:string -intersection_of: UBERON:0003108 ! suspensorium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001362 ! -property_value: IAO:0000589 "parapophysis (teleost)" xsd:string -intersection_of: UBERON:0003109 ! parapophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000189 ! -property_value: IAO:0000589 "otic region (teleost)" xsd:string -intersection_of: UBERON:0003110 ! otic region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000290 ! -property_value: IAO:0000589 "sphenoid region (teleost)" xsd:string -intersection_of: UBERON:0003111 ! sphenoid region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000351 ! -property_value: IAO:0000589 "olfactory region (teleost)" xsd:string -intersection_of: UBERON:0003112 ! olfactory region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000863 ! -property_value: IAO:0000589 "dermatocranium (teleost)" xsd:string -intersection_of: UBERON:0003113 ! dermatocranium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001598 ! -property_value: IAO:0000589 "pharyngeal arch 3 (teleost)" xsd:string -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001599 ! -property_value: IAO:0000589 "pharyngeal arch 4 (teleost)" xsd:string -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001600 ! -property_value: IAO:0000589 "pharyngeal arch 5 (teleost)" xsd:string -intersection_of: UBERON:0003116 ! pharyngeal arch 5 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001601 ! -property_value: IAO:0000589 "pharyngeal arch 6 (teleost)" xsd:string -intersection_of: UBERON:0003117 ! pharyngeal arch 6 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005005 ! -property_value: IAO:0000589 "pharyngeal arch artery 1 (teleost)" xsd:string -intersection_of: UBERON:0003118 ! pharyngeal arch artery 1 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005006 ! -property_value: IAO:0000589 "pharyngeal arch artery 2 (teleost)" xsd:string -intersection_of: UBERON:0003119 ! pharyngeal arch artery 2 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005007 ! -property_value: IAO:0000589 "pharyngeal arch artery 3 (teleost)" xsd:string -intersection_of: UBERON:0003120 ! pharyngeal arch artery 3 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005008 ! -property_value: IAO:0000589 "pharyngeal arch artery 4 (teleost)" xsd:string -intersection_of: UBERON:0003121 ! pharyngeal arch artery 4 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005009 ! -property_value: IAO:0000589 "pharyngeal arch artery 5 (teleost)" xsd:string -intersection_of: UBERON:0003122 ! pharyngeal arch artery 5 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005016 ! -property_value: IAO:0000589 "pharyngeal arch artery 6 (teleost)" xsd:string -intersection_of: UBERON:0003123 ! pharyngeal arch artery 6 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001273 ! -property_value: IAO:0000589 "skeleton of lower jaw (teleost)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000355 ! -property_value: IAO:0000589 "roof plate of midbrain (teleost)" xsd:string -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001358 ! -property_value: IAO:0000589 "roof plate of diencephalon (teleost)" xsd:string -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001434 ! -property_value: IAO:0000589 "floor plate of neural tube (teleost)" xsd:string -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002196 ! -property_value: IAO:0000589 "floor plate of midbrain (teleost)" xsd:string -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000914 ! -property_value: IAO:0000589 "floor plate of telencephalon (teleost)" xsd:string -intersection_of: UBERON:0003308 ! floor plate of telencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000871 ! -property_value: IAO:0000589 "floor plate of diencephalon (teleost)" xsd:string -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001174 ! -property_value: IAO:0000589 "pharyngeal epithelium (teleost)" xsd:string -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001386 ! -property_value: IAO:0000589 "pelvic appendage bud mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0003412 ! pelvic appendage bud mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000789 ! -property_value: IAO:0000589 "pectoral appendage bud mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0003413 ! pectoral appendage bud mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005306 ! -property_value: IAO:0000589 "kidney blood vessel (teleost)" xsd:string -intersection_of: UBERON:0003517 ! kidney blood vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002045 ! -property_value: IAO:0000589 "foramen magnum (teleost)" xsd:string -intersection_of: UBERON:0003687 ! foramen magnum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005169 ! -property_value: IAO:0000589 "intrahepatic bile duct (teleost)" xsd:string -intersection_of: UBERON:0003704 ! intrahepatic bile duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005134 ! -property_value: IAO:0000589 "dental epithelium (teleost)" xsd:string -intersection_of: UBERON:0003843 ! dental epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000935 ! -property_value: IAO:0000589 "mesencephalic neural crest (teleost)" xsd:string -intersection_of: UBERON:0003849 ! mesencephalic neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000812 ! -property_value: IAO:0000589 "telencephalon neural crest (teleost)" xsd:string -intersection_of: UBERON:0003850 ! telencephalon neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000811 ! -property_value: IAO:0000589 "diencephalon neural crest (teleost)" xsd:string -intersection_of: UBERON:0003851 ! diencephalon neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007063 ! -property_value: IAO:0000589 "rhombencephalon neural crest (teleost)" xsd:string -intersection_of: UBERON:0003852 ! rhombencephalon neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007021 ! -property_value: IAO:0000589 "spinal cord neural plate (teleost)" xsd:string -intersection_of: UBERON:0003854 ! spinal cord neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005139 ! -property_value: IAO:0000589 "uncondensed odontogenic mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0003856 ! uncondensed odontogenic mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001066 ! -property_value: IAO:0000589 "neural arch (teleost)" xsd:string -intersection_of: UBERON:0003861 ! neural arch -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000124 ! -property_value: IAO:0000589 "liver primordium (teleost)" xsd:string -intersection_of: UBERON:0003894 ! liver primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001085 ! -property_value: IAO:0000589 "hypaxial myotome region (teleost)" xsd:string -intersection_of: UBERON:0003895 ! hypaxial myotome region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001954 ! -property_value: IAO:0000589 "axial muscle (teleost)" xsd:string -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001084 ! -property_value: IAO:0000589 "epaxial myotome region (teleost)" xsd:string -intersection_of: UBERON:0003900 ! epaxial myotome region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000671 ! -property_value: IAO:0000589 "horizontal septum (teleost)" xsd:string -intersection_of: UBERON:0003901 ! horizontal septum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000046 ! -property_value: IAO:0000589 "retinal neural layer (teleost)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001318 ! -property_value: IAO:0000589 "cardiac jelly (teleost)" xsd:string -intersection_of: UBERON:0003906 ! cardiac jelly -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005261 ! -property_value: IAO:0000589 "sinusoid (teleost)" xsd:string -intersection_of: UBERON:0003909 ! sinusoid -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000254 ! -property_value: IAO:0000589 "pancreas primordium (teleost)" xsd:string -intersection_of: UBERON:0003921 ! pancreas primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001390 ! -property_value: IAO:0000589 "pancreatic epithelial bud (teleost)" xsd:string -intersection_of: UBERON:0003922 ! pancreatic epithelial bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001370 ! -property_value: IAO:0000589 "dorsal pancreatic bud (teleost)" xsd:string -intersection_of: UBERON:0003923 ! dorsal pancreatic bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001369 ! -property_value: IAO:0000589 "ventral pancreatic bud (teleost)" xsd:string -intersection_of: UBERON:0003924 ! ventral pancreatic bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001465 ! -property_value: IAO:0000589 "photoreceptor inner segment layer (teleost)" xsd:string -intersection_of: UBERON:0003925 ! photoreceptor inner segment layer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001466 ! -property_value: IAO:0000589 "photoreceptor outer segment layer (teleost)" xsd:string -intersection_of: UBERON:0003926 ! photoreceptor outer segment layer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005162 ! -property_value: IAO:0000589 "digestive system duct (teleost)" xsd:string -intersection_of: UBERON:0003928 ! digestive system duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005123 ! -property_value: IAO:0000589 "digestive tract epithelium (teleost)" xsd:string -intersection_of: UBERON:0003929 ! digestive tract epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002170 ! -property_value: IAO:0000589 "atrioventricular canal endocardium (teleost)" xsd:string -intersection_of: UBERON:0003930 ! atrioventricular canal endocardium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000338 ! -property_value: IAO:0000589 "diencephalic white matter (teleost)" xsd:string -intersection_of: UBERON:0003931 ! diencephalic white matter -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001461 ! -property_value: IAO:0000589 "cartilage element of chondrocranium (teleost)" xsd:string -intersection_of: UBERON:0003932 ! cartilage element of chondrocranium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001458 ! -property_value: IAO:0000589 "cranial cartilage (teleost)" xsd:string -intersection_of: UBERON:0003933 ! cranial cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001000 ! -property_value: IAO:0000589 "mesenchyme pectoral fin (teleost)" xsd:string -intersection_of: UBERON:0003934 ! mesenchyme pectoral fin -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001449 ! -property_value: IAO:0000589 "mesenchyme pelvic fin (teleost)" xsd:string -intersection_of: UBERON:0003935 ! mesenchyme pelvic fin -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000059 ! -property_value: IAO:0000589 "postoptic commissure (teleost)" xsd:string -intersection_of: UBERON:0003936 ! postoptic commissure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001264 ! -property_value: IAO:0000589 "mature ovarian follicle (teleost)" xsd:string -intersection_of: UBERON:0003982 ! mature ovarian follicle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005164 ! -property_value: IAO:0000589 "biliary ductule (teleost)" xsd:string -intersection_of: UBERON:0004058 ! biliary ductule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001106 ! -property_value: IAO:0000589 "pharyngeal pouch (teleost)" xsd:string -intersection_of: UBERON:0004117 ! pharyngeal pouch -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005059 ! -property_value: IAO:0000589 "myocardium trabecular layer (teleost)" xsd:string -intersection_of: UBERON:0004124 ! myocardium trabecular layer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005060 ! -property_value: IAO:0000589 "trabecular layer of ventricle (teleost)" xsd:string -intersection_of: UBERON:0004126 ! trabecular layer of ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005062 ! -property_value: IAO:0000589 "compact layer of ventricle (teleost)" xsd:string -intersection_of: UBERON:0004127 ! compact layer of ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000050 ! -property_value: IAO:0000589 "optic vesicle (teleost)" xsd:string -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000433 ! -property_value: IAO:0000589 "trigeminal sensory nucleus (teleost)" xsd:string -intersection_of: UBERON:0004132 ! trigeminal sensory nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000360 ! -property_value: IAO:0000589 "heart tube (teleost)" xsd:string -intersection_of: UBERON:0004141 ! heart tube -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001375 ! -property_value: IAO:0000589 "ventriculo bulbo valve (teleost)" xsd:string -intersection_of: UBERON:0004149 ! ventriculo bulbo valve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000173 ! -property_value: IAO:0000589 "bulbus arteriosus (teleost)" xsd:string -intersection_of: UBERON:0004152 ! bulbus arteriosus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005284 ! -property_value: IAO:0000589 "glomerular capillary (teleost)" xsd:string -intersection_of: UBERON:0004212 ! glomerular capillary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005321 ! -property_value: IAO:0000589 "blood vessel smooth muscle (teleost)" xsd:string -intersection_of: UBERON:0004237 ! blood vessel smooth muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001513 ! -property_value: IAO:0000589 "dermomyotome (teleost)" xsd:string -intersection_of: UBERON:0004290 ! dermomyotome -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000115 ! -property_value: IAO:0000589 "heart rudiment (teleost)" xsd:string -intersection_of: UBERON:0004291 ! heart rudiment -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002146 ! -property_value: IAO:0000589 "apical ectodermal ridge (teleost)" xsd:string -intersection_of: UBERON:0004356 ! apical ectodermal ridge -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001595 ! -property_value: IAO:0000589 "pharyngeal arch 1 (teleost)" xsd:string -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005004 ! -property_value: IAO:0000589 "pharyngeal arch artery (teleost)" xsd:string -intersection_of: UBERON:0004363 ! pharyngeal arch artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002157 ! -property_value: IAO:0000589 "Descemet's membrane (teleost)" xsd:string -intersection_of: UBERON:0004367 ! Descemet's membrane -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002155 ! -property_value: IAO:0000589 "anterior limiting lamina of cornea (teleost)" xsd:string -intersection_of: UBERON:0004370 ! anterior limiting lamina of cornea -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001307 ! -property_value: IAO:0000589 "musculature of pharynx (teleost)" xsd:string -intersection_of: UBERON:0004467 ! musculature of pharynx -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001834 ! -property_value: IAO:0000589 "anatomical projection (teleost)" xsd:string -intersection_of: UBERON:0004529 ! anatomical projection -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000010 ! -property_value: IAO:0000589 "cardiovascular system (teleost)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005105 ! -property_value: IAO:0000589 "lymph vasculature (teleost)" xsd:string -intersection_of: UBERON:0004536 ! lymph vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001079 ! -property_value: IAO:0000589 "blood vasculature (teleost)" xsd:string -intersection_of: UBERON:0004537 ! blood vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005257 ! -property_value: IAO:0000589 "blood vessel endothelium (teleost)" xsd:string -intersection_of: UBERON:0004638 ! blood vessel endothelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002139 ! -property_value: IAO:0000589 "renal afferent arteriole (teleost)" xsd:string -intersection_of: UBERON:0004639 ! renal afferent arteriole -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002140 ! -property_value: IAO:0000589 "renal efferent arteriole (teleost)" xsd:string -intersection_of: UBERON:0004640 ! renal efferent arteriole -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000192 ! -property_value: IAO:0000589 "trigeminal nerve root (teleost)" xsd:string -intersection_of: UBERON:0004673 ! trigeminal nerve root -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001429 ! -property_value: IAO:0000589 "raphe nuclei (teleost)" xsd:string -intersection_of: UBERON:0004684 ! raphe nuclei -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000653 ! -property_value: IAO:0000589 "dorsal thalamus (teleost)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001743 ! -property_value: IAO:0000589 "bone fossa (teleost)" xsd:string -intersection_of: UBERON:0004704 ! bone fossa -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001328 ! -property_value: IAO:0000589 "neuromere (teleost)" xsd:string -intersection_of: UBERON:0004731 ! neuromere -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001557 ! -property_value: IAO:0000589 "pronephric glomerulus (teleost)" xsd:string -intersection_of: UBERON:0004739 ! pronephric glomerulus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000170 ! -property_value: IAO:0000589 "basibranchial bone (teleost)" xsd:string -intersection_of: UBERON:0004740 ! basibranchial bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000184 ! -property_value: IAO:0000589 "cleithrum (teleost)" xsd:string -intersection_of: UBERON:0004741 ! cleithrum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000191 ! -property_value: IAO:0000589 "dentary (teleost)" xsd:string -intersection_of: UBERON:0004742 ! dentary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000332 ! -property_value: IAO:0000589 "coracoid bone (teleost)" xsd:string -intersection_of: UBERON:0004743 ! coracoid bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000467 ! -property_value: IAO:0000589 "articular/anguloarticular (teleost)" xsd:string -intersection_of: UBERON:0004744 ! articular/anguloarticular -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000561 ! -property_value: IAO:0000589 "parasphenoid (teleost)" xsd:string -intersection_of: UBERON:0004745 ! parasphenoid -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000575 ! -property_value: IAO:0000589 "prootic bone (teleost)" xsd:string -intersection_of: UBERON:0004746 ! prootic bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000595 ! -property_value: IAO:0000589 "supraoccipital bone (teleost)" xsd:string -intersection_of: UBERON:0004747 ! supraoccipital bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001175 ! -property_value: IAO:0000589 "blastodisc (teleost)" xsd:string -intersection_of: UBERON:0004749 ! blastodisc -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001176 ! -property_value: IAO:0000589 "blastoderm (teleost)" xsd:string -intersection_of: UBERON:0004750 ! blastoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001381 ! -property_value: IAO:0000589 "hypohyal bone (teleost)" xsd:string -intersection_of: UBERON:0004751 ! hypohyal bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001399 ! -property_value: IAO:0000589 "palatoquadrate cartilage (teleost)" xsd:string -intersection_of: UBERON:0004752 ! palatoquadrate cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001455 ! -property_value: IAO:0000589 "scapulocoracoid (teleost)" xsd:string -intersection_of: UBERON:0004753 ! scapulocoracoid -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001890 ! -property_value: IAO:0000589 "skeletal element (teleost)" xsd:string -intersection_of: UBERON:0004765 ! skeletal element -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001631 ! -property_value: IAO:0000589 "vomerine tooth (teleost)" xsd:string -intersection_of: UBERON:0004767 ! vomerine tooth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002171 ! -property_value: IAO:0000589 "cardiovascular system endothelium (teleost)" xsd:string -intersection_of: UBERON:0004852 ! cardiovascular system endothelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000486 ! -property_value: IAO:0000589 "actinopterygian parietal bone (teleost)" xsd:string -intersection_of: UBERON:0004865 ! actinopterygian parietal bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000514 ! -property_value: IAO:0000589 "actinopterygian frontal bone (teleost)" xsd:string -intersection_of: UBERON:0004866 ! actinopterygian frontal bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000038 ! -property_value: IAO:0000589 "marginal zone of embryo (teleost)" xsd:string -intersection_of: UBERON:0004879 ! marginal zone of embryo -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000091 ! -property_value: IAO:0000589 "chordamesoderm (teleost)" xsd:string -intersection_of: UBERON:0004880 ! chordamesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005167 ! -property_value: IAO:0000589 "hepatopancreatic ampulla (teleost)" xsd:string -intersection_of: UBERON:0004913 ! hepatopancreatic ampulla -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000133 ! -property_value: IAO:0000589 "neural rod (teleost)" xsd:string -intersection_of: UBERON:0005068 ! neural rod -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001367 ! -property_value: IAO:0000589 "forebrain-midbrain boundary (teleost)" xsd:string -intersection_of: UBERON:0005075 ! forebrain-midbrain boundary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001153 ! -property_value: IAO:0000589 "tooth placode (teleost)" xsd:string -intersection_of: UBERON:0005087 ! tooth placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001112 ! -property_value: IAO:0000589 "granulosa cell layer (teleost)" xsd:string -intersection_of: UBERON:0005170 ! granulosa cell layer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005138 ! -property_value: IAO:0000589 "tooth enamel organ (teleost)" xsd:string -intersection_of: UBERON:0005176 ! tooth enamel organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000113 ! -property_value: IAO:0000589 "head mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000081 ! -property_value: IAO:0000589 "trunk mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001261 ! -property_value: IAO:0000589 "ventricular system of central nervous system (teleost)" xsd:string -intersection_of: UBERON:0005281 ! ventricular system of central nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000447 ! -property_value: IAO:0000589 "tela choroidea (teleost)" xsd:string -intersection_of: UBERON:0005283 ! tela choroidea -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005157 ! -property_value: IAO:0000589 "tela choroidea of midbrain cerebral aqueduct (teleost)" xsd:string -intersection_of: UBERON:0005286 ! tela choroidea of midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005158 ! -property_value: IAO:0000589 "tela choroidea of fourth ventricle (teleost)" xsd:string -intersection_of: UBERON:0005287 ! tela choroidea of fourth ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005159 ! -property_value: IAO:0000589 "tela choroidea of third ventricle (teleost)" xsd:string -intersection_of: UBERON:0005288 ! tela choroidea of third ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005160 ! -property_value: IAO:0000589 "tela choroidea of telencephalic ventricle (teleost)" xsd:string -intersection_of: UBERON:0005289 ! tela choroidea of telencephalic ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001072 ! -property_value: IAO:0000589 "thyroid follicle (teleost)" xsd:string -intersection_of: UBERON:0005305 ! thyroid follicle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001270 ! -property_value: IAO:0000589 "blastema (teleost)" xsd:string -intersection_of: UBERON:0005306 ! blastema -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001558 ! -property_value: IAO:0000589 "pronephric nephron tubule (teleost)" xsd:string -intersection_of: UBERON:0005310 ! pronephric nephron tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007067 ! -property_value: IAO:0000589 "vagus X ganglion (teleost)" xsd:string -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000531 ! -property_value: IAO:0000589 "spinal cord lateral column (teleost)" xsd:string -intersection_of: UBERON:0005374 ! spinal cord lateral column -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000357 ! -property_value: IAO:0000589 "olfactory bulb glomerular layer (teleost)" xsd:string -intersection_of: UBERON:0005377 ! olfactory bulb glomerular layer -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000097 ! -property_value: IAO:0000589 "carotid artery segment (teleost)" xsd:string -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001500 ! -property_value: IAO:0000589 "cartilaginous otic capsule (teleost)" xsd:string -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001284 ! -property_value: IAO:0000589 "optic fissure (teleost)" xsd:string -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001451 ! -property_value: IAO:0000589 "zone of polarizing activity of pectoral appendage (teleost)" xsd:string -intersection_of: UBERON:0005415 ! zone of polarizing activity of pectoral appendage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001452 ! -property_value: IAO:0000589 "zone of polarizing activity of pelvic appendage (teleost)" xsd:string -intersection_of: UBERON:0005416 ! zone of polarizing activity of pelvic appendage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000141 ! -property_value: IAO:0000589 "pectoral appendage bud (teleost)" xsd:string -intersection_of: UBERON:0005419 ! pectoral appendage bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001384 ! -property_value: IAO:0000589 "pelvic appendage bud (teleost)" xsd:string -intersection_of: UBERON:0005420 ! pelvic appendage bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000085 ! -property_value: IAO:0000589 "pectoral appendage apical ectodermal ridge (teleost)" xsd:string -intersection_of: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000736 ! -property_value: IAO:0000589 "pectoral appendage apical ectodermal ridge (teleost)" xsd:string -intersection_of: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001385 ! -property_value: IAO:0000589 "pelvic appendage apical ectodermal ridge (teleost)" xsd:string -intersection_of: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000064 ! -property_value: IAO:0000589 "presumptive retinal pigmented epithelium (teleost)" xsd:string -intersection_of: UBERON:0005424 ! presumptive retinal pigmented epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001071 ! -property_value: IAO:0000589 "presumptive neural retina (teleost)" xsd:string -intersection_of: UBERON:0005425 ! presumptive neural retina -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002205 ! -property_value: IAO:0000589 "lens vesicle (teleost)" xsd:string -intersection_of: UBERON:0005426 ! lens vesicle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002188 ! -property_value: IAO:0000589 "corneal primordium (teleost)" xsd:string -intersection_of: UBERON:0005427 ! corneal primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000818 ! -property_value: IAO:0000589 "vagal neural crest (teleost)" xsd:string -intersection_of: UBERON:0005428 ! vagal neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007066 ! -property_value: IAO:0000589 "glossopharyngeal neural crest (teleost)" xsd:string -intersection_of: UBERON:0005491 ! glossopharyngeal neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005046 ! -property_value: IAO:0000589 "hyaloid vessel (teleost)" xsd:string -intersection_of: UBERON:0005492 ! hyaloid vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000521 ! -property_value: IAO:0000589 "hyoid muscle (teleost)" xsd:string -intersection_of: UBERON:0005493 ! hyoid muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000990 ! -property_value: IAO:0000589 "intermediate mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0005494 ! intermediate mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000906 ! -property_value: IAO:0000589 "midbrain lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001435 ! -property_value: IAO:0000589 "neural tube lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005496 ! neural tube lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001178 ! -property_value: IAO:0000589 "non-neural ectoderm (teleost)" xsd:string -intersection_of: UBERON:0005497 ! non-neural ectoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000149 ! -property_value: IAO:0000589 "primitive heart tube (teleost)" xsd:string -intersection_of: UBERON:0005498 ! primitive heart tube -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001031 ! -property_value: IAO:0000589 "rhombomere 1 (teleost)" xsd:string -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001258 ! -property_value: IAO:0000589 "rhombomere floor plate (teleost)" xsd:string -intersection_of: UBERON:0005500 ! rhombomere floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001311 ! -property_value: IAO:0000589 "rhombomere roof plate (teleost)" xsd:string -intersection_of: UBERON:0005502 ! rhombomere roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000948 ! -property_value: IAO:0000589 "rhombomere 3 (teleost)" xsd:string -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001032 ! -property_value: IAO:0000589 "rhombomere 4 (teleost)" xsd:string -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000823 ! -property_value: IAO:0000589 "rhombomere 5 (teleost)" xsd:string -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000069 ! -property_value: IAO:0000589 "rhombomere 6 (teleost)" xsd:string -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000949 ! -property_value: IAO:0000589 "rhombomere 7 (teleost)" xsd:string -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000153 ! -property_value: IAO:0000589 "rhombomere 8 (teleost)" xsd:string -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000785 ! -property_value: IAO:0000589 "telencephalon lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005561 ! telencephalon lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001077 ! -property_value: IAO:0000589 "thymus primordium (teleost)" xsd:string -intersection_of: UBERON:0005562 ! thymus primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000080 ! -property_value: IAO:0000589 "trigeminal neural crest (teleost)" xsd:string -intersection_of: UBERON:0005563 ! trigeminal neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001262 ! -property_value: IAO:0000589 "gonad primordium (teleost)" xsd:string -intersection_of: UBERON:0005564 ! gonad primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000762 ! -property_value: IAO:0000589 "facio-acoustic neural crest (teleost)" xsd:string -intersection_of: UBERON:0005565 ! facio-acoustic neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000882 ! -property_value: IAO:0000589 "rhombomere 1 floor plate (teleost)" xsd:string -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000781 ! -property_value: IAO:0000589 "rhombomere 1 lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001033 ! -property_value: IAO:0000589 "rhombomere 1 roof plate (teleost)" xsd:string -intersection_of: UBERON:0005568 ! rhombomere 1 roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000822 ! -property_value: IAO:0000589 "rhombomere 2 (teleost)" xsd:string -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000763 ! -property_value: IAO:0000589 "rhombomere 2 floor plate (teleost)" xsd:string -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000907 ! -property_value: IAO:0000589 "rhombomere 2 lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000824 ! -property_value: IAO:0000589 "rhombomere 2 roof plate (teleost)" xsd:string -intersection_of: UBERON:0005572 ! rhombomere 2 roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000888 ! -property_value: IAO:0000589 "rhombomere 3 floor plate (teleost)" xsd:string -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000994 ! -property_value: IAO:0000589 "rhombomere 3 lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000950 ! -property_value: IAO:0000589 "rhombomere 3 roof plate (teleost)" xsd:string -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000893 ! -property_value: IAO:0000589 "rhombomere 4 floor plate (teleost)" xsd:string -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000782 ! -property_value: IAO:0000589 "rhombomere 4 lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001034 ! -property_value: IAO:0000589 "rhombomere 4 roof plate (teleost)" xsd:string -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000764 ! -property_value: IAO:0000589 "rhombomere 5 floor plate (teleost)" xsd:string -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000908 ! -property_value: IAO:0000589 "rhombomere 5 lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000828 ! -property_value: IAO:0000589 "rhombomere 5 roof plate (teleost)" xsd:string -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000889 ! -property_value: IAO:0000589 "rhombomere 6 floor plate (teleost)" xsd:string -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000995 ! -property_value: IAO:0000589 "rhombomere 6 lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000825 ! -property_value: IAO:0000589 "rhombomere 6 roof plate (teleost)" xsd:string -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000904 ! -property_value: IAO:0000589 "rhombomere 7 floor plate (teleost)" xsd:string -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000783 ! -property_value: IAO:0000589 "rhombomere 7 lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000951 ! -property_value: IAO:0000589 "rhombomere 7 roof plate (teleost)" xsd:string -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000765 ! -property_value: IAO:0000589 "rhombomere 8 floor plate (teleost)" xsd:string -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000909 ! -property_value: IAO:0000589 "rhombomere 8 lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001035 ! -property_value: IAO:0000589 "rhombomere 8 roof plate (teleost)" xsd:string -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000780 ! -property_value: IAO:0000589 "diencephalon lateral wall (teleost)" xsd:string -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005133 ! -property_value: IAO:0000589 "ventral mesogastrium (teleost)" xsd:string -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000067 ! -property_value: IAO:0000589 "pronephric mesoderm (teleost)" xsd:string -intersection_of: UBERON:0005721 ! pronephric mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000890 ! -property_value: IAO:0000589 "floor plate spinal cord region (teleost)" xsd:string -intersection_of: UBERON:0005723 ! floor plate spinal cord region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001177 ! -property_value: IAO:0000589 "roof plate spinal cord region (teleost)" xsd:string -intersection_of: UBERON:0005724 ! roof plate spinal cord region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001149 ! -property_value: IAO:0000589 "olfactory system (teleost)" xsd:string -intersection_of: UBERON:0005725 ! olfactory system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001453 ! -property_value: IAO:0000589 "pectoral appendage field (teleost)" xsd:string -intersection_of: UBERON:0005729 ! pectoral appendage field -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001454 ! -property_value: IAO:0000589 "pelvic appendage field (teleost)" xsd:string -intersection_of: UBERON:0005730 ! pelvic appendage field -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002245 ! -property_value: IAO:0000589 "swim bladder tunica externa (teleost)" xsd:string -intersection_of: UBERON:0005737 ! swim bladder tunica externa -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002246 ! -property_value: IAO:0000589 "swim bladder tunica interna (teleost)" xsd:string -intersection_of: UBERON:0005738 ! swim bladder tunica interna -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001736 ! -property_value: IAO:0000589 "bone foramen (teleost)" xsd:string -intersection_of: UBERON:0005744 ! bone foramen -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002025 ! -property_value: IAO:0000589 "optic foramen (teleost)" xsd:string -intersection_of: UBERON:0005745 ! optic foramen -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005253 ! -property_value: IAO:0000589 "glomerular parietal epithelium (teleost)" xsd:string -intersection_of: UBERON:0005750 ! glomerular parietal epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005285 ! -property_value: IAO:0000589 "glomerular basement membrane (teleost)" xsd:string -intersection_of: UBERON:0005777 ! glomerular basement membrane -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005286 ! -property_value: IAO:0000589 "lamina densa of glomerular basement membrane (teleost)" xsd:string -intersection_of: UBERON:0005787 ! lamina densa of glomerular basement membrane -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005287 ! -property_value: IAO:0000589 "lamina rara interna (teleost)" xsd:string -intersection_of: UBERON:0005788 ! lamina rara interna -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005288 ! -property_value: IAO:0000589 "lamina rara externa (teleost)" xsd:string -intersection_of: UBERON:0005789 ! lamina rara externa -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000014 ! -property_value: IAO:0000589 "dorsal aorta (teleost)" xsd:string -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002181 ! -property_value: IAO:0000589 "cephalic midbrain flexure (teleost)" xsd:string -intersection_of: UBERON:0005818 ! cephalic midbrain flexure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001276 ! -property_value: IAO:0000589 "hyoid arch skeleton (teleost)" xsd:string -intersection_of: UBERON:0005884 ! hyoid arch skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000095 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch skeleton (teleost)" xsd:string -intersection_of: UBERON:0005886 ! post-hyoid pharyngeal arch skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001414 ! -property_value: IAO:0000589 "occipital region (teleost)" xsd:string -intersection_of: UBERON:0005902 ! occipital region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000550 ! -property_value: IAO:0000589 "external naris (teleost)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001321 ! -property_value: IAO:0000589 "neurocranial trabecula (teleost)" xsd:string -intersection_of: UBERON:0005945 ! neurocranial trabecula -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005047 ! -property_value: IAO:0000589 "hyaloid vein (teleost)" xsd:string -intersection_of: UBERON:0006011 ! hyaloid vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001549 ! -property_value: IAO:0000589 "zygapophysis (teleost)" xsd:string -intersection_of: UBERON:0006062 ! zygapophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000519 ! -property_value: IAO:0000589 "hemal arch (teleost)" xsd:string -intersection_of: UBERON:0006065 ! hemal arch -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001440 ! -property_value: IAO:0000589 "rhombic lip (teleost)" xsd:string -intersection_of: UBERON:0006215 ! rhombic lip -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000574 ! -property_value: IAO:0000589 "future diencephalon (teleost)" xsd:string -intersection_of: UBERON:0006222 ! future diencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000146 ! -property_value: IAO:0000589 "future brain (teleost)" xsd:string -intersection_of: UBERON:0006238 ! future brain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000062 ! -property_value: IAO:0000589 "future forebrain (teleost)" xsd:string -intersection_of: UBERON:0006240 ! future forebrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000417 ! -property_value: IAO:0000589 "future spinal cord (teleost)" xsd:string -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002231 ! -property_value: IAO:0000589 "future cardiac ventricle (teleost)" xsd:string -intersection_of: UBERON:0006283 ! future cardiac ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001259 ! -property_value: IAO:0000589 "early prosencephalic vesicle (teleost)" xsd:string -intersection_of: UBERON:0006284 ! early prosencephalic vesicle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000861 ! -property_value: IAO:0000589 "inferior oblique extraocular muscle (teleost)" xsd:string -intersection_of: UBERON:0006320 ! inferior oblique extraocular muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000738 ! -property_value: IAO:0000589 "superior oblique extraocular muscle (teleost)" xsd:string -intersection_of: UBERON:0006321 ! superior oblique extraocular muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000457 ! -property_value: IAO:0000589 "inferior rectus extraocular muscle (teleost)" xsd:string -intersection_of: UBERON:0006322 ! inferior rectus extraocular muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000345 ! -property_value: IAO:0000589 "superior rectus extraocular muscle (teleost)" xsd:string -intersection_of: UBERON:0006323 ! superior rectus extraocular muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002035 ! -property_value: IAO:0000589 "nasal capsule (teleost)" xsd:string -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001712 ! -property_value: IAO:0000589 "snout (teleost)" xsd:string -intersection_of: UBERON:0006333 ! snout -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000944 ! -property_value: IAO:0000589 "posterior lateral line (teleost)" xsd:string -intersection_of: UBERON:0006334 ! posterior lateral line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005293 ! -property_value: IAO:0000589 "distal early tubule (teleost)" xsd:string -intersection_of: UBERON:0006337 ! distal early tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000169 ! -property_value: IAO:0000589 "basisphenoid bone (teleost)" xsd:string -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005305 ! -property_value: IAO:0000589 "kidney vasculature (teleost)" xsd:string -intersection_of: UBERON:0006544 ! kidney vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005289 ! -property_value: IAO:0000589 "renal duct (teleost)" xsd:string -intersection_of: UBERON:0006553 ! renal duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002191 ! -property_value: IAO:0000589 "diencephalic nucleus (teleost)" xsd:string -intersection_of: UBERON:0006569 ! diencephalic nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000416 ! -property_value: IAO:0000589 "presumptive endoderm (teleost)" xsd:string -intersection_of: UBERON:0006595 ! presumptive endoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000568 ! -property_value: IAO:0000589 "presumptive blood (teleost)" xsd:string -intersection_of: UBERON:0006596 ! presumptive blood -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000621 ! -property_value: IAO:0000589 "quadrate bone (teleost)" xsd:string -intersection_of: UBERON:0006597 ! quadrate bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001116 ! -property_value: IAO:0000589 "presumptive structure (teleost)" xsd:string -intersection_of: UBERON:0006598 ! presumptive structure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001217 ! -property_value: IAO:0000589 "presumptive hypochord (teleost)" xsd:string -intersection_of: UBERON:0006599 ! presumptive hypochord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001334 ! -property_value: IAO:0000589 "presumptive enteric nervous system (teleost)" xsd:string -intersection_of: UBERON:0006600 ! presumptive enteric nervous system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001376 ! -property_value: IAO:0000589 "presumptive ectoderm (teleost)" xsd:string -intersection_of: UBERON:0006601 ! presumptive ectoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001377 ! -property_value: IAO:0000589 "presumptive mesoderm (teleost)" xsd:string -intersection_of: UBERON:0006603 ! presumptive mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001503 ! -property_value: IAO:0000589 "lamina orbitonasalis (teleost)" xsd:string -intersection_of: UBERON:0006604 ! lamina orbitonasalis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001506 ! -property_value: IAO:0000589 "tectum synoticum (teleost)" xsd:string -intersection_of: UBERON:0006605 ! tectum synoticum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001851 ! -property_value: IAO:0000589 "mandibular symphysis (teleost)" xsd:string -intersection_of: UBERON:0006606 ! mandibular symphysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001351 ! -property_value: IAO:0000589 "middle white layer of superior colliculus (teleost)" xsd:string -intersection_of: UBERON:0006787 ! middle white layer of superior colliculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001350 ! -property_value: IAO:0000589 "middle gray layer of superior colliculus (teleost)" xsd:string -intersection_of: UBERON:0006788 ! middle gray layer of superior colliculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000494 ! -property_value: IAO:0000589 "deep white layer of superior colliculus (teleost)" xsd:string -intersection_of: UBERON:0006790 ! deep white layer of superior colliculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000686 ! -property_value: IAO:0000589 "superficial layer of superior colliculus (teleost)" xsd:string -intersection_of: UBERON:0006791 ! superficial layer of superior colliculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000327 ! -property_value: IAO:0000589 "intermediate layer of superior colliculus (teleost)" xsd:string -intersection_of: UBERON:0006792 ! intermediate layer of superior colliculus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001837 ! -property_value: IAO:0000589 "anatomical line (teleost)" xsd:string -intersection_of: UBERON:0006800 ! anatomical line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000380 ! -property_value: IAO:0000589 "nucleus of lateral lemniscus (teleost)" xsd:string -intersection_of: UBERON:0006840 ! nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005168 ! -property_value: IAO:0000589 "central vein of liver (teleost)" xsd:string -intersection_of: UBERON:0006841 ! central vein of liver -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005252 ! -property_value: IAO:0000589 "lymphatic capillary (teleost)" xsd:string -intersection_of: UBERON:0006842 ! lymphatic capillary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002190 ! -property_value: IAO:0000589 "root of cranial nerve (teleost)" xsd:string -intersection_of: UBERON:0006843 ! root of cranial nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001973 ! -property_value: IAO:0000589 "cusp of tooth (teleost)" xsd:string -intersection_of: UBERON:0006844 ! cusp of tooth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002135 ! -property_value: IAO:0000589 "abductor muscle (teleost)" xsd:string -intersection_of: UBERON:0006845 ! abductor muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000490 ! -property_value: IAO:0000589 "cerebellar commissure (teleost)" xsd:string -intersection_of: UBERON:0006847 ! cerebellar commissure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000583 ! -property_value: IAO:0000589 "scapula (teleost)" xsd:string -intersection_of: UBERON:0006849 ! scapula -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001345 ! -property_value: IAO:0000589 "interrenal gland (teleost)" xsd:string -intersection_of: UBERON:0006856 ! interrenal gland -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001346 ! -property_value: IAO:0000589 "interrenal primordium (teleost)" xsd:string -intersection_of: UBERON:0006857 ! interrenal primordium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005335 ! -property_value: IAO:0000589 "swim bladder bud (teleost)" xsd:string -intersection_of: UBERON:0006859 ! swim bladder bud -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000076 ! -property_value: IAO:0000589 "swim bladder (teleost)" xsd:string -intersection_of: UBERON:0006860 ! swim bladder -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002037 ! -property_value: IAO:0000589 "electric organ (teleost)" xsd:string -intersection_of: UBERON:0006869 ! electric organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000998 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (teleost)" xsd:string -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005334 ! -property_value: IAO:0000589 "lip epithelium (teleost)" xsd:string -intersection_of: UBERON:0006913 ! lip epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001268 ! -property_value: IAO:0000589 "male genital duct (teleost)" xsd:string -intersection_of: UBERON:0006947 ! male genital duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005136 ! -property_value: IAO:0000589 "inner dental epithelium (teleost)" xsd:string -intersection_of: UBERON:0006951 ! inner dental epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005137 ! -property_value: IAO:0000589 "outer dental epithelium (teleost)" xsd:string -intersection_of: UBERON:0006952 ! outer dental epithelium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001195 ! -property_value: IAO:0000589 "pars distalis of adenohypophysis (teleost)" xsd:string -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005077 ! -property_value: IAO:0000589 "vascular cord (teleost)" xsd:string -intersection_of: UBERON:0006965 ! vascular cord -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001839 ! -property_value: IAO:0000589 "anatomical point (teleost)" xsd:string -intersection_of: UBERON:0006983 ! anatomical point -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002047 ! -property_value: IAO:0000589 "sexually immature organism (teleost)" xsd:string -intersection_of: UBERON:0007021 ! sexually immature organism -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002046 ! -property_value: IAO:0000589 "adult organism (teleost)" xsd:string -intersection_of: UBERON:0007023 ! adult organism -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001082 ! -property_value: IAO:0000589 "chordo neural hinge (teleost)" xsd:string -intersection_of: UBERON:0007097 ! chordo neural hinge -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007064 ! -property_value: IAO:0000589 "mandibular neural crest (teleost)" xsd:string -intersection_of: UBERON:0007098 ! mandibular neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007065 ! -property_value: IAO:0000589 "hyoid neural crest (teleost)" xsd:string -intersection_of: UBERON:0007099 ! hyoid neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001128 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (teleost)" xsd:string -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001130 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (teleost)" xsd:string -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001131 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (teleost)" xsd:string -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001134 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (teleost)" xsd:string -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001133 ! -property_value: IAO:0000589 "pharyngeal pouch 5 (teleost)" xsd:string -intersection_of: UBERON:0007126 ! pharyngeal pouch 5 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001132 ! -property_value: IAO:0000589 "pharyngeal pouch 6 (teleost)" xsd:string -intersection_of: UBERON:0007127 ! pharyngeal pouch 6 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000669 ! -property_value: IAO:0000589 "head kidney (teleost)" xsd:string -intersection_of: UBERON:0007132 ! head kidney -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001573 ! -property_value: IAO:0000589 "trunk ganglion (teleost)" xsd:string -intersection_of: UBERON:0007134 ! trunk ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000131 ! -property_value: IAO:0000589 "neural keel (teleost)" xsd:string -intersection_of: UBERON:0007135 ! neural keel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000787 ! -property_value: IAO:0000589 "mesenchyme derived from head neural crest (teleost)" xsd:string -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000999 ! -property_value: IAO:0000589 "mesenchyme derived from trunk neural crest (teleost)" xsd:string -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001507 ! -property_value: IAO:0000589 "trabecula cranii (teleost)" xsd:string -intersection_of: UBERON:0007215 ! trabecula cranii -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000563 ! -property_value: IAO:0000589 "pectoral appendage musculature (teleost)" xsd:string -intersection_of: UBERON:0007269 ! pectoral appendage musculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000258 ! -property_value: IAO:0000589 "pelvic appendage musculature (teleost)" xsd:string -intersection_of: UBERON:0007270 ! pelvic appendage musculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000207 ! -property_value: IAO:0000589 "appendage musculature (teleost)" xsd:string -intersection_of: UBERON:0007271 ! appendage musculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000619 ! -property_value: IAO:0000589 "crista of ampulla of anterior semicircular duct of membranous laybrinth (teleost)" xsd:string -intersection_of: UBERON:0007274 ! crista of ampulla of anterior semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000566 ! -property_value: IAO:0000589 "crista of ampulla of posterior semicircular duct of membranous laybrinth (teleost)" xsd:string -intersection_of: UBERON:0007275 ! crista of ampulla of posterior semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000166 ! -property_value: IAO:0000589 "crista of ampulla of lateral semicircular duct of membranous laybrinth (teleost)" xsd:string -intersection_of: UBERON:0007276 ! crista of ampulla of lateral semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000569 ! -property_value: IAO:0000589 "presumptive hindbrain (teleost)" xsd:string -intersection_of: UBERON:0007277 ! presumptive hindbrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002234 ! -property_value: IAO:0000589 "presumptive sinus venosus (teleost)" xsd:string -intersection_of: UBERON:0007278 ! presumptive sinus venosus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002227 ! -property_value: IAO:0000589 "presumptive atrioventricular canal (teleost)" xsd:string -intersection_of: UBERON:0007279 ! presumptive atrioventricular canal -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002233 ! -property_value: IAO:0000589 "presumptive endocardium (teleost)" xsd:string -intersection_of: UBERON:0007280 ! presumptive endocardium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001187 ! -property_value: IAO:0000589 "presumptive midbrain hindbrain boundary (teleost)" xsd:string -intersection_of: UBERON:0007281 ! presumptive midbrain hindbrain boundary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000053 ! -property_value: IAO:0000589 "presumptive segmental plate (teleost)" xsd:string -intersection_of: UBERON:0007282 ! presumptive segmental plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001121 ! -property_value: IAO:0000589 "presumptive shield (teleost)" xsd:string -intersection_of: UBERON:0007283 ! presumptive shield -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000063 ! -property_value: IAO:0000589 "presumptive neural plate (teleost)" xsd:string -intersection_of: UBERON:0007284 ! presumptive neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000591 ! -property_value: IAO:0000589 "presumptive paraxial mesoderm (teleost)" xsd:string -intersection_of: UBERON:0007285 ! presumptive paraxial mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001218 ! -property_value: IAO:0000589 "presumptive floor plate (teleost)" xsd:string -intersection_of: UBERON:0007286 ! presumptive floor plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002230 ! -property_value: IAO:0000589 "presumptive bulbus arteriosus (teleost)" xsd:string -intersection_of: UBERON:0007287 ! presumptive bulbus arteriosus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001368 ! -property_value: IAO:0000589 "presumptive forebrain midbrain boundary (teleost)" xsd:string -intersection_of: UBERON:0007288 ! presumptive forebrain midbrain boundary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001207 ! -property_value: IAO:0000589 "presumptive rhombomere 1 (teleost)" xsd:string -intersection_of: UBERON:0007289 ! presumptive rhombomere 1 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001213 ! -property_value: IAO:0000589 "presumptive rhombomere 3 (teleost)" xsd:string -intersection_of: UBERON:0007290 ! presumptive rhombomere 3 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001212 ! -property_value: IAO:0000589 "presumptive rhombomere 4 (teleost)" xsd:string -intersection_of: UBERON:0007291 ! presumptive rhombomere 4 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001211 ! -property_value: IAO:0000589 "presumptive rhombomere 5 (teleost)" xsd:string -intersection_of: UBERON:0007292 ! presumptive rhombomere 5 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001210 ! -property_value: IAO:0000589 "presumptive rhombomere 6 (teleost)" xsd:string -intersection_of: UBERON:0007293 ! presumptive rhombomere 6 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001209 ! -property_value: IAO:0000589 "presumptive rhombomere 7 (teleost)" xsd:string -intersection_of: UBERON:0007294 ! presumptive rhombomere 7 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001214 ! -property_value: IAO:0000589 "presumptive rhombomere 8 (teleost)" xsd:string -intersection_of: UBERON:0007295 ! presumptive rhombomere 8 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001208 ! -property_value: IAO:0000589 "presumptive rhombomere 2 (teleost)" xsd:string -intersection_of: UBERON:0007296 ! presumptive rhombomere 2 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001070 ! -property_value: IAO:0000589 "presumptive pronephric mesoderm (teleost)" xsd:string -intersection_of: UBERON:0007297 ! presumptive pronephric mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002238 ! -property_value: IAO:0000589 "pronephric proximal convoluted tubule (teleost)" xsd:string -intersection_of: UBERON:0007298 ! pronephric proximal convoluted tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001445 ! -property_value: IAO:0000589 "choroid plexus of tectal ventricle (teleost)" xsd:string -intersection_of: UBERON:0007299 ! choroid plexus of tectal ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005301 ! -property_value: IAO:0000589 "pectoral appendage blood vessel (teleost)" xsd:string -intersection_of: UBERON:0007300 ! pectoral appendage blood vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005299 ! -property_value: IAO:0000589 "appendage blood vessel (teleost)" xsd:string -intersection_of: UBERON:0007301 ! appendage blood vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005096 ! -property_value: IAO:0000589 "pectoral appendage vasculature (teleost)" xsd:string -intersection_of: UBERON:0007302 ! pectoral appendage vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005003 ! -property_value: IAO:0000589 "pharyngeal vasculature (teleost)" xsd:string -intersection_of: UBERON:0007303 ! pharyngeal vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005095 ! -property_value: IAO:0000589 "appendage vasculature (teleost)" xsd:string -intersection_of: UBERON:0007304 ! appendage vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005309 ! -property_value: IAO:0000589 "pronephric glomerular capillary (teleost)" xsd:string -intersection_of: UBERON:0007306 ! pronephric glomerular capillary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005313 ! -property_value: IAO:0000589 "pronephric glomerular basement membrane (teleost)" xsd:string -intersection_of: UBERON:0007307 ! pronephric glomerular basement membrane -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002236 ! -property_value: IAO:0000589 "pronephric distal early tubule (teleost)" xsd:string -intersection_of: UBERON:0007308 ! pronephric distal early tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001372 ! -property_value: IAO:0000589 "pancreatic duct (teleost)" xsd:string -intersection_of: UBERON:0007329 ! pancreatic duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001182 ! -property_value: IAO:0000589 "stratum compactum of dermis (teleost)" xsd:string -intersection_of: UBERON:0007377 ! stratum compactum of dermis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000277 ! -property_value: IAO:0000589 "dermal scale (teleost)" xsd:string -intersection_of: UBERON:0007380 ! dermal scale -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000086 ! -property_value: IAO:0000589 "enveloping layer of ectoderm (teleost)" xsd:string -intersection_of: UBERON:0007383 ! enveloping layer of ectoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005300 ! -property_value: IAO:0000589 "appendage lymph vessel (teleost)" xsd:string -intersection_of: UBERON:0007384 ! appendage lymph vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005302 ! -property_value: IAO:0000589 "pectoral appendage lymph vessel (teleost)" xsd:string -intersection_of: UBERON:0007385 ! pectoral appendage lymph vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001543 ! -property_value: IAO:0000589 "paired limb/fin cartilage (teleost)" xsd:string -intersection_of: UBERON:0007389 ! paired limb/fin cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000257 ! -property_value: IAO:0000589 "pectoral appendage cartilage tissue (teleost)" xsd:string -intersection_of: UBERON:0007390 ! pectoral appendage cartilage tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001459 ! -property_value: IAO:0000589 "pelvic appendage cartilage tissue (teleost)" xsd:string -intersection_of: UBERON:0007391 ! pelvic appendage cartilage tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005147 ! -property_value: IAO:0000589 "regenerating anatomical structure (teleost)" xsd:string -intersection_of: UBERON:0007567 ! regenerating anatomical structure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005148 ! -property_value: IAO:0000589 "apical epidermal cap (teleost)" xsd:string -intersection_of: UBERON:0007574 ! apical epidermal cap -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001057 ! -property_value: IAO:0000589 "intersomitic vein (teleost)" xsd:string -intersection_of: UBERON:0007679 ! intersomitic vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000875 ! -property_value: IAO:0000589 "facial neural crest (teleost)" xsd:string -intersection_of: UBERON:0007681 ! facial neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000905 ! -property_value: IAO:0000589 "lateral mesenchyme derived from mesoderm (teleost)" xsd:string -intersection_of: UBERON:0007683 ! lateral mesenchyme derived from mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001104 ! -property_value: IAO:0000589 "early pharyngeal endoderm (teleost)" xsd:string -intersection_of: UBERON:0007690 ! early pharyngeal endoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001117 ! -property_value: IAO:0000589 "post-anal tail (teleost)" xsd:string -intersection_of: UBERON:0007812 ! post-anal tail -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005129 ! -property_value: IAO:0000589 "peritoneal mesentery (teleost)" xsd:string -intersection_of: UBERON:0007826 ! peritoneal mesentery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000407 ! -property_value: IAO:0000589 "pectoral girdle skeleton (teleost)" xsd:string -intersection_of: UBERON:0007831 ! pectoral girdle skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000565 ! -property_value: IAO:0000589 "pelvic girdle skeleton (teleost)" xsd:string -intersection_of: UBERON:0007832 ! pelvic girdle skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001645 ! -property_value: IAO:0000589 "membrane bone (teleost)" xsd:string -intersection_of: UBERON:0007842 ! membrane bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001642 ! -property_value: IAO:0000589 "perichordal tissue (teleost)" xsd:string -intersection_of: UBERON:0007862 ! perichordal tissue -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002254 ! -property_value: IAO:0000589 "chin (teleost)" xsd:string -intersection_of: UBERON:0008199 ! chin -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000328 ! -property_value: IAO:0000589 "craniocervical region musculature (teleost)" xsd:string -intersection_of: UBERON:0008229 ! craniocervical region musculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000018 ! -property_value: IAO:0000589 "blastodisc derived epiblast (teleost)" xsd:string -intersection_of: UBERON:0008781 ! blastodisc derived epiblast -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002036 ! -property_value: IAO:0000589 "intromittent organ (teleost)" xsd:string -intersection_of: UBERON:0008811 ! intromittent organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001107 ! -property_value: IAO:0000589 "pharyngeal gill precursor (teleost)" xsd:string -intersection_of: UBERON:0008894 ! pharyngeal gill precursor -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001216 ! -property_value: IAO:0000589 "splanchnocranium (teleost)" xsd:string -intersection_of: UBERON:0008895 ! splanchnocranium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001597 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch (teleost)" xsd:string -intersection_of: UBERON:0008896 ! post-hyoid pharyngeal arch -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000108 ! -property_value: IAO:0000589 "fin (teleost)" xsd:string -intersection_of: UBERON:0008897 ! fin -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000231 ! -property_value: IAO:0000589 "lateral recess of third ventricle (teleost)" xsd:string -intersection_of: UBERON:0008902 ! lateral recess of third ventricle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000243 ! -property_value: IAO:0000589 "neuromast (teleost)" xsd:string -intersection_of: UBERON:0008904 ! neuromast -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001479 ! -property_value: IAO:0000589 "lateral line nerve (teleost)" xsd:string -intersection_of: UBERON:0008906 ! lateral line nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001590 ! -property_value: IAO:0000589 "dermal bone (teleost)" xsd:string -intersection_of: UBERON:0008907 ! dermal bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001639 ! -property_value: IAO:0000589 "perichordal bone (teleost)" xsd:string -intersection_of: UBERON:0008909 ! perichordal bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001638 ! -property_value: IAO:0000589 "perichondral bone (teleost)" xsd:string -intersection_of: UBERON:0008913 ! perichondral bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001791 ! -property_value: IAO:0000589 "pore (teleost)" xsd:string -intersection_of: UBERON:0008915 ! pore -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002104 ! -property_value: IAO:0000589 "ampullary organ (teleost)" xsd:string -intersection_of: UBERON:0008917 ! ampullary organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000099 ! -property_value: IAO:0000589 "vasculature of brain (teleost)" xsd:string -intersection_of: UBERON:0008998 ! vasculature of brain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000667 ! -property_value: IAO:0000589 "gill filament (teleost)" xsd:string -intersection_of: UBERON:0009120 ! gill filament -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001198 ! -property_value: IAO:0000589 "adenohypophyseal placode (teleost)" xsd:string -intersection_of: UBERON:0009122 ! adenohypophyseal placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001295 ! -property_value: IAO:0000589 "geniculate placode (teleost)" xsd:string -intersection_of: UBERON:0009124 ! geniculate placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001296 ! -property_value: IAO:0000589 "petrosal placode (teleost)" xsd:string -intersection_of: UBERON:0009125 ! petrosal placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001555 ! -property_value: IAO:0000589 "epibranchial ganglion (teleost)" xsd:string -intersection_of: UBERON:0009127 ! epibranchial ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000996 ! -property_value: IAO:0000589 "spinal cord lateral wall (teleost)" xsd:string -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007018 ! -property_value: IAO:0000589 "forebrain neural plate (teleost)" xsd:string -intersection_of: UBERON:0009610 ! forebrain neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007019 ! -property_value: IAO:0000589 "midbrain neural plate (teleost)" xsd:string -intersection_of: UBERON:0009611 ! midbrain neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007020 ! -property_value: IAO:0000589 "forebrain midbrain boundary neural plate (teleost)" xsd:string -intersection_of: UBERON:0009612 ! forebrain midbrain boundary neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007022 ! -property_value: IAO:0000589 "hindbrain neural plate (teleost)" xsd:string -intersection_of: UBERON:0009614 ! hindbrain neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007044 ! -property_value: IAO:0000589 "midbrain hindbrain boundary neural plate (teleost)" xsd:string -intersection_of: UBERON:0009615 ! midbrain hindbrain boundary neural plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000148 ! -property_value: IAO:0000589 "presumptive midbrain (teleost)" xsd:string -intersection_of: UBERON:0009616 ! presumptive midbrain -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002239 ! -property_value: IAO:0000589 "pronephric proximal straight tubule (teleost)" xsd:string -intersection_of: UBERON:0009622 ! pronephric proximal straight tubule -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001423 ! -property_value: IAO:0000589 "parachordal cartilage (teleost)" xsd:string -intersection_of: UBERON:0009635 ! parachordal cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002209 ! -property_value: IAO:0000589 "midbrain nucleus (teleost)" xsd:string -intersection_of: UBERON:0009661 ! midbrain nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002177 ! -property_value: IAO:0000589 "hindbrain nucleus (teleost)" xsd:string -intersection_of: UBERON:0009662 ! hindbrain nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002178 ! -property_value: IAO:0000589 "telencephalic nucleus (teleost)" xsd:string -intersection_of: UBERON:0009663 ! telencephalic nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001667 ! -property_value: IAO:0000589 "tooth row (teleost)" xsd:string -intersection_of: UBERON:0009678 ! tooth row -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000219 ! -property_value: IAO:0000589 "intermediate reticular formation (teleost)" xsd:string -intersection_of: UBERON:0009776 ! intermediate reticular formation -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001441 ! -property_value: IAO:0000589 "lower rhombic lip (teleost)" xsd:string -intersection_of: UBERON:0009840 ! lower rhombic lip -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001442 ! -property_value: IAO:0000589 "upper rhombic lip (teleost)" xsd:string -intersection_of: UBERON:0009841 ! upper rhombic lip -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001344 ! -property_value: IAO:0000589 "zona limitans intrathalamica (teleost)" xsd:string -intersection_of: UBERON:0009848 ! zona limitans intrathalamica -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005041 ! -property_value: IAO:0000589 "anterior lateral plate mesoderm (teleost)" xsd:string -intersection_of: UBERON:0009881 ! anterior lateral plate mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000179 ! -property_value: IAO:0000589 "caudal root of abducens nerve (teleost)" xsd:string -intersection_of: UBERON:0009908 ! caudal root of abducens nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000665 ! -property_value: IAO:0000589 "rostral root of abducens nerve (teleost)" xsd:string -intersection_of: UBERON:0009909 ! rostral root of abducens nerve -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005042 ! -property_value: IAO:0000589 "posterior lateral plate mesoderm (teleost)" xsd:string -intersection_of: UBERON:0009910 ! posterior lateral plate mesoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001309 ! -property_value: IAO:0000589 "neurogenic placode (teleost)" xsd:string -intersection_of: UBERON:0009955 ! neurogenic placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002259 ! -property_value: IAO:0000589 "condyle (teleost)" xsd:string -intersection_of: UBERON:0009979 ! condyle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005094 ! -property_value: IAO:0000589 "optic choroid vascular plexus (teleost)" xsd:string -intersection_of: UBERON:0010078 ! optic choroid vascular plexus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000045 ! -property_value: IAO:0000589 "region of neural crest (teleost)" xsd:string -intersection_of: UBERON:0010170 ! region of neural crest -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000577 ! -property_value: IAO:0000589 "renal portal vein (teleost)" xsd:string -intersection_of: UBERON:0010193 ! renal portal vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001469 ! -property_value: IAO:0000589 "lateral line (teleost)" xsd:string -intersection_of: UBERON:0010202 ! lateral line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005037 ! -property_value: IAO:0000589 "tail vasculature (teleost)" xsd:string -intersection_of: UBERON:0010204 ! tail vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005092 ! -property_value: IAO:0000589 "mesencephalic vein (teleost)" xsd:string -intersection_of: UBERON:0010205 ! mesencephalic vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002228 ! -property_value: IAO:0000589 "future cardiac atrium (teleost)" xsd:string -intersection_of: UBERON:0010227 ! future cardiac atrium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000761 ! -property_value: IAO:0000589 "midbrain basal plate (teleost)" xsd:string -intersection_of: UBERON:0010285 ! midbrain basal plate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007039 ! -property_value: IAO:0000589 "midbrain neural tube (teleost)" xsd:string -intersection_of: UBERON:0010286 ! midbrain neural tube -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001509 ! -property_value: IAO:0000589 "scleral cartilage (teleost)" xsd:string -intersection_of: UBERON:0010289 ! scleral cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001411 ! -property_value: IAO:0000589 "endochondral scleral ossicle (teleost)" xsd:string -intersection_of: UBERON:0010297 ! endochondral scleral ossicle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002201 ! -property_value: IAO:0000589 "immature eye (teleost)" xsd:string -intersection_of: UBERON:0010312 ! immature eye -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000737 ! -property_value: IAO:0000589 "cranial skeletal system (teleost)" xsd:string -intersection_of: UBERON:0010323 ! cranial skeletal system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005251 ! -property_value: IAO:0000589 "microcirculatory vessel (teleost)" xsd:string -intersection_of: UBERON:0010523 ! microcirculatory vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000943 ! -property_value: IAO:0000589 "pectoral fin skeleton (teleost)" xsd:string -intersection_of: UBERON:0010710 ! pectoral fin skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001387 ! -property_value: IAO:0000589 "pelvic fin skeleton (teleost)" xsd:string -intersection_of: UBERON:0010711 ! pelvic fin skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000027 ! -property_value: IAO:0000589 "paired fin skeleton (teleost)" xsd:string -intersection_of: UBERON:0010713 ! paired fin skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000369 ! -property_value: IAO:0000589 "intermandibularis (teleost)" xsd:string -intersection_of: UBERON:0010931 ! intermandibularis -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001670 ! -property_value: IAO:0000589 "articular cartilage element (teleost)" xsd:string -intersection_of: UBERON:0011002 ! articular cartilage element -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001460 ! -property_value: IAO:0000589 "pharyngeal arch cartilage (teleost)" xsd:string -intersection_of: UBERON:0011004 ! pharyngeal arch cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001669 ! -property_value: IAO:0000589 "angular bone (teleost)" xsd:string -intersection_of: UBERON:0011079 ! angular bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001272 ! -property_value: IAO:0000589 "palatoquadrate arch (teleost)" xsd:string -intersection_of: UBERON:0011085 ! palatoquadrate arch -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001602 ! -property_value: IAO:0000589 "pharyngeal arch 7 (teleost)" xsd:string -intersection_of: UBERON:0011087 ! pharyngeal arch 7 -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002136 ! -property_value: IAO:0000589 "adductor muscle (teleost)" xsd:string -intersection_of: UBERON:0011145 ! adductor muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000354 ! -property_value: IAO:0000589 "pharyngeal arch derived gill (teleost)" xsd:string -intersection_of: UBERON:0011150 ! pharyngeal arch derived gill -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000612 ! -property_value: IAO:0000589 "jaw depressor muscle (teleost)" xsd:string -intersection_of: UBERON:0011151 ! jaw depressor muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001401 ! -property_value: IAO:0000589 "dorsal hyoid arch skeleton (teleost)" xsd:string -intersection_of: UBERON:0011152 ! dorsal hyoid arch skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001402 ! -property_value: IAO:0000589 "ventral hyoid arch skeleton (teleost)" xsd:string -intersection_of: UBERON:0011153 ! ventral hyoid arch skeleton -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002286 ! -property_value: IAO:0000589 "gular region (teleost)" xsd:string -intersection_of: UBERON:0011154 ! gular region -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001802 ! -property_value: IAO:0000589 "quadrate-articular joint (teleost)" xsd:string -intersection_of: UBERON:0011170 ! quadrate-articular joint -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000786 ! -property_value: IAO:0000589 "medial migration pathway NC-derived mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000992 ! -property_value: IAO:0000589 "lateral migration pathway NC-derived mesenchyme (teleost)" xsd:string -intersection_of: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000323 ! -property_value: IAO:0000589 "mesethmoid bone (teleost)" xsd:string -intersection_of: UBERON:0011238 ! mesethmoid bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001405 ! -property_value: IAO:0000589 "ethmoid cartilage (teleost)" xsd:string -intersection_of: UBERON:0011242 ! ethmoid cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000597 ! -property_value: IAO:0000589 "white matter of telencephalon (teleost)" xsd:string -intersection_of: UBERON:0011299 ! white matter of telencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005297 ! -property_value: IAO:0000589 "cranial blood vasculature (teleost)" xsd:string -intersection_of: UBERON:0011362 ! cranial blood vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005298 ! -property_value: IAO:0000589 "cranial lymph vasculature (teleost)" xsd:string -intersection_of: UBERON:0011363 ! cranial lymph vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001627 ! -property_value: IAO:0000589 "maxillary tooth (teleost)" xsd:string -intersection_of: UBERON:0011593 ! maxillary tooth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001628 ! -property_value: IAO:0000589 "dentary tooth (teleost)" xsd:string -intersection_of: UBERON:0011594 ! dentary tooth -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001673 ! -property_value: IAO:0000589 "coronoid bone (teleost)" xsd:string -intersection_of: UBERON:0011598 ! coronoid bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000672 ! -property_value: IAO:0000589 "hyomandibular bone (teleost)" xsd:string -intersection_of: UBERON:0011606 ! hyomandibular bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001422 ! -property_value: IAO:0000589 "hyomandibular cartilage (teleost)" xsd:string -intersection_of: UBERON:0011607 ! hyomandibular cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000672 ! -property_value: IAO:0000589 "hyomandibular element (teleost)" xsd:string -intersection_of: UBERON:0011608 ! hyomandibular element -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001400 ! -property_value: IAO:0000589 "ceratohyal cartilage (teleost)" xsd:string -intersection_of: UBERON:0011610 ! ceratohyal cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000578 ! -property_value: IAO:0000589 "ceratohyal bone (teleost)" xsd:string -intersection_of: UBERON:0011611 ! ceratohyal bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001868 ! -property_value: IAO:0000589 "hypohyal cartilage (teleost)" xsd:string -intersection_of: UBERON:0011612 ! hypohyal cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001891 ! -property_value: IAO:0000589 "basihyal element (teleost)" xsd:string -intersection_of: UBERON:0011614 ! basihyal element -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001510 ! -property_value: IAO:0000589 "basihyal cartilage (teleost)" xsd:string -intersection_of: UBERON:0011615 ! basihyal cartilage -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000316 ! -property_value: IAO:0000589 "basihyal bone (teleost)" xsd:string -intersection_of: UBERON:0011618 ! basihyal bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000656 ! -property_value: IAO:0000589 "ectopterygoid bone (teleost)" xsd:string -intersection_of: UBERON:0011634 ! ectopterygoid bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002287 ! -property_value: IAO:0000589 "surangular bone (teleost)" xsd:string -intersection_of: UBERON:0011636 ! surangular bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000236 ! -property_value: IAO:0000589 "jaw muscle (teleost)" xsd:string -intersection_of: UBERON:0011648 ! jaw muscle -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000537 ! -property_value: IAO:0000589 "levator operculi (teleost)" xsd:string -intersection_of: UBERON:0011649 ! levator operculi -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007049 ! -property_value: IAO:0000589 "adductor mandibulae (teleost)" xsd:string -intersection_of: UBERON:0011683 ! adductor mandibulae -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001292 ! -property_value: IAO:0000589 "pineal gland stalk (teleost)" xsd:string -intersection_of: UBERON:0011768 ! pineal gland stalk -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005035 ! -property_value: IAO:0000589 "subintestinal vein (teleost)" xsd:string -intersection_of: UBERON:0011944 ! subintestinal vein -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000463 ! -property_value: IAO:0000589 "pharyngeal adductor (teleost)" xsd:string -intersection_of: UBERON:0011996 ! pharyngeal adductor -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001637 ! -property_value: IAO:0000589 "replacement bone (teleost)" xsd:string -intersection_of: UBERON:0012075 ! replacement bone -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002093 ! -property_value: IAO:0000589 "primitive palate (teleost)" xsd:string -intersection_of: UBERON:0012316 ! primitive palate -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000330 ! -property_value: IAO:0000589 "cloacal lumen (teleost)" xsd:string -intersection_of: UBERON:0012463 ! cloacal lumen -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005411 ! -property_value: IAO:0000589 "common crus of semicircular duct (teleost)" xsd:string -intersection_of: UBERON:0013764 ! common crus of semicircular duct -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000571 ! -property_value: IAO:0000589 "future telencephalon (teleost)" xsd:string -intersection_of: UBERON:0014371 ! future telencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002100 ! -property_value: IAO:0000589 "rib skeletal system (teleost)" xsd:string -intersection_of: UBERON:0014478 ! rib skeletal system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000536 ! -property_value: IAO:0000589 "medial pallium (teleost)" xsd:string -intersection_of: UBERON:0014738 ! medial pallium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000506 ! -property_value: IAO:0000589 "dorsal pallium (teleost)" xsd:string -intersection_of: UBERON:0014740 ! dorsal pallium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000391 ! -property_value: IAO:0000589 "lateral pallium (teleost)" xsd:string -intersection_of: UBERON:0014741 ! lateral pallium -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001838 ! -property_value: IAO:0000589 "anatomical line along groove (teleost)" xsd:string -intersection_of: UBERON:0014764 ! anatomical line along groove -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001332 ! -property_value: IAO:0000589 "spinal neuromere (teleost)" xsd:string -intersection_of: UBERON:0014777 ! spinal neuromere -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005277 ! -property_value: IAO:0000589 "skeletal muscle organ (teleost)" xsd:string -intersection_of: UBERON:0014892 ! skeletal muscle organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005076 ! -property_value: IAO:0000589 "primordial vasculature (teleost)" xsd:string -intersection_of: UBERON:0014903 ! primordial vasculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001285 ! -property_value: IAO:0000589 "intersomitic vessel (teleost)" xsd:string -intersection_of: UBERON:0014907 ! intersomitic vessel -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0007010 ! -property_value: IAO:0000589 "thalamic eminence (teleost)" xsd:string -intersection_of: UBERON:0014912 ! thalamic eminence -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001462 ! -property_value: IAO:0000589 "somite border (teleost)" xsd:string -intersection_of: UBERON:0015178 ! somite border -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001359 ! -property_value: IAO:0000589 "pineal complex (teleost)" xsd:string -intersection_of: UBERON:0015238 ! pineal complex -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001360 ! -property_value: IAO:0000589 "parapineal organ (teleost)" xsd:string -intersection_of: UBERON:0015241 ! parapineal organ -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000415 ! -property_value: IAO:0000589 "esophageal-pneumatic duct sphincter (teleost)" xsd:string -intersection_of: UBERON:0016499 ! esophageal-pneumatic duct sphincter -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001379 ! -property_value: IAO:0000589 "pharyngeal ectoderm (teleost)" xsd:string -intersection_of: UBERON:0016545 ! pharyngeal ectoderm -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005255 ! -property_value: IAO:0000589 "actinopterygian frontal-parietal joint (teleost)" xsd:string -intersection_of: UBERON:0016631 ! actinopterygian frontal-parietal joint -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005028 ! -property_value: IAO:0000589 "ventral wall of dorsal aorta (teleost)" xsd:string -intersection_of: UBERON:0018549 ! ventral wall of dorsal aorta -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000229 ! -property_value: IAO:0000589 "olfactory tract linking bulb to ipsilateral dorsal telencephalon (teleost)" xsd:string -intersection_of: UBERON:0034730 ! olfactory tract linking bulb to ipsilateral dorsal telencephalon -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002199 ! -property_value: IAO:0000589 "hindbrain commissure (teleost)" xsd:string -intersection_of: UBERON:0034763 ! hindbrain commissure -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000235 ! -property_value: IAO:0000589 "magnocellular superficial pretectal nucleus (teleost)" xsd:string -intersection_of: UBERON:0035563 ! magnocellular superficial pretectal nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000406 ! -property_value: IAO:0000589 "parvocellular superficial pretectal nucleus (teleost)" xsd:string -intersection_of: UBERON:0035564 ! parvocellular superficial pretectal nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000631 ! -property_value: IAO:0000589 "caudal pretectal nucleus (teleost)" xsd:string -intersection_of: UBERON:0035565 ! caudal pretectal nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000635 ! -property_value: IAO:0000589 "central pretectal nucleus (teleost)" xsd:string -intersection_of: UBERON:0035566 ! central pretectal nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000714 ! -property_value: IAO:0000589 "accessory pretectal nucleus (teleost)" xsd:string -intersection_of: UBERON:0035567 ! accessory pretectal nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000601 ! -property_value: IAO:0000589 "periventricular pretectal nucleus (teleost)" xsd:string -intersection_of: UBERON:0035569 ! periventricular pretectal nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000404 ! -property_value: IAO:0000589 "paracommissural periventricular pretectal nucleus (teleost)" xsd:string -intersection_of: UBERON:0035577 ! paracommissural periventricular pretectal nucleus -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005043 ! -property_value: IAO:0000589 "mole (teleost)" xsd:string -intersection_of: UBERON:1000010 ! mole -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000120 ! -property_value: IAO:0000589 "lateral line ganglion (teleost)" xsd:string -intersection_of: UBERON:2000120 ! lateral line ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000202 ! -property_value: IAO:0000589 "efferent portion of pharyngeal arch artery (teleost)" xsd:string -intersection_of: UBERON:2000202 ! efferent portion of pharyngeal arch artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000551 ! -property_value: IAO:0000589 "nucleus lateralis valvulae (teleost)" xsd:string -intersection_of: UBERON:2000551 ! nucleus lateralis valvulae -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000603 ! -property_value: IAO:0000589 "valvula cerebelli (teleost)" xsd:string -intersection_of: UBERON:2000603 ! valvula cerebelli -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000648 ! -property_value: IAO:0000589 "dorsal fin musculature (teleost)" xsd:string -intersection_of: UBERON:2000648 ! dorsal fin musculature -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000677 ! -property_value: IAO:0000589 "segmental intercostal artery (teleost)" xsd:string -intersection_of: UBERON:2000677 ! segmental intercostal artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000716 ! -property_value: IAO:0000589 "afferent portion of pharyngeal arch artery (teleost)" xsd:string -intersection_of: UBERON:2000716 ! afferent portion of pharyngeal arch artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000815 ! -property_value: IAO:0000589 "nucleus of medial longitudinal fasciculus of medulla (teleost)" xsd:string -intersection_of: UBERON:2000815 ! nucleus of medial longitudinal fasciculus of medulla -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000939 ! -property_value: IAO:0000589 "middle lateral line neuromast (teleost)" xsd:string -intersection_of: UBERON:2000939 ! middle lateral line neuromast -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001025 ! -property_value: IAO:0000589 "occipital lateral line neuromast (teleost)" xsd:string -intersection_of: UBERON:2001025 ! occipital lateral line neuromast -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001026 ! -property_value: IAO:0000589 "supraorbital lateral line neuromast (teleost)" xsd:string -intersection_of: UBERON:2001026 ! supraorbital lateral line neuromast -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001053 ! -property_value: IAO:0000589 "future internal carotid artery (teleost)" xsd:string -intersection_of: UBERON:2001053 ! future internal carotid artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001062 ! -property_value: IAO:0000589 "presumptive mesencephalic artery (teleost)" xsd:string -intersection_of: UBERON:2001062 ! presumptive mesencephalic artery -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001269 ! -property_value: IAO:0000589 "regenerating fin/limb (teleost)" xsd:string -intersection_of: UBERON:2001269 ! regenerating fin/limb -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001312 ! -property_value: IAO:0000589 "dorsal anterior lateral line ganglion (teleost)" xsd:string -intersection_of: UBERON:2001312 ! dorsal anterior lateral line ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001316 ! -property_value: IAO:0000589 "anterior lateral line placode (teleost)" xsd:string -intersection_of: UBERON:2001316 ! anterior lateral line placode -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001388 ! -property_value: IAO:0000589 "epithelial mesenchymal boundary of regenerating fin/limb (teleost)" xsd:string -intersection_of: UBERON:2001388 ! epithelial mesenchymal boundary of regenerating fin/limb -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001389 ! -property_value: IAO:0000589 "regeneration epithelium of fin/limb (teleost)" xsd:string -intersection_of: UBERON:2001389 ! regeneration epithelium of fin/limb -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001391 ! -property_value: IAO:0000589 "anterior lateral line ganglion (teleost)" xsd:string -intersection_of: UBERON:2001391 ! anterior lateral line ganglion -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001468 ! -property_value: IAO:0000589 "anterior lateral line system (teleost)" xsd:string -intersection_of: UBERON:2001468 ! anterior lateral line system -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0001470 ! -property_value: IAO:0000589 "anterior lateral line (teleost)" xsd:string -intersection_of: UBERON:2001470 ! anterior lateral line -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005113 ! -property_value: IAO:0000589 "dorsal lateral line neuromast (teleost)" xsd:string -intersection_of: UBERON:2005113 ! dorsal lateral line neuromast -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005149 ! -property_value: IAO:0000589 "distal epidermal cap of regenerating fin/limb (teleost)" xsd:string -intersection_of: UBERON:2005149 ! distal epidermal cap of regenerating fin/limb -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005150 ! -property_value: IAO:0000589 "basal regeneration epithelium of regenerating fin/limb (teleost)" xsd:string -intersection_of: UBERON:2005150 ! basal regeneration epithelium of regenerating fin/limb -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005259 ! -property_value: IAO:0000589 "continuous capillary (teleost)" xsd:string -intersection_of: UBERON:2005259 ! continuous capillary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0005260 ! -property_value: IAO:0000589 "fenestrated capillary (teleost)" xsd:string -intersection_of: UBERON:2005260 ! fenestrated capillary -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0002253 ! -property_value: IAO:0000589 "actinopterygian pyloric caecum (teleost)" xsd:string -intersection_of: UBERON:4300174 ! actinopterygian pyloric caecum -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:0000263 ! -property_value: IAO:0000589 "precaudal vertebra (teleost)" xsd:string -intersection_of: UBERON:4300223 ! precaudal vertebra -intersection_of: part_of NCBITaxon:32443 - -[Term] -id: TAO:ENTITY -name: TAO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:32443 -relationship: only_in_taxon NCBITaxon:32443 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-tao.owl b/src/ontology/bridge/uberon-bridge-to-tao.owl deleted file mode 100644 index 3b4125adf9..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-tao.owl +++ /dev/null @@ -1,25911 +0,0 @@ - - - - - Paula Mabee - Wasila Dahdul - Uberon editors - Taxonomic equivalence axioms between TAO and Uberon. Note that TAO is in the process of being merged into the core Uberon, so this mapping will become deprecated - Uberon bridge to tao - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - artery (teleost) - TAO:0000005 - - - - - - - - - - - - - - - - - - - blood (teleost) - TAO:0000007 - - - - - - - - - - - - - - - - - - - brain (teleost) - TAO:0000008 - - - - - - - - - - - - - - - - - - - cardiac ventricle (teleost) - TAO:0000009 - - - - - - - - - - - - - - - - - - - cardiovascular system (teleost) - TAO:0000010 - - - - - - - - - - - - - - - - - - - caudal artery (teleost) - TAO:0000011 - - - - - - - - - - - - - - - - - - - central nervous system (teleost) - TAO:0000012 - - - - - - - - - - - - - - - - - - - cranial ganglion (teleost) - TAO:0000013 - - - - - - - - - - - - - - - - - - - dorsal aorta (teleost) - TAO:0000014 - - - - - - - - - - - - - - - - - - - palatine bone (teleost) - TAO:0000015 - - - - - - - - - - - - - - - - - - - ectoderm (teleost) - TAO:0000016 - - - - - - - - - - - - - - - - - - - endoderm (teleost) - TAO:0000017 - - - - - - - - - - - - - - - - - - - blastodisc derived epiblast (teleost) - TAO:0000018 - - - - - - - - - - - - - - - - - - - pineal body (teleost) - TAO:0000019 - - - - - - - - - - - - - - - - - - - extraembryonic structure (teleost) - TAO:0000020 - - - - - - - - - - - - - - - - - - - floor plate (teleost) - TAO:0000022 - - - - - - - - - - - - - - - - - - - ganglionic layer of retina (teleost) - TAO:0000024 - - - - - - - - - - - - - - - - - - - hatching gland (teleost) - TAO:0000026 - - - - - - - - - - - - - - - - - - - paired fin skeleton (teleost) - TAO:0000027 - - - - - - - - - - - - - - - - - - - heart primordium (teleost) - TAO:0000028 - - - - - - - - - - - - - - - - - - - hindbrain (teleost) - TAO:0000029 - - - - - - - - - - - - - - - - - - - macula of utricle of membranous labyrinth (teleost) - TAO:0000030 - - - - - - - - - - - - - - - - - - - hypochord (teleost) - TAO:0000031 - - - - - - - - - - - - - - - - - - - hypothalamus (teleost) - TAO:0000032 - - - - - - - - - - - - - - - - - - - lateral line system (teleost) - TAO:0000034 - - - - - - - - - - - - - - - - - - - lens of camera-type eye (teleost) - TAO:0000035 - - - - - - - - - - - - - - - - - - - hepatobiliary system (teleost) - TAO:0000036 - - - - - - - - - - - - - - - - - - - anatomical structure (teleost) - TAO:0000037 - - - - - - - - - - - - - - - - - - - marginal zone of embryo (teleost) - TAO:0000038 - - - - - - - - - - - - - - - - - - - mesoderm (teleost) - TAO:0000041 - - - - - - - - - - - - - - - - - - - midbrain-hindbrain boundary (teleost) - TAO:0000042 - - - - - - - - - - - - - - - - - - - - neural crest (teleost) - region of neural crest (teleost) - TAO:0000045 - - - - - - - - - - - - - - - - - - - retinal neural layer (teleost) - TAO:0000046 - - - - - - - - - - - - - - - - - - - nose (teleost) - TAO:0000047 - - - - - - - - - - - - - - - - - - - olfactory placode (teleost) - TAO:0000048 - - - - - - - - - - - - - - - - - - - optic recess of third ventricle (teleost) - TAO:0000049 - - - - - - - - - - - - - - - - - - - optic vesicle (teleost) - TAO:0000050 - - - - - - - - - - - - - - - - - - - ear vesicle (teleost) - TAO:0000051 - - - - - - - - - - - - - - - - - - - presumptive segmental plate (teleost) - TAO:0000053 - - - - - - - - - - - - - - - - - - - - pericardial sac (teleost) - pericardium (teleost) - TAO:0000054 - - - - - - - - - - - - - - - - - - - chordate pharynx (teleost) - TAO:0000056 - - - - - - - - - - - - - - - - - - - postoptic commissure (teleost) - TAO:0000059 - - - - - - - - - - - - - - - - - - - prechordal plate (teleost) - TAO:0000060 - - - - - - - - - - - - - - - - - - - future forebrain (teleost) - TAO:0000062 - - - - - - - - - - - - - - - - - - - presumptive neural plate (teleost) - TAO:0000063 - - - - - - - - - - - - - - - - - - - presumptive retinal pigmented epithelium (teleost) - TAO:0000064 - - - - - - - - - - - - - - - - - - - proctodeum (teleost) - TAO:0000066 - - - - - - - - - - - - - - - - - - - pronephric mesoderm (teleost) - TAO:0000067 - - - - - - - - - - - - - - - - - - - rhombomere 6 (teleost) - TAO:0000069 - - - - - - - - - - - - - - - - - - - primitive knot (teleost) - TAO:0000071 - - - - - - - - - - - - - - - - - - - spinal cord (teleost) - TAO:0000075 - - - - - - - - - - - - - - - - - - - swim bladder (teleost) - TAO:0000076 - - - - - - - - - - - - - - - - - - - post-anal tail bud (teleost) - TAO:0000077 - - - - - - - - - - - - - - - - - - - telencephalon (teleost) - TAO:0000079 - - - - - - - - - - - - - - - - - - - trigeminal neural crest (teleost) - TAO:0000080 - - - - - - - - - - - - - - - - - - - trunk mesenchyme (teleost) - TAO:0000081 - - - - - - - - - - - - - - - - - - - vein (teleost) - TAO:0000082 - - - - - - - - - - - - - - - - - - - pectoral appendage apical ectodermal ridge (teleost) - TAO:0000085 - - - - - - - - - - - - - - - - - - - enveloping layer of ectoderm (teleost) - TAO:0000086 - - - - - - - - - - - - - - - - - - - chordamesoderm (teleost) - TAO:0000091 - - - - - - - - - - - - - - - - - - - blood island (teleost) - TAO:0000094 - - - - - - - - - - - - - - - - - - - post-hyoid pharyngeal arch skeleton (teleost) - TAO:0000095 - - - - - - - - - - - - - - - - - - - carotid artery segment (teleost) - TAO:0000097 - - - - - - - - - - - - - - - - - - - vasculature of brain (teleost) - TAO:0000099 - - - - - - - - - - - - - - - - - - - cerebellum (teleost) - TAO:0000100 - - - - - - - - - - - - - - - - - - - diencephalon (teleost) - TAO:0000101 - - - - - - - - - - - - - - - - - - - skin epidermis (teleost) - TAO:0000105 - - - - - - - - - - - - - - - - - - - camera-type eye (teleost) - TAO:0000107 - - - - - - - - - - - - - - - - - - - fin (teleost) - TAO:0000108 - - - - - - - - - - - - - - - - - - - forebrain (teleost) - TAO:0000109 - - - - - - - - - - - - - - - - - - - fourth ventricle (teleost) - TAO:0000110 - - - - - - - - - - - - - - - - - - - germ ring (teleost) - TAO:0000111 - - - - - - - - - - - - - - - - - - - digestive tract (teleost) - TAO:0000112 - - - - - - - - - - - - - - - - - - - head mesenchyme (teleost) - TAO:0000113 - - - - - - - - - - - - - - - - - - - heart (teleost) - TAO:0000114 - - - - - - - - - - - - - - - - - - - heart rudiment (teleost) - TAO:0000115 - - - - - - - - - - - - - - - - - - - hypoblast (generic) (teleost) - TAO:0000117 - - - - - - - - - - - - - - - - - - - pituitary gland (teleost) - TAO:0000118 - - - - - - - - - - - - - - - - - - - inner nuclear layer of retina (teleost) - TAO:0000119 - - - - - - - - - - - - - - - - - - - lateral line ganglion (teleost) - TAO:0000120 - - - - - - - - - - - - - - - - - - - lateral plate mesoderm (teleost) - TAO:0000121 - - - - - - - - - - - - - - - - - - - lens placode (teleost) - TAO:0000122 - - - - - - - - - - - - - - - - - - - liver (teleost) - TAO:0000123 - - - - - - - - - - - - - - - - - - - liver primordium (teleost) - TAO:0000124 - - - - - - - - - - - - - - - - - - - bony vertebral centrum (teleost) - TAO:0000126 - - - - - - - - - - - - - - - - - - - midbrain (teleost) - TAO:0000128 - - - - - - - - - - - - - - - - - - - nasal cavity (teleost) - TAO:0000130 - - - - - - - - - - - - - - - - - - - neural keel (teleost) - TAO:0000131 - - - - - - - - - - - - - - - - - - - neural plate (teleost) - TAO:0000132 - - - - - - - - - - - - - - - - - - - neural rod (teleost) - TAO:0000133 - - - - - - - - - - - - - - - - - - - notochord (teleost) - TAO:0000135 - - - - - - - - - - - - - - - - - - - optic stalk (teleost) - TAO:0000137 - - - - - - - - - - - - - - - - - - - otic placode (teleost) - TAO:0000138 - - - - - - - - - - - - - - - - - - - pancreas (teleost) - TAO:0000140 - - - - - - - - - - - - - - - - - - - pectoral appendage bud (teleost) - TAO:0000141 - - - - - - - - - - - - - - - - - - - peripheral nervous system (teleost) - TAO:0000142 - - - - - - - - - - - - - - - - - - - photoreceptor layer of retina (teleost) - TAO:0000143 - - - - - - - - - - - - - - - - - - - pigmented layer of retina (teleost) - TAO:0000144 - - - - - - - - - - - - - - - - - - - white matter (teleost) - TAO:0000145 - - - - - - - - - - - - - - - - - - - future brain (teleost) - TAO:0000146 - - - - - - - - - - - - - - - - - - - presumptive midbrain (teleost) - TAO:0000148 - - - - - - - - - - - - - - - - - - - primitive heart tube (teleost) - TAO:0000149 - - - - - - - - - - - - - - - - - - - pronephric duct (teleost) - TAO:0000150 - - - - - - - - - - - - - - - - - - - pronephros (teleost) - TAO:0000151 - - - - - - - - - - - - - - - - - - - retina (teleost) - TAO:0000152 - - - - - - - - - - - - - - - - - - - rhombomere 8 (teleost) - TAO:0000153 - - - - - - - - - - - - - - - - - - - sinus venosus (teleost) - TAO:0000154 - - - - - - - - - - - - - - - - - - - somite (teleost) - TAO:0000155 - - - - - - - - - - - - - - - - - - - urostyle (teleost) - TAO:0000158 - - - - - - - - - - - - - - - - - - - midbrain cerebral aqueduct (teleost) - TAO:0000159 - - - - - - - - - - - - - - - - - - - midbrain tegmentum (teleost) - TAO:0000160 - - - - - - - - - - - - - - - - - - - third ventricle (teleost) - TAO:0000161 - - - - - - - - - - - - - - - - - - - trigeminal placode complex (teleost) - TAO:0000162 - - - - - - - - - - - - - - - - - - - renal system (teleost) - TAO:0000163 - - - - - - - - - - - - - - - - - - - crista of ampulla of lateral semicircular duct of membranous laybrinth (teleost) - TAO:0000166 - - - - - - - - - - - - - - - - - - - basisphenoid bone (teleost) - TAO:0000169 - - - - - - - - - - - - - - - - - - - basibranchial bone (teleost) - TAO:0000170 - - - - - - - - - - - - - - - - - - - chordate pharyngeal muscle (teleost) - TAO:0000172 - - - - - - - - - - - - - - - - - - - bulbus arteriosus (teleost) - TAO:0000173 - - - - - - - - - - - - - - - - - - - caudal root of abducens nerve (teleost) - TAO:0000179 - - - - - - - - - - - - - - - - - - - caudal vein (teleost) - TAO:0000180 - - - - - - - - - - - - - - - - - - - cleithrum (teleost) - TAO:0000184 - - - - - - - - - - - - - - - - - - - common cardinal vein (teleost) - TAO:0000186 - - - - - - - - - - - - - - - - - - - otic region (teleost) - TAO:0000189 - - - - - - - - - - - - - - - - - - - ganglion (teleost) - TAO:0000190 - - - - - - - - - - - - - - - - - - - dentary (teleost) - TAO:0000191 - - - - - - - - - - - - - - - - - - - trigeminal nerve root (teleost) - TAO:0000192 - - - - - - - - - - - - - - - - - - - dorsal root ganglion (teleost) - TAO:0000200 - - - - - - - - - - - - - - - - - - - efferent portion of pharyngeal arch artery (teleost) - TAO:0000202 - - - - - - - - - - - - - - - - - - - esophagus (teleost) - TAO:0000204 - - - - - - - - - - - - - - - - - - - facial motor nucleus (teleost) - TAO:0000206 - - - - - - - - - - - - - - - - - - - appendage musculature (teleost) - TAO:0000207 - - - - - - - - - - - - - - - - - - - gallbladder (teleost) - TAO:0000208 - - - - - - - - - - - - - - - - - - - habenula (teleost) - TAO:0000213 - - - - - - - - - - - - - - - - - - - inferior olivary complex (teleost) - TAO:0000215 - - - - - - - - - - - - - - - - - - - internal ear (teleost) - TAO:0000217 - - - - - - - - - - - - - - - - - - - intermediate reticular formation (teleost) - TAO:0000219 - - - - - - - - - - - - - - - - - - - lateral semicircular canal (teleost) - TAO:0000220 - - - - - - - - - - - - - - - - - - - lateral hypothalamic nucleus (teleost) - TAO:0000227 - - - - - - - - - - - - - - - - - - - olfactory tract linking bulb to ipsilateral dorsal telencephalon (teleost) - TAO:0000229 - - - - - - - - - - - - - - - - - - - lateral recess of third ventricle (teleost) - TAO:0000231 - - - - - - - - - - - - - - - - - - - magnocellular superficial pretectal nucleus (teleost) - TAO:0000235 - - - - - - - - - - - - - - - - - - - jaw muscle (teleost) - TAO:0000236 - - - - - - - - - - - - - - - - - - - male organism (teleost) - TAO:0000242 - - - - - - - - - - - - - - - - - - - neuromast (teleost) - TAO:0000243 - - - - - - - - - - - - - - - - - - - parvocellular oculomotor nucleus (teleost) - TAO:0000244 - - - - - - - - - - - - - - - - - - - vestibulocochlear nerve (teleost) - TAO:0000247 - - - - - - - - - - - - - - - - - - - olfactory nerve (teleost) - TAO:0000249 - - - - - - - - - - - - - - - - - - - optic tract (teleost) - TAO:0000252 - - - - - - - - - - - - - - - - - - - orbitosphenoid (teleost) - TAO:0000253 - - - - - - - - - - - - - - - - - - - pancreas primordium (teleost) - TAO:0000254 - - - - - - - - - - - - - - - - - - - paraxial mesoderm (teleost) - TAO:0000255 - - - - - - - - - - - - - - - - - - - pectoral appendage cartilage tissue (teleost) - TAO:0000257 - - - - - - - - - - - - - - - - - - - pelvic appendage musculature (teleost) - TAO:0000258 - - - - - - - - - - - - - - - - - - - periventricular nucleus (teleost) - TAO:0000260 - - - - - - - - - - - - - - - - - - - posterior semicircular canal (teleost) - TAO:0000262 - - - - - - - - - - - - - - - - - - - precaudal vertebra (teleost) - TAO:0000263 - - - - - - - - - - - - - - - - - - - maxilla (teleost) - TAO:0000270 - - - - - - - - - - - - - - - - - - - respiratory system (teleost) - TAO:0000272 - - - - - - - - - - - - - - - - - - - ventral tegmental nucleus (teleost) - TAO:0000275 - - - - - - - - - - - - - - - - - - - dermal scale (teleost) - TAO:0000277 - - - - - - - - - - - - - - - - - - - presomitic mesoderm (teleost) - TAO:0000279 - - - - - - - - - - - - - - - - - - - sensory system (teleost) - TAO:0000282 - - - - - - - - - - - - - - - - - - - sphenoid region (teleost) - TAO:0000290 - - - - - - - - - - - - - - - - - - - surface structure (teleost) - TAO:0000292 - - - - - - - - - - - - - - - - - - - trigeminal ganglion (teleost) - TAO:0000295 - - - - - - - - - - - - - - - - - - - medial rectus extraocular muscle (teleost) - TAO:0000301 - - - - - - - - - - - - - - - - - - - female organism (teleost) - TAO:0000303 - - - - - - - - - - - - - - - - - - - ventral part of telencephalon (teleost) - TAO:0000304 - - - - - - - - - - - - - - - - - - - ventral lateral nucleus of thalamus (teleost) - TAO:0000306 - - - - - - - - - - - - - - - - - - - vomer (teleost) - TAO:0000308 - - - - - - - - - - - - - - - - - - - abducens nerve (teleost) - TAO:0000310 - - - - - - - - - - - - - - - - - - - mesencephalic nucleus of trigeminal nerve (teleost) - TAO:0000312 - - - - - - - - - - - - - - - - - - - anterior semicircular canal (teleost) - TAO:0000314 - - - - - - - - - - - - - - - - - - - basihyal bone (teleost) - TAO:0000316 - - - - - - - - - - - - - - - - - - - postcranial axial skeleton (teleost) - TAO:0000317 - - - - - - - - - - - - - - - - - - - posterior commissure (teleost) - TAO:0000320 - - - - - - - - - - - - - - - - - - - mesethmoid bone (teleost) - TAO:0000323 - - - - - - - - - - - - - - - - - - - posterior nucleus of thalamus (teleost) - TAO:0000325 - - - - - - - - - - - - - - - - - - - caudal vertebra (teleost) - TAO:0000326 - - - - - - - - - - - - - - - - - - - intermediate layer of superior colliculus (teleost) - TAO:0000327 - - - - - - - - - - - - - - - - - - - craniocervical region musculature (teleost) - TAO:0000328 - - - - - - - - - - - - - - - - - - - egg chorion (teleost) - TAO:0000329 - - - - - - - - - - - - - - - - - - - cloacal lumen (teleost) - TAO:0000330 - - - - - - - - - - - - - - - - - - - coracoid bone (teleost) - TAO:0000332 - - - - - - - - - - - - - - - - - - - mesovarium (teleost) - TAO:0000333 - - - - - - - - - - - - - - - - - - - mammillary body (teleost) - TAO:0000334 - - - - - - - - - - - - - - - - - - - diencephalic white matter (teleost) - TAO:0000338 - - - - - - - - - - - - - - - - - - - digestive system (teleost) - TAO:0000339 - - - - - - - - - - - - - - - - - - - middle lateral line (teleost) - TAO:0000344 - - - - - - - - - - - - - - - - - - - superior rectus extraocular muscle (teleost) - TAO:0000345 - - - - - - - - - - - - - - - - - - - dorsal tegmental nucleus (teleost) - TAO:0000346 - - - - - - - - - - - - - - - - - - - olfactory region (teleost) - TAO:0000351 - - - - - - - - - - - - - - - - - - - habenulo-interpeduncular tract (teleost) - TAO:0000353 - - - - - - - - - - - - - - - - - - - pharyngeal arch derived gill (teleost) - TAO:0000354 - - - - - - - - - - - - - - - - - - - roof plate of midbrain (teleost) - TAO:0000355 - - - - - - - - - - - - - - - - - - - olfactory bulb glomerular layer (teleost) - TAO:0000357 - - - - - - - - - - - - - - - - - - - habenular commissure (teleost) - TAO:0000359 - - - - - - - - - - - - - - - - - - - heart tube (teleost) - TAO:0000360 - - - - - - - - - - - - - - - - - - - nasal bone (teleost) - TAO:0000365 - - - - - - - - - - - - - - - - - - - dorsal raphe nucleus (teleost) - TAO:0000366 - - - - - - - - - - - - - - - - - - - skeletal joint (teleost) - TAO:0000367 - - - - - - - - - - - - - - - - - - - integument (teleost) - TAO:0000368 - - - - - - - - - - - - - - - - - - - intermandibularis (teleost) - TAO:0000369 - - - - - - - - - - - - - - - - - - - ventral intermediate nucleus of thalamus (teleost) - TAO:0000370 - - - - - - - - - - - - - - - - - - - cochlea (teleost) - TAO:0000374 - - - - - - - - - - - - - - - - - - - nucleus of lateral lemniscus (teleost) - TAO:0000380 - - - - - - - - - - - - - - - - - - - acellular anatomical structure (teleost) - TAO:0000382 - - - - - - - - - - - - - - - - - - - lateral rectus extra-ocular muscle (teleost) - TAO:0000383 - - - - - - - - - - - - - - - - - - - lymphoid system (teleost) - TAO:0000385 - - - - - - - - - - - - - - - - - - - macula (teleost) - TAO:0000386 - - - - - - - - - - - - - - - - - - - lateral pallium (teleost) - TAO:0000391 - - - - - - - - - - - - - - - - - - - mesenchyme (teleost) - TAO:0000393 - - - - - - - - - - - - - - - - - - - nervous system (teleost) - TAO:0000396 - - - - - - - - - - - - - - - - - - - occipital lateral line (teleost) - TAO:0000400 - - - - - - - - - - - - - - - - - - - olfactory bulb (teleost) - TAO:0000402 - - - - - - - - - - - - - - - - - - - ovary (teleost) - TAO:0000403 - - - - - - - - - - - - - - - - - - - paracommissural periventricular pretectal nucleus (teleost) - TAO:0000404 - - - - - - - - - - - - - - - - - - - oculomotor nerve (teleost) - TAO:0000405 - - - - - - - - - - - - - - - - - - - parvocellular superficial pretectal nucleus (teleost) - TAO:0000406 - - - - - - - - - - - - - - - - - - - pectoral girdle skeleton (teleost) - TAO:0000407 - - - - - - - - - - - - - - - - - - - gonad (teleost) - TAO:0000413 - - - - - - - - - - - - - - - - - - - esophageal-pneumatic duct sphincter (teleost) - TAO:0000415 - - - - - - - - - - - - - - - - - - - presumptive endoderm (teleost) - TAO:0000416 - - - - - - - - - - - - - - - - - - - future spinal cord (teleost) - TAO:0000417 - - - - - - - - - - - - - - - - - - - pretectal region (teleost) - TAO:0000418 - - - - - - - - - - - - - - - - - - - renal artery (teleost) - TAO:0000420 - - - - - - - - - - - - - - - - - - - medullary reticular formation (teleost) - TAO:0000421 - - - - - - - - - - - - - - - - - - - anterior cardinal vein (teleost) - TAO:0000423 - - - - - - - - - - - - - - - - - - - anterior nuclear group (teleost) - TAO:0000427 - - - - - - - - - - - - - - - - - - - saccule of membranous labyrinth (teleost) - TAO:0000428 - - - - - - - - - - - - - - - - - - - semicircular canal (teleost) - TAO:0000431 - - - - - - - - - - - - - - - - - - - trigeminal sensory nucleus (teleost) - TAO:0000433 - - - - - - - - - - - - - - - - - - - skeletal system (teleost) - TAO:0000434 - - - - - - - - - - - - - - - - - - - cranial nerve II (teleost) - TAO:0000435 - - - - - - - - - - - - - - - - - - - spleen (teleost) - TAO:0000436 - - - - - - - - - - - - - - - - - - - suprachiasmatic nucleus (teleost) - TAO:0000441 - - - - - - - - - - - - - - - - - - - supraorbital lateral line (teleost) - TAO:0000443 - - - - - - - - - - - - - - - - - - - suspensorium (teleost) - TAO:0000444 - - - - - - - - - - - - - - - - - - - superior colliculus (teleost) - TAO:0000445 - - - - - - - - - - - - - - - - - - - tectobulbar tract (teleost) - TAO:0000446 - - - - - - - - - - - - - - - - - - - tela choroidea (teleost) - TAO:0000447 - - - - - - - - - - - - - - - - - - - trochlear nucleus (teleost) - TAO:0000450 - - - - - - - - - - - - - - - - - - - vagus nerve (teleost) - TAO:0000453 - - - - - - - - - - - - - - - - - - - inferior rectus extraocular muscle (teleost) - TAO:0000457 - - - - - - - - - - - - - - - - - - - ventral thalamus (teleost) - TAO:0000458 - - - - - - - - - - - - - - - - - - - pharyngeal adductor (teleost) - TAO:0000463 - - - - - - - - - - - - - - - - - - - articular/anguloarticular (teleost) - TAO:0000467 - - - - - - - - - - - - - - - - - - - preoptic area (teleost) - TAO:0000470 - - - - - - - - - - - - - - - - - - - cardiac atrium (teleost) - TAO:0000471 - - - - - - - - - - - - - - - - - - - basioccipital bone (teleost) - TAO:0000472 - - - - - - - - - - - - - - - - - - - skeletal muscle of trunk (teleost) - TAO:0000473 - - - - - - - - - - - - - - - - - - - posterior cardinal vein (teleost) - TAO:0000477 - - - - - - - - - - - - - - - - - - - actinopterygian parietal bone (teleost) - TAO:0000486 - - - - - - - - - - - - - - - - - - - cerebellar commissure (teleost) - TAO:0000490 - - - - - - - - - - - - - - - - - - - deep white layer of superior colliculus (teleost) - TAO:0000494 - - - - - - - - - - - - - - - - - - - compound organ (teleost) - TAO:0000496 - - - - - - - - - - - - - - - - - - - dorsal funiculus of spinal cord (teleost) - TAO:0000501 - - - - - - - - - - - - - - - - - - - pallium (teleost) - TAO:0000505 - - - - - - - - - - - - - - - - - - - dorsal pallium (teleost) - TAO:0000506 - - - - - - - - - - - - - - - - - - - epithalamus (teleost) - TAO:0000509 - - - - - - - - - - - - - - - - - - - extra-ocular muscle (teleost) - TAO:0000511 - - - - - - - - - - - - - - - - - - - actinopterygian frontal bone (teleost) - TAO:0000514 - - - - - - - - - - - - - - - - - - - central gray substance of midbrain (teleost) - TAO:0000518 - - - - - - - - - - - - - - - - - - - hemal arch (teleost) - TAO:0000519 - - - - - - - - - - - - - - - - - - - hyoid muscle (teleost) - TAO:0000521 - - - - - - - - - - - - - - - - - - - infraorbital lateral line (teleost) - TAO:0000524 - - - - - - - - - - - - - - - - - - - mesonephros (teleost) - TAO:0000529 - - - - - - - - - - - - - - - - - - - spinal cord lateral column (teleost) - TAO:0000531 - - - - - - - - - - - - - - - - - - - lateral funiculus of spinal cord (teleost) - TAO:0000533 - - - - - - - - - - - - - - - - - - - lateral reticular nucleus (teleost) - TAO:0000535 - - - - - - - - - - - - - - - - - - - medial pallium (teleost) - TAO:0000536 - - - - - - - - - - - - - - - - - - - levator operculi (teleost) - TAO:0000537 - - - - - - - - - - - - - - - - - - - rib (teleost) - TAO:0000538 - - - - - - - - - - - - - - - - - - - locus ceruleus (teleost) - TAO:0000539 - - - - - - - - - - - - - - - - - - - medial longitudinal fasciculus (teleost) - TAO:0000543 - - - - - - - - - - - - - - - - - - - medulla oblongata (teleost) - TAO:0000545 - - - - - - - - - - - - - - - - - - - mesonephric duct (teleost) - TAO:0000546 - - - - - - - - - - - - - - - - - - - mouth (teleost) - TAO:0000547 - - - - - - - - - - - - - - - - - - - musculature (teleost) - TAO:0000548 - - - - - - - - - - - - - - - - - - - external naris (teleost) - TAO:0000550 - - - - - - - - - - - - - - - - - - - nucleus lateralis valvulae (teleost) - TAO:0000551 - - - - - - - - - - - - - - - - - - - red nucleus (teleost) - TAO:0000552 - - - - - - - - - - - - - - - - - - - oculomotor nuclear complex (teleost) - TAO:0000553 - - - - - - - - - - - - - - - - - - - olfactory epithelium (teleost) - TAO:0000554 - - - - - - - - - - - - - - - - - - - optic chiasma (teleost) - TAO:0000556 - - - - - - - - - - - - - - - - - - - otolith organ (teleost) - TAO:0000559 - - - - - - - - - - - - - - - - - - - oviduct (teleost) - TAO:0000560 - - - - - - - - - - - - - - - - - - - parasphenoid (teleost) - TAO:0000561 - - - - - - - - - - - - - - - - - - - pectoral appendage musculature (teleost) - TAO:0000563 - - - - - - - - - - - - - - - - - - - pelvic girdle skeleton (teleost) - TAO:0000565 - - - - - - - - - - - - - - - - - - - crista of ampulla of posterior semicircular duct of membranous laybrinth (teleost) - TAO:0000566 - - - - - - - - - - - - - - - - - - - premaxilla (teleost) - TAO:0000567 - - - - - - - - - - - - - - - - - - - presumptive blood (teleost) - TAO:0000568 - - - - - - - - - - - - - - - - - - - presumptive hindbrain (teleost) - TAO:0000569 - - - - - - - - - - - - - - - - - - - eye primordium (teleost) - TAO:0000570 - - - - - - - - - - - - - - - - - - - future telencephalon (teleost) - TAO:0000571 - - - - - - - - - - - - - - - - - - - future diencephalon (teleost) - TAO:0000574 - - - - - - - - - - - - - - - - - - - prootic bone (teleost) - TAO:0000575 - - - - - - - - - - - - - - - - - - - renal portal vein (teleost) - TAO:0000577 - - - - - - - - - - - - - - - - - - - ceratohyal bone (teleost) - TAO:0000578 - - - - - - - - - - - - - - - - - - - scapula (teleost) - TAO:0000583 - - - - - - - - - - - - - - - - - - - vestibulocochlear ganglion (teleost) - TAO:0000588 - - - - - - - - - - - - - - - - - - - mouth (teleost) - TAO:0000590 - - - - - - - - - - - - - - - - - - - presumptive paraxial mesoderm (teleost) - TAO:0000591 - - - - - - - - - - - - - - - - - - - supraoccipital bone (teleost) - TAO:0000595 - - - - - - - - - - - - - - - - - - - white matter of telencephalon (teleost) - TAO:0000597 - - - - - - - - - - - - - - - - - - - testis (teleost) - TAO:0000598 - - - - - - - - - - - - - - - - - - - trochlear nerve (teleost) - TAO:0000600 - - - - - - - - - - - - - - - - - - - periventricular pretectal nucleus (teleost) - TAO:0000601 - - - - - - - - - - - - - - - - - - - valvula cerebelli (teleost) - TAO:0000603 - - - - - - - - - - - - - - - - - - - ventral aorta (teleost) - TAO:0000604 - - - - - - - - - - - - - - - - - - - ventral funiculus of spinal cord (teleost) - TAO:0000605 - - - - - - - - - - - - - - - - - - - jaw depressor muscle (teleost) - TAO:0000612 - - - - - - - - - - - - - - - - - - - crista of ampulla of anterior semicircular duct of membranous laybrinth (teleost) - TAO:0000619 - - - - - - - - - - - - - - - - - - - quadrate bone (teleost) - TAO:0000621 - - - - - - - - - - - - - - - - - - - caudal pretectal nucleus (teleost) - TAO:0000631 - - - - - - - - - - - - - - - - - - - reproductive system (teleost) - TAO:0000632 - - - - - - - - - - - - - - - - - - - central pretectal nucleus (teleost) - TAO:0000635 - - - - - - - - - - - - - - - - - - - cornea (teleost) - TAO:0000640 - - - - - - - - - - - - - - - - - - - cranial nerve (teleost) - TAO:0000641 - - - - - - - - - - - - - - - - - - - dorsal fin musculature (teleost) - TAO:0000648 - - - - - - - - - - - - - - - - - - - dorsal horn of spinal cord (teleost) - TAO:0000649 - - - - - - - - - - - - - - - - - - - motor root of trigeminal nerve (teleost) - TAO:0000650 - - - - - - - - - - - - - - - - - - - dorsal root of spinal cord (teleost) - TAO:0000652 - - - - - - - - - - - - - - - - - - - dorsal thalamus (teleost) - TAO:0000653 - - - - - - - - - - - - - - - - - - - ectopterygoid bone (teleost) - TAO:0000656 - - - - - - - - - - - - - - - - - - - exoccipital bone (teleost) - TAO:0000661 - - - - - - - - - - - - - - - - - - - facial nerve (teleost) - TAO:0000664 - - - - - - - - - - - - - - - - - - - rostral root of abducens nerve (teleost) - TAO:0000665 - - - - - - - - - - - - - - - - - - - gill filament (teleost) - TAO:0000667 - - - - - - - - - - - - - - - - - - - glossopharyngeal nerve (teleost) - TAO:0000668 - - - - - - - - - - - - - - - - - - - head kidney (teleost) - TAO:0000669 - - - - - - - - - - - - - - - - - - - hepatic vein (teleost) - TAO:0000670 - - - - - - - - - - - - - - - - - - - horizontal septum (teleost) - TAO:0000671 - - - - - - - - - - - - - - - - - - - - hyomandibular bone (teleost) - hyomandibular element (teleost) - TAO:0000672 - - - - - - - - - - - - - - - - - - - segmental intercostal artery (teleost) - TAO:0000677 - - - - - - - - - - - - - - - - - - - sensory root of facial nerve (teleost) - TAO:0000679 - - - - - - - - - - - - - - - - - - - sinoatrial valve (teleost) - TAO:0000680 - - - - - - - - - - - - - - - - - - - postzygapophysis (teleost) - TAO:0000681 - - - - - - - - - - - - - - - - - - - spinal artery (teleost) - TAO:0000682 - - - - - - - - - - - - - - - - - - - subcommissural organ (teleost) - TAO:0000683 - - - - - - - - - - - - - - - - - - - commissure of superior colliculus (teleost) - TAO:0000684 - - - - - - - - - - - - - - - - - - - superficial layer of superior colliculus (teleost) - TAO:0000686 - - - - - - - - - - - - - - - - - - - telencephalic ventricle (teleost) - TAO:0000696 - - - - - - - - - - - - - - - - - - - trigeminal nerve (teleost) - TAO:0000697 - - - - - - - - - - - - - - - - - - - utricle of membranous labyrinth (teleost) - TAO:0000700 - - - - - - - - - - - - - - - - - - - ventral horn of spinal cord (teleost) - TAO:0000702 - - - - - - - - - - - - - - - - - - - ventral root of spinal cord (teleost) - TAO:0000705 - - - - - - - - - - - - - - - - - - - colon (teleost) - TAO:0000706 - - - - - - - - - - - - - - - - - - - vestibulospinal tract (teleost) - TAO:0000709 - - - - - - - - - - - - - - - - - - - abducens nucleus (teleost) - TAO:0000713 - - - - - - - - - - - - - - - - - - - accessory pretectal nucleus (teleost) - TAO:0000714 - - - - - - - - - - - - - - - - - - - afferent portion of pharyngeal arch artery (teleost) - TAO:0000716 - - - - - - - - - - - - - - - - - - - pectoral appendage apical ectodermal ridge (teleost) - TAO:0000736 - - - - - - - - - - - - - - - - - - - cranial skeletal system (teleost) - TAO:0000737 - - - - - - - - - - - - - - - - - - - superior oblique extraocular muscle (teleost) - TAO:0000738 - - - - - - - - - - - - - - - - - - - midbrain basal plate (teleost) - TAO:0000761 - - - - - - - - - - - - - - - - - - - facio-acoustic neural crest (teleost) - TAO:0000762 - - - - - - - - - - - - - - - - - - - rhombomere 2 floor plate (teleost) - TAO:0000763 - - - - - - - - - - - - - - - - - - - rhombomere 5 floor plate (teleost) - TAO:0000764 - - - - - - - - - - - - - - - - - - - rhombomere 8 floor plate (teleost) - TAO:0000765 - - - - - - - - - - - - - - - - - - - diencephalon lateral wall (teleost) - TAO:0000780 - - - - - - - - - - - - - - - - - - - rhombomere 1 lateral wall (teleost) - TAO:0000781 - - - - - - - - - - - - - - - - - - - rhombomere 4 lateral wall (teleost) - TAO:0000782 - - - - - - - - - - - - - - - - - - - rhombomere 7 lateral wall (teleost) - TAO:0000783 - - - - - - - - - - - - - - - - - - - telencephalon lateral wall (teleost) - TAO:0000785 - - - - - - - - - - - - - - - - - - - medial migration pathway NC-derived mesenchyme (teleost) - TAO:0000786 - - - - - - - - - - - - - - - - - - - mesenchyme derived from head neural crest (teleost) - TAO:0000787 - - - - - - - - - - - - - - - - - - - pectoral appendage bud mesenchyme (teleost) - TAO:0000789 - - - - - - - - - - - - - - - - - - - diencephalon neural crest (teleost) - TAO:0000811 - - - - - - - - - - - - - - - - - - - telencephalon neural crest (teleost) - TAO:0000812 - - - - - - - - - - - - - - - - - - - nucleus of medial longitudinal fasciculus of medulla (teleost) - TAO:0000815 - - - - - - - - - - - - - - - - - - - oral epithelium (teleost) - TAO:0000816 - - - - - - - - - - - - - - - - - - - vagal neural crest (teleost) - TAO:0000818 - - - - - - - - - - - - - - - - - - - rhombomere 2 (teleost) - TAO:0000822 - - - - - - - - - - - - - - - - - - - rhombomere 5 (teleost) - TAO:0000823 - - - - - - - - - - - - - - - - - - - rhombomere 2 roof plate (teleost) - TAO:0000824 - - - - - - - - - - - - - - - - - - - rhombomere 6 roof plate (teleost) - TAO:0000825 - - - - - - - - - - - - - - - - - - - rhombomere 5 roof plate (teleost) - TAO:0000828 - - - - - - - - - - - - - - - - - - - inferior oblique extraocular muscle (teleost) - TAO:0000861 - - - - - - - - - - - - - - - - - - - dermatocranium (teleost) - TAO:0000863 - - - - - - - - - - - - - - - - - - - floor plate of diencephalon (teleost) - TAO:0000871 - - - - - - - - - - - - - - - - - - - facial neural crest (teleost) - TAO:0000875 - - - - - - - - - - - - - - - - - - - rhombomere 1 floor plate (teleost) - TAO:0000882 - - - - - - - - - - - - - - - - - - - rhombomere 3 floor plate (teleost) - TAO:0000888 - - - - - - - - - - - - - - - - - - - rhombomere 6 floor plate (teleost) - TAO:0000889 - - - - - - - - - - - - - - - - - - - floor plate spinal cord region (teleost) - TAO:0000890 - - - - - - - - - - - - - - - - - - - rhombomere 4 floor plate (teleost) - TAO:0000893 - - - - - - - - - - - - - - - - - - - interpeduncular nucleus (teleost) - TAO:0000903 - - - - - - - - - - - - - - - - - - - rhombomere 7 floor plate (teleost) - TAO:0000904 - - - - - - - - - - - - - - - - - - - lateral mesenchyme derived from mesoderm (teleost) - TAO:0000905 - - - - - - - - - - - - - - - - - - - midbrain lateral wall (teleost) - TAO:0000906 - - - - - - - - - - - - - - - - - - - rhombomere 2 lateral wall (teleost) - TAO:0000907 - - - - - - - - - - - - - - - - - - - rhombomere 5 lateral wall (teleost) - TAO:0000908 - - - - - - - - - - - - - - - - - - - rhombomere 8 lateral wall (teleost) - TAO:0000909 - - - - - - - - - - - - - - - - - - - floor plate of telencephalon (teleost) - TAO:0000914 - - - - - - - - - - - - - - - - - - - mesencephalic neural crest (teleost) - TAO:0000935 - - - - - - - - - - - - - - - - - - - central canal of spinal cord (teleost) - TAO:0000938 - - - - - - - - - - - - - - - - - - - middle lateral line neuromast (teleost) - TAO:0000939 - - - - - - - - - - - - - - - - - - - pectoral fin skeleton (teleost) - TAO:0000943 - - - - - - - - - - - - - - - - - - - posterior lateral line (teleost) - TAO:0000944 - - - - - - - - - - - - - - - - - - - rhombomere 3 (teleost) - TAO:0000948 - - - - - - - - - - - - - - - - - - - rhombomere 7 (teleost) - TAO:0000949 - - - - - - - - - - - - - - - - - - - rhombomere 3 roof plate (teleost) - TAO:0000950 - - - - - - - - - - - - - - - - - - - rhombomere 7 roof plate (teleost) - TAO:0000951 - - - - - - - - - - - - - - - - - - - intermediate mesenchyme (teleost) - TAO:0000990 - - - - - - - - - - - - - - - - - - - lateral migration pathway NC-derived mesenchyme (teleost) - TAO:0000992 - - - - - - - - - - - - - - - - - - - rhombomere 3 lateral wall (teleost) - TAO:0000994 - - - - - - - - - - - - - - - - - - - rhombomere 6 lateral wall (teleost) - TAO:0000995 - - - - - - - - - - - - - - - - - - - spinal cord lateral wall (teleost) - TAO:0000996 - - - - - - - - - - - - - - - - - - - head mesenchyme from mesoderm (teleost) - TAO:0000998 - - - - - - - - - - - - - - - - - - - mesenchyme derived from trunk neural crest (teleost) - TAO:0000999 - - - - - - - - - - - - - - - - - - - mesenchyme pectoral fin (teleost) - TAO:0001000 - - - - - - - - - - - - - - - - - - - trunk neural crest (teleost) - TAO:0001024 - - - - - - - - - - - - - - - - - - - occipital lateral line neuromast (teleost) - TAO:0001025 - - - - - - - - - - - - - - - - - - - supraorbital lateral line neuromast (teleost) - TAO:0001026 - - - - - - - - - - - - - - - - - - - oral cavity (teleost) - TAO:0001027 - - - - - - - - - - - - - - - - - - - inner limiting layer of retina (teleost) - TAO:0001029 - - - - - - - - - - - - - - - - - - - rhombomere 1 (teleost) - TAO:0001031 - - - - - - - - - - - - - - - - - - - rhombomere 4 (teleost) - TAO:0001032 - - - - - - - - - - - - - - - - - - - rhombomere 1 roof plate (teleost) - TAO:0001033 - - - - - - - - - - - - - - - - - - - rhombomere 4 roof plate (teleost) - TAO:0001034 - - - - - - - - - - - - - - - - - - - rhombomere 8 roof plate (teleost) - TAO:0001035 - - - - - - - - - - - - - - - - - - - future internal carotid artery (teleost) - TAO:0001053 - - - - - - - - - - - - - - - - - - - myotome (teleost) - TAO:0001056 - - - - - - - - - - - - - - - - - - - intersomitic vein (teleost) - TAO:0001057 - - - - - - - - - - - - - - - - - - - intersomitic artery (teleost) - TAO:0001061 - - - - - - - - - - - - - - - - - - - presumptive mesencephalic artery (teleost) - TAO:0001062 - - - - - - - - - - - - - - - - - - - rhombomere (teleost) - TAO:0001064 - - - - - - - - - - - - - - - - - - - neural arch (teleost) - TAO:0001066 - - - - - - - - - - - - - - - - - - - anterior cerebral vein (teleost) - TAO:0001067 - - - - - - - - - - - - - - - - - - - mesencephalic artery (teleost) - TAO:0001068 - - - - - - - - - - - - - - - - - - - presumptive pronephric mesoderm (teleost) - TAO:0001070 - - - - - - - - - - - - - - - - - - - presumptive neural retina (teleost) - TAO:0001071 - - - - - - - - - - - - - - - - - - - thyroid follicle (teleost) - TAO:0001072 - - - - - - - - - - - - - - - - - - - taste bud (teleost) - TAO:0001074 - - - - - - - - - - - - - - - - - - - ventricular system choroidal fissure (teleost) - TAO:0001075 - - - - - - - - - - - - - - - - - - - thymus primordium (teleost) - TAO:0001077 - - - - - - - - - - - - - - - - - - - thymus (teleost) - TAO:0001078 - - - - - - - - - - - - - - - - - - - blood vasculature (teleost) - TAO:0001079 - - - - - - - - - - - - - - - - - - - sclerotome (teleost) - TAO:0001080 - - - - - - - - - - - - - - - - - - - thyroid primordium (teleost) - TAO:0001081 - - - - - - - - - - - - - - - - - - - chordo neural hinge (teleost) - TAO:0001082 - - - - - - - - - - - - - - - - - - - ventricular zone (teleost) - TAO:0001083 - - - - - - - - - - - - - - - - - - - epaxial myotome region (teleost) - TAO:0001084 - - - - - - - - - - - - - - - - - - - hypaxial myotome region (teleost) - TAO:0001085 - - - - - - - - - - - - - - - - - - - multicellular organism (teleost) - TAO:0001094 - - - - - - - - - - - - - - - - - - - bile duct (teleost) - TAO:0001100 - - - - - - - - - - - - - - - - - - - gustatory system (teleost) - TAO:0001101 - - - - - - - - - - - - - - - - - - - early pharyngeal endoderm (teleost) - TAO:0001104 - - - - - - - - - - - - - - - - - - - embryonic structure (teleost) - TAO:0001105 - - - - - - - - - - - - - - - - - - - pharyngeal pouch (teleost) - TAO:0001106 - - - - - - - - - - - - - - - - - - - pharyngeal gill precursor (teleost) - TAO:0001107 - - - - - - - - - - - - - - - - - - - anterior commissure (teleost) - TAO:0001108 - - - - - - - - - - - - - - - - - - - ovarian follicle (teleost) - TAO:0001110 - - - - - - - - - - - - - - - - - - - zona pellucida (teleost) - TAO:0001111 - - - - - - - - - - - - - - - - - - - granulosa cell layer (teleost) - TAO:0001112 - - - - - - - - - - - - - - - - - - - theca cell layer (teleost) - TAO:0001113 - - - - - - - - - - - - - - - - - - - head (teleost) - TAO:0001114 - - - - - - - - - - - - - - - - - - - trunk (teleost) - TAO:0001115 - - - - - - - - - - - - - - - - - - - presumptive structure (teleost) - TAO:0001116 - - - - - - - - - - - - - - - - - - - post-anal tail (teleost) - TAO:0001117 - - - - - - - - - - - - - - - - - - - dermis (teleost) - TAO:0001119 - - - - - - - - - - - - - - - - - - - neurectoderm (teleost) - TAO:0001120 - - - - - - - - - - - - - - - - - - - presumptive shield (teleost) - TAO:0001121 - - - - - - - - - - - - - - - - - - - germ layer (teleost) - TAO:0001122 - - - - - - - - - - - - - - - - - - - visual system (teleost) - TAO:0001127 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 1 (teleost) - TAO:0001128 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 2 (teleost) - TAO:0001130 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 3 (teleost) - TAO:0001131 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 6 (teleost) - TAO:0001132 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 5 (teleost) - TAO:0001133 - - - - - - - - - - - - - - - - - - - pharyngeal pouch 4 (teleost) - TAO:0001134 - - - - - - - - - - - - - - - - - - - neural tube (teleost) - TAO:0001135 - - - - - - - - - - - - - - - - - - - hypodermis (teleost) - TAO:0001136 - - - - - - - - - - - - - - - - - - - vestibulo-auditory system (teleost) - TAO:0001138 - - - - - - - - - - - - - - - - - - - olfactory system (teleost) - TAO:0001149 - - - - - - - - - - - - - - - - - - - tooth placode (teleost) - TAO:0001153 - - - - - - - - - - - - - - - - - - - enteric nervous system (teleost) - TAO:0001155 - - - - - - - - - - - - - - - - - - - endocrine system (teleost) - TAO:0001158 - - - - - - - - - - - - - - - - - - - immune system (teleost) - TAO:0001159 - - - - - - - - - - - - - - - - - - - pectoral fin (teleost) - TAO:0001161 - - - - - - - - - - - - - - - - - - - vertebral bone 1 (teleost) - TAO:0001167 - - - - - - - - - - - - - - - - - - - vertebral bone 2 (teleost) - TAO:0001168 - - - - - - - - - - - - - - - - - - - dorsal fin (teleost) - TAO:0001173 - - - - - - - - - - - - - - - - - - - pharyngeal epithelium (teleost) - TAO:0001174 - - - - - - - - - - - - - - - - - - - blastodisc (teleost) - TAO:0001175 - - - - - - - - - - - - - - - - - - - blastoderm (teleost) - TAO:0001176 - - - - - - - - - - - - - - - - - - - roof plate spinal cord region (teleost) - TAO:0001177 - - - - - - - - - - - - - - - - - - - non-neural ectoderm (teleost) - TAO:0001178 - - - - - - - - - - - - - - - - - - - stratum basale of epidermis (teleost) - TAO:0001180 - - - - - - - - - - - - - - - - - - - stratum compactum of dermis (teleost) - TAO:0001182 - - - - - - - - - - - - - - - - - - - pelvic fin (teleost) - TAO:0001184 - - - - - - - - - - - - - - - - - - - periderm (teleost) - TAO:0001185 - - - - - - - - - - - - - - - - - - - presumptive midbrain hindbrain boundary (teleost) - TAO:0001187 - - - - - - - - - - - - - - - - - - - vertebra (teleost) - TAO:0001189 - - - - - - - - - - - - - - - - - - - cranial neural crest (teleost) - TAO:0001194 - - - - - - - - - - - - - - - - - - - pars distalis of adenohypophysis (teleost) - TAO:0001195 - - - - - - - - - - - - - - - - - - - pars tuberalis of adenohypophysis (teleost) - TAO:0001196 - - - - - - - - - - - - - - - - - - - pars intermedia of adenohypophysis (teleost) - TAO:0001197 - - - - - - - - - - - - - - - - - - - adenohypophyseal placode (teleost) - TAO:0001198 - - - - - - - - - - - - - - - - - - - pituitary stalk (teleost) - TAO:0001199 - - - - - - - - - - - - - - - - - - - optic cup (teleost) - TAO:0001202 - - - - - - - - - - - - - - - - - - - axial mesoderm (teleost) - TAO:0001204 - - - - - - - - - - - - - - - - - - - Meckel's cartilage (teleost) - TAO:0001205 - - - - - - - - - - - - - - - - - - - intermediate mesoderm (teleost) - TAO:0001206 - - - - - - - - - - - - - - - - - - - presumptive rhombomere 1 (teleost) - TAO:0001207 - - - - - - - - - - - - - - - - - - - presumptive rhombomere 2 (teleost) - TAO:0001208 - - - - - - - - - - - - - - - - - - - presumptive rhombomere 7 (teleost) - TAO:0001209 - - - - - - - - - - - - - - - - - - - presumptive rhombomere 6 (teleost) - TAO:0001210 - - - - - - - - - - - - - - - - - - - presumptive rhombomere 5 (teleost) - TAO:0001211 - - - - - - - - - - - - - - - - - - - presumptive rhombomere 4 (teleost) - TAO:0001212 - - - - - - - - - - - - - - - - - - - presumptive rhombomere 3 (teleost) - TAO:0001213 - - - - - - - - - - - - - - - - - - - presumptive rhombomere 8 (teleost) - TAO:0001214 - - - - - - - - - - - - - - - - - - - dorsal plus ventral thalamus (teleost) - TAO:0001215 - - - - - - - - - - - - - - - - - - - splanchnocranium (teleost) - TAO:0001216 - - - - - - - - - - - - - - - - - - - presumptive hypochord (teleost) - TAO:0001217 - - - - - - - - - - - - - - - - - - - presumptive floor plate (teleost) - TAO:0001218 - - - - - - - - - - - - - - - - - - - jaw skeleton (teleost) - TAO:0001227 - - - - - - - - - - - - - - - - - - - iris (teleost) - TAO:0001238 - - - - - - - - - - - - - - - - - - - exocrine pancreas (teleost) - TAO:0001249 - - - - - - - - - - - - - - - - - - - rhombomere floor plate (teleost) - TAO:0001258 - - - - - - - - - - - - - - - - - - - early prosencephalic vesicle (teleost) - TAO:0001259 - - - - - - - - - - - - - - - - - - - endocrine pancreas (teleost) - TAO:0001260 - - - - - - - - - - - - - - - - - - - ventricular system of central nervous system (teleost) - TAO:0001261 - - - - - - - - - - - - - - - - - - - gonad primordium (teleost) - TAO:0001262 - - - - - - - - - - - - - - - - - - - mature ovarian follicle (teleost) - TAO:0001264 - - - - - - - - - - - - - - - - - - - vasculature of head (teleost) - TAO:0001267 - - - - - - - - - - - - - - - - - - - male genital duct (teleost) - TAO:0001268 - - - - - - - - - - - - - - - - - - - regenerating fin/limb (teleost) - TAO:0001269 - - - - - - - - - - - - - - - - - - - blastema (teleost) - TAO:0001270 - - - - - - - - - - - - - - - - - - - neurohypophysis (teleost) - TAO:0001271 - - - - - - - - - - - - - - - - - - - palatoquadrate arch (teleost) - TAO:0001272 - - - - - - - - - - - - - - - - - - - skeleton of lower jaw (teleost) - TAO:0001273 - - - - - - - - - - - - - - - - - - - hyoid arch skeleton (teleost) - TAO:0001276 - - - - - - - - - - - - - - - - - - - adenohypophysis (teleost) - TAO:0001282 - - - - - - - - - - - - - - - - - - - pupil (teleost) - TAO:0001283 - - - - - - - - - - - - - - - - - - - optic fissure (teleost) - TAO:0001284 - - - - - - - - - - - - - - - - - - - intersomitic vessel (teleost) - TAO:0001285 - - - - - - - - - - - - - - - - - - - nephron tubule (teleost) - TAO:0001287 - - - - - - - - - - - - - - - - - - - renal glomerulus (teleost) - TAO:0001288 - - - - - - - - - - - - - - - - - - - ciliary marginal zone (teleost) - TAO:0001289 - - - - - - - - - - - - - - - - - - - stomodeum (teleost) - TAO:0001290 - - - - - - - - - - - - - - - - - - - geniculate ganglion (teleost) - TAO:0001291 - - - - - - - - - - - - - - - - - - - pineal gland stalk (teleost) - TAO:0001292 - - - - - - - - - - - - - - - - - - - epibranchial placode (teleost) - TAO:0001294 - - - - - - - - - - - - - - - - - - - geniculate placode (teleost) - TAO:0001295 - - - - - - - - - - - - - - - - - - - petrosal placode (teleost) - TAO:0001296 - - - - - - - - - - - - - - - - - - - glossopharyngeal ganglion (teleost) - TAO:0001301 - - - - - - - - - - - - - - - - - - - pharyngeal arch (teleost) - TAO:0001306 - - - - - - - - - - - - - - - - - - - musculature of pharynx (teleost) - TAO:0001307 - - - - - - - - - - - - - - - - - - - organism subdivision (teleost) - TAO:0001308 - - - - - - - - - - - - - - - - - - - neurogenic placode (teleost) - TAO:0001309 - - - - - - - - - - - - - - - - - - - dorsolateral placode (teleost) - TAO:0001310 - - - - - - - - - - - - - - - - - - - rhombomere roof plate (teleost) - TAO:0001311 - - - - - - - - - - - - - - - - - - - dorsal anterior lateral line ganglion (teleost) - TAO:0001312 - - - - - - - - - - - - - - - - - - - atrioventricular canal (teleost) - TAO:0001315 - - - - - - - - - - - - - - - - - - - anterior lateral line placode (teleost) - TAO:0001316 - - - - - - - - - - - - - - - - - - - endocardial cushion (teleost) - TAO:0001317 - - - - - - - - - - - - - - - - - - - cardiac jelly (teleost) - TAO:0001318 - - - - - - - - - - - - - - - - - - - myocardium (teleost) - TAO:0001319 - - - - - - - - - - - - - - - - - - - endocardium (teleost) - TAO:0001320 - - - - - - - - - - - - - - - - - - - neurocranial trabecula (teleost) - TAO:0001321 - - - - - - - - - - - - - - - - - - - small intestine (teleost) - TAO:0001323 - - - - - - - - - - - - - - - - - - - prezygapophysis (teleost) - TAO:0001325 - - - - - - - - - - - - - - - - - - - epithelium of lens (teleost) - TAO:0001326 - - - - - - - - - - - - - - - - - - - abdomen musculature (teleost) - TAO:0001327 - - - - - - - - - - - - - - - - - - - neuromere (teleost) - TAO:0001328 - - - - - - - - - - - - - - - - - - - inner plexiform layer of retina (teleost) - TAO:0001329 - - - - - - - - - - - - - - - - - - - outer plexiform layer of retina (teleost) - TAO:0001330 - - - - - - - - - - - - - - - - - - - outer limiting layer of retina (teleost) - TAO:0001331 - - - - - - - - - - - - - - - - - - - spinal neuromere (teleost) - TAO:0001332 - - - - - - - - - - - - - - - - - - - presumptive enteric nervous system (teleost) - TAO:0001334 - - - - - - - - - - - - - - - - - - - neural spine (teleost) - TAO:0001336 - - - - - - - - - - - - - - - - - - - intestine (teleost) - TAO:0001338 - - - - - - - - - - - - - - - - - - - zona limitans intrathalamica (teleost) - TAO:0001344 - - - - - - - - - - - - - - - - - - - interrenal gland (teleost) - TAO:0001345 - - - - - - - - - - - - - - - - - - - interrenal primordium (teleost) - TAO:0001346 - - - - - - - - - - - - - - - - - - - middle gray layer of superior colliculus (teleost) - TAO:0001350 - - - - - - - - - - - - - - - - - - - middle white layer of superior colliculus (teleost) - TAO:0001351 - - - - - - - - - - - - - - - - - - - midbrain tectum (teleost) - TAO:0001353 - - - - - - - - - - - - - - - - - - - meninx (teleost) - TAO:0001355 - - - - - - - - - - - - - - - - - - - terminal nerve (teleost) - TAO:0001356 - - - - - - - - - - - - - - - - - - - roof plate of diencephalon (teleost) - TAO:0001358 - - - - - - - - - - - - - - - - - - - pineal complex (teleost) - TAO:0001359 - - - - - - - - - - - - - - - - - - - parapineal organ (teleost) - TAO:0001360 - - - - - - - - - - - - - - - - - - - parapophysis (teleost) - TAO:0001362 - - - - - - - - - - - - - - - - - - - motor nucleus of trigeminal nerve (teleost) - TAO:0001365 - - - - - - - - - - - - - - - - - - - forebrain-midbrain boundary (teleost) - TAO:0001367 - - - - - - - - - - - - - - - - - - - presumptive forebrain midbrain boundary (teleost) - TAO:0001368 - - - - - - - - - - - - - - - - - - - ventral pancreatic bud (teleost) - TAO:0001369 - - - - - - - - - - - - - - - - - - - dorsal pancreatic bud (teleost) - TAO:0001370 - - - - - - - - - - - - - - - - - - - pancreatic duct (teleost) - TAO:0001372 - - - - - - - - - - - - - - - - - - - myocardium of atrium (teleost) - TAO:0001374 - - - - - - - - - - - - - - - - - - - ventriculo bulbo valve (teleost) - TAO:0001375 - - - - - - - - - - - - - - - - - - - presumptive ectoderm (teleost) - TAO:0001376 - - - - - - - - - - - - - - - - - - - presumptive mesoderm (teleost) - TAO:0001377 - - - - - - - - - - - - - - - - - - - pharyngeal ectoderm (teleost) - TAO:0001379 - - - - - - - - - - - - - - - - - - - hypohyal bone (teleost) - TAO:0001381 - - - - - - - - - - - - - - - - - - - paired fin bud (teleost) - TAO:0001383 - - - - - - - - - - - - - - - - - - - pelvic appendage bud (teleost) - TAO:0001384 - - - - - - - - - - - - - - - - - - - pelvic appendage apical ectodermal ridge (teleost) - TAO:0001385 - - - - - - - - - - - - - - - - - - - pelvic appendage bud mesenchyme (teleost) - TAO:0001386 - - - - - - - - - - - - - - - - - - - pelvic fin skeleton (teleost) - TAO:0001387 - - - - - - - - - - - - - - - - - - - epithelial mesenchymal boundary of regenerating fin/limb (teleost) - TAO:0001388 - - - - - - - - - - - - - - - - - - - regeneration epithelium of fin/limb (teleost) - TAO:0001389 - - - - - - - - - - - - - - - - - - - pancreatic epithelial bud (teleost) - TAO:0001390 - - - - - - - - - - - - - - - - - - - anterior lateral line ganglion (teleost) - TAO:0001391 - - - - - - - - - - - - - - - - - - - palatoquadrate cartilage (teleost) - TAO:0001399 - - - - - - - - - - - - - - - - - - - ceratohyal cartilage (teleost) - TAO:0001400 - - - - - - - - - - - - - - - - - - - dorsal hyoid arch skeleton (teleost) - TAO:0001401 - - - - - - - - - - - - - - - - - - - ventral hyoid arch skeleton (teleost) - TAO:0001402 - - - - - - - - - - - - - - - - - - - ethmoid cartilage (teleost) - TAO:0001405 - - - - - - - - - - - - - - - - - - - orbit of skull (teleost) - TAO:0001410 - - - - - - - - - - - - - - - - - - - endochondral scleral ossicle (teleost) - TAO:0001411 - - - - - - - - - - - - - - - - - - - occipital region (teleost) - TAO:0001414 - - - - - - - - - - - - - - - - - - - hyomandibular cartilage (teleost) - TAO:0001422 - - - - - - - - - - - - - - - - - - - parachordal cartilage (teleost) - TAO:0001423 - - - - - - - - - - - - - - - - - - - chondrocranium (teleost) - TAO:0001424 - - - - - - - - - - - - - - - - - - - raphe nuclei (teleost) - TAO:0001429 - - - - - - - - - - - - - - - - - - - floor plate of neural tube (teleost) - TAO:0001434 - - - - - - - - - - - - - - - - - - - neural tube lateral wall (teleost) - TAO:0001435 - - - - - - - - - - - - - - - - - - - roof plate (teleost) - TAO:0001436 - - - - - - - - - - - - - - - - - - - coelemic cavity lumen (teleost) - TAO:0001438 - - - - - - - - - - - - - - - - - - - anatomical system (teleost) - TAO:0001439 - - - - - - - - - - - - - - - - - - - rhombic lip (teleost) - TAO:0001440 - - - - - - - - - - - - - - - - - - - lower rhombic lip (teleost) - TAO:0001441 - - - - - - - - - - - - - - - - - - - upper rhombic lip (teleost) - TAO:0001442 - - - - - - - - - - - - - - - - - - - choroid plexus (teleost) - TAO:0001443 - - - - - - - - - - - - - - - - - - - choroid plexus of third ventricle (teleost) - TAO:0001444 - - - - - - - - - - - - - - - - - - - choroid plexus of tectal ventricle (teleost) - TAO:0001445 - - - - - - - - - - - - - - - - - - - choroid plexus of fourth ventricle (teleost) - TAO:0001446 - - - - - - - - - - - - - - - - - - - choroid plexus of lateral ventricle (teleost) - TAO:0001447 - - - - - - - - - - - - - - - - - - - ultimobranchial body (teleost) - TAO:0001448 - - - - - - - - - - - - - - - - - - - mesenchyme pelvic fin (teleost) - TAO:0001449 - - - - - - - - - - - - - - - - - - - zone of polarizing activity of pectoral appendage (teleost) - TAO:0001451 - - - - - - - - - - - - - - - - - - - zone of polarizing activity of pelvic appendage (teleost) - TAO:0001452 - - - - - - - - - - - - - - - - - - - pectoral appendage field (teleost) - TAO:0001453 - - - - - - - - - - - - - - - - - - - pelvic appendage field (teleost) - TAO:0001454 - - - - - - - - - - - - - - - - - - - scapulocoracoid (teleost) - TAO:0001455 - - - - - - - - - - - - - - - - - - - cranial cartilage (teleost) - TAO:0001458 - - - - - - - - - - - - - - - - - - - pelvic appendage cartilage tissue (teleost) - TAO:0001459 - - - - - - - - - - - - - - - - - - - pharyngeal arch cartilage (teleost) - TAO:0001460 - - - - - - - - - - - - - - - - - - - cartilage element of chondrocranium (teleost) - TAO:0001461 - - - - - - - - - - - - - - - - - - - somite border (teleost) - TAO:0001462 - - - - - - - - - - - - - - - - - - - outer nuclear layer of retina (teleost) - TAO:0001464 - - - - - - - - - - - - - - - - - - - photoreceptor inner segment layer (teleost) - TAO:0001465 - - - - - - - - - - - - - - - - - - - photoreceptor outer segment layer (teleost) - TAO:0001466 - - - - - - - - - - - - - - - - - - - anterior lateral line system (teleost) - TAO:0001468 - - - - - - - - - - - - - - - - - - - lateral line (teleost) - TAO:0001469 - - - - - - - - - - - - - - - - - - - anterior lateral line (teleost) - TAO:0001470 - - - - - - - - - - - - - - - - - - - tissue (teleost) - TAO:0001477 - - - - - - - - - - - - - - - - - - - lateral line nerve (teleost) - TAO:0001479 - - - - - - - - - - - - - - - - - - - basal lamina of epithelium (teleost) - TAO:0001485 - - - - - - - - - - - - - - - - - - - epithelium (teleost) - TAO:0001486 - - - - - - - - - - - - - - - - - - - organism substance (teleost) - TAO:0001487 - - - - - - - - - - - - - - - - - - - multi-tissue structure (teleost) - TAO:0001488 - - - - - - - - - - - - - - - - - - - compound organ component (teleost) - TAO:0001489 - - - - - - - - - - - - - - - - - - - cavitated compound organ (teleost) - TAO:0001490 - - - - - - - - - - - - - - - - - - - solid compound organ (teleost) - TAO:0001491 - - - - - - - - - - - - - - - - - - - simple organ (teleost) - TAO:0001492 - - - - - - - - - - - - - - - - - - - atypical epithelium (teleost) - TAO:0001493 - - - - - - - - - - - - - - - - - - - multilaminar epithelium (teleost) - TAO:0001494 - - - - - - - - - - - - - - - - - - - unilaminar epithelium (teleost) - TAO:0001495 - - - - - - - - - - - - - - - - - - - simple columnar epithelium (teleost) - TAO:0001496 - - - - - - - - - - - - - - - - - - - simple cuboidal epithelium (teleost) - TAO:0001497 - - - - - - - - - - - - - - - - - - - simple squamous epithelium (teleost) - TAO:0001498 - - - - - - - - - - - - - - - - - - - epithelium of esophagus (teleost) - TAO:0001499 - - - - - - - - - - - - - - - - - - - cartilaginous otic capsule (teleost) - TAO:0001500 - - - - - - - - - - - - - - - - - - - cartilage tissue (teleost) - TAO:0001501 - - - - - - - - - - - - - - - - - - - lamina orbitonasalis (teleost) - TAO:0001503 - - - - - - - - - - - - - - - - - - - tectum synoticum (teleost) - TAO:0001506 - - - - - - - - - - - - - - - - - - - trabecula cranii (teleost) - TAO:0001507 - - - - - - - - - - - - - - - - - - - scleral cartilage (teleost) - TAO:0001509 - - - - - - - - - - - - - - - - - - - basihyal cartilage (teleost) - TAO:0001510 - - - - - - - - - - - - - - - - - - - anatomical group (teleost) - TAO:0001512 - - - - - - - - - - - - - - - - - - - dermomyotome (teleost) - TAO:0001513 - - - - - - - - - - - - - - - - - - - bone element (teleost) - TAO:0001514 - - - - - - - - - - - - - - - - - - - paired limb/fin cartilage (teleost) - TAO:0001543 - - - - - - - - - - - - - - - - - - - zygapophysis (teleost) - TAO:0001549 - - - - - - - - - - - - - - - - - - - epibranchial ganglion (teleost) - TAO:0001555 - - - - - - - - - - - - - - - - - - - paravertebral ganglion (teleost) - TAO:0001556 - - - - - - - - - - - - - - - - - - - pronephric glomerulus (teleost) - TAO:0001557 - - - - - - - - - - - - - - - - - - - pronephric nephron tubule (teleost) - TAO:0001558 - - - - - - - - - - - - - - - - - - - vertebral column (teleost) - TAO:0001559 - - - - - - - - - - - - - - - - - - - superior cervical ganglion (teleost) - TAO:0001572 - - - - - - - - - - - - - - - - - - - trunk ganglion (teleost) - TAO:0001573 - - - - - - - - - - - - - - - - - - - autonomic nervous system (teleost) - TAO:0001574 - - - - - - - - - - - - - - - - - - - parasympathetic nervous system (teleost) - TAO:0001575 - - - - - - - - - - - - - - - - - - - sympathetic nervous system (teleost) - TAO:0001576 - - - - - - - - - - - - - - - - - - - neurocranium (teleost) - TAO:0001580 - - - - - - - - - - - - - - - - - - - dermal bone (teleost) - TAO:0001590 - - - - - - - - - - - - - - - - - - - endochondral bone (teleost) - TAO:0001591 - - - - - - - - - - - - - - - - - - - pharyngeal arch 1 (teleost) - TAO:0001595 - - - - - - - - - - - - - - - - - - - pharyngeal arch 2 (teleost) - TAO:0001596 - - - - - - - - - - - - - - - - - - - post-hyoid pharyngeal arch (teleost) - TAO:0001597 - - - - - - - - - - - - - - - - - - - pharyngeal arch 3 (teleost) - TAO:0001598 - - - - - - - - - - - - - - - - - - - pharyngeal arch 4 (teleost) - TAO:0001599 - - - - - - - - - - - - - - - - - - - pharyngeal arch 5 (teleost) - TAO:0001600 - - - - - - - - - - - - - - - - - - - pharyngeal arch 6 (teleost) - TAO:0001601 - - - - - - - - - - - - - - - - - - - pharyngeal arch 7 (teleost) - TAO:0001602 - - - - - - - - - - - - - - - - - - - otolith (teleost) - TAO:0001621 - - - - - - - - - - - - - - - - - - - calcareous tooth (teleost) - TAO:0001625 - - - - - - - - - - - - - - - - - - - maxillary tooth (teleost) - TAO:0001627 - - - - - - - - - - - - - - - - - - - dentary tooth (teleost) - TAO:0001628 - - - - - - - - - - - - - - - - - - - vomerine tooth (teleost) - TAO:0001631 - - - - - - - - - - - - - - - - - - - replacement bone (teleost) - TAO:0001637 - - - - - - - - - - - - - - - - - - - perichondral bone (teleost) - TAO:0001638 - - - - - - - - - - - - - - - - - - - perichordal bone (teleost) - TAO:0001639 - - - - - - - - - - - - - - - - - - - connective tissue (teleost) - TAO:0001641 - - - - - - - - - - - - - - - - - - - perichordal tissue (teleost) - TAO:0001642 - - - - - - - - - - - - - - - - - - - perichondrium (teleost) - TAO:0001643 - - - - - - - - - - - - - - - - - - - intramembranous bone (teleost) - TAO:0001644 - - - - - - - - - - - - - - - - - - - membrane bone (teleost) - TAO:0001645 - - - - - - - - - - - - - - - - - - - tooth row (teleost) - TAO:0001667 - - - - - - - - - - - - - - - - - - - anatomical space (teleost) - TAO:0001668 - - - - - - - - - - - - - - - - - - - angular bone (teleost) - TAO:0001669 - - - - - - - - - - - - - - - - - - - articular cartilage element (teleost) - TAO:0001670 - - - - - - - - - - - - - - - - - - - coronoid bone (teleost) - TAO:0001673 - - - - - - - - - - - - - - - - - - - ligament (teleost) - TAO:0001682 - - - - - - - - - - - - - - - - - - - snout (teleost) - TAO:0001712 - - - - - - - - - - - - - - - - - - - bone foramen (teleost) - TAO:0001736 - - - - - - - - - - - - - - - - - - - fontanelle (teleost) - TAO:0001738 - - - - - - - - - - - - - - - - - - - bone fossa (teleost) - TAO:0001743 - - - - - - - - - - - - - - - - - - - pore (teleost) - TAO:0001791 - - - - - - - - - - - - - - - - - - - quadrate-articular joint (teleost) - TAO:0001802 - - - - - - - - - - - - - - - - - - - anatomical projection (teleost) - TAO:0001834 - - - - - - - - - - - - - - - - - - - immaterial anatomical entity (teleost) - TAO:0001835 - - - - - - - - - - - - - - - - - - - material anatomical entity (teleost) - TAO:0001836 - - - - - - - - - - - - - - - - - - - anatomical line (teleost) - TAO:0001837 - - - - - - - - - - - - - - - - - - - anatomical line along groove (teleost) - TAO:0001838 - - - - - - - - - - - - - - - - - - - anatomical point (teleost) - TAO:0001839 - - - - - - - - - - - - - - - - - - - mandibular symphysis (teleost) - TAO:0001851 - - - - - - - - - - - - - - - - - - - hypohyal cartilage (teleost) - TAO:0001868 - - - - - - - - - - - - - - - - - - - skeletal element (teleost) - TAO:0001890 - - - - - - - - - - - - - - - - - - - basihyal element (teleost) - TAO:0001891 - - - - - - - - - - - - - - - - - - - axial muscle (teleost) - TAO:0001954 - - - - - - - - - - - - - - - - - - - upper lip (teleost) - TAO:0001970 - - - - - - - - - - - - - - - - - - - cusp of tooth (teleost) - TAO:0001973 - - - - - - - - - - - - - - - - - - - optic foramen (teleost) - TAO:0002025 - - - - - - - - - - - - - - - - - - - nasal capsule (teleost) - TAO:0002035 - - - - - - - - - - - - - - - - - - - intromittent organ (teleost) - TAO:0002036 - - - - - - - - - - - - - - - - - - - electric organ (teleost) - TAO:0002037 - - - - - - - - - - - - - - - - - - - foramen magnum (teleost) - TAO:0002045 - - - - - - - - - - - - - - - - - - - adult organism (teleost) - TAO:0002046 - - - - - - - - - - - - - - - - - - - sexually immature organism (teleost) - TAO:0002047 - - - - - - - - - - - - - - - - - - - larva (teleost) - TAO:0002048 - - - - - - - - - - - - - - - - - - - lower lip (teleost) - TAO:0002060 - - - - - - - - - - - - - - - - - - - primitive palate (teleost) - TAO:0002093 - - - - - - - - - - - - - - - - - - - rib skeletal system (teleost) - TAO:0002100 - - - - - - - - - - - - - - - - - - - ampullary organ (teleost) - TAO:0002104 - - - - - - - - - - - - - - - - - - - cheek (teleost) - TAO:0002113 - - - - - - - - - - - - - - - - - - - stomach (teleost) - TAO:0002121 - - - - - - - - - - - - - - - - - - - adipose tissue (teleost) - TAO:0002134 - - - - - - - - - - - - - - - - - - - abductor muscle (teleost) - TAO:0002135 - - - - - - - - - - - - - - - - - - - adductor muscle (teleost) - TAO:0002136 - - - - - - - - - - - - - - - - - - - blood vessel (teleost) - TAO:0002137 - - - - - - - - - - - - - - - - - - - arteriole (teleost) - TAO:0002138 - - - - - - - - - - - - - - - - - - - renal afferent arteriole (teleost) - TAO:0002139 - - - - - - - - - - - - - - - - - - - renal efferent arteriole (teleost) - TAO:0002140 - - - - - - - - - - - - - - - - - - - white matter (teleost) - TAO:0002142 - - - - - - - - - - - - - - - - - - - white matter (teleost) - TAO:0002143 - - - - - - - - - - - - - - - - - - - apical ectodermal ridge (teleost) - TAO:0002146 - - - - - - - - - - - - - - - - - - - nephron (teleost) - TAO:0002153 - - - - - - - - - - - - - - - - - - - anterior limiting lamina of cornea (teleost) - TAO:0002155 - - - - - - - - - - - - - - - - - - - brainstem (teleost) - TAO:0002156 - - - - - - - - - - - - - - - - - - - Descemet's membrane (teleost) - TAO:0002157 - - - - - - - - - - - - - - - - - - - endocardium of atrium (teleost) - TAO:0002169 - - - - - - - - - - - - - - - - - - - atrioventricular canal endocardium (teleost) - TAO:0002170 - - - - - - - - - - - - - - - - - - - cardiovascular system endothelium (teleost) - TAO:0002171 - - - - - - - - - - - - - - - - - - - cardiac neural crest (teleost) - TAO:0002173 - - - - - - - - - - - - - - - - - - - hindbrain nucleus (teleost) - TAO:0002177 - - - - - - - - - - - - - - - - - - - telencephalic nucleus (teleost) - TAO:0002178 - - - - - - - - - - - - - - - - - - - cephalic midbrain flexure (teleost) - TAO:0002181 - - - - - - - - - - - - - - - - - - - white matter of cerebellum (teleost) - TAO:0002183 - - - - - - - - - - - - - - - - - - - cerebrospinal fluid (teleost) - TAO:0002184 - - - - - - - - - - - - - - - - - - - corneal endothelium (teleost) - TAO:0002186 - - - - - - - - - - - - - - - - - - - corneal epithelium (teleost) - TAO:0002187 - - - - - - - - - - - - - - - - - - - corneal primordium (teleost) - TAO:0002188 - - - - - - - - - - - - - - - - - - - substantia propria of cornea (teleost) - TAO:0002189 - - - - - - - - - - - - - - - - - - - root of cranial nerve (teleost) - TAO:0002190 - - - - - - - - - - - - - - - - - - - diencephalic nucleus (teleost) - TAO:0002191 - - - - - - - - - - - - - - - - - - - endolymphatic duct (teleost) - TAO:0002194 - - - - - - - - - - - - - - - - - - - floor plate of midbrain (teleost) - TAO:0002196 - - - - - - - - - - - - - - - - - - - gray matter (teleost) - TAO:0002197 - - - - - - - - - - - - - - - - - - - hindbrain commissure (teleost) - TAO:0002199 - - - - - - - - - - - - - - - - - - - immature eye (teleost) - TAO:0002201 - - - - - - - - - - - - - - - - - - - lens vesicle (teleost) - TAO:0002205 - - - - - - - - - - - - - - - - - - - midbrain nucleus (teleost) - TAO:0002209 - - - - - - - - - - - - - - - - - - - nerve fiber layer of retina (teleost) - TAO:0002212 - - - - - - - - - - - - - - - - - - - pericardial cavity (teleost) - TAO:0002220 - - - - - - - - - - - - - - - - - - - presumptive atrioventricular canal (teleost) - TAO:0002227 - - - - - - - - - - - - - - - - - - - future cardiac atrium (teleost) - TAO:0002228 - - - - - - - - - - - - - - - - - - - presumptive bulbus arteriosus (teleost) - TAO:0002230 - - - - - - - - - - - - - - - - - - - future cardiac ventricle (teleost) - TAO:0002231 - - - - - - - - - - - - - - - - - - - presumptive endocardium (teleost) - TAO:0002233 - - - - - - - - - - - - - - - - - - - presumptive sinus venosus (teleost) - TAO:0002234 - - - - - - - - - - - - - - - - - - - pronephric distal early tubule (teleost) - TAO:0002236 - - - - - - - - - - - - - - - - - - - pronephric proximal convoluted tubule (teleost) - TAO:0002238 - - - - - - - - - - - - - - - - - - - pronephric proximal straight tubule (teleost) - TAO:0002239 - - - - - - - - - - - - - - - - - - - cochlear nucleus (teleost) - TAO:0002243 - - - - - - - - - - - - - - - - - - - swim bladder tunica externa (teleost) - TAO:0002245 - - - - - - - - - - - - - - - - - - - swim bladder tunica interna (teleost) - TAO:0002246 - - - - - - - - - - - - - - - - - - - endocardium of ventricle (teleost) - TAO:0002247 - - - - - - - - - - - - - - - - - - - actinopterygian pyloric caecum (teleost) - TAO:0002253 - - - - - - - - - - - - - - - - - - - chin (teleost) - TAO:0002254 - - - - - - - - - - - - - - - - - - - condyle (teleost) - TAO:0002259 - - - - - - - - - - - - - - - - - - - paired fin (teleost) - TAO:0002278 - - - - - - - - - - - - - - - - - - - gular region (teleost) - TAO:0002286 - - - - - - - - - - - - - - - - - - - surangular bone (teleost) - TAO:0002287 - - - - - - - - - - - - - - - - - - - posterior communicating artery (teleost) - TAO:0005001 - - - - - - - - - - - - - - - - - - - basilar artery (teleost) - TAO:0005002 - - - - - - - - - - - - - - - - - - - pharyngeal vasculature (teleost) - TAO:0005003 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery (teleost) - TAO:0005004 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 1 (teleost) - TAO:0005005 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 2 (teleost) - TAO:0005006 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 3 (teleost) - TAO:0005007 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 4 (teleost) - TAO:0005008 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 5 (teleost) - TAO:0005009 - - - - - - - - - - - - - - - - - - - pharyngeal arch artery 6 (teleost) - TAO:0005016 - - - - - - - - - - - - - - - - - - - hematopoietic system (teleost) - TAO:0005023 - - - - - - - - - - - - - - - - - - - vasculature of trunk (teleost) - TAO:0005024 - - - - - - - - - - - - - - - - - - - ventral wall of dorsal aorta (teleost) - TAO:0005028 - - - - - - - - - - - - - - - - - - - vertebral artery (teleost) - TAO:0005033 - - - - - - - - - - - - - - - - - - - subintestinal vein (teleost) - TAO:0005035 - - - - - - - - - - - - - - - - - - - tail vasculature (teleost) - TAO:0005037 - - - - - - - - - - - - - - - - - - - anterior lateral plate mesoderm (teleost) - TAO:0005041 - - - - - - - - - - - - - - - - - - - posterior lateral plate mesoderm (teleost) - TAO:0005042 - - - - - - - - - - - - - - - - - - - mole (teleost) - TAO:0005043 - - - - - - - - - - - - - - - - - - - hyaloid artery (teleost) - TAO:0005045 - - - - - - - - - - - - - - - - - - - hyaloid vessel (teleost) - TAO:0005046 - - - - - - - - - - - - - - - - - - - hyaloid vein (teleost) - TAO:0005047 - - - - - - - - - - - - - - - - - - - epicardium (teleost) - TAO:0005057 - - - - - - - - - - - - - - - - - - - epicardium of ventricle (teleost) - TAO:0005058 - - - - - - - - - - - - - - - - - - - myocardium trabecular layer (teleost) - TAO:0005059 - - - - - - - - - - - - - - - - - - - trabecular layer of ventricle (teleost) - TAO:0005060 - - - - - - - - - - - - - - - - - - - myocardium of ventricle (teleost) - TAO:0005061 - - - - - - - - - - - - - - - - - - - compact layer of ventricle (teleost) - TAO:0005062 - - - - - - - - - - - - - - - - - - - conducting system of heart (teleost) - TAO:0005063 - - - - - - - - - - - - - - - - - - - atrioventricular valve (teleost) - TAO:0005064 - - - - - - - - - - - - - - - - - - - cardiac valve (teleost) - TAO:0005065 - - - - - - - - - - - - - - - - - - - sinoatrial node (teleost) - TAO:0005069 - - - - - - - - - - - - - - - - - - - atrioventricular node (teleost) - TAO:0005070 - - - - - - - - - - - - - - - - - - - primordial vasculature (teleost) - TAO:0005076 - - - - - - - - - - - - - - - - - - - vascular cord (teleost) - TAO:0005077 - - - - - - - - - - - - - - - - - - - internal carotid artery (teleost) - TAO:0005081 - - - - - - - - - - - - - - - - - - - subclavian artery (teleost) - TAO:0005086 - - - - - - - - - - - - - - - - - - - hepatic portal vein (teleost) - TAO:0005090 - - - - - - - - - - - - - - - - - - - hepatic sinusoid (teleost) - TAO:0005091 - - - - - - - - - - - - - - - - - - - mesencephalic vein (teleost) - TAO:0005092 - - - - - - - - - - - - - - - - - - - optic choroid vascular plexus (teleost) - TAO:0005094 - - - - - - - - - - - - - - - - - - - appendage vasculature (teleost) - TAO:0005095 - - - - - - - - - - - - - - - - - - - pectoral appendage vasculature (teleost) - TAO:0005096 - - - - - - - - - - - - - - - - - - - - lymph vasculature (teleost) - lymphatic vessel (teleost) - TAO:0005105 - - - - - - - - - - - - - - - - - - - pectoral lymphatic vessel (teleost) - TAO:0005107 - - - - - - - - - - - - - - - - - - - facial lymphatic vessel (teleost) - TAO:0005108 - - - - - - - - - - - - - - - - - - - jugular lymphatic vessel (teleost) - TAO:0005109 - - - - - - - - - - - - - - - - - - - thoracic duct (teleost) - TAO:0005110 - - - - - - - - - - - - - - - - - - - medial forebrain bundle (teleost) - TAO:0005111 - - - - - - - - - - - - - - - - - - - dorsal lateral line (teleost) - TAO:0005112 - - - - - - - - - - - - - - - - - - - dorsal lateral line neuromast (teleost) - TAO:0005113 - - - - - - - - - - - - - - - - - - - peritoneum (teleost) - TAO:0005120 - - - - - - - - - - - - - - - - - - - digestive tract epithelium (teleost) - TAO:0005123 - - - - - - - - - - - - - - - - - - - intestinal epithelium (teleost) - TAO:0005124 - - - - - - - - - - - - - - - - - - - intestinal villus (teleost) - TAO:0005125 - - - - - - - - - - - - - - - - - - - epithelium of small intestine (teleost) - TAO:0005127 - - - - - - - - - - - - - - - - - - - colonic epithelium (teleost) - TAO:0005128 - - - - - - - - - - - - - - - - - - - peritoneal mesentery (teleost) - TAO:0005129 - - - - - - - - - - - - - - - - - - - dorsal mesentery (teleost) - TAO:0005130 - - - - - - - - - - - - - - - - - - - parietal peritoneum (teleost) - TAO:0005131 - - - - - - - - - - - - - - - - - - - visceral peritoneum (teleost) - TAO:0005132 - - - - - - - - - - - - - - - - - - - ventral mesogastrium (teleost) - TAO:0005133 - - - - - - - - - - - - - - - - - - - dental epithelium (teleost) - TAO:0005134 - - - - - - - - - - - - - - - - - - - inner dental epithelium (teleost) - TAO:0005136 - - - - - - - - - - - - - - - - - - - outer dental epithelium (teleost) - TAO:0005137 - - - - - - - - - - - - - - - - - - - tooth enamel organ (teleost) - TAO:0005138 - - - - - - - - - - - - - - - - - - - uncondensed odontogenic mesenchyme (teleost) - TAO:0005139 - - - - - - - - - - - - - - - - - - - odontogenic papilla (teleost) - TAO:0005140 - - - - - - - - - - - - - - - - - - - dental pulp (teleost) - TAO:0005141 - - - - - - - - - - - - - - - - - - - dentine (teleost) - TAO:0005143 - - - - - - - - - - - - - - - - - - - muscle organ (teleost) - TAO:0005145 - - - - - - - - - - - - - - - - - - - area postrema (teleost) - TAO:0005146 - - - - - - - - - - - - - - - - - - - regenerating anatomical structure (teleost) - TAO:0005147 - - - - - - - - - - - - - - - - - - - apical epidermal cap (teleost) - TAO:0005148 - - - - - - - - - - - - - - - - - - - distal epidermal cap of regenerating fin/limb (teleost) - TAO:0005149 - - - - - - - - - - - - - - - - - - - basal regeneration epithelium of regenerating fin/limb (teleost) - TAO:0005150 - - - - - - - - - - - - - - - - - - - synovial joint (teleost) - TAO:0005153 - - - - - - - - - - - - - - - - - - - synovial fluid (teleost) - TAO:0005154 - - - - - - - - - - - - - - - - - - - cartilaginous joint (teleost) - TAO:0005155 - - - - - - - - - - - - - - - - - - - fibrous joint (teleost) - TAO:0005156 - - - - - - - - - - - - - - - - - - - tela choroidea of midbrain cerebral aqueduct (teleost) - TAO:0005157 - - - - - - - - - - - - - - - - - - - tela choroidea of fourth ventricle (teleost) - TAO:0005158 - - - - - - - - - - - - - - - - - - - tela choroidea of third ventricle (teleost) - TAO:0005159 - - - - - - - - - - - - - - - - - - - tela choroidea of telencephalic ventricle (teleost) - TAO:0005160 - - - - - - - - - - - - - - - - - - - hepatic artery (teleost) - TAO:0005161 - - - - - - - - - - - - - - - - - - - digestive system duct (teleost) - TAO:0005162 - - - - - - - - - - - - - - - - - - - bile canaliculus (teleost) - TAO:0005163 - - - - - - - - - - - - - - - - - - - biliary ductule (teleost) - TAO:0005164 - - - - - - - - - - - - - - - - - - - common bile duct (teleost) - TAO:0005165 - - - - - - - - - - - - - - - - - - - cystic duct (teleost) - TAO:0005166 - - - - - - - - - - - - - - - - - - - hepatopancreatic ampulla (teleost) - TAO:0005167 - - - - - - - - - - - - - - - - - - - central vein of liver (teleost) - TAO:0005168 - - - - - - - - - - - - - - - - - - - intrahepatic bile duct (teleost) - TAO:0005169 - - - - - - - - - - - - - - - - - - - duct (teleost) - TAO:0005171 - - - - - - - - - - - - - - - - - - - left lobe of liver (teleost) - TAO:0005172 - - - - - - - - - - - - - - - - - - - right lobe of liver (teleost) - TAO:0005173 - - - - - - - - - - - - - - - - - - - optic choroid (teleost) - TAO:0005229 - - - - - - - - - - - - - - - - - - - vasculature (teleost) - TAO:0005249 - - - - - - - - - - - - - - - - - - - capillary (teleost) - TAO:0005250 - - - - - - - - - - - - - - - - - - - microcirculatory vessel (teleost) - TAO:0005251 - - - - - - - - - - - - - - - - - - - lymphatic capillary (teleost) - TAO:0005252 - - - - - - - - - - - - - - - - - - - glomerular parietal epithelium (teleost) - TAO:0005253 - - - - - - - - - - - - - - - - - - - glomerular capsule (teleost) - TAO:0005254 - - - - - - - - - - - - - - - - - - - actinopterygian frontal-parietal joint (teleost) - TAO:0005255 - - - - - - - - - - - - - - - - - - - blood vessel endothelium (teleost) - TAO:0005257 - - - - - - - - - - - - - - - - - - - lymphatic vessel endothelium (teleost) - TAO:0005258 - - - - - - - - - - - - - - - - - - - continuous capillary (teleost) - TAO:0005259 - - - - - - - - - - - - - - - - - - - fenestrated capillary (teleost) - TAO:0005260 - - - - - - - - - - - - - - - - - - - sinusoid (teleost) - TAO:0005261 - - - - - - - - - - - - - - - - - - - flexor muscle (teleost) - TAO:0005271 - - - - - - - - - - - - - - - - - - - smooth muscle tissue (teleost) - TAO:0005274 - - - - - - - - - - - - - - - - - - - skeletal muscle organ (teleost) - TAO:0005277 - - - - - - - - - - - - - - - - - - - cardiac muscle tissue (teleost) - TAO:0005280 - - - - - - - - - - - - - - - - - - - renal corpuscle (teleost) - TAO:0005281 - - - - - - - - - - - - - - - - - - - Bowman's space (teleost) - TAO:0005283 - - - - - - - - - - - - - - - - - - - glomerular capillary (teleost) - TAO:0005284 - - - - - - - - - - - - - - - - - - - glomerular basement membrane (teleost) - TAO:0005285 - - - - - - - - - - - - - - - - - - - lamina densa of glomerular basement membrane (teleost) - TAO:0005286 - - - - - - - - - - - - - - - - - - - lamina rara interna (teleost) - TAO:0005287 - - - - - - - - - - - - - - - - - - - lamina rara externa (teleost) - TAO:0005288 - - - - - - - - - - - - - - - - - - - renal duct (teleost) - TAO:0005289 - - - - - - - - - - - - - - - - - - - proximal convoluted tubule (teleost) - TAO:0005290 - - - - - - - - - - - - - - - - - - - proximal straight tubule (teleost) - TAO:0005291 - - - - - - - - - - - - - - - - - - - distal early tubule (teleost) - TAO:0005293 - - - - - - - - - - - - - - - - - - - collecting duct of renal tubule (teleost) - TAO:0005294 - - - - - - - - - - - - - - - - - - - cranial blood vasculature (teleost) - TAO:0005297 - - - - - - - - - - - - - - - - - - - cranial lymph vasculature (teleost) - TAO:0005298 - - - - - - - - - - - - - - - - - - - appendage blood vessel (teleost) - TAO:0005299 - - - - - - - - - - - - - - - - - - - appendage lymph vessel (teleost) - TAO:0005300 - - - - - - - - - - - - - - - - - - - pectoral appendage blood vessel (teleost) - TAO:0005301 - - - - - - - - - - - - - - - - - - - pectoral appendage lymph vessel (teleost) - TAO:0005302 - - - - - - - - - - - - - - - - - - - kidney vasculature (teleost) - TAO:0005305 - - - - - - - - - - - - - - - - - - - kidney blood vessel (teleost) - TAO:0005306 - - - - - - - - - - - - - - - - - - - pronephric glomerular capillary (teleost) - TAO:0005309 - - - - - - - - - - - - - - - - - - - glomerular capsule (teleost) - TAO:0005310 - - - - - - - - - - - - - - - - - - - Bowman's space (teleost) - TAO:0005312 - - - - - - - - - - - - - - - - - - - pronephric glomerular basement membrane (teleost) - TAO:0005313 - - - - - - - - - - - - - - - - - - - venule (teleost) - TAO:0005315 - - - - - - - - - - - - - - - - - - - blood vessel smooth muscle (teleost) - TAO:0005321 - - - - - - - - - - - - - - - - - - - tongue (teleost) - TAO:0005333 - - - - - - - - - - - - - - - - - - - lip epithelium (teleost) - TAO:0005334 - - - - - - - - - - - - - - - - - - - swim bladder bud (teleost) - TAO:0005335 - - - - - - - - - - - - - - - - - - - common crus of semicircular duct (teleost) - TAO:0005411 - - - - - - - - - - - - - - - - - - - perilymph (teleost) - TAO:0005413 - - - - - - - - - - - - - - - - - - - endolymph (teleost) - TAO:0005414 - - - - - - - - - - - - - - - - - - - serous membrane (teleost) - TAO:0005425 - - - - - - - - - - - - - - - - - - - intermediate hypothalamic region (teleost) - TAO:0006000 - - - - - - - - - - - - - - - - - - - macula of saccule of membranous labyrinth (teleost) - TAO:0007000 - - - - - - - - - - - - - - - - - - - lip (teleost) - TAO:0007006 - - - - - - - - - - - - - - - - - - - pallium (teleost) - TAO:0007007 - - - - - - - - - - - - - - - - - - - nerve (teleost) - TAO:0007009 - - - - - - - - - - - - - - - - - - - thalamic eminence (teleost) - TAO:0007010 - - - - - - - - - - - - - - - - - - - pre-chordal neural plate (teleost) - TAO:0007016 - - - - - - - - - - - - - - - - - - - chordal neural plate (teleost) - TAO:0007017 - - - - - - - - - - - - - - - - - - - forebrain neural plate (teleost) - TAO:0007018 - - - - - - - - - - - - - - - - - - - midbrain neural plate (teleost) - TAO:0007019 - - - - - - - - - - - - - - - - - - - forebrain midbrain boundary neural plate (teleost) - TAO:0007020 - - - - - - - - - - - - - - - - - - - spinal cord neural plate (teleost) - TAO:0007021 - - - - - - - - - - - - - - - - - - - hindbrain neural plate (teleost) - TAO:0007022 - - - - - - - - - - - - - - - - - - - posterior neural tube (teleost) - TAO:0007037 - - - - - - - - - - - - - - - - - - - anterior neural tube (teleost) - TAO:0007038 - - - - - - - - - - - - - - - - - - - midbrain neural tube (teleost) - TAO:0007039 - - - - - - - - - - - - - - - - - - - midbrain hindbrain boundary neural plate (teleost) - TAO:0007044 - - - - - - - - - - - - - - - - - - - adductor mandibulae (teleost) - TAO:0007049 - - - - - - - - - - - - - - - - - - - vasculature of eye (teleost) - TAO:0007057 - - - - - - - - - - - - - - - - - - - roof plate (teleost) - TAO:0007058 - - - - - - - - - - - - - - - - - - - rhombencephalon neural crest (teleost) - TAO:0007063 - - - - - - - - - - - - - - - - - - - mandibular neural crest (teleost) - TAO:0007064 - - - - - - - - - - - - - - - - - - - hyoid neural crest (teleost) - TAO:0007065 - - - - - - - - - - - - - - - - - - - glossopharyngeal neural crest (teleost) - TAO:0007066 - - - - - - - - - - - - - - - - - - - vagus X ganglion (teleost) - TAO:0007067 - - - - - - - - - - - - - - - - - - - anatomical entity (teleost) - TAO:0100000 - - - - - - - - - - - - - - - - - - - - - - - - - TAO:ENTITY - TAO entity - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-vhog.obo b/src/ontology/bridge/uberon-bridge-to-vhog.obo deleted file mode 100644 index c47369bbcc..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-vhog.obo +++ /dev/null @@ -1,5 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-vhog - -[Term] -id: VHOG:0001359 ! uterine cervix -property_value: IAO:0000589 "uterine cervix (VHOG)" xsd:string diff --git a/src/ontology/bridge/uberon-bridge-to-vhog.owl b/src/ontology/bridge/uberon-bridge-to-vhog.owl deleted file mode 100644 index 7092b9cf40..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-vhog.owl +++ /dev/null @@ -1,107 +0,0 @@ - - - - Anne Niknejad - Aurelie Comte - Uberon editors - Homology axioms derived from vHOG - Uberon bridge to vhog - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - derived by descent from - - - - - - - - - - - - - - homologous to - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-vhog.owl.ofn b/src/ontology/bridge/uberon-bridge-to-vhog.owl.ofn deleted file mode 100644 index 02444ee452..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-vhog.owl.ofn +++ /dev/null @@ -1,26 +0,0 @@ -Prefix: : -Prefix: rdfs: -Prefix: descended_from: -Prefix: homologous_to: - -Ontology: -Annotations: - , - , - "Uberon bridge to vhog"^^xsd:string, - "Uberon editors"^^xsd:string, - "Anne Niknejad"^^xsd:string, - "Aurelie Comte"^^xsd:string, - "Homology axioms derived from vHOG"^^xsd:string, - rdfs:seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026"^^xsd:anyURI - -AnnotationProperty: -AnnotationProperty: -AnnotationProperty: -AnnotationProperty: -AnnotationProperty: rdfs:seeAlso -AnnotationProperty: - -ObjectProperty: descended_from: Annotations: rdfs:label "derived by descent from" -ObjectProperty: homologous_to: Annotations: rdfs:label "homologous to" SubPropertyChain: descended_from: o inverse(descended_from:) - diff --git a/src/ontology/bridge/uberon-bridge-to-vsao.obo b/src/ontology/bridge/uberon-bridge-to-vsao.obo deleted file mode 100644 index 709482ce10..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-vsao.obo +++ /dev/null @@ -1,856 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-vsao -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to vsao" xsd:string -property_value: dc-description "Equivalence axioms between VSAO and Uberon. Note that VSAO is in the process of being merged into the core Uberon, so this mapping will become deprecated" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "Melissa Haendel" xsd:string -property_value: dc-creator "Wasila Dahdul" xsd:string -property_value: dc-creator "Nizar Ibrahim" xsd:string -property_value: dc-creator "Alex Decechi" xsd:string -property_value: dc-contributor "Paula Mabee" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/vsao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: VSAO:0000075 ! -property_value: IAO:0000589 "appendage (VSAO)" xsd:string -equivalent_to: UBERON:0000026 ! appendage - -[Term] -id: VSAO:0000079 ! -property_value: IAO:0000589 "odontode scale (VSAO)" xsd:string -equivalent_to: UBERON:0000041 ! odontode scale - -[Term] -id: VSAO:0000073 ! -property_value: IAO:0000589 "tendon (VSAO)" xsd:string -equivalent_to: UBERON:0000043 ! tendon - -[Term] -id: VSAO:0000147 ! -property_value: IAO:0000589 "pectoral fin (VSAO)" xsd:string -equivalent_to: UBERON:0000151 ! pectoral fin - -[Term] -id: VSAO:0000129 ! -property_value: IAO:0000589 "pelvic fin (VSAO)" xsd:string -equivalent_to: UBERON:0000152 ! pelvic fin - -[Term] -id: VSAO:0000208 ! -property_value: IAO:0000589 "tetrapod frontal bone (VSAO)" xsd:string -equivalent_to: UBERON:0000209 ! tetrapod frontal bone - -[Term] -id: VSAO:0000033 ! -property_value: IAO:0000589 "musculature of body (VSAO)" xsd:string -equivalent_to: UBERON:0000383 ! musculature of body - -[Term] -id: VSAO:0000186 ! -property_value: IAO:0000589 "femur (VSAO)" xsd:string -equivalent_to: UBERON:0000981 ! femur - -[Term] -id: VSAO:0000101 ! -property_value: IAO:0000589 "skeletal joint (VSAO)" xsd:string -equivalent_to: UBERON:0000982 ! skeletal joint - -[Term] -id: VSAO:0005038 ! -property_value: IAO:0000589 "musculature (VSAO)" xsd:string -equivalent_to: UBERON:0001015 ! musculature - -[Term] -id: VSAO:0005031 ! -property_value: IAO:0000589 "clavicle bone (VSAO)" xsd:string -equivalent_to: UBERON:0001105 ! clavicle bone - -[Term] -id: VSAO:0000185 ! -property_value: IAO:0000589 "vertebral column (VSAO)" xsd:string -equivalent_to: UBERON:0001130 ! vertebral column - -[Term] -id: VSAO:0000304 ! -property_value: IAO:0000589 "pelvic girdle region (VSAO)" xsd:string -equivalent_to: UBERON:0001271 ! pelvic girdle region - -[Term] -id: VSAO:0005006 ! -property_value: IAO:0000589 "ischium (VSAO)" xsd:string -equivalent_to: UBERON:0001274 ! ischium - -[Term] -id: VSAO:0000305 ! -property_value: IAO:0000589 "pectoral girdle region (VSAO)" xsd:string -equivalent_to: UBERON:0001421 ! pectoral girdle region - -[Term] -id: VSAO:0005012 ! -property_value: IAO:0000589 "radius bone (VSAO)" xsd:string -equivalent_to: UBERON:0001423 ! radius bone - -[Term] -id: VSAO:0005013 ! -property_value: IAO:0000589 "ulna (VSAO)" xsd:string -equivalent_to: UBERON:0001424 ! ulna - -[Term] -id: VSAO:0005040 ! -property_value: IAO:0000589 "intermedium (VSAO)" xsd:string -equivalent_to: UBERON:0001428 ! intermedium - -[Term] -id: VSAO:0005043 ! -property_value: IAO:0000589 "distal carpal bone 1 (VSAO)" xsd:string -equivalent_to: UBERON:0001430 ! distal carpal bone 1 - -[Term] -id: VSAO:0005044 ! -property_value: IAO:0000589 "distal carpal bone 2 (VSAO)" xsd:string -equivalent_to: UBERON:0001431 ! distal carpal bone 2 - -[Term] -id: VSAO:0005045 ! -property_value: IAO:0000589 "distal carpal bone 3 (VSAO)" xsd:string -equivalent_to: UBERON:0001432 ! distal carpal bone 3 - -[Term] -id: VSAO:0005046 ! -property_value: IAO:0000589 "distal carpal bone 4 (VSAO)" xsd:string -equivalent_to: UBERON:0001433 ! distal carpal bone 4 - -[Term] -id: VSAO:0000027 ! -property_value: IAO:0000589 "skeletal system (VSAO)" xsd:string -equivalent_to: UBERON:0001434 ! skeletal system - -[Term] -id: VSAO:0000151 ! -property_value: IAO:0000589 "forelimb skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0001440 ! forelimb skeleton - -[Term] -id: VSAO:0000152 ! -property_value: IAO:0000589 "hindlimb skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0001441 ! hindlimb skeleton - -[Term] -id: VSAO:0005020 ! -property_value: IAO:0000589 "skeleton of manus (VSAO)" xsd:string -equivalent_to: UBERON:0001442 ! skeleton of manus - -[Term] -id: VSAO:0005021 ! -property_value: IAO:0000589 "skeleton of pes (VSAO)" xsd:string -equivalent_to: UBERON:0001445 ! skeleton of pes - -[Term] -id: VSAO:0005016 ! -property_value: IAO:0000589 "calcaneus (VSAO)" xsd:string -equivalent_to: UBERON:0001450 ! calcaneus - -[Term] -id: VSAO:0005052 ! -property_value: IAO:0000589 "distal tarsal bone 1 (VSAO)" xsd:string -equivalent_to: UBERON:0001452 ! distal tarsal bone 1 - -[Term] -id: VSAO:0005053 ! -property_value: IAO:0000589 "distal tarsal bone 2 (VSAO)" xsd:string -equivalent_to: UBERON:0001453 ! distal tarsal bone 2 - -[Term] -id: VSAO:0005054 ! -property_value: IAO:0000589 "distal tarsal bone 3 (VSAO)" xsd:string -equivalent_to: UBERON:0001454 ! distal tarsal bone 3 - -[Term] -id: VSAO:0000057 ! -property_value: IAO:0000589 "bone element (VSAO)" xsd:string -equivalent_to: UBERON:0001474 ! bone element - -[Term] -id: VSAO:0000034 ! -property_value: IAO:0000589 "oropharynx (VSAO)" xsd:string -equivalent_to: UBERON:0001729 ! oropharynx - -[Term] -id: VSAO:0000069 ! -property_value: IAO:0000589 "dentine (VSAO)" xsd:string -equivalent_to: UBERON:0001751 ! dentine - -[Term] -id: VSAO:0000065 ! -property_value: IAO:0000589 "enamel (VSAO)" xsd:string -equivalent_to: UBERON:0001752 ! enamel - -[Term] -id: VSAO:0000062 ! -property_value: IAO:0000589 "cementum (VSAO)" xsd:string -equivalent_to: UBERON:0001753 ! cementum - -[Term] -id: VSAO:0000025 ! -property_value: IAO:0000589 "odontogenic papilla (VSAO)" xsd:string -equivalent_to: UBERON:0001763 ! odontogenic papilla - -[Term] -id: VSAO:0000094 ! -property_value: IAO:0000589 "hyaline cartilage tissue (VSAO)" xsd:string -equivalent_to: UBERON:0001994 ! hyaline cartilage tissue - -[Term] -id: VSAO:0000103 ! -property_value: IAO:0000589 "fibrocartilage (VSAO)" xsd:string -equivalent_to: UBERON:0001995 ! fibrocartilage - -[Term] -id: VSAO:0000091 ! -property_value: IAO:0000589 "elastic cartilage tissue (VSAO)" xsd:string -equivalent_to: UBERON:0001996 ! elastic cartilage tissue - -[Term] -id: VSAO:0000178 ! -property_value: IAO:0000589 "embryonic structure (VSAO)" xsd:string -equivalent_to: UBERON:0002050 ! embryonic structure - -[Term] -id: VSAO:0000093 ! -property_value: IAO:0000589 "postcranial axial skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: VSAO:0000076 ! -property_value: IAO:0000589 "appendicular skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0002091 ! appendicular skeleton - -[Term] -id: VSAO:0000121 ! -property_value: IAO:0000589 "limb (VSAO)" xsd:string -equivalent_to: UBERON:0002101 ! limb - -[Term] -id: VSAO:0000148 ! -property_value: IAO:0000589 "forelimb (VSAO)" xsd:string -equivalent_to: UBERON:0002102 ! forelimb - -[Term] -id: VSAO:0000150 ! -property_value: IAO:0000589 "hindlimb (VSAO)" xsd:string -equivalent_to: UBERON:0002103 ! hindlimb - -[Term] -id: VSAO:0000029 ! -property_value: IAO:0000589 "integument (VSAO)" xsd:string -equivalent_to: UBERON:0002199 ! integument - -[Term] -id: VSAO:0000031 ! -property_value: IAO:0000589 "musculoskeletal system (VSAO)" xsd:string -equivalent_to: UBERON:0002204 ! musculoskeletal system - -[Term] -id: VSAO:0000036 ! -property_value: IAO:0000589 "perichondrium (VSAO)" xsd:string -equivalent_to: UBERON:0002222 ! perichondrium - -[Term] -id: VSAO:0000032 ! -property_value: IAO:0000589 "notochord (VSAO)" xsd:string -equivalent_to: UBERON:0002328 ! notochord - -[Term] -id: VSAO:0000017 ! -property_value: IAO:0000589 "connective tissue (VSAO)" xsd:string -equivalent_to: UBERON:0002384 ! connective tissue - -[Term] -id: VSAO:0005058 ! -property_value: IAO:0000589 "forelimb zeugopod (VSAO)" xsd:string -equivalent_to: UBERON:0002386 ! forelimb zeugopod - -[Term] -id: VSAO:0000207 ! -property_value: IAO:0000589 "maxilla (VSAO)" xsd:string -equivalent_to: UBERON:0002397 ! maxilla - -[Term] -id: VSAO:0000040 ! -property_value: IAO:0000589 "cartilage tissue (VSAO)" xsd:string -equivalent_to: UBERON:0002418 ! cartilage tissue - -[Term] -id: VSAO:0000047 ! -property_value: IAO:0000589 "bone tissue (VSAO)" xsd:string -equivalent_to: UBERON:0002481 ! bone tissue - -[Term] -id: VSAO:0005067 ! -property_value: IAO:0000589 "acromion (VSAO)" xsd:string -equivalent_to: UBERON:0002497 ! acromion - -[Term] -id: VSAO:0000145 ! -property_value: IAO:0000589 "endochondral bone (VSAO)" xsd:string -equivalent_to: UBERON:0002513 ! endochondral bone - -[Term] -id: VSAO:0000179 ! -property_value: IAO:0000589 "paired fin bud (VSAO)" xsd:string -equivalent_to: UBERON:0002531 ! paired fin bud - -[Term] -id: VSAO:0000111 ! -property_value: IAO:0000589 "paired fin (VSAO)" xsd:string -equivalent_to: UBERON:0002534 ! paired fin - -[Term] -id: VSAO:0000165 ! -property_value: IAO:0000589 "dorsal fin (VSAO)" xsd:string -equivalent_to: UBERON:0003097 ! dorsal fin - -[Term] -id: VSAO:0000001 ! -property_value: IAO:0000589 "surface structure (VSAO)" xsd:string -equivalent_to: UBERON:0003102 ! surface structure - -[Term] -id: VSAO:0000199 ! -property_value: IAO:0000589 "phalanx (VSAO)" xsd:string -equivalent_to: UBERON:0003221 ! phalanx - -[Term] -id: VSAO:0000201 ! -property_value: IAO:0000589 "pedal digit 1 (VSAO)" xsd:string -equivalent_to: UBERON:0003631 ! pedal digit 1 - -[Term] -id: VSAO:0005057 ! -property_value: IAO:0000589 "forelimb stylopod (VSAO)" xsd:string -equivalent_to: UBERON:0003822 ! forelimb stylopod - -[Term] -id: VSAO:0005060 ! -property_value: IAO:0000589 "hindlimb zeugopod (VSAO)" xsd:string -equivalent_to: UBERON:0003823 ! hindlimb zeugopod - -[Term] -id: VSAO:0000026 ! -property_value: IAO:0000589 "skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0004288 ! skeleton - -[Term] -id: VSAO:0000300 ! -property_value: IAO:0000589 "skeleton of limb (VSAO)" xsd:string -equivalent_to: UBERON:0004381 ! skeleton of limb - -[Term] -id: VSAO:0000180 ! -property_value: IAO:0000589 "anatomical projection (VSAO)" xsd:string -equivalent_to: UBERON:0004529 ! anatomical projection - -[Term] -id: VSAO:0005069 ! -property_value: IAO:0000589 "bone fossa (VSAO)" xsd:string -equivalent_to: UBERON:0004704 ! bone fossa - -[Term] -id: VSAO:0000067 ! -property_value: IAO:0000589 "paired limb/fin (VSAO)" xsd:string -equivalent_to: UBERON:0004708 ! paired limb/fin - -[Term] -id: VSAO:0000126 ! -property_value: IAO:0000589 "pelvic appendage (VSAO)" xsd:string -equivalent_to: UBERON:0004709 ! pelvic appendage - -[Term] -id: VSAO:0000125 ! -property_value: IAO:0000589 "pectoral appendage (VSAO)" xsd:string -equivalent_to: UBERON:0004710 ! pectoral appendage - -[Term] -id: VSAO:0000187 ! -property_value: IAO:0000589 "cleithrum (VSAO)" xsd:string -equivalent_to: UBERON:0004741 ! cleithrum - -[Term] -id: VSAO:0000158 ! -property_value: IAO:0000589 "coracoid bone (VSAO)" xsd:string -equivalent_to: UBERON:0004743 ! coracoid bone - -[Term] -id: VSAO:0005002 ! -property_value: IAO:0000589 "scapulocoracoid (VSAO)" xsd:string -equivalent_to: UBERON:0004753 ! scapulocoracoid - -[Term] -id: VSAO:0000015 ! -property_value: IAO:0000589 "skeletal tissue (VSAO)" xsd:string -equivalent_to: UBERON:0004755 ! skeletal tissue - -[Term] -id: VSAO:0000128 ! -property_value: IAO:0000589 "skeletal element (VSAO)" xsd:string -equivalent_to: UBERON:0004765 ! skeletal element - -[Term] -id: VSAO:0000181 ! -property_value: IAO:0000589 "articular system (VSAO)" xsd:string -equivalent_to: UBERON:0004770 ! articular system - -[Term] -id: VSAO:0000092 ! -property_value: IAO:0000589 "cartilaginous condensation (VSAO)" xsd:string -equivalent_to: UBERON:0005863 ! cartilaginous condensation - -[Term] -id: VSAO:0000056 ! -property_value: IAO:0000589 "axial skeleton plus cranial skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0005944 ! axial skeleton plus cranial skeleton - -[Term] -id: VSAO:0005019 ! -property_value: IAO:0000589 "autopodial skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0006717 ! autopodial skeleton - -[Term] -id: VSAO:0005048 ! -property_value: IAO:0000589 "medial tibial tarsal bone (VSAO)" xsd:string -equivalent_to: UBERON:0006836 ! medial tibial tarsal bone - -[Term] -id: VSAO:0000157 ! -property_value: IAO:0000589 "scapula (VSAO)" xsd:string -equivalent_to: UBERON:0006849 ! scapula - -[Term] -id: VSAO:0005000 ! -property_value: IAO:0000589 "pectoral appendage skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0007272 ! pectoral appendage skeleton - -[Term] -id: VSAO:0000048 ! -property_value: IAO:0000589 "dermal scale (VSAO)" xsd:string -equivalent_to: UBERON:0007380 ! dermal scale - -[Term] -id: VSAO:0000303 ! -property_value: IAO:0000589 "appendage girdle region (VSAO)" xsd:string -equivalent_to: UBERON:0007823 ! appendage girdle region - -[Term] -id: VSAO:0000156 ! -property_value: IAO:0000589 "pectoral girdle skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0007831 ! pectoral girdle skeleton - -[Term] -id: VSAO:0000155 ! -property_value: IAO:0000589 "pelvic girdle skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0007832 ! pelvic girdle skeleton - -[Term] -id: VSAO:0000023 ! -property_value: IAO:0000589 "membrane bone (VSAO)" xsd:string -equivalent_to: UBERON:0007842 ! membrane bone - -[Term] -id: VSAO:0000000 ! -property_value: IAO:0000589 "cartilage element (VSAO)" xsd:string -equivalent_to: UBERON:0007844 ! cartilage element - -[Term] -id: VSAO:0000050 ! -property_value: IAO:0000589 "dense regular connective tissue (VSAO)" xsd:string -equivalent_to: UBERON:0007846 ! dense regular connective tissue - -[Term] -id: VSAO:0000054 ! -property_value: IAO:0000589 "perichordal tissue (VSAO)" xsd:string -equivalent_to: UBERON:0007862 ! perichordal tissue - -[Term] -id: VSAO:0000072 ! -property_value: IAO:0000589 "skeletal ligament (VSAO)" xsd:string -equivalent_to: UBERON:0008846 ! skeletal ligament - -[Term] -id: VSAO:0000046 ! -property_value: IAO:0000589 "osteoid (VSAO)" xsd:string -equivalent_to: UBERON:0008883 ! osteoid - -[Term] -id: VSAO:0000149 ! -property_value: IAO:0000589 "splanchnocranium (VSAO)" xsd:string -equivalent_to: UBERON:0008895 ! splanchnocranium - -[Term] -id: VSAO:0000099 ! -property_value: IAO:0000589 "fin (VSAO)" xsd:string -equivalent_to: UBERON:0008897 ! fin - -[Term] -id: VSAO:0000130 ! -property_value: IAO:0000589 "dermal bone (VSAO)" xsd:string -equivalent_to: UBERON:0008907 ! dermal bone - -[Term] -id: VSAO:0000307 ! -property_value: IAO:0000589 "perichordal bone (VSAO)" xsd:string -equivalent_to: UBERON:0008909 ! perichordal bone - -[Term] -id: VSAO:0000308 ! -property_value: IAO:0000589 "perichondral bone (VSAO)" xsd:string -equivalent_to: UBERON:0008913 ! perichondral bone - -[Term] -id: VSAO:0005022 ! -property_value: IAO:0000589 "mesopodial skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0009878 ! mesopodial skeleton - -[Term] -id: VSAO:0005024 ! -property_value: IAO:0000589 "tarsal skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0009879 ! tarsal skeleton - -[Term] -id: VSAO:0005023 ! -property_value: IAO:0000589 "carpal skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0009880 ! carpal skeleton - -[Term] -id: VSAO:0000049 ! -property_value: IAO:0000589 "cranial skeletal system (VSAO)" xsd:string -equivalent_to: UBERON:0010323 ! cranial skeletal system - -[Term] -id: VSAO:0000037 ! -property_value: IAO:0000589 "endoskeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010362 ! endoskeleton - -[Term] -id: VSAO:0000139 ! -property_value: IAO:0000589 "endochondral element (VSAO)" xsd:string -equivalent_to: UBERON:0010363 ! endochondral element - -[Term] -id: VSAO:0000035 ! -property_value: IAO:0000589 "dermal skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010364 ! dermal skeleton - -[Term] -id: VSAO:0000063 ! -property_value: IAO:0000589 "odontoid tissue (VSAO)" xsd:string -equivalent_to: UBERON:0010365 ! odontoid tissue - -[Term] -id: VSAO:0000135 ! -property_value: IAO:0000589 "replacement element (VSAO)" xsd:string -equivalent_to: UBERON:0010522 ! replacement element - -[Term] -id: VSAO:0005028 ! -property_value: IAO:0000589 "acropodial skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010543 ! acropodial skeleton - -[Term] -id: VSAO:0005026 ! -property_value: IAO:0000589 "metacarpus skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010544 ! metacarpus skeleton - -[Term] -id: VSAO:0005027 ! -property_value: IAO:0000589 "metatarsus skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010545 ! metatarsus skeleton - -[Term] -id: VSAO:0005025 ! -property_value: IAO:0000589 "metapodial skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010546 ! metapodial skeleton - -[Term] -id: VSAO:0005029 ! -property_value: IAO:0000589 "skeleton of manual acropodium (VSAO)" xsd:string -equivalent_to: UBERON:0010688 ! skeleton of manual acropodium - -[Term] -id: VSAO:0005030 ! -property_value: IAO:0000589 "skeleton of pedal acropodium (VSAO)" xsd:string -equivalent_to: UBERON:0010696 ! skeleton of pedal acropodium - -[Term] -id: VSAO:0005011 ! -property_value: IAO:0000589 "forelimb zeugopod skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010703 ! forelimb zeugopod skeleton - -[Term] -id: VSAO:0000214 ! -property_value: IAO:0000589 "appendage girdle complex (VSAO)" xsd:string -equivalent_to: UBERON:0010707 ! appendage girdle complex - -[Term] -id: VSAO:0000213 ! -property_value: IAO:0000589 "pectoral complex (VSAO)" xsd:string -equivalent_to: UBERON:0010708 ! pectoral complex - -[Term] -id: VSAO:0000215 ! -property_value: IAO:0000589 "pelvic complex (VSAO)" xsd:string -equivalent_to: UBERON:0010709 ! pelvic complex - -[Term] -id: VSAO:0000153 ! -property_value: IAO:0000589 "pectoral fin skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010710 ! pectoral fin skeleton - -[Term] -id: VSAO:0000154 ! -property_value: IAO:0000589 "pelvic fin skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010711 ! pelvic fin skeleton - -[Term] -id: VSAO:0005018 ! -property_value: IAO:0000589 "limb skeleton subdivision (VSAO)" xsd:string -equivalent_to: UBERON:0010712 ! limb skeleton subdivision - -[Term] -id: VSAO:0000169 ! -property_value: IAO:0000589 "paired fin skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010713 ! paired fin skeleton - -[Term] -id: VSAO:0000302 ! -property_value: IAO:0000589 "girdle skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010719 ! girdle skeleton - -[Term] -id: VSAO:0005014 ! -property_value: IAO:0000589 "hindlimb zeugopod skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010720 ! hindlimb zeugopod skeleton - -[Term] -id: VSAO:0005055 ! -property_value: IAO:0000589 "distal tarsal bone 4 (VSAO)" xsd:string -equivalent_to: UBERON:0010737 ! distal tarsal bone 4 - -[Term] -id: VSAO:0005056 ! -property_value: IAO:0000589 "distal tarsal bone 5 (VSAO)" xsd:string -equivalent_to: UBERON:0010738 ! distal tarsal bone 5 - -[Term] -id: VSAO:0005047 ! -property_value: IAO:0000589 "distal carpal bone 5 (VSAO)" xsd:string -equivalent_to: UBERON:0010739 ! distal carpal bone 5 - -[Term] -id: VSAO:0000127 ! -property_value: IAO:0000589 "gastralium (VSAO)" xsd:string -equivalent_to: UBERON:0010898 ! gastralium - -[Term] -id: VSAO:0000132 ! -property_value: IAO:0000589 "ossicle (VSAO)" xsd:string -equivalent_to: UBERON:0010911 ! ossicle - -[Term] -id: VSAO:0000042 ! -property_value: IAO:0000589 "subdivision of skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0010912 ! subdivision of skeleton - -[Term] -id: VSAO:0000184 ! -property_value: IAO:0000589 "vertebral element (VSAO)" xsd:string -equivalent_to: UBERON:0010913 ! vertebral element - -[Term] -id: VSAO:0000131 ! -property_value: IAO:0000589 "appendicular ossicle (VSAO)" xsd:string -equivalent_to: UBERON:0011141 ! appendicular ossicle - -[Term] -id: VSAO:0000133 ! -property_value: IAO:0000589 "axial ossicle (VSAO)" xsd:string -equivalent_to: UBERON:0011142 ! axial ossicle - -[Term] -id: VSAO:0000306 ! -property_value: IAO:0000589 "appendicular skeletal system (VSAO)" xsd:string -equivalent_to: UBERON:0011249 ! appendicular skeletal system - -[Term] -id: VSAO:0000301 ! -property_value: IAO:0000589 "paired limb/fin skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0011582 ! paired limb/fin skeleton - -[Term] -id: VSAO:0005007 ! -property_value: IAO:0000589 "stylopodial skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0011583 ! stylopodial skeleton - -[Term] -id: VSAO:0005010 ! -property_value: IAO:0000589 "zeugopodial skeleton (VSAO)" xsd:string -equivalent_to: UBERON:0011584 ! zeugopodial skeleton - -[Term] -id: VSAO:0000006 ! -property_value: IAO:0000589 "cell condensation (VSAO)" xsd:string -equivalent_to: UBERON:0011585 ! cell condensation - -[Term] -id: VSAO:0000071 ! -property_value: IAO:0000589 "pre-dentine (VSAO)" xsd:string -equivalent_to: UBERON:0011587 ! pre-dentine - -[Term] -id: VSAO:0000066 ! -property_value: IAO:0000589 "pre-enamel (VSAO)" xsd:string -equivalent_to: UBERON:0011588 ! pre-enamel - -[Term] -id: VSAO:0000089 ! -property_value: IAO:0000589 "non-mineralized cartilage tissue (VSAO)" xsd:string -equivalent_to: UBERON:0011589 ! non-mineralized cartilage tissue - -[Term] -id: VSAO:0000161 ! -property_value: IAO:0000589 "interclavicle (VSAO)" xsd:string -equivalent_to: UBERON:0011655 ! interclavicle - -[Term] -id: VSAO:0000114 ! -property_value: IAO:0000589 "pre-enameloid (VSAO)" xsd:string -equivalent_to: UBERON:0011688 ! pre-enameloid - -[Term] -id: VSAO:0000113 ! -property_value: IAO:0000589 "enameloid (VSAO)" xsd:string -equivalent_to: UBERON:0011692 ! enameloid - -[Term] -id: VSAO:0000137 ! -property_value: IAO:0000589 "sesamoid element (VSAO)" xsd:string -equivalent_to: UBERON:0013631 ! sesamoid element - -[Term] -id: VSAO:0000183 ! -property_value: IAO:0000589 "vertebral centrum element (VSAO)" xsd:string -equivalent_to: UBERON:0016491 ! vertebral centrum element - -[Term] -id: VSAO:0000013 ! -property_value: IAO:0000589 "mineralized skeletal tissue (VSAO)" xsd:string -equivalent_to: UBERON:4000013 ! mineralized skeletal tissue - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-vsao.owl b/src/ontology/bridge/uberon-bridge-to-vsao.owl deleted file mode 100644 index dee6e579f8..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-vsao.owl +++ /dev/null @@ -1,2828 +0,0 @@ - - - - - Paula Mabee - Alex Decechi - Melissa Haendel - Nizar Ibrahim - Uberon editors - Wasila Dahdul - Equivalence axioms between VSAO and Uberon. Note that VSAO is in the process of being merged into the core Uberon, so this mapping will become deprecated - Uberon bridge to vsao - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - cartilage element (VSAO) - VSAO:0000000 - - - - - - - - surface structure (VSAO) - VSAO:0000001 - - - - - - - - cell condensation (VSAO) - VSAO:0000006 - - - - - - - - mineralized skeletal tissue (VSAO) - VSAO:0000013 - - - - - - - - skeletal tissue (VSAO) - VSAO:0000015 - - - - - - - - connective tissue (VSAO) - VSAO:0000017 - - - - - - - - membrane bone (VSAO) - VSAO:0000023 - - - - - - - - odontogenic papilla (VSAO) - VSAO:0000025 - - - - - - - - skeleton (VSAO) - VSAO:0000026 - - - - - - - - skeletal system (VSAO) - VSAO:0000027 - - - - - - - - integument (VSAO) - VSAO:0000029 - - - - - - - - musculoskeletal system (VSAO) - VSAO:0000031 - - - - - - - - notochord (VSAO) - VSAO:0000032 - - - - - - - - musculature of body (VSAO) - VSAO:0000033 - - - - - - - - oropharynx (VSAO) - VSAO:0000034 - - - - - - - - dermal skeleton (VSAO) - VSAO:0000035 - - - - - - - - perichondrium (VSAO) - VSAO:0000036 - - - - - - - - endoskeleton (VSAO) - VSAO:0000037 - - - - - - - - cartilage tissue (VSAO) - VSAO:0000040 - - - - - - - - subdivision of skeleton (VSAO) - VSAO:0000042 - - - - - - - - osteoid (VSAO) - VSAO:0000046 - - - - - - - - bone tissue (VSAO) - VSAO:0000047 - - - - - - - - dermal scale (VSAO) - VSAO:0000048 - - - - - - - - cranial skeletal system (VSAO) - VSAO:0000049 - - - - - - - - dense regular connective tissue (VSAO) - VSAO:0000050 - - - - - - - - perichordal tissue (VSAO) - VSAO:0000054 - - - - - - - - axial skeleton plus cranial skeleton (VSAO) - VSAO:0000056 - - - - - - - - bone element (VSAO) - VSAO:0000057 - - - - - - - - cementum (VSAO) - VSAO:0000062 - - - - - - - - odontoid tissue (VSAO) - VSAO:0000063 - - - - - - - - enamel (VSAO) - VSAO:0000065 - - - - - - - - pre-enamel (VSAO) - VSAO:0000066 - - - - - - - - paired limb/fin (VSAO) - VSAO:0000067 - - - - - - - - dentine (VSAO) - VSAO:0000069 - - - - - - - - pre-dentine (VSAO) - VSAO:0000071 - - - - - - - - skeletal ligament (VSAO) - VSAO:0000072 - - - - - - - - tendon (VSAO) - VSAO:0000073 - - - - - - - - appendage (VSAO) - VSAO:0000075 - - - - - - - - appendicular skeleton (VSAO) - VSAO:0000076 - - - - - - - - odontode scale (VSAO) - VSAO:0000079 - - - - - - - - non-mineralized cartilage tissue (VSAO) - VSAO:0000089 - - - - - - - - elastic cartilage tissue (VSAO) - VSAO:0000091 - - - - - - - - cartilaginous condensation (VSAO) - VSAO:0000092 - - - - - - - - postcranial axial skeleton (VSAO) - VSAO:0000093 - - - - - - - - hyaline cartilage tissue (VSAO) - VSAO:0000094 - - - - - - - - fin (VSAO) - VSAO:0000099 - - - - - - - - skeletal joint (VSAO) - VSAO:0000101 - - - - - - - - fibrocartilage (VSAO) - VSAO:0000103 - - - - - - - - paired fin (VSAO) - VSAO:0000111 - - - - - - - - enameloid (VSAO) - VSAO:0000113 - - - - - - - - pre-enameloid (VSAO) - VSAO:0000114 - - - - - - - - limb (VSAO) - VSAO:0000121 - - - - - - - - pectoral appendage (VSAO) - VSAO:0000125 - - - - - - - - pelvic appendage (VSAO) - VSAO:0000126 - - - - - - - - gastralium (VSAO) - VSAO:0000127 - - - - - - - - skeletal element (VSAO) - VSAO:0000128 - - - - - - - - pelvic fin (VSAO) - VSAO:0000129 - - - - - - - - dermal bone (VSAO) - VSAO:0000130 - - - - - - - - appendicular ossicle (VSAO) - VSAO:0000131 - - - - - - - - ossicle (VSAO) - VSAO:0000132 - - - - - - - - axial ossicle (VSAO) - VSAO:0000133 - - - - - - - - replacement element (VSAO) - VSAO:0000135 - - - - - - - - sesamoid element (VSAO) - VSAO:0000137 - - - - - - - - endochondral element (VSAO) - VSAO:0000139 - - - - - - - - endochondral bone (VSAO) - VSAO:0000145 - - - - - - - - pectoral fin (VSAO) - VSAO:0000147 - - - - - - - - forelimb (VSAO) - VSAO:0000148 - - - - - - - - splanchnocranium (VSAO) - VSAO:0000149 - - - - - - - - hindlimb (VSAO) - VSAO:0000150 - - - - - - - - forelimb skeleton (VSAO) - VSAO:0000151 - - - - - - - - hindlimb skeleton (VSAO) - VSAO:0000152 - - - - - - - - pectoral fin skeleton (VSAO) - VSAO:0000153 - - - - - - - - pelvic fin skeleton (VSAO) - VSAO:0000154 - - - - - - - - pelvic girdle skeleton (VSAO) - VSAO:0000155 - - - - - - - - pectoral girdle skeleton (VSAO) - VSAO:0000156 - - - - - - - - scapula (VSAO) - VSAO:0000157 - - - - - - - - coracoid bone (VSAO) - VSAO:0000158 - - - - - - - - interclavicle (VSAO) - VSAO:0000161 - - - - - - - - dorsal fin (VSAO) - VSAO:0000165 - - - - - - - - paired fin skeleton (VSAO) - VSAO:0000169 - - - - - - - - embryonic structure (VSAO) - VSAO:0000178 - - - - - - - - paired fin bud (VSAO) - VSAO:0000179 - - - - - - - - anatomical projection (VSAO) - VSAO:0000180 - - - - - - - - articular system (VSAO) - VSAO:0000181 - - - - - - - - vertebral centrum element (VSAO) - VSAO:0000183 - - - - - - - - vertebral element (VSAO) - VSAO:0000184 - - - - - - - - vertebral column (VSAO) - VSAO:0000185 - - - - - - - - femur (VSAO) - VSAO:0000186 - - - - - - - - cleithrum (VSAO) - VSAO:0000187 - - - - - - - - phalanx (VSAO) - VSAO:0000199 - - - - - - - - pedal digit 1 (VSAO) - VSAO:0000201 - - - - - - - - maxilla (VSAO) - VSAO:0000207 - - - - - - - - tetrapod frontal bone (VSAO) - VSAO:0000208 - - - - - - - - pectoral complex (VSAO) - VSAO:0000213 - - - - - - - - appendage girdle complex (VSAO) - VSAO:0000214 - - - - - - - - pelvic complex (VSAO) - VSAO:0000215 - - - - - - - - skeleton of limb (VSAO) - VSAO:0000300 - - - - - - - - paired limb/fin skeleton (VSAO) - VSAO:0000301 - - - - - - - - girdle skeleton (VSAO) - VSAO:0000302 - - - - - - - - appendage girdle region (VSAO) - VSAO:0000303 - - - - - - - - pelvic girdle region (VSAO) - VSAO:0000304 - - - - - - - - pectoral girdle region (VSAO) - VSAO:0000305 - - - - - - - - appendicular skeletal system (VSAO) - VSAO:0000306 - - - - - - - - perichordal bone (VSAO) - VSAO:0000307 - - - - - - - - perichondral bone (VSAO) - VSAO:0000308 - - - - - - - - pectoral appendage skeleton (VSAO) - VSAO:0005000 - - - - - - - - scapulocoracoid (VSAO) - VSAO:0005002 - - - - - - - - ischium (VSAO) - VSAO:0005006 - - - - - - - - stylopodial skeleton (VSAO) - VSAO:0005007 - - - - - - - - zeugopodial skeleton (VSAO) - VSAO:0005010 - - - - - - - - forelimb zeugopod skeleton (VSAO) - VSAO:0005011 - - - - - - - - radius bone (VSAO) - VSAO:0005012 - - - - - - - - ulna (VSAO) - VSAO:0005013 - - - - - - - - hindlimb zeugopod skeleton (VSAO) - VSAO:0005014 - - - - - - - - calcaneus (VSAO) - VSAO:0005016 - - - - - - - - limb skeleton subdivision (VSAO) - VSAO:0005018 - - - - - - - - autopodial skeleton (VSAO) - VSAO:0005019 - - - - - - - - skeleton of manus (VSAO) - VSAO:0005020 - - - - - - - - skeleton of pes (VSAO) - VSAO:0005021 - - - - - - - - mesopodial skeleton (VSAO) - VSAO:0005022 - - - - - - - - carpal skeleton (VSAO) - VSAO:0005023 - - - - - - - - tarsal skeleton (VSAO) - VSAO:0005024 - - - - - - - - metapodial skeleton (VSAO) - VSAO:0005025 - - - - - - - - metacarpus skeleton (VSAO) - VSAO:0005026 - - - - - - - - metatarsus skeleton (VSAO) - VSAO:0005027 - - - - - - - - acropodial skeleton (VSAO) - VSAO:0005028 - - - - - - - - skeleton of manual acropodium (VSAO) - VSAO:0005029 - - - - - - - - skeleton of pedal acropodium (VSAO) - VSAO:0005030 - - - - - - - - clavicle bone (VSAO) - VSAO:0005031 - - - - - - - - musculature (VSAO) - VSAO:0005038 - - - - - - - - intermedium (VSAO) - VSAO:0005040 - - - - - - - - distal carpal bone 1 (VSAO) - VSAO:0005043 - - - - - - - - distal carpal bone 2 (VSAO) - VSAO:0005044 - - - - - - - - distal carpal bone 3 (VSAO) - VSAO:0005045 - - - - - - - - distal carpal bone 4 (VSAO) - VSAO:0005046 - - - - - - - - distal carpal bone 5 (VSAO) - VSAO:0005047 - - - - - - - - medial tibial tarsal bone (VSAO) - VSAO:0005048 - - - - - - - - distal tarsal bone 1 (VSAO) - VSAO:0005052 - - - - - - - - distal tarsal bone 2 (VSAO) - VSAO:0005053 - - - - - - - - distal tarsal bone 3 (VSAO) - VSAO:0005054 - - - - - - - - distal tarsal bone 4 (VSAO) - VSAO:0005055 - - - - - - - - distal tarsal bone 5 (VSAO) - VSAO:0005056 - - - - - - - - forelimb stylopod (VSAO) - VSAO:0005057 - - - - - - - - forelimb zeugopod (VSAO) - VSAO:0005058 - - - - - - - - hindlimb zeugopod (VSAO) - VSAO:0005060 - - - - - - - - acromion (VSAO) - VSAO:0005067 - - - - - - - - bone fossa (VSAO) - VSAO:0005069 - - - - - - - From aa95ddfb95f399abbd39c5e4f62bd0a35c8095a6 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 19:49:01 +0100 Subject: [PATCH 05/45] Remove the bridge between "uberon-ext" and ZFA. This bridge is a remnant of the time where Uberon-ext was a thing. It has not been a thing for quite a while now, so this bridge is hopelessly obsolete. --- src/ontology/bridge/ext-xref.obo | 8930 --- .../bridge/hdr-cl-ext-bridge-to-zfa.obo | 11 - .../bridge/hdr-uberon-ext-bridge-to-zfa.obo | 11 - .../bridge/uberon-ext-bridge-to-zfa.obo | 11224 ---- .../bridge/uberon-ext-bridge-to-zfa.owl | 53681 ---------------- 5 files changed, 73857 deletions(-) delete mode 100644 src/ontology/bridge/ext-xref.obo delete mode 100644 src/ontology/bridge/hdr-cl-ext-bridge-to-zfa.obo delete mode 100644 src/ontology/bridge/hdr-uberon-ext-bridge-to-zfa.obo delete mode 100644 src/ontology/bridge/uberon-ext-bridge-to-zfa.obo delete mode 100644 src/ontology/bridge/uberon-ext-bridge-to-zfa.owl diff --git a/src/ontology/bridge/ext-xref.obo b/src/ontology/bridge/ext-xref.obo deleted file mode 100644 index 17b428aeb6..0000000000 --- a/src/ontology/bridge/ext-xref.obo +++ /dev/null @@ -1,8930 +0,0 @@ -treat-xrefs-as-reverse-genus-differentia: ZFA part_of NCBITaxon:7954 - - -[Term] -id: UBERON:2005295 ! axial blood vessel -xref: ZFA:0005295 ! axial blood vessel - -[Term] -id: UBERON:0001723 ! tongue -xref: ZFA:0005333 ! tongue - -[Term] -id: UBERON:2000164 ! ventral mesenchyme -xref: ZFA:0000164 ! ventral mesenchyme - -[Term] -id: UBERON:2001778 ! pelvic fin lepidotrichium 3 -xref: ZFA:0005557 ! pelvic fin lepidotrichium 3 - -[Term] -id: UBERON:0007124 ! pharyngeal pouch 3 -xref: ZFA:0001131 ! pharyngeal pouch 3 - -[Term] -id: UBERON:2001028 ! hypurapophysis -xref: ZFA:0001028 ! hypurapophysis - -[Term] -id: UBERON:2001192 ! supraneural 3 bone -xref: ZFA:0001192 ! supraneural 3 - -[Term] -id: UBERON:2000532 ! lateral division -xref: ZFA:0000532 ! lateral valvula cerebelli - -[Term] -id: UBERON:2001139 ! mediodorsal tooth row -xref: ZFA:0001139 ! mediodorsal tooth row - -[Term] -id: UBERON:2007010 ! eminentia thalami -xref: ZFA:0007010 ! eminentia thalami - -[Term] -id: UBERON:0009615 ! midbrain hindbrain boundary neural plate -xref: ZFA:0007044 ! midbrain hindbrain boundary neural plate - -[Term] -id: UBERON:2000597 ! telencephalic tracts -xref: ZFA:0000597 ! telencephalic white matter - -[Term] -id: UBERON:2000271 ! radial -xref: ZFA:0000271 ! radial - -[Term] -id: UBERON:0006240 ! future forebrain -xref: ZFA:0000062 ! presumptive forebrain - -[Term] -id: UBERON:0000490 ! unilaminar epithelium -xref: ZFA:0001495 ! unilaminar epithelium - -[Term] -id: UBERON:2000211 ! gill lamella -xref: ZFA:0000211 ! gill lamella - -[Term] -id: UBERON:2005245 ! inter-parietal joint -xref: ZFA:0005607 ! inter-parietal joint - -[Term] -id: UBERON:0001910 ! medial forebrain bundle -xref: ZFA:0005111 ! medial forebrain bundle - -[Term] -id: UBERON:2000528 ! interradialis -xref: ZFA:0000528 ! interradialis - -[Term] -id: UBERON:0001114 ! right lobe of liver -xref: ZFA:0005173 ! right liver lobe - -[Term] -id: UBERON:2001298 ! vagal placode 2 -xref: ZFA:0001298 ! vagal placode 2 - -[Term] -id: UBERON:2000976 ! somite 16 -xref: ZFA:0000976 ! somite 16 - -[Term] -id: UBERON:0004212 ! glomerular capillary -xref: ZFA:0005284 ! glomerular capillary - -[Term] -id: UBERON:2007024 ! anterior neural keel -xref: ZFA:0007024 ! anterior neural keel - -[Term] -id: UBERON:2000510 ! external levatores -xref: ZFA:0000510 ! external levatores - -[Term] -id: UBERON:2000978 ! somite 22 -xref: ZFA:0000978 ! somite 22 - -[Term] -id: UBERON:0004765 ! skeletal element -xref: ZFA:0005494 ! skeletal element - -[Term] -id: UBERON:2002032 ! lateral ethmoid-frontal joint -xref: ZFA:0005477 ! lateral ethmoid-frontal joint - -[Term] -id: UBERON:0007285 ! presumptive paraxial mesoderm -xref: ZFA:0000591 ! presumptive paraxial mesoderm - -[Term] -id: UBERON:0007286 ! presumptive floor plate -xref: ZFA:0001218 ! presumptive floor plate - -[Term] -id: UBERON:2001409 ! infraorbital 4 -xref: ZFA:0001409 ! infraorbital 4 - -[Term] -id: UBERON:0001533 ! subclavian artery -xref: ZFA:0005086 ! pectoral artery - -[Term] -id: UBERON:0005306 ! blastema -xref: ZFA:0001270 ! blastema - -[Term] -id: UBERON:2002051 ! circulus -xref: ZFA:0005499 ! circulus - -[Term] -id: UBERON:2000309 ! E-YSL -xref: ZFA:0000309 ! E-YSL - -[Term] -id: UBERON:2000872 ! epaxial region somite 29 -xref: ZFA:0000872 ! epaxial region somite 29 - -[Term] -id: UBERON:2000987 ! hypaxial region somite 3 -xref: ZFA:0000987 ! hypaxial region somite 3 - -[Term] -id: UBERON:0004132 ! trigeminal sensory nucleus -xref: ZFA:0000433 ! sensory trigeminal nucleus - -[Term] -id: UBERON:2002240 ! Purkinje cell layer corpus cerebelli -xref: ZFA:0001706 ! Purkinje cell layer corpus cerebelli - -[Term] -id: UBERON:2001767 ! pectoral fin lepidotrichium 7 -xref: ZFA:0005551 ! pectoral fin lepidotrichium 7 - -[Term] -id: UBERON:2001171 ! os suspensorium -xref: ZFA:0001171 ! os suspensorium - -[Term] -id: UBERON:2002144 ! anterior catecholaminergic tract -xref: ZFA:0005342 ! anterior catecholaminergic tract - -[Term] -id: UBERON:2001010 ! muscle pioneer somite 5 -xref: ZFA:0001010 ! muscle pioneer somite 5 - -[Term] -id: UBERON:2001821 ! notochord posterior region -xref: ZFA:0001670 ! notochord posterior region - -[Term] -id: UBERON:2001221 ! anterior copula -xref: ZFA:0001221 ! copula 1 - -[Term] -id: UBERON:2001140 ! dorsal tooth row -xref: ZFA:0001140 ! dorsal tooth row - -[Term] -id: UBERON:0003079 ! floor plate -xref: ZFA:0000022 ! floor plate - -[Term] -id: UBERON:0005283 ! tela choroidea -xref: ZFA:0000447 ! tela chorioidea - -[Term] -id: UBERON:0001774 ! muscle of trunk -xref: ZFA:0000473 ! trunk musculature - -[Term] -id: UBERON:2005184 ! MiD2cl -xref: ZFA:0005184 ! MiD2cl - -[Term] -id: UBERON:2000817 ! fast muscle cell somite 23 -xref: ZFA:0000817 ! fast muscle cell somite 23 - -[Term] -id: UBERON:2000633 ! caudal tuberculum -xref: ZFA:0000633 ! caudal tuberculum - -[Term] -id: UBERON:0002360 ! meninx -xref: ZFA:0001355 ! primitive meninx - -[Term] -id: UBERON:2001758 ! dorsal fin lepidotrichium 5 -xref: ZFA:0005359 ! dorsal fin lepidotrichium 5 - -[Term] -id: UBERON:0002514 ! intramembranous bone -xref: ZFA:0001635 ! intramembranous bone - -[Term] -id: UBERON:0006011 ! hyaloid vein -xref: ZFA:0005047 ! hyaloid vein - -[Term] -id: UBERON:0006792 ! intermediate layer of superior colliculus -xref: ZFA:0000327 ! central zone - -[Term] -id: UBERON:4000163 ! anal fin -xref: ZFA:0001162 ! anal fin - -[Term] -id: UBERON:0002405 ! immune system -xref: ZFA:0001159 ! immune system - -[Term] -id: UBERON:2001142 ! tooth 5V -xref: ZFA:0001142 ! tooth 5V - -[Term] -id: UBERON:0006062 ! articular process of vertebra -xref: ZFA:0001603 ! intercalarium articulating process - -[Term] -id: UBERON:2001183 ! dermal superficial region -xref: ZFA:0001183 ! dermal superficial region - -[Term] -id: UBERON:0002065 ! posterior cardinal vein -xref: ZFA:0000477 ! posterior cardinal vein - -[Term] -id: UBERON:2000348 ! exoccipital posteroventral region -xref: ZFA:0001597 ! exoccipital posteroventral region - -[Term] -id: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -xref: ZFA:0001385 ! apical ectodermal ridge pelvic fin bud - -[Term] -id: UBERON:0002212 ! macula of saccule of membranous labyrinth -xref: ZFA:0007000 ! macula saccule - -[Term] -id: UBERON:2000267 ! primary olfactory fiber layer -xref: ZFA:0000267 ! primary olfactory fiber layer - -[Term] -id: UBERON:0002043 ! dorsal raphe nucleus -xref: ZFA:0000366 ! inferior raphe nucleus - -[Term] -id: UBERON:2005224 ! yolk larval melanophore stripe -xref: ZFA:0005224 ! yolk larval melanophore stripe - -[Term] -id: UBERON:0002154 ! lateral reticular nucleus -xref: ZFA:0000535 ! lateral reticular nucleus - -[Term] -id: UBERON:2001831 ! pterosphenoid-orbitosphenoid joint -xref: ZFA:0005483 ! pterosphenoid-orbitosphenoid joint - -[Term] -id: UBERON:2007031 ! anterior neural rod -xref: ZFA:0007031 ! anterior neural rod - -[Term] -id: UBERON:2005050 ! palatocerebral artery -xref: ZFA:0005050 ! palatocerebral artery - -[Term] -id: UBERON:2000526 ! intermuscular bone -xref: ZFA:0000526 ! intermuscular bone - -[Term] -id: UBERON:2000419 ! pterosphenoid -xref: ZFA:0000419 ! pterosphenoid - -[Term] -id: UBERON:2001608 ! autopalatine-lateral ethmoid joint -xref: ZFA:0005420 ! autopalatine-lateral ethmoid joint - -[Term] -id: UBERON:2001150 ! tooth 2D -xref: ZFA:0001150 ! tooth 2D - -[Term] -id: UBERON:2005212 ! MeM -xref: ZFA:0005212 ! MeM - -[Term] -id: UBERON:2000952 ! sclerotome somite 1 -xref: ZFA:0000952 ! sclerotome somite 1 - -[Term] -id: UBERON:0009909 ! rostral root of abducens nerve -xref: ZFA:0000665 ! rostral root of abducens nerve - -[Term] -id: UBERON:2000630 ! caudal parvocellular preoptic nucleus -xref: ZFA:0000630 ! caudal parvocellular preoptic nucleus - -[Term] -id: UBERON:0005493 ! hyoid muscle -xref: ZFA:0000521 ! hyoid muscle - -[Term] -id: UBERON:2001303 ! vagal ganglion 2 -xref: ZFA:0001303 ! vagal ganglion 2 - -[Term] -id: UBERON:2000580 ! rostral preglomerular nucleus -xref: ZFA:0000580 ! rostral preglomerular nucleus - -[Term] -id: UBERON:2005303 ! caudal fin lymph vessel -xref: ZFA:0005303 ! caudal fin lymph vessel - -[Term] -id: UBERON:2001013 ! myotome somite 10 -xref: ZFA:0001013 ! myotome somite 10 - -[Term] -id: UBERON:2000927 ! myotome somite 16 -xref: ZFA:0000927 ! myotome somite 16 - -[Term] -id: UBERON:2005259 ! continuous capillary -xref: ZFA:0005259 ! continuous blood vessel endothelium - -[Term] -id: UBERON:2001542 ! pelvic radial 1 cartilage -xref: ZFA:0001542 ! pelvic radial 1 cartilage - -[Term] -id: UBERON:0002433 ! pars tuberalis of adenohypophysis -xref: ZFA:0001196 ! pars tuberalis - -[Term] -id: UBERON:2000541 ! marginal blastomere -xref: ZFA:0000541 ! marginal blastomere - -[Term] -id: UBERON:2001770 ! anal fin lepidotrichium 2 -xref: ZFA:0005400 ! anal fin lepidotrichium 2 - -[Term] -id: UBERON:2002213 ! obsolete optic nerve head -xref: ZFA:0001625 ! optic nerve head - -[Term] -id: UBERON:2000980 ! somite 25 -xref: ZFA:0000980 ! somite 25 - -[Term] -id: UBERON:0000019 ! camera-type eye -xref: ZFA:0000107 ! eye - -[Term] -id: UBERON:2000975 ! somite 13 -xref: ZFA:0000975 ! somite 13 - -[Term] -id: UBERON:2001143 ! tooth 4V -xref: ZFA:0001143 ! tooth 4V - -[Term] -id: UBERON:2000448 ! tertiary gustatory nucleus -xref: ZFA:0000448 ! tertiary gustatory nucleus - -[Term] -id: UBERON:0001714 ! cranial ganglion -xref: ZFA:0000013 ! cranial ganglion - -[Term] -id: UBERON:2001009 ! muscle pioneer somite 3 -xref: ZFA:0001009 ! muscle pioneer somite 3 - -[Term] -id: UBERON:2000897 ! hypaxial region somite 23 -xref: ZFA:0000897 ! hypaxial region somite 23 - -[Term] -id: UBERON:0008913 ! perichondral bone -xref: ZFA:0001630 ! perichondral bone - -[Term] -id: UBERON:2002011 ! lateral fontanel of frontal -xref: ZFA:0005537 ! lateral fontanel of frontal - -[Term] -id: UBERON:0001092 ! cervical vertebra 1 -xref: ZFA:0001167 ! vertebra 1 - -[Term] -id: UBERON:0006606 ! mandibular symphysis -xref: ZFA:0005488 ! mandibular symphysis - -[Term] -id: UBERON:2000841 ! slow muscle cell somite 14 -xref: ZFA:0000841 ! slow muscle cell somite 14 - -[Term] -id: UBERON:0000204 ! ventral part of telencephalon -xref: ZFA:0000304 ! ventral telencephalon - -[Term] -id: UBERON:2001165 ! supraneural 5 bone -xref: ZFA:0001165 ! supraneural 5 - -[Term] -id: UBERON:0002406 ! pericardial sac -xref: ZFA:0000054 ! pericardium - -[Term] -id: UBERON:0001943 ! midbrain tegmentum -xref: ZFA:0000160 ! tegmentum - -[Term] -id: UBERON:2000544 ! pectoral fin actinotrichium -xref: ZFA:0005545 ! pectoral fin actinotrichium - -[Term] -id: UBERON:0007299 ! choroid plexus of tectal ventricle -xref: ZFA:0001445 ! choroid plexus tectal ventricle - -[Term] -id: UBERON:2001003 ! muscle pioneer somite 12 -xref: ZFA:0001003 ! muscle pioneer somite 12 - -[Term] -id: UBERON:0005729 ! pectoral appendage field -xref: ZFA:0001453 ! pectoral fin field - -[Term] -id: UBERON:2000318 ! brain stem/spinal tract and commissures -xref: ZFA:0000318 ! brainstem and spinal white matter - -[Term] -id: UBERON:2001038 ! sclerotome somite 16 -xref: ZFA:0001038 ! sclerotome somite 16 - -[Term] -id: UBERON:0002180 ! ventral funiculus -xref: ZFA:0000605 ! ventral funiculus - -[Term] -id: UBERON:0001285 ! nephron -xref: ZFA:0005282 ! nephron - -[Term] -id: UBERON:2000456 ! ventral nucleus of V -xref: ZFA:0000456 ! ventral nucleus of ventral telencephalon - -[Term] -id: UBERON:0001759 ! vagus nerve -xref: ZFA:0000453 ! cranial nerve X - -[Term] -id: UBERON:0007306 ! pronephric glomerular capillary -xref: ZFA:0005309 ! pronephric glomerular capillary - -[Term] -id: UBERON:2000790 ! muscle pioneer somite 10 -xref: ZFA:0000790 ! muscle pioneer somite 10 - -[Term] -id: UBERON:0001473 ! lymphatic vessel -xref: ZFA:0005105 ! lymph vasculature - -[Term] -id: UBERON:0000480 ! anatomical group -xref: ZFA:0001512 ! anatomical group - -[Term] -id: UBERON:2001777 ! pelvic fin lepidotrichium 2 -xref: ZFA:0005555 ! pelvic fin lepidotrichium 2 - -[Term] -id: UBERON:2000096 ! cardinal system -xref: ZFA:0000096 ! cardinal system - -[Term] -id: UBERON:2002179 ! peripheral nucleus of ventral telencephalon -xref: ZFA:0001667 ! peripheral nucleus of ventral telencephalon - -[Term] -id: UBERON:2001750 ! rib of vertebra 6 -xref: ZFA:0005543 ! rib of vertebra 6 - -[Term] -id: UBERON:2001430 ! pneumatic duct -xref: ZFA:0001430 ! pneumatic duct - -[Term] -id: UBERON:0001305 ! ovarian follicle -xref: ZFA:0001110 ! ovarian follicle - -[Term] -id: UBERON:2007027 ! forebrain midbrain boundary neural keel -xref: ZFA:0007027 ! forebrain midbrain boundary neural keel - -[Term] -id: UBERON:2000599 ! torus semicircularis -xref: ZFA:0000599 ! torus semicircularis - -[Term] -id: UBERON:2000870 ! epaxial region somite 26 -xref: ZFA:0000870 ! epaxial region somite 26 - -[Term] -id: UBERON:0004673 ! trigeminal nerve root -xref: ZFA:0000192 ! descending trigeminal root - -[Term] -id: UBERON:2000775 ! hypaxial region somite 30 -xref: ZFA:0000775 ! hypaxial region somite 30 - -[Term] -id: UBERON:2005208 ! RoM3m -xref: ZFA:0005208 ! RoM3m - -[Term] -id: UBERON:2000392 ! median tuberal portion -xref: ZFA:0000392 ! median tuberal portion - -[Term] -id: UBERON:0002534 ! paired fin -xref: ZFA:0005596 ! paired fin - -[Term] -id: UBERON:2000958 ! sclerotome somite 23 -xref: ZFA:0000958 ! sclerotome somite 23 - -[Term] -id: UBERON:0000991 ! gonad -xref: ZFA:0000413 ! gonad - -[Term] -id: UBERON:2005233 ! obsolete CiD -xref: ZFA:0005233 ! CiD - -[Term] -id: UBERON:0000366 ! flexor muscle -xref: ZFA:0005271 ! flexor muscle - -[Term] -id: UBERON:2001534 ! pharyngobranchial 3 cartilage -xref: ZFA:0001534 ! pharyngobranchial 3 cartilage - -[Term] -id: UBERON:2000620 ! autopalatine -xref: ZFA:0000620 ! autopalatine - -[Term] -id: UBERON:2002147 ! arrector muscle -xref: ZFA:0005275 ! arrector muscle - -[Term] -id: UBERON:2000324 ! caudal periventricular hypothalamus -xref: ZFA:0000324 ! caudal periventricular hypothalamus - -[Term] -id: UBERON:0001008 ! excretory system -xref: ZFA:0000163 ! renal system - -[Term] -id: UBERON:2001037 ! sclerotome somite 13 -xref: ZFA:0001037 ! sclerotome somite 13 - -[Term] -id: UBERON:2000967 ! slow muscle cell somite 20 -xref: ZFA:0000967 ! slow muscle cell somite 20 - -[Term] -id: UBERON:2001243 ! epibranchial 1 bone -xref: ZFA:0001243 ! epibranchial 1 bone - -[Term] -id: UBERON:0001115 ! left lobe of liver -xref: ZFA:0005172 ! left liver lobe - -[Term] -id: UBERON:0007122 ! pharyngeal pouch 1 -xref: ZFA:0001128 ! pharyngeal pouch 1 - -[Term] -id: UBERON:2001065 ! lateral mesoderm -xref: ZFA:0001065 ! lateral mesoderm - -[Term] -id: UBERON:2000729 ! epaxial region somite 3 -xref: ZFA:0000729 ! epaxial region somite 3 - -[Term] -id: UBERON:2000044 ! myotome somite 14 -xref: ZFA:0000044 ! myotome somite 14 - -[Term] -id: UBERON:0001633 ! basilar artery -xref: ZFA:0005002 ! basilar artery - -[Term] -id: UBERON:2000913 ! molecular layer valvula cerebelli -xref: ZFA:0000913 ! molecular layer valvula cerebelli - -[Term] -id: UBERON:2002192 ! dorsolateral motor nucleus of vagal nerve -xref: ZFA:0001695 ! dorsolateral motor nucleus of vagal nerve - -[Term] -id: UBERON:2001141 ! tooth 1V -xref: ZFA:0001141 ! tooth 1V - -[Term] -id: UBERON:2001578 ! anterior dorsomedial process of autopalatine -xref: ZFA:0001578 ! anterior dorsomedial process of autopalatine - -[Term] -id: UBERON:2000800 ! muscle pioneer somite 9 -xref: ZFA:0000800 ! muscle pioneer somite 9 - -[Term] -id: UBERON:2001967 ! orbit -xref: ZFA:0005558 ! orbit - -[Term] -id: UBERON:0001777 ! substantia propria of cornea -xref: ZFA:0001685 ! corneal stroma - -[Term] -id: UBERON:2001403 ! supraethmoid -xref: ZFA:0001403 ! supraethmoid - -[Term] -id: UBERON:0002384 ! connective tissue -xref: ZFA:0001632 ! portion of connective tissue - -[Term] -id: UBERON:2001528 ! epibranchial 1 cartilage -xref: ZFA:0001528 ! epibranchial 1 cartilage - -[Term] -id: UBERON:2007043 ! hindbrain neural tube -xref: ZFA:0007043 ! hindbrain neural tube - -[Term] -id: UBERON:2005101 ! interray vessel -xref: ZFA:0005101 ! interray vessel - -[Term] -id: UBERON:0001152 ! cystic duct -xref: ZFA:0005166 ! cystic duct - -[Term] -id: UBERON:2001339 ! nucleus of the tract of the anterior commissure -xref: ZFA:0001339 ! nucleus of the tract of the anterior commissure - -[Term] -id: UBERON:2001269 ! regenerating fin/limb -xref: ZFA:0001269 ! regenerating fin - -[Term] -id: UBERON:2000408 ! periventricular nucleus of caudal tuberculum -xref: ZFA:0000408 ! periventricular nucleus of caudal tuberculum - -[Term] -id: UBERON:2000974 ! somite 10 -xref: ZFA:0000974 ! somite 10 - -[Term] -id: UBERON:2000741 ! epaxial region somite 14 -xref: ZFA:0000741 ! epaxial region somite 14 - -[Term] -id: UBERON:2007041 ! forebrain neural tube -xref: ZFA:0007041 ! forebrain neural tube - -[Term] -id: UBERON:0002110 ! gallbladder -xref: ZFA:0000208 ! gall bladder - -[Term] -id: UBERON:2001769 ! anal fin lepidotrichium 1 -xref: ZFA:0005399 ! anal fin lepidotrichium 1 - -[Term] -id: UBERON:2001302 ! vagal ganglion 1 -xref: ZFA:0001302 ! vagal ganglion 1 - -[Term] -id: UBERON:2007033 ! forebrain midbrain boundary neural rod -xref: ZFA:0007033 ! forebrain midbrain boundary neural rod - -[Term] -id: UBERON:2001742 ! auditory foramen -xref: ZFA:0005419 ! auditory foramen - -[Term] -id: UBERON:0005289 ! tela choroidea of telencephalic ventricle -xref: ZFA:0005160 ! tela chorioidea telencephalic ventricle - -[Term] -id: UBERON:0000467 ! anatomical system -xref: ZFA:0001439 ! anatomical system - -[Term] -id: UBERON:2005324 ! gill ionocyte -xref: ZFA:0005324 ! gill ionocyte - -[Term] -id: UBERON:2000642 ! decussation of the medial octavolateralis nucleus -xref: ZFA:0000642 ! decussation of the medial octavolateralis nucleus - -[Term] -id: UBERON:2005267 ! erector muscle -xref: ZFA:0005267 ! erector muscle - -[Term] -id: UBERON:2000506 ! dorsal zone of D -xref: ZFA:0000506 ! dorsal zone of dorsal telencephalon - -[Term] -id: UBERON:2000356 ! gill raker -xref: ZFA:0000356 ! gill raker - -[Term] -id: UBERON:2000342 ! dorsal inclinator -xref: ZFA:0000342 ! dorsal inclinator - -[Term] -id: UBERON:2001300 ! vagal placode 4 -xref: ZFA:0001300 ! vagal placode 4 - -[Term] -id: UBERON:0002113 ! kidney -xref: ZFA:0000529 ! kidney - -[Term] -id: UBERON:2000280 ! medial division -xref: ZFA:0000280 ! medial valvula cerebelli - -[Term] -id: UBERON:0000054 ! macula -xref: ZFA:0000386 ! macula - -[Term] -id: UBERON:2005381 ! dorsal fin proximal radial 4 -xref: ZFA:0005381 ! dorsal fin proximal radial 4 - -[Term] -id: UBERON:0002213 ! cartilaginous joint -xref: ZFA:0005155 ! cartilaginous joint - -[Term] -id: UBERON:0002410 ! autonomic nervous system -xref: ZFA:0001574 ! autonomic nervous system - -[Term] -id: UBERON:0001675 ! trigeminal ganglion -xref: ZFA:0000295 ! trigeminal ganglion - -[Term] -id: UBERON:0001893 ! telencephalon -xref: ZFA:0000079 ! telencephalon - -[Term] -id: UBERON:2001172 ! roofing cartilage -xref: ZFA:0001172 ! roofing cartilage - -[Term] -id: UBERON:2001784 ! autopalatine-vomer joint -xref: ZFA:0005422 ! autopalatine-vomer joint - -[Term] -id: UBERON:2000233 ! lower oral valve -xref: ZFA:0000233 ! lower oral valve - -[Term] -id: UBERON:0005844 ! spinal cord segment -xref: ZFA:0001332 ! spinal neuromere - -[Term] -id: UBERON:2000299 ! ventral entopeduncular nucleus V -xref: ZFA:0000299 ! ventral entopeduncular nucleus of ventral telencephalon - -[Term] -id: UBERON:2000188 ! corpus cerebelli -xref: ZFA:0000188 ! corpus cerebelli - -[Term] -id: UBERON:2000638 ! commissura rostral, pars dorsalis -xref: ZFA:0000638 ! commissura rostral, pars dorsalis - -[Term] -id: UBERON:0002296 ! dorsal mesentery -xref: ZFA:0005130 ! dorsal mesentery - -[Term] -id: UBERON:2001540 ! pelvic radial 3 cartilage -xref: ZFA:0001540 ! pelvic radial 3 cartilage - -[Term] -id: UBERON:0000152 ! pelvic fin -xref: ZFA:0001184 ! pelvic fin - -[Term] -id: UBERON:0006553 ! renal duct -xref: ZFA:0005289 ! renal duct - -[Term] -id: UBERON:2000766 ! granular layer valvula cerebelli -xref: ZFA:0000766 ! granular layer valvula cerebelli - -[Term] -id: UBERON:2005201 ! RoL3 -xref: ZFA:0005201 ! RoL3 - -[Term] -id: UBERON:2001073 ! axial vasculature -xref: ZFA:0001073 ! axial vasculature - -[Term] -id: UBERON:2001059 ! cranial division of the internal carotid artery -xref: ZFA:0001059 ! cranial division of the internal carotid artery - -[Term] -id: UBERON:2005015 ! afferent lamellar arteriole -xref: ZFA:0005015 ! afferent lamellar arteriole - -[Term] -id: UBERON:2005000 ! basal communicating artery -xref: ZFA:0005000 ! basal communicating artery - -[Term] -id: UBERON:0005419 ! pectoral appendage bud -xref: ZFA:0000141 ! pectoral fin bud - -[Term] -id: UBERON:2001427 ! anterior naris -xref: ZFA:0001427 ! anterior naris - -[Term] -id: UBERON:0002559 ! medullary reticular formation -xref: ZFA:0000421 ! reticular formation - -[Term] -id: UBERON:0000479 ! tissue -xref: ZFA:0001477 ! portion of tissue - -[Term] -id: UBERON:0002105 ! vestibulo-auditory system -xref: ZFA:0001138 ! vestibuloauditory system - -[Term] -id: UBERON:0005176 ! tooth enamel organ -xref: ZFA:0005138 ! dental organ - -[Term] -id: UBERON:2000394 ! molecular layer corpus cerebelli -xref: ZFA:0000394 ! molecular layer corpus cerebelli - -[Term] -id: UBERON:2000718 ! epaxial region somite 27 -xref: ZFA:0000718 ! epaxial region somite 27 - -[Term] -id: UBERON:0004127 ! compact layer of ventricle -xref: ZFA:0005062 ! compact layer of ventricle - -[Term] -id: UBERON:2001517 ! ceratobranchial 2 cartilage -xref: ZFA:0001517 ! ceratobranchial 2 cartilage - -[Term] -id: UBERON:2002033 ! prootic-pterosphenoid joint -xref: ZFA:0005482 ! prootic-pterosphenoid joint - -[Term] -id: UBERON:0003924 ! ventral pancreatic bud -xref: ZFA:0001369 ! anterior pancreatic bud - -[Term] -id: UBERON:2000461 ! Weberian ossicle -xref: ZFA:0000461 ! Weberian ossicle - -[Term] -id: UBERON:0003106 ! urostyle -xref: ZFA:0000158 ! urostyle - -[Term] -id: UBERON:2000475 ! paraventricular organ -xref: ZFA:0000475 ! paraventricular organ - -[Term] -id: UBERON:2000439 ! superficial pelvic abductor -xref: ZFA:0000439 ! superficial pelvic abductor - -[Term] -id: UBERON:2002172 ! branchial mesenchyme -xref: ZFA:0001650 ! branchial mesenchyme - -[Term] -id: UBERON:2001992 ! branched anal fin ray -xref: ZFA:0005535 ! branched anal fin ray - -[Term] -id: UBERON:2005266 ! pterotic fossa -xref: ZFA:0005630 ! pterotic fossa - -[Term] -id: UBERON:2001008 ! muscle pioneer somite 27 -xref: ZFA:0001008 ! muscle pioneer somite 27 - -[Term] -id: UBERON:2002218 ! parallel fiber -xref: ZFA:0001713 ! parallel fiber - -[Term] -id: UBERON:2000412 ! posterior semicircular canal primordium -xref: ZFA:0000412 ! otic vesicle posterior protrusion - -[Term] -id: UBERON:0005502 ! rhombomere roof plate -xref: ZFA:0001311 ! roof plate rhombomere region - -[Term] -id: UBERON:2001814 ! mandibular sensory canal -xref: ZFA:0005451 ! mandibular sensory canal - -[Term] -id: UBERON:2000721 ! slow muscle cell somite 27 -xref: ZFA:0000721 ! slow muscle cell somite 27 - -[Term] -id: UBERON:0006065 ! hemal arch -xref: ZFA:0000519 ! hemal arch - -[Term] -id: UBERON:2001389 ! regeneration epithelium of fin/limb -xref: ZFA:0001389 ! regeneration epithelium - -[Term] -id: UBERON:0002478 ! orbitosphenoid -xref: ZFA:0000253 ! orbitosphenoid - -[Term] -id: UBERON:2001392 ! parapophysis 1 -xref: ZFA:0001392 ! parapophysis 1 - -[Term] -id: UBERON:0001644 ! trochlear nerve -xref: ZFA:0000600 ! cranial nerve IV - -[Term] -id: UBERON:0001076 ! spinous process of vertebra -xref: ZFA:0001336 ! neural spine - -[Term] -id: UBERON:0009614 ! hindbrain neural plate -xref: ZFA:0007022 ! hindbrain neural plate - -[Term] -id: UBERON:0001645 ! trigeminal nerve -xref: ZFA:0000697 ! cranial nerve V - -[Term] -id: UBERON:2005181 ! VaP motor neuron -xref: ZFA:0005181 ! VaP motor neuron - -[Term] -id: UBERON:2000747 ! epaxial region somite 30 -xref: ZFA:0000747 ! epaxial region somite 30 - -[Term] -id: UBERON:0007282 ! presumptive segmental plate -xref: ZFA:0000053 ! presumptive segmental plate - -[Term] -id: UBERON:2000347 ! dorsal zone of median tuberal portion of hypothalamus -xref: ZFA:0000347 ! dorsal hypothalamic zone - -[Term] -id: UBERON:0006321 ! superior oblique extraocular muscle -xref: ZFA:0000738 ! dorsal oblique extraocular muscle - -[Term] -id: UBERON:0001359 ! cerebrospinal fluid -xref: ZFA:0001626 ! cerebral spinal fluid - -[Term] -id: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -xref: ZFA:0000992 ! lateral migration pathway mesenchyme - -[Term] -id: UBERON:2000701 ! ventral arrector -xref: ZFA:0000701 ! ventral arrector - -[Term] -id: UBERON:0001681 ! nasal bone -xref: ZFA:0000365 ! nasal bone - -[Term] -id: UBERON:2002094 ! dorsal fin pterygiophore 1 -xref: ZFA:0005364 ! dorsal fin pterygiophore 1 - -[Term] -id: UBERON:0002179 ! lateral funiculus -xref: ZFA:0000533 ! lateral funiculus - -[Term] -id: UBERON:2001567 ! oocyte stage I -xref: ZFA:0001567 ! oocyte stage I - -[Term] -id: UBERON:0001898 ! hypothalamus -xref: ZFA:0000032 ! hypothalamus - -[Term] -id: UBERON:2005264 ! supraoccipital-parietal joint -xref: ZFA:0005609 ! supraoccipital-parietal joint - -[Term] -id: UBERON:2001928 ! articular fossa of opercle -xref: ZFA:0005442 ! articular fossa of opercle - -[Term] -id: UBERON:0004124 ! myocardium trabecular layer -xref: ZFA:0005059 ! trabecular layer - -[Term] -id: UBERON:2000058 ! polster -xref: ZFA:0000058 ! polster - -[Term] -id: UBERON:2000238 ! medial olfactory tract -xref: ZFA:0000238 ! medial olfactory tract - -[Term] -id: UBERON:2000901 ! hypaxial region somite 7 -xref: ZFA:0000901 ! hypaxial region somite 7 - -[Term] -id: UBERON:2005218 ! CaD -xref: ZFA:0005218 ! CaD - -[Term] -id: UBERON:0008915 ! pore -xref: ZFA:0005449 ! pore - -[Term] -id: UBERON:2005311 ! pronephric glomerular capsule epithelium -xref: ZFA:0005311 ! pronephric glomerular capsule epithelium - -[Term] -id: UBERON:2005149 ! distal epidermal cap of regenerating fin/limb -xref: ZFA:0005149 ! distal epidermal cap - -[Term] -id: UBERON:2000757 ! fast muscle cell somite 27 -xref: ZFA:0000757 ! fast muscle cell somite 27 - -[Term] -id: UBERON:0005745 ! optic canal -xref: ZFA:0005428 ! optic foramen - -[Term] -id: UBERON:2005031 ! dorsal longitudinal vein -xref: ZFA:0005031 ! dorsal longitudinal vein - -[Term] -id: UBERON:2001462 ! somite border -xref: ZFA:0001462 ! somite border - -[Term] -id: UBERON:0007213 ! mesenchyme derived from head neural crest -xref: ZFA:0000787 ! mesenchyme derived from head neural crest - -[Term] -id: UBERON:2001412 ! epiotic -xref: ZFA:0001412 ! epiotic - -[Term] -id: UBERON:2000918 ! muscle pioneer somite 20 -xref: ZFA:0000918 ! muscle pioneer somite 20 - -[Term] -id: UBERON:2001732 ! vertebral element 5 -xref: ZFA:0005347 ! vertebra 5 - -[Term] -id: UBERON:0001720 ! cochlear nucleus -xref: ZFA:0001638 ! statoacoustic (VIII) nucleus - -[Term] -id: UBERON:2000074 ! somite 26 -xref: ZFA:0000074 ! somite 26 - -[Term] -id: UBERON:2001583 ! preural centrum 1+ ural centrum 1 -xref: ZFA:0001583 ! preural centrum 1+ ural centrum 1 - -[Term] -id: UBERON:2001811 ! infraorbital sensory canal -xref: ZFA:0005392 ! infraorbital sensory canal - -[Term] -id: UBERON:2005275 ! hyomandibular foramen -xref: ZFA:0005629 ! hyomandibular foramen - -[Term] -id: UBERON:2007013 ! preplacodal ectoderm -xref: ZFA:0007013 ! preplacodal ectoderm - -[Term] -id: UBERON:2000072 ! somite 1 -xref: ZFA:0000072 ! somite 1 - -[Term] -id: UBERON:2005038 ! supraintestinal vein -xref: ZFA:0005038 ! supraintestinal vein - -[Term] -id: UBERON:2000624 ! obsolete brachium conjunctivum -xref: ZFA:0000624 ! brachium conjunctivum - -[Term] -id: UBERON:0000945 ! stomach -xref: ZFA:0000437 ! stomach - -[Term] -id: UBERON:0006569 ! diencephalic nucleus -xref: ZFA:0001659 ! diencephalic nucleus - -[Term] -id: UBERON:2001863 ! inter-hypobranchial 3 joint -xref: ZFA:0005474 ! inter-hypobranchial 3 joint - -[Term] -id: UBERON:0005568 ! rhombomere 1 roof plate -xref: ZFA:0001033 ! roof plate rhombomere 1 - -[Term] -id: UBERON:0000165 ! mouth -xref: ZFA:0000547 ! mouth - -[Term] -id: UBERON:0011363 ! cranial lymph vasculature -xref: ZFA:0005298 ! cranial lymph vessel - -[Term] -id: UBERON:0003298 ! roof plate of neural tube -xref: ZFA:0001436 ! roof plate neural tube region - -[Term] -id: UBERON:0009611 ! midbrain neural plate -xref: ZFA:0007019 ! midbrain neural plate - -[Term] -id: UBERON:0000155 ! theca cell layer -xref: ZFA:0001113 ! thecal cell layer - -[Term] -id: UBERON:0006849 ! scapula -xref: ZFA:0000583 ! scapula - -[Term] -id: UBERON:2000530 ! lapillus -xref: ZFA:0000530 ! lapillus - -[Term] -id: UBERON:2005231 ! bifurcate interneuron -xref: ZFA:0005231 ! bifurcate interneuron - -[Term] -id: UBERON:0001080 ! inferior articular process of vertebra -xref: ZFA:0000681 ! neural postzygapophysis - -[Term] -id: UBERON:0005581 ! rhombomere 5 roof plate -xref: ZFA:0000828 ! roof plate rhombomere 5 - -[Term] -id: UBERON:0002288 ! choroid plexus of third ventricle -xref: ZFA:0001444 ! choroid plexus third ventricle - -[Term] -id: UBERON:2001431 ! primitive olfactory epithelium -xref: ZFA:0001431 ! primitive olfactory epithelium - -[Term] -id: UBERON:4000176 ! anal fin lepidotrichium -xref: ZFA:0001421 ! anal fin lepidotrichium - -[Term] -id: UBERON:0008895 ! splanchnocranium -xref: ZFA:0001216 ! splanchnocranium - -[Term] -id: UBERON:2001240 ! ceratobranchial 4 bone -xref: ZFA:0001240 ! ceratobranchial 4 bone - -[Term] -id: UBERON:0005374 ! spinal cord lateral column -xref: ZFA:0000531 ! lateral column - -[Term] -id: UBERON:2005344 ! preopticohypothalamic tract -xref: ZFA:0005344 ! preopticohypothalamic tract - -[Term] -id: UBERON:2000972 ! slow muscle cell somite 4 -xref: ZFA:0000972 ! slow muscle cell somite 4 - -[Term] -id: UBERON:0002827 ! auditory ganglion -xref: ZFA:0000588 ! statoacoustic (VIII) ganglion - -[Term] -id: UBERON:0005587 ! rhombomere 7 roof plate -xref: ZFA:0000951 ! roof plate rhombomere 7 - -[Term] -id: UBERON:2000793 ! muscle pioneer somite 19 -xref: ZFA:0000793 ! muscle pioneer somite 19 - -[Term] -id: UBERON:2000294 ! torus lateralis -xref: ZFA:0000294 ! torus lateralis - -[Term] -id: UBERON:0004356 ! apical ectodermal ridge -xref: ZFA:0001702 ! apical ectodermal ridge - -[Term] -id: UBERON:2005066 ! bulbus arteriosus outer layer -xref: ZFA:0005066 ! bulbus arteriosus outer layer - -[Term] -id: UBERON:2000947 ! dorsal fin proximal radial -xref: ZFA:0000947 ! dorsal fin proximal radial - -[Term] -id: UBERON:0006951 ! inner dental epithelium -xref: ZFA:0005136 ! inner dental epithelium - -[Term] -id: UBERON:2001235 ! hypobranchial 3 bone -xref: ZFA:0001235 ! hypobranchial 3 bone - -[Term] -id: UBERON:2000988 ! hypaxial region somite 5 -xref: ZFA:0000988 ! hypaxial region somite 5 - -[Term] -id: UBERON:0001643 ! oculomotor nerve -xref: ZFA:0000405 ! cranial nerve III - -[Term] -id: UBERON:0002221 ! fontanelle -xref: ZFA:0005536 ! fontanel - -[Term] -id: UBERON:2000826 ! central nucleus torus semicircularis -xref: ZFA:0000826 ! central nucleus torus semicircularis - -[Term] -id: UBERON:0001899 ! epithalamus -xref: ZFA:0000509 ! epithalamus - -[Term] -id: UBERON:2001016 ! myotome somite 2 -xref: ZFA:0001016 ! myotome somite 2 - -[Term] -id: UBERON:0000162 ! cloaca -xref: ZFA:0000330 ! cloacal chamber - -[Term] -id: UBERON:2005074 ! central cardiac conduction system -xref: ZFA:0005074 ! central cardiac conduction system - -[Term] -id: UBERON:2005317 ! pectoral fin fold -xref: ZFA:0005317 ! pectoral fin fold - -[Term] -id: UBERON:0005789 ! lamina rara externa -xref: ZFA:0005288 ! lamina rara externa - -[Term] -id: UBERON:2000772 ! hypaxial region somite 25 -xref: ZFA:0000772 ! hypaxial region somite 25 - -[Term] -id: UBERON:0001013 ! adipose tissue -xref: ZFA:0005345 ! adipose tissue - -[Term] -id: UBERON:2005268 ! preopercle horizontal limb-symplectic joint -xref: ZFA:0005631 ! preopercle horizontal limb-symplectic joint - -[Term] -id: UBERON:2000970 ! slow muscle cell somite 26 -xref: ZFA:0000970 ! slow muscle cell somite 26 - -[Term] -id: UBERON:0007280 ! presumptive endocardium -xref: ZFA:0001724 ! presumptive endocardium - -[Term] -id: UBERON:0001795 ! inner plexiform layer of retina -xref: ZFA:0001329 ! retinal inner plexiform layer - -[Term] -id: UBERON:0001155 ! colon -xref: ZFA:0000706 ! posterior intestine - -[Term] -id: UBERON:0003928 ! digestive system duct -xref: ZFA:0005162 ! digestive system duct - -[Term] -id: UBERON:0007276 ! crista of ampulla of lateral semicircular duct of membranous laybrinth -xref: ZFA:0000166 ! lateral crista - -[Term] -id: UBERON:0004744 ! articular/anguloarticular -xref: ZFA:0000467 ! anguloarticular - -[Term] -id: UBERON:2005373 ! dorsal fin distal radial 2 -xref: ZFA:0005373 ! dorsal fin distal radial 2 - -[Term] -id: UBERON:2001880 ! rib of vertebra 3 -xref: ZFA:0005540 ! rib of vertebra 3 - -[Term] -id: UBERON:2000586 ! preural 2 vertebra -xref: ZFA:0000586 ! preural 2 vertebra - -[Term] -id: UBERON:0009678 ! tooth row -xref: ZFA:0001642 ! tooth row - -[Term] -id: UBERON:2000283 ! sternohyoid -xref: ZFA:0000283 ! sternohyoid - -[Term] -id: UBERON:0011002 ! articular cartilage condensation -xref: ZFA:0001644 ! articular cartilage - -[Term] -id: UBERON:0002258 ! dorsal funiculus -xref: ZFA:0000501 ! dorsal funiculus - -[Term] -id: UBERON:0001853 ! utricle of membranous labyrinth -xref: ZFA:0000700 ! utricle - -[Term] -id: UBERON:2007067 ! obsolete vagal ganglion -xref: ZFA:0007067 ! vagal ganglion - -[Term] -id: UBERON:0001790 ! outer plexiform layer of retina -xref: ZFA:0001330 ! retinal outer plexiform layer - -[Term] -id: UBERON:0003099 ! cranial neural crest -xref: ZFA:0001194 ! cranial neural crest - -[Term] -id: UBERON:0004743 ! coracoid bone -xref: ZFA:0000332 ! coracoid - -[Term] -id: UBERON:2000646 ! anal fin distal radial -xref: ZFA:0000646 ! anal fin distal radial - -[Term] -id: UBERON:2002229 ! presumptive atrium primitive heart tube -xref: ZFA:0001721 ! presumptive atrium primitive heart tube - -[Term] -id: UBERON:0003901 ! horizontal septum -xref: ZFA:0000671 ! horizontal myoseptum - -[Term] -id: UBERON:0001074 ! pericardial cavity -xref: ZFA:0001655 ! pericardial cavity - -[Term] -id: UBERON:2000960 ! sclerotome somite 29 -xref: ZFA:0000960 ! sclerotome somite 29 - -[Term] -id: UBERON:0001980 ! arteriole -xref: ZFA:0005255 ! arteriole - -[Term] -id: UBERON:2001785 ! branched dorsal fin ray -xref: ZFA:0005534 ! branched dorsal fin ray - -[Term] -id: UBERON:0001894 ! diencephalon -xref: ZFA:0000101 ! diencephalon - -[Term] -id: UBERON:0001772 ! corneal epithelium -xref: ZFA:0001683 ! corneal epithelium - -[Term] -id: UBERON:0001630 ! muscle organ -xref: ZFA:0005145 ! muscle - -[Term] -id: UBERON:2000495 ! infraorbital 5 -xref: ZFA:0000495 ! infraorbital 5 - -[Term] -id: UBERON:2001274 ! coronomeckelian -xref: ZFA:0001274 ! coronomeckelian - -[Term] -id: UBERON:2001581 ! ural centrum 2 -xref: ZFA:0001581 ! ural centrum 2 - -[Term] -id: UBERON:0005424 ! presumptive retinal pigmented epithelium -xref: ZFA:0000064 ! presumptive retinal pigmented epithelium - -[Term] -id: UBERON:2000205 ! external ventral flexor -xref: ZFA:0000205 ! external ventral flexor - -[Term] -id: UBERON:2000302 ! obsolete ventral nucleus -xref: ZFA:0000302 ! ventral habenular nucleus - -[Term] -id: UBERON:0001174 ! common bile duct -xref: ZFA:0005165 ! common bile duct - -[Term] -id: UBERON:0011362 ! cranial blood vasculature -xref: ZFA:0005297 ! cranial blood vessel - -[Term] -id: UBERON:2005102 ! presumptive median fin fold -xref: ZFA:0005102 ! presumptive median fin fold - -[Term] -id: UBERON:2000937 ! hypaxial region somite 13 -xref: ZFA:0000937 ! hypaxial region somite 13 - -[Term] -id: UBERON:0002531 ! paired fin bud -xref: ZFA:0001383 ! fin bud - -[Term] -id: UBERON:2002054 ! vertebra 5-vertebra 6 joint -xref: ZFA:0005505 ! vertebra 5-vertebra 6 joint - -[Term] -id: UBERON:2000666 ! filamental artery -xref: ZFA:0000666 ! filamental artery - -[Term] -id: UBERON:2002289 ! UBERON:0001773 -xref: ZFA:0005563 ! sclera - -[Term] -id: UBERON:2005098 ! central ray artery -xref: ZFA:0005098 ! central ray artery - -[Term] -id: UBERON:0005253 ! head mesenchyme -xref: ZFA:0000113 ! head mesenchyme - -[Term] -id: UBERON:0010713 ! paired fin skeleton -xref: ZFA:0000027 ! paired fin skeleton - -[Term] -id: UBERON:2000711 ! DEL -xref: ZFA:0000711 ! DEL - -[Term] -id: UBERON:2000078 ! ventral actinotrichium -xref: ZFA:0000078 ! ventral actinotrichium - -[Term] -id: UBERON:2000000 ! Brachet's cleft -xref: ZFA:0000000 ! Brachet's cleft - -[Term] -id: UBERON:0011648 ! jaw muscle -xref: ZFA:0000236 ! mandibular muscle - -[Term] -id: UBERON:0007296 ! presumptive rhombomere 2 -xref: ZFA:0001208 ! presumptive rhombomere 2 - -[Term] -id: UBERON:2005273 ! intestinal mucosal muscle -xref: ZFA:0005273 ! intestinal mucosal muscle - -[Term] -id: UBERON:2001570 ! obsolete unfertilized egg -xref: ZFA:0001570 ! unfertilized egg - -[Term] -id: UBERON:0001017 ! central nervous system -xref: ZFA:0000012 ! central nervous system - -[Term] -id: UBERON:0004913 ! hepatopancreatic ampulla -xref: ZFA:0005167 ! hepatopancreatic ampulla - -[Term] -id: UBERON:0000033 ! head -xref: ZFA:0001114 ! head - -[Term] -id: UBERON:0005171 ! hepatic duct -xref: ZFA:0001100 ! hepatic duct - -[Term] -id: UBERON:2001299 ! vagal placode 3 -xref: ZFA:0001299 ! vagal placode 3 - -[Term] -id: UBERON:2005014 ! recurrent branch afferent branchial artery -xref: ZFA:0005014 ! recurrent branch afferent branchial artery - -[Term] -id: UBERON:0003116 ! pharyngeal arch 5 -xref: ZFA:0001608 ! pharyngeal arch 5 - -[Term] -id: UBERON:0003902 ! retinal neural layer -xref: ZFA:0000046 ! retinal neural layer - -[Term] -id: UBERON:2007042 ! spinal cord neural tube -xref: ZFA:0007042 ! spinal cord neural tube - -[Term] -id: UBERON:2001719 ! caudal principal ray 7 -xref: ZFA:0005518 ! caudal fin principal ray 7 - -[Term] -id: UBERON:0002541 ! germ ring -xref: ZFA:0000111 ! germ ring - -[Term] -id: UBERON:0000016 ! endocrine pancreas -xref: ZFA:0001260 ! endocrine pancreas - -[Term] -id: UBERON:2001530 ! epibranchial 2 cartilage -xref: ZFA:0001530 ! epibranchial 2 cartilage - -[Term] -id: UBERON:0011153 ! ventral hyoid arch skeleton -xref: ZFA:0001402 ! ventral hyoid arch - -[Term] -id: UBERON:0005420 ! pelvic appendage bud -xref: ZFA:0001384 ! pelvic fin bud - -[Term] -id: UBERON:2000248 ! magnocellular preoptic nucleus -xref: ZFA:0000248 ! magnocellular preoptic nucleus - -[Term] -id: UBERON:2001045 ! sclerotome somite 5 -xref: ZFA:0001045 ! sclerotome somite 5 - -[Term] -id: UBERON:2001036 ! sclerotome somite 10 -xref: ZFA:0001036 ! sclerotome somite 10 - -[Term] -id: UBERON:2001224 ! basibranchial 2 bone -xref: ZFA:0001224 ! basibranchial 2 - -[Term] -id: UBERON:2001773 ! anal fin lepidotrichium 5 -xref: ZFA:0005403 ! anal fin lepidotrichium 5 - -[Term] -id: UBERON:2000745 ! epaxial region somite 25 -xref: ZFA:0000745 ! epaxial region somite 25 - -[Term] -id: UBERON:0004290 ! dermomyotome -xref: ZFA:0001513 ! dermomyotome - -[Term] -id: UBERON:0002346 ! neurectoderm -xref: ZFA:0001120 ! neuroectoderm - -[Term] -id: UBERON:0003072 ! optic cup -xref: ZFA:0001202 ! optic cup - -[Term] -id: UBERON:2000645 ! descending octaval nucleus -xref: ZFA:0000645 ! descending octaval nucleus - -[Term] -id: UBERON:2005119 ! barbel primordium -xref: ZFA:0005119 ! barbel primordium - -[Term] -id: UBERON:2001842 ! epihyal-ceratohyal joint -xref: ZFA:0005497 ! epihyal-ceratohyal joint - -[Term] -id: UBERON:0003080 ! anterior neural tube -xref: ZFA:0007038 ! anterior neural tube - -[Term] -id: UBERON:0001647 ! facial nerve -xref: ZFA:0000664 ! cranial nerve VII - -[Term] -id: UBERON:0002049 ! vasculature -xref: ZFA:0005249 ! vasculature - -[Term] -id: UBERON:2000120 ! lateral line ganglion -xref: ZFA:0000120 ! lateral line ganglion - -[Term] -id: UBERON:2000335 ! crossed tecto-bulbar tract -xref: ZFA:0000335 ! crossed tecto-bulbar tract - -[Term] -id: UBERON:2001250 ! pharyngobranchial 2 bone -xref: ZFA:0001250 ! pharyngobranchial 2 bone - -[Term] -id: UBERON:2000851 ! somite 12 -xref: ZFA:0000851 ! somite 12 - -[Term] -id: UBERON:2005175 ! obsolete CoPA -xref: ZFA:0005175 ! CoPA - -[Term] -id: UBERON:2001536 ! pharyngobranchial 2 cartilage -xref: ZFA:0001536 ! pharyngobranchial 2 cartilage - -[Term] -id: UBERON:0008902 ! lateral recess of third vetricle -xref: ZFA:0000231 ! lateral recess - -[Term] -id: UBERON:2000406 ! parvocellular superficial pretectal nucleus -xref: ZFA:0000406 ! parvocellular superficial pretectal nucleus - -[Term] -id: UBERON:2002206 ! macula communis -xref: ZFA:0001671 ! macula communis - -[Term] -id: UBERON:2005193 ! RoI2R -xref: ZFA:0005193 ! RoI2R - -[Term] -id: UBERON:2005223 ! lateral larval melanophore stripe -xref: ZFA:0005223 ! lateral larval melanophore stripe - -[Term] -id: UBERON:2001005 ! muscle pioneer somite 18 -xref: ZFA:0001005 ! muscle pioneer somite 18 - -[Term] -id: UBERON:2000838 ! fast muscle cell somite 29 -xref: ZFA:0000838 ! fast muscle cell somite 29 - -[Term] -id: UBERON:0000931 ! proctodeum -xref: ZFA:0000066 ! proctodeum - -[Term] -id: UBERON:2001244 ! epibranchial 5 cartilage -xref: ZFA:0001244 ! epibranchial 5 - -[Term] -id: UBERON:0005287 ! tela choroidea of fourth ventricle -xref: ZFA:0005158 ! tela chorioidea fourth ventricle - -[Term] -id: UBERON:0007329 ! pancreatic duct -xref: ZFA:0001372 ! pancreatic duct - -[Term] -id: UBERON:2001039 ! sclerotome somite 19 -xref: ZFA:0001039 ! sclerotome somite 19 - -[Term] -id: UBERON:0000089 ! hypoblast (generic) -xref: ZFA:0000117 ! hypoblast - -[Term] -id: UBERON:2005256 ! intervillus pockets -xref: ZFA:0005256 ! intervillus pockets - -[Term] -id: UBERON:2000655 ! obsolete dorsomedial optic tract -xref: ZFA:0000655 ! dorsomedial optic tract - -[Term] -id: UBERON:0009622 ! pronephric proximal straight tubule -xref: ZFA:0001621 ! pronephric proximal straight tubule - -[Term] -id: UBERON:0003922 ! pancreatic bud -xref: ZFA:0001390 ! pancreatic bud - -[Term] -id: UBERON:0004852 ! cardiovascular system endothelium -xref: ZFA:0001639 ! vascular endothelium - -[Term] -id: UBERON:2000504 ! dorsal retractor -xref: ZFA:0000504 ! dorsal retractor - -[Term] -id: UBERON:2000178 ! caudal peduncle -xref: ZFA:0000178 ! caudal peduncle - -[Term] -id: UBERON:0003065 ! ciliary marginal zone -xref: ZFA:0001289 ! ciliary marginal zone - -[Term] -id: UBERON:2000832 ! sclerotome somite 2 -xref: ZFA:0000832 ! sclerotome somite 2 - -[Term] -id: UBERON:0001042 ! chordate pharynx -xref: ZFA:0000056 ! pharynx - -[Term] -id: UBERON:2005383 ! dorsal fin proximal radial 6 -xref: ZFA:0005383 ! dorsal fin proximal radial 6 - -[Term] -id: UBERON:0002240 ! spinal cord -xref: ZFA:0000075 ! spinal cord - -[Term] -id: UBERON:2000887 ! floor plate neural rod -xref: ZFA:0000887 ! floor plate neural rod - -[Term] -id: UBERON:2000810 ! myotome somite 7 -xref: ZFA:0000810 ! myotome somite 7 - -[Term] -id: UBERON:0000475 ! organism subdivision -xref: ZFA:0001308 ! organism subdivision - -[Term] -id: UBERON:2000933 ! myotome somite 5 -xref: ZFA:0000933 ! myotome somite 5 - -[Term] -id: UBERON:2005019 ! efferent lamellar arteriole -xref: ZFA:0005019 ! efferent lamellar arteriole - -[Term] -id: UBERON:2005152 ! silver iridophore -xref: ZFA:0005152 ! silver iridophore - -[Term] -id: UBERON:2005079 ! posterior mesencephalic central artery -xref: ZFA:0005079 ! posterior mesencephalic central artery - -[Term] -id: UBERON:0007683 ! lateral mesenchyme derived from mesoderm -xref: ZFA:0000905 ! lateral mesenchyme derived from mesoderm - -[Term] -id: UBERON:2007040 ! forebrain midbrain boundary neural tube -xref: ZFA:0007040 ! forebrain midbrain boundary neural tube - -[Term] -id: UBERON:2000731 ! somite 27 -xref: ZFA:0000731 ! somite 27 - -[Term] -id: UBERON:0004751 ! hypohyal bone -xref: ZFA:0001381 ! hypohyal bone - -[Term] -id: UBERON:0010297 ! endochondral scleral ossicle -xref: ZFA:0001411 ! sclerotic bone - -[Term] -id: UBERON:0002201 ! vasculature of trunk -xref: ZFA:0005024 ! trunk vasculature - -[Term] -id: UBERON:2001686 ! bony shelf above orbit -xref: ZFA:0005531 ! bony shelf above orbit - -[Term] -id: UBERON:0000211 ! ligament -xref: ZFA:0001675 ! ligament - -[Term] -id: UBERON:0005588 ! rhombomere 8 floor plate -xref: ZFA:0000765 ! floor plate rhombomere 8 - -[Term] -id: UBERON:2000266 ! pretecto-mamillary tract -xref: ZFA:0000266 ! pretecto-mammillary tract - -[Term] -id: UBERON:0003051 ! ear vesicle -xref: ZFA:0000051 ! otic vesicle - -[Term] -id: UBERON:2000480 ! caudal octavolateralis nucleus -xref: ZFA:0000480 ! caudal octavolateralis nucleus - -[Term] -id: UBERON:0004370 ! anterior limiting lamina of cornea -xref: ZFA:0001684 ! Bowman's layer - -[Term] -id: UBERON:2001404 ! preethmoid bone -xref: ZFA:0001404 ! preethmoid bone - -[Term] -id: UBERON:2000743 ! epaxial region somite 2 -xref: ZFA:0000743 ! epaxial region somite 2 - -[Term] -id: UBERON:0001178 ! visceral peritoneum -xref: ZFA:0005132 ! visceral peritoneum - -[Term] -id: UBERON:0000397 ! colonic epithelium -xref: ZFA:0005128 ! posterior intestine epithelium - -[Term] -id: UBERON:0003068 ! axial mesoderm -xref: ZFA:0001204 ! axial mesoderm - -[Term] -id: UBERON:0011170 ! quadrate-articular joint -xref: ZFA:0005484 ! quadrate-anguloarticular joint - -[Term] -id: UBERON:0000990 ! reproductive system -xref: ZFA:0000632 ! reproductive system - -[Term] -id: UBERON:2001188 ! Weberian apparatus -xref: ZFA:0001188 ! Weberian apparatus - -[Term] -id: UBERON:2001553 ! manubrium -xref: ZFA:0001601 ! manubrium - -[Term] -id: UBERON:0005737 ! swim bladder tunica externa -xref: ZFA:0001700 ! tunica externa - -[Term] -id: UBERON:2000854 ! somite 21 -xref: ZFA:0000854 ! somite 21 - -[Term] -id: UBERON:0007842 ! membrane bone -xref: ZFA:0001636 ! membrane bone - -[Term] -id: UBERON:0001947 ! red nucleus -xref: ZFA:0000552 ! nucleus ruber - -[Term] -id: UBERON:0007377 ! stratum compactum -xref: ZFA:0001182 ! dermal deep region - -[Term] -id: UBERON:2001481 ! ventral anterior lateral line nerve -xref: ZFA:0001481 ! ventral anterior lateral line nerve - -[Term] -id: UBERON:0010323 ! cranial skeletal system -xref: ZFA:0000737 ! cranium - -[Term] -id: UBERON:0006597 ! quadrate bone -xref: ZFA:0000621 ! quadrate - -[Term] -id: UBERON:0005721 ! pronephric mesoderm -xref: ZFA:0000067 ! pronephric mesoderm - -[Term] -id: UBERON:2001437 ! ductus communicans -xref: ZFA:0001437 ! ductus communicans - -[Term] -id: UBERON:2000654 ! rostral motor nucleus of abducens -xref: ZFA:0000654 ! rostral motor nucleus - -[Term] -id: UBERON:2001047 ! slow muscle cell somite 10 -xref: ZFA:0001047 ! slow muscle cell somite 10 - -[Term] -id: UBERON:2001813 ! preopercular sensory canal -xref: ZFA:0005448 ! preopercular sensory canal - -[Term] -id: UBERON:2002242 ! scale primordium -xref: ZFA:0001704 ! scale primordium - -[Term] -id: UBERON:2001563 ! hypural 4 -xref: ZFA:0001563 ! hypural 4 - -[Term] -id: UBERON:2002219 ! parvocellular preoptic nucleus -xref: ZFA:0001680 ! parvocellular preoptic nucleus - -[Term] -id: UBERON:0011692 ! enameloid -xref: ZFA:0005142 ! enameloid - -[Term] -id: UBERON:0003092 ! ultimobranchial body -xref: ZFA:0001448 ! ultimobranchial body - -[Term] -id: UBERON:2005378 ! dorsal fin distal radial 7 -xref: ZFA:0005378 ! dorsal fin distal radial 7 - -[Term] -id: UBERON:2000788 ! mesenchyme dorsal fin -xref: ZFA:0000788 ! mesenchyme dorsal fin - -[Term] -id: UBERON:2001730 ! caudal principal ray 18 -xref: ZFA:0005528 ! caudal fin principal ray 18 - -[Term] -id: UBERON:2000791 ! muscle pioneer somite 13 -xref: ZFA:0000791 ! muscle pioneer somite 13 - -[Term] -id: UBERON:0007380 ! dermal scale -xref: ZFA:0000277 ! scale - -[Term] -id: UBERON:2001541 ! pelvic radial 2 cartilage -xref: ZFA:0001541 ! pelvic radial 2 cartilage - -[Term] -id: UBERON:2000311 ! adductor mandibulae complex -xref: ZFA:0000311 ! adductor mandibulae complex - -[Term] -id: UBERON:2000462 ! abductor hyohyoid -xref: ZFA:0000462 ! abductor hyohyoid - -[Term] -id: UBERON:0000481 ! multi-tissue structure -xref: ZFA:0001488 ! multi-tissue structure - -[Term] -id: UBERON:0003055 ! periderm -xref: ZFA:0001185 ! periderm - -[Term] -id: UBERON:2001812 ! preoperculo-mandibular sensory canal -xref: ZFA:0005395 ! preoperculo-mandibular sensory canal - -[Term] -id: UBERON:0003843 ! dental epithelium -xref: ZFA:0005134 ! dental epithelium - -[Term] -id: UBERON:0002222 ! perichondrium -xref: ZFA:0001634 ! perichondrium - -[Term] -id: UBERON:2001619 ! post-otic sensory canal -xref: ZFA:0005394 ! post-otic sensory canal - -[Term] -id: UBERON:0003066 ! pharyngeal arch 2 -xref: ZFA:0001611 ! pharyngeal arch 2 - -[Term] -id: UBERON:2001007 ! muscle pioneer somite 24 -xref: ZFA:0001007 ! muscle pioneer somite 24 - -[Term] -id: UBERON:2000216 ! infracarinalis -xref: ZFA:0000216 ! infracarinalis - -[Term] -id: UBERON:2001629 ! otic sensory canal -xref: ZFA:0005393 ! otic sensory canal - -[Term] -id: UBERON:2000946 ! hypaxial region somite 16 -xref: ZFA:0000946 ! hypaxial region somite 16 - -[Term] -id: UBERON:2001099 ! immature hair cell posterior macula -xref: ZFA:0001099 ! immature hair cell posterior macula - -[Term] -id: UBERON:0005068 ! neural rod -xref: ZFA:0000133 ! neural rod - -[Term] -id: UBERON:0007214 ! mesenchyme derived from trunk neural crest -xref: ZFA:0000999 ! mesenchyme derived from trunk neural crest - -[Term] -id: UBERON:0001231 ! nephron tubule -xref: ZFA:0001287 ! renal tubule - -[Term] -id: UBERON:2005385 ! dorsal fin proximal radial 8 -xref: ZFA:0005385 ! dorsal fin proximal radial 8 - -[Term] -id: UBERON:0002533 ! tail bud -xref: ZFA:0000077 ! tail bud - -[Term] -id: UBERON:0005511 ! rhombomere 4 -xref: ZFA:0001032 ! rhombomere 4 - -[Term] -id: UBERON:0001985 ! corneal endothelium -xref: ZFA:0001687 ! corneal endothelium - -[Term] -id: UBERON:2001585 ! caudal principal ray -xref: ZFA:0001585 ! caudal fin principal ray - -[Term] -id: UBERON:2001097 ! immature posterior macula -xref: ZFA:0001097 ! immature posterior macula - -[Term] -id: UBERON:2002224 ! pleuroperitoneal cavity -xref: ZFA:0001656 ! pleuroperitoneal cavity - -[Term] -id: UBERON:0006320 ! inferior oblique extraocular muscle -xref: ZFA:0000861 ! ventral oblique extraocular muscle - -[Term] -id: UBERON:0000965 ! lens of camera-type eye -xref: ZFA:0000035 ! lens - -[Term] -id: UBERON:0001133 ! cardiac muscle tissue -xref: ZFA:0005280 ! cardiac muscle - -[Term] -id: UBERON:2005210 ! midbrain interneuron -xref: ZFA:0005210 ! midbrain interneuron - -[Term] -id: UBERON:2001771 ! anal fin lepidotrichium 3 -xref: ZFA:0005401 ! anal fin lepidotrichium 3 - -[Term] -id: UBERON:2001775 ! anal fin lepidotrichium 7 -xref: ZFA:0005405 ! anal fin lepidotrichium 7 - -[Term] -id: UBERON:0001286 ! Bowman's space -xref: ZFA:0005283 ! renal capsular space -xref: ZFA:0005312 ! pronephric capsular space - -[Term] -id: UBERON:2001881 ! rib of vertebra 4 -xref: ZFA:0005541 ! rib of vertebra 4 - -[Term] -id: UBERON:0001134 ! skeletal muscle tissue -xref: ZFA:0005277 ! skeletal muscle - -[Term] -id: UBERON:0005515 ! rhombomere 5 -xref: ZFA:0000823 ! rhombomere 5 - -[Term] -id: UBERON:2007045 ! midbrain hindbrain boundary neural keel -xref: ZFA:0007045 ! midbrain hindbrain boundary neural keel - -[Term] -id: UBERON:0004367 ! Descemet's membrane -xref: ZFA:0001686 ! Descemet's membrane - -[Term] -id: UBERON:2000592 ! superficial pelvic adductor -xref: ZFA:0000592 ! superficial pelvic adductor - -[Term] -id: UBERON:0005415 ! zone of polarizing activity of pectoral appendage -xref: ZFA:0001451 ! zone of polarizing activity pectoral fin bud - -[Term] -id: UBERON:0000058 ! duct -xref: ZFA:0005171 ! duct - -[Term] -id: UBERON:0002539 ! pharyngeal arch -xref: ZFA:0001306 ! pharyngeal arch - -[Term] -id: UBERON:0009910 ! posterior lateral plate mesoderm -xref: ZFA:0005042 ! posterior lateral plate mesoderm - -[Term] -id: UBERON:2000940 ! posterior lateral line neuromast -xref: ZFA:0000940 ! posterior lateral line neuromast - -[Term] -id: UBERON:2000397 ! nucleus subglomerulosis -xref: ZFA:0000397 ! nucleus subglomerulosis - -[Term] -id: UBERON:0006599 ! presumptive hypochord -xref: ZFA:0001217 ! presumptive hypochord - -[Term] -id: UBERON:0005425 ! presumptive neural retina -xref: ZFA:0001071 ! presumptive neural retina - -[Term] -id: UBERON:2001711 ! frontal-pterotic joint -xref: ZFA:0005468 ! frontal-pterotic joint - -[Term] -id: UBERON:0001277 ! intestinal epithelium -xref: ZFA:0005124 ! intestinal epithelium - -[Term] -id: UBERON:2000465 ! adductor operculi -xref: ZFA:0000465 ! adductor operculi - -[Term] -id: UBERON:0011610 ! ceratohyal cartilage -xref: ZFA:0001400 ! ceratohyal cartilage - -[Term] -id: UBERON:2001714 ! caudal principal ray 2 -xref: ZFA:0005514 ! caudal fin principal ray 2 - -[Term] -id: UBERON:2000156 ! somite 20 -xref: ZFA:0000156 ! somite 20 - -[Term] -id: UBERON:0005738 ! swim bladder tunica interna -xref: ZFA:0001701 ! tunica interna - -[Term] -id: UBERON:0005427 ! corneal primordium -xref: ZFA:0001688 ! corneal primordium - -[Term] -id: UBERON:2000296 ! uncrossed tecto-bulbar tract -xref: ZFA:0000296 ! uncrossed tecto-bulbar tract - -[Term] -id: UBERON:0011996 ! pharyngeal adductor -xref: ZFA:0000463 ! adductor - -[Term] -id: UBERON:0002165 ! endocardium -xref: ZFA:0001320 ! endocardium - -[Term] -id: UBERON:0011079 ! angular bone -xref: ZFA:0001645 ! angular bone - -[Term] -id: UBERON:0003122 ! aortic arch 5 -xref: ZFA:0005009 ! aortic arch 5 - -[Term] -id: UBERON:0004745 ! parasphenoid -xref: ZFA:0000561 ! parasphenoid - -[Term] -id: UBERON:2000102 ! dorsal fin fold -xref: ZFA:0000102 ! dorsal fin fold - -[Term] -id: UBERON:0003120 ! aortic arch 3 -xref: ZFA:0005007 ! aortic arch 3 - -[Term] -id: UBERON:0005426 ! lens vesicle -xref: ZFA:0001679 ! solid lens vesicle - -[Term] -id: UBERON:2000222 ! isthmic primary nucleus -xref: ZFA:0000222 ! isthmic primary nucleus - -[Term] -id: UBERON:2001537 ! mesocoracoid cartilage -xref: ZFA:0001537 ! mesocoracoid cartilage - -[Term] -id: UBERON:2001125 ! organizer inducing center -xref: ZFA:0001125 ! organizer inducing center - -[Term] -id: UBERON:2005216 ! MeM1 -xref: ZFA:0005216 ! MeM1 - -[Term] -id: UBERON:0003089 ! sclerotome -xref: ZFA:0001080 ! sclerotome - -[Term] -id: UBERON:2001468 ! anterior lateral line system -xref: ZFA:0001468 ! anterior lateral line system - -[Term] -id: UBERON:2001810 ! supraorbital sensory canal -xref: ZFA:0005396 ! supraorbital sensory canal - -[Term] -id: UBERON:0002264 ! olfactory bulb -xref: ZFA:0000402 ! olfactory bulb - -[Term] -id: UBERON:2001527 ! epibranchial cartilage -xref: ZFA:0001527 ! epibranchial cartilage - -[Term] -id: UBERON:2001848 ! ventral hypohyal-urohyal joint -xref: ZFA:0005487 ! ventral hypohyal-urohyal joint - -[Term] -id: UBERON:2001710 ! opercle-interopercle joint -xref: ZFA:0005478 ! opercle-interopercle joint - -[Term] -id: UBERON:2000742 ! epaxial region somite 17 -xref: ZFA:0000742 ! epaxial region somite 17 - -[Term] -id: UBERON:2001456 ! pectoral fin endoskeletal disc -xref: ZFA:0001456 ! pectoral fin endoskeletal disc - -[Term] -id: UBERON:0005075 ! forebrain-midbrain boundary -xref: ZFA:0001367 ! forebrain midbrain boundary - -[Term] -id: UBERON:0005564 ! gonad primordium -xref: ZFA:0001262 ! gonad primordium - -[Term] -id: UBERON:2001256 ! lateral floor plate -xref: ZFA:0001256 ! lateral floor plate - -[Term] -id: UBERON:2000892 ! hypaxial region somite 12 -xref: ZFA:0000892 ! hypaxial region somite 12 - -[Term] -id: UBERON:2001349 ! stratum opticum -xref: ZFA:0001349 ! stratum opticum - -[Term] -id: UBERON:0004640 ! efferent arteriole -xref: ZFA:0005308 ! efferent glomerular arteriole - -[Term] -id: UBERON:0008904 ! neuromast -xref: ZFA:0000243 ! neuromast - -[Term] -id: UBERON:2005013 ! concurrent branch afferent branchial artery -xref: ZFA:0005013 ! concurrent branch afferent branchial artery - -[Term] -id: UBERON:0002050 ! embryonic structure -xref: ZFA:0001105 ! embryonic structure - -[Term] -id: UBERON:2001043 ! sclerotome somite 27 -xref: ZFA:0001043 ! sclerotome somite 27 - -[Term] -id: UBERON:0006848 ! posterior pretectal nucleus -xref: ZFA:0000631 ! caudal pretectal nucleus - -[Term] -id: UBERON:2000437 ! caudal fin actinotrichium -xref: ZFA:0005424 ! caudal fin actinotrichium - -[Term] -id: UBERON:2001312 ! dorsal anterior lateral line ganglion -xref: ZFA:0001312 ! dorsal anterior lateral line ganglion - -[Term] -id: UBERON:2005048 ! primitive prosencephalic artery -xref: ZFA:0005048 ! primitive prosencephalic artery - -[Term] -id: UBERON:2000858 ! somite 8 -xref: ZFA:0000858 ! somite 8 - -[Term] -id: UBERON:0001700 ! geniculate ganglion -xref: ZFA:0001291 ! facial ganglion - -[Term] -id: UBERON:2000466 ! anal depressor -xref: ZFA:0000466 ! anal depressor - -[Term] -id: UBERON:2001020 ! myotome somite 30 -xref: ZFA:0001020 ! myotome somite 30 - -[Term] -id: UBERON:2002210 ! mossy fiber -xref: ZFA:0001710 ! mossy fiber - -[Term] -id: UBERON:2001257 ! medial floor plate -xref: ZFA:0001257 ! medial floor plate - -[Term] -id: UBERON:2005270 ! depressor muscle -xref: ZFA:0005270 ! depressor muscle - -[Term] -id: UBERON:0003119 ! aortic arch 2 -xref: ZFA:0005006 ! aortic arch 2 - -[Term] -id: UBERON:2000278 ! secondary gustatory nucleus medulla oblongata -xref: ZFA:0000278 ! secondary gustatory nucleus medulla oblongata - -[Term] -id: UBERON:0001754 ! dental pulp -xref: ZFA:0005141 ! tooth pulp - -[Term] -id: UBERON:0004741 ! cleithrum -xref: ZFA:0000184 ! cleithrum - -[Term] -id: UBERON:0004291 ! heart rudiment -xref: ZFA:0000115 ! heart rudiment - -[Term] -id: UBERON:0005750 ! glomerular parietal epithelium -xref: ZFA:0005253 ! renal glomerular capsule epithelium - -[Term] -id: UBERON:2001052 ! primordial hindbrain channel -xref: ZFA:0001052 ! primordial hindbrain channel - -[Term] -id: UBERON:2000973 ! slow muscle cell somite 7 -xref: ZFA:0000973 ! slow muscle cell somite 7 - -[Term] -id: UBERON:0007278 ! presumptive sinus venosus -xref: ZFA:0001722 ! presumptive sinus venosus - -[Term] -id: UBERON:2002176 ! caudal octaval nerve motor nucleus -xref: ZFA:0001699 ! caudal octaval nerve motor nucleus - -[Term] -id: UBERON:2000773 ! fast muscle cell somite 12 -xref: ZFA:0000773 ! fast muscle cell somite 12 - -[Term] -id: UBERON:2001818 ! dorsal fin proximal radial 1 -xref: ZFA:0005362 ! dorsal fin proximal radial 1 - -[Term] -id: UBERON:2001472 ! anterior lateral line neuromast -xref: ZFA:0001472 ! anterior lateral line neuromast - -[Term] -id: UBERON:0004880 ! chordamesoderm -xref: ZFA:0000091 ! axial chorda mesoderm - -[Term] -id: UBERON:2001246 ! epibranchial 2 bone -xref: ZFA:0001246 ! epibranchial 2 bone - -[Term] -id: UBERON:0006596 ! presumptive blood -xref: ZFA:0000568 ! presumptive blood - -[Term] -id: UBERON:2001538 ! pelvic radial cartilage -xref: ZFA:0001538 ! pelvic radial cartilage - -[Term] -id: UBERON:0000488 ! atypical epithelium -xref: ZFA:0001493 ! atypical epithelium - -[Term] -id: UBERON:0001782 ! pigmented layer of retina -xref: ZFA:0000144 ! retinal pigmented epithelium - -[Term] -id: UBERON:2000873 ! epaxial region somite 4 -xref: ZFA:0000873 ! epaxial region somite 4 - -[Term] -id: UBERON:2002010 ! hyoideomandibular nerve -xref: ZFA:0005397 ! hyoideomandibular nerve - -[Term] -id: UBERON:2005106 ! longitudinal lateral lymphatic vessel -xref: ZFA:0005106 ! longitudinal lateral lymphatic vessel - -[Term] -id: UBERON:2000865 ! epaxial region somite 12 -xref: ZFA:0000865 ! epaxial region somite 12 - -[Term] -id: UBERON:0000924 ! ectoderm -xref: ZFA:0000016 ! ectoderm - -[Term] -id: UBERON:0010202 ! lateral line -xref: ZFA:0001469 ! lateral line - -[Term] -id: UBERON:2007055 ! pillar of the lateral semicircular canal -xref: ZFA:0007055 ! pillar of the lateral semicircular canal - -[Term] -id: UBERON:0002270 ! hyaloid artery -xref: ZFA:0005045 ! hyaloid artery - -[Term] -id: UBERON:0000486 ! multilaminar epithelium -xref: ZFA:0001494 ! multilaminar epithelium - -[Term] -id: UBERON:0001602 ! medial rectus -xref: ZFA:0000301 ! medial rectus - -[Term] -id: UBERON:0002350 ! conducting system of heart -xref: ZFA:0005063 ! cardiac conduction system - -[Term] -id: UBERON:0004740 ! basibranchial -xref: ZFA:0000170 ! basibranchial - -[Term] -id: UBERON:2000964 ! slow muscle cell somite 12 -xref: ZFA:0000964 ! slow muscle cell somite 12 - -[Term] -id: UBERON:2007047 ! midbrain hindbrain boundary neural tube -xref: ZFA:0007047 ! midbrain hindbrain boundary neural tube - -[Term] -id: UBERON:2000857 ! somite 4 -xref: ZFA:0000857 ! somite 4 - -[Term] -id: UBERON:2000724 ! slow muscle cell somite 8 -xref: ZFA:0000724 ! slow muscle cell somite 8 - -[Term] -id: UBERON:2000305 ! ventral sulcus -xref: ZFA:0000305 ! ventral sulcus - -[Term] -id: UBERON:0003112 ! olfactory region -xref: ZFA:0000351 ! olfactory region - -[Term] -id: UBERON:2000726 ! somite 14 -xref: ZFA:0000726 ! somite 14 - -[Term] -id: UBERON:2002012 ! dentary foramen -xref: ZFA:0005427 ! dentary foramen - -[Term] -id: UBERON:0002465 ! lymphoid system -xref: ZFA:0000385 ! lymphatic system - -[Term] -id: UBERON:2001137 ! ventral tooth row -xref: ZFA:0001137 ! ventral tooth row - -[Term] -id: UBERON:0011238 ! mesethmoid bone -xref: ZFA:0000323 ! mesethmoid bone - -[Term] -id: UBERON:2000512 ! facial lobe -xref: ZFA:0000512 ! facial lobe - -[Term] -id: UBERON:2000564 ! pelvic abductor profundus -xref: ZFA:0000564 ! pelvic abductor profundus - -[Term] -id: UBERON:0003854 ! spinal cord neural plate -xref: ZFA:0007021 ! spinal cord neural plate - -[Term] -id: UBERON:0001193 ! hepatic artery -xref: ZFA:0005161 ! hepatic artery - -[Term] -id: UBERON:2000930 ! myotome somite 24 -xref: ZFA:0000930 ! myotome somite 24 - -[Term] -id: UBERON:4000164 ! caudal fin -xref: ZFA:0001058 ! caudal fin - -[Term] -id: UBERON:2001760 ! dorsal fin lepidotrichium 7 -xref: ZFA:0005361 ! dorsal fin lepidotrichium 7 - -[Term] -id: UBERON:2000885 ! fast muscle cell somite 6 -xref: ZFA:0000885 ! fast muscle cell somite 6 - -[Term] -id: UBERON:2005382 ! dorsal fin proximal radial 5 -xref: ZFA:0005382 ! dorsal fin proximal radial 5 - -[Term] -id: UBERON:0004638 ! blood vessel endothelium -xref: ZFA:0005257 ! blood vessel endothelium - -[Term] -id: UBERON:0003094 ! infraorbital lateral line -xref: ZFA:0000524 ! infraorbital lateral line - -[Term] -id: UBERON:2001004 ! muscle pioneer somite 15 -xref: ZFA:0001004 ! muscle pioneer somite 15 - -[Term] -id: UBERON:2000389 ! medial funicular nucleus medulla oblongata -xref: ZFA:0000389 ! medial funicular nucleus medulla oblongata - -[Term] -id: UBERON:0001422 ! facial lymphatic vessel -xref: ZFA:0005108 ! facial lymphatic vessel - -[Term] -id: UBERON:2000835 ! sclerotome somite 28 -xref: ZFA:0000835 ! sclerotome somite 28 - -[Term] -id: UBERON:0011634 ! ectopterygoid bone -xref: ZFA:0000656 ! ectopterygoid - -[Term] -id: UBERON:0005577 ! rhombomere 4 lateral wall -xref: ZFA:0000782 ! lateral wall rhombomere 4 - -[Term] -id: UBERON:2000814 ! opercular lateral line neuromast -xref: ZFA:0000814 ! opercular lateral line neuromast - -[Term] -id: UBERON:2005121 ! middle lateral line placode -xref: ZFA:0005121 ! middle lateral line placode - -[Term] -id: UBERON:2000440 ! superior raphe nucleus -xref: ZFA:0000440 ! superior raphe nucleus - -[Term] -id: UBERON:0003121 ! aortic arch 4 -xref: ZFA:0005008 ! aortic arch 4 - -[Term] -id: UBERON:2001363 ! neural complex -xref: ZFA:0001363 ! neural complex - -[Term] -id: UBERON:0009776 ! intermediate reticular formation -xref: ZFA:0000219 ! intermediate reticular formation - -[Term] -id: UBERON:2000957 ! hypaxial region somite 19 -xref: ZFA:0000957 ! hypaxial region somite 19 - -[Term] -id: UBERON:2001239 ! ceratobranchial 5 bone -xref: ZFA:0001239 ! ceratobranchial 5 bone - -[Term] -id: UBERON:0002244 ! premaxilla -xref: ZFA:0000567 ! premaxilla - -[Term] -id: UBERON:0005566 ! rhombomere 1 floor plate -xref: ZFA:0000882 ! floor plate rhombomere 1 - -[Term] -id: UBERON:2007030 ! posterior neural rod -xref: ZFA:0007030 ! posterior neural rod - -[Term] -id: UBERON:2000534 ! lateral longitudinal fasciculus -xref: ZFA:0000534 ! lateral longitudinal fasciculus - -[Term] -id: UBERON:0003061 ! blood island -xref: ZFA:0000094 ! blood island - -[Term] -id: UBERON:0006859 ! swim bladder bud -xref: ZFA:0005335 ! swim bladder bud - -[Term] -id: UBERON:2001193 ! supraneural 8 bone -xref: ZFA:0001193 ! supraneural 8 - -[Term] -id: UBERON:0002261 ! dorsal root of spinal cord -xref: ZFA:0000652 ! dorsal root - -[Term] -id: UBERON:2000573 ! internal cellular layer -xref: ZFA:0000573 ! internal cellular layer - -[Term] -id: UBERON:0006965 ! vascular cord -xref: ZFA:0005077 ! vascular cord - -[Term] -id: UBERON:2001483 ! middle lateral line ganglion -xref: ZFA:0001483 ! middle lateral line ganglion - -[Term] -id: UBERON:0006332 ! nasal capsule -xref: ZFA:0005507 ! nasal capsule - -[Term] -id: UBERON:0011649 ! levator operculi -xref: ZFA:0000537 ! levator operculi - -[Term] -id: UBERON:2002290 ! vitreous -xref: ZFA:0005561 ! vitreous - -[Term] -id: UBERON:2001843 ! ceratohyal-dorsal hypohyal joint -xref: ZFA:0005467 ! ceratohyal-dorsal hypohyal joint - -[Term] -id: UBERON:0004739 ! pronephric glomerulus -xref: ZFA:0001557 ! pronephric glomerulus - -[Term] -id: UBERON:2002053 ! bony plate -xref: ZFA:0005532 ! bony plate - -[Term] -id: UBERON:0011145 ! adductor muscle -xref: ZFA:0005268 ! adductor muscle - -[Term] -id: UBERON:0003923 ! dorsal pancreatic bud -xref: ZFA:0001370 ! posterior pancreatic bud - -[Term] -id: UBERON:0002241 ! chondrocranium -xref: ZFA:0001424 ! chondrocranium - -[Term] -id: UBERON:0004731 ! neuromere -xref: ZFA:0001328 ! neuromere - -[Term] -id: UBERON:2000116 ! macula lagena -xref: ZFA:0000116 ! macula lagena - -[Term] -id: UBERON:0011087 ! pharyngeal arch 7 -xref: ZFA:0001610 ! pharyngeal arch 7 - -[Term] -id: UBERON:0001692 ! basioccipital bone -xref: ZFA:0000472 ! basioccipital - -[Term] -id: UBERON:2000043 ! muscle pioneer somite 1 -xref: ZFA:0000043 ! muscle pioneer somite 1 - -[Term] -id: UBERON:0006845 ! abductor muscle -xref: ZFA:0005269 ! abductor muscle - -[Term] -id: UBERON:2001951 ! skin flap -xref: ZFA:0005495 ! skin flap - -[Term] -id: UBERON:2000410 ! postcleithrum -xref: ZFA:0000410 ! postcleithrum - -[Term] -id: UBERON:2001713 ! caudal principal ray 1 -xref: ZFA:0005512 ! caudal fin principal ray 1 - -[Term] -id: UBERON:0000017 ! exocrine pancreas -xref: ZFA:0001249 ! exocrine pancreas - -[Term] -id: UBERON:2001011 ! muscle pioneer somite 8 -xref: ZFA:0001011 ! muscle pioneer somite 8 - -[Term] -id: UBERON:0001532 ! internal carotid artery -xref: ZFA:0005081 ! internal carotid artery - -[Term] -id: UBERON:2005044 ! optic artery -xref: ZFA:0005044 ! optic artery - -[Term] -id: UBERON:0003900 ! epaxial myotome region -xref: ZFA:0001084 ! epaxial myotome region - -[Term] -id: UBERON:0001886 ! choroid plexus -xref: ZFA:0001443 ! choroid plexus - -[Term] -id: UBERON:0010078 ! optic choroid vascular plexus -xref: ZFA:0005094 ! optic choroid vascular plexus - -[Term] -id: UBERON:2000827 ! fast muscle cell somite 26 -xref: ZFA:0000827 ! fast muscle cell somite 26 - -[Term] -id: UBERON:0003085 ! ventral aorta -xref: ZFA:0000604 ! ventral aorta - -[Term] -id: UBERON:0003278 ! skeleton of lower jaw -xref: ZFA:0001273 ! ventral mandibular arch - -[Term] -id: UBERON:0005591 ! diencephalon lateral wall -xref: ZFA:0000780 ! lateral wall diencephalic region - -[Term] -id: UBERON:0001928 ! preoptic area -xref: ZFA:0000470 ! preoptic area - -[Term] -id: UBERON:2000175 ! posterior lateral line nerve -xref: ZFA:0000175 ! posterior lateral line nerve - -[Term] -id: UBERON:0002796 ! motor root of trigeminal nerve -xref: ZFA:0000650 ! dorsal motor root of V - -[Term] -id: UBERON:0003070 ! trigeminal placode -xref: ZFA:0000162 ! trigeminal placode - -[Term] -id: UBERON:0000946 ! cardial valve -xref: ZFA:0005065 ! heart valve - -[Term] -id: UBERON:2000648 ! dorsal fin musculature -xref: ZFA:0000648 ! dorsal fin musculature - -[Term] -id: UBERON:2000844 ! slow muscle cell somite 22 -xref: ZFA:0000844 ! slow muscle cell somite 22 - -[Term] -id: UBERON:2000023 ! forerunner cell group -xref: ZFA:0000023 ! forerunner cell group - -[Term] -id: UBERON:2000089 ! actinotrichium -xref: ZFA:0000089 ! fin fold actinotrichium -xref: ZFA:0005435 ! actinotrichium - -[Term] -id: UBERON:2001579 ! ural vertebra 2 -xref: ZFA:0001579 ! ural vertebra 2 - -[Term] -id: UBERON:2001237 ! ceratobranchial 1 bone -xref: ZFA:0001237 ! ceratobranchial 1 bone - -[Term] -id: UBERON:2000673 ! hypobranchial artery -xref: ZFA:0000673 ! hypobranchial artery - -[Term] -id: UBERON:0007132 ! head kidney -xref: ZFA:0000669 ! head kidney - -[Term] -id: UBERON:2000234 ! macula neglecta -xref: ZFA:0000234 ! macula neglecta - -[Term] -id: UBERON:2000955 ! sclerotome somite 18 -xref: ZFA:0000955 ! sclerotome somite 18 - -[Term] -id: UBERON:2005180 ! RoP motor neuron -xref: ZFA:0005180 ! RoP motor neuron - -[Term] -id: UBERON:2000768 ! hypaxial region somite 14 -xref: ZFA:0000768 ! hypaxial region somite 14 - -[Term] -id: UBERON:2000961 ! sclerotome somite 4 -xref: ZFA:0000961 ! sclerotome somite 4 - -[Term] -id: UBERON:2001360 ! parapineal organ -xref: ZFA:0001360 ! parapineal organ - -[Term] -id: UBERON:2000516 ! periventricular grey zone -xref: ZFA:0000516 ! periventricular grey zone - -[Term] -id: UBERON:2000801 ! myotome somite 11 -xref: ZFA:0000801 ! myotome somite 11 - -[Term] -id: UBERON:2005049 ! prosencephalic artery -xref: ZFA:0005049 ! prosencephalic artery - -[Term] -id: UBERON:0002025 ! stratum basale of epidermis -xref: ZFA:0001180 ! epidermal basal stratum - -[Term] -id: UBERON:2000587 ! sphenotic -xref: ZFA:0000587 ! sphenotic - -[Term] -id: UBERON:0002291 ! central canal -xref: ZFA:0000938 ! central canal - -[Term] -id: UBERON:2001804 ! olfactory nerve foramen -xref: ZFA:0005429 ! olfactory nerve foramen - -[Term] -id: UBERON:2001089 ! myoseptum -xref: ZFA:0001089 ! myoseptum - -[Term] -id: UBERON:2001001 ! epaxial region somite 13 -xref: ZFA:0001001 ! epaxial region somite 13 - -[Term] -id: UBERON:2000803 ! myotome somite 18 -xref: ZFA:0000803 ! myotome somite 18 - -[Term] -id: UBERON:2000984 ! superior reticular formation tegmentum -xref: ZFA:0000984 ! superior reticular formation tegmentum - -[Term] -id: UBERON:2001040 ! epaxial region somite 24 -xref: ZFA:0001040 ! epaxial region somite 24 - -[Term] -id: UBERON:2000350 ! epipleural -xref: ZFA:0000350 ! epipleural - -[Term] -id: UBERON:2001225 ! basibranchial 3 bone -xref: ZFA:0001225 ! basibranchial 3 - -[Term] -id: UBERON:0007123 ! pharyngeal pouch 2 -xref: ZFA:0001130 ! pharyngeal pouch 2 - -[Term] -id: UBERON:2001341 ! intervening zone -xref: ZFA:0001341 ! intervening zone - -[Term] -id: UBERON:2000623 ! basipterygium -xref: ZFA:0000623 ! basipterygium - -[Term] -id: UBERON:2001450 ! apical ectodermal ridge pelvic fin -xref: ZFA:0001450 ! apical ectodermal ridge pelvic fin - -[Term] -id: UBERON:2001335 ! supradorsal -xref: ZFA:0001335 ! supradorsal - -[Term] -id: UBERON:2005186 ! obsolete CoB -xref: ZFA:0005186 ! CoB - -[Term] -id: UBERON:0000007 ! pituitary gland -xref: ZFA:0000118 ! hypophysis - -[Term] -id: UBERON:2000452 ! urohyal -xref: ZFA:0000452 ! urohyal - -[Term] -id: UBERON:2005214 ! MeLc -xref: ZFA:0005214 ! MeLc - -[Term] -id: UBERON:0010904 ! pectoral fin scapula -xref: ZFA:0000583 ! scapula - -[Term] -id: UBERON:0003105 ! dorsal lateral plate region -xref: ZFA:0005028 ! ventral wall of dorsal aorta - -[Term] -id: UBERON:2001394 ! neural arch 3 -xref: ZFA:0001394 ! neural arch 3 - -[Term] -id: UBERON:2001947 ! hyomandibular-otic region joint -xref: ZFA:0005544 ! hyomandibular-otic region joint - -[Term] -id: UBERON:2005221 ! dorsal larval melanophore stripe -xref: ZFA:0005221 ! dorsal larval melanophore stripe - -[Term] -id: UBERON:2001054 ! lateral dorsal aorta -xref: ZFA:0001054 ! lateral dorsal aorta - -[Term] -id: UBERON:0003909 ! sinusoid -xref: ZFA:0005261 ! sinusoidal blood vessel endothelium - -[Term] -id: UBERON:2005215 ! MeLm -xref: ZFA:0005215 ! MeLm - -[Term] -id: UBERON:2005100 ! intervessel commissure -xref: ZFA:0005100 ! intervessel commissure - -[Term] -id: UBERON:0007832 ! skeleton of pelvic girdle -xref: ZFA:0000565 ! pelvic girdle - -[Term] -id: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -xref: ZFA:0000786 ! medial migration pathway mesenchyme - -[Term] -id: UBERON:0002329 ! somite -xref: ZFA:0000155 ! somite - -[Term] -id: UBERON:0005805 ! dorsal aorta -xref: ZFA:0000014 ! dorsal aorta - -[Term] -id: UBERON:0005428 ! vagal neural crest -xref: ZFA:0000818 ! vagal neural crest - -[Term] -id: UBERON:2000877 ! fast muscle cell somite 14 -xref: ZFA:0000877 ! fast muscle cell somite 14 - -[Term] -id: UBERON:2001046 ! sclerotome somite 8 -xref: ZFA:0001046 ! sclerotome somite 8 - -[Term] -id: UBERON:0002322 ! periventricular nucleus -xref: ZFA:0000260 ! periventricular nucleus - -[Term] -id: UBERON:2000932 ! myotome somite 3 -xref: ZFA:0000932 ! myotome somite 3 - -[Term] -id: UBERON:2001511 ! interhyal cartilage -xref: ZFA:0001511 ! interhyal cartilage - -[Term] -id: UBERON:0002228 ! rib -xref: ZFA:0000538 ! rib - -[Term] -id: UBERON:0002064 ! common cardinal vein -xref: ZFA:0000186 ! common cardinal vein - -[Term] -id: UBERON:2000934 ! myotome somite 8 -xref: ZFA:0000934 ! myotome somite 8 - -[Term] -id: UBERON:0003114 ! pharyngeal arch 3 -xref: ZFA:0001606 ! pharyngeal arch 3 - -[Term] -id: UBERON:2002024 ! mental barbel -xref: ZFA:0005433 ! mental barbel - -[Term] -id: UBERON:2005343 ! endohypothalamic tract -xref: ZFA:0005343 ! endohypothalamic tract - -[Term] -id: UBERON:2000084 ! yolk -xref: ZFA:0000084 ! yolk - -[Term] -id: UBERON:2007059 ! neurogenic field -xref: ZFA:0007059 ! neurogenic field - -[Term] -id: UBERON:2001025 ! occipital lateral line neuromast -xref: ZFA:0001025 ! occipital lateral line neuromast - -[Term] -id: UBERON:0010312 ! immature eye -xref: ZFA:0001678 ! immature eye - -[Term] -id: UBERON:2001457 ! postcranial axial cartilage -xref: ZFA:0001457 ! postcranial axial cartilage - -[Term] -id: UBERON:2005371 ! dorsal fin pterygiophore 8 -xref: ZFA:0005371 ! dorsal fin pterygiophore 8 - -[Term] -id: UBERON:0002397 ! maxilla -xref: ZFA:0000270 ! maxilla - -[Term] -id: UBERON:2000422 ! retroarticular -xref: ZFA:0000422 ! retroarticular - -[Term] -id: UBERON:0001803 ! epithelium of lens -xref: ZFA:0001326 ! lens epithelium - -[Term] -id: UBERON:2000753 ! fast muscle cell somite 16 -xref: ZFA:0000753 ! fast muscle cell somite 16 - -[Term] -id: UBERON:0002358 ! peritoneum -xref: ZFA:0005120 ! peritoneum - -[Term] -id: UBERON:2000197 ! obsolete dorsal nucleus -xref: ZFA:0000197 ! dorsal habenular nucleus - -[Term] -id: UBERON:2005126 ! intestinal bulb epithelium -xref: ZFA:0005126 ! intestinal bulb epithelium - -[Term] -id: UBERON:2000891 ! hypaxial region somite 1 -xref: ZFA:0000891 ! hypaxial region somite 1 - -[Term] -id: UBERON:2000319 ! branchiostegal membrane -xref: ZFA:0000319 ! branchiostegal membrane - -[Term] -id: UBERON:0005087 ! tooth placode -xref: ZFA:0001153 ! tooth placode - -[Term] -id: UBERON:0001788 ! outer limiting layer of retina -xref: ZFA:0001331 ! outer limiting membrane - -[Term] -id: UBERON:2000677 ! segmental intercostal artery -xref: ZFA:0000677 ! segmental intercostal artery - -[Term] -id: UBERON:2001940 ! vertebra 4-vertebra 5 joint -xref: ZFA:0005504 ! vertebra 4-vertebra 5 joint - -[Term] -id: UBERON:2005097 ! caudal fin vasculature -xref: ZFA:0005097 ! caudal fin vasculature - -[Term] -id: UBERON:2005011 ! pseudobranchial artery -xref: ZFA:0005011 ! pseudobranchial artery - -[Term] -id: UBERON:2002216 ! otic vesicle ventral protrusion -xref: ZFA:0001716 ! otic vesicle ventral protrusion - -[Term] -id: UBERON:2000507 ! epineural -xref: ZFA:0000507 ! epineural - -[Term] -id: UBERON:0002164 ! tectobulbar tract -xref: ZFA:0000446 ! tecto-bulbar tract - -[Term] -id: UBERON:2007046 ! midbrain hindbrain boundary neural rod -xref: ZFA:0007046 ! midbrain hindbrain boundary neural rod - -[Term] -id: UBERON:2001718 ! caudal principal ray 6 -xref: ZFA:0005517 ! caudal fin principal ray 6 - -[Term] -id: UBERON:2000268 ! anal fin proximal radial -xref: ZFA:0000268 ! anal fin proximal radial - -[Term] -id: UBERON:0002583 ! commissure of superior colliculus -xref: ZFA:0000684 ! intertectal commissure - -[Term] -id: UBERON:0002343 ! abdomen musculature -xref: ZFA:0001327 ! abdominal musculature - -[Term] -id: UBERON:2000727 ! somite 17 -xref: ZFA:0000727 ! somite 17 - -[Term] -id: UBERON:2002151 ! vertebral element 11 -xref: ZFA:0005354 ! vertebra 11 - -[Term] -id: UBERON:0011242 ! ethmoid cartilage -xref: ZFA:0001405 ! ethmoid cartilage - -[Term] -id: UBERON:2000288 ! supracarinalis -xref: ZFA:0000288 ! supracarinalis - -[Term] -id: UBERON:2005036 ! supraintestinal artery -xref: ZFA:0005036 ! supraintestinal artery - -[Term] -id: UBERON:0005724 ! roof plate spinal cord region -xref: ZFA:0001177 ! roof plate spinal cord region - -[Term] -id: UBERON:0002108 ! small intestine -xref: ZFA:0001323 ! mid intestine - -[Term] -id: UBERON:2001944 ! lateral ethmoid-autopalatine ligament -xref: ZFA:0005502 ! lateral ethmoid-autopalatine ligament - -[Term] -id: UBERON:2005195 ! MiD3cl -xref: ZFA:0005195 ! MiD3cl - -[Term] -id: UBERON:0002418 ! cartilage tissue -xref: ZFA:0001501 ! cartilage element - -[Term] -id: UBERON:0009124 ! geniculate placode -xref: ZFA:0001295 ! facial placode - -[Term] -id: UBERON:2000924 ! myotome somite 1 -xref: ZFA:0000924 ! myotome somite 1 - -[Term] -id: UBERON:0010204 ! tail vasculature -xref: ZFA:0005037 ! post-vent vasculature - -[Term] -id: UBERON:2001560 ! hypural 1 -xref: ZFA:0001560 ! hypural 1 - -[Term] -id: UBERON:2001048 ! slow muscle cell somite 13 -xref: ZFA:0001048 ! slow muscle cell somite 13 - -[Term] -id: UBERON:2001179 ! epidermal superficial stratum -xref: ZFA:0001179 ! epidermal superficial stratum - -[Term] -id: UBERON:2001152 ! tooth 3MD -xref: ZFA:0001152 ! tooth 3MD - -[Term] -id: UBERON:2000157 ! somite 30 -xref: ZFA:0000157 ! somite 30 - -[Term] -id: UBERON:0001043 ! esophagus -xref: ZFA:0000204 ! esophagus - -[Term] -id: UBERON:2001756 ! dorsal fin lepidotrichium 3 -xref: ZFA:0005357 ! dorsal fin lepidotrichium 3 - -[Term] -id: UBERON:2001347 ! stratum fibrosum et griseum superficiale -xref: ZFA:0001347 ! stratum fibrosum et griseum superficiale - -[Term] -id: UBERON:2005199 ! RoL2r -xref: ZFA:0005199 ! RoL2r - -[Term] -id: UBERON:0004141 ! heart tube -xref: ZFA:0000360 ! heart tube - -[Term] -id: UBERON:0005562 ! thymus primordium -xref: ZFA:0001077 ! thymus primordium - -[Term] -id: UBERON:2005093 ! nasal vein -xref: ZFA:0005093 ! nasal vein - -[Term] -id: UBERON:2000168 ! anterior macula -xref: ZFA:0000168 ! anterior macula - -[Term] -id: UBERON:2001050 ! slow muscle cell somite 19 -xref: ZFA:0001050 ! slow muscle cell somite 19 - -[Term] -id: UBERON:0001555 ! digestive tract -xref: ZFA:0000112 ! gut - -[Term] -id: UBERON:0002087 ! atrioventricular canal -xref: ZFA:0001315 ! atrioventricular canal - -[Term] -id: UBERON:0000920 ! egg chorion -xref: ZFA:0000329 ! chorion - -[Term] -id: UBERON:0000482 ! basal lamina -xref: ZFA:0001485 ! basal lamina - -[Term] -id: UBERON:2001373 ! migratory slow muscle precursor cell -xref: ZFA:0001373 ! migratory slow muscle precursor cell - -[Term] -id: UBERON:0007301 ! limb/fin blood vessel -xref: ZFA:0005299 ! fin blood vessel - -[Term] -id: UBERON:2001873 ! head sensory canal system -xref: ZFA:0005391 ! head sensory canal system - -[Term] -id: UBERON:0001230 ! glomerular capsule -xref: ZFA:0005254 ! renal glomerular capsule -xref: ZFA:0005310 ! pronephric glomerular capsule - -[Term] -id: UBERON:2000628 ! caudal fin musculature -xref: ZFA:0000628 ! caudal fin musculature - -[Term] -id: UBERON:0006333 ! snout -xref: ZFA:0005496 ! snout - -[Term] -id: UBERON:0005579 ! rhombomere 5 floor plate -xref: ZFA:0000764 ! floor plate rhombomere 5 - -[Term] -id: UBERON:0001925 ! ventral lateral nucleus -xref: ZFA:0000306 ! ventrolateral thalamic nucleus - -[Term] -id: UBERON:0003109 ! parapophysis -xref: ZFA:0001362 ! parapophysis - -[Term] -id: UBERON:2000004 ! anterior axial hypoblast -xref: ZFA:0000004 ! anterior axial hypoblast - -[Term] -id: UBERON:2001018 ! myotome somite 25 -xref: ZFA:0001018 ! myotome somite 25 - -[Term] -id: UBERON:2005379 ! dorsal fin distal radial 8 -xref: ZFA:0005379 ! dorsal fin distal radial 8 - -[Term] -id: UBERON:0001701 ! glossopharyngeal ganglion -xref: ZFA:0001301 ! glossopharyngeal ganglion - -[Term] -id: UBERON:0002141 ! parvocellular oculomotor nucleus -xref: ZFA:0000244 ! nucleus Edinger-Westphal - -[Term] -id: UBERON:2000315 ! asteriscus -xref: ZFA:0000315 ! asteriscus - -[Term] -id: UBERON:2002215 ! otic vesicle protrusion -xref: ZFA:0001715 ! otic vesicle protrusion - -[Term] -id: UBERON:0002162 ! area postrema -xref: ZFA:0005146 ! area postrema - -[Term] -id: UBERON:2001286 ! caudal vein plexus -xref: ZFA:0001286 ! caudal vein plexus - -[Term] -id: UBERON:2000090 ! apical ectodermal ridge dorsal fin -xref: ZFA:0000090 ! apical ectodermal ridge dorsal fin - -[Term] -id: UBERON:2000070 ! obsolete sensory axons peripheral -xref: ZFA:0000070 ! sensory axons peripheral - -[Term] -id: UBERON:2000336 ! preopercle vertical limb -xref: ZFA:0001595 ! preopercle vertical limb - -[Term] -id: UBERON:0007567 ! regenerating anatomical structure -xref: ZFA:0005147 ! regenerating tissue - -[Term] -id: UBERON:2001716 ! caudal principal ray 4 -xref: ZFA:0005515 ! caudal fin principal ray 4 - -[Term] -id: UBERON:2000751 ! epaxial region somite 8 -xref: ZFA:0000751 ! epaxial region somite 8 - -[Term] -id: UBERON:2001941 ! orbitosphenoid-lateral ethmoid joint -xref: ZFA:0005479 ! orbitosphenoid-lateral ethmoid joint - -[Term] -id: UBERON:0001646 ! abducens nerve -xref: ZFA:0000310 ! cranial nerve VI - -[Term] -id: UBERON:2001735 ! scapular foramen -xref: ZFA:0005431 ! scapular foramen - -[Term] -id: UBERON:2000878 ! fast muscle cell somite 17 -xref: ZFA:0000878 ! fast muscle cell somite 17 - -[Term] -id: UBERON:0005620 ! primary palate -xref: ZFA:0005509 ! palate - -[Term] -id: UBERON:2001765 ! pectoral fin lepidotrichium 5 -xref: ZFA:0005552 ! pectoral fin lepidotrichium 5 - -[Term] -id: UBERON:2001819 ! dorsal fin proximal radial 2 -xref: ZFA:0005363 ! dorsal fin proximal radial 2 - -[Term] -id: UBERON:0003933 ! cranial cartilage -xref: ZFA:0001458 ! cranial cartilage - -[Term] -id: UBERON:0007275 ! crista of ampulla of posterior semicircular duct of membranous laybrinth -xref: ZFA:0000566 ! posterior crista - -[Term] -id: UBERON:2007034 ! forebrain neural rod -xref: ZFA:0007034 ! forebrain neural rod - -[Term] -id: UBERON:2005084 ! metencephalic artery -xref: ZFA:0005084 ! metencephalic artery - -[Term] -id: UBERON:2005209 ! hindbrain interneuron -xref: ZFA:0005209 ! hindbrain interneuron - -[Term] -id: UBERON:0001896 ! medulla oblongata -xref: ZFA:0000545 ! medulla oblongata - -[Term] -id: UBERON:2001592 ! claustrum bone -xref: ZFA:0001592 ! claustrum bone - -[Term] -id: UBERON:2002221 ! pericardial muscle -xref: ZFA:0001653 ! pericardial muscle - -[Term] -id: UBERON:2000196 ! dorsal hypohyal bone -xref: ZFA:0000196 ! dorsal hypohyal bone - -[Term] -id: UBERON:0001703 ! neurocranium -xref: ZFA:0001580 ! neurocranium - -[Term] -id: UBERON:0001904 ! habenula -xref: ZFA:0000213 ! habenula - -[Term] -id: UBERON:2000931 ! myotome somite 27 -xref: ZFA:0000931 ! myotome somite 27 - -[Term] -id: UBERON:0001693 ! exoccipital bone -xref: ZFA:0000661 ! exoccipital - -[Term] -id: UBERON:0007831 ! skeleton of pectoral girdle -xref: ZFA:0000407 ! pectoral girdle - -[Term] -id: UBERON:2001849 ! epihyal-branchiostegal ray joint -xref: ZFA:0005498 ! epihyal-branchiostegal ray joint - -[Term] -id: UBERON:0007287 ! presumptive bulbus arteriosus -xref: ZFA:0001712 ! presumptive bulbus arteriosus - -[Term] -id: UBERON:0002104 ! visual system -xref: ZFA:0001127 ! visual system - -[Term] -id: UBERON:2000799 ! muscle pioneer somite 6 -xref: ZFA:0000799 ! muscle pioneer somite 6 - -[Term] -id: UBERON:0004639 ! afferent arteriole -xref: ZFA:0005307 ! afferent glomerular arteriole - -[Term] -id: UBERON:2000616 ! adductor profundus -xref: ZFA:0000616 ! adductor profundus - -[Term] -id: UBERON:2000813 ! infraorbital lateral line neuromast -xref: ZFA:0000813 ! infraorbital lateral line neuromast - -[Term] -id: UBERON:2005075 ! peripheral cardiac conduction system -xref: ZFA:0005075 ! peripheral cardiac conduction system - -[Term] -id: UBERON:2000798 ! muscle pioneer somite 30 -xref: ZFA:0000798 ! muscle pioneer somite 30 - -[Term] -id: UBERON:0001769 ! iris -xref: ZFA:0001238 ! iris - -[Term] -id: UBERON:0000473 ! testis -xref: ZFA:0000598 ! testis - -[Term] -id: UBERON:0000011 ! parasympathetic nervous system -xref: ZFA:0001575 ! parasympathetic nervous system - -[Term] -id: UBERON:0011615 ! basihyal cartilage -xref: ZFA:0001510 ! basihyal cartilage - -[Term] -id: UBERON:2000414 ! presumptive cephalic mesoderm -xref: ZFA:0000414 ! presumptive cephalic mesoderm - -[Term] -id: UBERON:2000779 ! lateral forebrain bundle telencephalon -xref: ZFA:0000779 ! lateral forebrain bundle telencephalon - -[Term] -id: UBERON:0006787 ! middle white layer of superior colliculus -xref: ZFA:0001351 ! stratum album centrale - -[Term] -id: UBERON:0002328 ! notochord -xref: ZFA:0000135 ! notochord - -[Term] -id: UBERON:2000734 ! preural vertebra -xref: ZFA:0000734 ! preural vertebra - -[Term] -id: UBERON:0006544 ! kidney vasculature -xref: ZFA:0005305 ! kidney vasculature - -[Term] -id: UBERON:0001648 ! vestibulocochlear nerve -xref: ZFA:0000247 ! cranial nerve VIII - -[Term] -id: UBERON:2000241 ! midline column -xref: ZFA:0000241 ! midline column - -[Term] -id: UBERON:2005227 ! protoneuromast -xref: ZFA:0005227 ! protoneuromast - -[Term] -id: UBERON:0001944 ! pretectal region -xref: ZFA:0000418 ! pretectum - -[Term] -id: UBERON:0001628 ! posterior communicating artery -xref: ZFA:0005001 ! posterior communicating artery - -[Term] -id: UBERON:2001041 ! sclerotome somite 21 -xref: ZFA:0001041 ! sclerotome somite 21 - -[Term] -id: UBERON:0003076 ! posterior neural tube -xref: ZFA:0007037 ! posterior neural tube - -[Term] -id: UBERON:2000264 ! preopercle -xref: ZFA:0000264 ! preopercle - -[Term] -id: UBERON:0003098 ! optic stalk -xref: ZFA:0000137 ! optic stalk - -[Term] -id: UBERON:2001425 ! basal plate cartilage -xref: ZFA:0001425 ! basal plate cartilage - -[Term] -id: UBERON:2000284 ! subopercle -xref: ZFA:0000284 ! subopercle - -[Term] -id: UBERON:0007302 ! pectoral appendage vasculature -xref: ZFA:0005096 ! pectoral fin vasculature - -[Term] -id: UBERON:0006860 ! swim bladder -xref: ZFA:0000076 ! swim bladder - -[Term] -id: UBERON:0000010 ! peripheral nervous system -xref: ZFA:0000142 ! peripheral nervous system - -[Term] -id: UBERON:0000383 ! musculature of body -xref: ZFA:0000548 ! musculature system - -[Term] -id: UBERON:0004750 ! blastoderm -xref: ZFA:0001176 ! blastoderm - -[Term] -id: UBERON:2002195 ! epidermal placode -xref: ZFA:0001703 ! epidermal placode - -[Term] -id: UBERON:0000044 ! dorsal root ganglion -xref: ZFA:0000200 ! dorsal root ganglion - -[Term] -id: UBERON:0009908 ! caudal root of abducens nerve -xref: ZFA:0000179 ! caudal root of abducens nerve - -[Term] -id: UBERON:2001845 ! dorsal hypohyal-ventral hypohyal joint -xref: ZFA:0005458 ! dorsal hypohyal-ventral hypohyal joint - -[Term] -id: UBERON:0002633 ! motor nucleus of trigeminal nerve -xref: ZFA:0001365 ! trigeminal motor nucleus - -[Term] -id: UBERON:2001305 ! vagal ganglion 4 -xref: ZFA:0001305 ! vagal ganglion 4 - -[Term] -id: UBERON:2000869 ! epaxial region somite 23 -xref: ZFA:0000869 ! epaxial region somite 23 - -[Term] -id: UBERON:0003062 ! primitive knot -xref: ZFA:0000071 ! shield - -[Term] -id: UBERON:0002214 ! macula of utricle of membranous labyrinth -xref: ZFA:0000030 ! macula utricle - -[Term] -id: UBERON:2001026 ! supraorbital lateral line neuromast -xref: ZFA:0001026 ! supraorbital lateral line neuromast - -[Term] -id: UBERON:2005182 ! t-interneuron -xref: ZFA:0005182 ! t-interneuron - -[Term] -id: UBERON:0003929 ! gut epithelium -xref: ZFA:0005123 ! gut epithelium - -[Term] -id: UBERON:0001143 ! hepatic vein -xref: ZFA:0000670 ! hepatic vein - -[Term] -id: UBERON:2001979 ! hyomandibula-metapterygoid joint -xref: ZFA:0005469 ! hyomandibula-metapterygoid joint - -[Term] -id: UBERON:2001666 ! rudimentary neural arch -xref: ZFA:0001641 ! rudimentary neural arch - -[Term] -id: UBERON:2000722 ! slow muscle cell somite 3 -xref: ZFA:0000722 ! slow muscle cell somite 3 - -[Term] -id: UBERON:2005370 ! dorsal fin pterygiophore 7 -xref: ZFA:0005370 ! dorsal fin pterygiophore 7 - -[Term] -id: UBERON:0007284 ! presumptive neural plate -xref: ZFA:0000063 ! presumptive neural plate - -[Term] -id: UBERON:2001378 ! axial hypoblast -xref: ZFA:0001378 ! axial hypoblast - -[Term] -id: UBERON:2000401 ! octaval nerve sensory nucleus -xref: ZFA:0000401 ! octaval nerve sensory nucleus - -[Term] -id: UBERON:2000678 ! hair cell anterior macula -xref: ZFA:0000678 ! hair cell anterior macula - -[Term] -id: UBERON:2000001 ! Kupffer's vesicle -xref: ZFA:0000001 ! Kupffer's vesicle - -[Term] -id: UBERON:0009120 ! gill filament -xref: ZFA:0000667 ! gill filament - -[Term] -id: UBERON:2000746 ! epaxial region somite 28 -xref: ZFA:0000746 ! epaxial region somite 28 - -[Term] -id: UBERON:2001118 ! urogenital papilla -xref: ZFA:0001118 ! urogenital papilla - -[Term] -id: UBERON:0001789 ! outer nuclear layer of retina -xref: ZFA:0001464 ! retinal outer nuclear layer - -[Term] -id: UBERON:0003054 ! roof plate -xref: ZFA:0007058 ! roof plate - -[Term] -id: UBERON:0000430 ! ventral intermediate nucleus of thalamus -xref: ZFA:0000370 ! intermediate thalamic nucleus - -[Term] -id: UBERON:2000876 ! fast muscle cell somite 11 -xref: ZFA:0000876 ! fast muscle cell somite 11 - -[Term] -id: UBERON:0006841 ! central vein of liver -xref: ZFA:0005168 ! central vein - -[Term] -id: UBERON:0004749 ! blastodisc -xref: ZFA:0001175 ! blastodisc - -[Term] -id: UBERON:0005494 ! intermediate mesenchyme -xref: ZFA:0000990 ! intermediate mesenchyme - -[Term] -id: UBERON:0002298 ! brainstem -xref: ZFA:0001707 ! brainstem - -[Term] -id: UBERON:2001156 ! posterior lateral line placode -xref: ZFA:0001156 ! posterior lateral line placode - -[Term] -id: UBERON:2005026 ! primary head sinus -xref: ZFA:0005026 ! primary head sinus - -[Term] -id: UBERON:0004126 ! trabecular layer of ventricle -xref: ZFA:0005060 ! trabecular layer of ventricle - -[Term] -id: UBERON:0002396 ! vomer -xref: ZFA:0000308 ! prevomer - -[Term] -id: UBERON:0003906 ! cardiac jelly -xref: ZFA:0001318 ! cardiac jelly - -[Term] -id: UBERON:2000754 ! fast muscle cell somite 19 -xref: ZFA:0000754 ! fast muscle cell somite 19 - -[Term] -id: UBERON:0005567 ! rhombomere 1 lateral wall -xref: ZFA:0000781 ! lateral wall rhombomere 1 - -[Term] -id: UBERON:2001766 ! pectoral fin lepidotrichium 6 -xref: ZFA:0005550 ! pectoral fin lepidotrichium 6 - -[Term] -id: UBERON:2005174 ! ventral liver lobe -xref: ZFA:0005174 ! ventral liver lobe - -[Term] -id: UBERON:2005034 ! parachordal vessel -xref: ZFA:0005034 ! parachordal vessel - -[Term] -id: UBERON:2001502 ! epiphyseal bar -xref: ZFA:0001502 ! epiphyseal bar - -[Term] -id: UBERON:2005104 ! presumptive dorsal fin fold -xref: ZFA:0005104 ! presumptive dorsal fin fold - -[Term] -id: UBERON:2000259 ! mandibular lateral line -xref: ZFA:0000259 ! mandibular lateral line - -[Term] -id: UBERON:2001520 ! ceratobranchial 1 cartilage -xref: ZFA:0001520 ! ceratobranchial 1 cartilage - -[Term] -id: UBERON:2000492 ! coracoradialis -xref: ZFA:0000492 ! coracoradialis - -[Term] -id: UBERON:0001833 ! lip -xref: ZFA:0007006 ! lip - -[Term] -id: UBERON:2000752 ! fast muscle cell somite 13 -xref: ZFA:0000752 ! fast muscle cell somite 13 - -[Term] -id: UBERON:0002323 ! coelemic cavity lumen -xref: ZFA:0001438 ! coelom - -[Term] -id: UBERON:2000884 ! fast muscle cell somite 30 -xref: ZFA:0000884 ! fast muscle cell somite 30 - -[Term] -id: UBERON:2001846 ! inter-ventral hypohyal joint -xref: ZFA:0005476 ! inter-ventral hypohyal joint - -[Term] -id: UBERON:2002200 ! hypobranchial muscle -xref: ZFA:0001651 ! hypobranchial muscle - -[Term] -id: UBERON:0006604 ! lamina orbitonasalis -xref: ZFA:0001503 ! lamina orbitonasalis - -[Term] -id: UBERON:2001322 ! dorsoventral diencephalic tract -xref: ZFA:0001322 ! dorsoventral diencephalic tract - -[Term] -id: UBERON:2001759 ! dorsal fin lepidotrichium 6 -xref: ZFA:0005360 ! dorsal fin lepidotrichium 6 - -[Term] -id: UBERON:2005339 ! nucleus of the lateral recess -xref: ZFA:0005339 ! nucleus of the lateral recess - -[Term] -id: UBERON:2000881 ! fast muscle cell somite 25 -xref: ZFA:0000881 ! fast muscle cell somite 25 - -[Term] -id: UBERON:2000454 ! ventral accessory optic nucleus -xref: ZFA:0000454 ! ventral accessory optic nucleus - -[Term] -id: UBERON:2005067 ! bulbus arteriosus middle layer -xref: ZFA:0005067 ! bulbus arteriosus middle layer - -[Term] -id: UBERON:2001582 ! non-Weberian precaudal vertebra -xref: ZFA:0001582 ! non-Weberian precaudal vertebra - -[Term] -id: UBERON:2001263 ! ovarian follicle stage I -xref: ZFA:0001263 ! ovarian follicle stage I - -[Term] -id: UBERON:2001561 ! hypural 2 -xref: ZFA:0001561 ! hypural 2 - -[Term] -id: UBERON:2000469 ! anterior semicircular canal primordium -xref: ZFA:0000469 ! otic vesicle anterior protrusion - -[Term] -id: UBERON:0000930 ! stomodeum -xref: ZFA:0001290 ! stomodeum - -[Term] -id: UBERON:2005200 ! RoL2c -xref: ZFA:0005200 ! RoL2c - -[Term] -id: UBERON:0007383 ! enveloping layer of ectoderm -xref: ZFA:0000086 ! EVL - -[Term] -id: UBERON:0010193 ! renal portal vein -xref: ZFA:0000577 ! renal portal vein - -[Term] -id: UBERON:2005374 ! dorsal fin distal radial 3 -xref: ZFA:0005374 ! dorsal fin distal radial 3 - -[Term] -id: UBERON:0000489 ! cavitated compound organ -xref: ZFA:0001490 ! cavitated compound organ - -[Term] -id: UBERON:2001343 ! telencephalon diencephalon boundary -xref: ZFA:0001343 ! telencephalon diencephalon boundary - -[Term] -id: UBERON:2000740 ! epaxial region somite 5 -xref: ZFA:0000740 ! epaxial region somite 5 - -[Term] -id: UBERON:0003040 ! central gray substance of midbrain -xref: ZFA:0000518 ! griseum centrale - -[Term] -id: UBERON:0003850 ! telencephalon neural crest -xref: ZFA:0000812 ! neural crest telencephalon - -[Term] -id: UBERON:0002067 ! dermis -xref: ZFA:0001119 ! dermis - -[Term] -id: UBERON:2001126 ! noninvoluting endocytic marginal cell cluster -xref: ZFA:0001126 ! noninvoluting endocytic marginal cell cluster - -[Term] -id: UBERON:2005170 ! extrahepatic duct -xref: ZFA:0005170 ! extrahepatic duct - -[Term] -id: UBERON:0005527 ! rhombomere 8 -xref: ZFA:0000153 ! rhombomere 8 - -[Term] -id: UBERON:0003067 ! dorsolateral placode -xref: ZFA:0001310 ! dorsolateral placode - -[Term] -id: UBERON:2001096 ! immature anterior macula -xref: ZFA:0001096 ! immature anterior macula - -[Term] -id: UBERON:0002199 ! integument -xref: ZFA:0000368 ! integument - -[Term] -id: UBERON:2005088 ! posterior mesenteric artery -xref: ZFA:0005088 ! posterior mesenteric artery - -[Term] -id: UBERON:2000769 ! hypaxial region somite 17 -xref: ZFA:0000769 ! hypaxial region somite 17 - -[Term] -id: UBERON:0005412 ! optic fissure -xref: ZFA:0001284 ! optic fissure - -[Term] -id: UBERON:2001522 ! hypobranchial cartilage -xref: ZFA:0001522 ! hypobranchial cartilage - -[Term] -id: UBERON:0006603 ! presumptive mesoderm -xref: ZFA:0001377 ! presumptive mesoderm - -[Term] -id: UBERON:0004537 ! blood vasculature -xref: ZFA:0001079 ! blood vasculature - -[Term] -id: UBERON:0006843 ! root of cranial nerve -xref: ZFA:0001663 ! cranial nerve root - -[Term] -id: UBERON:0005884 ! hyoid arch skeleton -xref: ZFA:0001276 ! pharyngeal arch 2 skeleton - -[Term] -id: UBERON:0002138 ! habenulo-interpeduncular tract -xref: ZFA:0000353 ! fasciculus retroflexus - -[Term] -id: UBERON:2000285 ! superficial adductor -xref: ZFA:0000285 ! superficial adductor - -[Term] -id: UBERON:2000593 ! superior reticular formation medial column -xref: ZFA:0000593 ! superior reticular formation medial column - -[Term] -id: UBERON:2005202 ! RoM1c -xref: ZFA:0005202 ! RoM1c - -[Term] -id: UBERON:2001164 ! supraneural 6 bone -xref: ZFA:0001164 ! supraneural 6 - -[Term] -id: UBERON:2000230 ! longitudinal hypochordal -xref: ZFA:0000230 ! longitudinal hypochordal - -[Term] -id: UBERON:0001090 ! synovial fluid -xref: ZFA:0005154 ! synovial fluid - -[Term] -id: UBERON:0000959 ! optic chiasma -xref: ZFA:0000556 ! optic chiasm - -[Term] -id: UBERON:0003110 ! otic region -xref: ZFA:0000189 ! otic region - -[Term] -id: UBERON:2001772 ! anal fin lepidotrichium 4 -xref: ZFA:0005402 ! anal fin lepidotrichium 4 - -[Term] -id: UBERON:2001761 ! pectoral fin lepidotrichium 1 -xref: ZFA:0005547 ! pectoral fin lepidotrichium 1 - -[Term] -id: UBERON:2005213 ! MeLr -xref: ZFA:0005213 ! MeLr - -[Term] -id: UBERON:0002352 ! atrioventricular node -xref: ZFA:0005070 ! atrioventricular node - -[Term] -id: UBERON:2001406 ! kinethmoid bone -xref: ZFA:0001406 ! kinethmoid bone - -[Term] -id: UBERON:0000477 ! anatomical cluster -xref: ZFA:0001478 ! anatomical cluster - -[Term] -id: UBERON:2001832 ! parasphenoid-basioccipital joint -xref: ZFA:0005560 ! parasphenoid-basioccipital joint - -[Term] -id: UBERON:0001844 ! cochlea -xref: ZFA:0000374 ! lagena - -[Term] -id: UBERON:2000837 ! sclerotome somite 6 -xref: ZFA:0000837 ! sclerotome somite 6 - -[Term] -id: UBERON:2000555 ! opercular flap -xref: ZFA:0000555 ! opercular flap - -[Term] -id: UBERON:0003104 ! mesenchyme -xref: ZFA:0000393 ! mesenchyme - -[Term] -id: UBERON:2001612 ! sensory canal -xref: ZFA:0005443 ! sensory canal - -[Term] -id: UBERON:0005886 ! post-hyoid pharyngeal arch skeleton -xref: ZFA:0000095 ! pharyngeal arch 3-7 skeleton - -[Term] -id: UBERON:0002457 ! intersegmental artery -xref: ZFA:0001061 ! intersegmental artery - -[Term] -id: UBERON:2001586 ! pectoral fin radial -xref: ZFA:0001586 ! pectoral fin radial - -[Term] -id: UBERON:0003107 ! Meckel's cartilage -xref: ZFA:0001205 ! Meckel's cartilage - -[Term] -id: UBERON:2000602 ! uroneural -xref: ZFA:0000602 ! uroneural - -[Term] -id: UBERON:0000472 ! simple organ -xref: ZFA:0001492 ! simple organ - -[Term] -id: UBERON:0001792 ! ganglionic layer of retina -xref: ZFA:0000024 ! retinal ganglion cell layer - -[Term] -id: UBERON:2000856 ! somite 28 -xref: ZFA:0000856 ! somite 28 - -[Term] -id: UBERON:0001843 ! lateral semicircular canal -xref: ZFA:0000220 ! lateral semicircular canal - -[Term] -id: UBERON:0001845 ! perilymph -xref: ZFA:0005413 ! perilymph - -[Term] -id: UBERON:2001927 ! anterior myodome -xref: ZFA:0005406 ! anterior myodome - -[Term] -id: UBERON:2000235 ! magnocellular superficial pretectal nucleus -xref: ZFA:0000235 ! magnocellular superficial pretectal nucleus - -[Term] -id: UBERON:2001728 ! caudal principal ray 16 -xref: ZFA:0005526 ! caudal fin principal ray 16 - -[Term] -id: UBERON:2000920 ! muscle pioneer somite 26 -xref: ZFA:0000920 ! muscle pioneer somite 26 - -[Term] -id: UBERON:2000390 ! medial preglomerular nucleus -xref: ZFA:0000390 ! medial preglomerular nucleus - -[Term] -id: UBERON:0006334 ! posterior lateral line -xref: ZFA:0000944 ! posterior lateral line - -[Term] -id: UBERON:2001630 ! supratemporal sensory canal -xref: ZFA:0005445 ! supratemporal sensory canal - -[Term] -id: UBERON:2005411 ! common crus -xref: ZFA:0005411 ! common crus - -[Term] -id: UBERON:0002432 ! pars intermedia of adenohypophysis -xref: ZFA:0001197 ! pars intermedia - -[Term] -id: UBERON:0006964 ! pars distalis of adenohypophysis -xref: ZFA:0001195 ! pars anterior - -[Term] -id: UBERON:2001245 ! epibranchial 4 bone -xref: ZFA:0001245 ! epibranchial 4 bone - -[Term] -id: UBERON:2001145 ! tooth 3V -xref: ZFA:0001145 ! tooth 3V - -[Term] -id: UBERON:2000430 ! secondary gustatory tract -xref: ZFA:0000430 ! secondary gustatory tract - -[Term] -id: UBERON:0003056 ! pre-chordal neural plate -xref: ZFA:0007016 ! anterior neural plate - -[Term] -id: UBERON:0001639 ! hepatic portal vein -xref: ZFA:0005090 ! hepatic portal vein - -[Term] -id: UBERON:0001708 ! jaw skeleton -xref: ZFA:0001227 ! mandibular arch skeleton - -[Term] -id: UBERON:0003351 ! pharyngeal epithelium -xref: ZFA:0001174 ! pharyngeal epithelium - -[Term] -id: UBERON:2000821 ! primary neuron hindbrain -xref: ZFA:0000821 ! primary neuron hindbrain - -[Term] -id: UBERON:0004742 ! dentary -xref: ZFA:0000191 ! dentary - -[Term] -id: UBERON:2001717 ! caudal principal ray 5 -xref: ZFA:0005516 ! caudal fin principal ray 5 - -[Term] -id: UBERON:2001715 ! caudal principal ray 3 -xref: ZFA:0005513 ! caudal fin principal ray 3 - -[Term] -id: UBERON:2000589 ! sulcus ypsiloniformis -xref: ZFA:0000589 ! sulcus ypsiloniformis - -[Term] -id: UBERON:2005068 ! bulbus arteriosus inner layer -xref: ZFA:0005068 ! bulbus arteriosus inner layer - -[Term] -id: UBERON:0001751 ! dentine -xref: ZFA:0005143 ! dentine - -[Term] -id: UBERON:0002349 ! myocardium -xref: ZFA:0001319 ! myocardium - -[Term] -id: UBERON:2000954 ! sclerotome somite 15 -xref: ZFA:0000954 ! sclerotome somite 15 - -[Term] -id: UBERON:2005366 ! dorsal fin pterygiophore 3 -xref: ZFA:0005366 ! dorsal fin pterygiophore 3 - -[Term] -id: UBERON:2000879 ! fast muscle cell somite 2 -xref: ZFA:0000879 ! fast muscle cell somite 2 - -[Term] -id: UBERON:2000836 ! sclerotome somite 30 -xref: ZFA:0000836 ! sclerotome somite 30 - -[Term] -id: UBERON:0003856 ! odontogenic mesenchyme -xref: ZFA:0005139 ! dental mesenchyme - -[Term] -id: UBERON:2000730 ! somite 23 -xref: ZFA:0000730 ! somite 23 - -[Term] -id: UBERON:2000276 ! rostrolateral thalamic nucleus of Butler & Saidel -xref: ZFA:0000276 ! rostrolateral thalamic nucleus of Butler & Saidel - -[Term] -id: UBERON:0006947 ! male genital duct -xref: ZFA:0001268 ! sperm duct - -[Term] -id: UBERON:0003894 ! liver primordium -xref: ZFA:0000124 ! liver primordium - -[Term] -id: UBERON:2000083 ! ventral mesoderm -xref: ZFA:0000083 ! ventral mesoderm - -[Term] -id: UBERON:2007005 ! hemal prezygapophysis -xref: ZFA:0007005 ! hemal prezygapophysis - -[Term] -id: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve -xref: ZFA:0000312 ! mesencephalic nucleus of trigeminal nerve - -[Term] -id: UBERON:2007062 ! olfactory field -xref: ZFA:0007062 ! olfactory field - -[Term] -id: UBERON:2005194 ! RoL1 -xref: ZFA:0005194 ! RoL1 - -[Term] -id: UBERON:0001902 ! epithelium of small intestine -xref: ZFA:0005127 ! mid intestine epithelium - -[Term] -id: UBERON:2000792 ! muscle pioneer somite 16 -xref: ZFA:0000792 ! muscle pioneer somite 16 - -[Term] -id: UBERON:2001539 ! basipterygium cartilage -xref: ZFA:0001539 ! basipterygium cartilage - -[Term] -id: UBERON:0000476 ! acellular anatomical structure -xref: ZFA:0000382 ! acellular anatomical structure - -[Term] -id: UBERON:2001830 ! caudal fin ventral procurrent ray -xref: ZFA:0005263 ! caudal fin ventral procurrent ray - -[Term] -id: UBERON:2000358 ! granular layer corpus cerebelli -xref: ZFA:0000358 ! granular layer corpus cerebelli - -[Term] -id: UBERON:2005010 ! mid cerebral vein -xref: ZFA:0005010 ! mid cerebral vein - -[Term] -id: UBERON:2000660 ! epural -xref: ZFA:0000660 ! epural - -[Term] -id: UBERON:0002090 ! postcranial axial skeleton -xref: ZFA:0000317 ! postcranial axial skeleton - -[Term] -id: UBERON:0000923 ! germ layer -xref: ZFA:0001122 ! primary germ layer - -[Term] -id: UBERON:0007126 ! pharyngeal pouch 5 -xref: ZFA:0001133 ! pharyngeal pouch 5 - -[Term] -id: UBERON:0005286 ! tela choroidea of midbrain cerebral aqueduct -xref: ZFA:0005157 ! tela chorioidea tectal ventricle - -[Term] -id: UBERON:0005572 ! rhombomere 2 roof plate -xref: ZFA:0000824 ! roof plate rhombomere 2 - -[Term] -id: UBERON:2005244 ! obsolete auditory epithelial support cell -xref: ZFA:0005244 ! auditory epithelial support cell - -[Term] -id: UBERON:0000491 ! solid compound organ -xref: ZFA:0001491 ! solid compound organ - -[Term] -id: UBERON:2005054 ! inner optic circle -xref: ZFA:0005054 ! inner optic circle - -[Term] -id: UBERON:0002206 ! mammillary body -xref: ZFA:0000334 ! corpus mamillare - -[Term] -id: UBERON:2005116 ! secondary posterior lateral line primordium -xref: ZFA:0005116 ! secondary posterior lateral line primordium - -[Term] -id: UBERON:0010170 ! region of neural crest -xref: ZFA:0000045 ! neural crest - -[Term] -id: UBERON:2001242 ! ceratobranchial 2 bone -xref: ZFA:0001242 ! ceratobranchial 2 bone - -[Term] -id: UBERON:0003413 ! pectoral appendage bud mesenchyme -xref: ZFA:0000789 ! mesoderm pectoral fin bud - -[Term] -id: UBERON:2000384 ! levator arcus palatini -xref: ZFA:0000384 ! levator arcus palatini - -[Term] -id: UBERON:2000629 ! caudal motor nucleus of abducens -xref: ZFA:0000629 ! caudal motor nucleus - -[Term] -id: UBERON:2000426 ! rostral parvocellular preoptic nucleus -xref: ZFA:0000426 ! rostral parvocellular preoptic nucleus - -[Term] -id: UBERON:0002107 ! liver -xref: ZFA:0000123 ! liver - -[Term] -id: UBERON:2001533 ! pharyngobranchial cartilage -xref: ZFA:0001533 ! pharyngobranchial cartilage - -[Term] -id: UBERON:2007011 ! vagal root -xref: ZFA:0007011 ! vagal root - -[Term] -id: UBERON:2000647 ! dorsal caudal thalamic nucleus -xref: ZFA:0000647 ! dorsal caudal thalamic nucleus - -[Term] -id: UBERON:2002141 ! annular ligament -xref: ZFA:0001676 ! annular ligament - -[Term] -id: UBERON:2000899 ! hypaxial region somite 29 -xref: ZFA:0000899 ! hypaxial region somite 29 - -[Term] -id: UBERON:2005340 ! nucleus of the posterior recess -xref: ZFA:0005340 ! nucleus of the posterior recess - -[Term] -id: UBERON:2001252 ! pharyngobranchial 3 bone -xref: ZFA:0001252 ! pharyngobranchial 3 bone - -[Term] -id: UBERON:0003299 ! roof plate of midbrain -xref: ZFA:0000355 ! roof plate midbrain region - -[Term] -id: UBERON:0008906 ! lateral line nerve -xref: ZFA:0001479 ! lateral line nerve - -[Term] -id: UBERON:2000895 ! hypaxial region somite 18 -xref: ZFA:0000895 ! hypaxial region somite 18 - -[Term] -id: UBERON:2001062 ! primitive mesencephalic artery -xref: ZFA:0001062 ! primitive mesencephalic artery - -[Term] -id: UBERON:0001890 ! forebrain -xref: ZFA:0000109 ! forebrain - -[Term] -id: UBERON:2005272 ! immature gonad -xref: ZFA:0005272 ! immature gonad - -[Term] -id: UBERON:0001601 ! extra-ocular muscle -xref: ZFA:0000511 ! extraocular musculature - -[Term] -id: UBERON:2000886 ! fast muscle cell somite 9 -xref: ZFA:0000886 ! fast muscle cell somite 9 - -[Term] -id: UBERON:0002209 ! fibrous joint -xref: ZFA:0005156 ! fibrous joint - -[Term] -id: UBERON:0007690 ! early pharyngeal endoderm -xref: ZFA:0001104 ! pharyngeal endoderm - -[Term] -id: UBERON:2005178 ! obsolete DoLA -xref: ZFA:0005178 ! DoLA - -[Term] -id: UBERON:0001989 ! superior cervical ganglion -xref: ZFA:0001572 ! superior cervical ganglion - -[Term] -id: UBERON:2000250 ! opercle -xref: ZFA:0000250 ! opercle - -[Term] -id: UBERON:2001324 ! enteric musculature -xref: ZFA:0001324 ! enteric musculature - -[Term] -id: UBERON:2001170 ! vertebral element 4 -xref: ZFA:0001170 ! vertebra 4 - -[Term] -id: UBERON:0006222 ! future diencephalon -xref: ZFA:0000574 ! presumptive diencephalon - -[Term] -id: UBERON:0001229 ! renal corpuscle -xref: ZFA:0005281 ! renal corpuscle - -[Term] -id: UBERON:2000291 ! medial octavolateralis nucleus -xref: ZFA:0000291 ! medial octavolateralis nucleus - -[Term] -id: UBERON:2000194 ! dorsal accessory optic nucleus -xref: ZFA:0000194 ! dorsal accessory optic nucleus - -[Term] -id: UBERON:0001634 ! mesencephalic artery -xref: ZFA:0001068 ! mesencephalic artery - -[Term] -id: UBERON:2000551 ! nucleus lateralis valvulae -xref: ZFA:0000551 ! nucleus lateralis valvulae - -[Term] -id: UBERON:0003082 ! myotome -xref: ZFA:0001056 ! myotome - -[Term] -id: UBERON:2005372 ! dorsal fin distal radial 1 -xref: ZFA:0005372 ! dorsal fin distal radial 1 - -[Term] -id: UBERON:2005234 ! obsolete CoLA -xref: ZFA:0005234 ! CoLA - -[Term] -id: UBERON:2005276 ! inclinator muscle -xref: ZFA:0005276 ! inclinator muscle - -[Term] -id: UBERON:2000805 ! myotome somite 23 -xref: ZFA:0000805 ! myotome somite 23 - -[Term] -id: UBERON:2000969 ! slow muscle cell somite 23 -xref: ZFA:0000969 ! slow muscle cell somite 23 - -[Term] -id: UBERON:0005945 ! neurocranial trabecula -xref: ZFA:0001321 ! neurocranial trabecula - -[Term] -id: UBERON:2000900 ! hypaxial region somite 4 -xref: ZFA:0000900 ! hypaxial region somite 4 - -[Term] -id: UBERON:2001157 ! posterior lateral line primordium -xref: ZFA:0001157 ! posterior lateral line primordium - -[Term] -id: UBERON:2000902 ! hypural musculature -xref: ZFA:0000902 ! hypural musculature - -[Term] -id: UBERON:2005113 ! dorsal lateral line neuromast -xref: ZFA:0005113 ! dorsal lateral line neuromast - -[Term] -id: UBERON:2001776 ! pelvic fin lepidotrichium 1 -xref: ZFA:0005554 ! pelvic fin lepidotrichium 1 - -[Term] -id: UBERON:2001879 ! rib of vertebra 1 -xref: ZFA:0005538 ! rib of vertebra 1 - -[Term] -id: UBERON:0007812 ! post-anal tail -xref: ZFA:0001117 ! post-vent region - -[Term] -id: UBERON:2000690 ! supraoptic commissure -xref: ZFA:0000690 ! supraoptic commissure - -[Term] -id: UBERON:2002150 ! vertebral element 10 -xref: ZFA:0005353 ! vertebra 10 - -[Term] -id: UBERON:0005576 ! rhombomere 4 floor plate -xref: ZFA:0000893 ! floor plate rhombomere 4 - -[Term] -id: UBERON:2001266 ! ovarian follicle stage III -xref: ZFA:0001266 ! ovarian follicle stage III - -[Term] -id: UBERON:2001933 ! sensory canal tubule -xref: ZFA:0005447 ! sensory canal tubule - -[Term] -id: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -xref: ZFA:0000085 ! apical ectodermal ridge pectoral fin bud -xref: ZFA:0000085 ! apical ectodermal ridge pectoral fin bud - -[Term] -id: UBERON:2001484 ! superficial blastomere -xref: ZFA:0001484 ! superficial blastomere - -[Term] -id: UBERON:2000425 ! anterior lateral line nerve -xref: ZFA:0000425 ! anterior lateral line nerve - -[Term] -id: UBERON:2000073 ! somite 5 -xref: ZFA:0000073 ! somite 5 - -[Term] -id: UBERON:2000438 ! parhypural -xref: ZFA:0000438 ! parhypural - -[Term] -id: UBERON:0005492 ! hyaloid vessel -xref: ZFA:0005046 ! hyaloid vessel - -[Term] -id: UBERON:2001754 ! dorsal fin lepidotrichium 1 -xref: ZFA:0005355 ! dorsal fin lepidotrichium 1 - -[Term] -id: UBERON:2001382 ! epibranchial bone uncinate process -xref: ZFA:0001382 ! epibranchial uncinate process - -[Term] -id: UBERON:2000644 ! obsolete dental plate -xref: ZFA:0000644 ! dental plate - -[Term] -id: UBERON:0001649 ! glossopharyngeal nerve -xref: ZFA:0000668 ! cranial nerve IX - -[Term] -id: UBERON:0002256 ! dorsal horn of spinal cord -xref: ZFA:0000649 ! dorsal horn spinal cord - -[Term] -id: UBERON:2000749 ! epaxial region somite 9 -xref: ZFA:0000749 ! epaxial region somite 9 - -[Term] -id: UBERON:0001794 ! inner limiting layer of retina -xref: ZFA:0001029 ! inner limiting membrane - -[Term] -id: UBERON:0007385 ! pectoral appendage lymph vessel -xref: ZFA:0005302 ! pectoral fin lymph vessel - -[Term] -id: UBERON:0002260 ! ventral root of spinal cord -xref: ZFA:0000705 ! ventral root - -[Term] -id: UBERON:2000363 ! hypobranchial bone -xref: ZFA:0000363 ! hypobranchial bone - -[Term] -id: UBERON:2000744 ! epaxial region somite 22 -xref: ZFA:0000744 ! epaxial region somite 22 - -[Term] -id: UBERON:2001505 ! taenia marginalis anterior -xref: ZFA:0001505 ! taenia marginalis anterior - -[Term] -id: UBERON:0003301 ! roof plate of diencephalon -xref: ZFA:0001358 ! roof plate diencephalic region - -[Term] -id: UBERON:4000166 ! anal fin skeleton -xref: ZFA:0000167 ! anal fin skeleton - -[Term] -id: UBERON:0001840 ! semicircular canal -xref: ZFA:0000431 ! semicircular canal - -[Term] -id: UBERON:2002207 ! medial motor nucleus of vagal nerve -xref: ZFA:0001696 ! medial motor nucleus of vagal nerve - -[Term] -id: UBERON:2007051 ! ventral interhyoideus -xref: ZFA:0007051 ! ventral interhyoideus - -[Term] -id: UBERON:0005725 ! olfactory system -xref: ZFA:0001149 ! olfactory system - -[Term] -id: UBERON:2000523 ! inferior reticular formation -xref: ZFA:0000523 ! inferior reticular formation - -[Term] -id: UBERON:2000689 ! supracommissural nucleus of V -xref: ZFA:0000689 ! supracommissural nucleus of ventral telencephalon - -[Term] -id: UBERON:2005185 ! MiD2cm -xref: ZFA:0005185 ! MiD2cm - -[Term] -id: UBERON:2000618 ! ansulate commissure -xref: ZFA:0000618 ! ansulate commissure - -[Term] -id: UBERON:0007291 ! presumptive rhombomere 4 -xref: ZFA:0001212 ! presumptive rhombomere 4 - -[Term] -id: UBERON:2005367 ! dorsal fin pterygiophore 4 -xref: ZFA:0005367 ! dorsal fin pterygiophore 4 - -[Term] -id: UBERON:2002034 ! prootic-exoccipital joint -xref: ZFA:0005481 ! prootic-exoccipital joint - -[Term] -id: UBERON:2007029 ! hindbrain neural keel -xref: ZFA:0007029 ! hindbrain neural keel - -[Term] -id: UBERON:0000966 ! retina -xref: ZFA:0000152 ! retina - -[Term] -id: UBERON:2000525 ! intercalarium -xref: ZFA:0000525 ! intercalarium - -[Term] -id: UBERON:0000167 ! oral cavity -xref: ZFA:0001027 ! oral cavity - -[Term] -id: UBERON:0005582 ! rhombomere 6 floor plate -xref: ZFA:0000889 ! floor plate rhombomere 6 - -[Term] -id: UBERON:2000966 ! slow muscle cell somite 18 -xref: ZFA:0000966 ! slow muscle cell somite 18 - -[Term] -id: UBERON:0002143 ! dorsal tegmental nucleus -xref: ZFA:0000346 ! dorsal tegmental nucleus - -[Term] -id: UBERON:2001847 ! dorsal hypohyal-urohyal joint -xref: ZFA:0005457 ! dorsal hypohyal-urohyal joint - -[Term] -id: UBERON:2001279 ! branchiostegal ray 1 -xref: ZFA:0001279 ! branchiostegal ray 1 - -[Term] -id: UBERON:0003115 ! pharyngeal arch 4 -xref: ZFA:0001607 ! pharyngeal arch 4 - -[Term] -id: UBERON:2007028 ! spinal cord neural keel -xref: ZFA:0007028 ! spinal cord neural keel - -[Term] -id: UBERON:2001841 ! interhyal-epihyal joint -xref: ZFA:0005473 ! interhyal-epihyal joint - -[Term] -id: UBERON:2000815 ! nucleus of the medial longitudinal fasciculus medulla oblongata -xref: ZFA:0000815 ! nucleus of the medial longitudinal fasciculus medulla oblongata - -[Term] -id: UBERON:2005056 ! palatocerebral vein -xref: ZFA:0005056 ! palatocerebral vein - -[Term] -id: UBERON:0007679 ! intersegmental vein -xref: ZFA:0001057 ! intersegmental vein - -[Term] -id: UBERON:0006323 ! superior rectus extraocular muscle -xref: ZFA:0000345 ! dorsal rectus - -[Term] -id: UBERON:2001408 ! infraorbital 3 -xref: ZFA:0001408 ! infraorbital 3 - -[Term] -id: UBERON:0000485 ! simple columnar epithelium -xref: ZFA:0001496 ! simple columnar epithelium - -[Term] -id: UBERON:0005377 ! olfactory bulb glomerular layer -xref: ZFA:0000357 ! glomerular layer - -[Term] -id: UBERON:2000364 ! hypural -xref: ZFA:0000364 ! hypural - -[Term] -id: UBERON:2000981 ! somite 29 -xref: ZFA:0000981 ! somite 29 - -[Term] -id: UBERON:0000925 ! endoderm -xref: ZFA:0000017 ! endoderm - -[Term] -id: UBERON:0003852 ! rhombencephalon neural crest -xref: ZFA:0007063 ! neural crest hindbrain - -[Term] -id: UBERON:0009610 ! forebrain neural plate -xref: ZFA:0007018 ! forebrain neural plate - -[Term] -id: UBERON:4000167 ! caudal fin skeleton -xref: ZFA:0000862 ! caudal fin skeleton - -[Term] -id: UBERON:0005497 ! non-neural ectoderm -xref: ZFA:0001178 ! non neural ectoderm - -[Term] -id: UBERON:2000776 ! hypaxial region somite 6 -xref: ZFA:0000776 ! hypaxial region somite 6 - -[Term] -id: UBERON:2000993 ! lateral wall neural rod -xref: ZFA:0000993 ! lateral wall neural rod - -[Term] -id: UBERON:2005029 ! rostral blood island -xref: ZFA:0005029 ! rostral blood island - -[Term] -id: UBERON:2007008 ! ventral intermandibularis anterior -xref: ZFA:0007008 ! ventral intermandibularis anterior - -[Term] -id: UBERON:2001407 ! infraorbital 2 -xref: ZFA:0001407 ! infraorbital 2 - -[Term] -id: UBERON:0003060 ! pronephric duct -xref: ZFA:0000150 ! pronephric duct - -[Term] -id: UBERON:0003052 ! midbrain-hindbrain boundary -xref: ZFA:0000042 ! midbrain hindbrain boundary - -[Term] -id: UBERON:0005723 ! floor plate spinal cord region -xref: ZFA:0000890 ! floor plate spinal cord region - -[Term] -id: UBERON:0003069 ! otic placode -xref: ZFA:0000138 ! otic placode - -[Term] -id: UBERON:4000174 ! caudal fin lepidotrichium -xref: ZFA:0001550 ! caudal fin lepidotrichium - -[Term] -id: UBERON:0010523 ! microcirculatory vessel -xref: ZFA:0005251 ! microcirculatory vessel - -[Term] -id: UBERON:2005022 ! opercular artery -xref: ZFA:0005022 ! opercular artery - -[Term] -id: UBERON:0000166 ! oral opening -xref: ZFA:0000590 ! oral region - -[Term] -id: UBERON:2005192 ! RoI2C -xref: ZFA:0005192 ! RoI2C - -[Term] -id: UBERON:0007384 ! limb/fin lymph vessel -xref: ZFA:0005300 ! fin lymph vessel - -[Term] -id: UBERON:2007003 ! ventro-caudal cluster -xref: ZFA:0007003 ! ventro-caudal cluster - -[Term] -id: UBERON:0001834 ! upper lip -xref: ZFA:0005226 ! upper lip - -[Term] -id: UBERON:2000921 ! muscle pioneer somite 29 -xref: ZFA:0000921 ! muscle pioneer somite 29 - -[Term] -id: UBERON:2002090 ! pro-otic fossa -xref: ZFA:0005492 ! sphenotic-prootic fossa - -[Term] -id: UBERON:2000728 ! somite 2 -xref: ZFA:0000728 ! somite 2 - -[Term] -id: UBERON:4000175 ! pectoral fin lepidotrichium -xref: ZFA:0001551 ! pectoral fin lepidotrichium - -[Term] -id: UBERON:2000963 ! slow muscle cell somite 1 -xref: ZFA:0000963 ! slow muscle cell somite 1 - -[Term] -id: UBERON:2001824 ! lateral line scale -xref: ZFA:0005530 ! lateral line scale - -[Term] -id: UBERON:0001083 ! myocardium of ventricle -xref: ZFA:0005061 ! ventricular myocardium - -[Term] -id: UBERON:2000411 ! posterior crista primordium -xref: ZFA:0000411 ! posterior crista primordium - -[Term] -id: UBERON:2005327 ! vH ionocyte -xref: ZFA:0005327 ! vH ionocyte - -[Term] -id: UBERON:2000867 ! epaxial region somite 18 -xref: ZFA:0000867 ! epaxial region somite 18 - -[Term] -id: UBERON:2000040 ! median fin fold -xref: ZFA:0000040 ! median fin fold - -[Term] -id: UBERON:2002199 ! hindbrain commissure -xref: ZFA:0001692 ! hindbrain commissure - -[Term] -id: UBERON:4000168 ! dorsal fin skeleton -xref: ZFA:0001124 ! dorsal fin skeleton - -[Term] -id: UBERON:0009841 ! upper rhombic lip -xref: ZFA:0001442 ! upper rhombic lip - -[Term] -id: UBERON:0003103 ! compound organ -xref: ZFA:0000496 ! compound organ - -[Term] -id: UBERON:2000245 ! nucleus of the descending root -xref: ZFA:0000245 ! nucleus of the descending root - -[Term] -id: UBERON:2000852 ! somite 15 -xref: ZFA:0000852 ! somite 15 - -[Term] -id: UBERON:0005575 ! rhombomere 3 roof plate -xref: ZFA:0000950 ! roof plate rhombomere 3 - -[Term] -id: UBERON:2000349 ! epaxialis -xref: ZFA:0000349 ! epaxialis - -[Term] -id: UBERON:2001482 ! middle lateral line nerve -xref: ZFA:0001482 ! middle lateral line nerve - -[Term] -id: UBERON:0004146 ! His-Purkinje system -xref: ZFA:0005071 ! distal conduction system - -[Term] -id: UBERON:0003687 ! foramen magnum -xref: ZFA:0005387 ! foramen magnum - -[Term] -id: UBERON:2005183 ! MiD2i -xref: ZFA:0005183 ! MiD2i - -[Term] -id: UBERON:0010226 ! future cardiac ventricle -xref: ZFA:0001719 ! presumptive cardiac ventricle heart tube - -[Term] -id: UBERON:0000468 ! multi-cellular organism -xref: ZFA:0001094 ! whole organism - -[Term] -id: UBERON:2001737 ! coracoid foramen -xref: ZFA:0005426 ! coracoid foramen - -[Term] -id: UBERON:2005320 ! dorsal longitudinal lymphatic vessel -xref: ZFA:0005320 ! dorsal longitudinal lymphatic vessel - -[Term] -id: UBERON:2000449 ! torus longitudinalis -xref: ZFA:0000449 ! torus longitudinalis - -[Term] -id: UBERON:0006952 ! outer dental epithelium -xref: ZFA:0005137 ! outer dental epithelium - -[Term] -id: UBERON:2001731 ! caudal principal ray 19 -xref: ZFA:0005529 ! caudal fin principal ray 19 - -[Term] -id: UBERON:2000968 ! hypaxial region somite 21 -xref: ZFA:0000968 ! hypaxial region somite 21 - -[Term] -id: UBERON:2001228 ! gill arch 1 skeleton -xref: ZFA:0001228 ! pharyngeal arch 3 skeleton - -[Term] -id: UBERON:2001524 ! hypobranchial 1 cartilage -xref: ZFA:0001524 ! hypobranchial 1 cartilage - -[Term] -id: UBERON:0001908 ! optic tract -xref: ZFA:0000252 ! optic tract - -[Term] -id: UBERON:2005080 ! anterior mesenteric artery -xref: ZFA:0005080 ! anterior mesenteric artery - -[Term] -id: UBERON:0002285 ! telencephalic ventricle -xref: ZFA:0000696 ! telencephalic ventricle - -[Term] -id: UBERON:2000003 ! obsolete adaxial cell -xref: ZFA:0000003 ! adaxial cell - -[Term] -id: UBERON:2000794 ! muscle pioneer somite 22 -xref: ZFA:0000794 ! muscle pioneer somite 22 - -[Term] -id: UBERON:0005583 ! rhombomere 6 lateral wall -xref: ZFA:0000995 ! lateral wall rhombomere 6 - -[Term] -id: UBERON:2001856 ! gill ray -xref: ZFA:0005390 ! gill ray - -[Term] -id: UBERON:2000331 ! commissure infima of Haller -xref: ZFA:0000331 ! commissure infima of Haller - -[Term] -id: UBERON:2002193 ! dorsolateral septum -xref: ZFA:0001672 ! dorsolateral septum - -[Term] -id: UBERON:2002174 ! octaval nerve motor nucleus -xref: ZFA:0001697 ! octaval nerve motor nucleus - -[Term] -id: UBERON:0001033 ! gustatory system -xref: ZFA:0001101 ! gustatory system - -[Term] -id: UBERON:2000929 ! myotome somite 21 -xref: ZFA:0000929 ! myotome somite 21 - -[Term] -id: UBERON:2001562 ! hypural 3 -xref: ZFA:0001562 ! hypural 3 - -[Term] -id: UBERON:0006913 ! lip epithelium -xref: ZFA:0005334 ! lip epithelium - -[Term] -id: UBERON:2005083 ! ventral branch nasal ciliary artery -xref: ZFA:0005083 ! ventral branch nasal ciliary artery - -[Term] -id: UBERON:2001017 ! myotome somite 22 -xref: ZFA:0001017 ! myotome somite 22 - -[Term] -id: UBERON:0004117 ! pharyngeal pouch -xref: ZFA:0001106 ! pharyngeal pouch - -[Term] -id: UBERON:0003097 ! dorsal fin -xref: ZFA:0001173 ! dorsal fin - -[Term] -id: UBERON:0002302 ! myocardium of atrium -xref: ZFA:0001374 ! atrial myocardium - -[Term] -id: UBERON:0003932 ! cartilaginous element of chondrocranium -xref: ZFA:0001461 ! chondrocranium cartilage - -[Term] -id: UBERON:2001829 ! caudal fin dorsal procurrent ray -xref: ZFA:0005262 ! caudal fin dorsal procurrent ray - -[Term] -id: UBERON:2000542 ! medial column -xref: ZFA:0000542 ! medial column - -[Term] -id: UBERON:2000617 ! anal erector -xref: ZFA:0000617 ! anal erector - -[Term] -id: UBERON:2000485 ! central nucleus inferior lobe -xref: ZFA:0000485 ! central nucleus inferior lobe - -[Term] -id: UBERON:2000853 ! somite 18 -xref: ZFA:0000853 ! somite 18 - -[Term] -id: UBERON:0002086 ! sinoatrial valve -xref: ZFA:0000680 ! sinoatrial valve - -[Term] -id: UBERON:2000337 ! basioccipital posterodorsal region -xref: ZFA:0001598 ! basioccipital posterodorsal region - -[Term] -id: UBERON:0001699 ! sensory root of facial nerve -xref: ZFA:0000679 ! sensory root of facial nerve - -[Term] -id: UBERON:0001287 ! proximal convoluted tubule -xref: ZFA:0005290 ! proximal convoluted tubule - -[Term] -id: UBERON:2001932 ! sensory canal tubular ossicle -xref: ZFA:0005511 ! sensory canal tubular ossicle - -[Term] -id: UBERON:0001888 ! lateral olfactory tract -xref: ZFA:0000229 ! lateral olfactory tract - -[Term] -id: UBERON:0007274 ! crista of ampulla of anterior semicircular duct of membranous laybrinth -xref: ZFA:0000619 ! anterior crista - -[Term] -id: UBERON:0007298 ! pronephric proximal convoluted tubule -xref: ZFA:0001620 ! pronephric proximal convoluted tubule - -[Term] -id: UBERON:0007303 ! pharyngeal vasculature -xref: ZFA:0005003 ! pharyngeal vasculature - -[Term] -id: UBERON:2000202 ! efferent branchial artery -xref: ZFA:0000202 ! efferent branchial artery - -[Term] -id: UBERON:0002196 ! adenohypophysis -xref: ZFA:0001282 ! adenohypophysis - -[Term] -id: UBERON:0001079 ! superior articular process of vertebra -xref: ZFA:0001325 ! neural prezygapophysis - -[Term] -id: UBERON:0011683 ! adductor mandibulae -xref: ZFA:0007049 ! adductor mandibulae - -[Term] -id: UBERON:2005085 ! nasal artery -xref: ZFA:0005085 ! nasal artery - -[Term] -id: UBERON:2005176 ! obsolete CoSA -xref: ZFA:0005176 ! CoSA - -[Term] -id: UBERON:0006241 ! future spinal cord -xref: ZFA:0000417 ! presumptive spinal cord - -[Term] -id: UBERON:2001588 ! pectoral fin distal radial -xref: ZFA:0001588 ! pectoral fin distal radial - -[Term] -id: UBERON:2000429 ! scaphium -xref: ZFA:0000429 ! scaphium - -[Term] -id: UBERON:2001724 ! caudal principal ray 12 -xref: ZFA:0005523 ! caudal fin principal ray 12 - -[Term] -id: UBERON:0004128 ! optic vesicle -xref: ZFA:0000050 ! optic vesicle - -[Term] -id: UBERON:2000635 ! central pretectal nucleus -xref: ZFA:0000635 ! central pretectal nucleus - -[Term] -id: UBERON:2000732 ! somite 3 -xref: ZFA:0000732 ! somite 3 - -[Term] -id: UBERON:2000395 ! muscle pioneer somite 2 -xref: ZFA:0000395 ! muscle pioneer somite 2 - -[Term] -id: UBERON:0004752 ! palatoquadrate cartilage -xref: ZFA:0001399 ! palatoquadrate cartilage - -[Term] -id: UBERON:2000997 ! medial funicular nucleus trigeminal nuclei -xref: ZFA:0000997 ! medial funicular nucleus trigeminal nucleus - -[Term] -id: UBERON:2005072 ! endocardial ring -xref: ZFA:0005072 ! endocardial ring - -[Term] -id: UBERON:2002204 ! lateral nucleus of ventral telencephalon -xref: ZFA:0000176 ! lateral nucleus of ventral telencephalon - -[Term] -id: UBERON:2001726 ! caudal principal ray 14 -xref: ZFA:0005524 ! caudal fin principal ray 14 - -[Term] -id: UBERON:2000484 ! celiacomesenteric artery -xref: ZFA:0000484 ! celiacomesenteric artery - -[Term] -id: UBERON:2002052 ! prootic depression -xref: ZFA:0005510 ! prootic depression - -[Term] -id: UBERON:2000210 ! gigantocellular part of magnocellular preoptic nucleus -xref: ZFA:0000210 ! gigantocellular part of magnocellular preoptic nucleus - -[Term] -id: UBERON:2005073 ! atrioventricular ring -xref: ZFA:0005073 ! atrioventricular ring - -[Term] -id: UBERON:2000717 ! apical ectodermal ridge median fin fold -xref: ZFA:0000717 ! apical ectodermal ridge median fin fold - -[Term] -id: UBERON:0003936 ! postoptic commissure -xref: ZFA:0000059 ! postoptic commissure - -[Term] -id: UBERON:2001467 ! pharyngeal mesoderm -xref: ZFA:0001467 ! pharyngeal mesoderm - -[Term] -id: UBERON:0007271 ! limb/fin musculature -xref: ZFA:0000207 ! fin musculature - -[Term] -id: UBERON:2000691 ! supraorbital bone -xref: ZFA:0000691 ! supraorbital bone - -[Term] -id: UBERON:0004746 ! prootic bone -xref: ZFA:0000575 ! prootic - -[Term] -id: UBERON:0002139 ! subcommissural organ -xref: ZFA:0000683 ! subcommissural organ - -[Term] -id: UBERON:0002412 ! vertebra -xref: ZFA:0001189 ! vertebra - -[Term] -id: UBERON:0000478 ! extraembryonic structure -xref: ZFA:0000020 ! extraembryonic structure - -[Term] -id: UBERON:2005207 ! RoM3l -xref: ZFA:0005207 ! RoM3l - -[Term] -id: UBERON:0002924 ! terminal nerve -xref: ZFA:0001356 ! terminal nerve - -[Term] -id: UBERON:0004704 ! bone fossa -xref: ZFA:0005388 ! fossa - -[Term] -id: UBERON:2001222 ! posterior copula -xref: ZFA:0001222 ! copula 2 - -[Term] -id: UBERON:2001980 ! vertebral element 6 -xref: ZFA:0005348 ! vertebra 6 - -[Term] -id: UBERON:0008781 ! blastodisc derived epiblast -xref: ZFA:0000018 ! epiblast - -[Term] -id: UBERON:2001594 ! caudal fin lower lobe -xref: ZFA:0001605 ! caudal fin lower lobe - -[Term] -id: UBERON:2000476 ! branchiostegal ray -xref: ZFA:0000476 ! branchiostegal ray - -[Term] -id: UBERON:2007054 ! pillar of the anterior semicircular canal -xref: ZFA:0007054 ! pillar of the anterior semicircular canal - -[Term] -id: UBERON:2000685 ! superficial abductor -xref: ZFA:0000685 ! superficial abductor - -[Term] -id: UBERON:0009663 ! telencephalic nucleus -xref: ZFA:0001660 ! telencephalic nucleus - -[Term] -id: UBERON:2000860 ! fast muscle cell somite 7 -xref: ZFA:0000860 ! fast muscle cell somite 7 - -[Term] -id: UBERON:0006791 ! superficial layer of superior colliculus -xref: ZFA:0000686 ! superficial grey and white zone - -[Term] -id: UBERON:2001471 ! posterior lateral line system -xref: ZFA:0001471 ! posterior lateral line system - -[Term] -id: UBERON:2000692 ! symplectic -xref: ZFA:0000692 ! symplectic - -[Term] -id: UBERON:2001727 ! caudal principal ray 15 -xref: ZFA:0005525 ! caudal fin principal ray 15 - -[Term] -id: UBERON:2001526 ! hypobranchial 3 cartilage -xref: ZFA:0001526 ! hypobranchial 3 cartilage - -[Term] -id: UBERON:2000398 ! nucleus isthmi -xref: ZFA:0000398 ! nucleus isthmi - -[Term] -id: UBERON:2001529 ! epibranchial 3 cartilage -xref: ZFA:0001529 ! epibranchial 3 cartilage - -[Term] -id: UBERON:2000287 ! superior dorsal flexor -xref: ZFA:0000287 ! superior dorsal flexor - -[Term] -id: UBERON:2000674 ! interopercle -xref: ZFA:0000674 ! interopercle - -[Term] -id: UBERON:0006790 ! deep white layer of superior colliculus -xref: ZFA:0000494 ! deep white zone - -[Term] -id: UBERON:2000651 ! dorsal pelvic arrector -xref: ZFA:0000651 ! dorsal pelvic arrector - -[Term] -id: UBERON:0007293 ! presumptive rhombomere 6 -xref: ZFA:0001210 ! presumptive rhombomere 6 - -[Term] -id: UBERON:2000868 ! epaxial region somite 20 -xref: ZFA:0000868 ! epaxial region somite 20 - -[Term] -id: UBERON:0005571 ! rhombomere 2 lateral wall -xref: ZFA:0000907 ! lateral wall rhombomere 2 - -[Term] -id: UBERON:0006215 ! rhombic lip -xref: ZFA:0001440 ! rhombic lip - -[Term] -id: UBERON:2000715 ! adductor hyohyoid -xref: ZFA:0000715 ! adductor hyohyoid - -[Term] -id: UBERON:2005316 ! fin fold pectoral fin bud -xref: ZFA:0005316 ! fin fold pectoral fin bud - -[Term] -id: UBERON:2005030 ! dorsal ciliary vein -xref: ZFA:0005030 ! dorsal ciliary vein - -[Term] -id: UBERON:2000694 ! ceratobranchial 5 tooth -xref: ZFA:0000694 ! ceratobranchial 5 tooth - -[Term] -id: UBERON:0002438 ! ventral tegmental nucleus -xref: ZFA:0000275 ! rostral tegmental nucleus - -[Term] -id: UBERON:2005269 ! hypophyseal fenestra -xref: ZFA:0005625 ! hypophyseal fenestra - -[Term] -id: UBERON:2000712 ! I-YSL -xref: ZFA:0000712 ! I-YSL - -[Term] -id: UBERON:2001470 ! anterior lateral line -xref: ZFA:0001470 ! anterior lateral line - -[Term] -id: UBERON:0006840 ! nucleus of lateral lemniscus -xref: ZFA:0000380 ! lateral lemniscus nucleus - -[Term] -id: UBERON:2001518 ! ceratobranchial 3 cartilage -xref: ZFA:0001518 ! ceratobranchial 3 cartilage - -[Term] -id: UBERON:2002185 ! climbing fiber -xref: ZFA:0001711 ! climbing fiber - -[Term] -id: UBERON:0002309 ! medial longitudinal fasciculus -xref: ZFA:0000543 ! medial longitudinal fasciculus - -[Term] -id: UBERON:2001981 ! vertebral element 7 -xref: ZFA:0005349 ! vertebra 7 - -[Term] -id: UBERON:0001281 ! hepatic sinusoid -xref: ZFA:0005091 ! hepatic sinusoid - -[Term] -id: UBERON:0004866 ! actinopterygian frontal bone -xref: ZFA:0000514 ! frontal bone - -[Term] -id: UBERON:2001277 ! anterior chamber swim bladder -xref: ZFA:0001277 ! anterior chamber swim bladder - -[Term] -id: UBERON:2001163 ! supraneural 7 bone -xref: ZFA:0001163 ! supraneural 7 - -[Term] -id: UBERON:2000185 ! commissura rostral, pars ventralis -xref: ZFA:0000185 ! commissura rostral, pars ventralis - -[Term] -id: UBERON:2000609 ! ventrolateral nucleus -xref: ZFA:0000609 ! ventrolateral nucleus - -[Term] -id: UBERON:2001076 ! intestinal bulb -xref: ZFA:0001076 ! intestinal bulb - -[Term] -id: UBERON:0000936 ! posterior commissure -xref: ZFA:0000320 ! caudal commissure - -[Term] -id: UBERON:2001293 ! posterior kidney -xref: ZFA:0001293 ! posterior kidney - -[Term] -id: UBERON:2002180 ! central nucleus of ventral telencephalon -xref: ZFA:0001668 ! central nucleus of ventral telencephalon - -[Term] -id: UBERON:2000488 ! ceratobranchial bone -xref: ZFA:0000488 ! ceratobranchial bone - -[Term] -id: UBERON:0004535 ! cardiovascular system -xref: ZFA:0000010 ! cardiovascular system - -[Term] -id: UBERON:2001388 ! epithelial mesenchymal boundary of regenerating fin/limb -xref: ZFA:0001388 ! epithelial mesenchymal boundary - -[Term] -id: UBERON:2002226 ! preglomerular nucleus -xref: ZFA:0001662 ! preglomerular nucleus - -[Term] -id: UBERON:0003930 ! atrioventricular canal endocardium -xref: ZFA:0001616 ! atrioventricular canal endocardium - -[Term] -id: UBERON:0007098 ! mandibular neural crest -xref: ZFA:0007064 ! mandibular neural crest - -[Term] -id: UBERON:2007002 ! ventro-rostral cluster -xref: ZFA:0007002 ! ventro-rostral cluster - -[Term] -id: UBERON:0002376 ! muscle of head -xref: ZFA:0000328 ! cephalic musculature -xref: ZFA:0001652 ! head muscle - -[Term] -id: UBERON:0005561 ! telencephalon lateral wall -xref: ZFA:0000785 ! lateral wall telencephalic region - -[Term] -id: UBERON:2005025 ! dorsal longitudinal anastomotic vessel -xref: ZFA:0005025 ! dorsal longitudinal anastomotic vessel - -[Term] -id: UBERON:0003090 ! supraorbital lateral line -xref: ZFA:0000443 ! supraorbital lateral line - -[Term] -id: UBERON:2000759 ! fast muscle cell somite 5 -xref: ZFA:0000759 ! fast muscle cell somite 5 - -[Term] -id: UBERON:0007292 ! presumptive rhombomere 5 -xref: ZFA:0001211 ! presumptive rhombomere 5 - -[Term] -id: UBERON:2001799 ! recessus lateralis -xref: ZFA:0005493 ! recessus lateralis - -[Term] -id: UBERON:2000983 ! somite 9 -xref: ZFA:0000983 ! somite 9 - -[Term] -id: UBERON:2000269 ! inferior ventral flexor -xref: ZFA:0000269 ! inferior ventral flexor - -[Term] -id: UBERON:0002037 ! cerebellum -xref: ZFA:0000100 ! cerebellum - -[Term] -id: UBERON:0001841 ! anterior semicircular canal -xref: ZFA:0000314 ! anterior semicircular canal - -[Term] -id: UBERON:2005017 ! primordial midbrain channel -xref: ZFA:0005017 ! primordial midbrain channel - -[Term] -id: UBERON:2005103 ! presumptive ventral fin fold -xref: ZFA:0005103 ! presumptive ventral fin fold - -[Term] -id: UBERON:2007061 ! epibranchial field -xref: ZFA:0007061 ! epibranchial field - -[Term] -id: UBERON:2005151 ! gold iridophore -xref: ZFA:0005151 ! gold iridophore - -[Term] -id: UBERON:2000833 ! sclerotome somite 22 -xref: ZFA:0000833 ! sclerotome somite 22 - -[Term] -id: UBERON:2000848 ! slow muscle cell somite 6 -xref: ZFA:0000848 ! slow muscle cell somite 6 - -[Term] -id: UBERON:0004152 ! bulbus arteriosus -xref: ZFA:0000173 ! bulbus arteriosus - -[Term] -id: UBERON:0007862 ! perichordal tissue -xref: ZFA:0001633 ! perichordal connective tissue - -[Term] -id: UBERON:0003095 ! dorsal lateral line -xref: ZFA:0005112 ! dorsal lateral line - -[Term] -id: UBERON:0000955 ! brain -xref: ZFA:0000008 ! brain - -[Term] -id: UBERON:0005256 ! trunk mesenchyme -xref: ZFA:0000081 ! trunk mesenchyme - -[Term] -id: UBERON:0005928 ! external naris -xref: ZFA:0000550 ! naris - -[Term] -id: UBERON:2001223 ! basibranchial 1 bone -xref: ZFA:0001223 ! basibranchial 1 - -[Term] -id: UBERON:0001366 ! parietal peritoneum -xref: ZFA:0005131 ! parietal peritoneum - -[Term] -id: UBERON:0003704 ! intrahepatic bile duct -xref: ZFA:0005169 ! intrahepatic bile duct - -[Term] -id: UBERON:0007125 ! pharyngeal pouch 4 -xref: ZFA:0001134 ! pharyngeal pouch 4 - -[Term] -id: UBERON:2007014 ! anterior presumptive neural plate -xref: ZFA:0007014 ! anterior presumptive neural plate - -[Term] -id: UBERON:2000125 ! mandibular lateral line neuromast -xref: ZFA:0000125 ! mandibular lateral line neuromast - -[Term] -id: UBERON:0001771 ! pupil -xref: ZFA:0001283 ! pupil - -[Term] -id: UBERON:2005115 ! primary posterior lateral line primordium -xref: ZFA:0005115 ! primary posterior lateral line primordium - -[Term] -id: UBERON:0000483 ! epithelium -xref: ZFA:0001486 ! epithelium - -[Term] -id: UBERON:2000459 ! ventromedial thalamic nucleus -xref: ZFA:0000459 ! ventromedial thalamic nucleus - -[Term] -id: UBERON:2001972 ! intercostal ligament -xref: ZFA:0005637 ! intercostal ligament - -[Term] -id: UBERON:0010711 ! pelvic fin skeleton -xref: ZFA:0001387 ! pelvic fin skeleton - -[Term] -id: UBERON:2001259 ! forebrain ventricle -xref: ZFA:0001259 ! forebrain ventricle - -[Term] -id: UBERON:0000982 ! skeletal joint -xref: ZFA:0001596 ! joint - -[Term] -id: UBERON:2000802 ! myotome somite 15 -xref: ZFA:0000802 ! myotome somite 15 - -[Term] -id: UBERON:2000522 ! inferior hyohyoid -xref: ZFA:0000522 ! inferior hyohyoid - -[Term] -id: UBERON:2000372 ! interpeduncular nucleus medulla oblongata -xref: ZFA:0000372 ! interpeduncular nucleus medulla oblongata - -[Term] -id: UBERON:2001685 ! lateral ethmoid-ectopterygoid ligament -xref: ZFA:0005503 ! lateral ethmoid-ectopterygoid ligament - -[Term] -id: UBERON:2002214 ! os suspensorium medial flange -xref: ZFA:0001599 ! os suspensorium medial flange - -[Term] -id: UBERON:0007308 ! pronephric distal early tubule -xref: ZFA:0001622 ! pronephric distal early tubule - -[Term] -id: UBERON:2000658 ! epibranchial bone -xref: ZFA:0000658 ! epibranchial bone - -[Term] -id: UBERON:0001032 ! sensory system -xref: ZFA:0000282 ! sensory system - -[Term] -id: UBERON:0005744 ! cranial conduit -xref: ZFA:0005386 ! foramen - -[Term] -id: UBERON:2000540 ! magnocellular octaval nucleus -xref: ZFA:0000540 ! magnocellular octaval nucleus - -[Term] -id: UBERON:0002289 ! midbrain cerebral aqueduct -xref: ZFA:0000159 ! tectal ventricle - -[Term] -id: UBERON:0011151 ! jaw depressor muscle -xref: ZFA:0000612 ! protractor hyoidei - -[Term] -id: UBERON:2002203 ! immature Schwann cell -xref: ZFA:0001725 ! immature Schwann cell - -[Term] -id: UBERON:2005087 ! pectoral vein -xref: ZFA:0005087 ! pectoral vein - -[Term] -id: UBERON:2000637 ! claustrum cartilage -xref: ZFA:0000637 ! claustrum cartilage - -[Term] -id: UBERON:0000013 ! sympathetic nervous system -xref: ZFA:0001576 ! sympathetic nervous system - -[Term] -id: UBERON:2000716 ! afferent branchial artery -xref: ZFA:0000716 ! afferent branchial artery - -[Term] -id: UBERON:0005569 ! rhombomere 2 -xref: ZFA:0000822 ! rhombomere 2 - -[Term] -id: UBERON:2000106 ! extension -xref: ZFA:0000106 ! extension - -[Term] -id: UBERON:2000896 ! hypaxial region somite 20 -xref: ZFA:0000896 ! hypaxial region somite 20 - -[Term] -id: UBERON:2000849 ! fast muscle cell somite 4 -xref: ZFA:0000849 ! fast muscle cell somite 4 - -[Term] -id: UBERON:2005089 ! swim bladder artery -xref: ZFA:0005089 ! swim bladder artery - -[Term] -id: UBERON:4000177 ! dorsal fin lepidotrichium -xref: ZFA:0001418 ! dorsal fin lepidotrichium - -[Term] -id: UBERON:0001184 ! renal artery -xref: ZFA:0000420 ! renal artery - -[Term] -id: UBERON:0004747 ! supraoccipital bone -xref: ZFA:0000595 ! supraoccipital - -[Term] -id: UBERON:0001638 ! vein -xref: ZFA:0000082 ! vein - -[Term] -id: UBERON:0007099 ! hyoid neural crest -xref: ZFA:0007065 ! hyoid neural crest - -[Term] -id: UBERON:2000240 ! metapterygoid -xref: ZFA:0000240 ! metapterygoid - -[Term] -id: UBERON:2001148 ! tooth 1D -xref: ZFA:0001148 ! tooth 1D - -[Term] -id: UBERON:2000136 ! otic lateral line neuromast -xref: ZFA:0000136 ! otic lateral line neuromast - -[Term] -id: UBERON:0005495 ! midbrain lateral wall -xref: ZFA:0000906 ! lateral wall midbrain region - -[Term] -id: UBERON:0008897 ! fin -xref: ZFA:0000108 ! fin - -[Term] -id: UBERON:2001281 ! branchiostegal ray 2 -xref: ZFA:0001281 ! branchiostegal ray 2 - -[Term] -id: UBERON:0002257 ! ventral horn of spinal cord -xref: ZFA:0000702 ! ventral horn spinal cord - -[Term] -id: UBERON:0003086 ! caudal artery -xref: ZFA:0000011 ! caudal artery - -[Term] -id: UBERON:2000614 ! abductor profundus -xref: ZFA:0000614 ! abductor profundus - -[Term] -id: UBERON:2001720 ! caudal principal ray 8 -xref: ZFA:0005519 ! caudal fin principal ray 8 - -[Term] -id: UBERON:2005220 ! larval melanophore stripe -xref: ZFA:0005220 ! larval melanophore stripe - -[Term] -id: UBERON:0003078 ! epibranchial placode -xref: ZFA:0001294 ! epibranchial placode - -[Term] -id: UBERON:0005496 ! neural tube lateral wall -xref: ZFA:0001435 ! lateral wall neural tube - -[Term] -id: UBERON:2005336 ! presumptive swim bladder -xref: ZFA:0005336 ! presumptive swim bladder - -[Term] -id: UBERON:2001044 ! sclerotome somite 3 -xref: ZFA:0001044 ! sclerotome somite 3 - -[Term] -id: UBERON:0000203 ! pallium -xref: ZFA:0000505 ! dorsal telencephalon - -[Term] -id: UBERON:2007032 ! midbrain neural rod -xref: ZFA:0007032 ! midbrain neural rod - -[Term] -id: UBERON:2001285 ! intersegmental vessel -xref: ZFA:0001285 ! intersegmental vessel - -[Term] -id: UBERON:2000481 ! caudal preglomerular nucleus -xref: ZFA:0000481 ! caudal preglomerular nucleus - -[Term] -id: UBERON:0003851 ! diencephalon neural crest -xref: ZFA:0000811 ! neural crest diencephalon - -[Term] -id: UBERON:2005051 ! communicating vessel palatocerebral artery -xref: ZFA:0005051 ! communicating vessel palatocerebral artery - -[Term] -id: UBERON:0005788 ! lamina rara interna -xref: ZFA:0005287 ! lamina rara interna - -[Term] -id: UBERON:2000482 ! caudal tuberal nucleus -xref: ZFA:0000482 ! caudal tuberal nucleus - -[Term] -id: UBERON:2000756 ! fast muscle cell somite 24 -xref: ZFA:0000756 ! fast muscle cell somite 24 - -[Term] -id: UBERON:0001425 ! pectoral lymphatic vessel -xref: ZFA:0005107 ! pectoral lymphatic vessel - -[Term] -id: UBERON:2001022 ! myotome somite 9 -xref: ZFA:0001022 ! myotome somite 9 - -[Term] -id: UBERON:0007297 ! presumptive pronephric mesoderm -xref: ZFA:0001070 ! presumptive pronephric mesoderm - -[Term] -id: UBERON:2005144 ! ampullary nerve -xref: ZFA:0005144 ! ampullary nerve - -[Term] -id: UBERON:0002005 ! enteric nervous system -xref: ZFA:0001155 ! enteric nervous system - -[Term] -id: UBERON:0004058 ! biliary ductule -xref: ZFA:0005164 ! bile ductule - -[Term] -id: UBERON:2000088 ! YSL -xref: ZFA:0000088 ! YSL - -[Term] -id: UBERON:2000497 ! pelvic adductor profundus -xref: ZFA:0000497 ! pelvic adductor profundus - -[Term] -id: UBERON:2000451 ! upper oral valve -xref: ZFA:0000451 ! upper oral valve - -[Term] -id: UBERON:2000829 ! sclerotome somite 11 -xref: ZFA:0000829 ! sclerotome somite 11 - -[Term] -id: UBERON:0010710 ! pectoral fin skeleton -xref: ZFA:0000943 ! pectoral fin skeleton - -[Term] -id: UBERON:0001707 ! nasal cavity -xref: ZFA:0000130 ! olfactory pit - -[Term] -id: UBERON:2001393 ! parapophysis 2 -xref: ZFA:0001393 ! parapophysis 2 - -[Term] -id: UBERON:2005368 ! dorsal fin pterygiophore 5 -xref: ZFA:0005368 ! dorsal fin pterygiophore 5 - -[Term] -id: UBERON:0002682 ! abducens nucleus -xref: ZFA:0000713 ! abducens motor nucleus - -[Term] -id: UBERON:2001687 ! interopercular-mandibular ligament -xref: ZFA:0005501 ! interopercular-mandibular ligament - -[Term] -id: UBERON:0001075 ! body of vertebra -xref: ZFA:0000126 ! centrum - -[Term] -id: UBERON:2000956 ! sclerotome somite 20 -xref: ZFA:0000956 ! sclerotome somite 20 - -[Term] -id: UBERON:2000936 ! dorsal fin distal radial -xref: ZFA:0000936 ! dorsal fin distal radial - -[Term] -id: UBERON:0007391 ! pelvic appendage cartilage -xref: ZFA:0001459 ! pelvic fin cartilage - -[Term] -id: UBERON:0002081 ! cardiac atrium -xref: ZFA:0000471 ! atrium - -[Term] -id: UBERON:0000029 ! lymph node -xref: ZFA:0005318 ! lymph node - -[Term] -id: UBERON:2000491 ! commissure of the caudal tuberculum -xref: ZFA:0000491 ! commissure of the caudal tuberculum - -[Term] -id: UBERON:2000874 ! epaxial region somite 7 -xref: ZFA:0000874 ! epaxial region somite 7 - -[Term] -id: UBERON:0011606 ! hyomandibular bone -xref: ZFA:0000672 ! hyomandibula - -[Term] -id: UBERON:2000808 ! myotome somite 29 -xref: ZFA:0000808 ! myotome somite 29 - -[Term] -id: UBERON:2005187 ! MiM1 -xref: ZFA:0005187 ! MiM1 - -[Term] -id: UBERON:2001247 ! epibranchial 3 bone -xref: ZFA:0001247 ! epibranchial 3 bone - -[Term] -id: UBERON:2001508 ! trabecula communis -xref: ZFA:0001508 ! trabecula communis - -[Term] -id: UBERON:0003100 ! female organism -xref: ZFA:0000303 ! female organism - -[Term] -id: UBERON:0000042 ! serous membrane -xref: ZFA:0005425 ! serous membrane - -[Term] -id: UBERON:2001729 ! caudal principal ray 17 -xref: ZFA:0005527 ! caudal fin principal ray 17 - -[Term] -id: UBERON:0005589 ! rhombomere 8 lateral wall -xref: ZFA:0000909 ! lateral wall rhombomere 8 - -[Term] -id: UBERON:0002423 ! hepatobiliary system -xref: ZFA:0000036 ! liver and biliary system - -[Term] -id: UBERON:2000797 ! muscle pioneer somite 28 -xref: ZFA:0000797 ! muscle pioneer somite 28 - -[Term] -id: UBERON:2001371 ! pancreatic system -xref: ZFA:0001371 ! pancreatic system - -[Term] -id: UBERON:2000725 ! somite 11 -xref: ZFA:0000725 ! somite 11 - -[Term] -id: UBERON:0002348 ! epicardium -xref: ZFA:0005057 ! epicardium - -[Term] -id: UBERON:0005777 ! glomerular basement membrane -xref: ZFA:0005285 ! glomerular basement membrane - -[Term] -id: UBERON:0006856 ! interrenal gland -xref: ZFA:0001345 ! interrenal gland - -[Term] -id: UBERON:2005191 ! MiV2 -xref: ZFA:0005191 ! MiV2 - -[Term] -id: UBERON:2005198 ! RoL2 -xref: ZFA:0005198 ! RoL2 - -[Term] -id: UBERON:2000840 ! slow muscle cell somite 11 -xref: ZFA:0000840 ! slow muscle cell somite 11 - -[Term] -id: UBERON:2005053 ! nasal ciliary artery -xref: ZFA:0005053 ! nasal ciliary artery - -[Term] -id: UBERON:0002370 ! thymus -xref: ZFA:0001078 ! thymus - -[Term] -id: UBERON:2000636 ! cerebellar crest -xref: ZFA:0000636 ! cerebellar crest - -[Term] -id: UBERON:2001982 ! vertebral element 8 -xref: ZFA:0005350 ! vertebra 8 - -[Term] -id: UBERON:2001006 ! muscle pioneer somite 21 -xref: ZFA:0001006 ! muscle pioneer somite 21 - -[Term] -id: UBERON:2001060 ! basidorsal -xref: ZFA:0001060 ! basidorsal - -[Term] -id: UBERON:2001473 ! deep blastomere -xref: ZFA:0001473 ! deep blastomere - -[Term] -id: UBERON:2005412 ! transverse canal -xref: ZFA:0005412 ! transverse canal - -[Term] -id: UBERON:0005730 ! pelvic appendage field -xref: ZFA:0001454 ! pelvic fin field - -[Term] -id: UBERON:2007026 ! forebrain neural keel -xref: ZFA:0007026 ! forebrain neural keel - -[Term] -id: UBERON:2000293 ! synencephalon -xref: ZFA:0000293 ! synencephalon - -[Term] -id: UBERON:0005284 ! brain vasculature -xref: ZFA:0000099 ! brain vasculature - -[Term] -id: UBERON:2005055 ! median palatocerebral vein -xref: ZFA:0005055 ! median palatocerebral vein - -[Term] -id: UBERON:0005170 ! ovary stratum granulosum -xref: ZFA:0001112 ! granulosa cell layer - -[Term] -id: UBERON:0001015 ! musculature -xref: ZFA:0000548 ! musculature system - -[Term] -id: UBERON:2001348 ! stratum marginale -xref: ZFA:0001348 ! stratum marginale - -[Term] -id: UBERON:0001982 ! capillary -xref: ZFA:0005250 ! capillary - -[Term] -id: UBERON:4000172 ! lepidotrichium -xref: ZFA:0001554 ! lepidotrichium - -[Term] -id: UBERON:2000321 ! caudal levator -xref: ZFA:0000321 ! caudal levator - -[Term] -id: UBERON:2001265 ! ovarian follicle stage II -xref: ZFA:0001265 ! ovarian follicle stage II - -[Term] -id: UBERON:0009122 ! adenohypophyseal placode -xref: ZFA:0001198 ! adenohypophyseal placode - -[Term] -id: UBERON:0005416 ! zone of polarizing activity of pelvic appendage -xref: ZFA:0001452 ! zone of polarizing activity pelvic fin bud - -[Term] -id: UBERON:2001015 ! myotome somite 17 -xref: ZFA:0001015 ! myotome somite 17 - -[Term] -id: UBERON:2001229 ! gill arch 5 skeleton -xref: ZFA:0001229 ! pharyngeal arch 7 skeleton - -[Term] -id: UBERON:2000455 ! ventral flexor -xref: ZFA:0000455 ! ventral flexor - -[Term] -id: UBERON:0004753 ! scapulocoracoid -xref: ZFA:0001455 ! scapulocoracoid - -[Term] -id: UBERON:2005188 ! MiR1 -xref: ZFA:0005188 ! MiR1 - -[Term] -id: UBERON:2000341 ! dorsal flexor -xref: ZFA:0000341 ! dorsal flexor - -[Term] -id: UBERON:2000499 ! dorsal arrector -xref: ZFA:0000499 ! dorsal arrector - -[Term] -id: UBERON:2007048 ! ventral intermandibularis posterior -xref: ZFA:0007048 ! ventral intermandibularis posterior - -[Term] -id: UBERON:2000165 ! inferior lobe -xref: ZFA:0000165 ! inferior lobe - -[Term] -id: UBERON:0005787 ! lamina densa -xref: ZFA:0005286 ! lamina densa - -[Term] -id: UBERON:0007269 ! pectoral appendage musculature -xref: ZFA:0000563 ! pectoral fin musculature - -[Term] -id: UBERON:2000695 ! labial cavities -xref: ZFA:0000695 ! labial cavity - -[Term] -id: UBERON:0007294 ! presumptive rhombomere 7 -xref: ZFA:0001209 ! presumptive rhombomere 7 - -[Term] -id: UBERON:0002082 ! cardiac ventricle -xref: ZFA:0000009 ! cardiac ventricle - -[Term] -id: UBERON:0002127 ! inferior olivary complex -xref: ZFA:0000215 ! inferior olive - -[Term] -id: UBERON:2001480 ! dorsal anterior lateral line nerve -xref: ZFA:0001480 ! dorsal anterior lateral line nerve - -[Term] -id: UBERON:0003083 ! trunk neural crest -xref: ZFA:0001024 ! trunk neural crest - -[Term] -id: UBERON:2000615 ! adductor arcus palatini -xref: ZFA:0000615 ! adductor arcus palatini - -[Term] -id: UBERON:0001095 ! caudal vertebra -xref: ZFA:0000326 ! caudal vertebra - -[Term] -id: UBERON:0001290 ! proximal straight tubule -xref: ZFA:0005291 ! proximal straight tubule - -[Term] -id: UBERON:2000807 ! myotome somite 26 -xref: ZFA:0000807 ! myotome somite 26 - -[Term] -id: UBERON:0007295 ! presumptive rhombomere 8 -xref: ZFA:0001214 ! presumptive rhombomere 8 - -[Term] -id: UBERON:2000502 ! dorsal motor nucleus trigeminal nerve -xref: ZFA:0000502 ! dorsal motor nucleus trigeminal nerve - -[Term] -id: UBERON:2000199 ! dorsal periventricular hypothalamus -xref: ZFA:0000199 ! dorsal periventricular hypothalamus - -[Term] -id: UBERON:0001945 ! superior colliculus -xref: ZFA:0000445 ! optic tectum - -[Term] -id: UBERON:2000221 ! internal levator -xref: ZFA:0000221 ! internal levator - -[Term] -id: UBERON:0000992 ! female gonad -xref: ZFA:0000403 ! ovary - -[Term] -id: UBERON:0006857 ! interrenal primordium -xref: ZFA:0001346 ! interrenal primordium - -[Term] -id: UBERON:0003071 ! eye primordium -xref: ZFA:0000570 ! optic primordium - -[Term] -id: UBERON:2002208 ! mesonephric podocyte -xref: ZFA:0001674 ! mesonephric podocyte - -[Term] -id: UBERON:0002100 ! trunk -xref: ZFA:0001115 ! trunk - -[Term] -id: UBERON:2001419 ! dorsal fin pterygiophore -xref: ZFA:0001419 ! dorsal fin pterygiophore - -[Term] -id: UBERON:2000181 ! caudal zone of D -xref: ZFA:0000181 ! caudal zone of dorsal telencephalon - -[Term] -id: UBERON:2007001 ! dorso-rostral cluster -xref: ZFA:0007001 ! dorso-rostral cluster - -[Term] -id: UBERON:2000985 ! ventral rhombencephalic commissure medulla oblongata -xref: ZFA:0000985 ! ventral rhombencephalic commissure medulla oblongata - -[Term] -id: UBERON:2001417 ! pelvic fin distal radial 1 -xref: ZFA:0001417 ! pelvic radial 1 - -[Term] -id: UBERON:2001564 ! hypural 5 -xref: ZFA:0001564 ! hypural 5 - -[Term] -id: UBERON:0011611 ! ceratohyal bone -xref: ZFA:0000578 ! ceratohyal bone - -[Term] -id: UBERON:2000622 ! barbel -xref: ZFA:0000622 ! barbel - -[Term] -id: UBERON:0003088 ! caudal vein -xref: ZFA:0000180 ! caudal vein - -[Term] -id: UBERON:2000804 ! myotome somite 20 -xref: ZFA:0000804 ! myotome somite 20 - -[Term] -id: UBERON:2000261 ! pharyngohyoid -xref: ZFA:0000261 ! pharyngohyoid - -[Term] -id: UBERON:2005239 ! micropylar cell -xref: ZFA:0005239 ! micropylar cell - -[Term] -id: UBERON:2005211 ! MeL -xref: ZFA:0005211 ! MeL - -[Term] -id: UBERON:2005082 ! dorsal branch nasal ciliary artery -xref: ZFA:0005082 ! dorsal branch nasal ciliary artery - -[Term] -id: UBERON:2005380 ! dorsal fin proximal radial 3 -xref: ZFA:0005380 ! dorsal fin proximal radial 3 - -[Term] -id: UBERON:0002286 ! third ventricle -xref: ZFA:0000161 ! third ventricle - -[Term] -id: UBERON:0005410 ! cartilaginous otic capsule -xref: ZFA:0001500 ! auditory capsule - -[Term] -id: UBERON:0001785 ! cranial nerve -xref: ZFA:0000641 ! cranial nerve - -[Term] -id: UBERON:2005040 ! posterior lateral mesoderm -xref: ZFA:0005040 ! posterior lateral mesoderm - -[Term] -id: UBERON:2000639 ! commissure of the secondary gustatory nuclei -xref: ZFA:0000639 ! commissure of the secondary gustatory nucleus - -[Term] -id: UBERON:2001098 ! immature hair cell anterior macula -xref: ZFA:0001098 ! immature hair cell anterior macula - -[Term] -id: UBERON:2000500 ! dorsal erector -xref: ZFA:0000500 ! dorsal erector - -[Term] -id: UBERON:0002317 ! white matter of cerebellum -xref: ZFA:0001708 ! cerebellar white matter - -[Term] -id: UBERON:2001753 ! posttemporal fossa -xref: ZFA:0005628 ! posttemporal fossa - -[Term] -id: UBERON:2001535 ! median fin cartilage -xref: ZFA:0001535 ! median fin cartilage - -[Term] -id: UBERON:2001357 ! alar plate midbrain -xref: ZFA:0001357 ! alar plate midbrain region - -[Term] -id: UBERON:2000300 ! ventral hypohyal bone -xref: ZFA:0000300 ! ventral hypohyal bone - -[Term] -id: UBERON:0001791 ! inner nuclear layer of retina -xref: ZFA:0000119 ! retinal inner nuclear layer - -[Term] -id: UBERON:0001976 ! epithelium of esophagus -xref: ZFA:0001499 ! esophageal epithelium - -[Term] -id: UBERON:0002788 ! anterior nuclear group -xref: ZFA:0000427 ! rostral thalamic nucleus - -[Term] -id: UBERON:0008907 ! dermal bone -xref: ZFA:0001590 ! dermal bone - -[Term] -id: UBERON:0006600 ! presumptive enteric nervous system -xref: ZFA:0001334 ! presumptive enteric nervous system - -[Term] -id: UBERON:2001779 ! pelvic fin lepidotrichium 4 -xref: ZFA:0005556 ! pelvic fin lepidotrichium 4 - -[Term] -id: UBERON:2002111 ! prootic bulla -xref: ZFA:0005500 ! prootic bulla - -[Term] -id: UBERON:2001166 ! supraneural 9 bone -xref: ZFA:0001166 ! supraneural 9 - -[Term] -id: UBERON:0004467 ! musculature of pharynx -xref: ZFA:0001307 ! pharyngeal musculature - -[Term] -id: UBERON:2005304 ! caudal fin blood vessel -xref: ZFA:0005304 ! caudal fin blood vessel - -[Term] -id: UBERON:2000703 ! ventral motor nucleus trigeminal nerve -xref: ZFA:0000703 ! ventral motor nucleus trigeminal nerve - -[Term] -id: UBERON:0002106 ! spleen -xref: ZFA:0000436 ! spleen - -[Term] -id: UBERON:2000859 ! specialized hemal arch and spine -xref: ZFA:0000859 ! specialized hemal arch and spine - -[Term] -id: UBERON:2000796 ! muscle pioneer somite 25 -xref: ZFA:0000796 ! muscle pioneer somite 25 - -[Term] -id: UBERON:2005240 ! Kolmer-Agduhr neuron -xref: ZFA:0005240 ! Kolmer-Agduhr neuron - -[Term] -id: UBERON:0003118 ! aortic arch 1 -xref: ZFA:0005005 ! aortic arch 1 - -[Term] -id: UBERON:0000926 ! mesoderm -xref: ZFA:0000041 ! mesoderm - -[Term] -id: UBERON:2000834 ! sclerotome somite 25 -xref: ZFA:0000834 ! sclerotome somite 25 - -[Term] -id: UBERON:2001297 ! vagal placode 1 -xref: ZFA:0001297 ! vagal placode 1 - -[Term] -id: UBERON:2001234 ! hypobranchial 4 bone -xref: ZFA:0001234 ! hypobranchial 4 bone - -[Term] -id: UBERON:0001937 ! lateral hypothalamic nucleus -xref: ZFA:0000227 ! lateral hypothalamic nucleus - -[Term] -id: UBERON:2000232 ! lateral semicircular canal primordium -xref: ZFA:0000232 ! otic vesicle lateral protrusion - -[Term] -id: UBERON:2000391 ! medial zone of D -xref: ZFA:0000391 ! medial zone of dorsal telencephalon - -[Term] -id: UBERON:2001069 ! ventral fin fold -xref: ZFA:0001069 ! ventral fin fold - -[Term] -id: UBERON:0009127 ! epibranchial ganglion -xref: ZFA:0001555 ! epibranchial ganglion - -[Term] -id: UBERON:0005288 ! tela choroidea of third ventricle -xref: ZFA:0005159 ! tela chorioidea third ventricle - -[Term] -id: UBERON:0001426 ! jugular lymphatic vessel -xref: ZFA:0005109 ! jugular lymphatic vessel - -[Term] -id: UBERON:0002042 ! endothelium of lymphatic vessel -xref: ZFA:0005258 ! lymph vessel endothelium - -[Term] -id: UBERON:2001974 ! subtemporal fossa -xref: ZFA:0005454 ! subtemporal fossa - -[Term] -id: UBERON:2005319 ! intersegmental lymph vessel -xref: ZFA:0005319 ! intersegmental lymph vessel - -[Term] -id: UBERON:0008909 ! perichordal bone -xref: ZFA:0001629 ! perichordal bone - -[Term] -id: UBERON:2001055 ! pronephric duct opening -xref: ZFA:0001055 ! pronephric duct opening - -[Term] -id: UBERON:2001679 ! mesethmoid-lateral ethmoid joint -xref: ZFA:0005648 ! mesethmoid-lateral ethmoid joint - -[Term] -id: UBERON:2000704 ! ventral pelvic arrector -xref: ZFA:0000704 ! ventral pelvic arrector - -[Term] -id: UBERON:2005376 ! dorsal fin distal radial 5 -xref: ZFA:0005376 ! dorsal fin distal radial 5 - -[Term] -id: UBERON:2001722 ! caudal principal ray 10 -xref: ZFA:0005521 ! caudal fin principal ray 10 - -[Term] -id: UBERON:2001584 ! caudal procurrent ray -xref: ZFA:0001584 ! caudal fin procurrent ray - -[Term] -id: UBERON:0003084 ! heart primordium -xref: ZFA:0000028 ! heart primordium - -[Term] -id: UBERON:0002145 ! interpeduncular nucleus -xref: ZFA:0000903 ! interpeduncular nucleus tegmentum - -[Term] -id: UBERON:0002513 ! endochondral bone -xref: ZFA:0001591 ! endochondral bone - -[Term] -id: UBERON:0001793 ! nerve fiber layer of retina -xref: ZFA:0001619 ! optic fiber layer - -[Term] -id: UBERON:2002055 ! vertebra 6 - vertebra 7 joint -xref: ZFA:0005506 ! vertebra 6 - vertebra 7 joint - -[Term] -id: UBERON:2000643 ! rostral cerebellar tract -xref: ZFA:0000643 ! rostral cerebellar tract - -[Term] -id: UBERON:2001577 ! premaxilla ascending process -xref: ZFA:0001577 ! premaxilla ascending process - -[Term] -id: UBERON:0003091 ! thyroid primordium -xref: ZFA:0001081 ! thyroid primordium - -[Term] -id: UBERON:2005117 ! anterior lateral line primordium -xref: ZFA:0005117 ! anterior lateral line primordium - -[Term] -id: UBERON:0011618 ! basihyal bone -xref: ZFA:0000316 ! basihyal bone - -[Term] -id: UBERON:2000183 ! central pretectum -xref: ZFA:0000183 ! central pretectum - -[Term] -id: UBERON:2001340 ! nucleus of the tract of the postoptic commissure -xref: ZFA:0001340 ! nucleus of the tract of the postoptic commissure - -[Term] -id: UBERON:0005498 ! primitive heart tube -xref: ZFA:0000149 ! primitive heart tube - -[Term] -id: UBERON:2005039 ! anterior lateral mesoderm -xref: ZFA:0005039 ! anterior lateral mesoderm - -[Term] -id: UBERON:2000919 ! muscle pioneer somite 23 -xref: ZFA:0000919 ! muscle pioneer somite 23 - -[Term] -id: UBERON:0005902 ! occipital region -xref: ZFA:0001414 ! occipital region - -[Term] -id: UBERON:2001220 ! copula -xref: ZFA:0001220 ! copula - -[Term] -id: UBERON:0003861 ! neural arch -xref: ZFA:0001066 ! neural arch - -[Term] -id: UBERON:2000274 ! rostral octaval nerve sensory nucleus -xref: ZFA:0000274 ! rostral octaval nucleus - -[Term] -id: UBERON:2000866 ! epaxial region somite 15 -xref: ZFA:0000866 ! epaxial region somite 15 - -[Term] -id: UBERON:0001891 ! midbrain -xref: ZFA:0000128 ! midbrain - -[Term] -id: UBERON:2000774 ! hypaxial region somite 28 -xref: ZFA:0000774 ! hypaxial region somite 28 - -[Term] -id: UBERON:2000224 ! quadrate ventral process -xref: ZFA:0001593 ! quadrate ventral process - -[Term] -id: UBERON:2001672 ! dorsal fin radial -xref: ZFA:0001647 ! dorsal fin radial - -[Term] -id: UBERON:0000487 ! simple squamous epithelium -xref: ZFA:0001498 ! simple squamous epithelium - -[Term] -id: UBERON:2000971 ! slow muscle cell somite 29 -xref: ZFA:0000971 ! slow muscle cell somite 29 - -[Term] -id: UBERON:2001589 ! propterygium -xref: ZFA:0001589 ! propterygium - -[Term] -id: UBERON:2001548 ! intercalarium ascending process -xref: ZFA:0001602 ! intercalarium ascending process - -[Term] -id: UBERON:0001637 ! artery -xref: ZFA:0000005 ! artery - -[Term] -id: UBERON:0001579 ! olfactory nerve -xref: ZFA:0000249 ! cranial nerve I - -[Term] -id: UBERON:2000298 ! vent -xref: ZFA:0000298 ! vent - -[Term] -id: UBERON:0002280 ! otolith -xref: ZFA:0001617 ! otolith - -[Term] -id: UBERON:0003053 ! ventricular zone -xref: ZFA:0001083 ! ventricular zone - -[Term] -id: UBERON:2001232 ! gill arch 3 skeleton -xref: ZFA:0001232 ! pharyngeal arch 5 skeleton - -[Term] -id: UBERON:2001278 ! posterior chamber swim bladder -xref: ZFA:0001278 ! posterior chamber swim bladder - -[Term] -id: UBERON:2000195 ! dorsal depressor -xref: ZFA:0000195 ! dorsal depressor - -[Term] -id: UBERON:2000982 ! somite 6 -xref: ZFA:0000982 ! somite 6 - -[Term] -id: UBERON:2000343 ! dorsal nucleus of V -xref: ZFA:0000343 ! dorsal nucleus of ventral telencephalon - -[Term] -id: UBERON:0006847 ! cerebellar commissure -xref: ZFA:0000490 ! commissura cerebelli - -[Term] -id: UBERON:2001593 ! caudal fin upper lobe -xref: ZFA:0001604 ! caudal fin upper lobe - -[Term] -id: UBERON:2001587 ! pectoral fin proximal radial -xref: ZFA:0001587 ! pectoral fin proximal radial - -[Term] -id: UBERON:0008894 ! gill precursor -xref: ZFA:0001107 ! internal gill bud - -[Term] -id: UBERON:2002241 ! Purkinje cell layer valvula cerebelli -xref: ZFA:0001709 ! Purkinje cell layer valvula cerebelli - -[Term] -id: UBERON:2000404 ! paracommissural nucleus -xref: ZFA:0000404 ! paracommissural nucleus - -[Term] -id: UBERON:2005190 ! MiV1 -xref: ZFA:0005190 ! MiV1 - -[Term] -id: UBERON:2001049 ! slow muscle cell somite 16 -xref: ZFA:0001049 ! slow muscle cell somite 16 - -[Term] -id: UBERON:0001897 ! thalamus -xref: ZFA:0001215 ! thalamus - -[Term] -id: UBERON:2000594 ! supracleithrum -xref: ZFA:0000594 ! supracleithrum - -[Term] -id: UBERON:2000212 ! granular eminence -xref: ZFA:0000212 ! granular eminence - -[Term] -id: UBERON:0001007 ! digestive system -xref: ZFA:0000339 ! digestive system - -[Term] -id: UBERON:2005415 ! inner ear foramen -xref: ZFA:0005415 ! inner ear foramen - -[Term] -id: UBERON:2000322 ! caudal octaval nerve sensory nucleus -xref: ZFA:0000322 ! caudal octaval nucleus - -[Term] -id: UBERON:0000004 ! olfactory apparatus -xref: ZFA:0000047 ! peripheral olfactory organ - -[Term] -id: UBERON:0004362 ! pharyngeal arch 1 -xref: ZFA:0001612 ! pharyngeal arch 1 - -[Term] -id: UBERON:0000178 ! blood -xref: ZFA:0000007 ! blood - -[Term] -id: UBERON:2000611 ! visceromotor column -xref: ZFA:0000611 ! visceromotor column - -[Term] -id: UBERON:2001366 ! tract of the postoptic commissure -xref: ZFA:0001366 ! tract of the postoptic commissure - -[Term] -id: UBERON:2002152 ! vertebral element 12 -xref: ZFA:0005352 ! vertebra 12 - -[Term] -id: UBERON:2002062 ! branched caudal fin ray -xref: ZFA:0005533 ! branched caudal fin ray - -[Term] -id: UBERON:2001426 ! posterior naris -xref: ZFA:0001426 ! posterior naris - -[Term] -id: UBERON:2000959 ! sclerotome somite 26 -xref: ZFA:0000959 ! sclerotome somite 26 - -[Term] -id: UBERON:2000688 ! obsolete olfactory support cell -xref: ZFA:0000688 ! olfactory support cell - -[Term] -id: UBERON:0002198 ! neurohypophysis -xref: ZFA:0001271 ! neurohypophysis - -[Term] -id: UBERON:2000093 ! blastomere -xref: ZFA:0000093 ! blastomere - -[Term] -id: UBERON:4000162 ! median fin -xref: ZFA:0005597 ! median fin - -[Term] -id: UBERON:2001396 ! parapophysis + rib of vertebra 4 -xref: ZFA:0001396 ! parapophysis/rib - -[Term] -id: UBERON:2000676 ! sagitta -xref: ZFA:0000676 ! sagitta - -[Term] -id: UBERON:0002768 ! vestibulospinal tract -xref: ZFA:0000709 ! vestibulo-spinal tract - -[Term] -id: UBERON:0002034 ! suprachiasmatic nucleus -xref: ZFA:0000441 ! suprachiasmatic nucleus - -[Term] -id: UBERON:2000388 ! medial caudal lobe -xref: ZFA:0000388 ! medial caudal lobe - -[Term] -id: UBERON:2005260 ! fenestrated capillary -xref: ZFA:0005260 ! fenestrated blood vessel endothelium - -[Term] -id: UBERON:0010285 ! midbrain basal plate -xref: ZFA:0000761 ! basal plate midbrain region - -[Term] -id: UBERON:0003307 ! floor plate of midbrain -xref: ZFA:0001677 ! floor plate midbrain region - -[Term] -id: UBERON:2000313 ! anal inclinator -xref: ZFA:0000313 ! anal inclinator - -[Term] -id: UBERON:2005027 ! posterior cerebral vein -xref: ZFA:0005027 ! posterior cerebral vein - -[Term] -id: UBERON:2000214 ! hypobranchial vessel -xref: ZFA:0000214 ! hypobranchial vessel - -[Term] -id: UBERON:2000557 ! preural 1 vertebra -xref: ZFA:0000557 ! preural 1 vertebra - -[Term] -id: UBERON:2001002 ! obsolete motor axons peripheral -xref: ZFA:0001002 ! peripheral motor axons - -[Term] -id: UBERON:0001715 ! oculomotor nuclear complex -xref: ZFA:0000553 ! oculomotor nucleus - -[Term] -id: UBERON:2000174 ! caudal cerebellar tract -xref: ZFA:0000174 ! cerebellovestibular tract - -[Term] -id: UBERON:0005281 ! ventricular system of central nervous system -xref: ZFA:0001261 ! ventricular system - -[Term] -id: UBERON:2001019 ! myotome somite 28 -xref: ZFA:0001019 ! myotome somite 28 - -[Term] -id: UBERON:0004237 ! blood vessel smooth muscle -xref: ZFA:0005321 ! vascular smooth muscle - -[Term] -id: UBERON:2000582 ! saccus dorsalis -xref: ZFA:0000582 ! saccus dorsalis - -[Term] -id: UBERON:0000160 ! intestine -xref: ZFA:0001338 ! intestine - -[Term] -id: UBERON:2005375 ! dorsal fin distal radial 4 -xref: ZFA:0005375 ! dorsal fin distal radial 4 - -[Term] -id: UBERON:2000719 ! slow muscle cell somite 21 -xref: ZFA:0000719 ! slow muscle cell somite 21 - -[Term] -id: UBERON:2002040 ! inter-coracoid joint -xref: ZFA:0005470 ! inter-coracoid joint - -[Term] -id: UBERON:0001093 ! cervical vertebra 2 -xref: ZFA:0001168 ! vertebra 2 - -[Term] -id: UBERON:0007681 ! facial neural crest -xref: ZFA:0000875 ! facial neural crest - -[Term] -id: UBERON:0002351 ! sinoatrial node -xref: ZFA:0005069 ! sinoatrial node - -[Term] -id: UBERON:2000770 ! hypaxial region somite 2 -xref: ZFA:0000770 ! hypaxial region somite 2 - -[Term] -id: UBERON:2001803 ! quadrate-metapterygoid joint -xref: ZFA:0005486 ! quadrate-metapterygoid joint - -[Term] -id: UBERON:2000898 ! hypaxial region somite 26 -xref: ZFA:0000898 ! hypaxial region somite 26 - -[Term] -id: UBERON:2001850 ! ceratohyal-branchiostegal ray joint -xref: ZFA:0005465 ! ceratohyal-branchiostegal ray joint - -[Term] -id: UBERON:2000006 ! ball -xref: ZFA:0000006 ! ball - -[Term] -id: UBERON:0006337 ! distal early tubule -xref: ZFA:0005293 ! distal early tubule - -[Term] -id: UBERON:0003096 ! middle lateral line -xref: ZFA:0000344 ! middle lateral line - -[Term] -id: UBERON:0011677 ! trunk vertebra -xref: ZFA:0000263 ! precaudal vertebra - -[Term] -id: UBERON:0005507 ! rhombomere 3 -xref: ZFA:0000948 ! rhombomere 3 - -[Term] -id: UBERON:0002203 ! vasculature of eye -xref: ZFA:0007057 ! ocular blood vessel - -[Term] -id: UBERON:2005206 ! RoM2m -xref: ZFA:0005206 ! RoM2m - -[Term] -id: UBERON:0003011 ! facial motor nucleus -xref: ZFA:0000206 ! facial nerve motor nucleus - -[Term] -id: UBERON:2005325 ! integument ionocyte -xref: ZFA:0005325 ! integument ionocyte - -[Term] -id: UBERON:0007097 ! chordo neural hinge -xref: ZFA:0001082 ! chordo neural hinge - -[Term] -id: UBERON:2001129 ! pharyngeal pouches 2-6 -xref: ZFA:0001129 ! pharyngeal pouches 2-6 - -[Term] -id: UBERON:2005099 ! ray vein -xref: ZFA:0005099 ! ray vein - -[Term] -id: UBERON:0001004 ! respiratory system -xref: ZFA:0000272 ! respiratory system - -[Term] -id: UBERON:2001938 ! maxillary barbel -xref: ZFA:0005408 ! maxillary barbel - -[Term] -id: UBERON:2001053 ! primitive internal carotid artery -xref: ZFA:0001053 ! primitive internal carotid artery - -[Term] -id: UBERON:2001095 ! immature macula -xref: ZFA:0001095 ! immature macula - -[Term] -id: UBERON:2000733 ! somite 7 -xref: ZFA:0000733 ! somite 7 - -[Term] -id: UBERON:0003101 ! male organism -xref: ZFA:0000242 ! male organism - -[Term] -id: UBERON:2001519 ! ceratobranchial 4 cartilage -xref: ZFA:0001519 ! ceratobranchial 4 cartilage - -[Term] -id: UBERON:2007015 ! posterior presumptive neural plate -xref: ZFA:0007015 ! posterior presumptive neural plate - -[Term] -id: UBERON:2000847 ! slow muscle cell somite 30 -xref: ZFA:0000847 ! slow muscle cell somite 30 - -[Term] -id: UBERON:0010227 ! future cardiac atrium -xref: ZFA:0001718 ! presumptive atrium heart tube - -[Term] -id: UBERON:2000979 ! hypaxial region somite 24 -xref: ZFA:0000979 ! hypaxial region somite 24 - -[Term] -id: UBERON:0002290 ! choroid plexus of fourth ventricle -xref: ZFA:0001446 ! choroid plexus fourth ventricle - -[Term] -id: UBERON:0002555 ! intermediate hypothalamic region -xref: ZFA:0006000 ! intermediate hypothalamus - -[Term] -id: UBERON:0012075 ! replacement bone -xref: ZFA:0001628 ! replacement bone - -[Term] -id: UBERON:2007023 ! posterior neural keel -xref: ZFA:0007023 ! posterior neural keel - -[Term] -id: UBERON:2001416 ! pelvic fin distal radial 3 -xref: ZFA:0001416 ! pelvic radial 3 - -[Term] -id: UBERON:2000739 ! epaxial region somite 11 -xref: ZFA:0000739 ! epaxial region somite 11 - -[Term] -id: UBERON:0006605 ! tectum synoticum -xref: ZFA:0001506 ! tectum synoticum - -[Term] -id: UBERON:2000068 ! proneural cluster -xref: ZFA:0000068 ! proneural cluster - -[Term] -id: UBERON:2000735 ! hemal postzygapophysis -xref: ZFA:0000735 ! hemal postzygapophysis - -[Term] -id: UBERON:0003306 ! floor plate of neural tube -xref: ZFA:0001434 ! floor plate neural tube - -[Term] -id: UBERON:2005265 ! hyomandibula-opercle joint -xref: ZFA:0005626 ! hyomandibula-opercle joint - -[Term] -id: UBERON:2000371 ! internal pharyngoclavicularis -xref: ZFA:0000371 ! internal pharyngoclavicularis - -[Term] -id: UBERON:0003050 ! olfactory placode -xref: ZFA:0000048 ! olfactory placode - -[Term] -id: UBERON:0003123 ! aortic arch 6 -xref: ZFA:0005016 ! aortic arch 6 - -[Term] -id: UBERON:2000527 ! pharyngobranchial bone -xref: ZFA:0000527 ! pharyngobranchial bone - -[Term] -id: UBERON:2005279 ! enteric circular muscle -xref: ZFA:0005279 ! enteric circular muscle - -[Term] -id: UBERON:0001016 ! nervous system -xref: ZFA:0000396 ! nervous system - -[Term] -id: UBERON:2001571 ! postovulatory follicle -xref: ZFA:0001571 ! postovulatory follicle - -[Term] -id: UBERON:1000010 ! mole -xref: ZFA:0005043 ! nevus - -[Term] -id: UBERON:0005590 ! rhombomere 8 roof plate -xref: ZFA:0001035 ! roof plate rhombomere 8 - -[Term] -id: UBERON:2007035 ! spinal cord neural rod -xref: ZFA:0007035 ! spinal cord neural rod - -[Term] -id: UBERON:2000225 ! lateral crista primordium -xref: ZFA:0000225 ! lateral crista primordium - -[Term] -id: UBERON:0002072 ! hypodermis -xref: ZFA:0001136 ! hypodermis - -[Term] -id: UBERON:2001190 ! Weberian vertebra -xref: ZFA:0001190 ! Weberian vertebra - -[Term] -id: UBERON:2000608 ! ventral transverse -xref: ZFA:0000608 ! ventral transverse - -[Term] -id: UBERON:0003077 ! paraxial mesoderm -xref: ZFA:0000255 ! paraxial mesoderm - -[Term] -id: UBERON:0003102 ! surface structure -xref: ZFA:0000292 ! surface structure - -[Term] -id: UBERON:0002390 ! hematopoietic system -xref: ZFA:0005023 ! hematopoietic system - -[Term] -id: UBERON:2000755 ! fast muscle cell somite 21 -xref: ZFA:0000755 ! fast muscle cell somite 21 - -[Term] -id: UBERON:2000610 ! vertical myoseptum -xref: ZFA:0000610 ! vertical myoseptum - -[Term] -id: UBERON:0000464 ! anatomical space -xref: ZFA:0001643 ! anatomical space - -[Term] -id: UBERON:2001565 ! oocyte stage II -xref: ZFA:0001565 ! oocyte stage II - -[Term] -id: UBERON:0010289 ! scleral cartilage -xref: ZFA:0001509 ! sclerotic cartilage - -[Term] -id: UBERON:2001226 ! basibranchial 4 bone -xref: ZFA:0001226 ! basibranchial 4 - -[Term] -id: UBERON:2000606 ! obsolete ventral oblique branchial muscle -xref: ZFA:0000606 ! ventral oblique branchial muscle - -[Term] -id: UBERON:2001191 ! supraneural 2 bone -xref: ZFA:0001191 ! supraneural 2 - -[Term] -id: UBERON:2000256 ! pars subcommissuralis of V -xref: ZFA:0000256 ! pars subcommissuralis of ventral telencephalon - -[Term] -id: UBERON:0011085 ! dorsal pharyngeal arch 1 -xref: ZFA:0001272 ! palatoquadrate arch - -[Term] -id: UBERON:2005365 ! dorsal fin pterygiophore 2 -xref: ZFA:0005365 ! dorsal fin pterygiophore 2 - -[Term] -id: UBERON:0003982 ! mature ovarian follicle -xref: ZFA:0001264 ! ovarian follicle stage IV - -[Term] -id: UBERON:2002223 ! pillar of the semicircular canal -xref: ZFA:0001717 ! pillar of the semicircular canal - -[Term] -id: UBERON:2005346 ! extrapancreatic duct -xref: ZFA:0005346 ! extrapancreatic duct - -[Term] -id: UBERON:2001280 ! branchiostegal ray 3 -xref: ZFA:0001280 ! branchiostegal ray 3 - -[Term] -id: UBERON:0000086 ! zona pellucida -xref: ZFA:0001111 ! zona radiata - -[Term] -id: UBERON:2001241 ! ceratobranchial 3 bone -xref: ZFA:0001241 ! ceratobranchial 3 bone - -[Term] -id: UBERON:0000484 ! simple cuboidal epithelium -xref: ZFA:0001497 ! simple cuboidal epithelium - -[Term] -id: UBERON:2001236 ! hypobranchial 2 bone -xref: ZFA:0001236 ! hypobranchial 2 bone - -[Term] -id: UBERON:0002422 ! fourth ventricle -xref: ZFA:0000110 ! fourth ventricle - -[Term] -id: UBERON:0007290 ! presumptive rhombomere 3 -xref: ZFA:0001213 ! presumptive rhombomere 3 - -[Term] -id: UBERON:0001264 ! pancreas -xref: ZFA:0000140 ! pancreas - -[Term] -id: UBERON:2007060 ! dorsolateral field -xref: ZFA:0007060 ! dorsolateral field - -[Term] -id: UBERON:2005278 ! preopercle vertical limb-hyomandibula joint -xref: ZFA:0005632 ! preopercle vertical limb-hyomandibula joint - -[Term] -id: UBERON:0006844 ! cusp of tooth -xref: ZFA:0005434 ! tooth cusp - -[Term] -id: UBERON:2001640 ! notochordal ossification -xref: ZFA:0001631 ! notochordal ossification - -[Term] -id: UBERON:0011607 ! hyomandibular cartilage -xref: ZFA:0001422 ! hyosymplectic cartilage - -[Term] -id: UBERON:0006842 ! lymphatic capillary -xref: ZFA:0005252 ! lymphatic capillary - -[Term] -id: UBERON:2000487 ! central zone of D -xref: ZFA:0000487 ! central zone of dorsal telencephalon - -[Term] -id: UBERON:0003073 ! lens placode -xref: ZFA:0000122 ! lens placode - -[Term] -id: UBERON:2001144 ! tooth 2V -xref: ZFA:0001144 ! tooth 2V - -[Term] -id: UBERON:2001828 ! primordial ligament -xref: ZFA:0005264 ! primordial ligament - -[Term] -id: UBERON:0005310 ! pronephric nephron tubule -xref: ZFA:0001558 ! pronephric tubule - -[Term] -id: UBERON:0001981 ! blood vessel -xref: ZFA:0005314 ! blood vessel - -[Term] -id: UBERON:2000307 ! vestibulolateralis lobe -xref: ZFA:0000307 ! vestibulolateralis lobe - -[Term] -id: UBERON:0000933 ! pharyngeal muscle -xref: ZFA:0000172 ! branchial muscle - -[Term] -id: UBERON:0002200 ! vasculature of head -xref: ZFA:0001267 ! cranial vasculature - -[Term] -id: UBERON:2001397 ! post-Weberian supraneural -xref: ZFA:0001397 ! post-Weberian supraneural - -[Term] -id: UBERON:0004149 ! ventriculo bulbo valve -xref: ZFA:0001375 ! ventriculo bulbo valve - -[Term] -id: UBERON:0007277 ! presumptive hindbrain -xref: ZFA:0000569 ! presumptive hindbrain - -[Term] -id: UBERON:2002154 ! opercular cavity -xref: ZFA:0001654 ! opercular cavity - -[Term] -id: UBERON:2000663 ! extrascapula -xref: ZFA:0000663 ! extrascapula - -[Term] -id: UBERON:2000362 ! hypaxialis -xref: ZFA:0000362 ! hypaxialis - -[Term] -id: UBERON:0000045 ! ganglion -xref: ZFA:0000190 ! ganglion - -[Term] -id: UBERON:2001428 ! olfactory rosette -xref: ZFA:0001428 ! olfactory rosette - -[Term] -id: UBERON:0001852 ! endolymph -xref: ZFA:0005414 ! endolymph - -[Term] -id: UBERON:0005578 ! rhombomere 4 roof plate -xref: ZFA:0001034 ! roof plate rhombomere 4 - -[Term] -id: UBERON:0003935 ! mesenchyme pelvic fin -xref: ZFA:0001449 ! mesenchyme pelvic fin - -[Term] -id: UBERON:2000846 ! slow muscle cell somite 28 -xref: ZFA:0000846 ! slow muscle cell somite 28 - -[Term] -id: UBERON:0011150 ! pharyngeal arch derived gill -xref: ZFA:0000354 ! gill - -[Term] -id: UBERON:2000831 ! sclerotome somite 17 -xref: ZFA:0000831 ! sclerotome somite 17 - -[Term] -id: UBERON:0003093 ! occipital lateral line -xref: ZFA:0000400 ! occipital lateral line - -[Term] -id: UBERON:2002244 ! supraoptic tract -xref: ZFA:0001657 ! supraoptic tract - -[Term] -id: UBERON:2005032 ! optic vein -xref: ZFA:0005032 ! optic vein - -[Term] -id: UBERON:2005255 ! frontal-parietal joint -xref: ZFA:0005608 ! frontal-parietal joint - -[Term] -id: UBERON:0006238 ! future brain -xref: ZFA:0000146 ! presumptive brain - -[Term] -id: UBERON:2000910 ! medial forebrain bundle telencephalon -xref: ZFA:0000910 ! medial forebrain bundle telencephalon - -[Term] -id: UBERON:0007300 ! pectoral appendage blood vessel -xref: ZFA:0005301 ! pectoral fin blood vessel - -[Term] -id: UBERON:0000074 ! renal glomerulus -xref: ZFA:0001288 ! renal glomerulus - -[Term] -id: UBERON:0001846 ! internal ear -xref: ZFA:0000217 ! inner ear - -[Term] -id: UBERON:0007826 ! peritoneal mesentery -xref: ZFA:0005129 ! mesentery - -[Term] -id: UBERON:0003111 ! sphenoid region -xref: ZFA:0000290 ! sphenoid region - -[Term] -id: UBERON:2000839 ! sclerotome somite 9 -xref: ZFA:0000839 ! sclerotome somite 9 - -[Term] -id: UBERON:2001523 ! hypobranchial 4 cartilage -xref: ZFA:0001523 ! hypobranchial 4 cartilage - -[Term] -id: UBERON:2001801 ! quadrate-hyomandibula joint -xref: ZFA:0005485 ! quadrate-hyomandibula joint - -[Term] -id: UBERON:0000941 ! cranial nerve II -xref: ZFA:0000435 ! cranial nerve II - -[Term] -id: UBERON:2000977 ! somite 19 -xref: ZFA:0000977 ! somite 19 - -[Term] -id: UBERON:2000926 ! myotome somite 12 -xref: ZFA:0000926 ! myotome somite 12 - -[Term] -id: UBERON:2000286 ! superficial lateralis -xref: ZFA:0000286 ! superficial lateralis - -[Term] -id: UBERON:0001787 ! photoreceptor layer of retina -xref: ZFA:0000143 ! retinal photoreceptor layer - -[Term] -id: UBERON:2005021 ! cerebellar central artery -xref: ZFA:0005021 ! cerebellar central artery - -[Term] -id: UBERON:0003849 ! mesencephalic neural crest -xref: ZFA:0000935 ! neural crest midbrain - -[Term] -id: UBERON:2005246 ! regeneration fibroblast -xref: ZFA:0005246 ! regeneration fibroblast - -[Term] -id: UBERON:2000517 ! glossopharyngeal lobe -xref: ZFA:0000517 ! glossopharyngeal lobe - -[Term] -id: UBERON:0001213 ! intestinal villus -xref: ZFA:0005125 ! intestinal villus - -[Term] -id: UBERON:0005584 ! rhombomere 6 roof plate -xref: ZFA:0000825 ! roof plate rhombomere 6 - -[Term] -id: UBERON:0000471 ! compound organ component -xref: ZFA:0001489 ! compound organ component - -[Term] -id: UBERON:0003895 ! hypaxial myotome region -xref: ZFA:0001085 ! hypaxial myotome region - -[Term] -id: UBERON:0008896 ! post-hyoid pharyngeal arch -xref: ZFA:0001613 ! pharyngeal arch 3-7 - -[Term] -id: UBERON:0009840 ! lower rhombic lip -xref: ZFA:0001441 ! lower rhombic lip - -[Term] -id: UBERON:0009661 ! midbrain nucleus -xref: ZFA:0001665 ! midbrain nucleus - -[Term] -id: UBERON:2000379 ! lateral forebrain bundle diencephalon -xref: ZFA:0000379 ! lateral forebrain bundle diencephalon - -[Term] -id: UBERON:2001969 ! inner mental barbel -xref: ZFA:0005508 ! inner mental barbel - -[Term] -id: UBERON:2005179 ! MiP motor neuron -xref: ZFA:0005179 ! MiP motor neuron - -[Term] -id: UBERON:2000830 ! sclerotome somite 14 -xref: ZFA:0000830 ! sclerotome somite 14 - -[Term] -id: UBERON:2001521 ! ceratobranchial 5 cartilage -xref: ZFA:0001521 ! ceratobranchial 5 cartilage - -[Term] -id: UBERON:2000549 ! posttemporal -xref: ZFA:0000549 ! posttemporal - -[Term] -id: UBERON:0006846 ! groove -xref: ZFA:0001690 ! groove - -[Term] -id: UBERON:2000708 ! obsolete ventrolateral optic tract -xref: ZFA:0000708 ! ventrolateral optic tract - -[Term] -id: UBERON:0006788 ! middle gray layer of superior colliculus -xref: ZFA:0001350 ! stratum griseum centrale - -[Term] -id: UBERON:2001023 ! epaxial region somite 19 -xref: ZFA:0001023 ! epaxial region somite 19 - -[Term] -id: UBERON:2000182 ! central caudal thalamic nucleus -xref: ZFA:0000182 ! central caudal thalamic nucleus - -[Term] -id: UBERON:0001672 ! anterior cerebral vein -xref: ZFA:0001067 ! anterior cerebral vein - -[Term] -id: UBERON:2000513 ! fast muscle cell somite 1 -xref: ZFA:0000513 ! fast muscle cell somite 1 - -[Term] -id: UBERON:0007283 ! presumptive shield -xref: ZFA:0001121 ! presumptive shield - -[Term] -id: UBERON:2002235 ! presumptive ventral mesoderm -xref: ZFA:0001714 ! presumptive ventral mesoderm - -[Term] -id: UBERON:0001474 ! bone -xref: ZFA:0001514 ! bone element - -[Term] -id: UBERON:2000771 ! hypaxial region somite 22 -xref: ZFA:0000771 ! hypaxial region somite 22 - -[Term] -id: UBERON:2002057 ! gill opening -xref: ZFA:0005389 ! gill opening - -[Term] -id: UBERON:2001762 ! pectoral fin lepidotrichium 2 -xref: ZFA:0005548 ! pectoral fin lepidotrichium 2 - -[Term] -id: UBERON:0002028 ! hindbrain -xref: ZFA:0000029 ! hindbrain - -[Term] -id: UBERON:2001395 ! neural arch 4 -xref: ZFA:0001395 ! neural arch 4 - -[Term] -id: UBERON:0003934 ! mesenchyme pectoral fin -xref: ZFA:0001000 ! mesenchyme pectoral fin - -[Term] -id: UBERON:2000226 ! lateral ethmoid -xref: ZFA:0000226 ! lateral ethmoid - -[Term] -id: UBERON:2000767 ! hypaxial region somite 11 -xref: ZFA:0000767 ! hypaxial region somite 11 - -[Term] -id: UBERON:0002120 ! pronephros -xref: ZFA:0000151 ! pronephros - -[Term] -id: UBERON:2001337 ! obsolete spermatogonia -xref: ZFA:0009007 ! spermatogonium - -[Term] -id: UBERON:0005565 ! facio-acoustic neural crest -xref: ZFA:0000762 ! facio-acoustic neural crest - -[Term] -id: UBERON:2005150 ! basal regeneration epithelium of regenerating fin/limb -xref: ZFA:0005150 ! basal regeneration epithelium - -[Term] -id: UBERON:0001909 ! habenular commissure -xref: ZFA:0000359 ! habenular commissure - -[Term] -id: UBERON:2001504 ! occipital arch cartilage -xref: ZFA:0001504 ! occipital arch cartilage - -[Term] -id: UBERON:2005012 ! afferent filamental artery -xref: ZFA:0005012 ! afferent filamental artery - -[Term] -id: UBERON:2002232 ! presumptive cardiac ventricle primitive heart tube -xref: ZFA:0001720 ! presumptive cardiac ventricle primitive heart tube - -[Term] -id: UBERON:2005217 ! CaV -xref: ZFA:0005217 ! CaV - -[Term] -id: UBERON:2000340 ! dorsal entopeduncular nucleus -xref: ZFA:0000340 ! dorsal entopeduncular nucleus of ventral telencephalon - -[Term] -id: UBERON:2000520 ! horizontal commissure -xref: ZFA:0000520 ! horizontal commissure - -[Term] -id: UBERON:0007135 ! neural keel -xref: ZFA:0000131 ! neural keel - -[Term] -id: UBERON:0007307 ! pronephric glomerular basement membrane -xref: ZFA:0005313 ! pronephric glomerular basement membrane - -[Term] -id: UBERON:0001905 ! pineal body -xref: ZFA:0000019 ! epiphysis - -[Term] -id: UBERON:2005189 ! MiR2 -xref: ZFA:0005189 ! MiR2 - -[Term] -id: UBERON:0004529 ! anatomical projection -xref: ZFA:0001637 ! bony projection - -[Term] -id: UBERON:2000693 ! tangential nucleus -xref: ZFA:0000693 ! tangential nucleus - -[Term] -id: UBERON:0001727 ! taste bud -xref: ZFA:0001074 ! taste bud - -[Term] -id: UBERON:0007281 ! presumptive midbrain hindbrain boundary -xref: ZFA:0001187 ! presumptive midbrain hindbrain boundary - -[Term] -id: UBERON:0007289 ! presumptive rhombomere 1 -xref: ZFA:0001207 ! presumptive rhombomere 1 - -[Term] -id: UBERON:0003517 ! kidney blood vessel -xref: ZFA:0005306 ! kidney blood vessel - -[Term] -id: UBERON:2000375 ! anal fin actinotrichium -xref: ZFA:0005398 ! anal fin actinotrichium - -[Term] -id: UBERON:2000033 ! intermediate cell mass of mesoderm -xref: ZFA:0000033 ! intermediate cell mass of mesoderm - -[Term] -id: UBERON:2001051 ! caudal division of the internal carotid artery -xref: ZFA:0001051 ! caudal division of the internal carotid artery - -[Term] -id: UBERON:2000806 ! fast muscle cell somite 20 -xref: ZFA:0000806 ! fast muscle cell somite 20 - -[Term] -id: UBERON:4000173 ! pelvic fin lepidotrichium -xref: ZFA:0001552 ! pelvic fin lepidotrichium - -[Term] -id: UBERON:2000352 ! external cellular layer -xref: ZFA:0000352 ! external cellular layer - -[Term] -id: UBERON:2001748 ! superficial ophthalmic nerve foramen -xref: ZFA:0005432 ! superficial ophthalmic nerve foramen - -[Term] -id: UBERON:2001314 ! posterior lateral line ganglion -xref: ZFA:0001314 ! posterior lateral line ganglion - -[Term] -id: UBERON:0006598 ! presumptive structure -xref: ZFA:0001116 ! presumptive structure - -[Term] -id: UBERON:0007279 ! presumptive atrioventricular canal -xref: ZFA:0001723 ! presumptive atrioventricular canal - -[Term] -id: UBERON:2000228 ! lateral line primordium -xref: ZFA:0000228 ! lateral line primordium - -[Term] -id: UBERON:2001764 ! pectoral fin lepidotrichium 4 -xref: ZFA:0005553 ! pectoral fin lepidotrichium 4 - -[Term] -id: UBERON:2000536 ! lateral zone of D -xref: ZFA:0000536 ! lateral zone of dorsal telencephalon - -[Term] -id: UBERON:2005020 ! central artery -xref: ZFA:0005020 ! central artery - -[Term] -id: UBERON:2005410 ! pars inferior ear -xref: ZFA:0005410 ! pars inferior ear - -[Term] -id: UBERON:2001721 ! caudal principal ray 9 -xref: ZFA:0005520 ! caudal fin principal ray 9 - -[Term] -id: UBERON:2001233 ! hypobranchial 1 bone -xref: ZFA:0001233 ! hypobranchial 1 bone - -[Term] -id: UBERON:2001415 ! pelvic fin distal radial 2 -xref: ZFA:0001415 ! pelvic radial 2 - -[Term] -id: UBERON:2002237 ! pronephric podocyte -xref: ZFA:0001673 ! pronephric podocyte - -[Term] -id: UBERON:2005052 ! anterior mesencephalic central artery -xref: ZFA:0005052 ! anterior mesencephalic central artery - -[Term] -id: UBERON:2000558 ! posterior macula -xref: ZFA:0000558 ! posterior macula - -[Term] -id: UBERON:2000381 ! lateral line sensory nucleus -xref: ZFA:0000381 ! lateral line sensory nucleus - -[Term] -id: UBERON:2001620 ! lagenar capsule -xref: ZFA:0001627 ! lagenar capsule - -[Term] -id: UBERON:2005118 ! middle lateral line primordium -xref: ZFA:0005118 ! middle lateral line primordium - -[Term] -id: UBERON:2001316 ! anterior lateral line placode -xref: ZFA:0001316 ! anterior lateral line placode - -[Term] -id: UBERON:0009635 ! parachordal cartilage -xref: ZFA:0001423 ! parachordal cartilage - -[Term] -id: UBERON:2005248 ! trans-choroid plexus branch -xref: ZFA:0005248 ! trans-choroid plexus branch - -[Term] -id: UBERON:0004703 ! dorsal thalamus -xref: ZFA:0000653 ! dorsal thalamus - -[Term] -id: UBERON:0005818 ! cephalic flexure -xref: ZFA:0001640 ! cephalic flexure - -[Term] -id: UBERON:2000894 ! hypaxial region somite 15 -xref: ZFA:0000894 ! hypaxial region somite 15 - -[Term] -id: UBERON:0011152 ! dorsal hyoid arch skeleton -xref: ZFA:0001401 ! dorsal hyoid arch - -[Term] -id: UBERON:0002287 ! optic recess of third ventricle -xref: ZFA:0000049 ! optic recess - -[Term] -id: UBERON:0005626 ! ventral mesogastrium -xref: ZFA:0005133 ! ventral mesentery - -[Term] -id: UBERON:2000698 ! tripus -xref: ZFA:0000698 ! tripus - -[Term] -id: UBERON:2005232 ! obsolete MCoD -xref: ZFA:0005232 ! MCoD - -[Term] -id: UBERON:0002063 ! sinus venosus -xref: ZFA:0000154 ! sinus venosus - -[Term] -id: UBERON:2000246 ! nucleus taeniae -xref: ZFA:0000246 ! nucleus taeniae - -[Term] -id: UBERON:0000935 ! anterior commissure -xref: ZFA:0001108 ! anterior commissure - -[Term] -id: UBERON:0001697 ! orbital region -xref: ZFA:0001410 ! orbital region - -[Term] -id: UBERON:0001130 ! vertebral column -xref: ZFA:0001559 ! vertebral column - -[Term] -id: UBERON:2005177 ! obsoelte VeLD -xref: ZFA:0005177 ! VeLD - -[Term] -id: UBERON:2001723 ! caudal principal ray 11 -xref: ZFA:0005522 ! caudal fin principal ray 11 - -[Term] -id: UBERON:0009848 ! zona limitans intrathalamica -xref: ZFA:0001344 ! zona limitans intrathalamica - -[Term] -id: UBERON:2001531 ! epibranchial 4 cartilage -xref: ZFA:0001531 ! epibranchial 4 cartilage - -[Term] -id: UBERON:0005491 ! glossopharyngeal neural crest -xref: ZFA:0007066 ! glossopharyngeal neural crest - -[Term] -id: UBERON:2001379 ! pharyngeal ectoderm -xref: ZFA:0001379 ! pharyngeal ectoderm - -[Term] -id: UBERON:0002434 ! pituitary stalk -xref: ZFA:0001199 ! infundibulum - -[Term] -id: UBERON:0005519 ! rhombomere 6 -xref: ZFA:0000069 ! rhombomere 6 - -[Term] -id: UBERON:0001434 ! skeletal system -xref: ZFA:0000434 ! skeletal system - -[Term] -id: UBERON:2001342 ! presumptive intervening zone -xref: ZFA:0001342 ! presumptive intervening zone - -[Term] -id: UBERON:2001757 ! dorsal fin lepidotrichium 4 -xref: ZFA:0005358 ! dorsal fin lepidotrichium 4 - -[Term] -id: UBERON:0001807 ! paravertebral ganglion -xref: ZFA:0001556 ! sympathetic chain ganglion - -[Term] -id: UBERON:2007053 ! dorsal adductor hyomandibulae -xref: ZFA:0007053 ! dorsal adductor hyomandibulae - -[Term] -id: UBERON:0003075 ! neural plate -xref: ZFA:0000132 ! neural plate - -[Term] -id: UBERON:2000820 ! presumptive neuron neural tube -xref: ZFA:0000820 ! presumptive neuron neural tube - -[Term] -id: UBERON:2007012 ! lateral forebrain bundle -xref: ZFA:0007012 ! lateral forebrain bundle - -[Term] -id: UBERON:2000576 ! pterotic -xref: ZFA:0000576 ! pterotic - -[Term] -id: UBERON:0006904 ! head mesenchyme from mesoderm -xref: ZFA:0000998 ! mesenchyme derived from head mesoderm - -[Term] -id: UBERON:0006601 ! presumptive ectoderm -xref: ZFA:0001376 ! presumptive ectoderm - -[Term] -id: UBERON:2001515 ! taenia marginalis posterior -xref: ZFA:0001515 ! taenia marginalis posterior - -[Term] -id: UBERON:0007574 ! apical epidermal cap -xref: ZFA:0005148 ! apical epidermal cap - -[Term] -id: UBERON:2000758 ! fast muscle cell somite 3 -xref: ZFA:0000758 ! fast muscle cell somite 3 - -[Term] -id: UBERON:2000239 ! mesocoracoid bone -xref: ZFA:0000239 ! mesocoracoid bone - -[Term] -id: UBERON:2002031 ! orbital foramen -xref: ZFA:0005430 ! orbital foramen - -[Term] -id: UBERON:0001082 ! epicardium of ventricle -xref: ZFA:0005058 ! ventricular epicardium - -[Term] -id: UBERON:0001049 ! neural tube -xref: ZFA:0001135 ! neural tube - -[Term] -id: UBERON:2007004 ! epiphysial cluster -xref: ZFA:0007004 ! epiphysial cluster - -[Term] -id: UBERON:0005573 ! rhombomere 3 floor plate -xref: ZFA:0000888 ! floor plate rhombomere 3 - -[Term] -id: UBERON:2000941 ! nucleus of the medial longitudinal fasciculus synencephalon -xref: ZFA:0000941 ! nucleus of the medial longitudinal fasciculus synencephalon - -[Term] -id: UBERON:0002166 ! endocardium of atrium -xref: ZFA:0001614 ! atrial endocardium - -[Term] -id: UBERON:0002192 ! ventricular system choroidal fissure -xref: ZFA:0001075 ! choroidal fissure - -[Term] -id: UBERON:2000237 ! medial forebrain bundle diencephalon -xref: ZFA:0000237 ! medial forebrain bundle diencephalon - -[Term] -id: UBERON:0002217 ! synovial joint -xref: ZFA:0005153 ! synovial joint - -[Term] -id: UBERON:2005241 ! polychromatophilic erythroblast -xref: ZFA:0005241 ! polychromatophilic erythroblast - -[Term] -id: UBERON:0003074 ! mesonephric duct -xref: ZFA:0000546 ! mesonephric duct - -[Term] -id: UBERON:2001432 ! anterior sclerotic bone -xref: ZFA:0001432 ! anterior sclerotic bone - -[Term] -id: UBERON:2000468 ! anterior crista primordium -xref: ZFA:0000468 ! anterior crista primordium - -[Term] -id: UBERON:2005076 ! primordial vasculature -xref: ZFA:0005076 ! primordial vasculature - -[Term] -id: UBERON:2007052 ! hyohyoideus -xref: ZFA:0007052 ! hyohyoideus - -[Term] -id: UBERON:2001749 ! dentary-anguloarticular joint -xref: ZFA:0005464 ! dentary-anguloarticular joint - -[Term] -id: UBERON:2000201 ! dorsal transverse -xref: ZFA:0000201 ! dorsal transverse - -[Term] -id: UBERON:2000707 ! ventral zone -xref: ZFA:0000707 ! ventral hypothalamic zone - -[Term] -id: UBERON:2001546 ! neural spine 4 -xref: ZFA:0001600 ! neural spine 4 - -[Term] -id: UBERON:0001135 ! smooth muscle tissue -xref: ZFA:0005274 ! smooth muscle - -[Term] -id: UBERON:2000939 ! middle lateral line neuromast -xref: ZFA:0000939 ! middle lateral line neuromast - -[Term] -id: UBERON:2000880 ! fast muscle cell somite 22 -xref: ZFA:0000880 ! fast muscle cell somite 22 - -[Term] -id: UBERON:0006595 ! presumptive endoderm -xref: ZFA:0000416 ! presumptive endoderm - -[Term] -id: UBERON:0001892 ! rhombomere -xref: ZFA:0001064 ! rhombomere - -[Term] -id: UBERON:0003059 ! presomitic mesoderm -xref: ZFA:0000279 ! segmental plate - -[Term] -id: UBERON:2002222 ! periventricular nucleus of ventral telencephalon -xref: ZFA:0001666 ! periventricular nucleus of ventral telencephalon - -[Term] -id: UBERON:0005580 ! rhombomere 5 lateral wall -xref: ZFA:0000908 ! lateral wall rhombomere 5 - -[Term] -id: UBERON:2000657 ! entopterygoid -xref: ZFA:0000657 ! entopterygoid - -[Term] -id: UBERON:2000603 ! valvula cerebelli -xref: ZFA:0000603 ! valvula cerebelli - -[Term] -id: UBERON:0001283 ! bile canaliculus -xref: ZFA:0005163 ! bile canaliculus - -[Term] -id: UBERON:2000850 ! slow muscle cell somite 9 -xref: ZFA:0000850 ! slow muscle cell somite 9 - -[Term] -id: UBERON:2005369 ! dorsal fin pterygiophore 6 -xref: ZFA:0005369 ! dorsal fin pterygiophore 6 - -[Term] -id: UBERON:0001854 ! saccule of membranous labyrinth -xref: ZFA:0000428 ! saccule - -[Term] -id: UBERON:0002458 ! spinal artery -xref: ZFA:0000682 ! spinal artery - -[Term] -id: UBERON:2000855 ! somite 24 -xref: ZFA:0000855 ! somite 24 - -[Term] -id: UBERON:2001304 ! vagal ganglion 3 -xref: ZFA:0001304 ! vagal ganglion 3 - -[Term] -id: UBERON:2001942 ! autopalatine-maxillary joint -xref: ZFA:0005421 ! autopalatine-maxillary joint - -[Term] -id: UBERON:4000170 ! median fin skeleton -xref: ZFA:0001123 ! axial fin skeleton - -[Term] -id: UBERON:0005570 ! rhombomere 2 floor plate -xref: ZFA:0000763 ! floor plate rhombomere 2 - -[Term] -id: UBERON:0004865 ! actinopterygian parietal bone -xref: ZFA:0000486 ! parietal bone - -[Term] -id: UBERON:2005197 ! MiD3i -xref: ZFA:0005197 ! MiD3i - -[Term] -id: UBERON:2005247 ! obsolete CiA -xref: ZFA:0005247 ! CiA - -[Term] -id: UBERON:2001950 ! inter-premaxillary joint -xref: ZFA:0005475 ! inter-premaxillary joint - -[Term] -id: UBERON:2000714 ! accessory pretectal nucleus -xref: ZFA:0000714 ! accessory pretectal nucleus - -[Term] -id: UBERON:2001086 ! muscle pioneer -xref: ZFA:0001086 ! muscle pioneer - -[Term] -id: UBERON:0007215 ! trabecula cranii -xref: ZFA:0001507 ! trabecula cranii - -[Term] -id: UBERON:2000962 ! sclerotome somite 7 -xref: ZFA:0000962 ! sclerotome somite 7 - -[Term] -id: UBERON:2000687 ! superficial pretectum -xref: ZFA:0000687 ! superficial pretectum - -[Term] -id: UBERON:0007304 ! limb/fin vasculature -xref: ZFA:0005095 ! fin vasculature - -[Term] -id: UBERON:2001939 ! inter-basipterygium joint -xref: ZFA:0005471 ! inter-basipterygium joint - -[Term] -id: UBERON:2005326 ! NaK ionocyte -xref: ZFA:0005326 ! NaK ionocyte - -[Term] -id: UBERON:0002133 ! atrioventricular valve -xref: ZFA:0005064 ! atrioventricular valve - -[Term] -id: UBERON:2001251 ! pharyngobranchial 4 cartilage -xref: ZFA:0001251 ! pharyngobranchial 4 cartilage - -[Term] -id: UBERON:2000965 ! slow muscle cell somite 15 -xref: ZFA:0000965 ! slow muscle cell somite 15 - -[Term] -id: UBERON:0001900 ! subthalamus -xref: ZFA:0000458 ! ventral thalamus - -[Term] -id: UBERON:0007288 ! presumptive forebrain midbrain boundary -xref: ZFA:0001368 ! presumptive forebrain midbrain boundary - -[Term] -id: UBERON:2000809 ! myotome somite 4 -xref: ZFA:0000809 ! myotome somite 4 - -[Term] -id: UBERON:2001186 ! collagenous dermal stroma -xref: ZFA:0001186 ! collagenous dermal stroma - -[Term] -id: UBERON:0003925 ! photoreceptor inner segment layer -xref: ZFA:0001465 ! photoreceptor inner segment layer - -[Term] -id: UBERON:2000281 ! hair cell posterior macula -xref: ZFA:0000281 ! hair cell posterior macula - -[Term] -id: UBERON:0003308 ! floor plate of telencephalon -xref: ZFA:0000914 ! floor plate telencephalic region - -[Term] -id: UBERON:2000579 ! rostral mesencephalo-cerebellar tract -xref: ZFA:0000579 ! rostral mesencephalo-cerebellar tract - -[Term] -id: UBERON:2000601 ! pretectal periventricular nucleus -xref: ZFA:0000601 ! pretectal periventricular nucleus - -[Term] -id: UBERON:2005409 ! pars superior ear -xref: ZFA:0005409 ! pars superior ear - -[Term] -id: UBERON:0005563 ! trigeminal neural crest -xref: ZFA:0000080 ! trigeminal neural crest - -[Term] -id: UBERON:2001012 ! epaxial region somite 16 -xref: ZFA:0001012 ! epaxial region somite 16 - -[Term] -id: UBERON:2000607 ! ventral rhombencephalic commissure brain stem -xref: ZFA:0000607 ! ventral rhombencephalic commissure - -[Term] -id: UBERON:2000819 ! postcommissural nucleus of V central entopeduncular nucleus -xref: ZFA:0000819 ! postcommissural nucleus of ventral telencephalon - -[Term] -id: UBERON:2007036 ! hindbrain neural rod -xref: ZFA:0007036 ! hindbrain neural rod - -[Term] -id: UBERON:2005205 ! RoM2l -xref: ZFA:0005205 ! RoM2l - -[Term] -id: UBERON:2001844 ! ceratohyal-ventral hypohyal joint -xref: ZFA:0005466 ! ceratohyal-ventral hypohyal joint - -[Term] -id: UBERON:2000442 ! supraneural bone -xref: ZFA:0000442 ! supraneural - -[Term] -id: UBERON:0000964 ! cornea -xref: ZFA:0000640 ! cornea - -[Term] -id: UBERON:2005122 ! dorsal axial hypoblast -xref: ZFA:0005122 ! dorsal axial hypoblast - -[Term] -id: UBERON:2001763 ! pectoral fin lepidotrichium 3 -xref: ZFA:0005549 ! pectoral fin lepidotrichium 3 - -[Term] -id: UBERON:2000989 ! hypaxial region somite 8 -xref: ZFA:0000989 ! hypaxial region somite 8 - -[Term] -id: UBERON:2001827 ! premaxillary-maxillary ligament -xref: ZFA:0005265 ! premaxillary-maxillary ligament - -[Term] -id: UBERON:2000508 ! pelvic fin radial -xref: ZFA:0000508 ! pelvic radial - -[Term] -id: UBERON:2002175 ! rostral octaval nerve motor nucleus -xref: ZFA:0001698 ! rostral octaval nerve motor nucleus - -[Term] -id: UBERON:0001021 ! nerve -xref: ZFA:0007009 ! nerve - -[Term] -id: UBERON:2001516 ! ceratobranchial cartilage -xref: ZFA:0001516 ! ceratobranchial cartilage - -[Term] -id: UBERON:2005196 ! MiD3cm -xref: ZFA:0005196 ! MiD3cm - -[Term] -id: UBERON:2002066 ! auditory fenestra -xref: ZFA:0005418 ! auditory fenestra - -[Term] -id: UBERON:2001774 ! anal fin lepidotrichium 6 -xref: ZFA:0005404 ! anal fin lepidotrichium 6 - -[Term] -id: UBERON:2001433 ! posterior sclerotic bone -xref: ZFA:0001433 ! posterior sclerotic bone - -[Term] -id: UBERON:2005203 ! RoM1r -xref: ZFA:0005203 ! RoM1r - -[Term] -id: UBERON:0005574 ! rhombomere 3 lateral wall -xref: ZFA:0000994 ! lateral wall rhombomere 3 - -[Term] -id: UBERON:0000948 ! heart -xref: ZFA:0000114 ! heart - -[Term] -id: UBERON:2001146 ! tooth 1MD -xref: ZFA:0001146 ! tooth 1MD - -[Term] -id: UBERON:2000193 ! diffuse nuclei -xref: ZFA:0000193 ! diffuse nucleus inferior lobe - -[Term] -id: UBERON:2001181 ! epidermal intermediate stratum -xref: ZFA:0001181 ! epidermal intermediate stratum - -[Term] -id: UBERON:0003926 ! photoreceptor outer segment layer -xref: ZFA:0001466 ! photoreceptor outer segment layer - -[Term] -id: UBERON:0007127 ! pharyngeal pouch 6 -xref: ZFA:0001132 ! pharyngeal pouch 6 - -[Term] -id: UBERON:2005078 ! middle mesencephalic central artery -xref: ZFA:0005078 ! middle mesencephalic central artery - -[Term] -id: UBERON:0002538 ! hatching gland -xref: ZFA:0000026 ! hatching gland - -[Term] -id: UBERON:0002062 ! endocardial cushion -xref: ZFA:0001317 ! endocardial cushion - -[Term] -id: UBERON:2000795 ! fast muscle cell somite 18 -xref: ZFA:0000795 ! fast muscle cell somite 18 - -[Term] -id: UBERON:0007270 ! pelvic appendage musculature -xref: ZFA:0000258 ! pelvic fin musculature - -[Term] -id: UBERON:2000052 ! dorsal actinotrichium -xref: ZFA:0000052 ! dorsal actinotrichium - -[Term] -id: UBERON:2001230 ! gill arch 4 skeleton -xref: ZFA:0001230 ! pharyngeal arch 6 skeleton - -[Term] -id: UBERON:2001014 ! myotome somite 13 -xref: ZFA:0001014 ! myotome somite 13 - -[Term] -id: UBERON:0003113 ! dermatocranium -xref: ZFA:0000863 ! dermatocranium - -[Term] -id: UBERON:2001151 ! tooth 4MD -xref: ZFA:0001151 ! tooth 4MD - -[Term] -id: UBERON:0001081 ! endocardium of ventricle -xref: ZFA:0001615 ! ventricular endocardium - -[Term] -id: UBERON:0005305 ! thyroid follicle -xref: ZFA:0001072 ! thyroid follicle - -[Term] -id: UBERON:2002145 ! anterior swim bladder bud -xref: ZFA:0005337 ! anterior swim bladder bud - -[Term] -id: UBERON:0003921 ! pancreas primordium -xref: ZFA:0000254 ! pancreas primordium - -[Term] -id: UBERON:0010205 ! mesencephalic vein -xref: ZFA:0005092 ! mesencephalic vein - -[Term] -id: UBERON:2000626 ! bulbo-spinal tract -xref: ZFA:0000626 ! bulbo-spinal tract - -[Term] -id: UBERON:2000585 ! kinethmoid cartilage -xref: ZFA:0000585 ! kinethmoid cartilage - -[Term] -id: UBERON:0003058 ! hypochord -xref: ZFA:0000031 ! hypochord - -[Term] -id: UBERON:0003064 ! intermediate mesoderm -xref: ZFA:0001206 ! intermediate mesoderm - -[Term] -id: UBERON:2001352 ! stratum periventriculare -xref: ZFA:0001352 ! stratum periventriculare - -[Term] -id: UBERON:2001680 ! mesethmoid-vomer joint -xref: ZFA:0005649 ! mesethmoid-vomer joint - -[Term] -id: UBERON:2000953 ! sclerotome somite 12 -xref: ZFA:0000953 ! sclerotome somite 12 - -[Term] -id: UBERON:0003057 ! chordal neural plate -xref: ZFA:0007017 ! posterior neural plate - -[Term] -id: UBERON:0010286 ! midbrain neural tube -xref: ZFA:0007039 ! midbrain neural tube - -[Term] -id: UBERON:2007025 ! midbrain neural keel -xref: ZFA:0007025 ! midbrain neural keel - -[Term] -id: UBERON:0002540 ! lateral line system -xref: ZFA:0000034 ! lateral line system - -[Term] -id: UBERON:2001937 ! anterior nasal barbel -xref: ZFA:0005407 ! anterior nasal barbel - -[Term] -id: UBERON:2005416 ! sacculoagenar foramen -xref: ZFA:0005416 ! sacculoagenar foramen - -[Term] -id: UBERON:2000784 ! fast muscle cell somite 15 -xref: ZFA:0000784 ! fast muscle cell somite 15 - -[Term] -id: UBERON:2000710 ! viscerosensory commissural nucleus of Cajal -xref: ZFA:0000710 ! viscerosensory commissural nucleus of Cajal - -[Term] -id: UBERON:2000376 ! infraorbital -xref: ZFA:0000376 ! infraorbital - -[Term] -id: UBERON:2002288 ! aqueous humor -xref: ZFA:0005564 ! aqueous humor - -[Term] -id: UBERON:0007390 ! pectoral appendage cartilage -xref: ZFA:0000257 ! pectoral fin cartilage - -[Term] -id: UBERON:0001763 ! odontogenic papilla -xref: ZFA:0005140 ! dental papilla - -[Term] -id: UBERON:2005341 ! medial longitudinal catecholaminergic tract -xref: ZFA:0005341 ! medial longitudinal catecholaminergic tract - -[Term] -id: UBERON:2001569 ! oocyte stage V -xref: ZFA:0001569 ! oocyte stage V - -[Term] -id: UBERON:0001535 ! vertebral artery -xref: ZFA:0005033 ! vertebral artery - -[Term] -id: UBERON:2000177 ! caudal oblique -xref: ZFA:0000177 ! caudal oblique - -[Term] -id: UBERON:2001169 ! vertebral element 3 -xref: ZFA:0001169 ! vertebra 3 - -[Term] -id: UBERON:0001603 ! lateral rectus extra-ocular muscle -xref: ZFA:0000383 ! lateral rectus - -[Term] -id: UBERON:0001997 ! olfactory epithelium -xref: ZFA:0000554 ! olfactory epithelium - -[Term] -id: UBERON:2000399 ! secondary gustatory nucleus trigeminal nuclei -xref: ZFA:0000399 ! secondary gustatory nucleus trigeminal nucleus - -[Term] -id: UBERON:2005292 ! distal late tubule -xref: ZFA:0005292 ! distal late tubule - -[Term] -id: UBERON:0003412 ! pelvic appendage bud mesenchyme -xref: ZFA:0001386 ! mesoderm pelvic fin bud - -[Term] -id: UBERON:2001359 ! pineal complex -xref: ZFA:0001359 ! pineal complex - -[Term] -id: UBERON:0003108 ! suspensorium -xref: ZFA:0000444 ! suspensorium - -[Term] -id: UBERON:2005230 ! obsolete CoBL -xref: ZFA:0005230 ! CoBL - -[Term] -id: UBERON:2001201 ! ventral lateral mesoderm -xref: ZFA:0001201 ! ventral lateral mesoderm - -[Term] -id: UBERON:2000923 ! muscle pioneer somite 7 -xref: ZFA:0000923 ! muscle pioneer somite 7 - -[Term] -id: UBERON:2000845 ! slow muscle cell somite 25 -xref: ZFA:0000845 ! slow muscle cell somite 25 - -[Term] -id: UBERON:2000777 ! hypaxial region somite 9 -xref: ZFA:0000777 ! hypaxial region somite 9 - -[Term] -id: UBERON:0002148 ! locus ceruleus -xref: ZFA:0000539 ! locus coeruleus - -[Term] -id: UBERON:0001835 ! lower lip -xref: ZFA:0005225 ! lower lip - -[Term] -id: UBERON:2001878 ! rib of vertebra 2 -xref: ZFA:0005539 ! rib of vertebra 2 - -[Term] -id: UBERON:2000916 ! muscle pioneer somite 14 -xref: ZFA:0000916 ! muscle pioneer somite 14 - -[Term] -id: UBERON:2005235 ! obsoelte UCoD -xref: ZFA:0005235 ! UCoD - -[Term] -id: UBERON:0000095 ! cardiac neural crest -xref: ZFA:0001648 ! cardiac neural crest - -[Term] -id: UBERON:0001842 ! posterior semicircular canal -xref: ZFA:0000262 ! posterior semicircular canal - -[Term] -id: UBERON:2000571 ! presumptive telencephalon -xref: ZFA:0000571 ! presumptive telencephalon - -[Term] -id: UBERON:2000662 ! external pharyngoclavicularis -xref: ZFA:0000662 ! external pharyngoclavicularis - -[Term] -id: UBERON:0001003 ! epidermis -xref: ZFA:0000105 ! epidermis - -[Term] -id: UBERON:2001109 ! oocyte -xref: ZFA:0001109 ! oocyte - -[Term] -id: UBERON:2000778 ! interneuron spinal cord -xref: ZFA:0000778 ! spinal cord interneuron - -[Term] -id: UBERON:2000912 ! mesenchyme median fin fold -xref: ZFA:0000912 ! mesenchyme median fin fold - -[Term] -id: UBERON:2001154 ! anal fin musculature -xref: ZFA:0001154 ! anal fin musculature - -[Term] -id: UBERON:0001776 ! choroid -xref: ZFA:0005229 ! optic choroid - -[Term] -id: UBERON:2002149 ! vertebral element 9 -xref: ZFA:0005351 ! vertebra 9 - -[Term] -id: UBERON:0005499 ! rhombomere 1 -xref: ZFA:0001031 ! rhombomere 1 - -[Term] -id: UBERON:2000883 ! fast muscle cell somite 28 -xref: ZFA:0000883 ! fast muscle cell somite 28 - -[Term] -id: UBERON:0009881 ! anterior lateral plate mesoderm -xref: ZFA:0005041 ! anterior lateral plate mesoderm - -[Term] -id: UBERON:2001725 ! caudal principal ray 13 -xref: ZFA:0005595 ! caudal fin principal ray 13 - -[Term] -id: UBERON:2000917 ! muscle pioneer somite 17 -xref: ZFA:0000917 ! muscle pioneer somite 17 - -[Term] -id: UBERON:2005222 ! ventral larval melanophore stripe -xref: ZFA:0005222 ! ventral larval melanophore stripe - -[Term] -id: UBERON:2005338 ! posterior recess -xref: ZFA:0005338 ! posterior recess - -[Term] -id: UBERON:0002424 ! oral epithelium -xref: ZFA:0000816 ! oral epithelium - -[Term] -id: UBERON:0003087 ! anterior cardinal vein -xref: ZFA:0000423 ! anterior cardinal vein - -[Term] -id: UBERON:2000464 ! otic lateral line -xref: ZFA:0000464 ! otic lateral line - -[Term] -id: UBERON:0001342 ! mesovarium -xref: ZFA:0000333 ! mesovarium - -[Term] -id: UBERON:0002020 ! gray matter of neuraxis -xref: ZFA:0001681 ! grey matter - -[Term] -id: UBERON:2005114 ! middle lateral line system -xref: ZFA:0005114 ! middle lateral line system - -[Term] -id: UBERON:2000265 ! presumptive dorsal mesoderm -xref: ZFA:0000265 ! presumptive dorsal mesoderm - -[Term] -id: UBERON:2000596 ! pelvic fin actinotrichium -xref: ZFA:0005546 ! pelvic fin actinotrichium - -[Term] -id: UBERON:0003117 ! pharyngeal arch 6 -xref: ZFA:0001609 ! pharyngeal arch 6 - -[Term] -id: UBERON:0000061 ! anatomical structure -xref: ZFA:0000037 ! anatomical structure - -[Term] -id: UBERON:2001200 ! corpuscles of Stannius -xref: ZFA:0001200 ! corpuscles of Stannius - -[Term] -id: UBERON:0009955 ! neurogenic placode -xref: ZFA:0001309 ! neurogenic placode - -[Term] -id: UBERON:2000627 ! posterior ceratohyal -xref: ZFA:0000627 ! epihyal - -[Term] -id: UBERON:0009612 ! forebrain midbrain boundary neural plate -xref: ZFA:0007020 ! forebrain midbrain boundary neural plate - -[Term] -id: UBERON:2000864 ! epaxial region somite 1 -xref: ZFA:0000864 ! epaxial region somite 1 - -[Term] -id: UBERON:0004879 ! marginal zone of embryo -xref: ZFA:0000038 ! margin - -[Term] -id: UBERON:0003081 ! lateral plate mesoderm -xref: ZFA:0000121 ! lateral plate mesoderm - -[Term] -id: UBERON:0003931 ! diencephalic white matter -xref: ZFA:0000338 ! diencephalic white matter - -[Term] -id: UBERON:0009616 ! presumptive midbrain -xref: ZFA:0000148 ! presumptive midbrain - -[Term] -id: UBERON:2001709 ! infraorbital series -xref: ZFA:0001649 ! infraorbital series - -[Term] -id: UBERON:0005523 ! rhombomere 7 -xref: ZFA:0000949 ! rhombomere 7 - -[Term] -id: UBERON:0005586 ! rhombomere 7 lateral wall -xref: ZFA:0000783 ! lateral wall rhombomere 7 - -[Term] -id: UBERON:0005500 ! rhombomere floor plate -xref: ZFA:0001258 ! floor plate rhombomere region - -[Term] -id: UBERON:2001794 ! orbitosphenoid-prootic joint -xref: ZFA:0005480 ! orbitosphenoid-prootic joint - -[Term] -id: UBERON:0011768 ! pineal gland stalk -xref: ZFA:0001292 ! epiphyseal stalk - -[Term] -id: UBERON:0005396 ! carotid artery segment -xref: ZFA:0000097 ! carotid artery - -[Term] -id: UBERON:2000723 ! slow muscle cell somite 5 -xref: ZFA:0000723 ! slow muscle cell somite 5 - -[Term] -id: UBERON:0001631 ! thoracic duct -xref: ZFA:0005110 ! thoracic duct - -[Term] -id: UBERON:0001979 ! venule -xref: ZFA:0005315 ! venule - -[Term] -id: UBERON:0006322 ! inferior rectus extraocular muscle -xref: ZFA:0000457 ! ventral rectus - -[Term] -id: UBERON:2000098 ! proliferative region -xref: ZFA:0000098 ! proliferative region - -[Term] -id: UBERON:2002038 ! basioccipital-exoccipital joint -xref: ZFA:0005423 ! basioccipital-exoccipital joint - -[Term] -id: UBERON:2000720 ! slow muscle cell somite 24 -xref: ZFA:0000720 ! slow muscle cell somite 24 - -[Term] -id: UBERON:0009662 ! hindbrain nucleus -xref: ZFA:0001658 ! hindbrain nucleus - -[Term] -id: UBERON:0007389 ! limb/fin fin cartilage -xref: ZFA:0001543 ! paired fin cartilage - -[Term] -id: UBERON:2005135 ! primary dental epithelium -xref: ZFA:0005135 ! primary dental epithelium - -[Term] -id: UBERON:2001364 ! hemal spine -xref: ZFA:0001364 ! hemal spine - -[Term] -id: UBERON:0003309 ! floor plate of diencephalon -xref: ZFA:0000871 ! floor plate diencephalic region - -[Term] -id: UBERON:2001525 ! hypobranchial 2 cartilage -xref: ZFA:0001525 ! hypobranchial 2 cartilage - -[Term] -id: UBERON:2000474 ! intercalar -xref: ZFA:0000474 ! intercalar - -[Term] -id: UBERON:0011004 ! pharyngeal arch cartilage -xref: ZFA:0001460 ! pharyngeal arch cartilage - -[Term] -id: UBERON:2000039 ! median axial vein -xref: ZFA:0000039 ! median axial vein - -[Term] -id: UBERON:0003063 ! prechordal plate -xref: ZFA:0000060 ! prechordal plate - -[Term] -id: UBERON:2000842 ! slow muscle cell somite 17 -xref: ZFA:0000842 ! slow muscle cell somite 17 - -[Term] -id: UBERON:0010931 ! intermandibularis -xref: ZFA:0000369 ! intermandibularis - -[Term] -id: UBERON:2001147 ! tooth 2MD -xref: ZFA:0001147 ! tooth 2MD - -[Term] -id: UBERON:2001922 ! inter-frontal joint -xref: ZFA:0005472 ! inter-frontal joint - -[Term] -id: UBERON:0007652 ! esophageal sphincter -xref: ZFA:0000415 ! esophageal sphincter - -[Term] -id: UBERON:2001313 ! ventral anterior lateral line ganglion -xref: ZFA:0001313 ! ventral anterior lateral line ganglion - -[Term] -id: UBERON:2000760 ! fast muscle cell somite 8 -xref: ZFA:0000760 ! fast muscle cell somite 8 - -[Term] -id: UBERON:2000750 ! fast muscle cell somite 10 -xref: ZFA:0000750 ! fast muscle cell somite 10 - -[Term] -id: UBERON:2001361 ! basiventral -xref: ZFA:0001361 ! basiventral - -[Term] -id: UBERON:2001755 ! dorsal fin lepidotrichium 2 -xref: ZFA:0005356 ! dorsal fin lepidotrichium 2 - -[Term] -id: UBERON:2005377 ! dorsal fin distal radial 6 -xref: ZFA:0005377 ! dorsal fin distal radial 6 - -[Term] -id: UBERON:0009125 ! petrosal placode -xref: ZFA:0001296 ! glossopharyngeal placode - -[Term] -id: UBERON:2000479 ! caudal mesencephalo-cerebellar tract -xref: ZFA:0000479 ! caudal mesencephalo-cerebellar tract - -[Term] -id: UBERON:2000843 ! slow muscle cell somite 2 -xref: ZFA:0000843 ! slow muscle cell somite 2 - -[Term] -id: UBERON:2000986 ! hypaxial region somite 27 -xref: ZFA:0000986 ! hypaxial region somite 27 - -[Term] -id: UBERON:0005585 ! rhombomere 7 floor plate -xref: ZFA:0000904 ! floor plate rhombomere 7 - -[Term] -id: UBERON:0000949 ! endocrine system -xref: ZFA:0001158 ! endocrine system - -[Term] -id: UBERON:2001463 ! melanophore stripe -xref: ZFA:0001463 ! melanophore stripe - -[Term] -id: UBERON:2002225 ! posterior pronephric duct -xref: ZFA:0001623 ! posterior pronephric duct - -[Term] -id: UBERON:0002316 ! white matter -xref: ZFA:0001682 ! white matter -xref: ZFA:0001682 ! white matter -xref: ZFA:0001682 ! white matter - -[Term] -id: UBERON:2000289 ! preopercle horizontal limb -xref: ZFA:0001594 ! preopercle horizontal limb - -[Term] -id: UBERON:2001203 ! ciliary body -xref: ZFA:0001203 ! ciliary zone - -[Term] -id: UBERON:2000581 ! rostral tuberal nucleus -xref: ZFA:0000581 ! rostral tuberal nucleus - -[Term] -id: UBERON:2000925 ! hypaxial region somite 10 -xref: ZFA:0000925 ! hypaxial region somite 10 - -[Term] -id: UBERON:0009582 ! spinal cord lateral wall -xref: ZFA:0000996 ! lateral wall spinal cord - -[Term] -id: UBERON:2002202 ! intermediate nucleus -xref: ZFA:0001669 ! intermediate nucleus - -[Term] -id: UBERON:0000463 ! portion of organism substance -xref: ZFA:0001487 ! portion of organism substance - -[Term] -id: UBERON:2000928 ! myotome somite 19 -xref: ZFA:0000928 ! myotome somite 19 - -[Term] -id: UBERON:2001568 ! oocyte stage IV -xref: ZFA:0001568 ! oocyte stage IV - -[Term] -id: UBERON:0006800 ! anatomical line -xref: ZFA:0001689 ! anatomical line - -[Term] -id: UBERON:2005219 ! choroid plexus vascular circuit -xref: ZFA:0005219 ! choroid plexus vascular circuit - -[Term] -id: UBERON:2005384 ! dorsal fin proximal radial 7 -xref: ZFA:0005384 ! dorsal fin proximal radial 7 - -[Term] -id: UBERON:2001617 ! trunk sensory canal -xref: ZFA:0005444 ! trunk sensory canal - -[Term] -id: UBERON:0002518 ! otolith organ -xref: ZFA:0000559 ! otolith organ - -[Term] -id: UBERON:2000493 ! decussation of medial funicular nucleus -xref: ZFA:0000493 ! decussation of medial funicular nucleus - -[Term] -id: UBERON:2001566 ! oocyte stage III -xref: ZFA:0001566 ! oocyte stage III - -[Term] -id: UBERON:2001021 ! myotome somite 6 -xref: ZFA:0001021 ! myotome somite 6 - -[Term] -id: UBERON:2000223 ! infraorbital 1 -xref: ZFA:0000223 ! infraorbital 1 - -[Term] -id: UBERON:2000748 ! epaxial region somite 6 -xref: ZFA:0000748 ! epaxial region somite 6 - -[Term] -id: UBERON:2000498 ! dilator operculi -xref: ZFA:0000498 ! dilator operculi - -[Term] -id: UBERON:2000915 ! muscle pioneer somite 11 -xref: ZFA:0000915 ! muscle pioneer somite 11 - -[Term] -id: UBERON:2007050 ! constrictor dorsalis -xref: ZFA:0007050 ! constrictor dorsalis - -[Term] -id: UBERON:2001063 ! posterior caudal vein -xref: ZFA:0001063 ! posterior caudal vein - -[Term] -id: UBERON:2000991 ! epaxial region somite 10 -xref: ZFA:0000991 ! epaxial region somite 10 - -[Term] -id: UBERON:0000993 ! oviduct -xref: ZFA:0000560 ! oviduct - -[Term] -id: UBERON:0001860 ! endolymphatic duct -xref: ZFA:0001705 ! endolymphatic duct - -[Term] -id: UBERON:0001232 ! collecting duct of renal tubule -xref: ZFA:0005294 ! collecting duct - -[Term] -id: UBERON:0007134 ! trunk ganglion -xref: ZFA:0001573 ! trunk ganglion - -[Term] -id: UBERON:2005018 ! efferent filamental artery -xref: ZFA:0005018 ! efferent filamental artery - -[Term] -id: UBERON:2001030 ! epaxial region somite 21 -xref: ZFA:0001030 ! epaxial region somite 21 - -[Term] -id: UBERON:0011944 ! subintestinal vein -xref: ZFA:0005035 ! subintestinal vein - -[Term] -id: UBERON:0000151 ! pectoral fin -xref: ZFA:0001161 ! pectoral fin - -[Term] -id: UBERON:0004363 ! aortic arch -xref: ZFA:0005004 ! aortic arch - -[Term] -id: UBERON:2001042 ! sclerotome somite 24 -xref: ZFA:0001042 ! sclerotome somite 24 - -[Term] -id: UBERON:0002307 ! choroid plexus of lateral ventricle -xref: ZFA:0001447 ! choroid plexus telencephalic ventricle - -[Term] -id: UBERON:2000424 ! opercular lateral line -xref: ZFA:0000424 ! opercular lateral line - -[Term] -id: UBERON:0002722 ! trochlear nucleus -xref: ZFA:0000450 ! trochlear motor nucleus - -[Term] -id: UBERON:2001751 ! rib of vertebra 5 -xref: ZFA:0005542 ! rib of vertebra 5 - -[Term] -id: UBERON:2001391 ! anterior lateral line ganglia -xref: ZFA:0001391 ! anterior lateral line ganglion - -[Term] -id: UBERON:2000209 ! lateral preglomerular nucleus -xref: ZFA:0000209 ! lateral preglomerular nucleus - -[Term] -id: UBERON:0004684 ! raphe nuclei -xref: ZFA:0001429 ! raphe nucleus - -[Term] -id: UBERON:2001671 ! anal fin radial -xref: ZFA:0001646 ! anal fin radial - -[Term] -id: UBERON:2001420 ! anal fin pterygiophore -xref: ZFA:0001420 ! anal fin pterygiophore - -[Term] -id: UBERON:2000503 ! dorsal oblique branchial muscle -xref: ZFA:0000503 ! dorsal oblique branchial muscle - -[Term] -id: UBERON:2000922 ! muscle pioneer somite 4 -xref: ZFA:0000922 ! muscle pioneer somite 4 - -[Term] -id: UBERON:2001231 ! gill arch 2 skeleton -xref: ZFA:0001231 ! pharyngeal arch 4 skeleton - diff --git a/src/ontology/bridge/hdr-cl-ext-bridge-to-zfa.obo b/src/ontology/bridge/hdr-cl-ext-bridge-to-zfa.obo deleted file mode 100644 index 2316743ac5..0000000000 --- a/src/ontology/bridge/hdr-cl-ext-bridge-to-zfa.obo +++ /dev/null @@ -1,11 +0,0 @@ -property_value: dc-title "Uberon bridge to zfa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between ZFA and Uberon-ext. This is a temporary ontology - ext will soon be merged into Uberon core" xsd:string -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/tracker/152" xsd:anyURI -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "TAO editors" xsd:string -property_value: dc-contributor "Wasila Dahdul" xsd:string -property_value: dc-contributor "Ceri Van Slyke" xsd:string -property_value: dc-contributor "Yvonne Bradford" xsd:string -property_value: dc-contributor "Melissa Haendel" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/zfa.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-ext-bridge-to-zfa.obo b/src/ontology/bridge/hdr-uberon-ext-bridge-to-zfa.obo deleted file mode 100644 index 2316743ac5..0000000000 --- a/src/ontology/bridge/hdr-uberon-ext-bridge-to-zfa.obo +++ /dev/null @@ -1,11 +0,0 @@ -property_value: dc-title "Uberon bridge to zfa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between ZFA and Uberon-ext. This is a temporary ontology - ext will soon be merged into Uberon core" xsd:string -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/tracker/152" xsd:anyURI -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "TAO editors" xsd:string -property_value: dc-contributor "Wasila Dahdul" xsd:string -property_value: dc-contributor "Ceri Van Slyke" xsd:string -property_value: dc-contributor "Yvonne Bradford" xsd:string -property_value: dc-contributor "Melissa Haendel" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/zfa.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/uberon-ext-bridge-to-zfa.obo b/src/ontology/bridge/uberon-ext-bridge-to-zfa.obo deleted file mode 100644 index e90bc35191..0000000000 --- a/src/ontology/bridge/uberon-ext-bridge-to-zfa.obo +++ /dev/null @@ -1,11224 +0,0 @@ -ontology: uberon/bridge/uberon-ext-bridge-to-zfa -data-version: 2021-03-06 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to zfa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between ZFA and Uberon-ext. This is a temporary ontology - ext will soon be merged into Uberon core" xsd:string -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/tracker/152" xsd:anyURI -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "TAO editors" xsd:string -property_value: dc-contributor "Wasila Dahdul" xsd:string -property_value: dc-contributor "Ceri Van Slyke" xsd:string -property_value: dc-contributor "Yvonne Bradford" xsd:string -property_value: dc-contributor "Melissa Haendel" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/zfa.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: ZFA:0005295 ! axial blood vessel -intersection_of: UBERON:2005295 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005333 ! tongue -intersection_of: UBERON:0001723 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000164 ! ventral mesenchyme -intersection_of: UBERON:2000164 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005557 ! pelvic fin lepidotrichium 3 -intersection_of: UBERON:2001778 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001131 ! pharyngeal pouch 3 -intersection_of: UBERON:0007124 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001028 ! hypurapophysis -intersection_of: UBERON:2001028 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001192 ! supraneural 3 -intersection_of: UBERON:2001192 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000532 ! lateral valvula cerebelli -intersection_of: UBERON:2000532 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001139 ! mediodorsal tooth row -intersection_of: UBERON:2001139 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007010 ! eminentia thalami -intersection_of: UBERON:2007010 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007044 ! midbrain hindbrain boundary neural plate -intersection_of: UBERON:0009615 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000597 ! telencephalic white matter -intersection_of: UBERON:2000597 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000271 ! radial -intersection_of: UBERON:2000271 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000062 ! presumptive forebrain -intersection_of: UBERON:0006240 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001495 ! unilaminar epithelium -intersection_of: UBERON:0000490 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000211 ! gill lamella -intersection_of: UBERON:2000211 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005607 ! inter-parietal joint -intersection_of: UBERON:2005245 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005111 ! medial forebrain bundle -intersection_of: UBERON:0001910 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000528 ! interradialis -intersection_of: UBERON:2000528 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005173 ! right liver lobe -intersection_of: UBERON:0001114 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001298 ! vagal placode 2 -intersection_of: UBERON:2001298 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000976 ! somite 16 -intersection_of: UBERON:2000976 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005284 ! glomerular capillary -intersection_of: UBERON:0004212 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007024 ! anterior neural keel -intersection_of: UBERON:2007024 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000510 ! external levatores -intersection_of: UBERON:2000510 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000978 ! somite 22 -intersection_of: UBERON:2000978 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005494 ! skeletal element -intersection_of: UBERON:0004765 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005477 ! lateral ethmoid-frontal joint -intersection_of: UBERON:2002032 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000591 ! presumptive paraxial mesoderm -intersection_of: UBERON:0007285 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001218 ! presumptive floor plate -intersection_of: UBERON:0007286 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001409 ! infraorbital 4 -intersection_of: UBERON:2001409 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005086 ! pectoral artery -intersection_of: UBERON:0001533 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001270 ! blastema -intersection_of: UBERON:0005306 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005499 ! circulus -intersection_of: UBERON:2002051 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000309 ! E-YSL -intersection_of: UBERON:2000309 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000872 ! epaxial region somite 29 -intersection_of: UBERON:2000872 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000987 ! hypaxial region somite 3 -intersection_of: UBERON:2000987 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000433 ! sensory trigeminal nucleus -intersection_of: UBERON:0004132 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001706 ! Purkinje cell layer corpus cerebelli -intersection_of: UBERON:2002240 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005551 ! pectoral fin lepidotrichium 7 -intersection_of: UBERON:2001767 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001171 ! os suspensorium -intersection_of: UBERON:2001171 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005342 ! anterior catecholaminergic tract -intersection_of: UBERON:2002144 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001010 ! muscle pioneer somite 5 -intersection_of: UBERON:2001010 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001670 ! notochord posterior region -intersection_of: UBERON:2001821 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001221 ! copula 1 -intersection_of: UBERON:2001221 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001140 ! dorsal tooth row -intersection_of: UBERON:2001140 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000022 ! floor plate -intersection_of: UBERON:0003079 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000447 ! tela chorioidea -intersection_of: UBERON:0005283 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000473 ! trunk musculature -intersection_of: UBERON:0001774 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005184 ! MiD2cl -intersection_of: UBERON:2005184 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000817 ! fast muscle cell somite 23 -intersection_of: UBERON:2000817 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000633 ! caudal tuberculum -intersection_of: UBERON:2000633 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001355 ! primitive meninx -intersection_of: UBERON:0002360 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005359 ! dorsal fin lepidotrichium 5 -intersection_of: UBERON:2001758 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001635 ! intramembranous bone -intersection_of: UBERON:0002514 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005047 ! hyaloid vein -intersection_of: UBERON:0006011 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000327 ! central zone -intersection_of: UBERON:0006792 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001162 ! anal fin -intersection_of: UBERON:4000163 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001159 ! immune system -intersection_of: UBERON:0002405 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001142 ! tooth 5V -intersection_of: UBERON:2001142 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001603 ! intercalarium articulating process -intersection_of: UBERON:0006062 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001183 ! dermal superficial region -intersection_of: UBERON:2001183 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000477 ! posterior cardinal vein -intersection_of: UBERON:0002065 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001597 ! exoccipital posteroventral region -intersection_of: UBERON:2000348 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001385 ! apical ectodermal ridge pelvic fin bud -intersection_of: UBERON:0005422 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007000 ! macula saccule -intersection_of: UBERON:0002212 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000267 ! primary olfactory fiber layer -intersection_of: UBERON:2000267 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000366 ! inferior raphe nucleus -intersection_of: UBERON:0002043 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005224 ! yolk larval melanophore stripe -intersection_of: UBERON:2005224 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000535 ! lateral reticular nucleus -intersection_of: UBERON:0002154 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005483 ! pterosphenoid-orbitosphenoid joint -intersection_of: UBERON:2001831 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007031 ! anterior neural rod -intersection_of: UBERON:2007031 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005050 ! palatocerebral artery -intersection_of: UBERON:2005050 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000526 ! intermuscular bone -intersection_of: UBERON:2000526 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000419 ! pterosphenoid -intersection_of: UBERON:2000419 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005420 ! autopalatine-lateral ethmoid joint -intersection_of: UBERON:2001608 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001150 ! tooth 2D -intersection_of: UBERON:2001150 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005212 ! MeM -intersection_of: UBERON:2005212 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000952 ! sclerotome somite 1 -intersection_of: UBERON:2000952 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000665 ! rostral root of abducens nerve -intersection_of: UBERON:0009909 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000630 ! caudal parvocellular preoptic nucleus -intersection_of: UBERON:2000630 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000521 ! hyoid muscle -intersection_of: UBERON:0005493 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001303 ! vagal ganglion 2 -intersection_of: UBERON:2001303 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000580 ! rostral preglomerular nucleus -intersection_of: UBERON:2000580 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005303 ! caudal fin lymph vessel -intersection_of: UBERON:2005303 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001013 ! myotome somite 10 -intersection_of: UBERON:2001013 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000927 ! myotome somite 16 -intersection_of: UBERON:2000927 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005259 ! continuous blood vessel endothelium -intersection_of: UBERON:2005259 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001542 ! pelvic radial 1 cartilage -intersection_of: UBERON:2001542 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001196 ! pars tuberalis -intersection_of: UBERON:0002433 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000541 ! marginal blastomere -intersection_of: UBERON:2000541 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005400 ! anal fin lepidotrichium 2 -intersection_of: UBERON:2001770 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001625 ! optic nerve head -intersection_of: UBERON:2002213 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000980 ! somite 25 -intersection_of: UBERON:2000980 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000107 ! eye -intersection_of: UBERON:0000019 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000975 ! somite 13 -intersection_of: UBERON:2000975 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001143 ! tooth 4V -intersection_of: UBERON:2001143 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000448 ! tertiary gustatory nucleus -intersection_of: UBERON:2000448 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000013 ! cranial ganglion -intersection_of: UBERON:0001714 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001009 ! muscle pioneer somite 3 -intersection_of: UBERON:2001009 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000897 ! hypaxial region somite 23 -intersection_of: UBERON:2000897 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001630 ! perichondral bone -intersection_of: UBERON:0008913 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005537 ! lateral fontanel of frontal -intersection_of: UBERON:2002011 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001167 ! vertebra 1 -intersection_of: UBERON:0001092 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005488 ! mandibular symphysis -intersection_of: UBERON:0006606 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000841 ! slow muscle cell somite 14 -intersection_of: UBERON:2000841 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000304 ! ventral telencephalon -intersection_of: UBERON:0000204 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001165 ! supraneural 5 -intersection_of: UBERON:2001165 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000054 ! pericardium -intersection_of: UBERON:0002406 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000160 ! tegmentum -intersection_of: UBERON:0001943 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005545 ! pectoral fin actinotrichium -intersection_of: UBERON:2000544 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001445 ! choroid plexus tectal ventricle -intersection_of: UBERON:0007299 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001003 ! muscle pioneer somite 12 -intersection_of: UBERON:2001003 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001453 ! pectoral fin field -intersection_of: UBERON:0005729 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000318 ! brainstem and spinal white matter -intersection_of: UBERON:2000318 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001038 ! sclerotome somite 16 -intersection_of: UBERON:2001038 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000605 ! ventral funiculus -intersection_of: UBERON:0002180 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005282 ! nephron -intersection_of: UBERON:0001285 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000456 ! ventral nucleus of ventral telencephalon -intersection_of: UBERON:2000456 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000453 ! cranial nerve X -intersection_of: UBERON:0001759 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005309 ! pronephric glomerular capillary -intersection_of: UBERON:0007306 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000790 ! muscle pioneer somite 10 -intersection_of: UBERON:2000790 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005105 ! lymph vasculature -intersection_of: UBERON:0001473 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001512 ! anatomical group -intersection_of: UBERON:0000480 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005555 ! pelvic fin lepidotrichium 2 -intersection_of: UBERON:2001777 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000096 ! cardinal system -intersection_of: UBERON:2000096 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001667 ! peripheral nucleus of ventral telencephalon -intersection_of: UBERON:2002179 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005543 ! rib of vertebra 6 -intersection_of: UBERON:2001750 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001430 ! pneumatic duct -intersection_of: UBERON:2001430 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001110 ! ovarian follicle -intersection_of: UBERON:0001305 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007027 ! forebrain midbrain boundary neural keel -intersection_of: UBERON:2007027 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000599 ! torus semicircularis -intersection_of: UBERON:2000599 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000870 ! epaxial region somite 26 -intersection_of: UBERON:2000870 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000192 ! descending trigeminal root -intersection_of: UBERON:0004673 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000775 ! hypaxial region somite 30 -intersection_of: UBERON:2000775 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005208 ! RoM3m -intersection_of: UBERON:2005208 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000392 ! median tuberal portion -intersection_of: UBERON:2000392 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005596 ! paired fin -intersection_of: UBERON:0002534 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000958 ! sclerotome somite 23 -intersection_of: UBERON:2000958 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000413 ! gonad -intersection_of: UBERON:0000991 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005233 ! CiD -intersection_of: UBERON:2005233 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005271 ! flexor muscle -intersection_of: UBERON:0000366 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001534 ! pharyngobranchial 3 cartilage -intersection_of: UBERON:2001534 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000620 ! autopalatine -intersection_of: UBERON:2000620 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005275 ! arrector muscle -intersection_of: UBERON:2002147 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000324 ! caudal periventricular hypothalamus -intersection_of: UBERON:2000324 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000163 ! renal system -intersection_of: UBERON:0001008 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001037 ! sclerotome somite 13 -intersection_of: UBERON:2001037 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000967 ! slow muscle cell somite 20 -intersection_of: UBERON:2000967 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001243 ! epibranchial 1 bone -intersection_of: UBERON:2001243 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005172 ! left liver lobe -intersection_of: UBERON:0001115 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001128 ! pharyngeal pouch 1 -intersection_of: UBERON:0007122 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001065 ! lateral mesoderm -intersection_of: UBERON:2001065 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000729 ! epaxial region somite 3 -intersection_of: UBERON:2000729 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000044 ! myotome somite 14 -intersection_of: UBERON:2000044 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005002 ! basilar artery -intersection_of: UBERON:0001633 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000913 ! molecular layer valvula cerebelli -intersection_of: UBERON:2000913 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001695 ! dorsolateral motor nucleus of vagal nerve -intersection_of: UBERON:2002192 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001141 ! tooth 1V -intersection_of: UBERON:2001141 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001578 ! anterior dorsomedial process of autopalatine -intersection_of: UBERON:2001578 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000800 ! muscle pioneer somite 9 -intersection_of: UBERON:2000800 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005558 ! orbit -intersection_of: UBERON:2001967 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001685 ! corneal stroma -intersection_of: UBERON:0001777 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001403 ! supraethmoid -intersection_of: UBERON:2001403 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001632 ! portion of connective tissue -intersection_of: UBERON:0002384 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001528 ! epibranchial 1 cartilage -intersection_of: UBERON:2001528 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007043 ! hindbrain neural tube -intersection_of: UBERON:2007043 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005101 ! interray vessel -intersection_of: UBERON:2005101 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005166 ! cystic duct -intersection_of: UBERON:0001152 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001339 ! nucleus of the tract of the anterior commissure -intersection_of: UBERON:2001339 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001269 ! regenerating fin -intersection_of: UBERON:2001269 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000408 ! periventricular nucleus of caudal tuberculum -intersection_of: UBERON:2000408 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000974 ! somite 10 -intersection_of: UBERON:2000974 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000741 ! epaxial region somite 14 -intersection_of: UBERON:2000741 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007041 ! forebrain neural tube -intersection_of: UBERON:2007041 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000208 ! gall bladder -intersection_of: UBERON:0002110 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005399 ! anal fin lepidotrichium 1 -intersection_of: UBERON:2001769 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001302 ! vagal ganglion 1 -intersection_of: UBERON:2001302 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007033 ! forebrain midbrain boundary neural rod -intersection_of: UBERON:2007033 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005419 ! auditory foramen -intersection_of: UBERON:2001742 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005160 ! tela chorioidea telencephalic ventricle -intersection_of: UBERON:0005289 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001439 ! anatomical system -intersection_of: UBERON:0000467 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005324 ! gill ionocyte -intersection_of: UBERON:2005324 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000642 ! decussation of the medial octavolateralis nucleus -intersection_of: UBERON:2000642 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005267 ! erector muscle -intersection_of: UBERON:2005267 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000506 ! dorsal zone of dorsal telencephalon -intersection_of: UBERON:2000506 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000356 ! gill raker -intersection_of: UBERON:2000356 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000342 ! dorsal inclinator -intersection_of: UBERON:2000342 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001300 ! vagal placode 4 -intersection_of: UBERON:2001300 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000529 ! kidney -intersection_of: UBERON:0002113 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000280 ! medial valvula cerebelli -intersection_of: UBERON:2000280 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000386 ! macula -intersection_of: UBERON:0000054 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005381 ! dorsal fin proximal radial 4 -intersection_of: UBERON:2005381 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005155 ! cartilaginous joint -intersection_of: UBERON:0002213 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001574 ! autonomic nervous system -intersection_of: UBERON:0002410 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000295 ! trigeminal ganglion -intersection_of: UBERON:0001675 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000079 ! telencephalon -intersection_of: UBERON:0001893 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001172 ! roofing cartilage -intersection_of: UBERON:2001172 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005422 ! autopalatine-vomer joint -intersection_of: UBERON:2001784 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000233 ! lower oral valve -intersection_of: UBERON:2000233 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001332 ! spinal neuromere -intersection_of: UBERON:0005844 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000299 ! ventral entopeduncular nucleus of ventral telencephalon -intersection_of: UBERON:2000299 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000188 ! corpus cerebelli -intersection_of: UBERON:2000188 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000638 ! commissura rostral, pars dorsalis -intersection_of: UBERON:2000638 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005130 ! dorsal mesentery -intersection_of: UBERON:0002296 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001540 ! pelvic radial 3 cartilage -intersection_of: UBERON:2001540 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001184 ! pelvic fin -intersection_of: UBERON:0000152 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005289 ! renal duct -intersection_of: UBERON:0006553 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000766 ! granular layer valvula cerebelli -intersection_of: UBERON:2000766 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005201 ! RoL3 -intersection_of: UBERON:2005201 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001073 ! axial vasculature -intersection_of: UBERON:2001073 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001059 ! cranial division of the internal carotid artery -intersection_of: UBERON:2001059 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005015 ! afferent lamellar arteriole -intersection_of: UBERON:2005015 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005000 ! basal communicating artery -intersection_of: UBERON:2005000 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000141 ! pectoral fin bud -intersection_of: UBERON:0005419 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001427 ! anterior naris -intersection_of: UBERON:2001427 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000421 ! reticular formation -intersection_of: UBERON:0002559 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001477 ! portion of tissue -intersection_of: UBERON:0000479 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001138 ! vestibuloauditory system -intersection_of: UBERON:0002105 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005138 ! dental organ -intersection_of: UBERON:0005176 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000394 ! molecular layer corpus cerebelli -intersection_of: UBERON:2000394 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000718 ! epaxial region somite 27 -intersection_of: UBERON:2000718 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005062 ! compact layer of ventricle -intersection_of: UBERON:0004127 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001517 ! ceratobranchial 2 cartilage -intersection_of: UBERON:2001517 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005482 ! prootic-pterosphenoid joint -intersection_of: UBERON:2002033 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001369 ! anterior pancreatic bud -intersection_of: UBERON:0003924 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000461 ! Weberian ossicle -intersection_of: UBERON:2000461 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000158 ! urostyle -intersection_of: UBERON:0003106 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000475 ! paraventricular organ -intersection_of: UBERON:2000475 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000439 ! superficial pelvic abductor -intersection_of: UBERON:2000439 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001650 ! branchial mesenchyme -intersection_of: UBERON:2002172 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005535 ! branched anal fin ray -intersection_of: UBERON:2001992 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005630 ! pterotic fossa -intersection_of: UBERON:2005266 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001008 ! muscle pioneer somite 27 -intersection_of: UBERON:2001008 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001713 ! parallel fiber -intersection_of: UBERON:2002218 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000412 ! otic vesicle posterior protrusion -intersection_of: UBERON:2000412 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001311 ! roof plate rhombomere region -intersection_of: UBERON:0005502 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005451 ! mandibular sensory canal -intersection_of: UBERON:2001814 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000721 ! slow muscle cell somite 27 -intersection_of: UBERON:2000721 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000519 ! hemal arch -intersection_of: UBERON:0006065 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001389 ! regeneration epithelium -intersection_of: UBERON:2001389 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000253 ! orbitosphenoid -intersection_of: UBERON:0002478 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001392 ! parapophysis 1 -intersection_of: UBERON:2001392 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000600 ! cranial nerve IV -intersection_of: UBERON:0001644 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001336 ! neural spine -intersection_of: UBERON:0001076 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007022 ! hindbrain neural plate -intersection_of: UBERON:0009614 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000697 ! cranial nerve V -intersection_of: UBERON:0001645 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005181 ! VaP motor neuron -intersection_of: UBERON:2005181 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000747 ! epaxial region somite 30 -intersection_of: UBERON:2000747 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000053 ! presumptive segmental plate -intersection_of: UBERON:0007282 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000347 ! dorsal hypothalamic zone -intersection_of: UBERON:2000347 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000738 ! dorsal oblique extraocular muscle -intersection_of: UBERON:0006321 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001626 ! cerebral spinal fluid -intersection_of: UBERON:0001359 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000992 ! lateral migration pathway mesenchyme -intersection_of: UBERON:0011209 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000701 ! ventral arrector -intersection_of: UBERON:2000701 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000365 ! nasal bone -intersection_of: UBERON:0001681 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005364 ! dorsal fin pterygiophore 1 -intersection_of: UBERON:2002094 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000533 ! lateral funiculus -intersection_of: UBERON:0002179 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001567 ! oocyte stage I -intersection_of: UBERON:2001567 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000032 ! hypothalamus -intersection_of: UBERON:0001898 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005609 ! supraoccipital-parietal joint -intersection_of: UBERON:2005264 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005442 ! articular fossa of opercle -intersection_of: UBERON:2001928 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005059 ! trabecular layer -intersection_of: UBERON:0004124 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000058 ! polster -intersection_of: UBERON:2000058 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000238 ! medial olfactory tract -intersection_of: UBERON:2000238 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000901 ! hypaxial region somite 7 -intersection_of: UBERON:2000901 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005218 ! CaD -intersection_of: UBERON:2005218 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005449 ! pore -intersection_of: UBERON:0008915 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005311 ! pronephric glomerular capsule epithelium -intersection_of: UBERON:2005311 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005149 ! distal epidermal cap -intersection_of: UBERON:2005149 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000757 ! fast muscle cell somite 27 -intersection_of: UBERON:2000757 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005428 ! optic foramen -intersection_of: UBERON:0005745 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005031 ! dorsal longitudinal vein -intersection_of: UBERON:2005031 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001462 ! somite border -intersection_of: UBERON:2001462 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000787 ! mesenchyme derived from head neural crest -intersection_of: UBERON:0007213 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001412 ! epiotic -intersection_of: UBERON:2001412 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000918 ! muscle pioneer somite 20 -intersection_of: UBERON:2000918 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005347 ! vertebra 5 -intersection_of: UBERON:2001732 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001638 ! statoacoustic (VIII) nucleus -intersection_of: UBERON:0001720 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000074 ! somite 26 -intersection_of: UBERON:2000074 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001583 ! preural centrum 1+ ural centrum 1 -intersection_of: UBERON:2001583 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005392 ! infraorbital sensory canal -intersection_of: UBERON:2001811 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005629 ! hyomandibular foramen -intersection_of: UBERON:2005275 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007013 ! preplacodal ectoderm -intersection_of: UBERON:2007013 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000072 ! somite 1 -intersection_of: UBERON:2000072 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005038 ! supraintestinal vein -intersection_of: UBERON:2005038 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000624 ! brachium conjunctivum -intersection_of: UBERON:2000624 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000437 ! stomach -intersection_of: UBERON:0000945 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001659 ! diencephalic nucleus -intersection_of: UBERON:0006569 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005474 ! inter-hypobranchial 3 joint -intersection_of: UBERON:2001863 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001033 ! roof plate rhombomere 1 -intersection_of: UBERON:0005568 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000547 ! mouth -intersection_of: UBERON:0000165 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005298 ! cranial lymph vessel -intersection_of: UBERON:0011363 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001436 ! roof plate neural tube region -intersection_of: UBERON:0003298 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007019 ! midbrain neural plate -intersection_of: UBERON:0009611 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001113 ! thecal cell layer -intersection_of: UBERON:0000155 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000583 ! scapula -intersection_of: UBERON:0006849 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000530 ! lapillus -intersection_of: UBERON:2000530 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005231 ! bifurcate interneuron -intersection_of: UBERON:2005231 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000681 ! neural postzygapophysis -intersection_of: UBERON:0001080 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000828 ! roof plate rhombomere 5 -intersection_of: UBERON:0005581 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001444 ! choroid plexus third ventricle -intersection_of: UBERON:0002288 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001431 ! primitive olfactory epithelium -intersection_of: UBERON:2001431 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001421 ! anal fin lepidotrichium -intersection_of: UBERON:4000176 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001216 ! splanchnocranium -intersection_of: UBERON:0008895 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001240 ! ceratobranchial 4 bone -intersection_of: UBERON:2001240 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000531 ! lateral column -intersection_of: UBERON:0005374 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005344 ! preopticohypothalamic tract -intersection_of: UBERON:2005344 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000972 ! slow muscle cell somite 4 -intersection_of: UBERON:2000972 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000588 ! statoacoustic (VIII) ganglion -intersection_of: UBERON:0002827 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000951 ! roof plate rhombomere 7 -intersection_of: UBERON:0005587 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000793 ! muscle pioneer somite 19 -intersection_of: UBERON:2000793 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000294 ! torus lateralis -intersection_of: UBERON:2000294 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001702 ! apical ectodermal ridge -intersection_of: UBERON:0004356 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005066 ! bulbus arteriosus outer layer -intersection_of: UBERON:2005066 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000947 ! dorsal fin proximal radial -intersection_of: UBERON:2000947 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005136 ! inner dental epithelium -intersection_of: UBERON:0006951 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001235 ! hypobranchial 3 bone -intersection_of: UBERON:2001235 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000988 ! hypaxial region somite 5 -intersection_of: UBERON:2000988 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000405 ! cranial nerve III -intersection_of: UBERON:0001643 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005536 ! fontanel -intersection_of: UBERON:0002221 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000826 ! central nucleus torus semicircularis -intersection_of: UBERON:2000826 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000509 ! epithalamus -intersection_of: UBERON:0001899 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001016 ! myotome somite 2 -intersection_of: UBERON:2001016 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000330 ! cloacal chamber -intersection_of: UBERON:0000162 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005074 ! central cardiac conduction system -intersection_of: UBERON:2005074 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005317 ! pectoral fin fold -intersection_of: UBERON:2005317 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005288 ! lamina rara externa -intersection_of: UBERON:0005789 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000772 ! hypaxial region somite 25 -intersection_of: UBERON:2000772 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005345 ! adipose tissue -intersection_of: UBERON:0001013 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005631 ! preopercle horizontal limb-symplectic joint -intersection_of: UBERON:2005268 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000970 ! slow muscle cell somite 26 -intersection_of: UBERON:2000970 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001724 ! presumptive endocardium -intersection_of: UBERON:0007280 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001329 ! retinal inner plexiform layer -intersection_of: UBERON:0001795 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000706 ! posterior intestine -intersection_of: UBERON:0001155 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005162 ! digestive system duct -intersection_of: UBERON:0003928 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000166 ! lateral crista -intersection_of: UBERON:0007276 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000467 ! anguloarticular -intersection_of: UBERON:0004744 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005373 ! dorsal fin distal radial 2 -intersection_of: UBERON:2005373 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005540 ! rib of vertebra 3 -intersection_of: UBERON:2001880 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000586 ! preural 2 vertebra -intersection_of: UBERON:2000586 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001642 ! tooth row -intersection_of: UBERON:0009678 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000283 ! sternohyoid -intersection_of: UBERON:2000283 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001644 ! articular cartilage -intersection_of: UBERON:0011002 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000501 ! dorsal funiculus -intersection_of: UBERON:0002258 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000700 ! utricle -intersection_of: UBERON:0001853 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007067 ! vagal ganglion -intersection_of: UBERON:2007067 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001330 ! retinal outer plexiform layer -intersection_of: UBERON:0001790 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001194 ! cranial neural crest -intersection_of: UBERON:0003099 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000332 ! coracoid -intersection_of: UBERON:0004743 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000646 ! anal fin distal radial -intersection_of: UBERON:2000646 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001721 ! presumptive atrium primitive heart tube -intersection_of: UBERON:2002229 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000671 ! horizontal myoseptum -intersection_of: UBERON:0003901 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001655 ! pericardial cavity -intersection_of: UBERON:0001074 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000960 ! sclerotome somite 29 -intersection_of: UBERON:2000960 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005255 ! arteriole -intersection_of: UBERON:0001980 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005534 ! branched dorsal fin ray -intersection_of: UBERON:2001785 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000101 ! diencephalon -intersection_of: UBERON:0001894 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001683 ! corneal epithelium -intersection_of: UBERON:0001772 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005145 ! muscle -intersection_of: UBERON:0001630 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000495 ! infraorbital 5 -intersection_of: UBERON:2000495 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001274 ! coronomeckelian -intersection_of: UBERON:2001274 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001581 ! ural centrum 2 -intersection_of: UBERON:2001581 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000064 ! presumptive retinal pigmented epithelium -intersection_of: UBERON:0005424 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000205 ! external ventral flexor -intersection_of: UBERON:2000205 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000302 ! ventral habenular nucleus -intersection_of: UBERON:2000302 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005165 ! common bile duct -intersection_of: UBERON:0001174 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005297 ! cranial blood vessel -intersection_of: UBERON:0011362 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005102 ! presumptive median fin fold -intersection_of: UBERON:2005102 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000937 ! hypaxial region somite 13 -intersection_of: UBERON:2000937 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001383 ! fin bud -intersection_of: UBERON:0002531 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005505 ! vertebra 5-vertebra 6 joint -intersection_of: UBERON:2002054 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000666 ! filamental artery -intersection_of: UBERON:2000666 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005563 ! sclera -intersection_of: UBERON:2002289 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005098 ! central ray artery -intersection_of: UBERON:2005098 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000113 ! head mesenchyme -intersection_of: UBERON:0005253 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000027 ! paired fin skeleton -intersection_of: UBERON:0010713 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000711 ! DEL -intersection_of: UBERON:2000711 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000078 ! ventral actinotrichium -intersection_of: UBERON:2000078 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000000 ! Brachet's cleft -intersection_of: UBERON:2000000 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000236 ! mandibular muscle -intersection_of: UBERON:0011648 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001208 ! presumptive rhombomere 2 -intersection_of: UBERON:0007296 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005273 ! intestinal mucosal muscle -intersection_of: UBERON:2005273 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001570 ! unfertilized egg -intersection_of: UBERON:2001570 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000012 ! central nervous system -intersection_of: UBERON:0001017 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005167 ! hepatopancreatic ampulla -intersection_of: UBERON:0004913 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001114 ! head -intersection_of: UBERON:0000033 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001100 ! hepatic duct -intersection_of: UBERON:0005171 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001299 ! vagal placode 3 -intersection_of: UBERON:2001299 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005014 ! recurrent branch afferent branchial artery -intersection_of: UBERON:2005014 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001608 ! pharyngeal arch 5 -intersection_of: UBERON:0003116 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000046 ! retinal neural layer -intersection_of: UBERON:0003902 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007042 ! spinal cord neural tube -intersection_of: UBERON:2007042 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005518 ! caudal fin principal ray 7 -intersection_of: UBERON:2001719 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000111 ! germ ring -intersection_of: UBERON:0002541 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001260 ! endocrine pancreas -intersection_of: UBERON:0000016 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001530 ! epibranchial 2 cartilage -intersection_of: UBERON:2001530 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001402 ! ventral hyoid arch -intersection_of: UBERON:0011153 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001384 ! pelvic fin bud -intersection_of: UBERON:0005420 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000248 ! magnocellular preoptic nucleus -intersection_of: UBERON:2000248 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001045 ! sclerotome somite 5 -intersection_of: UBERON:2001045 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001036 ! sclerotome somite 10 -intersection_of: UBERON:2001036 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001224 ! basibranchial 2 -intersection_of: UBERON:2001224 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005403 ! anal fin lepidotrichium 5 -intersection_of: UBERON:2001773 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000745 ! epaxial region somite 25 -intersection_of: UBERON:2000745 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001513 ! dermomyotome -intersection_of: UBERON:0004290 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001120 ! neuroectoderm -intersection_of: UBERON:0002346 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001202 ! optic cup -intersection_of: UBERON:0003072 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000645 ! descending octaval nucleus -intersection_of: UBERON:2000645 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005119 ! barbel primordium -intersection_of: UBERON:2005119 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005497 ! epihyal-ceratohyal joint -intersection_of: UBERON:2001842 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007038 ! anterior neural tube -intersection_of: UBERON:0003080 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000664 ! cranial nerve VII -intersection_of: UBERON:0001647 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005249 ! vasculature -intersection_of: UBERON:0002049 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000120 ! lateral line ganglion -intersection_of: UBERON:2000120 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000335 ! crossed tecto-bulbar tract -intersection_of: UBERON:2000335 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001250 ! pharyngobranchial 2 bone -intersection_of: UBERON:2001250 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000851 ! somite 12 -intersection_of: UBERON:2000851 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005175 ! CoPA -intersection_of: UBERON:2005175 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001536 ! pharyngobranchial 2 cartilage -intersection_of: UBERON:2001536 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000231 ! lateral recess -intersection_of: UBERON:0008902 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000406 ! parvocellular superficial pretectal nucleus -intersection_of: UBERON:2000406 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001671 ! macula communis -intersection_of: UBERON:2002206 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005193 ! RoI2R -intersection_of: UBERON:2005193 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005223 ! lateral larval melanophore stripe -intersection_of: UBERON:2005223 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001005 ! muscle pioneer somite 18 -intersection_of: UBERON:2001005 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000838 ! fast muscle cell somite 29 -intersection_of: UBERON:2000838 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000066 ! proctodeum -intersection_of: UBERON:0000931 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001244 ! epibranchial 5 -intersection_of: UBERON:2001244 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005158 ! tela chorioidea fourth ventricle -intersection_of: UBERON:0005287 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001372 ! pancreatic duct -intersection_of: UBERON:0007329 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001039 ! sclerotome somite 19 -intersection_of: UBERON:2001039 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000117 ! hypoblast -intersection_of: UBERON:0000089 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005256 ! intervillus pockets -intersection_of: UBERON:2005256 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000655 ! dorsomedial optic tract -intersection_of: UBERON:2000655 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001621 ! pronephric proximal straight tubule -intersection_of: UBERON:0009622 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001390 ! pancreatic bud -intersection_of: UBERON:0003922 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001639 ! vascular endothelium -intersection_of: UBERON:0004852 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000504 ! dorsal retractor -intersection_of: UBERON:2000504 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000178 ! caudal peduncle -intersection_of: UBERON:2000178 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001289 ! ciliary marginal zone -intersection_of: UBERON:0003065 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000832 ! sclerotome somite 2 -intersection_of: UBERON:2000832 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000056 ! pharynx -intersection_of: UBERON:0001042 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005383 ! dorsal fin proximal radial 6 -intersection_of: UBERON:2005383 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000075 ! spinal cord -intersection_of: UBERON:0002240 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000887 ! floor plate neural rod -intersection_of: UBERON:2000887 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000810 ! myotome somite 7 -intersection_of: UBERON:2000810 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001308 ! organism subdivision -intersection_of: UBERON:0000475 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000933 ! myotome somite 5 -intersection_of: UBERON:2000933 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005019 ! efferent lamellar arteriole -intersection_of: UBERON:2005019 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005152 ! silver iridophore -intersection_of: UBERON:2005152 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005079 ! posterior mesencephalic central artery -intersection_of: UBERON:2005079 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000905 ! lateral mesenchyme derived from mesoderm -intersection_of: UBERON:0007683 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007040 ! forebrain midbrain boundary neural tube -intersection_of: UBERON:2007040 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000731 ! somite 27 -intersection_of: UBERON:2000731 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001381 ! hypohyal bone -intersection_of: UBERON:0004751 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001411 ! sclerotic bone -intersection_of: UBERON:0010297 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005024 ! trunk vasculature -intersection_of: UBERON:0002201 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005531 ! bony shelf above orbit -intersection_of: UBERON:2001686 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001675 ! ligament -intersection_of: UBERON:0000211 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000765 ! floor plate rhombomere 8 -intersection_of: UBERON:0005588 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000266 ! pretecto-mammillary tract -intersection_of: UBERON:2000266 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000051 ! otic vesicle -intersection_of: UBERON:0003051 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000480 ! caudal octavolateralis nucleus -intersection_of: UBERON:2000480 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001684 ! Bowman's layer -intersection_of: UBERON:0004370 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001404 ! preethmoid bone -intersection_of: UBERON:2001404 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000743 ! epaxial region somite 2 -intersection_of: UBERON:2000743 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005132 ! visceral peritoneum -intersection_of: UBERON:0001178 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005128 ! posterior intestine epithelium -intersection_of: UBERON:0000397 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001204 ! axial mesoderm -intersection_of: UBERON:0003068 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005484 ! quadrate-anguloarticular joint -intersection_of: UBERON:0011170 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000632 ! reproductive system -intersection_of: UBERON:0000990 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001188 ! Weberian apparatus -intersection_of: UBERON:2001188 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001601 ! manubrium -intersection_of: UBERON:2001553 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001700 ! tunica externa -intersection_of: UBERON:0005737 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000854 ! somite 21 -intersection_of: UBERON:2000854 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001636 ! membrane bone -intersection_of: UBERON:0007842 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000552 ! nucleus ruber -intersection_of: UBERON:0001947 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001182 ! dermal deep region -intersection_of: UBERON:0007377 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001481 ! ventral anterior lateral line nerve -intersection_of: UBERON:2001481 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000737 ! cranium -intersection_of: UBERON:0010323 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000621 ! quadrate -intersection_of: UBERON:0006597 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000067 ! pronephric mesoderm -intersection_of: UBERON:0005721 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001437 ! ductus communicans -intersection_of: UBERON:2001437 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000654 ! rostral motor nucleus -intersection_of: UBERON:2000654 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001047 ! slow muscle cell somite 10 -intersection_of: UBERON:2001047 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005448 ! preopercular sensory canal -intersection_of: UBERON:2001813 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001704 ! scale primordium -intersection_of: UBERON:2002242 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001563 ! hypural 4 -intersection_of: UBERON:2001563 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001680 ! parvocellular preoptic nucleus -intersection_of: UBERON:2002219 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005142 ! enameloid -intersection_of: UBERON:0011692 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001448 ! ultimobranchial body -intersection_of: UBERON:0003092 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005378 ! dorsal fin distal radial 7 -intersection_of: UBERON:2005378 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000788 ! mesenchyme dorsal fin -intersection_of: UBERON:2000788 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005528 ! caudal fin principal ray 18 -intersection_of: UBERON:2001730 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000791 ! muscle pioneer somite 13 -intersection_of: UBERON:2000791 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000277 ! scale -intersection_of: UBERON:0007380 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001541 ! pelvic radial 2 cartilage -intersection_of: UBERON:2001541 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000311 ! adductor mandibulae complex -intersection_of: UBERON:2000311 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000462 ! abductor hyohyoid -intersection_of: UBERON:2000462 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001488 ! multi-tissue structure -intersection_of: UBERON:0000481 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001185 ! periderm -intersection_of: UBERON:0003055 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005395 ! preoperculo-mandibular sensory canal -intersection_of: UBERON:2001812 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005134 ! dental epithelium -intersection_of: UBERON:0003843 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001634 ! perichondrium -intersection_of: UBERON:0002222 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005394 ! post-otic sensory canal -intersection_of: UBERON:2001619 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001611 ! pharyngeal arch 2 -intersection_of: UBERON:0003066 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001007 ! muscle pioneer somite 24 -intersection_of: UBERON:2001007 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000216 ! infracarinalis -intersection_of: UBERON:2000216 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005393 ! otic sensory canal -intersection_of: UBERON:2001629 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000946 ! hypaxial region somite 16 -intersection_of: UBERON:2000946 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001099 ! immature hair cell posterior macula -intersection_of: UBERON:2001099 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000133 ! neural rod -intersection_of: UBERON:0005068 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000999 ! mesenchyme derived from trunk neural crest -intersection_of: UBERON:0007214 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001287 ! renal tubule -intersection_of: UBERON:0001231 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005385 ! dorsal fin proximal radial 8 -intersection_of: UBERON:2005385 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000077 ! tail bud -intersection_of: UBERON:0002533 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001032 ! rhombomere 4 -intersection_of: UBERON:0005511 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001687 ! corneal endothelium -intersection_of: UBERON:0001985 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001585 ! caudal fin principal ray -intersection_of: UBERON:2001585 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001097 ! immature posterior macula -intersection_of: UBERON:2001097 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001656 ! pleuroperitoneal cavity -intersection_of: UBERON:2002224 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000861 ! ventral oblique extraocular muscle -intersection_of: UBERON:0006320 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000035 ! lens -intersection_of: UBERON:0000965 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005280 ! cardiac muscle -intersection_of: UBERON:0001133 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005210 ! midbrain interneuron -intersection_of: UBERON:2005210 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005401 ! anal fin lepidotrichium 3 -intersection_of: UBERON:2001771 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005405 ! anal fin lepidotrichium 7 -intersection_of: UBERON:2001775 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005283 ! renal capsular space -intersection_of: UBERON:0001286 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005312 ! pronephric capsular space -intersection_of: UBERON:0001286 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005541 ! rib of vertebra 4 -intersection_of: UBERON:2001881 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005277 ! skeletal muscle -intersection_of: UBERON:0001134 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000823 ! rhombomere 5 -intersection_of: UBERON:0005515 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007045 ! midbrain hindbrain boundary neural keel -intersection_of: UBERON:2007045 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001686 ! Descemet's membrane -intersection_of: UBERON:0004367 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000592 ! superficial pelvic adductor -intersection_of: UBERON:2000592 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001451 ! zone of polarizing activity pectoral fin bud -intersection_of: UBERON:0005415 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005171 ! duct -intersection_of: UBERON:0000058 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001306 ! pharyngeal arch -intersection_of: UBERON:0002539 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005042 ! posterior lateral plate mesoderm -intersection_of: UBERON:0009910 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000940 ! posterior lateral line neuromast -intersection_of: UBERON:2000940 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000397 ! nucleus subglomerulosis -intersection_of: UBERON:2000397 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001217 ! presumptive hypochord -intersection_of: UBERON:0006599 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001071 ! presumptive neural retina -intersection_of: UBERON:0005425 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005468 ! frontal-pterotic joint -intersection_of: UBERON:2001711 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005124 ! intestinal epithelium -intersection_of: UBERON:0001277 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000465 ! adductor operculi -intersection_of: UBERON:2000465 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001400 ! ceratohyal cartilage -intersection_of: UBERON:0011610 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005514 ! caudal fin principal ray 2 -intersection_of: UBERON:2001714 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000156 ! somite 20 -intersection_of: UBERON:2000156 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001701 ! tunica interna -intersection_of: UBERON:0005738 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001688 ! corneal primordium -intersection_of: UBERON:0005427 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000296 ! uncrossed tecto-bulbar tract -intersection_of: UBERON:2000296 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000463 ! adductor -intersection_of: UBERON:0011996 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001320 ! endocardium -intersection_of: UBERON:0002165 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001645 ! angular bone -intersection_of: UBERON:0011079 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005009 ! aortic arch 5 -intersection_of: UBERON:0003122 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000561 ! parasphenoid -intersection_of: UBERON:0004745 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000102 ! dorsal fin fold -intersection_of: UBERON:2000102 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005007 ! aortic arch 3 -intersection_of: UBERON:0003120 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001679 ! solid lens vesicle -intersection_of: UBERON:0005426 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000222 ! isthmic primary nucleus -intersection_of: UBERON:2000222 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001537 ! mesocoracoid cartilage -intersection_of: UBERON:2001537 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001125 ! organizer inducing center -intersection_of: UBERON:2001125 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005216 ! MeM1 -intersection_of: UBERON:2005216 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001080 ! sclerotome -intersection_of: UBERON:0003089 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001468 ! anterior lateral line system -intersection_of: UBERON:2001468 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005396 ! supraorbital sensory canal -intersection_of: UBERON:2001810 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000402 ! olfactory bulb -intersection_of: UBERON:0002264 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001527 ! epibranchial cartilage -intersection_of: UBERON:2001527 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005487 ! ventral hypohyal-urohyal joint -intersection_of: UBERON:2001848 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005478 ! opercle-interopercle joint -intersection_of: UBERON:2001710 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000742 ! epaxial region somite 17 -intersection_of: UBERON:2000742 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001456 ! pectoral fin endoskeletal disc -intersection_of: UBERON:2001456 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001367 ! forebrain midbrain boundary -intersection_of: UBERON:0005075 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001262 ! gonad primordium -intersection_of: UBERON:0005564 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001256 ! lateral floor plate -intersection_of: UBERON:2001256 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000892 ! hypaxial region somite 12 -intersection_of: UBERON:2000892 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001349 ! stratum opticum -intersection_of: UBERON:2001349 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005308 ! efferent glomerular arteriole -intersection_of: UBERON:0004640 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000243 ! neuromast -intersection_of: UBERON:0008904 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005013 ! concurrent branch afferent branchial artery -intersection_of: UBERON:2005013 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001105 ! embryonic structure -intersection_of: UBERON:0002050 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001043 ! sclerotome somite 27 -intersection_of: UBERON:2001043 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000631 ! caudal pretectal nucleus -intersection_of: UBERON:0006848 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005424 ! caudal fin actinotrichium -intersection_of: UBERON:2000437 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001312 ! dorsal anterior lateral line ganglion -intersection_of: UBERON:2001312 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005048 ! primitive prosencephalic artery -intersection_of: UBERON:2005048 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000858 ! somite 8 -intersection_of: UBERON:2000858 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001291 ! facial ganglion -intersection_of: UBERON:0001700 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000466 ! anal depressor -intersection_of: UBERON:2000466 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001020 ! myotome somite 30 -intersection_of: UBERON:2001020 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001710 ! mossy fiber -intersection_of: UBERON:2002210 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001257 ! medial floor plate -intersection_of: UBERON:2001257 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005270 ! depressor muscle -intersection_of: UBERON:2005270 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005006 ! aortic arch 2 -intersection_of: UBERON:0003119 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000278 ! secondary gustatory nucleus medulla oblongata -intersection_of: UBERON:2000278 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005141 ! tooth pulp -intersection_of: UBERON:0001754 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000184 ! cleithrum -intersection_of: UBERON:0004741 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000115 ! heart rudiment -intersection_of: UBERON:0004291 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005253 ! renal glomerular capsule epithelium -intersection_of: UBERON:0005750 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001052 ! primordial hindbrain channel -intersection_of: UBERON:2001052 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000973 ! slow muscle cell somite 7 -intersection_of: UBERON:2000973 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001722 ! presumptive sinus venosus -intersection_of: UBERON:0007278 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001699 ! caudal octaval nerve motor nucleus -intersection_of: UBERON:2002176 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000773 ! fast muscle cell somite 12 -intersection_of: UBERON:2000773 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005362 ! dorsal fin proximal radial 1 -intersection_of: UBERON:2001818 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001472 ! anterior lateral line neuromast -intersection_of: UBERON:2001472 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000091 ! axial chorda mesoderm -intersection_of: UBERON:0004880 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001246 ! epibranchial 2 bone -intersection_of: UBERON:2001246 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000568 ! presumptive blood -intersection_of: UBERON:0006596 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001538 ! pelvic radial cartilage -intersection_of: UBERON:2001538 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001493 ! atypical epithelium -intersection_of: UBERON:0000488 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000144 ! retinal pigmented epithelium -intersection_of: UBERON:0001782 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000873 ! epaxial region somite 4 -intersection_of: UBERON:2000873 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005397 ! hyoideomandibular nerve -intersection_of: UBERON:2002010 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005106 ! longitudinal lateral lymphatic vessel -intersection_of: UBERON:2005106 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000865 ! epaxial region somite 12 -intersection_of: UBERON:2000865 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000016 ! ectoderm -intersection_of: UBERON:0000924 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001469 ! lateral line -intersection_of: UBERON:0010202 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007055 ! pillar of the lateral semicircular canal -intersection_of: UBERON:2007055 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005045 ! hyaloid artery -intersection_of: UBERON:0002270 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001494 ! multilaminar epithelium -intersection_of: UBERON:0000486 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000301 ! medial rectus -intersection_of: UBERON:0001602 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005063 ! cardiac conduction system -intersection_of: UBERON:0002350 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000170 ! basibranchial -intersection_of: UBERON:0004740 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000964 ! slow muscle cell somite 12 -intersection_of: UBERON:2000964 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007047 ! midbrain hindbrain boundary neural tube -intersection_of: UBERON:2007047 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000857 ! somite 4 -intersection_of: UBERON:2000857 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000724 ! slow muscle cell somite 8 -intersection_of: UBERON:2000724 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000305 ! ventral sulcus -intersection_of: UBERON:2000305 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000351 ! olfactory region -intersection_of: UBERON:0003112 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000726 ! somite 14 -intersection_of: UBERON:2000726 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005427 ! dentary foramen -intersection_of: UBERON:2002012 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000385 ! lymphatic system -intersection_of: UBERON:0002465 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001137 ! ventral tooth row -intersection_of: UBERON:2001137 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000323 ! mesethmoid bone -intersection_of: UBERON:0011238 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000512 ! facial lobe -intersection_of: UBERON:2000512 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000564 ! pelvic abductor profundus -intersection_of: UBERON:2000564 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007021 ! spinal cord neural plate -intersection_of: UBERON:0003854 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005161 ! hepatic artery -intersection_of: UBERON:0001193 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000930 ! myotome somite 24 -intersection_of: UBERON:2000930 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001058 ! caudal fin -intersection_of: UBERON:4000164 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005361 ! dorsal fin lepidotrichium 7 -intersection_of: UBERON:2001760 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000885 ! fast muscle cell somite 6 -intersection_of: UBERON:2000885 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005382 ! dorsal fin proximal radial 5 -intersection_of: UBERON:2005382 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005257 ! blood vessel endothelium -intersection_of: UBERON:0004638 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000524 ! infraorbital lateral line -intersection_of: UBERON:0003094 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001004 ! muscle pioneer somite 15 -intersection_of: UBERON:2001004 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000389 ! medial funicular nucleus medulla oblongata -intersection_of: UBERON:2000389 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005108 ! facial lymphatic vessel -intersection_of: UBERON:0001422 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000835 ! sclerotome somite 28 -intersection_of: UBERON:2000835 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000656 ! ectopterygoid -intersection_of: UBERON:0011634 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000782 ! lateral wall rhombomere 4 -intersection_of: UBERON:0005577 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000814 ! opercular lateral line neuromast -intersection_of: UBERON:2000814 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005121 ! middle lateral line placode -intersection_of: UBERON:2005121 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000440 ! superior raphe nucleus -intersection_of: UBERON:2000440 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005008 ! aortic arch 4 -intersection_of: UBERON:0003121 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001363 ! neural complex -intersection_of: UBERON:2001363 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000219 ! intermediate reticular formation -intersection_of: UBERON:0009776 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000957 ! hypaxial region somite 19 -intersection_of: UBERON:2000957 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001239 ! ceratobranchial 5 bone -intersection_of: UBERON:2001239 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000567 ! premaxilla -intersection_of: UBERON:0002244 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000882 ! floor plate rhombomere 1 -intersection_of: UBERON:0005566 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007030 ! posterior neural rod -intersection_of: UBERON:2007030 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000534 ! lateral longitudinal fasciculus -intersection_of: UBERON:2000534 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000094 ! blood island -intersection_of: UBERON:0003061 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005335 ! swim bladder bud -intersection_of: UBERON:0006859 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001193 ! supraneural 8 -intersection_of: UBERON:2001193 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000652 ! dorsal root -intersection_of: UBERON:0002261 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000573 ! internal cellular layer -intersection_of: UBERON:2000573 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005077 ! vascular cord -intersection_of: UBERON:0006965 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001483 ! middle lateral line ganglion -intersection_of: UBERON:2001483 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005507 ! nasal capsule -intersection_of: UBERON:0006332 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000537 ! levator operculi -intersection_of: UBERON:0011649 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005561 ! vitreous -intersection_of: UBERON:2002290 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005467 ! ceratohyal-dorsal hypohyal joint -intersection_of: UBERON:2001843 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001557 ! pronephric glomerulus -intersection_of: UBERON:0004739 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005532 ! bony plate -intersection_of: UBERON:2002053 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005268 ! adductor muscle -intersection_of: UBERON:0011145 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001370 ! posterior pancreatic bud -intersection_of: UBERON:0003923 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001424 ! chondrocranium -intersection_of: UBERON:0002241 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001328 ! neuromere -intersection_of: UBERON:0004731 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000116 ! macula lagena -intersection_of: UBERON:2000116 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001610 ! pharyngeal arch 7 -intersection_of: UBERON:0011087 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000472 ! basioccipital -intersection_of: UBERON:0001692 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000043 ! muscle pioneer somite 1 -intersection_of: UBERON:2000043 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005269 ! abductor muscle -intersection_of: UBERON:0006845 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005495 ! skin flap -intersection_of: UBERON:2001951 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000410 ! postcleithrum -intersection_of: UBERON:2000410 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005512 ! caudal fin principal ray 1 -intersection_of: UBERON:2001713 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001249 ! exocrine pancreas -intersection_of: UBERON:0000017 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001011 ! muscle pioneer somite 8 -intersection_of: UBERON:2001011 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005081 ! internal carotid artery -intersection_of: UBERON:0001532 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005044 ! optic artery -intersection_of: UBERON:2005044 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001084 ! epaxial myotome region -intersection_of: UBERON:0003900 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001443 ! choroid plexus -intersection_of: UBERON:0001886 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005094 ! optic choroid vascular plexus -intersection_of: UBERON:0010078 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000827 ! fast muscle cell somite 26 -intersection_of: UBERON:2000827 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000604 ! ventral aorta -intersection_of: UBERON:0003085 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001273 ! ventral mandibular arch -intersection_of: UBERON:0003278 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000780 ! lateral wall diencephalic region -intersection_of: UBERON:0005591 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000470 ! preoptic area -intersection_of: UBERON:0001928 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000175 ! posterior lateral line nerve -intersection_of: UBERON:2000175 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000650 ! dorsal motor root of V -intersection_of: UBERON:0002796 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000162 ! trigeminal placode -intersection_of: UBERON:0003070 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005065 ! heart valve -intersection_of: UBERON:0000946 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000648 ! dorsal fin musculature -intersection_of: UBERON:2000648 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000844 ! slow muscle cell somite 22 -intersection_of: UBERON:2000844 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000023 ! forerunner cell group -intersection_of: UBERON:2000023 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000089 ! fin fold actinotrichium -intersection_of: UBERON:2000089 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005435 ! actinotrichium -intersection_of: UBERON:2000089 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001579 ! ural vertebra 2 -intersection_of: UBERON:2001579 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001237 ! ceratobranchial 1 bone -intersection_of: UBERON:2001237 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000673 ! hypobranchial artery -intersection_of: UBERON:2000673 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000669 ! head kidney -intersection_of: UBERON:0007132 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000234 ! macula neglecta -intersection_of: UBERON:2000234 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000955 ! sclerotome somite 18 -intersection_of: UBERON:2000955 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005180 ! RoP motor neuron -intersection_of: UBERON:2005180 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000768 ! hypaxial region somite 14 -intersection_of: UBERON:2000768 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000961 ! sclerotome somite 4 -intersection_of: UBERON:2000961 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001360 ! parapineal organ -intersection_of: UBERON:2001360 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000516 ! periventricular grey zone -intersection_of: UBERON:2000516 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000801 ! myotome somite 11 -intersection_of: UBERON:2000801 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005049 ! prosencephalic artery -intersection_of: UBERON:2005049 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001180 ! epidermal basal stratum -intersection_of: UBERON:0002025 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000587 ! sphenotic -intersection_of: UBERON:2000587 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000938 ! central canal -intersection_of: UBERON:0002291 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005429 ! olfactory nerve foramen -intersection_of: UBERON:2001804 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001089 ! myoseptum -intersection_of: UBERON:2001089 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001001 ! epaxial region somite 13 -intersection_of: UBERON:2001001 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000803 ! myotome somite 18 -intersection_of: UBERON:2000803 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000984 ! superior reticular formation tegmentum -intersection_of: UBERON:2000984 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001040 ! epaxial region somite 24 -intersection_of: UBERON:2001040 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000350 ! epipleural -intersection_of: UBERON:2000350 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001225 ! basibranchial 3 -intersection_of: UBERON:2001225 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001130 ! pharyngeal pouch 2 -intersection_of: UBERON:0007123 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001341 ! intervening zone -intersection_of: UBERON:2001341 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000623 ! basipterygium -intersection_of: UBERON:2000623 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001450 ! apical ectodermal ridge pelvic fin -intersection_of: UBERON:2001450 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001335 ! supradorsal -intersection_of: UBERON:2001335 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005186 ! CoB -intersection_of: UBERON:2005186 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000118 ! hypophysis -intersection_of: UBERON:0000007 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000452 ! urohyal -intersection_of: UBERON:2000452 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005214 ! MeLc -intersection_of: UBERON:2005214 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000583 ! scapula -intersection_of: UBERON:0010904 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005028 ! ventral wall of dorsal aorta -intersection_of: UBERON:0003105 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001394 ! neural arch 3 -intersection_of: UBERON:2001394 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005544 ! hyomandibular-otic region joint -intersection_of: UBERON:2001947 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005221 ! dorsal larval melanophore stripe -intersection_of: UBERON:2005221 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001054 ! lateral dorsal aorta -intersection_of: UBERON:2001054 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005261 ! sinusoidal blood vessel endothelium -intersection_of: UBERON:0003909 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005215 ! MeLm -intersection_of: UBERON:2005215 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005100 ! intervessel commissure -intersection_of: UBERON:2005100 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000565 ! pelvic girdle -intersection_of: UBERON:0007832 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000786 ! medial migration pathway mesenchyme -intersection_of: UBERON:0011208 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000155 ! somite -intersection_of: UBERON:0002329 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000014 ! dorsal aorta -intersection_of: UBERON:0005805 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000818 ! vagal neural crest -intersection_of: UBERON:0005428 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000877 ! fast muscle cell somite 14 -intersection_of: UBERON:2000877 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001046 ! sclerotome somite 8 -intersection_of: UBERON:2001046 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000260 ! periventricular nucleus -intersection_of: UBERON:0002322 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000932 ! myotome somite 3 -intersection_of: UBERON:2000932 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001511 ! interhyal cartilage -intersection_of: UBERON:2001511 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000538 ! rib -intersection_of: UBERON:0002228 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000186 ! common cardinal vein -intersection_of: UBERON:0002064 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000934 ! myotome somite 8 -intersection_of: UBERON:2000934 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001606 ! pharyngeal arch 3 -intersection_of: UBERON:0003114 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005433 ! mental barbel -intersection_of: UBERON:2002024 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005343 ! endohypothalamic tract -intersection_of: UBERON:2005343 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000084 ! yolk -intersection_of: UBERON:2000084 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007059 ! neurogenic field -intersection_of: UBERON:2007059 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001025 ! occipital lateral line neuromast -intersection_of: UBERON:2001025 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001678 ! immature eye -intersection_of: UBERON:0010312 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001457 ! postcranial axial cartilage -intersection_of: UBERON:2001457 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005371 ! dorsal fin pterygiophore 8 -intersection_of: UBERON:2005371 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000270 ! maxilla -intersection_of: UBERON:0002397 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000422 ! retroarticular -intersection_of: UBERON:2000422 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001326 ! lens epithelium -intersection_of: UBERON:0001803 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000753 ! fast muscle cell somite 16 -intersection_of: UBERON:2000753 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005120 ! peritoneum -intersection_of: UBERON:0002358 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000197 ! dorsal habenular nucleus -intersection_of: UBERON:2000197 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005126 ! intestinal bulb epithelium -intersection_of: UBERON:2005126 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000891 ! hypaxial region somite 1 -intersection_of: UBERON:2000891 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000319 ! branchiostegal membrane -intersection_of: UBERON:2000319 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001153 ! tooth placode -intersection_of: UBERON:0005087 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001331 ! outer limiting membrane -intersection_of: UBERON:0001788 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000677 ! segmental intercostal artery -intersection_of: UBERON:2000677 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005504 ! vertebra 4-vertebra 5 joint -intersection_of: UBERON:2001940 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005097 ! caudal fin vasculature -intersection_of: UBERON:2005097 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005011 ! pseudobranchial artery -intersection_of: UBERON:2005011 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001716 ! otic vesicle ventral protrusion -intersection_of: UBERON:2002216 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000507 ! epineural -intersection_of: UBERON:2000507 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000446 ! tecto-bulbar tract -intersection_of: UBERON:0002164 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007046 ! midbrain hindbrain boundary neural rod -intersection_of: UBERON:2007046 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005517 ! caudal fin principal ray 6 -intersection_of: UBERON:2001718 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000268 ! anal fin proximal radial -intersection_of: UBERON:2000268 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000684 ! intertectal commissure -intersection_of: UBERON:0002583 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001327 ! abdominal musculature -intersection_of: UBERON:0002343 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000727 ! somite 17 -intersection_of: UBERON:2000727 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005354 ! vertebra 11 -intersection_of: UBERON:2002151 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001405 ! ethmoid cartilage -intersection_of: UBERON:0011242 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000288 ! supracarinalis -intersection_of: UBERON:2000288 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005036 ! supraintestinal artery -intersection_of: UBERON:2005036 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001177 ! roof plate spinal cord region -intersection_of: UBERON:0005724 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001323 ! mid intestine -intersection_of: UBERON:0002108 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005502 ! lateral ethmoid-autopalatine ligament -intersection_of: UBERON:2001944 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005195 ! MiD3cl -intersection_of: UBERON:2005195 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001501 ! cartilage element -intersection_of: UBERON:0002418 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001295 ! facial placode -intersection_of: UBERON:0009124 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000924 ! myotome somite 1 -intersection_of: UBERON:2000924 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005037 ! post-vent vasculature -intersection_of: UBERON:0010204 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001560 ! hypural 1 -intersection_of: UBERON:2001560 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001048 ! slow muscle cell somite 13 -intersection_of: UBERON:2001048 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001179 ! epidermal superficial stratum -intersection_of: UBERON:2001179 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001152 ! tooth 3MD -intersection_of: UBERON:2001152 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000157 ! somite 30 -intersection_of: UBERON:2000157 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000204 ! esophagus -intersection_of: UBERON:0001043 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005357 ! dorsal fin lepidotrichium 3 -intersection_of: UBERON:2001756 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001347 ! stratum fibrosum et griseum superficiale -intersection_of: UBERON:2001347 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005199 ! RoL2r -intersection_of: UBERON:2005199 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000360 ! heart tube -intersection_of: UBERON:0004141 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001077 ! thymus primordium -intersection_of: UBERON:0005562 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005093 ! nasal vein -intersection_of: UBERON:2005093 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000168 ! anterior macula -intersection_of: UBERON:2000168 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001050 ! slow muscle cell somite 19 -intersection_of: UBERON:2001050 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000112 ! gut -intersection_of: UBERON:0001555 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001315 ! atrioventricular canal -intersection_of: UBERON:0002087 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000329 ! chorion -intersection_of: UBERON:0000920 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001485 ! basal lamina -intersection_of: UBERON:0000482 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001373 ! migratory slow muscle precursor cell -intersection_of: UBERON:2001373 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005299 ! fin blood vessel -intersection_of: UBERON:0007301 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005391 ! head sensory canal system -intersection_of: UBERON:2001873 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005254 ! renal glomerular capsule -intersection_of: UBERON:0001230 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005310 ! pronephric glomerular capsule -intersection_of: UBERON:0001230 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000628 ! caudal fin musculature -intersection_of: UBERON:2000628 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005496 ! snout -intersection_of: UBERON:0006333 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000764 ! floor plate rhombomere 5 -intersection_of: UBERON:0005579 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000306 ! ventrolateral thalamic nucleus -intersection_of: UBERON:0001925 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001362 ! parapophysis -intersection_of: UBERON:0003109 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000004 ! anterior axial hypoblast -intersection_of: UBERON:2000004 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001018 ! myotome somite 25 -intersection_of: UBERON:2001018 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005379 ! dorsal fin distal radial 8 -intersection_of: UBERON:2005379 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001301 ! glossopharyngeal ganglion -intersection_of: UBERON:0001701 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000244 ! nucleus Edinger-Westphal -intersection_of: UBERON:0002141 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000315 ! asteriscus -intersection_of: UBERON:2000315 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001715 ! otic vesicle protrusion -intersection_of: UBERON:2002215 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005146 ! area postrema -intersection_of: UBERON:0002162 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001286 ! caudal vein plexus -intersection_of: UBERON:2001286 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000090 ! apical ectodermal ridge dorsal fin -intersection_of: UBERON:2000090 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000070 ! sensory axons peripheral -intersection_of: UBERON:2000070 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001595 ! preopercle vertical limb -intersection_of: UBERON:2000336 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005147 ! regenerating tissue -intersection_of: UBERON:0007567 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005515 ! caudal fin principal ray 4 -intersection_of: UBERON:2001716 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000751 ! epaxial region somite 8 -intersection_of: UBERON:2000751 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005479 ! orbitosphenoid-lateral ethmoid joint -intersection_of: UBERON:2001941 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000310 ! cranial nerve VI -intersection_of: UBERON:0001646 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005431 ! scapular foramen -intersection_of: UBERON:2001735 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000878 ! fast muscle cell somite 17 -intersection_of: UBERON:2000878 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005509 ! palate -intersection_of: UBERON:0005620 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005552 ! pectoral fin lepidotrichium 5 -intersection_of: UBERON:2001765 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005363 ! dorsal fin proximal radial 2 -intersection_of: UBERON:2001819 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001458 ! cranial cartilage -intersection_of: UBERON:0003933 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000566 ! posterior crista -intersection_of: UBERON:0007275 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007034 ! forebrain neural rod -intersection_of: UBERON:2007034 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005084 ! metencephalic artery -intersection_of: UBERON:2005084 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005209 ! hindbrain interneuron -intersection_of: UBERON:2005209 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000545 ! medulla oblongata -intersection_of: UBERON:0001896 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001592 ! claustrum bone -intersection_of: UBERON:2001592 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001653 ! pericardial muscle -intersection_of: UBERON:2002221 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000196 ! dorsal hypohyal bone -intersection_of: UBERON:2000196 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001580 ! neurocranium -intersection_of: UBERON:0001703 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000213 ! habenula -intersection_of: UBERON:0001904 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000931 ! myotome somite 27 -intersection_of: UBERON:2000931 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000661 ! exoccipital -intersection_of: UBERON:0001693 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000407 ! pectoral girdle -intersection_of: UBERON:0007831 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005498 ! epihyal-branchiostegal ray joint -intersection_of: UBERON:2001849 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001712 ! presumptive bulbus arteriosus -intersection_of: UBERON:0007287 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001127 ! visual system -intersection_of: UBERON:0002104 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000799 ! muscle pioneer somite 6 -intersection_of: UBERON:2000799 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005307 ! afferent glomerular arteriole -intersection_of: UBERON:0004639 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000616 ! adductor profundus -intersection_of: UBERON:2000616 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000813 ! infraorbital lateral line neuromast -intersection_of: UBERON:2000813 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005075 ! peripheral cardiac conduction system -intersection_of: UBERON:2005075 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000798 ! muscle pioneer somite 30 -intersection_of: UBERON:2000798 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001238 ! iris -intersection_of: UBERON:0001769 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000598 ! testis -intersection_of: UBERON:0000473 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001575 ! parasympathetic nervous system -intersection_of: UBERON:0000011 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001510 ! basihyal cartilage -intersection_of: UBERON:0011615 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000414 ! presumptive cephalic mesoderm -intersection_of: UBERON:2000414 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000779 ! lateral forebrain bundle telencephalon -intersection_of: UBERON:2000779 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001351 ! stratum album centrale -intersection_of: UBERON:0006787 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000135 ! notochord -intersection_of: UBERON:0002328 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000734 ! preural vertebra -intersection_of: UBERON:2000734 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005305 ! kidney vasculature -intersection_of: UBERON:0006544 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000247 ! cranial nerve VIII -intersection_of: UBERON:0001648 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000241 ! midline column -intersection_of: UBERON:2000241 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005227 ! protoneuromast -intersection_of: UBERON:2005227 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000418 ! pretectum -intersection_of: UBERON:0001944 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005001 ! posterior communicating artery -intersection_of: UBERON:0001628 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001041 ! sclerotome somite 21 -intersection_of: UBERON:2001041 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007037 ! posterior neural tube -intersection_of: UBERON:0003076 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000264 ! preopercle -intersection_of: UBERON:2000264 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000137 ! optic stalk -intersection_of: UBERON:0003098 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001425 ! basal plate cartilage -intersection_of: UBERON:2001425 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000284 ! subopercle -intersection_of: UBERON:2000284 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005096 ! pectoral fin vasculature -intersection_of: UBERON:0007302 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000076 ! swim bladder -intersection_of: UBERON:0006860 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000142 ! peripheral nervous system -intersection_of: UBERON:0000010 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000548 ! musculature system -intersection_of: UBERON:0000383 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001176 ! blastoderm -intersection_of: UBERON:0004750 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001703 ! epidermal placode -intersection_of: UBERON:2002195 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000200 ! dorsal root ganglion -intersection_of: UBERON:0000044 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000179 ! caudal root of abducens nerve -intersection_of: UBERON:0009908 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005458 ! dorsal hypohyal-ventral hypohyal joint -intersection_of: UBERON:2001845 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001365 ! trigeminal motor nucleus -intersection_of: UBERON:0002633 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001305 ! vagal ganglion 4 -intersection_of: UBERON:2001305 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000869 ! epaxial region somite 23 -intersection_of: UBERON:2000869 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000071 ! shield -intersection_of: UBERON:0003062 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000030 ! macula utricle -intersection_of: UBERON:0002214 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001026 ! supraorbital lateral line neuromast -intersection_of: UBERON:2001026 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005182 ! t-interneuron -intersection_of: UBERON:2005182 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005123 ! gut epithelium -intersection_of: UBERON:0003929 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000670 ! hepatic vein -intersection_of: UBERON:0001143 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005469 ! hyomandibula-metapterygoid joint -intersection_of: UBERON:2001979 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001641 ! rudimentary neural arch -intersection_of: UBERON:2001666 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000722 ! slow muscle cell somite 3 -intersection_of: UBERON:2000722 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005370 ! dorsal fin pterygiophore 7 -intersection_of: UBERON:2005370 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000063 ! presumptive neural plate -intersection_of: UBERON:0007284 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001378 ! axial hypoblast -intersection_of: UBERON:2001378 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000401 ! octaval nerve sensory nucleus -intersection_of: UBERON:2000401 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000678 ! hair cell anterior macula -intersection_of: UBERON:2000678 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000001 ! Kupffer's vesicle -intersection_of: UBERON:2000001 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000667 ! gill filament -intersection_of: UBERON:0009120 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000746 ! epaxial region somite 28 -intersection_of: UBERON:2000746 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001118 ! urogenital papilla -intersection_of: UBERON:2001118 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001464 ! retinal outer nuclear layer -intersection_of: UBERON:0001789 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007058 ! roof plate -intersection_of: UBERON:0003054 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000370 ! intermediate thalamic nucleus -intersection_of: UBERON:0000430 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000876 ! fast muscle cell somite 11 -intersection_of: UBERON:2000876 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005168 ! central vein -intersection_of: UBERON:0006841 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001175 ! blastodisc -intersection_of: UBERON:0004749 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000990 ! intermediate mesenchyme -intersection_of: UBERON:0005494 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001707 ! brainstem -intersection_of: UBERON:0002298 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001156 ! posterior lateral line placode -intersection_of: UBERON:2001156 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005026 ! primary head sinus -intersection_of: UBERON:2005026 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005060 ! trabecular layer of ventricle -intersection_of: UBERON:0004126 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000308 ! prevomer -intersection_of: UBERON:0002396 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001318 ! cardiac jelly -intersection_of: UBERON:0003906 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000754 ! fast muscle cell somite 19 -intersection_of: UBERON:2000754 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000781 ! lateral wall rhombomere 1 -intersection_of: UBERON:0005567 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005550 ! pectoral fin lepidotrichium 6 -intersection_of: UBERON:2001766 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005174 ! ventral liver lobe -intersection_of: UBERON:2005174 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005034 ! parachordal vessel -intersection_of: UBERON:2005034 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001502 ! epiphyseal bar -intersection_of: UBERON:2001502 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005104 ! presumptive dorsal fin fold -intersection_of: UBERON:2005104 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000259 ! mandibular lateral line -intersection_of: UBERON:2000259 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001520 ! ceratobranchial 1 cartilage -intersection_of: UBERON:2001520 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000492 ! coracoradialis -intersection_of: UBERON:2000492 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007006 ! lip -intersection_of: UBERON:0001833 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000752 ! fast muscle cell somite 13 -intersection_of: UBERON:2000752 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001438 ! coelom -intersection_of: UBERON:0002323 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000884 ! fast muscle cell somite 30 -intersection_of: UBERON:2000884 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005476 ! inter-ventral hypohyal joint -intersection_of: UBERON:2001846 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001651 ! hypobranchial muscle -intersection_of: UBERON:2002200 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001503 ! lamina orbitonasalis -intersection_of: UBERON:0006604 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001322 ! dorsoventral diencephalic tract -intersection_of: UBERON:2001322 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005360 ! dorsal fin lepidotrichium 6 -intersection_of: UBERON:2001759 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005339 ! nucleus of the lateral recess -intersection_of: UBERON:2005339 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000881 ! fast muscle cell somite 25 -intersection_of: UBERON:2000881 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000454 ! ventral accessory optic nucleus -intersection_of: UBERON:2000454 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005067 ! bulbus arteriosus middle layer -intersection_of: UBERON:2005067 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001582 ! non-Weberian precaudal vertebra -intersection_of: UBERON:2001582 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001263 ! ovarian follicle stage I -intersection_of: UBERON:2001263 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001561 ! hypural 2 -intersection_of: UBERON:2001561 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000469 ! otic vesicle anterior protrusion -intersection_of: UBERON:2000469 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001290 ! stomodeum -intersection_of: UBERON:0000930 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005200 ! RoL2c -intersection_of: UBERON:2005200 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000086 ! EVL -intersection_of: UBERON:0007383 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000577 ! renal portal vein -intersection_of: UBERON:0010193 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005374 ! dorsal fin distal radial 3 -intersection_of: UBERON:2005374 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001490 ! cavitated compound organ -intersection_of: UBERON:0000489 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001343 ! telencephalon diencephalon boundary -intersection_of: UBERON:2001343 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000740 ! epaxial region somite 5 -intersection_of: UBERON:2000740 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000518 ! griseum centrale -intersection_of: UBERON:0003040 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000812 ! neural crest telencephalon -intersection_of: UBERON:0003850 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001119 ! dermis -intersection_of: UBERON:0002067 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001126 ! noninvoluting endocytic marginal cell cluster -intersection_of: UBERON:2001126 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005170 ! extrahepatic duct -intersection_of: UBERON:2005170 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000153 ! rhombomere 8 -intersection_of: UBERON:0005527 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001310 ! dorsolateral placode -intersection_of: UBERON:0003067 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001096 ! immature anterior macula -intersection_of: UBERON:2001096 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000368 ! integument -intersection_of: UBERON:0002199 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005088 ! posterior mesenteric artery -intersection_of: UBERON:2005088 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000769 ! hypaxial region somite 17 -intersection_of: UBERON:2000769 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001284 ! optic fissure -intersection_of: UBERON:0005412 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001522 ! hypobranchial cartilage -intersection_of: UBERON:2001522 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001377 ! presumptive mesoderm -intersection_of: UBERON:0006603 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001079 ! blood vasculature -intersection_of: UBERON:0004537 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001663 ! cranial nerve root -intersection_of: UBERON:0006843 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001276 ! pharyngeal arch 2 skeleton -intersection_of: UBERON:0005884 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000353 ! fasciculus retroflexus -intersection_of: UBERON:0002138 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000285 ! superficial adductor -intersection_of: UBERON:2000285 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000593 ! superior reticular formation medial column -intersection_of: UBERON:2000593 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005202 ! RoM1c -intersection_of: UBERON:2005202 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001164 ! supraneural 6 -intersection_of: UBERON:2001164 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000230 ! longitudinal hypochordal -intersection_of: UBERON:2000230 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005154 ! synovial fluid -intersection_of: UBERON:0001090 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000556 ! optic chiasm -intersection_of: UBERON:0000959 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000189 ! otic region -intersection_of: UBERON:0003110 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005402 ! anal fin lepidotrichium 4 -intersection_of: UBERON:2001772 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005547 ! pectoral fin lepidotrichium 1 -intersection_of: UBERON:2001761 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005213 ! MeLr -intersection_of: UBERON:2005213 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005070 ! atrioventricular node -intersection_of: UBERON:0002352 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001406 ! kinethmoid bone -intersection_of: UBERON:2001406 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001478 ! anatomical cluster -intersection_of: UBERON:0000477 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005560 ! parasphenoid-basioccipital joint -intersection_of: UBERON:2001832 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000374 ! lagena -intersection_of: UBERON:0001844 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000837 ! sclerotome somite 6 -intersection_of: UBERON:2000837 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000555 ! opercular flap -intersection_of: UBERON:2000555 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000393 ! mesenchyme -intersection_of: UBERON:0003104 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005443 ! sensory canal -intersection_of: UBERON:2001612 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000095 ! pharyngeal arch 3-7 skeleton -intersection_of: UBERON:0005886 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001061 ! intersegmental artery -intersection_of: UBERON:0002457 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001586 ! pectoral fin radial -intersection_of: UBERON:2001586 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001205 ! Meckel's cartilage -intersection_of: UBERON:0003107 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000602 ! uroneural -intersection_of: UBERON:2000602 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001492 ! simple organ -intersection_of: UBERON:0000472 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000024 ! retinal ganglion cell layer -intersection_of: UBERON:0001792 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000856 ! somite 28 -intersection_of: UBERON:2000856 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000220 ! lateral semicircular canal -intersection_of: UBERON:0001843 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005413 ! perilymph -intersection_of: UBERON:0001845 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005406 ! anterior myodome -intersection_of: UBERON:2001927 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000235 ! magnocellular superficial pretectal nucleus -intersection_of: UBERON:2000235 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005526 ! caudal fin principal ray 16 -intersection_of: UBERON:2001728 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000920 ! muscle pioneer somite 26 -intersection_of: UBERON:2000920 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000390 ! medial preglomerular nucleus -intersection_of: UBERON:2000390 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000944 ! posterior lateral line -intersection_of: UBERON:0006334 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005445 ! supratemporal sensory canal -intersection_of: UBERON:2001630 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005411 ! common crus -intersection_of: UBERON:2005411 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001197 ! pars intermedia -intersection_of: UBERON:0002432 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001195 ! pars anterior -intersection_of: UBERON:0006964 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001245 ! epibranchial 4 bone -intersection_of: UBERON:2001245 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001145 ! tooth 3V -intersection_of: UBERON:2001145 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000430 ! secondary gustatory tract -intersection_of: UBERON:2000430 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007016 ! anterior neural plate -intersection_of: UBERON:0003056 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005090 ! hepatic portal vein -intersection_of: UBERON:0001639 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001227 ! mandibular arch skeleton -intersection_of: UBERON:0001708 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001174 ! pharyngeal epithelium -intersection_of: UBERON:0003351 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000821 ! primary neuron hindbrain -intersection_of: UBERON:2000821 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000191 ! dentary -intersection_of: UBERON:0004742 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005516 ! caudal fin principal ray 5 -intersection_of: UBERON:2001717 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005513 ! caudal fin principal ray 3 -intersection_of: UBERON:2001715 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000589 ! sulcus ypsiloniformis -intersection_of: UBERON:2000589 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005068 ! bulbus arteriosus inner layer -intersection_of: UBERON:2005068 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005143 ! dentine -intersection_of: UBERON:0001751 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001319 ! myocardium -intersection_of: UBERON:0002349 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000954 ! sclerotome somite 15 -intersection_of: UBERON:2000954 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005366 ! dorsal fin pterygiophore 3 -intersection_of: UBERON:2005366 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000879 ! fast muscle cell somite 2 -intersection_of: UBERON:2000879 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000836 ! sclerotome somite 30 -intersection_of: UBERON:2000836 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005139 ! dental mesenchyme -intersection_of: UBERON:0003856 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000730 ! somite 23 -intersection_of: UBERON:2000730 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000276 ! rostrolateral thalamic nucleus of Butler & Saidel -intersection_of: UBERON:2000276 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001268 ! sperm duct -intersection_of: UBERON:0006947 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000124 ! liver primordium -intersection_of: UBERON:0003894 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000083 ! ventral mesoderm -intersection_of: UBERON:2000083 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007005 ! hemal prezygapophysis -intersection_of: UBERON:2007005 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000312 ! mesencephalic nucleus of trigeminal nerve -intersection_of: UBERON:0001718 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007062 ! olfactory field -intersection_of: UBERON:2007062 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005194 ! RoL1 -intersection_of: UBERON:2005194 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005127 ! mid intestine epithelium -intersection_of: UBERON:0001902 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000792 ! muscle pioneer somite 16 -intersection_of: UBERON:2000792 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001539 ! basipterygium cartilage -intersection_of: UBERON:2001539 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000382 ! acellular anatomical structure -intersection_of: UBERON:0000476 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005263 ! caudal fin ventral procurrent ray -intersection_of: UBERON:2001830 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000358 ! granular layer corpus cerebelli -intersection_of: UBERON:2000358 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005010 ! mid cerebral vein -intersection_of: UBERON:2005010 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000660 ! epural -intersection_of: UBERON:2000660 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000317 ! postcranial axial skeleton -intersection_of: UBERON:0002090 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001122 ! primary germ layer -intersection_of: UBERON:0000923 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001133 ! pharyngeal pouch 5 -intersection_of: UBERON:0007126 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005157 ! tela chorioidea tectal ventricle -intersection_of: UBERON:0005286 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000824 ! roof plate rhombomere 2 -intersection_of: UBERON:0005572 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005244 ! auditory epithelial support cell -intersection_of: UBERON:2005244 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001491 ! solid compound organ -intersection_of: UBERON:0000491 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005054 ! inner optic circle -intersection_of: UBERON:2005054 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000334 ! corpus mamillare -intersection_of: UBERON:0002206 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005116 ! secondary posterior lateral line primordium -intersection_of: UBERON:2005116 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000045 ! neural crest -intersection_of: UBERON:0010170 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001242 ! ceratobranchial 2 bone -intersection_of: UBERON:2001242 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000789 ! mesoderm pectoral fin bud -intersection_of: UBERON:0003413 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000384 ! levator arcus palatini -intersection_of: UBERON:2000384 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000629 ! caudal motor nucleus -intersection_of: UBERON:2000629 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000426 ! rostral parvocellular preoptic nucleus -intersection_of: UBERON:2000426 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000123 ! liver -intersection_of: UBERON:0002107 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001533 ! pharyngobranchial cartilage -intersection_of: UBERON:2001533 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007011 ! vagal root -intersection_of: UBERON:2007011 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000647 ! dorsal caudal thalamic nucleus -intersection_of: UBERON:2000647 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001676 ! annular ligament -intersection_of: UBERON:2002141 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000899 ! hypaxial region somite 29 -intersection_of: UBERON:2000899 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005340 ! nucleus of the posterior recess -intersection_of: UBERON:2005340 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001252 ! pharyngobranchial 3 bone -intersection_of: UBERON:2001252 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000355 ! roof plate midbrain region -intersection_of: UBERON:0003299 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001479 ! lateral line nerve -intersection_of: UBERON:0008906 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000895 ! hypaxial region somite 18 -intersection_of: UBERON:2000895 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001062 ! primitive mesencephalic artery -intersection_of: UBERON:2001062 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000109 ! forebrain -intersection_of: UBERON:0001890 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005272 ! immature gonad -intersection_of: UBERON:2005272 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000511 ! extraocular musculature -intersection_of: UBERON:0001601 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000886 ! fast muscle cell somite 9 -intersection_of: UBERON:2000886 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005156 ! fibrous joint -intersection_of: UBERON:0002209 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001104 ! pharyngeal endoderm -intersection_of: UBERON:0007690 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005178 ! DoLA -intersection_of: UBERON:2005178 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001572 ! superior cervical ganglion -intersection_of: UBERON:0001989 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000250 ! opercle -intersection_of: UBERON:2000250 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001324 ! enteric musculature -intersection_of: UBERON:2001324 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001170 ! vertebra 4 -intersection_of: UBERON:2001170 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000574 ! presumptive diencephalon -intersection_of: UBERON:0006222 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005281 ! renal corpuscle -intersection_of: UBERON:0001229 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000291 ! medial octavolateralis nucleus -intersection_of: UBERON:2000291 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000194 ! dorsal accessory optic nucleus -intersection_of: UBERON:2000194 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001068 ! mesencephalic artery -intersection_of: UBERON:0001634 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000551 ! nucleus lateralis valvulae -intersection_of: UBERON:2000551 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001056 ! myotome -intersection_of: UBERON:0003082 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005372 ! dorsal fin distal radial 1 -intersection_of: UBERON:2005372 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005234 ! CoLA -intersection_of: UBERON:2005234 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005276 ! inclinator muscle -intersection_of: UBERON:2005276 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000805 ! myotome somite 23 -intersection_of: UBERON:2000805 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000969 ! slow muscle cell somite 23 -intersection_of: UBERON:2000969 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001321 ! neurocranial trabecula -intersection_of: UBERON:0005945 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000900 ! hypaxial region somite 4 -intersection_of: UBERON:2000900 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001157 ! posterior lateral line primordium -intersection_of: UBERON:2001157 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000902 ! hypural musculature -intersection_of: UBERON:2000902 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005113 ! dorsal lateral line neuromast -intersection_of: UBERON:2005113 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005554 ! pelvic fin lepidotrichium 1 -intersection_of: UBERON:2001776 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005538 ! rib of vertebra 1 -intersection_of: UBERON:2001879 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001117 ! post-vent region -intersection_of: UBERON:0007812 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000690 ! supraoptic commissure -intersection_of: UBERON:2000690 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005353 ! vertebra 10 -intersection_of: UBERON:2002150 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000893 ! floor plate rhombomere 4 -intersection_of: UBERON:0005576 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001266 ! ovarian follicle stage III -intersection_of: UBERON:2001266 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005447 ! sensory canal tubule -intersection_of: UBERON:2001933 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000085 ! apical ectodermal ridge pectoral fin bud -intersection_of: UBERON:0005421 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000085 ! apical ectodermal ridge pectoral fin bud -intersection_of: UBERON:0005421 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001484 ! superficial blastomere -intersection_of: UBERON:2001484 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000425 ! anterior lateral line nerve -intersection_of: UBERON:2000425 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000073 ! somite 5 -intersection_of: UBERON:2000073 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000438 ! parhypural -intersection_of: UBERON:2000438 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005046 ! hyaloid vessel -intersection_of: UBERON:0005492 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005355 ! dorsal fin lepidotrichium 1 -intersection_of: UBERON:2001754 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001382 ! epibranchial uncinate process -intersection_of: UBERON:2001382 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000644 ! dental plate -intersection_of: UBERON:2000644 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000668 ! cranial nerve IX -intersection_of: UBERON:0001649 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000649 ! dorsal horn spinal cord -intersection_of: UBERON:0002256 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000749 ! epaxial region somite 9 -intersection_of: UBERON:2000749 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001029 ! inner limiting membrane -intersection_of: UBERON:0001794 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005302 ! pectoral fin lymph vessel -intersection_of: UBERON:0007385 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000705 ! ventral root -intersection_of: UBERON:0002260 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000363 ! hypobranchial bone -intersection_of: UBERON:2000363 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000744 ! epaxial region somite 22 -intersection_of: UBERON:2000744 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001505 ! taenia marginalis anterior -intersection_of: UBERON:2001505 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001358 ! roof plate diencephalic region -intersection_of: UBERON:0003301 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000167 ! anal fin skeleton -intersection_of: UBERON:4000166 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000431 ! semicircular canal -intersection_of: UBERON:0001840 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001696 ! medial motor nucleus of vagal nerve -intersection_of: UBERON:2002207 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007051 ! ventral interhyoideus -intersection_of: UBERON:2007051 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001149 ! olfactory system -intersection_of: UBERON:0005725 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000523 ! inferior reticular formation -intersection_of: UBERON:2000523 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000689 ! supracommissural nucleus of ventral telencephalon -intersection_of: UBERON:2000689 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005185 ! MiD2cm -intersection_of: UBERON:2005185 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000618 ! ansulate commissure -intersection_of: UBERON:2000618 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001212 ! presumptive rhombomere 4 -intersection_of: UBERON:0007291 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005367 ! dorsal fin pterygiophore 4 -intersection_of: UBERON:2005367 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005481 ! prootic-exoccipital joint -intersection_of: UBERON:2002034 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007029 ! hindbrain neural keel -intersection_of: UBERON:2007029 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000152 ! retina -intersection_of: UBERON:0000966 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000525 ! intercalarium -intersection_of: UBERON:2000525 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001027 ! oral cavity -intersection_of: UBERON:0000167 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000889 ! floor plate rhombomere 6 -intersection_of: UBERON:0005582 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000966 ! slow muscle cell somite 18 -intersection_of: UBERON:2000966 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000346 ! dorsal tegmental nucleus -intersection_of: UBERON:0002143 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005457 ! dorsal hypohyal-urohyal joint -intersection_of: UBERON:2001847 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001279 ! branchiostegal ray 1 -intersection_of: UBERON:2001279 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001607 ! pharyngeal arch 4 -intersection_of: UBERON:0003115 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007028 ! spinal cord neural keel -intersection_of: UBERON:2007028 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005473 ! interhyal-epihyal joint -intersection_of: UBERON:2001841 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000815 ! nucleus of the medial longitudinal fasciculus medulla oblongata -intersection_of: UBERON:2000815 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005056 ! palatocerebral vein -intersection_of: UBERON:2005056 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001057 ! intersegmental vein -intersection_of: UBERON:0007679 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000345 ! dorsal rectus -intersection_of: UBERON:0006323 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001408 ! infraorbital 3 -intersection_of: UBERON:2001408 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001496 ! simple columnar epithelium -intersection_of: UBERON:0000485 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000357 ! glomerular layer -intersection_of: UBERON:0005377 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000364 ! hypural -intersection_of: UBERON:2000364 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000981 ! somite 29 -intersection_of: UBERON:2000981 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000017 ! endoderm -intersection_of: UBERON:0000925 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007063 ! neural crest hindbrain -intersection_of: UBERON:0003852 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007018 ! forebrain neural plate -intersection_of: UBERON:0009610 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000862 ! caudal fin skeleton -intersection_of: UBERON:4000167 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001178 ! non neural ectoderm -intersection_of: UBERON:0005497 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000776 ! hypaxial region somite 6 -intersection_of: UBERON:2000776 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000993 ! lateral wall neural rod -intersection_of: UBERON:2000993 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005029 ! rostral blood island -intersection_of: UBERON:2005029 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007008 ! ventral intermandibularis anterior -intersection_of: UBERON:2007008 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001407 ! infraorbital 2 -intersection_of: UBERON:2001407 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000150 ! pronephric duct -intersection_of: UBERON:0003060 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000042 ! midbrain hindbrain boundary -intersection_of: UBERON:0003052 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000890 ! floor plate spinal cord region -intersection_of: UBERON:0005723 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000138 ! otic placode -intersection_of: UBERON:0003069 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001550 ! caudal fin lepidotrichium -intersection_of: UBERON:4000174 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005251 ! microcirculatory vessel -intersection_of: UBERON:0010523 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005022 ! opercular artery -intersection_of: UBERON:2005022 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000590 ! oral region -intersection_of: UBERON:0000166 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005192 ! RoI2C -intersection_of: UBERON:2005192 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005300 ! fin lymph vessel -intersection_of: UBERON:0007384 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007003 ! ventro-caudal cluster -intersection_of: UBERON:2007003 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005226 ! upper lip -intersection_of: UBERON:0001834 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000921 ! muscle pioneer somite 29 -intersection_of: UBERON:2000921 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005492 ! sphenotic-prootic fossa -intersection_of: UBERON:2002090 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000728 ! somite 2 -intersection_of: UBERON:2000728 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001551 ! pectoral fin lepidotrichium -intersection_of: UBERON:4000175 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000963 ! slow muscle cell somite 1 -intersection_of: UBERON:2000963 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005530 ! lateral line scale -intersection_of: UBERON:2001824 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005061 ! ventricular myocardium -intersection_of: UBERON:0001083 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000411 ! posterior crista primordium -intersection_of: UBERON:2000411 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005327 ! vH ionocyte -intersection_of: UBERON:2005327 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000867 ! epaxial region somite 18 -intersection_of: UBERON:2000867 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000040 ! median fin fold -intersection_of: UBERON:2000040 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001692 ! hindbrain commissure -intersection_of: UBERON:2002199 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001124 ! dorsal fin skeleton -intersection_of: UBERON:4000168 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001442 ! upper rhombic lip -intersection_of: UBERON:0009841 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000496 ! compound organ -intersection_of: UBERON:0003103 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000245 ! nucleus of the descending root -intersection_of: UBERON:2000245 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000852 ! somite 15 -intersection_of: UBERON:2000852 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000950 ! roof plate rhombomere 3 -intersection_of: UBERON:0005575 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000349 ! epaxialis -intersection_of: UBERON:2000349 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001482 ! middle lateral line nerve -intersection_of: UBERON:2001482 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005071 ! distal conduction system -intersection_of: UBERON:0004146 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005387 ! foramen magnum -intersection_of: UBERON:0003687 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005183 ! MiD2i -intersection_of: UBERON:2005183 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001719 ! presumptive cardiac ventricle heart tube -intersection_of: UBERON:0010226 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001094 ! whole organism -intersection_of: UBERON:0000468 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005426 ! coracoid foramen -intersection_of: UBERON:2001737 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005320 ! dorsal longitudinal lymphatic vessel -intersection_of: UBERON:2005320 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000449 ! torus longitudinalis -intersection_of: UBERON:2000449 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005137 ! outer dental epithelium -intersection_of: UBERON:0006952 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005529 ! caudal fin principal ray 19 -intersection_of: UBERON:2001731 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000968 ! hypaxial region somite 21 -intersection_of: UBERON:2000968 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001228 ! pharyngeal arch 3 skeleton -intersection_of: UBERON:2001228 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001524 ! hypobranchial 1 cartilage -intersection_of: UBERON:2001524 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000252 ! optic tract -intersection_of: UBERON:0001908 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005080 ! anterior mesenteric artery -intersection_of: UBERON:2005080 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000696 ! telencephalic ventricle -intersection_of: UBERON:0002285 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000003 ! adaxial cell -intersection_of: UBERON:2000003 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000794 ! muscle pioneer somite 22 -intersection_of: UBERON:2000794 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000995 ! lateral wall rhombomere 6 -intersection_of: UBERON:0005583 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005390 ! gill ray -intersection_of: UBERON:2001856 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000331 ! commissure infima of Haller -intersection_of: UBERON:2000331 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001672 ! dorsolateral septum -intersection_of: UBERON:2002193 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001697 ! octaval nerve motor nucleus -intersection_of: UBERON:2002174 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001101 ! gustatory system -intersection_of: UBERON:0001033 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000929 ! myotome somite 21 -intersection_of: UBERON:2000929 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001562 ! hypural 3 -intersection_of: UBERON:2001562 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005334 ! lip epithelium -intersection_of: UBERON:0006913 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005083 ! ventral branch nasal ciliary artery -intersection_of: UBERON:2005083 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001017 ! myotome somite 22 -intersection_of: UBERON:2001017 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001106 ! pharyngeal pouch -intersection_of: UBERON:0004117 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001173 ! dorsal fin -intersection_of: UBERON:0003097 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001374 ! atrial myocardium -intersection_of: UBERON:0002302 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001461 ! chondrocranium cartilage -intersection_of: UBERON:0003932 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005262 ! caudal fin dorsal procurrent ray -intersection_of: UBERON:2001829 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000542 ! medial column -intersection_of: UBERON:2000542 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000617 ! anal erector -intersection_of: UBERON:2000617 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000485 ! central nucleus inferior lobe -intersection_of: UBERON:2000485 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000853 ! somite 18 -intersection_of: UBERON:2000853 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000680 ! sinoatrial valve -intersection_of: UBERON:0002086 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001598 ! basioccipital posterodorsal region -intersection_of: UBERON:2000337 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000679 ! sensory root of facial nerve -intersection_of: UBERON:0001699 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005290 ! proximal convoluted tubule -intersection_of: UBERON:0001287 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005511 ! sensory canal tubular ossicle -intersection_of: UBERON:2001932 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000229 ! lateral olfactory tract -intersection_of: UBERON:0001888 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000619 ! anterior crista -intersection_of: UBERON:0007274 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001620 ! pronephric proximal convoluted tubule -intersection_of: UBERON:0007298 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005003 ! pharyngeal vasculature -intersection_of: UBERON:0007303 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000202 ! efferent branchial artery -intersection_of: UBERON:2000202 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001282 ! adenohypophysis -intersection_of: UBERON:0002196 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001325 ! neural prezygapophysis -intersection_of: UBERON:0001079 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007049 ! adductor mandibulae -intersection_of: UBERON:0011683 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005085 ! nasal artery -intersection_of: UBERON:2005085 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005176 ! CoSA -intersection_of: UBERON:2005176 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000417 ! presumptive spinal cord -intersection_of: UBERON:0006241 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001588 ! pectoral fin distal radial -intersection_of: UBERON:2001588 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000429 ! scaphium -intersection_of: UBERON:2000429 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005523 ! caudal fin principal ray 12 -intersection_of: UBERON:2001724 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000050 ! optic vesicle -intersection_of: UBERON:0004128 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000635 ! central pretectal nucleus -intersection_of: UBERON:2000635 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000732 ! somite 3 -intersection_of: UBERON:2000732 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000395 ! muscle pioneer somite 2 -intersection_of: UBERON:2000395 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001399 ! palatoquadrate cartilage -intersection_of: UBERON:0004752 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000997 ! medial funicular nucleus trigeminal nucleus -intersection_of: UBERON:2000997 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005072 ! endocardial ring -intersection_of: UBERON:2005072 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000176 ! lateral nucleus of ventral telencephalon -intersection_of: UBERON:2002204 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005524 ! caudal fin principal ray 14 -intersection_of: UBERON:2001726 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000484 ! celiacomesenteric artery -intersection_of: UBERON:2000484 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005510 ! prootic depression -intersection_of: UBERON:2002052 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000210 ! gigantocellular part of magnocellular preoptic nucleus -intersection_of: UBERON:2000210 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005073 ! atrioventricular ring -intersection_of: UBERON:2005073 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000717 ! apical ectodermal ridge median fin fold -intersection_of: UBERON:2000717 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000059 ! postoptic commissure -intersection_of: UBERON:0003936 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001467 ! pharyngeal mesoderm -intersection_of: UBERON:2001467 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000207 ! fin musculature -intersection_of: UBERON:0007271 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000691 ! supraorbital bone -intersection_of: UBERON:2000691 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000575 ! prootic -intersection_of: UBERON:0004746 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000683 ! subcommissural organ -intersection_of: UBERON:0002139 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001189 ! vertebra -intersection_of: UBERON:0002412 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000020 ! extraembryonic structure -intersection_of: UBERON:0000478 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005207 ! RoM3l -intersection_of: UBERON:2005207 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001356 ! terminal nerve -intersection_of: UBERON:0002924 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005388 ! fossa -intersection_of: UBERON:0004704 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001222 ! copula 2 -intersection_of: UBERON:2001222 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005348 ! vertebra 6 -intersection_of: UBERON:2001980 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000018 ! epiblast -intersection_of: UBERON:0008781 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001605 ! caudal fin lower lobe -intersection_of: UBERON:2001594 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000476 ! branchiostegal ray -intersection_of: UBERON:2000476 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007054 ! pillar of the anterior semicircular canal -intersection_of: UBERON:2007054 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000685 ! superficial abductor -intersection_of: UBERON:2000685 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001660 ! telencephalic nucleus -intersection_of: UBERON:0009663 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000860 ! fast muscle cell somite 7 -intersection_of: UBERON:2000860 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000686 ! superficial grey and white zone -intersection_of: UBERON:0006791 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001471 ! posterior lateral line system -intersection_of: UBERON:2001471 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000692 ! symplectic -intersection_of: UBERON:2000692 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005525 ! caudal fin principal ray 15 -intersection_of: UBERON:2001727 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001526 ! hypobranchial 3 cartilage -intersection_of: UBERON:2001526 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000398 ! nucleus isthmi -intersection_of: UBERON:2000398 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001529 ! epibranchial 3 cartilage -intersection_of: UBERON:2001529 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000287 ! superior dorsal flexor -intersection_of: UBERON:2000287 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000674 ! interopercle -intersection_of: UBERON:2000674 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000494 ! deep white zone -intersection_of: UBERON:0006790 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000651 ! dorsal pelvic arrector -intersection_of: UBERON:2000651 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001210 ! presumptive rhombomere 6 -intersection_of: UBERON:0007293 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000868 ! epaxial region somite 20 -intersection_of: UBERON:2000868 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000907 ! lateral wall rhombomere 2 -intersection_of: UBERON:0005571 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001440 ! rhombic lip -intersection_of: UBERON:0006215 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000715 ! adductor hyohyoid -intersection_of: UBERON:2000715 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005316 ! fin fold pectoral fin bud -intersection_of: UBERON:2005316 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005030 ! dorsal ciliary vein -intersection_of: UBERON:2005030 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000694 ! ceratobranchial 5 tooth -intersection_of: UBERON:2000694 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000275 ! rostral tegmental nucleus -intersection_of: UBERON:0002438 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005625 ! hypophyseal fenestra -intersection_of: UBERON:2005269 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000712 ! I-YSL -intersection_of: UBERON:2000712 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001470 ! anterior lateral line -intersection_of: UBERON:2001470 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000380 ! lateral lemniscus nucleus -intersection_of: UBERON:0006840 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001518 ! ceratobranchial 3 cartilage -intersection_of: UBERON:2001518 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001711 ! climbing fiber -intersection_of: UBERON:2002185 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000543 ! medial longitudinal fasciculus -intersection_of: UBERON:0002309 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005349 ! vertebra 7 -intersection_of: UBERON:2001981 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005091 ! hepatic sinusoid -intersection_of: UBERON:0001281 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000514 ! frontal bone -intersection_of: UBERON:0004866 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001277 ! anterior chamber swim bladder -intersection_of: UBERON:2001277 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001163 ! supraneural 7 -intersection_of: UBERON:2001163 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000185 ! commissura rostral, pars ventralis -intersection_of: UBERON:2000185 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000609 ! ventrolateral nucleus -intersection_of: UBERON:2000609 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001076 ! intestinal bulb -intersection_of: UBERON:2001076 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000320 ! caudal commissure -intersection_of: UBERON:0000936 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001293 ! posterior kidney -intersection_of: UBERON:2001293 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001668 ! central nucleus of ventral telencephalon -intersection_of: UBERON:2002180 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000488 ! ceratobranchial bone -intersection_of: UBERON:2000488 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000010 ! cardiovascular system -intersection_of: UBERON:0004535 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001388 ! epithelial mesenchymal boundary -intersection_of: UBERON:2001388 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001662 ! preglomerular nucleus -intersection_of: UBERON:2002226 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001616 ! atrioventricular canal endocardium -intersection_of: UBERON:0003930 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007064 ! mandibular neural crest -intersection_of: UBERON:0007098 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007002 ! ventro-rostral cluster -intersection_of: UBERON:2007002 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000328 ! cephalic musculature -intersection_of: UBERON:0002376 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001652 ! head muscle -intersection_of: UBERON:0002376 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000785 ! lateral wall telencephalic region -intersection_of: UBERON:0005561 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005025 ! dorsal longitudinal anastomotic vessel -intersection_of: UBERON:2005025 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000443 ! supraorbital lateral line -intersection_of: UBERON:0003090 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000759 ! fast muscle cell somite 5 -intersection_of: UBERON:2000759 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001211 ! presumptive rhombomere 5 -intersection_of: UBERON:0007292 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005493 ! recessus lateralis -intersection_of: UBERON:2001799 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000983 ! somite 9 -intersection_of: UBERON:2000983 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000269 ! inferior ventral flexor -intersection_of: UBERON:2000269 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000100 ! cerebellum -intersection_of: UBERON:0002037 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000314 ! anterior semicircular canal -intersection_of: UBERON:0001841 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005017 ! primordial midbrain channel -intersection_of: UBERON:2005017 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005103 ! presumptive ventral fin fold -intersection_of: UBERON:2005103 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007061 ! epibranchial field -intersection_of: UBERON:2007061 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005151 ! gold iridophore -intersection_of: UBERON:2005151 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000833 ! sclerotome somite 22 -intersection_of: UBERON:2000833 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000848 ! slow muscle cell somite 6 -intersection_of: UBERON:2000848 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000173 ! bulbus arteriosus -intersection_of: UBERON:0004152 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001633 ! perichordal connective tissue -intersection_of: UBERON:0007862 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005112 ! dorsal lateral line -intersection_of: UBERON:0003095 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000008 ! brain -intersection_of: UBERON:0000955 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000081 ! trunk mesenchyme -intersection_of: UBERON:0005256 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000550 ! naris -intersection_of: UBERON:0005928 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001223 ! basibranchial 1 -intersection_of: UBERON:2001223 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005131 ! parietal peritoneum -intersection_of: UBERON:0001366 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005169 ! intrahepatic bile duct -intersection_of: UBERON:0003704 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001134 ! pharyngeal pouch 4 -intersection_of: UBERON:0007125 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007014 ! anterior presumptive neural plate -intersection_of: UBERON:2007014 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000125 ! mandibular lateral line neuromast -intersection_of: UBERON:2000125 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001283 ! pupil -intersection_of: UBERON:0001771 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005115 ! primary posterior lateral line primordium -intersection_of: UBERON:2005115 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001486 ! epithelium -intersection_of: UBERON:0000483 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000459 ! ventromedial thalamic nucleus -intersection_of: UBERON:2000459 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005637 ! intercostal ligament -intersection_of: UBERON:2001972 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001387 ! pelvic fin skeleton -intersection_of: UBERON:0010711 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001259 ! forebrain ventricle -intersection_of: UBERON:2001259 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001596 ! joint -intersection_of: UBERON:0000982 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000802 ! myotome somite 15 -intersection_of: UBERON:2000802 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000522 ! inferior hyohyoid -intersection_of: UBERON:2000522 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000372 ! interpeduncular nucleus medulla oblongata -intersection_of: UBERON:2000372 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005503 ! lateral ethmoid-ectopterygoid ligament -intersection_of: UBERON:2001685 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001599 ! os suspensorium medial flange -intersection_of: UBERON:2002214 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001622 ! pronephric distal early tubule -intersection_of: UBERON:0007308 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000658 ! epibranchial bone -intersection_of: UBERON:2000658 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000282 ! sensory system -intersection_of: UBERON:0001032 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005386 ! foramen -intersection_of: UBERON:0005744 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000540 ! magnocellular octaval nucleus -intersection_of: UBERON:2000540 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000159 ! tectal ventricle -intersection_of: UBERON:0002289 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000612 ! protractor hyoidei -intersection_of: UBERON:0011151 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001725 ! immature Schwann cell -intersection_of: UBERON:2002203 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005087 ! pectoral vein -intersection_of: UBERON:2005087 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000637 ! claustrum cartilage -intersection_of: UBERON:2000637 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001576 ! sympathetic nervous system -intersection_of: UBERON:0000013 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000716 ! afferent branchial artery -intersection_of: UBERON:2000716 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000822 ! rhombomere 2 -intersection_of: UBERON:0005569 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000106 ! extension -intersection_of: UBERON:2000106 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000896 ! hypaxial region somite 20 -intersection_of: UBERON:2000896 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000849 ! fast muscle cell somite 4 -intersection_of: UBERON:2000849 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005089 ! swim bladder artery -intersection_of: UBERON:2005089 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001418 ! dorsal fin lepidotrichium -intersection_of: UBERON:4000177 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000420 ! renal artery -intersection_of: UBERON:0001184 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000595 ! supraoccipital -intersection_of: UBERON:0004747 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000082 ! vein -intersection_of: UBERON:0001638 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007065 ! hyoid neural crest -intersection_of: UBERON:0007099 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000240 ! metapterygoid -intersection_of: UBERON:2000240 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001148 ! tooth 1D -intersection_of: UBERON:2001148 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000136 ! otic lateral line neuromast -intersection_of: UBERON:2000136 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000906 ! lateral wall midbrain region -intersection_of: UBERON:0005495 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000108 ! fin -intersection_of: UBERON:0008897 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001281 ! branchiostegal ray 2 -intersection_of: UBERON:2001281 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000702 ! ventral horn spinal cord -intersection_of: UBERON:0002257 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000011 ! caudal artery -intersection_of: UBERON:0003086 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000614 ! abductor profundus -intersection_of: UBERON:2000614 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005519 ! caudal fin principal ray 8 -intersection_of: UBERON:2001720 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005220 ! larval melanophore stripe -intersection_of: UBERON:2005220 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001294 ! epibranchial placode -intersection_of: UBERON:0003078 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001435 ! lateral wall neural tube -intersection_of: UBERON:0005496 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005336 ! presumptive swim bladder -intersection_of: UBERON:2005336 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001044 ! sclerotome somite 3 -intersection_of: UBERON:2001044 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000505 ! dorsal telencephalon -intersection_of: UBERON:0000203 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007032 ! midbrain neural rod -intersection_of: UBERON:2007032 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001285 ! intersegmental vessel -intersection_of: UBERON:2001285 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000481 ! caudal preglomerular nucleus -intersection_of: UBERON:2000481 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000811 ! neural crest diencephalon -intersection_of: UBERON:0003851 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005051 ! communicating vessel palatocerebral artery -intersection_of: UBERON:2005051 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005287 ! lamina rara interna -intersection_of: UBERON:0005788 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000482 ! caudal tuberal nucleus -intersection_of: UBERON:2000482 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000756 ! fast muscle cell somite 24 -intersection_of: UBERON:2000756 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005107 ! pectoral lymphatic vessel -intersection_of: UBERON:0001425 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001022 ! myotome somite 9 -intersection_of: UBERON:2001022 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001070 ! presumptive pronephric mesoderm -intersection_of: UBERON:0007297 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005144 ! ampullary nerve -intersection_of: UBERON:2005144 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001155 ! enteric nervous system -intersection_of: UBERON:0002005 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005164 ! bile ductule -intersection_of: UBERON:0004058 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000088 ! YSL -intersection_of: UBERON:2000088 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000497 ! pelvic adductor profundus -intersection_of: UBERON:2000497 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000451 ! upper oral valve -intersection_of: UBERON:2000451 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000829 ! sclerotome somite 11 -intersection_of: UBERON:2000829 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000943 ! pectoral fin skeleton -intersection_of: UBERON:0010710 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000130 ! olfactory pit -intersection_of: UBERON:0001707 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001393 ! parapophysis 2 -intersection_of: UBERON:2001393 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005368 ! dorsal fin pterygiophore 5 -intersection_of: UBERON:2005368 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000713 ! abducens motor nucleus -intersection_of: UBERON:0002682 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005501 ! interopercular-mandibular ligament -intersection_of: UBERON:2001687 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000126 ! centrum -intersection_of: UBERON:0001075 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000956 ! sclerotome somite 20 -intersection_of: UBERON:2000956 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000936 ! dorsal fin distal radial -intersection_of: UBERON:2000936 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001459 ! pelvic fin cartilage -intersection_of: UBERON:0007391 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000471 ! atrium -intersection_of: UBERON:0002081 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005318 ! lymph node -intersection_of: UBERON:0000029 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000491 ! commissure of the caudal tuberculum -intersection_of: UBERON:2000491 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000874 ! epaxial region somite 7 -intersection_of: UBERON:2000874 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000672 ! hyomandibula -intersection_of: UBERON:0011606 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000808 ! myotome somite 29 -intersection_of: UBERON:2000808 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005187 ! MiM1 -intersection_of: UBERON:2005187 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001247 ! epibranchial 3 bone -intersection_of: UBERON:2001247 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001508 ! trabecula communis -intersection_of: UBERON:2001508 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000303 ! female organism -intersection_of: UBERON:0003100 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005425 ! serous membrane -intersection_of: UBERON:0000042 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005527 ! caudal fin principal ray 17 -intersection_of: UBERON:2001729 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000909 ! lateral wall rhombomere 8 -intersection_of: UBERON:0005589 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000036 ! liver and biliary system -intersection_of: UBERON:0002423 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000797 ! muscle pioneer somite 28 -intersection_of: UBERON:2000797 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001371 ! pancreatic system -intersection_of: UBERON:2001371 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000725 ! somite 11 -intersection_of: UBERON:2000725 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005057 ! epicardium -intersection_of: UBERON:0002348 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005285 ! glomerular basement membrane -intersection_of: UBERON:0005777 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001345 ! interrenal gland -intersection_of: UBERON:0006856 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005191 ! MiV2 -intersection_of: UBERON:2005191 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005198 ! RoL2 -intersection_of: UBERON:2005198 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000840 ! slow muscle cell somite 11 -intersection_of: UBERON:2000840 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005053 ! nasal ciliary artery -intersection_of: UBERON:2005053 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001078 ! thymus -intersection_of: UBERON:0002370 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000636 ! cerebellar crest -intersection_of: UBERON:2000636 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005350 ! vertebra 8 -intersection_of: UBERON:2001982 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001006 ! muscle pioneer somite 21 -intersection_of: UBERON:2001006 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001060 ! basidorsal -intersection_of: UBERON:2001060 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001473 ! deep blastomere -intersection_of: UBERON:2001473 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005412 ! transverse canal -intersection_of: UBERON:2005412 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001454 ! pelvic fin field -intersection_of: UBERON:0005730 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007026 ! forebrain neural keel -intersection_of: UBERON:2007026 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000293 ! synencephalon -intersection_of: UBERON:2000293 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000099 ! brain vasculature -intersection_of: UBERON:0005284 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005055 ! median palatocerebral vein -intersection_of: UBERON:2005055 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001112 ! granulosa cell layer -intersection_of: UBERON:0005170 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000548 ! musculature system -intersection_of: UBERON:0001015 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001348 ! stratum marginale -intersection_of: UBERON:2001348 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005250 ! capillary -intersection_of: UBERON:0001982 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001554 ! lepidotrichium -intersection_of: UBERON:4000172 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000321 ! caudal levator -intersection_of: UBERON:2000321 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001265 ! ovarian follicle stage II -intersection_of: UBERON:2001265 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001198 ! adenohypophyseal placode -intersection_of: UBERON:0009122 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001452 ! zone of polarizing activity pelvic fin bud -intersection_of: UBERON:0005416 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001015 ! myotome somite 17 -intersection_of: UBERON:2001015 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001229 ! pharyngeal arch 7 skeleton -intersection_of: UBERON:2001229 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000455 ! ventral flexor -intersection_of: UBERON:2000455 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001455 ! scapulocoracoid -intersection_of: UBERON:0004753 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005188 ! MiR1 -intersection_of: UBERON:2005188 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000341 ! dorsal flexor -intersection_of: UBERON:2000341 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000499 ! dorsal arrector -intersection_of: UBERON:2000499 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007048 ! ventral intermandibularis posterior -intersection_of: UBERON:2007048 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000165 ! inferior lobe -intersection_of: UBERON:2000165 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005286 ! lamina densa -intersection_of: UBERON:0005787 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000563 ! pectoral fin musculature -intersection_of: UBERON:0007269 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000695 ! labial cavity -intersection_of: UBERON:2000695 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001209 ! presumptive rhombomere 7 -intersection_of: UBERON:0007294 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000009 ! cardiac ventricle -intersection_of: UBERON:0002082 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000215 ! inferior olive -intersection_of: UBERON:0002127 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001480 ! dorsal anterior lateral line nerve -intersection_of: UBERON:2001480 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001024 ! trunk neural crest -intersection_of: UBERON:0003083 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000615 ! adductor arcus palatini -intersection_of: UBERON:2000615 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000326 ! caudal vertebra -intersection_of: UBERON:0001095 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005291 ! proximal straight tubule -intersection_of: UBERON:0001290 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000807 ! myotome somite 26 -intersection_of: UBERON:2000807 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001214 ! presumptive rhombomere 8 -intersection_of: UBERON:0007295 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000502 ! dorsal motor nucleus trigeminal nerve -intersection_of: UBERON:2000502 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000199 ! dorsal periventricular hypothalamus -intersection_of: UBERON:2000199 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000445 ! optic tectum -intersection_of: UBERON:0001945 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000221 ! internal levator -intersection_of: UBERON:2000221 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000403 ! ovary -intersection_of: UBERON:0000992 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001346 ! interrenal primordium -intersection_of: UBERON:0006857 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000570 ! optic primordium -intersection_of: UBERON:0003071 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001674 ! mesonephric podocyte -intersection_of: UBERON:2002208 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001115 ! trunk -intersection_of: UBERON:0002100 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001419 ! dorsal fin pterygiophore -intersection_of: UBERON:2001419 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000181 ! caudal zone of dorsal telencephalon -intersection_of: UBERON:2000181 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007001 ! dorso-rostral cluster -intersection_of: UBERON:2007001 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000985 ! ventral rhombencephalic commissure medulla oblongata -intersection_of: UBERON:2000985 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001417 ! pelvic radial 1 -intersection_of: UBERON:2001417 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001564 ! hypural 5 -intersection_of: UBERON:2001564 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000578 ! ceratohyal bone -intersection_of: UBERON:0011611 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000622 ! barbel -intersection_of: UBERON:2000622 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000180 ! caudal vein -intersection_of: UBERON:0003088 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000804 ! myotome somite 20 -intersection_of: UBERON:2000804 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000261 ! pharyngohyoid -intersection_of: UBERON:2000261 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005239 ! micropylar cell -intersection_of: UBERON:2005239 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005211 ! MeL -intersection_of: UBERON:2005211 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005082 ! dorsal branch nasal ciliary artery -intersection_of: UBERON:2005082 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005380 ! dorsal fin proximal radial 3 -intersection_of: UBERON:2005380 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000161 ! third ventricle -intersection_of: UBERON:0002286 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001500 ! auditory capsule -intersection_of: UBERON:0005410 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000641 ! cranial nerve -intersection_of: UBERON:0001785 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005040 ! posterior lateral mesoderm -intersection_of: UBERON:2005040 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000639 ! commissure of the secondary gustatory nucleus -intersection_of: UBERON:2000639 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001098 ! immature hair cell anterior macula -intersection_of: UBERON:2001098 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000500 ! dorsal erector -intersection_of: UBERON:2000500 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001708 ! cerebellar white matter -intersection_of: UBERON:0002317 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005628 ! posttemporal fossa -intersection_of: UBERON:2001753 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001535 ! median fin cartilage -intersection_of: UBERON:2001535 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001357 ! alar plate midbrain region -intersection_of: UBERON:2001357 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000300 ! ventral hypohyal bone -intersection_of: UBERON:2000300 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000119 ! retinal inner nuclear layer -intersection_of: UBERON:0001791 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001499 ! esophageal epithelium -intersection_of: UBERON:0001976 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000427 ! rostral thalamic nucleus -intersection_of: UBERON:0002788 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001590 ! dermal bone -intersection_of: UBERON:0008907 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001334 ! presumptive enteric nervous system -intersection_of: UBERON:0006600 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005556 ! pelvic fin lepidotrichium 4 -intersection_of: UBERON:2001779 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005500 ! prootic bulla -intersection_of: UBERON:2002111 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001166 ! supraneural 9 -intersection_of: UBERON:2001166 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001307 ! pharyngeal musculature -intersection_of: UBERON:0004467 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005304 ! caudal fin blood vessel -intersection_of: UBERON:2005304 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000703 ! ventral motor nucleus trigeminal nerve -intersection_of: UBERON:2000703 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000436 ! spleen -intersection_of: UBERON:0002106 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000859 ! specialized hemal arch and spine -intersection_of: UBERON:2000859 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000796 ! muscle pioneer somite 25 -intersection_of: UBERON:2000796 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005240 ! Kolmer-Agduhr neuron -intersection_of: UBERON:2005240 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005005 ! aortic arch 1 -intersection_of: UBERON:0003118 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000041 ! mesoderm -intersection_of: UBERON:0000926 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000834 ! sclerotome somite 25 -intersection_of: UBERON:2000834 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001297 ! vagal placode 1 -intersection_of: UBERON:2001297 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001234 ! hypobranchial 4 bone -intersection_of: UBERON:2001234 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000227 ! lateral hypothalamic nucleus -intersection_of: UBERON:0001937 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000232 ! otic vesicle lateral protrusion -intersection_of: UBERON:2000232 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000391 ! medial zone of dorsal telencephalon -intersection_of: UBERON:2000391 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001069 ! ventral fin fold -intersection_of: UBERON:2001069 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001555 ! epibranchial ganglion -intersection_of: UBERON:0009127 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005159 ! tela chorioidea third ventricle -intersection_of: UBERON:0005288 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005109 ! jugular lymphatic vessel -intersection_of: UBERON:0001426 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005258 ! lymph vessel endothelium -intersection_of: UBERON:0002042 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005454 ! subtemporal fossa -intersection_of: UBERON:2001974 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005319 ! intersegmental lymph vessel -intersection_of: UBERON:2005319 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001629 ! perichordal bone -intersection_of: UBERON:0008909 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001055 ! pronephric duct opening -intersection_of: UBERON:2001055 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005648 ! mesethmoid-lateral ethmoid joint -intersection_of: UBERON:2001679 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000704 ! ventral pelvic arrector -intersection_of: UBERON:2000704 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005376 ! dorsal fin distal radial 5 -intersection_of: UBERON:2005376 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005521 ! caudal fin principal ray 10 -intersection_of: UBERON:2001722 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001584 ! caudal fin procurrent ray -intersection_of: UBERON:2001584 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000028 ! heart primordium -intersection_of: UBERON:0003084 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000903 ! interpeduncular nucleus tegmentum -intersection_of: UBERON:0002145 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001591 ! endochondral bone -intersection_of: UBERON:0002513 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001619 ! optic fiber layer -intersection_of: UBERON:0001793 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005506 ! vertebra 6 - vertebra 7 joint -intersection_of: UBERON:2002055 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000643 ! rostral cerebellar tract -intersection_of: UBERON:2000643 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001577 ! premaxilla ascending process -intersection_of: UBERON:2001577 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001081 ! thyroid primordium -intersection_of: UBERON:0003091 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005117 ! anterior lateral line primordium -intersection_of: UBERON:2005117 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000316 ! basihyal bone -intersection_of: UBERON:0011618 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000183 ! central pretectum -intersection_of: UBERON:2000183 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001340 ! nucleus of the tract of the postoptic commissure -intersection_of: UBERON:2001340 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000149 ! primitive heart tube -intersection_of: UBERON:0005498 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005039 ! anterior lateral mesoderm -intersection_of: UBERON:2005039 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000919 ! muscle pioneer somite 23 -intersection_of: UBERON:2000919 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001414 ! occipital region -intersection_of: UBERON:0005902 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001220 ! copula -intersection_of: UBERON:2001220 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001066 ! neural arch -intersection_of: UBERON:0003861 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000274 ! rostral octaval nucleus -intersection_of: UBERON:2000274 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000866 ! epaxial region somite 15 -intersection_of: UBERON:2000866 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000128 ! midbrain -intersection_of: UBERON:0001891 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000774 ! hypaxial region somite 28 -intersection_of: UBERON:2000774 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001593 ! quadrate ventral process -intersection_of: UBERON:2000224 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001647 ! dorsal fin radial -intersection_of: UBERON:2001672 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001498 ! simple squamous epithelium -intersection_of: UBERON:0000487 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000971 ! slow muscle cell somite 29 -intersection_of: UBERON:2000971 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001589 ! propterygium -intersection_of: UBERON:2001589 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001602 ! intercalarium ascending process -intersection_of: UBERON:2001548 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000005 ! artery -intersection_of: UBERON:0001637 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000249 ! cranial nerve I -intersection_of: UBERON:0001579 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000298 ! vent -intersection_of: UBERON:2000298 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001617 ! otolith -intersection_of: UBERON:0002280 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001083 ! ventricular zone -intersection_of: UBERON:0003053 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001232 ! pharyngeal arch 5 skeleton -intersection_of: UBERON:2001232 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001278 ! posterior chamber swim bladder -intersection_of: UBERON:2001278 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000195 ! dorsal depressor -intersection_of: UBERON:2000195 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000982 ! somite 6 -intersection_of: UBERON:2000982 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000343 ! dorsal nucleus of ventral telencephalon -intersection_of: UBERON:2000343 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000490 ! commissura cerebelli -intersection_of: UBERON:0006847 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001604 ! caudal fin upper lobe -intersection_of: UBERON:2001593 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001587 ! pectoral fin proximal radial -intersection_of: UBERON:2001587 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001107 ! internal gill bud -intersection_of: UBERON:0008894 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001709 ! Purkinje cell layer valvula cerebelli -intersection_of: UBERON:2002241 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000404 ! paracommissural nucleus -intersection_of: UBERON:2000404 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005190 ! MiV1 -intersection_of: UBERON:2005190 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001049 ! slow muscle cell somite 16 -intersection_of: UBERON:2001049 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001215 ! thalamus -intersection_of: UBERON:0001897 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000594 ! supracleithrum -intersection_of: UBERON:2000594 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000212 ! granular eminence -intersection_of: UBERON:2000212 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000339 ! digestive system -intersection_of: UBERON:0001007 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005415 ! inner ear foramen -intersection_of: UBERON:2005415 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000322 ! caudal octaval nucleus -intersection_of: UBERON:2000322 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000047 ! peripheral olfactory organ -intersection_of: UBERON:0000004 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001612 ! pharyngeal arch 1 -intersection_of: UBERON:0004362 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000007 ! blood -intersection_of: UBERON:0000178 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000611 ! visceromotor column -intersection_of: UBERON:2000611 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001366 ! tract of the postoptic commissure -intersection_of: UBERON:2001366 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005352 ! vertebra 12 -intersection_of: UBERON:2002152 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005533 ! branched caudal fin ray -intersection_of: UBERON:2002062 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001426 ! posterior naris -intersection_of: UBERON:2001426 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000959 ! sclerotome somite 26 -intersection_of: UBERON:2000959 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000688 ! olfactory support cell -intersection_of: UBERON:2000688 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001271 ! neurohypophysis -intersection_of: UBERON:0002198 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000093 ! blastomere -intersection_of: UBERON:2000093 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005597 ! median fin -intersection_of: UBERON:4000162 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001396 ! parapophysis/rib -intersection_of: UBERON:2001396 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000676 ! sagitta -intersection_of: UBERON:2000676 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000709 ! vestibulo-spinal tract -intersection_of: UBERON:0002768 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000441 ! suprachiasmatic nucleus -intersection_of: UBERON:0002034 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000388 ! medial caudal lobe -intersection_of: UBERON:2000388 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005260 ! fenestrated blood vessel endothelium -intersection_of: UBERON:2005260 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000761 ! basal plate midbrain region -intersection_of: UBERON:0010285 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001677 ! floor plate midbrain region -intersection_of: UBERON:0003307 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000313 ! anal inclinator -intersection_of: UBERON:2000313 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005027 ! posterior cerebral vein -intersection_of: UBERON:2005027 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000214 ! hypobranchial vessel -intersection_of: UBERON:2000214 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000557 ! preural 1 vertebra -intersection_of: UBERON:2000557 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001002 ! peripheral motor axons -intersection_of: UBERON:2001002 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000553 ! oculomotor nucleus -intersection_of: UBERON:0001715 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000174 ! cerebellovestibular tract -intersection_of: UBERON:2000174 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001261 ! ventricular system -intersection_of: UBERON:0005281 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001019 ! myotome somite 28 -intersection_of: UBERON:2001019 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005321 ! vascular smooth muscle -intersection_of: UBERON:0004237 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000582 ! saccus dorsalis -intersection_of: UBERON:2000582 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001338 ! intestine -intersection_of: UBERON:0000160 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005375 ! dorsal fin distal radial 4 -intersection_of: UBERON:2005375 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000719 ! slow muscle cell somite 21 -intersection_of: UBERON:2000719 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005470 ! inter-coracoid joint -intersection_of: UBERON:2002040 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001168 ! vertebra 2 -intersection_of: UBERON:0001093 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000875 ! facial neural crest -intersection_of: UBERON:0007681 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005069 ! sinoatrial node -intersection_of: UBERON:0002351 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000770 ! hypaxial region somite 2 -intersection_of: UBERON:2000770 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005486 ! quadrate-metapterygoid joint -intersection_of: UBERON:2001803 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000898 ! hypaxial region somite 26 -intersection_of: UBERON:2000898 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005465 ! ceratohyal-branchiostegal ray joint -intersection_of: UBERON:2001850 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000006 ! ball -intersection_of: UBERON:2000006 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005293 ! distal early tubule -intersection_of: UBERON:0006337 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000344 ! middle lateral line -intersection_of: UBERON:0003096 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000263 ! precaudal vertebra -intersection_of: UBERON:0011677 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000948 ! rhombomere 3 -intersection_of: UBERON:0005507 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007057 ! ocular blood vessel -intersection_of: UBERON:0002203 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005206 ! RoM2m -intersection_of: UBERON:2005206 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000206 ! facial nerve motor nucleus -intersection_of: UBERON:0003011 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005325 ! integument ionocyte -intersection_of: UBERON:2005325 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001082 ! chordo neural hinge -intersection_of: UBERON:0007097 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001129 ! pharyngeal pouches 2-6 -intersection_of: UBERON:2001129 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005099 ! ray vein -intersection_of: UBERON:2005099 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000272 ! respiratory system -intersection_of: UBERON:0001004 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005408 ! maxillary barbel -intersection_of: UBERON:2001938 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001053 ! primitive internal carotid artery -intersection_of: UBERON:2001053 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001095 ! immature macula -intersection_of: UBERON:2001095 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000733 ! somite 7 -intersection_of: UBERON:2000733 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000242 ! male organism -intersection_of: UBERON:0003101 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001519 ! ceratobranchial 4 cartilage -intersection_of: UBERON:2001519 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007015 ! posterior presumptive neural plate -intersection_of: UBERON:2007015 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000847 ! slow muscle cell somite 30 -intersection_of: UBERON:2000847 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001718 ! presumptive atrium heart tube -intersection_of: UBERON:0010227 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000979 ! hypaxial region somite 24 -intersection_of: UBERON:2000979 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001446 ! choroid plexus fourth ventricle -intersection_of: UBERON:0002290 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0006000 ! intermediate hypothalamus -intersection_of: UBERON:0002555 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001628 ! replacement bone -intersection_of: UBERON:0012075 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007023 ! posterior neural keel -intersection_of: UBERON:2007023 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001416 ! pelvic radial 3 -intersection_of: UBERON:2001416 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000739 ! epaxial region somite 11 -intersection_of: UBERON:2000739 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001506 ! tectum synoticum -intersection_of: UBERON:0006605 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000068 ! proneural cluster -intersection_of: UBERON:2000068 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000735 ! hemal postzygapophysis -intersection_of: UBERON:2000735 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001434 ! floor plate neural tube -intersection_of: UBERON:0003306 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005626 ! hyomandibula-opercle joint -intersection_of: UBERON:2005265 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000371 ! internal pharyngoclavicularis -intersection_of: UBERON:2000371 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000048 ! olfactory placode -intersection_of: UBERON:0003050 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005016 ! aortic arch 6 -intersection_of: UBERON:0003123 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000527 ! pharyngobranchial bone -intersection_of: UBERON:2000527 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005279 ! enteric circular muscle -intersection_of: UBERON:2005279 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000396 ! nervous system -intersection_of: UBERON:0001016 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001571 ! postovulatory follicle -intersection_of: UBERON:2001571 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005043 ! nevus -intersection_of: UBERON:1000010 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001035 ! roof plate rhombomere 8 -intersection_of: UBERON:0005590 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007035 ! spinal cord neural rod -intersection_of: UBERON:2007035 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000225 ! lateral crista primordium -intersection_of: UBERON:2000225 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001136 ! hypodermis -intersection_of: UBERON:0002072 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001190 ! Weberian vertebra -intersection_of: UBERON:2001190 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000608 ! ventral transverse -intersection_of: UBERON:2000608 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000255 ! paraxial mesoderm -intersection_of: UBERON:0003077 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000292 ! surface structure -intersection_of: UBERON:0003102 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005023 ! hematopoietic system -intersection_of: UBERON:0002390 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000755 ! fast muscle cell somite 21 -intersection_of: UBERON:2000755 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000610 ! vertical myoseptum -intersection_of: UBERON:2000610 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001643 ! anatomical space -intersection_of: UBERON:0000464 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001565 ! oocyte stage II -intersection_of: UBERON:2001565 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001509 ! sclerotic cartilage -intersection_of: UBERON:0010289 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001226 ! basibranchial 4 -intersection_of: UBERON:2001226 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000606 ! ventral oblique branchial muscle -intersection_of: UBERON:2000606 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001191 ! supraneural 2 -intersection_of: UBERON:2001191 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000256 ! pars subcommissuralis of ventral telencephalon -intersection_of: UBERON:2000256 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001272 ! palatoquadrate arch -intersection_of: UBERON:0011085 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005365 ! dorsal fin pterygiophore 2 -intersection_of: UBERON:2005365 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001264 ! ovarian follicle stage IV -intersection_of: UBERON:0003982 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001717 ! pillar of the semicircular canal -intersection_of: UBERON:2002223 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005346 ! extrapancreatic duct -intersection_of: UBERON:2005346 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001280 ! branchiostegal ray 3 -intersection_of: UBERON:2001280 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001111 ! zona radiata -intersection_of: UBERON:0000086 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001241 ! ceratobranchial 3 bone -intersection_of: UBERON:2001241 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001497 ! simple cuboidal epithelium -intersection_of: UBERON:0000484 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001236 ! hypobranchial 2 bone -intersection_of: UBERON:2001236 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000110 ! fourth ventricle -intersection_of: UBERON:0002422 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001213 ! presumptive rhombomere 3 -intersection_of: UBERON:0007290 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000140 ! pancreas -intersection_of: UBERON:0001264 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007060 ! dorsolateral field -intersection_of: UBERON:2007060 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005632 ! preopercle vertical limb-hyomandibula joint -intersection_of: UBERON:2005278 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005434 ! tooth cusp -intersection_of: UBERON:0006844 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001631 ! notochordal ossification -intersection_of: UBERON:2001640 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001422 ! hyosymplectic cartilage -intersection_of: UBERON:0011607 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005252 ! lymphatic capillary -intersection_of: UBERON:0006842 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000487 ! central zone of dorsal telencephalon -intersection_of: UBERON:2000487 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000122 ! lens placode -intersection_of: UBERON:0003073 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001144 ! tooth 2V -intersection_of: UBERON:2001144 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005264 ! primordial ligament -intersection_of: UBERON:2001828 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001558 ! pronephric tubule -intersection_of: UBERON:0005310 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005314 ! blood vessel -intersection_of: UBERON:0001981 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000307 ! vestibulolateralis lobe -intersection_of: UBERON:2000307 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000172 ! branchial muscle -intersection_of: UBERON:0000933 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001267 ! cranial vasculature -intersection_of: UBERON:0002200 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001397 ! post-Weberian supraneural -intersection_of: UBERON:2001397 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001375 ! ventriculo bulbo valve -intersection_of: UBERON:0004149 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000569 ! presumptive hindbrain -intersection_of: UBERON:0007277 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001654 ! opercular cavity -intersection_of: UBERON:2002154 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000663 ! extrascapula -intersection_of: UBERON:2000663 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000362 ! hypaxialis -intersection_of: UBERON:2000362 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000190 ! ganglion -intersection_of: UBERON:0000045 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001428 ! olfactory rosette -intersection_of: UBERON:2001428 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005414 ! endolymph -intersection_of: UBERON:0001852 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001034 ! roof plate rhombomere 4 -intersection_of: UBERON:0005578 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001449 ! mesenchyme pelvic fin -intersection_of: UBERON:0003935 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000846 ! slow muscle cell somite 28 -intersection_of: UBERON:2000846 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000354 ! gill -intersection_of: UBERON:0011150 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000831 ! sclerotome somite 17 -intersection_of: UBERON:2000831 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000400 ! occipital lateral line -intersection_of: UBERON:0003093 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001657 ! supraoptic tract -intersection_of: UBERON:2002244 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005032 ! optic vein -intersection_of: UBERON:2005032 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005608 ! frontal-parietal joint -intersection_of: UBERON:2005255 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000146 ! presumptive brain -intersection_of: UBERON:0006238 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000910 ! medial forebrain bundle telencephalon -intersection_of: UBERON:2000910 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005301 ! pectoral fin blood vessel -intersection_of: UBERON:0007300 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001288 ! renal glomerulus -intersection_of: UBERON:0000074 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000217 ! inner ear -intersection_of: UBERON:0001846 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005129 ! mesentery -intersection_of: UBERON:0007826 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000290 ! sphenoid region -intersection_of: UBERON:0003111 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000839 ! sclerotome somite 9 -intersection_of: UBERON:2000839 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001523 ! hypobranchial 4 cartilage -intersection_of: UBERON:2001523 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005485 ! quadrate-hyomandibula joint -intersection_of: UBERON:2001801 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000435 ! cranial nerve II -intersection_of: UBERON:0000941 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000977 ! somite 19 -intersection_of: UBERON:2000977 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000926 ! myotome somite 12 -intersection_of: UBERON:2000926 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000286 ! superficial lateralis -intersection_of: UBERON:2000286 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000143 ! retinal photoreceptor layer -intersection_of: UBERON:0001787 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005021 ! cerebellar central artery -intersection_of: UBERON:2005021 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000935 ! neural crest midbrain -intersection_of: UBERON:0003849 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005246 ! regeneration fibroblast -intersection_of: UBERON:2005246 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000517 ! glossopharyngeal lobe -intersection_of: UBERON:2000517 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005125 ! intestinal villus -intersection_of: UBERON:0001213 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000825 ! roof plate rhombomere 6 -intersection_of: UBERON:0005584 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001489 ! compound organ component -intersection_of: UBERON:0000471 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001085 ! hypaxial myotome region -intersection_of: UBERON:0003895 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001613 ! pharyngeal arch 3-7 -intersection_of: UBERON:0008896 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001441 ! lower rhombic lip -intersection_of: UBERON:0009840 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001665 ! midbrain nucleus -intersection_of: UBERON:0009661 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000379 ! lateral forebrain bundle diencephalon -intersection_of: UBERON:2000379 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005508 ! inner mental barbel -intersection_of: UBERON:2001969 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005179 ! MiP motor neuron -intersection_of: UBERON:2005179 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000830 ! sclerotome somite 14 -intersection_of: UBERON:2000830 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001521 ! ceratobranchial 5 cartilage -intersection_of: UBERON:2001521 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000549 ! posttemporal -intersection_of: UBERON:2000549 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001690 ! groove -intersection_of: UBERON:0006846 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000708 ! ventrolateral optic tract -intersection_of: UBERON:2000708 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001350 ! stratum griseum centrale -intersection_of: UBERON:0006788 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001023 ! epaxial region somite 19 -intersection_of: UBERON:2001023 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000182 ! central caudal thalamic nucleus -intersection_of: UBERON:2000182 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001067 ! anterior cerebral vein -intersection_of: UBERON:0001672 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000513 ! fast muscle cell somite 1 -intersection_of: UBERON:2000513 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001121 ! presumptive shield -intersection_of: UBERON:0007283 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001714 ! presumptive ventral mesoderm -intersection_of: UBERON:2002235 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001514 ! bone element -intersection_of: UBERON:0001474 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000771 ! hypaxial region somite 22 -intersection_of: UBERON:2000771 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005389 ! gill opening -intersection_of: UBERON:2002057 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005548 ! pectoral fin lepidotrichium 2 -intersection_of: UBERON:2001762 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000029 ! hindbrain -intersection_of: UBERON:0002028 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001395 ! neural arch 4 -intersection_of: UBERON:2001395 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001000 ! mesenchyme pectoral fin -intersection_of: UBERON:0003934 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000226 ! lateral ethmoid -intersection_of: UBERON:2000226 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000767 ! hypaxial region somite 11 -intersection_of: UBERON:2000767 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000151 ! pronephros -intersection_of: UBERON:0002120 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0009007 ! spermatogonium -intersection_of: UBERON:2001337 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000762 ! facio-acoustic neural crest -intersection_of: UBERON:0005565 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005150 ! basal regeneration epithelium -intersection_of: UBERON:2005150 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000359 ! habenular commissure -intersection_of: UBERON:0001909 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001504 ! occipital arch cartilage -intersection_of: UBERON:2001504 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005012 ! afferent filamental artery -intersection_of: UBERON:2005012 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001720 ! presumptive cardiac ventricle primitive heart tube -intersection_of: UBERON:2002232 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005217 ! CaV -intersection_of: UBERON:2005217 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000340 ! dorsal entopeduncular nucleus of ventral telencephalon -intersection_of: UBERON:2000340 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000520 ! horizontal commissure -intersection_of: UBERON:2000520 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000131 ! neural keel -intersection_of: UBERON:0007135 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005313 ! pronephric glomerular basement membrane -intersection_of: UBERON:0007307 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000019 ! epiphysis -intersection_of: UBERON:0001905 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005189 ! MiR2 -intersection_of: UBERON:2005189 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001637 ! bony projection -intersection_of: UBERON:0004529 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000693 ! tangential nucleus -intersection_of: UBERON:2000693 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001074 ! taste bud -intersection_of: UBERON:0001727 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001187 ! presumptive midbrain hindbrain boundary -intersection_of: UBERON:0007281 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001207 ! presumptive rhombomere 1 -intersection_of: UBERON:0007289 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005306 ! kidney blood vessel -intersection_of: UBERON:0003517 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005398 ! anal fin actinotrichium -intersection_of: UBERON:2000375 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000033 ! intermediate cell mass of mesoderm -intersection_of: UBERON:2000033 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001051 ! caudal division of the internal carotid artery -intersection_of: UBERON:2001051 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000806 ! fast muscle cell somite 20 -intersection_of: UBERON:2000806 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001552 ! pelvic fin lepidotrichium -intersection_of: UBERON:4000173 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000352 ! external cellular layer -intersection_of: UBERON:2000352 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005432 ! superficial ophthalmic nerve foramen -intersection_of: UBERON:2001748 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001314 ! posterior lateral line ganglion -intersection_of: UBERON:2001314 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001116 ! presumptive structure -intersection_of: UBERON:0006598 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001723 ! presumptive atrioventricular canal -intersection_of: UBERON:0007279 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000228 ! lateral line primordium -intersection_of: UBERON:2000228 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005553 ! pectoral fin lepidotrichium 4 -intersection_of: UBERON:2001764 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000536 ! lateral zone of dorsal telencephalon -intersection_of: UBERON:2000536 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005020 ! central artery -intersection_of: UBERON:2005020 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005410 ! pars inferior ear -intersection_of: UBERON:2005410 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005520 ! caudal fin principal ray 9 -intersection_of: UBERON:2001721 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001233 ! hypobranchial 1 bone -intersection_of: UBERON:2001233 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001415 ! pelvic radial 2 -intersection_of: UBERON:2001415 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001673 ! pronephric podocyte -intersection_of: UBERON:2002237 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005052 ! anterior mesencephalic central artery -intersection_of: UBERON:2005052 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000558 ! posterior macula -intersection_of: UBERON:2000558 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000381 ! lateral line sensory nucleus -intersection_of: UBERON:2000381 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001627 ! lagenar capsule -intersection_of: UBERON:2001620 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005118 ! middle lateral line primordium -intersection_of: UBERON:2005118 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001316 ! anterior lateral line placode -intersection_of: UBERON:2001316 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001423 ! parachordal cartilage -intersection_of: UBERON:0009635 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005248 ! trans-choroid plexus branch -intersection_of: UBERON:2005248 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000653 ! dorsal thalamus -intersection_of: UBERON:0004703 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001640 ! cephalic flexure -intersection_of: UBERON:0005818 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000894 ! hypaxial region somite 15 -intersection_of: UBERON:2000894 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001401 ! dorsal hyoid arch -intersection_of: UBERON:0011152 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000049 ! optic recess -intersection_of: UBERON:0002287 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005133 ! ventral mesentery -intersection_of: UBERON:0005626 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000698 ! tripus -intersection_of: UBERON:2000698 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005232 ! MCoD -intersection_of: UBERON:2005232 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000154 ! sinus venosus -intersection_of: UBERON:0002063 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000246 ! nucleus taeniae -intersection_of: UBERON:2000246 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001108 ! anterior commissure -intersection_of: UBERON:0000935 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001410 ! orbital region -intersection_of: UBERON:0001697 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001559 ! vertebral column -intersection_of: UBERON:0001130 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005177 ! VeLD -intersection_of: UBERON:2005177 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005522 ! caudal fin principal ray 11 -intersection_of: UBERON:2001723 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001344 ! zona limitans intrathalamica -intersection_of: UBERON:0009848 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001531 ! epibranchial 4 cartilage -intersection_of: UBERON:2001531 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007066 ! glossopharyngeal neural crest -intersection_of: UBERON:0005491 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001379 ! pharyngeal ectoderm -intersection_of: UBERON:2001379 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001199 ! infundibulum -intersection_of: UBERON:0002434 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000069 ! rhombomere 6 -intersection_of: UBERON:0005519 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000434 ! skeletal system -intersection_of: UBERON:0001434 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001342 ! presumptive intervening zone -intersection_of: UBERON:2001342 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005358 ! dorsal fin lepidotrichium 4 -intersection_of: UBERON:2001757 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001556 ! sympathetic chain ganglion -intersection_of: UBERON:0001807 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007053 ! dorsal adductor hyomandibulae -intersection_of: UBERON:2007053 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000132 ! neural plate -intersection_of: UBERON:0003075 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000820 ! presumptive neuron neural tube -intersection_of: UBERON:2000820 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007012 ! lateral forebrain bundle -intersection_of: UBERON:2007012 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000576 ! pterotic -intersection_of: UBERON:2000576 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000998 ! mesenchyme derived from head mesoderm -intersection_of: UBERON:0006904 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001376 ! presumptive ectoderm -intersection_of: UBERON:0006601 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001515 ! taenia marginalis posterior -intersection_of: UBERON:2001515 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005148 ! apical epidermal cap -intersection_of: UBERON:0007574 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000758 ! fast muscle cell somite 3 -intersection_of: UBERON:2000758 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000239 ! mesocoracoid bone -intersection_of: UBERON:2000239 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005430 ! orbital foramen -intersection_of: UBERON:2002031 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005058 ! ventricular epicardium -intersection_of: UBERON:0001082 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001135 ! neural tube -intersection_of: UBERON:0001049 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007004 ! epiphysial cluster -intersection_of: UBERON:2007004 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000888 ! floor plate rhombomere 3 -intersection_of: UBERON:0005573 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000941 ! nucleus of the medial longitudinal fasciculus synencephalon -intersection_of: UBERON:2000941 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001614 ! atrial endocardium -intersection_of: UBERON:0002166 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001075 ! choroidal fissure -intersection_of: UBERON:0002192 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000237 ! medial forebrain bundle diencephalon -intersection_of: UBERON:2000237 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005153 ! synovial joint -intersection_of: UBERON:0002217 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005241 ! polychromatophilic erythroblast -intersection_of: UBERON:2005241 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000546 ! mesonephric duct -intersection_of: UBERON:0003074 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001432 ! anterior sclerotic bone -intersection_of: UBERON:2001432 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000468 ! anterior crista primordium -intersection_of: UBERON:2000468 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005076 ! primordial vasculature -intersection_of: UBERON:2005076 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007052 ! hyohyoideus -intersection_of: UBERON:2007052 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005464 ! dentary-anguloarticular joint -intersection_of: UBERON:2001749 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000201 ! dorsal transverse -intersection_of: UBERON:2000201 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000707 ! ventral hypothalamic zone -intersection_of: UBERON:2000707 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001600 ! neural spine 4 -intersection_of: UBERON:2001546 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005274 ! smooth muscle -intersection_of: UBERON:0001135 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000939 ! middle lateral line neuromast -intersection_of: UBERON:2000939 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000880 ! fast muscle cell somite 22 -intersection_of: UBERON:2000880 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000416 ! presumptive endoderm -intersection_of: UBERON:0006595 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001064 ! rhombomere -intersection_of: UBERON:0001892 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000279 ! segmental plate -intersection_of: UBERON:0003059 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001666 ! periventricular nucleus of ventral telencephalon -intersection_of: UBERON:2002222 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000908 ! lateral wall rhombomere 5 -intersection_of: UBERON:0005580 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000657 ! entopterygoid -intersection_of: UBERON:2000657 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000603 ! valvula cerebelli -intersection_of: UBERON:2000603 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005163 ! bile canaliculus -intersection_of: UBERON:0001283 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000850 ! slow muscle cell somite 9 -intersection_of: UBERON:2000850 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005369 ! dorsal fin pterygiophore 6 -intersection_of: UBERON:2005369 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000428 ! saccule -intersection_of: UBERON:0001854 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000682 ! spinal artery -intersection_of: UBERON:0002458 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000855 ! somite 24 -intersection_of: UBERON:2000855 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001304 ! vagal ganglion 3 -intersection_of: UBERON:2001304 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005421 ! autopalatine-maxillary joint -intersection_of: UBERON:2001942 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001123 ! axial fin skeleton -intersection_of: UBERON:4000170 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000763 ! floor plate rhombomere 2 -intersection_of: UBERON:0005570 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000486 ! parietal bone -intersection_of: UBERON:0004865 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005197 ! MiD3i -intersection_of: UBERON:2005197 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005247 ! CiA -intersection_of: UBERON:2005247 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005475 ! inter-premaxillary joint -intersection_of: UBERON:2001950 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000714 ! accessory pretectal nucleus -intersection_of: UBERON:2000714 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001086 ! muscle pioneer -intersection_of: UBERON:2001086 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001507 ! trabecula cranii -intersection_of: UBERON:0007215 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000962 ! sclerotome somite 7 -intersection_of: UBERON:2000962 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000687 ! superficial pretectum -intersection_of: UBERON:2000687 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005095 ! fin vasculature -intersection_of: UBERON:0007304 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005471 ! inter-basipterygium joint -intersection_of: UBERON:2001939 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005326 ! NaK ionocyte -intersection_of: UBERON:2005326 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005064 ! atrioventricular valve -intersection_of: UBERON:0002133 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001251 ! pharyngobranchial 4 cartilage -intersection_of: UBERON:2001251 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000965 ! slow muscle cell somite 15 -intersection_of: UBERON:2000965 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000458 ! ventral thalamus -intersection_of: UBERON:0001900 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001368 ! presumptive forebrain midbrain boundary -intersection_of: UBERON:0007288 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000809 ! myotome somite 4 -intersection_of: UBERON:2000809 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001186 ! collagenous dermal stroma -intersection_of: UBERON:2001186 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001465 ! photoreceptor inner segment layer -intersection_of: UBERON:0003925 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000281 ! hair cell posterior macula -intersection_of: UBERON:2000281 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000914 ! floor plate telencephalic region -intersection_of: UBERON:0003308 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000579 ! rostral mesencephalo-cerebellar tract -intersection_of: UBERON:2000579 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000601 ! pretectal periventricular nucleus -intersection_of: UBERON:2000601 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005409 ! pars superior ear -intersection_of: UBERON:2005409 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000080 ! trigeminal neural crest -intersection_of: UBERON:0005563 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001012 ! epaxial region somite 16 -intersection_of: UBERON:2001012 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000607 ! ventral rhombencephalic commissure -intersection_of: UBERON:2000607 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000819 ! postcommissural nucleus of ventral telencephalon -intersection_of: UBERON:2000819 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007036 ! hindbrain neural rod -intersection_of: UBERON:2007036 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005205 ! RoM2l -intersection_of: UBERON:2005205 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005466 ! ceratohyal-ventral hypohyal joint -intersection_of: UBERON:2001844 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000442 ! supraneural -intersection_of: UBERON:2000442 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000640 ! cornea -intersection_of: UBERON:0000964 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005122 ! dorsal axial hypoblast -intersection_of: UBERON:2005122 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005549 ! pectoral fin lepidotrichium 3 -intersection_of: UBERON:2001763 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000989 ! hypaxial region somite 8 -intersection_of: UBERON:2000989 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005265 ! premaxillary-maxillary ligament -intersection_of: UBERON:2001827 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000508 ! pelvic radial -intersection_of: UBERON:2000508 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001698 ! rostral octaval nerve motor nucleus -intersection_of: UBERON:2002175 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007009 ! nerve -intersection_of: UBERON:0001021 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001516 ! ceratobranchial cartilage -intersection_of: UBERON:2001516 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005196 ! MiD3cm -intersection_of: UBERON:2005196 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005418 ! auditory fenestra -intersection_of: UBERON:2002066 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005404 ! anal fin lepidotrichium 6 -intersection_of: UBERON:2001774 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001433 ! posterior sclerotic bone -intersection_of: UBERON:2001433 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005203 ! RoM1r -intersection_of: UBERON:2005203 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000994 ! lateral wall rhombomere 3 -intersection_of: UBERON:0005574 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000114 ! heart -intersection_of: UBERON:0000948 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001146 ! tooth 1MD -intersection_of: UBERON:2001146 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000193 ! diffuse nucleus inferior lobe -intersection_of: UBERON:2000193 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001181 ! epidermal intermediate stratum -intersection_of: UBERON:2001181 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001466 ! photoreceptor outer segment layer -intersection_of: UBERON:0003926 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001132 ! pharyngeal pouch 6 -intersection_of: UBERON:0007127 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005078 ! middle mesencephalic central artery -intersection_of: UBERON:2005078 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000026 ! hatching gland -intersection_of: UBERON:0002538 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001317 ! endocardial cushion -intersection_of: UBERON:0002062 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000795 ! fast muscle cell somite 18 -intersection_of: UBERON:2000795 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000258 ! pelvic fin musculature -intersection_of: UBERON:0007270 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000052 ! dorsal actinotrichium -intersection_of: UBERON:2000052 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001230 ! pharyngeal arch 6 skeleton -intersection_of: UBERON:2001230 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001014 ! myotome somite 13 -intersection_of: UBERON:2001014 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000863 ! dermatocranium -intersection_of: UBERON:0003113 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001151 ! tooth 4MD -intersection_of: UBERON:2001151 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001615 ! ventricular endocardium -intersection_of: UBERON:0001081 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001072 ! thyroid follicle -intersection_of: UBERON:0005305 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005337 ! anterior swim bladder bud -intersection_of: UBERON:2002145 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000254 ! pancreas primordium -intersection_of: UBERON:0003921 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005092 ! mesencephalic vein -intersection_of: UBERON:0010205 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000626 ! bulbo-spinal tract -intersection_of: UBERON:2000626 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000585 ! kinethmoid cartilage -intersection_of: UBERON:2000585 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000031 ! hypochord -intersection_of: UBERON:0003058 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001206 ! intermediate mesoderm -intersection_of: UBERON:0003064 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001352 ! stratum periventriculare -intersection_of: UBERON:2001352 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005649 ! mesethmoid-vomer joint -intersection_of: UBERON:2001680 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000953 ! sclerotome somite 12 -intersection_of: UBERON:2000953 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007017 ! posterior neural plate -intersection_of: UBERON:0003057 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007039 ! midbrain neural tube -intersection_of: UBERON:0010286 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007025 ! midbrain neural keel -intersection_of: UBERON:2007025 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000034 ! lateral line system -intersection_of: UBERON:0002540 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005407 ! anterior nasal barbel -intersection_of: UBERON:2001937 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005416 ! sacculoagenar foramen -intersection_of: UBERON:2005416 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000784 ! fast muscle cell somite 15 -intersection_of: UBERON:2000784 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000710 ! viscerosensory commissural nucleus of Cajal -intersection_of: UBERON:2000710 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000376 ! infraorbital -intersection_of: UBERON:2000376 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005564 ! aqueous humor -intersection_of: UBERON:2002288 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000257 ! pectoral fin cartilage -intersection_of: UBERON:0007390 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005140 ! dental papilla -intersection_of: UBERON:0001763 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005341 ! medial longitudinal catecholaminergic tract -intersection_of: UBERON:2005341 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001569 ! oocyte stage V -intersection_of: UBERON:2001569 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005033 ! vertebral artery -intersection_of: UBERON:0001535 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000177 ! caudal oblique -intersection_of: UBERON:2000177 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001169 ! vertebra 3 -intersection_of: UBERON:2001169 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000383 ! lateral rectus -intersection_of: UBERON:0001603 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000554 ! olfactory epithelium -intersection_of: UBERON:0001997 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000399 ! secondary gustatory nucleus trigeminal nucleus -intersection_of: UBERON:2000399 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005292 ! distal late tubule -intersection_of: UBERON:2005292 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001386 ! mesoderm pelvic fin bud -intersection_of: UBERON:0003412 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001359 ! pineal complex -intersection_of: UBERON:2001359 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000444 ! suspensorium -intersection_of: UBERON:0003108 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005230 ! CoBL -intersection_of: UBERON:2005230 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001201 ! ventral lateral mesoderm -intersection_of: UBERON:2001201 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000923 ! muscle pioneer somite 7 -intersection_of: UBERON:2000923 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000845 ! slow muscle cell somite 25 -intersection_of: UBERON:2000845 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000777 ! hypaxial region somite 9 -intersection_of: UBERON:2000777 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000539 ! locus coeruleus -intersection_of: UBERON:0002148 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005225 ! lower lip -intersection_of: UBERON:0001835 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005539 ! rib of vertebra 2 -intersection_of: UBERON:2001878 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000916 ! muscle pioneer somite 14 -intersection_of: UBERON:2000916 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005235 ! UCoD -intersection_of: UBERON:2005235 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001648 ! cardiac neural crest -intersection_of: UBERON:0000095 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000262 ! posterior semicircular canal -intersection_of: UBERON:0001842 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000571 ! presumptive telencephalon -intersection_of: UBERON:2000571 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000662 ! external pharyngoclavicularis -intersection_of: UBERON:2000662 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000105 ! epidermis -intersection_of: UBERON:0001003 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001109 ! oocyte -intersection_of: UBERON:2001109 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000778 ! spinal cord interneuron -intersection_of: UBERON:2000778 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000912 ! mesenchyme median fin fold -intersection_of: UBERON:2000912 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001154 ! anal fin musculature -intersection_of: UBERON:2001154 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005229 ! optic choroid -intersection_of: UBERON:0001776 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005351 ! vertebra 9 -intersection_of: UBERON:2002149 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001031 ! rhombomere 1 -intersection_of: UBERON:0005499 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000883 ! fast muscle cell somite 28 -intersection_of: UBERON:2000883 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005041 ! anterior lateral plate mesoderm -intersection_of: UBERON:0009881 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005595 ! caudal fin principal ray 13 -intersection_of: UBERON:2001725 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000917 ! muscle pioneer somite 17 -intersection_of: UBERON:2000917 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005222 ! ventral larval melanophore stripe -intersection_of: UBERON:2005222 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005338 ! posterior recess -intersection_of: UBERON:2005338 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000816 ! oral epithelium -intersection_of: UBERON:0002424 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000423 ! anterior cardinal vein -intersection_of: UBERON:0003087 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000464 ! otic lateral line -intersection_of: UBERON:2000464 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000333 ! mesovarium -intersection_of: UBERON:0001342 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001681 ! grey matter -intersection_of: UBERON:0002020 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005114 ! middle lateral line system -intersection_of: UBERON:2005114 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000265 ! presumptive dorsal mesoderm -intersection_of: UBERON:2000265 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005546 ! pelvic fin actinotrichium -intersection_of: UBERON:2000596 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001609 ! pharyngeal arch 6 -intersection_of: UBERON:0003117 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000037 ! anatomical structure -intersection_of: UBERON:0000061 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001200 ! corpuscles of Stannius -intersection_of: UBERON:2001200 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001309 ! neurogenic placode -intersection_of: UBERON:0009955 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000627 ! epihyal -intersection_of: UBERON:2000627 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007020 ! forebrain midbrain boundary neural plate -intersection_of: UBERON:0009612 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000864 ! epaxial region somite 1 -intersection_of: UBERON:2000864 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000038 ! margin -intersection_of: UBERON:0004879 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000121 ! lateral plate mesoderm -intersection_of: UBERON:0003081 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000338 ! diencephalic white matter -intersection_of: UBERON:0003931 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000148 ! presumptive midbrain -intersection_of: UBERON:0009616 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001649 ! infraorbital series -intersection_of: UBERON:2001709 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000949 ! rhombomere 7 -intersection_of: UBERON:0005523 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000783 ! lateral wall rhombomere 7 -intersection_of: UBERON:0005586 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001258 ! floor plate rhombomere region -intersection_of: UBERON:0005500 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005480 ! orbitosphenoid-prootic joint -intersection_of: UBERON:2001794 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001292 ! epiphyseal stalk -intersection_of: UBERON:0011768 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000097 ! carotid artery -intersection_of: UBERON:0005396 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000723 ! slow muscle cell somite 5 -intersection_of: UBERON:2000723 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005110 ! thoracic duct -intersection_of: UBERON:0001631 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005315 ! venule -intersection_of: UBERON:0001979 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000457 ! ventral rectus -intersection_of: UBERON:0006322 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000098 ! proliferative region -intersection_of: UBERON:2000098 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005423 ! basioccipital-exoccipital joint -intersection_of: UBERON:2002038 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000720 ! slow muscle cell somite 24 -intersection_of: UBERON:2000720 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001658 ! hindbrain nucleus -intersection_of: UBERON:0009662 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001543 ! paired fin cartilage -intersection_of: UBERON:0007389 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005135 ! primary dental epithelium -intersection_of: UBERON:2005135 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001364 ! hemal spine -intersection_of: UBERON:2001364 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000871 ! floor plate diencephalic region -intersection_of: UBERON:0003309 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001525 ! hypobranchial 2 cartilage -intersection_of: UBERON:2001525 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000474 ! intercalar -intersection_of: UBERON:2000474 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001460 ! pharyngeal arch cartilage -intersection_of: UBERON:0011004 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000039 ! median axial vein -intersection_of: UBERON:2000039 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000060 ! prechordal plate -intersection_of: UBERON:0003063 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000842 ! slow muscle cell somite 17 -intersection_of: UBERON:2000842 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000369 ! intermandibularis -intersection_of: UBERON:0010931 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001147 ! tooth 2MD -intersection_of: UBERON:2001147 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005472 ! inter-frontal joint -intersection_of: UBERON:2001922 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000415 ! esophageal sphincter -intersection_of: UBERON:0007652 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001313 ! ventral anterior lateral line ganglion -intersection_of: UBERON:2001313 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000760 ! fast muscle cell somite 8 -intersection_of: UBERON:2000760 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000750 ! fast muscle cell somite 10 -intersection_of: UBERON:2000750 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001361 ! basiventral -intersection_of: UBERON:2001361 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005356 ! dorsal fin lepidotrichium 2 -intersection_of: UBERON:2001755 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005377 ! dorsal fin distal radial 6 -intersection_of: UBERON:2005377 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001296 ! glossopharyngeal placode -intersection_of: UBERON:0009125 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000479 ! caudal mesencephalo-cerebellar tract -intersection_of: UBERON:2000479 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000843 ! slow muscle cell somite 2 -intersection_of: UBERON:2000843 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000986 ! hypaxial region somite 27 -intersection_of: UBERON:2000986 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000904 ! floor plate rhombomere 7 -intersection_of: UBERON:0005585 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001158 ! endocrine system -intersection_of: UBERON:0000949 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001463 ! melanophore stripe -intersection_of: UBERON:2001463 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001623 ! posterior pronephric duct -intersection_of: UBERON:2002225 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001682 ! white matter -intersection_of: UBERON:0002316 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001682 ! white matter -intersection_of: UBERON:0002316 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001682 ! white matter -intersection_of: UBERON:0002316 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001594 ! preopercle horizontal limb -intersection_of: UBERON:2000289 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001203 ! ciliary zone -intersection_of: UBERON:2001203 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000581 ! rostral tuberal nucleus -intersection_of: UBERON:2000581 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000925 ! hypaxial region somite 10 -intersection_of: UBERON:2000925 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000996 ! lateral wall spinal cord -intersection_of: UBERON:0009582 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001669 ! intermediate nucleus -intersection_of: UBERON:2002202 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001487 ! portion of organism substance -intersection_of: UBERON:0000463 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000928 ! myotome somite 19 -intersection_of: UBERON:2000928 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001568 ! oocyte stage IV -intersection_of: UBERON:2001568 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001689 ! anatomical line -intersection_of: UBERON:0006800 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005219 ! choroid plexus vascular circuit -intersection_of: UBERON:2005219 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005384 ! dorsal fin proximal radial 7 -intersection_of: UBERON:2005384 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005444 ! trunk sensory canal -intersection_of: UBERON:2001617 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000559 ! otolith organ -intersection_of: UBERON:0002518 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000493 ! decussation of medial funicular nucleus -intersection_of: UBERON:2000493 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001566 ! oocyte stage III -intersection_of: UBERON:2001566 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001021 ! myotome somite 6 -intersection_of: UBERON:2001021 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000223 ! infraorbital 1 -intersection_of: UBERON:2000223 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000748 ! epaxial region somite 6 -intersection_of: UBERON:2000748 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000498 ! dilator operculi -intersection_of: UBERON:2000498 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000915 ! muscle pioneer somite 11 -intersection_of: UBERON:2000915 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007050 ! constrictor dorsalis -intersection_of: UBERON:2007050 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001063 ! posterior caudal vein -intersection_of: UBERON:2001063 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000991 ! epaxial region somite 10 -intersection_of: UBERON:2000991 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000560 ! oviduct -intersection_of: UBERON:0000993 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001705 ! endolymphatic duct -intersection_of: UBERON:0001860 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005294 ! collecting duct -intersection_of: UBERON:0001232 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001573 ! trunk ganglion -intersection_of: UBERON:0007134 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005018 ! efferent filamental artery -intersection_of: UBERON:2005018 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001030 ! epaxial region somite 21 -intersection_of: UBERON:2001030 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005035 ! subintestinal vein -intersection_of: UBERON:0011944 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001161 ! pectoral fin -intersection_of: UBERON:0000151 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005004 ! aortic arch -intersection_of: UBERON:0004363 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001042 ! sclerotome somite 24 -intersection_of: UBERON:2001042 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001447 ! choroid plexus telencephalic ventricle -intersection_of: UBERON:0002307 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000424 ! opercular lateral line -intersection_of: UBERON:2000424 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000450 ! trochlear motor nucleus -intersection_of: UBERON:0002722 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005542 ! rib of vertebra 5 -intersection_of: UBERON:2001751 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001391 ! anterior lateral line ganglion -intersection_of: UBERON:2001391 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000209 ! lateral preglomerular nucleus -intersection_of: UBERON:2000209 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001429 ! raphe nucleus -intersection_of: UBERON:0004684 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001646 ! anal fin radial -intersection_of: UBERON:2001671 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001420 ! anal fin pterygiophore -intersection_of: UBERON:2001420 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000503 ! dorsal oblique branchial muscle -intersection_of: UBERON:2000503 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000922 ! muscle pioneer somite 4 -intersection_of: UBERON:2000922 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001231 ! pharyngeal arch 4 skeleton -intersection_of: UBERON:2001231 ! -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:ENTITY -name: ZFA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7954 -relationship: only_in_taxon NCBITaxon:7954 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: http://purl.obolibrary.org/obo/zfa#part_of -equivalent_to: BFO:0000050 - -[Typedef] -id: http://purl.obolibrary.org/obo/zfa#develops_from -equivalent_to: RO:0002225 - diff --git a/src/ontology/bridge/uberon-ext-bridge-to-zfa.owl b/src/ontology/bridge/uberon-ext-bridge-to-zfa.owl deleted file mode 100644 index 43b00ca56e..0000000000 --- a/src/ontology/bridge/uberon-ext-bridge-to-zfa.owl +++ /dev/null @@ -1,53681 +0,0 @@ - - - - - Ceri Van Slyke - Melissa Haendel - Wasila Dahdul - Yvonne Bradford - TAO editors - Uberon editors - Taxonomic equivalence axioms between ZFA and Uberon-ext. This is a temporary ontology - ext will soon be merged into Uberon core - Uberon bridge to zfa - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - http://purl.obolibrary.org/obo/uberon/tracker/152 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 1092322c25669a636898842263a56f0b143bd347 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 19:53:58 +0100 Subject: [PATCH 06/45] Remove the bridges between CL and life stage ontologies. CL does not contain terms that represent life stages -- all such terms are in Uberon. Therefore the bridges between CL and those ontologies that are specialised in life stage terms are always empty and can be safely removed. --- src/ontology/bridge/cl-bridge-to-fbdv.obo | 127 ------- src/ontology/bridge/cl-bridge-to-fbdv.owl | 362 -------------------- src/ontology/bridge/cl-bridge-to-hsapdv.obo | 127 ------- src/ontology/bridge/cl-bridge-to-hsapdv.owl | 362 -------------------- src/ontology/bridge/cl-bridge-to-mmusdv.obo | 127 ------- src/ontology/bridge/cl-bridge-to-mmusdv.owl | 362 -------------------- src/ontology/bridge/cl-bridge-to-wbls.obo | 127 ------- src/ontology/bridge/cl-bridge-to-wbls.owl | 362 -------------------- src/ontology/bridge/cl-bridge-to-zfs.obo | 127 ------- src/ontology/bridge/cl-bridge-to-zfs.owl | 362 -------------------- 10 files changed, 2445 deletions(-) delete mode 100644 src/ontology/bridge/cl-bridge-to-fbdv.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-fbdv.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-hsapdv.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-hsapdv.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-mmusdv.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-mmusdv.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-wbls.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-wbls.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-zfs.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-zfs.owl diff --git a/src/ontology/bridge/cl-bridge-to-fbdv.obo b/src/ontology/bridge/cl-bridge-to-fbdv.obo deleted file mode 100644 index c2585d5f73..0000000000 --- a/src/ontology/bridge/cl-bridge-to-fbdv.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-fbdv -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: FBdv:ENTITY -name: FBdv entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7227 -relationship: only_in_taxon NCBITaxon:7227 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-fbdv.owl b/src/ontology/bridge/cl-bridge-to-fbdv.owl deleted file mode 100644 index 2c3f3a7452..0000000000 --- a/src/ontology/bridge/cl-bridge-to-fbdv.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - FBdv:ENTITY - FBdv entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-hsapdv.obo b/src/ontology/bridge/cl-bridge-to-hsapdv.obo deleted file mode 100644 index 49802156c5..0000000000 --- a/src/ontology/bridge/cl-bridge-to-hsapdv.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-hsapdv -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: HsapDv:ENTITY -name: HsapDv entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-hsapdv.owl b/src/ontology/bridge/cl-bridge-to-hsapdv.owl deleted file mode 100644 index 7dd35892c2..0000000000 --- a/src/ontology/bridge/cl-bridge-to-hsapdv.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - HsapDv:ENTITY - HsapDv entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-mmusdv.obo b/src/ontology/bridge/cl-bridge-to-mmusdv.obo deleted file mode 100644 index 6c1db59e26..0000000000 --- a/src/ontology/bridge/cl-bridge-to-mmusdv.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-mmusdv -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: MmusDv:ENTITY -name: MmusDv entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-mmusdv.owl b/src/ontology/bridge/cl-bridge-to-mmusdv.owl deleted file mode 100644 index 10232f587d..0000000000 --- a/src/ontology/bridge/cl-bridge-to-mmusdv.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MmusDv:ENTITY - MmusDv entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-wbls.obo b/src/ontology/bridge/cl-bridge-to-wbls.obo deleted file mode 100644 index 30e303b826..0000000000 --- a/src/ontology/bridge/cl-bridge-to-wbls.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-wbls -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: WBls:ENTITY -name: WBls entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6237 -relationship: only_in_taxon NCBITaxon:6237 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-wbls.owl b/src/ontology/bridge/cl-bridge-to-wbls.owl deleted file mode 100644 index 26ff20e9db..0000000000 --- a/src/ontology/bridge/cl-bridge-to-wbls.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - WBls:ENTITY - WBls entity - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-zfs.obo b/src/ontology/bridge/cl-bridge-to-zfs.obo deleted file mode 100644 index 5fcac4f1ba..0000000000 --- a/src/ontology/bridge/cl-bridge-to-zfs.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-zfs -data-version: 2023-07-25 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: ZFS:ENTITY -name: ZFS entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7954 -relationship: only_in_taxon NCBITaxon:7954 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-zfs.owl b/src/ontology/bridge/cl-bridge-to-zfs.owl deleted file mode 100644 index 7328139268..0000000000 --- a/src/ontology/bridge/cl-bridge-to-zfs.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ZFS:ENTITY - ZFS entity - - - - - - - From 09831487524ec0ad03576ffd5c505c8e5b17e6b3 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 20:13:14 +0100 Subject: [PATCH 07/45] Remove the ABA bridge. The ABA bridge is deprecated in favour of the (custom-made) MBA bridge, so we can remove it. --- src/ontology/bridge/uberon-bridge-to-aba.obo | 177 ------ src/ontology/bridge/uberon-bridge-to-aba.owl | 606 ------------------- 2 files changed, 783 deletions(-) delete mode 100644 src/ontology/bridge/uberon-bridge-to-aba.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-aba.owl diff --git a/src/ontology/bridge/uberon-bridge-to-aba.obo b/src/ontology/bridge/uberon-bridge-to-aba.obo deleted file mode 100644 index 3b76514498..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-aba.obo +++ /dev/null @@ -1,177 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-aba -data-version: 2015-01-01 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: ABA:Brain ! -property_value: IAO:0000589 "brain (ABA)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:CTX1-6b ! -property_value: IAO:0000589 "layer of neocortex (ABA)" xsd:string -intersection_of: UBERON:0002301 ! layer of neocortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:SNI ! -property_value: IAO:0000589 "substantia nigra pars lateralis (ABA)" xsd:string -intersection_of: UBERON:0002995 ! substantia nigra pars lateralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:CTX1 ! -property_value: IAO:0000589 "cortical layer I (ABA)" xsd:string -intersection_of: UBERON:0005390 ! cortical layer I -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:CTX2 ! -property_value: IAO:0000589 "cortical layer II (ABA)" xsd:string -intersection_of: UBERON:0005391 ! cortical layer II -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:CTX3 ! -property_value: IAO:0000589 "cortical layer III (ABA)" xsd:string -intersection_of: UBERON:0005392 ! cortical layer III -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:CTX4 ! -property_value: IAO:0000589 "cortical layer IV (ABA)" xsd:string -intersection_of: UBERON:0005393 ! cortical layer IV -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:CTX5 ! -property_value: IAO:0000589 "cortical layer V (ABA)" xsd:string -intersection_of: UBERON:0005394 ! cortical layer V -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:CTX6 ! -property_value: IAO:0000589 "cortical layer VI (ABA)" xsd:string -intersection_of: UBERON:0005395 ! cortical layer VI -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: ABA:ENTITY -name: ABA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: http://purl.obolibrary.org/obo/aba#part_of -equivalent_to: BFO:0000050 - -[Typedef] -id: http://purl.obolibrary.org/obo/aba#develops_from -equivalent_to: RO:0002225 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-aba.owl b/src/ontology/bridge/uberon-bridge-to-aba.owl deleted file mode 100644 index 584829af33..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-aba.owl +++ /dev/null @@ -1,606 +0,0 @@ - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - - example of usage - IAO:0000122 - example_of_usage - example_of_usage - true - - - - - - - - - - - - - - contributor - dc-contributor - dc-contributor - http://purl.org/dc/elements/1.1/contributor - true - - - - - - - - creator - dc-creator - dc-creator - http://purl.org/dc/elements/1.1/creator - true - - - - - - - - description - dc-description - dc-description - http://purl.org/dc/elements/1.1/description - true - - - - - - - - publisher - dc-publisher - dc-publisher - http://purl.org/dc/elements/1.1/publisher - true - - - - - - - - derived from resource - dc-source - dc-source - http://purl.org/dc/elements/1.1/source - true - - - - - - - - title - dc-title - dc-title - http://purl.org/dc/elements/1.1/title - true - - - - - - - - is referenced by - dcterms-isReferencedBy - dcterms-isReferencedBy - http://purl.org/dc/terms/isReferencedBy - true - - - - - - - - references - dcterms-references - dcterms-references - http://purl.org/dc/terms/references - true - - - - - - - - Git repository - doap-GitRepository - doap-GitRepository - http://usefulinc.com/ns/doap#GitRepository - true - - - - - - - - SVN repository - doap-SVNRepository - doap-SVNRepository - http://usefulinc.com/ns/doap#SVNRepository - true - - - - - - - - bug database - doap-bug-database - doap-bug-database - http://usefulinc.com/ns/doap#bug-database - true - - - - - - - - wiki - doap-wiki - doap-wiki - http://usefulinc.com/ns/doap#wiki - true - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - see also - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - seeAlso - true - - - - - - - - depicted_by - foaf-depicted_by - foaf-depicted_by - http://xmlns.com/foaf/0.1/depicted_by - true - - - - - - - - homepage - foaf-homepage - foaf-homepage - http://xmlns.com/foaf/0.1/homepage - true - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - - - - - - - - - http://purl.obolibrary.org/obo/aba#develops_from - - - - - - - - http://purl.obolibrary.org/obo/aba#part_of - - - - - - - - - - - - - - - - - - - - - - - - ABA:Brain - brain (ABA) - - - - - - - - - - - - - - - - - - - ABA:CTX1 - cortical layer I (ABA) - - - - - - - - - - - - - - - - - - - ABA:CTX1-6b - layer of neocortex (ABA) - - - - - - - - - - - - - - - - - - - ABA:CTX2 - cortical layer II (ABA) - - - - - - - - - - - - - - - - - - - ABA:CTX3 - cortical layer III (ABA) - - - - - - - - - - - - - - - - - - - ABA:CTX4 - cortical layer IV (ABA) - - - - - - - - - - - - - - - - - - - ABA:CTX5 - cortical layer V (ABA) - - - - - - - - - - - - - - - - - - - ABA:CTX6 - cortical layer VI (ABA) - - - - - - - - ABA entity - - - - - - - - - - - - - - - - - - ABA:ENTITY - - - - - - - - - - - - - - - - - - - ABA:SNI - substantia nigra pars lateralis (ABA) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From fda807de197680182f6684fa2ec8c7492170812a Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 20:32:17 +0100 Subject: [PATCH 08/45] Remove unknown empty bridges. The Uberon bridge to BSD and the CL bridge to "NIF Gross Anatomy" are both empty and their intended source of truth is unknown (they are *not* set up to be generated from cross-references, as most other bridges are). Empty and no source to fill them: they are useless and can be removed. --- .../bridge/cl-bridge-to-nif_grossanatomy.obo | 107 ------- .../bridge/cl-bridge-to-nif_grossanatomy.owl | 303 ------------------ src/ontology/bridge/uberon-bridge-to-bsd.obo | 123 ------- 3 files changed, 533 deletions(-) delete mode 100644 src/ontology/bridge/cl-bridge-to-nif_grossanatomy.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-nif_grossanatomy.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-bsd.obo diff --git a/src/ontology/bridge/cl-bridge-to-nif_grossanatomy.obo b/src/ontology/bridge/cl-bridge-to-nif_grossanatomy.obo deleted file mode 100644 index 700c01f5ff..0000000000 --- a/src/ontology/bridge/cl-bridge-to-nif_grossanatomy.obo +++ /dev/null @@ -1,107 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-nif_grossanatomy -data-version: 2014-05-27 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Typedef] -id: http://purl.obolibrary.org/obo/nif_grossanatomy#part_of -equivalent_to: BFO:0000050 - -[Typedef] -id: http://purl.obolibrary.org/obo/nif_grossanatomy#develops_from -equivalent_to: RO:0002225 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-nif_grossanatomy.owl b/src/ontology/bridge/cl-bridge-to-nif_grossanatomy.owl deleted file mode 100644 index 5cfefd0143..0000000000 --- a/src/ontology/bridge/cl-bridge-to-nif_grossanatomy.owl +++ /dev/null @@ -1,303 +0,0 @@ - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - - example of usage - IAO:0000122 - example_of_usage - example_of_usage - true - - - - - - - - contributor - dc-contributor - dc-contributor - http://purl.org/dc/elements/1.1/contributor - true - - - - - - - - creator - dc-creator - dc-creator - http://purl.org/dc/elements/1.1/creator - true - - - - - - - - description - dc-description - dc-description - http://purl.org/dc/elements/1.1/description - true - - - - - - - - publisher - dc-publisher - dc-publisher - http://purl.org/dc/elements/1.1/publisher - true - - - - - - - - derived from resource - dc-source - dc-source - http://purl.org/dc/elements/1.1/source - true - - - - - - - - title - dc-title - dc-title - http://purl.org/dc/elements/1.1/title - true - - - - - - - - is referenced by - dcterms-isReferencedBy - dcterms-isReferencedBy - http://purl.org/dc/terms/isReferencedBy - true - - - - - - - - references - dcterms-references - dcterms-references - http://purl.org/dc/terms/references - true - - - - - - - - Git repository - doap-GitRepository - doap-GitRepository - http://usefulinc.com/ns/doap#GitRepository - true - - - - - - - - SVN repository - doap-SVNRepository - doap-SVNRepository - http://usefulinc.com/ns/doap#SVNRepository - true - - - - - - - - bug database - doap-bug-database - doap-bug-database - http://usefulinc.com/ns/doap#bug-database - true - - - - - - - - wiki - doap-wiki - doap-wiki - http://usefulinc.com/ns/doap#wiki - true - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - see also - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - seeAlso - true - - - - - - - - depicted_by - foaf-depicted_by - foaf-depicted_by - http://xmlns.com/foaf/0.1/depicted_by - true - - - - - - - - homepage - foaf-homepage - foaf-homepage - http://xmlns.com/foaf/0.1/homepage - true - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http://purl.obolibrary.org/obo/nif_grossanatomy#develops_from - - - - - - - - http://purl.obolibrary.org/obo/nif_grossanatomy#part_of - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-bsd.obo b/src/ontology/bridge/uberon-bridge-to-bsd.obo deleted file mode 100644 index cd73b456d1..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-bsd.obo +++ /dev/null @@ -1,123 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-bsd -data-version: 2014-02-24 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: BSD:ENTITY -name: BSD entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7712 -relationship: only_in_taxon NCBITaxon:7712 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: http://purl.obolibrary.org/obo/bsd#part_of -equivalent_to: BFO:0000050 - -[Typedef] -id: http://purl.obolibrary.org/obo/bsd#develops_from -equivalent_to: RO:0002225 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 From 2cc682ce4052f3729e4abea777bae0f1535fcfa5 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 20:46:14 +0100 Subject: [PATCH 09/45] Set the edit file as SoT for the BFO bridge. We have a bridge to BFO whose source of truth is currently unknown. We align it with the other bridges by creating cross-references in the Uberon edit file, so that the edit file becomes the source of truth and the bridge can be (re-)generated in the same way as all the other bridges. Of note, several of the axioms in the bridge are redundant with axioms already explicitly stated in Uberon, so we don't add cross-references for those. --- src/ontology/uberon-edit.obo | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ontology/uberon-edit.obo b/src/ontology/uberon-edit.obo index c6ce22da34..4ecabcce47 100644 --- a/src/ontology/uberon-edit.obo +++ b/src/ontology/uberon-edit.obo @@ -54,6 +54,7 @@ treat-xrefs-as-equivalent: GO treat-xrefs-as-equivalent: OG treat-xrefs-as-equivalent: VSAO treat-xrefs-as-is_a: VHOG +treat-xrefs-as-is_a: BFO remark: Aurelie Comte, Bill Bug, Catherine Leroy, Duncan Davidson and Trish Whetzel are also contributors. However their ORCIDs were not found. import: http://purl.obolibrary.org/obo/uberon/components/develops-from-chains.owl import: http://purl.obolibrary.org/obo/uberon/components/hra_subset.owl @@ -220,6 +221,7 @@ name: processual entity def: "An occurrent [span:Occurrent] that exists in time by occurring or happening, has temporal parts and always involves and depends on some entity." [span:ProcessualEntity] subset: common_anatomy subset: upper_level +xref: BFO:0000003 disjoint_from: UBERON:0001062 ! anatomical entity relationship: present_in_taxon NCBITaxon:33090 ! Viridiplantae relationship: present_in_taxon NCBITaxon:33208 ! Metazoa @@ -11948,6 +11950,7 @@ subset: common_anatomy subset: upper_level xref: AAO:0010841 xref: AEO:0000000 +xref: BFO:0000004 xref: BILA:0000000 xref: BIRNLEX:6 xref: CARO:0000000 From ebdc7b157765c359769b9bfda645feb39460ca79 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 20:55:03 +0100 Subject: [PATCH 10/45] Remove the NIFSTD bridge. The Uberon bridge to NIFSTD contains 6 bridging axioms: * 4 that link Uberon terms to NIFSTD terms that themselves have been deprecated in favour of... the very Uberon term that points to them; * 2 that have non-resolvable IRIs. I think it is fair to see this bridge is not useful. --- .../bridge/uberon-bridge-to-nifstd.obo | 26 ----- .../bridge/uberon-bridge-to-nifstd.owl | 110 ------------------ 2 files changed, 136 deletions(-) delete mode 100644 src/ontology/bridge/uberon-bridge-to-nifstd.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-nifstd.owl diff --git a/src/ontology/bridge/uberon-bridge-to-nifstd.obo b/src/ontology/bridge/uberon-bridge-to-nifstd.obo deleted file mode 100644 index 90f0e5ee4f..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-nifstd.obo +++ /dev/null @@ -1,26 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-nifstd - -[Term] -id: UBERON:0000120 ! blood brain barrier -equivalent_to: http://uri.neuinfo.org/nif/nifstd/nlx_subcell_100205 - -[Term] -id: UBERON:0001727 ! taste bud -equivalent_to: http://uri.neuinfo.org/nif/nifstd/nifext_14 - -[Term] -id: UBERON:0002104 ! visual system -equivalent_to: http://uri.neuinfo.org/nif/nifstd/FMAID_7191 - -[Term] -id: UBERON:0002925 ! trigeminal nucleus -equivalent_to: http://uri.neuinfo.org/nif/nifstd/nifext_11 - -[Term] -id: UBERON:0002926 ! gustatory epithelium -equivalent_to: http://uri.neuinfo.org/nif/nifstd/nifext_12 - -[Term] -id: UBERON:0035015 ! association cortex -equivalent_to: http://uri.neuinfo.org/nif/nifstd/oen_0001107 - diff --git a/src/ontology/bridge/uberon-bridge-to-nifstd.owl b/src/ontology/bridge/uberon-bridge-to-nifstd.owl deleted file mode 100644 index 1844c33a3c..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-nifstd.owl +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 791b22edf0d95484e162a24bf56dd9e2a76ce012 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 21:06:32 +0100 Subject: [PATCH 11/45] Remove the VAO bridge. It seems VAO and VSAO are the same thing. VAO is listed as an alternative prefix for VSAO in the bioregistry, and seemingly all cross-references to VSAO terms in the Uberon edit file have a VAO equivalent in the VAO bridge. Since 1) we do not know where the VAO bridge comes from and 2) we have already decided to remove the VSAO bridge because VSAO is obsolete, there is no reason to keep this bridge. --- src/ontology/bridge/uberon-bridge-to-vao.obo | 615 ------------------- 1 file changed, 615 deletions(-) delete mode 100644 src/ontology/bridge/uberon-bridge-to-vao.obo diff --git a/src/ontology/bridge/uberon-bridge-to-vao.obo b/src/ontology/bridge/uberon-bridge-to-vao.obo deleted file mode 100644 index 3767496139..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-vao.obo +++ /dev/null @@ -1,615 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-vao - -[Term] -id: VAO:0000034 ! oropharynx -property_value: IAO:0000589 "oropharynx (VAO)" xsd:string -equivalent_to: UBERON:0001729 ! oropharynx - -[Term] -id: VAO:0000075 ! appendage -property_value: IAO:0000589 "appendage (VAO)" xsd:string -equivalent_to: UBERON:0000026 ! appendage - -[Term] -id: VAO:0000073 ! tendon -property_value: IAO:0000589 "tendon (VAO)" xsd:string -equivalent_to: UBERON:0000043 ! tendon - -[Term] -id: VAO:0000208 ! frontal bone -property_value: IAO:0000589 "tetrapod frontal bone (VAO)" xsd:string -equivalent_to: UBERON:0000209 ! tetrapod frontal bone - -[Term] -id: VAO:0000072 ! ligament -property_value: IAO:0000589 "skeletal ligament (VAO)" xsd:string -equivalent_to: UBERON:0008846 ! skeletal ligament - -[Term] -id: VAO:0000046 ! osteoid -property_value: IAO:0000589 "osteoid (VAO)" xsd:string -equivalent_to: UBERON:0008883 ! osteoid - -[Term] -id: VAO:0005011 ! anterior zeugopodium -property_value: IAO:0000589 "forelimb zeugopod skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010703 ! forelimb zeugopod skeleton - -[Term] -id: VAO:0005012 ! radius -property_value: IAO:0000589 "radius bone (VAO)" xsd:string -equivalent_to: UBERON:0001423 ! radius bone - -[Term] -id: VAO:0005013 ! ulna -property_value: IAO:0000589 "ulna (VAO)" xsd:string -equivalent_to: UBERON:0001424 ! ulna - -[Term] -id: VAO:0000101 ! joint -property_value: IAO:0000589 "skeletal joint (VAO)" xsd:string -equivalent_to: UBERON:0000982 ! skeletal joint - -[Term] -id: VAO:0000149 ! pharyngeal arch -property_value: IAO:0000589 "pharyngeal arch (VAO)" xsd:string -equivalent_to: UBERON:0002539 ! pharyngeal arch - -[Term] -id: VAO:0000183 ! vertebral centrum -property_value: IAO:0000589 "body of vertebra (VAO)" xsd:string -equivalent_to: UBERON:0001075 ! body of vertebra - -[Term] -id: VAO:0000023 ! membrane bone -property_value: IAO:0000589 "membrane bone (VAO)" xsd:string -equivalent_to: UBERON:0007842 ! membrane bone - -[Term] -id: VAO:0000130 ! dermal bone -property_value: IAO:0000589 "dermal bone (VAO)" xsd:string -equivalent_to: UBERON:0008907 ! dermal bone - -[Term] -id: VAO:0000048 ! scale -property_value: IAO:0000589 "dermal scale (VAO)" xsd:string -equivalent_to: UBERON:0007380 ! dermal scale - -[Term] -id: VAO:0000079 ! odontode scale -property_value: IAO:0000589 "dermal denticle (VAO)" xsd:string -equivalent_to: UBERON:0000041 ! dermal denticle - -[Term] -id: VAO:0000025 ! odontogenic papilla -property_value: IAO:0000589 "dental papilla (VAO)" xsd:string -equivalent_to: UBERON:0001763 ! dental papilla - -[Term] -id: VAO:0000185 ! vertebral column -property_value: IAO:0000589 "vertebral column (VAO)" xsd:string -equivalent_to: UBERON:0001130 ! vertebral column - -[Term] -id: VAO:0005031 ! clavicle bone -property_value: IAO:0000589 "clavicle (VAO)" xsd:string -equivalent_to: UBERON:0001105 ! clavicle - -[Term] -id: VAO:0000214 ! appendage girdle complex -property_value: IAO:0000589 "appendage girdle complex (VAO)" xsd:string -equivalent_to: UBERON:0010707 ! appendage girdle complex - -[Term] -id: VAO:0000213 ! pectoral complex -property_value: IAO:0000589 "pectoral complex (VAO)" xsd:string -equivalent_to: UBERON:0010708 ! pectoral complex - -[Term] -id: VAO:0000215 ! pelvic complex -property_value: IAO:0000589 "pelvic complex (VAO)" xsd:string -equivalent_to: UBERON:0010709 ! pelvic complex - -[Term] -id: VAO:0000156 ! pectoral girdle -property_value: IAO:0000589 "skeleton of pectoral girdle (VAO)" xsd:string -equivalent_to: UBERON:0007831 ! skeleton of pectoral girdle - -[Term] -id: VAO:0000155 ! pelvic girdle -property_value: IAO:0000589 "skeleton of pelvic girdle (VAO)" xsd:string -equivalent_to: UBERON:0007832 ! skeleton of pelvic girdle - -[Term] -id: VAO:0005006 ! ischium -property_value: IAO:0000589 "ischium (VAO)" xsd:string -equivalent_to: UBERON:0001274 ! ischium - -[Term] -id: VAO:0005040 ! lunar -property_value: IAO:0000589 "lunate (VAO)" xsd:string -equivalent_to: UBERON:0001428 ! lunate - -[Term] -id: VAO:0005043 ! distal carpal 1 -property_value: IAO:0000589 "distal carpal bone 1 (VAO)" xsd:string -equivalent_to: UBERON:0001430 ! distal carpal bone 1 - -[Term] -id: VAO:0005044 ! distal carpal 2 -property_value: IAO:0000589 "distal carpal bone 2 (VAO)" xsd:string -equivalent_to: UBERON:0001431 ! distal carpal bone 2 - -[Term] -id: VAO:0005045 ! distal carpal 3 -property_value: IAO:0000589 "distal carpal bone 3 (VAO)" xsd:string -equivalent_to: UBERON:0001432 ! distal carpal bone 3 - -[Term] -id: VAO:0005046 ! distal carpal 4 -property_value: IAO:0000589 "distal carpal bone 4 (VAO)" xsd:string -equivalent_to: UBERON:0001433 ! distal carpal bone 4 - -[Term] -id: VAO:0005047 ! distal carpal 5 -property_value: IAO:0000589 "distal carpal bone 5 (VAO)" xsd:string -equivalent_to: UBERON:0010739 ! distal carpal bone 5 - -[Term] -id: VAO:0000181 ! articular system -property_value: IAO:0000589 "articular system (VAO)" xsd:string -equivalent_to: UBERON:0004770 ! articular system - -[Term] -id: VAO:0000026 ! skeleton -property_value: IAO:0000589 "skeleton (VAO)" xsd:string -equivalent_to: UBERON:0004288 ! skeleton - -[Term] -id: VAO:0000027 ! skeletal system -property_value: IAO:0000589 "skeletal system (VAO)" xsd:string -equivalent_to: UBERON:0001434 ! skeletal system - -[Term] -id: VAO:0005019 ! autopodium -property_value: IAO:0000589 "skeleton of autopod (VAO)" xsd:string -equivalent_to: UBERON:0006717 ! skeleton of autopod - -[Term] -id: VAO:0005020 ! manus -property_value: IAO:0000589 "skeleton of hand (VAO)" xsd:string -equivalent_to: UBERON:0001442 ! skeleton of hand - -[Term] -id: VAO:0005021 ! pes -property_value: IAO:0000589 "skeleton of foot (VAO)" xsd:string -equivalent_to: UBERON:0001445 ! skeleton of foot - -[Term] -id: VAO:0005028 ! acropodium -property_value: IAO:0000589 "skeleton of acropodium (VAO)" xsd:string -equivalent_to: UBERON:0010543 ! skeleton of acropodium - -[Term] -id: VAO:0005029 ! anterior acropodium -property_value: IAO:0000589 "skeleton of anterior acropodium (VAO)" xsd:string -equivalent_to: UBERON:0010688 ! skeleton of anterior acropodium - -[Term] -id: VAO:0005030 ! posterior acropodium -property_value: IAO:0000589 "skeleton of posterior acropodium (VAO)" xsd:string -equivalent_to: UBERON:0010696 ! skeleton of posterior acropodium - -[Term] -id: VAO:0005022 ! mesopodium -property_value: IAO:0000589 "mesopodium skeleton (VAO)" xsd:string -equivalent_to: UBERON:0009878 ! mesopodium skeleton - -[Term] -id: VAO:0005024 ! tarsus -property_value: IAO:0000589 "tarsal skeleton (VAO)" xsd:string -equivalent_to: UBERON:0009879 ! tarsal skeleton - -[Term] -id: VAO:0005023 ! carpus -property_value: IAO:0000589 "carpal skeleton (VAO)" xsd:string -equivalent_to: UBERON:0009880 ! carpal skeleton - -[Term] -id: VAO:0005025 ! metapodium -property_value: IAO:0000589 "metapodium skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010546 ! metapodium skeleton - -[Term] -id: VAO:0005026 ! anterior metapodium -property_value: IAO:0000589 "metacarpal skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010544 ! metacarpal skeleton - -[Term] -id: VAO:0005027 ! posterior metapodium -property_value: IAO:0000589 "metatarsus skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010545 ! metatarsus skeleton - -[Term] -id: VAO:0005018 ! limb skeleton subdivision -property_value: IAO:0000589 "limb skeleton subdivision (VAO)" xsd:string -equivalent_to: UBERON:0010712 ! limb skeleton subdivision - -[Term] -id: VAO:0005000 ! pectoral appendage skeleton -property_value: IAO:0000589 "pectoral appendage skeleton (VAO)" xsd:string -equivalent_to: UBERON:0007272 ! pectoral appendage skeleton - -[Term] -id: VAO:0000169 ! paired fin skeleton -property_value: IAO:0000589 "paired fin skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010713 ! paired fin skeleton - -[Term] -id: VAO:0000153 ! pectoral fin skeleton -property_value: IAO:0000589 "pectoral fin skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010710 ! pectoral fin skeleton - -[Term] -id: VAO:0000154 ! pelvic fin skeleton -property_value: IAO:0000589 "pelvic fin skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010711 ! pelvic fin skeleton - -[Term] -id: VAO:0000151 ! forelimb skeleton -property_value: IAO:0000589 "forelimb skeleton (VAO)" xsd:string -equivalent_to: UBERON:0001440 ! forelimb skeleton - -[Term] -id: VAO:0000152 ! hindlimb skeleton -property_value: IAO:0000589 "hindlimb skeleton (VAO)" xsd:string -equivalent_to: UBERON:0001441 ! hindlimb skeleton - -[Term] -id: VAO:0005014 ! posterior zeugopodium -property_value: IAO:0000589 "hindlimb zeugopod skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010720 ! hindlimb zeugopod skeleton - -[Term] -id: VAO:0005016 ! calcaneum -property_value: IAO:0000589 "calcaneus (VAO)" xsd:string -equivalent_to: UBERON:0001450 ! calcaneus - -[Term] -id: VAO:0005048 ! tibiale -property_value: IAO:0000589 "medial tibial tarsal bone (VAO)" xsd:string -equivalent_to: UBERON:0006836 ! medial tibial tarsal bone - -[Term] -id: VAO:0005052 ! distal tarsal 1 -property_value: IAO:0000589 "distal tarsal bone 1 (VAO)" xsd:string -equivalent_to: UBERON:0001452 ! distal tarsal bone 1 - -[Term] -id: VAO:0005053 ! distal tarsal 2 -property_value: IAO:0000589 "distal tarsal bone 2 (VAO)" xsd:string -equivalent_to: UBERON:0001453 ! distal tarsal bone 2 - -[Term] -id: VAO:0005054 ! distal tarsal 3 -property_value: IAO:0000589 "distal tarsal bone 3 (VAO)" xsd:string -equivalent_to: UBERON:0001454 ! distal tarsal bone 3 - -[Term] -id: VAO:0005055 ! distal tarsal 4 -property_value: IAO:0000589 "distal tarsal bone 4 (VAO)" xsd:string -equivalent_to: UBERON:0010737 ! distal tarsal bone 4 - -[Term] -id: VAO:0005056 ! distal tarsal 5 -property_value: IAO:0000589 "distal tarsal bone 5 (VAO)" xsd:string -equivalent_to: UBERON:0010738 ! distal tarsal bone 5 - -[Term] -id: VAO:0000057 ! bone element -property_value: IAO:0000589 "bone (VAO)" xsd:string -equivalent_to: UBERON:0001474 ! bone - -[Term] -id: VAO:0000132 ! ossicle -property_value: IAO:0000589 "ossicle (VAO)" xsd:string -equivalent_to: UBERON:0010911 ! ossicle - -[Term] -id: VAO:0000137 ! sesamoid -property_value: IAO:0000589 "sesamoid bone (VAO)" xsd:string -equivalent_to: UBERON:0001479 ! sesamoid bone - -[Term] -id: VAO:0000031 ! musculoskeletal system -property_value: IAO:0000589 "musculoskeletal system (VAO)" xsd:string -equivalent_to: UBERON:0002204 ! musculoskeletal system - -[Term] -id: VAO:0000033 ! muscular system -property_value: IAO:0000589 "musculature of body (VAO)" xsd:string -equivalent_to: UBERON:0000383 ! musculature of body - -[Term] -id: VAO:0005038 ! musculature -property_value: IAO:0000589 "musculature (VAO)" xsd:string -equivalent_to: UBERON:0001015 ! musculature - -[Term] -id: VAO:0000128 ! skeletal element -property_value: IAO:0000589 "skeletal element (VAO)" xsd:string -equivalent_to: UBERON:0004765 ! skeletal element - -[Term] -id: VAO:0000000 ! cartilaginous element -property_value: IAO:0000589 "cartilaginous element (VAO)" xsd:string -equivalent_to: UBERON:0007844 ! cartilaginous element - -[Term] -id: VAO:0000042 ! skeletal subdivision -property_value: IAO:0000589 "subdivision of skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010912 ! subdivision of skeleton - -[Term] -id: VAO:0000049 ! cranial skeleton -property_value: IAO:0000589 "cranial skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010323 ! cranial skeleton - -[Term] -id: VAO:0000083 ! craniofacial region -property_value: IAO:0000589 "craniofacial region (VAO)" xsd:string -equivalent_to: UBERON:0010324 ! craniofacial region - -[Term] -id: VAO:0000082 ! craniofacial skeleton -property_value: IAO:0000589 "craniofacial skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010325 ! craniofacial skeleton - -[Term] -id: VAO:0000069 ! dentine -property_value: IAO:0000589 "dentine (VAO)" xsd:string -equivalent_to: UBERON:0001751 ! dentine - -[Term] -id: VAO:0000065 ! enamel -property_value: IAO:0000589 "enamel (VAO)" xsd:string -equivalent_to: UBERON:0001752 ! enamel - -[Term] -id: VAO:0000062 ! cementum -property_value: IAO:0000589 "cementum (VAO)" xsd:string -equivalent_to: UBERON:0001753 ! cementum - -[Term] -id: VAO:0000094 ! hyaline cartilage tissue -property_value: IAO:0000589 "hyaline cartilage (VAO)" xsd:string -equivalent_to: UBERON:0001994 ! hyaline cartilage - -[Term] -id: VAO:0000103 ! fibrocartilage -property_value: IAO:0000589 "fibrocartilage (VAO)" xsd:string -equivalent_to: UBERON:0001995 ! fibrocartilage - -[Term] -id: VAO:0000091 ! elastic cartilage tissue -property_value: IAO:0000589 "elastic cartilage (VAO)" xsd:string -equivalent_to: UBERON:0001996 ! elastic cartilage - -[Term] -id: VAO:0000178 ! embryonic structure -property_value: IAO:0000589 "embryonic structure (VAO)" xsd:string -equivalent_to: UBERON:0002050 ! embryonic structure - -[Term] -id: VAO:0000056 ! axial skeleton -property_value: IAO:0000589 "axial skeleton (VAO)" xsd:string -equivalent_to: UBERON:0005944 ! axial skeleton - -[Term] -id: VAO:0000093 ! postcranial axial skeleton -property_value: IAO:0000589 "postcranial axial skeleton (VAO)" xsd:string -equivalent_to: UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: VAO:0000076 ! appendicular skeleton -property_value: IAO:0000589 "entire appendicular skeleton (VAO)" xsd:string -equivalent_to: UBERON:0002091 ! entire appendicular skeleton - -[Term] -id: VAO:0000067 ! paired appendage -property_value: IAO:0000589 "limb/fin (VAO)" xsd:string -equivalent_to: UBERON:0004708 ! limb/fin - -[Term] -id: VAO:0000150 ! pelvic appendage -property_value: IAO:0000589 "pelvic appendage (VAO)" xsd:string -equivalent_to: UBERON:0004709 ! pelvic appendage - -[Term] -id: VAO:0000148 ! pectoral appendage -property_value: IAO:0000589 "pectoral appendage (VAO)" xsd:string -equivalent_to: UBERON:0004710 ! pectoral appendage - -[Term] -id: VAO:0000121 ! limb -property_value: IAO:0000589 "limb (VAO)" xsd:string -equivalent_to: UBERON:0002101 ! limb - -[Term] -id: VAO:0005057 ! brachium -property_value: IAO:0000589 "forelimb stylopod (VAO)" xsd:string -equivalent_to: UBERON:0003822 ! forelimb stylopod - -[Term] -id: VAO:0005058 ! antebrachium -property_value: IAO:0000589 "forelimb zeugopod (VAO)" xsd:string -equivalent_to: UBERON:0002386 ! forelimb zeugopod - -[Term] -id: VAO:0005060 ! shank -property_value: IAO:0000589 "hindlimb zeugopod (VAO)" xsd:string -equivalent_to: UBERON:0003823 ! hindlimb zeugopod - -[Term] -id: VAO:0000001 ! surface structure -property_value: IAO:0000589 "surface structure (VAO)" xsd:string -equivalent_to: UBERON:0003102 ! surface structure - -[Term] -id: VAO:0000029 ! integument -property_value: IAO:0000589 "integument (VAO)" xsd:string -equivalent_to: UBERON:0002199 ! integument - -[Term] -id: VAO:0000036 ! perichondrium -property_value: IAO:0000589 "perichondrium (VAO)" xsd:string -equivalent_to: UBERON:0002222 ! perichondrium - -[Term] -id: VAO:0000054 ! perichordal tissue -property_value: IAO:0000589 "perichordal tissue (VAO)" xsd:string -equivalent_to: UBERON:0007862 ! perichordal tissue - -[Term] -id: VAO:0000032 ! notochord -property_value: IAO:0000589 "notochord (VAO)" xsd:string -equivalent_to: UBERON:0002328 ! notochord - -[Term] -id: VAO:0000017 ! portion of connective tissue -property_value: IAO:0000589 "connective tissue (VAO)" xsd:string -equivalent_to: UBERON:0002384 ! connective tissue - -[Term] -id: VAO:0000050 ! dense regular connective tissue -property_value: IAO:0000589 "dense regular collagenous tissue (VAO)" xsd:string -equivalent_to: UBERON:0007846 ! dense regular collagenous tissue - -[Term] -id: VAO:0000184 ! vertebral element -property_value: IAO:0000589 "vertebral element (VAO)" xsd:string -equivalent_to: UBERON:0010913 ! vertebral element - -[Term] -id: VAO:0000040 ! cartilage tissue -property_value: IAO:0000589 "cartilage tissue (VAO)" xsd:string -equivalent_to: UBERON:0002418 ! cartilage tissue - -[Term] -id: VAO:0000035 ! dermal skeleton -property_value: IAO:0000589 "dermal skeleton (VAO)" xsd:string -equivalent_to: UBERON:0010364 ! dermal skeleton - -[Term] -id: VAO:0000063 ! odontoid tissue -property_value: IAO:0000589 "odontoid tissue (VAO)" xsd:string -equivalent_to: UBERON:0010365 ! odontoid tissue - -[Term] -id: VAO:0000015 ! skeletal tissue -property_value: IAO:0000589 "skeletal tissue (VAO)" xsd:string -equivalent_to: UBERON:0004755 ! skeletal tissue - -[Term] -id: VAO:0000047 ! bone tissue -property_value: IAO:0000589 "bone tissue (VAO)" xsd:string -equivalent_to: UBERON:0002481 ! bone tissue - -[Term] -id: VAO:0005067 ! scapular acromion -property_value: IAO:0000589 "acromion (VAO)" xsd:string -equivalent_to: UBERON:0002497 ! acromion - -[Term] -id: VAO:0000037 ! -property_value: IAO:0000589 "endoskeleton (VAO)" xsd:string -equivalent_to: UBERON:0010362 ! endoskeleton - -[Term] -id: VAO:0000135 ! replacement element -property_value: IAO:0000589 "replacement element (VAO)" xsd:string -equivalent_to: UBERON:0010522 ! replacement element - -[Term] -id: VAO:0000139 ! endochondral element -property_value: IAO:0000589 "endochondral element (VAO)" xsd:string -equivalent_to: UBERON:0010363 ! endochondral element - -[Term] -id: VAO:0000145 ! endochondral bone -property_value: IAO:0000589 "endochondral bone (VAO)" xsd:string -equivalent_to: UBERON:0002513 ! endochondral bone - -[Term] -id: VAO:0000179 ! fin bud -property_value: IAO:0000589 "fin bud (VAO)" xsd:string -equivalent_to: UBERON:0002531 ! fin bud - -[Term] -id: VAO:0000099 ! fin -property_value: IAO:0000589 "fin (VAO)" xsd:string -equivalent_to: UBERON:0008897 ! fin - -[Term] -id: VAO:0000165 ! dorsal fin -property_value: IAO:0000589 "dorsal fin (VAO)" xsd:string -equivalent_to: UBERON:0003097 ! dorsal fin - -[Term] -id: VAO:0000092 ! chondrogenic condensation -property_value: IAO:0000589 "cartilaginous condensation (VAO)" xsd:string -equivalent_to: UBERON:0005863 ! cartilaginous condensation - -[Term] -id: VAO:0000207 ! maxilla -property_value: IAO:0000589 "maxilla (VAO)" xsd:string -equivalent_to: UBERON:0002397 ! maxilla - -[Term] -id: VAO:0000199 ! phalanx -property_value: IAO:0000589 "phalanx (VAO)" xsd:string -equivalent_to: UBERON:0003221 ! phalanx - -[Term] -id: VAO:0000201 ! hallux -property_value: IAO:0000589 "foot digit 1 (VAO)" xsd:string -equivalent_to: UBERON:0003631 ! foot digit 1 - -[Term] -id: VAO:0005069 ! fossa -property_value: IAO:0000589 "bone fossa (VAO)" xsd:string -equivalent_to: UBERON:0004704 ! bone fossa - -[Term] -id: VAO:0000180 ! process -property_value: IAO:0000589 "bony projection (VAO)" xsd:string -equivalent_to: UBERON:0004530 ! bony projection - -[Term] -id: VAO:0000187 ! cleithrum -property_value: IAO:0000589 "cleithrum (VAO)" xsd:string -equivalent_to: UBERON:0004741 ! cleithrum - -[Term] -id: VAO:0000158 ! coracoid bone -property_value: IAO:0000589 "coracoid bone (VAO)" xsd:string -equivalent_to: UBERON:0004743 ! coracoid bone - -[Term] -id: VAO:0005002 ! scapulocoracoid -property_value: IAO:0000589 "scapulocoracoid (VAO)" xsd:string -equivalent_to: UBERON:0004753 ! scapulocoracoid - -[Term] -id: VAO:0000127 ! gastralium -property_value: IAO:0000589 "gastralium (VAO)" xsd:string -equivalent_to: UBERON:0010898 ! gastralium - -[Typedef] -id: http://purl.obolibrary.org/obo/vao#part_of -equivalent_to: BFO:0000050 - -[Typedef] -id: http://purl.obolibrary.org/obo/vao#develops_from -equivalent_to: RO:0002225 - From 4047912374fae15e3e26ba08ac2df0f7966d66e3 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 4 Sep 2023 21:14:23 +0100 Subject: [PATCH 12/45] Set the edit file as source of truth for the KUPO bridge. The CL bridge to KUPO has likely at some point been generated from cross-references in CL (all links in the bridge have corresponding xrefs in CL). It is currently _not_ re-generated because KUPO xrefs are not listed in Uberon as being associated with a bridge, which we fix here. --- src/ontology/uberon-edit.obo | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ontology/uberon-edit.obo b/src/ontology/uberon-edit.obo index 4ecabcce47..455f10de4c 100644 --- a/src/ontology/uberon-edit.obo +++ b/src/ontology/uberon-edit.obo @@ -200,6 +200,7 @@ treat-xrefs-as-reverse-genus-differentia: FMA part_of NCBITaxon:9606 treat-xrefs-as-reverse-genus-differentia: HAO part_of NCBITaxon:7399 treat-xrefs-as-reverse-genus-differentia: HBA part_of NCBITaxon:9606 treat-xrefs-as-reverse-genus-differentia: HsapDv part_of NCBITaxon:9606 +treat-xrefs-as-reverse-genus-differentia: KUPO part_of NCBITaxon:9606 treat-xrefs-as-reverse-genus-differentia: MA part_of NCBITaxon:10090 treat-xrefs-as-reverse-genus-differentia: MFO part_of NCBITaxon:8089 treat-xrefs-as-reverse-genus-differentia: MmusDv part_of NCBITaxon:10090 From 7941e097c7ec034015a2b8f00653058ec01cca0b Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 5 Sep 2023 18:56:43 +0100 Subject: [PATCH 13/45] Remove header/footer for old bridges. The hdr-* files were used to prepend metadata at the top of some of the bridge files. This will be done differently in the new pipeline and those header files won't be necessary anymore. Likewise for the footer file. --- src/ontology/bridge/ftr.obo | 95 ------------------- .../bridge/hdr-cl-bridge-to-ehdaa2.obo | 6 -- .../bridge/hdr-cl-bridge-to-emapa.obo | 8 -- src/ontology/bridge/hdr-cl-bridge-to-fbbt.obo | 6 -- src/ontology/bridge/hdr-cl-bridge-to-fma.obo | 7 -- src/ontology/bridge/hdr-cl-bridge-to-ma.obo | 7 -- .../bridge/hdr-cl-bridge-to-sctid.obo | 5 - src/ontology/bridge/hdr-cl-bridge-to-xao.obo | 7 -- src/ontology/bridge/hdr-cl-bridge-to-zfa.obo | 8 -- .../bridge/hdr-uberon-bridge-to-ehdaa2.obo | 6 -- .../bridge/hdr-uberon-bridge-to-emapa.obo | 8 -- .../bridge/hdr-uberon-bridge-to-fbbt.obo | 6 -- .../bridge/hdr-uberon-bridge-to-fma.obo | 7 -- .../bridge/hdr-uberon-bridge-to-ma.obo | 7 -- .../bridge/hdr-uberon-bridge-to-sctid.obo | 5 - .../bridge/hdr-uberon-bridge-to-xao.obo | 7 -- .../bridge/hdr-uberon-bridge-to-zfa.obo | 8 -- 17 files changed, 203 deletions(-) delete mode 100644 src/ontology/bridge/ftr.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-ehdaa2.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-emapa.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-fbbt.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-fma.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-ma.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-sctid.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-xao.obo delete mode 100644 src/ontology/bridge/hdr-cl-bridge-to-zfa.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-ehdaa2.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-emapa.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-fbbt.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-fma.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-ma.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-sctid.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-xao.obo delete mode 100644 src/ontology/bridge/hdr-uberon-bridge-to-zfa.obo diff --git a/src/ontology/bridge/ftr.obo b/src/ontology/bridge/ftr.obo deleted file mode 100644 index b46f173dcf..0000000000 --- a/src/ontology/bridge/ftr.obo +++ /dev/null @@ -1,95 +0,0 @@ -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/hdr-cl-bridge-to-ehdaa2.obo b/src/ontology/bridge/hdr-cl-bridge-to-ehdaa2.obo deleted file mode 100644 index 838a07d049..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-ehdaa2.obo +++ /dev/null @@ -1,6 +0,0 @@ -property_value: dc-title "CL bridge to ehdaa2" xsd:string -property_value: dc-description "Equivalence axioms between EHDAA2 and CL. EHDAA2 replaces EHDAA" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Jonathan Bard" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/ehdaa2.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-emapa.obo b/src/ontology/bridge/hdr-cl-bridge-to-emapa.obo deleted file mode 100644 index 417b07f190..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-emapa.obo +++ /dev/null @@ -1,8 +0,0 @@ -property_value: dc-title "CL bridge to emapa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "vHOG editors" xsd:string -property_value: dc-creator "Aurelie Comte" xsd:string -property_value: dc-creator "Anne Niknejad" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-fbbt.obo b/src/ontology/bridge/hdr-cl-bridge-to-fbbt.obo deleted file mode 100644 index 8b20165ee6..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-fbbt.obo +++ /dev/null @@ -1,6 +0,0 @@ -property_value: dc-title "CL bridge to fbbt" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between the drosophila anatomy ontology and CL. Note that currently CL focuses on chordate anatomy so there are only a minimal set of equivalencies for high level classes. In future CL may bridge via the arthropod anatomy ontology" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "David Osumi-Sutherland" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fbbt.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-fma.obo b/src/ontology/bridge/hdr-cl-bridge-to-fma.obo deleted file mode 100644 index 93ec1b005a..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-fma.obo +++ /dev/null @@ -1,7 +0,0 @@ -property_value: dc-title "CL bridge to fma" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between the FMA and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Onard Mejino" xsd:string -property_value: dc-contributor "Terry Hayamizu" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-ma.obo b/src/ontology/bridge/hdr-cl-bridge-to-ma.obo deleted file mode 100644 index 007e16c48f..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-ma.obo +++ /dev/null @@ -1,7 +0,0 @@ -property_value: dc-title "CL bridge to ma" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between adult moouse anatomy and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "Terry Hayamizu" xsd:string -property_value: dc-contributor "George Gkoutos" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/ma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-sctid.obo b/src/ontology/bridge/hdr-cl-bridge-to-sctid.obo deleted file mode 100644 index ee7189b1d3..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-sctid.obo +++ /dev/null @@ -1,5 +0,0 @@ -property_value: dc-title "CL bridge to SNOMED-CT" xsd:string -property_value: dc-description "Rough subclass axioms between SNOMED-CT and CL. Note that in SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree." xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "OBOL" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-xao.obo b/src/ontology/bridge/hdr-cl-bridge-to-xao.obo deleted file mode 100644 index c0a1dfc697..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-xao.obo +++ /dev/null @@ -1,7 +0,0 @@ -property_value: dc-title "CL bridge to xao" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between XAO and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Erik Segerdell" xsd:string -property_value: dc-contributor "VG Ponferrada" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/xao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-cl-bridge-to-zfa.obo b/src/ontology/bridge/hdr-cl-bridge-to-zfa.obo deleted file mode 100644 index b1d2d1c339..0000000000 --- a/src/ontology/bridge/hdr-cl-bridge-to-zfa.obo +++ /dev/null @@ -1,8 +0,0 @@ -property_value: dc-title "CL bridge to zfa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between ZFA and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Ceri Van Slyke" xsd:string -property_value: dc-contributor "Yvonne Bradford" xsd:string -property_value: dc-contributor "Melissa Haendel" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/zfa.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-ehdaa2.obo b/src/ontology/bridge/hdr-uberon-bridge-to-ehdaa2.obo deleted file mode 100644 index 89f9e3fc23..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-ehdaa2.obo +++ /dev/null @@ -1,6 +0,0 @@ -property_value: dc-title "Uberon bridge to ehdaa2" xsd:string -property_value: dc-description "Equivalence axioms between EHDAA2 and Uberon. EHDAA2 replaces EHDAA" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Jonathan Bard" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/ehdaa2.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-emapa.obo b/src/ontology/bridge/hdr-uberon-bridge-to-emapa.obo deleted file mode 100644 index f55c7be533..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-emapa.obo +++ /dev/null @@ -1,8 +0,0 @@ -property_value: dc-title "Uberon bridge to emapa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "vHOG editors" xsd:string -property_value: dc-creator "Aurelie Comte" xsd:string -property_value: dc-creator "Anne Niknejad" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-fbbt.obo b/src/ontology/bridge/hdr-uberon-bridge-to-fbbt.obo deleted file mode 100644 index 233b7fb809..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-fbbt.obo +++ /dev/null @@ -1,6 +0,0 @@ -property_value: dc-title "Uberon bridge to fbbt" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between the drosophila anatomy ontology and Uberon. Note that currently Uberon focuses on chordate anatomy so there are only a minimal set of equivalencies for high level classes. In future Uberon may bridge via the arthropod anatomy ontology" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "David Osumi-Sutherland" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fbbt.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-fma.obo b/src/ontology/bridge/hdr-uberon-bridge-to-fma.obo deleted file mode 100644 index 4088766c81..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-fma.obo +++ /dev/null @@ -1,7 +0,0 @@ -property_value: dc-title "Uberon bridge to fma" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between the FMA and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Onard Mejino" xsd:string -property_value: dc-contributor "Terry Hayamizu" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-ma.obo b/src/ontology/bridge/hdr-uberon-bridge-to-ma.obo deleted file mode 100644 index ee275a4678..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-ma.obo +++ /dev/null @@ -1,7 +0,0 @@ -property_value: dc-title "Uberon bridge to ma" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between adult moouse anatomy and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "Terry Hayamizu" xsd:string -property_value: dc-contributor "George Gkoutos" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/ma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-sctid.obo b/src/ontology/bridge/hdr-uberon-bridge-to-sctid.obo deleted file mode 100644 index 7c98634fb8..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-sctid.obo +++ /dev/null @@ -1,5 +0,0 @@ -property_value: dc-title "Uberon bridge to SNOMED-CT" xsd:string -property_value: dc-description "Rough subclass axioms between SNOMED-CT and Uberon. Note that in SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree." xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "OBOL" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-xao.obo b/src/ontology/bridge/hdr-uberon-bridge-to-xao.obo deleted file mode 100644 index 8224115ab8..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-xao.obo +++ /dev/null @@ -1,7 +0,0 @@ -property_value: dc-title "Uberon bridge to xao" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between XAO and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Erik Segerdell" xsd:string -property_value: dc-contributor "VG Ponferrada" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/xao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl diff --git a/src/ontology/bridge/hdr-uberon-bridge-to-zfa.obo b/src/ontology/bridge/hdr-uberon-bridge-to-zfa.obo deleted file mode 100644 index 039799a466..0000000000 --- a/src/ontology/bridge/hdr-uberon-bridge-to-zfa.obo +++ /dev/null @@ -1,8 +0,0 @@ -property_value: dc-title "Uberon bridge to zfa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between ZFA and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Ceri Van Slyke" xsd:string -property_value: dc-contributor "Yvonne Bradford" xsd:string -property_value: dc-contributor "Melissa Haendel" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/zfa.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl From 5c264b30133e933800e994c7fa5e1e3963c8d81f Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 5 Sep 2023 20:18:08 +0100 Subject: [PATCH 14/45] Generate bridge files from SSSOM sets. Dear reader, we have a lot to unpack here. Very simply put, this commit replaces the old Perl script that generated the bridge files from cross-references in Uberon and CL. Critically, it does so by clearly separating the process in two independent steps: * extracting the cross-references and make a SSSOM set out of them; * generating the bridges out of the SSSOM set. This allows for future flexibility as both steps can be modified independently of the other, as long as the first step still results in a SSSOM set and the second set still takes a SSSOM set as input. (In particular, in the future we may switch to maintaining the mappings directly in SSSOM, instead of using cross-references in the -edit file. This would obviously make the first step above obsolete, but the second step would be unaffected.) Now for the details: The first step is entirely done by the 'xref-extract' command of the SSSOM plugin for ROBOT. We merge Uberon and CL (since we also need to extract xrefs from CL, not only Uberon), then use xref-extract to produce a SSSOM set. The command uses the 'treat-xrefs-as-...' annotations found in the ontology to decide: 1) which cross-references to extract (only the cross-references using a prefix declared in a 'treat-xrefs-as-...' annotations are considered), and 2) which mapping predicate to use according to the following table: * 'treat-xrefs-as-equivalent' -> skos:exactMatch * 'treat-xrefs-as-has-subclass' -> skos:narrowMatch * 'treat-xrefs-as-is_a' -> skos:broadMatch * 'treat-xrefs-as-reverse-genus-differentia' -> semapv:crossSpeciesExactMatch We use the same process to extract cross-references from ZFA, since ZFA is the source of truth for the CL-to-ZFA mappings (but not for the Uberon-to-ZFA mappings, for some reason). In parallel, we fetch the SSSOM sets that are maintained by foreign ontologies (for now, only FBbt), so that we end up with mapping sets covering all the ontologies we want to bridge with. The second step is done by the 'sssom-inject' command of the same SSSOM plugin for ROBOT. Beyond the mapping sets themselves, that command requires two additional files: 1) The bridge/bridges.rules file dictates which bridging axioms should be generated for each mapping, depending on the mapping predicate and the subject or object of the mapping. It also takes care of making sure the mappings are in the expected orientation (Uberon/CL terms on the object side), filtering mappings to anything else than Uberon/CL (in case the externally provided mapping sets contain more than what we need), and checking that all mappings concern classes that do exist in Uberon/CL and are not obsolete. That file is written in the adhoc "SSSOM/Transform-OWL" language, the documentation of which can be found on the website of the SSSOM plugin. 2) The bridge/bridges.dispatch dictates where to write the bridging axioms produced by the bridges.rules file. It does so using a tagging system: each rule in bridges.rules is tagged to indicate the bridge to which the axioms generated by that rule belong. The dispatch file associates each tag to an output file and in addition allows to specify some metadata for each output file. --- src/ontology/bridge/bridges.dispatch | 365 ++++++++++++++++++++++++ src/ontology/bridge/bridges.rules | 399 +++++++++++++++++++++++++++ src/ontology/uberon.Makefile | 109 ++++---- 3 files changed, 814 insertions(+), 59 deletions(-) create mode 100644 src/ontology/bridge/bridges.dispatch create mode 100644 src/ontology/bridge/bridges.rules diff --git a/src/ontology/bridge/bridges.dispatch b/src/ontology/bridge/bridges.dispatch new file mode 100644 index 0000000000..a947f3a7a3 --- /dev/null +++ b/src/ontology/bridge/bridges.dispatch @@ -0,0 +1,365 @@ +[aeo-uberon] +file: bridge/uberon-bridge-to-aeo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-aeo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-aeo.owl + +[aeo-cl] +file: bridge/cl-bridge-to-aeo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-aeo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-aeo.owl + +[bfo-uberon] +file: bridge/uberon-bridge-to-bfo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-bfo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-bfo.owl + +[bfo-cl] +file: bridge/cl-bridge-to-bfo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-bfo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-bfo.owl + +[bspo-uberon] +file: bridge/uberon-bridge-to-bspo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-bspo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-bspo.owl + +[bspo-cl] +file: bridge/cl-bridge-to-aeo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-bspo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-bspo.owl + +[caro-uberon] +file: bridge/uberon-bridge-to-caro.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-caro.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-caro.owl + +[caro-cl] +file: bridge/cl-bridge-to-caro.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-caro.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-caro.owl + +[dhba-uberon] +file: bridge/uberon-bridge-to-dhba.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-dhba.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-dhba.owl + +[dhba-cl] +file: bridge/cl-bridge-to-dhba.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-dhba.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-dhba.owl + +[efo-uberon] +file: bridge/uberon-bridge-to-efo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-efo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-efo.owl + +[efo-cl] +file: bridge/cl-bridge-to-efo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-efo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-efo.owl + +[ehdaa2-uberon] +file: bridge/uberon-bridge-to-ehdaa2.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-ehdaa2.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-ehdaa2.owl +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:9606)) SubClassOf: RO:0002160 some NCBITaxon:9606 +dc-title: Uberon bridge to ehdaa2 +dc-description: Equivalence axioms between EHDAA2 and Uberon. EHDAA2 replaces EHDAA. +dc-creator: Uberon editors +dc-contributor: Jonathan Bard + +[ehdaa2-cl] +file: bridge/cl-bridge-to-ehdaa2.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-ehdaa2.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-ehdaa2.owl +dc-title: CL bridge to ehdaa2 +dc-description: Equivalence axioms between EHDAA2 and CL. EHDAA2 replaces EHDAA. +dc-creator: CL editors +dc-contributor: Jonathan Bard + +[emapa-uberon] +file: bridge/uberon-bridge-to-emapa.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-emapa.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-emapa.owl +dc-title: Uberon bridge to emapa +dc-description: Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and Uberon. +dc-creator: Uberon editors +dc-creator: vHOG editors +dc-creator: Aurelie Comte +dc-creator: Anne Niknejad + +[emapa-cl] +file: bridge/cl-bridge-to-emapa.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-emapa.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-emapa.owl + +[fbbt-uberon] +file: bridge/uberon-bridge-to-fbbt.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-fbbt.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-fbbt.owl +dc-title: Uberon bridge to FBbt +dc-description: Taxonomic equivalence axioms between the Drosophila Anatomy Ontology and Uberon. +dc-creator: Uberon editors +dc-contributor: David Osumi-Sutherland +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:7227)) SubClassOf: RO:0002160 some NCBITaxon:7227 + +[fbbt-cl] +file: bridge/cl-bridge-to-fbbt.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-cl.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-cl.owl +dc-title: CL bridge to FBbt +dc-description: Taxonomic equivalence axioms between the Drosophila Anatomy Ontology and CL. +dc-creator: CL editors +dc-contributor: David Osumi-Sutherland + +[fbdv-uberon] +file: bridge/uberon-bridge-to-fbdv.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-fbdv.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-fbdv.owl + +[fma-uberon] +file: bridge/uberon-bridge-to-fma.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-fma.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-fma.owl +dc-title: Uberon bridge to fma +dc-description: Taxonomic equivalence axioms between the FMA and Uberon. +dc-creator: Uberon editors +dc-contributor: Onard Mejino +dc-contributor: Terry Hayamizu +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:9606)) SubClassOf: RO:0002160 some NCBITaxon:9606 + +[fma-cl] +file: bridge/cl-bridge-to-fma.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-fma.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-fma.owl +dc-title: CL bridge to fma +dc-description: Taxonomic equivalence axioms between the FMA and CL. +dc-creator: CL editors +dc-contributor: Onard Mejino +dc-contributor: Terry Hayamizu + +[go-uberon] +file: bridge/uberon-bridge-to-go.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-go.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-go.owl + +[go-cl] +file: bridge/cl-bridge-to-go.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-go.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-go.owl + +[hao-uberon] +file: bridge/uberon-bridge-to-hao.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-hao.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-hao.owl +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:7399)) SubClassOf: RO:0002160 some NCBITaxon:7399 + +[hao-cl] +file: bridge/cl-bridge-to-hao.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-hao.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-hao.owl + +[hba-uberon] +file: bridge/uberon-bridge-to-hba.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-hba.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-hba.owl + +[hba-cl] +file: bridge/cl-bridge-to-hba.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-hba.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-hba.owl + +[hsapdv-uberon] +file: bridge/uberon-bridge-to-hsapdv.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-hsapdv.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-hsapdv.owl + +[kupo-uberon] +file: bridge/uberon-bridge-to-kupo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-kupo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-kupo.owl + +[kupo-cl] +file: bridge/cl-bridge-to-kupo.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-kupo.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-kupo.owl + +[ma-uberon] +file: bridge/uberon-bridge-to-ma.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-ma.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-ma.owl +dc-title: Uberon bridge to ma +dc-description: Taxonomic equivalence axioms between adult mouse anatomy and Uberon. +dc-creator: Uberon editors +dc-creator: Terry Hayamizu +dc-contributor: George Gkoutos +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:10090)) SubClassOf: RO:0002160 some NCBITaxon:10090 + +[ma-cl] +file: bridge/cl-bridge-to-ma.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-ma.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-ma.owl +dc-title: CL bridge to ma +dc-description: Taxonomic equivalence axioms between adult mouse anatomy and CL. +dc-creator: CL editors +dc-creator: Terry Hayamizu +dc-contributor: George Gkoutos + +[mmusdv-uberon] +file: bridge/uberon-bridge-to-mmusdv.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-mmusdv.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-mmusdv.owl + +[ncit-uberon] +file: bridge/uberon-bridge-to-ncit.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-ncit.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-ncit.owl + +[ncit-cl] +file: bridge/cl-bridge-to-ncit.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-ncit.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-ncit.owl + +[og-uberon] +file: bridge/uberon-bridge-to-og.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-og.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-og.owl + +[og-cl] +file: bridge/cl-bridge-to-og.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-og.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-og.owl + +[oges-uberon] +file: bridge/uberon-bridge-to-oges.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-oges.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-oges.owl + +[oges-cl] +file: bridge/cl-bridge-to-oges.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-oges.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-oges.owl + +[pba-uberon] +file: bridge/uberon-bridge-to-pba.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-pba.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-pba.owl + +[pba-cl] +file: bridge/cl-bridge-to-pba.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-pba.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-pba.owl + +[sctid-uberon] +file: bridge/uberon-bridge-to-sctid.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-sctid.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-sctid.owl +dc-title: Uberon bridge to SNOMED-CT +dc-description: Rough subclass axioms between SNOMED-CT and Uberon. Note that SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree. +dc-creator: Uberon editors +dc-contributor: OBOL + +[sctid-cl] +file: bridge/cl-bridge-to-sctid.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-sctid.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-sctid.owl +dc-title: CL bridge to SNOMED-CT +dc-description: Rough subclass axioms between SNOMED-CT and CL. Note that SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree. +dc-creator: CL editors +dc-contributor: OBOL + +[spd-uberon] +file: bridge/uberon-bridge-to-spd.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-spd.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-spd.owl + +[spd-cl] +file: bridge/cl-bridge-to-spd.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-spd.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-spd.owl + +[tads-uberon] +file: bridge/uberon-bridge-to-tads.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-tads.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-tads.owl + +[tads-cl] +file: bridge/cl-bridge-to-tads.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-tads.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-tads.owl + +[tgma-uberon] +file: bridge/uberon-bridge-to-tgma.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-tgma.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-tgma.owl +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:44484)) SubClassOf: RO:0002160 some NCBITaxon:44484 + +[tgma-cl] +file: bridge/cl-bridge-to-tgma.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-tgma.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-tgma.owl + +[wbbt-uberon] +file: bridge/uberon-bridge-to-wbbt.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-wbbt.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-wbbt.owl +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:6237)) SubClassOf: RO:0002160 some NCBITaxon:6237 + +[wbbt-cl] +file: bridge/cl-bridge-to-wbbt.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-wbbt.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-wbbt.owl + +[wbls-uberon] +file: bridge/uberon-bridge-to-wbls.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-wbls.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-wbls.owl + +[xao-uberon] +file: bridge/uberon-bridge-to-xao.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-xao.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-xao.owl +dc-title: Uberon bridge to xao +dc-description: Taxonomic equivalence axioms between XAO and Uberon. +dc-creator: Uberon editors +dc-contributor: Erik Segerdell +dc-contributor: VG Ponferrada +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:8353)) SubClassOf: RO:0002160 some NCBITaxon:8353 + +[xao-cl] +file: bridge/cl-bridge-to-xao.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-xao.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-xao.owl +dc-title: CL bridge to xao +dc-description: Taxonomic equivalence axioms between XAO and CL. +dc-creator: CL editors +dc-contributor: Erik Segerdell +dc-contributor: VG Ponferrada + +[zfa-uberon] +file: bridge/uberon-bridge-to-zfa.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-zfa.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-zfa.owl +dc-title: Uberon bridge to zfa +dc-description: Taxonomic equivalence axioms between ZFA and Uberon. +dc-creator: Uberon editors +dc-contributor: Veri Van Slyke +dc-contributor: Yvonne Bradford +dc-contributor: Melissa Haendel +add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:7954)) SubClassOf: RO:0002160 some NCBITaxon:7954 + +[zfa-cl] +file: bridge/cl-bridge-to-zfa.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-zfa.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-xfa.owl +dc-title: CL bridge to zfa +dc-description: Taxonomic equivalence axioms between ZFA and CL. +dc-creator: CL editors +dc-contributor: Veri Van Slyke +dc-contributor: Yvonne Bradford +dc-contributor: Melissa Haendel + +[zfs-uberon] +file: bridge/uberon-bridge-to-zfs.owl +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-zfs.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-zfs.owl diff --git a/src/ontology/bridge/bridges.rules b/src/ontology/bridge/bridges.rules new file mode 100644 index 0000000000..5b4db94825 --- /dev/null +++ b/src/ontology/bridge/bridges.rules @@ -0,0 +1,399 @@ +# SSSOM is OBO-agnostic and doesn't know about the implicit OBO prefix +# rule (PFX -> http://purl.obolibrary.org/obo/PFX_); *all* prefixes must +# be explicitly declared. +prefix AEO: +prefix BFO: +prefix BSPO: +prefix CARO: +prefix CL: +prefix DHBA: +prefix EFO: +prefix EHDAA2: +prefix EMAPA: +prefix FBbt: +prefix FBdv: +prefix FMA: +prefix GO: +prefix HAO: +prefix HBA: +prefix HsapDv: +prefix IAO: +prefix KUPO: +prefix MA: +prefix MmusDv: +prefix NCBITaxon: +prefix NCIT: +prefix OG: +prefix OGES: +prefix OIO: +prefix PBA: +prefix RO: +prefix SCTID: +prefix SPD: +prefix TADS: +prefix TGMA: +prefix UBERON: +prefix WBbt: +prefix WBls: +prefix XAO: +prefix ZFA: +prefix ZFS: + +# The relation to use in the existential restrictions between Uberon/CL +# terms and their taxon-specific equivalents: part_of (BFO:0000050) for +# most cases, except for life stage terms where we use occurs_in +# (BFO:0000066) instead. +set_var("TAXREL", BFO:0000050); +set_var("TAXREL", BFO:0000066, "%object_id is_a UBERON:0000104"); +set_var("TAXREL", BFO:0000066, "%object_id is_a UBERON:0000105"); + +# Those are not present in Uberon, we must declare them before we can +# use them in bridges. +declare_class(NCBITaxon:6893, NCBITaxon:6939, NCBITaxon:44484); + +# Make sure UBERON and CL classes are on the object side. +subject==UBERON:* || subject==CL:* -> invert(); + +# Ignore any mapping to something else than UBERON or CL. +!(object==UBERON:* || object==CL:*) -> stop(); + +# Ignore any mapping to an inexistent or obsolete UBERON/CL class. +predicate==* -> check_object_existence(); + +# Ignore any mapping with a predicate other than those four. +!(predicate==skos:exactMatch + || predicate==skos:narrowMatch + || predicate==skos:broadMatch + || predicate==semapv:crossSpeciesExactMatch) -> stop(); + +# Generate cross-reference annotations (for backward compatibility). +[xrefs] predicate==* -> annotate_object(OIO:hasDbXref, "%subject_curie"); + +# Bridging axiom-generating rules. +# The highly repetitive nature of those rules stems from the fact that +# we need separate rules for each foreign ontology and for both Uberon +# and CL, if we want to be able to send the corresponding axioms to +# separate bridge files. + +# Taxon-neutral bridges. +[aeo-uberon] subject==AEO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (AEO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[aeo-cl] subject==AEO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (AEO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[bfo-uberon] subject==BFO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (BFO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[bfo-cl] subject==BFO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (BFO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[bspo-uberon] subject==BSPO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (BSPO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[bspo-cl] subject==BSPO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (BSPO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[caro-uberon] subject==CARO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (CARO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[caro-cl] subject==CARO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (CARO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[efo-uberon] subject==EFO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (EFO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[efo-cl] subject==EFO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (EFO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[go-uberon] subject==GO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (GO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[go-cl] subject==GO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (GO)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[ncit-uberon] subject==NCIT:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (NCIT)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[ncit-cl] subject==NCIT:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (NCIT)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[og-uberon] subject==OG:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (OG)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[og-cl] subject==OG:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (OG)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[oges-uberon] subject==OGES:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (OGES)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[oges-cl] subject==OGES:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (OGES)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + +[sctid-uberon] subject==SCTID:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (SCTID)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} +[sctid-cl] subject==SCTID:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (SCTID)"); + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); +} + + +# Taxon-specific bridges. +[dhba-uberon] subject==DHBA:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} +[dhba-cl] subject==DHBA:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} + +[ehdaa2-uberon] subject==EHDAA2:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (embryonic human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} +[ehdaa2-cl] subject==EHDAA2:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (embryonic human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} + +[emapa-uberon] subject==EMAPA:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (embryonic mouse)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); +} +[emapa-cl] subject==EMAPA:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (embryonic mouse)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); +} + +[fbbt-uberon] subject==FBbt:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (drosophila)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7227)"); +} +[fbbt-cl] subject==FBbt:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (drosophila)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7227)"); +} + +[fbdv-uberon] subject==FBdv:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (drosophila)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7227)"); +} +[fbdv-cl] subject==FBdv:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (drosophila)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7227)"); +} + +[fma-uberon] subject==FMA:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (post-embryonic human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} +[fma-cl] subject==FMA:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (post-embryonic human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} + +[hao-uberon] subject==HAO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (hymenoptera)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7399)"); +} +[hao-cl] subject==HAO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (hymenoptera)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7399)"); +} + +[hba-uberon] subject==HBA:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} +[hba-cl] subject==HBA:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} + +[hsapdv-uberon] subject==HsapDv:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} +[hsapdv-cl] subject==HsapDv:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} + +[kupo-uberon] subject==KUPO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} +[kupo-cl] subject==KUPO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); +} + +[ma-uberon] subject==MA:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (post-embryonic mouse)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); +} +[ma-cl] subject==MA:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (post-embryonic mouse)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); +} + +[mmusdv-uberon] subject==MmusDv:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (mouse)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); +} +[mmusdv-cl] subject==MmusDv:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (mouse)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); +} + +[pba-uberon] subject==PBA:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (primates)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9443)"); +} +[pba-cl] subject==PBA:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (primates)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9443)"); +} + +[spd-uberon] subject==SPD:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (spider)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6893)"); +} +[spd-cl] subject==SPD:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (spider)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6893)"); +} + +[tads-uberon] subject==TADS:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (hardbacked ticks)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6939)"); +} +[tads-cl] subject==TADS:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (hardbacked ticks)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6939)"); +} + +[tgma-uberon] subject==TGMA:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (mosquitos)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:44484)"); +} +[tgma-cl] subject==TGMA:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (mosquitos)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:44484)"); +} + +[wbbt-uberon] subject==WBbt:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (worm)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6237)"); +} +[wbbt-cl] subject==WBbt:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (worm)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6237)"); +} + +[wbls-uberon] subject==WBls:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (worm)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6237)"); +} +[wbls-cl] subject==WBls:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (worm)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6237)"); +} + +[xao-uberon] subject==XAO:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (xenopus)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:8353)"); +} +[xao-cl] subject==XAO:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (xenopus)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:8353)"); +} + +[zfa-uberon] subject==ZFA:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (zebrafish)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7954)"); +} +[zfa-cl] subject==ZFA:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (zebrafish)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7954)"); +} + +[zfs-uberon] subject==ZFS:* object==UBERON:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (zebrafish)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7954)"); +} +[zfs-cl] subject==ZFS:* object==CL:* { + predicate==* -> annotate_subject(IAO:0000589, "%object_label (zebrafish)"); + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7954)"); +} + diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 9491aa5bb5..13f4821768 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1206,75 +1206,66 @@ mappings/%-mappings.sssom.tsv: $(TMPDIR)/%.sssom.tsv # BRIDGES # ---------------------------------------- -# Prepare Uberon and CL sources -# ---------------------------------------- -# Uberon: We need to forcefully merge the mappings component generated -# from the FBbt mappings so that the FBbt cross-references will be -# visible to the bridge-generating script. +# 1. Extract cross-references from Uberon/CL and turn them to a SSSOM +# mapping set. +# Several cross-references are using OBO prefixes that are unknown to +# ROBOT and not declared in Uberon/CL, so they need to be explicitly +# declared here (otherwise xref-extract would ignore them). +$(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) mirror/cl.owl $(TMPDIR)/plugins/sssom.jar + $(ROBOT) merge -i $< -i mirror/cl.owl --collapse-import-closure false \ + sssom:xref-extract --mapping-file $@ \ + --prefix 'DHBA: http://purl.obolibrary.org/obo/DHBA_' \ + --prefix 'EFO: http://purl.obolibrary.org/obo/EFO_' \ + --prefix 'HBA: http://purl.obolibrary.org/obo/HBA_' \ + --prefix 'KUPO: http://purl.obolibrary.org/obo/KUPO_' \ + --prefix 'OGES: http://purl.obolibrary.org/obo/OGES_' \ + --prefix 'PBA: http://purl.obolibrary.org/obo/PBA_' \ + --prefix 'SCTID: http://purl.obolibrary.org/obo/SCTID_' + +# 2. Likewise, but from ZFA (ZFA is the source of truth for the CL-ZFA +# mappings). +$(TMPDIR)/zfa.sssom.tsv: mirror/zfa.owl $(TMPDIR)/plugins/sssom.jar + $(ROBOT) sssom:xref-extract -i $< --mapping-file $@ + +# 3. Compile all mapping sets and generate the bridges. +# Note that merging CL here is not strictly necessary, but doing so +# allows sssom-inject to filter out any mapping with an inexistent or +# obsolete Uberon/CL class. +$(TMPDIR)/bridges: $(SRC) mirror/cl.owl \ + $(TMPDIR)/uberon-cl.sssom.tsv $(TMPDIR)/zfa.sssom.tsv $(EXTERNAL_SSSOM_SETS) \ + $(TMPDIR)/plugins/sssom.jar $(BRIDGEDIR)/bridges.rules $(BRIDGEDIR)/bridges.dispatch \ + $(CUSTOM_BRIDGES) + $(ROBOT) merge -i $(SRC) -i mirror/cl.owl \ + sssom:sssom-inject --sssom $(TMPDIR)/uberon-cl.sssom.tsv \ + --sssom $(TMPDIR)/zfa.sssom.tsv \ + $(foreach set, $(EXTERNAL_SSSOM_SETS), --sssom $(set)) \ + --ruleset $(BRIDGEDIR)/bridges.rules \ + --dispatch-table $(BRIDGEDIR)/bridges.dispatch + +# The above step creates RDF/XML bridges, turn them to OBO. +# FIXME: Is this really necessary? Previously the OBO files were an +# intermediate towards the final bridge files in OWL, but now we can +# generate bridge files in OWL (or any format we want) directly, so +# I don't think we need to carry over OBO files. +$(BRIDGEDIR)/%.obo: $(BRIDGEDIR)/%.owl + $(ROBOT) convert -i $< --check false -f obo -o $@ + + +# seed.obo: This has no longer anything to do with generating the +# bridges, but we need to keep that around for now as it is also used +# to generate the "life cycle" report elsewhere. $(TMPDIR)/seed.obo: $(SRC) $(COMPONENTSDIR)/mappings.owl $(ROBOT) merge -i $< -i $(COMPONENTSDIR)/mappings.owl --collapse-import-closure false \ convert -f obo --check false -o $@.tmp && \ $(SCRIPTSDIR)/obo-grep.pl --neg -r is_obsolete $@.tmp > $@ -# CL (step 1): We take the full ontology, excluding external classes, -# but including references to those -$(TMPDIR)/cl-core.obo: $(SRC) - $(OWLTOOLS) $(URIBASE)/cl.owl \ - --make-subset-by-properties -n BFO:0000050 BFO:0000051 RO:0002202 RO:0002215 \ - --remove-external-classes -k CL \ - --remove-dangling --remove-axiom-annotations --remove-imports-declarations \ - -o -f obo --no-check $@ - -# CL: (step 2): We add the header tags that the bridge-generating script -# is relying upon -$(TMPDIR)/cl-with-xrefs.obo: $(TMPDIR)/cl-core.obo $(SCRIPTSDIR)/expand-idspaces.pl - if [ $(BRI) = true ]; then \ - egrep '^(idspace|treat-)' $(SRC) > $@.tmp && \ - cat $< >> $@.tmp && \ - $(SCRIPTSDIR)/expand-idspaces.pl $@.tmp > $@; \ - fi - -# ZFA requires special treatment because most xrefs between CL and ZFA -# are on the ZFA side, so they need to be extracted and inverted before -# we can generate the ZFA bridges out of them. -# FIXME: This is currently broken: the step below does not extract -# anything, which is probably why the CL-to-ZFA bridge is almost empty -# (https://github.com/obophenotype/uberon/issues/1813) -$(TMPDIR)/cl-zfa-xrefs.obo: mirror/zfa.owl - if [ $(MIR) = true ] && [ $(IMP) = true ]; then \ - $(ROBOT) query -i $< --query ../sparql/zfa-xrefs-to-cl.sparql $@_xrefs_to_zfa.tsv && \ - cat $@_xrefs_to_zfa.tsv | tail -n +2 | \ - $(SCRIPTSDIR)/tbl2obolinks.pl --rel xref - > $@.tmp && mv $@.tmp $@; \ - fi - - -# Building the bridges -# ---------------------------------------- -# Most bridges are built here, by a script that extracts xrefs from -# the source files prepared above and derives the bridges from them. -$(TMPDIR)/bridges: $(TMPDIR)/seed.obo $(TMPDIR)/cl-with-xrefs.obo $(TMPDIR)/cl-zfa-xrefs.obo $(REPORTDIR)/life-cycle-xrefs.txt $(CUSTOM_BRIDGES) - if [ $(BRI) = true ]; then \ - cd $(BRIDGEDIR) && \ - perl ../../scripts/make-bridge-ontologies-from-xrefs.pl -l ../$(REPORTDIR)/life-cycle-xrefs.txt ../$(TMPDIR)/seed.obo && \ - perl ../../scripts/make-bridge-ontologies-from-xrefs.pl -l ../$(REPORTDIR)/life-cycle-xrefs.txt -b cl ../$(TMPDIR)/cl-with-xrefs.obo ../$(TMPDIR)/cl-zfa-xrefs.obo && \ - cd .. && touch $@; \ - fi - -# The above script creates OBO bridges, turn them to OWL -$(BRIDGEDIR)/%.owl: $(BRIDGEDIR)/%.obo - $(OWLTOOLS) $< --remove-annotation-assertions -o $@ - # Special bridges # ---------------------------------------- -# All bridges that are not generated by the xref-based script. +# All bridges that are not generated from SSSOM sets. CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.obo \ - $(BRIDGEDIR)/uberon-bridge-to-dmba.obo \ - $(BRIDGEDIR)/uberon-bridge-to-nifstd.owl - -$(BRIDGEDIR)/uberon-bridge-to-nifstd.obo: $(SRC) - $(SCRIPTSDIR)/xref-to-equiv.pl uberon/$(BRIDGEDIR)/uberon-bridge-to-nifstd http://uri.neuinfo.org/nif/nifstd/ $< > $@.tmp && mv $@.tmp $@ + $(BRIDGEDIR)/uberon-bridge-to-dmba.obo # Bridges to MBA and DMBA are now manually curated and generated in # https://github.com/obophenotype/ABA_Uberon/tree/new_bridge. From cf905499ec305967a1f0e57415f17445199b2a71 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 5 Sep 2023 20:55:26 +0100 Subject: [PATCH 15/45] Maintain the ruleset with M4 macros. Since the bridge-generating rules are highly repetitive, they can easily be automatically generated by some macros. This keeps the editor-facing bridge/bridges.rules.m4 file easier to read and modify (for example, to add or remove a bridge, an editor has simply to add or remove a single 'BRIDGE(...)' line). --- src/ontology/bridge/bridges.rules | 399 --------------------------- src/ontology/bridge/bridges.rules.m4 | 111 ++++++++ src/ontology/uberon.Makefile | 8 +- src/scripts/sssomt.m4 | 40 +++ 4 files changed, 158 insertions(+), 400 deletions(-) delete mode 100644 src/ontology/bridge/bridges.rules create mode 100644 src/ontology/bridge/bridges.rules.m4 create mode 100644 src/scripts/sssomt.m4 diff --git a/src/ontology/bridge/bridges.rules b/src/ontology/bridge/bridges.rules deleted file mode 100644 index 5b4db94825..0000000000 --- a/src/ontology/bridge/bridges.rules +++ /dev/null @@ -1,399 +0,0 @@ -# SSSOM is OBO-agnostic and doesn't know about the implicit OBO prefix -# rule (PFX -> http://purl.obolibrary.org/obo/PFX_); *all* prefixes must -# be explicitly declared. -prefix AEO: -prefix BFO: -prefix BSPO: -prefix CARO: -prefix CL: -prefix DHBA: -prefix EFO: -prefix EHDAA2: -prefix EMAPA: -prefix FBbt: -prefix FBdv: -prefix FMA: -prefix GO: -prefix HAO: -prefix HBA: -prefix HsapDv: -prefix IAO: -prefix KUPO: -prefix MA: -prefix MmusDv: -prefix NCBITaxon: -prefix NCIT: -prefix OG: -prefix OGES: -prefix OIO: -prefix PBA: -prefix RO: -prefix SCTID: -prefix SPD: -prefix TADS: -prefix TGMA: -prefix UBERON: -prefix WBbt: -prefix WBls: -prefix XAO: -prefix ZFA: -prefix ZFS: - -# The relation to use in the existential restrictions between Uberon/CL -# terms and their taxon-specific equivalents: part_of (BFO:0000050) for -# most cases, except for life stage terms where we use occurs_in -# (BFO:0000066) instead. -set_var("TAXREL", BFO:0000050); -set_var("TAXREL", BFO:0000066, "%object_id is_a UBERON:0000104"); -set_var("TAXREL", BFO:0000066, "%object_id is_a UBERON:0000105"); - -# Those are not present in Uberon, we must declare them before we can -# use them in bridges. -declare_class(NCBITaxon:6893, NCBITaxon:6939, NCBITaxon:44484); - -# Make sure UBERON and CL classes are on the object side. -subject==UBERON:* || subject==CL:* -> invert(); - -# Ignore any mapping to something else than UBERON or CL. -!(object==UBERON:* || object==CL:*) -> stop(); - -# Ignore any mapping to an inexistent or obsolete UBERON/CL class. -predicate==* -> check_object_existence(); - -# Ignore any mapping with a predicate other than those four. -!(predicate==skos:exactMatch - || predicate==skos:narrowMatch - || predicate==skos:broadMatch - || predicate==semapv:crossSpeciesExactMatch) -> stop(); - -# Generate cross-reference annotations (for backward compatibility). -[xrefs] predicate==* -> annotate_object(OIO:hasDbXref, "%subject_curie"); - -# Bridging axiom-generating rules. -# The highly repetitive nature of those rules stems from the fact that -# we need separate rules for each foreign ontology and for both Uberon -# and CL, if we want to be able to send the corresponding axioms to -# separate bridge files. - -# Taxon-neutral bridges. -[aeo-uberon] subject==AEO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (AEO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[aeo-cl] subject==AEO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (AEO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[bfo-uberon] subject==BFO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (BFO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[bfo-cl] subject==BFO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (BFO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[bspo-uberon] subject==BSPO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (BSPO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[bspo-cl] subject==BSPO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (BSPO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[caro-uberon] subject==CARO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (CARO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[caro-cl] subject==CARO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (CARO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[efo-uberon] subject==EFO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (EFO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[efo-cl] subject==EFO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (EFO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[go-uberon] subject==GO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (GO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[go-cl] subject==GO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (GO)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[ncit-uberon] subject==NCIT:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (NCIT)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[ncit-cl] subject==NCIT:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (NCIT)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[og-uberon] subject==OG:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (OG)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[og-cl] subject==OG:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (OG)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[oges-uberon] subject==OGES:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (OGES)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[oges-cl] subject==OGES:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (OGES)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - -[sctid-uberon] subject==SCTID:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (SCTID)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} -[sctid-cl] subject==SCTID:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (SCTID)"); - predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); - predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); - predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id"); -} - - -# Taxon-specific bridges. -[dhba-uberon] subject==DHBA:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} -[dhba-cl] subject==DHBA:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} - -[ehdaa2-uberon] subject==EHDAA2:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (embryonic human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} -[ehdaa2-cl] subject==EHDAA2:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (embryonic human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} - -[emapa-uberon] subject==EMAPA:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (embryonic mouse)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); -} -[emapa-cl] subject==EMAPA:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (embryonic mouse)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); -} - -[fbbt-uberon] subject==FBbt:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (drosophila)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7227)"); -} -[fbbt-cl] subject==FBbt:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (drosophila)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7227)"); -} - -[fbdv-uberon] subject==FBdv:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (drosophila)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7227)"); -} -[fbdv-cl] subject==FBdv:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (drosophila)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7227)"); -} - -[fma-uberon] subject==FMA:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (post-embryonic human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} -[fma-cl] subject==FMA:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (post-embryonic human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} - -[hao-uberon] subject==HAO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (hymenoptera)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7399)"); -} -[hao-cl] subject==HAO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (hymenoptera)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7399)"); -} - -[hba-uberon] subject==HBA:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} -[hba-cl] subject==HBA:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} - -[hsapdv-uberon] subject==HsapDv:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} -[hsapdv-cl] subject==HsapDv:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} - -[kupo-uberon] subject==KUPO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} -[kupo-cl] subject==KUPO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (human)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9606)"); -} - -[ma-uberon] subject==MA:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (post-embryonic mouse)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); -} -[ma-cl] subject==MA:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (post-embryonic mouse)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); -} - -[mmusdv-uberon] subject==MmusDv:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (mouse)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); -} -[mmusdv-cl] subject==MmusDv:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (mouse)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:10090)"); -} - -[pba-uberon] subject==PBA:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (primates)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9443)"); -} -[pba-cl] subject==PBA:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (primates)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:9443)"); -} - -[spd-uberon] subject==SPD:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (spider)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6893)"); -} -[spd-cl] subject==SPD:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (spider)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6893)"); -} - -[tads-uberon] subject==TADS:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (hardbacked ticks)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6939)"); -} -[tads-cl] subject==TADS:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (hardbacked ticks)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6939)"); -} - -[tgma-uberon] subject==TGMA:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (mosquitos)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:44484)"); -} -[tgma-cl] subject==TGMA:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (mosquitos)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:44484)"); -} - -[wbbt-uberon] subject==WBbt:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (worm)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6237)"); -} -[wbbt-cl] subject==WBbt:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (worm)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6237)"); -} - -[wbls-uberon] subject==WBls:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (worm)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6237)"); -} -[wbls-cl] subject==WBls:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (worm)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:6237)"); -} - -[xao-uberon] subject==XAO:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (xenopus)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:8353)"); -} -[xao-cl] subject==XAO:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (xenopus)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:8353)"); -} - -[zfa-uberon] subject==ZFA:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (zebrafish)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7954)"); -} -[zfa-cl] subject==ZFA:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (zebrafish)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7954)"); -} - -[zfs-uberon] subject==ZFS:* object==UBERON:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (zebrafish)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7954)"); -} -[zfs-cl] subject==ZFS:* object==CL:* { - predicate==* -> annotate_subject(IAO:0000589, "%object_label (zebrafish)"); - predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some NCBITaxon:7954)"); -} - diff --git a/src/ontology/bridge/bridges.rules.m4 b/src/ontology/bridge/bridges.rules.m4 new file mode 100644 index 0000000000..8a9048a225 --- /dev/null +++ b/src/ontology/bridge/bridges.rules.m4 @@ -0,0 +1,111 @@ +# SSSOM is OBO-agnostic and doesn't know about the implicit OBO prefix +# rule (PFX -> http://purl.obolibrary.org/obo/PFX_); *all* prefixes must +# be explicitly declared. +prefix AEO: +prefix BFO: +prefix BSPO: +prefix CARO: +prefix CL: +prefix DHBA: +prefix EFO: +prefix EHDAA2: +prefix EMAPA: +prefix FBbt: +prefix FBdv: +prefix FMA: +prefix GO: +prefix HAO: +prefix HBA: +prefix HsapDv: +prefix IAO: +prefix KUPO: +prefix MA: +prefix MmusDv: +prefix NCBITaxon: +prefix NCIT: +prefix OG: +prefix OGES: +prefix OIO: +prefix PBA: +prefix RO: +prefix SCTID: +prefix SPD: +prefix TADS: +prefix TGMA: +prefix UBERON: +prefix WBbt: +prefix WBls: +prefix XAO: +prefix ZFA: +prefix ZFS: + +# The relation to use in the existential restrictions between Uberon/CL +# terms and their taxon-specific equivalents: part_of (BFO:0000050) for +# most cases, except for life stage terms where we use occurs_in +# (BFO:0000066) instead. +set_var("TAXREL", BFO:0000050); +set_var("TAXREL", BFO:0000066, "%object_id is_a UBERON:0000104"); +set_var("TAXREL", BFO:0000066, "%object_id is_a UBERON:0000105"); + +# Those are not present in Uberon, we must declare them before we can +# use them in bridges. +declare_class(NCBITaxon:6893, NCBITaxon:6939, NCBITaxon:44484); + +# Make sure UBERON and CL classes are on the object side. +subject==UBERON:* || subject==CL:* -> invert(); + +# Ignore any mapping to something else than UBERON or CL. +!(object==UBERON:* || object==CL:*) -> stop(); + +# Ignore any mapping to an inexistent or obsolete UBERON/CL class. +predicate==* -> check_object_existence(); + +# Ignore any mapping with a predicate other than those four. +!(predicate==skos:exactMatch + || predicate==skos:narrowMatch + || predicate==skos:broadMatch + || predicate==semapv:crossSpeciesExactMatch) -> stop(); + +# Generate cross-reference annotations (for backward compatibility). +[xrefs] predicate==* -> annotate_object(OIO:hasDbXref, "%subject_curie"); + +# Bridging axiom-generating rules. +# The highly repetitive nature of those rules stems from the fact that +# we need separate rules for each foreign ontology and for both Uberon +# and CL, if we want to be able to send the corresponding axioms to +# separate bridge files. + +# Taxon-neutral bridges. +BRIDGE(AEO) +BRIDGE(BFO) +BRIDGE(BSPO) +BRIDGE(CARO) +BRIDGE(EFO) +BRIDGE(GO) +BRIDGE(NCIT) +BRIDGE(OG) +BRIDGE(OGES) +BRIDGE(SCTID) + +# Taxon-specific bridges. +BRIDGE(DHBA, NCBITaxon:9606, human) +BRIDGE(EHDAA2, NCBITaxon:9606, embryonic human) +BRIDGE(EMAPA, NCBITaxon:10090, embryonic mouse) +BRIDGE(FBbt, NCBITaxon:7227, drosophila) +BRIDGE(FBdv, NCBITaxon:7227, drosophila) +BRIDGE(FMA, NCBITaxon:9606, post-embryonic human) +BRIDGE(HAO, NCBITaxon:7399, hymenoptera) +BRIDGE(HBA, NCBITaxon:9606, human) +BRIDGE(HsapDv, NCBITaxon:9606, human) +BRIDGE(KUPO, NCBITaxon:9606, human) +BRIDGE(MA, NCBITaxon:10090, post-embryonic mouse) +BRIDGE(MmusDv, NCBITaxon:10090, mouse) +BRIDGE(PBA, NCBITaxon:9443, primates) +BRIDGE(SPD, NCBITaxon:6893, spider) +BRIDGE(TADS, NCBITaxon:6939, hardbacked ticks) +BRIDGE(TGMA, NCBITaxon:44484, mosquitos) +BRIDGE(WBbt, NCBITaxon:6237, worm) +BRIDGE(WBls, NCBITaxon:6237, worm) +BRIDGE(XAO, NCBITaxon:8353, xenopus) +BRIDGE(ZFA, NCBITaxon:7954, zebrafish) +BRIDGE(ZFS, NCBITaxon:7954, zebrafish) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 13f4821768..4aade1b753 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1227,13 +1227,19 @@ $(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) mirror/cl.owl $(TMPDIR)/plugins/sssom.jar $(TMPDIR)/zfa.sssom.tsv: mirror/zfa.owl $(TMPDIR)/plugins/sssom.jar $(ROBOT) sssom:xref-extract -i $< --mapping-file $@ +# 3. Prepare the ruleset file. +# The ruleset file is maintained with M4 macros to make it more easily +# editable, so we need to expand the macros first. +$(TMPDIR)/bridges.rules: $(SCRIPTSDIR)/sssomt.m4 $(BRIDGEDIR)/bridges.rules.m4 + m4 $^ > $@ + # 3. Compile all mapping sets and generate the bridges. # Note that merging CL here is not strictly necessary, but doing so # allows sssom-inject to filter out any mapping with an inexistent or # obsolete Uberon/CL class. $(TMPDIR)/bridges: $(SRC) mirror/cl.owl \ $(TMPDIR)/uberon-cl.sssom.tsv $(TMPDIR)/zfa.sssom.tsv $(EXTERNAL_SSSOM_SETS) \ - $(TMPDIR)/plugins/sssom.jar $(BRIDGEDIR)/bridges.rules $(BRIDGEDIR)/bridges.dispatch \ + $(TMPDIR)/plugins/sssom.jar $(TMPDIR)/bridges.rules $(BRIDGEDIR)/bridges.dispatch \ $(CUSTOM_BRIDGES) $(ROBOT) merge -i $(SRC) -i mirror/cl.owl \ sssom:sssom-inject --sssom $(TMPDIR)/uberon-cl.sssom.tsv \ diff --git a/src/scripts/sssomt.m4 b/src/scripts/sssomt.m4 new file mode 100644 index 0000000000..2a9851a6ea --- /dev/null +++ b/src/scripts/sssomt.m4 @@ -0,0 +1,40 @@ +dnl This file contains M4 macros intended to make it easier to write +dnl the SSSOM/Transform ruleset needed to generate the bridge files. + +dnl Expand to instructions to create all possible bridging axioms +dnl $1 = suffix to append to the original label +dnl $2 = taxon ID (empty for a taxon-neutral bridge) +define(STD_BRIDGE, `predicate==* -> annotate_subject(IAO:0000589, "%object_label ($1)"); +ifelse($2, , `dnl + predicate==skos:exactMatch -> create_axiom("%subject_id EquivalentTo: %object_id"); + predicate==skos:broadMatch -> create_axiom("%subject_id SubClassOf: %object_id"); + predicate==skos:narrowMatch -> create_axiom("%object_id SubClassOf: %subject_id");',`dnl + predicate==semapv:crossSpeciesExactMatch -> create_axiom("%subject_id EquivalentTo: %object_id and (<%TAXREL> some $2)");')') + +dnl Expand to instructions to create all possible bridging axioms +dnl both for Uberon and for CL +dnl $1 = lowercase tag identifying the bridge +dnl $2 = foreign ontology prefix +dnl $3 = taxon ID (empty for a taxon-neutral bridge) +dnl 4$ = suffix to append to the original label +define(DO_BRIDGE, `[$1-uberon] subject==$2:* object==UBERON:* { + STD_BRIDGE($4, $3) +} +[$1-cl] subject==$2:* object==CL:* { + STD_BRIDGE($4, $3) +} +') + +dnl This is the macro that should be called from the ruleset +dnl template file +dnl $1 = foreign ontology prefix +dnl $2 = taxon ID +dnl $3 = suffix to append to the original label +dnl +dnl Example for a taxon-neutral bridge: +dnl BRIDGE(EFO) +dnl +dnl Example for a taxon-specific bridge: +dnl BRIDGE(FBbt, NCBITaxon:7227, Drosophila) +define(BRIDGE, `DO_BRIDGE(`translit(`$1', `A-Z', `a-z')', `$1', `$2', + `ifelse(`$3', , `$1', `$3')')') From 75ab45be22006f2e210f7b5a1873cb50b15f4051 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 5 Sep 2023 21:17:00 +0100 Subject: [PATCH 16/45] Remove the tmp/seed.obo intermediate. The seed.obo file was previously used as an intermediate to generate the bridge file. It is no longer needed for this. It was also used to generate the life-cycle-xrefs report, but there is no reason not to use the -edit file as source for that step. The only thing we need to be careful about is that seed.obo was pruned of obsolete terms, while the -edit file obviously is not. But it is more efficient to filter out obsolete terms directly in the SPARQL query, instead of: * use ROBOT to generate seed.obo; * use (another instance of) ROBOT to reason over seed.obo; * use a Perl script to hack the resulting OBO file and prune obsolete terms; * use ROBOT again to run the SPARQL query. --- src/ontology/uberon.Makefile | 13 ++----------- src/sparql/life-cycle-xrefs.sparql | 3 ++- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 4aade1b753..751c279b13 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -623,8 +623,8 @@ $(REPORTDIR)/basic-allcycles: basic.owl # ---------------------------------------- # List of terms cross-referenced to one of Uberon's "life cycle" terms -$(REPORTDIR)/life-cycle-xrefs.txt: $(SPARQLDIR)/life-cycle-xrefs.sparql $(TMPDIR)/seed.obo - $(ROBOT) reason -i $(TMPDIR)/seed.obo query --use-graphs true --query $< $@.tmp.tsv +$(REPORTDIR)/life-cycle-xrefs.txt: $(SPARQLDIR)/life-cycle-xrefs.sparql $(SRC) + $(ROBOT) reason -i $(SRC) query --use-graphs true --query $< $@.tmp.tsv sed -e '/?xref/d' -e 's/"//g' <$@.tmp.tsv >$@ && rm $@.tmp.tsv # Disjoint violations @@ -1257,15 +1257,6 @@ $(BRIDGEDIR)/%.obo: $(BRIDGEDIR)/%.owl $(ROBOT) convert -i $< --check false -f obo -o $@ -# seed.obo: This has no longer anything to do with generating the -# bridges, but we need to keep that around for now as it is also used -# to generate the "life cycle" report elsewhere. -$(TMPDIR)/seed.obo: $(SRC) $(COMPONENTSDIR)/mappings.owl - $(ROBOT) merge -i $< -i $(COMPONENTSDIR)/mappings.owl --collapse-import-closure false \ - convert -f obo --check false -o $@.tmp && \ - $(SCRIPTSDIR)/obo-grep.pl --neg -r is_obsolete $@.tmp > $@ - - # Special bridges # ---------------------------------------- # All bridges that are not generated from SSSOM sets. diff --git a/src/sparql/life-cycle-xrefs.sparql b/src/sparql/life-cycle-xrefs.sparql index 90f5d226a1..2a2828c294 100644 --- a/src/sparql/life-cycle-xrefs.sparql +++ b/src/sparql/life-cycle-xrefs.sparql @@ -16,4 +16,5 @@ SELECT DISTINCT ?xref WHERE { ?sub rdfs:subClassOf* life_cycle_stage: . } ?sub oboInOwl:hasDbXref ?xref . -} \ No newline at end of file + FILTER NOT EXISTS { ?sub owl:deprecated ?v } +} From d4b6c3091ad2640e45e860b7ede573f6c45ce1dd Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 5 Sep 2023 21:24:33 +0100 Subject: [PATCH 17/45] Make sure the custom bridges are generated. The CUSTOM_BRIDGES variable needs to be declared before it is referenced in the pre-requisites of the $(TMPDIR)/bridges target, otherwise the corresponding bridge would not be generated when that target is invoked. --- src/ontology/uberon.Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 751c279b13..4f66f7730e 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1206,6 +1206,10 @@ mappings/%-mappings.sssom.tsv: $(TMPDIR)/%.sssom.tsv # BRIDGES # ---------------------------------------- +# Those bridges are generated separately (see below). +CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.obo \ + $(BRIDGEDIR)/uberon-bridge-to-dmba.obo + # 1. Extract cross-references from Uberon/CL and turn them to a SSSOM # mapping set. # Several cross-references are using OBO prefixes that are unknown to @@ -1257,13 +1261,10 @@ $(BRIDGEDIR)/%.obo: $(BRIDGEDIR)/%.owl $(ROBOT) convert -i $< --check false -f obo -o $@ -# Special bridges +# Custom bridges # ---------------------------------------- # All bridges that are not generated from SSSOM sets. -CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.obo \ - $(BRIDGEDIR)/uberon-bridge-to-dmba.obo - # Bridges to MBA and DMBA are now manually curated and generated in # https://github.com/obophenotype/ABA_Uberon/tree/new_bridge. # Note: the bridges are generated in new_bridge branch - this might From 65fa6b04b0f403e30790605bda3a532a0a734f4c Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 5 Sep 2023 22:00:18 +0100 Subject: [PATCH 18/45] Fix reference to old file. When the bridges.rules file was moved to a M4-generated file, the reference to that file in the call to 'sssom-inject' did not follow. --- src/ontology/uberon.Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 4f66f7730e..42e83f521e 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1249,7 +1249,7 @@ $(TMPDIR)/bridges: $(SRC) mirror/cl.owl \ sssom:sssom-inject --sssom $(TMPDIR)/uberon-cl.sssom.tsv \ --sssom $(TMPDIR)/zfa.sssom.tsv \ $(foreach set, $(EXTERNAL_SSSOM_SETS), --sssom $(set)) \ - --ruleset $(BRIDGEDIR)/bridges.rules \ + --ruleset $(TMPDIR)/bridges.rules \ --dispatch-table $(BRIDGEDIR)/bridges.dispatch # The above step creates RDF/XML bridges, turn them to OBO. From 4fbe54d23633f7d1444c8c4620aec5899447e4ac Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 5 Sep 2023 22:01:31 +0100 Subject: [PATCH 19/45] Allow the bridge generation pipeline to run under MIR=false. To generate the bridge, we need a version of CL both to extract the cross-references from it, and to filter out any mappings to an inexistent or obsolete CL class. We also need a version of ZFA to extract the cross-references from it. This is problematic as the bridge generation pipeline is typically run under MIR=false conditions, so we may not have local CL and ZFA mirrors available (unless we are on an editor machine and the editor has refreshed the mirrors prior to running the pipeline). There are several possible solutions: 1) For the specific purpose of generating the bridges, always download CL and ZFA from their online location, regardless of MIR (basically bypassing the ODK mirroring system). This is what the previous version of the pipeline was doing. This is not completely unreasonable as we are not using CL or ZFA to inject any axioms into a final product here, we are just extracting their cross-references (though one might argue that those cross-references ultimately end up as axioms in products such as composite-metazoan). 2) Make the pipeline dependent on the mirrors -- that is, skipping the pipeline entirely under MIR=false. This would mean that the bridges would only be re-generated when the pipeline is specifically run under MIR=true -- notably, they would never be re-generated during the CI checks, since those run under MIR=false. 3) Try to have it both ways: use a local mirror when available (either because we are under MIR=true, or because the mirrors had been refreshed previously), and fallback to download CL and ZFA from their online locations otherwise. This commit implements option 3. I don't particularly like it (it's a ugly hack), but I would like input from other maintainers before deciding between options 1 and 2 (or possibly another option that I didn't see), so this will do for now. --- src/ontology/uberon.Makefile | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 42e83f521e..8315585fb7 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1215,8 +1215,16 @@ CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.obo \ # Several cross-references are using OBO prefixes that are unknown to # ROBOT and not declared in Uberon/CL, so they need to be explicitly # declared here (otherwise xref-extract would ignore them). +# The bridge generation pipeline is typically run with MIR=false, so +# mirror/cl.owl may not be available; if so, we fallback to download it +# directly from the PURL source. $(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) mirror/cl.owl $(TMPDIR)/plugins/sssom.jar - $(ROBOT) merge -i $< -i mirror/cl.owl --collapse-import-closure false \ + if [ -f mirror/cl.owl ]; then \ + CL_INPUT='-i mirror/cl.owl' ; \ + else \ + CL_INPUT='-I http://purl.obolibrary.org/obo/cl/cl-base.owl' ; \ + fi && \ + $(ROBOT) merge -i $< $$CL_INPUT --collapse-import-closure false \ sssom:xref-extract --mapping-file $@ \ --prefix 'DHBA: http://purl.obolibrary.org/obo/DHBA_' \ --prefix 'EFO: http://purl.obolibrary.org/obo/EFO_' \ @@ -1229,7 +1237,12 @@ $(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) mirror/cl.owl $(TMPDIR)/plugins/sssom.jar # 2. Likewise, but from ZFA (ZFA is the source of truth for the CL-ZFA # mappings). $(TMPDIR)/zfa.sssom.tsv: mirror/zfa.owl $(TMPDIR)/plugins/sssom.jar - $(ROBOT) sssom:xref-extract -i $< --mapping-file $@ + if [ -f mirror/zfa.owl ]; then \ + ZFA_INPUT='-i mirror/zfa.owl' ; \ + else \ + ZFA_INPUT='-I http://purl.obolibrary.org/obo/zfa/zfa-base.owl' ; \ + fi && \ + $(ROBOT) merge $$ZFA_INPUT sssom:xref-extract --mapping-file $@ # 3. Prepare the ruleset file. # The ruleset file is maintained with M4 macros to make it more easily @@ -1245,7 +1258,12 @@ $(TMPDIR)/bridges: $(SRC) mirror/cl.owl \ $(TMPDIR)/uberon-cl.sssom.tsv $(TMPDIR)/zfa.sssom.tsv $(EXTERNAL_SSSOM_SETS) \ $(TMPDIR)/plugins/sssom.jar $(TMPDIR)/bridges.rules $(BRIDGEDIR)/bridges.dispatch \ $(CUSTOM_BRIDGES) - $(ROBOT) merge -i $(SRC) -i mirror/cl.owl \ + if [ -f mirror/cl.owl ]; then \ + CL_INPUT='-i mirror/cl.owl' ; \ + else \ + CL_INPUT='-I http://purl.obolibrary.org/obo/cl/cl-base.owl' ; \ + fi && \ + $(ROBOT) merge -i $(SRC) $$CL_INPUT \ sssom:sssom-inject --sssom $(TMPDIR)/uberon-cl.sssom.tsv \ --sssom $(TMPDIR)/zfa.sssom.tsv \ $(foreach set, $(EXTERNAL_SSSOM_SETS), --sssom $(set)) \ From 3145d5686d2ac0816af89f56462f0d108425f03b Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 6 Sep 2023 09:03:17 +0100 Subject: [PATCH 20/45] Create the tmp/bridges file when generating the bridges. Make sure the tmp/bridges is created when we generate the bridges, to avoid always re-generating them. --- src/ontology/uberon.Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 8315585fb7..30ce3f3fb2 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1268,7 +1268,8 @@ $(TMPDIR)/bridges: $(SRC) mirror/cl.owl \ --sssom $(TMPDIR)/zfa.sssom.tsv \ $(foreach set, $(EXTERNAL_SSSOM_SETS), --sssom $(set)) \ --ruleset $(TMPDIR)/bridges.rules \ - --dispatch-table $(BRIDGEDIR)/bridges.dispatch + --dispatch-table $(BRIDGEDIR)/bridges.dispatch && \ + touch $@ # The above step creates RDF/XML bridges, turn them to OBO. # FIXME: Is this really necessary? Previously the OBO files were an From 7d46b5bbbfb5fe21b0a16b2060089193547f8485 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 6 Sep 2023 09:10:42 +0100 Subject: [PATCH 21/45] Do not regenerate the bridges under BRI=false. When BRI is set to false, skip the entire BRIDGES section. Just create the tmp/bridges file so that rules that depend on that target are happy. --- src/ontology/uberon.Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 30ce3f3fb2..4a93a348b8 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1205,6 +1205,7 @@ mappings/%-mappings.sssom.tsv: $(TMPDIR)/%.sssom.tsv # ---------------------------------------- # BRIDGES # ---------------------------------------- +ifeq ($(BRI),true) # Those bridges are generated separately (see below). CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.obo \ @@ -1304,6 +1305,12 @@ $(BRIDGEDIR)/uberon-bridge-to-dmba.owl: $(SRC) $(BRIDGEDIR)/uberon-bridge-to-dmba.obo: $(BRIDGEDIR)/uberon-bridge-to-dmba.owl if [ $(BRI) = true ]; then $(ROBOT) convert --input $(BRIDGEDIR)/uberon-bridge-to-dmba.owl --output $@; fi +else # BRI=false +# Skip the production of bridges entirely. +$(TMPDIR)/bridges: + touch $@ +endif + # ---------------------------------------- # COMPONENTS From 980ba65c055c6479104dcf31e6bf21cd7494a460 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 6 Sep 2023 09:28:05 +0100 Subject: [PATCH 22/45] Create a report of "duplicated" cross-references. When generating the SSSOM set from the cross-references in the -edit file (and in CL), ignore any cross-references to a foreign term if there are more than one, and produce a report listing all such cases. This requires version 0.4.2 of the SSSOM plugin, which is not released yet -- but it will be before this branch is ready for prime time. --- src/ontology/uberon.Makefile | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 4a93a348b8..919bc0cc0a 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -119,7 +119,7 @@ export ROBOT_PLUGINS_DIRECTORY # Make sure the SSSOM plugin for ROBOT is available. $(TMPDIR)/plugins/sssom.jar: mkdir -p $(TMPDIR)/plugins - curl -L -o $@ https://github.com/gouttegd/sssom-java/releases/download/sssom-java-0.4.1/sssom-robot-plugin-0.4.1.jar + curl -L -o $@ https://github.com/gouttegd/sssom-java/releases/download/sssom-java-0.4.2/sssom-robot-plugin-0.4.2.jar # ---------------------------------------- @@ -1226,14 +1226,15 @@ $(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) mirror/cl.owl $(TMPDIR)/plugins/sssom.jar CL_INPUT='-I http://purl.obolibrary.org/obo/cl/cl-base.owl' ; \ fi && \ $(ROBOT) merge -i $< $$CL_INPUT --collapse-import-closure false \ - sssom:xref-extract --mapping-file $@ \ - --prefix 'DHBA: http://purl.obolibrary.org/obo/DHBA_' \ - --prefix 'EFO: http://purl.obolibrary.org/obo/EFO_' \ - --prefix 'HBA: http://purl.obolibrary.org/obo/HBA_' \ - --prefix 'KUPO: http://purl.obolibrary.org/obo/KUPO_' \ - --prefix 'OGES: http://purl.obolibrary.org/obo/OGES_' \ - --prefix 'PBA: http://purl.obolibrary.org/obo/PBA_' \ - --prefix 'SCTID: http://purl.obolibrary.org/obo/SCTID_' + sssom:xref-extract --mapping-file $@ --drop-duplicates \ + --prefix 'DHBA: http://purl.obolibrary.org/obo/DHBA_' \ + --prefix 'EFO: http://purl.obolibrary.org/obo/EFO_' \ + --prefix 'HBA: http://purl.obolibrary.org/obo/HBA_' \ + --prefix 'KUPO: http://purl.obolibrary.org/obo/KUPO_' \ + --prefix 'OGES: http://purl.obolibrary.org/obo/OGES_' \ + --prefix 'PBA: http://purl.obolibrary.org/obo/PBA_' \ + --prefix 'SCTID: http://purl.obolibrary.org/obo/SCTID_' \ + > $(REPORTDIR)/xrefs-extraction.txt # 2. Likewise, but from ZFA (ZFA is the source of truth for the CL-ZFA # mappings). From da772fedd09f3751cad2b18da516afdc23ab230f Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 6 Sep 2023 10:22:35 +0100 Subject: [PATCH 23/45] Do not extract cross-references to FBbt. The mappings between FBbt and Uberon/CL are entirely provided by FBbt as a SSSOM set already, so we should not try to extract FBbt cross-references from Uberon's edit file. --- src/ontology/uberon-edit.obo | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ontology/uberon-edit.obo b/src/ontology/uberon-edit.obo index 455f10de4c..20e3189849 100644 --- a/src/ontology/uberon-edit.obo +++ b/src/ontology/uberon-edit.obo @@ -194,7 +194,6 @@ treat-xrefs-as-reverse-genus-differentia: AAO part_of NCBITaxon:8292 treat-xrefs-as-reverse-genus-differentia: DHBA part_of NCBITaxon:9606 treat-xrefs-as-reverse-genus-differentia: EHDAA2 part_of NCBITaxon:9606 treat-xrefs-as-reverse-genus-differentia: EMAPA part_of NCBITaxon:10090 -treat-xrefs-as-reverse-genus-differentia: FBbt part_of NCBITaxon:7227 treat-xrefs-as-reverse-genus-differentia: FBdv part_of NCBITaxon:7227 treat-xrefs-as-reverse-genus-differentia: FMA part_of NCBITaxon:9606 treat-xrefs-as-reverse-genus-differentia: HAO part_of NCBITaxon:7399 From 77cc803cd832f0d87843683b2071f5141b8b4ae9 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 6 Sep 2023 22:32:26 +0100 Subject: [PATCH 24/45] Simplify the dispatch table. Use new features of the SSSOM plugin (that will be available in the upcoming 0.4.2 release) to reduce the amount of boilerplate in the dispatch table: * the filename of an entry is now relative to the directory containing the dispatch table; * the ontology ID and version IRIs can be specified once and for all in a pseudo-entry named "__default". --- src/ontology/bridge/bridges.dispatch | 232 +++++++-------------------- 1 file changed, 61 insertions(+), 171 deletions(-) diff --git a/src/ontology/bridge/bridges.dispatch b/src/ontology/bridge/bridges.dispatch index a947f3a7a3..13978cfbdb 100644 --- a/src/ontology/bridge/bridges.dispatch +++ b/src/ontology/bridge/bridges.dispatch @@ -1,67 +1,45 @@ +[__default] +ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/%filename.owl +ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/%filename.owl + [aeo-uberon] -file: bridge/uberon-bridge-to-aeo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-aeo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-aeo.owl +file: uberon-bridge-to-aeo.owl [aeo-cl] -file: bridge/cl-bridge-to-aeo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-aeo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-aeo.owl +file: cl-bridge-to-aeo.owl [bfo-uberon] -file: bridge/uberon-bridge-to-bfo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-bfo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-bfo.owl +file: uberon-bridge-to-bfo.owl [bfo-cl] -file: bridge/cl-bridge-to-bfo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-bfo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-bfo.owl +file: cl-bridge-to-bfo.owl [bspo-uberon] -file: bridge/uberon-bridge-to-bspo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-bspo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-bspo.owl +file: uberon-bridge-to-bspo.owl [bspo-cl] -file: bridge/cl-bridge-to-aeo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-bspo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-bspo.owl +file: cl-bridge-to-aeo.owl [caro-uberon] -file: bridge/uberon-bridge-to-caro.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-caro.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-caro.owl +file: uberon-bridge-to-caro.owl [caro-cl] -file: bridge/cl-bridge-to-caro.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-caro.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-caro.owl +file: cl-bridge-to-caro.owl [dhba-uberon] -file: bridge/uberon-bridge-to-dhba.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-dhba.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-dhba.owl +file: uberon-bridge-to-dhba.owl [dhba-cl] -file: bridge/cl-bridge-to-dhba.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-dhba.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-dhba.owl +file: cl-bridge-to-dhba.owl [efo-uberon] -file: bridge/uberon-bridge-to-efo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-efo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-efo.owl +file: uberon-bridge-to-efo.owl [efo-cl] -file: bridge/cl-bridge-to-efo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-efo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-efo.owl +file: cl-bridge-to-efo.owl [ehdaa2-uberon] -file: bridge/uberon-bridge-to-ehdaa2.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-ehdaa2.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-ehdaa2.owl +file: uberon-bridge-to-ehdaa2.owl add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:9606)) SubClassOf: RO:0002160 some NCBITaxon:9606 dc-title: Uberon bridge to ehdaa2 dc-description: Equivalence axioms between EHDAA2 and Uberon. EHDAA2 replaces EHDAA. @@ -69,18 +47,14 @@ dc-creator: Uberon editors dc-contributor: Jonathan Bard [ehdaa2-cl] -file: bridge/cl-bridge-to-ehdaa2.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-ehdaa2.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-ehdaa2.owl +file: cl-bridge-to-ehdaa2.owl dc-title: CL bridge to ehdaa2 dc-description: Equivalence axioms between EHDAA2 and CL. EHDAA2 replaces EHDAA. dc-creator: CL editors dc-contributor: Jonathan Bard [emapa-uberon] -file: bridge/uberon-bridge-to-emapa.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-emapa.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-emapa.owl +file: uberon-bridge-to-emapa.owl dc-title: Uberon bridge to emapa dc-description: Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and Uberon. dc-creator: Uberon editors @@ -89,14 +63,10 @@ dc-creator: Aurelie Comte dc-creator: Anne Niknejad [emapa-cl] -file: bridge/cl-bridge-to-emapa.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-emapa.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-emapa.owl +file: cl-bridge-to-emapa.owl [fbbt-uberon] -file: bridge/uberon-bridge-to-fbbt.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-fbbt.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-fbbt.owl +file: uberon-bridge-to-fbbt.owl dc-title: Uberon bridge to FBbt dc-description: Taxonomic equivalence axioms between the Drosophila Anatomy Ontology and Uberon. dc-creator: Uberon editors @@ -104,23 +74,17 @@ dc-contributor: David Osumi-Sutherland add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:7227)) SubClassOf: RO:0002160 some NCBITaxon:7227 [fbbt-cl] -file: bridge/cl-bridge-to-fbbt.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-cl.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-cl.owl +file: cl-bridge-to-fbbt.owl dc-title: CL bridge to FBbt dc-description: Taxonomic equivalence axioms between the Drosophila Anatomy Ontology and CL. dc-creator: CL editors dc-contributor: David Osumi-Sutherland [fbdv-uberon] -file: bridge/uberon-bridge-to-fbdv.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-fbdv.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-fbdv.owl +file: uberon-bridge-to-fbdv.owl [fma-uberon] -file: bridge/uberon-bridge-to-fma.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-fma.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-fma.owl +file: uberon-bridge-to-fma.owl dc-title: Uberon bridge to fma dc-description: Taxonomic equivalence axioms between the FMA and Uberon. dc-creator: Uberon editors @@ -129,9 +93,7 @@ dc-contributor: Terry Hayamizu add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:9606)) SubClassOf: RO:0002160 some NCBITaxon:9606 [fma-cl] -file: bridge/cl-bridge-to-fma.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-fma.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-fma.owl +file: cl-bridge-to-fma.owl dc-title: CL bridge to fma dc-description: Taxonomic equivalence axioms between the FMA and CL. dc-creator: CL editors @@ -139,55 +101,35 @@ dc-contributor: Onard Mejino dc-contributor: Terry Hayamizu [go-uberon] -file: bridge/uberon-bridge-to-go.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-go.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-go.owl +file: uberon-bridge-to-go.owl [go-cl] -file: bridge/cl-bridge-to-go.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-go.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-go.owl +file: cl-bridge-to-go.owl [hao-uberon] -file: bridge/uberon-bridge-to-hao.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-hao.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-hao.owl +file: uberon-bridge-to-hao.owl add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:7399)) SubClassOf: RO:0002160 some NCBITaxon:7399 [hao-cl] -file: bridge/cl-bridge-to-hao.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-hao.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-hao.owl +file: cl-bridge-to-hao.owl [hba-uberon] -file: bridge/uberon-bridge-to-hba.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-hba.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-hba.owl +file: uberon-bridge-to-hba.owl [hba-cl] -file: bridge/cl-bridge-to-hba.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-hba.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-hba.owl +file: cl-bridge-to-hba.owl [hsapdv-uberon] -file: bridge/uberon-bridge-to-hsapdv.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-hsapdv.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-hsapdv.owl +file: uberon-bridge-to-hsapdv.owl [kupo-uberon] -file: bridge/uberon-bridge-to-kupo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-kupo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-kupo.owl +file: uberon-bridge-to-kupo.owl [kupo-cl] -file: bridge/cl-bridge-to-kupo.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-kupo.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-kupo.owl +file: cl-bridge-to-kupo.owl [ma-uberon] -file: bridge/uberon-bridge-to-ma.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-ma.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-ma.owl +file: uberon-bridge-to-ma.owl dc-title: Uberon bridge to ma dc-description: Taxonomic equivalence axioms between adult mouse anatomy and Uberon. dc-creator: Uberon editors @@ -196,9 +138,7 @@ dc-contributor: George Gkoutos add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:10090)) SubClassOf: RO:0002160 some NCBITaxon:10090 [ma-cl] -file: bridge/cl-bridge-to-ma.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-ma.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-ma.owl +file: cl-bridge-to-ma.owl dc-title: CL bridge to ma dc-description: Taxonomic equivalence axioms between adult mouse anatomy and CL. dc-creator: CL editors @@ -206,119 +146,77 @@ dc-creator: Terry Hayamizu dc-contributor: George Gkoutos [mmusdv-uberon] -file: bridge/uberon-bridge-to-mmusdv.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-mmusdv.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-mmusdv.owl +file: uberon-bridge-to-mmusdv.owl [ncit-uberon] -file: bridge/uberon-bridge-to-ncit.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-ncit.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-ncit.owl +file: uberon-bridge-to-ncit.owl [ncit-cl] -file: bridge/cl-bridge-to-ncit.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-ncit.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-ncit.owl +file: cl-bridge-to-ncit.owl [og-uberon] -file: bridge/uberon-bridge-to-og.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-og.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-og.owl +file: uberon-bridge-to-og.owl [og-cl] -file: bridge/cl-bridge-to-og.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-og.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-og.owl +file: cl-bridge-to-og.owl [oges-uberon] -file: bridge/uberon-bridge-to-oges.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-oges.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-oges.owl +file: uberon-bridge-to-oges.owl [oges-cl] -file: bridge/cl-bridge-to-oges.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-oges.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-oges.owl +file: cl-bridge-to-oges.owl [pba-uberon] -file: bridge/uberon-bridge-to-pba.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-pba.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-pba.owl +file: uberon-bridge-to-pba.owl [pba-cl] -file: bridge/cl-bridge-to-pba.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-pba.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-pba.owl +file: cl-bridge-to-pba.owl [sctid-uberon] -file: bridge/uberon-bridge-to-sctid.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-sctid.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-sctid.owl +file: uberon-bridge-to-sctid.owl dc-title: Uberon bridge to SNOMED-CT dc-description: Rough subclass axioms between SNOMED-CT and Uberon. Note that SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree. dc-creator: Uberon editors dc-contributor: OBOL [sctid-cl] -file: bridge/cl-bridge-to-sctid.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-sctid.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-sctid.owl +file: cl-bridge-to-sctid.owl dc-title: CL bridge to SNOMED-CT dc-description: Rough subclass axioms between SNOMED-CT and CL. Note that SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree. dc-creator: CL editors dc-contributor: OBOL [spd-uberon] -file: bridge/uberon-bridge-to-spd.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-spd.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-spd.owl +file: uberon-bridge-to-spd.owl [spd-cl] -file: bridge/cl-bridge-to-spd.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-spd.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-spd.owl +file: cl-bridge-to-spd.owl [tads-uberon] -file: bridge/uberon-bridge-to-tads.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-tads.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-tads.owl +file: uberon-bridge-to-tads.owl [tads-cl] -file: bridge/cl-bridge-to-tads.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-tads.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-tads.owl +file: cl-bridge-to-tads.owl [tgma-uberon] -file: bridge/uberon-bridge-to-tgma.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-tgma.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-tgma.owl +file: uberon-bridge-to-tgma.owl add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:44484)) SubClassOf: RO:0002160 some NCBITaxon:44484 [tgma-cl] -file: bridge/cl-bridge-to-tgma.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-tgma.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-tgma.owl +file: cl-bridge-to-tgma.owl [wbbt-uberon] -file: bridge/uberon-bridge-to-wbbt.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-wbbt.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-wbbt.owl +file: uberon-bridge-to-wbbt.owl add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:6237)) SubClassOf: RO:0002160 some NCBITaxon:6237 [wbbt-cl] -file: bridge/cl-bridge-to-wbbt.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-wbbt.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-wbbt.owl +file: cl-bridge-to-wbbt.owl [wbls-uberon] -file: bridge/uberon-bridge-to-wbls.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-wbls.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-wbls.owl +file: uberon-bridge-to-wbls.owl [xao-uberon] -file: bridge/uberon-bridge-to-xao.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-xao.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-xao.owl +file: uberon-bridge-to-xao.owl dc-title: Uberon bridge to xao dc-description: Taxonomic equivalence axioms between XAO and Uberon. dc-creator: Uberon editors @@ -327,9 +225,7 @@ dc-contributor: VG Ponferrada add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:8353)) SubClassOf: RO:0002160 some NCBITaxon:8353 [xao-cl] -file: bridge/cl-bridge-to-xao.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-xao.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-xao.owl +file: cl-bridge-to-xao.owl dc-title: CL bridge to xao dc-description: Taxonomic equivalence axioms between XAO and CL. dc-creator: CL editors @@ -337,9 +233,7 @@ dc-contributor: Erik Segerdell dc-contributor: VG Ponferrada [zfa-uberon] -file: bridge/uberon-bridge-to-zfa.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-zfa.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-zfa.owl +file: uberon-bridge-to-zfa.owl dc-title: Uberon bridge to zfa dc-description: Taxonomic equivalence axioms between ZFA and Uberon. dc-creator: Uberon editors @@ -349,9 +243,7 @@ dc-contributor: Melissa Haendel add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:7954)) SubClassOf: RO:0002160 some NCBITaxon:7954 [zfa-cl] -file: bridge/cl-bridge-to-zfa.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/cl-bridge-to-zfa.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/cl-bridge-to-xfa.owl +file: cl-bridge-to-zfa.owl dc-title: CL bridge to zfa dc-description: Taxonomic equivalence axioms between ZFA and CL. dc-creator: CL editors @@ -360,6 +252,4 @@ dc-contributor: Yvonne Bradford dc-contributor: Melissa Haendel [zfs-uberon] -file: bridge/uberon-bridge-to-zfs.owl -ontology-iri: http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-zfs.owl -ontology-version: http://purl.obolibrary.org/obo/uberon/releases/%date/bridge/uberon-bridge-to-zfs.owl +file: uberon-bridge-to-zfs.owl From c1eb96825d99206a53c580393a05a423338002fb Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 6 Sep 2023 23:36:44 +0100 Subject: [PATCH 25/45] Really avoid bridging one subject to more than one object. We are already ensuring, when extracting the cross-references from Uberon and CL, that we detect, ignore and report any case where the same foreign term is mapped to more than one Uberon/CL term. But we could still get duplicate mappings when we add to the mix the externally provided sets -- either because an external set already contains duplicate, or because of an overlap between the mappings extracted the cross-references and the external sets. So we add another layer of defense during the bridge generation step, where we instruct sssom-inject to drop any mapping with a cardinality of *:n (any mapping where the subject is mapped to many objects). --- src/ontology/bridge/bridges.rules.m4 | 3 +++ src/ontology/uberon.Makefile | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/ontology/bridge/bridges.rules.m4 b/src/ontology/bridge/bridges.rules.m4 index 8a9048a225..ce45d934b9 100644 --- a/src/ontology/bridge/bridges.rules.m4 +++ b/src/ontology/bridge/bridges.rules.m4 @@ -60,6 +60,9 @@ subject==UBERON:* || subject==CL:* -> invert(); # Ignore any mapping to an inexistent or obsolete UBERON/CL class. predicate==* -> check_object_existence(); +# Do not allow a same foreign term to be mapped with more than one UBERON/CL class. +!cardinality==*:1 -> stop(); + # Ignore any mapping with a predicate other than those four. !(predicate==skos:exactMatch || predicate==skos:narrowMatch diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 919bc0cc0a..1a47eb6354 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1226,7 +1226,7 @@ $(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) mirror/cl.owl $(TMPDIR)/plugins/sssom.jar CL_INPUT='-I http://purl.obolibrary.org/obo/cl/cl-base.owl' ; \ fi && \ $(ROBOT) merge -i $< $$CL_INPUT --collapse-import-closure false \ - sssom:xref-extract --mapping-file $@ --drop-duplicates \ + sssom:xref-extract --mapping-file $@ -v --drop-duplicates \ --prefix 'DHBA: http://purl.obolibrary.org/obo/DHBA_' \ --prefix 'EFO: http://purl.obolibrary.org/obo/EFO_' \ --prefix 'HBA: http://purl.obolibrary.org/obo/HBA_' \ @@ -1347,7 +1347,8 @@ $(COMPONENTSDIR)/hra_depiction_3d_images.owl: $(TMPDIR)/hra_depiction_3d_images. $(COMPONENTSDIR)/mappings.owl: $(SRC) $(EXTERNAL_SSSOM_SETS) $(TMPDIR)/plugins/sssom.jar $(ROBOT) sssom:sssom-inject -i $< \ $(foreach set, $(EXTERNAL_SSSOM_SETS), --sssom $(set)) \ - --invert --only-subject-in UBERON --check-subject \ + --invert --only-subject-in UBERON \ + --check-subject --drop-duplicate-objects \ --hasdbxref --no-merge --bridge-file $@ \ --bridge-iri http://purl.obolibrary.org/obo/uberon/components/mappings.owl From 5f85739670db27ea92e59bf496a44e3730022f42 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Thu, 7 Sep 2023 22:28:20 +0100 Subject: [PATCH 26/45] Commit the re-regenerated bridges. This commit replaces the OWL versions of the "old" bridges (as generated during the last release process) by versions generated by the new pipeline. The OBO versions of the old bridges are *not* replaced, as the new pipeline creates OWL files directly and does not automatically create OBO versions -- they are only generated on demand. --- src/ontology/bridge/cl-bridge-to-aeo.obo | 116 - src/ontology/bridge/cl-bridge-to-aeo.owl | 282 +- src/ontology/bridge/cl-bridge-to-bspo.obo | 111 - src/ontology/bridge/cl-bridge-to-bspo.owl | 302 - src/ontology/bridge/cl-bridge-to-caro.obo | 121 - src/ontology/bridge/cl-bridge-to-caro.owl | 298 +- src/ontology/bridge/cl-bridge-to-dhba.obo | 127 - src/ontology/bridge/cl-bridge-to-dhba.owl | 362 - src/ontology/bridge/cl-bridge-to-dmba.obo | 127 - src/ontology/bridge/cl-bridge-to-dmba.owl | 362 - src/ontology/bridge/cl-bridge-to-efo.obo | 176 - src/ontology/bridge/cl-bridge-to-efo.owl | 318 +- src/ontology/bridge/cl-bridge-to-ehdaa2.obo | 169 - src/ontology/bridge/cl-bridge-to-ehdaa2.owl | 318 +- src/ontology/bridge/cl-bridge-to-emapa.obo | 201 - src/ontology/bridge/cl-bridge-to-emapa.owl | 348 +- src/ontology/bridge/cl-bridge-to-fbbt.obo | 583 - src/ontology/bridge/cl-bridge-to-fbbt.owl | 548 +- src/ontology/bridge/cl-bridge-to-fma.obo | 4388 -- src/ontology/bridge/cl-bridge-to-fma.owl | 3149 +- src/ontology/bridge/cl-bridge-to-go.obo | 116 - src/ontology/bridge/cl-bridge-to-go.owl | 282 +- src/ontology/bridge/cl-bridge-to-hao.obo | 127 - src/ontology/bridge/cl-bridge-to-hao.owl | 362 - src/ontology/bridge/cl-bridge-to-hba.obo | 127 - src/ontology/bridge/cl-bridge-to-hba.owl | 362 - src/ontology/bridge/cl-bridge-to-kupo.obo | 861 - src/ontology/bridge/cl-bridge-to-kupo.owl | 684 +- src/ontology/bridge/cl-bridge-to-ma.obo | 158 - src/ontology/bridge/cl-bridge-to-ma.owl | 342 +- src/ontology/bridge/cl-bridge-to-mba.obo | 127 - src/ontology/bridge/cl-bridge-to-mba.owl | 362 - src/ontology/bridge/cl-bridge-to-ncit.obo | 141 - src/ontology/bridge/cl-bridge-to-ncit.owl | 297 +- src/ontology/bridge/cl-bridge-to-og.obo | 111 - src/ontology/bridge/cl-bridge-to-og.owl | 302 - src/ontology/bridge/cl-bridge-to-oges.obo | 111 - src/ontology/bridge/cl-bridge-to-oges.owl | 302 - src/ontology/bridge/cl-bridge-to-pba.obo | 127 - src/ontology/bridge/cl-bridge-to-pba.owl | 362 - src/ontology/bridge/cl-bridge-to-sctid.obo | 121 - src/ontology/bridge/cl-bridge-to-sctid.owl | 274 +- src/ontology/bridge/cl-bridge-to-spd.obo | 127 - src/ontology/bridge/cl-bridge-to-spd.owl | 362 - src/ontology/bridge/cl-bridge-to-tads.obo | 127 - src/ontology/bridge/cl-bridge-to-tads.owl | 362 - src/ontology/bridge/cl-bridge-to-tgma.obo | 127 - src/ontology/bridge/cl-bridge-to-tgma.owl | 362 - src/ontology/bridge/cl-bridge-to-wbbt.obo | 277 - src/ontology/bridge/cl-bridge-to-wbbt.owl | 382 +- src/ontology/bridge/cl-bridge-to-xao.obo | 158 - src/ontology/bridge/cl-bridge-to-xao.owl | 314 +- src/ontology/bridge/cl-bridge-to-zfa.obo | 147 - src/ontology/bridge/cl-bridge-to-zfa.owl | 1572 +- src/ontology/bridge/uberon-bridge-to-aeo.obo | 811 - src/ontology/bridge/uberon-bridge-to-aeo.owl | 717 +- src/ontology/bridge/uberon-bridge-to-bfo.obo | 57 - src/ontology/bridge/uberon-bridge-to-bfo.owl | 78 +- src/ontology/bridge/uberon-bridge-to-bspo.obo | 111 - src/ontology/bridge/uberon-bridge-to-bspo.owl | 302 - src/ontology/bridge/uberon-bridge-to-caro.obo | 371 - src/ontology/bridge/uberon-bridge-to-caro.owl | 799 +- src/ontology/bridge/uberon-bridge-to-dhba.obo | 4687 -- src/ontology/bridge/uberon-bridge-to-dhba.owl | 2659 +- src/ontology/bridge/uberon-bridge-to-efo.obo | 3216 -- src/ontology/bridge/uberon-bridge-to-efo.owl | 2173 +- .../bridge/uberon-bridge-to-ehdaa2.obo | 8965 ---- .../bridge/uberon-bridge-to-ehdaa2.owl | 5082 +-- .../bridge/uberon-bridge-to-emapa.obo | 26991 ------------ .../bridge/uberon-bridge-to-emapa.owl | 16627 ++----- src/ontology/bridge/uberon-bridge-to-fbbt.obo | 2323 - src/ontology/bridge/uberon-bridge-to-fbbt.owl | 1467 +- src/ontology/bridge/uberon-bridge-to-fbdv.obo | 193 - src/ontology/bridge/uberon-bridge-to-fbdv.owl | 368 +- src/ontology/bridge/uberon-bridge-to-fma.obo | 36434 ---------------- src/ontology/bridge/uberon-bridge-to-fma.owl | 18967 +++----- src/ontology/bridge/uberon-bridge-to-go.obo | 121 - src/ontology/bridge/uberon-bridge-to-go.owl | 285 +- src/ontology/bridge/uberon-bridge-to-hao.obo | 583 - src/ontology/bridge/uberon-bridge-to-hao.owl | 551 +- src/ontology/bridge/uberon-bridge-to-hba.obo | 3565 -- src/ontology/bridge/uberon-bridge-to-hba.owl | 2104 +- .../bridge/uberon-bridge-to-hsapdv.obo | 181 - .../bridge/uberon-bridge-to-hsapdv.owl | 334 +- src/ontology/bridge/uberon-bridge-to-kupo.owl | 294 + src/ontology/bridge/uberon-bridge-to-ma.obo | 18584 -------- src/ontology/bridge/uberon-bridge-to-ma.owl | 9733 ++--- .../bridge/uberon-bridge-to-mmusdv.obo | 199 - .../bridge/uberon-bridge-to-mmusdv.owl | 343 +- src/ontology/bridge/uberon-bridge-to-ncit.obo | 13041 ------ src/ontology/bridge/uberon-bridge-to-ncit.owl | 8151 ++-- src/ontology/bridge/uberon-bridge-to-og.obo | 111 - src/ontology/bridge/uberon-bridge-to-og.owl | 302 - src/ontology/bridge/uberon-bridge-to-oges.obo | 221 - src/ontology/bridge/uberon-bridge-to-oges.owl | 345 +- src/ontology/bridge/uberon-bridge-to-pba.obo | 703 - src/ontology/bridge/uberon-bridge-to-pba.owl | 645 +- .../bridge/uberon-bridge-to-sctid.obo | 20796 --------- .../bridge/uberon-bridge-to-sctid.owl | 12924 ++---- src/ontology/bridge/uberon-bridge-to-spd.obo | 193 - src/ontology/bridge/uberon-bridge-to-spd.owl | 368 +- src/ontology/bridge/uberon-bridge-to-tads.obo | 277 - src/ontology/bridge/uberon-bridge-to-tads.owl | 382 +- src/ontology/bridge/uberon-bridge-to-tgma.obo | 439 - src/ontology/bridge/uberon-bridge-to-tgma.owl | 479 +- src/ontology/bridge/uberon-bridge-to-wbbt.obo | 415 - src/ontology/bridge/uberon-bridge-to-wbbt.owl | 445 +- src/ontology/bridge/uberon-bridge-to-wbls.obo | 193 - src/ontology/bridge/uberon-bridge-to-wbls.owl | 340 +- src/ontology/bridge/uberon-bridge-to-xao.obo | 3746 -- src/ontology/bridge/uberon-bridge-to-xao.owl | 2182 +- src/ontology/bridge/uberon-bridge-to-zfa.obo | 12549 ------ src/ontology/bridge/uberon-bridge-to-zfa.owl | 7156 +-- src/ontology/bridge/uberon-bridge-to-zfs.obo | 205 - src/ontology/bridge/uberon-bridge-to-zfs.owl | 346 +- 115 files changed, 30028 insertions(+), 249982 deletions(-) delete mode 100644 src/ontology/bridge/cl-bridge-to-aeo.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-bspo.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-bspo.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-caro.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-dhba.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-dhba.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-dmba.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-dmba.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-efo.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-ehdaa2.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-emapa.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-fbbt.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-fma.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-go.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-hao.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-hao.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-hba.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-hba.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-kupo.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-ma.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-mba.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-mba.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-ncit.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-og.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-og.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-oges.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-oges.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-pba.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-pba.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-sctid.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-spd.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-spd.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-tads.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-tads.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-tgma.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-tgma.owl delete mode 100644 src/ontology/bridge/cl-bridge-to-wbbt.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-xao.obo delete mode 100644 src/ontology/bridge/cl-bridge-to-zfa.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-aeo.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-bfo.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-bspo.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-bspo.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-caro.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-dhba.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-efo.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-ehdaa2.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-emapa.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-fbbt.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-fbdv.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-fma.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-go.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-hao.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-hba.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-hsapdv.obo create mode 100644 src/ontology/bridge/uberon-bridge-to-kupo.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-ma.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-mmusdv.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-ncit.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-og.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-og.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-oges.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-pba.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-sctid.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-spd.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-tads.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-tgma.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-wbbt.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-wbls.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-xao.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-zfa.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-zfs.obo diff --git a/src/ontology/bridge/cl-bridge-to-aeo.obo b/src/ontology/bridge/cl-bridge-to-aeo.obo deleted file mode 100644 index 6ef598d073..0000000000 --- a/src/ontology/bridge/cl-bridge-to-aeo.obo +++ /dev/null @@ -1,116 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-aeo -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: AEO:0000203 ! -property_value: IAO:0000589 "multinucleate cell (AEO)" xsd:string -equivalent_to: CL:0000228 ! multinucleate cell - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-aeo.owl b/src/ontology/bridge/cl-bridge-to-aeo.owl index 31c0100c4b..4ee74aa953 100644 --- a/src/ontology/bridge/cl-bridge-to-aeo.owl +++ b/src/ontology/bridge/cl-bridge-to-aeo.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - + diff --git a/src/ontology/bridge/cl-bridge-to-bspo.obo b/src/ontology/bridge/cl-bridge-to-bspo.obo deleted file mode 100644 index 6312199376..0000000000 --- a/src/ontology/bridge/cl-bridge-to-bspo.obo +++ /dev/null @@ -1,111 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-bspo -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-bspo.owl b/src/ontology/bridge/cl-bridge-to-bspo.owl deleted file mode 100644 index a86768433b..0000000000 --- a/src/ontology/bridge/cl-bridge-to-bspo.owl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-caro.obo b/src/ontology/bridge/cl-bridge-to-caro.obo deleted file mode 100644 index e3ecb32b23..0000000000 --- a/src/ontology/bridge/cl-bridge-to-caro.obo +++ /dev/null @@ -1,121 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-caro -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: CARO:0000013 ! -property_value: IAO:0000589 "native cell (CARO)" xsd:string -equivalent_to: CL:0000003 ! native cell - -[Term] -id: CARO:0000077 ! -property_value: IAO:0000589 "epithelial cell (CARO)" xsd:string -equivalent_to: CL:0000066 ! epithelial cell - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-caro.owl b/src/ontology/bridge/cl-bridge-to-caro.owl index e524b3f008..85ef40349a 100644 --- a/src/ontology/bridge/cl-bridge-to-caro.owl +++ b/src/ontology/bridge/cl-bridge-to-caro.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - native cell (CARO) - CARO:0000013 - - - - - epithelial cell (CARO) - CARO:0000077 + epithelial cell (CARO) - - - - - - @@ -347,5 +57,5 @@ - + diff --git a/src/ontology/bridge/cl-bridge-to-dhba.obo b/src/ontology/bridge/cl-bridge-to-dhba.obo deleted file mode 100644 index 9432f01679..0000000000 --- a/src/ontology/bridge/cl-bridge-to-dhba.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-dhba -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: DHBA:ENTITY -name: DHBA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-dhba.owl b/src/ontology/bridge/cl-bridge-to-dhba.owl deleted file mode 100644 index a2b8fd289e..0000000000 --- a/src/ontology/bridge/cl-bridge-to-dhba.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DHBA:ENTITY - DHBA entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-dmba.obo b/src/ontology/bridge/cl-bridge-to-dmba.obo deleted file mode 100644 index 34f99af1b1..0000000000 --- a/src/ontology/bridge/cl-bridge-to-dmba.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-dmba -data-version: 2022-05-27 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: DMBA:ENTITY -name: DMBA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-dmba.owl b/src/ontology/bridge/cl-bridge-to-dmba.owl deleted file mode 100644 index c6f74a4302..0000000000 --- a/src/ontology/bridge/cl-bridge-to-dmba.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DMBA:ENTITY - DMBA entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-efo.obo b/src/ontology/bridge/cl-bridge-to-efo.obo deleted file mode 100644 index e92a5b107a..0000000000 --- a/src/ontology/bridge/cl-bridge-to-efo.obo +++ /dev/null @@ -1,176 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-efo -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: EFO:0003711 ! -property_value: IAO:0000589 "Rohon-Beard neuron (EFO)" xsd:string -equivalent_to: CL:0000247 ! Rohon-Beard neuron - -[Term] -id: EFO:0010710 ! -property_value: IAO:0000589 "epithelial cell of endometrial gland (EFO)" xsd:string -equivalent_to: CL:0009084 ! epithelial cell of endometrial gland - -[Term] -id: EFO:0010667 ! -property_value: IAO:0000589 "endothelial cell of respiratory system lymphatic vessel (EFO)" xsd:string -equivalent_to: CL:0009086 ! endothelial cell of respiratory system lymphatic vessel - -[Term] -id: EFO:0010712 ! -property_value: IAO:0000589 "fused extravillous trophoblast (EFO)" xsd:string -equivalent_to: CL:0009087 ! fused extravillous trophoblast - -[Term] -id: EFO:0010669 ! -property_value: IAO:0000589 "lung pericyte (EFO)" xsd:string -equivalent_to: CL:0009089 ! lung pericyte - -[Term] -id: EFO:0010708 ! -property_value: IAO:0000589 "endothelial cell of placenta (EFO)" xsd:string -equivalent_to: CL:0009092 ! endothelial cell of placenta - -[Term] -id: EFO:0010709 ! -property_value: IAO:0000589 "smooth muscle cell of placenta (EFO)" xsd:string -equivalent_to: CL:0009093 ! smooth muscle cell of placenta - -[Term] -id: EFO:0010704 ! -property_value: IAO:0000589 "endothelial cell of hepatic portal vein (EFO)" xsd:string -equivalent_to: CL:0009094 ! endothelial cell of hepatic portal vein - -[Term] -id: EFO:0010711 ! -property_value: IAO:0000589 "endothelial cell of uterus (EFO)" xsd:string -equivalent_to: CL:0009095 ! endothelial cell of uterus - -[Term] -id: EFO:0000572 ! -property_value: IAO:0000589 "lymphoblast (EFO)" xsd:string -equivalent_to: CL:0017005 ! lymphoblast - -[Term] -id: EFO:0005293 ! -property_value: IAO:0000589 "B-lymphoblast (EFO)" xsd:string -equivalent_to: CL:0017006 ! B-lymphoblast - -[Term] -id: EFO:0010705 ! -property_value: IAO:0000589 "endothelial cell of periportal hepatic sinusoid (EFO)" xsd:string -equivalent_to: CL:0019021 ! endothelial cell of periportal hepatic sinusoid - -[Term] -id: EFO:0010706 ! -property_value: IAO:0000589 "endothelial cell of pericentral hepatic sinusoid (EFO)" xsd:string -equivalent_to: CL:0019022 ! endothelial cell of pericentral hepatic sinusoid - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-efo.owl b/src/ontology/bridge/cl-bridge-to-efo.owl index 47217a3a8c..a51901d762 100644 --- a/src/ontology/bridge/cl-bridge-to-efo.owl +++ b/src/ontology/bridge/cl-bridge-to-efo.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - lymphoblast (EFO) - EFO:0000572 + lymphoblast (EFO) @@ -430,8 +156,7 @@ - Rohon-Beard neuron (EFO) - EFO:0003711 + Rohon-Beard neuron (EFO) @@ -439,8 +164,7 @@ - B-lymphoblast (EFO) - EFO:0005293 + B-lymphoblast (EFO) @@ -448,8 +172,7 @@ - endothelial cell of respiratory system lymphatic vessel (EFO) - EFO:0010667 + endothelial cell of respiratory system lymphatic vessel (EFO) @@ -457,8 +180,7 @@ - lung pericyte (EFO) - EFO:0010669 + lung pericyte (EFO) @@ -466,8 +188,7 @@ - endothelial cell of hepatic portal vein (EFO) - EFO:0010704 + endothelial cell of hepatic portal vein (EFO) @@ -475,8 +196,7 @@ - endothelial cell of periportal hepatic sinusoid (EFO) - EFO:0010705 + endothelial cell of periportal hepatic sinusoid (EFO) @@ -484,8 +204,7 @@ - endothelial cell of pericentral hepatic sinusoid (EFO) - EFO:0010706 + endothelial cell of pericentral hepatic sinusoid (EFO) @@ -493,8 +212,7 @@ - endothelial cell of placenta (EFO) - EFO:0010708 + endothelial cell of placenta (EFO) @@ -502,8 +220,7 @@ - smooth muscle cell of placenta (EFO) - EFO:0010709 + smooth muscle cell of placenta (EFO) @@ -511,8 +228,7 @@ - epithelial cell of endometrial gland (EFO) - EFO:0010710 + epithelial cell of endometrial gland (EFO) @@ -520,8 +236,7 @@ - endothelial cell of uterus (EFO) - EFO:0010711 + endothelial cell of uterus (EFO) @@ -529,12 +244,11 @@ - fused extravillous trophoblast (EFO) - EFO:0010712 + fused extravillous trophoblast (EFO) - + diff --git a/src/ontology/bridge/cl-bridge-to-ehdaa2.obo b/src/ontology/bridge/cl-bridge-to-ehdaa2.obo deleted file mode 100644 index d75237a2fc..0000000000 --- a/src/ontology/bridge/cl-bridge-to-ehdaa2.obo +++ /dev/null @@ -1,169 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-ehdaa2 -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to ehdaa2" xsd:string -property_value: dc-description "Equivalence axioms between EHDAA2 and CL. EHDAA2 replaces EHDAA" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Jonathan Bard" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/ehdaa2.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: EHDAA2:0004546 ! -property_value: IAO:0000589 "animal zygote (embryonic human)" xsd:string -intersection_of: CL:0000365 ! animal zygote -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004716 ! -property_value: IAO:0000589 "polar body (embryonic human)" xsd:string -intersection_of: CL:0002090 ! polar body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000541 ! -property_value: IAO:0000589 "primary polar body (embryonic human)" xsd:string -intersection_of: CL:0002091 ! primary polar body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001820 ! -property_value: IAO:0000589 "secondary polar body (embryonic human)" xsd:string -intersection_of: CL:0002093 ! secondary polar body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001053 ! -property_value: IAO:0000589 "male gonocyte (embryonic human)" xsd:string -intersection_of: CL:0002238 ! male gonocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000505 ! -property_value: IAO:0000589 "ooblast (embryonic human)" xsd:string -intersection_of: CL:0002239 ! ooblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:ENTITY -name: EHDAA2 entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-ehdaa2.owl b/src/ontology/bridge/cl-bridge-to-ehdaa2.owl index a09c9f8679..9da5642cb2 100644 --- a/src/ontology/bridge/cl-bridge-to-ehdaa2.owl +++ b/src/ontology/bridge/cl-bridge-to-ehdaa2.owl @@ -7,20 +7,13 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Jonathan Bard - CL editors - Equivalence axioms between EHDAA2 and CL. EHDAA2 replaces EHDAA - CL bridge to ehdaa2 - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Jonathan Bard + CL editors + Equivalence axioms between EHDAA2 and CL. EHDAA2 replaces EHDAA. + CL bridge to ehdaa2 @@ -36,18 +29,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -56,215 +37,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -281,42 +72,7 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -381,8 +137,7 @@ - ooblast (embryonic human) - EHDAA2:0000505 + ooblast (embryonic human) @@ -401,8 +156,7 @@ - primary polar body (embryonic human) - EHDAA2:0000541 + primary polar body (embryonic human) @@ -421,8 +175,7 @@ - male gonocyte (embryonic human) - EHDAA2:0001053 + male gonocyte (embryonic human) @@ -441,8 +194,7 @@ - secondary polar body (embryonic human) - EHDAA2:0001820 + secondary polar body (embryonic human) @@ -461,8 +213,7 @@ - animal zygote (embryonic human) - EHDAA2:0004546 + animal zygote (embryonic human) @@ -481,34 +232,7 @@ - polar body (embryonic human) - EHDAA2:0004716 - - - - - - - - - - - - - - - - - - - - - - - - - EHDAA2:ENTITY - EHDAA2 entity + polar body (embryonic human) @@ -516,15 +240,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/cl-bridge-to-emapa.obo b/src/ontology/bridge/cl-bridge-to-emapa.obo deleted file mode 100644 index e94a5b1a30..0000000000 --- a/src/ontology/bridge/cl-bridge-to-emapa.obo +++ /dev/null @@ -1,201 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-emapa -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to emapa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "vHOG editors" xsd:string -property_value: dc-creator "Aurelie Comte" xsd:string -property_value: dc-creator "Anne Niknejad" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: EMAPA:31484 ! -property_value: IAO:0000589 "spermatocyte (embryonic mouse)" xsd:string -intersection_of: CL:0000017 ! spermatocyte -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31486 ! -property_value: IAO:0000589 "spermatid (embryonic mouse)" xsd:string -intersection_of: CL:0000018 ! spermatid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31482 ! -property_value: IAO:0000589 "spermatogonium (embryonic mouse)" xsd:string -intersection_of: CL:0000020 ! spermatogonium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29655 ! -property_value: IAO:0000589 "Leydig cell (embryonic mouse)" xsd:string -intersection_of: CL:0000178 ! Leydig cell -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16032 ! -property_value: IAO:0000589 "primary polar body (embryonic mouse)" xsd:string -intersection_of: CL:0002091 ! primary polar body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16034 ! -property_value: IAO:0000589 "secondary polar body (embryonic mouse)" xsd:string -intersection_of: CL:0002093 ! secondary polar body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16045 ! -property_value: IAO:0000589 "secondary polar body (embryonic mouse)" xsd:string -intersection_of: CL:0002093 ! secondary polar body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31247 ! -property_value: IAO:0000589 "follicular cell of ovary (embryonic mouse)" xsd:string -intersection_of: CL:0002174 ! follicular cell of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18686 ! -property_value: IAO:0000589 "male gonocyte (embryonic mouse)" xsd:string -intersection_of: CL:0002238 ! male gonocyte -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17965 ! -property_value: IAO:0000589 "ooblast (embryonic mouse)" xsd:string -intersection_of: CL:0002239 ! ooblast -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16066 ! -property_value: IAO:0000589 "primary trophoblast giant cell (embryonic mouse)" xsd:string -intersection_of: CL:0002497 ! primary trophoblast giant cell -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:ENTITY -name: EMAPA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-emapa.owl b/src/ontology/bridge/cl-bridge-to-emapa.owl index aec6be85b2..9da41c9e2b 100644 --- a/src/ontology/bridge/cl-bridge-to-emapa.owl +++ b/src/ontology/bridge/cl-bridge-to-emapa.owl @@ -1,28 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Anne Niknejad - Aurelie Comte - CL editors - vHOG editors - Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and CL - CL bridge to emapa - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -38,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -407,8 +132,7 @@ - primary polar body (embryonic mouse) - EMAPA:16032 + primary polar body (embryonic mouse) @@ -427,8 +151,7 @@ - secondary polar body (embryonic mouse) - EMAPA:16034 + secondary polar body (embryonic mouse) @@ -447,8 +170,7 @@ - secondary polar body (embryonic mouse) - EMAPA:16045 + secondary polar body (embryonic mouse) @@ -467,8 +189,7 @@ - primary trophoblast giant cell (embryonic mouse) - EMAPA:16066 + primary trophoblast giant cell (embryonic mouse) @@ -487,8 +208,7 @@ - ooblast (embryonic mouse) - EMAPA:17965 + ooblast (embryonic mouse) @@ -507,8 +227,7 @@ - male gonocyte (embryonic mouse) - EMAPA:18686 + male gonocyte (embryonic mouse) @@ -527,8 +246,7 @@ - Leydig cell (embryonic mouse) - EMAPA:29655 + Leydig cell (embryonic mouse) @@ -547,8 +265,7 @@ - follicular cell of ovary (embryonic mouse) - EMAPA:31247 + follicular cell of ovary (embryonic mouse) @@ -567,8 +284,7 @@ - spermatogonium (embryonic mouse) - EMAPA:31482 + spermatogonium (embryonic mouse) @@ -587,8 +303,7 @@ - spermatocyte (embryonic mouse) - EMAPA:31484 + spermatocyte (embryonic mouse) @@ -607,34 +322,7 @@ - spermatid (embryonic mouse) - EMAPA:31486 - - - - - - - - - - - - - - - - - - - - - - - - - EMAPA:ENTITY - EMAPA entity + spermatid (embryonic mouse) @@ -642,15 +330,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/cl-bridge-to-fbbt.obo b/src/ontology/bridge/cl-bridge-to-fbbt.obo deleted file mode 100644 index 3ca69fd524..0000000000 --- a/src/ontology/bridge/cl-bridge-to-fbbt.obo +++ /dev/null @@ -1,583 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-fbbt -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to fbbt" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between the drosophila anatomy ontology and CL. Note that currently CL focuses on chordate anatomy so there are only a minimal set of equivalencies for high level classes. In future CL may bridge via the arthropod anatomy ontology" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "David Osumi-Sutherland" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fbbt.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: FBbt:00007002 ! -property_value: IAO:0000589 "cell (drosophila)" xsd:string -intersection_of: CL:0000000 ! cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004861 ! -property_value: IAO:0000589 "germ line stem cell (drosophila)" xsd:string -intersection_of: CL:0000014 ! germ line stem cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004929 ! -property_value: IAO:0000589 "male germ line stem cell (drosophila)" xsd:string -intersection_of: CL:0000016 ! male germ line stem cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004936 ! -property_value: IAO:0000589 "spermatocyte (drosophila)" xsd:string -intersection_of: CL:0000017 ! spermatocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004942 ! -property_value: IAO:0000589 "spermatid (drosophila)" xsd:string -intersection_of: CL:0000018 ! spermatid -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004954 ! -property_value: IAO:0000589 "sperm (drosophila)" xsd:string -intersection_of: CL:0000019 ! sperm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004934 ! -property_value: IAO:0000589 "spermatogonium (drosophila)" xsd:string -intersection_of: CL:0000020 ! spermatogonium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004935 ! -property_value: IAO:0000589 "spermatogonium (drosophila)" xsd:string -intersection_of: CL:0000020 ! spermatogonium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004873 ! -property_value: IAO:0000589 "female germ line stem cell (drosophila)" xsd:string -intersection_of: CL:0000022 ! female germ line stem cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004886 ! -property_value: IAO:0000589 "oocyte (drosophila)" xsd:string -intersection_of: CL:0000023 ! oocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00057012 ! -property_value: IAO:0000589 "egg cell (drosophila)" xsd:string -intersection_of: CL:0000025 ! egg cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004878 ! -property_value: IAO:0000589 "invertebrate nurse cell (drosophila)" xsd:string -intersection_of: CL:0000026 ! invertebrate nurse cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005083 ! -property_value: IAO:0000589 "myoblast (drosophila)" xsd:string -intersection_of: CL:0000056 ! myoblast -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000124 ! -property_value: IAO:0000589 "epithelial cell (drosophila)" xsd:string -intersection_of: CL:0000066 ! epithelial cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005125 ! -property_value: IAO:0000589 "interneuron (drosophila)" xsd:string -intersection_of: CL:0000099 ! interneuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005123 ! -property_value: IAO:0000589 "motor neuron (drosophila)" xsd:string -intersection_of: CL:0000100 ! motor neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005124 ! -property_value: IAO:0000589 "sensory neuron (drosophila)" xsd:string -intersection_of: CL:0000101 ! sensory neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007173 ! -property_value: IAO:0000589 "cholinergic neuron (drosophila)" xsd:string -intersection_of: CL:0000108 ! cholinergic neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004101 ! -property_value: IAO:0000589 "peptidergic neuron (drosophila)" xsd:string -intersection_of: CL:0000110 ! peptidergic neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005128 ! -property_value: IAO:0000589 "pioneer neuron (drosophila)" xsd:string -intersection_of: CL:0000116 ! pioneer neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005144 ! -property_value: IAO:0000589 "glial cell (drosophila)" xsd:string -intersection_of: CL:0000125 ! glial cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005130 ! -property_value: IAO:0000589 "neuroendocrine cell (drosophila)" xsd:string -intersection_of: CL:0000165 ! neuroendocrine cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005074 ! -property_value: IAO:0000589 "muscle cell (drosophila)" xsd:string -intersection_of: CL:0000187 ! muscle cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003360 ! -property_value: IAO:0000589 "insect flight muscle cell (drosophila)" xsd:string -intersection_of: CL:0000196 ! insect flight muscle cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005412 ! -property_value: IAO:0000589 "gamete (drosophila)" xsd:string -intersection_of: CL:0000300 ! gamete -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000092 ! -property_value: IAO:0000589 "pole cell (drosophila)" xsd:string -intersection_of: CL:0000301 ! pole cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005146 ! -property_value: IAO:0000589 "neuroblast (sensu Nematoda and Protostomia) (drosophila)" xsd:string -intersection_of: CL:0000338 ! neuroblast (sensu Nematoda and Protostomia) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005145 ! -property_value: IAO:0000589 "glioblast (sensu Nematoda and Protostomia) (drosophila)" xsd:string -intersection_of: CL:0000340 ! glioblast (sensu Nematoda and Protostomia) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005171 ! -property_value: IAO:0000589 "tormogen cell (drosophila)" xsd:string -intersection_of: CL:0000372 ! tormogen cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001789 ! -property_value: IAO:0000589 "histoblast (drosophila)" xsd:string -intersection_of: CL:0000373 ! histoblast -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005169 ! -property_value: IAO:0000589 "trichogen cell (drosophila)" xsd:string -intersection_of: CL:0000374 ! trichogen cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005173 ! -property_value: IAO:0000589 "thecogen cell (drosophila)" xsd:string -intersection_of: CL:0000380 ! thecogen cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005219 ! -property_value: IAO:0000589 "scolopale cell (drosophila)" xsd:string -intersection_of: CL:0000382 ! scolopale cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005062 ! -property_value: IAO:0000589 "prohemocyte (sensu Nematoda and Protostomia) (drosophila)" xsd:string -intersection_of: CL:0000385 ! prohemocyte (sensu Nematoda and Protostomia) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005063 ! -property_value: IAO:0000589 "hemocyte (sensu Arthropoda) (drosophila)" xsd:string -intersection_of: CL:0000387 ! hemocyte (sensu Arthropoda) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001685 ! -property_value: IAO:0000589 "plasmatocyte (drosophila)" xsd:string -intersection_of: CL:0000394 ! plasmatocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001689 ! -property_value: IAO:0000589 "procrystal cell (drosophila)" xsd:string -intersection_of: CL:0000395 ! procrystal cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001687 ! -property_value: IAO:0000589 "lamellocyte (drosophila)" xsd:string -intersection_of: CL:0000396 ! lamellocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001691 ! -property_value: IAO:0000589 "obsolete polygonal cell (drosophila)" xsd:string -intersection_of: CL:0000398 ! obsolete polygonal cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005221 ! -property_value: IAO:0000589 "scolopidial ligament cell (drosophila)" xsd:string -intersection_of: CL:0000407 ! scolopidial ligament cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007108 ! -property_value: IAO:0000589 "imaginal disc cell (drosophila)" xsd:string -intersection_of: CL:0000429 ! imaginal disc cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004903 ! -property_value: IAO:0000589 "follicle stem cell (sensu Arthropoda) (drosophila)" xsd:string -intersection_of: CL:0000441 ! follicle stem cell (sensu Arthropoda) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003219 ! -property_value: IAO:0000589 "adepithelial cell (drosophila)" xsd:string -intersection_of: CL:0000462 ! adepithelial cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007325 ! -property_value: IAO:0000589 "epidermal cell (sensu Arthropoda) (drosophila)" xsd:string -intersection_of: CL:0000463 ! epidermal cell (sensu Arthropoda) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004994 ! -property_value: IAO:0000589 "epidermoblast (drosophila)" xsd:string -intersection_of: CL:0000464 ! epidermoblast -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001666 ! -property_value: IAO:0000589 "cardioblast (sensu Arthropoda) (drosophila)" xsd:string -intersection_of: CL:0000465 ! cardioblast (sensu Arthropoda) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005147 ! -property_value: IAO:0000589 "neuroglioblast (sensu Nematoda and Protostomia) (drosophila)" xsd:string -intersection_of: CL:0000468 ! neuroglioblast (sensu Nematoda and Protostomia) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005149 ! -property_value: IAO:0000589 "ganglion mother cell (drosophila)" xsd:string -intersection_of: CL:0000469 ! ganglion mother cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005058 ! -property_value: IAO:0000589 "pericardial nephrocyte (drosophila)" xsd:string -intersection_of: CL:0000474 ! pericardial nephrocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004904 ! -property_value: IAO:0000589 "follicle cell of egg chamber (drosophila)" xsd:string -intersection_of: CL:0000477 ! follicle cell of egg chamber -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00058020 ! -property_value: IAO:0000589 "juvenile hormone secreting cell (drosophila)" xsd:string -intersection_of: CL:0000482 ! juvenile hormone secreting cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005059 ! -property_value: IAO:0000589 "garland cell (drosophila)" xsd:string -intersection_of: CL:0000486 ! garland cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004995 ! -property_value: IAO:0000589 "oenocyte (drosophila)" xsd:string -intersection_of: CL:0000487 ! oenocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005106 ! -property_value: IAO:0000589 "neuron (drosophila)" xsd:string -intersection_of: CL:0000540 ! neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004905 ! -property_value: IAO:0000589 "border follicle cell (drosophila)" xsd:string -intersection_of: CL:0000579 ! border follicle cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007228 ! -property_value: IAO:0000589 "GABAergic neuron (drosophila)" xsd:string -intersection_of: CL:0000617 ! GABAergic neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004941 ! -property_value: IAO:0000589 "secondary spermatocyte (drosophila)" xsd:string -intersection_of: CL:0000657 ! secondary spermatocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004906 ! -property_value: IAO:0000589 "centripetally migrating follicle cell (drosophila)" xsd:string -intersection_of: CL:0000671 ! centripetally migrating follicle cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003686 ! -property_value: IAO:0000589 "Kenyon cell (drosophila)" xsd:string -intersection_of: CL:0000673 ! Kenyon cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004910 ! -property_value: IAO:0000589 "interfollicle cell (drosophila)" xsd:string -intersection_of: CL:0000674 ! interfollicle cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00100291 ! -property_value: IAO:0000589 "glutamatergic neuron (drosophila)" xsd:string -intersection_of: CL:0000679 ! glutamatergic neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005131 ! -property_value: IAO:0000589 "dopaminergic neuron (drosophila)" xsd:string -intersection_of: CL:0000700 ! dopaminergic neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001690 ! -property_value: IAO:0000589 "embryonic crystal cell (drosophila)" xsd:string -intersection_of: CL:0000715 ! embryonic crystal cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004193 ! -property_value: IAO:0000589 "compound eye cone cell (drosophila)" xsd:string -intersection_of: CL:0000718 ! compound eye cone cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005917 ! -property_value: IAO:0000589 "lymph gland hemocyte (drosophila)" xsd:string -intersection_of: CL:0000735 ! lymph gland hemocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005133 ! -property_value: IAO:0000589 "serotonergic neuron (drosophila)" xsd:string -intersection_of: CL:0000850 ! serotonergic neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004230 ! -property_value: IAO:0000589 "visual pigment cell (sensu Nematoda and Protostomia) (drosophila)" xsd:string -intersection_of: CL:0001658 ! visual pigment cell (sensu Nematoda and Protostomia) -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005812 ! -property_value: IAO:0000589 "myotube (drosophila)" xsd:string -intersection_of: CL:0002372 ! myotube -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005073 ! -property_value: IAO:0000589 "somatic muscle cell (drosophila)" xsd:string -intersection_of: CL:0008004 ! somatic muscle cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005070 ! -property_value: IAO:0000589 "visceral muscle cell (drosophila)" xsd:string -intersection_of: CL:0008007 ! visceral muscle cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005038 ! -property_value: IAO:0000589 "open tracheal system tracheocyte (drosophila)" xsd:string -intersection_of: CL:0008026 ! open tracheal system tracheocyte -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007367 ! -property_value: IAO:0000589 "histaminergic neuron (drosophila)" xsd:string -intersection_of: CL:0011110 ! histaminergic neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005797 ! -property_value: IAO:0000589 "Malpighian tubule stellate cell (drosophila)" xsd:string -intersection_of: CL:1000155 ! Malpighian tubule stellate cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00048032 ! -property_value: IAO:0000589 "glycinergic neuron (drosophila)" xsd:string -intersection_of: CL:1001509 ! glycinergic neuron -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004211 ! -property_value: IAO:0000589 "compound eye photoreceptor cell (drosophila)" xsd:string -intersection_of: CL:2000019 ! compound eye photoreceptor cell -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:ENTITY -name: FBbt entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7227 -relationship: only_in_taxon NCBITaxon:7227 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-fbbt.owl b/src/ontology/bridge/cl-bridge-to-fbbt.owl index 1e4a774f29..fa002d7c7f 100644 --- a/src/ontology/bridge/cl-bridge-to-fbbt.owl +++ b/src/ontology/bridge/cl-bridge-to-fbbt.owl @@ -7,20 +7,13 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - David Osumi-Sutherland - CL editors - Taxonomic equivalence axioms between the drosophila anatomy ontology and CL. Note that currently CL focuses on chordate anatomy so there are only a minimal set of equivalencies for high level classes. In future CL may bridge via the arthropod anatomy ontology - CL bridge to fbbt - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + David Osumi-Sutherland + CL editors + Taxonomic equivalence axioms between the Drosophila Anatomy Ontology and CL. + CL bridge to FBbt @@ -36,18 +29,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -56,215 +37,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -281,42 +72,7 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -553,12 +309,6 @@ - - - - - - @@ -789,8 +539,7 @@ - pole cell (drosophila) - FBbt:00000092 + pole cell (drosophila) @@ -809,8 +558,7 @@ - epithelial cell (drosophila) - FBbt:00000124 + epithelial cell (drosophila) @@ -829,8 +577,7 @@ - cardioblast (sensu Arthropoda) (drosophila) - FBbt:00001666 + cardioblast (sensu Arthropoda) (drosophila) @@ -849,8 +596,7 @@ - plasmatocyte (drosophila) - FBbt:00001685 + plasmatocyte (drosophila) @@ -869,8 +615,7 @@ - lamellocyte (drosophila) - FBbt:00001687 + lamellocyte (drosophila) @@ -889,8 +634,7 @@ - procrystal cell (drosophila) - FBbt:00001689 + procrystal cell (drosophila) @@ -909,28 +653,7 @@ - embryonic crystal cell (drosophila) - FBbt:00001690 - - - - - - - - - - - - - - - - - - - obsolete polygonal cell (drosophila) - FBbt:00001691 + embryonic crystal cell (drosophila) @@ -949,8 +672,7 @@ - histoblast (drosophila) - FBbt:00001789 + histoblast (drosophila) @@ -969,8 +691,7 @@ - adepithelial cell (drosophila) - FBbt:00003219 + adepithelial cell (drosophila) @@ -989,8 +710,7 @@ - insect flight muscle cell (drosophila) - FBbt:00003360 + insect flight muscle cell (drosophila) @@ -1009,8 +729,7 @@ - Kenyon cell (drosophila) - FBbt:00003686 + Kenyon cell (drosophila) @@ -1029,8 +748,7 @@ - peptidergic neuron (drosophila) - FBbt:00004101 + peptidergic neuron (drosophila) @@ -1049,8 +767,7 @@ - compound eye cone cell (drosophila) - FBbt:00004193 + compound eye cone cell (drosophila) @@ -1069,8 +786,7 @@ - compound eye photoreceptor cell (drosophila) - FBbt:00004211 + compound eye photoreceptor cell (drosophila) @@ -1089,8 +805,7 @@ - visual pigment cell (sensu Nematoda and Protostomia) (drosophila) - FBbt:00004230 + visual pigment cell (sensu Nematoda and Protostomia) (drosophila) @@ -1109,8 +824,7 @@ - germ line stem cell (drosophila) - FBbt:00004861 + germ line stem cell (drosophila) @@ -1129,8 +843,7 @@ - female germ line stem cell (drosophila) - FBbt:00004873 + female germ line stem cell (drosophila) @@ -1149,8 +862,7 @@ - invertebrate nurse cell (drosophila) - FBbt:00004878 + invertebrate nurse cell (drosophila) @@ -1169,8 +881,7 @@ - oocyte (drosophila) - FBbt:00004886 + oocyte (drosophila) @@ -1189,8 +900,7 @@ - follicle stem cell (sensu Arthropoda) (drosophila) - FBbt:00004903 + follicle stem cell (sensu Arthropoda) (drosophila) @@ -1209,8 +919,7 @@ - follicle cell of egg chamber (drosophila) - FBbt:00004904 + follicle cell of egg chamber (drosophila) @@ -1229,8 +938,7 @@ - border follicle cell (drosophila) - FBbt:00004905 + border follicle cell (drosophila) @@ -1249,8 +957,7 @@ - centripetally migrating follicle cell (drosophila) - FBbt:00004906 + centripetally migrating follicle cell (drosophila) @@ -1269,8 +976,7 @@ - interfollicle cell (drosophila) - FBbt:00004910 + interfollicle cell (drosophila) @@ -1289,8 +995,7 @@ - male germ line stem cell (drosophila) - FBbt:00004929 + male germ line stem cell (drosophila) @@ -1309,8 +1014,7 @@ - spermatogonium (drosophila) - FBbt:00004934 + spermatogonium (drosophila) @@ -1329,8 +1033,7 @@ - spermatogonium (drosophila) - FBbt:00004935 + spermatogonium (drosophila) @@ -1349,8 +1052,7 @@ - spermatocyte (drosophila) - FBbt:00004936 + spermatocyte (drosophila) @@ -1369,8 +1071,7 @@ - secondary spermatocyte (drosophila) - FBbt:00004941 + secondary spermatocyte (drosophila) @@ -1389,8 +1090,7 @@ - spermatid (drosophila) - FBbt:00004942 + spermatid (drosophila) @@ -1409,8 +1109,7 @@ - sperm (drosophila) - FBbt:00004954 + sperm (drosophila) @@ -1429,8 +1128,7 @@ - epidermoblast (drosophila) - FBbt:00004994 + epidermoblast (drosophila) @@ -1449,8 +1147,7 @@ - oenocyte (drosophila) - FBbt:00004995 + oenocyte (drosophila) @@ -1469,8 +1166,7 @@ - open tracheal system tracheocyte (drosophila) - FBbt:00005038 + open tracheal system tracheocyte (drosophila) @@ -1489,8 +1185,7 @@ - pericardial nephrocyte (drosophila) - FBbt:00005058 + pericardial nephrocyte (drosophila) @@ -1509,8 +1204,7 @@ - garland cell (drosophila) - FBbt:00005059 + garland cell (drosophila) @@ -1529,8 +1223,7 @@ - prohemocyte (sensu Nematoda and Protostomia) (drosophila) - FBbt:00005062 + prohemocyte (sensu Nematoda and Protostomia) (drosophila) @@ -1549,8 +1242,7 @@ - hemocyte (sensu Arthropoda) (drosophila) - FBbt:00005063 + hemocyte (sensu Arthropoda) (drosophila) @@ -1569,8 +1261,7 @@ - visceral muscle cell (drosophila) - FBbt:00005070 + visceral muscle cell (drosophila) @@ -1589,8 +1280,7 @@ - somatic muscle cell (drosophila) - FBbt:00005073 + somatic muscle cell (drosophila) @@ -1609,8 +1299,7 @@ - muscle cell (drosophila) - FBbt:00005074 + muscle cell (drosophila) @@ -1629,8 +1318,7 @@ - myoblast (drosophila) - FBbt:00005083 + myoblast (drosophila) @@ -1649,8 +1337,7 @@ - neuron (drosophila) - FBbt:00005106 + neuron (drosophila) @@ -1669,8 +1356,7 @@ - motor neuron (drosophila) - FBbt:00005123 + motor neuron (drosophila) @@ -1689,8 +1375,7 @@ - sensory neuron (drosophila) - FBbt:00005124 + sensory neuron (drosophila) @@ -1709,8 +1394,7 @@ - interneuron (drosophila) - FBbt:00005125 + interneuron (drosophila) @@ -1729,8 +1413,7 @@ - pioneer neuron (drosophila) - FBbt:00005128 + pioneer neuron (drosophila) @@ -1749,8 +1432,7 @@ - neuroendocrine cell (drosophila) - FBbt:00005130 + neuroendocrine cell (drosophila) @@ -1769,8 +1451,7 @@ - dopaminergic neuron (drosophila) - FBbt:00005131 + dopaminergic neuron (drosophila) @@ -1789,8 +1470,7 @@ - serotonergic neuron (drosophila) - FBbt:00005133 + serotonergic neuron (drosophila) @@ -1809,8 +1489,7 @@ - glial cell (drosophila) - FBbt:00005144 + glial cell (drosophila) @@ -1829,8 +1508,7 @@ - glioblast (sensu Nematoda and Protostomia) (drosophila) - FBbt:00005145 + glioblast (sensu Nematoda and Protostomia) (drosophila) @@ -1849,8 +1527,7 @@ - neuroblast (sensu Nematoda and Protostomia) (drosophila) - FBbt:00005146 + neuroblast (sensu Nematoda and Protostomia) (drosophila) @@ -1869,8 +1546,7 @@ - neuroglioblast (sensu Nematoda and Protostomia) (drosophila) - FBbt:00005147 + neuroglioblast (sensu Nematoda and Protostomia) (drosophila) @@ -1889,8 +1565,7 @@ - ganglion mother cell (drosophila) - FBbt:00005149 + ganglion mother cell (drosophila) @@ -1909,8 +1584,7 @@ - trichogen cell (drosophila) - FBbt:00005169 + trichogen cell (drosophila) @@ -1929,8 +1603,7 @@ - tormogen cell (drosophila) - FBbt:00005171 + tormogen cell (drosophila) @@ -1949,8 +1622,7 @@ - thecogen cell (drosophila) - FBbt:00005173 + thecogen cell (drosophila) @@ -1969,8 +1641,7 @@ - scolopale cell (drosophila) - FBbt:00005219 + scolopale cell (drosophila) @@ -1989,8 +1660,7 @@ - scolopidial ligament cell (drosophila) - FBbt:00005221 + scolopidial ligament cell (drosophila) @@ -2009,8 +1679,7 @@ - gamete (drosophila) - FBbt:00005412 + gamete (drosophila) @@ -2029,8 +1698,7 @@ - Malpighian tubule stellate cell (drosophila) - FBbt:00005797 + Malpighian tubule stellate cell (drosophila) @@ -2049,8 +1717,7 @@ - myotube (drosophila) - FBbt:00005812 + myotube (drosophila) @@ -2069,8 +1736,7 @@ - lymph gland hemocyte (drosophila) - FBbt:00005917 + lymph gland hemocyte (drosophila) @@ -2089,8 +1755,7 @@ - cell (drosophila) - FBbt:00007002 + cell (drosophila) @@ -2109,8 +1774,7 @@ - imaginal disc cell (drosophila) - FBbt:00007108 + imaginal disc cell (drosophila) @@ -2129,8 +1793,7 @@ - cholinergic neuron (drosophila) - FBbt:00007173 + cholinergic neuron (drosophila) @@ -2149,8 +1812,7 @@ - GABAergic neuron (drosophila) - FBbt:00007228 + GABAergic neuron (drosophila) @@ -2169,8 +1831,7 @@ - epidermal cell (sensu Arthropoda) (drosophila) - FBbt:00007325 + epidermal cell (sensu Arthropoda) (drosophila) @@ -2189,8 +1850,7 @@ - histaminergic neuron (drosophila) - FBbt:00007367 + histaminergic neuron (drosophila) @@ -2209,8 +1869,7 @@ - glycinergic neuron (drosophila) - FBbt:00048032 + glycinergic neuron (drosophila) @@ -2229,8 +1888,7 @@ - egg cell (drosophila) - FBbt:00057012 + egg cell (drosophila) @@ -2249,8 +1907,7 @@ - juvenile hormone secreting cell (drosophila) - FBbt:00058020 + juvenile hormone secreting cell (drosophila) @@ -2269,34 +1926,7 @@ - glutamatergic neuron (drosophila) - FBbt:00100291 - - - - - - - - - - - - - - - - - - - - - - - - - FBbt:ENTITY - FBbt entity + glutamatergic neuron (drosophila) @@ -2304,15 +1934,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/cl-bridge-to-fma.obo b/src/ontology/bridge/cl-bridge-to-fma.obo deleted file mode 100644 index c0bf22dc53..0000000000 --- a/src/ontology/bridge/cl-bridge-to-fma.obo +++ /dev/null @@ -1,4388 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-fma -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to fma" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between the FMA and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Onard Mejino" xsd:string -property_value: dc-contributor "Terry Hayamizu" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: FMA:68646 ! -property_value: IAO:0000589 "cell (post-embryonic human)" xsd:string -intersection_of: CL:0000000 ! cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72290 ! -property_value: IAO:0000589 "male germ cell (post-embryonic human)" xsd:string -intersection_of: CL:0000015 ! male germ cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84049 ! -property_value: IAO:0000589 "spermatocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000017 ! spermatocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72294 ! -property_value: IAO:0000589 "spermatid (post-embryonic human)" xsd:string -intersection_of: CL:0000018 ! spermatid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67338 ! -property_value: IAO:0000589 "sperm (post-embryonic human)" xsd:string -intersection_of: CL:0000019 ! sperm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72291 ! -property_value: IAO:0000589 "spermatogonium (post-embryonic human)" xsd:string -intersection_of: CL:0000020 ! spermatogonium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18644 ! -property_value: IAO:0000589 "oocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000023 ! oocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83673 ! -property_value: IAO:0000589 "oogonial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000024 ! oogonial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67343 ! -property_value: IAO:0000589 "egg cell (post-embryonic human)" xsd:string -intersection_of: CL:0000025 ! egg cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70563 ! -property_value: IAO:0000589 "neuroblast (sensu Vertebrata) (post-embryonic human)" xsd:string -intersection_of: CL:0000031 ! neuroblast (sensu Vertebrata) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63368 ! -property_value: IAO:0000589 "stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000034 ! stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70569 ! -property_value: IAO:0000589 "single fate stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000035 ! single fate stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70337 ! -property_value: IAO:0000589 "hematopoietic stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000037 ! hematopoietic stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86475 ! -property_value: IAO:0000589 "hematopoietic stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000037 ! hematopoietic stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83553 ! -property_value: IAO:0000589 "monoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000040 ! monoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86684 ! -property_value: IAO:0000589 "neural stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000047 ! neural stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84789 ! -property_value: IAO:0000589 "multi fate stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000048 ! multi fate stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84790 ! -property_value: IAO:0000589 "totipotent stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000052 ! totipotent stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84782 ! -property_value: IAO:0000589 "non-terminally differentiated cell (post-embryonic human)" xsd:string -intersection_of: CL:0000055 ! non-terminally differentiated cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70335 ! -property_value: IAO:0000589 "myoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000056 ! myoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63877 ! -property_value: IAO:0000589 "fibroblast (post-embryonic human)" xsd:string -intersection_of: CL:0000057 ! fibroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66783 ! -property_value: IAO:0000589 "chondroblast (post-embryonic human)" xsd:string -intersection_of: CL:0000058 ! chondroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70576 ! -property_value: IAO:0000589 "ameloblast (post-embryonic human)" xsd:string -intersection_of: CL:0000059 ! ameloblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62999 ! -property_value: IAO:0000589 "odontoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000060 ! odontoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63002 ! -property_value: IAO:0000589 "cementoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000061 ! cementoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66780 ! -property_value: IAO:0000589 "osteoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000062 ! osteoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70550 ! -property_value: IAO:0000589 "ependymal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000065 ! ependymal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66768 ! -property_value: IAO:0000589 "epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000066 ! epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70605 ! -property_value: IAO:0000589 "ciliated epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000067 ! ciliated epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66773 ! -property_value: IAO:0000589 "mesothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000077 ! mesothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62844 ! -property_value: IAO:0000589 "blood cell (post-embryonic human)" xsd:string -intersection_of: CL:0000081 ! blood cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62870 ! -property_value: IAO:0000589 "T cell (post-embryonic human)" xsd:string -intersection_of: CL:0000084 ! T cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14656 ! -property_value: IAO:0000589 "Kupffer cell (post-embryonic human)" xsd:string -intersection_of: CL:0000091 ! Kupffer cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66781 ! -property_value: IAO:0000589 "osteoclast (post-embryonic human)" xsd:string -intersection_of: CL:0000092 ! osteoclast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62854 ! -property_value: IAO:0000589 "granulocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000094 ! granulocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66784 ! -property_value: IAO:0000589 "mast cell (post-embryonic human)" xsd:string -intersection_of: CL:0000097 ! mast cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67313 ! -property_value: IAO:0000589 "interneuron (post-embryonic human)" xsd:string -intersection_of: CL:0000099 ! interneuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83617 ! -property_value: IAO:0000589 "motor neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000100 ! motor neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84649 ! -property_value: IAO:0000589 "sensory neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000101 ! sensory neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67282 ! -property_value: IAO:0000589 "bipolar neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000103 ! bipolar neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67287 ! -property_value: IAO:0000589 "multipolar neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000104 ! multipolar neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67305 ! -property_value: IAO:0000589 "pseudounipolar neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000105 ! pseudounipolar neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67278 ! -property_value: IAO:0000589 "unipolar neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000106 ! unipolar neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80121 ! -property_value: IAO:0000589 "autonomic neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000107 ! autonomic neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84796 ! -property_value: IAO:0000589 "cholinergic neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000108 ! cholinergic neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72552 ! -property_value: IAO:0000589 "surface ectodermal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000114 ! surface ectodermal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66772 ! -property_value: IAO:0000589 "endothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000115 ! endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67969 ! -property_value: IAO:0000589 "Purkinje cell (post-embryonic human)" xsd:string -intersection_of: CL:0000121 ! Purkinje cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54536 ! -property_value: IAO:0000589 "glial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000125 ! glial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54538 ! -property_value: IAO:0000589 "macroglial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000126 ! macroglial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54537 ! -property_value: IAO:0000589 "astrocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000127 ! astrocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54540 ! -property_value: IAO:0000589 "oligodendrocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000128 ! oligodendrocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54539 ! -property_value: IAO:0000589 "microglial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000129 ! microglial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54540 ! -property_value: IAO:0000589 "microglial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000129 ! microglial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70614 ! -property_value: IAO:0000589 "corneal endothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000132 ! corneal endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70546 ! -property_value: IAO:0000589 "mesenchymal stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000134 ! mesenchymal stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63879 ! -property_value: IAO:0000589 "fibrocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000135 ! fibrocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63880 ! -property_value: IAO:0000589 "fat cell (post-embryonic human)" xsd:string -intersection_of: CL:0000136 ! fat cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66779 ! -property_value: IAO:0000589 "osteocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000137 ! osteocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66782 ! -property_value: IAO:0000589 "chondrocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000138 ! chondrocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63003 ! -property_value: IAO:0000589 "cementocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000141 ! cementocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70620 ! -property_value: IAO:0000589 "hyalocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000142 ! hyalocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70545 ! -property_value: IAO:0000589 "melanocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000148 ! melanocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86494 ! -property_value: IAO:0000589 "glandular epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000150 ! glandular epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86916 ! -property_value: IAO:0000589 "secretory cell (post-embryonic human)" xsd:string -intersection_of: CL:0000151 ! secretory cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16014 ! -property_value: IAO:0000589 "exocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000152 ! exocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62902 ! -property_value: IAO:0000589 "peptic cell (post-embryonic human)" xsd:string -intersection_of: CL:0000155 ! peptic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14119 ! -property_value: IAO:0000589 "club cell (post-embryonic human)" xsd:string -intersection_of: CL:0000158 ! club cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13148 ! -property_value: IAO:0000589 "goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:0000160 ! goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62901 ! -property_value: IAO:0000589 "parietal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000162 ! parietal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83809 ! -property_value: IAO:0000589 "endocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000163 ! endocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62930 ! -property_value: IAO:0000589 "enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000164 ! enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83810 ! -property_value: IAO:0000589 "neuroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000165 ! neuroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69263 ! -property_value: IAO:0000589 "chromaffin cell (post-embryonic human)" xsd:string -intersection_of: CL:0000166 ! chromaffin cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70586 ! -property_value: IAO:0000589 "type B pancreatic cell (post-embryonic human)" xsd:string -intersection_of: CL:0000169 ! type B pancreatic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84045 ! -property_value: IAO:0000589 "glucagon secreting cell (post-embryonic human)" xsd:string -intersection_of: CL:0000170 ! glucagon secreting cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70585 ! -property_value: IAO:0000589 "pancreatic A cell (post-embryonic human)" xsd:string -intersection_of: CL:0000171 ! pancreatic A cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70587 ! -property_value: IAO:0000589 "pancreatic D cell (post-embryonic human)" xsd:string -intersection_of: CL:0000173 ! pancreatic D cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18688 ! -property_value: IAO:0000589 "luteal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000175 ! luteal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72297 ! -property_value: IAO:0000589 "Leydig cell (post-embryonic human)" xsd:string -intersection_of: CL:0000178 ! Leydig cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14515 ! -property_value: IAO:0000589 "hepatocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000182 ! hepatocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67799 ! -property_value: IAO:0000589 "myoepithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000185 ! myoepithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67328 ! -property_value: IAO:0000589 "muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0000187 ! muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9727 ! -property_value: IAO:0000589 "cell of skeletal muscle (post-embryonic human)" xsd:string -intersection_of: CL:0000188 ! cell of skeletal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84448 ! -property_value: IAO:0000589 "slow muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0000189 ! slow muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14072 ! -property_value: IAO:0000589 "smooth muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0000192 ! smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62364 ! -property_value: IAO:0000589 "auditory hair cell (post-embryonic human)" xsd:string -intersection_of: CL:0000202 ! auditory hair cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67860 ! -property_value: IAO:0000589 "olfactory receptor cell (post-embryonic human)" xsd:string -intersection_of: CL:0000207 ! olfactory receptor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67910 ! -property_value: IAO:0000589 "taste receptor cell (post-embryonic human)" xsd:string -intersection_of: CL:0000209 ! taste receptor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86740 ! -property_value: IAO:0000589 "photoreceptor cell (post-embryonic human)" xsd:string -intersection_of: CL:0000210 ! photoreceptor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72298 ! -property_value: IAO:0000589 "Sertoli cell (post-embryonic human)" xsd:string -intersection_of: CL:0000216 ! Sertoli cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62121 ! -property_value: IAO:0000589 "myelinating Schwann cell (post-embryonic human)" xsd:string -intersection_of: CL:0000218 ! myelinating Schwann cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72549 ! -property_value: IAO:0000589 "ectodermal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000221 ! ectodermal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72554 ! -property_value: IAO:0000589 "mesodermal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000222 ! mesodermal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72555 ! -property_value: IAO:0000589 "endodermal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000223 ! endodermal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68647 ! -property_value: IAO:0000589 "anucleate cell (post-embryonic human)" xsd:string -intersection_of: CL:0000225 ! anucleate cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:81100 ! -property_value: IAO:0000589 "erythrocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000232 ! erythrocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62851 ! -property_value: IAO:0000589 "platelet (post-embryonic human)" xsd:string -intersection_of: CL:0000233 ! platelet -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83806 ! -property_value: IAO:0000589 "phagocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000234 ! phagocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63261 ! -property_value: IAO:0000589 "macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000235 ! macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83585 ! -property_value: IAO:0000589 "macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000235 ! macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62869 ! -property_value: IAO:0000589 "B cell (post-embryonic human)" xsd:string -intersection_of: CL:0000236 ! B cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70548 ! -property_value: IAO:0000589 "Merkel cell (post-embryonic human)" xsd:string -intersection_of: CL:0000242 ! Merkel cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66778 ! -property_value: IAO:0000589 "transitional epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000244 ! transitional epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18649 ! -property_value: IAO:0000589 "gamete (post-embryonic human)" xsd:string -intersection_of: CL:0000300 ! gamete -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74793 ! -property_value: IAO:0000589 "tracheal epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000307 ! tracheal epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62879 ! -property_value: IAO:0000589 "keratinocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000312 ! keratinocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62511 ! -property_value: IAO:0000589 "serous secreting cell (post-embryonic human)" xsd:string -intersection_of: CL:0000313 ! serous secreting cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62499 ! -property_value: IAO:0000589 "pneumocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000322 ! pneumocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86667 ! -property_value: IAO:0000589 "migratory neural crest cell (post-embryonic human)" xsd:string -intersection_of: CL:0000333 ! migratory neural crest cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69262 ! -property_value: IAO:0000589 "adrenal medulla chromaffin cell (post-embryonic human)" xsd:string -intersection_of: CL:0000336 ! adrenal medulla chromaffin cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70564 ! -property_value: IAO:0000589 "glioblast (sensu Vertebrata) (post-embryonic human)" xsd:string -intersection_of: CL:0000339 ! glioblast (sensu Vertebrata) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63846 ! -property_value: IAO:0000589 "visual pigment cell (sensu Vertebrata) (post-embryonic human)" xsd:string -intersection_of: CL:0000343 ! visual pigment cell (sensu Vertebrata) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83028 ! -property_value: IAO:0000589 "trophoblast cell (post-embryonic human)" xsd:string -intersection_of: CL:0000351 ! trophoblast cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72551 ! -property_value: IAO:0000589 "blastoderm cell (post-embryonic human)" xsd:string -intersection_of: CL:0000353 ! blastoderm cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86767 ! -property_value: IAO:0000589 "multi-potent skeletal muscle stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000355 ! multi-potent skeletal muscle stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62411 ! -property_value: IAO:0000589 "epidermal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000362 ! epidermal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72395 ! -property_value: IAO:0000589 "animal zygote (post-embryonic human)" xsd:string -intersection_of: CL:0000365 ! animal zygote -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72300 ! -property_value: IAO:0000589 "diploid cell (post-embryonic human)" xsd:string -intersection_of: CL:0000415 ! diploid cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62877 ! -property_value: IAO:0000589 "reticular cell (post-embryonic human)" xsd:string -intersection_of: CL:0000432 ! reticular cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83100 ! -property_value: IAO:0000589 "gonadtroph (post-embryonic human)" xsd:string -intersection_of: CL:0000437 ! gonadtroph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83037 ! -property_value: IAO:0000589 "follicular dendritic cell (post-embryonic human)" xsd:string -intersection_of: CL:0000442 ! follicular dendritic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69078 ! -property_value: IAO:0000589 "chief cell of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0000446 ! chief cell of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83434 ! -property_value: IAO:0000589 "white fat cell (post-embryonic human)" xsd:string -intersection_of: CL:0000448 ! white fat cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83435 ! -property_value: IAO:0000589 "brown fat cell (post-embryonic human)" xsd:string -intersection_of: CL:0000449 ! brown fat cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83036 ! -property_value: IAO:0000589 "dendritic cell (post-embryonic human)" xsd:string -intersection_of: CL:0000451 ! dendritic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63072 ! -property_value: IAO:0000589 "Langerhans cell (post-embryonic human)" xsd:string -intersection_of: CL:0000453 ! Langerhans cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83099 ! -property_value: IAO:0000589 "thyrotroph (post-embryonic human)" xsd:string -intersection_of: CL:0000476 ! thyrotroph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70572 ! -property_value: IAO:0000589 "CD4-positive helper T cell (post-embryonic human)" xsd:string -intersection_of: CL:0000492 ! CD4-positive helper T cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84776 ! -property_value: IAO:0000589 "inhibitory interneuron (post-embryonic human)" xsd:string -intersection_of: CL:0000498 ! inhibitory interneuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83624 ! -property_value: IAO:0000589 "stromal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000499 ! stromal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18718 ! -property_value: IAO:0000589 "granulosa cell (post-embryonic human)" xsd:string -intersection_of: CL:0000501 ! granulosa cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62935 ! -property_value: IAO:0000589 "type D enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000502 ! type D enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18690 ! -property_value: IAO:0000589 "theca cell (post-embryonic human)" xsd:string -intersection_of: CL:0000503 ! theca cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67609 ! -property_value: IAO:0000589 "type G enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000508 ! type G enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62897 ! -property_value: IAO:0000589 "paneth cell (post-embryonic human)" xsd:string -intersection_of: CL:0000510 ! paneth cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84797 ! -property_value: IAO:0000589 "cardiac muscle myoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000513 ! cardiac muscle myoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84798 ! -property_value: IAO:0000589 "smooth muscle myoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000514 ! smooth muscle myoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84799 ! -property_value: IAO:0000589 "skeletal muscle myoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000515 ! skeletal muscle myoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54550 ! -property_value: IAO:0000589 "perineuronal satellite cell (post-embryonic human)" xsd:string -intersection_of: CL:0000516 ! perineuronal satellite cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83042 ! -property_value: IAO:0000589 "mononuclear cytotrophoblast cell (post-embryonic human)" xsd:string -intersection_of: CL:0000523 ! mononuclear cytotrophoblast cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83043 ! -property_value: IAO:0000589 "syncytiotrophoblast cell (post-embryonic human)" xsd:string -intersection_of: CL:0000525 ! syncytiotrophoblast cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87653 ! -property_value: IAO:0000589 "afferent neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000526 ! afferent neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84792 ! -property_value: IAO:0000589 "nitrergic neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000528 ! nitrergic neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54527 ! -property_value: IAO:0000589 "neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000540 ! neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83377 ! -property_value: IAO:0000589 "melanoblast (post-embryonic human)" xsd:string -intersection_of: CL:0000541 ! melanoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62863 ! -property_value: IAO:0000589 "lymphocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000542 ! lymphocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84382 ! -property_value: IAO:0000589 "T-helper 1 cell (post-embryonic human)" xsd:string -intersection_of: CL:0000545 ! T-helper 1 cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84385 ! -property_value: IAO:0000589 "T-helper 2 cell (post-embryonic human)" xsd:string -intersection_of: CL:0000546 ! T-helper 2 cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83518 ! -property_value: IAO:0000589 "proerythroblast (post-embryonic human)" xsd:string -intersection_of: CL:0000547 ! proerythroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83505 ! -property_value: IAO:0000589 "basophilic erythroblast (post-embryonic human)" xsd:string -intersection_of: CL:0000549 ! basophilic erythroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83506 ! -property_value: IAO:0000589 "polychromatophilic erythroblast (post-embryonic human)" xsd:string -intersection_of: CL:0000550 ! polychromatophilic erythroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84646 ! -property_value: IAO:0000589 "orthochromatic erythroblast (post-embryonic human)" xsd:string -intersection_of: CL:0000552 ! orthochromatic erythroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84235 ! -property_value: IAO:0000589 "megakaryocyte progenitor cell (post-embryonic human)" xsd:string -intersection_of: CL:0000553 ! megakaryocyte progenitor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83555 ! -property_value: IAO:0000589 "megakaryocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000556 ! megakaryocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83551 ! -property_value: IAO:0000589 "promonocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000559 ! promonocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67766 ! -property_value: IAO:0000589 "amacrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000561 ! amacrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84196 ! -property_value: IAO:0000589 "neutrophilic promyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000564 ! neutrophilic promyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83114 ! -property_value: IAO:0000589 "amine precursor uptake and decarboxylation cell (post-embryonic human)" xsd:string -intersection_of: CL:0000568 ! amine precursor uptake and decarboxylation cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68653 ! -property_value: IAO:0000589 "parafollicular cell (post-embryonic human)" xsd:string -intersection_of: CL:0000570 ! parafollicular cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67748 ! -property_value: IAO:0000589 "retinal cone cell (post-embryonic human)" xsd:string -intersection_of: CL:0000573 ! retinal cone cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70551 ! -property_value: IAO:0000589 "corneal epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000575 ! corneal epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62864 ! -property_value: IAO:0000589 "monocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000576 ! monocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62934 ! -property_value: IAO:0000589 "type EC enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000577 ! type EC enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83132 ! -property_value: IAO:0000589 "type EC enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0000577 ! type EC enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83540 ! -property_value: IAO:0000589 "neutrophilic myelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000580 ! neutrophilic myelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83025 ! -property_value: IAO:0000589 "peritoneal macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000581 ! peritoneal macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84197 ! -property_value: IAO:0000589 "neutrophilic metamyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000582 ! neutrophilic metamyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83023 ! -property_value: IAO:0000589 "alveolar macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000583 ! alveolar macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62122 ! -property_value: IAO:0000589 "enterocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000584 ! enterocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83027 ! -property_value: IAO:0000589 "odontoclast (post-embryonic human)" xsd:string -intersection_of: CL:0000588 ! odontoclast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62365 ! -property_value: IAO:0000589 "cochlear inner hair cell (post-embryonic human)" xsd:string -intersection_of: CL:0000589 ! cochlear inner hair cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18690 ! -property_value: IAO:0000589 "small luteal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000590 ! small luteal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18689 ! -property_value: IAO:0000589 "large luteal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000592 ! large luteal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67310 ! -property_value: IAO:0000589 "pyramidal neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000598 ! pyramidal neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86775 ! -property_value: IAO:0000589 "pyramidal neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000598 ! pyramidal neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62366 ! -property_value: IAO:0000589 "cochlear outer hair cell (post-embryonic human)" xsd:string -intersection_of: CL:0000601 ! cochlear outer hair cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67747 ! -property_value: IAO:0000589 "retinal rod cell (post-embryonic human)" xsd:string -intersection_of: CL:0000604 ! retinal rod cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62351 ! -property_value: IAO:0000589 "vestibular hair cell (post-embryonic human)" xsd:string -intersection_of: CL:0000609 ! vestibular hair cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83542 ! -property_value: IAO:0000589 "eosinophilic myelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000612 ! eosinophilic myelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83543 ! -property_value: IAO:0000589 "basophilic myelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000614 ! basophilic myelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84788 ! -property_value: IAO:0000589 "GABAergic neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000617 ! GABAergic neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83625 ! -property_value: IAO:0000589 "acinar cell (post-embryonic human)" xsd:string -intersection_of: CL:0000622 ! acinar cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63147 ! -property_value: IAO:0000589 "natural killer cell (post-embryonic human)" xsd:string -intersection_of: CL:0000623 ! natural killer cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83601 ! -property_value: IAO:0000589 "natural killer cell (post-embryonic human)" xsd:string -intersection_of: CL:0000623 ! natural killer cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67763 ! -property_value: IAO:0000589 "hepatic stellate cell (post-embryonic human)" xsd:string -intersection_of: CL:0000632 ! hepatic stellate cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79799 ! -property_value: IAO:0000589 "Hensen cell (post-embryonic human)" xsd:string -intersection_of: CL:0000633 ! Hensen cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79802 ! -property_value: IAO:0000589 "Claudius cell (post-embryonic human)" xsd:string -intersection_of: CL:0000634 ! Claudius cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75725 ! -property_value: IAO:0000589 "Deiter's cell (post-embryonic human)" xsd:string -intersection_of: CL:0000635 ! Deiter's cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83089 ! -property_value: IAO:0000589 "chromophil cell of anterior pituitary gland (post-embryonic human)" xsd:string -intersection_of: CL:0000637 ! chromophil cell of anterior pituitary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83093 ! -property_value: IAO:0000589 "acidophil cell of pars distalis of adenohypophysis (post-embryonic human)" xsd:string -intersection_of: CL:0000638 ! acidophil cell of pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83094 ! -property_value: IAO:0000589 "basophil cell of pars distalis of adenohypophysis (post-embryonic human)" xsd:string -intersection_of: CL:0000639 ! basophil cell of pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83626 ! -property_value: IAO:0000589 "chromophobe cell (post-embryonic human)" xsd:string -intersection_of: CL:0000641 ! chromophobe cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54559 ! -property_value: IAO:0000589 "Bergmann glial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000644 ! Bergmann glial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83503 ! -property_value: IAO:0000589 "pituicyte (post-embryonic human)" xsd:string -intersection_of: CL:0000645 ! pituicyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62516 ! -property_value: IAO:0000589 "basal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000646 ! basal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83035 ! -property_value: IAO:0000589 "multinucleated giant cell (post-embryonic human)" xsd:string -intersection_of: CL:0000647 ! multinucleated giant cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84138 ! -property_value: IAO:0000589 "kidney granular cell (post-embryonic human)" xsd:string -intersection_of: CL:0000648 ! kidney granular cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69059 ! -property_value: IAO:0000589 "prickle cell (post-embryonic human)" xsd:string -intersection_of: CL:0000649 ! prickle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70972 ! -property_value: IAO:0000589 "mesangial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000650 ! mesangial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83417 ! -property_value: IAO:0000589 "pinealocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000652 ! pinealocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70967 ! -property_value: IAO:0000589 "podocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000653 ! podocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18645 ! -property_value: IAO:0000589 "primary oocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000654 ! primary oocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18646 ! -property_value: IAO:0000589 "secondary oocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000655 ! secondary oocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72292 ! -property_value: IAO:0000589 "primary spermatocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000656 ! primary spermatocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72293 ! -property_value: IAO:0000589 "secondary spermatocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000657 ! secondary spermatocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84638 ! -property_value: IAO:0000589 "obsolete parenchymal cell (post-embryonic human)" xsd:string -intersection_of: CL:0000668 ! obsolete parenchymal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63174 ! -property_value: IAO:0000589 "pericyte (post-embryonic human)" xsd:string -intersection_of: CL:0000669 ! pericyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70567 ! -property_value: IAO:0000589 "primordial germ cell (post-embryonic human)" xsd:string -intersection_of: CL:0000670 ! primordial germ cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62929 ! -property_value: IAO:0000589 "M cell of gut (post-embryonic human)" xsd:string -intersection_of: CL:0000682 ! M cell of gut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62938 ! -property_value: IAO:0000589 "PP cell (post-embryonic human)" xsd:string -intersection_of: CL:0000696 ! PP cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83409 ! -property_value: IAO:0000589 "PP cell (post-embryonic human)" xsd:string -intersection_of: CL:0000696 ! PP cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84787 ! -property_value: IAO:0000589 "dopaminergic neuron (post-embryonic human)" xsd:string -intersection_of: CL:0000700 ! dopaminergic neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70549 ! -property_value: IAO:0000589 "choroid plexus epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000706 ! choroid plexus epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70557 ! -property_value: IAO:0000589 "neurecto-epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000710 ! neurecto-epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63368 ! -property_value: IAO:0000589 "somatic stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0000723 ! somatic stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84127 ! -property_value: IAO:0000589 "urothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0000731 ! urothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86936 ! -property_value: IAO:0000589 "striated muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0000737 ! striated muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62852 ! -property_value: IAO:0000589 "leukocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000738 ! leukocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67765 ! -property_value: IAO:0000589 "retinal ganglion cell (post-embryonic human)" xsd:string -intersection_of: CL:0000740 ! retinal ganglion cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14067 ! -property_value: IAO:0000589 "cardiac muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0000746 ! cardiac muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67750 ! -property_value: IAO:0000589 "rod bipolar cell (post-embryonic human)" xsd:string -intersection_of: CL:0000751 ! rod bipolar cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62845 ! -property_value: IAO:0000589 "erythroid lineage cell (post-embryonic human)" xsd:string -intersection_of: CL:0000764 ! erythroid lineage cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83516 ! -property_value: IAO:0000589 "erythroid lineage cell (post-embryonic human)" xsd:string -intersection_of: CL:0000764 ! erythroid lineage cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83504 ! -property_value: IAO:0000589 "erythroblast (post-embryonic human)" xsd:string -intersection_of: CL:0000765 ! erythroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62862 ! -property_value: IAO:0000589 "basophil (post-embryonic human)" xsd:string -intersection_of: CL:0000767 ! basophil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84198 ! -property_value: IAO:0000589 "basophilic metamyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000769 ! basophilic metamyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62861 ! -property_value: IAO:0000589 "eosinophil (post-embryonic human)" xsd:string -intersection_of: CL:0000771 ! eosinophil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62860 ! -property_value: IAO:0000589 "neutrophil (post-embryonic human)" xsd:string -intersection_of: CL:0000775 ! neutrophil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70574 ! -property_value: IAO:0000589 "plasma cell (post-embryonic human)" xsd:string -intersection_of: CL:0000786 ! plasma cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70573 ! -property_value: IAO:0000589 "CD8-positive, alpha-beta cytotoxic T cell (post-embryonic human)" xsd:string -intersection_of: CL:0000794 ! CD8-positive, alpha-beta cytotoxic T cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84070 ! -property_value: IAO:0000589 "regulatory T cell (post-embryonic human)" xsd:string -intersection_of: CL:0000815 ! regulatory T cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84208 ! -property_value: IAO:0000589 "basophilic promyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000830 ! basophilic promyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84199 ! -property_value: IAO:0000589 "eosinophilic promyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000833 ! eosinophilic promyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83524 ! -property_value: IAO:0000589 "myeloblast (post-embryonic human)" xsd:string -intersection_of: CL:0000835 ! myeloblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83530 ! -property_value: IAO:0000589 "promyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000836 ! promyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70338 ! -property_value: IAO:0000589 "lymphoid lineage restricted progenitor cell (post-embryonic human)" xsd:string -intersection_of: CL:0000838 ! lymphoid lineage restricted progenitor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70339 ! -property_value: IAO:0000589 "myeloid lineage restricted progenitor cell (post-embryonic human)" xsd:string -intersection_of: CL:0000839 ! myeloid lineage restricted progenitor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83038 ! -property_value: IAO:0000589 "mature conventional dendritic cell (post-embryonic human)" xsd:string -intersection_of: CL:0000841 ! mature conventional dendritic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86713 ! -property_value: IAO:0000589 "mononuclear cell (post-embryonic human)" xsd:string -intersection_of: CL:0000842 ! mononuclear cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62302 ! -property_value: IAO:0000589 "olfactory epithelial supporting cell (post-embryonic human)" xsd:string -intersection_of: CL:0000853 ! olfactory epithelial supporting cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84643 ! -property_value: IAO:0000589 "elicited macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000861 ! elicited macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84645 ! -property_value: IAO:0000589 "elicited macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000861 ! elicited macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84642 ! -property_value: IAO:0000589 "tissue-resident macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000864 ! tissue-resident macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84644 ! -property_value: IAO:0000589 "tissue-resident macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000864 ! tissue-resident macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83026 ! -property_value: IAO:0000589 "splenic macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0000871 ! splenic macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83586 ! -property_value: IAO:0000589 "foam cell (post-embryonic human)" xsd:string -intersection_of: CL:0000891 ! foam cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72202 ! -property_value: IAO:0000589 "thymocyte (post-embryonic human)" xsd:string -intersection_of: CL:0000893 ! thymocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70573 ! -property_value: IAO:0000589 "cytotoxic T cell (post-embryonic human)" xsd:string -intersection_of: CL:0000910 ! cytotoxic T cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84793 ! -property_value: IAO:0000589 "Tc1 cell (post-embryonic human)" xsd:string -intersection_of: CL:0000917 ! Tc1 cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84794 ! -property_value: IAO:0000589 "Tc2 cell (post-embryonic human)" xsd:string -intersection_of: CL:0000918 ! Tc2 cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84371 ! -property_value: IAO:0000589 "plasmablast (post-embryonic human)" xsd:string -intersection_of: CL:0000980 ! plasmablast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70366 ! -property_value: IAO:0000589 "hematopoietic cell (post-embryonic human)" xsd:string -intersection_of: CL:0000988 ! hematopoietic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83598 ! -property_value: IAO:0000589 "hematopoietic cell (post-embryonic human)" xsd:string -intersection_of: CL:0000988 ! hematopoietic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84191 ! -property_value: IAO:0000589 "conventional dendritic cell (post-embryonic human)" xsd:string -intersection_of: CL:0000990 ! conventional dendritic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86475 ! -property_value: IAO:0000589 "CD34-positive, CD38-negative hematopoietic stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0001024 ! CD34-positive, CD38-negative hematopoietic stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83517 ! -property_value: IAO:0000589 "CD34-positive, GlyA-negative erythroid progenitor cell (post-embryonic human)" xsd:string -intersection_of: CL:0002003 ! CD34-positive, GlyA-negative erythroid progenitor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62500 ! -property_value: IAO:0000589 "type I pneumocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002062 ! type I pneumocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62501 ! -property_value: IAO:0000589 "type II pneumocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002063 ! type II pneumocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63032 ! -property_value: IAO:0000589 "pancreatic acinar cell (post-embryonic human)" xsd:string -intersection_of: CL:0002064 ! pancreatic acinar cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14118 ! -property_value: IAO:0000589 "Feyrter cell (post-embryonic human)" xsd:string -intersection_of: CL:0002066 ! Feyrter cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62939 ! -property_value: IAO:0000589 "type A enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002067 ! type A enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14146 ! -property_value: IAO:0000589 "Purkinje myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002068 ! Purkinje myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67909 ! -property_value: IAO:0000589 "type II vestibular sensory cell (post-embryonic human)" xsd:string -intersection_of: CL:0002069 ! type II vestibular sensory cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62352 ! -property_value: IAO:0000589 "type I vestibular sensory cell (post-embryonic human)" xsd:string -intersection_of: CL:0002070 ! type I vestibular sensory cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63638 ! -property_value: IAO:0000589 "enterocyte of epithelium of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:0002071 ! enterocyte of epithelium of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66771 ! -property_value: IAO:0000589 "enterocyte of epithelium of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:0002071 ! enterocyte of epithelium of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67101 ! -property_value: IAO:0000589 "nodal myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002072 ! nodal myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67142 ! -property_value: IAO:0000589 "transitional myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002073 ! transitional myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67111 ! -property_value: IAO:0000589 "myocardial endocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002074 ! myocardial endocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69075 ! -property_value: IAO:0000589 "endo-epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002076 ! endo-epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69074 ! -property_value: IAO:0000589 "ecto-epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002077 ! ecto-epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69076 ! -property_value: IAO:0000589 "meso-epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002078 ! meso-epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63099 ! -property_value: IAO:0000589 "pancreatic ductal cell (post-embryonic human)" xsd:string -intersection_of: CL:0002079 ! pancreatic ductal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62455 ! -property_value: IAO:0000589 "pancreatic centro-acinar cell (post-embryonic human)" xsd:string -intersection_of: CL:0002080 ! pancreatic centro-acinar cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84187 ! -property_value: IAO:0000589 "type II cell of carotid body (post-embryonic human)" xsd:string -intersection_of: CL:0002081 ! type II cell of carotid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69322 ! -property_value: IAO:0000589 "type II cell of adrenal medulla (post-embryonic human)" xsd:string -intersection_of: CL:0002082 ! type II cell of adrenal medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69321 ! -property_value: IAO:0000589 "type I cell of adrenal medulla (post-embryonic human)" xsd:string -intersection_of: CL:0002083 ! type I cell of adrenal medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54560 ! -property_value: IAO:0000589 "tanycyte (post-embryonic human)" xsd:string -intersection_of: CL:0002085 ! tanycyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67968 ! -property_value: IAO:0000589 "specialized cardiac myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002086 ! specialized cardiac myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62855 ! -property_value: IAO:0000589 "nongranular leukocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002087 ! nongranular leukocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86573 ! -property_value: IAO:0000589 "interstitial cell of Cajal (post-embryonic human)" xsd:string -intersection_of: CL:0002088 ! interstitial cell of Cajal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85543 ! -property_value: IAO:0000589 "polar body (post-embryonic human)" xsd:string -intersection_of: CL:0002090 ! polar body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18650 ! -property_value: IAO:0000589 "primary polar body (post-embryonic human)" xsd:string -intersection_of: CL:0002091 ! primary polar body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83621 ! -property_value: IAO:0000589 "bone marrow cell (post-embryonic human)" xsd:string -intersection_of: CL:0002092 ! bone marrow cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18651 ! -property_value: IAO:0000589 "secondary polar body (post-embryonic human)" xsd:string -intersection_of: CL:0002093 ! secondary polar body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18709 ! -property_value: IAO:0000589 "interstitial cell of ovary (post-embryonic human)" xsd:string -intersection_of: CL:0002094 ! interstitial cell of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18710 ! -property_value: IAO:0000589 "hilus cell of ovary (post-embryonic human)" xsd:string -intersection_of: CL:0002095 ! hilus cell of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223275 ! -property_value: IAO:0000589 "internodal tract myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002096 ! internodal tract myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69545 ! -property_value: IAO:0000589 "cortical cell of adrenal gland (post-embryonic human)" xsd:string -intersection_of: CL:0002097 ! cortical cell of adrenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67967 ! -property_value: IAO:0000589 "regular cardiac myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002098 ! regular cardiac myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69273 ! -property_value: IAO:0000589 "type I cell of adrenal cortex (post-embryonic human)" xsd:string -intersection_of: CL:0002099 ! type I cell of adrenal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:228792 ! -property_value: IAO:0000589 "regular interventricular cardiac myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002100 ! regular interventricular cardiac myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83108 ! -property_value: IAO:0000589 "regular atrial cardiac myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002129 ! regular atrial cardiac myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:228790 ! -property_value: IAO:0000589 "regular interatrial cardiac myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002130 ! regular interatrial cardiac myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83109 ! -property_value: IAO:0000589 "regular ventricular cardiac myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002131 ! regular ventricular cardiac myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72299 ! -property_value: IAO:0000589 "stromal cell of ovary (post-embryonic human)" xsd:string -intersection_of: CL:0002132 ! stromal cell of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256169 ! -property_value: IAO:0000589 "stromal cell of ovarian cortex (post-embryonic human)" xsd:string -intersection_of: CL:0002133 ! stromal cell of ovarian cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256171 ! -property_value: IAO:0000589 "stromal cell of ovarian medulla (post-embryonic human)" xsd:string -intersection_of: CL:0002134 ! stromal cell of ovarian medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62880 ! -property_value: IAO:0000589 "nonkeratinized cell of epidermis (post-embryonic human)" xsd:string -intersection_of: CL:0002135 ! nonkeratinized cell of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69547 ! -property_value: IAO:0000589 "type II cell of adrenal cortex (post-embryonic human)" xsd:string -intersection_of: CL:0002136 ! type II cell of adrenal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69564 ! -property_value: IAO:0000589 "type III cell of adrenal cortex (post-embryonic human)" xsd:string -intersection_of: CL:0002137 ! type III cell of adrenal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68458 ! -property_value: IAO:0000589 "endothelial cell of lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: CL:0002138 ! endothelial cell of lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67755 ! -property_value: IAO:0000589 "endothelial cell of vascular tree (post-embryonic human)" xsd:string -intersection_of: CL:0002139 ! endothelial cell of vascular tree -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70953 ! -property_value: IAO:0000589 "acinar cell of sebaceous gland (post-embryonic human)" xsd:string -intersection_of: CL:0002140 ! acinar cell of sebaceous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69082 ! -property_value: IAO:0000589 "active chief cell of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0002141 ! active chief cell of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70659 ! -property_value: IAO:0000589 "dark cell of eccrine sweat gland (post-embryonic human)" xsd:string -intersection_of: CL:0002142 ! dark cell of eccrine sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69080 ! -property_value: IAO:0000589 "dark chief cell of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0002143 ! dark chief cell of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67756 ! -property_value: IAO:0000589 "capillary endothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002144 ! capillary endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70542 ! -property_value: IAO:0000589 "ciliated columnar cell of tracheobronchial tree (post-embryonic human)" xsd:string -intersection_of: CL:0002145 ! ciliated columnar cell of tracheobronchial tree -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70658 ! -property_value: IAO:0000589 "clear cell of eccrine sweat gland (post-embryonic human)" xsd:string -intersection_of: CL:0002146 ! clear cell of eccrine sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69081 ! -property_value: IAO:0000589 "clear chief cell of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0002147 ! clear chief cell of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87170 ! -property_value: IAO:0000589 "dental pulp cell (post-embryonic human)" xsd:string -intersection_of: CL:0002148 ! dental pulp cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256161 ! -property_value: IAO:0000589 "epithelial cell of uterus (post-embryonic human)" xsd:string -intersection_of: CL:0002149 ! epithelial cell of uterus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83514 ! -property_value: IAO:0000589 "epithelioid macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0002150 ! epithelioid macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83534 ! -property_value: IAO:0000589 "late promyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002151 ! late promyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86486 ! -property_value: IAO:0000589 "columnar cell of endocervix (post-embryonic human)" xsd:string -intersection_of: CL:0002152 ! columnar cell of endocervix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68650 ! -property_value: IAO:0000589 "corneocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002153 ! corneocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83533 ! -property_value: IAO:0000589 "early promyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002154 ! early promyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:81099 ! -property_value: IAO:0000589 "echinocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002155 ! echinocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86495 ! -property_value: IAO:0000589 "endosteal cell (post-embryonic human)" xsd:string -intersection_of: CL:0002157 ! endosteal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70558 ! -property_value: IAO:0000589 "external epithelial cell of tympanic membrane (post-embryonic human)" xsd:string -intersection_of: CL:0002158 ! external epithelial cell of tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70556 ! -property_value: IAO:0000589 "general ecto-epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002159 ! general ecto-epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70626 ! -property_value: IAO:0000589 "internal epithelial cell of tympanic membrane (post-embryonic human)" xsd:string -intersection_of: CL:0002162 ! internal epithelial cell of tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75722 ! -property_value: IAO:0000589 "internal pillar cell of cochlea (post-embryonic human)" xsd:string -intersection_of: CL:0002163 ! internal pillar cell of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75726 ! -property_value: IAO:0000589 "internal pillar cell of cochlea (post-embryonic human)" xsd:string -intersection_of: CL:0002163 ! internal pillar cell of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75727 ! -property_value: IAO:0000589 "external pillar cell of cochlea (post-embryonic human)" xsd:string -intersection_of: CL:0002164 ! external pillar cell of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79800 ! -property_value: IAO:0000589 "phalangeal cell (post-embryonic human)" xsd:string -intersection_of: CL:0002165 ! phalangeal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62987 ! -property_value: IAO:0000589 "epithelial cell of Malassez (post-embryonic human)" xsd:string -intersection_of: CL:0002166 ! epithelial cell of Malassez -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67870 ! -property_value: IAO:0000589 "olfactory epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002167 ! olfactory epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79798 ! -property_value: IAO:0000589 "border cell of cochlea (post-embryonic human)" xsd:string -intersection_of: CL:0002168 ! border cell of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62303 ! -property_value: IAO:0000589 "basal cell of olfactory epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002169 ! basal cell of olfactory epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67874 ! -property_value: IAO:0000589 "globose cell of olfactory epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002171 ! globose cell of olfactory epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79797 ! -property_value: IAO:0000589 "interdental cell of cochlea (post-embryonic human)" xsd:string -intersection_of: CL:0002172 ! interdental cell of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84143 ! -property_value: IAO:0000589 "extraglomerular mesangial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002173 ! extraglomerular mesangial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70589 ! -property_value: IAO:0000589 "follicular cell of ovary (post-embryonic human)" xsd:string -intersection_of: CL:0002174 ! follicular cell of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70590 ! -property_value: IAO:0000589 "primary follicular cell of ovary (post-embryonic human)" xsd:string -intersection_of: CL:0002175 ! primary follicular cell of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70591 ! -property_value: IAO:0000589 "secondary follicular cell of ovary (post-embryonic human)" xsd:string -intersection_of: CL:0002176 ! secondary follicular cell of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83102 ! -property_value: IAO:0000589 "folliculostellate cell of pars distalis of adenohypophysis (post-embryonic human)" xsd:string -intersection_of: CL:0002177 ! folliculostellate cell of pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62948 ! -property_value: IAO:0000589 "epithelial cell of stomach (post-embryonic human)" xsd:string -intersection_of: CL:0002178 ! epithelial cell of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86552 ! -property_value: IAO:0000589 "foveolar cell of stomach (post-embryonic human)" xsd:string -intersection_of: CL:0002179 ! foveolar cell of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63464 ! -property_value: IAO:0000589 "mucous cell of stomach (post-embryonic human)" xsd:string -intersection_of: CL:0002180 ! mucous cell of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62954 ! -property_value: IAO:0000589 "mucous neck cell of gastric gland (post-embryonic human)" xsd:string -intersection_of: CL:0002181 ! mucous neck cell of gastric gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62949 ! -property_value: IAO:0000589 "surface mucosal cell of stomach (post-embryonic human)" xsd:string -intersection_of: CL:0002182 ! surface mucosal cell of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62953 ! -property_value: IAO:0000589 "stem cell of gastric gland (post-embryonic human)" xsd:string -intersection_of: CL:0002183 ! stem cell of gastric gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62304 ! -property_value: IAO:0000589 "basal proper cell of olfactory epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002184 ! basal proper cell of olfactory epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70571 ! -property_value: IAO:0000589 "basal cell of epidermis (post-embryonic human)" xsd:string -intersection_of: CL:0002187 ! basal cell of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70970 ! -property_value: IAO:0000589 "glomerular endothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002188 ! glomerular endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70543 ! -property_value: IAO:0000589 "granular cell of epidermis (post-embryonic human)" xsd:string -intersection_of: CL:0002189 ! granular cell of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86925 ! -property_value: IAO:0000589 "squamous cell of epidermis (post-embryonic human)" xsd:string -intersection_of: CL:0002190 ! squamous cell of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83519 ! -property_value: IAO:0000589 "granulocytopoietic cell (post-embryonic human)" xsd:string -intersection_of: CL:0002191 ! granulocytopoietic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83541 ! -property_value: IAO:0000589 "metamyelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002192 ! metamyelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83525 ! -property_value: IAO:0000589 "myelocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002193 ! myelocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83552 ! -property_value: IAO:0000589 "monopoietic cell (post-embryonic human)" xsd:string -intersection_of: CL:0002194 ! monopoietic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86577 ! -property_value: IAO:0000589 "hepatic stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0002195 ! hepatic stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86576 ! -property_value: IAO:0000589 "hepatic oval stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0002196 ! hepatic oval stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67606 ! -property_value: IAO:0000589 "oncocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002198 ! oncocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69084 ! -property_value: IAO:0000589 "oxyphil cell of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0002199 ! oxyphil cell of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87169 ! -property_value: IAO:0000589 "oxyphil cell of thyroid (post-embryonic human)" xsd:string -intersection_of: CL:0002200 ! oxyphil cell of thyroid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66816 ! -property_value: IAO:0000589 "epithelial cell of tracheobronchial tree (post-embryonic human)" xsd:string -intersection_of: CL:0002202 ! epithelial cell of tracheobronchial tree -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263222 ! -property_value: IAO:0000589 "brush cell of epithelium proper of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:0002203 ! brush cell of epithelium proper of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67978 ! -property_value: IAO:0000589 "brush cell (post-embryonic human)" xsd:string -intersection_of: CL:0002204 ! brush cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263220 ! -property_value: IAO:0000589 "brush cell of lobular bronchiole (post-embryonic human)" xsd:string -intersection_of: CL:0002205 ! brush cell of lobular bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263228 ! -property_value: IAO:0000589 "brush cell of terminal bronchiole (post-embryonic human)" xsd:string -intersection_of: CL:0002206 ! brush cell of terminal bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263224 ! -property_value: IAO:0000589 "brush cell of trachea (post-embryonic human)" xsd:string -intersection_of: CL:0002207 ! brush cell of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263226 ! -property_value: IAO:0000589 "brush cell of bronchus (post-embryonic human)" xsd:string -intersection_of: CL:0002208 ! brush cell of bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69060 ! -property_value: IAO:0000589 "intermediate epitheliocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002209 ! intermediate epitheliocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84448 ! -property_value: IAO:0000589 "red muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0002210 ! red muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84413 ! -property_value: IAO:0000589 "type I muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0002211 ! type I muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84414 ! -property_value: IAO:0000589 "type II muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0002212 ! type II muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84449 ! -property_value: IAO:0000589 "white muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0002213 ! white muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84415 ! -property_value: IAO:0000589 "type IIa muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0002214 ! type IIa muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84416 ! -property_value: IAO:0000589 "type IIb muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0002215 ! type IIb muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84450 ! -property_value: IAO:0000589 "intermediate muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:0002216 ! intermediate muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86564 ! -property_value: IAO:0000589 "intermediate trophoblast cell (post-embryonic human)" xsd:string -intersection_of: CL:0002217 ! intermediate trophoblast cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86575 ! -property_value: IAO:0000589 "interstitial cell of pineal gland (post-embryonic human)" xsd:string -intersection_of: CL:0002220 ! interstitial cell of pineal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86549 ! -property_value: IAO:0000589 "keratinized squamous cell of esophagus (post-embryonic human)" xsd:string -intersection_of: CL:0002221 ! keratinized squamous cell of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70950 ! -property_value: IAO:0000589 "vertebrate lens cell (post-embryonic human)" xsd:string -intersection_of: CL:0002222 ! vertebrate lens cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63181 ! -property_value: IAO:0000589 "anterior lens cell (post-embryonic human)" xsd:string -intersection_of: CL:0002223 ! anterior lens cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67559 ! -property_value: IAO:0000589 "lens epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002224 ! lens epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67561 ! -property_value: IAO:0000589 "non-nucleated secondary lens fiber (post-embryonic human)" xsd:string -intersection_of: CL:0002226 ! non-nucleated secondary lens fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70949 ! -property_value: IAO:0000589 "nucleated secondary lens fiber (post-embryonic human)" xsd:string -intersection_of: CL:0002227 ! nucleated secondary lens fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70613 ! -property_value: IAO:0000589 "primary lens fiber (post-embryonic human)" xsd:string -intersection_of: CL:0002228 ! primary lens fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69079 ! -property_value: IAO:0000589 "light chief cell of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0002229 ! light chief cell of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256163 ! -property_value: IAO:0000589 "epithelial cell of prostate (post-embryonic human)" xsd:string -intersection_of: CL:0002231 ! epithelial cell of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66817 ! -property_value: IAO:0000589 "epithelial cell of prostate (post-embryonic human)" xsd:string -intersection_of: CL:0002231 ! epithelial cell of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74224 ! -property_value: IAO:0000589 "epithelial cell of prostatic duct (post-embryonic human)" xsd:string -intersection_of: CL:0002232 ! epithelial cell of prostatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74223 ! -property_value: IAO:0000589 "epithelial cell of prostatic acinus (post-embryonic human)" xsd:string -intersection_of: CL:0002233 ! epithelial cell of prostatic acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74265 ! -property_value: IAO:0000589 "basal cell of prostatic acinus (post-embryonic human)" xsd:string -intersection_of: CL:0002234 ! basal cell of prostatic acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74266 ! -property_value: IAO:0000589 "luminal cell of prostatic acinus (post-embryonic human)" xsd:string -intersection_of: CL:0002235 ! luminal cell of prostatic acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74226 ! -property_value: IAO:0000589 "basal epithelial cell of prostatic duct (post-embryonic human)" xsd:string -intersection_of: CL:0002236 ! basal epithelial cell of prostatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74225 ! -property_value: IAO:0000589 "luminal epithelial cell of prostatic duct (post-embryonic human)" xsd:string -intersection_of: CL:0002237 ! luminal epithelial cell of prostatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84771 ! -property_value: IAO:0000589 "male gonocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002238 ! male gonocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84772 ! -property_value: IAO:0000589 "ooblast (post-embryonic human)" xsd:string -intersection_of: CL:0002239 ! ooblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84377 ! -property_value: IAO:0000589 "marrow fibroblast (post-embryonic human)" xsd:string -intersection_of: CL:0002240 ! marrow fibroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84467 ! -property_value: IAO:0000589 "pulmonary interstitial fibroblast (post-embryonic human)" xsd:string -intersection_of: CL:0002241 ! pulmonary interstitial fibroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67513 ! -property_value: IAO:0000589 "nucleate cell (post-embryonic human)" xsd:string -intersection_of: CL:0002242 ! nucleate cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70611 ! -property_value: IAO:0000589 "smooth muscle cell of sphincter of pupil (post-embryonic human)" xsd:string -intersection_of: CL:0002243 ! smooth muscle cell of sphincter of pupil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86483 ! -property_value: IAO:0000589 "squamous cell of ectocervix (post-embryonic human)" xsd:string -intersection_of: CL:0002244 ! squamous cell of ectocervix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83601 ! -property_value: IAO:0000589 "obsolete null lymphocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002245 ! obsolete null lymphocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86711 ! -property_value: IAO:0000589 "peripheral blood stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0002246 ! peripheral blood stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83024 ! -property_value: IAO:0000589 "pleural macrophage (post-embryonic human)" xsd:string -intersection_of: CL:0002247 ! pleural macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70570 ! -property_value: IAO:0000589 "pluripotent stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0002248 ! pluripotent stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75620 ! -property_value: IAO:0000589 "primitive cardiac myocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002249 ! primitive cardiac myocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63379 ! -property_value: IAO:0000589 "intestinal crypt stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0002250 ! intestinal crypt stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63071 ! -property_value: IAO:0000589 "epithelial cell of esophagus (post-embryonic human)" xsd:string -intersection_of: CL:0002252 ! epithelial cell of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256157 ! -property_value: IAO:0000589 "epithelial cell of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:0002253 ! epithelial cell of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256159 ! -property_value: IAO:0000589 "epithelial cell of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:0002254 ! epithelial cell of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86490 ! -property_value: IAO:0000589 "stromal cell of endometrium (post-embryonic human)" xsd:string -intersection_of: CL:0002255 ! stromal cell of endometrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84188 ! -property_value: IAO:0000589 "supporting cell of carotid body (post-embryonic human)" xsd:string -intersection_of: CL:0002256 ! supporting cell of carotid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256167 ! -property_value: IAO:0000589 "epithelial cell of thyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0002257 ! epithelial cell of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68782 ! -property_value: IAO:0000589 "thyroid follicular cell (post-embryonic human)" xsd:string -intersection_of: CL:0002258 ! thyroid follicular cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87171 ! -property_value: IAO:0000589 "neuroepithelial stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0002259 ! neuroepithelial stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70547 ! -property_value: IAO:0000589 "epithelial cell of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0002260 ! epithelial cell of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70627 ! -property_value: IAO:0000589 "endothelial cell of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002261 ! endothelial cell of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63134 ! -property_value: IAO:0000589 "endothelial cell of sinusoid (post-embryonic human)" xsd:string -intersection_of: CL:0002262 ! endothelial cell of sinusoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69324 ! -property_value: IAO:0000589 "transitional cell of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: CL:0002263 ! transitional cell of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83411 ! -property_value: IAO:0000589 "type A cell of stomach (post-embryonic human)" xsd:string -intersection_of: CL:0002264 ! type A cell of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:268744 ! -property_value: IAO:0000589 "type D cell of colon (post-embryonic human)" xsd:string -intersection_of: CL:0002265 ! type D cell of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:268736 ! -property_value: IAO:0000589 "type D cell of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:0002266 ! type D cell of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83410 ! -property_value: IAO:0000589 "type D cell of stomach (post-embryonic human)" xsd:string -intersection_of: CL:0002267 ! type D cell of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63207 ! -property_value: IAO:0000589 "P/D1 enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002268 ! P/D1 enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63418 ! -property_value: IAO:0000589 "P/D1 enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002268 ! P/D1 enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62941 ! -property_value: IAO:0000589 "type EC2 enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002270 ! type EC2 enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62940 ! -property_value: IAO:0000589 "type EC1 enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002271 ! type EC1 enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63208 ! -property_value: IAO:0000589 "type ECL enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002273 ! type ECL enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70588 ! -property_value: IAO:0000589 "pancreatic PP cell (post-embryonic human)" xsd:string -intersection_of: CL:0002275 ! pancreatic PP cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85400 ! -property_value: IAO:0000589 "obsolete PP cell of pancreatic acinus (post-embryonic human)" xsd:string -intersection_of: CL:0002276 ! obsolete PP cell of pancreatic acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62937 ! -property_value: IAO:0000589 "type I enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002277 ! type I enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62942 ! -property_value: IAO:0000589 "GIP cell (post-embryonic human)" xsd:string -intersection_of: CL:0002278 ! GIP cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62944 ! -property_value: IAO:0000589 "type L enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002279 ! type L enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62943 ! -property_value: IAO:0000589 "type N enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002280 ! type N enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62936 ! -property_value: IAO:0000589 "type S enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002281 ! type S enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63421 ! -property_value: IAO:0000589 "type TG enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002282 ! type TG enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70581 ! -property_value: IAO:0000589 "ecto-epithelial cell of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002283 ! ecto-epithelial cell of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63209 ! -property_value: IAO:0000589 "type X enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002284 ! type X enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67940 ! -property_value: IAO:0000589 "type III taste bud cell (post-embryonic human)" xsd:string -intersection_of: CL:0002285 ! type III taste bud cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62381 ! -property_value: IAO:0000589 "type II taste cell (post-embryonic human)" xsd:string -intersection_of: CL:0002286 ! type II taste cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62380 ! -property_value: IAO:0000589 "type IV taste receptor cell (post-embryonic human)" xsd:string -intersection_of: CL:0002287 ! type IV taste receptor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67941 ! -property_value: IAO:0000589 "type V taste receptor cell (post-embryonic human)" xsd:string -intersection_of: CL:0002288 ! type V taste receptor cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62356 ! -property_value: IAO:0000589 "type I taste bud cell (post-embryonic human)" xsd:string -intersection_of: CL:0002289 ! type I taste bud cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84058 ! -property_value: IAO:0000589 "Y chromosome-bearing sperm cell (post-embryonic human)" xsd:string -intersection_of: CL:0002290 ! Y chromosome-bearing sperm cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84057 ! -property_value: IAO:0000589 "X chromosome-bearing sperm cell (post-embryonic human)" xsd:string -intersection_of: CL:0002291 ! X chromosome-bearing sperm cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84186 ! -property_value: IAO:0000589 "type I cell of carotid body (post-embryonic human)" xsd:string -intersection_of: CL:0002292 ! type I cell of carotid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72208 ! -property_value: IAO:0000589 "epithelial cell of thymus (post-embryonic human)" xsd:string -intersection_of: CL:0002293 ! epithelial cell of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72209 ! -property_value: IAO:0000589 "type-1 epithelial cell of thymus (post-embryonic human)" xsd:string -intersection_of: CL:0002294 ! type-1 epithelial cell of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72214 ! -property_value: IAO:0000589 "type-6 epithelial cell of thymus (post-embryonic human)" xsd:string -intersection_of: CL:0002295 ! type-6 epithelial cell of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72212 ! -property_value: IAO:0000589 "type-4 epithelial cell of thymus (post-embryonic human)" xsd:string -intersection_of: CL:0002296 ! type-4 epithelial cell of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72211 ! -property_value: IAO:0000589 "type-3 epithelial cell of thymus (post-embryonic human)" xsd:string -intersection_of: CL:0002297 ! type-3 epithelial cell of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72213 ! -property_value: IAO:0000589 "type-5 epithelial cell of thymus (post-embryonic human)" xsd:string -intersection_of: CL:0002298 ! type-5 epithelial cell of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72210 ! -property_value: IAO:0000589 "type-2 epithelial cell of thymus (post-embryonic human)" xsd:string -intersection_of: CL:0002299 ! type-2 epithelial cell of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66788 ! -property_value: IAO:0000589 "type B synovial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002301 ! type B synovial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66787 ! -property_value: IAO:0000589 "type A synovial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002302 ! type A synovial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70606 ! -property_value: IAO:0000589 "pigmented ciliary epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002303 ! pigmented ciliary epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70607 ! -property_value: IAO:0000589 "non-pigmented ciliary epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002304 ! non-pigmented ciliary epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62125 ! -property_value: IAO:0000589 "epithelial cell of distal tubule (post-embryonic human)" xsd:string -intersection_of: CL:0002305 ! epithelial cell of distal tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70981 ! -property_value: IAO:0000589 "epithelial cell of distal tubule (post-embryonic human)" xsd:string -intersection_of: CL:0002305 ! epithelial cell of distal tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62125 ! -property_value: IAO:0000589 "epithelial cell of proximal tubule (post-embryonic human)" xsd:string -intersection_of: CL:0002306 ! epithelial cell of proximal tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70973 ! -property_value: IAO:0000589 "epithelial cell of proximal tubule (post-embryonic human)" xsd:string -intersection_of: CL:0002306 ! epithelial cell of proximal tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70657 ! -property_value: IAO:0000589 "epithelial cell of skin gland (post-embryonic human)" xsd:string -intersection_of: CL:0002308 ! epithelial cell of skin gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83098 ! -property_value: IAO:0000589 "corticotroph (post-embryonic human)" xsd:string -intersection_of: CL:0002309 ! corticotroph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83097 ! -property_value: IAO:0000589 "mammosomatotroph (post-embryonic human)" xsd:string -intersection_of: CL:0002310 ! mammosomatotroph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83096 ! -property_value: IAO:0000589 "mammotroph (post-embryonic human)" xsd:string -intersection_of: CL:0002311 ! mammotroph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83095 ! -property_value: IAO:0000589 "somatotroph (post-embryonic human)" xsd:string -intersection_of: CL:0002312 ! somatotroph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74390 ! -property_value: IAO:0000589 "endocrine-paracrine cell of prostate gland (post-embryonic human)" xsd:string -intersection_of: CL:0002313 ! endocrine-paracrine cell of prostate gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86774 ! -property_value: IAO:0000589 "endocrine-paracrine cell of prostate gland (post-embryonic human)" xsd:string -intersection_of: CL:0002313 ! endocrine-paracrine cell of prostate gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75809 ! -property_value: IAO:0000589 "external supporting cell of vestibular epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002314 ! external supporting cell of vestibular epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79796 ! -property_value: IAO:0000589 "supporting cell of cochlea (post-embryonic human)" xsd:string -intersection_of: CL:0002315 ! supporting cell of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75607 ! -property_value: IAO:0000589 "supporting cell of vestibular epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002316 ! supporting cell of vestibular epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75808 ! -property_value: IAO:0000589 "external limiting cell of vestibular epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002317 ! external limiting cell of vestibular epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86712 ! -property_value: IAO:0000589 "peripheral blood mesothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002318 ! peripheral blood mesothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70333 ! -property_value: IAO:0000589 "neural cell (post-embryonic human)" xsd:string -intersection_of: CL:0002319 ! neural cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63875 ! -property_value: IAO:0000589 "connective tissue cell (post-embryonic human)" xsd:string -intersection_of: CL:0002320 ! connective tissue cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82840 ! -property_value: IAO:0000589 "embryonic cell (metazoa) (post-embryonic human)" xsd:string -intersection_of: CL:0002321 ! embryonic cell (metazoa) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82841 ! -property_value: IAO:0000589 "embryonic cell (metazoa) (post-embryonic human)" xsd:string -intersection_of: CL:0002321 ! embryonic cell (metazoa) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82841 ! -property_value: IAO:0000589 "embryonic stem cell (post-embryonic human)" xsd:string -intersection_of: CL:0002322 ! embryonic stem cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67800 ! -property_value: IAO:0000589 "myoepithelial cell of mammary gland (post-embryonic human)" xsd:string -intersection_of: CL:0002324 ! myoepithelial cell of mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74506 ! -property_value: IAO:0000589 "mammary alveolar cell (post-embryonic human)" xsd:string -intersection_of: CL:0002325 ! mammary alveolar cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79866 ! -property_value: IAO:0000589 "mammary alveolar cell (post-embryonic human)" xsd:string -intersection_of: CL:0002325 ! mammary alveolar cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73280 ! -property_value: IAO:0000589 "luminal epithelial cell of mammary gland (post-embryonic human)" xsd:string -intersection_of: CL:0002326 ! luminal epithelial cell of mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75621 ! -property_value: IAO:0000589 "endocardial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002350 ! endocardial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72300 ! -property_value: IAO:0000589 "somatic cell (post-embryonic human)" xsd:string -intersection_of: CL:0002371 ! somatic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86588 ! -property_value: IAO:0000589 "meningothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002379 ! meningothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66785 ! -property_value: IAO:0000589 "enucleated reticulocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002422 ! enucleated reticulocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83808 ! -property_value: IAO:0000589 "cardiocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002494 ! cardiocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84791 ! -property_value: IAO:0000589 "cardiocyte (post-embryonic human)" xsd:string -intersection_of: CL:0002494 ! cardiocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63207 ! -property_value: IAO:0000589 "type D1 enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002501 ! type D1 enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63420 ! -property_value: IAO:0000589 "type M enteroendocrine cell (post-embryonic human)" xsd:string -intersection_of: CL:0002502 ! type M enteroendocrine cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84639 ! -property_value: IAO:0000589 "adventitial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002503 ! adventitial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62104 ! -property_value: IAO:0000589 "vein endothelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002543 ! vein endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75802 ! -property_value: IAO:0000589 "retinal pigment epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:0002586 ! retinal pigment epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263146 ! -property_value: IAO:0000589 "nonkeratinized epithelial cell of anal column (post-embryonic human)" xsd:string -intersection_of: CL:0002635 ! nonkeratinized epithelial cell of anal column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263144 ! -property_value: IAO:0000589 "nonkeratinized epithelial cell of inferior part of anal canal (post-embryonic human)" xsd:string -intersection_of: CL:0002636 ! nonkeratinized epithelial cell of inferior part of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256141 ! -property_value: IAO:0000589 "epithelial cell of esophageal gland proper (post-embryonic human)" xsd:string -intersection_of: CL:0002641 ! epithelial cell of esophageal gland proper -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256143 ! -property_value: IAO:0000589 "epithelial cell of esophageal cardiac gland (post-embryonic human)" xsd:string -intersection_of: CL:0002642 ! epithelial cell of esophageal cardiac gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263148 ! -property_value: IAO:0000589 "nonkeratinized cell of stratum corneum of esophageal epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002643 ! nonkeratinized cell of stratum corneum of esophageal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70628 ! -property_value: IAO:0000589 "endo-epithelial cell of tympanic part of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002644 ! endo-epithelial cell of tympanic part of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70629 ! -property_value: IAO:0000589 "endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002645 ! endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70577 ! -property_value: IAO:0000589 "obsolete epithelial cell of buccal part of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002646 ! obsolete epithelial cell of buccal part of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70580 ! -property_value: IAO:0000589 "obsolete epithelial cell of anterior palatal part of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002647 ! obsolete epithelial cell of anterior palatal part of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70554 ! -property_value: IAO:0000589 "obsolete epithelial cell of nasal part of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002648 ! obsolete epithelial cell of nasal part of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70579 ! -property_value: IAO:0000589 "obsolete epithelial cell of gingival part of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002649 ! obsolete epithelial cell of gingival part of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70578 ! -property_value: IAO:0000589 "obsolete epithelial cell of paranasal sinus part of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:0002650 ! obsolete epithelial cell of paranasal sinus part of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72140 ! -property_value: IAO:0000589 "endothelial cell of venous sinus of spleen (post-embryonic human)" xsd:string -intersection_of: CL:0002651 ! endothelial cell of venous sinus of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67759 ! -property_value: IAO:0000589 "endothelial cell of high endothelial venule (post-embryonic human)" xsd:string -intersection_of: CL:0002652 ! endothelial cell of high endothelial venule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70733 ! -property_value: IAO:0000589 "epithelial cell of stratum corneum of esophageal epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002654 ! epithelial cell of stratum corneum of esophageal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70732 ! -property_value: IAO:0000589 "epithelial cell of stratum spinosum of esophageal epithelium (post-embryonic human)" xsd:string -intersection_of: CL:0002655 ! epithelial cell of stratum spinosum of esophageal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86489 ! -property_value: IAO:0000589 "glandular cell of endometrium (post-embryonic human)" xsd:string -intersection_of: CL:0002656 ! glandular cell of endometrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86548 ! -property_value: IAO:0000589 "glandular cell of esophagus (post-embryonic human)" xsd:string -intersection_of: CL:0002657 ! glandular cell of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87194 ! -property_value: IAO:0000589 "glandular cell of the large intestine (post-embryonic human)" xsd:string -intersection_of: CL:0002658 ! glandular cell of the large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86554 ! -property_value: IAO:0000589 "glandular cell of stomach (post-embryonic human)" xsd:string -intersection_of: CL:0002659 ! glandular cell of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74505 ! -property_value: IAO:0000589 "luminal cell of acinus of lactiferous gland (post-embryonic human)" xsd:string -intersection_of: CL:0002660 ! luminal cell of acinus of lactiferous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87168 ! -property_value: IAO:0000589 "luminal cell of lactiferous terminal ductal lobular unit (post-embryonic human)" xsd:string -intersection_of: CL:0002661 ! luminal cell of lactiferous terminal ductal lobular unit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74504 ! -property_value: IAO:0000589 "luminal cell of lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:0002662 ! luminal cell of lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74505 ! -property_value: IAO:0000589 "luminal cell of lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:0002662 ! luminal cell of lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83389 ! -property_value: IAO:0000589 "myocardial endocrine cell of atrium (post-embryonic human)" xsd:string -intersection_of: CL:0002663 ! myocardial endocrine cell of atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86560 ! -property_value: IAO:0000589 "renal intercalated cell (post-embryonic human)" xsd:string -intersection_of: CL:0005010 ! renal intercalated cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79801 ! -property_value: IAO:0000589 "inner phalangeal cell (post-embryonic human)" xsd:string -intersection_of: CL:0005015 ! inner phalangeal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83660 ! -property_value: IAO:0000589 "gamma motor neuron (post-embryonic human)" xsd:string -intersection_of: CL:0008037 ! gamma motor neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84632 ! -property_value: IAO:0000589 "lower motor neuron (post-embryonic human)" xsd:string -intersection_of: CL:0008039 ! lower motor neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84104 ! -property_value: IAO:0000589 "cerebral cortex neuron (post-embryonic human)" xsd:string -intersection_of: CL:0010012 ! cerebral cortex neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83030 ! -property_value: IAO:0000589 "lymphoblast (post-embryonic human)" xsd:string -intersection_of: CL:0017005 ! lymphoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83031 ! -property_value: IAO:0000589 "B-lymphoblast (post-embryonic human)" xsd:string -intersection_of: CL:0017006 ! B-lymphoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75722 ! -property_value: IAO:0000589 "pillar cell (post-embryonic human)" xsd:string -intersection_of: CL:1000191 ! pillar cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15050 ! -property_value: IAO:0000589 "smooth muscle cell of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000275 ! smooth muscle cell of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15058 ! -property_value: IAO:0000589 "smooth muscle fiber of duodenum (post-embryonic human)" xsd:string -intersection_of: CL:1000276 ! smooth muscle fiber of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15062 ! -property_value: IAO:0000589 "smooth muscle fiber of jejunum (post-embryonic human)" xsd:string -intersection_of: CL:1000277 ! smooth muscle fiber of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15066 ! -property_value: IAO:0000589 "smooth muscle fiber of ileum (post-embryonic human)" xsd:string -intersection_of: CL:1000278 ! smooth muscle fiber of ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15653 ! -property_value: IAO:0000589 "smooth muscle cell of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000279 ! smooth muscle cell of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15663 ! -property_value: IAO:0000589 "smooth muscle cell of colon (post-embryonic human)" xsd:string -intersection_of: CL:1000280 ! smooth muscle cell of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15681 ! -property_value: IAO:0000589 "smooth muscle cell of cecum (post-embryonic human)" xsd:string -intersection_of: CL:1000281 ! smooth muscle cell of cecum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17518 ! -property_value: IAO:0000589 "smooth muscle fiber of ascending colon (post-embryonic human)" xsd:string -intersection_of: CL:1000282 ! smooth muscle fiber of ascending colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17519 ! -property_value: IAO:0000589 "smooth muscle fiber of transverse colon (post-embryonic human)" xsd:string -intersection_of: CL:1000283 ! smooth muscle fiber of transverse colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17520 ! -property_value: IAO:0000589 "smooth muscle fiber of descending colon (post-embryonic human)" xsd:string -intersection_of: CL:1000284 ! smooth muscle fiber of descending colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17521 ! -property_value: IAO:0000589 "smooth muscle cell of sigmoid colon (post-embryonic human)" xsd:string -intersection_of: CL:1000285 ! smooth muscle cell of sigmoid colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17522 ! -property_value: IAO:0000589 "smooth muscle cell of rectum (post-embryonic human)" xsd:string -intersection_of: CL:1000286 ! smooth muscle cell of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223276 ! -property_value: IAO:0000589 "myocyte of anterior internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000287 ! myocyte of anterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223277 ! -property_value: IAO:0000589 "myocyte of atrial branch of anterior internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000288 ! myocyte of atrial branch of anterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223278 ! -property_value: IAO:0000589 "myocyte of atrial septal branch of anterior internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000289 ! myocyte of atrial septal branch of anterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223279 ! -property_value: IAO:0000589 "myocyte of middle internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000290 ! myocyte of middle internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223280 ! -property_value: IAO:0000589 "myocyte of posterior internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000291 ! myocyte of posterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256165 ! -property_value: IAO:0000589 "epithelial cell of urethra (post-embryonic human)" xsd:string -intersection_of: CL:1000296 ! epithelial cell of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256516 ! -property_value: IAO:0000589 "mesothelial cell of dura mater (post-embryonic human)" xsd:string -intersection_of: CL:1000298 ! mesothelial cell of dura mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261271 ! -property_value: IAO:0000589 "fibroblast of connective tissue of prostate (post-embryonic human)" xsd:string -intersection_of: CL:1000299 ! fibroblast of connective tissue of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261273 ! -property_value: IAO:0000589 "fibroblast of outer membrane of prostatic capsule (post-embryonic human)" xsd:string -intersection_of: CL:1000300 ! fibroblast of outer membrane of prostatic capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261275 ! -property_value: IAO:0000589 "fibroblast of subepithelial connective tissue of prostatic gland (post-embryonic human)" xsd:string -intersection_of: CL:1000301 ! fibroblast of subepithelial connective tissue of prostatic gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261277 ! -property_value: IAO:0000589 "fibroblast of papillary layer of dermis (post-embryonic human)" xsd:string -intersection_of: CL:1000302 ! fibroblast of papillary layer of dermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261279 ! -property_value: IAO:0000589 "fibroblast of areolar connective tissue (post-embryonic human)" xsd:string -intersection_of: CL:1000303 ! fibroblast of areolar connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261281 ! -property_value: IAO:0000589 "fibroblast of connective tissue of nonglandular part of prostate (post-embryonic human)" xsd:string -intersection_of: CL:1000304 ! fibroblast of connective tissue of nonglandular part of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261283 ! -property_value: IAO:0000589 "fibroblast of connective tissue of glandular part of prostate (post-embryonic human)" xsd:string -intersection_of: CL:1000305 ! fibroblast of connective tissue of glandular part of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261285 ! -property_value: IAO:0000589 "fibroblast of tunica adventitia of artery (post-embryonic human)" xsd:string -intersection_of: CL:1000306 ! fibroblast of tunica adventitia of artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261287 ! -property_value: IAO:0000589 "fibroblast of dense regular elastic tissue (post-embryonic human)" xsd:string -intersection_of: CL:1000307 ! fibroblast of dense regular elastic tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261289 ! -property_value: IAO:0000589 "fibrocyte of adventitia of ureter (post-embryonic human)" xsd:string -intersection_of: CL:1000308 ! fibrocyte of adventitia of ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261293 ! -property_value: IAO:0000589 "epicardial adipocyte (post-embryonic human)" xsd:string -intersection_of: CL:1000309 ! epicardial adipocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261297 ! -property_value: IAO:0000589 "adipocyte of epicardial fat of right ventricle (post-embryonic human)" xsd:string -intersection_of: CL:1000310 ! adipocyte of epicardial fat of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261300 ! -property_value: IAO:0000589 "adipocyte of epicardial fat of left ventricle (post-embryonic human)" xsd:string -intersection_of: CL:1000311 ! adipocyte of epicardial fat of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263032 ! -property_value: IAO:0000589 "bronchial goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000312 ! bronchial goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263035 ! -property_value: IAO:0000589 "gastric goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000313 ! gastric goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263038 ! -property_value: IAO:0000589 "gastric cardiac gland goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000314 ! gastric cardiac gland goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263040 ! -property_value: IAO:0000589 "principal gastric gland goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000315 ! principal gastric gland goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263042 ! -property_value: IAO:0000589 "obsolete goblet cell of epithelium of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000316 ! obsolete goblet cell of epithelium of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263046 ! -property_value: IAO:0000589 "intestinal villus goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000317 ! intestinal villus goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263050 ! -property_value: IAO:0000589 "obsolete small intestine crypt goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000318 ! obsolete small intestine crypt goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263052 ! -property_value: IAO:0000589 "obsolete goblet cell of epithelium proper of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000319 ! obsolete goblet cell of epithelium proper of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263054 ! -property_value: IAO:0000589 "large intestine goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000320 ! large intestine goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263056 ! -property_value: IAO:0000589 "large intestine crypt goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000321 ! large intestine crypt goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263058 ! -property_value: IAO:0000589 "pancreatic goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000322 ! pancreatic goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263061 ! -property_value: IAO:0000589 "pyloric gastric gland goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000323 ! pyloric gastric gland goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263063 ! -property_value: IAO:0000589 "duodenal goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000324 ! duodenal goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263065 ! -property_value: IAO:0000589 "jejunal goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000325 ! jejunal goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263067 ! -property_value: IAO:0000589 "ileal goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000326 ! ileal goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263069 ! -property_value: IAO:0000589 "appendix goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000327 ! appendix goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263071 ! -property_value: IAO:0000589 "obsolete goblet cell of epithelium proper of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000328 ! obsolete goblet cell of epithelium proper of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263075 ! -property_value: IAO:0000589 "tracheal goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000329 ! tracheal goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263078 ! -property_value: IAO:0000589 "serous cell of epithelium of trachea (post-embryonic human)" xsd:string -intersection_of: CL:1000330 ! serous cell of epithelium of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263080 ! -property_value: IAO:0000589 "serous cell of epithelium of bronchus (post-embryonic human)" xsd:string -intersection_of: CL:1000331 ! serous cell of epithelium of bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263082 ! -property_value: IAO:0000589 "serous cell of epithelium of terminal bronchiole (post-embryonic human)" xsd:string -intersection_of: CL:1000332 ! serous cell of epithelium of terminal bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263084 ! -property_value: IAO:0000589 "serous cell of epithelium of lobular bronchiole (post-embryonic human)" xsd:string -intersection_of: CL:1000333 ! serous cell of epithelium of lobular bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263086 ! -property_value: IAO:0000589 "enterocyte of epithelium of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000334 ! enterocyte of epithelium of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263088 ! -property_value: IAO:0000589 "enterocyte of epithelium of intestinal villus (post-embryonic human)" xsd:string -intersection_of: CL:1000335 ! enterocyte of epithelium of intestinal villus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263092 ! -property_value: IAO:0000589 "enterocyte of epithelium of duodenal gland (post-embryonic human)" xsd:string -intersection_of: CL:1000337 ! enterocyte of epithelium of duodenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263094 ! -property_value: IAO:0000589 "enterocyte of epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000338 ! enterocyte of epithelium of crypt of Lieberkuhn of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263096 ! -property_value: IAO:0000589 "enterocyte of epithelium proper of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000339 ! enterocyte of epithelium proper of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263098 ! -property_value: IAO:0000589 "enterocyte of epithelium proper of duodenum (post-embryonic human)" xsd:string -intersection_of: CL:1000340 ! enterocyte of epithelium proper of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263100 ! -property_value: IAO:0000589 "enterocyte of epithelium proper of jejunum (post-embryonic human)" xsd:string -intersection_of: CL:1000341 ! enterocyte of epithelium proper of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263102 ! -property_value: IAO:0000589 "enterocyte of epithelium proper of ileum (post-embryonic human)" xsd:string -intersection_of: CL:1000342 ! enterocyte of epithelium proper of ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263104 ! -property_value: IAO:0000589 "paneth cell of epithelium of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000343 ! paneth cell of epithelium of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263106 ! -property_value: IAO:0000589 "paneth cell of epithelium proper of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000344 ! paneth cell of epithelium proper of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263108 ! -property_value: IAO:0000589 "paneth cell of epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000345 ! paneth cell of epithelium of crypt of Lieberkuhn of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263090 ! -property_value: IAO:0000589 "enterocyte of epithelium proper of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000346 ! enterocyte of epithelium proper of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263112 ! -property_value: IAO:0000589 "enterocyte of epithelium proper of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000346 ! enterocyte of epithelium proper of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263114 ! -property_value: IAO:0000589 "enterocyte of colon (post-embryonic human)" xsd:string -intersection_of: CL:1000347 ! enterocyte of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263118 ! -property_value: IAO:0000589 "basal cell of epithelium of trachea (post-embryonic human)" xsd:string -intersection_of: CL:1000348 ! basal cell of epithelium of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263120 ! -property_value: IAO:0000589 "basal cell of epithelium of bronchus (post-embryonic human)" xsd:string -intersection_of: CL:1000349 ! basal cell of epithelium of bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263122 ! -property_value: IAO:0000589 "basal cell of epithelium of terminal bronchiole (post-embryonic human)" xsd:string -intersection_of: CL:1000350 ! basal cell of epithelium of terminal bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263124 ! -property_value: IAO:0000589 "basal cell of epithelium of respiratory bronchiole (post-embryonic human)" xsd:string -intersection_of: CL:1000351 ! basal cell of epithelium of respiratory bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263126 ! -property_value: IAO:0000589 "basal cell of epithelium of lobular bronchiole (post-embryonic human)" xsd:string -intersection_of: CL:1000352 ! basal cell of epithelium of lobular bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263128 ! -property_value: IAO:0000589 "microfold cell of epithelium of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000353 ! microfold cell of epithelium of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263130 ! -property_value: IAO:0000589 "microfold cell of epithelium of intestinal villus (post-embryonic human)" xsd:string -intersection_of: CL:1000354 ! microfold cell of epithelium of intestinal villus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263132 ! -property_value: IAO:0000589 "microfold cell of epithelium proper of small intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000355 ! microfold cell of epithelium proper of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263134 ! -property_value: IAO:0000589 "microfold cell of epithelium proper of duodenum (post-embryonic human)" xsd:string -intersection_of: CL:1000356 ! microfold cell of epithelium proper of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263136 ! -property_value: IAO:0000589 "microfold cell of epithelium proper of jejunum (post-embryonic human)" xsd:string -intersection_of: CL:1000357 ! microfold cell of epithelium proper of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263138 ! -property_value: IAO:0000589 "microfold cell of epithelium proper of ileum (post-embryonic human)" xsd:string -intersection_of: CL:1000358 ! microfold cell of epithelium proper of ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263140 ! -property_value: IAO:0000589 "microfold cell of epithelium proper of appendix (post-embryonic human)" xsd:string -intersection_of: CL:1000359 ! microfold cell of epithelium proper of appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263142 ! -property_value: IAO:0000589 "microfold cell of epithelium proper of large intestine (post-embryonic human)" xsd:string -intersection_of: CL:1000360 ! microfold cell of epithelium proper of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263152 ! -property_value: IAO:0000589 "transitional myocyte of interatrial septum (post-embryonic human)" xsd:string -intersection_of: CL:1000361 ! transitional myocyte of interatrial septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263154 ! -property_value: IAO:0000589 "transitional myocyte of interventricular septum (post-embryonic human)" xsd:string -intersection_of: CL:1000362 ! transitional myocyte of interventricular septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263156 ! -property_value: IAO:0000589 "transitional myocyte of atrial branch of anterior internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000363 ! transitional myocyte of atrial branch of anterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263158 ! -property_value: IAO:0000589 "transitional myocyte of anterior internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000364 ! transitional myocyte of anterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263160 ! -property_value: IAO:0000589 "transitional myocyte of atrial septal branch of anterior internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000365 ! transitional myocyte of atrial septal branch of anterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263162 ! -property_value: IAO:0000589 "transitional myocyte of middle internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000366 ! transitional myocyte of middle internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263164 ! -property_value: IAO:0000589 "transitional myocyte of posterior internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000367 ! transitional myocyte of posterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263166 ! -property_value: IAO:0000589 "transitional myocyte of anterior division of left branch of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000368 ! transitional myocyte of anterior division of left branch of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263168 ! -property_value: IAO:0000589 "transitional myocyte of septal division of left branch of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000369 ! transitional myocyte of septal division of left branch of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263170 ! -property_value: IAO:0000589 "transitional myocyte of left branch of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000370 ! transitional myocyte of left branch of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263172 ! -property_value: IAO:0000589 "transitional myocyte of right branch of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000371 ! transitional myocyte of right branch of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263174 ! -property_value: IAO:0000589 "transitional myocyte of atrial part of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000372 ! transitional myocyte of atrial part of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263176 ! -property_value: IAO:0000589 "transitional myocyte of ventricular part of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000373 ! transitional myocyte of ventricular part of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263178 ! -property_value: IAO:0000589 "transitional myocyte of posterior division of left branch of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000374 ! transitional myocyte of posterior division of left branch of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263180 ! -property_value: IAO:0000589 "myocardial endocrine cell of septal division of left branch of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000375 ! myocardial endocrine cell of septal division of left branch of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263182 ! -property_value: IAO:0000589 "Purkinje myocyte of interventricular septum (post-embryonic human)" xsd:string -intersection_of: CL:1000376 ! Purkinje myocyte of interventricular septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263184 ! -property_value: IAO:0000589 "dense-core granulated cell of epithelium of trachea (post-embryonic human)" xsd:string -intersection_of: CL:1000377 ! dense-core granulated cell of epithelium of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263186 ! -property_value: IAO:0000589 "type 1 vestibular sensory cell of stato-acoustic epithelium (post-embryonic human)" xsd:string -intersection_of: CL:1000378 ! type 1 vestibular sensory cell of stato-acoustic epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263188 ! -property_value: IAO:0000589 "type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: CL:1000379 ! type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263190 ! -property_value: IAO:0000589 "type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: CL:1000380 ! type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263192 ! -property_value: IAO:0000589 "type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: CL:1000381 ! type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263194 ! -property_value: IAO:0000589 "type 2 vestibular sensory cell of stato-acoustic epithelium (post-embryonic human)" xsd:string -intersection_of: CL:1000382 ! type 2 vestibular sensory cell of stato-acoustic epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263196 ! -property_value: IAO:0000589 "type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: CL:1000383 ! type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263198 ! -property_value: IAO:0000589 "type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: CL:1000384 ! type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263200 ! -property_value: IAO:0000589 "type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: CL:1000385 ! type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59175 ! -property_value: IAO:0000589 "melanocyte of eyelid (post-embryonic human)" xsd:string -intersection_of: CL:1000391 ! melanocyte of eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62158 ! -property_value: IAO:0000589 "myoepithelial cell of intralobular lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:1000394 ! myoepithelial cell of intralobular lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62817 ! -property_value: IAO:0000589 "endothelial cell of venous sinus of red pulp of spleen (post-embryonic human)" xsd:string -intersection_of: CL:1000397 ! endothelial cell of venous sinus of red pulp of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62911 ! -property_value: IAO:0000589 "endothelial cell of hepatic sinusoid (post-embryonic human)" xsd:string -intersection_of: CL:1000398 ! endothelial cell of hepatic sinusoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63602 ! -property_value: IAO:0000589 "epithelial cell of appendix (post-embryonic human)" xsd:string -intersection_of: CL:1000405 ! epithelial cell of appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67102 ! -property_value: IAO:0000589 "myocyte of sinoatrial node (post-embryonic human)" xsd:string -intersection_of: CL:1000409 ! myocyte of sinoatrial node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67106 ! -property_value: IAO:0000589 "myocyte of atrioventricular node (post-embryonic human)" xsd:string -intersection_of: CL:1000410 ! myocyte of atrioventricular node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67757 ! -property_value: IAO:0000589 "endothelial cell of Peyer's patch (post-embryonic human)" xsd:string -intersection_of: CL:1000411 ! endothelial cell of Peyer's patch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67760 ! -property_value: IAO:0000589 "endothelial cell of arteriole (post-embryonic human)" xsd:string -intersection_of: CL:1000412 ! endothelial cell of arteriole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67761 ! -property_value: IAO:0000589 "endothelial cell of artery (post-embryonic human)" xsd:string -intersection_of: CL:1000413 ! endothelial cell of artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67762 ! -property_value: IAO:0000589 "endothelial cell of venule (post-embryonic human)" xsd:string -intersection_of: CL:1000414 ! endothelial cell of venule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67780 ! -property_value: IAO:0000589 "epithelial cell of gallbladder (post-embryonic human)" xsd:string -intersection_of: CL:1000415 ! epithelial cell of gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67801 ! -property_value: IAO:0000589 "myoepithelial cell of sweat gland (post-embryonic human)" xsd:string -intersection_of: CL:1000417 ! myoepithelial cell of sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67802 ! -property_value: IAO:0000589 "myoepithelial cell of lactiferous alveolus (post-embryonic human)" xsd:string -intersection_of: CL:1000418 ! myoepithelial cell of lactiferous alveolus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67803 ! -property_value: IAO:0000589 "myoepithelial cell of lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:1000419 ! myoepithelial cell of lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67804 ! -property_value: IAO:0000589 "myoepithelial cell of terminal lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:1000420 ! myoepithelial cell of terminal lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69328 ! -property_value: IAO:0000589 "chromaffin cell of paraaortic body (post-embryonic human)" xsd:string -intersection_of: CL:1000424 ! chromaffin cell of paraaortic body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69335 ! -property_value: IAO:0000589 "chromaffin cell of paraganglion (post-embryonic human)" xsd:string -intersection_of: CL:1000425 ! chromaffin cell of paraganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69794 ! -property_value: IAO:0000589 "chromaffin cell of adrenal gland (post-embryonic human)" xsd:string -intersection_of: CL:1000426 ! chromaffin cell of adrenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69795 ! -property_value: IAO:0000589 "adrenal cortex chromaffin cell (post-embryonic human)" xsd:string -intersection_of: CL:1000427 ! adrenal cortex chromaffin cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70541 ! -property_value: IAO:0000589 "stem cell of epidermis (post-embryonic human)" xsd:string -intersection_of: CL:1000428 ! stem cell of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70552 ! -property_value: IAO:0000589 "conjunctival epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:1000432 ! conjunctival epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70553 ! -property_value: IAO:0000589 "epithelial cell of lacrimal canaliculus (post-embryonic human)" xsd:string -intersection_of: CL:1000433 ! epithelial cell of lacrimal canaliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70555 ! -property_value: IAO:0000589 "epithelial cell of external acoustic meatus (post-embryonic human)" xsd:string -intersection_of: CL:1000434 ! epithelial cell of external acoustic meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70559 ! -property_value: IAO:0000589 "epithelial cell of lacrimal duct (post-embryonic human)" xsd:string -intersection_of: CL:1000435 ! epithelial cell of lacrimal duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70560 ! -property_value: IAO:0000589 "epithelial cell of lacrimal sac (post-embryonic human)" xsd:string -intersection_of: CL:1000436 ! epithelial cell of lacrimal sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70561 ! -property_value: IAO:0000589 "epithelial cell of nasolacrimal duct (post-embryonic human)" xsd:string -intersection_of: CL:1000437 ! epithelial cell of nasolacrimal duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70562 ! -property_value: IAO:0000589 "epithelial cell of wall of inferior part of anal canal (post-embryonic human)" xsd:string -intersection_of: CL:1000438 ! epithelial cell of wall of inferior part of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70583 ! -property_value: IAO:0000589 "epithelial cell of viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: CL:1000441 ! epithelial cell of viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70598 ! -property_value: IAO:0000589 "urothelial cell of trigone of urinary bladder (post-embryonic human)" xsd:string -intersection_of: CL:1000442 ! urothelial cell of trigone of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70610 ! -property_value: IAO:0000589 "ciliary muscle cell (post-embryonic human)" xsd:string -intersection_of: CL:1000443 ! ciliary muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70615 ! -property_value: IAO:0000589 "mesothelial cell of anterior chamber of eye (post-embryonic human)" xsd:string -intersection_of: CL:1000444 ! mesothelial cell of anterior chamber of eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70619 ! -property_value: IAO:0000589 "myoepithelial cell of dilator pupillae (post-embryonic human)" xsd:string -intersection_of: CL:1000445 ! myoepithelial cell of dilator pupillae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70731 ! -property_value: IAO:0000589 "epithelial cell of stratum germinativum of esophagus (post-embryonic human)" xsd:string -intersection_of: CL:1000447 ! epithelial cell of stratum germinativum of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70952 ! -property_value: IAO:0000589 "epithelial cell of sweat gland (post-embryonic human)" xsd:string -intersection_of: CL:1000448 ! epithelial cell of sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70965 ! -property_value: IAO:0000589 "epithelial cell of nephron (post-embryonic human)" xsd:string -intersection_of: CL:1000449 ! epithelial cell of nephron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70966 ! -property_value: IAO:0000589 "epithelial cell of glomerular capsule (post-embryonic human)" xsd:string -intersection_of: CL:1000450 ! epithelial cell of glomerular capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70968 ! -property_value: IAO:0000589 "parietal epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:1000452 ! parietal epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70980 ! -property_value: IAO:0000589 "epithelial cell of intermediate tubule (post-embryonic human)" xsd:string -intersection_of: CL:1000453 ! epithelial cell of intermediate tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70982 ! -property_value: IAO:0000589 "kidney collecting duct epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:1000454 ! kidney collecting duct epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72142 ! -property_value: IAO:0000589 "mesothelial cell of parietal peritoneum (post-embryonic human)" xsd:string -intersection_of: CL:1000456 ! mesothelial cell of parietal peritoneum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72143 ! -property_value: IAO:0000589 "mesothelial cell of visceral peritoneum (post-embryonic human)" xsd:string -intersection_of: CL:1000457 ! mesothelial cell of visceral peritoneum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72144 ! -property_value: IAO:0000589 "melanocyte of skin (post-embryonic human)" xsd:string -intersection_of: CL:1000458 ! melanocyte of skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74319 ! -property_value: IAO:0000589 "chromaffin cell of ovary (post-embryonic human)" xsd:string -intersection_of: CL:1000465 ! chromaffin cell of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74320 ! -property_value: IAO:0000589 "chromaffin cell of right ovary (post-embryonic human)" xsd:string -intersection_of: CL:1000466 ! chromaffin cell of right ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74321 ! -property_value: IAO:0000589 "chromaffin cell of left ovary (post-embryonic human)" xsd:string -intersection_of: CL:1000467 ! chromaffin cell of left ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74469 ! -property_value: IAO:0000589 "myoepithelial cell of acinus of lactiferous gland (post-embryonic human)" xsd:string -intersection_of: CL:1000468 ! myoepithelial cell of acinus of lactiferous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74499 ! -property_value: IAO:0000589 "myoepithelial cell of main lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:1000469 ! myoepithelial cell of main lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74500 ! -property_value: IAO:0000589 "myoepithelial cell of primary lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:1000470 ! myoepithelial cell of primary lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74501 ! -property_value: IAO:0000589 "myoepithelial cell of secondary lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:1000471 ! myoepithelial cell of secondary lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74502 ! -property_value: IAO:0000589 "myoepithelial cell of tertiary lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:1000472 ! myoepithelial cell of tertiary lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74503 ! -property_value: IAO:0000589 "myoepithelial cell of quarternary lactiferous duct (post-embryonic human)" xsd:string -intersection_of: CL:1000473 ! myoepithelial cell of quarternary lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83383 ! -property_value: IAO:0000589 "cardiac pacemaker cell of sinoatrial node (post-embryonic human)" xsd:string -intersection_of: CL:1000477 ! cardiac pacemaker cell of sinoatrial node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83384 ! -property_value: IAO:0000589 "transitional myocyte of sinoatrial node (post-embryonic human)" xsd:string -intersection_of: CL:1000478 ! transitional myocyte of sinoatrial node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83386 ! -property_value: IAO:0000589 "Purkinje myocyte of atrioventricular node (post-embryonic human)" xsd:string -intersection_of: CL:1000479 ! Purkinje myocyte of atrioventricular node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83387 ! -property_value: IAO:0000589 "transitional myocyte of internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000480 ! transitional myocyte of internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83388 ! -property_value: IAO:0000589 "transitional myocyte of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000481 ! transitional myocyte of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83885 ! -property_value: IAO:0000589 "transitional myocyte of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000481 ! transitional myocyte of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83390 ! -property_value: IAO:0000589 "myocardial endocrine cell of interventricular septum (post-embryonic human)" xsd:string -intersection_of: CL:1000482 ! myocardial endocrine cell of interventricular septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83392 ! -property_value: IAO:0000589 "Purkinje myocyte of internodal tract (post-embryonic human)" xsd:string -intersection_of: CL:1000483 ! Purkinje myocyte of internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83393 ! -property_value: IAO:0000589 "Purkinje myocyte of atrioventricular bundle (post-embryonic human)" xsd:string -intersection_of: CL:1000484 ! Purkinje myocyte of atrioventricular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84150 ! -property_value: IAO:0000589 "basal cell of urothelium (post-embryonic human)" xsd:string -intersection_of: CL:1000486 ! basal cell of urothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84583 ! -property_value: IAO:0000589 "smooth muscle cell of prostate (post-embryonic human)" xsd:string -intersection_of: CL:1000487 ! smooth muscle cell of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86481 ! -property_value: IAO:0000589 "cholangiocyte (post-embryonic human)" xsd:string -intersection_of: CL:1000488 ! cholangiocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86497 ! -property_value: IAO:0000589 "reticular cell of splenic cord (post-embryonic human)" xsd:string -intersection_of: CL:1000489 ! reticular cell of splenic cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86736 ! -property_value: IAO:0000589 "mesothelial cell of peritoneum (post-embryonic human)" xsd:string -intersection_of: CL:1000490 ! mesothelial cell of peritoneum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86737 ! -property_value: IAO:0000589 "mesothelial cell of pleura (post-embryonic human)" xsd:string -intersection_of: CL:1000491 ! mesothelial cell of pleura -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86738 ! -property_value: IAO:0000589 "mesothelial cell of parietal pleura (post-embryonic human)" xsd:string -intersection_of: CL:1000492 ! mesothelial cell of parietal pleura -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86739 ! -property_value: IAO:0000589 "mesothelial cell of visceral pleura (post-embryonic human)" xsd:string -intersection_of: CL:1000493 ! mesothelial cell of visceral pleura -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86785 ! -property_value: IAO:0000589 "nephron tubule epithelial cell (post-embryonic human)" xsd:string -intersection_of: CL:1000494 ! nephron tubule epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86929 ! -property_value: IAO:0000589 "small intestine goblet cell (post-embryonic human)" xsd:string -intersection_of: CL:1000495 ! small intestine goblet cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70986 ! -property_value: IAO:0000589 "epithelial cell of exocrine pancreas (post-embryonic human)" xsd:string -intersection_of: CL:1001433 ! epithelial cell of exocrine pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84777 ! -property_value: IAO:0000589 "hippocampal interneuron (post-embryonic human)" xsd:string -intersection_of: CL:1001569 ! hippocampal interneuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86928 ! -property_value: IAO:0000589 "small intestine glandular cell (post-embryonic human)" xsd:string -intersection_of: CL:1001598 ! small intestine glandular cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84665 ! -property_value: IAO:0000589 "cerebellar neuron (post-embryonic human)" xsd:string -intersection_of: CL:1001611 ! cerebellar neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84664 ! -property_value: IAO:0000589 "peripheral nervous system neuron (post-embryonic human)" xsd:string -intersection_of: CL:2000032 ! peripheral nervous system neuron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62364 ! -property_value: IAO:0000589 "cochlea auditory hair cell (post-embryonic human)" xsd:string -intersection_of: CL:4023120 ! cochlea auditory hair cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84155 ! -property_value: IAO:0000589 "intermediate cell of urothelium (post-embryonic human)" xsd:string -intersection_of: CL:4030055 ! intermediate cell of urothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84149 ! -property_value: IAO:0000589 "umbrella cell of urothelium (post-embryonic human)" xsd:string -intersection_of: CL:4030056 ! umbrella cell of urothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:ENTITY -name: FMA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-fma.owl b/src/ontology/bridge/cl-bridge-to-fma.owl index def9bd047c..476a84ca4b 100644 --- a/src/ontology/bridge/cl-bridge-to-fma.owl +++ b/src/ontology/bridge/cl-bridge-to-fma.owl @@ -7,21 +7,14 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Onard Mejino - Terry Hayamizu - CL editors - Taxonomic equivalence axioms between the FMA and CL - CL bridge to fma - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Onard Mejino + Terry Hayamizu + CL editors + Taxonomic equivalence axioms between the FMA and CL. + CL bridge to fma @@ -37,18 +30,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -57,215 +38,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -282,42 +73,7 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -392,12 +148,6 @@ - - - - - - @@ -632,12 +382,6 @@ - - - - - - @@ -824,24 +568,12 @@ - - - - - - - - - - - - @@ -1022,12 +754,6 @@ - - - - - - @@ -1112,12 +838,6 @@ - - - - - - @@ -1340,12 +1060,6 @@ - - - - - - @@ -1532,12 +1246,6 @@ - - - - - - @@ -1580,12 +1288,6 @@ - - - - - - @@ -1664,12 +1366,6 @@ - - - - - - @@ -1760,12 +1456,6 @@ - - - - - - @@ -1796,12 +1486,6 @@ - - - - - - @@ -2456,12 +2140,6 @@ - - - - - - @@ -2642,12 +2320,6 @@ - - - - - - @@ -2804,12 +2476,6 @@ - - - - - - @@ -3068,12 +2734,6 @@ - - - - - - @@ -3098,12 +2758,6 @@ - - - - - - @@ -3122,12 +2776,6 @@ - - - - - - @@ -3194,36 +2842,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -3272,12 +2890,6 @@ - - - - - - @@ -3320,12 +2932,6 @@ - - - - - - @@ -3338,12 +2944,6 @@ - - - - - - @@ -3560,30 +3160,12 @@ - - - - - - - - - - - - - - - - - - @@ -3632,12 +3214,6 @@ - - - - - - @@ -4418,18 +3994,6 @@ - - - - - - - - - - - - @@ -4456,8 +4020,7 @@ - goblet cell (post-embryonic human) - FMA:13148 + goblet cell (post-embryonic human) @@ -4476,8 +4039,7 @@ - cardiac muscle cell (post-embryonic human) - FMA:14067 + cardiac muscle cell (post-embryonic human) @@ -4496,8 +4058,7 @@ - smooth muscle cell (post-embryonic human) - FMA:14072 + smooth muscle cell (post-embryonic human) @@ -4516,8 +4077,7 @@ - Feyrter cell (post-embryonic human) - FMA:14118 + Feyrter cell (post-embryonic human) @@ -4536,8 +4096,7 @@ - club cell (post-embryonic human) - FMA:14119 + club cell (post-embryonic human) @@ -4556,8 +4115,7 @@ - Purkinje myocyte (post-embryonic human) - FMA:14146 + Purkinje myocyte (post-embryonic human) @@ -4576,8 +4134,7 @@ - hepatocyte (post-embryonic human) - FMA:14515 + hepatocyte (post-embryonic human) @@ -4596,8 +4153,7 @@ - Kupffer cell (post-embryonic human) - FMA:14656 + Kupffer cell (post-embryonic human) @@ -4616,8 +4172,7 @@ - smooth muscle cell of small intestine (post-embryonic human) - FMA:15050 + smooth muscle cell of small intestine (post-embryonic human) @@ -4636,8 +4191,7 @@ - smooth muscle fiber of duodenum (post-embryonic human) - FMA:15058 + smooth muscle fiber of duodenum (post-embryonic human) @@ -4656,8 +4210,7 @@ - smooth muscle fiber of jejunum (post-embryonic human) - FMA:15062 + smooth muscle fiber of jejunum (post-embryonic human) @@ -4676,8 +4229,7 @@ - smooth muscle fiber of ileum (post-embryonic human) - FMA:15066 + smooth muscle fiber of ileum (post-embryonic human) @@ -4696,8 +4248,7 @@ - smooth muscle cell of large intestine (post-embryonic human) - FMA:15653 + smooth muscle cell of large intestine (post-embryonic human) @@ -4716,8 +4267,7 @@ - smooth muscle cell of colon (post-embryonic human) - FMA:15663 + smooth muscle cell of colon (post-embryonic human) @@ -4736,8 +4286,7 @@ - smooth muscle cell of cecum (post-embryonic human) - FMA:15681 + smooth muscle cell of cecum (post-embryonic human) @@ -4756,8 +4305,7 @@ - exocrine cell (post-embryonic human) - FMA:16014 + exocrine cell (post-embryonic human) @@ -4776,8 +4324,7 @@ - smooth muscle fiber of ascending colon (post-embryonic human) - FMA:17518 + smooth muscle fiber of ascending colon (post-embryonic human) @@ -4796,8 +4343,7 @@ - smooth muscle fiber of transverse colon (post-embryonic human) - FMA:17519 + smooth muscle fiber of transverse colon (post-embryonic human) @@ -4816,8 +4362,7 @@ - smooth muscle fiber of descending colon (post-embryonic human) - FMA:17520 + smooth muscle fiber of descending colon (post-embryonic human) @@ -4836,8 +4381,7 @@ - smooth muscle cell of sigmoid colon (post-embryonic human) - FMA:17521 + smooth muscle cell of sigmoid colon (post-embryonic human) @@ -4856,8 +4400,7 @@ - smooth muscle cell of rectum (post-embryonic human) - FMA:17522 + smooth muscle cell of rectum (post-embryonic human) @@ -4876,8 +4419,7 @@ - oocyte (post-embryonic human) - FMA:18644 + oocyte (post-embryonic human) @@ -4896,8 +4438,7 @@ - primary oocyte (post-embryonic human) - FMA:18645 + primary oocyte (post-embryonic human) @@ -4916,8 +4457,7 @@ - secondary oocyte (post-embryonic human) - FMA:18646 + secondary oocyte (post-embryonic human) @@ -4936,8 +4476,7 @@ - gamete (post-embryonic human) - FMA:18649 + gamete (post-embryonic human) @@ -4956,8 +4495,7 @@ - primary polar body (post-embryonic human) - FMA:18650 + primary polar body (post-embryonic human) @@ -4976,8 +4514,7 @@ - secondary polar body (post-embryonic human) - FMA:18651 + secondary polar body (post-embryonic human) @@ -4996,8 +4533,7 @@ - luteal cell (post-embryonic human) - FMA:18688 + luteal cell (post-embryonic human) @@ -5016,30 +4552,7 @@ - large luteal cell (post-embryonic human) - FMA:18689 - - - - - - - - - - - - - - - - - - - - small luteal cell (post-embryonic human) - theca cell (post-embryonic human) - FMA:18690 + large luteal cell (post-embryonic human) @@ -5058,8 +4571,7 @@ - interstitial cell of ovary (post-embryonic human) - FMA:18709 + interstitial cell of ovary (post-embryonic human) @@ -5078,8 +4590,7 @@ - hilus cell of ovary (post-embryonic human) - FMA:18710 + hilus cell of ovary (post-embryonic human) @@ -5098,8 +4609,7 @@ - granulosa cell (post-embryonic human) - FMA:18718 + granulosa cell (post-embryonic human) @@ -5118,8 +4628,7 @@ - internodal tract myocyte (post-embryonic human) - FMA:223275 + internodal tract myocyte (post-embryonic human) @@ -5138,8 +4647,7 @@ - myocyte of anterior internodal tract (post-embryonic human) - FMA:223276 + myocyte of anterior internodal tract (post-embryonic human) @@ -5158,8 +4666,7 @@ - myocyte of atrial branch of anterior internodal tract (post-embryonic human) - FMA:223277 + myocyte of atrial branch of anterior internodal tract (post-embryonic human) @@ -5178,8 +4685,7 @@ - myocyte of atrial septal branch of anterior internodal tract (post-embryonic human) - FMA:223278 + myocyte of atrial septal branch of anterior internodal tract (post-embryonic human) @@ -5198,8 +4704,7 @@ - myocyte of middle internodal tract (post-embryonic human) - FMA:223279 + myocyte of middle internodal tract (post-embryonic human) @@ -5218,8 +4723,7 @@ - myocyte of posterior internodal tract (post-embryonic human) - FMA:223280 + myocyte of posterior internodal tract (post-embryonic human) @@ -5238,8 +4742,7 @@ - regular interatrial cardiac myocyte (post-embryonic human) - FMA:228790 + regular interatrial cardiac myocyte (post-embryonic human) @@ -5258,8 +4761,7 @@ - regular interventricular cardiac myocyte (post-embryonic human) - FMA:228792 + regular interventricular cardiac myocyte (post-embryonic human) @@ -5278,8 +4780,7 @@ - epithelial cell of esophageal gland proper (post-embryonic human) - FMA:256141 + epithelial cell of esophageal gland proper (post-embryonic human) @@ -5298,8 +4799,7 @@ - epithelial cell of esophageal cardiac gland (post-embryonic human) - FMA:256143 + epithelial cell of esophageal cardiac gland (post-embryonic human) @@ -5318,8 +4818,7 @@ - epithelial cell of large intestine (post-embryonic human) - FMA:256157 + epithelial cell of large intestine (post-embryonic human) @@ -5338,8 +4837,7 @@ - epithelial cell of small intestine (post-embryonic human) - FMA:256159 + epithelial cell of small intestine (post-embryonic human) @@ -5358,8 +4856,7 @@ - epithelial cell of uterus (post-embryonic human) - FMA:256161 + epithelial cell of uterus (post-embryonic human) @@ -5378,8 +4875,7 @@ - epithelial cell of prostate (post-embryonic human) - FMA:256163 + epithelial cell of prostate (post-embryonic human) @@ -5398,8 +4894,7 @@ - epithelial cell of urethra (post-embryonic human) - FMA:256165 + epithelial cell of urethra (post-embryonic human) @@ -5418,8 +4913,7 @@ - epithelial cell of thyroid gland (post-embryonic human) - FMA:256167 + epithelial cell of thyroid gland (post-embryonic human) @@ -5438,8 +4932,7 @@ - stromal cell of ovarian cortex (post-embryonic human) - FMA:256169 + stromal cell of ovarian cortex (post-embryonic human) @@ -5458,8 +4951,7 @@ - stromal cell of ovarian medulla (post-embryonic human) - FMA:256171 + stromal cell of ovarian medulla (post-embryonic human) @@ -5478,8 +4970,7 @@ - mesothelial cell of dura mater (post-embryonic human) - FMA:256516 + mesothelial cell of dura mater (post-embryonic human) @@ -5498,8 +4989,7 @@ - fibroblast of connective tissue of prostate (post-embryonic human) - FMA:261271 + fibroblast of connective tissue of prostate (post-embryonic human) @@ -5518,8 +5008,7 @@ - fibroblast of outer membrane of prostatic capsule (post-embryonic human) - FMA:261273 + fibroblast of outer membrane of prostatic capsule (post-embryonic human) @@ -5538,8 +5027,7 @@ - fibroblast of subepithelial connective tissue of prostatic gland (post-embryonic human) - FMA:261275 + fibroblast of subepithelial connective tissue of prostatic gland (post-embryonic human) @@ -5558,8 +5046,7 @@ - fibroblast of papillary layer of dermis (post-embryonic human) - FMA:261277 + fibroblast of papillary layer of dermis (post-embryonic human) @@ -5578,8 +5065,7 @@ - fibroblast of areolar connective tissue (post-embryonic human) - FMA:261279 + fibroblast of areolar connective tissue (post-embryonic human) @@ -5598,8 +5084,7 @@ - fibroblast of connective tissue of nonglandular part of prostate (post-embryonic human) - FMA:261281 + fibroblast of connective tissue of nonglandular part of prostate (post-embryonic human) @@ -5618,8 +5103,7 @@ - fibroblast of connective tissue of glandular part of prostate (post-embryonic human) - FMA:261283 + fibroblast of connective tissue of glandular part of prostate (post-embryonic human) @@ -5638,8 +5122,7 @@ - fibroblast of tunica adventitia of artery (post-embryonic human) - FMA:261285 + fibroblast of tunica adventitia of artery (post-embryonic human) @@ -5658,8 +5141,7 @@ - fibroblast of dense regular elastic tissue (post-embryonic human) - FMA:261287 + fibroblast of dense regular elastic tissue (post-embryonic human) @@ -5678,8 +5160,7 @@ - fibrocyte of adventitia of ureter (post-embryonic human) - FMA:261289 + fibrocyte of adventitia of ureter (post-embryonic human) @@ -5698,8 +5179,7 @@ - epicardial adipocyte (post-embryonic human) - FMA:261293 + epicardial adipocyte (post-embryonic human) @@ -5718,8 +5198,7 @@ - adipocyte of epicardial fat of right ventricle (post-embryonic human) - FMA:261297 + adipocyte of epicardial fat of right ventricle (post-embryonic human) @@ -5738,8 +5217,7 @@ - adipocyte of epicardial fat of left ventricle (post-embryonic human) - FMA:261300 + adipocyte of epicardial fat of left ventricle (post-embryonic human) @@ -5758,8 +5236,7 @@ - bronchial goblet cell (post-embryonic human) - FMA:263032 + bronchial goblet cell (post-embryonic human) @@ -5778,8 +5255,7 @@ - gastric goblet cell (post-embryonic human) - FMA:263035 + gastric goblet cell (post-embryonic human) @@ -5798,8 +5274,7 @@ - gastric cardiac gland goblet cell (post-embryonic human) - FMA:263038 + gastric cardiac gland goblet cell (post-embryonic human) @@ -5818,28 +5293,7 @@ - principal gastric gland goblet cell (post-embryonic human) - FMA:263040 - - - - - - - - - - - - - - - - - - - obsolete goblet cell of epithelium of small intestine (post-embryonic human) - FMA:263042 + principal gastric gland goblet cell (post-embryonic human) @@ -5858,48 +5312,7 @@ - intestinal villus goblet cell (post-embryonic human) - FMA:263046 - - - - - - - - - - - - - - - - - - - obsolete small intestine crypt goblet cell (post-embryonic human) - FMA:263050 - - - - - - - - - - - - - - - - - - - obsolete goblet cell of epithelium proper of small intestine (post-embryonic human) - FMA:263052 + intestinal villus goblet cell (post-embryonic human) @@ -5918,8 +5331,7 @@ - large intestine goblet cell (post-embryonic human) - FMA:263054 + large intestine goblet cell (post-embryonic human) @@ -5938,8 +5350,7 @@ - large intestine crypt goblet cell (post-embryonic human) - FMA:263056 + large intestine crypt goblet cell (post-embryonic human) @@ -5958,8 +5369,7 @@ - pancreatic goblet cell (post-embryonic human) - FMA:263058 + pancreatic goblet cell (post-embryonic human) @@ -5978,8 +5388,7 @@ - pyloric gastric gland goblet cell (post-embryonic human) - FMA:263061 + pyloric gastric gland goblet cell (post-embryonic human) @@ -5998,8 +5407,7 @@ - duodenal goblet cell (post-embryonic human) - FMA:263063 + duodenal goblet cell (post-embryonic human) @@ -6018,8 +5426,7 @@ - jejunal goblet cell (post-embryonic human) - FMA:263065 + jejunal goblet cell (post-embryonic human) @@ -6038,8 +5445,7 @@ - ileal goblet cell (post-embryonic human) - FMA:263067 + ileal goblet cell (post-embryonic human) @@ -6058,28 +5464,7 @@ - appendix goblet cell (post-embryonic human) - FMA:263069 - - - - - - - - - - - - - - - - - - - obsolete goblet cell of epithelium proper of large intestine (post-embryonic human) - FMA:263071 + appendix goblet cell (post-embryonic human) @@ -6098,8 +5483,7 @@ - tracheal goblet cell (post-embryonic human) - FMA:263075 + tracheal goblet cell (post-embryonic human) @@ -6118,8 +5502,7 @@ - serous cell of epithelium of trachea (post-embryonic human) - FMA:263078 + serous cell of epithelium of trachea (post-embryonic human) @@ -6138,8 +5521,7 @@ - serous cell of epithelium of bronchus (post-embryonic human) - FMA:263080 + serous cell of epithelium of bronchus (post-embryonic human) @@ -6158,8 +5540,7 @@ - serous cell of epithelium of terminal bronchiole (post-embryonic human) - FMA:263082 + serous cell of epithelium of terminal bronchiole (post-embryonic human) @@ -6178,8 +5559,7 @@ - serous cell of epithelium of lobular bronchiole (post-embryonic human) - FMA:263084 + serous cell of epithelium of lobular bronchiole (post-embryonic human) @@ -6198,8 +5578,7 @@ - enterocyte of epithelium of small intestine (post-embryonic human) - FMA:263086 + enterocyte of epithelium of small intestine (post-embryonic human) @@ -6218,8 +5597,7 @@ - enterocyte of epithelium of intestinal villus (post-embryonic human) - FMA:263088 + enterocyte of epithelium of intestinal villus (post-embryonic human) @@ -6238,8 +5616,7 @@ - enterocyte of epithelium proper of large intestine (post-embryonic human) - FMA:263090 + enterocyte of epithelium proper of large intestine (post-embryonic human) @@ -6258,8 +5635,7 @@ - enterocyte of epithelium of duodenal gland (post-embryonic human) - FMA:263092 + enterocyte of epithelium of duodenal gland (post-embryonic human) @@ -6278,8 +5654,7 @@ - enterocyte of epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human) - FMA:263094 + enterocyte of epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human) @@ -6298,8 +5673,7 @@ - enterocyte of epithelium proper of small intestine (post-embryonic human) - FMA:263096 + enterocyte of epithelium proper of small intestine (post-embryonic human) @@ -6318,8 +5692,7 @@ - enterocyte of epithelium proper of duodenum (post-embryonic human) - FMA:263098 + enterocyte of epithelium proper of duodenum (post-embryonic human) @@ -6338,8 +5711,7 @@ - enterocyte of epithelium proper of jejunum (post-embryonic human) - FMA:263100 + enterocyte of epithelium proper of jejunum (post-embryonic human) @@ -6358,8 +5730,7 @@ - enterocyte of epithelium proper of ileum (post-embryonic human) - FMA:263102 + enterocyte of epithelium proper of ileum (post-embryonic human) @@ -6378,8 +5749,7 @@ - paneth cell of epithelium of small intestine (post-embryonic human) - FMA:263104 + paneth cell of epithelium of small intestine (post-embryonic human) @@ -6398,8 +5768,7 @@ - paneth cell of epithelium proper of small intestine (post-embryonic human) - FMA:263106 + paneth cell of epithelium proper of small intestine (post-embryonic human) @@ -6418,8 +5787,7 @@ - paneth cell of epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human) - FMA:263108 + paneth cell of epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human) @@ -6438,8 +5806,7 @@ - enterocyte of epithelium proper of large intestine (post-embryonic human) - FMA:263112 + enterocyte of epithelium proper of large intestine (post-embryonic human) @@ -6458,8 +5825,7 @@ - enterocyte of colon (post-embryonic human) - FMA:263114 + enterocyte of colon (post-embryonic human) @@ -6478,8 +5844,7 @@ - basal cell of epithelium of trachea (post-embryonic human) - FMA:263118 + basal cell of epithelium of trachea (post-embryonic human) @@ -6498,8 +5863,7 @@ - basal cell of epithelium of bronchus (post-embryonic human) - FMA:263120 + basal cell of epithelium of bronchus (post-embryonic human) @@ -6518,8 +5882,7 @@ - basal cell of epithelium of terminal bronchiole (post-embryonic human) - FMA:263122 + basal cell of epithelium of terminal bronchiole (post-embryonic human) @@ -6538,8 +5901,7 @@ - basal cell of epithelium of respiratory bronchiole (post-embryonic human) - FMA:263124 + basal cell of epithelium of respiratory bronchiole (post-embryonic human) @@ -6558,8 +5920,7 @@ - basal cell of epithelium of lobular bronchiole (post-embryonic human) - FMA:263126 + basal cell of epithelium of lobular bronchiole (post-embryonic human) @@ -6578,8 +5939,7 @@ - microfold cell of epithelium of small intestine (post-embryonic human) - FMA:263128 + microfold cell of epithelium of small intestine (post-embryonic human) @@ -6598,8 +5958,7 @@ - microfold cell of epithelium of intestinal villus (post-embryonic human) - FMA:263130 + microfold cell of epithelium of intestinal villus (post-embryonic human) @@ -6618,8 +5977,7 @@ - microfold cell of epithelium proper of small intestine (post-embryonic human) - FMA:263132 + microfold cell of epithelium proper of small intestine (post-embryonic human) @@ -6638,8 +5996,7 @@ - microfold cell of epithelium proper of duodenum (post-embryonic human) - FMA:263134 + microfold cell of epithelium proper of duodenum (post-embryonic human) @@ -6658,8 +6015,7 @@ - microfold cell of epithelium proper of jejunum (post-embryonic human) - FMA:263136 + microfold cell of epithelium proper of jejunum (post-embryonic human) @@ -6678,8 +6034,7 @@ - microfold cell of epithelium proper of ileum (post-embryonic human) - FMA:263138 + microfold cell of epithelium proper of ileum (post-embryonic human) @@ -6698,8 +6053,7 @@ - microfold cell of epithelium proper of appendix (post-embryonic human) - FMA:263140 + microfold cell of epithelium proper of appendix (post-embryonic human) @@ -6718,8 +6072,7 @@ - microfold cell of epithelium proper of large intestine (post-embryonic human) - FMA:263142 + microfold cell of epithelium proper of large intestine (post-embryonic human) @@ -6738,8 +6091,7 @@ - nonkeratinized epithelial cell of inferior part of anal canal (post-embryonic human) - FMA:263144 + nonkeratinized epithelial cell of inferior part of anal canal (post-embryonic human) @@ -6758,8 +6110,7 @@ - nonkeratinized epithelial cell of anal column (post-embryonic human) - FMA:263146 + nonkeratinized epithelial cell of anal column (post-embryonic human) @@ -6778,8 +6129,7 @@ - nonkeratinized cell of stratum corneum of esophageal epithelium (post-embryonic human) - FMA:263148 + nonkeratinized cell of stratum corneum of esophageal epithelium (post-embryonic human) @@ -6798,8 +6148,7 @@ - transitional myocyte of interatrial septum (post-embryonic human) - FMA:263152 + transitional myocyte of interatrial septum (post-embryonic human) @@ -6818,8 +6167,7 @@ - transitional myocyte of interventricular septum (post-embryonic human) - FMA:263154 + transitional myocyte of interventricular septum (post-embryonic human) @@ -6838,8 +6186,7 @@ - transitional myocyte of atrial branch of anterior internodal tract (post-embryonic human) - FMA:263156 + transitional myocyte of atrial branch of anterior internodal tract (post-embryonic human) @@ -6858,8 +6205,7 @@ - transitional myocyte of anterior internodal tract (post-embryonic human) - FMA:263158 + transitional myocyte of anterior internodal tract (post-embryonic human) @@ -6878,8 +6224,7 @@ - transitional myocyte of atrial septal branch of anterior internodal tract (post-embryonic human) - FMA:263160 + transitional myocyte of atrial septal branch of anterior internodal tract (post-embryonic human) @@ -6898,8 +6243,7 @@ - transitional myocyte of middle internodal tract (post-embryonic human) - FMA:263162 + transitional myocyte of middle internodal tract (post-embryonic human) @@ -6918,8 +6262,7 @@ - transitional myocyte of posterior internodal tract (post-embryonic human) - FMA:263164 + transitional myocyte of posterior internodal tract (post-embryonic human) @@ -6938,8 +6281,7 @@ - transitional myocyte of anterior division of left branch of atrioventricular bundle (post-embryonic human) - FMA:263166 + transitional myocyte of anterior division of left branch of atrioventricular bundle (post-embryonic human) @@ -6958,8 +6300,7 @@ - transitional myocyte of septal division of left branch of atrioventricular bundle (post-embryonic human) - FMA:263168 + transitional myocyte of septal division of left branch of atrioventricular bundle (post-embryonic human) @@ -6978,8 +6319,7 @@ - transitional myocyte of left branch of atrioventricular bundle (post-embryonic human) - FMA:263170 + transitional myocyte of left branch of atrioventricular bundle (post-embryonic human) @@ -6998,8 +6338,7 @@ - transitional myocyte of right branch of atrioventricular bundle (post-embryonic human) - FMA:263172 + transitional myocyte of right branch of atrioventricular bundle (post-embryonic human) @@ -7018,8 +6357,7 @@ - transitional myocyte of atrial part of atrioventricular bundle (post-embryonic human) - FMA:263174 + transitional myocyte of atrial part of atrioventricular bundle (post-embryonic human) @@ -7038,8 +6376,7 @@ - transitional myocyte of ventricular part of atrioventricular bundle (post-embryonic human) - FMA:263176 + transitional myocyte of ventricular part of atrioventricular bundle (post-embryonic human) @@ -7058,8 +6395,7 @@ - transitional myocyte of posterior division of left branch of atrioventricular bundle (post-embryonic human) - FMA:263178 + transitional myocyte of posterior division of left branch of atrioventricular bundle (post-embryonic human) @@ -7078,8 +6414,7 @@ - myocardial endocrine cell of septal division of left branch of atrioventricular bundle (post-embryonic human) - FMA:263180 + myocardial endocrine cell of septal division of left branch of atrioventricular bundle (post-embryonic human) @@ -7098,8 +6433,7 @@ - Purkinje myocyte of interventricular septum (post-embryonic human) - FMA:263182 + Purkinje myocyte of interventricular septum (post-embryonic human) @@ -7118,8 +6452,7 @@ - dense-core granulated cell of epithelium of trachea (post-embryonic human) - FMA:263184 + dense-core granulated cell of epithelium of trachea (post-embryonic human) @@ -7138,8 +6471,7 @@ - type 1 vestibular sensory cell of stato-acoustic epithelium (post-embryonic human) - FMA:263186 + type 1 vestibular sensory cell of stato-acoustic epithelium (post-embryonic human) @@ -7158,8 +6490,7 @@ - type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth (post-embryonic human) - FMA:263188 + type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth (post-embryonic human) @@ -7178,8 +6509,7 @@ - type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth (post-embryonic human) - FMA:263190 + type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth (post-embryonic human) @@ -7198,8 +6528,7 @@ - type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth (post-embryonic human) - FMA:263192 + type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth (post-embryonic human) @@ -7218,8 +6547,7 @@ - type 2 vestibular sensory cell of stato-acoustic epithelium (post-embryonic human) - FMA:263194 + type 2 vestibular sensory cell of stato-acoustic epithelium (post-embryonic human) @@ -7238,8 +6566,7 @@ - type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth (post-embryonic human) - FMA:263196 + type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth (post-embryonic human) @@ -7258,8 +6585,7 @@ - type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth (post-embryonic human) - FMA:263198 + type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth (post-embryonic human) @@ -7278,8 +6604,7 @@ - type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth (post-embryonic human) - FMA:263200 + type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth (post-embryonic human) @@ -7298,8 +6623,7 @@ - brush cell of lobular bronchiole (post-embryonic human) - FMA:263220 + brush cell of lobular bronchiole (post-embryonic human) @@ -7318,8 +6642,7 @@ - brush cell of epithelium proper of large intestine (post-embryonic human) - FMA:263222 + brush cell of epithelium proper of large intestine (post-embryonic human) @@ -7338,8 +6661,7 @@ - brush cell of trachea (post-embryonic human) - FMA:263224 + brush cell of trachea (post-embryonic human) @@ -7358,8 +6680,7 @@ - brush cell of bronchus (post-embryonic human) - FMA:263226 + brush cell of bronchus (post-embryonic human) @@ -7378,8 +6699,7 @@ - brush cell of terminal bronchiole (post-embryonic human) - FMA:263228 + brush cell of terminal bronchiole (post-embryonic human) @@ -7398,8 +6718,7 @@ - type D cell of small intestine (post-embryonic human) - FMA:268736 + type D cell of small intestine (post-embryonic human) @@ -7418,8 +6737,7 @@ - type D cell of colon (post-embryonic human) - FMA:268744 + type D cell of colon (post-embryonic human) @@ -7438,8 +6756,7 @@ - neuron (post-embryonic human) - FMA:54527 + neuron (post-embryonic human) @@ -7458,8 +6775,7 @@ - glial cell (post-embryonic human) - FMA:54536 + glial cell (post-embryonic human) @@ -7478,8 +6794,7 @@ - astrocyte (post-embryonic human) - FMA:54537 + astrocyte (post-embryonic human) @@ -7498,8 +6813,7 @@ - macroglial cell (post-embryonic human) - FMA:54538 + macroglial cell (post-embryonic human) @@ -7518,30 +6832,7 @@ - microglial cell (post-embryonic human) - FMA:54539 - - - - - - - - - - - - - - - - - - - - microglial cell (post-embryonic human) - oligodendrocyte (post-embryonic human) - FMA:54540 + microglial cell (post-embryonic human) @@ -7560,8 +6851,7 @@ - perineuronal satellite cell (post-embryonic human) - FMA:54550 + perineuronal satellite cell (post-embryonic human) @@ -7580,8 +6870,7 @@ - Bergmann glial cell (post-embryonic human) - FMA:54559 + Bergmann glial cell (post-embryonic human) @@ -7600,8 +6889,7 @@ - tanycyte (post-embryonic human) - FMA:54560 + tanycyte (post-embryonic human) @@ -7620,8 +6908,7 @@ - melanocyte of eyelid (post-embryonic human) - FMA:59175 + melanocyte of eyelid (post-embryonic human) @@ -7640,8 +6927,7 @@ - vein endothelial cell (post-embryonic human) - FMA:62104 + vein endothelial cell (post-embryonic human) @@ -7660,8 +6946,7 @@ - myelinating Schwann cell (post-embryonic human) - FMA:62121 + myelinating Schwann cell (post-embryonic human) @@ -7680,30 +6965,7 @@ - enterocyte (post-embryonic human) - FMA:62122 - - - - - - - - - - - - - - - - - - - - epithelial cell of distal tubule (post-embryonic human) - epithelial cell of proximal tubule (post-embryonic human) - FMA:62125 + enterocyte (post-embryonic human) @@ -7722,8 +6984,7 @@ - myoepithelial cell of intralobular lactiferous duct (post-embryonic human) - FMA:62158 + myoepithelial cell of intralobular lactiferous duct (post-embryonic human) @@ -7742,8 +7003,7 @@ - olfactory epithelial supporting cell (post-embryonic human) - FMA:62302 + olfactory epithelial supporting cell (post-embryonic human) @@ -7762,8 +7022,7 @@ - basal cell of olfactory epithelium (post-embryonic human) - FMA:62303 + basal cell of olfactory epithelium (post-embryonic human) @@ -7782,8 +7041,7 @@ - basal proper cell of olfactory epithelium (post-embryonic human) - FMA:62304 + basal proper cell of olfactory epithelium (post-embryonic human) @@ -7802,8 +7060,7 @@ - vestibular hair cell (post-embryonic human) - FMA:62351 + vestibular hair cell (post-embryonic human) @@ -7822,8 +7079,7 @@ - type I vestibular sensory cell (post-embryonic human) - FMA:62352 + type I vestibular sensory cell (post-embryonic human) @@ -7842,30 +7098,7 @@ - type I taste bud cell (post-embryonic human) - FMA:62356 - - - - - - - - - - - - - - - - - - - - auditory hair cell (post-embryonic human) - cochlea auditory hair cell (post-embryonic human) - FMA:62364 + type I taste bud cell (post-embryonic human) @@ -7884,8 +7117,7 @@ - cochlear inner hair cell (post-embryonic human) - FMA:62365 + cochlear inner hair cell (post-embryonic human) @@ -7904,8 +7136,7 @@ - cochlear outer hair cell (post-embryonic human) - FMA:62366 + cochlear outer hair cell (post-embryonic human) @@ -7924,8 +7155,7 @@ - type IV taste receptor cell (post-embryonic human) - FMA:62380 + type IV taste receptor cell (post-embryonic human) @@ -7944,8 +7174,7 @@ - type II taste cell (post-embryonic human) - FMA:62381 + type II taste cell (post-embryonic human) @@ -7964,8 +7193,7 @@ - epidermal cell (post-embryonic human) - FMA:62411 + epidermal cell (post-embryonic human) @@ -7984,8 +7212,7 @@ - pancreatic centro-acinar cell (post-embryonic human) - FMA:62455 + pancreatic centro-acinar cell (post-embryonic human) @@ -8004,8 +7231,7 @@ - pneumocyte (post-embryonic human) - FMA:62499 + pneumocyte (post-embryonic human) @@ -8024,8 +7250,7 @@ - type I pneumocyte (post-embryonic human) - FMA:62500 + type I pneumocyte (post-embryonic human) @@ -8044,8 +7269,7 @@ - type II pneumocyte (post-embryonic human) - FMA:62501 + type II pneumocyte (post-embryonic human) @@ -8064,8 +7288,7 @@ - serous secreting cell (post-embryonic human) - FMA:62511 + serous secreting cell (post-embryonic human) @@ -8084,8 +7307,7 @@ - basal cell (post-embryonic human) - FMA:62516 + basal cell (post-embryonic human) @@ -8104,8 +7326,7 @@ - endothelial cell of venous sinus of red pulp of spleen (post-embryonic human) - FMA:62817 + endothelial cell of venous sinus of red pulp of spleen (post-embryonic human) @@ -8124,8 +7345,7 @@ - blood cell (post-embryonic human) - FMA:62844 + blood cell (post-embryonic human) @@ -8144,8 +7364,7 @@ - erythroid lineage cell (post-embryonic human) - FMA:62845 + erythroid lineage cell (post-embryonic human) @@ -8164,8 +7383,7 @@ - platelet (post-embryonic human) - FMA:62851 + platelet (post-embryonic human) @@ -8184,8 +7402,7 @@ - leukocyte (post-embryonic human) - FMA:62852 + leukocyte (post-embryonic human) @@ -8204,8 +7421,7 @@ - granulocyte (post-embryonic human) - FMA:62854 + granulocyte (post-embryonic human) @@ -8224,8 +7440,7 @@ - nongranular leukocyte (post-embryonic human) - FMA:62855 + nongranular leukocyte (post-embryonic human) @@ -8244,8 +7459,7 @@ - neutrophil (post-embryonic human) - FMA:62860 + neutrophil (post-embryonic human) @@ -8264,8 +7478,7 @@ - eosinophil (post-embryonic human) - FMA:62861 + eosinophil (post-embryonic human) @@ -8284,8 +7497,7 @@ - basophil (post-embryonic human) - FMA:62862 + basophil (post-embryonic human) @@ -8304,8 +7516,7 @@ - lymphocyte (post-embryonic human) - FMA:62863 + lymphocyte (post-embryonic human) @@ -8324,8 +7535,7 @@ - monocyte (post-embryonic human) - FMA:62864 + monocyte (post-embryonic human) @@ -8344,8 +7554,7 @@ - B cell (post-embryonic human) - FMA:62869 + B cell (post-embryonic human) @@ -8364,8 +7573,7 @@ - T cell (post-embryonic human) - FMA:62870 + T cell (post-embryonic human) @@ -8384,8 +7592,7 @@ - reticular cell (post-embryonic human) - FMA:62877 + reticular cell (post-embryonic human) @@ -8404,8 +7611,7 @@ - keratinocyte (post-embryonic human) - FMA:62879 + keratinocyte (post-embryonic human) @@ -8424,8 +7630,7 @@ - nonkeratinized cell of epidermis (post-embryonic human) - FMA:62880 + nonkeratinized cell of epidermis (post-embryonic human) @@ -8444,8 +7649,7 @@ - paneth cell (post-embryonic human) - FMA:62897 + paneth cell (post-embryonic human) @@ -8464,8 +7668,7 @@ - parietal cell (post-embryonic human) - FMA:62901 + parietal cell (post-embryonic human) @@ -8484,8 +7687,7 @@ - peptic cell (post-embryonic human) - FMA:62902 + peptic cell (post-embryonic human) @@ -8504,8 +7706,7 @@ - endothelial cell of hepatic sinusoid (post-embryonic human) - FMA:62911 + endothelial cell of hepatic sinusoid (post-embryonic human) @@ -8524,8 +7725,7 @@ - M cell of gut (post-embryonic human) - FMA:62929 + M cell of gut (post-embryonic human) @@ -8544,8 +7744,7 @@ - enteroendocrine cell (post-embryonic human) - FMA:62930 + enteroendocrine cell (post-embryonic human) @@ -8564,8 +7763,7 @@ - type EC enteroendocrine cell (post-embryonic human) - FMA:62934 + type EC enteroendocrine cell (post-embryonic human) @@ -8584,8 +7782,7 @@ - type D enteroendocrine cell (post-embryonic human) - FMA:62935 + type D enteroendocrine cell (post-embryonic human) @@ -8604,8 +7801,7 @@ - type S enteroendocrine cell (post-embryonic human) - FMA:62936 + type S enteroendocrine cell (post-embryonic human) @@ -8624,8 +7820,7 @@ - type I enteroendocrine cell (post-embryonic human) - FMA:62937 + type I enteroendocrine cell (post-embryonic human) @@ -8644,8 +7839,7 @@ - PP cell (post-embryonic human) - FMA:62938 + PP cell (post-embryonic human) @@ -8664,8 +7858,7 @@ - type A enteroendocrine cell (post-embryonic human) - FMA:62939 + type A enteroendocrine cell (post-embryonic human) @@ -8684,8 +7877,7 @@ - type EC1 enteroendocrine cell (post-embryonic human) - FMA:62940 + type EC1 enteroendocrine cell (post-embryonic human) @@ -8704,8 +7896,7 @@ - type EC2 enteroendocrine cell (post-embryonic human) - FMA:62941 + type EC2 enteroendocrine cell (post-embryonic human) @@ -8724,8 +7915,7 @@ - GIP cell (post-embryonic human) - FMA:62942 + GIP cell (post-embryonic human) @@ -8744,8 +7934,7 @@ - type N enteroendocrine cell (post-embryonic human) - FMA:62943 + type N enteroendocrine cell (post-embryonic human) @@ -8764,8 +7953,7 @@ - type L enteroendocrine cell (post-embryonic human) - FMA:62944 + type L enteroendocrine cell (post-embryonic human) @@ -8784,8 +7972,7 @@ - epithelial cell of stomach (post-embryonic human) - FMA:62948 + epithelial cell of stomach (post-embryonic human) @@ -8804,8 +7991,7 @@ - surface mucosal cell of stomach (post-embryonic human) - FMA:62949 + surface mucosal cell of stomach (post-embryonic human) @@ -8824,8 +8010,7 @@ - stem cell of gastric gland (post-embryonic human) - FMA:62953 + stem cell of gastric gland (post-embryonic human) @@ -8844,8 +8029,7 @@ - mucous neck cell of gastric gland (post-embryonic human) - FMA:62954 + mucous neck cell of gastric gland (post-embryonic human) @@ -8864,8 +8048,7 @@ - epithelial cell of Malassez (post-embryonic human) - FMA:62987 + epithelial cell of Malassez (post-embryonic human) @@ -8884,8 +8067,7 @@ - odontoblast (post-embryonic human) - FMA:62999 + odontoblast (post-embryonic human) @@ -8904,8 +8086,7 @@ - cementoblast (post-embryonic human) - FMA:63002 + cementoblast (post-embryonic human) @@ -8924,8 +8105,7 @@ - cementocyte (post-embryonic human) - FMA:63003 + cementocyte (post-embryonic human) @@ -8944,8 +8124,7 @@ - pancreatic acinar cell (post-embryonic human) - FMA:63032 + pancreatic acinar cell (post-embryonic human) @@ -8964,8 +8143,7 @@ - epithelial cell of esophagus (post-embryonic human) - FMA:63071 + epithelial cell of esophagus (post-embryonic human) @@ -8984,8 +8162,7 @@ - Langerhans cell (post-embryonic human) - FMA:63072 + Langerhans cell (post-embryonic human) @@ -9004,8 +8181,7 @@ - pancreatic ductal cell (post-embryonic human) - FMA:63099 + pancreatic ductal cell (post-embryonic human) @@ -9024,8 +8200,7 @@ - endothelial cell of sinusoid (post-embryonic human) - FMA:63134 + endothelial cell of sinusoid (post-embryonic human) @@ -9044,8 +8219,7 @@ - natural killer cell (post-embryonic human) - FMA:63147 + natural killer cell (post-embryonic human) @@ -9064,8 +8238,7 @@ - pericyte (post-embryonic human) - FMA:63174 + pericyte (post-embryonic human) @@ -9084,30 +8257,7 @@ - anterior lens cell (post-embryonic human) - FMA:63181 - - - - - - - - - - - - - - - - - - - - P/D1 enteroendocrine cell (post-embryonic human) - type D1 enteroendocrine cell (post-embryonic human) - FMA:63207 + anterior lens cell (post-embryonic human) @@ -9126,8 +8276,7 @@ - type ECL enteroendocrine cell (post-embryonic human) - FMA:63208 + type ECL enteroendocrine cell (post-embryonic human) @@ -9146,8 +8295,7 @@ - type X enteroendocrine cell (post-embryonic human) - FMA:63209 + type X enteroendocrine cell (post-embryonic human) @@ -9166,30 +8314,7 @@ - macrophage (post-embryonic human) - FMA:63261 - - - - - - - - - - - - - - - - - - - - somatic stem cell (post-embryonic human) - stem cell (post-embryonic human) - FMA:63368 + macrophage (post-embryonic human) @@ -9208,8 +8333,7 @@ - intestinal crypt stem cell (post-embryonic human) - FMA:63379 + intestinal crypt stem cell (post-embryonic human) @@ -9228,8 +8352,7 @@ - P/D1 enteroendocrine cell (post-embryonic human) - FMA:63418 + P/D1 enteroendocrine cell (post-embryonic human) @@ -9248,8 +8371,7 @@ - type M enteroendocrine cell (post-embryonic human) - FMA:63420 + type M enteroendocrine cell (post-embryonic human) @@ -9268,8 +8390,7 @@ - type TG enteroendocrine cell (post-embryonic human) - FMA:63421 + type TG enteroendocrine cell (post-embryonic human) @@ -9288,8 +8409,7 @@ - mucous cell of stomach (post-embryonic human) - FMA:63464 + mucous cell of stomach (post-embryonic human) @@ -9308,8 +8428,7 @@ - epithelial cell of appendix (post-embryonic human) - FMA:63602 + epithelial cell of appendix (post-embryonic human) @@ -9328,8 +8447,7 @@ - enterocyte of epithelium of large intestine (post-embryonic human) - FMA:63638 + enterocyte of epithelium of large intestine (post-embryonic human) @@ -9348,8 +8466,7 @@ - visual pigment cell (sensu Vertebrata) (post-embryonic human) - FMA:63846 + visual pigment cell (sensu Vertebrata) (post-embryonic human) @@ -9368,8 +8485,7 @@ - connective tissue cell (post-embryonic human) - FMA:63875 + connective tissue cell (post-embryonic human) @@ -9388,8 +8504,7 @@ - fibroblast (post-embryonic human) - FMA:63877 + fibroblast (post-embryonic human) @@ -9408,8 +8523,7 @@ - fibrocyte (post-embryonic human) - FMA:63879 + fibrocyte (post-embryonic human) @@ -9428,8 +8542,7 @@ - fat cell (post-embryonic human) - FMA:63880 + fat cell (post-embryonic human) @@ -9448,8 +8561,7 @@ - epithelial cell (post-embryonic human) - FMA:66768 + epithelial cell (post-embryonic human) @@ -9468,8 +8580,7 @@ - enterocyte of epithelium of large intestine (post-embryonic human) - FMA:66771 + enterocyte of epithelium of large intestine (post-embryonic human) @@ -9488,8 +8599,7 @@ - endothelial cell (post-embryonic human) - FMA:66772 + endothelial cell (post-embryonic human) @@ -9508,8 +8618,7 @@ - mesothelial cell (post-embryonic human) - FMA:66773 + mesothelial cell (post-embryonic human) @@ -9528,8 +8637,7 @@ - transitional epithelial cell (post-embryonic human) - FMA:66778 + transitional epithelial cell (post-embryonic human) @@ -9548,8 +8656,7 @@ - osteocyte (post-embryonic human) - FMA:66779 + osteocyte (post-embryonic human) @@ -9568,8 +8675,7 @@ - osteoblast (post-embryonic human) - FMA:66780 + osteoblast (post-embryonic human) @@ -9588,8 +8694,7 @@ - osteoclast (post-embryonic human) - FMA:66781 + osteoclast (post-embryonic human) @@ -9608,8 +8713,7 @@ - chondrocyte (post-embryonic human) - FMA:66782 + chondrocyte (post-embryonic human) @@ -9628,8 +8732,7 @@ - chondroblast (post-embryonic human) - FMA:66783 + chondroblast (post-embryonic human) @@ -9648,8 +8751,7 @@ - mast cell (post-embryonic human) - FMA:66784 + mast cell (post-embryonic human) @@ -9668,8 +8770,7 @@ - enucleated reticulocyte (post-embryonic human) - FMA:66785 + enucleated reticulocyte (post-embryonic human) @@ -9688,8 +8789,7 @@ - type A synovial cell (post-embryonic human) - FMA:66787 + type A synovial cell (post-embryonic human) @@ -9708,8 +8808,7 @@ - type B synovial cell (post-embryonic human) - FMA:66788 + type B synovial cell (post-embryonic human) @@ -9728,8 +8827,7 @@ - epithelial cell of tracheobronchial tree (post-embryonic human) - FMA:66816 + epithelial cell of tracheobronchial tree (post-embryonic human) @@ -9748,8 +8846,7 @@ - epithelial cell of prostate (post-embryonic human) - FMA:66817 + epithelial cell of prostate (post-embryonic human) @@ -9768,8 +8865,7 @@ - nodal myocyte (post-embryonic human) - FMA:67101 + nodal myocyte (post-embryonic human) @@ -9788,8 +8884,7 @@ - myocyte of sinoatrial node (post-embryonic human) - FMA:67102 + myocyte of sinoatrial node (post-embryonic human) @@ -9808,8 +8903,7 @@ - myocyte of atrioventricular node (post-embryonic human) - FMA:67106 + myocyte of atrioventricular node (post-embryonic human) @@ -9828,8 +8922,7 @@ - myocardial endocrine cell (post-embryonic human) - FMA:67111 + myocardial endocrine cell (post-embryonic human) @@ -9848,8 +8941,7 @@ - transitional myocyte (post-embryonic human) - FMA:67142 + transitional myocyte (post-embryonic human) @@ -9868,8 +8960,7 @@ - unipolar neuron (post-embryonic human) - FMA:67278 + unipolar neuron (post-embryonic human) @@ -9888,8 +8979,7 @@ - bipolar neuron (post-embryonic human) - FMA:67282 + bipolar neuron (post-embryonic human) @@ -9908,8 +8998,7 @@ - multipolar neuron (post-embryonic human) - FMA:67287 + multipolar neuron (post-embryonic human) @@ -9928,8 +9017,7 @@ - pseudounipolar neuron (post-embryonic human) - FMA:67305 + pseudounipolar neuron (post-embryonic human) @@ -9948,8 +9036,7 @@ - pyramidal neuron (post-embryonic human) - FMA:67310 + pyramidal neuron (post-embryonic human) @@ -9968,8 +9055,7 @@ - interneuron (post-embryonic human) - FMA:67313 + interneuron (post-embryonic human) @@ -9988,8 +9074,7 @@ - muscle cell (post-embryonic human) - FMA:67328 + muscle cell (post-embryonic human) @@ -10008,8 +9093,7 @@ - sperm (post-embryonic human) - FMA:67338 + sperm (post-embryonic human) @@ -10028,8 +9112,7 @@ - egg cell (post-embryonic human) - FMA:67343 + egg cell (post-embryonic human) @@ -10048,8 +9131,7 @@ - nucleate cell (post-embryonic human) - FMA:67513 + nucleate cell (post-embryonic human) @@ -10068,8 +9150,7 @@ - lens epithelial cell (post-embryonic human) - FMA:67559 + lens epithelial cell (post-embryonic human) @@ -10088,8 +9169,7 @@ - non-nucleated secondary lens fiber (post-embryonic human) - FMA:67561 + non-nucleated secondary lens fiber (post-embryonic human) @@ -10108,8 +9188,7 @@ - oncocyte (post-embryonic human) - FMA:67606 + oncocyte (post-embryonic human) @@ -10128,8 +9207,7 @@ - type G enteroendocrine cell (post-embryonic human) - FMA:67609 + type G enteroendocrine cell (post-embryonic human) @@ -10148,8 +9226,7 @@ - retinal rod cell (post-embryonic human) - FMA:67747 + retinal rod cell (post-embryonic human) @@ -10168,8 +9245,7 @@ - retinal cone cell (post-embryonic human) - FMA:67748 + retinal cone cell (post-embryonic human) @@ -10188,8 +9264,7 @@ - rod bipolar cell (post-embryonic human) - FMA:67750 + rod bipolar cell (post-embryonic human) @@ -10208,8 +9283,7 @@ - endothelial cell of vascular tree (post-embryonic human) - FMA:67755 + endothelial cell of vascular tree (post-embryonic human) @@ -10228,8 +9302,7 @@ - capillary endothelial cell (post-embryonic human) - FMA:67756 + capillary endothelial cell (post-embryonic human) @@ -10248,8 +9321,7 @@ - endothelial cell of Peyer's patch (post-embryonic human) - FMA:67757 + endothelial cell of Peyer's patch (post-embryonic human) @@ -10268,8 +9340,7 @@ - endothelial cell of high endothelial venule (post-embryonic human) - FMA:67759 + endothelial cell of high endothelial venule (post-embryonic human) @@ -10288,8 +9359,7 @@ - endothelial cell of arteriole (post-embryonic human) - FMA:67760 + endothelial cell of arteriole (post-embryonic human) @@ -10308,8 +9378,7 @@ - endothelial cell of artery (post-embryonic human) - FMA:67761 + endothelial cell of artery (post-embryonic human) @@ -10328,8 +9397,7 @@ - endothelial cell of venule (post-embryonic human) - FMA:67762 + endothelial cell of venule (post-embryonic human) @@ -10348,8 +9416,7 @@ - hepatic stellate cell (post-embryonic human) - FMA:67763 + hepatic stellate cell (post-embryonic human) @@ -10368,8 +9435,7 @@ - retinal ganglion cell (post-embryonic human) - FMA:67765 + retinal ganglion cell (post-embryonic human) @@ -10388,8 +9454,7 @@ - amacrine cell (post-embryonic human) - FMA:67766 + amacrine cell (post-embryonic human) @@ -10408,8 +9473,7 @@ - epithelial cell of gallbladder (post-embryonic human) - FMA:67780 + epithelial cell of gallbladder (post-embryonic human) @@ -10428,8 +9492,7 @@ - myoepithelial cell (post-embryonic human) - FMA:67799 + myoepithelial cell (post-embryonic human) @@ -10448,8 +9511,7 @@ - myoepithelial cell of mammary gland (post-embryonic human) - FMA:67800 + myoepithelial cell of mammary gland (post-embryonic human) @@ -10468,8 +9530,7 @@ - myoepithelial cell of sweat gland (post-embryonic human) - FMA:67801 + myoepithelial cell of sweat gland (post-embryonic human) @@ -10488,8 +9549,7 @@ - myoepithelial cell of lactiferous alveolus (post-embryonic human) - FMA:67802 + myoepithelial cell of lactiferous alveolus (post-embryonic human) @@ -10508,8 +9568,7 @@ - myoepithelial cell of lactiferous duct (post-embryonic human) - FMA:67803 + myoepithelial cell of lactiferous duct (post-embryonic human) @@ -10528,8 +9587,7 @@ - myoepithelial cell of terminal lactiferous duct (post-embryonic human) - FMA:67804 + myoepithelial cell of terminal lactiferous duct (post-embryonic human) @@ -10548,8 +9606,7 @@ - olfactory receptor cell (post-embryonic human) - FMA:67860 + olfactory receptor cell (post-embryonic human) @@ -10568,8 +9625,7 @@ - olfactory epithelial cell (post-embryonic human) - FMA:67870 + olfactory epithelial cell (post-embryonic human) @@ -10588,8 +9644,7 @@ - globose cell of olfactory epithelium (post-embryonic human) - FMA:67874 + globose cell of olfactory epithelium (post-embryonic human) @@ -10608,8 +9663,7 @@ - type II vestibular sensory cell (post-embryonic human) - FMA:67909 + type II vestibular sensory cell (post-embryonic human) @@ -10628,8 +9682,7 @@ - taste receptor cell (post-embryonic human) - FMA:67910 + taste receptor cell (post-embryonic human) @@ -10648,8 +9701,7 @@ - type III taste bud cell (post-embryonic human) - FMA:67940 + type III taste bud cell (post-embryonic human) @@ -10668,8 +9720,7 @@ - type V taste receptor cell (post-embryonic human) - FMA:67941 + type V taste receptor cell (post-embryonic human) @@ -10688,8 +9739,7 @@ - regular cardiac myocyte (post-embryonic human) - FMA:67967 + regular cardiac myocyte (post-embryonic human) @@ -10708,8 +9758,7 @@ - specialized cardiac myocyte (post-embryonic human) - FMA:67968 + specialized cardiac myocyte (post-embryonic human) @@ -10728,8 +9777,7 @@ - Purkinje cell (post-embryonic human) - FMA:67969 + Purkinje cell (post-embryonic human) @@ -10748,8 +9796,7 @@ - brush cell (post-embryonic human) - FMA:67978 + brush cell (post-embryonic human) @@ -10768,8 +9815,7 @@ - endothelial cell of lymphatic vessel (post-embryonic human) - FMA:68458 + endothelial cell of lymphatic vessel (post-embryonic human) @@ -10788,8 +9834,7 @@ - cell (post-embryonic human) - FMA:68646 + cell (post-embryonic human) @@ -10808,8 +9853,7 @@ - anucleate cell (post-embryonic human) - FMA:68647 + anucleate cell (post-embryonic human) @@ -10828,8 +9872,7 @@ - corneocyte (post-embryonic human) - FMA:68650 + corneocyte (post-embryonic human) @@ -10848,8 +9891,7 @@ - parafollicular cell (post-embryonic human) - FMA:68653 + parafollicular cell (post-embryonic human) @@ -10868,8 +9910,7 @@ - thyroid follicular cell (post-embryonic human) - FMA:68782 + thyroid follicular cell (post-embryonic human) @@ -10888,8 +9929,7 @@ - prickle cell (post-embryonic human) - FMA:69059 + prickle cell (post-embryonic human) @@ -10908,8 +9948,7 @@ - intermediate epitheliocyte (post-embryonic human) - FMA:69060 + intermediate epitheliocyte (post-embryonic human) @@ -10928,8 +9967,7 @@ - ecto-epithelial cell (post-embryonic human) - FMA:69074 + ecto-epithelial cell (post-embryonic human) @@ -10948,8 +9986,7 @@ - endo-epithelial cell (post-embryonic human) - FMA:69075 + endo-epithelial cell (post-embryonic human) @@ -10968,8 +10005,7 @@ - meso-epithelial cell (post-embryonic human) - FMA:69076 + meso-epithelial cell (post-embryonic human) @@ -10988,8 +10024,7 @@ - chief cell of parathyroid gland (post-embryonic human) - FMA:69078 + chief cell of parathyroid gland (post-embryonic human) @@ -11008,8 +10043,7 @@ - light chief cell of parathyroid gland (post-embryonic human) - FMA:69079 + light chief cell of parathyroid gland (post-embryonic human) @@ -11028,8 +10062,7 @@ - dark chief cell of parathyroid gland (post-embryonic human) - FMA:69080 + dark chief cell of parathyroid gland (post-embryonic human) @@ -11048,8 +10081,7 @@ - clear chief cell of parathyroid gland (post-embryonic human) - FMA:69081 + clear chief cell of parathyroid gland (post-embryonic human) @@ -11068,8 +10100,7 @@ - active chief cell of parathyroid gland (post-embryonic human) - FMA:69082 + active chief cell of parathyroid gland (post-embryonic human) @@ -11088,8 +10119,7 @@ - oxyphil cell of parathyroid gland (post-embryonic human) - FMA:69084 + oxyphil cell of parathyroid gland (post-embryonic human) @@ -11108,8 +10138,7 @@ - adrenal medulla chromaffin cell (post-embryonic human) - FMA:69262 + adrenal medulla chromaffin cell (post-embryonic human) @@ -11128,8 +10157,7 @@ - chromaffin cell (post-embryonic human) - FMA:69263 + chromaffin cell (post-embryonic human) @@ -11148,8 +10176,7 @@ - type I cell of adrenal cortex (post-embryonic human) - FMA:69273 + type I cell of adrenal cortex (post-embryonic human) @@ -11168,8 +10195,7 @@ - type I cell of adrenal medulla (post-embryonic human) - FMA:69321 + type I cell of adrenal medulla (post-embryonic human) @@ -11188,8 +10214,7 @@ - type II cell of adrenal medulla (post-embryonic human) - FMA:69322 + type II cell of adrenal medulla (post-embryonic human) @@ -11208,8 +10233,7 @@ - transitional cell of parathyroid gland (post-embryonic human) - FMA:69324 + transitional cell of parathyroid gland (post-embryonic human) @@ -11228,8 +10252,7 @@ - chromaffin cell of paraaortic body (post-embryonic human) - FMA:69328 + chromaffin cell of paraaortic body (post-embryonic human) @@ -11248,8 +10271,7 @@ - chromaffin cell of paraganglion (post-embryonic human) - FMA:69335 + chromaffin cell of paraganglion (post-embryonic human) @@ -11268,8 +10290,7 @@ - cortical cell of adrenal gland (post-embryonic human) - FMA:69545 + cortical cell of adrenal gland (post-embryonic human) @@ -11288,8 +10309,7 @@ - type II cell of adrenal cortex (post-embryonic human) - FMA:69547 + type II cell of adrenal cortex (post-embryonic human) @@ -11308,8 +10328,7 @@ - type III cell of adrenal cortex (post-embryonic human) - FMA:69564 + type III cell of adrenal cortex (post-embryonic human) @@ -11328,8 +10347,7 @@ - chromaffin cell of adrenal gland (post-embryonic human) - FMA:69794 + chromaffin cell of adrenal gland (post-embryonic human) @@ -11348,8 +10366,7 @@ - adrenal cortex chromaffin cell (post-embryonic human) - FMA:69795 + adrenal cortex chromaffin cell (post-embryonic human) @@ -11368,8 +10385,7 @@ - neural cell (post-embryonic human) - FMA:70333 + neural cell (post-embryonic human) @@ -11388,8 +10404,7 @@ - myoblast (post-embryonic human) - FMA:70335 + myoblast (post-embryonic human) @@ -11408,8 +10423,7 @@ - hematopoietic stem cell (post-embryonic human) - FMA:70337 + hematopoietic stem cell (post-embryonic human) @@ -11428,8 +10442,7 @@ - lymphoid lineage restricted progenitor cell (post-embryonic human) - FMA:70338 + lymphoid lineage restricted progenitor cell (post-embryonic human) @@ -11448,8 +10461,7 @@ - myeloid lineage restricted progenitor cell (post-embryonic human) - FMA:70339 + myeloid lineage restricted progenitor cell (post-embryonic human) @@ -11468,8 +10480,7 @@ - hematopoietic cell (post-embryonic human) - FMA:70366 + hematopoietic cell (post-embryonic human) @@ -11488,8 +10499,7 @@ - stem cell of epidermis (post-embryonic human) - FMA:70541 + stem cell of epidermis (post-embryonic human) @@ -11508,8 +10518,7 @@ - ciliated columnar cell of tracheobronchial tree (post-embryonic human) - FMA:70542 + ciliated columnar cell of tracheobronchial tree (post-embryonic human) @@ -11528,8 +10537,7 @@ - granular cell of epidermis (post-embryonic human) - FMA:70543 + granular cell of epidermis (post-embryonic human) @@ -11548,8 +10556,7 @@ - melanocyte (post-embryonic human) - FMA:70545 + melanocyte (post-embryonic human) @@ -11568,8 +10575,7 @@ - mesenchymal stem cell (post-embryonic human) - FMA:70546 + mesenchymal stem cell (post-embryonic human) @@ -11588,8 +10594,7 @@ - epithelial cell of parathyroid gland (post-embryonic human) - FMA:70547 + epithelial cell of parathyroid gland (post-embryonic human) @@ -11608,8 +10613,7 @@ - Merkel cell (post-embryonic human) - FMA:70548 + Merkel cell (post-embryonic human) @@ -11628,8 +10632,7 @@ - choroid plexus epithelial cell (post-embryonic human) - FMA:70549 + choroid plexus epithelial cell (post-embryonic human) @@ -11648,8 +10651,7 @@ - ependymal cell (post-embryonic human) - FMA:70550 + ependymal cell (post-embryonic human) @@ -11668,8 +10670,7 @@ - corneal epithelial cell (post-embryonic human) - FMA:70551 + corneal epithelial cell (post-embryonic human) @@ -11688,8 +10689,7 @@ - conjunctival epithelial cell (post-embryonic human) - FMA:70552 + conjunctival epithelial cell (post-embryonic human) @@ -11708,28 +10708,7 @@ - epithelial cell of lacrimal canaliculus (post-embryonic human) - FMA:70553 - - - - - - - - - - - - - - - - - - - obsolete epithelial cell of nasal part of viscerocranial mucosa (post-embryonic human) - FMA:70554 + epithelial cell of lacrimal canaliculus (post-embryonic human) @@ -11748,8 +10727,7 @@ - epithelial cell of external acoustic meatus (post-embryonic human) - FMA:70555 + epithelial cell of external acoustic meatus (post-embryonic human) @@ -11768,8 +10746,7 @@ - general ecto-epithelial cell (post-embryonic human) - FMA:70556 + general ecto-epithelial cell (post-embryonic human) @@ -11788,8 +10765,7 @@ - neurecto-epithelial cell (post-embryonic human) - FMA:70557 + neurecto-epithelial cell (post-embryonic human) @@ -11808,8 +10784,7 @@ - external epithelial cell of tympanic membrane (post-embryonic human) - FMA:70558 + external epithelial cell of tympanic membrane (post-embryonic human) @@ -11828,8 +10803,7 @@ - epithelial cell of lacrimal duct (post-embryonic human) - FMA:70559 + epithelial cell of lacrimal duct (post-embryonic human) @@ -11848,119 +10822,18 @@ - epithelial cell of lacrimal sac (post-embryonic human) - FMA:70560 - - - - - - - - - - - - - - - - - - - epithelial cell of nasolacrimal duct (post-embryonic human) - FMA:70561 - - - - - - - - - - - - - - - - - - - epithelial cell of wall of inferior part of anal canal (post-embryonic human) - FMA:70562 - - - - - - - - - - - - - - - - - - - neuroblast (sensu Vertebrata) (post-embryonic human) - FMA:70563 - - - - - - - - - - - - - - - - - - - glioblast (sensu Vertebrata) (post-embryonic human) - FMA:70564 - - - - - - - - - - - - - - - - - - - primordial germ cell (post-embryonic human) - FMA:70567 + epithelial cell of lacrimal sac (post-embryonic human) - + - + - + @@ -11968,19 +10841,18 @@ - single fate stem cell (post-embryonic human) - FMA:70569 + epithelial cell of nasolacrimal duct (post-embryonic human) - + - + - + @@ -11988,19 +10860,18 @@ - pluripotent stem cell (post-embryonic human) - FMA:70570 + epithelial cell of wall of inferior part of anal canal (post-embryonic human) - + - + - + @@ -12008,19 +10879,18 @@ - basal cell of epidermis (post-embryonic human) - FMA:70571 + neuroblast (sensu Vertebrata) (post-embryonic human) - + - + - + @@ -12028,20 +10898,18 @@ - CD4-positive helper T cell (post-embryonic human) - FMA:70572 + glioblast (sensu Vertebrata) (post-embryonic human) - + - + - - + @@ -12049,20 +10917,18 @@ - CD8-positive, alpha-beta cytotoxic T cell (post-embryonic human) - cytotoxic T cell (post-embryonic human) - FMA:70573 + primordial germ cell (post-embryonic human) - + - + - + @@ -12070,19 +10936,18 @@ - plasma cell (post-embryonic human) - FMA:70574 + single fate stem cell (post-embryonic human) - + - + - + @@ -12090,19 +10955,18 @@ - ameloblast (post-embryonic human) - FMA:70576 + pluripotent stem cell (post-embryonic human) - + - + - + @@ -12110,19 +10974,18 @@ - obsolete epithelial cell of buccal part of viscerocranial mucosa (post-embryonic human) - FMA:70577 + basal cell of epidermis (post-embryonic human) - + - + - + @@ -12130,19 +10993,18 @@ - obsolete epithelial cell of paranasal sinus part of viscerocranial mucosa (post-embryonic human) - FMA:70578 + CD4-positive helper T cell (post-embryonic human) - + - + - + @@ -12150,19 +11012,18 @@ - obsolete epithelial cell of gingival part of viscerocranial mucosa (post-embryonic human) - FMA:70579 + plasma cell (post-embryonic human) - + - + - + @@ -12170,8 +11031,7 @@ - obsolete epithelial cell of anterior palatal part of viscerocranial mucosa (post-embryonic human) - FMA:70580 + ameloblast (post-embryonic human) @@ -12190,8 +11050,7 @@ - ecto-epithelial cell of viscerocranial mucosa (post-embryonic human) - FMA:70581 + ecto-epithelial cell of viscerocranial mucosa (post-embryonic human) @@ -12210,8 +11069,7 @@ - epithelial cell of viscerocranial mucosa (post-embryonic human) - FMA:70583 + epithelial cell of viscerocranial mucosa (post-embryonic human) @@ -12230,8 +11088,7 @@ - pancreatic A cell (post-embryonic human) - FMA:70585 + pancreatic A cell (post-embryonic human) @@ -12250,8 +11107,7 @@ - type B pancreatic cell (post-embryonic human) - FMA:70586 + type B pancreatic cell (post-embryonic human) @@ -12270,8 +11126,7 @@ - pancreatic D cell (post-embryonic human) - FMA:70587 + pancreatic D cell (post-embryonic human) @@ -12290,8 +11145,7 @@ - pancreatic PP cell (post-embryonic human) - FMA:70588 + pancreatic PP cell (post-embryonic human) @@ -12310,8 +11164,7 @@ - follicular cell of ovary (post-embryonic human) - FMA:70589 + follicular cell of ovary (post-embryonic human) @@ -12330,8 +11183,7 @@ - primary follicular cell of ovary (post-embryonic human) - FMA:70590 + primary follicular cell of ovary (post-embryonic human) @@ -12350,8 +11202,7 @@ - secondary follicular cell of ovary (post-embryonic human) - FMA:70591 + secondary follicular cell of ovary (post-embryonic human) @@ -12370,8 +11221,7 @@ - urothelial cell of trigone of urinary bladder (post-embryonic human) - FMA:70598 + urothelial cell of trigone of urinary bladder (post-embryonic human) @@ -12390,8 +11240,7 @@ - ciliated epithelial cell (post-embryonic human) - FMA:70605 + ciliated epithelial cell (post-embryonic human) @@ -12410,8 +11259,7 @@ - pigmented ciliary epithelial cell (post-embryonic human) - FMA:70606 + pigmented ciliary epithelial cell (post-embryonic human) @@ -12430,8 +11278,7 @@ - non-pigmented ciliary epithelial cell (post-embryonic human) - FMA:70607 + non-pigmented ciliary epithelial cell (post-embryonic human) @@ -12450,8 +11297,7 @@ - ciliary muscle cell (post-embryonic human) - FMA:70610 + ciliary muscle cell (post-embryonic human) @@ -12470,8 +11316,7 @@ - smooth muscle cell of sphincter of pupil (post-embryonic human) - FMA:70611 + smooth muscle cell of sphincter of pupil (post-embryonic human) @@ -12490,8 +11335,7 @@ - primary lens fiber (post-embryonic human) - FMA:70613 + primary lens fiber (post-embryonic human) @@ -12510,8 +11354,7 @@ - corneal endothelial cell (post-embryonic human) - FMA:70614 + corneal endothelial cell (post-embryonic human) @@ -12530,8 +11373,7 @@ - mesothelial cell of anterior chamber of eye (post-embryonic human) - FMA:70615 + mesothelial cell of anterior chamber of eye (post-embryonic human) @@ -12550,8 +11392,7 @@ - myoepithelial cell of dilator pupillae (post-embryonic human) - FMA:70619 + myoepithelial cell of dilator pupillae (post-embryonic human) @@ -12570,8 +11411,7 @@ - hyalocyte (post-embryonic human) - FMA:70620 + hyalocyte (post-embryonic human) @@ -12590,8 +11430,7 @@ - internal epithelial cell of tympanic membrane (post-embryonic human) - FMA:70626 + internal epithelial cell of tympanic membrane (post-embryonic human) @@ -12610,8 +11449,7 @@ - endothelial cell of viscerocranial mucosa (post-embryonic human) - FMA:70627 + endothelial cell of viscerocranial mucosa (post-embryonic human) @@ -12630,8 +11468,7 @@ - endo-epithelial cell of tympanic part of viscerocranial mucosa (post-embryonic human) - FMA:70628 + endo-epithelial cell of tympanic part of viscerocranial mucosa (post-embryonic human) @@ -12650,8 +11487,7 @@ - endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa (post-embryonic human) - FMA:70629 + endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa (post-embryonic human) @@ -12670,8 +11506,7 @@ - epithelial cell of skin gland (post-embryonic human) - FMA:70657 + epithelial cell of skin gland (post-embryonic human) @@ -12690,8 +11525,7 @@ - clear cell of eccrine sweat gland (post-embryonic human) - FMA:70658 + clear cell of eccrine sweat gland (post-embryonic human) @@ -12710,8 +11544,7 @@ - dark cell of eccrine sweat gland (post-embryonic human) - FMA:70659 + dark cell of eccrine sweat gland (post-embryonic human) @@ -12730,8 +11563,7 @@ - epithelial cell of stratum germinativum of esophagus (post-embryonic human) - FMA:70731 + epithelial cell of stratum germinativum of esophagus (post-embryonic human) @@ -12750,8 +11582,7 @@ - epithelial cell of stratum spinosum of esophageal epithelium (post-embryonic human) - FMA:70732 + epithelial cell of stratum spinosum of esophageal epithelium (post-embryonic human) @@ -12770,8 +11601,7 @@ - epithelial cell of stratum corneum of esophageal epithelium (post-embryonic human) - FMA:70733 + epithelial cell of stratum corneum of esophageal epithelium (post-embryonic human) @@ -12790,8 +11620,7 @@ - nucleated secondary lens fiber (post-embryonic human) - FMA:70949 + nucleated secondary lens fiber (post-embryonic human) @@ -12810,8 +11639,7 @@ - vertebrate lens cell (post-embryonic human) - FMA:70950 + vertebrate lens cell (post-embryonic human) @@ -12830,8 +11658,7 @@ - epithelial cell of sweat gland (post-embryonic human) - FMA:70952 + epithelial cell of sweat gland (post-embryonic human) @@ -12850,8 +11677,7 @@ - acinar cell of sebaceous gland (post-embryonic human) - FMA:70953 + acinar cell of sebaceous gland (post-embryonic human) @@ -12870,8 +11696,7 @@ - epithelial cell of nephron (post-embryonic human) - FMA:70965 + epithelial cell of nephron (post-embryonic human) @@ -12890,8 +11715,7 @@ - epithelial cell of glomerular capsule (post-embryonic human) - FMA:70966 + epithelial cell of glomerular capsule (post-embryonic human) @@ -12910,8 +11734,7 @@ - podocyte (post-embryonic human) - FMA:70967 + podocyte (post-embryonic human) @@ -12930,8 +11753,7 @@ - parietal epithelial cell (post-embryonic human) - FMA:70968 + parietal epithelial cell (post-embryonic human) @@ -12950,8 +11772,7 @@ - glomerular endothelial cell (post-embryonic human) - FMA:70970 + glomerular endothelial cell (post-embryonic human) @@ -12970,8 +11791,7 @@ - mesangial cell (post-embryonic human) - FMA:70972 + mesangial cell (post-embryonic human) @@ -12990,8 +11810,7 @@ - epithelial cell of proximal tubule (post-embryonic human) - FMA:70973 + epithelial cell of proximal tubule (post-embryonic human) @@ -13010,8 +11829,7 @@ - epithelial cell of intermediate tubule (post-embryonic human) - FMA:70980 + epithelial cell of intermediate tubule (post-embryonic human) @@ -13030,8 +11848,7 @@ - epithelial cell of distal tubule (post-embryonic human) - FMA:70981 + epithelial cell of distal tubule (post-embryonic human) @@ -13050,8 +11867,7 @@ - kidney collecting duct epithelial cell (post-embryonic human) - FMA:70982 + kidney collecting duct epithelial cell (post-embryonic human) @@ -13070,8 +11886,7 @@ - epithelial cell of exocrine pancreas (post-embryonic human) - FMA:70986 + epithelial cell of exocrine pancreas (post-embryonic human) @@ -13090,8 +11905,7 @@ - endothelial cell of venous sinus of spleen (post-embryonic human) - FMA:72140 + endothelial cell of venous sinus of spleen (post-embryonic human) @@ -13110,8 +11924,7 @@ - mesothelial cell of parietal peritoneum (post-embryonic human) - FMA:72142 + mesothelial cell of parietal peritoneum (post-embryonic human) @@ -13130,8 +11943,7 @@ - mesothelial cell of visceral peritoneum (post-embryonic human) - FMA:72143 + mesothelial cell of visceral peritoneum (post-embryonic human) @@ -13150,8 +11962,7 @@ - melanocyte of skin (post-embryonic human) - FMA:72144 + melanocyte of skin (post-embryonic human) @@ -13170,8 +11981,7 @@ - thymocyte (post-embryonic human) - FMA:72202 + thymocyte (post-embryonic human) @@ -13190,8 +12000,7 @@ - epithelial cell of thymus (post-embryonic human) - FMA:72208 + epithelial cell of thymus (post-embryonic human) @@ -13210,8 +12019,7 @@ - type-1 epithelial cell of thymus (post-embryonic human) - FMA:72209 + type-1 epithelial cell of thymus (post-embryonic human) @@ -13230,8 +12038,7 @@ - type-2 epithelial cell of thymus (post-embryonic human) - FMA:72210 + type-2 epithelial cell of thymus (post-embryonic human) @@ -13250,8 +12057,7 @@ - type-3 epithelial cell of thymus (post-embryonic human) - FMA:72211 + type-3 epithelial cell of thymus (post-embryonic human) @@ -13270,8 +12076,7 @@ - type-4 epithelial cell of thymus (post-embryonic human) - FMA:72212 + type-4 epithelial cell of thymus (post-embryonic human) @@ -13290,8 +12095,7 @@ - type-5 epithelial cell of thymus (post-embryonic human) - FMA:72213 + type-5 epithelial cell of thymus (post-embryonic human) @@ -13310,8 +12114,7 @@ - type-6 epithelial cell of thymus (post-embryonic human) - FMA:72214 + type-6 epithelial cell of thymus (post-embryonic human) @@ -13330,8 +12133,7 @@ - male germ cell (post-embryonic human) - FMA:72290 + male germ cell (post-embryonic human) @@ -13350,8 +12152,7 @@ - spermatogonium (post-embryonic human) - FMA:72291 + spermatogonium (post-embryonic human) @@ -13370,8 +12171,7 @@ - primary spermatocyte (post-embryonic human) - FMA:72292 + primary spermatocyte (post-embryonic human) @@ -13390,8 +12190,7 @@ - secondary spermatocyte (post-embryonic human) - FMA:72293 + secondary spermatocyte (post-embryonic human) @@ -13410,8 +12209,7 @@ - spermatid (post-embryonic human) - FMA:72294 + spermatid (post-embryonic human) @@ -13430,8 +12228,7 @@ - Leydig cell (post-embryonic human) - FMA:72297 + Leydig cell (post-embryonic human) @@ -13450,8 +12247,7 @@ - Sertoli cell (post-embryonic human) - FMA:72298 + Sertoli cell (post-embryonic human) @@ -13470,30 +12266,7 @@ - stromal cell of ovary (post-embryonic human) - FMA:72299 - - - - - - - - - - - - - - - - - - - - diploid cell (post-embryonic human) - somatic cell (post-embryonic human) - FMA:72300 + stromal cell of ovary (post-embryonic human) @@ -13512,8 +12285,7 @@ - animal zygote (post-embryonic human) - FMA:72395 + animal zygote (post-embryonic human) @@ -13532,8 +12304,7 @@ - ectodermal cell (post-embryonic human) - FMA:72549 + ectodermal cell (post-embryonic human) @@ -13552,8 +12323,7 @@ - blastoderm cell (post-embryonic human) - FMA:72551 + blastoderm cell (post-embryonic human) @@ -13572,8 +12342,7 @@ - surface ectodermal cell (post-embryonic human) - FMA:72552 + surface ectodermal cell (post-embryonic human) @@ -13592,8 +12361,7 @@ - mesodermal cell (post-embryonic human) - FMA:72554 + mesodermal cell (post-embryonic human) @@ -13612,8 +12380,7 @@ - endodermal cell (post-embryonic human) - FMA:72555 + endodermal cell (post-embryonic human) @@ -13632,8 +12399,7 @@ - luminal epithelial cell of mammary gland (post-embryonic human) - FMA:73280 + luminal epithelial cell of mammary gland (post-embryonic human) @@ -13652,8 +12418,7 @@ - epithelial cell of prostatic acinus (post-embryonic human) - FMA:74223 + epithelial cell of prostatic acinus (post-embryonic human) @@ -13672,8 +12437,7 @@ - epithelial cell of prostatic duct (post-embryonic human) - FMA:74224 + epithelial cell of prostatic duct (post-embryonic human) @@ -13692,8 +12456,7 @@ - luminal epithelial cell of prostatic duct (post-embryonic human) - FMA:74225 + luminal epithelial cell of prostatic duct (post-embryonic human) @@ -13712,8 +12475,7 @@ - basal epithelial cell of prostatic duct (post-embryonic human) - FMA:74226 + basal epithelial cell of prostatic duct (post-embryonic human) @@ -13732,8 +12494,7 @@ - basal cell of prostatic acinus (post-embryonic human) - FMA:74265 + basal cell of prostatic acinus (post-embryonic human) @@ -13752,8 +12513,7 @@ - luminal cell of prostatic acinus (post-embryonic human) - FMA:74266 + luminal cell of prostatic acinus (post-embryonic human) @@ -13772,8 +12532,7 @@ - chromaffin cell of ovary (post-embryonic human) - FMA:74319 + chromaffin cell of ovary (post-embryonic human) @@ -13792,8 +12551,7 @@ - chromaffin cell of right ovary (post-embryonic human) - FMA:74320 + chromaffin cell of right ovary (post-embryonic human) @@ -13812,8 +12570,7 @@ - chromaffin cell of left ovary (post-embryonic human) - FMA:74321 + chromaffin cell of left ovary (post-embryonic human) @@ -13832,8 +12589,7 @@ - endocrine-paracrine cell of prostate gland (post-embryonic human) - FMA:74390 + endocrine-paracrine cell of prostate gland (post-embryonic human) @@ -13852,8 +12608,7 @@ - myoepithelial cell of acinus of lactiferous gland (post-embryonic human) - FMA:74469 + myoepithelial cell of acinus of lactiferous gland (post-embryonic human) @@ -13872,8 +12627,7 @@ - myoepithelial cell of main lactiferous duct (post-embryonic human) - FMA:74499 + myoepithelial cell of main lactiferous duct (post-embryonic human) @@ -13892,8 +12646,7 @@ - myoepithelial cell of primary lactiferous duct (post-embryonic human) - FMA:74500 + myoepithelial cell of primary lactiferous duct (post-embryonic human) @@ -13912,8 +12665,7 @@ - myoepithelial cell of secondary lactiferous duct (post-embryonic human) - FMA:74501 + myoepithelial cell of secondary lactiferous duct (post-embryonic human) @@ -13932,8 +12684,7 @@ - myoepithelial cell of tertiary lactiferous duct (post-embryonic human) - FMA:74502 + myoepithelial cell of tertiary lactiferous duct (post-embryonic human) @@ -13952,8 +12703,7 @@ - myoepithelial cell of quarternary lactiferous duct (post-embryonic human) - FMA:74503 + myoepithelial cell of quarternary lactiferous duct (post-embryonic human) @@ -13972,30 +12722,7 @@ - luminal cell of lactiferous duct (post-embryonic human) - FMA:74504 - - - - - - - - - - - - - - - - - - - - luminal cell of acinus of lactiferous gland (post-embryonic human) - luminal cell of lactiferous duct (post-embryonic human) - FMA:74505 + luminal cell of lactiferous duct (post-embryonic human) @@ -14014,8 +12741,7 @@ - mammary alveolar cell (post-embryonic human) - FMA:74506 + mammary alveolar cell (post-embryonic human) @@ -14034,8 +12760,7 @@ - tracheal epithelial cell (post-embryonic human) - FMA:74793 + tracheal epithelial cell (post-embryonic human) @@ -14054,8 +12779,7 @@ - supporting cell of vestibular epithelium (post-embryonic human) - FMA:75607 + supporting cell of vestibular epithelium (post-embryonic human) @@ -14074,8 +12798,7 @@ - primitive cardiac myocyte (post-embryonic human) - FMA:75620 + primitive cardiac myocyte (post-embryonic human) @@ -14094,30 +12817,7 @@ - endocardial cell (post-embryonic human) - FMA:75621 - - - - - - - - - - - - - - - - - - - - internal pillar cell of cochlea (post-embryonic human) - pillar cell (post-embryonic human) - FMA:75722 + endocardial cell (post-embryonic human) @@ -14136,8 +12836,7 @@ - Deiter's cell (post-embryonic human) - FMA:75725 + Deiter's cell (post-embryonic human) @@ -14156,8 +12855,7 @@ - internal pillar cell of cochlea (post-embryonic human) - FMA:75726 + internal pillar cell of cochlea (post-embryonic human) @@ -14176,8 +12874,7 @@ - external pillar cell of cochlea (post-embryonic human) - FMA:75727 + external pillar cell of cochlea (post-embryonic human) @@ -14196,8 +12893,7 @@ - retinal pigment epithelial cell (post-embryonic human) - FMA:75802 + retinal pigment epithelial cell (post-embryonic human) @@ -14216,8 +12912,7 @@ - external limiting cell of vestibular epithelium (post-embryonic human) - FMA:75808 + external limiting cell of vestibular epithelium (post-embryonic human) @@ -14236,8 +12931,7 @@ - external supporting cell of vestibular epithelium (post-embryonic human) - FMA:75809 + external supporting cell of vestibular epithelium (post-embryonic human) @@ -14256,8 +12950,7 @@ - supporting cell of cochlea (post-embryonic human) - FMA:79796 + supporting cell of cochlea (post-embryonic human) @@ -14276,8 +12969,7 @@ - interdental cell of cochlea (post-embryonic human) - FMA:79797 + interdental cell of cochlea (post-embryonic human) @@ -14296,8 +12988,7 @@ - border cell of cochlea (post-embryonic human) - FMA:79798 + border cell of cochlea (post-embryonic human) @@ -14316,8 +13007,7 @@ - Hensen cell (post-embryonic human) - FMA:79799 + Hensen cell (post-embryonic human) @@ -14336,8 +13026,7 @@ - phalangeal cell (post-embryonic human) - FMA:79800 + phalangeal cell (post-embryonic human) @@ -14356,8 +13045,7 @@ - inner phalangeal cell (post-embryonic human) - FMA:79801 + inner phalangeal cell (post-embryonic human) @@ -14376,8 +13064,7 @@ - Claudius cell (post-embryonic human) - FMA:79802 + Claudius cell (post-embryonic human) @@ -14396,8 +13083,7 @@ - mammary alveolar cell (post-embryonic human) - FMA:79866 + mammary alveolar cell (post-embryonic human) @@ -14416,8 +13102,7 @@ - autonomic neuron (post-embryonic human) - FMA:80121 + autonomic neuron (post-embryonic human) @@ -14436,8 +13121,7 @@ - echinocyte (post-embryonic human) - FMA:81099 + echinocyte (post-embryonic human) @@ -14456,8 +13140,7 @@ - erythrocyte (post-embryonic human) - FMA:81100 + erythrocyte (post-embryonic human) @@ -14476,30 +13159,7 @@ - embryonic cell (metazoa) (post-embryonic human) - FMA:82840 - - - - - - - - - - - - - - - - - - - - embryonic cell (metazoa) (post-embryonic human) - embryonic stem cell (post-embryonic human) - FMA:82841 + embryonic cell (metazoa) (post-embryonic human) @@ -14518,8 +13178,7 @@ - alveolar macrophage (post-embryonic human) - FMA:83023 + alveolar macrophage (post-embryonic human) @@ -14538,8 +13197,7 @@ - pleural macrophage (post-embryonic human) - FMA:83024 + pleural macrophage (post-embryonic human) @@ -14558,8 +13216,7 @@ - peritoneal macrophage (post-embryonic human) - FMA:83025 + peritoneal macrophage (post-embryonic human) @@ -14578,8 +13235,7 @@ - splenic macrophage (post-embryonic human) - FMA:83026 + splenic macrophage (post-embryonic human) @@ -14598,8 +13254,7 @@ - odontoclast (post-embryonic human) - FMA:83027 + odontoclast (post-embryonic human) @@ -14618,8 +13273,7 @@ - trophoblast cell (post-embryonic human) - FMA:83028 + trophoblast cell (post-embryonic human) @@ -14638,8 +13292,7 @@ - lymphoblast (post-embryonic human) - FMA:83030 + lymphoblast (post-embryonic human) @@ -14658,8 +13311,7 @@ - B-lymphoblast (post-embryonic human) - FMA:83031 + B-lymphoblast (post-embryonic human) @@ -14678,8 +13330,7 @@ - multinucleated giant cell (post-embryonic human) - FMA:83035 + multinucleated giant cell (post-embryonic human) @@ -14698,8 +13349,7 @@ - dendritic cell (post-embryonic human) - FMA:83036 + dendritic cell (post-embryonic human) @@ -14718,8 +13368,7 @@ - follicular dendritic cell (post-embryonic human) - FMA:83037 + follicular dendritic cell (post-embryonic human) @@ -14738,8 +13387,7 @@ - mature conventional dendritic cell (post-embryonic human) - FMA:83038 + mature conventional dendritic cell (post-embryonic human) @@ -14758,8 +13406,7 @@ - mononuclear cytotrophoblast cell (post-embryonic human) - FMA:83042 + mononuclear cytotrophoblast cell (post-embryonic human) @@ -14778,8 +13425,7 @@ - syncytiotrophoblast cell (post-embryonic human) - FMA:83043 + syncytiotrophoblast cell (post-embryonic human) @@ -14798,8 +13444,7 @@ - chromophil cell of anterior pituitary gland (post-embryonic human) - FMA:83089 + chromophil cell of anterior pituitary gland (post-embryonic human) @@ -14818,8 +13463,7 @@ - acidophil cell of pars distalis of adenohypophysis (post-embryonic human) - FMA:83093 + acidophil cell of pars distalis of adenohypophysis (post-embryonic human) @@ -14838,8 +13482,7 @@ - basophil cell of pars distalis of adenohypophysis (post-embryonic human) - FMA:83094 + basophil cell of pars distalis of adenohypophysis (post-embryonic human) @@ -14858,8 +13501,7 @@ - somatotroph (post-embryonic human) - FMA:83095 + somatotroph (post-embryonic human) @@ -14878,8 +13520,7 @@ - mammotroph (post-embryonic human) - FMA:83096 + mammotroph (post-embryonic human) @@ -14898,8 +13539,7 @@ - mammosomatotroph (post-embryonic human) - FMA:83097 + mammosomatotroph (post-embryonic human) @@ -14918,8 +13558,7 @@ - corticotroph (post-embryonic human) - FMA:83098 + corticotroph (post-embryonic human) @@ -14938,8 +13577,7 @@ - thyrotroph (post-embryonic human) - FMA:83099 + thyrotroph (post-embryonic human) @@ -14958,8 +13596,7 @@ - gonadtroph (post-embryonic human) - FMA:83100 + gonadtroph (post-embryonic human) @@ -14978,8 +13615,7 @@ - folliculostellate cell of pars distalis of adenohypophysis (post-embryonic human) - FMA:83102 + folliculostellate cell of pars distalis of adenohypophysis (post-embryonic human) @@ -14998,8 +13634,7 @@ - regular atrial cardiac myocyte (post-embryonic human) - FMA:83108 + regular atrial cardiac myocyte (post-embryonic human) @@ -15018,8 +13653,7 @@ - regular ventricular cardiac myocyte (post-embryonic human) - FMA:83109 + regular ventricular cardiac myocyte (post-embryonic human) @@ -15038,8 +13672,7 @@ - amine precursor uptake and decarboxylation cell (post-embryonic human) - FMA:83114 + amine precursor uptake and decarboxylation cell (post-embryonic human) @@ -15058,8 +13691,7 @@ - type EC enteroendocrine cell (post-embryonic human) - FMA:83132 + type EC enteroendocrine cell (post-embryonic human) @@ -15078,8 +13710,7 @@ - melanoblast (post-embryonic human) - FMA:83377 + melanoblast (post-embryonic human) @@ -15098,8 +13729,7 @@ - cardiac pacemaker cell of sinoatrial node (post-embryonic human) - FMA:83383 + cardiac pacemaker cell of sinoatrial node (post-embryonic human) @@ -15118,8 +13748,7 @@ - transitional myocyte of sinoatrial node (post-embryonic human) - FMA:83384 + transitional myocyte of sinoatrial node (post-embryonic human) @@ -15138,8 +13767,7 @@ - Purkinje myocyte of atrioventricular node (post-embryonic human) - FMA:83386 + Purkinje myocyte of atrioventricular node (post-embryonic human) @@ -15158,8 +13786,7 @@ - transitional myocyte of internodal tract (post-embryonic human) - FMA:83387 + transitional myocyte of internodal tract (post-embryonic human) @@ -15178,8 +13805,7 @@ - transitional myocyte of atrioventricular bundle (post-embryonic human) - FMA:83388 + transitional myocyte of atrioventricular bundle (post-embryonic human) @@ -15198,8 +13824,7 @@ - myocardial endocrine cell of atrium (post-embryonic human) - FMA:83389 + myocardial endocrine cell of atrium (post-embryonic human) @@ -15218,8 +13843,7 @@ - myocardial endocrine cell of interventricular septum (post-embryonic human) - FMA:83390 + myocardial endocrine cell of interventricular septum (post-embryonic human) @@ -15238,8 +13862,7 @@ - Purkinje myocyte of internodal tract (post-embryonic human) - FMA:83392 + Purkinje myocyte of internodal tract (post-embryonic human) @@ -15258,8 +13881,7 @@ - Purkinje myocyte of atrioventricular bundle (post-embryonic human) - FMA:83393 + Purkinje myocyte of atrioventricular bundle (post-embryonic human) @@ -15278,8 +13900,7 @@ - PP cell (post-embryonic human) - FMA:83409 + PP cell (post-embryonic human) @@ -15298,8 +13919,7 @@ - type D cell of stomach (post-embryonic human) - FMA:83410 + type D cell of stomach (post-embryonic human) @@ -15318,8 +13938,7 @@ - type A cell of stomach (post-embryonic human) - FMA:83411 + type A cell of stomach (post-embryonic human) @@ -15338,8 +13957,7 @@ - pinealocyte (post-embryonic human) - FMA:83417 + pinealocyte (post-embryonic human) @@ -15358,8 +13976,7 @@ - white fat cell (post-embryonic human) - FMA:83434 + white fat cell (post-embryonic human) @@ -15378,8 +13995,7 @@ - brown fat cell (post-embryonic human) - FMA:83435 + brown fat cell (post-embryonic human) @@ -15398,8 +14014,7 @@ - pituicyte (post-embryonic human) - FMA:83503 + pituicyte (post-embryonic human) @@ -15418,8 +14033,7 @@ - erythroblast (post-embryonic human) - FMA:83504 + erythroblast (post-embryonic human) @@ -15438,8 +14052,7 @@ - basophilic erythroblast (post-embryonic human) - FMA:83505 + basophilic erythroblast (post-embryonic human) @@ -15458,8 +14071,7 @@ - polychromatophilic erythroblast (post-embryonic human) - FMA:83506 + polychromatophilic erythroblast (post-embryonic human) @@ -15478,8 +14090,7 @@ - epithelioid macrophage (post-embryonic human) - FMA:83514 + epithelioid macrophage (post-embryonic human) @@ -15498,8 +14109,7 @@ - erythroid lineage cell (post-embryonic human) - FMA:83516 + erythroid lineage cell (post-embryonic human) @@ -15518,8 +14128,7 @@ - CD34-positive, GlyA-negative erythroid progenitor cell (post-embryonic human) - FMA:83517 + CD34-positive, GlyA-negative erythroid progenitor cell (post-embryonic human) @@ -15538,8 +14147,7 @@ - proerythroblast (post-embryonic human) - FMA:83518 + proerythroblast (post-embryonic human) @@ -15558,8 +14166,7 @@ - granulocytopoietic cell (post-embryonic human) - FMA:83519 + granulocytopoietic cell (post-embryonic human) @@ -15578,8 +14185,7 @@ - myeloblast (post-embryonic human) - FMA:83524 + myeloblast (post-embryonic human) @@ -15598,8 +14204,7 @@ - myelocyte (post-embryonic human) - FMA:83525 + myelocyte (post-embryonic human) @@ -15618,8 +14223,7 @@ - promyelocyte (post-embryonic human) - FMA:83530 + promyelocyte (post-embryonic human) @@ -15638,8 +14242,7 @@ - early promyelocyte (post-embryonic human) - FMA:83533 + early promyelocyte (post-embryonic human) @@ -15658,8 +14261,7 @@ - late promyelocyte (post-embryonic human) - FMA:83534 + late promyelocyte (post-embryonic human) @@ -15678,8 +14280,7 @@ - neutrophilic myelocyte (post-embryonic human) - FMA:83540 + neutrophilic myelocyte (post-embryonic human) @@ -15698,8 +14299,7 @@ - metamyelocyte (post-embryonic human) - FMA:83541 + metamyelocyte (post-embryonic human) @@ -15718,8 +14318,7 @@ - eosinophilic myelocyte (post-embryonic human) - FMA:83542 + eosinophilic myelocyte (post-embryonic human) @@ -15738,8 +14337,7 @@ - basophilic myelocyte (post-embryonic human) - FMA:83543 + basophilic myelocyte (post-embryonic human) @@ -15758,8 +14356,7 @@ - promonocyte (post-embryonic human) - FMA:83551 + promonocyte (post-embryonic human) @@ -15778,8 +14375,7 @@ - monopoietic cell (post-embryonic human) - FMA:83552 + monopoietic cell (post-embryonic human) @@ -15798,8 +14394,7 @@ - monoblast (post-embryonic human) - FMA:83553 + monoblast (post-embryonic human) @@ -15818,8 +14413,7 @@ - megakaryocyte (post-embryonic human) - FMA:83555 + megakaryocyte (post-embryonic human) @@ -15838,8 +14432,7 @@ - macrophage (post-embryonic human) - FMA:83585 + macrophage (post-embryonic human) @@ -15858,8 +14451,7 @@ - foam cell (post-embryonic human) - FMA:83586 + foam cell (post-embryonic human) @@ -15878,30 +14470,7 @@ - hematopoietic cell (post-embryonic human) - FMA:83598 - - - - - - - - - - - - - - - - - - - - natural killer cell (post-embryonic human) - obsolete null lymphocyte (post-embryonic human) - FMA:83601 + hematopoietic cell (post-embryonic human) @@ -15920,8 +14489,7 @@ - motor neuron (post-embryonic human) - FMA:83617 + motor neuron (post-embryonic human) @@ -15940,8 +14508,7 @@ - bone marrow cell (post-embryonic human) - FMA:83621 + bone marrow cell (post-embryonic human) @@ -15960,8 +14527,7 @@ - stromal cell (post-embryonic human) - FMA:83624 + stromal cell (post-embryonic human) @@ -15980,8 +14546,7 @@ - acinar cell (post-embryonic human) - FMA:83625 + acinar cell (post-embryonic human) @@ -16000,8 +14565,7 @@ - chromophobe cell (post-embryonic human) - FMA:83626 + chromophobe cell (post-embryonic human) @@ -16020,8 +14584,7 @@ - gamma motor neuron (post-embryonic human) - FMA:83660 + gamma motor neuron (post-embryonic human) @@ -16040,8 +14603,7 @@ - oogonial cell (post-embryonic human) - FMA:83673 + oogonial cell (post-embryonic human) @@ -16060,8 +14622,7 @@ - phagocyte (post-embryonic human) - FMA:83806 + phagocyte (post-embryonic human) @@ -16080,8 +14641,7 @@ - cardiocyte (post-embryonic human) - FMA:83808 + cardiocyte (post-embryonic human) @@ -16100,8 +14660,7 @@ - endocrine cell (post-embryonic human) - FMA:83809 + endocrine cell (post-embryonic human) @@ -16120,28 +14679,7 @@ - neuroendocrine cell (post-embryonic human) - FMA:83810 - - - - - - - - - - - - - - - - - - - transitional myocyte of atrioventricular bundle (post-embryonic human) - FMA:83885 + neuroendocrine cell (post-embryonic human) @@ -16160,8 +14698,7 @@ - glucagon secreting cell (post-embryonic human) - FMA:84045 + glucagon secreting cell (post-embryonic human) @@ -16180,8 +14717,7 @@ - spermatocyte (post-embryonic human) - FMA:84049 + spermatocyte (post-embryonic human) @@ -16200,8 +14736,7 @@ - X chromosome-bearing sperm cell (post-embryonic human) - FMA:84057 + X chromosome-bearing sperm cell (post-embryonic human) @@ -16220,8 +14755,7 @@ - Y chromosome-bearing sperm cell (post-embryonic human) - FMA:84058 + Y chromosome-bearing sperm cell (post-embryonic human) @@ -16240,28 +14774,7 @@ - regulatory T cell (post-embryonic human) - FMA:84070 - - - - - - - - - - - - - - - - - - - cerebral cortex neuron (post-embryonic human) - FMA:84104 + regulatory T cell (post-embryonic human) @@ -16280,8 +14793,7 @@ - urothelial cell (post-embryonic human) - FMA:84127 + urothelial cell (post-embryonic human) @@ -16300,8 +14812,7 @@ - kidney granular cell (post-embryonic human) - FMA:84138 + kidney granular cell (post-embryonic human) @@ -16320,8 +14831,7 @@ - extraglomerular mesangial cell (post-embryonic human) - FMA:84143 + extraglomerular mesangial cell (post-embryonic human) @@ -16340,8 +14850,7 @@ - umbrella cell of urothelium (post-embryonic human) - FMA:84149 + umbrella cell of urothelium (post-embryonic human) @@ -16360,8 +14869,7 @@ - basal cell of urothelium (post-embryonic human) - FMA:84150 + basal cell of urothelium (post-embryonic human) @@ -16380,8 +14888,7 @@ - intermediate cell of urothelium (post-embryonic human) - FMA:84155 + intermediate cell of urothelium (post-embryonic human) @@ -16400,8 +14907,7 @@ - type I cell of carotid body (post-embryonic human) - FMA:84186 + type I cell of carotid body (post-embryonic human) @@ -16420,8 +14926,7 @@ - type II cell of carotid body (post-embryonic human) - FMA:84187 + type II cell of carotid body (post-embryonic human) @@ -16440,8 +14945,7 @@ - supporting cell of carotid body (post-embryonic human) - FMA:84188 + supporting cell of carotid body (post-embryonic human) @@ -16460,8 +14964,7 @@ - conventional dendritic cell (post-embryonic human) - FMA:84191 + conventional dendritic cell (post-embryonic human) @@ -16480,8 +14983,7 @@ - neutrophilic promyelocyte (post-embryonic human) - FMA:84196 + neutrophilic promyelocyte (post-embryonic human) @@ -16500,8 +15002,7 @@ - neutrophilic metamyelocyte (post-embryonic human) - FMA:84197 + neutrophilic metamyelocyte (post-embryonic human) @@ -16520,8 +15021,7 @@ - basophilic metamyelocyte (post-embryonic human) - FMA:84198 + basophilic metamyelocyte (post-embryonic human) @@ -16540,8 +15040,7 @@ - eosinophilic promyelocyte (post-embryonic human) - FMA:84199 + eosinophilic promyelocyte (post-embryonic human) @@ -16560,8 +15059,7 @@ - basophilic promyelocyte (post-embryonic human) - FMA:84208 + basophilic promyelocyte (post-embryonic human) @@ -16580,8 +15078,7 @@ - megakaryocyte progenitor cell (post-embryonic human) - FMA:84235 + megakaryocyte progenitor cell (post-embryonic human) @@ -16600,8 +15097,7 @@ - plasmablast (post-embryonic human) - FMA:84371 + plasmablast (post-embryonic human) @@ -16620,8 +15116,7 @@ - marrow fibroblast (post-embryonic human) - FMA:84377 + marrow fibroblast (post-embryonic human) @@ -16640,8 +15135,7 @@ - T-helper 1 cell (post-embryonic human) - FMA:84382 + T-helper 1 cell (post-embryonic human) @@ -16660,8 +15154,7 @@ - T-helper 2 cell (post-embryonic human) - FMA:84385 + T-helper 2 cell (post-embryonic human) @@ -16680,8 +15173,7 @@ - type I muscle cell (post-embryonic human) - FMA:84413 + type I muscle cell (post-embryonic human) @@ -16700,8 +15192,7 @@ - type II muscle cell (post-embryonic human) - FMA:84414 + type II muscle cell (post-embryonic human) @@ -16720,8 +15211,7 @@ - type IIa muscle cell (post-embryonic human) - FMA:84415 + type IIa muscle cell (post-embryonic human) @@ -16740,30 +15230,7 @@ - type IIb muscle cell (post-embryonic human) - FMA:84416 - - - - - - - - - - - - - - - - - - - - red muscle cell (post-embryonic human) - slow muscle cell (post-embryonic human) - FMA:84448 + type IIb muscle cell (post-embryonic human) @@ -16782,8 +15249,7 @@ - white muscle cell (post-embryonic human) - FMA:84449 + white muscle cell (post-embryonic human) @@ -16802,8 +15268,7 @@ - intermediate muscle cell (post-embryonic human) - FMA:84450 + intermediate muscle cell (post-embryonic human) @@ -16822,8 +15287,7 @@ - pulmonary interstitial fibroblast (post-embryonic human) - FMA:84467 + pulmonary interstitial fibroblast (post-embryonic human) @@ -16842,8 +15306,7 @@ - smooth muscle cell of prostate (post-embryonic human) - FMA:84583 + smooth muscle cell of prostate (post-embryonic human) @@ -16862,28 +15325,7 @@ - lower motor neuron (post-embryonic human) - FMA:84632 - - - - - - - - - - - - - - - - - - - obsolete parenchymal cell (post-embryonic human) - FMA:84638 + lower motor neuron (post-embryonic human) @@ -16902,8 +15344,7 @@ - adventitial cell (post-embryonic human) - FMA:84639 + adventitial cell (post-embryonic human) @@ -16922,8 +15363,7 @@ - tissue-resident macrophage (post-embryonic human) - FMA:84642 + tissue-resident macrophage (post-embryonic human) @@ -16942,8 +15382,7 @@ - elicited macrophage (post-embryonic human) - FMA:84643 + elicited macrophage (post-embryonic human) @@ -16962,8 +15401,7 @@ - tissue-resident macrophage (post-embryonic human) - FMA:84644 + tissue-resident macrophage (post-embryonic human) @@ -16982,8 +15420,7 @@ - elicited macrophage (post-embryonic human) - FMA:84645 + elicited macrophage (post-embryonic human) @@ -17002,8 +15439,7 @@ - orthochromatic erythroblast (post-embryonic human) - FMA:84646 + orthochromatic erythroblast (post-embryonic human) @@ -17022,28 +15458,7 @@ - sensory neuron (post-embryonic human) - FMA:84649 - - - - - - - - - - - - - - - - - - - peripheral nervous system neuron (post-embryonic human) - FMA:84664 + sensory neuron (post-embryonic human) @@ -17062,8 +15477,7 @@ - cerebellar neuron (post-embryonic human) - FMA:84665 + cerebellar neuron (post-embryonic human) @@ -17082,8 +15496,7 @@ - male gonocyte (post-embryonic human) - FMA:84771 + male gonocyte (post-embryonic human) @@ -17102,8 +15515,7 @@ - ooblast (post-embryonic human) - FMA:84772 + ooblast (post-embryonic human) @@ -17122,8 +15534,7 @@ - inhibitory interneuron (post-embryonic human) - FMA:84776 + inhibitory interneuron (post-embryonic human) @@ -17142,8 +15553,7 @@ - hippocampal interneuron (post-embryonic human) - FMA:84777 + hippocampal interneuron (post-embryonic human) @@ -17162,8 +15572,7 @@ - non-terminally differentiated cell (post-embryonic human) - FMA:84782 + non-terminally differentiated cell (post-embryonic human) @@ -17182,8 +15591,7 @@ - dopaminergic neuron (post-embryonic human) - FMA:84787 + dopaminergic neuron (post-embryonic human) @@ -17202,8 +15610,7 @@ - GABAergic neuron (post-embryonic human) - FMA:84788 + GABAergic neuron (post-embryonic human) @@ -17222,8 +15629,7 @@ - multi fate stem cell (post-embryonic human) - FMA:84789 + multi fate stem cell (post-embryonic human) @@ -17242,8 +15648,7 @@ - totipotent stem cell (post-embryonic human) - FMA:84790 + totipotent stem cell (post-embryonic human) @@ -17262,8 +15667,7 @@ - cardiocyte (post-embryonic human) - FMA:84791 + cardiocyte (post-embryonic human) @@ -17282,8 +15686,7 @@ - nitrergic neuron (post-embryonic human) - FMA:84792 + nitrergic neuron (post-embryonic human) @@ -17302,8 +15705,7 @@ - Tc1 cell (post-embryonic human) - FMA:84793 + Tc1 cell (post-embryonic human) @@ -17322,8 +15724,7 @@ - Tc2 cell (post-embryonic human) - FMA:84794 + Tc2 cell (post-embryonic human) @@ -17342,8 +15743,7 @@ - cholinergic neuron (post-embryonic human) - FMA:84796 + cholinergic neuron (post-embryonic human) @@ -17362,8 +15762,7 @@ - cardiac muscle myoblast (post-embryonic human) - FMA:84797 + cardiac muscle myoblast (post-embryonic human) @@ -17382,8 +15781,7 @@ - smooth muscle myoblast (post-embryonic human) - FMA:84798 + smooth muscle myoblast (post-embryonic human) @@ -17402,28 +15800,7 @@ - skeletal muscle myoblast (post-embryonic human) - FMA:84799 - - - - - - - - - - - - - - - - - - - obsolete PP cell of pancreatic acinus (post-embryonic human) - FMA:85400 + skeletal muscle myoblast (post-embryonic human) @@ -17442,30 +15819,7 @@ - polar body (post-embryonic human) - FMA:85543 - - - - - - - - - - - - - - - - - - - - CD34-positive, CD38-negative hematopoietic stem cell (post-embryonic human) - hematopoietic stem cell (post-embryonic human) - FMA:86475 + polar body (post-embryonic human) @@ -17484,8 +15838,7 @@ - cholangiocyte (post-embryonic human) - FMA:86481 + cholangiocyte (post-embryonic human) @@ -17504,8 +15857,7 @@ - squamous cell of ectocervix (post-embryonic human) - FMA:86483 + squamous cell of ectocervix (post-embryonic human) @@ -17524,8 +15876,7 @@ - columnar cell of endocervix (post-embryonic human) - FMA:86486 + columnar cell of endocervix (post-embryonic human) @@ -17544,8 +15895,7 @@ - glandular cell of endometrium (post-embryonic human) - FMA:86489 + glandular cell of endometrium (post-embryonic human) @@ -17564,8 +15914,7 @@ - stromal cell of endometrium (post-embryonic human) - FMA:86490 + stromal cell of endometrium (post-embryonic human) @@ -17584,8 +15933,7 @@ - glandular epithelial cell (post-embryonic human) - FMA:86494 + glandular epithelial cell (post-embryonic human) @@ -17604,8 +15952,7 @@ - endosteal cell (post-embryonic human) - FMA:86495 + endosteal cell (post-embryonic human) @@ -17624,8 +15971,7 @@ - reticular cell of splenic cord (post-embryonic human) - FMA:86497 + reticular cell of splenic cord (post-embryonic human) @@ -17644,8 +15990,7 @@ - glandular cell of esophagus (post-embryonic human) - FMA:86548 + glandular cell of esophagus (post-embryonic human) @@ -17664,8 +16009,7 @@ - keratinized squamous cell of esophagus (post-embryonic human) - FMA:86549 + keratinized squamous cell of esophagus (post-embryonic human) @@ -17684,8 +16028,7 @@ - foveolar cell of stomach (post-embryonic human) - FMA:86552 + foveolar cell of stomach (post-embryonic human) @@ -17704,8 +16047,7 @@ - glandular cell of stomach (post-embryonic human) - FMA:86554 + glandular cell of stomach (post-embryonic human) @@ -17724,8 +16066,7 @@ - renal intercalated cell (post-embryonic human) - FMA:86560 + renal intercalated cell (post-embryonic human) @@ -17744,8 +16085,7 @@ - intermediate trophoblast cell (post-embryonic human) - FMA:86564 + intermediate trophoblast cell (post-embryonic human) @@ -17764,8 +16104,7 @@ - interstitial cell of Cajal (post-embryonic human) - FMA:86573 + interstitial cell of Cajal (post-embryonic human) @@ -17784,8 +16123,7 @@ - interstitial cell of pineal gland (post-embryonic human) - FMA:86575 + interstitial cell of pineal gland (post-embryonic human) @@ -17804,8 +16142,7 @@ - hepatic oval stem cell (post-embryonic human) - FMA:86576 + hepatic oval stem cell (post-embryonic human) @@ -17824,8 +16161,7 @@ - hepatic stem cell (post-embryonic human) - FMA:86577 + hepatic stem cell (post-embryonic human) @@ -17844,8 +16180,7 @@ - meningothelial cell (post-embryonic human) - FMA:86588 + meningothelial cell (post-embryonic human) @@ -17864,8 +16199,7 @@ - migratory neural crest cell (post-embryonic human) - FMA:86667 + migratory neural crest cell (post-embryonic human) @@ -17884,8 +16218,7 @@ - neural stem cell (post-embryonic human) - FMA:86684 + neural stem cell (post-embryonic human) @@ -17904,8 +16237,7 @@ - peripheral blood stem cell (post-embryonic human) - FMA:86711 + peripheral blood stem cell (post-embryonic human) @@ -17924,8 +16256,7 @@ - peripheral blood mesothelial cell (post-embryonic human) - FMA:86712 + peripheral blood mesothelial cell (post-embryonic human) @@ -17944,8 +16275,7 @@ - mononuclear cell (post-embryonic human) - FMA:86713 + mononuclear cell (post-embryonic human) @@ -17964,8 +16294,7 @@ - mesothelial cell of peritoneum (post-embryonic human) - FMA:86736 + mesothelial cell of peritoneum (post-embryonic human) @@ -17984,8 +16313,7 @@ - mesothelial cell of pleura (post-embryonic human) - FMA:86737 + mesothelial cell of pleura (post-embryonic human) @@ -18004,8 +16332,7 @@ - mesothelial cell of parietal pleura (post-embryonic human) - FMA:86738 + mesothelial cell of parietal pleura (post-embryonic human) @@ -18024,8 +16351,7 @@ - mesothelial cell of visceral pleura (post-embryonic human) - FMA:86739 + mesothelial cell of visceral pleura (post-embryonic human) @@ -18044,8 +16370,7 @@ - photoreceptor cell (post-embryonic human) - FMA:86740 + photoreceptor cell (post-embryonic human) @@ -18064,8 +16389,7 @@ - multi-potent skeletal muscle stem cell (post-embryonic human) - FMA:86767 + multi-potent skeletal muscle stem cell (post-embryonic human) @@ -18084,8 +16408,7 @@ - endocrine-paracrine cell of prostate gland (post-embryonic human) - FMA:86774 + endocrine-paracrine cell of prostate gland (post-embryonic human) @@ -18104,8 +16427,7 @@ - pyramidal neuron (post-embryonic human) - FMA:86775 + pyramidal neuron (post-embryonic human) @@ -18124,8 +16446,7 @@ - nephron tubule epithelial cell (post-embryonic human) - FMA:86785 + nephron tubule epithelial cell (post-embryonic human) @@ -18144,8 +16465,7 @@ - secretory cell (post-embryonic human) - FMA:86916 + secretory cell (post-embryonic human) @@ -18164,8 +16484,7 @@ - squamous cell of epidermis (post-embryonic human) - FMA:86925 + squamous cell of epidermis (post-embryonic human) @@ -18184,8 +16503,7 @@ - small intestine glandular cell (post-embryonic human) - FMA:86928 + small intestine glandular cell (post-embryonic human) @@ -18204,8 +16522,7 @@ - small intestine goblet cell (post-embryonic human) - FMA:86929 + small intestine goblet cell (post-embryonic human) @@ -18224,8 +16541,7 @@ - striated muscle cell (post-embryonic human) - FMA:86936 + striated muscle cell (post-embryonic human) @@ -18244,8 +16560,7 @@ - luminal cell of lactiferous terminal ductal lobular unit (post-embryonic human) - FMA:87168 + luminal cell of lactiferous terminal ductal lobular unit (post-embryonic human) @@ -18264,8 +16579,7 @@ - oxyphil cell of thyroid (post-embryonic human) - FMA:87169 + oxyphil cell of thyroid (post-embryonic human) @@ -18284,8 +16598,7 @@ - dental pulp cell (post-embryonic human) - FMA:87170 + dental pulp cell (post-embryonic human) @@ -18304,8 +16617,7 @@ - neuroepithelial stem cell (post-embryonic human) - FMA:87171 + neuroepithelial stem cell (post-embryonic human) @@ -18324,8 +16636,7 @@ - glandular cell of the large intestine (post-embryonic human) - FMA:87194 + glandular cell of the large intestine (post-embryonic human) @@ -18344,8 +16655,7 @@ - afferent neuron (post-embryonic human) - FMA:87653 + afferent neuron (post-embryonic human) @@ -18364,34 +16674,7 @@ - cell of skeletal muscle (post-embryonic human) - FMA:9727 - - - - - - - - - - - - - - - - - - - - - - - - - FMA:ENTITY - FMA entity + cell of skeletal muscle (post-embryonic human) @@ -18399,15 +16682,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/cl-bridge-to-go.obo b/src/ontology/bridge/cl-bridge-to-go.obo deleted file mode 100644 index 7c4fc5388f..0000000000 --- a/src/ontology/bridge/cl-bridge-to-go.obo +++ /dev/null @@ -1,116 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-go -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: GO:0005623 ! -property_value: IAO:0000589 "cell (GO)" xsd:string -equivalent_to: CL:0000000 ! cell - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-go.owl b/src/ontology/bridge/cl-bridge-to-go.owl index 7044a2660a..2759071b34 100644 --- a/src/ontology/bridge/cl-bridge-to-go.owl +++ b/src/ontology/bridge/cl-bridge-to-go.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - cell (GO) - GO:0005623 + cell (GO) - + diff --git a/src/ontology/bridge/cl-bridge-to-hao.obo b/src/ontology/bridge/cl-bridge-to-hao.obo deleted file mode 100644 index d4a97e6d56..0000000000 --- a/src/ontology/bridge/cl-bridge-to-hao.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-hao -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: HAO:ENTITY -name: HAO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7399 -relationship: only_in_taxon NCBITaxon:7399 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-hao.owl b/src/ontology/bridge/cl-bridge-to-hao.owl deleted file mode 100644 index ea416dfaff..0000000000 --- a/src/ontology/bridge/cl-bridge-to-hao.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - HAO:ENTITY - HAO entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-hba.obo b/src/ontology/bridge/cl-bridge-to-hba.obo deleted file mode 100644 index eec6c736e8..0000000000 --- a/src/ontology/bridge/cl-bridge-to-hba.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-hba -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: HBA:ENTITY -name: HBA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-hba.owl b/src/ontology/bridge/cl-bridge-to-hba.owl deleted file mode 100644 index ad9253fb9c..0000000000 --- a/src/ontology/bridge/cl-bridge-to-hba.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - HBA:ENTITY - HBA entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-kupo.obo b/src/ontology/bridge/cl-bridge-to-kupo.obo deleted file mode 100644 index a71981315c..0000000000 --- a/src/ontology/bridge/cl-bridge-to-kupo.obo +++ /dev/null @@ -1,861 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-kupo -data-version: 2013-02-11 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: KUPO:0000002 ! -property_value: IAO:0000589 "cell (KUPO)" xsd:string -intersection_of: CL:0000000 ! cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001033 ! -property_value: IAO:0000589 "extraglomerular mesangial cell (KUPO)" xsd:string -intersection_of: CL:0002173 ! extraglomerular mesangial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001055 ! -property_value: IAO:0000589 "epithelial cell of distal tubule (KUPO)" xsd:string -intersection_of: CL:0002305 ! epithelial cell of distal tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001044 ! -property_value: IAO:0000589 "epithelial cell of proximal tubule (KUPO)" xsd:string -intersection_of: CL:0002306 ! epithelial cell of proximal tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001019 ! -property_value: IAO:0000589 "kidney epithelial cell (KUPO)" xsd:string -intersection_of: CL:0002518 ! kidney epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001099 ! -property_value: IAO:0000589 "vein endothelial cell (KUPO)" xsd:string -intersection_of: CL:0002543 ! vein endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001016 ! -property_value: IAO:0000589 "renal cortical epithelial cell (KUPO)" xsd:string -intersection_of: CL:0002584 ! renal cortical epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001122 ! -property_value: IAO:0000589 "smooth muscle cell of bladder (KUPO)" xsd:string -intersection_of: CL:0002597 ! smooth muscle cell of bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001097 ! -property_value: IAO:0000589 "endothelial cell of arteriole (KUPO)" xsd:string -intersection_of: CL:1000412 ! endothelial cell of arteriole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001095 ! -property_value: IAO:0000589 "endothelial cell of artery (KUPO)" xsd:string -intersection_of: CL:1000413 ! endothelial cell of artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001034 ! -property_value: IAO:0000589 "epithelial cell of glomerular capsule (KUPO)" xsd:string -intersection_of: CL:1000450 ! epithelial cell of glomerular capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001035 ! -property_value: IAO:0000589 "parietal epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000452 ! parietal epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001059 ! -property_value: IAO:0000589 "kidney collecting duct epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000454 ! kidney collecting duct epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001022 ! -property_value: IAO:0000589 "epithelial cell of renal tubule (KUPO)" xsd:string -intersection_of: CL:1000494 ! epithelial cell of renal tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001010 ! -property_value: IAO:0000589 "kidney cell (KUPO)" xsd:string -intersection_of: CL:1000497 ! kidney cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001013 ! -property_value: IAO:0000589 "kidney interstitial cell (KUPO)" xsd:string -intersection_of: CL:1000500 ! kidney interstitial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001017 ! -property_value: IAO:0000589 "kidney medulla cell (KUPO)" xsd:string -intersection_of: CL:1000504 ! kidney medulla cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001018 ! -property_value: IAO:0000589 "kidney pelvis cell (KUPO)" xsd:string -intersection_of: CL:1000505 ! kidney pelvis cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001020 ! -property_value: IAO:0000589 "kidney tubule cell (KUPO)" xsd:string -intersection_of: CL:1000507 ! kidney tubule cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001023 ! -property_value: IAO:0000589 "kidney glomerular epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000510 ! kidney glomerular epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001060 ! -property_value: IAO:0000589 "kidney medulla collecting duct epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000546 ! kidney medulla collecting duct epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001061 ! -property_value: IAO:0000589 "kidney inner medulla collecting duct epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000547 ! kidney inner medulla collecting duct epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001062 ! -property_value: IAO:0000589 "kidney outer medulla collecting duct epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000548 ! kidney outer medulla collecting duct epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001063 ! -property_value: IAO:0000589 "kidney cortex collecting duct epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000549 ! kidney cortex collecting duct epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001064 ! -property_value: IAO:0000589 "kidney papillary duct principal epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000550 ! kidney papillary duct principal epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001111 ! -property_value: IAO:0000589 "inner renal cortex cell (KUPO)" xsd:string -intersection_of: CL:1000596 ! inner renal cortex cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001112 ! -property_value: IAO:0000589 "papillary tips cell (KUPO)" xsd:string -intersection_of: CL:1000597 ! papillary tips cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001115 ! -property_value: IAO:0000589 "lower urinary tract cell (KUPO)" xsd:string -intersection_of: CL:1000600 ! lower urinary tract cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001116 ! -property_value: IAO:0000589 "ureteral cell (KUPO)" xsd:string -intersection_of: CL:1000601 ! ureteral cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001015 ! -property_value: IAO:0000589 "kidney nerve cell (KUPO)" xsd:string -intersection_of: CL:1000606 ! kidney nerve cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001021 ! -property_value: IAO:0000589 "kidney corpuscule cell (KUPO)" xsd:string -intersection_of: CL:1000612 ! kidney corpuscule cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001024 ! -property_value: IAO:0000589 "kidney cortex tubule cell (KUPO)" xsd:string -intersection_of: CL:1000615 ! kidney cortex tubule cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001025 ! -property_value: IAO:0000589 "kidney outer medulla cell (KUPO)" xsd:string -intersection_of: CL:1000616 ! kidney outer medulla cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001026 ! -property_value: IAO:0000589 "kidney inner medulla cell (KUPO)" xsd:string -intersection_of: CL:1000617 ! kidney inner medulla cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001028 ! -property_value: IAO:0000589 "juxtaglomerular complex cell (KUPO)" xsd:string -intersection_of: CL:1000618 ! juxtaglomerular complex cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001091 ! -property_value: IAO:0000589 "kidney cortex interstitial cell (KUPO)" xsd:string -intersection_of: CL:1000681 ! kidney cortex interstitial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001092 ! -property_value: IAO:0000589 "kidney medulla interstitial cell (KUPO)" xsd:string -intersection_of: CL:1000682 ! kidney medulla interstitial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001101 ! -property_value: IAO:0000589 "kidney interstitial myofibroblast (KUPO)" xsd:string -intersection_of: CL:1000691 ! kidney interstitial myofibroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001102 ! -property_value: IAO:0000589 "kidney interstitial fibroblast (KUPO)" xsd:string -intersection_of: CL:1000692 ! kidney interstitial fibroblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001103 ! -property_value: IAO:0000589 "kidney interstitial fibrocyte (KUPO)" xsd:string -intersection_of: CL:1000693 ! kidney interstitial fibrocyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001106 ! -property_value: IAO:0000589 "kidney interstitial alternatively activated macrophage (KUPO)" xsd:string -intersection_of: CL:1000695 ! kidney interstitial alternatively activated macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001107 ! -property_value: IAO:0000589 "kidney interstitial inflammatory macrophage (KUPO)" xsd:string -intersection_of: CL:1000696 ! kidney interstitial inflammatory macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001108 ! -property_value: IAO:0000589 "kidney interstitial suppressor macrophage (KUPO)" xsd:string -intersection_of: CL:1000697 ! kidney interstitial suppressor macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001109 ! -property_value: IAO:0000589 "kidney resident macrophage (KUPO)" xsd:string -intersection_of: CL:1000698 ! kidney resident macrophage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001110 ! -property_value: IAO:0000589 "kidney resident dendritic cell (KUPO)" xsd:string -intersection_of: CL:1000699 ! kidney resident dendritic cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001113 ! -property_value: IAO:0000589 "kidney pelvis smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1000702 ! kidney pelvis smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001114 ! -property_value: IAO:0000589 "kidney pelvis urothelial cell (KUPO)" xsd:string -intersection_of: CL:1000703 ! kidney pelvis urothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001117 ! -property_value: IAO:0000589 "ureter urothelial cell (KUPO)" xsd:string -intersection_of: CL:1000706 ! ureter urothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001119 ! -property_value: IAO:0000589 "ureter adventitial cell (KUPO)" xsd:string -intersection_of: CL:1000708 ! ureter adventitial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001130 ! -property_value: IAO:0000589 "kidney cortex collecting duct principal cell (KUPO)" xsd:string -intersection_of: CL:1000714 ! kidney cortex collecting duct principal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001131 ! -property_value: IAO:0000589 "kidney cortex collecting duct intercalated cell (KUPO)" xsd:string -intersection_of: CL:1000715 ! kidney cortex collecting duct intercalated cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001132 ! -property_value: IAO:0000589 "kidney outer medulla collecting duct principal cell (KUPO)" xsd:string -intersection_of: CL:1000716 ! kidney outer medulla collecting duct principal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001133 ! -property_value: IAO:0000589 "kidney outer medulla collecting duct intercalated cell (KUPO)" xsd:string -intersection_of: CL:1000717 ! kidney outer medulla collecting duct intercalated cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001134 ! -property_value: IAO:0000589 "kidney inner medulla collecting duct principal cell (KUPO)" xsd:string -intersection_of: CL:1000718 ! kidney inner medulla collecting duct principal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001135 ! -property_value: IAO:0000589 "kidney inner medulla collecting duct intercalated cell (KUPO)" xsd:string -intersection_of: CL:1000719 ! kidney inner medulla collecting duct intercalated cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001136 ! -property_value: IAO:0000589 "kidney papillary duct intercalated cell (KUPO)" xsd:string -intersection_of: CL:1000720 ! kidney papillary duct intercalated cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001137 ! -property_value: IAO:0000589 "kidney papillary duct principal cell (KUPO)" xsd:string -intersection_of: CL:1000721 ! kidney papillary duct principal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001032 ! -property_value: IAO:0000589 "glomerular mesangial cell (KUPO)" xsd:string -intersection_of: CL:1000742 ! glomerular mesangial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001036 ! -property_value: IAO:0000589 "glomerular cell (KUPO)" xsd:string -intersection_of: CL:1000746 ! glomerular cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001058 ! -property_value: IAO:0000589 "kidney connecting tubule epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000768 ! kidney connecting tubule epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001093 ! -property_value: IAO:0000589 "kidney inner medulla interstitial cell (KUPO)" xsd:string -intersection_of: CL:1000803 ! kidney inner medulla interstitial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001094 ! -property_value: IAO:0000589 "kidney outer medulla interstitial cell (KUPO)" xsd:string -intersection_of: CL:1000804 ! kidney outer medulla interstitial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001045 ! -property_value: IAO:0000589 "kidney proximal convoluted tubule epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000838 ! kidney proximal convoluted tubule epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001046 ! -property_value: IAO:0000589 "kidney proximal straight tubule epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000839 ! kidney proximal straight tubule epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001056 ! -property_value: IAO:0000589 "kidney distal convoluted tubule epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000849 ! kidney distal convoluted tubule epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001057 ! -property_value: IAO:0000589 "macula densa epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000850 ! macula densa epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001014 ! -property_value: IAO:0000589 "kidney blood vessel cell (KUPO)" xsd:string -intersection_of: CL:1000854 ! kidney blood vessel cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001029 ! -property_value: IAO:0000589 "kidney arterial blood vessel cell (KUPO)" xsd:string -intersection_of: CL:1000891 ! kidney arterial blood vessel cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001030 ! -property_value: IAO:0000589 "kidney capillary endothelial cell (KUPO)" xsd:string -intersection_of: CL:1000892 ! kidney capillary endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001031 ! -property_value: IAO:0000589 "kidney venous blood vessel cell (KUPO)" xsd:string -intersection_of: CL:1000893 ! kidney venous blood vessel cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001047 ! -property_value: IAO:0000589 "kidney loop of henle epithelial cell (KUPO)" xsd:string -intersection_of: CL:1000909 ! kidney loop of henle epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001118 ! -property_value: IAO:0000589 "ureter smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1000979 ! ureter smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001037 ! -property_value: IAO:0000589 "glomerular capillary endothelial cell (KUPO)" xsd:string -intersection_of: CL:1001005 ! glomerular capillary endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001038 ! -property_value: IAO:0000589 "kidney afferent arteriole cell (KUPO)" xsd:string -intersection_of: CL:1001006 ! kidney afferent arteriole cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001041 ! -property_value: IAO:0000589 "kidney efferent arteriole cell (KUPO)" xsd:string -intersection_of: CL:1001009 ! kidney efferent arteriole cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001048 ! -property_value: IAO:0000589 "kidney loop of henle ascending limb epithelial cell (KUPO)" xsd:string -intersection_of: CL:1001016 ! kidney loop of henle ascending limb epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001053 ! -property_value: IAO:0000589 "kidney loop of henle descending limb epithelial cell (KUPO)" xsd:string -intersection_of: CL:1001021 ! kidney loop of henle descending limb epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001065 ! -property_value: IAO:0000589 "peritubular capillary endothelial cell (KUPO)" xsd:string -intersection_of: CL:1001033 ! peritubular capillary endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001068 ! -property_value: IAO:0000589 "vasa recta cell (KUPO)" xsd:string -intersection_of: CL:1001036 ! vasa recta cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001077 ! -property_value: IAO:0000589 "kidney cortex artery cell (KUPO)" xsd:string -intersection_of: CL:1001045 ! kidney cortex artery cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001084 ! -property_value: IAO:0000589 "kidney cortex vein cell (KUPO)" xsd:string -intersection_of: CL:1001052 ! kidney cortex vein cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001096 ! -property_value: IAO:0000589 "kidney artery smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001064 ! kidney artery smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001098 ! -property_value: IAO:0000589 "kidney arteriole smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001066 ! kidney arteriole smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001100 ! -property_value: IAO:0000589 "kidney venous system smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001068 ! kidney venous system smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001039 ! -property_value: IAO:0000589 "kidney afferent arteriole endothelial cell (KUPO)" xsd:string -intersection_of: CL:1001096 ! kidney afferent arteriole endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001040 ! -property_value: IAO:0000589 "kidney afferent arteriole smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001097 ! kidney afferent arteriole smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001042 ! -property_value: IAO:0000589 "kidney efferent arteriole endothelial cell (KUPO)" xsd:string -intersection_of: CL:1001099 ! kidney efferent arteriole endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001043 ! -property_value: IAO:0000589 "kidney efferent arteriole smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001100 ! kidney efferent arteriole smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001049 ! -property_value: IAO:0000589 "kidney loop of henle thick ascending limb epithelial cell (KUPO)" xsd:string -intersection_of: CL:1001106 ! kidney loop of henle thick ascending limb epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001050 ! -property_value: IAO:0000589 "kidney loop of henle thin ascending limb epithelial cell (KUPO)" xsd:string -intersection_of: CL:1001107 ! kidney loop of henle thin ascending limb epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001051 ! -property_value: IAO:0000589 "kidney loop of henle medullary thick ascending limb epithelial cell (KUPO)" xsd:string -intersection_of: CL:1001108 ! kidney loop of henle medullary thick ascending limb epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001052 ! -property_value: IAO:0000589 "kidney loop of henle cortical thick ascending limb epithelial cell (KUPO)" xsd:string -intersection_of: CL:1001109 ! kidney loop of henle cortical thick ascending limb epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001054 ! -property_value: IAO:0000589 "kidney loop of henle thin descending limb epithelial cell (KUPO)" xsd:string -intersection_of: CL:1001111 ! kidney loop of henle thin descending limb epithelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001066 ! -property_value: IAO:0000589 "kidney outer medulla peritubular capillary cell (KUPO)" xsd:string -intersection_of: CL:1001123 ! kidney outer medulla peritubular capillary cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001067 ! -property_value: IAO:0000589 "kidney cortex peritubular capillary cell (KUPO)" xsd:string -intersection_of: CL:1001124 ! kidney cortex peritubular capillary cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001069 ! -property_value: IAO:0000589 "inner renal medulla vasa recta cell (KUPO)" xsd:string -intersection_of: CL:1001126 ! inner renal medulla vasa recta cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001070 ! -property_value: IAO:0000589 "outer renal medulla vasa recta cell (KUPO)" xsd:string -intersection_of: CL:1001127 ! outer renal medulla vasa recta cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001074 ! -property_value: IAO:0000589 "vasa recta ascending limb cell (KUPO)" xsd:string -intersection_of: CL:1001131 ! vasa recta ascending limb cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001078 ! -property_value: IAO:0000589 "arcuate artery cell (KUPO)" xsd:string -intersection_of: CL:1001135 ! arcuate artery cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001081 ! -property_value: IAO:0000589 "interlobular artery cell (KUPO)" xsd:string -intersection_of: CL:1001138 ! interlobular artery cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001085 ! -property_value: IAO:0000589 "arcuate vein cell (KUPO)" xsd:string -intersection_of: CL:1001142 ! arcuate vein cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001088 ! -property_value: IAO:0000589 "interlobular vein cell (KUPO)" xsd:string -intersection_of: CL:1001145 ! interlobular vein cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001075 ! -property_value: IAO:0000589 "inner medulla vasa recta ascending limb cell (KUPO)" xsd:string -intersection_of: CL:1001209 ! inner medulla vasa recta ascending limb cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001076 ! -property_value: IAO:0000589 "outer medulla vasa recta ascending limb cell (KUPO)" xsd:string -intersection_of: CL:1001210 ! outer medulla vasa recta ascending limb cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001079 ! -property_value: IAO:0000589 "arcuate artery endothelial cell (KUPO)" xsd:string -intersection_of: CL:1001213 ! arcuate artery endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001080 ! -property_value: IAO:0000589 "arcuate artery smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001214 ! arcuate artery smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001082 ! -property_value: IAO:0000589 "interlobulary artery endothelial cell (KUPO)" xsd:string -intersection_of: CL:1001216 ! interlobulary artery endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001083 ! -property_value: IAO:0000589 "interlobulary artery smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001217 ! interlobulary artery smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001086 ! -property_value: IAO:0000589 "arcuate vein endothelial cell (KUPO)" xsd:string -intersection_of: CL:1001220 ! arcuate vein endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001087 ! -property_value: IAO:0000589 "arcuate vein smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001221 ! arcuate vein smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001089 ! -property_value: IAO:0000589 "interlobulary vein endothelial cell (KUPO)" xsd:string -intersection_of: CL:1001223 ! interlobulary vein endothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001090 ! -property_value: IAO:0000589 "interlobulary vein smooth muscle cell (KUPO)" xsd:string -intersection_of: CL:1001224 ! interlobulary vein smooth muscle cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001012 ! -property_value: IAO:0000589 "kidney collecting duct cell (KUPO)" xsd:string -intersection_of: CL:1001225 ! kidney collecting duct cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001071 ! -property_value: IAO:0000589 "vasa recta descending limb cell (KUPO)" xsd:string -intersection_of: CL:1001285 ! vasa recta descending limb cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001072 ! -property_value: IAO:0000589 "inner medulla vasa recta descending limb cell (KUPO)" xsd:string -intersection_of: CL:1001286 ! inner medulla vasa recta descending limb cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001073 ! -property_value: IAO:0000589 "outer medulla vasa recta descending limb cell (KUPO)" xsd:string -intersection_of: CL:1001287 ! outer medulla vasa recta descending limb cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001104 ! -property_value: IAO:0000589 "renal interstitial pericyte (KUPO)" xsd:string -intersection_of: CL:1001318 ! renal interstitial pericyte -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001120 ! -property_value: IAO:0000589 "bladder cell (KUPO)" xsd:string -intersection_of: CL:1001319 ! bladder cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001123 ! -property_value: IAO:0000589 "urethra cell (KUPO)" xsd:string -intersection_of: CL:1001320 ! urethra cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001121 ! -property_value: IAO:0000589 "bladder urothelial cell (KUPO)" xsd:string -intersection_of: CL:1001428 ! bladder urothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001124 ! -property_value: IAO:0000589 "urethra urothelial cell (KUPO)" xsd:string -intersection_of: CL:1001430 ! urethra urothelial cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001128 ! -property_value: IAO:0000589 "kidney collecting duct principal cell (KUPO)" xsd:string -intersection_of: CL:1001431 ! kidney collecting duct principal cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:0001129 ! -property_value: IAO:0000589 "kidney collecting duct intercalated cell (KUPO)" xsd:string -intersection_of: CL:1001432 ! kidney collecting duct intercalated cell -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: KUPO:ENTITY -name: KUPO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: http://purl.obolibrary.org/obo/kupo#part_of -equivalent_to: BFO:0000050 - -[Typedef] -id: http://purl.obolibrary.org/obo/kupo#develops_from -equivalent_to: RO:0002225 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-kupo.owl b/src/ontology/bridge/cl-bridge-to-kupo.owl index c9970d41ac..af37e89232 100644 --- a/src/ontology/bridge/cl-bridge-to-kupo.owl +++ b/src/ontology/bridge/cl-bridge-to-kupo.owl @@ -1,19 +1,14 @@ + xmlns:xml="http://www.w3.org/XML/1998/namespace" + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - + @@ -29,238 +24,12 @@ - - - - example of usage - IAO:0000122 - example_of_usage - example_of_usage - true - - - - - - - - contributor - dc-contributor - dc-contributor - http://purl.org/dc/elements/1.1/contributor - true - - - - - - - - creator - dc-creator - dc-creator - http://purl.org/dc/elements/1.1/creator - true - - - - - - - - description - dc-description - dc-description - http://purl.org/dc/elements/1.1/description - true - - - - - - - - publisher - dc-publisher - dc-publisher - http://purl.org/dc/elements/1.1/publisher - true - - - - - - - - derived from resource - dc-source - dc-source - http://purl.org/dc/elements/1.1/source - true - - - - - - - - title - dc-title - dc-title - http://purl.org/dc/elements/1.1/title - true - - - - - - - - is referenced by - dcterms-isReferencedBy - dcterms-isReferencedBy - http://purl.org/dc/terms/isReferencedBy - true - - - - - - - - references - dcterms-references - dcterms-references - http://purl.org/dc/terms/references - true - - - - - - - - Git repository - doap-GitRepository - doap-GitRepository - http://usefulinc.com/ns/doap#GitRepository - true - - - - - - - - SVN repository - doap-SVNRepository - doap-SVNRepository - http://usefulinc.com/ns/doap#SVNRepository - true - - - - - - - - bug database - doap-bug-database - doap-bug-database - http://usefulinc.com/ns/doap#bug-database - true - - - - - - - - wiki - doap-wiki - doap-wiki - http://usefulinc.com/ns/doap#wiki - true - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - see also - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - seeAlso - true - - - - - - - - depicted_by - foaf-depicted_by - foaf-depicted_by - http://xmlns.com/foaf/0.1/depicted_by - true - - - - - - - - homepage - foaf-homepage - foaf-homepage - http://xmlns.com/foaf/0.1/homepage - true - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - - - - - - - - - http://purl.obolibrary.org/obo/kupo#develops_from - - - - - - - - http://purl.obolibrary.org/obo/kupo#part_of - + @@ -1081,8 +810,7 @@ - KUPO:0000002 - cell (KUPO) + cell (human) @@ -1101,8 +829,7 @@ - KUPO:0001010 - kidney cell (KUPO) + kidney cell (human) @@ -1121,8 +848,7 @@ - KUPO:0001012 - kidney collecting duct cell (KUPO) + kidney collecting duct cell (human) @@ -1141,8 +867,7 @@ - KUPO:0001013 - kidney interstitial cell (KUPO) + kidney interstitial cell (human) @@ -1161,8 +886,7 @@ - KUPO:0001014 - kidney blood vessel cell (KUPO) + kidney blood vessel cell (human) @@ -1181,8 +905,7 @@ - KUPO:0001015 - kidney nerve cell (KUPO) + kidney nerve cell (human) @@ -1201,8 +924,7 @@ - KUPO:0001016 - renal cortical epithelial cell (KUPO) + renal cortical epithelial cell (human) @@ -1221,8 +943,7 @@ - KUPO:0001017 - kidney medulla cell (KUPO) + kidney medulla cell (human) @@ -1241,8 +962,7 @@ - KUPO:0001018 - kidney pelvis cell (KUPO) + kidney pelvis cell (human) @@ -1261,8 +981,7 @@ - KUPO:0001019 - kidney epithelial cell (KUPO) + kidney epithelial cell (human) @@ -1281,8 +1000,7 @@ - KUPO:0001020 - kidney tubule cell (KUPO) + kidney tubule cell (human) @@ -1301,8 +1019,7 @@ - KUPO:0001021 - kidney corpuscule cell (KUPO) + kidney corpuscule cell (human) @@ -1321,8 +1038,7 @@ - KUPO:0001022 - epithelial cell of renal tubule (KUPO) + nephron tubule epithelial cell (human) @@ -1341,8 +1057,7 @@ - KUPO:0001023 - kidney glomerular epithelial cell (KUPO) + kidney glomerular epithelial cell (human) @@ -1361,8 +1076,7 @@ - KUPO:0001024 - kidney cortex tubule cell (KUPO) + kidney cortex tubule cell (human) @@ -1381,8 +1095,7 @@ - KUPO:0001025 - kidney outer medulla cell (KUPO) + kidney outer medulla cell (human) @@ -1401,8 +1114,7 @@ - KUPO:0001026 - kidney inner medulla cell (KUPO) + kidney inner medulla cell (human) @@ -1421,8 +1133,7 @@ - KUPO:0001028 - juxtaglomerular complex cell (KUPO) + juxtaglomerular complex cell (human) @@ -1441,8 +1152,7 @@ - KUPO:0001029 - kidney arterial blood vessel cell (KUPO) + kidney arterial blood vessel cell (human) @@ -1461,8 +1171,7 @@ - KUPO:0001030 - kidney capillary endothelial cell (KUPO) + kidney capillary endothelial cell (human) @@ -1481,8 +1190,7 @@ - KUPO:0001031 - kidney venous blood vessel cell (KUPO) + kidney venous blood vessel cell (human) @@ -1501,8 +1209,7 @@ - KUPO:0001032 - glomerular mesangial cell (KUPO) + glomerular mesangial cell (human) @@ -1521,8 +1228,7 @@ - KUPO:0001033 - extraglomerular mesangial cell (KUPO) + extraglomerular mesangial cell (human) @@ -1541,8 +1247,7 @@ - KUPO:0001034 - epithelial cell of glomerular capsule (KUPO) + epithelial cell of glomerular capsule (human) @@ -1561,8 +1266,7 @@ - KUPO:0001035 - parietal epithelial cell (KUPO) + parietal epithelial cell (human) @@ -1581,8 +1285,7 @@ - KUPO:0001036 - glomerular cell (KUPO) + glomerular cell (human) @@ -1601,8 +1304,7 @@ - KUPO:0001037 - glomerular capillary endothelial cell (KUPO) + glomerular capillary endothelial cell (human) @@ -1621,8 +1323,7 @@ - KUPO:0001038 - kidney afferent arteriole cell (KUPO) + kidney afferent arteriole cell (human) @@ -1641,8 +1342,7 @@ - KUPO:0001039 - kidney afferent arteriole endothelial cell (KUPO) + kidney afferent arteriole endothelial cell (human) @@ -1661,8 +1361,7 @@ - KUPO:0001040 - kidney afferent arteriole smooth muscle cell (KUPO) + kidney afferent arteriole smooth muscle cell (human) @@ -1681,8 +1380,7 @@ - KUPO:0001041 - kidney efferent arteriole cell (KUPO) + kidney efferent arteriole cell (human) @@ -1701,8 +1399,7 @@ - KUPO:0001042 - kidney efferent arteriole endothelial cell (KUPO) + kidney efferent arteriole endothelial cell (human) @@ -1721,8 +1418,7 @@ - KUPO:0001043 - kidney efferent arteriole smooth muscle cell (KUPO) + kidney efferent arteriole smooth muscle cell (human) @@ -1741,8 +1437,7 @@ - KUPO:0001044 - epithelial cell of proximal tubule (KUPO) + epithelial cell of proximal tubule (human) @@ -1761,8 +1456,7 @@ - KUPO:0001045 - kidney proximal convoluted tubule epithelial cell (KUPO) + kidney proximal convoluted tubule epithelial cell (human) @@ -1781,8 +1475,7 @@ - KUPO:0001046 - kidney proximal straight tubule epithelial cell (KUPO) + kidney proximal straight tubule epithelial cell (human) @@ -1801,8 +1494,7 @@ - KUPO:0001047 - kidney loop of henle epithelial cell (KUPO) + kidney loop of Henle epithelial cell (human) @@ -1821,8 +1513,7 @@ - KUPO:0001048 - kidney loop of henle ascending limb epithelial cell (KUPO) + kidney loop of Henle ascending limb epithelial cell (human) @@ -1841,8 +1532,7 @@ - KUPO:0001049 - kidney loop of henle thick ascending limb epithelial cell (KUPO) + kidney loop of Henle thick ascending limb epithelial cell (human) @@ -1861,8 +1551,7 @@ - KUPO:0001050 - kidney loop of henle thin ascending limb epithelial cell (KUPO) + kidney loop of Henle thin ascending limb epithelial cell (human) @@ -1881,8 +1570,7 @@ - KUPO:0001051 - kidney loop of henle medullary thick ascending limb epithelial cell (KUPO) + kidney loop of Henle medullary thick ascending limb epithelial cell (human) @@ -1901,8 +1589,7 @@ - KUPO:0001052 - kidney loop of henle cortical thick ascending limb epithelial cell (KUPO) + kidney loop of Henle cortical thick ascending limb epithelial cell (human) @@ -1921,8 +1608,7 @@ - KUPO:0001053 - kidney loop of henle descending limb epithelial cell (KUPO) + kidney loop of Henle descending limb epithelial cell (human) @@ -1941,8 +1627,7 @@ - KUPO:0001054 - kidney loop of henle thin descending limb epithelial cell (KUPO) + kidney loop of Henle thin descending limb epithelial cell (human) @@ -1961,8 +1646,7 @@ - KUPO:0001055 - epithelial cell of distal tubule (KUPO) + epithelial cell of distal tubule (human) @@ -1981,8 +1665,7 @@ - KUPO:0001056 - kidney distal convoluted tubule epithelial cell (KUPO) + kidney distal convoluted tubule epithelial cell (human) @@ -2001,8 +1684,7 @@ - KUPO:0001057 - macula densa epithelial cell (KUPO) + macula densa epithelial cell (human) @@ -2021,8 +1703,7 @@ - KUPO:0001058 - kidney connecting tubule epithelial cell (KUPO) + kidney connecting tubule epithelial cell (human) @@ -2041,8 +1722,7 @@ - KUPO:0001059 - kidney collecting duct epithelial cell (KUPO) + kidney collecting duct epithelial cell (human) @@ -2061,8 +1741,7 @@ - KUPO:0001060 - kidney medulla collecting duct epithelial cell (KUPO) + kidney medulla collecting duct epithelial cell (human) @@ -2081,8 +1760,7 @@ - KUPO:0001061 - kidney inner medulla collecting duct epithelial cell (KUPO) + kidney inner medulla collecting duct epithelial cell (human) @@ -2101,8 +1779,7 @@ - KUPO:0001062 - kidney outer medulla collecting duct epithelial cell (KUPO) + kidney outer medulla collecting duct epithelial cell (human) @@ -2121,8 +1798,7 @@ - KUPO:0001063 - kidney cortex collecting duct epithelial cell (KUPO) + kidney cortex collecting duct epithelial cell (human) @@ -2141,8 +1817,7 @@ - KUPO:0001064 - kidney papillary duct principal epithelial cell (KUPO) + kidney papillary duct principal epithelial cell (human) @@ -2161,8 +1836,7 @@ - KUPO:0001065 - peritubular capillary endothelial cell (KUPO) + peritubular capillary endothelial cell (human) @@ -2181,8 +1855,7 @@ - KUPO:0001066 - kidney outer medulla peritubular capillary cell (KUPO) + kidney outer medulla peritubular capillary cell (human) @@ -2201,8 +1874,7 @@ - KUPO:0001067 - kidney cortex peritubular capillary cell (KUPO) + kidney cortex peritubular capillary cell (human) @@ -2221,8 +1893,7 @@ - KUPO:0001068 - vasa recta cell (KUPO) + vasa recta cell (human) @@ -2241,8 +1912,7 @@ - KUPO:0001069 - inner renal medulla vasa recta cell (KUPO) + inner renal medulla vasa recta cell (human) @@ -2261,8 +1931,7 @@ - KUPO:0001070 - outer renal medulla vasa recta cell (KUPO) + outer renal medulla vasa recta cell (human) @@ -2281,8 +1950,7 @@ - KUPO:0001071 - vasa recta descending limb cell (KUPO) + vasa recta descending limb cell (human) @@ -2301,8 +1969,7 @@ - KUPO:0001072 - inner medulla vasa recta descending limb cell (KUPO) + inner medulla vasa recta descending limb cell (human) @@ -2321,8 +1988,7 @@ - KUPO:0001073 - outer medulla vasa recta descending limb cell (KUPO) + outer medulla vasa recta descending limb cell (human) @@ -2341,8 +2007,7 @@ - KUPO:0001074 - vasa recta ascending limb cell (KUPO) + vasa recta ascending limb cell (human) @@ -2361,8 +2026,7 @@ - KUPO:0001075 - inner medulla vasa recta ascending limb cell (KUPO) + inner medulla vasa recta ascending limb cell (human) @@ -2381,8 +2045,7 @@ - KUPO:0001076 - outer medulla vasa recta ascending limb cell (KUPO) + outer medulla vasa recta ascending limb cell (human) @@ -2401,8 +2064,7 @@ - KUPO:0001077 - kidney cortex artery cell (KUPO) + kidney cortex artery cell (human) @@ -2421,8 +2083,7 @@ - KUPO:0001078 - arcuate artery cell (KUPO) + arcuate artery cell (human) @@ -2441,8 +2102,7 @@ - KUPO:0001079 - arcuate artery endothelial cell (KUPO) + arcuate artery endothelial cell (human) @@ -2461,8 +2121,7 @@ - KUPO:0001080 - arcuate artery smooth muscle cell (KUPO) + arcuate artery smooth muscle cell (human) @@ -2481,8 +2140,7 @@ - KUPO:0001081 - interlobular artery cell (KUPO) + interlobular artery cell (human) @@ -2501,8 +2159,7 @@ - KUPO:0001082 - interlobulary artery endothelial cell (KUPO) + interlobulary artery endothelial cell (human) @@ -2521,8 +2178,7 @@ - KUPO:0001083 - interlobulary artery smooth muscle cell (KUPO) + interlobulary artery smooth muscle cell (human) @@ -2541,8 +2197,7 @@ - KUPO:0001084 - kidney cortex vein cell (KUPO) + kidney cortex vein cell (human) @@ -2561,8 +2216,7 @@ - KUPO:0001085 - arcuate vein cell (KUPO) + arcuate vein cell (human) @@ -2581,8 +2235,7 @@ - KUPO:0001086 - arcuate vein endothelial cell (KUPO) + arcuate vein endothelial cell (human) @@ -2601,8 +2254,7 @@ - KUPO:0001087 - arcuate vein smooth muscle cell (KUPO) + arcuate vein smooth muscle cell (human) @@ -2621,8 +2273,7 @@ - KUPO:0001088 - interlobular vein cell (KUPO) + interlobular vein cell (human) @@ -2641,8 +2292,7 @@ - KUPO:0001089 - interlobulary vein endothelial cell (KUPO) + interlobulary vein endothelial cell (human) @@ -2661,8 +2311,7 @@ - KUPO:0001090 - interlobulary vein smooth muscle cell (KUPO) + interlobulary vein smooth muscle cell (human) @@ -2681,8 +2330,7 @@ - KUPO:0001091 - kidney cortex interstitial cell (KUPO) + kidney cortex interstitial cell (human) @@ -2701,8 +2349,7 @@ - KUPO:0001092 - kidney medulla interstitial cell (KUPO) + kidney medulla interstitial cell (human) @@ -2721,8 +2368,7 @@ - KUPO:0001093 - kidney inner medulla interstitial cell (KUPO) + kidney inner medulla interstitial cell (human) @@ -2741,8 +2387,7 @@ - KUPO:0001094 - kidney outer medulla interstitial cell (KUPO) + kidney outer medulla interstitial cell (human) @@ -2761,8 +2406,7 @@ - KUPO:0001095 - endothelial cell of artery (KUPO) + endothelial cell of artery (human) @@ -2781,8 +2425,7 @@ - KUPO:0001096 - kidney artery smooth muscle cell (KUPO) + kidney artery smooth muscle cell (human) @@ -2801,8 +2444,7 @@ - KUPO:0001097 - endothelial cell of arteriole (KUPO) + endothelial cell of arteriole (human) @@ -2821,8 +2463,7 @@ - KUPO:0001098 - kidney arteriole smooth muscle cell (KUPO) + kidney arteriole smooth muscle cell (human) @@ -2841,8 +2482,7 @@ - KUPO:0001099 - vein endothelial cell (KUPO) + vein endothelial cell (human) @@ -2861,8 +2501,7 @@ - KUPO:0001100 - kidney venous system smooth muscle cell (KUPO) + kidney venous system smooth muscle cell (human) @@ -2881,8 +2520,7 @@ - KUPO:0001101 - kidney interstitial myofibroblast (KUPO) + kidney interstitial myofibroblast (human) @@ -2901,8 +2539,7 @@ - KUPO:0001102 - kidney interstitial fibroblast (KUPO) + kidney interstitial fibroblast (human) @@ -2921,8 +2558,7 @@ - KUPO:0001103 - kidney interstitial fibrocyte (KUPO) + kidney interstitial fibrocyte (human) @@ -2941,8 +2577,7 @@ - KUPO:0001104 - renal interstitial pericyte (KUPO) + renal interstitial pericyte (human) @@ -2961,8 +2596,7 @@ - KUPO:0001106 - kidney interstitial alternatively activated macrophage (KUPO) + kidney interstitial alternatively activated macrophage (human) @@ -2981,8 +2615,7 @@ - KUPO:0001107 - kidney interstitial inflammatory macrophage (KUPO) + kidney interstitial inflammatory macrophage (human) @@ -3001,8 +2634,7 @@ - KUPO:0001108 - kidney interstitial suppressor macrophage (KUPO) + kidney interstitial suppressor macrophage (human) @@ -3021,8 +2653,7 @@ - KUPO:0001109 - kidney resident macrophage (KUPO) + kidney resident macrophage (human) @@ -3041,8 +2672,7 @@ - KUPO:0001110 - kidney resident dendritic cell (KUPO) + kidney resident dendritic cell (human) @@ -3061,8 +2691,7 @@ - KUPO:0001111 - inner renal cortex cell (KUPO) + inner renal cortex cell (human) @@ -3081,8 +2710,7 @@ - KUPO:0001112 - papillary tips cell (KUPO) + papillary tips cell (human) @@ -3101,8 +2729,7 @@ - KUPO:0001113 - kidney pelvis smooth muscle cell (KUPO) + kidney pelvis smooth muscle cell (human) @@ -3121,8 +2748,7 @@ - KUPO:0001114 - kidney pelvis urothelial cell (KUPO) + kidney pelvis urothelial cell (human) @@ -3141,8 +2767,7 @@ - KUPO:0001115 - lower urinary tract cell (KUPO) + lower urinary tract cell (human) @@ -3161,8 +2786,7 @@ - KUPO:0001116 - ureteral cell (KUPO) + ureteral cell (human) @@ -3181,8 +2805,7 @@ - KUPO:0001117 - ureter urothelial cell (KUPO) + ureter urothelial cell (human) @@ -3201,8 +2824,7 @@ - KUPO:0001118 - ureter smooth muscle cell (KUPO) + ureter smooth muscle cell (human) @@ -3221,8 +2843,7 @@ - KUPO:0001119 - ureter adventitial cell (KUPO) + ureter adventitial cell (human) @@ -3241,8 +2862,7 @@ - KUPO:0001120 - bladder cell (KUPO) + bladder cell (human) @@ -3261,8 +2881,7 @@ - KUPO:0001121 - bladder urothelial cell (KUPO) + bladder urothelial cell (human) @@ -3281,8 +2900,7 @@ - KUPO:0001122 - smooth muscle cell of bladder (KUPO) + smooth muscle cell of bladder (human) @@ -3301,8 +2919,7 @@ - KUPO:0001123 - urethra cell (KUPO) + urethra cell (human) @@ -3321,8 +2938,7 @@ - KUPO:0001124 - urethra urothelial cell (KUPO) + urethra urothelial cell (human) @@ -3341,8 +2957,7 @@ - KUPO:0001128 - kidney collecting duct principal cell (KUPO) + kidney collecting duct principal cell (human) @@ -3361,8 +2976,7 @@ - KUPO:0001129 - kidney collecting duct intercalated cell (KUPO) + kidney collecting duct intercalated cell (human) @@ -3381,8 +2995,7 @@ - KUPO:0001130 - kidney cortex collecting duct principal cell (KUPO) + kidney cortex collecting duct principal cell (human) @@ -3401,8 +3014,7 @@ - KUPO:0001131 - kidney cortex collecting duct intercalated cell (KUPO) + kidney cortex collecting duct intercalated cell (human) @@ -3421,8 +3033,7 @@ - KUPO:0001132 - kidney outer medulla collecting duct principal cell (KUPO) + kidney outer medulla collecting duct principal cell (human) @@ -3441,8 +3052,7 @@ - KUPO:0001133 - kidney outer medulla collecting duct intercalated cell (KUPO) + kidney outer medulla collecting duct intercalated cell (human) @@ -3461,8 +3071,7 @@ - KUPO:0001134 - kidney inner medulla collecting duct principal cell (KUPO) + kidney inner medulla collecting duct principal cell (human) @@ -3481,8 +3090,7 @@ - KUPO:0001135 - kidney inner medulla collecting duct intercalated cell (KUPO) + kidney inner medulla collecting duct intercalated cell (human) @@ -3501,8 +3109,7 @@ - KUPO:0001136 - kidney papillary duct intercalated cell (KUPO) + kidney papillary duct intercalated cell (human) @@ -3521,34 +3128,7 @@ - KUPO:0001137 - kidney papillary duct principal cell (KUPO) - - - - - - - - KUPO entity - - - - - - - - - - - - - - - - - - KUPO:ENTITY + kidney papillary duct principal cell (human) @@ -3556,15 +3136,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/cl-bridge-to-ma.obo b/src/ontology/bridge/cl-bridge-to-ma.obo deleted file mode 100644 index 92ebea8632..0000000000 --- a/src/ontology/bridge/cl-bridge-to-ma.obo +++ /dev/null @@ -1,158 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-ma -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to ma" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between adult moouse anatomy and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-creator "Terry Hayamizu" xsd:string -property_value: dc-contributor "George Gkoutos" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/ma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: MA:0002765 ! -property_value: IAO:0000589 "male germ cell (post-embryonic mouse)" xsd:string -intersection_of: CL:0000015 ! male germ cell -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000388 ! -property_value: IAO:0000589 "female germ cell (post-embryonic mouse)" xsd:string -intersection_of: CL:0000021 ! female germ cell -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000388 ! -property_value: IAO:0000589 "egg cell (post-embryonic mouse)" xsd:string -intersection_of: CL:0000025 ! egg cell -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002419 ! -property_value: IAO:0000589 "type B pancreatic cell (post-embryonic mouse)" xsd:string -intersection_of: CL:0000169 ! type B pancreatic cell -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:ENTITY -name: MA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-ma.owl b/src/ontology/bridge/cl-bridge-to-ma.owl index f9e552cdd4..4c5b012cca 100644 --- a/src/ontology/bridge/cl-bridge-to-ma.owl +++ b/src/ontology/bridge/cl-bridge-to-ma.owl @@ -7,21 +7,14 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - George Gkoutos - CL editors - Terry Hayamizu - Taxonomic equivalence axioms between adult moouse anatomy and CL - CL bridge to ma - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + George Gkoutos + CL editors + Terry Hayamizu + Taxonomic equivalence axioms between adult mouse anatomy and CL. + CL bridge to ma @@ -37,18 +30,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -57,215 +38,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -282,42 +73,7 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -338,46 +94,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - egg cell (post-embryonic mouse) - female germ cell (post-embryonic mouse) - MA:0000388 - - - - @@ -392,8 +114,7 @@ - type B pancreatic cell (post-embryonic mouse) - MA:0002419 + type B pancreatic cell (post-embryonic mouse) @@ -412,34 +133,7 @@ - male germ cell (post-embryonic mouse) - MA:0002765 - - - - - - - - - - - - - - - - - - - - - - - - - MA:ENTITY - MA entity + male germ cell (post-embryonic mouse) @@ -447,15 +141,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/cl-bridge-to-mba.obo b/src/ontology/bridge/cl-bridge-to-mba.obo deleted file mode 100644 index c23de706c5..0000000000 --- a/src/ontology/bridge/cl-bridge-to-mba.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-mba -data-version: 2022-05-27 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: MBA:ENTITY -name: MBA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-mba.owl b/src/ontology/bridge/cl-bridge-to-mba.owl deleted file mode 100644 index 095355b854..0000000000 --- a/src/ontology/bridge/cl-bridge-to-mba.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - MBA:ENTITY - MBA entity - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-ncit.obo b/src/ontology/bridge/cl-bridge-to-ncit.obo deleted file mode 100644 index ac2b642089..0000000000 --- a/src/ontology/bridge/cl-bridge-to-ncit.obo +++ /dev/null @@ -1,141 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-ncit -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: NCIT:C12482 ! -property_value: IAO:0000589 "fibroblast (NCIT)" xsd:string -is_a: CL:0000057 ! fibroblast - -[Term] -id: NCIT:C12597 ! -property_value: IAO:0000589 "germ cell (NCIT)" xsd:string -is_a: CL:0000586 ! germ cell - -[Term] -id: NCIT:C12529 ! -property_value: IAO:0000589 "leukocyte (NCIT)" xsd:string -is_a: CL:0000738 ! leukocyte - -[Term] -id: NCIT:C32210 ! -property_value: IAO:0000589 "bladder urothelial cell (NCIT)" xsd:string -is_a: CL:1001428 ! bladder urothelial cell - -[Term] -id: NCIT:C32429 ! -property_value: IAO:0000589 "decidual cell (NCIT)" xsd:string -is_a: CL:2000002 ! decidual cell - -[Term] -id: NCIT:C12645 ! -property_value: IAO:0000589 "anterior horn motor neuron (NCIT)" xsd:string -is_a: CL:2000048 ! anterior horn motor neuron - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-ncit.owl b/src/ontology/bridge/cl-bridge-to-ncit.owl index cf26d6f9d6..f22b77611d 100644 --- a/src/ontology/bridge/cl-bridge-to-ncit.owl +++ b/src/ontology/bridge/cl-bridge-to-ncit.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - + diff --git a/src/ontology/bridge/cl-bridge-to-og.obo b/src/ontology/bridge/cl-bridge-to-og.obo deleted file mode 100644 index 3ad3f94522..0000000000 --- a/src/ontology/bridge/cl-bridge-to-og.obo +++ /dev/null @@ -1,111 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-og -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-og.owl b/src/ontology/bridge/cl-bridge-to-og.owl deleted file mode 100644 index f6b3111972..0000000000 --- a/src/ontology/bridge/cl-bridge-to-og.owl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-oges.obo b/src/ontology/bridge/cl-bridge-to-oges.obo deleted file mode 100644 index e4dae2e497..0000000000 --- a/src/ontology/bridge/cl-bridge-to-oges.obo +++ /dev/null @@ -1,111 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-oges -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-oges.owl b/src/ontology/bridge/cl-bridge-to-oges.owl deleted file mode 100644 index 8b8df7b4da..0000000000 --- a/src/ontology/bridge/cl-bridge-to-oges.owl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-pba.obo b/src/ontology/bridge/cl-bridge-to-pba.obo deleted file mode 100644 index fd319e7877..0000000000 --- a/src/ontology/bridge/cl-bridge-to-pba.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-pba -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: PBA:ENTITY -name: PBA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9443 -relationship: only_in_taxon NCBITaxon:9443 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-pba.owl b/src/ontology/bridge/cl-bridge-to-pba.owl deleted file mode 100644 index 4b76632389..0000000000 --- a/src/ontology/bridge/cl-bridge-to-pba.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - PBA:ENTITY - PBA entity - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-sctid.obo b/src/ontology/bridge/cl-bridge-to-sctid.obo deleted file mode 100644 index a13881871c..0000000000 --- a/src/ontology/bridge/cl-bridge-to-sctid.obo +++ /dev/null @@ -1,121 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-sctid -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to SNOMED-CT" xsd:string -property_value: dc-description "Rough subclass axioms between SNOMED-CT and CL. Note that in SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree." xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "OBOL" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: SCTID:176770005 ! -property_value: IAO:0000589 "parafollicular cell (SCTID)" xsd:string -is_a: CL:0000570 ! parafollicular cell - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-sctid.owl b/src/ontology/bridge/cl-bridge-to-sctid.owl index 0750937790..cae52585a5 100644 --- a/src/ontology/bridge/cl-bridge-to-sctid.owl +++ b/src/ontology/bridge/cl-bridge-to-sctid.owl @@ -7,19 +7,13 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - OBOL - CL editors - Rough subclass axioms between SNOMED-CT and CL. Note that in SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree. - CL bridge to SNOMED-CT - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + OBOL + CL editors + Rough subclass axioms between SNOMED-CT and CL. Note that SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree. + CL bridge to SNOMED-CT @@ -35,18 +29,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -55,256 +37,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -329,12 +80,11 @@ - parafollicular cell (SCTID) - SCTID:176770005 + parafollicular cell (SCTID) - + diff --git a/src/ontology/bridge/cl-bridge-to-spd.obo b/src/ontology/bridge/cl-bridge-to-spd.obo deleted file mode 100644 index 4be25cbcfd..0000000000 --- a/src/ontology/bridge/cl-bridge-to-spd.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-spd -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: SPD:ENTITY -name: SPD entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6893 -relationship: only_in_taxon NCBITaxon:6893 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-spd.owl b/src/ontology/bridge/cl-bridge-to-spd.owl deleted file mode 100644 index 1b9c68015d..0000000000 --- a/src/ontology/bridge/cl-bridge-to-spd.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - SPD:ENTITY - SPD entity - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-tads.obo b/src/ontology/bridge/cl-bridge-to-tads.obo deleted file mode 100644 index d3026a8661..0000000000 --- a/src/ontology/bridge/cl-bridge-to-tads.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-tads -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: TADS:ENTITY -name: TADS entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6939 -relationship: only_in_taxon NCBITaxon:6939 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-tads.owl b/src/ontology/bridge/cl-bridge-to-tads.owl deleted file mode 100644 index 6da9924da9..0000000000 --- a/src/ontology/bridge/cl-bridge-to-tads.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TADS:ENTITY - TADS entity - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-tgma.obo b/src/ontology/bridge/cl-bridge-to-tgma.obo deleted file mode 100644 index f8ce387430..0000000000 --- a/src/ontology/bridge/cl-bridge-to-tgma.obo +++ /dev/null @@ -1,127 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-tgma -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: TGMA:ENTITY -name: TGMA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:44484 -relationship: only_in_taxon NCBITaxon:44484 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-tgma.owl b/src/ontology/bridge/cl-bridge-to-tgma.owl deleted file mode 100644 index 69b8b7ec6f..0000000000 --- a/src/ontology/bridge/cl-bridge-to-tgma.owl +++ /dev/null @@ -1,362 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TGMA:ENTITY - TGMA entity - - - - - - - - - - - - - diff --git a/src/ontology/bridge/cl-bridge-to-wbbt.obo b/src/ontology/bridge/cl-bridge-to-wbbt.obo deleted file mode 100644 index 6ba133beca..0000000000 --- a/src/ontology/bridge/cl-bridge-to-wbbt.obo +++ /dev/null @@ -1,277 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-wbbt -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: WBbt:0004017 ! -property_value: IAO:0000589 "cell (worm)" xsd:string -intersection_of: CL:0000000 ! cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006799 ! -property_value: IAO:0000589 "spermatocyte (worm)" xsd:string -intersection_of: CL:0000017 ! spermatocyte -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006800 ! -property_value: IAO:0000589 "spermatid (worm)" xsd:string -intersection_of: CL:0000018 ! spermatid -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006798 ! -property_value: IAO:0000589 "sperm (worm)" xsd:string -intersection_of: CL:0000019 ! sperm -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006797 ! -property_value: IAO:0000589 "oocyte (worm)" xsd:string -intersection_of: CL:0000023 ! oocyte -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0003672 ! -property_value: IAO:0000589 "epithelial cell (worm)" xsd:string -intersection_of: CL:0000066 ! epithelial cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005113 ! -property_value: IAO:0000589 "interneuron (worm)" xsd:string -intersection_of: CL:0000099 ! interneuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005409 ! -property_value: IAO:0000589 "motor neuron (worm)" xsd:string -intersection_of: CL:0000100 ! motor neuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005759 ! -property_value: IAO:0000589 "sensory neuron (worm)" xsd:string -intersection_of: CL:0000101 ! sensory neuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006840 ! -property_value: IAO:0000589 "cholinergic neuron (worm)" xsd:string -intersection_of: CL:0000108 ! cholinergic neuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0003675 ! -property_value: IAO:0000589 "muscle cell (worm)" xsd:string -intersection_of: CL:0000187 ! muscle cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0008074 ! -property_value: IAO:0000589 "multinucleate cell (worm)" xsd:string -intersection_of: CL:0000228 ! multinucleate cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0007846 ! -property_value: IAO:0000589 "Caenorhabditis hypodermal cell (worm)" xsd:string -intersection_of: CL:0000411 ! Caenorhabditis hypodermal cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005793 ! -property_value: IAO:0000589 "arcade cell (worm)" xsd:string -intersection_of: CL:0000418 ! arcade cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005751 ! -property_value: IAO:0000589 "coelomocyte (worm)" xsd:string -intersection_of: CL:0000421 ! coelomocyte -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005812 ! -property_value: IAO:0000589 "excretory cell (worm)" xsd:string -intersection_of: CL:0000424 ! excretory cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0003679 ! -property_value: IAO:0000589 "neuron (worm)" xsd:string -intersection_of: CL:0000540 ! neuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006796 ! -property_value: IAO:0000589 "germ cell (worm)" xsd:string -intersection_of: CL:0000586 ! germ cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005190 ! -property_value: IAO:0000589 "GABAergic neuron (worm)" xsd:string -intersection_of: CL:0000617 ! GABAergic neuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006829 ! -property_value: IAO:0000589 "glutamatergic neuron (worm)" xsd:string -intersection_of: CL:0000679 ! glutamatergic neuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006746 ! -property_value: IAO:0000589 "dopaminergic neuron (worm)" xsd:string -intersection_of: CL:0000700 ! dopaminergic neuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006837 ! -property_value: IAO:0000589 "serotonergic neuron (worm)" xsd:string -intersection_of: CL:0000850 ! serotonergic neuron -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0008429 ! -property_value: IAO:0000589 "polar body (worm)" xsd:string -intersection_of: CL:0002090 ! polar body -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0007028 ! -property_value: IAO:0000589 "embryonic cell (metazoa) (worm)" xsd:string -intersection_of: CL:0002321 ! embryonic cell (metazoa) -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0008378 ! -property_value: IAO:0000589 "somatic cell (worm)" xsd:string -intersection_of: CL:0002371 ! somatic cell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:ENTITY -name: WBbt entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6237 -relationship: only_in_taxon NCBITaxon:6237 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-wbbt.owl b/src/ontology/bridge/cl-bridge-to-wbbt.owl index 7b7ed6aa14..56408ab2b3 100644 --- a/src/ontology/bridge/cl-bridge-to-wbbt.owl +++ b/src/ontology/bridge/cl-bridge-to-wbbt.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -481,12 +214,6 @@ - - - - - - @@ -501,8 +228,7 @@ - epithelial cell (worm) - WBbt:0003672 + epithelial cell (worm) @@ -521,8 +247,7 @@ - muscle cell (worm) - WBbt:0003675 + muscle cell (worm) @@ -541,8 +266,7 @@ - neuron (worm) - WBbt:0003679 + neuron (worm) @@ -561,8 +285,7 @@ - cell (worm) - WBbt:0004017 + cell (worm) @@ -581,8 +304,7 @@ - interneuron (worm) - WBbt:0005113 + interneuron (worm) @@ -601,8 +323,7 @@ - GABAergic neuron (worm) - WBbt:0005190 + GABAergic neuron (worm) @@ -621,8 +342,7 @@ - motor neuron (worm) - WBbt:0005409 + motor neuron (worm) @@ -641,8 +361,7 @@ - coelomocyte (worm) - WBbt:0005751 + coelomocyte (worm) @@ -661,8 +380,7 @@ - sensory neuron (worm) - WBbt:0005759 + sensory neuron (worm) @@ -681,8 +399,7 @@ - arcade cell (worm) - WBbt:0005793 + arcade cell (worm) @@ -701,8 +418,7 @@ - excretory cell (worm) - WBbt:0005812 + excretory cell (worm) @@ -721,8 +437,7 @@ - dopaminergic neuron (worm) - WBbt:0006746 + dopaminergic neuron (worm) @@ -741,8 +456,7 @@ - germ cell (worm) - WBbt:0006796 + germ cell (worm) @@ -761,8 +475,7 @@ - oocyte (worm) - WBbt:0006797 + oocyte (worm) @@ -781,8 +494,7 @@ - sperm (worm) - WBbt:0006798 + sperm (worm) @@ -801,8 +513,7 @@ - spermatocyte (worm) - WBbt:0006799 + spermatocyte (worm) @@ -821,8 +532,7 @@ - spermatid (worm) - WBbt:0006800 + spermatid (worm) @@ -841,8 +551,7 @@ - glutamatergic neuron (worm) - WBbt:0006829 + glutamatergic neuron (worm) @@ -861,8 +570,7 @@ - serotonergic neuron (worm) - WBbt:0006837 + serotonergic neuron (worm) @@ -881,8 +589,7 @@ - cholinergic neuron (worm) - WBbt:0006840 + cholinergic neuron (worm) @@ -901,8 +608,7 @@ - embryonic cell (metazoa) (worm) - WBbt:0007028 + embryonic cell (metazoa) (worm) @@ -921,8 +627,7 @@ - Caenorhabditis hypodermal cell (worm) - WBbt:0007846 + Caenorhabditis hypodermal cell (worm) @@ -941,8 +646,7 @@ - multinucleate cell (worm) - WBbt:0008074 + multinucleate cell (worm) @@ -961,8 +665,7 @@ - somatic cell (worm) - WBbt:0008378 + somatic cell (worm) @@ -981,38 +684,11 @@ - polar body (worm) - WBbt:0008429 - - - - - - - - - - - - - - - - - - - - - - - - - WBbt:ENTITY - WBbt entity + polar body (worm) - + diff --git a/src/ontology/bridge/cl-bridge-to-xao.obo b/src/ontology/bridge/cl-bridge-to-xao.obo deleted file mode 100644 index a4980efe0c..0000000000 --- a/src/ontology/bridge/cl-bridge-to-xao.obo +++ /dev/null @@ -1,158 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-xao -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to xao" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between XAO and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Erik Segerdell" xsd:string -property_value: dc-contributor "VG Ponferrada" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/xao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: XAO:0003012 ! -property_value: IAO:0000589 "cell (xenopus)" xsd:string -intersection_of: CL:0000000 ! cell -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000031 ! -property_value: IAO:0000589 "ciliated cell (xenopus)" xsd:string -intersection_of: CL:0000064 ! ciliated cell -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003159 ! -property_value: IAO:0000589 "thymocyte (xenopus)" xsd:string -intersection_of: CL:0000893 ! thymocyte -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000262 ! -property_value: IAO:0000589 "polar body (xenopus)" xsd:string -intersection_of: CL:0002090 ! polar body -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:ENTITY -name: XAO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8353 -relationship: only_in_taxon NCBITaxon:8353 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-xao.owl b/src/ontology/bridge/cl-bridge-to-xao.owl index 55aaaafbfc..ba77ec355e 100644 --- a/src/ontology/bridge/cl-bridge-to-xao.owl +++ b/src/ontology/bridge/cl-bridge-to-xao.owl @@ -7,21 +7,14 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Erik Segerdell - VG Ponferrada - CL editors - Taxonomic equivalence axioms between XAO and CL - CL bridge to xao - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Erik Segerdell + VG Ponferrada + CL editors + Taxonomic equivalence axioms between XAO and CL. + CL bridge to xao @@ -37,18 +30,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -57,215 +38,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -282,42 +73,7 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -362,12 +118,6 @@ - - - - - - @@ -382,8 +132,7 @@ - ciliated cell (xenopus) - XAO:0000031 + ciliated cell (xenopus) @@ -402,8 +151,7 @@ - polar body (xenopus) - XAO:0000262 + polar body (xenopus) @@ -422,8 +170,7 @@ - cell (xenopus) - XAO:0003012 + cell (xenopus) @@ -442,38 +189,11 @@ - thymocyte (xenopus) - XAO:0003159 - - - - - - - - - - - - - - - - - - - - - - - - - XAO:ENTITY - XAO entity + thymocyte (xenopus) - + diff --git a/src/ontology/bridge/cl-bridge-to-zfa.obo b/src/ontology/bridge/cl-bridge-to-zfa.obo deleted file mode 100644 index c9b4551d4b..0000000000 --- a/src/ontology/bridge/cl-bridge-to-zfa.obo +++ /dev/null @@ -1,147 +0,0 @@ -ontology: uberon/bridge/cl-bridge-to-zfa -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "CL bridge to zfa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between ZFA and CL" xsd:string -property_value: dc-creator "CL editors" xsd:string -property_value: dc-contributor "Ceri Van Slyke" xsd:string -property_value: dc-contributor "Yvonne Bradford" xsd:string -property_value: dc-contributor "Melissa Haendel" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/zfa.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/cl.owl - -[Term] -id: ZFA:0009150 ! -property_value: IAO:0000589 "Rohon-Beard neuron (zebrafish)" xsd:string -intersection_of: CL:0000247 ! Rohon-Beard neuron -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001725 ! -property_value: IAO:0000589 "immature Schwann cell (zebrafish)" xsd:string -intersection_of: CL:0002377 ! immature Schwann cell -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:ENTITY -name: ZFA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7954 -relationship: only_in_taxon NCBITaxon:7954 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/cl-bridge-to-zfa.owl b/src/ontology/bridge/cl-bridge-to-zfa.owl index 72a9baba59..d483de9c63 100644 --- a/src/ontology/bridge/cl-bridge-to-zfa.owl +++ b/src/ontology/bridge/cl-bridge-to-zfa.owl @@ -7,22 +7,15 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Ceri Van Slyke - Melissa Haendel - Yvonne Bradford - CL editors - Taxonomic equivalence axioms between ZFA and CL - CL bridge to zfa - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Melissa Haendel + Veri Van Slyke + Yvonne Bradford + CL editors + Taxonomic equivalence axioms between ZFA and CL. + CL bridge to zfa @@ -38,18 +31,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -58,290 +39,401 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - + - + - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - + - + - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - + - + - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - + - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - + - + - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - + - + - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - + - + - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - + - + - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - + - + - - database_cross_reference - + - + - + - + - + - + - - shorthand - + - + - + - + - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - + - + - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - + - + - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + - + + - + - - - BFO:0000050 - part_of - part_of - + - + - - BFO:0000066 - occurs_in - occurs_in - + - + - - RO:0002160 - only_in_taxon - only_in_taxon - + - + - - RO:0002225 - develops_from - develops_from - + - + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -351,19 +443,51 @@ - + + + + + + + + + + + + + + + tether cell (zebrafish) + + + + + - + + + + + + + + + + + + + pancreatic epsilon cell (zebrafish) + - + - + - + @@ -371,19 +495,1025 @@ - immature Schwann cell (zebrafish) - ZFA:0001725 + ghrelin secreting cell (zebrafish) - + - + - + + + + + + + + + cranial motor neuron (zebrafish) + + + + + + + + + + + + + + + + + + + branchiomotor neuron (zebrafish) + + + + + + + + + + + + + + + + + + + visceromotor neuron (zebrafish) + + + + + + + + + + + + + + + + + + + somatomotor neuron (zebrafish) + + + + + + + + + + + + + + + + + + + pancreatic acinar cell (zebrafish) + + + + + + + + + + + + + + + + + + + pancreatic centro-acinar cell (zebrafish) + + + + + + + + + + + + + + + + + + + pancreatic PP cell (zebrafish) + + + + + + + + + + + + + + + + + + + pancreatic D cell (zebrafish) + + + + + + + + + + + + + + + + + + + notochordal sheath cell (zebrafish) + + + + + + + + + + + + + + + + + + + structural cell (zebrafish) + + + + + + + + + + + + + + + + + + + spermatid (zebrafish) + + + + + + + + + + + + + + + + + + + embryonic blood vessel endothelial progenitor cell (zebrafish) + + + + + + + + + + + + + + + + + + + enteric neuron (zebrafish) + + + + + + + + + + + + + + + + + + + parasympathetic neuron (zebrafish) + + + + + + + + + + + + + + + + + + + sympathetic neuron (zebrafish) + + + + + + + + + + + + + + + + + + + hypocretin-secreting neuron (zebrafish) + + + + + + + + + + + + + + + + + + + striated muscle cell (zebrafish) + + + + + + + + + + + + + + + + + + + hematopoietic cell (zebrafish) + + + + + + + + + + + + + + + + + + + noradrenergic neuron (zebrafish) + + + + + + + + + + + + + + + + + + + oogonial cell (zebrafish) + + + + + + + + + + + + + + + + + + + mural cell (zebrafish) + + + + + + + + + + + + + + + + + + + germ line stem cell (zebrafish) + + + + + + + + + + + + + + + + + + + stem cell (zebrafish) + + + + + + + + + + + + + + + + + + + premigratory neural crest cell (zebrafish) + + + + + + + + + + + + + + + + + + + migratory neural crest cell (zebrafish) + + + + + + + + + + + + + + + + + + + embryonic cell (metazoa) (zebrafish) + + + + + + + + + + + + + + + + + + + migratory cranial neural crest cell (zebrafish) + + + + + + + + + + + + + + + + + + + migratory trunk neural crest cell (zebrafish) + + + + + + + + + + + + + + + + + + + stem cell of epidermis (zebrafish) + + + + + + + + + + + + + + + + + + + Rohon-Beard neuron (zebrafish) + + + + + + + + + + + + + + + + + + + duct epithelial cell (zebrafish) + + + + + + + + + + + + + + + + + + + kidney epithelial cell (zebrafish) + + + + + + + + + + + + + + + + + + + renal intercalated cell (zebrafish) + + + + + + + + + + + + + + + + + + + renal alpha-intercalated cell (zebrafish) + + + + + + + + + + + + + + + + + + + intrahepatic cholangiocyte (zebrafish) + + + + + + + + + + + + + + + + + + + pancreatic ductal cell (zebrafish) + + + + + + + + + + + + + + + + + + + endo-epithelial cell (zebrafish) + + + + + + + + + + + + + + + + + + + neurecto-epithelial cell (zebrafish) + + + + + + + + + + + + + + + + + + + ecto-epithelial cell (zebrafish) + + + + + + + + + + + + + + + + + + + somatic cell (zebrafish) + + + + + + + + + + + + + + + + + + + supporting cell (zebrafish) + + + + + + + + + + + + + + + + + + + meso-epithelial cell (zebrafish) + + + + + + + + + + + + + + + + + + + kidney cell (zebrafish) + + + + + + + + + + + + + + + + + + + kidney interstitial cell (zebrafish) + + + + + + + + + + + + + + + + + + + kidney medulla cell (zebrafish) + + + + + + + + + + + + + + + + + + + connective tissue cell (zebrafish) + + + + + + + + + + + + + + + + + + + lymphangioblast (zebrafish) + + + + + + + + + + + + + + + + + + + mesenchymal lymphangioblast (zebrafish) + + + + + + + + + + + + + + + + + + + vascular lymphangioblast (zebrafish) + + + + + + + + + + + + + + + + + + + glycinergic neuron (zebrafish) + + + + + + + + + + + + + + + + + + + cholangiocyte (zebrafish) + + + + + + + + + + + + + + + + + + + intestinal epithelial cell (zebrafish) + + + + + + + + + + + + + + + + + + + epithelial cell of esophagus (zebrafish) + + + + + + + + + + + @@ -391,19 +1521,18 @@ - Rohon-Beard neuron (zebrafish) - ZFA:0009150 + lens fiber cell (zebrafish) - + - + - + @@ -411,18 +1540,11 @@ - - - - - - - ZFA:ENTITY - ZFA entity + cardiac valve cell (zebrafish) - + diff --git a/src/ontology/bridge/uberon-bridge-to-aeo.obo b/src/ontology/bridge/uberon-bridge-to-aeo.obo deleted file mode 100644 index 5fd66b1a30..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-aeo.obo +++ /dev/null @@ -1,811 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-aeo -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: AEO:0000192 ! -property_value: IAO:0000589 "non-material anatomical boundary (AEO)" xsd:string -equivalent_to: UBERON:0000015 ! non-material anatomical boundary - -[Term] -id: AEO:0000094 ! -property_value: IAO:0000589 "sense organ (AEO)" xsd:string -equivalent_to: UBERON:0000020 ! sense organ - -[Term] -id: AEO:0000193 ! -property_value: IAO:0000589 "appendage (AEO)" xsd:string -equivalent_to: UBERON:0000026 ! appendage - -[Term] -id: AEO:0000106 ! -property_value: IAO:0000589 "head (AEO)" xsd:string -equivalent_to: UBERON:0000033 ! head - -[Term] -id: AEO:0000091 ! -property_value: IAO:0000589 "tendon (AEO)" xsd:string -equivalent_to: UBERON:0000043 ! tendon - -[Term] -id: AEO:0000135 ! -property_value: IAO:0000589 "ganglion (AEO)" xsd:string -equivalent_to: UBERON:0000045 ! ganglion - -[Term] -id: AEO:0000003 ! -property_value: IAO:0000589 "anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0000061 ! anatomical structure - -[Term] -id: AEO:0000136 ! -property_value: IAO:0000589 "neural nucleus (AEO)" xsd:string -equivalent_to: UBERON:0000125 ! neural nucleus - -[Term] -id: AEO:0000184 ! -property_value: IAO:0000589 "excreta (AEO)" xsd:string -equivalent_to: UBERON:0000174 ! excreta - -[Term] -id: AEO:0000199 ! -property_value: IAO:0000589 "mucosa (AEO)" xsd:string -equivalent_to: UBERON:0000344 ! mucosa - -[Term] -id: AEO:0001005 ! -property_value: IAO:0000589 "secretion of exocrine gland (AEO)" xsd:string -equivalent_to: UBERON:0000456 ! secretion of exocrine gland - -[Term] -id: AEO:0000004 ! -property_value: IAO:0000589 "organism substance (AEO)" xsd:string -equivalent_to: UBERON:0000463 ! organism substance - -[Term] -id: AEO:0000005 ! -property_value: IAO:0000589 "anatomical space (AEO)" xsd:string -equivalent_to: UBERON:0000464 ! anatomical space - -[Term] -id: AEO:0000006 ! -property_value: IAO:0000589 "material anatomical entity (AEO)" xsd:string -equivalent_to: UBERON:0000465 ! material anatomical entity - -[Term] -id: AEO:0000007 ! -property_value: IAO:0000589 "immaterial anatomical entity (AEO)" xsd:string -equivalent_to: UBERON:0000466 ! immaterial anatomical entity - -[Term] -id: AEO:0000011 ! -property_value: IAO:0000589 "anatomical system (AEO)" xsd:string -equivalent_to: UBERON:0000467 ! anatomical system - -[Term] -id: AEO:0000191 ! -property_value: IAO:0000589 "multicellular organism (AEO)" xsd:string -equivalent_to: UBERON:0000468 ! multicellular organism - -[Term] -id: AEO:0000019 ! -property_value: IAO:0000589 "compound organ component (AEO)" xsd:string -equivalent_to: UBERON:0000471 ! compound organ component - -[Term] -id: AEO:0000190 ! -property_value: IAO:0000589 "simple organ (AEO)" xsd:string -equivalent_to: UBERON:0000472 ! simple organ - -[Term] -id: AEO:0000032 ! -property_value: IAO:0000589 "organism subdivision (AEO)" xsd:string -equivalent_to: UBERON:0000475 ! organism subdivision - -[Term] -id: AEO:0000040 ! -property_value: IAO:0000589 "acellular anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0000476 ! acellular anatomical structure - -[Term] -id: AEO:0000042 ! -property_value: IAO:0000589 "extraembryonic structure (AEO)" xsd:string -equivalent_to: UBERON:0000478 ! extraembryonic structure - -[Term] -id: AEO:0000043 ! -property_value: IAO:0000589 "tissue (AEO)" xsd:string -equivalent_to: UBERON:0000479 ! tissue - -[Term] -id: AEO:0000054 ! -property_value: IAO:0000589 "anatomical group (AEO)" xsd:string -equivalent_to: UBERON:0000480 ! anatomical group - -[Term] -id: AEO:0000055 ! -property_value: IAO:0000589 "multi-tissue structure (AEO)" xsd:string -equivalent_to: UBERON:0000481 ! multi-tissue structure - -[Term] -id: AEO:0000065 ! -property_value: IAO:0000589 "basal lamina of epithelium (AEO)" xsd:string -equivalent_to: UBERON:0000482 ! basal lamina of epithelium - -[Term] -id: AEO:0000066 ! -property_value: IAO:0000589 "epithelium (AEO)" xsd:string -equivalent_to: UBERON:0000483 ! epithelium - -[Term] -id: AEO:0000067 ! -property_value: IAO:0000589 "simple cuboidal epithelium (AEO)" xsd:string -equivalent_to: UBERON:0000484 ! simple cuboidal epithelium - -[Term] -id: AEO:0000068 ! -property_value: IAO:0000589 "simple columnar epithelium (AEO)" xsd:string -equivalent_to: UBERON:0000485 ! simple columnar epithelium - -[Term] -id: AEO:0000069 ! -property_value: IAO:0000589 "multilaminar epithelium (AEO)" xsd:string -equivalent_to: UBERON:0000486 ! multilaminar epithelium - -[Term] -id: AEO:0000070 ! -property_value: IAO:0000589 "simple squamous epithelium (AEO)" xsd:string -equivalent_to: UBERON:0000487 ! simple squamous epithelium - -[Term] -id: AEO:0000071 ! -property_value: IAO:0000589 "atypical epithelium (AEO)" xsd:string -equivalent_to: UBERON:0000488 ! atypical epithelium - -[Term] -id: AEO:0000072 ! -property_value: IAO:0000589 "cavitated compound organ (AEO)" xsd:string -equivalent_to: UBERON:0000489 ! cavitated compound organ - -[Term] -id: AEO:0000073 ! -property_value: IAO:0000589 "unilaminar epithelium (AEO)" xsd:string -equivalent_to: UBERON:0000490 ! unilaminar epithelium - -[Term] -id: AEO:0000074 ! -property_value: IAO:0000589 "solid compound organ (AEO)" xsd:string -equivalent_to: UBERON:0000491 ! solid compound organ - -[Term] -id: AEO:0000169 ! -property_value: IAO:0000589 "embryo (AEO)" xsd:string -equivalent_to: UBERON:0000922 ! embryo - -[Term] -id: AEO:0000198 ! -property_value: IAO:0000589 "antenna (AEO)" xsd:string -equivalent_to: UBERON:0000972 ! antenna - -[Term] -id: AEO:0000108 ! -property_value: IAO:0000589 "neck (AEO)" xsd:string -equivalent_to: UBERON:0000974 ! neck - -[Term] -id: AEO:0000182 ! -property_value: IAO:0000589 "skeletal joint (AEO)" xsd:string -equivalent_to: UBERON:0000982 ! skeletal joint - -[Term] -id: AEO:000020 ! -property_value: IAO:0000589 "adipose tissue (AEO)" xsd:string -equivalent_to: UBERON:0001013 ! adipose tissue - -[Term] -id: AEO:0000137 ! -property_value: IAO:0000589 "nerve (AEO)" xsd:string -equivalent_to: UBERON:0001021 ! nerve - -[Term] -id: AEO:0000201 ! -property_value: IAO:0000589 "sensory nerve (AEO)" xsd:string -equivalent_to: UBERON:0001027 ! sensory nerve - -[Term] -id: AEO:0000171 ! -property_value: IAO:0000589 "primordium (AEO)" xsd:string -equivalent_to: UBERON:0001048 ! primordium - -[Term] -id: AEO:0000000 ! -property_value: IAO:0000589 "anatomical entity (AEO)" xsd:string -equivalent_to: UBERON:0001062 ! anatomical entity - -[Term] -id: AEO:0000220 ! -property_value: IAO:0000589 "calcareous tooth (AEO)" xsd:string -equivalent_to: UBERON:0001091 ! calcareous tooth - -[Term] -id: AEO:0000142 ! -property_value: IAO:0000589 "cardiac muscle tissue (AEO)" xsd:string -equivalent_to: UBERON:0001133 ! cardiac muscle tissue - -[Term] -id: AEO:0000141 ! -property_value: IAO:0000589 "smooth muscle tissue (AEO)" xsd:string -equivalent_to: UBERON:0001135 ! smooth muscle tissue - -[Term] -id: AEO:0000111 ! -property_value: IAO:0000589 "mesothelium (AEO)" xsd:string -equivalent_to: UBERON:0001136 ! mesothelium - -[Term] -id: AEO:0000082 ! -property_value: IAO:0000589 "bone element (AEO)" xsd:string -equivalent_to: UBERON:0001474 ! bone element - -[Term] -id: AEO:0000086 ! -property_value: IAO:0000589 "sesamoid bone (AEO)" xsd:string -equivalent_to: UBERON:0001479 ! sesamoid bone - -[Term] -id: AEO:0000208 ! -property_value: IAO:0000589 "artery (AEO)" xsd:string -equivalent_to: UBERON:0001637 ! artery - -[Term] -id: AEO:0000209 ! -property_value: IAO:0000589 "vein (AEO)" xsd:string -equivalent_to: UBERON:0001638 ! vein - -[Term] -id: AEO:0001000 ! -property_value: IAO:0000589 "sensory ganglion (AEO)" xsd:string -equivalent_to: UBERON:0001800 ! sensory ganglion - -[Term] -id: AEO:0001001 ! -property_value: IAO:0000589 "autonomic ganglion (AEO)" xsd:string -equivalent_to: UBERON:0001805 ! autonomic ganglion - -[Term] -id: AEO:0000138 ! -property_value: IAO:0000589 "nerve plexus (AEO)" xsd:string -equivalent_to: UBERON:0001810 ! nerve plexus - -[Term] -id: AEO:0000207 ! -property_value: IAO:0000589 "blood vessel (AEO)" xsd:string -equivalent_to: UBERON:0001981 ! blood vessel - -[Term] -id: AEO:0000181 ! -property_value: IAO:0000589 "synovial membrane of synovial joint (AEO)" xsd:string -equivalent_to: UBERON:0002018 ! synovial membrane of synovial joint - -[Term] -id: AEO:0001012 ! -property_value: IAO:0000589 "gray matter (AEO)" xsd:string -equivalent_to: UBERON:0002020 ! gray matter - -[Term] -id: AEO:0000140 ! -property_value: IAO:0000589 "striated muscle tissue (AEO)" xsd:string -equivalent_to: UBERON:0002036 ! striated muscle tissue - -[Term] -id: AEO:0000172 ! -property_value: IAO:0000589 "limb (AEO)" xsd:string -equivalent_to: UBERON:0002101 ! limb - -[Term] -id: AEO:0000178 ! -property_value: IAO:0000589 "fibrous joint (AEO)" xsd:string -equivalent_to: UBERON:0002209 ! fibrous joint - -[Term] -id: AEO:0000183 ! -property_value: IAO:0000589 "synovial joint (AEO)" xsd:string -equivalent_to: UBERON:0002217 ! synovial joint - -[Term] -id: AEO:0000139 ! -property_value: IAO:0000589 "white matter (AEO)" xsd:string -equivalent_to: UBERON:0002316 ! white matter - -[Term] -id: AEO:0001011 ! -property_value: IAO:0000589 "white matter (AEO)" xsd:string -equivalent_to: UBERON:0002316 ! white matter - -[Term] -id: AEO:0000186 ! -property_value: IAO:0000589 "coelemic cavity lumen (AEO)" xsd:string -equivalent_to: UBERON:0002323 ! coelemic cavity lumen - -[Term] -id: AEO:0001015 ! -property_value: IAO:0000589 "somite (AEO)" xsd:string -equivalent_to: UBERON:0002329 ! somite - -[Term] -id: AEO:0000097 ! -property_value: IAO:0000589 "exocrine gland (AEO)" xsd:string -equivalent_to: UBERON:0002365 ! exocrine gland - -[Term] -id: AEO:0000098 ! -property_value: IAO:0000589 "endocrine gland (AEO)" xsd:string -equivalent_to: UBERON:0002368 ! endocrine gland - -[Term] -id: AEO:0000122 ! -property_value: IAO:0000589 "muscle tissue (AEO)" xsd:string -equivalent_to: UBERON:0002385 ! muscle tissue - -[Term] -id: AEO:0000109 ! -property_value: IAO:0000589 "tail (AEO)" xsd:string -equivalent_to: UBERON:0002415 ! tail - -[Term] -id: AEO:0000154 ! -property_value: IAO:0000589 "integumental system (AEO)" xsd:string -equivalent_to: UBERON:0002416 ! integumental system - -[Term] -id: AEO:0000087 ! -property_value: IAO:0000589 "cartilage tissue (AEO)" xsd:string -equivalent_to: UBERON:0002418 ! cartilage tissue - -[Term] -id: AEO:0000083 ! -property_value: IAO:0000589 "endochondral bone (AEO)" xsd:string -equivalent_to: UBERON:0002513 ! endochondral bone - -[Term] -id: AEO:0000096 ! -property_value: IAO:0000589 "gland (AEO)" xsd:string -equivalent_to: UBERON:0002530 ! gland - -[Term] -id: AEO:0000126 ! -property_value: IAO:0000589 "larva (AEO)" xsd:string -equivalent_to: UBERON:0002548 ! larva - -[Term] -id: AEO:0001018 ! -property_value: IAO:0000589 "myotome (AEO)" xsd:string -equivalent_to: UBERON:0003082 ! myotome - -[Term] -id: AEO:0000212 ! -property_value: IAO:0000589 "sclerotome (AEO)" xsd:string -equivalent_to: UBERON:0003089 ! sclerotome - -[Term] -id: AEO:0000024 ! -property_value: IAO:0000589 "compound organ (AEO)" xsd:string -equivalent_to: UBERON:0003103 ! compound organ - -[Term] -id: AEO:0000145 ! -property_value: IAO:0000589 "mesenchyme (AEO)" xsd:string -equivalent_to: UBERON:0003104 ! mesenchyme - -[Term] -id: AEO:0000123 ! -property_value: IAO:0000589 "neural tissue (AEO)" xsd:string -equivalent_to: UBERON:0003714 ! neural tissue - -[Term] -id: AEO:0000114 ! -property_value: IAO:0000589 "epithelial tube (AEO)" xsd:string -equivalent_to: UBERON:0003914 ! epithelial tube - -[Term] -id: AEO:0001017 ! -property_value: IAO:0000589 "dermatome (AEO)" xsd:string -equivalent_to: UBERON:0004016 ! dermatome - -[Term] -id: AEO:0000080 ! -property_value: IAO:0000589 "anatomical conduit (AEO)" xsd:string -equivalent_to: UBERON:0004111 ! anatomical conduit - -[Term] -id: AEO:0000168 ! -property_value: IAO:0000589 "skeleton (AEO)" xsd:string -equivalent_to: UBERON:0004288 ! skeleton - -[Term] -id: AEO:0000214 ! -property_value: IAO:0000589 "dermomyotome (AEO)" xsd:string -equivalent_to: UBERON:0004290 ! dermomyotome - -[Term] -id: AEO:0000194 ! -property_value: IAO:0000589 "conceptus (AEO)" xsd:string -equivalent_to: UBERON:0004716 ! conceptus - -[Term] -id: AEO:0000078 ! -property_value: IAO:0000589 "tube lumen (AEO)" xsd:string -equivalent_to: UBERON:0005082 ! tube lumen - -[Term] -id: AEO:0000218 ! -property_value: IAO:0000589 "ectodermal placode (AEO)" xsd:string -equivalent_to: UBERON:0005085 ! ectodermal placode - -[Term] -id: AEO:0000216 ! -property_value: IAO:0000589 "epithelial cord (AEO)" xsd:string -equivalent_to: UBERON:0005154 ! epithelial cord - -[Term] -id: AEO:0000125 ! -property_value: IAO:0000589 "developing anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0005423 ! developing anatomical structure - -[Term] -id: AEO:0000219 ! -property_value: IAO:0000589 "vascular plexus (AEO)" xsd:string -equivalent_to: UBERON:0005629 ! vascular plexus - -[Term] -id: AEO:0000148 ! -property_value: IAO:0000589 "developing mesenchymal condensation (AEO)" xsd:string -equivalent_to: UBERON:0005856 ! developing mesenchymal condensation - -[Term] -id: AEO:0000147 ! -property_value: IAO:0000589 "cartilaginous condensation (AEO)" xsd:string -equivalent_to: UBERON:0005863 ! cartilaginous condensation - -[Term] -id: AEO:0000149 ! -property_value: IAO:0000589 "pre-muscle condensation (AEO)" xsd:string -equivalent_to: UBERON:0005865 ! pre-muscle condensation - -[Term] -id: AEO:0000150 ! -property_value: IAO:0000589 "pre-cartilage condensation (AEO)" xsd:string -equivalent_to: UBERON:0005866 ! pre-cartilage condensation - -[Term] -id: AEO:0000092 ! -property_value: IAO:0000589 "aponeurosis (AEO)" xsd:string -equivalent_to: UBERON:0006614 ! aponeurosis - -[Term] -id: AEO:0000202 ! -property_value: IAO:0000589 "efferent nerve (AEO)" xsd:string -equivalent_to: UBERON:0006798 ! efferent nerve - -[Term] -id: AEO:0000008 ! -property_value: IAO:0000589 "anatomical line (AEO)" xsd:string -equivalent_to: UBERON:0006800 ! anatomical line - -[Term] -id: AEO:0000161 ! -property_value: IAO:0000589 "surface groove (AEO)" xsd:string -equivalent_to: UBERON:0006846 ! surface groove - -[Term] -id: AEO:0000009 ! -property_value: IAO:0000589 "anatomical point (AEO)" xsd:string -equivalent_to: UBERON:0006983 ! anatomical point - -[Term] -id: AEO:0000177 ! -property_value: IAO:0000589 "hermaphrodite anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0007198 ! hermaphrodite anatomical structure - -[Term] -id: AEO:0000079 ! -property_value: IAO:0000589 "lumen of epithelial sac (AEO)" xsd:string -equivalent_to: UBERON:0007473 ! lumen of epithelial sac - -[Term] -id: AEO:0000081 ! -property_value: IAO:0000589 "matrix-based tissue (AEO)" xsd:string -equivalent_to: UBERON:0007475 ! matrix-based tissue - -[Term] -id: AEO:0000095 ! -property_value: IAO:0000589 "fluid-based anatomical entity (AEO)" xsd:string -equivalent_to: UBERON:0007486 ! fluid-based anatomical entity - -[Term] -id: AEO:0000099 ! -property_value: IAO:0000589 "keratin-based acellular structure (AEO)" xsd:string -equivalent_to: UBERON:0007490 ! keratin-based acellular structure - -[Term] -id: AEO:0000100 ! -property_value: IAO:0000589 "chitin-based acellular structure (AEO)" xsd:string -equivalent_to: UBERON:0007491 ! chitin-based acellular structure - -[Term] -id: AEO:0000115 ! -property_value: IAO:0000589 "epithelial sac (AEO)" xsd:string -equivalent_to: UBERON:0007499 ! epithelial sac - -[Term] -id: AEO:0000117 ! -property_value: IAO:0000589 "arborizing epithelial duct system (AEO)" xsd:string -equivalent_to: UBERON:0007501 ! arborizing epithelial duct system - -[Term] -id: AEO:0000118 ! -property_value: IAO:0000589 "epithelial plexus (AEO)" xsd:string -equivalent_to: UBERON:0007502 ! epithelial plexus - -[Term] -id: AEO:0000119 ! -property_value: IAO:0000589 "epithelial vesicle (AEO)" xsd:string -equivalent_to: UBERON:0007503 ! epithelial vesicle - -[Term] -id: AEO:0000143 ! -property_value: IAO:0000589 "smooth muscle sphincter (AEO)" xsd:string -equivalent_to: UBERON:0007521 ! smooth muscle sphincter - -[Term] -id: AEO:0000144 ! -property_value: IAO:0000589 "striated muscle sphincter (AEO)" xsd:string -equivalent_to: UBERON:0007522 ! striated muscle sphincter - -[Term] -id: AEO:0000146 ! -property_value: IAO:0000589 "dense mesenchyme tissue (AEO)" xsd:string -equivalent_to: UBERON:0007524 ! dense mesenchyme tissue - -[Term] -id: AEO:0000151 ! -property_value: IAO:0000589 "loose mesenchyme tissue (AEO)" xsd:string -equivalent_to: UBERON:0007529 ! loose mesenchyme tissue - -[Term] -id: AEO:0000152 ! -property_value: IAO:0000589 "migrating mesenchyme population (AEO)" xsd:string -equivalent_to: UBERON:0007530 ! migrating mesenchyme population - -[Term] -id: AEO:0000200 ! -property_value: IAO:0000589 "regenerating anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0007567 ! regenerating anatomical structure - -[Term] -id: AEO:0000206 ! -property_value: IAO:0000589 "migrating epithelium (AEO)" xsd:string -equivalent_to: UBERON:0007573 ! migrating epithelium - -[Term] -id: AEO:0000170 ! -property_value: IAO:0000589 "anlage (AEO)" xsd:string -equivalent_to: UBERON:0007688 ! anlage - -[Term] -id: AEO:0000085 ! -property_value: IAO:0000589 "membrane bone (AEO)" xsd:string -equivalent_to: UBERON:0007842 ! membrane bone - -[Term] -id: AEO:0000090 ! -property_value: IAO:0000589 "skeletal ligament (AEO)" xsd:string -equivalent_to: UBERON:0008846 ! skeletal ligament - -[Term] -id: AEO:0001004 ! -property_value: IAO:0000589 "fin (AEO)" xsd:string -equivalent_to: UBERON:0008897 ! fin - -[Term] -id: AEO:0000221 ! -property_value: IAO:0000589 "open anatomical space (AEO)" xsd:string -equivalent_to: UBERON:0010064 ! open anatomical space - -[Term] -id: AEO:0000205 ! -property_value: IAO:0000589 "protuberance (AEO)" xsd:string -equivalent_to: UBERON:0010188 ! protuberance - -[Term] -id: AEO:0000179 ! -property_value: IAO:0000589 "articular cartilage of joint (AEO)" xsd:string -equivalent_to: UBERON:0010996 ! articular cartilage of joint - -[Term] -id: AEO:0000222 ! -property_value: IAO:0000589 "enclosed anatomical space (AEO)" xsd:string -equivalent_to: UBERON:0012467 ! enclosed anatomical space - -[Term] -id: AEO:0001002 ! -property_value: IAO:0000589 "capillary bed (AEO)" xsd:string -equivalent_to: UBERON:0013141 ! capillary bed - -[Term] -id: AEO:0000103 ! -property_value: IAO:0000589 "body proper (AEO)" xsd:string -equivalent_to: UBERON:0013702 ! body proper - -[Term] -id: AEO:0000174 ! -property_value: IAO:0000589 "sex-specific anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0014402 ! sex-specific anatomical structure - -[Term] -id: AEO:0000175 ! -property_value: IAO:0000589 "male anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0014403 ! male anatomical structure - -[Term] -id: AEO:0000176 ! -property_value: IAO:0000589 "female anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0014404 ! female anatomical structure - -[Term] -id: AEO:0000213 ! -property_value: IAO:0000589 "bone condensation (AEO)" xsd:string -equivalent_to: UBERON:0015062 ! bone condensation - -[Term] -id: AEO:0000093 ! -property_value: IAO:0000589 "non-connected functional system (AEO)" xsd:string -equivalent_to: UBERON:0015203 ! non-connected functional system - -[Term] -id: AEO:0000204 ! -property_value: IAO:0000589 "pit (AEO)" xsd:string -equivalent_to: UBERON:0016566 ! pit - -[Term] -id: AEO:0000195 ! -property_value: IAO:0000589 "entire extraembryonic component (AEO)" xsd:string -equivalent_to: UBERON:0016887 ! entire extraembryonic component - -[Term] -id: AEO:0000132 ! -property_value: IAO:0000589 "transitional anatomical structure (AEO)" xsd:string -equivalent_to: UBERON:0016888 ! transitional anatomical structure - -[Term] -id: AEO:0001016 ! -property_value: IAO:0000589 "developing mesenchymal structure (AEO)" xsd:string -equivalent_to: UBERON:0017650 ! developing mesenchymal structure - -[Term] -id: AEO:0001008 ! -property_value: IAO:0000589 "developing neuroepithelium (AEO)" xsd:string -equivalent_to: UBERON:0034705 ! developing neuroepithelium - -[Term] -id: AEO:0001009 ! -property_value: IAO:0000589 "proliferating neuroepithelium (AEO)" xsd:string -equivalent_to: UBERON:0034706 ! proliferating neuroepithelium - -[Term] -id: AEO:0001010 ! -property_value: IAO:0000589 "differentiating neuroepithelium (AEO)" xsd:string -equivalent_to: UBERON:0034707 ! differentiating neuroepithelium - -[Term] -id: AEO:0000154 ! -property_value: IAO:0000589 "anatomical surface region (AEO)" xsd:string -equivalent_to: UBERON:0036215 ! anatomical surface region - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-aeo.owl b/src/ontology/bridge/uberon-bridge-to-aeo.owl index 6cce42badd..f49e5b96e9 100644 --- a/src/ontology/bridge/uberon-bridge-to-aeo.owl +++ b/src/ontology/bridge/uberon-bridge-to-aeo.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - anatomical surface region (AEO) - integumental system (AEO) - AEO:0000154 + migrating mesenchyme population (AEO) @@ -1130,8 +765,7 @@ - surface groove (AEO) - AEO:0000161 + surface groove (AEO) @@ -1140,8 +774,7 @@ - skeleton (AEO) - AEO:0000168 + skeleton (AEO) @@ -1150,8 +783,7 @@ - embryo (AEO) - AEO:0000169 + embryo (AEO) @@ -1160,8 +792,7 @@ - anlage (AEO) - AEO:0000170 + anlage (AEO) @@ -1170,8 +801,7 @@ - primordium (AEO) - AEO:0000171 + primordium (AEO) @@ -1180,8 +810,7 @@ - limb (AEO) - AEO:0000172 + limb (AEO) @@ -1190,8 +819,7 @@ - sex-specific anatomical structure (AEO) - AEO:0000174 + sex-specific anatomical structure (AEO) @@ -1200,8 +828,7 @@ - male anatomical structure (AEO) - AEO:0000175 + male anatomical structure (AEO) @@ -1210,8 +837,7 @@ - female anatomical structure (AEO) - AEO:0000176 + female anatomical structure (AEO) @@ -1220,8 +846,7 @@ - hermaphrodite anatomical structure (AEO) - AEO:0000177 + hermaphrodite anatomical structure (AEO) @@ -1230,8 +855,7 @@ - fibrous joint (AEO) - AEO:0000178 + fibrous joint (AEO) @@ -1240,8 +864,7 @@ - articular cartilage of joint (AEO) - AEO:0000179 + articular cartilage of joint (AEO) @@ -1250,8 +873,7 @@ - synovial membrane of synovial joint (AEO) - AEO:0000181 + synovial membrane of synovial joint (AEO) @@ -1260,8 +882,7 @@ - skeletal joint (AEO) - AEO:0000182 + skeletal joint (AEO) @@ -1270,8 +891,7 @@ - synovial joint (AEO) - AEO:0000183 + synovial joint (AEO) @@ -1280,8 +900,7 @@ - excreta (AEO) - AEO:0000184 + excreta (AEO) @@ -1290,8 +909,7 @@ - coelemic cavity lumen (AEO) - AEO:0000186 + coelemic cavity lumen (AEO) @@ -1300,8 +918,7 @@ - simple organ (AEO) - AEO:0000190 + simple organ (AEO) @@ -1310,8 +927,7 @@ - multicellular organism (AEO) - AEO:0000191 + multicellular organism (AEO) @@ -1320,8 +936,7 @@ - non-material anatomical boundary (AEO) - AEO:0000192 + non-material anatomical boundary (AEO) @@ -1330,8 +945,7 @@ - appendage (AEO) - AEO:0000193 + appendage (AEO) @@ -1340,8 +954,7 @@ - conceptus (AEO) - AEO:0000194 + conceptus (AEO) @@ -1350,8 +963,7 @@ - entire extraembryonic component (AEO) - AEO:0000195 + entire extraembryonic component (AEO) @@ -1360,8 +972,7 @@ - antenna (AEO) - AEO:0000198 + antenna (AEO) @@ -1370,8 +981,7 @@ - mucosa (AEO) - AEO:0000199 + mucosa (AEO) @@ -1380,8 +990,7 @@ - adipose tissue (AEO) - AEO:000020 + adipose tissue (AEO) @@ -1390,8 +999,7 @@ - regenerating anatomical structure (AEO) - AEO:0000200 + regenerating anatomical structure (AEO) @@ -1400,8 +1008,7 @@ - sensory nerve (AEO) - AEO:0000201 + sensory nerve (AEO) @@ -1410,8 +1017,7 @@ - efferent nerve (AEO) - AEO:0000202 + efferent nerve (AEO) @@ -1420,8 +1026,7 @@ - pit (AEO) - AEO:0000204 + pit (AEO) @@ -1430,8 +1035,7 @@ - protuberance (AEO) - AEO:0000205 + protuberance (AEO) @@ -1440,8 +1044,7 @@ - migrating epithelium (AEO) - AEO:0000206 + migrating epithelium (AEO) @@ -1450,8 +1053,7 @@ - blood vessel (AEO) - AEO:0000207 + blood vessel (AEO) @@ -1460,8 +1062,7 @@ - artery (AEO) - AEO:0000208 + artery (AEO) @@ -1470,8 +1071,7 @@ - vein (AEO) - AEO:0000209 + vein (AEO) @@ -1480,8 +1080,7 @@ - sclerotome (AEO) - AEO:0000212 + sclerotome (AEO) @@ -1490,8 +1089,7 @@ - bone condensation (AEO) - AEO:0000213 + bone condensation (AEO) @@ -1500,8 +1098,7 @@ - dermomyotome (AEO) - AEO:0000214 + dermomyotome (AEO) @@ -1510,8 +1107,7 @@ - epithelial cord (AEO) - AEO:0000216 + epithelial cord (AEO) @@ -1520,8 +1116,7 @@ - ectodermal placode (AEO) - AEO:0000218 + ectodermal placode (AEO) @@ -1530,8 +1125,7 @@ - vascular plexus (AEO) - AEO:0000219 + vascular plexus (AEO) @@ -1540,8 +1134,7 @@ - calcareous tooth (AEO) - AEO:0000220 + calcareous tooth (AEO) @@ -1550,8 +1143,7 @@ - open anatomical space (AEO) - AEO:0000221 + open anatomical space (AEO) @@ -1560,8 +1152,7 @@ - enclosed anatomical space (AEO) - AEO:0000222 + enclosed anatomical space (AEO) @@ -1570,8 +1161,7 @@ - sensory ganglion (AEO) - AEO:0001000 + sensory ganglion (AEO) @@ -1580,8 +1170,7 @@ - autonomic ganglion (AEO) - AEO:0001001 + autonomic ganglion (AEO) @@ -1590,8 +1179,7 @@ - capillary bed (AEO) - AEO:0001002 + capillary bed (AEO) @@ -1600,8 +1188,7 @@ - fin (AEO) - AEO:0001004 + fin (AEO) @@ -1610,8 +1197,7 @@ - secretion of exocrine gland (AEO) - AEO:0001005 + secretion of exocrine gland (AEO) @@ -1620,8 +1206,7 @@ - developing neuroepithelium (AEO) - AEO:0001008 + developing neuroepithelium (AEO) @@ -1630,8 +1215,7 @@ - proliferating neuroepithelium (AEO) - AEO:0001009 + proliferating neuroepithelium (AEO) @@ -1640,8 +1224,7 @@ - differentiating neuroepithelium (AEO) - AEO:0001010 + differentiating neuroepithelium (AEO) @@ -1650,8 +1233,7 @@ - white matter (AEO) - AEO:0001011 + white matter (AEO) @@ -1660,8 +1242,7 @@ - gray matter (AEO) - AEO:0001012 + gray matter (AEO) @@ -1670,8 +1251,7 @@ - somite (AEO) - AEO:0001015 + somite (AEO) @@ -1680,8 +1260,7 @@ - developing mesenchymal structure (AEO) - AEO:0001016 + developing mesenchymal structure (AEO) @@ -1690,8 +1269,7 @@ - dermatome (AEO) - AEO:0001017 + dermatome (AEO) @@ -1700,8 +1278,7 @@ - myotome (AEO) - AEO:0001018 + myotome (AEO) @@ -2120,12 +1697,6 @@ - - - - - - @@ -2531,15 +2102,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/uberon-bridge-to-bfo.obo b/src/ontology/bridge/uberon-bridge-to-bfo.obo deleted file mode 100644 index d83165aeae..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-bfo.obo +++ /dev/null @@ -1,57 +0,0 @@ -ontology: uberon-bridge-to-bfo - -[Term] -id: BFO:0000002 -name: continuant - -[Term] -id: BFO:0000003 -name: occurrent - -[Term] -id: BFO:0000004 -name: independent continuant -is_a: BFO:0000002 ! continuant - -[Term] -id: BFO:0000004 -name: independent continuant -is_a: BFO:0000002 ! continuant - -[Term] -id: BFO:0000015 -name: process -is_a: BFO:0000003 ! occurrent - -[Term] -id: BFO:0000040 -name: material entity -is_a: BFO:0000004 ! independent continuant - -[Term] -id: BFO:0000141 -name: immaterial entity -is_a: BFO:0000004 ! independent continuant - -[Term] -id: UBERON:0000465 ! material anatomical entity -is_a: BFO:0000040 ! material entity - -[Term] -id: UBERON:0000466 ! immaterial anatomical entity -is_a: BFO:0000141 ! immaterial entity - -[Term] -id: UBERON:0000000 -name: processual entity -is_a: BFO:0000003 ! occurrent - -[Term] -id: UBERON:0001062 -name: anatomical entity -is_a: BFO:0000004 - -[Term] -id: GO:0008150 -name: biological_process -is_a: BFO:0000015 ! process diff --git a/src/ontology/bridge/uberon-bridge-to-bfo.owl b/src/ontology/bridge/uberon-bridge-to-bfo.owl index 7b00557eb9..b0ef8fad90 100644 --- a/src/ontology/bridge/uberon-bridge-to-bfo.owl +++ b/src/ontology/bridge/uberon-bridge-to-bfo.owl @@ -1,19 +1,22 @@ - - + + + @@ -21,54 +24,35 @@ - - - - - - - + - + - - - - - - - - - - - - - - - - - + - - - - + - - + + processual entity (BFO) - + - - + + anatomical entity (BFO) @@ -81,22 +65,6 @@ - - - - - - - - - - - - - - - - @@ -106,5 +74,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-bspo.obo b/src/ontology/bridge/uberon-bridge-to-bspo.obo deleted file mode 100644 index eb4bf08c82..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-bspo.obo +++ /dev/null @@ -1,111 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-bspo -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-bspo.owl b/src/ontology/bridge/uberon-bridge-to-bspo.owl deleted file mode 100644 index 3e796b3468..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-bspo.owl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-caro.obo b/src/ontology/bridge/uberon-bridge-to-caro.obo deleted file mode 100644 index bd4c362a7b..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-caro.obo +++ /dev/null @@ -1,371 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-caro -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: CARO:0000010 ! -property_value: IAO:0000589 "non-material anatomical boundary (CARO)" xsd:string -equivalent_to: UBERON:0000015 ! non-material anatomical boundary - -[Term] -id: CARO:0010003 ! -property_value: IAO:0000589 "appendage (CARO)" xsd:string -equivalent_to: UBERON:0000026 ! appendage - -[Term] -id: CARO:0000003 ! -property_value: IAO:0000589 "anatomical structure (CARO)" xsd:string -equivalent_to: UBERON:0000061 ! anatomical structure - -[Term] -id: CARO:0020004 ! -property_value: IAO:0000589 "organ (CARO)" xsd:string -equivalent_to: UBERON:0000062 ! organ - -[Term] -id: CARO:0001001 ! -property_value: IAO:0000589 "neuron projection bundle (CARO)" xsd:string -equivalent_to: UBERON:0000122 ! neuron projection bundle - -[Term] -id: CARO:0000081 ! -property_value: IAO:0000589 "haemolymphatic fluid (CARO)" xsd:string -equivalent_to: UBERON:0000179 ! haemolymphatic fluid - -[Term] -id: CARO:0000004 ! -property_value: IAO:0000589 "organism substance (CARO)" xsd:string -equivalent_to: UBERON:0000463 ! organism substance - -[Term] -id: CARO:0000005 ! -property_value: IAO:0000589 "anatomical space (CARO)" xsd:string -equivalent_to: UBERON:0000464 ! anatomical space - -[Term] -id: CARO:0000006 ! -property_value: IAO:0000589 "material anatomical entity (CARO)" xsd:string -equivalent_to: UBERON:0000465 ! material anatomical entity - -[Term] -id: CARO:0000007 ! -property_value: IAO:0000589 "immaterial anatomical entity (CARO)" xsd:string -equivalent_to: UBERON:0000466 ! immaterial anatomical entity - -[Term] -id: CARO:0000011 ! -property_value: IAO:0000589 "anatomical system (CARO)" xsd:string -equivalent_to: UBERON:0000467 ! anatomical system - -[Term] -id: CARO:0000012 ! -property_value: IAO:0000589 "multicellular organism (CARO)" xsd:string -equivalent_to: UBERON:0000468 ! multicellular organism - -[Term] -id: CARO:0000019 ! -property_value: IAO:0000589 "compound organ component (CARO)" xsd:string -equivalent_to: UBERON:0000471 ! compound organ component - -[Term] -id: CARO:0000021 ! -property_value: IAO:0000589 "simple organ (CARO)" xsd:string -equivalent_to: UBERON:0000472 ! simple organ - -[Term] -id: CARO:0000032 ! -property_value: IAO:0000589 "organism subdivision (CARO)" xsd:string -equivalent_to: UBERON:0000475 ! organism subdivision - -[Term] -id: CARO:0000040 ! -property_value: IAO:0000589 "acellular anatomical structure (CARO)" xsd:string -equivalent_to: UBERON:0000476 ! acellular anatomical structure - -[Term] -id: CARO:0000042 ! -property_value: IAO:0000589 "extraembryonic structure (CARO)" xsd:string -equivalent_to: UBERON:0000478 ! extraembryonic structure - -[Term] -id: CARO:0000043 ! -property_value: IAO:0000589 "tissue (CARO)" xsd:string -equivalent_to: UBERON:0000479 ! tissue - -[Term] -id: CARO:0000054 ! -property_value: IAO:0000589 "anatomical group (CARO)" xsd:string -equivalent_to: UBERON:0000480 ! anatomical group - -[Term] -id: CARO:0000055 ! -property_value: IAO:0000589 "multi-tissue structure (CARO)" xsd:string -equivalent_to: UBERON:0000481 ! multi-tissue structure - -[Term] -id: CARO:0000065 ! -property_value: IAO:0000589 "basal lamina of epithelium (CARO)" xsd:string -equivalent_to: UBERON:0000482 ! basal lamina of epithelium - -[Term] -id: CARO:0000066 ! -property_value: IAO:0000589 "epithelium (CARO)" xsd:string -equivalent_to: UBERON:0000483 ! epithelium - -[Term] -id: CARO:0000067 ! -property_value: IAO:0000589 "simple cuboidal epithelium (CARO)" xsd:string -equivalent_to: UBERON:0000484 ! simple cuboidal epithelium - -[Term] -id: CARO:0000068 ! -property_value: IAO:0000589 "simple columnar epithelium (CARO)" xsd:string -equivalent_to: UBERON:0000485 ! simple columnar epithelium - -[Term] -id: CARO:0000069 ! -property_value: IAO:0000589 "multilaminar epithelium (CARO)" xsd:string -equivalent_to: UBERON:0000486 ! multilaminar epithelium - -[Term] -id: CARO:0000070 ! -property_value: IAO:0000589 "simple squamous epithelium (CARO)" xsd:string -equivalent_to: UBERON:0000487 ! simple squamous epithelium - -[Term] -id: CARO:0000071 ! -property_value: IAO:0000589 "atypical epithelium (CARO)" xsd:string -equivalent_to: UBERON:0000488 ! atypical epithelium - -[Term] -id: CARO:0000072 ! -property_value: IAO:0000589 "cavitated compound organ (CARO)" xsd:string -equivalent_to: UBERON:0000489 ! cavitated compound organ - -[Term] -id: CARO:0000073 ! -property_value: IAO:0000589 "unilaminar epithelium (CARO)" xsd:string -equivalent_to: UBERON:0000490 ! unilaminar epithelium - -[Term] -id: CARO:0000074 ! -property_value: IAO:0000589 "solid compound organ (CARO)" xsd:string -equivalent_to: UBERON:0000491 ! solid compound organ - -[Term] -id: CARO:0000000 ! -property_value: IAO:0000589 "anatomical entity (CARO)" xsd:string -equivalent_to: UBERON:0001062 ! anatomical entity - -[Term] -id: CARO:0002001 ! -property_value: IAO:0000589 "integumental system (CARO)" xsd:string -equivalent_to: UBERON:0002416 ! integumental system - -[Term] -id: CARO:0000028 ! -property_value: IAO:0000589 "female organism (CARO)" xsd:string -equivalent_to: UBERON:0003100 ! female organism - -[Term] -id: CARO:0000027 ! -property_value: IAO:0000589 "male organism (CARO)" xsd:string -equivalent_to: UBERON:0003101 ! male organism - -[Term] -id: CARO:0000024 ! -property_value: IAO:0000589 "compound organ (CARO)" xsd:string -equivalent_to: UBERON:0003103 ! compound organ - -[Term] -id: CARO:0001000 ! -property_value: IAO:0000589 "multi cell part structure (CARO)" xsd:string -equivalent_to: UBERON:0005162 ! multi cell part structure - -[Term] -id: CARO:0000008 ! -property_value: IAO:0000589 "anatomical line (CARO)" xsd:string -equivalent_to: UBERON:0006800 ! anatomical line - -[Term] -id: CARO:0000009 ! -property_value: IAO:0000589 "anatomical point (CARO)" xsd:string -equivalent_to: UBERON:0006983 ! anatomical point - -[Term] -id: CARO:0001002 ! -property_value: IAO:0000589 "anatomical surface (CARO)" xsd:string -equivalent_to: UBERON:0006984 ! anatomical surface - -[Term] -id: CARO:0000029 ! -property_value: IAO:0000589 "hermaphroditic organism (CARO)" xsd:string -equivalent_to: UBERON:0007197 ! hermaphroditic organism - -[Term] -id: CARO:0010000 ! -property_value: IAO:0000589 "multicellular anatomical structure (CARO)" xsd:string -equivalent_to: UBERON:0010000 ! multicellular anatomical structure - -[Term] -id: CARO:0010001 ! -property_value: IAO:0000589 "cell cluster organ (CARO)" xsd:string -equivalent_to: UBERON:0010001 ! cell cluster organ - -[Term] -id: CARO:0001004 ! -property_value: IAO:0000589 "bona-fide anatomical boundary (CARO)" xsd:string -equivalent_to: UBERON:0010199 ! bona-fide anatomical boundary - -[Term] -id: CARO:0000045 ! -property_value: IAO:0000589 "sequential hermaphroditic organism (CARO)" xsd:string -equivalent_to: UBERON:0010895 ! sequential hermaphroditic organism - -[Term] -id: CARO:0000046 ! -property_value: IAO:0000589 "synchronous hermaphroditic organism (CARO)" xsd:string -equivalent_to: UBERON:0010899 ! synchronous hermaphroditic organism - -[Term] -id: CARO:0010002 ! -property_value: IAO:0000589 "compound cell cluster organ (CARO)" xsd:string -equivalent_to: UBERON:0014732 ! compound cell cluster organ - -[Term] -id: CARO:0001007 ! -property_value: IAO:0000589 "morphological boundary (CARO)" xsd:string -equivalent_to: UBERON:0022294 ! morphological boundary - -[Term] -id: CARO:0020001 ! -property_value: IAO:0000589 "multi organ part structure (CARO)" xsd:string -equivalent_to: UBERON:0034921 ! multi organ part structure - -[Term] -id: CARO:0020002 ! -property_value: IAO:0000589 "cell cluster (CARO)" xsd:string -equivalent_to: UBERON:0034922 ! cell cluster - -[Term] -id: CARO:0020000 ! -property_value: IAO:0000589 "disconnected anatomical group (CARO)" xsd:string -equivalent_to: UBERON:0034923 ! disconnected anatomical group - -[Term] -id: CARO:0002002 ! -property_value: IAO:0000589 "aligned anatomical group (CARO)" xsd:string -equivalent_to: UBERON:0034924 ! aligned anatomical group - -[Term] -id: CARO:0001013 ! -property_value: IAO:0000589 "anatomical plane (CARO)" xsd:string -equivalent_to: UBERON:0035085 ! anatomical plane - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-caro.owl b/src/ontology/bridge/uberon-bridge-to-caro.owl index 5247046606..81392ca211 100644 --- a/src/ontology/bridge/uberon-bridge-to-caro.owl +++ b/src/ontology/bridge/uberon-bridge-to-caro.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - anatomical structure (CARO) - CARO:0000003 - - - - - - - - - organism substance (CARO) - CARO:0000004 - - - - - - - - - anatomical space (CARO) - CARO:0000005 + anatomical entity (CARO) @@ -358,8 +54,7 @@ - material anatomical entity (CARO) - CARO:0000006 + material anatomical entity (CARO) @@ -368,18 +63,7 @@ - immaterial anatomical entity (CARO) - CARO:0000007 - - - - - - - - - anatomical line (CARO) - CARO:0000008 + immaterial anatomical entity (CARO) @@ -388,88 +72,7 @@ - anatomical point (CARO) - CARO:0000009 - - - - - - - - - non-material anatomical boundary (CARO) - CARO:0000010 - - - - - - - - - anatomical system (CARO) - CARO:0000011 - - - - - - - - - multicellular organism (CARO) - CARO:0000012 - - - - - - - - - compound organ component (CARO) - CARO:0000019 - - - - - - - - - simple organ (CARO) - CARO:0000021 - - - - - - - - - compound organ (CARO) - CARO:0000024 - - - - - - - - - male organism (CARO) - CARO:0000027 - - - - - - - - - female organism (CARO) - CARO:0000028 + anatomical point (CARO) @@ -478,48 +81,7 @@ - hermaphroditic organism (CARO) - CARO:0000029 - - - - - - - - - organism subdivision (CARO) - CARO:0000032 - - - - - - - - - acellular anatomical structure (CARO) - CARO:0000040 - - - - - - - - - extraembryonic structure (CARO) - CARO:0000042 - - - - - - - - - tissue (CARO) - CARO:0000043 + hermaphroditic organism (CARO) @@ -528,8 +90,7 @@ - sequential hermaphroditic organism (CARO) - CARO:0000045 + sequential hermaphroditic organism (CARO) @@ -538,128 +99,7 @@ - synchronous hermaphroditic organism (CARO) - CARO:0000046 - - - - - - - - - anatomical group (CARO) - CARO:0000054 - - - - - - - - - multi-tissue structure (CARO) - CARO:0000055 - - - - - - - - - basal lamina of epithelium (CARO) - CARO:0000065 - - - - - - - - - epithelium (CARO) - CARO:0000066 - - - - - - - - - simple cuboidal epithelium (CARO) - CARO:0000067 - - - - - - - - - simple columnar epithelium (CARO) - CARO:0000068 - - - - - - - - - multilaminar epithelium (CARO) - CARO:0000069 - - - - - - - - - simple squamous epithelium (CARO) - CARO:0000070 - - - - - - - - - atypical epithelium (CARO) - CARO:0000071 - - - - - - - - - cavitated compound organ (CARO) - CARO:0000072 - - - - - - - - - unilaminar epithelium (CARO) - CARO:0000073 - - - - - - - - - solid compound organ (CARO) - CARO:0000074 + synchronous hermaphroditic organism (CARO) @@ -668,8 +108,7 @@ - haemolymphatic fluid (CARO) - CARO:0000081 + haemolymphatic fluid (CARO) @@ -678,8 +117,7 @@ - multi cell part structure (CARO) - CARO:0001000 + multi cell part structure (CARO) @@ -688,8 +126,7 @@ - neuron projection bundle (CARO) - CARO:0001001 + neuron projection bundle (CARO) @@ -698,8 +135,7 @@ - anatomical surface (CARO) - CARO:0001002 + anatomical surface (CARO) @@ -708,8 +144,7 @@ - bona-fide anatomical boundary (CARO) - CARO:0001004 + bona-fide anatomical boundary (CARO) @@ -718,8 +153,7 @@ - morphological boundary (CARO) - CARO:0001007 + morphological boundary (CARO) @@ -728,8 +162,7 @@ - anatomical plane (CARO) - CARO:0001013 + anatomical plane (CARO) @@ -738,8 +171,7 @@ - integumental system (CARO) - CARO:0002001 + integumental system (CARO) @@ -748,8 +180,7 @@ - aligned anatomical group (CARO) - CARO:0002002 + aligned anatomical group (CARO) @@ -758,8 +189,7 @@ - multicellular anatomical structure (CARO) - CARO:0010000 + multicellular anatomical structure (CARO) @@ -768,8 +198,7 @@ - cell cluster organ (CARO) - CARO:0010001 + cell cluster organ (CARO) @@ -778,8 +207,7 @@ - compound cell cluster organ (CARO) - CARO:0010002 + compound cell cluster organ (CARO) @@ -788,8 +216,7 @@ - appendage (CARO) - CARO:0010003 + appendage (CARO) @@ -798,8 +225,7 @@ - disconnected anatomical group (CARO) - CARO:0020000 + disconnected anatomical group (CARO) @@ -808,8 +234,7 @@ - multi organ part structure (CARO) - CARO:0020001 + multi organ part structure (CARO) @@ -818,8 +243,7 @@ - cell cluster (CARO) - CARO:0020002 + cell cluster (CARO) @@ -828,30 +252,17 @@ - organ (CARO) - CARO:0020004 + organ (CARO) - - - - - - - - - - - - @@ -870,18 +281,6 @@ - - - - - - - - - - - - @@ -894,126 +293,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1026,36 +305,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - @@ -1147,5 +402,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-dhba.obo b/src/ontology/bridge/uberon-bridge-to-dhba.obo deleted file mode 100644 index 0fb65a610a..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-dhba.obo +++ /dev/null @@ -1,4687 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-dhba -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: DHBA:10505 ! -property_value: IAO:0000589 "pituitary gland (DHBA)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10576 ! -property_value: IAO:0000589 "fornix of brain (DHBA)" xsd:string -intersection_of: UBERON:0000052 ! fornix of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12420 ! -property_value: IAO:0000589 "facial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0000127 ! facial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12027 ! -property_value: IAO:0000589 "tapetum of corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0000373 ! tapetum of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13057 ! -property_value: IAO:0000589 "endopeduncular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0000432 ! endopeduncular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10493 ! -property_value: IAO:0000589 "lateral tuberal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0000435 ! lateral tuberal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10172 ! -property_value: IAO:0000589 "prefrontal cortex (DHBA)" xsd:string -intersection_of: UBERON:0000451 ! prefrontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10560 ! -property_value: IAO:0000589 "hippocampal commissure (DHBA)" xsd:string -intersection_of: UBERON:0000908 ! hippocampal commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10559 ! -property_value: IAO:0000589 "anterior commissure (DHBA)" xsd:string -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10567 ! -property_value: IAO:0000589 "posterior commissure (DHBA)" xsd:string -intersection_of: UBERON:0000936 ! posterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:15544 ! -property_value: IAO:0000589 "cranial nerve II (DHBA)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10155 ! -property_value: IAO:0000589 "brain (DHBA)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10159 ! -property_value: IAO:0000589 "cerebral cortex (DHBA)" xsd:string -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10644 ! -property_value: IAO:0000589 "optic chiasma (DHBA)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10661 ! -property_value: IAO:0000589 "pons (DHBA)" xsd:string -intersection_of: UBERON:0000988 ! pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10154 ! -property_value: IAO:0000589 "neural tube (DHBA)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10162 ! -property_value: IAO:0000589 "primary motor cortex (DHBA)" xsd:string -intersection_of: UBERON:0001384 ! primary motor cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12864 ! -property_value: IAO:0000589 "sensory root of facial nerve (DHBA)" xsd:string -intersection_of: UBERON:0001699 ! sensory root of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12198 ! -property_value: IAO:0000589 "oculomotor nuclear complex (DHBA)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12572 ! -property_value: IAO:0000589 "spinal nucleus of trigeminal nerve (DHBA)" xsd:string -intersection_of: UBERON:0001717 ! spinal nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12208 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (DHBA)" xsd:string -intersection_of: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12540 ! -property_value: IAO:0000589 "nucleus ambiguus (DHBA)" xsd:string -intersection_of: UBERON:0001719 ! nucleus ambiguus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12581 ! -property_value: IAO:0000589 "medial vestibular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001722 ! medial vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10161 ! -property_value: IAO:0000589 "frontal cortex (DHBA)" xsd:string -intersection_of: UBERON:0001870 ! frontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12139 ! -property_value: IAO:0000589 "temporal lobe (DHBA)" xsd:string -intersection_of: UBERON:0001871 ! temporal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12131 ! -property_value: IAO:0000589 "parietal lobe (DHBA)" xsd:string -intersection_of: UBERON:0001872 ! parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10334 ! -property_value: IAO:0000589 "caudate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10338 ! -property_value: IAO:0000589 "putamen (DHBA)" xsd:string -intersection_of: UBERON:0001874 ! putamen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10342 ! -property_value: IAO:0000589 "globus pallidus (DHBA)" xsd:string -intersection_of: UBERON:0001875 ! globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10361 ! -property_value: IAO:0000589 "amygdala (DHBA)" xsd:string -intersection_of: UBERON:0001876 ! amygdala -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10351 ! -property_value: IAO:0000589 "medial septal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001877 ! medial septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13032 ! -property_value: IAO:0000589 "septofimbrial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001878 ! septofimbrial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10354 ! -property_value: IAO:0000589 "nucleus of diagonal band (DHBA)" xsd:string -intersection_of: UBERON:0001879 ! nucleus of diagonal band -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10384 ! -property_value: IAO:0000589 "bed nucleus of stria terminalis (DHBA)" xsd:string -intersection_of: UBERON:0001880 ! bed nucleus of stria terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10358 ! -property_value: IAO:0000589 "island of Calleja (DHBA)" xsd:string -intersection_of: UBERON:0001881 ! island of Calleja -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10339 ! -property_value: IAO:0000589 "nucleus accumbens (DHBA)" xsd:string -intersection_of: UBERON:0001882 ! nucleus accumbens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10310 ! -property_value: IAO:0000589 "olfactory tubercle (DHBA)" xsd:string -intersection_of: UBERON:0001883 ! olfactory tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10295 ! -property_value: IAO:0000589 "dentate gyrus of hippocampal formation (DHBA)" xsd:string -intersection_of: UBERON:0001885 ! dentate gyrus of hippocampal formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10581 ! -property_value: IAO:0000589 "internal capsule of telencephalon (DHBA)" xsd:string -intersection_of: UBERON:0001887 ! internal capsule of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12075 ! -property_value: IAO:0000589 "lateral olfactory stria (DHBA)" xsd:string -intersection_of: UBERON:0001888 ! lateral olfactory stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10156 ! -property_value: IAO:0000589 "forebrain (DHBA)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10648 ! -property_value: IAO:0000589 "midbrain (DHBA)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12664 ! -property_value: IAO:0000589 "rhombomere (DHBA)" xsd:string -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10158 ! -property_value: IAO:0000589 "telencephalon (DHBA)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10389 ! -property_value: IAO:0000589 "diencephalon (DHBA)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10655 ! -property_value: IAO:0000589 "metencephalon (DHBA)" xsd:string -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10390 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (DHBA)" xsd:string -intersection_of: UBERON:0001897 ! dorsal plus ventral thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10467 ! -property_value: IAO:0000589 "hypothalamus (DHBA)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10451 ! -property_value: IAO:0000589 "epithalamus (DHBA)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10461 ! -property_value: IAO:0000589 "ventral thalamus (DHBA)" xsd:string -intersection_of: UBERON:0001900 ! ventral thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10464 ! -property_value: IAO:0000589 "thalamic reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001903 ! thalamic reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10460 ! -property_value: IAO:0000589 "pineal body (DHBA)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10466 ! -property_value: IAO:0000589 "subthalamic nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001906 ! subthalamic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10463 ! -property_value: IAO:0000589 "zona incerta (DHBA)" xsd:string -intersection_of: UBERON:0001907 ! zona incerta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10589 ! -property_value: IAO:0000589 "optic tract (DHBA)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10566 ! -property_value: IAO:0000589 "habenular commissure (DHBA)" xsd:string -intersection_of: UBERON:0001909 ! habenular commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10587 ! -property_value: IAO:0000589 "medial forebrain bundle (DHBA)" xsd:string -intersection_of: UBERON:0001910 ! medial forebrain bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10457 ! -property_value: IAO:0000589 "paraventricular nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0001920 ! paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10403 ! -property_value: IAO:0000589 "reuniens nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001921 ! reuniens nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10450 ! -property_value: IAO:0000589 "parafascicular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001922 ! parafascicular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10445 ! -property_value: IAO:0000589 "central medial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001923 ! central medial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10446 ! -property_value: IAO:0000589 "paracentral nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001924 ! paracentral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10420 ! -property_value: IAO:0000589 "ventral lateral nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0001925 ! ventral lateral nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10429 ! -property_value: IAO:0000589 "lateral geniculate body (DHBA)" xsd:string -intersection_of: UBERON:0001926 ! lateral geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10434 ! -property_value: IAO:0000589 "medial geniculate body (DHBA)" xsd:string -intersection_of: UBERON:0001927 ! medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10481 ! -property_value: IAO:0000589 "supraoptic nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001929 ! supraoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10476 ! -property_value: IAO:0000589 "paraventricular nucleus of hypothalamus (DHBA)" xsd:string -intersection_of: UBERON:0001930 ! paraventricular nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10471 ! -property_value: IAO:0000589 "lateral preoptic nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001931 ! lateral preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10492 ! -property_value: IAO:0000589 "arcuate nucleus of hypothalamus (DHBA)" xsd:string -intersection_of: UBERON:0001932 ! arcuate nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10485 ! -property_value: IAO:0000589 "dorsomedial nucleus of hypothalamus (DHBA)" xsd:string -intersection_of: UBERON:0001934 ! dorsomedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10488 ! -property_value: IAO:0000589 "ventromedial nucleus of hypothalamus (DHBA)" xsd:string -intersection_of: UBERON:0001935 ! ventromedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10496 ! -property_value: IAO:0000589 "tuberomammillary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001936 ! tuberomammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10502 ! -property_value: IAO:0000589 "lateral mammillary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001938 ! lateral mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10499 ! -property_value: IAO:0000589 "medial mammillary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001939 ! medial mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10497 ! -property_value: IAO:0000589 "supramammillary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001940 ! supramammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10453 ! -property_value: IAO:0000589 "lateral habenular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001941 ! lateral habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10456 ! -property_value: IAO:0000589 "medial habenular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001942 ! medial habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12195 ! -property_value: IAO:0000589 "midbrain tegmentum (DHBA)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12181 ! -property_value: IAO:0000589 "pretectal region (DHBA)" xsd:string -intersection_of: UBERON:0001944 ! pretectal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12292 ! -property_value: IAO:0000589 "superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12305 ! -property_value: IAO:0000589 "inferior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0001946 ! inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12247 ! -property_value: IAO:0000589 "red nucleus (DHBA)" xsd:string -intersection_of: UBERON:0001947 ! red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10160 ! -property_value: IAO:0000589 "neocortex (DHBA)" xsd:string -intersection_of: UBERON:0001950 ! neocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10315 ! -property_value: IAO:0000589 "presubiculum (DHBA)" xsd:string -intersection_of: UBERON:0001953 ! presubiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10296 ! -property_value: IAO:0000589 "Ammon's horn (DHBA)" xsd:string -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12252 ! -property_value: IAO:0000589 "substantia nigra pars compacta (DHBA)" xsd:string -intersection_of: UBERON:0001965 ! substantia nigra pars compacta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12259 ! -property_value: IAO:0000589 "substantia nigra pars reticulata (DHBA)" xsd:string -intersection_of: UBERON:0001966 ! substantia nigra pars reticulata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12148 ! -property_value: IAO:0000589 "occipital lobe (DHBA)" xsd:string -intersection_of: UBERON:0002021 ! occipital lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12176 ! -property_value: IAO:0000589 "insula (DHBA)" xsd:string -intersection_of: UBERON:0002022 ! insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10346 ! -property_value: IAO:0000589 "claustrum of brain (DHBA)" xsd:string -intersection_of: UBERON:0002023 ! claustrum of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10653 ! -property_value: IAO:0000589 "hindbrain (DHBA)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10480 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002034 ! suprachiasmatic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10470 ! -property_value: IAO:0000589 "medial preoptic nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002035 ! medial preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10656 ! -property_value: IAO:0000589 "cerebellum (DHBA)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12251 ! -property_value: IAO:0000589 "substantia nigra (DHBA)" xsd:string -intersection_of: UBERON:0002038 ! substantia nigra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12223 ! -property_value: IAO:0000589 "dorsal raphe nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002043 ! dorsal raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12218 ! -property_value: IAO:0000589 "ventral nucleus of posterior commissure (DHBA)" xsd:string -intersection_of: UBERON:0002044 ! ventral nucleus of posterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12589 ! -property_value: IAO:0000589 "cuneate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002045 ! cuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12471 ! -property_value: IAO:0000589 "pontine raphe nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002047 ! pontine raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12475 ! -property_value: IAO:0000589 "pontine raphe nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002047 ! pontine raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12600 ! -property_value: IAO:0000589 "inferior olivary complex (DHBA)" xsd:string -intersection_of: UBERON:0002127 ! inferior olivary complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12462 ! -property_value: IAO:0000589 "superior olivary complex (DHBA)" xsd:string -intersection_of: UBERON:0002128 ! superior olivary complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10657 ! -property_value: IAO:0000589 "cerebellar cortex (DHBA)" xsd:string -intersection_of: UBERON:0002129 ! cerebellar cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10660 ! -property_value: IAO:0000589 "cerebellar nuclear complex (DHBA)" xsd:string -intersection_of: UBERON:0002130 ! cerebellar nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12838 ! -property_value: IAO:0000589 "anterior lobe of cerebellum (DHBA)" xsd:string -intersection_of: UBERON:0002131 ! anterior lobe of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12101 ! -property_value: IAO:0000589 "subcommissural organ (DHBA)" xsd:string -intersection_of: UBERON:0002139 ! subcommissural organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12312 ! -property_value: IAO:0000589 "parabigeminal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002140 ! parabigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12219 ! -property_value: IAO:0000589 "parvocellular oculomotor nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002141 ! parvocellular oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12413 ! -property_value: IAO:0000589 "pedunculopontine tegmental nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002142 ! pedunculopontine tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12508 ! -property_value: IAO:0000589 "dorsal tegmental nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002143 ! dorsal tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12285 ! -property_value: IAO:0000589 "peripeduncular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002144 ! peripeduncular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12270 ! -property_value: IAO:0000589 "interpeduncular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002145 ! interpeduncular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12414 ! -property_value: IAO:0000589 "reticulotegmental nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002147 ! reticulotegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12497 ! -property_value: IAO:0000589 "reticulotegmental nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002147 ! reticulotegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12819 ! -property_value: IAO:0000589 "locus ceruleus (DHBA)" xsd:string -intersection_of: UBERON:0002148 ! locus ceruleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12435 ! -property_value: IAO:0000589 "superior salivatory nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002149 ! superior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12354 ! -property_value: IAO:0000589 "superior cerebellar peduncle (DHBA)" xsd:string -intersection_of: UBERON:0002150 ! superior cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12406 ! -property_value: IAO:0000589 "pontine nuclear group (DHBA)" xsd:string -intersection_of: UBERON:0002151 ! pontine nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12768 ! -property_value: IAO:0000589 "middle cerebellar peduncle (DHBA)" xsd:string -intersection_of: UBERON:0002152 ! middle cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12402 ! -property_value: IAO:0000589 "fastigial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002153 ! fastigial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12625 ! -property_value: IAO:0000589 "gigantocellular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002155 ! gigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12642 ! -property_value: IAO:0000589 "nucleus raphe magnus (DHBA)" xsd:string -intersection_of: UBERON:0002156 ! nucleus raphe magnus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12644 ! -property_value: IAO:0000589 "nucleus raphe pallidus (DHBA)" xsd:string -intersection_of: UBERON:0002157 ! nucleus raphe pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12610 ! -property_value: IAO:0000589 "principal inferior olivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002158 ! principal inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12605 ! -property_value: IAO:0000589 "medial accessory inferior olivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002159 ! medial accessory inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12615 ! -property_value: IAO:0000589 "nucleus prepositus (DHBA)" xsd:string -intersection_of: UBERON:0002160 ! nucleus prepositus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12592 ! -property_value: IAO:0000589 "gracile nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002161 ! gracile nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12807 ! -property_value: IAO:0000589 "area postrema (DHBA)" xsd:string -intersection_of: UBERON:0002162 ! area postrema -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12741 ! -property_value: IAO:0000589 "inferior cerebellar peduncle (DHBA)" xsd:string -intersection_of: UBERON:0002163 ! inferior cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12791 ! -property_value: IAO:0000589 "tectobulbar tract (DHBA)" xsd:string -intersection_of: UBERON:0002164 ! tectobulbar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10301 ! -property_value: IAO:0000589 "subiculum (DHBA)" xsd:string -intersection_of: UBERON:0002191 ! subiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10302 ! -property_value: IAO:0000589 "subiculum (DHBA)" xsd:string -intersection_of: UBERON:0002191 ! subiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12094 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (DHBA)" xsd:string -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13338 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (DHBA)" xsd:string -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:15546 ! -property_value: IAO:0000589 "mammillary body (DHBA)" xsd:string -intersection_of: UBERON:0002206 ! mammillary body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12104 ! -property_value: IAO:0000589 "subfornical organ (DHBA)" xsd:string -intersection_of: UBERON:0002219 ! subfornical organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12890 ! -property_value: IAO:0000589 "spinal cord (DHBA)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10659 ! -property_value: IAO:0000589 "cerebellar hemisphere (DHBA)" xsd:string -intersection_of: UBERON:0002245 ! cerebellar hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12375 ! -property_value: IAO:0000589 "corpora quadrigemina (DHBA)" xsd:string -intersection_of: UBERON:0002259 ! corpora quadrigemina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10307 ! -property_value: IAO:0000589 "olfactory bulb (DHBA)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12073 ! -property_value: IAO:0000589 "olfactory tract (DHBA)" xsd:string -intersection_of: UBERON:0002265 ! olfactory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12074 ! -property_value: IAO:0000589 "olfactory tract (DHBA)" xsd:string -intersection_of: UBERON:0002265 ! olfactory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10308 ! -property_value: IAO:0000589 "anterior olfactory nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002266 ! anterior olfactory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12519 ! -property_value: IAO:0000589 "laterodorsal tegmental nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002267 ! laterodorsal tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11578 ! -property_value: IAO:0000589 "perifornical nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002274 ! perifornical nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10596 ! -property_value: IAO:0000589 "telencephalic ventricle (DHBA)" xsd:string -intersection_of: UBERON:0002285 ! telencephalic ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10602 ! -property_value: IAO:0000589 "third ventricle (DHBA)" xsd:string -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10651 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (DHBA)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12369 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (DHBA)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12808 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (DHBA)" xsd:string -intersection_of: UBERON:0002290 ! choroid plexus of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146035108 ! -property_value: IAO:0000589 "central canal of spinal cord (DHBA)" xsd:string -intersection_of: UBERON:0002291 ! central canal of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10601 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (DHBA)" xsd:string -intersection_of: UBERON:0002307 ! choroid plexus of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12764 ! -property_value: IAO:0000589 "medial longitudinal fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0002309 ! medial longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10575 ! -property_value: IAO:0000589 "hippocampus fimbria (DHBA)" xsd:string -intersection_of: UBERON:0002310 ! hippocampus fimbria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12291 ! -property_value: IAO:0000589 "midbrain tectum (DHBA)" xsd:string -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146035048 ! -property_value: IAO:0000589 "gray matter of spinal cord (DHBA)" xsd:string -intersection_of: UBERON:0002315 ! gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146035088 ! -property_value: IAO:0000589 "white matter of spinal cord (DHBA)" xsd:string -intersection_of: UBERON:0002318 ! white matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10561 ! -property_value: IAO:0000589 "corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0002336 ! corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10332 ! -property_value: IAO:0000589 "basal ganglion (DHBA)" xsd:string -intersection_of: UBERON:0002420 ! basal ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10294 ! -property_value: IAO:0000589 "hippocampal formation (DHBA)" xsd:string -intersection_of: UBERON:0002421 ! hippocampal formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10669 ! -property_value: IAO:0000589 "fourth ventricle (DHBA)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12805 ! -property_value: IAO:0000589 "fourth ventricle (DHBA)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10643 ! -property_value: IAO:0000589 "pituitary stalk (DHBA)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10333 ! -property_value: IAO:0000589 "striatum (DHBA)" xsd:string -intersection_of: UBERON:0002435 ! striatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12266 ! -property_value: IAO:0000589 "ventral tegmental nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002438 ! ventral tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10344 ! -property_value: IAO:0000589 "medial globus pallidus (DHBA)" xsd:string -intersection_of: UBERON:0002477 ! medial globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10430 ! -property_value: IAO:0000589 "dorsal lateral geniculate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002479 ! dorsal lateral geniculate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13042 ! -property_value: IAO:0000589 "ventral lateral geniculate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002480 ! ventral lateral geniculate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12803 ! -property_value: IAO:0000589 "ventral trigeminal tract (DHBA)" xsd:string -intersection_of: UBERON:0002549 ! ventral trigeminal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441551 ! -property_value: IAO:0000589 "anterior hypothalamic region (DHBA)" xsd:string -intersection_of: UBERON:0002550 ! anterior hypothalamic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12278 ! -property_value: IAO:0000589 "interstitial nucleus of Cajal (DHBA)" xsd:string -intersection_of: UBERON:0002551 ! interstitial nucleus of Cajal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12754 ! -property_value: IAO:0000589 "vestibulocerebellar tract (DHBA)" xsd:string -intersection_of: UBERON:0002552 ! vestibulocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12050 ! -property_value: IAO:0000589 "corticotectal tract (DHBA)" xsd:string -intersection_of: UBERON:0002556 ! corticotectal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12230 ! -property_value: IAO:0000589 "linear nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002557 ! linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12616 ! -property_value: IAO:0000589 "medullary reticular formation (DHBA)" xsd:string -intersection_of: UBERON:0002559 ! medullary reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10639 ! -property_value: IAO:0000589 "superior frontal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002562 ! superior frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12309 ! -property_value: IAO:0000589 "central nucleus of inferior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0002563 ! central nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12125 ! -property_value: IAO:0000589 "lateral orbital gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002564 ! lateral orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12186 ! -property_value: IAO:0000589 "olivary pretectal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002565 ! olivary pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12405 ! -property_value: IAO:0000589 "basal part of pons (DHBA)" xsd:string -intersection_of: UBERON:0002567 ! basal part of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034852 ! -property_value: IAO:0000589 "transverse temporal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002569 ! transverse temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12122 ! -property_value: IAO:0000589 "medial orbital gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002570 ! medial orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12308 ! -property_value: IAO:0000589 "external nucleus of inferior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0002571 ! external nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12480 ! -property_value: IAO:0000589 "pontine reticular formation (DHBA)" xsd:string -intersection_of: UBERON:0002573 ! pontine reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12146 ! -property_value: IAO:0000589 "temporal pole (DHBA)" xsd:string -intersection_of: UBERON:0002576 ! temporal pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12306 ! -property_value: IAO:0000589 "pericentral nucleus of inferior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0002577 ! pericentral nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12328 ! -property_value: IAO:0000589 "brachium of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0002580 ! brachium of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12132 ! -property_value: IAO:0000589 "postcentral gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002581 ! postcentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10612 ! -property_value: IAO:0000589 "calcarine sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002586 ! calcarine sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12500 ! -property_value: IAO:0000589 "nucleus subceruleus (DHBA)" xsd:string -intersection_of: UBERON:0002587 ! nucleus subceruleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12337 ! -property_value: IAO:0000589 "decussation of superior cerebellar peduncle (DHBA)" xsd:string -intersection_of: UBERON:0002588 ! decussation of superior cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12759 ! -property_value: IAO:0000589 "lateral corticospinal tract (DHBA)" xsd:string -intersection_of: UBERON:0002589 ! lateral corticospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13229 ! -property_value: IAO:0000589 "prepyriform area (DHBA)" xsd:string -intersection_of: UBERON:0002590 ! prepyriform area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441677 ! -property_value: IAO:0000589 "prepyriform area (DHBA)" xsd:string -intersection_of: UBERON:0002590 ! prepyriform area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12750 ! -property_value: IAO:0000589 "juxtarestiform body (DHBA)" xsd:string -intersection_of: UBERON:0002592 ! juxtarestiform body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12128 ! -property_value: IAO:0000589 "orbital operculum (DHBA)" xsd:string -intersection_of: UBERON:0002593 ! orbital operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12357 ! -property_value: IAO:0000589 "dentatothalamic tract (DHBA)" xsd:string -intersection_of: UBERON:0002594 ! dentatothalamic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10625 ! -property_value: IAO:0000589 "orbital sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002595 ! orbital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10423 ! -property_value: IAO:0000589 "ventral posterior nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002596 ! ventral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10426 ! -property_value: IAO:0000589 "ventral posterior nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002596 ! ventral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12444 ! -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (DHBA)" xsd:string -intersection_of: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10633 ! -property_value: IAO:0000589 "paracentral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002598 ! paracentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12155 ! -property_value: IAO:0000589 "limbic lobe (DHBA)" xsd:string -intersection_of: UBERON:0002600 ! limbic lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12175 ! -property_value: IAO:0000589 "fasciolar gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002601 ! fasciolar gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12401 ! -property_value: IAO:0000589 "emboliform nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002602 ! emboliform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12161 ! -property_value: IAO:0000589 "paraterminal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002603 ! paraterminal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12457 ! -property_value: IAO:0000589 "ventral nucleus of lateral lemniscus (DHBA)" xsd:string -intersection_of: UBERON:0002604 ! ventral nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034840 ! -property_value: IAO:0000589 "superior rostral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002607 ! superior rostral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10422 ! -property_value: IAO:0000589 "caudal part of ventral lateral nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002608 ! caudal part of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12437 ! -property_value: IAO:0000589 "cochlear nuclear complex (DHBA)" xsd:string -intersection_of: UBERON:0002610 ! cochlear nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13223 ! -property_value: IAO:0000589 "transverse orbital sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002612 ! transverse orbital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12400 ! -property_value: IAO:0000589 "cerebellum globose nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002613 ! cerebellum globose nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10427 ! -property_value: IAO:0000589 "medial part of ventral lateral nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002614 ! medial part of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12366 ! -property_value: IAO:0000589 "ventral tegmental decussation (DHBA)" xsd:string -intersection_of: UBERON:0002615 ! ventral tegmental decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12377 ! -property_value: IAO:0000589 "root of trochlear nerve (DHBA)" xsd:string -intersection_of: UBERON:0002618 ! root of trochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10647 ! -property_value: IAO:0000589 "tuber cinereum (DHBA)" xsd:string -intersection_of: UBERON:0002620 ! tuber cinereum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12120 ! -property_value: IAO:0000589 "orbital part of inferior frontal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002624 ! orbital part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13063 ! -property_value: IAO:0000589 "median preoptic nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002625 ! median preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10335 ! -property_value: IAO:0000589 "head of caudate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002626 ! head of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10337 ! -property_value: IAO:0000589 "tail of caudate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002628 ! tail of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12118 ! -property_value: IAO:0000589 "triangular part of inferior frontal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002629 ! triangular part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10336 ! -property_value: IAO:0000589 "body of caudate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002630 ! body of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10501 ! -property_value: IAO:0000589 "medial part of medial mammillary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002632 ! medial part of medial mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12429 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (DHBA)" xsd:string -intersection_of: UBERON:0002633 ! motor nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10475 ! -property_value: IAO:0000589 "anterior nucleus of hypothalamus (DHBA)" xsd:string -intersection_of: UBERON:0002634 ! anterior nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10412 ! -property_value: IAO:0000589 "lateral pulvinar nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002636 ! lateral pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10417 ! -property_value: IAO:0000589 "ventral anterior nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002637 ! ventral anterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10411 ! -property_value: IAO:0000589 "medial pulvinar nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002638 ! medial pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12239 ! -property_value: IAO:0000589 "midbrain reticular formation (DHBA)" xsd:string -intersection_of: UBERON:0002639 ! midbrain reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12745 ! -property_value: IAO:0000589 "cuneocerebellar tract (DHBA)" xsd:string -intersection_of: UBERON:0002640 ! cuneocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10410 ! -property_value: IAO:0000589 "oral pulvinar nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002641 ! oral pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12732 ! -property_value: IAO:0000589 "decussation of medial lemniscus (DHBA)" xsd:string -intersection_of: UBERON:0002643 ! decussation of medial lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10399 ! -property_value: IAO:0000589 "densocellular part of medial dorsal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002645 ! densocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10400 ! -property_value: IAO:0000589 "magnocellular part of medial dorsal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002647 ! magnocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10597 ! -property_value: IAO:0000589 "anterior horn of lateral ventricle (DHBA)" xsd:string -intersection_of: UBERON:0002651 ! anterior horn of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12860 ! -property_value: IAO:0000589 "posterior median eminence (DHBA)" xsd:string -intersection_of: UBERON:0002652 ! posterior median eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10598 ! -property_value: IAO:0000589 "body of lateral ventricle (DHBA)" xsd:string -intersection_of: UBERON:0002655 ! body of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10373 ! -property_value: IAO:0000589 "periamygdaloid area (DHBA)" xsd:string -intersection_of: UBERON:0002656 ! periamygdaloid area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12169 ! -property_value: IAO:0000589 "periamygdaloid area (DHBA)" xsd:string -intersection_of: UBERON:0002656 ! periamygdaloid area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12164 ! -property_value: IAO:0000589 "posterior parahippocampal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002657 ! posterior parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12115 ! -property_value: IAO:0000589 "superior frontal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002661 ! superior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10350 ! -property_value: IAO:0000589 "septal nuclear complex (DHBA)" xsd:string -intersection_of: UBERON:0002663 ! septal nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10500 ! -property_value: IAO:0000589 "lateral part of medial mammillary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002664 ! lateral part of medial mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12767 ! -property_value: IAO:0000589 "mesencephalic tract of trigeminal nerve (DHBA)" xsd:string -intersection_of: UBERON:0002666 ! mesencephalic tract of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10352 ! -property_value: IAO:0000589 "lateral septal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002667 ! lateral septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12376 ! -property_value: IAO:0000589 "oculomotor nerve root (DHBA)" xsd:string -intersection_of: UBERON:0002668 ! oculomotor nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12078 ! -property_value: IAO:0000589 "pallidotegmental fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0002671 ! pallidotegmental fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034788 ! -property_value: IAO:0000589 "anterior subcentral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002672 ! anterior subcentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10393 ! -property_value: IAO:0000589 "anterodorsal nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002679 ! anterodorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10394 ! -property_value: IAO:0000589 "anteromedial nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002681 ! anteromedial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12418 ! -property_value: IAO:0000589 "abducens nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002682 ! abducens nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10636 ! -property_value: IAO:0000589 "rhinal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002683 ! rhinal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12643 ! -property_value: IAO:0000589 "nucleus raphe obscurus (DHBA)" xsd:string -intersection_of: UBERON:0002684 ! nucleus raphe obscurus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10395 ! -property_value: IAO:0000589 "anteroventral nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002685 ! anteroventral nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12136 ! -property_value: IAO:0000589 "angular gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002686 ! angular gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12653 ! -property_value: IAO:0000589 "area X of ventral lateral nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002687 ! area X of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12135 ! -property_value: IAO:0000589 "supramarginal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002688 ! supramarginal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12106 ! -property_value: IAO:0000589 "supraoptic crest (DHBA)" xsd:string -intersection_of: UBERON:0002689 ! supraoptic crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13061 ! -property_value: IAO:0000589 "anteroventral periventricular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002690 ! anteroventral periventricular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12261 ! -property_value: IAO:0000589 "ventral tegmental area (DHBA)" xsd:string -intersection_of: UBERON:0002691 ! ventral tegmental area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10623 ! -property_value: IAO:0000589 "occipitotemporal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002693 ! occipitotemporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10626 ! -property_value: IAO:0000589 "parieto-occipital sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002695 ! parieto-occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12240 ! -property_value: IAO:0000589 "cuneiform nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002696 ! cuneiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10645 ! -property_value: IAO:0000589 "preoccipital notch (DHBA)" xsd:string -intersection_of: UBERON:0002698 ! preoccipital notch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12246 ! -property_value: IAO:0000589 "subcuneiform nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002700 ! subcuneiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12199 ! -property_value: IAO:0000589 "anterior median oculomotor nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002701 ! anterior median oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12116 ! -property_value: IAO:0000589 "middle frontal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002702 ! middle frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12114 ! -property_value: IAO:0000589 "precentral gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002703 ! precentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10503 ! -property_value: IAO:0000589 "posterior nucleus of hypothalamus (DHBA)" xsd:string -intersection_of: UBERON:0002706 ! posterior nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12776 ! -property_value: IAO:0000589 "corticospinal tract (DHBA)" xsd:string -intersection_of: UBERON:0002707 ! corticospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10428 ! -property_value: IAO:0000589 "posterior nuclear complex of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002709 ! posterior nuclear complex of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10615 ! -property_value: IAO:0000589 "cingulate sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002710 ! cingulate sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12782 ! -property_value: IAO:0000589 "rubrospinal tract (DHBA)" xsd:string -intersection_of: UBERON:0002714 ! rubrospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10618 ! -property_value: IAO:0000589 "collateral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002716 ! collateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12783 ! -property_value: IAO:0000589 "solitary tract (DHBA)" xsd:string -intersection_of: UBERON:0002718 ! solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12793 ! -property_value: IAO:0000589 "spino-olivary tract (DHBA)" xsd:string -intersection_of: UBERON:0002719 ! spino-olivary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441609 ! -property_value: IAO:0000589 "mammillary peduncle (DHBA)" xsd:string -intersection_of: UBERON:0002720 ! mammillary peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10621 ! -property_value: IAO:0000589 "lateral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002721 ! lateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12110 ! -property_value: IAO:0000589 "lateral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002721 ! lateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12206 ! -property_value: IAO:0000589 "trochlear nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002722 ! trochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12179 ! -property_value: IAO:0000589 "limen of insula (DHBA)" xsd:string -intersection_of: UBERON:0002724 ! limen of insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12062 ! -property_value: IAO:0000589 "medial medullary lamina of globus pallidus (DHBA)" xsd:string -intersection_of: UBERON:0002727 ! medial medullary lamina of globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10317 ! -property_value: IAO:0000589 "entorhinal cortex (DHBA)" xsd:string -intersection_of: UBERON:0002728 ! entorhinal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10348 ! -property_value: IAO:0000589 "claustral amygdaloid area (DHBA)" xsd:string -intersection_of: UBERON:0002729 ! claustral amygdaloid area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12868 ! -property_value: IAO:0000589 "vestibulocochlear nerve root (DHBA)" xsd:string -intersection_of: UBERON:0002731 ! vestibulocochlear nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12762 ! -property_value: IAO:0000589 "longitudinal pontine fibers (DHBA)" xsd:string -intersection_of: UBERON:0002732 ! longitudinal pontine fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10442 ! -property_value: IAO:0000589 "intralaminar nuclear group (DHBA)" xsd:string -intersection_of: UBERON:0002733 ! intralaminar nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10629 ! -property_value: IAO:0000589 "superior temporal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002734 ! superior temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12795 ! -property_value: IAO:0000589 "transverse pontine fibers (DHBA)" xsd:string -intersection_of: UBERON:0002735 ! transverse pontine fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10398 ! -property_value: IAO:0000589 "medial dorsal nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002739 ! medial dorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12034 ! -property_value: IAO:0000589 "diagonal band of Broca (DHBA)" xsd:string -intersection_of: UBERON:0002741 ! diagonal band of Broca -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10349 ! -property_value: IAO:0000589 "basal forebrain (DHBA)" xsd:string -intersection_of: UBERON:0002743 ! basal forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12142 ! -property_value: IAO:0000589 "inferior temporal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002751 ! inferior temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12747 ! -property_value: IAO:0000589 "olivocerebellar tract (DHBA)" xsd:string -intersection_of: UBERON:0002752 ! olivocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12746 ! -property_value: IAO:0000589 "posterior spinocerebellar tract (DHBA)" xsd:string -intersection_of: UBERON:0002753 ! posterior spinocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12772 ! -property_value: IAO:0000589 "pyramidal decussation (DHBA)" xsd:string -intersection_of: UBERON:0002755 ! pyramidal decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10435 ! -property_value: IAO:0000589 "dorsal nucleus of medial geniculate body (DHBA)" xsd:string -intersection_of: UBERON:0002758 ! dorsal nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10439 ! -property_value: IAO:0000589 "magnocellular nucleus of medial geniculate body (DHBA)" xsd:string -intersection_of: UBERON:0002759 ! magnocellular nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12798 ! -property_value: IAO:0000589 "ventral corticospinal tract (DHBA)" xsd:string -intersection_of: UBERON:0002760 ! ventral corticospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10631 ! -property_value: IAO:0000589 "inferior frontal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002761 ! inferior frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12063 ! -property_value: IAO:0000589 "internal medullary lamina of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002762 ! internal medullary lamina of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12037 ! -property_value: IAO:0000589 "lateral medullary lamina of globus pallidus (DHBA)" xsd:string -intersection_of: UBERON:0002765 ! lateral medullary lamina of globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034844 ! -property_value: IAO:0000589 "inferior rostral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002767 ! inferior rostral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12140 ! -property_value: IAO:0000589 "superior temporal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002769 ! superior temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12141 ! -property_value: IAO:0000589 "middle temporal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002771 ! middle temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10624 ! -property_value: IAO:0000589 "olfactory sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002772 ! olfactory sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12771 ! -property_value: IAO:0000589 "olivocochlear bundle (DHBA)" xsd:string -intersection_of: UBERON:0002775 ! olivocochlear bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10345 ! -property_value: IAO:0000589 "ventral pallidum (DHBA)" xsd:string -intersection_of: UBERON:0002778 ! ventral pallidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12469 ! -property_value: IAO:0000589 "lateral superior olivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002779 ! lateral superior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441515 ! -property_value: IAO:0000589 "caudal part of ventral posterolateral nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002781 ! caudal part of ventral posterolateral nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12470 ! -property_value: IAO:0000589 "medial superior olivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002782 ! medial superior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12861 ! -property_value: IAO:0000589 "root of abducens nerve (DHBA)" xsd:string -intersection_of: UBERON:0002786 ! root of abducens nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12338 ! -property_value: IAO:0000589 "decussation of trochlear nerve (DHBA)" xsd:string -intersection_of: UBERON:0002787 ! decussation of trochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10392 ! -property_value: IAO:0000589 "anterior nuclear group (DHBA)" xsd:string -intersection_of: UBERON:0002788 ! anterior nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12733 ! -property_value: IAO:0000589 "dorsal acoustic stria (DHBA)" xsd:string -intersection_of: UBERON:0002790 ! dorsal acoustic stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034888 ! -property_value: IAO:0000589 "frontal pole (DHBA)" xsd:string -intersection_of: UBERON:0002795 ! frontal pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12866 ! -property_value: IAO:0000589 "motor root of trigeminal nerve (DHBA)" xsd:string -intersection_of: UBERON:0002796 ! motor root of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12736 ! -property_value: IAO:0000589 "dorsal trigeminal tract (DHBA)" xsd:string -intersection_of: UBERON:0002797 ! dorsal trigeminal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12085 ! -property_value: IAO:0000589 "stratum zonale of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002801 ! stratum zonale of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12439 ! -property_value: IAO:0000589 "ventral cochlear nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002828 ! ventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12438 ! -property_value: IAO:0000589 "dorsal cochlear nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002829 ! dorsal cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12440 ! -property_value: IAO:0000589 "anteroventral cochlear nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002830 ! anteroventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12441 ! -property_value: IAO:0000589 "posteroventral cochlear nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002831 ! posteroventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12461 ! -property_value: IAO:0000589 "ventral nucleus of trapezoid body (DHBA)" xsd:string -intersection_of: UBERON:0002832 ! ventral nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12460 ! -property_value: IAO:0000589 "medial nucleus of trapezoid body (DHBA)" xsd:string -intersection_of: UBERON:0002833 ! medial nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12536 ! -property_value: IAO:0000589 "arcuate nucleus of medulla (DHBA)" xsd:string -intersection_of: UBERON:0002865 ! arcuate nucleus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12573 ! -property_value: IAO:0000589 "caudal part of spinal trigeminal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002866 ! caudal part of spinal trigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034986 ! -property_value: IAO:0000589 "central gray substance of medulla (DHBA)" xsd:string -intersection_of: UBERON:0002867 ! central gray substance of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12491 ! -property_value: IAO:0000589 "diffuse reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002869 ! diffuse reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12518 ! -property_value: IAO:0000589 "diffuse reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002869 ! diffuse reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12550 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (DHBA)" xsd:string -intersection_of: UBERON:0002870 ! dorsal motor nucleus of vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12545 ! -property_value: IAO:0000589 "hypoglossal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002871 ! hypoglossal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12544 ! -property_value: IAO:0000589 "inferior salivatory nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002872 ! inferior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12578 ! -property_value: IAO:0000589 "interpolar part of spinal trigeminal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002873 ! interpolar part of spinal trigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12526 ! -property_value: IAO:0000589 "lateral pericuneate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002874 ! lateral pericuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12527 ! -property_value: IAO:0000589 "medial pericuneate nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002875 ! medial pericuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12612 ! -property_value: IAO:0000589 "nucleus intercalatus (DHBA)" xsd:string -intersection_of: UBERON:0002876 ! nucleus intercalatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12571 ! -property_value: IAO:0000589 "parasolitary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002877 ! parasolitary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12658 ! -property_value: IAO:0000589 "peritrigeminal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002879 ! peritrigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12614 ! -property_value: IAO:0000589 "pontobulbar nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002880 ! pontobulbar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12654 ! -property_value: IAO:0000589 "sublingual nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002881 ! sublingual nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12661 ! -property_value: IAO:0000589 "supraspinal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002882 ! supraspinal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10363 ! -property_value: IAO:0000589 "central amygdaloid nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002883 ! central amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10378 ! -property_value: IAO:0000589 "intercalated amygdaloid nuclei (DHBA)" xsd:string -intersection_of: UBERON:0002884 ! intercalated amygdaloid nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10369 ! -property_value: IAO:0000589 "accessory basal amygdaloid nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002885 ! accessory basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10367 ! -property_value: IAO:0000589 "lateral amygdaloid nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002886 ! lateral amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10362 ! -property_value: IAO:0000589 "anterior amygdaloid area (DHBA)" xsd:string -intersection_of: UBERON:0002890 ! anterior amygdaloid area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10309 ! -property_value: IAO:0000589 "nucleus of lateral olfactory tract (DHBA)" xsd:string -intersection_of: UBERON:0002893 ! nucleus of lateral olfactory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10619 ! -property_value: IAO:0000589 "hippocampal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002899 ! hippocampal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13228 ! -property_value: IAO:0000589 "transverse occipital sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002900 ! transverse occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10285 ! -property_value: IAO:0000589 "posterior calcarine sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002901 ! posterior calcarine sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12149 ! -property_value: IAO:0000589 "occipital pole (DHBA)" xsd:string -intersection_of: UBERON:0002902 ! occipital pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034812 ! -property_value: IAO:0000589 "lunate sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002903 ! lunate sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034784 ! -property_value: IAO:0000589 "anterior occipital sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002906 ! anterior occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10215 ! -property_value: IAO:0000589 "superior postcentral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002907 ! superior postcentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13230 ! -property_value: IAO:0000589 "parietal operculum (DHBA)" xsd:string -intersection_of: UBERON:0002911 ! parietal operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10620 ! -property_value: IAO:0000589 "intraparietal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002913 ! intraparietal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10627 ! -property_value: IAO:0000589 "postcentral sulcus of parietal lobe (DHBA)" xsd:string -intersection_of: UBERON:0002915 ! postcentral sulcus of parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10614 ! -property_value: IAO:0000589 "central sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002916 ! central sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12487 ! -property_value: IAO:0000589 "medial parabrachial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002918 ! medial parabrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034824 ! -property_value: IAO:0000589 "anterior parolfactory sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002919 ! anterior parolfactory sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10613 ! -property_value: IAO:0000589 "callosal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002920 ! callosal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10622 ! -property_value: IAO:0000589 "longitudinal fissure (DHBA)" xsd:string -intersection_of: UBERON:0002921 ! longitudinal fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034828 ! -property_value: IAO:0000589 "posterior parolfactory sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002923 ! posterior parolfactory sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12364 ! -property_value: IAO:0000589 "tectopontine tract (DHBA)" xsd:string -intersection_of: UBERON:0002930 ! tectopontine tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12796 ! -property_value: IAO:0000589 "trapezoid body (DHBA)" xsd:string -intersection_of: UBERON:0002932 ! trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12205 ! -property_value: IAO:0000589 "ventral oculomotor nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002934 ! ventral oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10419 ! -property_value: IAO:0000589 "magnocellular part of ventral anterior nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002935 ! magnocellular part of ventral anterior nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12249 ! -property_value: IAO:0000589 "magnocellular part of red nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002936 ! magnocellular part of red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12250 ! -property_value: IAO:0000589 "parvocellular part of red nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002938 ! parvocellular part of red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10426 ! -property_value: IAO:0000589 "ventral posteroinferior nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002939 ! ventral posteroinferior nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10424 ! -property_value: IAO:0000589 "ventral posterolateral nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002942 ! ventral posterolateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12151 ! -property_value: IAO:0000589 "lingual gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002943 ! lingual gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10425 ! -property_value: IAO:0000589 "ventral posteromedial nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002945 ! ventral posteromedial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12127 ! -property_value: IAO:0000589 "frontal operculum (DHBA)" xsd:string -intersection_of: UBERON:0002947 ! frontal operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12154 ! -property_value: IAO:0000589 "superior occipital gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002948 ! superior occipital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12794 ! -property_value: IAO:0000589 "tectospinal tract (DHBA)" xsd:string -intersection_of: UBERON:0002949 ! tectospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12755 ! -property_value: IAO:0000589 "intermediate acoustic stria (DHBA)" xsd:string -intersection_of: UBERON:0002952 ! intermediate acoustic stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12760 ! -property_value: IAO:0000589 "lateral lemniscus (DHBA)" xsd:string -intersection_of: UBERON:0002953 ! lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13335 ! -property_value: IAO:0000589 "dorsal hypothalamic area (DHBA)" xsd:string -intersection_of: UBERON:0002954 ! dorsal hypothalamic area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10447 ! -property_value: IAO:0000589 "rhomboidal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002955 ! rhomboidal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12200 ! -property_value: IAO:0000589 "caudal central oculomotor nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002957 ! caudal central oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12201 ! -property_value: IAO:0000589 "central oculomotor nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002960 ! central oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10293 ! -property_value: IAO:0000589 "archicortex (DHBA)" xsd:string -intersection_of: UBERON:0002961 ! archicortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12493 ! -property_value: IAO:0000589 "caudal pontine reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002963 ! caudal pontine reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12202 ! -property_value: IAO:0000589 "dorsal oculomotor nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002964 ! dorsal oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10443 ! -property_value: IAO:0000589 "rostral intralaminar nuclear group (DHBA)" xsd:string -intersection_of: UBERON:0002965 ! rostral intralaminar nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12156 ! -property_value: IAO:0000589 "cingulate gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002967 ! cingulate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034964 ! -property_value: IAO:0000589 "central gray substance of pons (DHBA)" xsd:string -intersection_of: UBERON:0002968 ! central gray substance of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10632 ! -property_value: IAO:0000589 "inferior temporal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0002969 ! inferior temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12203 ! -property_value: IAO:0000589 "intermediate oculomotor nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002970 ! intermediate oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12464 ! -property_value: IAO:0000589 "periolivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002971 ! periolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10449 ! -property_value: IAO:0000589 "centromedian nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002972 ! centromedian nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12162 ! -property_value: IAO:0000589 "parahippocampal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002973 ! parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12204 ! -property_value: IAO:0000589 "medial oculomotor nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002975 ! medial oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441709 ! -property_value: IAO:0000589 "preolivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002976 ! preolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441491 ! -property_value: IAO:0000589 "triangular septal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002977 ! triangular septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12119 ! -property_value: IAO:0000589 "opercular part of inferior frontal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002980 ! opercular part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10409 ! -property_value: IAO:0000589 "pulvinar nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002981 ! pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10413 ! -property_value: IAO:0000589 "inferior pulvinar nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002982 ! inferior pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10408 ! -property_value: IAO:0000589 "lateral posterior nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0002983 ! lateral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10396 ! -property_value: IAO:0000589 "lateral dorsal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002984 ! lateral dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10438 ! -property_value: IAO:0000589 "ventral nucleus of medial geniculate body (DHBA)" xsd:string -intersection_of: UBERON:0002985 ! ventral nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12801 ! -property_value: IAO:0000589 "anterior spinocerebellar tract (DHBA)" xsd:string -intersection_of: UBERON:0002987 ! anterior spinocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10404 ! -property_value: IAO:0000589 "paratenial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002992 ! paratenial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12257 ! -property_value: IAO:0000589 "substantia nigra pars lateralis (DHBA)" xsd:string -intersection_of: UBERON:0002995 ! substantia nigra pars lateralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12117 ! -property_value: IAO:0000589 "inferior frontal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0002998 ! inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12494 ! -property_value: IAO:0000589 "oral pontine reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0002999 ! oral pontine reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12763 ! -property_value: IAO:0000589 "medial lemniscus (DHBA)" xsd:string -intersection_of: UBERON:0003002 ! medial lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12235 ! -property_value: IAO:0000589 "median raphe nucleus (DHBA)" xsd:string -intersection_of: UBERON:0003004 ! median raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12455 ! -property_value: IAO:0000589 "dorsal nucleus of lateral lemniscus (DHBA)" xsd:string -intersection_of: UBERON:0003006 ! dorsal nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12482 ! -property_value: IAO:0000589 "lateral parabrachial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0003007 ! lateral parabrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12340 ! -property_value: IAO:0000589 "dorsal tegmental decussation (DHBA)" xsd:string -intersection_of: UBERON:0003009 ! dorsal tegmental decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12852 ! -property_value: IAO:0000589 "flocculonodular lobe (DHBA)" xsd:string -intersection_of: UBERON:0003012 ! flocculonodular lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13034 ! -property_value: IAO:0000589 "substantia innominata (DHBA)" xsd:string -intersection_of: UBERON:0003017 ! substantia innominata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034766 ! -property_value: IAO:0000589 "parvocellular part of ventral posteromedial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0003018 ! parvocellular part of ventral posteromedial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12416 ! -property_value: IAO:0000589 "pontine tegmentum (DHBA)" xsd:string -intersection_of: UBERON:0003023 ! pontine tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12327 ! -property_value: IAO:0000589 "brachium of inferior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0003025 ! brachium of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13043 ! -property_value: IAO:0000589 "limitans nucleus (DHBA)" xsd:string -intersection_of: UBERON:0003026 ! limitans nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10277 ! -property_value: IAO:0000589 "cingulate cortex (DHBA)" xsd:string -intersection_of: UBERON:0003027 ! cingulate cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12333 ! -property_value: IAO:0000589 "commissure of inferior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0003028 ! commissure of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10591 ! -property_value: IAO:0000589 "stria terminalis (DHBA)" xsd:string -intersection_of: UBERON:0003029 ! stria terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10440 ! -property_value: IAO:0000589 "posterior nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0003030 ! posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13044 ! -property_value: IAO:0000589 "suprageniculate nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0003033 ! suprageniculate nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13331 ! -property_value: IAO:0000589 "central dorsal nucleus of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0003034 ! central dorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10444 ! -property_value: IAO:0000589 "central lateral nucleus (DHBA)" xsd:string -intersection_of: UBERON:0003036 ! central lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12209 ! -property_value: IAO:0000589 "central gray substance of midbrain (DHBA)" xsd:string -intersection_of: UBERON:0003040 ! central gray substance of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10594 ! -property_value: IAO:0000589 "uncinate fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0003044 ! uncinate fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12035 ! -property_value: IAO:0000589 "dorsal longitudinal fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0003045 ! dorsal longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10542 ! -property_value: IAO:0000589 "ventricular zone (DHBA)" xsd:string -intersection_of: UBERON:0003053 ! ventricular zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10153 ! -property_value: IAO:0000589 "neural plate (DHBA)" xsd:string -intersection_of: UBERON:0003075 ! neural plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12320 ! -property_value: IAO:0000589 "roof plate of midbrain (DHBA)" xsd:string -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12325 ! -property_value: IAO:0000589 "floor plate of midbrain (DHBA)" xsd:string -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12869 ! -property_value: IAO:0000589 "vestibular nerve (DHBA)" xsd:string -intersection_of: UBERON:0003723 ! vestibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10297 ! -property_value: IAO:0000589 "CA1 field of hippocampus (DHBA)" xsd:string -intersection_of: UBERON:0003881 ! CA1 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10298 ! -property_value: IAO:0000589 "CA2 field of hippocampus (DHBA)" xsd:string -intersection_of: UBERON:0003882 ! CA2 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10299 ! -property_value: IAO:0000589 "CA3 field of hippocampus (DHBA)" xsd:string -intersection_of: UBERON:0003883 ! CA3 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10300 ! -property_value: IAO:0000589 "CA4 field of hippocampus (DHBA)" xsd:string -intersection_of: UBERON:0003884 ! CA4 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10572 ! -property_value: IAO:0000589 "cingulum of brain (DHBA)" xsd:string -intersection_of: UBERON:0003961 ! cingulum of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12828 ! -property_value: IAO:0000589 "cerebellum fissure (DHBA)" xsd:string -intersection_of: UBERON:0003980 ! cerebellum fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10608 ! -property_value: IAO:0000589 "interventricular foramen of CNS (DHBA)" xsd:string -intersection_of: UBERON:0003993 ! interventricular foramen of CNS -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12844 ! -property_value: IAO:0000589 "posterior lobe of cerebellum (DHBA)" xsd:string -intersection_of: UBERON:0004002 ! posterior lobe of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12698 ! -property_value: IAO:0000589 "cerebellar plate (DHBA)" xsd:string -intersection_of: UBERON:0004008 ! cerebellar plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10549 ! -property_value: IAO:0000589 "ganglionic eminence (DHBA)" xsd:string -intersection_of: UBERON:0004023 ! ganglionic eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10550 ! -property_value: IAO:0000589 "medial ganglionic eminence (DHBA)" xsd:string -intersection_of: UBERON:0004024 ! medial ganglionic eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10551 ! -property_value: IAO:0000589 "lateral ganglionic eminence (DHBA)" xsd:string -intersection_of: UBERON:0004025 ! lateral ganglionic eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10552 ! -property_value: IAO:0000589 "caudal ganglionic eminence (DHBA)" xsd:string -intersection_of: UBERON:0004026 ! caudal ganglionic eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10522 ! -property_value: IAO:0000589 "cortical subplate (DHBA)" xsd:string -intersection_of: UBERON:0004035 ! cortical subplate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12399 ! -property_value: IAO:0000589 "cerebellum interpositus nucleus (DHBA)" xsd:string -intersection_of: UBERON:0004073 ! cerebellum interpositus nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12613 ! -property_value: IAO:0000589 "cerebellum interpositus nucleus (DHBA)" xsd:string -intersection_of: UBERON:0004073 ! cerebellum interpositus nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12841 ! -property_value: IAO:0000589 "cerebellum vermis lobule III (DHBA)" xsd:string -intersection_of: UBERON:0004076 ! cerebellum vermis lobule III -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12842 ! -property_value: IAO:0000589 "cerebellum vermis lobule IV (DHBA)" xsd:string -intersection_of: UBERON:0004077 ! cerebellum vermis lobule IV -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12851 ! -property_value: IAO:0000589 "cerebellum vermis lobule IX (DHBA)" xsd:string -intersection_of: UBERON:0004078 ! cerebellum vermis lobule IX -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12843 ! -property_value: IAO:0000589 "cerebellum vermis lobule V (DHBA)" xsd:string -intersection_of: UBERON:0004079 ! cerebellum vermis lobule V -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12845 ! -property_value: IAO:0000589 "cerebellum vermis lobule VI (DHBA)" xsd:string -intersection_of: UBERON:0004080 ! cerebellum vermis lobule VI -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10194 ! -property_value: IAO:0000589 "orbitofrontal cortex (DHBA)" xsd:string -intersection_of: UBERON:0004167 ! orbitofrontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12797 ! -property_value: IAO:0000589 "trigeminothalamic tract (DHBA)" xsd:string -intersection_of: UBERON:0004171 ! trigeminothalamic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11329 ! -property_value: IAO:0000589 "olfactory bulb mitral cell layer (DHBA)" xsd:string -intersection_of: UBERON:0004186 ! olfactory bulb mitral cell layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10573 ! -property_value: IAO:0000589 "external capsule of telencephalon (DHBA)" xsd:string -intersection_of: UBERON:0004545 ! external capsule of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10599 ! -property_value: IAO:0000589 "posterior horn lateral ventricle (DHBA)" xsd:string -intersection_of: UBERON:0004672 ! posterior horn lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12865 ! -property_value: IAO:0000589 "trigeminal nerve root (DHBA)" xsd:string -intersection_of: UBERON:0004673 ! trigeminal nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12862 ! -property_value: IAO:0000589 "facial nerve root (DHBA)" xsd:string -intersection_of: UBERON:0004674 ! facial nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12886 ! -property_value: IAO:0000589 "hypoglossal nerve root (DHBA)" xsd:string -intersection_of: UBERON:0004675 ! hypoglossal nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12647 ! -property_value: IAO:0000589 "spinal cord gray commissure (DHBA)" xsd:string -intersection_of: UBERON:0004677 ! spinal cord gray commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10577 ! -property_value: IAO:0000589 "body of fornix (DHBA)" xsd:string -intersection_of: UBERON:0004680 ! body of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10578 ! -property_value: IAO:0000589 "body of fornix (DHBA)" xsd:string -intersection_of: UBERON:0004680 ! body of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12030 ! -property_value: IAO:0000589 "corona radiata of neuraxis (DHBA)" xsd:string -intersection_of: UBERON:0004682 ! corona radiata of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10316 ! -property_value: IAO:0000589 "parasubiculum (DHBA)" xsd:string -intersection_of: UBERON:0004683 ! parasubiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10391 ! -property_value: IAO:0000589 "dorsal thalamus (DHBA)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12098 ! -property_value: IAO:0000589 "septum pellucidum (DHBA)" xsd:string -intersection_of: UBERON:0004714 ! septum pellucidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10658 ! -property_value: IAO:0000589 "cerebellar vermis (DHBA)" xsd:string -intersection_of: UBERON:0004720 ! cerebellar vermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10311 ! -property_value: IAO:0000589 "piriform cortex (DHBA)" xsd:string -intersection_of: UBERON:0004725 ! piriform cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10536 ! -property_value: IAO:0000589 "postnatal subventricular zone (DHBA)" xsd:string -intersection_of: UBERON:0004922 ! postnatal subventricular zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12535 ! -property_value: IAO:0000589 "pyramid of medulla oblongata (DHBA)" xsd:string -intersection_of: UBERON:0005159 ! pyramid of medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10662 ! -property_value: IAO:0000589 "myelencephalon (DHBA)" xsd:string -intersection_of: UBERON:0005290 ! myelencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10515 ! -property_value: IAO:0000589 "cortical plate (DHBA)" xsd:string -intersection_of: UBERON:0005343 ! cortical plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12848 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIB (DHBA)" xsd:string -intersection_of: UBERON:0005346 ! cerebellum vermis lobule VIIB -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12850 ! -property_value: IAO:0000589 "paramedian lobule (DHBA)" xsd:string -intersection_of: UBERON:0005349 ! paramedian lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11327 ! -property_value: IAO:0000589 "olfactory bulb glomerular layer (DHBA)" xsd:string -intersection_of: UBERON:0005377 ! olfactory bulb glomerular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11330 ! -property_value: IAO:0000589 "olfactory bulb internal plexiform layer (DHBA)" xsd:string -intersection_of: UBERON:0005379 ! olfactory bulb internal plexiform layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12749 ! -property_value: IAO:0000589 "spinocerebellar tract (DHBA)" xsd:string -intersection_of: UBERON:0005413 ! spinocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12667 ! -property_value: IAO:0000589 "rhombomere 1 (DHBA)" xsd:string -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12669 ! -property_value: IAO:0000589 "rhombomere 3 (DHBA)" xsd:string -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12671 ! -property_value: IAO:0000589 "rhombomere 4 (DHBA)" xsd:string -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12673 ! -property_value: IAO:0000589 "rhombomere 5 (DHBA)" xsd:string -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12674 ! -property_value: IAO:0000589 "rhombomere 6 (DHBA)" xsd:string -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12675 ! -property_value: IAO:0000589 "rhombomere 7 (DHBA)" xsd:string -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12677 ! -property_value: IAO:0000589 "rhombomere 8 (DHBA)" xsd:string -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12868 ! -property_value: IAO:0000589 "rhombomere 8 (DHBA)" xsd:string -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12668 ! -property_value: IAO:0000589 "rhombomere 2 (DHBA)" xsd:string -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12739 ! -property_value: IAO:0000589 "gracile fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0005821 ! gracile fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12731 ! -property_value: IAO:0000589 "cuneate fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0005832 ! cuneate fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11326 ! -property_value: IAO:0000589 "olfactory bulb outer nerve layer (DHBA)" xsd:string -intersection_of: UBERON:0005978 ! olfactory bulb outer nerve layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12659 ! -property_value: IAO:0000589 "pre-Botzinger complex (DHBA)" xsd:string -intersection_of: UBERON:0006007 ! pre-Botzinger complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10590 ! -property_value: IAO:0000589 "stria medullaris (DHBA)" xsd:string -intersection_of: UBERON:0006086 ! stria medullaris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12756 ! -property_value: IAO:0000589 "internal arcuate fiber bundle (DHBA)" xsd:string -intersection_of: UBERON:0006087 ! internal arcuate fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12134 ! -property_value: IAO:0000589 "inferior parietal cortex (DHBA)" xsd:string -intersection_of: UBERON:0006088 ! inferior parietal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12737 ! -property_value: IAO:0000589 "dorsal external arcuate fiber bundle (DHBA)" xsd:string -intersection_of: UBERON:0006089 ! dorsal external arcuate fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10600 ! -property_value: IAO:0000589 "inferior horn of the lateral ventricle (DHBA)" xsd:string -intersection_of: UBERON:0006091 ! inferior horn of the lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12150 ! -property_value: IAO:0000589 "cuneus cortex (DHBA)" xsd:string -intersection_of: UBERON:0006092 ! cuneus cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12137 ! -property_value: IAO:0000589 "precuneus cortex (DHBA)" xsd:string -intersection_of: UBERON:0006093 ! precuneus cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10366 ! -property_value: IAO:0000589 "basolateral amygdaloid nuclear complex (DHBA)" xsd:string -intersection_of: UBERON:0006107 ! basolateral amygdaloid nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10372 ! -property_value: IAO:0000589 "corticomedial nuclear complex (DHBA)" xsd:string -intersection_of: UBERON:0006108 ! corticomedial nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10579 ! -property_value: IAO:0000589 "posterior column of fornix (DHBA)" xsd:string -intersection_of: UBERON:0006115 ! posterior column of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12290 ! -property_value: IAO:0000589 "subbrachial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0006119 ! subbrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12295 ! -property_value: IAO:0000589 "superior colliculus superficial gray layer (DHBA)" xsd:string -intersection_of: UBERON:0006120 ! superior colliculus superficial gray layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10664 ! -property_value: IAO:0000589 "rhombic lip (DHBA)" xsd:string -intersection_of: UBERON:0006215 ! rhombic lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10595 ! -property_value: IAO:0000589 "early prosencephalic vesicle (DHBA)" xsd:string -intersection_of: UBERON:0006284 ! early prosencephalic vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10271 ! -property_value: IAO:0000589 "Brodmann (1909) area 18 (DHBA)" xsd:string -intersection_of: UBERON:0006473 ! Brodmann (1909) area 18 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10586 ! -property_value: IAO:0000589 "mammillothalamic axonal tract (DHBA)" xsd:string -intersection_of: UBERON:0006696 ! mammillothalamic axonal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12065 ! -property_value: IAO:0000589 "mammillotegmental axonal tract (DHBA)" xsd:string -intersection_of: UBERON:0006698 ! mammillotegmental axonal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12296 ! -property_value: IAO:0000589 "superficial white layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006779 ! superficial white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12297 ! -property_value: IAO:0000589 "zonal layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006780 ! zonal layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12300 ! -property_value: IAO:0000589 "middle white layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006787 ! middle white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12299 ! -property_value: IAO:0000589 "middle gray layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006788 ! middle gray layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12302 ! -property_value: IAO:0000589 "deep gray layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006789 ! deep gray layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12303 ! -property_value: IAO:0000589 "deep white layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006790 ! deep white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12293 ! -property_value: IAO:0000589 "superficial layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006791 ! superficial layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12298 ! -property_value: IAO:0000589 "intermediate layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006792 ! intermediate layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12301 ! -property_value: IAO:0000589 "deep layer of superior colliculus (DHBA)" xsd:string -intersection_of: UBERON:0006793 ! deep layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12454 ! -property_value: IAO:0000589 "nucleus of lateral lemniscus (DHBA)" xsd:string -intersection_of: UBERON:0006840 ! nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10319 ! -property_value: IAO:0000589 "medial entorhinal cortex (DHBA)" xsd:string -intersection_of: UBERON:0007224 ! medial entorhinal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10318 ! -property_value: IAO:0000589 "lateral entorhinal cortex (DHBA)" xsd:string -intersection_of: UBERON:0007225 ! lateral entorhinal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12452 ! -property_value: IAO:0000589 "superior vestibular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0007227 ! superior vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12449 ! -property_value: IAO:0000589 "lateral vestibular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0007230 ! lateral vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12603 ! -property_value: IAO:0000589 "dorsal accessory inferior olivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0007249 ! dorsal accessory inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12222 ! -property_value: IAO:0000589 "midbrain raphe nuclei (DHBA)" xsd:string -intersection_of: UBERON:0007412 ! midbrain raphe nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441555 ! -property_value: IAO:0000589 "subparaventricular zone (DHBA)" xsd:string -intersection_of: UBERON:0007626 ! subparaventricular zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12506 ! -property_value: IAO:0000589 "Barrington's nucleus (DHBA)" xsd:string -intersection_of: UBERON:0007632 ! Barrington's nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12458 ! -property_value: IAO:0000589 "nucleus of trapezoid body (DHBA)" xsd:string -intersection_of: UBERON:0007633 ! nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12481 ! -property_value: IAO:0000589 "parabrachial nucleus (DHBA)" xsd:string -intersection_of: UBERON:0007634 ! parabrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10570 ! -property_value: IAO:0000589 "hippocampus alveus (DHBA)" xsd:string -intersection_of: UBERON:0007639 ! hippocampus alveus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441713 ! -property_value: IAO:0000589 "trigeminal nuclear complex (DHBA)" xsd:string -intersection_of: UBERON:0007641 ! trigeminal nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12810 ! -property_value: IAO:0000589 "lateral recess of fourth ventricle (DHBA)" xsd:string -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12789 ! -property_value: IAO:0000589 "spinothalamic tract (DHBA)" xsd:string -intersection_of: UBERON:0007703 ! spinothalamic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12456 ! -property_value: IAO:0000589 "intermediate nucleus of lateral lemniscus (DHBA)" xsd:string -intersection_of: UBERON:0007710 ! intermediate nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12496 ! -property_value: IAO:0000589 "paramedian reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0007764 ! paramedian reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441547 ! -property_value: IAO:0000589 "medial preoptic region (DHBA)" xsd:string -intersection_of: UBERON:0007769 ! medial preoptic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12873 ! -property_value: IAO:0000589 "ventrolateral sulcus of medulla oblongata (DHBA)" xsd:string -intersection_of: UBERON:0008335 ! ventrolateral sulcus of medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10556 ! -property_value: IAO:0000589 "rostral migratory stream (DHBA)" xsd:string -intersection_of: UBERON:0008881 ! rostral migratory stream -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10209 ! -property_value: IAO:0000589 "primary somatosensory cortex (DHBA)" xsd:string -intersection_of: UBERON:0008933 ! primary somatosensory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10452 ! -property_value: IAO:0000589 "habenular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0008993 ! habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12557 ! -property_value: IAO:0000589 "nucleus of solitary tract (DHBA)" xsd:string -intersection_of: UBERON:0009050 ! nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12823 ! -property_value: IAO:0000589 "sulcus limitans of fourth ventricle (DHBA)" xsd:string -intersection_of: UBERON:0009573 ! sulcus limitans of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146035120 ! -property_value: IAO:0000589 "spinal nerve root (DHBA)" xsd:string -intersection_of: UBERON:0009623 ! spinal nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10571 ! -property_value: IAO:0000589 "ansa lenticularis (DHBA)" xsd:string -intersection_of: UBERON:0009641 ! ansa lenticularis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12730 ! -property_value: IAO:0000589 "central tegmental tract (DHBA)" xsd:string -intersection_of: UBERON:0009643 ! central tegmental tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12620 ! -property_value: IAO:0000589 "intermediate reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0009777 ! intermediate reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10173 ! -property_value: IAO:0000589 "dorsolateral prefrontal cortex (DHBA)" xsd:string -intersection_of: UBERON:0009834 ! dorsolateral prefrontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10666 ! -property_value: IAO:0000589 "lower rhombic lip (DHBA)" xsd:string -intersection_of: UBERON:0009840 ! lower rhombic lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10665 ! -property_value: IAO:0000589 "upper rhombic lip (DHBA)" xsd:string -intersection_of: UBERON:0009841 ! upper rhombic lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12099 ! -property_value: IAO:0000589 "cavum septum pellucidum (DHBA)" xsd:string -intersection_of: UBERON:0009857 ! cavum septum pellucidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12867 ! -property_value: IAO:0000589 "sensory root of trigeminal nerve (DHBA)" xsd:string -intersection_of: UBERON:0009907 ! sensory root of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12531 ! -property_value: IAO:0000589 "retrotrapezoid nucleus (DHBA)" xsd:string -intersection_of: UBERON:0009918 ! retrotrapezoid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10353 ! -property_value: IAO:0000589 "basal nucleus of telencephalon (DHBA)" xsd:string -intersection_of: UBERON:0010010 ! basal nucleus of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10331 ! -property_value: IAO:0000589 "collection of basal ganglia (DHBA)" xsd:string -intersection_of: UBERON:0010011 ! collection of basal ganglia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12322 ! -property_value: IAO:0000589 "midbrain basal plate (DHBA)" xsd:string -intersection_of: UBERON:0010285 ! midbrain basal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12863 ! -property_value: IAO:0000589 "motor root of facial nerve (DHBA)" xsd:string -intersection_of: UBERON:0010287 ! motor root of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10508 ! -property_value: IAO:0000589 "brain marginal zone (DHBA)" xsd:string -intersection_of: UBERON:0010403 ! brain marginal zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12289 ! -property_value: IAO:0000589 "retrorubral area of midbrain reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0011172 ! retrorubral area of midbrain reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12888 ! -property_value: IAO:0000589 "root of vagus nerve (DHBA)" xsd:string -intersection_of: UBERON:0011213 ! root of vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10340 ! -property_value: IAO:0000589 "core of nucleus accumbens (DHBA)" xsd:string -intersection_of: UBERON:0012170 ! core of nucleus accumbens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10341 ! -property_value: IAO:0000589 "shell of nucleus accumbens (DHBA)" xsd:string -intersection_of: UBERON:0012171 ! shell of nucleus accumbens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10610 ! -property_value: IAO:0000589 "sulcus of brain (DHBA)" xsd:string -intersection_of: UBERON:0013118 ! sulcus of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10324 ! -property_value: IAO:0000589 "retrosplenial region (DHBA)" xsd:string -intersection_of: UBERON:0013531 ! retrosplenial region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441669 ! -property_value: IAO:0000589 "retrosplenial region (DHBA)" xsd:string -intersection_of: UBERON:0013531 ! retrosplenial region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034836 ! -property_value: IAO:0000589 "Brodmann (1909) area 10 (DHBA)" xsd:string -intersection_of: UBERON:0013541 ! Brodmann (1909) area 10 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13236 ! -property_value: IAO:0000589 "lateral accessory nucleus of optic tract (DHBA)" xsd:string -intersection_of: UBERON:0013600 ! lateral accessory nucleus of optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10431 ! -property_value: IAO:0000589 "magnocellular layer of dorsal nucleus of lateral geniculate body (DHBA)" xsd:string -intersection_of: UBERON:0013606 ! magnocellular layer of dorsal nucleus of lateral geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12234 ! -property_value: IAO:0000589 "rostral linear nucleus (DHBA)" xsd:string -intersection_of: UBERON:0013734 ! rostral linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12262 ! -property_value: IAO:0000589 "interfascicular linear nucleus (DHBA)" xsd:string -intersection_of: UBERON:0013736 ! interfascicular linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12265 ! -property_value: IAO:0000589 "paranigral nucleus (DHBA)" xsd:string -intersection_of: UBERON:0013737 ! paranigral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12263 ! -property_value: IAO:0000589 "parabrachial pigmental nucleus (DHBA)" xsd:string -intersection_of: UBERON:0013738 ! parabrachial pigmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11336 ! -property_value: IAO:0000589 "piriform cortex layer 2 (DHBA)" xsd:string -intersection_of: UBERON:0014280 ! piriform cortex layer 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10371 ! -property_value: IAO:0000589 "endopiriform nucleus (DHBA)" xsd:string -intersection_of: UBERON:0014284 ! endopiriform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10270 ! -property_value: IAO:0000589 "extrastriate cortex (DHBA)" xsd:string -intersection_of: UBERON:0014370 ! extrastriate cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12182 ! -property_value: IAO:0000589 "pretectal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0014450 ! pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441733 ! -property_value: IAO:0000589 "ansoparamedian fissure of cerebellum (DHBA)" xsd:string -intersection_of: UBERON:0014468 ! ansoparamedian fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10582 ! -property_value: IAO:0000589 "anterior limb of internal capsule (DHBA)" xsd:string -intersection_of: UBERON:0014526 ! anterior limb of internal capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10584 ! -property_value: IAO:0000589 "posterior limb of internal capsule (DHBA)" xsd:string -intersection_of: UBERON:0014527 ! posterior limb of internal capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10574 ! -property_value: IAO:0000589 "extreme capsule (DHBA)" xsd:string -intersection_of: UBERON:0014528 ! extreme capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10585 ! -property_value: IAO:0000589 "lenticular fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0014529 ! lenticular fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12038 ! -property_value: IAO:0000589 "external medullary lamina of thalamus (DHBA)" xsd:string -intersection_of: UBERON:0014534 ! external medullary lamina of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034792 ! -property_value: IAO:0000589 "frontomarginal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0014544 ! frontomarginal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10477 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus descending division (DHBA)" xsd:string -intersection_of: UBERON:0014602 ! paraventricular nucleus of the hypothalamus descending division -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10478 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus magnocellular division (DHBA)" xsd:string -intersection_of: UBERON:0014603 ! paraventricular nucleus of the hypothalamus magnocellular division -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10479 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus parvocellular division (DHBA)" xsd:string -intersection_of: UBERON:0014604 ! paraventricular nucleus of the hypothalamus parvocellular division -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12153 ! -property_value: IAO:0000589 "inferior occipital gyrus (DHBA)" xsd:string -intersection_of: UBERON:0014608 ! inferior occipital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12883 ! -property_value: IAO:0000589 "accessory nerve root (DHBA)" xsd:string -intersection_of: UBERON:0014615 ! accessory nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034816 ! -property_value: IAO:0000589 "middle frontal sulcus (DHBA)" xsd:string -intersection_of: UBERON:0014618 ! middle frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12390 ! -property_value: IAO:0000589 "cerebrocerebellum (DHBA)" xsd:string -intersection_of: UBERON:0014644 ! cerebrocerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10292 ! -property_value: IAO:0000589 "allocortex (DHBA)" xsd:string -intersection_of: UBERON:0014734 ! allocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10306 ! -property_value: IAO:0000589 "paleocortex (DHBA)" xsd:string -intersection_of: UBERON:0014735 ! paleocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10313 ! -property_value: IAO:0000589 "periallocortex (DHBA)" xsd:string -intersection_of: UBERON:0014736 ! periallocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12792 ! -property_value: IAO:0000589 "spinal trigeminal tract (DHBA)" xsd:string -intersection_of: UBERON:0014761 ! spinal trigeminal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12738 ! -property_value: IAO:0000589 "genu of facial nerve (DHBA)" xsd:string -intersection_of: UBERON:0014915 ! genu of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12105 ! -property_value: IAO:0000589 "lamina terminalis of cerebral hemisphere (DHBA)" xsd:string -intersection_of: UBERON:0015117 ! lamina terminalis of cerebral hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10564 ! -property_value: IAO:0000589 "body of corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0015510 ! body of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10563 ! -property_value: IAO:0000589 "genu of corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0015599 ! genu of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10562 ! -property_value: IAO:0000589 "rostrum of corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0015703 ! rostrum of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10565 ! -property_value: IAO:0000589 "splenium of the corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0015708 ! splenium of the corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10304 ! -property_value: IAO:0000589 "induseum griseum (DHBA)" xsd:string -intersection_of: UBERON:0015793 ! induseum griseum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10305 ! -property_value: IAO:0000589 "taenia tectum of brain (DHBA)" xsd:string -intersection_of: UBERON:0015800 ! taenia tectum of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12113 ! -property_value: IAO:0000589 "frontal lobe (DHBA)" xsd:string -intersection_of: UBERON:0016525 ! frontal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10208 ! -property_value: IAO:0000589 "parietal cortex (DHBA)" xsd:string -intersection_of: UBERON:0016530 ! parietal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10235 ! -property_value: IAO:0000589 "temporal cortex (DHBA)" xsd:string -intersection_of: UBERON:0016538 ! temporal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10268 ! -property_value: IAO:0000589 "occipital cortex (DHBA)" xsd:string -intersection_of: UBERON:0016540 ! occipital cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10650 ! -property_value: IAO:0000589 "white matter of midbrain (DHBA)" xsd:string -intersection_of: UBERON:0016554 ! white matter of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12618 ! -property_value: IAO:0000589 "parvocellular reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0016633 ! parvocellular reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10168 ! -property_value: IAO:0000589 "premotor cortex (DHBA)" xsd:string -intersection_of: UBERON:0016634 ! premotor cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12626 ! -property_value: IAO:0000589 "paragigantocellular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0016635 ! paragigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12465 ! -property_value: IAO:0000589 "lateral periolivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0016637 ! lateral periolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13054 ! -property_value: IAO:0000589 "subparafascicular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0016641 ! subparafascicular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12629 ! -property_value: IAO:0000589 "lateral paragigantocellular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0016824 ! lateral paragigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12628 ! -property_value: IAO:0000589 "dorsal paragigantocellular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0016825 ! dorsal paragigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12597 ! -property_value: IAO:0000589 "dorsal paramedian reticular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0016827 ! dorsal paramedian reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12656 ! -property_value: IAO:0000589 "paratrigeminal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0016832 ! paratrigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12459 ! -property_value: IAO:0000589 "lateral nucleus of trapezoid body (DHBA)" xsd:string -intersection_of: UBERON:0016843 ! lateral nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10642 ! -property_value: IAO:0000589 "anterior perforated substance (DHBA)" xsd:string -intersection_of: UBERON:0018141 ! anterior perforated substance -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10668 ! -property_value: IAO:0000589 "white matter of hindbrain (DHBA)" xsd:string -intersection_of: UBERON:0019258 ! white matter of hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10557 ! -property_value: IAO:0000589 "white matter of forebrain (DHBA)" xsd:string -intersection_of: UBERON:0019261 ! white matter of forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10654 ! -property_value: IAO:0000589 "gray matter of hindbrain (DHBA)" xsd:string -intersection_of: UBERON:0019263 ! gray matter of hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10157 ! -property_value: IAO:0000589 "gray matter of forebrain (DHBA)" xsd:string -intersection_of: UBERON:0019264 ! gray matter of forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10649 ! -property_value: IAO:0000589 "gray matter of midbrain (DHBA)" xsd:string -intersection_of: UBERON:0019267 ! gray matter of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12316 ! -property_value: IAO:0000589 "mesomere 1 (DHBA)" xsd:string -intersection_of: UBERON:0019272 ! mesomere 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12317 ! -property_value: IAO:0000589 "mesomere 2 (DHBA)" xsd:string -intersection_of: UBERON:0019274 ! mesomere 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12130 ! -property_value: IAO:0000589 "inferior rostral gyrus (DHBA)" xsd:string -intersection_of: UBERON:0019278 ! inferior rostral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12129 ! -property_value: IAO:0000589 "superior rostral gyrus (DHBA)" xsd:string -intersection_of: UBERON:0019279 ! superior rostral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034876 ! -property_value: IAO:0000589 "rostral gyrus (DHBA)" xsd:string -intersection_of: UBERON:0019280 ! rostral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12064 ! -property_value: IAO:0000589 "lateral longitudinal stria (DHBA)" xsd:string -intersection_of: UBERON:0019283 ! lateral longitudinal stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10448 ! -property_value: IAO:0000589 "caudal intralaminar nuclear group (DHBA)" xsd:string -intersection_of: UBERON:0019295 ! caudal intralaminar nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13033 ! -property_value: IAO:0000589 "septohypothalamic nucleus (DHBA)" xsd:string -intersection_of: UBERON:0019308 ! septohypothalamic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12887 ! -property_value: IAO:0000589 "glossopharyngeal nerve root (DHBA)" xsd:string -intersection_of: UBERON:0019310 ! glossopharyngeal nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12569 ! -property_value: IAO:0000589 "ventrolateral nucleus of solitary tract (DHBA)" xsd:string -intersection_of: UBERON:0019312 ! ventrolateral nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12649 ! -property_value: IAO:0000589 "epifascicular nucleus (DHBA)" xsd:string -intersection_of: UBERON:0019314 ! epifascicular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12066 ! -property_value: IAO:0000589 "medial longitudinal stria (DHBA)" xsd:string -intersection_of: UBERON:0022234 ! medial longitudinal stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441633 ! -property_value: IAO:0000589 "anterior thalamic peduncle (DHBA)" xsd:string -intersection_of: UBERON:0022237 ! anterior thalamic peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12059 ! -property_value: IAO:0000589 "inferior thalamic peduncle (DHBA)" xsd:string -intersection_of: UBERON:0022242 ! inferior thalamic peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10592 ! -property_value: IAO:0000589 "superior longitudinal fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0022246 ! superior longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10568 ! -property_value: IAO:0000589 "forebrain ipsilateral fiber tracts (DHBA)" xsd:string -intersection_of: UBERON:0022247 ! forebrain ipsilateral fiber tracts -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12071 ! -property_value: IAO:0000589 "subcallosal fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0022250 ! subcallosal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10628 ! -property_value: IAO:0000589 "precentral sulcus (DHBA)" xsd:string -intersection_of: UBERON:0022252 ! precentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10593 ! -property_value: IAO:0000589 "ventral thalamic fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0022254 ! ventral thalamic fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12089 ! -property_value: IAO:0000589 "subthalamic fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0022256 ! subthalamic fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12648 ! -property_value: IAO:0000589 "endolemniscal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0022258 ! endolemniscal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441583 ! -property_value: IAO:0000589 "auditory radiation (DHBA)" xsd:string -intersection_of: UBERON:0022262 ! auditory radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441621 ! -property_value: IAO:0000589 "optic radiation (DHBA)" xsd:string -intersection_of: UBERON:0022264 ! optic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12145 ! -property_value: IAO:0000589 "planum temporale (DHBA)" xsd:string -intersection_of: UBERON:0022268 ! planum temporale -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441721 ! -property_value: IAO:0000589 "corticopontine fibers (DHBA)" xsd:string -intersection_of: UBERON:0022271 ! corticopontine fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12774 ! -property_value: IAO:0000589 "corticobulbar tract (DHBA)" xsd:string -intersection_of: UBERON:0022272 ! corticobulbar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441661 ! -property_value: IAO:0000589 "pineal recess of third ventricle (DHBA)" xsd:string -intersection_of: UBERON:0022283 ! pineal recess of third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12152 ! -property_value: IAO:0000589 "occipital fusiform gyrus (DHBA)" xsd:string -intersection_of: UBERON:0022364 ! occipital fusiform gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12163 ! -property_value: IAO:0000589 "anterior parahippocampal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0022383 ! anterior parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12143 ! -property_value: IAO:0000589 "temporal fusiform gyrus (DHBA)" xsd:string -intersection_of: UBERON:0022395 ! temporal fusiform gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034872 ! -property_value: IAO:0000589 "paracingulate gyrus (DHBA)" xsd:string -intersection_of: UBERON:0022398 ! paracingulate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12769 ! -property_value: IAO:0000589 "pontocerebellar tract (DHBA)" xsd:string -intersection_of: UBERON:0022421 ! pontocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12313 ! -property_value: IAO:0000589 "sagulum nucleus (DHBA)" xsd:string -intersection_of: UBERON:0022423 ! sagulum nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12662 ! -property_value: IAO:0000589 "supragenual nucleus of pontine tegmentum (DHBA)" xsd:string -intersection_of: UBERON:0022424 ! supragenual nucleus of pontine tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:15541 ! -property_value: IAO:0000589 "anterior corona radiata (DHBA)" xsd:string -intersection_of: UBERON:0022425 ! anterior corona radiata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:15542 ! -property_value: IAO:0000589 "superior corona radiata (DHBA)" xsd:string -intersection_of: UBERON:0022426 ! superior corona radiata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:15543 ! -property_value: IAO:0000589 "posterior corona radiata (DHBA)" xsd:string -intersection_of: UBERON:0022427 ! posterior corona radiata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:15539 ! -property_value: IAO:0000589 "cingulate cortex cingulum (DHBA)" xsd:string -intersection_of: UBERON:0022428 ! cingulate cortex cingulum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:15540 ! -property_value: IAO:0000589 "temporal cortex cingulum (DHBA)" xsd:string -intersection_of: UBERON:0022429 ! temporal cortex cingulum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12468 ! -property_value: IAO:0000589 "primary superior olive (DHBA)" xsd:string -intersection_of: UBERON:0022434 ! primary superior olive -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:15561 ! -property_value: IAO:0000589 "dorsal periolivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0022437 ! dorsal periolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10359 ! -property_value: IAO:0000589 "isla magna of Calleja (DHBA)" xsd:string -intersection_of: UBERON:0023868 ! isla magna of Calleja -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12384 ! -property_value: IAO:0000589 "paravermis lobule area (DHBA)" xsd:string -intersection_of: UBERON:0027285 ! paravermis lobule area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12386 ! -property_value: IAO:0000589 "paravermis of the posterior lobe of the cerebellum (DHBA)" xsd:string -intersection_of: UBERON:0027309 ! paravermis of the posterior lobe of the cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12385 ! -property_value: IAO:0000589 "paravermis of the anterior lobe of the cerebellum (DHBA)" xsd:string -intersection_of: UBERON:0027310 ! paravermis of the anterior lobe of the cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10377 ! -property_value: IAO:0000589 "amygdalohippocampal area (DHBA)" xsd:string -intersection_of: UBERON:0034673 ! amygdalohippocampal area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12025 ! -property_value: IAO:0000589 "forceps major of corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0034676 ! forceps major of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12024 ! -property_value: IAO:0000589 "forceps minor of corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0034678 ! forceps minor of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12695 ! -property_value: IAO:0000589 "cerebellum marginal layer (DHBA)" xsd:string -intersection_of: UBERON:0034708 ! cerebellum marginal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12694 ! -property_value: IAO:0000589 "hindbrain marginal layer (DHBA)" xsd:string -intersection_of: UBERON:0034709 ! hindbrain marginal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12076 ! -property_value: IAO:0000589 "medial olfactory stria (DHBA)" xsd:string -intersection_of: UBERON:0034734 ! medial olfactory stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10580 ! -property_value: IAO:0000589 "inferior longitudinal fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0034743 ! inferior longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12043 ! -property_value: IAO:0000589 "anterior thalamic radiation (DHBA)" xsd:string -intersection_of: UBERON:0034746 ! anterior thalamic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12053 ! -property_value: IAO:0000589 "posterior thalamic radiation (DHBA)" xsd:string -intersection_of: UBERON:0034747 ! posterior thalamic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12052 ! -property_value: IAO:0000589 "retrolenticular part of internal capsule (DHBA)" xsd:string -intersection_of: UBERON:0034749 ! retrolenticular part of internal capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10236 ! -property_value: IAO:0000589 "primary auditory cortex (DHBA)" xsd:string -intersection_of: UBERON:0034751 ! primary auditory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10239 ! -property_value: IAO:0000589 "secondary auditory cortex (DHBA)" xsd:string -intersection_of: UBERON:0034752 ! secondary auditory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12070 ! -property_value: IAO:0000589 "inferior occipitofrontal fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0034753 ! inferior occipitofrontal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10588 ! -property_value: IAO:0000589 "occipitofrontal fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0034754 ! occipitofrontal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12165 ! -property_value: IAO:0000589 "uncus of parahippocampal gyrus (DHBA)" xsd:string -intersection_of: UBERON:0034773 ! uncus of parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441267 ! -property_value: IAO:0000589 "uncal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034774 ! uncal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441311 ! -property_value: IAO:0000589 "uncal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034775 ! uncal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441355 ! -property_value: IAO:0000589 "uncal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034776 ! uncal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11275 ! -property_value: IAO:0000589 "rostral CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034777 ! rostral CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11285 ! -property_value: IAO:0000589 "rostral CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034778 ! rostral CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11295 ! -property_value: IAO:0000589 "rostral CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034779 ! rostral CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11280 ! -property_value: IAO:0000589 "caudal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034780 ! caudal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11290 ! -property_value: IAO:0000589 "caudal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034781 ! caudal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11301 ! -property_value: IAO:0000589 "caudal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034782 ! caudal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11281 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of caudal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034798 ! stratum lacunosum-moleculare of caudal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11282 ! -property_value: IAO:0000589 "stratum radiatum of caudal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034799 ! stratum radiatum of caudal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11283 ! -property_value: IAO:0000589 "stratum pyramidale of caudal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034800 ! stratum pyramidale of caudal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11284 ! -property_value: IAO:0000589 "stratum oriens of caudal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034801 ! stratum oriens of caudal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11291 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of caudal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034803 ! stratum lacunosum-moleculare of caudal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11292 ! -property_value: IAO:0000589 "stratum radiatum of caudal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034804 ! stratum radiatum of caudal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11293 ! -property_value: IAO:0000589 "stratum pyramidale of caudal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034805 ! stratum pyramidale of caudal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11294 ! -property_value: IAO:0000589 "stratum oriens of caudal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034806 ! stratum oriens of caudal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11302 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of caudal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034808 ! stratum lacunosum-moleculare of caudal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11303 ! -property_value: IAO:0000589 "stratum radiatum of caudal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034809 ! stratum radiatum of caudal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11304 ! -property_value: IAO:0000589 "stratum lucidum of caudal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034810 ! stratum lucidum of caudal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11305 ! -property_value: IAO:0000589 "stratum pyramidale of caudal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034811 ! stratum pyramidale of caudal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11306 ! -property_value: IAO:0000589 "stratum oriens of caudal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034812 ! stratum oriens of caudal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11276 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of rostral CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034828 ! stratum lacunosum-moleculare of rostral CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11277 ! -property_value: IAO:0000589 "stratum radiatum of rostral CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034829 ! stratum radiatum of rostral CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11278 ! -property_value: IAO:0000589 "stratum pyramidale of rostral CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034830 ! stratum pyramidale of rostral CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11279 ! -property_value: IAO:0000589 "stratum oriens of rostral CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034831 ! stratum oriens of rostral CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11286 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of rostral CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034833 ! stratum lacunosum-moleculare of rostral CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11287 ! -property_value: IAO:0000589 "stratum radiatum of rostral CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034834 ! stratum radiatum of rostral CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11288 ! -property_value: IAO:0000589 "stratum pyramidale of rostral CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034835 ! stratum pyramidale of rostral CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11289 ! -property_value: IAO:0000589 "stratum oriens of rostral CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034836 ! stratum oriens of rostral CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11296 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of rostral CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034838 ! stratum lacunosum-moleculare of rostral CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11297 ! -property_value: IAO:0000589 "stratum radiatum of rostral CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034839 ! stratum radiatum of rostral CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11298 ! -property_value: IAO:0000589 "stratum lucidum of rostral CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034840 ! stratum lucidum of rostral CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11299 ! -property_value: IAO:0000589 "stratum pyramidale of rostral CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034841 ! stratum pyramidale of rostral CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:11300 ! -property_value: IAO:0000589 "stratum oriens of rostral CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034842 ! stratum oriens of rostral CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441271 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of uncal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034858 ! stratum lacunosum-moleculare of uncal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441283 ! -property_value: IAO:0000589 "stratum radiatum of uncal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034859 ! stratum radiatum of uncal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441287 ! -property_value: IAO:0000589 "stratum pyramidale of uncal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034860 ! stratum pyramidale of uncal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441291 ! -property_value: IAO:0000589 "stratum oriens of uncal CA1 (DHBA)" xsd:string -intersection_of: UBERON:0034861 ! stratum oriens of uncal CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441315 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of uncal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034863 ! stratum lacunosum-moleculare of uncal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441327 ! -property_value: IAO:0000589 "stratum radiatum of uncal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034864 ! stratum radiatum of uncal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441331 ! -property_value: IAO:0000589 "stratum pyramidale of uncal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034865 ! stratum pyramidale of uncal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441335 ! -property_value: IAO:0000589 "stratum oriens of uncal CA2 (DHBA)" xsd:string -intersection_of: UBERON:0034866 ! stratum oriens of uncal CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441359 ! -property_value: IAO:0000589 "stratum lacunosum-moleculare of uncal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034868 ! stratum lacunosum-moleculare of uncal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441371 ! -property_value: IAO:0000589 "stratum radiatum of uncal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034869 ! stratum radiatum of uncal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441375 ! -property_value: IAO:0000589 "stratum lucidum of uncal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034870 ! stratum lucidum of uncal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441379 ! -property_value: IAO:0000589 "stratum pyramidale of uncal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034871 ! stratum pyramidale of uncal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441383 ! -property_value: IAO:0000589 "stratum oriens of uncal CA3 (DHBA)" xsd:string -intersection_of: UBERON:0034872 ! stratum oriens of uncal CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10214 ! -property_value: IAO:0000589 "posterior parietal cortex (DHBA)" xsd:string -intersection_of: UBERON:0034889 ! posterior parietal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10288 ! -property_value: IAO:0000589 "insular cortex (DHBA)" xsd:string -intersection_of: UBERON:0034891 ! insular cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10290 ! -property_value: IAO:0000589 "granular insular cortex (DHBA)" xsd:string -intersection_of: UBERON:0034892 ! granular insular cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10289 ! -property_value: IAO:0000589 "agranular insular cortex (DHBA)" xsd:string -intersection_of: UBERON:0034893 ! agranular insular cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10328 ! -property_value: IAO:0000589 "agranular insular cortex (DHBA)" xsd:string -intersection_of: UBERON:0034893 ! agranular insular cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10386 ! -property_value: IAO:0000589 "lateral nucleus of stria terminalis (DHBA)" xsd:string -intersection_of: UBERON:0034894 ! lateral nucleus of stria terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10385 ! -property_value: IAO:0000589 "medial nucleus of stria terminalis (DHBA)" xsd:string -intersection_of: UBERON:0034895 ! medial nucleus of stria terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441591 ! -property_value: IAO:0000589 "ansa peduncularis (DHBA)" xsd:string -intersection_of: UBERON:0034896 ! ansa peduncularis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12184 ! -property_value: IAO:0000589 "medial pretectal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0034910 ! medial pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12187 ! -property_value: IAO:0000589 "anterior pretectal nucleus (DHBA)" xsd:string -intersection_of: UBERON:0034918 ! anterior pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12080 ! -property_value: IAO:0000589 "perforant path (DHBA)" xsd:string -intersection_of: UBERON:0034931 ! perforant path -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12682 ! -property_value: IAO:0000589 "hindbrain cortical intermediate zone (DHBA)" xsd:string -intersection_of: UBERON:0034994 ! hindbrain cortical intermediate zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12602 ! -property_value: IAO:0000589 "inferior olive, beta nucleus (DHBA)" xsd:string -intersection_of: UBERON:0035019 ! inferior olive, beta nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10380 ! -property_value: IAO:0000589 "amygdalohippocampal transition area (DHBA)" xsd:string -intersection_of: UBERON:0035026 ! amygdalohippocampal transition area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:266441729 ! -property_value: IAO:0000589 "intraculminate fissure of cerebellum (DHBA)" xsd:string -intersection_of: UBERON:0035922 ! intraculminate fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12026 ! -property_value: IAO:0000589 "radiation of corpus callosum (DHBA)" xsd:string -intersection_of: UBERON:0035924 ! radiation of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:13227 ! -property_value: IAO:0000589 "central sulcus of insula (DHBA)" xsd:string -intersection_of: UBERON:0035925 ! central sulcus of insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12467 ! -property_value: IAO:0000589 "retro-olivary nucleus (DHBA)" xsd:string -intersection_of: UBERON:0035930 ! retro-olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12082 ! -property_value: IAO:0000589 "sagittal stratum (DHBA)" xsd:string -intersection_of: UBERON:0035931 ! sagittal stratum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10569 ! -property_value: IAO:0000589 "arcuate fasciculus (DHBA)" xsd:string -intersection_of: UBERON:0035937 ! arcuate fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12728 ! -property_value: IAO:0000589 "amiculum of inferior olive (DHBA)" xsd:string -intersection_of: UBERON:0035938 ! amiculum of inferior olive -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12095 ! -property_value: IAO:0000589 "calcar avis of the lateral ventricle (DHBA)" xsd:string -intersection_of: UBERON:0035970 ! calcar avis of the lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:146034972 ! -property_value: IAO:0000589 "nucleus incertus (DHBA)" xsd:string -intersection_of: UBERON:0035973 ! nucleus incertus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12389 ! -property_value: IAO:0000589 "paravermic lobule X (DHBA)" xsd:string -intersection_of: UBERON:0036043 ! paravermic lobule X -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12846 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIAf (DHBA)" xsd:string -intersection_of: UBERON:0036044 ! cerebellum vermis lobule VIIAf -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12847 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIAt (DHBA)" xsd:string -intersection_of: UBERON:0036065 ! cerebellum vermis lobule VIIAt -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:12166 ! -property_value: IAO:0000589 "ambient gyrus (DHBA)" xsd:string -intersection_of: UBERON:0036164 ! ambient gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:10331 ! -property_value: IAO:0000589 "cerebral nuclei (DHBA)" xsd:string -intersection_of: UBERON:8440012 ! cerebral nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: DHBA:ENTITY -name: DHBA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-dhba.owl b/src/ontology/bridge/uberon-bridge-to-dhba.owl index 0a991ddd36..286819913a 100644 --- a/src/ontology/bridge/uberon-bridge-to-dhba.owl +++ b/src/ontology/bridge/uberon-bridge-to-dhba.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -339,8 +72,7 @@ - neural plate (DHBA) - DHBA:10153 + neural plate (human) @@ -359,8 +91,7 @@ - neural tube (DHBA) - DHBA:10154 + neural tube (human) @@ -379,8 +110,7 @@ - brain (DHBA) - DHBA:10155 + brain (human) @@ -399,8 +129,7 @@ - forebrain (DHBA) - DHBA:10156 + forebrain (human) @@ -419,8 +148,7 @@ - gray matter of forebrain (DHBA) - DHBA:10157 + gray matter of forebrain (human) @@ -439,8 +167,7 @@ - telencephalon (DHBA) - DHBA:10158 + telencephalon (human) @@ -459,8 +186,7 @@ - cerebral cortex (DHBA) - DHBA:10159 + cerebral cortex (human) @@ -479,8 +205,7 @@ - neocortex (DHBA) - DHBA:10160 + neocortex (human) @@ -499,8 +224,7 @@ - frontal cortex (DHBA) - DHBA:10161 + frontal cortex (human) @@ -519,8 +243,7 @@ - primary motor cortex (DHBA) - DHBA:10162 + primary motor cortex (human) @@ -539,8 +262,7 @@ - premotor cortex (DHBA) - DHBA:10168 + premotor cortex (human) @@ -559,8 +281,7 @@ - prefrontal cortex (DHBA) - DHBA:10172 + prefrontal cortex (human) @@ -579,8 +300,7 @@ - dorsolateral prefrontal cortex (DHBA) - DHBA:10173 + dorsolateral prefrontal cortex (human) @@ -599,8 +319,7 @@ - orbitofrontal cortex (DHBA) - DHBA:10194 + orbitofrontal cortex (human) @@ -619,8 +338,7 @@ - parietal cortex (DHBA) - DHBA:10208 + parietal cortex (human) @@ -639,8 +357,7 @@ - primary somatosensory cortex (DHBA) - DHBA:10209 + primary somatosensory cortex (human) @@ -659,8 +376,7 @@ - posterior parietal cortex (DHBA) - DHBA:10214 + posterior parietal cortex (human) @@ -679,8 +395,7 @@ - superior postcentral sulcus (DHBA) - DHBA:10215 + superior postcentral sulcus (human) @@ -699,8 +414,7 @@ - temporal cortex (DHBA) - DHBA:10235 + temporal cortex (human) @@ -719,8 +433,7 @@ - primary auditory cortex (DHBA) - DHBA:10236 + primary auditory cortex (human) @@ -739,8 +452,7 @@ - secondary auditory cortex (DHBA) - DHBA:10239 + secondary auditory cortex (human) @@ -759,8 +471,7 @@ - occipital cortex (DHBA) - DHBA:10268 + occipital cortex (human) @@ -779,8 +490,7 @@ - extrastriate cortex (DHBA) - DHBA:10270 + extrastriate cortex (human) @@ -799,8 +509,7 @@ - Brodmann (1909) area 18 (DHBA) - DHBA:10271 + Brodmann (1909) area 18 (human) @@ -819,8 +528,7 @@ - cingulate cortex (DHBA) - DHBA:10277 + cingulate cortex (human) @@ -839,8 +547,7 @@ - posterior calcarine sulcus (DHBA) - DHBA:10285 + posterior calcarine sulcus (human) @@ -859,8 +566,7 @@ - insular cortex (DHBA) - DHBA:10288 + insular cortex (human) @@ -879,8 +585,7 @@ - agranular insular cortex (DHBA) - DHBA:10289 + agranular insular cortex (human) @@ -899,8 +604,7 @@ - granular insular cortex (DHBA) - DHBA:10290 + granular insular cortex (human) @@ -919,8 +623,7 @@ - allocortex (DHBA) - DHBA:10292 + allocortex (human) @@ -939,8 +642,7 @@ - archicortex (DHBA) - DHBA:10293 + archicortex (human) @@ -959,8 +661,7 @@ - hippocampal formation (DHBA) - DHBA:10294 + hippocampal formation (human) @@ -979,8 +680,7 @@ - dentate gyrus of hippocampal formation (DHBA) - DHBA:10295 + dentate gyrus of hippocampal formation (human) @@ -999,8 +699,7 @@ - Ammon's horn (DHBA) - DHBA:10296 + Ammon's horn (human) @@ -1019,8 +718,7 @@ - CA1 field of hippocampus (DHBA) - DHBA:10297 + CA1 field of hippocampus (human) @@ -1039,8 +737,7 @@ - CA2 field of hippocampus (DHBA) - DHBA:10298 + CA2 field of hippocampus (human) @@ -1059,8 +756,7 @@ - CA3 field of hippocampus (DHBA) - DHBA:10299 + CA3 field of hippocampus (human) @@ -1079,8 +775,7 @@ - CA4 field of hippocampus (DHBA) - DHBA:10300 + CA4 field of hippocampus (human) @@ -1099,8 +794,7 @@ - subiculum (DHBA) - DHBA:10301 + subiculum (human) @@ -1119,8 +813,7 @@ - subiculum (DHBA) - DHBA:10302 + subiculum (human) @@ -1139,8 +832,7 @@ - induseum griseum (DHBA) - DHBA:10304 + induseum griseum (human) @@ -1159,8 +851,7 @@ - taenia tectum of brain (DHBA) - DHBA:10305 + taenia tectum of brain (human) @@ -1179,8 +870,7 @@ - paleocortex (DHBA) - DHBA:10306 + paleocortex (human) @@ -1199,8 +889,7 @@ - olfactory bulb (DHBA) - DHBA:10307 + olfactory bulb (human) @@ -1219,8 +908,7 @@ - anterior olfactory nucleus (DHBA) - DHBA:10308 + anterior olfactory nucleus (human) @@ -1239,8 +927,7 @@ - nucleus of lateral olfactory tract (DHBA) - DHBA:10309 + nucleus of lateral olfactory tract (human) @@ -1259,8 +946,7 @@ - olfactory tubercle (DHBA) - DHBA:10310 + olfactory tubercle (human) @@ -1279,8 +965,7 @@ - piriform cortex (DHBA) - DHBA:10311 + piriform cortex (human) @@ -1299,8 +984,7 @@ - periallocortex (DHBA) - DHBA:10313 + periallocortex (human) @@ -1319,8 +1003,7 @@ - presubiculum (DHBA) - DHBA:10315 + presubiculum (human) @@ -1339,8 +1022,7 @@ - parasubiculum (DHBA) - DHBA:10316 + parasubiculum (human) @@ -1359,8 +1041,7 @@ - entorhinal cortex (DHBA) - DHBA:10317 + entorhinal cortex (human) @@ -1379,8 +1060,7 @@ - lateral entorhinal cortex (DHBA) - DHBA:10318 + lateral entorhinal cortex (human) @@ -1399,8 +1079,7 @@ - medial entorhinal cortex (DHBA) - DHBA:10319 + medial entorhinal cortex (human) @@ -1419,8 +1098,7 @@ - retrosplenial region (DHBA) - DHBA:10324 + retrosplenial region (human) @@ -1439,30 +1117,7 @@ - agranular insular cortex (DHBA) - DHBA:10328 - - - - - - - - - - - - - - - - - - - - cerebral nuclei (DHBA) - collection of basal ganglia (DHBA) - DHBA:10331 + agranular insular cortex (human) @@ -1481,8 +1136,7 @@ - basal ganglion (DHBA) - DHBA:10332 + basal ganglion (human) @@ -1501,8 +1155,7 @@ - striatum (DHBA) - DHBA:10333 + striatum (human) @@ -1521,8 +1174,7 @@ - caudate nucleus (DHBA) - DHBA:10334 + caudate nucleus (human) @@ -1541,8 +1193,7 @@ - head of caudate nucleus (DHBA) - DHBA:10335 + head of caudate nucleus (human) @@ -1561,8 +1212,7 @@ - body of caudate nucleus (DHBA) - DHBA:10336 + body of caudate nucleus (human) @@ -1581,8 +1231,7 @@ - tail of caudate nucleus (DHBA) - DHBA:10337 + tail of caudate nucleus (human) @@ -1601,8 +1250,7 @@ - putamen (DHBA) - DHBA:10338 + putamen (human) @@ -1621,8 +1269,7 @@ - nucleus accumbens (DHBA) - DHBA:10339 + nucleus accumbens (human) @@ -1641,8 +1288,7 @@ - core of nucleus accumbens (DHBA) - DHBA:10340 + core of nucleus accumbens (human) @@ -1661,8 +1307,7 @@ - shell of nucleus accumbens (DHBA) - DHBA:10341 + shell of nucleus accumbens (human) @@ -1681,8 +1326,7 @@ - globus pallidus (DHBA) - DHBA:10342 + globus pallidus (human) @@ -1701,8 +1345,7 @@ - medial globus pallidus (DHBA) - DHBA:10344 + medial globus pallidus (human) @@ -1721,8 +1364,7 @@ - ventral pallidum (DHBA) - DHBA:10345 + ventral pallidum (human) @@ -1741,8 +1383,7 @@ - claustrum of brain (DHBA) - DHBA:10346 + claustrum of brain (human) @@ -1761,8 +1402,7 @@ - claustral amygdaloid area (DHBA) - DHBA:10348 + claustral amygdaloid area (human) @@ -1781,8 +1421,7 @@ - basal forebrain (DHBA) - DHBA:10349 + basal forebrain (human) @@ -1801,8 +1440,7 @@ - septal nuclear complex (DHBA) - DHBA:10350 + septal nuclear complex (human) @@ -1821,8 +1459,7 @@ - medial septal nucleus (DHBA) - DHBA:10351 + medial septal nucleus (human) @@ -1841,8 +1478,7 @@ - lateral septal nucleus (DHBA) - DHBA:10352 + lateral septal nucleus (human) @@ -1861,8 +1497,7 @@ - basal nucleus of telencephalon (DHBA) - DHBA:10353 + basal nucleus of telencephalon (human) @@ -1881,8 +1516,7 @@ - nucleus of diagonal band (DHBA) - DHBA:10354 + nucleus of diagonal band (human) @@ -1901,8 +1535,7 @@ - island of Calleja (DHBA) - DHBA:10358 + island of Calleja (human) @@ -1921,8 +1554,7 @@ - isla magna of Calleja (DHBA) - DHBA:10359 + isla magna of Calleja (human) @@ -1941,8 +1573,7 @@ - amygdala (DHBA) - DHBA:10361 + amygdala (human) @@ -1961,8 +1592,7 @@ - anterior amygdaloid area (DHBA) - DHBA:10362 + anterior amygdaloid area (human) @@ -1981,8 +1611,7 @@ - central amygdaloid nucleus (DHBA) - DHBA:10363 + central amygdaloid nucleus (human) @@ -2001,8 +1630,7 @@ - basolateral amygdaloid nuclear complex (DHBA) - DHBA:10366 + basolateral amygdaloid nuclear complex (human) @@ -2021,8 +1649,7 @@ - lateral amygdaloid nucleus (DHBA) - DHBA:10367 + lateral amygdaloid nucleus (human) @@ -2041,8 +1668,7 @@ - accessory basal amygdaloid nucleus (DHBA) - DHBA:10369 + accessory basal amygdaloid nucleus (human) @@ -2061,8 +1687,7 @@ - endopiriform nucleus (DHBA) - DHBA:10371 + endopiriform nucleus (human) @@ -2081,8 +1706,7 @@ - corticomedial nuclear complex (DHBA) - DHBA:10372 + corticomedial nuclear complex (human) @@ -2101,8 +1725,7 @@ - periamygdaloid area (DHBA) - DHBA:10373 + periamygdaloid area (human) @@ -2121,8 +1744,7 @@ - amygdalohippocampal area (DHBA) - DHBA:10377 + amygdalohippocampal area (human) @@ -2141,8 +1763,7 @@ - intercalated amygdaloid nuclei (DHBA) - DHBA:10378 + intercalated amygdaloid nuclei (human) @@ -2161,8 +1782,7 @@ - amygdalohippocampal transition area (DHBA) - DHBA:10380 + amygdalohippocampal transition area (human) @@ -2181,8 +1801,7 @@ - bed nucleus of stria terminalis (DHBA) - DHBA:10384 + bed nucleus of stria terminalis (human) @@ -2201,8 +1820,7 @@ - medial nucleus of stria terminalis (DHBA) - DHBA:10385 + medial nucleus of stria terminalis (human) @@ -2221,8 +1839,7 @@ - lateral nucleus of stria terminalis (DHBA) - DHBA:10386 + lateral nucleus of stria terminalis (human) @@ -2241,8 +1858,7 @@ - diencephalon (DHBA) - DHBA:10389 + diencephalon (human) @@ -2261,8 +1877,7 @@ - dorsal plus ventral thalamus (DHBA) - DHBA:10390 + dorsal plus ventral thalamus (human) @@ -2281,8 +1896,7 @@ - dorsal thalamus (DHBA) - DHBA:10391 + dorsal thalamus (human) @@ -2301,8 +1915,7 @@ - anterior nuclear group (DHBA) - DHBA:10392 + anterior nuclear group (human) @@ -2321,8 +1934,7 @@ - anterodorsal nucleus of thalamus (DHBA) - DHBA:10393 + anterodorsal nucleus of thalamus (human) @@ -2341,8 +1953,7 @@ - anteromedial nucleus of thalamus (DHBA) - DHBA:10394 + anteromedial nucleus of thalamus (human) @@ -2361,8 +1972,7 @@ - anteroventral nucleus of thalamus (DHBA) - DHBA:10395 + anteroventral nucleus of thalamus (human) @@ -2381,8 +1991,7 @@ - lateral dorsal nucleus (DHBA) - DHBA:10396 + lateral dorsal nucleus (human) @@ -2401,8 +2010,7 @@ - medial dorsal nucleus of thalamus (DHBA) - DHBA:10398 + medial dorsal nucleus of thalamus (human) @@ -2421,8 +2029,7 @@ - densocellular part of medial dorsal nucleus (DHBA) - DHBA:10399 + densocellular part of medial dorsal nucleus (human) @@ -2441,8 +2048,7 @@ - magnocellular part of medial dorsal nucleus (DHBA) - DHBA:10400 + magnocellular part of medial dorsal nucleus (human) @@ -2461,8 +2067,7 @@ - reuniens nucleus (DHBA) - DHBA:10403 + reuniens nucleus (human) @@ -2481,8 +2086,7 @@ - paratenial nucleus (DHBA) - DHBA:10404 + paratenial nucleus (human) @@ -2501,8 +2105,7 @@ - lateral posterior nucleus of thalamus (DHBA) - DHBA:10408 + lateral posterior nucleus of thalamus (human) @@ -2521,8 +2124,7 @@ - pulvinar nucleus (DHBA) - DHBA:10409 + pulvinar nucleus (human) @@ -2541,8 +2143,7 @@ - oral pulvinar nucleus (DHBA) - DHBA:10410 + oral pulvinar nucleus (human) @@ -2561,8 +2162,7 @@ - medial pulvinar nucleus (DHBA) - DHBA:10411 + medial pulvinar nucleus (human) @@ -2581,8 +2181,7 @@ - lateral pulvinar nucleus (DHBA) - DHBA:10412 + lateral pulvinar nucleus (human) @@ -2601,8 +2200,7 @@ - inferior pulvinar nucleus (DHBA) - DHBA:10413 + inferior pulvinar nucleus (human) @@ -2621,8 +2219,7 @@ - ventral anterior nucleus of thalamus (DHBA) - DHBA:10417 + ventral anterior nucleus of thalamus (human) @@ -2641,8 +2238,7 @@ - magnocellular part of ventral anterior nucleus (DHBA) - DHBA:10419 + magnocellular part of ventral anterior nucleus (human) @@ -2661,8 +2257,7 @@ - ventral lateral nucleus of thalamus (DHBA) - DHBA:10420 + ventral lateral nucleus of thalamus (human) @@ -2681,8 +2276,7 @@ - caudal part of ventral lateral nucleus (DHBA) - DHBA:10422 + caudal part of ventral lateral nucleus (human) @@ -2701,8 +2295,7 @@ - ventral posterior nucleus of thalamus (DHBA) - DHBA:10423 + ventral posterior nucleus of thalamus (human) @@ -2721,8 +2314,7 @@ - ventral posterolateral nucleus (DHBA) - DHBA:10424 + ventral posterolateral nucleus (human) @@ -2741,30 +2333,7 @@ - ventral posteromedial nucleus of thalamus (DHBA) - DHBA:10425 - - - - - - - - - - - - - - - - - - - - ventral posterior nucleus of thalamus (DHBA) - ventral posteroinferior nucleus (DHBA) - DHBA:10426 + ventral posteromedial nucleus of thalamus (human) @@ -2783,8 +2352,7 @@ - medial part of ventral lateral nucleus (DHBA) - DHBA:10427 + medial part of ventral lateral nucleus (human) @@ -2803,8 +2371,7 @@ - posterior nuclear complex of thalamus (DHBA) - DHBA:10428 + posterior nuclear complex of thalamus (human) @@ -2823,8 +2390,7 @@ - lateral geniculate body (DHBA) - DHBA:10429 + lateral geniculate body (human) @@ -2843,8 +2409,7 @@ - dorsal lateral geniculate nucleus (DHBA) - DHBA:10430 + dorsal lateral geniculate nucleus (human) @@ -2863,8 +2428,7 @@ - magnocellular layer of dorsal nucleus of lateral geniculate body (DHBA) - DHBA:10431 + magnocellular layer of dorsal nucleus of lateral geniculate body (human) @@ -2883,8 +2447,7 @@ - medial geniculate body (DHBA) - DHBA:10434 + medial geniculate body (human) @@ -2903,8 +2466,7 @@ - dorsal nucleus of medial geniculate body (DHBA) - DHBA:10435 + dorsal nucleus of medial geniculate body (human) @@ -2923,8 +2485,7 @@ - ventral nucleus of medial geniculate body (DHBA) - DHBA:10438 + ventral nucleus of medial geniculate body (human) @@ -2943,8 +2504,7 @@ - magnocellular nucleus of medial geniculate body (DHBA) - DHBA:10439 + magnocellular nucleus of medial geniculate body (human) @@ -2963,8 +2523,7 @@ - posterior nucleus of thalamus (DHBA) - DHBA:10440 + posterior nucleus of thalamus (human) @@ -2983,8 +2542,7 @@ - intralaminar nuclear group (DHBA) - DHBA:10442 + intralaminar nuclear group (human) @@ -3003,8 +2561,7 @@ - rostral intralaminar nuclear group (DHBA) - DHBA:10443 + rostral intralaminar nuclear group (human) @@ -3023,8 +2580,7 @@ - central lateral nucleus (DHBA) - DHBA:10444 + central lateral nucleus (human) @@ -3043,8 +2599,7 @@ - central medial nucleus (DHBA) - DHBA:10445 + central medial nucleus (human) @@ -3063,8 +2618,7 @@ - paracentral nucleus (DHBA) - DHBA:10446 + paracentral nucleus (human) @@ -3083,8 +2637,7 @@ - rhomboidal nucleus (DHBA) - DHBA:10447 + rhomboidal nucleus (human) @@ -3103,8 +2656,7 @@ - caudal intralaminar nuclear group (DHBA) - DHBA:10448 + caudal intralaminar nuclear group (human) @@ -3123,8 +2675,7 @@ - centromedian nucleus of thalamus (DHBA) - DHBA:10449 + centromedian nucleus of thalamus (human) @@ -3143,8 +2694,7 @@ - parafascicular nucleus (DHBA) - DHBA:10450 + parafascicular nucleus (human) @@ -3163,8 +2713,7 @@ - epithalamus (DHBA) - DHBA:10451 + epithalamus (human) @@ -3183,8 +2732,7 @@ - habenular nucleus (DHBA) - DHBA:10452 + habenular nucleus (human) @@ -3203,8 +2751,7 @@ - lateral habenular nucleus (DHBA) - DHBA:10453 + lateral habenular nucleus (human) @@ -3223,8 +2770,7 @@ - medial habenular nucleus (DHBA) - DHBA:10456 + medial habenular nucleus (human) @@ -3243,8 +2789,7 @@ - paraventricular nucleus of thalamus (DHBA) - DHBA:10457 + paraventricular nucleus of thalamus (human) @@ -3263,8 +2808,7 @@ - pineal body (DHBA) - DHBA:10460 + pineal body (human) @@ -3283,8 +2827,7 @@ - ventral thalamus (DHBA) - DHBA:10461 + ventral thalamus (human) @@ -3303,8 +2846,7 @@ - zona incerta (DHBA) - DHBA:10463 + zona incerta (human) @@ -3323,8 +2865,7 @@ - thalamic reticular nucleus (DHBA) - DHBA:10464 + thalamic reticular nucleus (human) @@ -3343,8 +2884,7 @@ - subthalamic nucleus (DHBA) - DHBA:10466 + subthalamic nucleus (human) @@ -3363,8 +2903,7 @@ - hypothalamus (DHBA) - DHBA:10467 + hypothalamus (human) @@ -3383,8 +2922,7 @@ - medial preoptic nucleus (DHBA) - DHBA:10470 + medial preoptic nucleus (human) @@ -3403,8 +2941,7 @@ - lateral preoptic nucleus (DHBA) - DHBA:10471 + lateral preoptic nucleus (human) @@ -3423,8 +2960,7 @@ - anterior nucleus of hypothalamus (DHBA) - DHBA:10475 + anterior nucleus of hypothalamus (human) @@ -3443,8 +2979,7 @@ - paraventricular nucleus of hypothalamus (DHBA) - DHBA:10476 + paraventricular nucleus of hypothalamus (human) @@ -3463,8 +2998,7 @@ - paraventricular nucleus of the hypothalamus descending division (DHBA) - DHBA:10477 + paraventricular nucleus of the hypothalamus descending division (human) @@ -3483,8 +3017,7 @@ - paraventricular nucleus of the hypothalamus magnocellular division (DHBA) - DHBA:10478 + paraventricular nucleus of the hypothalamus magnocellular division (human) @@ -3503,8 +3036,7 @@ - paraventricular nucleus of the hypothalamus parvocellular division (DHBA) - DHBA:10479 + paraventricular nucleus of the hypothalamus parvocellular division (human) @@ -3523,8 +3055,7 @@ - suprachiasmatic nucleus (DHBA) - DHBA:10480 + suprachiasmatic nucleus (human) @@ -3543,8 +3074,7 @@ - supraoptic nucleus (DHBA) - DHBA:10481 + supraoptic nucleus (human) @@ -3563,8 +3093,7 @@ - dorsomedial nucleus of hypothalamus (DHBA) - DHBA:10485 + dorsomedial nucleus of hypothalamus (human) @@ -3583,8 +3112,7 @@ - ventromedial nucleus of hypothalamus (DHBA) - DHBA:10488 + ventromedial nucleus of hypothalamus (human) @@ -3603,8 +3131,7 @@ - arcuate nucleus of hypothalamus (DHBA) - DHBA:10492 + arcuate nucleus of hypothalamus (human) @@ -3623,8 +3150,7 @@ - lateral tuberal nucleus (DHBA) - DHBA:10493 + lateral tuberal nucleus (human) @@ -3643,8 +3169,7 @@ - tuberomammillary nucleus (DHBA) - DHBA:10496 + tuberomammillary nucleus (human) @@ -3663,8 +3188,7 @@ - supramammillary nucleus (DHBA) - DHBA:10497 + supramammillary nucleus (human) @@ -3683,8 +3207,7 @@ - medial mammillary nucleus (DHBA) - DHBA:10499 + medial mammillary nucleus (human) @@ -3703,8 +3226,7 @@ - lateral part of medial mammillary nucleus (DHBA) - DHBA:10500 + lateral part of medial mammillary nucleus (human) @@ -3723,8 +3245,7 @@ - medial part of medial mammillary nucleus (DHBA) - DHBA:10501 + medial part of medial mammillary nucleus (human) @@ -3743,8 +3264,7 @@ - lateral mammillary nucleus (DHBA) - DHBA:10502 + lateral mammillary nucleus (human) @@ -3763,8 +3283,7 @@ - posterior nucleus of hypothalamus (DHBA) - DHBA:10503 + posterior nucleus of hypothalamus (human) @@ -3783,8 +3302,7 @@ - pituitary gland (DHBA) - DHBA:10505 + pituitary gland (human) @@ -3803,8 +3321,7 @@ - brain marginal zone (DHBA) - DHBA:10508 + brain marginal zone (human) @@ -3823,8 +3340,7 @@ - cortical plate (DHBA) - DHBA:10515 + cortical plate (human) @@ -3843,8 +3359,7 @@ - cortical subplate (DHBA) - DHBA:10522 + cortical subplate (human) @@ -3863,8 +3378,7 @@ - postnatal subventricular zone (DHBA) - DHBA:10536 + postnatal subventricular zone (human) @@ -3883,8 +3397,7 @@ - ventricular zone (DHBA) - DHBA:10542 + ventricular zone (human) @@ -3903,8 +3416,7 @@ - ganglionic eminence (DHBA) - DHBA:10549 + ganglionic eminence (human) @@ -3923,8 +3435,7 @@ - medial ganglionic eminence (DHBA) - DHBA:10550 + medial ganglionic eminence (human) @@ -3943,8 +3454,7 @@ - lateral ganglionic eminence (DHBA) - DHBA:10551 + lateral ganglionic eminence (human) @@ -3963,8 +3473,7 @@ - caudal ganglionic eminence (DHBA) - DHBA:10552 + caudal ganglionic eminence (human) @@ -3983,8 +3492,7 @@ - rostral migratory stream (DHBA) - DHBA:10556 + rostral migratory stream (human) @@ -4003,8 +3511,7 @@ - white matter of forebrain (DHBA) - DHBA:10557 + white matter of forebrain (human) @@ -4023,8 +3530,7 @@ - anterior commissure (DHBA) - DHBA:10559 + anterior commissure (human) @@ -4043,8 +3549,7 @@ - hippocampal commissure (DHBA) - DHBA:10560 + hippocampal commissure (human) @@ -4063,8 +3568,7 @@ - corpus callosum (DHBA) - DHBA:10561 + corpus callosum (human) @@ -4083,8 +3587,7 @@ - rostrum of corpus callosum (DHBA) - DHBA:10562 + rostrum of corpus callosum (human) @@ -4103,8 +3606,7 @@ - genu of corpus callosum (DHBA) - DHBA:10563 + genu of corpus callosum (human) @@ -4123,8 +3625,7 @@ - body of corpus callosum (DHBA) - DHBA:10564 + body of corpus callosum (human) @@ -4143,8 +3644,7 @@ - splenium of the corpus callosum (DHBA) - DHBA:10565 + splenium of the corpus callosum (human) @@ -4163,8 +3663,7 @@ - habenular commissure (DHBA) - DHBA:10566 + habenular commissure (human) @@ -4183,8 +3682,7 @@ - posterior commissure (DHBA) - DHBA:10567 + posterior commissure (human) @@ -4203,8 +3701,7 @@ - forebrain ipsilateral fiber tracts (DHBA) - DHBA:10568 + forebrain ipsilateral fiber tracts (human) @@ -4223,8 +3720,7 @@ - arcuate fasciculus (DHBA) - DHBA:10569 + arcuate fasciculus (human) @@ -4243,8 +3739,7 @@ - hippocampus alveus (DHBA) - DHBA:10570 + hippocampus alveus (human) @@ -4263,8 +3758,7 @@ - ansa lenticularis (DHBA) - DHBA:10571 + ansa lenticularis (human) @@ -4283,8 +3777,7 @@ - cingulum of brain (DHBA) - DHBA:10572 + cingulum of brain (human) @@ -4303,8 +3796,7 @@ - external capsule of telencephalon (DHBA) - DHBA:10573 + external capsule of telencephalon (human) @@ -4323,8 +3815,7 @@ - extreme capsule (DHBA) - DHBA:10574 + extreme capsule (human) @@ -4343,8 +3834,7 @@ - hippocampus fimbria (DHBA) - DHBA:10575 + hippocampus fimbria (human) @@ -4363,8 +3853,7 @@ - fornix of brain (DHBA) - DHBA:10576 + fornix of brain (human) @@ -4383,8 +3872,7 @@ - body of fornix (DHBA) - DHBA:10577 + body of fornix (human) @@ -4403,8 +3891,7 @@ - body of fornix (DHBA) - DHBA:10578 + body of fornix (human) @@ -4423,8 +3910,7 @@ - posterior column of fornix (DHBA) - DHBA:10579 + posterior column of fornix (human) @@ -4443,8 +3929,7 @@ - inferior longitudinal fasciculus (DHBA) - DHBA:10580 + inferior longitudinal fasciculus (human) @@ -4463,8 +3948,7 @@ - internal capsule of telencephalon (DHBA) - DHBA:10581 + internal capsule of telencephalon (human) @@ -4483,8 +3967,7 @@ - anterior limb of internal capsule (DHBA) - DHBA:10582 + anterior limb of internal capsule (human) @@ -4503,8 +3986,7 @@ - posterior limb of internal capsule (DHBA) - DHBA:10584 + posterior limb of internal capsule (human) @@ -4523,8 +4005,7 @@ - lenticular fasciculus (DHBA) - DHBA:10585 + lenticular fasciculus (human) @@ -4543,8 +4024,7 @@ - mammillothalamic axonal tract (DHBA) - DHBA:10586 + mammillothalamic axonal tract (human) @@ -4563,8 +4043,7 @@ - medial forebrain bundle (DHBA) - DHBA:10587 + medial forebrain bundle (human) @@ -4583,8 +4062,7 @@ - occipitofrontal fasciculus (DHBA) - DHBA:10588 + occipitofrontal fasciculus (human) @@ -4603,8 +4081,7 @@ - optic tract (DHBA) - DHBA:10589 + optic tract (human) @@ -4623,8 +4100,7 @@ - stria medullaris (DHBA) - DHBA:10590 + stria medullaris (human) @@ -4643,8 +4119,7 @@ - stria terminalis (DHBA) - DHBA:10591 + stria terminalis (human) @@ -4663,8 +4138,7 @@ - superior longitudinal fasciculus (DHBA) - DHBA:10592 + superior longitudinal fasciculus (human) @@ -4683,8 +4157,7 @@ - ventral thalamic fasciculus (DHBA) - DHBA:10593 + ventral thalamic fasciculus (human) @@ -4703,8 +4176,7 @@ - uncinate fasciculus (DHBA) - DHBA:10594 + uncinate fasciculus (human) @@ -4723,8 +4195,7 @@ - early prosencephalic vesicle (DHBA) - DHBA:10595 + early prosencephalic vesicle (human) @@ -4743,8 +4214,7 @@ - telencephalic ventricle (DHBA) - DHBA:10596 + telencephalic ventricle (human) @@ -4763,8 +4233,7 @@ - anterior horn of lateral ventricle (DHBA) - DHBA:10597 + anterior horn of lateral ventricle (human) @@ -4783,8 +4252,7 @@ - body of lateral ventricle (DHBA) - DHBA:10598 + body of lateral ventricle (human) @@ -4803,8 +4271,7 @@ - posterior horn lateral ventricle (DHBA) - DHBA:10599 + posterior horn lateral ventricle (human) @@ -4823,8 +4290,7 @@ - inferior horn of the lateral ventricle (DHBA) - DHBA:10600 + inferior horn of the lateral ventricle (human) @@ -4843,8 +4309,7 @@ - choroid plexus of lateral ventricle (DHBA) - DHBA:10601 + choroid plexus of lateral ventricle (human) @@ -4863,8 +4328,7 @@ - third ventricle (DHBA) - DHBA:10602 + third ventricle (human) @@ -4883,8 +4347,7 @@ - interventricular foramen of CNS (DHBA) - DHBA:10608 + interventricular foramen of CNS (human) @@ -4903,8 +4366,7 @@ - sulcus of brain (DHBA) - DHBA:10610 + sulcus of brain (human) @@ -4923,8 +4385,7 @@ - calcarine sulcus (DHBA) - DHBA:10612 + calcarine sulcus (human) @@ -4943,8 +4404,7 @@ - callosal sulcus (DHBA) - DHBA:10613 + callosal sulcus (human) @@ -4963,8 +4423,7 @@ - central sulcus (DHBA) - DHBA:10614 + central sulcus (human) @@ -4983,8 +4442,7 @@ - cingulate sulcus (DHBA) - DHBA:10615 + cingulate sulcus (human) @@ -5003,8 +4461,7 @@ - collateral sulcus (DHBA) - DHBA:10618 + collateral sulcus (human) @@ -5023,8 +4480,7 @@ - hippocampal sulcus (DHBA) - DHBA:10619 + hippocampal sulcus (human) @@ -5043,8 +4499,7 @@ - intraparietal sulcus (DHBA) - DHBA:10620 + intraparietal sulcus (human) @@ -5063,8 +4518,7 @@ - lateral sulcus (DHBA) - DHBA:10621 + lateral sulcus (human) @@ -5083,8 +4537,7 @@ - longitudinal fissure (DHBA) - DHBA:10622 + longitudinal fissure (human) @@ -5103,8 +4556,7 @@ - occipitotemporal sulcus (DHBA) - DHBA:10623 + occipitotemporal sulcus (human) @@ -5123,8 +4575,7 @@ - olfactory sulcus (DHBA) - DHBA:10624 + olfactory sulcus (human) @@ -5143,8 +4594,7 @@ - orbital sulcus (DHBA) - DHBA:10625 + orbital sulcus (human) @@ -5163,8 +4613,7 @@ - parieto-occipital sulcus (DHBA) - DHBA:10626 + parieto-occipital sulcus (human) @@ -5183,8 +4632,7 @@ - postcentral sulcus of parietal lobe (DHBA) - DHBA:10627 + postcentral sulcus of parietal lobe (human) @@ -5203,8 +4651,7 @@ - precentral sulcus (DHBA) - DHBA:10628 + precentral sulcus (human) @@ -5223,8 +4670,7 @@ - superior temporal sulcus (DHBA) - DHBA:10629 + superior temporal sulcus (human) @@ -5243,8 +4689,7 @@ - inferior frontal sulcus (DHBA) - DHBA:10631 + inferior frontal sulcus (human) @@ -5263,8 +4708,7 @@ - inferior temporal sulcus (DHBA) - DHBA:10632 + inferior temporal sulcus (human) @@ -5283,8 +4727,7 @@ - paracentral sulcus (DHBA) - DHBA:10633 + paracentral sulcus (human) @@ -5303,8 +4746,7 @@ - rhinal sulcus (DHBA) - DHBA:10636 + rhinal sulcus (human) @@ -5323,8 +4765,7 @@ - superior frontal sulcus (DHBA) - DHBA:10639 + superior frontal sulcus (human) @@ -5343,8 +4784,7 @@ - anterior perforated substance (DHBA) - DHBA:10642 + anterior perforated substance (human) @@ -5363,8 +4803,7 @@ - pituitary stalk (DHBA) - DHBA:10643 + pituitary stalk (human) @@ -5383,8 +4822,7 @@ - optic chiasma (DHBA) - DHBA:10644 + optic chiasma (human) @@ -5403,8 +4841,7 @@ - preoccipital notch (DHBA) - DHBA:10645 + preoccipital notch (human) @@ -5423,8 +4860,7 @@ - tuber cinereum (DHBA) - DHBA:10647 + tuber cinereum (human) @@ -5443,8 +4879,7 @@ - midbrain (DHBA) - DHBA:10648 + midbrain (human) @@ -5463,8 +4898,7 @@ - gray matter of midbrain (DHBA) - DHBA:10649 + gray matter of midbrain (human) @@ -5483,8 +4917,7 @@ - white matter of midbrain (DHBA) - DHBA:10650 + white matter of midbrain (human) @@ -5503,8 +4936,7 @@ - midbrain cerebral aqueduct (DHBA) - DHBA:10651 + midbrain cerebral aqueduct (human) @@ -5523,8 +4955,7 @@ - hindbrain (DHBA) - DHBA:10653 + hindbrain (human) @@ -5543,8 +4974,7 @@ - gray matter of hindbrain (DHBA) - DHBA:10654 + gray matter of hindbrain (human) @@ -5563,8 +4993,7 @@ - metencephalon (DHBA) - DHBA:10655 + metencephalon (human) @@ -5583,8 +5012,7 @@ - cerebellum (DHBA) - DHBA:10656 + cerebellum (human) @@ -5603,8 +5031,7 @@ - cerebellar cortex (DHBA) - DHBA:10657 + cerebellar cortex (human) @@ -5623,8 +5050,7 @@ - cerebellar vermis (DHBA) - DHBA:10658 + cerebellar vermis (human) @@ -5643,8 +5069,7 @@ - cerebellar hemisphere (DHBA) - DHBA:10659 + cerebellar hemisphere (human) @@ -5663,8 +5088,7 @@ - cerebellar nuclear complex (DHBA) - DHBA:10660 + cerebellar nuclear complex (human) @@ -5683,8 +5107,7 @@ - pons (DHBA) - DHBA:10661 + pons (human) @@ -5703,8 +5126,7 @@ - myelencephalon (DHBA) - DHBA:10662 + myelencephalon (human) @@ -5723,8 +5145,7 @@ - rhombic lip (DHBA) - DHBA:10664 + rhombic lip (human) @@ -5743,8 +5164,7 @@ - upper rhombic lip (DHBA) - DHBA:10665 + upper rhombic lip (human) @@ -5763,8 +5183,7 @@ - lower rhombic lip (DHBA) - DHBA:10666 + lower rhombic lip (human) @@ -5783,8 +5202,7 @@ - white matter of hindbrain (DHBA) - DHBA:10668 + white matter of hindbrain (human) @@ -5803,8 +5221,7 @@ - fourth ventricle (DHBA) - DHBA:10669 + fourth ventricle (human) @@ -5823,8 +5240,7 @@ - rostral CA1 (DHBA) - DHBA:11275 + rostral CA1 (human) @@ -5843,8 +5259,7 @@ - stratum lacunosum-moleculare of rostral CA1 (DHBA) - DHBA:11276 + stratum lacunosum-moleculare of rostral CA1 (human) @@ -5863,8 +5278,7 @@ - stratum radiatum of rostral CA1 (DHBA) - DHBA:11277 + stratum radiatum of rostral CA1 (human) @@ -5883,8 +5297,7 @@ - stratum pyramidale of rostral CA1 (DHBA) - DHBA:11278 + stratum pyramidale of rostral CA1 (human) @@ -5903,8 +5316,7 @@ - stratum oriens of rostral CA1 (DHBA) - DHBA:11279 + stratum oriens of rostral CA1 (human) @@ -5923,8 +5335,7 @@ - caudal CA1 (DHBA) - DHBA:11280 + caudal CA1 (human) @@ -5943,8 +5354,7 @@ - stratum lacunosum-moleculare of caudal CA1 (DHBA) - DHBA:11281 + stratum lacunosum-moleculare of caudal CA1 (human) @@ -5963,8 +5373,7 @@ - stratum radiatum of caudal CA1 (DHBA) - DHBA:11282 + stratum radiatum of caudal CA1 (human) @@ -5983,8 +5392,7 @@ - stratum pyramidale of caudal CA1 (DHBA) - DHBA:11283 + stratum pyramidale of caudal CA1 (human) @@ -6003,8 +5411,7 @@ - stratum oriens of caudal CA1 (DHBA) - DHBA:11284 + stratum oriens of caudal CA1 (human) @@ -6023,8 +5430,7 @@ - rostral CA2 (DHBA) - DHBA:11285 + rostral CA2 (human) @@ -6043,8 +5449,7 @@ - stratum lacunosum-moleculare of rostral CA2 (DHBA) - DHBA:11286 + stratum lacunosum-moleculare of rostral CA2 (human) @@ -6063,8 +5468,7 @@ - stratum radiatum of rostral CA2 (DHBA) - DHBA:11287 + stratum radiatum of rostral CA2 (human) @@ -6083,8 +5487,7 @@ - stratum pyramidale of rostral CA2 (DHBA) - DHBA:11288 + stratum pyramidale of rostral CA2 (human) @@ -6103,8 +5506,7 @@ - stratum oriens of rostral CA2 (DHBA) - DHBA:11289 + stratum oriens of rostral CA2 (human) @@ -6123,8 +5525,7 @@ - caudal CA2 (DHBA) - DHBA:11290 + caudal CA2 (human) @@ -6143,8 +5544,7 @@ - stratum lacunosum-moleculare of caudal CA2 (DHBA) - DHBA:11291 + stratum lacunosum-moleculare of caudal CA2 (human) @@ -6163,8 +5563,7 @@ - stratum radiatum of caudal CA2 (DHBA) - DHBA:11292 + stratum radiatum of caudal CA2 (human) @@ -6183,8 +5582,7 @@ - stratum pyramidale of caudal CA2 (DHBA) - DHBA:11293 + stratum pyramidale of caudal CA2 (human) @@ -6203,8 +5601,7 @@ - stratum oriens of caudal CA2 (DHBA) - DHBA:11294 + stratum oriens of caudal CA2 (human) @@ -6223,8 +5620,7 @@ - rostral CA3 (DHBA) - DHBA:11295 + rostral CA3 (human) @@ -6243,8 +5639,7 @@ - stratum lacunosum-moleculare of rostral CA3 (DHBA) - DHBA:11296 + stratum lacunosum-moleculare of rostral CA3 (human) @@ -6263,8 +5658,7 @@ - stratum radiatum of rostral CA3 (DHBA) - DHBA:11297 + stratum radiatum of rostral CA3 (human) @@ -6283,8 +5677,7 @@ - stratum lucidum of rostral CA3 (DHBA) - DHBA:11298 + stratum lucidum of rostral CA3 (human) @@ -6303,8 +5696,7 @@ - stratum pyramidale of rostral CA3 (DHBA) - DHBA:11299 + stratum pyramidale of rostral CA3 (human) @@ -6323,8 +5715,7 @@ - stratum oriens of rostral CA3 (DHBA) - DHBA:11300 + stratum oriens of rostral CA3 (human) @@ -6343,8 +5734,7 @@ - caudal CA3 (DHBA) - DHBA:11301 + caudal CA3 (human) @@ -6363,8 +5753,7 @@ - stratum lacunosum-moleculare of caudal CA3 (DHBA) - DHBA:11302 + stratum lacunosum-moleculare of caudal CA3 (human) @@ -6383,8 +5772,7 @@ - stratum radiatum of caudal CA3 (DHBA) - DHBA:11303 + stratum radiatum of caudal CA3 (human) @@ -6403,8 +5791,7 @@ - stratum lucidum of caudal CA3 (DHBA) - DHBA:11304 + stratum lucidum of caudal CA3 (human) @@ -6423,8 +5810,7 @@ - stratum pyramidale of caudal CA3 (DHBA) - DHBA:11305 + stratum pyramidale of caudal CA3 (human) @@ -6443,8 +5829,7 @@ - stratum oriens of caudal CA3 (DHBA) - DHBA:11306 + stratum oriens of caudal CA3 (human) @@ -6463,8 +5848,7 @@ - olfactory bulb outer nerve layer (DHBA) - DHBA:11326 + olfactory bulb outer nerve layer (human) @@ -6483,8 +5867,7 @@ - olfactory bulb glomerular layer (DHBA) - DHBA:11327 + olfactory bulb glomerular layer (human) @@ -6503,8 +5886,7 @@ - olfactory bulb mitral cell layer (DHBA) - DHBA:11329 + olfactory bulb mitral cell layer (human) @@ -6523,8 +5905,7 @@ - olfactory bulb internal plexiform layer (DHBA) - DHBA:11330 + olfactory bulb internal plexiform layer (human) @@ -6543,8 +5924,7 @@ - piriform cortex layer 2 (DHBA) - DHBA:11336 + piriform cortex layer 2 (human) @@ -6563,8 +5943,7 @@ - perifornical nucleus (DHBA) - DHBA:11578 + perifornical nucleus (human) @@ -6583,8 +5962,7 @@ - forceps minor of corpus callosum (DHBA) - DHBA:12024 + forceps minor of corpus callosum (human) @@ -6603,8 +5981,7 @@ - forceps major of corpus callosum (DHBA) - DHBA:12025 + forceps major of corpus callosum (human) @@ -6623,8 +6000,7 @@ - radiation of corpus callosum (DHBA) - DHBA:12026 + radiation of corpus callosum (human) @@ -6643,8 +6019,7 @@ - tapetum of corpus callosum (DHBA) - DHBA:12027 + tapetum of corpus callosum (human) @@ -6663,8 +6038,7 @@ - corona radiata of neuraxis (DHBA) - DHBA:12030 + corona radiata of neuraxis (human) @@ -6683,8 +6057,7 @@ - diagonal band of Broca (DHBA) - DHBA:12034 + diagonal band of Broca (human) @@ -6703,8 +6076,7 @@ - dorsal longitudinal fasciculus (DHBA) - DHBA:12035 + dorsal longitudinal fasciculus (human) @@ -6723,8 +6095,7 @@ - lateral medullary lamina of globus pallidus (DHBA) - DHBA:12037 + lateral medullary lamina of globus pallidus (human) @@ -6743,8 +6114,7 @@ - external medullary lamina of thalamus (DHBA) - DHBA:12038 + external medullary lamina of thalamus (human) @@ -6763,8 +6133,7 @@ - anterior thalamic radiation (DHBA) - DHBA:12043 + anterior thalamic radiation (human) @@ -6783,8 +6152,7 @@ - corticotectal tract (DHBA) - DHBA:12050 + corticotectal tract (human) @@ -6803,8 +6171,7 @@ - retrolenticular part of internal capsule (DHBA) - DHBA:12052 + retrolenticular part of internal capsule (human) @@ -6823,8 +6190,7 @@ - posterior thalamic radiation (DHBA) - DHBA:12053 + posterior thalamic radiation (human) @@ -6843,8 +6209,7 @@ - inferior thalamic peduncle (DHBA) - DHBA:12059 + inferior thalamic peduncle (human) @@ -6863,8 +6228,7 @@ - medial medullary lamina of globus pallidus (DHBA) - DHBA:12062 + medial medullary lamina of globus pallidus (human) @@ -6883,8 +6247,7 @@ - internal medullary lamina of thalamus (DHBA) - DHBA:12063 + internal medullary lamina of thalamus (human) @@ -6903,8 +6266,7 @@ - lateral longitudinal stria (DHBA) - DHBA:12064 + lateral longitudinal stria (human) @@ -6923,8 +6285,7 @@ - mammillotegmental axonal tract (DHBA) - DHBA:12065 + mammillotegmental axonal tract (human) @@ -6943,8 +6304,7 @@ - medial longitudinal stria (DHBA) - DHBA:12066 + medial longitudinal stria (human) @@ -6963,8 +6323,7 @@ - inferior occipitofrontal fasciculus (DHBA) - DHBA:12070 + inferior occipitofrontal fasciculus (human) @@ -6983,8 +6342,7 @@ - subcallosal fasciculus (DHBA) - DHBA:12071 + subcallosal fasciculus (human) @@ -7003,8 +6361,7 @@ - olfactory tract (DHBA) - DHBA:12073 + olfactory tract (human) @@ -7023,8 +6380,7 @@ - olfactory tract (DHBA) - DHBA:12074 + olfactory tract (human) @@ -7043,8 +6399,7 @@ - lateral olfactory stria (DHBA) - DHBA:12075 + lateral olfactory stria (human) @@ -7063,8 +6418,7 @@ - medial olfactory stria (DHBA) - DHBA:12076 + medial olfactory stria (human) @@ -7083,8 +6437,7 @@ - pallidotegmental fasciculus (DHBA) - DHBA:12078 + pallidotegmental fasciculus (human) @@ -7103,8 +6456,7 @@ - perforant path (DHBA) - DHBA:12080 + perforant path (human) @@ -7123,8 +6475,7 @@ - sagittal stratum (DHBA) - DHBA:12082 + sagittal stratum (human) @@ -7143,8 +6494,7 @@ - stratum zonale of thalamus (DHBA) - DHBA:12085 + stratum zonale of thalamus (human) @@ -7163,8 +6513,7 @@ - subthalamic fasciculus (DHBA) - DHBA:12089 + subthalamic fasciculus (human) @@ -7183,8 +6532,7 @@ - ventricular system choroidal fissure (DHBA) - DHBA:12094 + ventricular system choroidal fissure (human) @@ -7203,8 +6551,7 @@ - calcar avis of the lateral ventricle (DHBA) - DHBA:12095 + calcar avis of the lateral ventricle (human) @@ -7223,8 +6570,7 @@ - septum pellucidum (DHBA) - DHBA:12098 + septum pellucidum (human) @@ -7243,8 +6589,7 @@ - cavum septum pellucidum (DHBA) - DHBA:12099 + cavum septum pellucidum (human) @@ -7263,8 +6608,7 @@ - subcommissural organ (DHBA) - DHBA:12101 + subcommissural organ (human) @@ -7283,8 +6627,7 @@ - subfornical organ (DHBA) - DHBA:12104 + subfornical organ (human) @@ -7303,8 +6646,7 @@ - lamina terminalis of cerebral hemisphere (DHBA) - DHBA:12105 + lamina terminalis of cerebral hemisphere (human) @@ -7323,8 +6665,7 @@ - supraoptic crest (DHBA) - DHBA:12106 + supraoptic crest (human) @@ -7343,8 +6684,7 @@ - lateral sulcus (DHBA) - DHBA:12110 + lateral sulcus (human) @@ -7363,8 +6703,7 @@ - frontal lobe (DHBA) - DHBA:12113 + frontal lobe (human) @@ -7383,8 +6722,7 @@ - precentral gyrus (DHBA) - DHBA:12114 + precentral gyrus (human) @@ -7403,8 +6741,7 @@ - superior frontal gyrus (DHBA) - DHBA:12115 + superior frontal gyrus (human) @@ -7423,8 +6760,7 @@ - middle frontal gyrus (DHBA) - DHBA:12116 + middle frontal gyrus (human) @@ -7443,8 +6779,7 @@ - inferior frontal gyrus (DHBA) - DHBA:12117 + inferior frontal gyrus (human) @@ -7463,8 +6798,7 @@ - triangular part of inferior frontal gyrus (DHBA) - DHBA:12118 + triangular part of inferior frontal gyrus (human) @@ -7483,8 +6817,7 @@ - opercular part of inferior frontal gyrus (DHBA) - DHBA:12119 + opercular part of inferior frontal gyrus (human) @@ -7503,8 +6836,7 @@ - orbital part of inferior frontal gyrus (DHBA) - DHBA:12120 + orbital part of inferior frontal gyrus (human) @@ -7523,8 +6855,7 @@ - medial orbital gyrus (DHBA) - DHBA:12122 + medial orbital gyrus (human) @@ -7543,8 +6874,7 @@ - lateral orbital gyrus (DHBA) - DHBA:12125 + lateral orbital gyrus (human) @@ -7563,8 +6893,7 @@ - frontal operculum (DHBA) - DHBA:12127 + frontal operculum (human) @@ -7583,8 +6912,7 @@ - orbital operculum (DHBA) - DHBA:12128 + orbital operculum (human) @@ -7603,8 +6931,7 @@ - superior rostral gyrus (DHBA) - DHBA:12129 + superior rostral gyrus (human) @@ -7623,8 +6950,7 @@ - inferior rostral gyrus (DHBA) - DHBA:12130 + inferior rostral gyrus (human) @@ -7643,8 +6969,7 @@ - parietal lobe (DHBA) - DHBA:12131 + parietal lobe (human) @@ -7663,8 +6988,7 @@ - postcentral gyrus (DHBA) - DHBA:12132 + postcentral gyrus (human) @@ -7683,8 +7007,7 @@ - inferior parietal cortex (DHBA) - DHBA:12134 + inferior parietal cortex (human) @@ -7703,8 +7026,7 @@ - supramarginal gyrus (DHBA) - DHBA:12135 + supramarginal gyrus (human) @@ -7723,8 +7045,7 @@ - angular gyrus (DHBA) - DHBA:12136 + angular gyrus (human) @@ -7743,8 +7064,7 @@ - precuneus cortex (DHBA) - DHBA:12137 + precuneus cortex (human) @@ -7763,8 +7083,7 @@ - temporal lobe (DHBA) - DHBA:12139 + temporal lobe (human) @@ -7783,8 +7102,7 @@ - superior temporal gyrus (DHBA) - DHBA:12140 + superior temporal gyrus (human) @@ -7803,8 +7121,7 @@ - middle temporal gyrus (DHBA) - DHBA:12141 + middle temporal gyrus (human) @@ -7823,8 +7140,7 @@ - inferior temporal gyrus (DHBA) - DHBA:12142 + inferior temporal gyrus (human) @@ -7843,8 +7159,7 @@ - temporal fusiform gyrus (DHBA) - DHBA:12143 + temporal fusiform gyrus (human) @@ -7863,8 +7178,7 @@ - planum temporale (DHBA) - DHBA:12145 + planum temporale (human) @@ -7883,8 +7197,7 @@ - temporal pole (DHBA) - DHBA:12146 + temporal pole (human) @@ -7903,8 +7216,7 @@ - occipital lobe (DHBA) - DHBA:12148 + occipital lobe (human) @@ -7923,8 +7235,7 @@ - occipital pole (DHBA) - DHBA:12149 + occipital pole (human) @@ -7943,8 +7254,7 @@ - cuneus cortex (DHBA) - DHBA:12150 + cuneus cortex (human) @@ -7963,8 +7273,7 @@ - lingual gyrus (DHBA) - DHBA:12151 + lingual gyrus (human) @@ -7983,8 +7292,7 @@ - occipital fusiform gyrus (DHBA) - DHBA:12152 + occipital fusiform gyrus (human) @@ -8003,8 +7311,7 @@ - inferior occipital gyrus (DHBA) - DHBA:12153 + inferior occipital gyrus (human) @@ -8023,8 +7330,7 @@ - superior occipital gyrus (DHBA) - DHBA:12154 + superior occipital gyrus (human) @@ -8043,8 +7349,7 @@ - limbic lobe (DHBA) - DHBA:12155 + limbic lobe (human) @@ -8063,8 +7368,7 @@ - cingulate gyrus (DHBA) - DHBA:12156 + cingulate gyrus (human) @@ -8083,8 +7387,7 @@ - paraterminal gyrus (DHBA) - DHBA:12161 + paraterminal gyrus (human) @@ -8103,8 +7406,7 @@ - parahippocampal gyrus (DHBA) - DHBA:12162 + parahippocampal gyrus (human) @@ -8123,8 +7425,7 @@ - anterior parahippocampal gyrus (DHBA) - DHBA:12163 + anterior parahippocampal gyrus (human) @@ -8143,8 +7444,7 @@ - posterior parahippocampal gyrus (DHBA) - DHBA:12164 + posterior parahippocampal gyrus (human) @@ -8163,8 +7463,7 @@ - uncus of parahippocampal gyrus (DHBA) - DHBA:12165 + uncus of parahippocampal gyrus (human) @@ -8183,8 +7482,7 @@ - ambient gyrus (DHBA) - DHBA:12166 + ambient gyrus (human) @@ -8203,8 +7501,7 @@ - periamygdaloid area (DHBA) - DHBA:12169 + periamygdaloid area (human) @@ -8223,8 +7520,7 @@ - fasciolar gyrus (DHBA) - DHBA:12175 + fasciolar gyrus (human) @@ -8243,8 +7539,7 @@ - insula (DHBA) - DHBA:12176 + insula (human) @@ -8263,8 +7558,7 @@ - limen of insula (DHBA) - DHBA:12179 + limen of insula (human) @@ -8283,8 +7577,7 @@ - pretectal region (DHBA) - DHBA:12181 + pretectal region (human) @@ -8303,8 +7596,7 @@ - pretectal nucleus (DHBA) - DHBA:12182 + pretectal nucleus (human) @@ -8323,8 +7615,7 @@ - medial pretectal nucleus (DHBA) - DHBA:12184 + medial pretectal nucleus (human) @@ -8343,8 +7634,7 @@ - olivary pretectal nucleus (DHBA) - DHBA:12186 + olivary pretectal nucleus (human) @@ -8363,8 +7653,7 @@ - anterior pretectal nucleus (DHBA) - DHBA:12187 + anterior pretectal nucleus (human) @@ -8383,8 +7672,7 @@ - midbrain tegmentum (DHBA) - DHBA:12195 + midbrain tegmentum (human) @@ -8403,8 +7691,7 @@ - oculomotor nuclear complex (DHBA) - DHBA:12198 + oculomotor nuclear complex (human) @@ -8423,8 +7710,7 @@ - anterior median oculomotor nucleus (DHBA) - DHBA:12199 + anterior median oculomotor nucleus (human) @@ -8443,8 +7729,7 @@ - caudal central oculomotor nucleus (DHBA) - DHBA:12200 + caudal central oculomotor nucleus (human) @@ -8463,8 +7748,7 @@ - central oculomotor nucleus (DHBA) - DHBA:12201 + central oculomotor nucleus (human) @@ -8483,8 +7767,7 @@ - dorsal oculomotor nucleus (DHBA) - DHBA:12202 + dorsal oculomotor nucleus (human) @@ -8503,8 +7786,7 @@ - intermediate oculomotor nucleus (DHBA) - DHBA:12203 + intermediate oculomotor nucleus (human) @@ -8523,8 +7805,7 @@ - medial oculomotor nucleus (DHBA) - DHBA:12204 + medial oculomotor nucleus (human) @@ -8543,8 +7824,7 @@ - ventral oculomotor nucleus (DHBA) - DHBA:12205 + ventral oculomotor nucleus (human) @@ -8563,8 +7843,7 @@ - trochlear nucleus (DHBA) - DHBA:12206 + trochlear nucleus (human) @@ -8583,8 +7862,7 @@ - mesencephalic nucleus of trigeminal nerve (DHBA) - DHBA:12208 + mesencephalic nucleus of trigeminal nerve (human) @@ -8603,8 +7881,7 @@ - central gray substance of midbrain (DHBA) - DHBA:12209 + central gray substance of midbrain (human) @@ -8623,8 +7900,7 @@ - ventral nucleus of posterior commissure (DHBA) - DHBA:12218 + ventral nucleus of posterior commissure (human) @@ -8643,8 +7919,7 @@ - parvocellular oculomotor nucleus (DHBA) - DHBA:12219 + parvocellular oculomotor nucleus (human) @@ -8663,8 +7938,7 @@ - midbrain raphe nuclei (DHBA) - DHBA:12222 + midbrain raphe nuclei (human) @@ -8683,8 +7957,7 @@ - dorsal raphe nucleus (DHBA) - DHBA:12223 + dorsal raphe nucleus (human) @@ -8703,8 +7976,7 @@ - linear nucleus (DHBA) - DHBA:12230 + linear nucleus (human) @@ -8723,8 +7995,7 @@ - rostral linear nucleus (DHBA) - DHBA:12234 + rostral linear nucleus (human) @@ -8743,8 +8014,7 @@ - median raphe nucleus (DHBA) - DHBA:12235 + median raphe nucleus (human) @@ -8763,8 +8033,7 @@ - midbrain reticular formation (DHBA) - DHBA:12239 + midbrain reticular formation (human) @@ -8783,8 +8052,7 @@ - cuneiform nucleus (DHBA) - DHBA:12240 + cuneiform nucleus (human) @@ -8803,8 +8071,7 @@ - subcuneiform nucleus (DHBA) - DHBA:12246 + subcuneiform nucleus (human) @@ -8823,8 +8090,7 @@ - red nucleus (DHBA) - DHBA:12247 + red nucleus (human) @@ -8843,8 +8109,7 @@ - magnocellular part of red nucleus (DHBA) - DHBA:12249 + magnocellular part of red nucleus (human) @@ -8863,8 +8128,7 @@ - parvocellular part of red nucleus (DHBA) - DHBA:12250 + parvocellular part of red nucleus (human) @@ -8883,8 +8147,7 @@ - substantia nigra (DHBA) - DHBA:12251 + substantia nigra (human) @@ -8903,8 +8166,7 @@ - substantia nigra pars compacta (DHBA) - DHBA:12252 + substantia nigra pars compacta (human) @@ -8923,8 +8185,7 @@ - substantia nigra pars lateralis (DHBA) - DHBA:12257 + substantia nigra pars lateralis (human) @@ -8943,8 +8204,7 @@ - substantia nigra pars reticulata (DHBA) - DHBA:12259 + substantia nigra pars reticulata (human) @@ -8963,8 +8223,7 @@ - ventral tegmental area (DHBA) - DHBA:12261 + ventral tegmental area (human) @@ -8983,8 +8242,7 @@ - interfascicular linear nucleus (DHBA) - DHBA:12262 + interfascicular linear nucleus (human) @@ -9003,8 +8261,7 @@ - parabrachial pigmental nucleus (DHBA) - DHBA:12263 + parabrachial pigmental nucleus (human) @@ -9023,8 +8280,7 @@ - paranigral nucleus (DHBA) - DHBA:12265 + paranigral nucleus (human) @@ -9043,8 +8299,7 @@ - ventral tegmental nucleus (DHBA) - DHBA:12266 + ventral tegmental nucleus (human) @@ -9063,8 +8318,7 @@ - interpeduncular nucleus (DHBA) - DHBA:12270 + interpeduncular nucleus (human) @@ -9083,8 +8337,7 @@ - interstitial nucleus of Cajal (DHBA) - DHBA:12278 + interstitial nucleus of Cajal (human) @@ -9103,8 +8356,7 @@ - peripeduncular nucleus (DHBA) - DHBA:12285 + peripeduncular nucleus (human) @@ -9123,8 +8375,7 @@ - retrorubral area of midbrain reticular nucleus (DHBA) - DHBA:12289 + retrorubral area of midbrain reticular nucleus (human) @@ -9143,8 +8394,7 @@ - subbrachial nucleus (DHBA) - DHBA:12290 + subbrachial nucleus (human) @@ -9163,8 +8413,7 @@ - midbrain tectum (DHBA) - DHBA:12291 + midbrain tectum (human) @@ -9183,8 +8432,7 @@ - superior colliculus (DHBA) - DHBA:12292 + superior colliculus (human) @@ -9203,8 +8451,7 @@ - superficial layer of superior colliculus (DHBA) - DHBA:12293 + superficial layer of superior colliculus (human) @@ -9223,8 +8470,7 @@ - superior colliculus superficial gray layer (DHBA) - DHBA:12295 + superior colliculus superficial gray layer (human) @@ -9243,8 +8489,7 @@ - superficial white layer of superior colliculus (DHBA) - DHBA:12296 + superficial white layer of superior colliculus (human) @@ -9263,8 +8508,7 @@ - zonal layer of superior colliculus (DHBA) - DHBA:12297 + zonal layer of superior colliculus (human) @@ -9283,8 +8527,7 @@ - intermediate layer of superior colliculus (DHBA) - DHBA:12298 + intermediate layer of superior colliculus (human) @@ -9303,8 +8546,7 @@ - middle gray layer of superior colliculus (DHBA) - DHBA:12299 + middle gray layer of superior colliculus (human) @@ -9323,8 +8565,7 @@ - middle white layer of superior colliculus (DHBA) - DHBA:12300 + middle white layer of superior colliculus (human) @@ -9343,8 +8584,7 @@ - deep layer of superior colliculus (DHBA) - DHBA:12301 + deep layer of superior colliculus (human) @@ -9363,8 +8603,7 @@ - deep gray layer of superior colliculus (DHBA) - DHBA:12302 + deep gray layer of superior colliculus (human) @@ -9383,8 +8622,7 @@ - deep white layer of superior colliculus (DHBA) - DHBA:12303 + deep white layer of superior colliculus (human) @@ -9403,8 +8641,7 @@ - inferior colliculus (DHBA) - DHBA:12305 + inferior colliculus (human) @@ -9423,8 +8660,7 @@ - pericentral nucleus of inferior colliculus (DHBA) - DHBA:12306 + pericentral nucleus of inferior colliculus (human) @@ -9443,8 +8679,7 @@ - external nucleus of inferior colliculus (DHBA) - DHBA:12308 + external nucleus of inferior colliculus (human) @@ -9463,8 +8698,7 @@ - central nucleus of inferior colliculus (DHBA) - DHBA:12309 + central nucleus of inferior colliculus (human) @@ -9483,8 +8717,7 @@ - parabigeminal nucleus (DHBA) - DHBA:12312 + parabigeminal nucleus (human) @@ -9503,8 +8736,7 @@ - sagulum nucleus (DHBA) - DHBA:12313 + sagulum nucleus (human) @@ -9523,8 +8755,7 @@ - mesomere 1 (DHBA) - DHBA:12316 + mesomere 1 (human) @@ -9543,8 +8774,7 @@ - mesomere 2 (DHBA) - DHBA:12317 + mesomere 2 (human) @@ -9563,8 +8793,7 @@ - roof plate of midbrain (DHBA) - DHBA:12320 + roof plate of midbrain (human) @@ -9583,8 +8812,7 @@ - midbrain basal plate (DHBA) - DHBA:12322 + midbrain basal plate (human) @@ -9603,8 +8831,7 @@ - floor plate of midbrain (DHBA) - DHBA:12325 + floor plate of midbrain (human) @@ -9623,8 +8850,7 @@ - brachium of inferior colliculus (DHBA) - DHBA:12327 + brachium of inferior colliculus (human) @@ -9643,8 +8869,7 @@ - brachium of superior colliculus (DHBA) - DHBA:12328 + brachium of superior colliculus (human) @@ -9663,8 +8888,7 @@ - commissure of inferior colliculus (DHBA) - DHBA:12333 + commissure of inferior colliculus (human) @@ -9683,8 +8907,7 @@ - decussation of superior cerebellar peduncle (DHBA) - DHBA:12337 + decussation of superior cerebellar peduncle (human) @@ -9703,8 +8926,7 @@ - decussation of trochlear nerve (DHBA) - DHBA:12338 + decussation of trochlear nerve (human) @@ -9723,8 +8945,7 @@ - dorsal tegmental decussation (DHBA) - DHBA:12340 + dorsal tegmental decussation (human) @@ -9743,8 +8964,7 @@ - superior cerebellar peduncle (DHBA) - DHBA:12354 + superior cerebellar peduncle (human) @@ -9763,8 +8983,7 @@ - dentatothalamic tract (DHBA) - DHBA:12357 + dentatothalamic tract (human) @@ -9783,8 +9002,7 @@ - tectopontine tract (DHBA) - DHBA:12364 + tectopontine tract (human) @@ -9803,8 +9021,7 @@ - ventral tegmental decussation (DHBA) - DHBA:12366 + ventral tegmental decussation (human) @@ -9823,8 +9040,7 @@ - midbrain cerebral aqueduct (DHBA) - DHBA:12369 + midbrain cerebral aqueduct (human) @@ -9843,8 +9059,7 @@ - corpora quadrigemina (DHBA) - DHBA:12375 + corpora quadrigemina (human) @@ -9863,8 +9078,7 @@ - oculomotor nerve root (DHBA) - DHBA:12376 + oculomotor nerve root (human) @@ -9883,8 +9097,7 @@ - root of trochlear nerve (DHBA) - DHBA:12377 + root of trochlear nerve (human) @@ -9903,8 +9116,7 @@ - paravermis lobule area (DHBA) - DHBA:12384 + paravermis lobule area (human) @@ -9923,8 +9135,7 @@ - paravermis of the anterior lobe of the cerebellum (DHBA) - DHBA:12385 + paravermis of the anterior lobe of the cerebellum (human) @@ -9943,8 +9154,7 @@ - paravermis of the posterior lobe of the cerebellum (DHBA) - DHBA:12386 + paravermis of the posterior lobe of the cerebellum (human) @@ -9963,8 +9173,7 @@ - paravermic lobule X (DHBA) - DHBA:12389 + paravermic lobule X (human) @@ -9983,8 +9192,7 @@ - cerebrocerebellum (DHBA) - DHBA:12390 + cerebrocerebellum (human) @@ -10003,8 +9211,7 @@ - cerebellum interpositus nucleus (DHBA) - DHBA:12399 + cerebellum interpositus nucleus (human) @@ -10023,8 +9230,7 @@ - cerebellum globose nucleus (DHBA) - DHBA:12400 + cerebellum globose nucleus (human) @@ -10043,8 +9249,7 @@ - emboliform nucleus (DHBA) - DHBA:12401 + emboliform nucleus (human) @@ -10063,8 +9268,7 @@ - fastigial nucleus (DHBA) - DHBA:12402 + fastigial nucleus (human) @@ -10083,8 +9287,7 @@ - basal part of pons (DHBA) - DHBA:12405 + basal part of pons (human) @@ -10103,8 +9306,7 @@ - pontine nuclear group (DHBA) - DHBA:12406 + pontine nuclear group (human) @@ -10123,8 +9325,7 @@ - pedunculopontine tegmental nucleus (DHBA) - DHBA:12413 + pedunculopontine tegmental nucleus (human) @@ -10143,8 +9344,7 @@ - reticulotegmental nucleus (DHBA) - DHBA:12414 + reticulotegmental nucleus (human) @@ -10163,8 +9363,7 @@ - pontine tegmentum (DHBA) - DHBA:12416 + pontine tegmentum (human) @@ -10183,8 +9382,7 @@ - abducens nucleus (DHBA) - DHBA:12418 + abducens nucleus (human) @@ -10203,8 +9401,7 @@ - facial nucleus (DHBA) - DHBA:12420 + facial nucleus (human) @@ -10223,8 +9420,7 @@ - motor nucleus of trigeminal nerve (DHBA) - DHBA:12429 + motor nucleus of trigeminal nerve (human) @@ -10243,8 +9439,7 @@ - superior salivatory nucleus (DHBA) - DHBA:12435 + superior salivatory nucleus (human) @@ -10263,8 +9458,7 @@ - cochlear nuclear complex (DHBA) - DHBA:12437 + cochlear nuclear complex (human) @@ -10283,8 +9477,7 @@ - dorsal cochlear nucleus (DHBA) - DHBA:12438 + dorsal cochlear nucleus (human) @@ -10303,8 +9496,7 @@ - ventral cochlear nucleus (DHBA) - DHBA:12439 + ventral cochlear nucleus (human) @@ -10323,8 +9515,7 @@ - anteroventral cochlear nucleus (DHBA) - DHBA:12440 + anteroventral cochlear nucleus (human) @@ -10343,8 +9534,7 @@ - posteroventral cochlear nucleus (DHBA) - DHBA:12441 + posteroventral cochlear nucleus (human) @@ -10363,8 +9553,7 @@ - principal sensory nucleus of trigeminal nerve (DHBA) - DHBA:12444 + principal sensory nucleus of trigeminal nerve (human) @@ -10383,8 +9572,7 @@ - lateral vestibular nucleus (DHBA) - DHBA:12449 + lateral vestibular nucleus (human) @@ -10403,8 +9591,7 @@ - superior vestibular nucleus (DHBA) - DHBA:12452 + superior vestibular nucleus (human) @@ -10423,8 +9610,7 @@ - nucleus of lateral lemniscus (DHBA) - DHBA:12454 + nucleus of lateral lemniscus (human) @@ -10443,8 +9629,7 @@ - dorsal nucleus of lateral lemniscus (DHBA) - DHBA:12455 + dorsal nucleus of lateral lemniscus (human) @@ -10463,8 +9648,7 @@ - intermediate nucleus of lateral lemniscus (DHBA) - DHBA:12456 + intermediate nucleus of lateral lemniscus (human) @@ -10483,8 +9667,7 @@ - ventral nucleus of lateral lemniscus (DHBA) - DHBA:12457 + ventral nucleus of lateral lemniscus (human) @@ -10503,8 +9686,7 @@ - nucleus of trapezoid body (DHBA) - DHBA:12458 + nucleus of trapezoid body (human) @@ -10523,8 +9705,7 @@ - lateral nucleus of trapezoid body (DHBA) - DHBA:12459 + lateral nucleus of trapezoid body (human) @@ -10543,8 +9724,7 @@ - medial nucleus of trapezoid body (DHBA) - DHBA:12460 + medial nucleus of trapezoid body (human) @@ -10563,8 +9743,7 @@ - ventral nucleus of trapezoid body (DHBA) - DHBA:12461 + ventral nucleus of trapezoid body (human) @@ -10583,8 +9762,7 @@ - superior olivary complex (DHBA) - DHBA:12462 + superior olivary complex (human) @@ -10603,8 +9781,7 @@ - periolivary nucleus (DHBA) - DHBA:12464 + periolivary nucleus (human) @@ -10623,8 +9800,7 @@ - lateral periolivary nucleus (DHBA) - DHBA:12465 + lateral periolivary nucleus (human) @@ -10643,8 +9819,7 @@ - retro-olivary nucleus (DHBA) - DHBA:12467 + retro-olivary nucleus (human) @@ -10663,8 +9838,7 @@ - primary superior olive (DHBA) - DHBA:12468 + primary superior olive (human) @@ -10683,8 +9857,7 @@ - lateral superior olivary nucleus (DHBA) - DHBA:12469 + lateral superior olivary nucleus (human) @@ -10703,8 +9876,7 @@ - medial superior olivary nucleus (DHBA) - DHBA:12470 + medial superior olivary nucleus (human) @@ -10723,8 +9895,7 @@ - pontine raphe nucleus (DHBA) - DHBA:12471 + pontine raphe nucleus (human) @@ -10743,8 +9914,7 @@ - pontine raphe nucleus (DHBA) - DHBA:12475 + pontine raphe nucleus (human) @@ -10763,8 +9933,7 @@ - pontine reticular formation (DHBA) - DHBA:12480 + pontine reticular formation (human) @@ -10783,8 +9952,7 @@ - parabrachial nucleus (DHBA) - DHBA:12481 + parabrachial nucleus (human) @@ -10803,8 +9971,7 @@ - lateral parabrachial nucleus (DHBA) - DHBA:12482 + lateral parabrachial nucleus (human) @@ -10823,8 +9990,7 @@ - medial parabrachial nucleus (DHBA) - DHBA:12487 + medial parabrachial nucleus (human) @@ -10843,8 +10009,7 @@ - diffuse reticular nucleus (DHBA) - DHBA:12491 + diffuse reticular nucleus (human) @@ -10863,8 +10028,7 @@ - caudal pontine reticular nucleus (DHBA) - DHBA:12493 + caudal pontine reticular nucleus (human) @@ -10883,8 +10047,7 @@ - oral pontine reticular nucleus (DHBA) - DHBA:12494 + oral pontine reticular nucleus (human) @@ -10903,8 +10066,7 @@ - paramedian reticular nucleus (DHBA) - DHBA:12496 + paramedian reticular nucleus (human) @@ -10923,8 +10085,7 @@ - reticulotegmental nucleus (DHBA) - DHBA:12497 + reticulotegmental nucleus (human) @@ -10943,8 +10104,7 @@ - nucleus subceruleus (DHBA) - DHBA:12500 + nucleus subceruleus (human) @@ -10963,8 +10123,7 @@ - Barrington's nucleus (DHBA) - DHBA:12506 + Barrington's nucleus (human) @@ -10983,8 +10142,7 @@ - dorsal tegmental nucleus (DHBA) - DHBA:12508 + dorsal tegmental nucleus (human) @@ -11003,8 +10161,7 @@ - diffuse reticular nucleus (DHBA) - DHBA:12518 + diffuse reticular nucleus (human) @@ -11023,8 +10180,7 @@ - laterodorsal tegmental nucleus (DHBA) - DHBA:12519 + laterodorsal tegmental nucleus (human) @@ -11043,8 +10199,7 @@ - lateral pericuneate nucleus (DHBA) - DHBA:12526 + lateral pericuneate nucleus (human) @@ -11063,8 +10218,7 @@ - medial pericuneate nucleus (DHBA) - DHBA:12527 + medial pericuneate nucleus (human) @@ -11083,8 +10237,7 @@ - retrotrapezoid nucleus (DHBA) - DHBA:12531 + retrotrapezoid nucleus (human) @@ -11103,8 +10256,7 @@ - pyramid of medulla oblongata (DHBA) - DHBA:12535 + pyramid of medulla oblongata (human) @@ -11123,8 +10275,7 @@ - arcuate nucleus of medulla (DHBA) - DHBA:12536 + arcuate nucleus of medulla (human) @@ -11143,8 +10294,7 @@ - nucleus ambiguus (DHBA) - DHBA:12540 + nucleus ambiguus (human) @@ -11163,8 +10313,7 @@ - inferior salivatory nucleus (DHBA) - DHBA:12544 + inferior salivatory nucleus (human) @@ -11183,8 +10332,7 @@ - hypoglossal nucleus (DHBA) - DHBA:12545 + hypoglossal nucleus (human) @@ -11203,8 +10351,7 @@ - dorsal motor nucleus of vagus nerve (DHBA) - DHBA:12550 + dorsal motor nucleus of vagus nerve (human) @@ -11223,8 +10370,7 @@ - nucleus of solitary tract (DHBA) - DHBA:12557 + nucleus of solitary tract (human) @@ -11243,8 +10389,7 @@ - ventrolateral nucleus of solitary tract (DHBA) - DHBA:12569 + ventrolateral nucleus of solitary tract (human) @@ -11263,8 +10408,7 @@ - parasolitary nucleus (DHBA) - DHBA:12571 + parasolitary nucleus (human) @@ -11283,8 +10427,7 @@ - spinal nucleus of trigeminal nerve (DHBA) - DHBA:12572 + spinal nucleus of trigeminal nerve (human) @@ -11303,8 +10446,7 @@ - caudal part of spinal trigeminal nucleus (DHBA) - DHBA:12573 + caudal part of spinal trigeminal nucleus (human) @@ -11323,8 +10465,7 @@ - interpolar part of spinal trigeminal nucleus (DHBA) - DHBA:12578 + interpolar part of spinal trigeminal nucleus (human) @@ -11343,8 +10484,7 @@ - medial vestibular nucleus (DHBA) - DHBA:12581 + medial vestibular nucleus (human) @@ -11363,8 +10503,7 @@ - cuneate nucleus (DHBA) - DHBA:12589 + cuneate nucleus (human) @@ -11383,8 +10522,7 @@ - gracile nucleus (DHBA) - DHBA:12592 + gracile nucleus (human) @@ -11403,8 +10541,7 @@ - dorsal paramedian reticular nucleus (DHBA) - DHBA:12597 + dorsal paramedian reticular nucleus (human) @@ -11423,8 +10560,7 @@ - inferior olivary complex (DHBA) - DHBA:12600 + inferior olivary complex (human) @@ -11443,8 +10579,7 @@ - inferior olive, beta nucleus (DHBA) - DHBA:12602 + inferior olive, beta nucleus (human) @@ -11463,8 +10598,7 @@ - dorsal accessory inferior olivary nucleus (DHBA) - DHBA:12603 + dorsal accessory inferior olivary nucleus (human) @@ -11483,8 +10617,7 @@ - medial accessory inferior olivary nucleus (DHBA) - DHBA:12605 + medial accessory inferior olivary nucleus (human) @@ -11503,8 +10636,7 @@ - principal inferior olivary nucleus (DHBA) - DHBA:12610 + principal inferior olivary nucleus (human) @@ -11523,8 +10655,7 @@ - nucleus intercalatus (DHBA) - DHBA:12612 + nucleus intercalatus (human) @@ -11543,8 +10674,7 @@ - cerebellum interpositus nucleus (DHBA) - DHBA:12613 + cerebellum interpositus nucleus (human) @@ -11563,8 +10693,7 @@ - pontobulbar nucleus (DHBA) - DHBA:12614 + pontobulbar nucleus (human) @@ -11583,8 +10712,7 @@ - nucleus prepositus (DHBA) - DHBA:12615 + nucleus prepositus (human) @@ -11603,8 +10731,7 @@ - medullary reticular formation (DHBA) - DHBA:12616 + medullary reticular formation (human) @@ -11623,8 +10750,7 @@ - parvocellular reticular nucleus (DHBA) - DHBA:12618 + parvocellular reticular nucleus (human) @@ -11643,8 +10769,7 @@ - intermediate reticular nucleus (DHBA) - DHBA:12620 + intermediate reticular nucleus (human) @@ -11663,8 +10788,7 @@ - gigantocellular nucleus (DHBA) - DHBA:12625 + gigantocellular nucleus (human) @@ -11683,8 +10807,7 @@ - paragigantocellular nucleus (DHBA) - DHBA:12626 + paragigantocellular nucleus (human) @@ -11703,8 +10826,7 @@ - dorsal paragigantocellular nucleus (DHBA) - DHBA:12628 + dorsal paragigantocellular nucleus (human) @@ -11723,8 +10845,7 @@ - lateral paragigantocellular nucleus (DHBA) - DHBA:12629 + lateral paragigantocellular nucleus (human) @@ -11743,8 +10864,7 @@ - nucleus raphe magnus (DHBA) - DHBA:12642 + nucleus raphe magnus (human) @@ -11763,8 +10883,7 @@ - nucleus raphe obscurus (DHBA) - DHBA:12643 + nucleus raphe obscurus (human) @@ -11783,8 +10902,7 @@ - nucleus raphe pallidus (DHBA) - DHBA:12644 + nucleus raphe pallidus (human) @@ -11803,8 +10921,7 @@ - spinal cord gray commissure (DHBA) - DHBA:12647 + spinal cord gray commissure (human) @@ -11823,8 +10940,7 @@ - endolemniscal nucleus (DHBA) - DHBA:12648 + endolemniscal nucleus (human) @@ -11843,8 +10959,7 @@ - epifascicular nucleus (DHBA) - DHBA:12649 + epifascicular nucleus (human) @@ -11863,8 +10978,7 @@ - area X of ventral lateral nucleus (DHBA) - DHBA:12653 + area X of ventral lateral nucleus (human) @@ -11883,8 +10997,7 @@ - sublingual nucleus (DHBA) - DHBA:12654 + sublingual nucleus (human) @@ -11903,8 +11016,7 @@ - paratrigeminal nucleus (DHBA) - DHBA:12656 + paratrigeminal nucleus (human) @@ -11923,8 +11035,7 @@ - peritrigeminal nucleus (DHBA) - DHBA:12658 + peritrigeminal nucleus (human) @@ -11943,8 +11054,7 @@ - pre-Botzinger complex (DHBA) - DHBA:12659 + pre-Botzinger complex (human) @@ -11963,8 +11073,7 @@ - supraspinal nucleus (DHBA) - DHBA:12661 + supraspinal nucleus (human) @@ -11983,8 +11092,7 @@ - supragenual nucleus of pontine tegmentum (DHBA) - DHBA:12662 + supragenual nucleus of pontine tegmentum (human) @@ -12003,8 +11111,7 @@ - rhombomere (DHBA) - DHBA:12664 + rhombomere (human) @@ -12023,8 +11130,7 @@ - rhombomere 1 (DHBA) - DHBA:12667 + rhombomere 1 (human) @@ -12043,8 +11149,7 @@ - rhombomere 2 (DHBA) - DHBA:12668 + rhombomere 2 (human) @@ -12063,8 +11168,7 @@ - rhombomere 3 (DHBA) - DHBA:12669 + rhombomere 3 (human) @@ -12083,8 +11187,7 @@ - rhombomere 4 (DHBA) - DHBA:12671 + rhombomere 4 (human) @@ -12103,8 +11206,7 @@ - rhombomere 5 (DHBA) - DHBA:12673 + rhombomere 5 (human) @@ -12123,8 +11225,7 @@ - rhombomere 6 (DHBA) - DHBA:12674 + rhombomere 6 (human) @@ -12143,8 +11244,7 @@ - rhombomere 7 (DHBA) - DHBA:12675 + rhombomere 7 (human) @@ -12163,8 +11263,7 @@ - rhombomere 8 (DHBA) - DHBA:12677 + rhombomere 8 (human) @@ -12183,8 +11282,7 @@ - hindbrain cortical intermediate zone (DHBA) - DHBA:12682 + hindbrain cortical intermediate zone (human) @@ -12203,8 +11301,7 @@ - hindbrain marginal layer (DHBA) - DHBA:12694 + hindbrain marginal layer (human) @@ -12223,8 +11320,7 @@ - cerebellum marginal layer (DHBA) - DHBA:12695 + cerebellum marginal layer (human) @@ -12243,8 +11339,7 @@ - cerebellar plate (DHBA) - DHBA:12698 + cerebellar plate (human) @@ -12263,8 +11358,7 @@ - amiculum of inferior olive (DHBA) - DHBA:12728 + amiculum of inferior olive (human) @@ -12283,8 +11377,7 @@ - central tegmental tract (DHBA) - DHBA:12730 + central tegmental tract (human) @@ -12303,8 +11396,7 @@ - cuneate fasciculus (DHBA) - DHBA:12731 + cuneate fasciculus (human) @@ -12323,8 +11415,7 @@ - decussation of medial lemniscus (DHBA) - DHBA:12732 + decussation of medial lemniscus (human) @@ -12343,8 +11434,7 @@ - dorsal acoustic stria (DHBA) - DHBA:12733 + dorsal acoustic stria (human) @@ -12363,8 +11453,7 @@ - dorsal trigeminal tract (DHBA) - DHBA:12736 + dorsal trigeminal tract (human) @@ -12383,8 +11472,7 @@ - dorsal external arcuate fiber bundle (DHBA) - DHBA:12737 + dorsal external arcuate fiber bundle (human) @@ -12403,8 +11491,7 @@ - genu of facial nerve (DHBA) - DHBA:12738 + genu of facial nerve (human) @@ -12423,8 +11510,7 @@ - gracile fasciculus (DHBA) - DHBA:12739 + gracile fasciculus (human) @@ -12443,8 +11529,7 @@ - inferior cerebellar peduncle (DHBA) - DHBA:12741 + inferior cerebellar peduncle (human) @@ -12463,8 +11548,7 @@ - cuneocerebellar tract (DHBA) - DHBA:12745 + cuneocerebellar tract (human) @@ -12483,8 +11567,7 @@ - posterior spinocerebellar tract (DHBA) - DHBA:12746 + posterior spinocerebellar tract (human) @@ -12503,8 +11586,7 @@ - olivocerebellar tract (DHBA) - DHBA:12747 + olivocerebellar tract (human) @@ -12523,8 +11605,7 @@ - spinocerebellar tract (DHBA) - DHBA:12749 + spinocerebellar tract (human) @@ -12543,8 +11624,7 @@ - juxtarestiform body (DHBA) - DHBA:12750 + juxtarestiform body (human) @@ -12563,8 +11643,7 @@ - vestibulocerebellar tract (DHBA) - DHBA:12754 + vestibulocerebellar tract (human) @@ -12583,8 +11662,7 @@ - intermediate acoustic stria (DHBA) - DHBA:12755 + intermediate acoustic stria (human) @@ -12603,8 +11681,7 @@ - internal arcuate fiber bundle (DHBA) - DHBA:12756 + internal arcuate fiber bundle (human) @@ -12623,8 +11700,7 @@ - lateral corticospinal tract (DHBA) - DHBA:12759 + lateral corticospinal tract (human) @@ -12643,8 +11719,7 @@ - lateral lemniscus (DHBA) - DHBA:12760 + lateral lemniscus (human) @@ -12663,8 +11738,7 @@ - longitudinal pontine fibers (DHBA) - DHBA:12762 + longitudinal pontine fibers (human) @@ -12683,8 +11757,7 @@ - medial lemniscus (DHBA) - DHBA:12763 + medial lemniscus (human) @@ -12703,8 +11776,7 @@ - medial longitudinal fasciculus (DHBA) - DHBA:12764 + medial longitudinal fasciculus (human) @@ -12723,8 +11795,7 @@ - mesencephalic tract of trigeminal nerve (DHBA) - DHBA:12767 + mesencephalic tract of trigeminal nerve (human) @@ -12743,8 +11814,7 @@ - middle cerebellar peduncle (DHBA) - DHBA:12768 + middle cerebellar peduncle (human) @@ -12763,8 +11833,7 @@ - pontocerebellar tract (DHBA) - DHBA:12769 + pontocerebellar tract (human) @@ -12783,8 +11852,7 @@ - olivocochlear bundle (DHBA) - DHBA:12771 + olivocochlear bundle (human) @@ -12803,8 +11871,7 @@ - pyramidal decussation (DHBA) - DHBA:12772 + pyramidal decussation (human) @@ -12823,8 +11890,7 @@ - corticobulbar tract (DHBA) - DHBA:12774 + corticobulbar tract (human) @@ -12843,8 +11909,7 @@ - corticospinal tract (DHBA) - DHBA:12776 + corticospinal tract (human) @@ -12863,8 +11928,7 @@ - rubrospinal tract (DHBA) - DHBA:12782 + rubrospinal tract (human) @@ -12883,8 +11947,7 @@ - solitary tract (DHBA) - DHBA:12783 + solitary tract (human) @@ -12903,8 +11966,7 @@ - spinothalamic tract (DHBA) - DHBA:12789 + spinothalamic tract (human) @@ -12923,8 +11985,7 @@ - tectobulbar tract (DHBA) - DHBA:12791 + tectobulbar tract (human) @@ -12943,8 +12004,7 @@ - spinal trigeminal tract (DHBA) - DHBA:12792 + spinal trigeminal tract (human) @@ -12963,8 +12023,7 @@ - spino-olivary tract (DHBA) - DHBA:12793 + spino-olivary tract (human) @@ -12983,8 +12042,7 @@ - tectospinal tract (DHBA) - DHBA:12794 + tectospinal tract (human) @@ -13003,8 +12061,7 @@ - transverse pontine fibers (DHBA) - DHBA:12795 + transverse pontine fibers (human) @@ -13023,8 +12080,7 @@ - trapezoid body (DHBA) - DHBA:12796 + trapezoid body (human) @@ -13043,8 +12099,7 @@ - trigeminothalamic tract (DHBA) - DHBA:12797 + trigeminothalamic tract (human) @@ -13063,8 +12118,7 @@ - ventral corticospinal tract (DHBA) - DHBA:12798 + ventral corticospinal tract (human) @@ -13083,8 +12137,7 @@ - anterior spinocerebellar tract (DHBA) - DHBA:12801 + anterior spinocerebellar tract (human) @@ -13103,8 +12156,7 @@ - ventral trigeminal tract (DHBA) - DHBA:12803 + ventral trigeminal tract (human) @@ -13123,8 +12175,7 @@ - fourth ventricle (DHBA) - DHBA:12805 + fourth ventricle (human) @@ -13143,8 +12194,7 @@ - area postrema (DHBA) - DHBA:12807 + area postrema (human) @@ -13163,8 +12213,7 @@ - choroid plexus of fourth ventricle (DHBA) - DHBA:12808 + choroid plexus of fourth ventricle (human) @@ -13183,8 +12232,7 @@ - lateral recess of fourth ventricle (DHBA) - DHBA:12810 + lateral recess of fourth ventricle (human) @@ -13203,8 +12251,7 @@ - locus ceruleus (DHBA) - DHBA:12819 + locus ceruleus (human) @@ -13223,8 +12270,7 @@ - sulcus limitans of fourth ventricle (DHBA) - DHBA:12823 + sulcus limitans of fourth ventricle (human) @@ -13243,8 +12289,7 @@ - cerebellum fissure (DHBA) - DHBA:12828 + cerebellum fissure (human) @@ -13263,8 +12308,7 @@ - anterior lobe of cerebellum (DHBA) - DHBA:12838 + anterior lobe of cerebellum (human) @@ -13283,8 +12327,7 @@ - cerebellum vermis lobule III (DHBA) - DHBA:12841 + cerebellum vermis lobule III (human) @@ -13303,8 +12346,7 @@ - cerebellum vermis lobule IV (DHBA) - DHBA:12842 + cerebellum vermis lobule IV (human) @@ -13323,8 +12365,7 @@ - cerebellum vermis lobule V (DHBA) - DHBA:12843 + cerebellum vermis lobule V (human) @@ -13343,8 +12384,7 @@ - posterior lobe of cerebellum (DHBA) - DHBA:12844 + posterior lobe of cerebellum (human) @@ -13363,8 +12403,7 @@ - cerebellum vermis lobule VI (DHBA) - DHBA:12845 + cerebellum vermis lobule VI (human) @@ -13383,8 +12422,7 @@ - cerebellum vermis lobule VIIAf (DHBA) - DHBA:12846 + cerebellum vermis lobule VIIAf (human) @@ -13403,8 +12441,7 @@ - cerebellum vermis lobule VIIAt (DHBA) - DHBA:12847 + cerebellum vermis lobule VIIAt (human) @@ -13423,8 +12460,7 @@ - cerebellum vermis lobule VIIB (DHBA) - DHBA:12848 + cerebellum vermis lobule VIIB (human) @@ -13443,8 +12479,7 @@ - paramedian lobule (DHBA) - DHBA:12850 + paramedian lobule (human) @@ -13463,8 +12498,7 @@ - cerebellum vermis lobule IX (DHBA) - DHBA:12851 + cerebellum vermis lobule IX (human) @@ -13483,8 +12517,7 @@ - flocculonodular lobe (DHBA) - DHBA:12852 + flocculonodular lobe (human) @@ -13503,8 +12536,7 @@ - posterior median eminence (DHBA) - DHBA:12860 + posterior median eminence (human) @@ -13523,8 +12555,7 @@ - root of abducens nerve (DHBA) - DHBA:12861 + root of abducens nerve (human) @@ -13543,8 +12574,7 @@ - facial nerve root (DHBA) - DHBA:12862 + facial nerve root (human) @@ -13563,8 +12593,7 @@ - motor root of facial nerve (DHBA) - DHBA:12863 + motor root of facial nerve (human) @@ -13583,8 +12612,7 @@ - sensory root of facial nerve (DHBA) - DHBA:12864 + sensory root of facial nerve (human) @@ -13603,8 +12631,7 @@ - trigeminal nerve root (DHBA) - DHBA:12865 + trigeminal nerve root (human) @@ -13623,8 +12650,7 @@ - motor root of trigeminal nerve (DHBA) - DHBA:12866 + motor root of trigeminal nerve (human) @@ -13643,30 +12669,7 @@ - sensory root of trigeminal nerve (DHBA) - DHBA:12867 - - - - - - - - - - - - - - - - - - - - rhombomere 8 (DHBA) - vestibulocochlear nerve root (DHBA) - DHBA:12868 + sensory root of trigeminal nerve (human) @@ -13685,8 +12688,7 @@ - vestibular nerve (DHBA) - DHBA:12869 + vestibular nerve (human) @@ -13705,8 +12707,7 @@ - ventrolateral sulcus of medulla oblongata (DHBA) - DHBA:12873 + ventrolateral sulcus of medulla oblongata (human) @@ -13725,8 +12726,7 @@ - accessory nerve root (DHBA) - DHBA:12883 + accessory nerve root (human) @@ -13745,8 +12745,7 @@ - hypoglossal nerve root (DHBA) - DHBA:12886 + hypoglossal nerve root (human) @@ -13765,8 +12764,7 @@ - glossopharyngeal nerve root (DHBA) - DHBA:12887 + glossopharyngeal nerve root (human) @@ -13785,8 +12783,7 @@ - root of vagus nerve (DHBA) - DHBA:12888 + root of vagus nerve (human) @@ -13805,8 +12802,7 @@ - spinal cord (DHBA) - DHBA:12890 + spinal cord (human) @@ -13825,8 +12821,7 @@ - septofimbrial nucleus (DHBA) - DHBA:13032 + septofimbrial nucleus (human) @@ -13845,8 +12840,7 @@ - septohypothalamic nucleus (DHBA) - DHBA:13033 + septohypothalamic nucleus (human) @@ -13865,8 +12859,7 @@ - substantia innominata (DHBA) - DHBA:13034 + substantia innominata (human) @@ -13885,8 +12878,7 @@ - ventral lateral geniculate nucleus (DHBA) - DHBA:13042 + ventral lateral geniculate nucleus (human) @@ -13905,8 +12897,7 @@ - limitans nucleus (DHBA) - DHBA:13043 + limitans nucleus (human) @@ -13925,8 +12916,7 @@ - suprageniculate nucleus of thalamus (DHBA) - DHBA:13044 + suprageniculate nucleus of thalamus (human) @@ -13945,8 +12935,7 @@ - subparafascicular nucleus (DHBA) - DHBA:13054 + subparafascicular nucleus (human) @@ -13965,8 +12954,7 @@ - endopeduncular nucleus (DHBA) - DHBA:13057 + endopeduncular nucleus (human) @@ -13985,8 +12973,7 @@ - anteroventral periventricular nucleus (DHBA) - DHBA:13061 + anteroventral periventricular nucleus (human) @@ -14005,8 +12992,7 @@ - median preoptic nucleus (DHBA) - DHBA:13063 + median preoptic nucleus (human) @@ -14025,8 +13011,7 @@ - transverse orbital sulcus (DHBA) - DHBA:13223 + transverse orbital sulcus (human) @@ -14045,8 +13030,7 @@ - central sulcus of insula (DHBA) - DHBA:13227 + central sulcus of insula (human) @@ -14065,8 +13049,7 @@ - transverse occipital sulcus (DHBA) - DHBA:13228 + transverse occipital sulcus (human) @@ -14085,8 +13068,7 @@ - prepyriform area (DHBA) - DHBA:13229 + prepyriform area (human) @@ -14105,8 +13087,7 @@ - parietal operculum (DHBA) - DHBA:13230 + parietal operculum (human) @@ -14125,8 +13106,7 @@ - lateral accessory nucleus of optic tract (DHBA) - DHBA:13236 + lateral accessory nucleus of optic tract (human) @@ -14145,8 +13125,7 @@ - central dorsal nucleus of thalamus (DHBA) - DHBA:13331 + central dorsal nucleus of thalamus (human) @@ -14165,8 +13144,7 @@ - dorsal hypothalamic area (DHBA) - DHBA:13335 + dorsal hypothalamic area (human) @@ -14185,8 +13163,7 @@ - median eminence of neurohypophysis (DHBA) - DHBA:13338 + median eminence of neurohypophysis (human) @@ -14205,8 +13182,7 @@ - parvocellular part of ventral posteromedial nucleus (DHBA) - DHBA:146034766 + parvocellular part of ventral posteromedial nucleus (human) @@ -14225,8 +13201,7 @@ - anterior occipital sulcus (DHBA) - DHBA:146034784 + anterior occipital sulcus (human) @@ -14245,8 +13220,7 @@ - anterior subcentral sulcus (DHBA) - DHBA:146034788 + anterior subcentral sulcus (human) @@ -14265,8 +13239,7 @@ - frontomarginal sulcus (DHBA) - DHBA:146034792 + frontomarginal sulcus (human) @@ -14285,8 +13258,7 @@ - lunate sulcus (DHBA) - DHBA:146034812 + lunate sulcus (human) @@ -14305,8 +13277,7 @@ - middle frontal sulcus (DHBA) - DHBA:146034816 + middle frontal sulcus (human) @@ -14325,8 +13296,7 @@ - anterior parolfactory sulcus (DHBA) - DHBA:146034824 + anterior parolfactory sulcus (human) @@ -14345,8 +13315,7 @@ - posterior parolfactory sulcus (DHBA) - DHBA:146034828 + posterior parolfactory sulcus (human) @@ -14365,8 +13334,7 @@ - Brodmann (1909) area 10 (DHBA) - DHBA:146034836 + Brodmann (1909) area 10 (human) @@ -14385,8 +13353,7 @@ - superior rostral sulcus (DHBA) - DHBA:146034840 + superior rostral sulcus (human) @@ -14405,8 +13372,7 @@ - inferior rostral sulcus (DHBA) - DHBA:146034844 + inferior rostral sulcus (human) @@ -14425,8 +13391,7 @@ - transverse temporal sulcus (DHBA) - DHBA:146034852 + transverse temporal sulcus (human) @@ -14445,8 +13410,7 @@ - paracingulate gyrus (DHBA) - DHBA:146034872 + paracingulate gyrus (human) @@ -14465,8 +13429,7 @@ - rostral gyrus (DHBA) - DHBA:146034876 + rostral gyrus (human) @@ -14485,8 +13448,7 @@ - frontal pole (DHBA) - DHBA:146034888 + frontal pole (human) @@ -14505,8 +13467,7 @@ - central gray substance of pons (DHBA) - DHBA:146034964 + central gray substance of pons (human) @@ -14525,8 +13486,7 @@ - nucleus incertus (DHBA) - DHBA:146034972 + nucleus incertus (human) @@ -14545,8 +13505,7 @@ - central gray substance of medulla (DHBA) - DHBA:146034986 + central gray substance of medulla (human) @@ -14565,8 +13524,7 @@ - gray matter of spinal cord (DHBA) - DHBA:146035048 + gray matter of spinal cord (human) @@ -14585,8 +13543,7 @@ - white matter of spinal cord (DHBA) - DHBA:146035088 + white matter of spinal cord (human) @@ -14605,8 +13562,7 @@ - central canal of spinal cord (DHBA) - DHBA:146035108 + central canal of spinal cord (human) @@ -14625,8 +13581,7 @@ - spinal nerve root (DHBA) - DHBA:146035120 + spinal nerve root (human) @@ -14645,8 +13600,7 @@ - cingulate cortex cingulum (DHBA) - DHBA:15539 + cingulate cortex cingulum (human) @@ -14665,8 +13619,7 @@ - temporal cortex cingulum (DHBA) - DHBA:15540 + temporal cortex cingulum (human) @@ -14685,8 +13638,7 @@ - anterior corona radiata (DHBA) - DHBA:15541 + anterior corona radiata (human) @@ -14705,8 +13657,7 @@ - superior corona radiata (DHBA) - DHBA:15542 + superior corona radiata (human) @@ -14725,8 +13676,7 @@ - posterior corona radiata (DHBA) - DHBA:15543 + posterior corona radiata (human) @@ -14745,8 +13695,7 @@ - cranial nerve II (DHBA) - DHBA:15544 + cranial nerve II (human) @@ -14765,8 +13714,7 @@ - mammillary body (DHBA) - DHBA:15546 + mammillary body (human) @@ -14785,8 +13733,7 @@ - dorsal periolivary nucleus (DHBA) - DHBA:15561 + dorsal periolivary nucleus (human) @@ -14805,8 +13752,7 @@ - uncal CA1 (DHBA) - DHBA:266441267 + uncal CA1 (human) @@ -14825,8 +13771,7 @@ - stratum lacunosum-moleculare of uncal CA1 (DHBA) - DHBA:266441271 + stratum lacunosum-moleculare of uncal CA1 (human) @@ -14845,8 +13790,7 @@ - stratum radiatum of uncal CA1 (DHBA) - DHBA:266441283 + stratum radiatum of uncal CA1 (human) @@ -14865,8 +13809,7 @@ - stratum pyramidale of uncal CA1 (DHBA) - DHBA:266441287 + stratum pyramidale of uncal CA1 (human) @@ -14885,8 +13828,7 @@ - stratum oriens of uncal CA1 (DHBA) - DHBA:266441291 + stratum oriens of uncal CA1 (human) @@ -14905,8 +13847,7 @@ - uncal CA2 (DHBA) - DHBA:266441311 + uncal CA2 (human) @@ -14925,8 +13866,7 @@ - stratum lacunosum-moleculare of uncal CA2 (DHBA) - DHBA:266441315 + stratum lacunosum-moleculare of uncal CA2 (human) @@ -14945,8 +13885,7 @@ - stratum radiatum of uncal CA2 (DHBA) - DHBA:266441327 + stratum radiatum of uncal CA2 (human) @@ -14965,8 +13904,7 @@ - stratum pyramidale of uncal CA2 (DHBA) - DHBA:266441331 + stratum pyramidale of uncal CA2 (human) @@ -14985,8 +13923,7 @@ - stratum oriens of uncal CA2 (DHBA) - DHBA:266441335 + stratum oriens of uncal CA2 (human) @@ -15005,8 +13942,7 @@ - uncal CA3 (DHBA) - DHBA:266441355 + uncal CA3 (human) @@ -15025,8 +13961,7 @@ - stratum lacunosum-moleculare of uncal CA3 (DHBA) - DHBA:266441359 + stratum lacunosum-moleculare of uncal CA3 (human) @@ -15045,8 +13980,7 @@ - stratum radiatum of uncal CA3 (DHBA) - DHBA:266441371 + stratum radiatum of uncal CA3 (human) @@ -15065,8 +13999,7 @@ - stratum lucidum of uncal CA3 (DHBA) - DHBA:266441375 + stratum lucidum of uncal CA3 (human) @@ -15085,8 +14018,7 @@ - stratum pyramidale of uncal CA3 (DHBA) - DHBA:266441379 + stratum pyramidale of uncal CA3 (human) @@ -15105,8 +14037,7 @@ - stratum oriens of uncal CA3 (DHBA) - DHBA:266441383 + stratum oriens of uncal CA3 (human) @@ -15125,8 +14056,7 @@ - triangular septal nucleus (DHBA) - DHBA:266441491 + triangular septal nucleus (human) @@ -15145,8 +14075,7 @@ - caudal part of ventral posterolateral nucleus of thalamus (DHBA) - DHBA:266441515 + caudal part of ventral posterolateral nucleus of thalamus (human) @@ -15165,8 +14094,7 @@ - medial preoptic region (DHBA) - DHBA:266441547 + medial preoptic region (human) @@ -15185,8 +14113,7 @@ - anterior hypothalamic region (DHBA) - DHBA:266441551 + anterior hypothalamic region (human) @@ -15205,8 +14132,7 @@ - subparaventricular zone (DHBA) - DHBA:266441555 + subparaventricular zone (human) @@ -15225,8 +14151,7 @@ - auditory radiation (DHBA) - DHBA:266441583 + auditory radiation (human) @@ -15245,8 +14170,7 @@ - ansa peduncularis (DHBA) - DHBA:266441591 + ansa peduncularis (human) @@ -15265,8 +14189,7 @@ - mammillary peduncle (DHBA) - DHBA:266441609 + mammillary peduncle (human) @@ -15285,8 +14208,7 @@ - optic radiation (DHBA) - DHBA:266441621 + optic radiation (human) @@ -15305,8 +14227,7 @@ - anterior thalamic peduncle (DHBA) - DHBA:266441633 + anterior thalamic peduncle (human) @@ -15325,8 +14246,7 @@ - pineal recess of third ventricle (DHBA) - DHBA:266441661 + pineal recess of third ventricle (human) @@ -15345,8 +14265,7 @@ - retrosplenial region (DHBA) - DHBA:266441669 + retrosplenial region (human) @@ -15365,8 +14284,7 @@ - prepyriform area (DHBA) - DHBA:266441677 + prepyriform area (human) @@ -15385,8 +14303,7 @@ - preolivary nucleus (DHBA) - DHBA:266441709 + preolivary nucleus (human) @@ -15405,8 +14322,7 @@ - trigeminal nuclear complex (DHBA) - DHBA:266441713 + trigeminal nuclear complex (human) @@ -15425,8 +14341,7 @@ - corticopontine fibers (DHBA) - DHBA:266441721 + corticopontine fibers (human) @@ -15445,8 +14360,7 @@ - intraculminate fissure of cerebellum (DHBA) - DHBA:266441729 + intraculminate fissure of cerebellum (human) @@ -15465,34 +14379,7 @@ - ansoparamedian fissure of cerebellum (DHBA) - DHBA:266441733 - - - - - - - - - - - - - - - - - - - - - - - - - DHBA:ENTITY - DHBA entity + ansoparamedian fissure of cerebellum (human) @@ -15599,12 +14486,6 @@ - - - - - - @@ -17153,12 +16034,6 @@ - - - - - - @@ -17663,12 +16538,6 @@ - - - - - - @@ -18755,12 +17624,6 @@ - - - - - - @@ -19964,15 +18827,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/uberon-bridge-to-efo.obo b/src/ontology/bridge/uberon-bridge-to-efo.obo deleted file mode 100644 index 4d99d84f0f..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-efo.obo +++ /dev/null @@ -1,3216 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-efo -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: EFO:0000979 ! -property_value: IAO:0000589 "uterine cervix (EFO)" xsd:string -equivalent_to: UBERON:0000002 ! uterine cervix - -[Term] -id: EFO:0000856 ! -property_value: IAO:0000589 "islet of Langerhans (EFO)" xsd:string -equivalent_to: UBERON:0000006 ! islet of Langerhans - -[Term] -id: EFO:0000857 ! -property_value: IAO:0000589 "pituitary gland (EFO)" xsd:string -equivalent_to: UBERON:0000007 ! pituitary gland - -[Term] -id: EFO:0000891 ! -property_value: IAO:0000589 "peripheral nervous system (EFO)" xsd:string -equivalent_to: UBERON:0000010 ! peripheral nervous system - -[Term] -id: EFO:0000894 ! -property_value: IAO:0000589 "parasympathetic nervous system (EFO)" xsd:string -equivalent_to: UBERON:0000011 ! parasympathetic nervous system - -[Term] -id: EFO:0000892 ! -property_value: IAO:0000589 "somatic nervous system (EFO)" xsd:string -equivalent_to: UBERON:0000012 ! somatic nervous system - -[Term] -id: EFO:0000893 ! -property_value: IAO:0000589 "sympathetic nervous system (EFO)" xsd:string -equivalent_to: UBERON:0000013 ! sympathetic nervous system - -[Term] -id: EFO:0002542 ! -property_value: IAO:0000589 "endocrine pancreas (EFO)" xsd:string -equivalent_to: UBERON:0000016 ! endocrine pancreas - -[Term] -id: EFO:0000955 ! -property_value: IAO:0000589 "feather (EFO)" xsd:string -equivalent_to: UBERON:0000022 ! feather - -[Term] -id: EFO:0000885 ! -property_value: IAO:0000589 "wing (EFO)" xsd:string -equivalent_to: UBERON:0000023 ! wing - -[Term] -id: EFO:0000799 ! -property_value: IAO:0000589 "appendage (EFO)" xsd:string -equivalent_to: UBERON:0000026 ! appendage - -[Term] -id: EFO:0000872 ! -property_value: IAO:0000589 "lymph node (EFO)" xsd:string -equivalent_to: UBERON:0000029 ! lymph node - -[Term] -id: EFO:0000964 ! -property_value: IAO:0000589 "head (EFO)" xsd:string -equivalent_to: UBERON:0000033 ! head - -[Term] -id: EFO:0000900 ! -property_value: IAO:0000589 "dorsal root ganglion (EFO)" xsd:string -equivalent_to: UBERON:0000044 ! dorsal root ganglion - -[Term] -id: EFO:0000899 ! -property_value: IAO:0000589 "ganglion (EFO)" xsd:string -equivalent_to: UBERON:0000045 ! ganglion - -[Term] -id: EFO:0000930 ! -property_value: IAO:0000589 "ureter (EFO)" xsd:string -equivalent_to: UBERON:0000056 ! ureter - -[Term] -id: EFO:0000931 ! -property_value: IAO:0000589 "urethra (EFO)" xsd:string -equivalent_to: UBERON:0000057 ! urethra - -[Term] -id: EFO:0000840 ! -property_value: IAO:0000589 "large intestine (EFO)" xsd:string -equivalent_to: UBERON:0000059 ! large intestine - -[Term] -id: EFO:0000634 ! -property_value: IAO:0000589 "organ (EFO)" xsd:string -equivalent_to: UBERON:0000062 ! organ - -[Term] -id: EFO:0000635 ! -property_value: IAO:0000589 "organ part (EFO)" xsd:string -equivalent_to: UBERON:0000064 ! organ part - -[Term] -id: EFO:0001272 ! -property_value: IAO:0000589 "fully formed stage (EFO)" xsd:string -equivalent_to: UBERON:0000066 ! fully formed stage - -[Term] -id: EFO:0001303 ! -property_value: IAO:0000589 "larval stage (EFO)" xsd:string -equivalent_to: UBERON:0000069 ! larval stage - -[Term] -id: EFO:0003667 ! -property_value: IAO:0000589 "renal glomerulus (EFO)" xsd:string -equivalent_to: UBERON:0000074 ! renal glomerulus - -[Term] -id: EFO:0000970 ! -property_value: IAO:0000589 "male reproductive system (EFO)" xsd:string -equivalent_to: UBERON:0000079 ! male reproductive system - -[Term] -id: EFO:0000928 ! -property_value: IAO:0000589 "mesonephros (EFO)" xsd:string -equivalent_to: UBERON:0000080 ! mesonephros - -[Term] -id: EFO:0000929 ! -property_value: IAO:0000589 "adult mammalian kidney (EFO)" xsd:string -equivalent_to: UBERON:0000082 ! adult mammalian kidney - -[Term] -id: EFO:0000547 ! -property_value: IAO:0000589 "inner cell mass (EFO)" xsd:string -equivalent_to: UBERON:0000087 ! inner cell mass - -[Term] -id: EFO:0001930 ! -property_value: IAO:0000589 "hypoblast (generic) (EFO)" xsd:string -equivalent_to: UBERON:0000089 ! hypoblast (generic) - -[Term] -id: EFO:0000399 ! -property_value: IAO:0000589 "life cycle stage (EFO)" xsd:string -equivalent_to: UBERON:0000105 ! life cycle stage - -[Term] -id: EFO:0001322 ! -property_value: IAO:0000589 "zygote stage (EFO)" xsd:string -equivalent_to: UBERON:0000106 ! zygote stage - -[Term] -id: EFO:0001290 ! -property_value: IAO:0000589 "cleavage stage (EFO)" xsd:string -equivalent_to: UBERON:0000107 ! cleavage stage - -[Term] -id: EFO:0001282 ! -property_value: IAO:0000589 "blastula stage (EFO)" xsd:string -equivalent_to: UBERON:0000108 ! blastula stage - -[Term] -id: EFO:0001296 ! -property_value: IAO:0000589 "gastrula stage (EFO)" xsd:string -equivalent_to: UBERON:0000109 ! gastrula stage - -[Term] -id: EFO:0001300 ! -property_value: IAO:0000589 "sexually immature stage (EFO)" xsd:string -equivalent_to: UBERON:0000112 ! sexually immature stage - -[Term] -id: EFO:0003644 ! -property_value: IAO:0000589 "pelvic fin (EFO)" xsd:string -equivalent_to: UBERON:0000152 ! pelvic fin - -[Term] -id: EFO:0003629 ! -property_value: IAO:0000589 "theca cell layer (EFO)" xsd:string -equivalent_to: UBERON:0000155 ! theca cell layer - -[Term] -id: EFO:0000834 ! -property_value: IAO:0000589 "intestine (EFO)" xsd:string -equivalent_to: UBERON:0000160 ! intestine - -[Term] -id: EFO:0000825 ! -property_value: IAO:0000589 "mouth (EFO)" xsd:string -equivalent_to: UBERON:0000165 ! mouth - -[Term] -id: EFO:0001975 ! -property_value: IAO:0000589 "oral cavity (EFO)" xsd:string -equivalent_to: UBERON:0000167 ! oral cavity - -[Term] -id: EFO:0000296 ! -property_value: IAO:0000589 "blood (EFO)" xsd:string -equivalent_to: UBERON:0000178 ! blood - -[Term] -id: EFO:0003534 ! -property_value: IAO:0000589 "pallium (EFO)" xsd:string -equivalent_to: UBERON:0000203 ! pallium - -[Term] -id: EFO:0003522 ! -property_value: IAO:0000589 "ventral part of telencephalon (EFO)" xsd:string -equivalent_to: UBERON:0000204 ! ventral part of telencephalon - -[Term] -id: EFO:0001966 ! -property_value: IAO:0000589 "ligament (EFO)" xsd:string -equivalent_to: UBERON:0000211 ! ligament - -[Term] -id: EFO:0003038 ! -property_value: IAO:0000589 "colonic mucosa (EFO)" xsd:string -equivalent_to: UBERON:0000317 ! colonic mucosa - -[Term] -id: EFO:0001323 ! -property_value: IAO:0000589 "late embryo (EFO)" xsd:string -equivalent_to: UBERON:0000323 ! late embryo - -[Term] -id: EFO:0000295 ! -property_value: IAO:0000589 "blastocyst (EFO)" xsd:string -equivalent_to: UBERON:0000358 ! blastocyst - -[Term] -id: EFO:0000381 ! -property_value: IAO:0000589 "corpus striatum (EFO)" xsd:string -equivalent_to: UBERON:0000369 ! corpus striatum - -[Term] -id: EFO:0001943 ! -property_value: IAO:0000589 "hindlimb stylopod (EFO)" xsd:string -equivalent_to: UBERON:0000376 ! hindlimb stylopod - -[Term] -id: EFO:0000801 ! -property_value: IAO:0000589 "musculature of body (EFO)" xsd:string -equivalent_to: UBERON:0000383 ! musculature of body - -[Term] -id: EFO:0000916 ! -property_value: IAO:0000589 "visual cortex (EFO)" xsd:string -equivalent_to: UBERON:0000411 ! visual cortex - -[Term] -id: EFO:0001384 ! -property_value: IAO:0000589 "prefrontal cortex (EFO)" xsd:string -equivalent_to: UBERON:0000451 ! prefrontal cortex - -[Term] -id: EFO:0001918 ! -property_value: IAO:0000589 "decidua basalis (EFO)" xsd:string -equivalent_to: UBERON:0000453 ! decidua basalis - -[Term] -id: EFO:0002906 ! -property_value: IAO:0000589 "multicellular organism (EFO)" xsd:string -equivalent_to: UBERON:0000468 ! multicellular organism - -[Term] -id: EFO:0000984 ! -property_value: IAO:0000589 "testis (EFO)" xsd:string -equivalent_to: UBERON:0000473 ! testis - -[Term] -id: EFO:0000969 ! -property_value: IAO:0000589 "female reproductive system (EFO)" xsd:string -equivalent_to: UBERON:0000474 ! female reproductive system - -[Term] -id: EFO:0000808 ! -property_value: IAO:0000589 "organism subdivision (EFO)" xsd:string -equivalent_to: UBERON:0000475 ! organism subdivision - -[Term] -id: EFO:0000968 ! -property_value: IAO:0000589 "abdomen (EFO)" xsd:string -equivalent_to: UBERON:0000916 ! abdomen - -[Term] -id: EFO:0001367 ! -property_value: IAO:0000589 "embryo (EFO)" xsd:string -equivalent_to: UBERON:0000922 ! embryo - -[Term] -id: EFO:0000414 ! -property_value: IAO:0000589 "ectoderm (EFO)" xsd:string -equivalent_to: UBERON:0000924 ! ectoderm - -[Term] -id: EFO:0002545 ! -property_value: IAO:0000589 "endoderm (EFO)" xsd:string -equivalent_to: UBERON:0000925 ! endoderm - -[Term] -id: EFO:0001981 ! -property_value: IAO:0000589 "mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0000926 ! mesoderm - -[Term] -id: EFO:0003336 ! -property_value: IAO:0000589 "mesectoderm (EFO)" xsd:string -equivalent_to: UBERON:0000927 ! mesectoderm - -[Term] -id: EFO:0003504 ! -property_value: IAO:0000589 "chordate pharyngeal muscle (EFO)" xsd:string -equivalent_to: UBERON:0000933 ! chordate pharyngeal muscle - -[Term] -id: EFO:0000896 ! -property_value: IAO:0000589 "ventral nerve cord (EFO)" xsd:string -equivalent_to: UBERON:0000934 ! ventral nerve cord - -[Term] -id: EFO:0004258 ! -property_value: IAO:0000589 "cranial nerve II (EFO)" xsd:string -equivalent_to: UBERON:0000941 ! cranial nerve II - -[Term] -id: EFO:0000837 ! -property_value: IAO:0000589 "stomach (EFO)" xsd:string -equivalent_to: UBERON:0000945 ! stomach - -[Term] -id: EFO:0000265 ! -property_value: IAO:0000589 "aorta (EFO)" xsd:string -equivalent_to: UBERON:0000947 ! aorta - -[Term] -id: EFO:0000815 ! -property_value: IAO:0000589 "heart (EFO)" xsd:string -equivalent_to: UBERON:0000948 ! heart - -[Term] -id: EFO:0002969 ! -property_value: IAO:0000589 "endocrine system (EFO)" xsd:string -equivalent_to: UBERON:0000949 ! endocrine system - -[Term] -id: EFO:0000302 ! -property_value: IAO:0000589 "brain (EFO)" xsd:string -equivalent_to: UBERON:0000955 ! brain - -[Term] -id: EFO:0000328 ! -property_value: IAO:0000589 "cerebral cortex (EFO)" xsd:string -equivalent_to: UBERON:0000956 ! cerebral cortex - -[Term] -id: EFO:0000377 ! -property_value: IAO:0000589 "cornea (EFO)" xsd:string -equivalent_to: UBERON:0000964 ! cornea - -[Term] -id: EFO:0000832 ! -property_value: IAO:0000589 "retina (EFO)" xsd:string -equivalent_to: UBERON:0000966 ! retina - -[Term] -id: EFO:0000827 ! -property_value: IAO:0000589 "eye (EFO)" xsd:string -equivalent_to: UBERON:0000970 ! eye - -[Term] -id: EFO:0000874 ! -property_value: IAO:0000589 "antenna (EFO)" xsd:string -equivalent_to: UBERON:0000972 ! antenna - -[Term] -id: EFO:0000967 ! -property_value: IAO:0000589 "neck (EFO)" xsd:string -equivalent_to: UBERON:0000974 ! neck - -[Term] -id: EFO:0001398 ! -property_value: IAO:0000589 "humerus (EFO)" xsd:string -equivalent_to: UBERON:0000976 ! humerus - -[Term] -id: EFO:0001980 ! -property_value: IAO:0000589 "pleura (EFO)" xsd:string -equivalent_to: UBERON:0000977 ! pleura - -[Term] -id: EFO:0001411 ! -property_value: IAO:0000589 "leg (EFO)" xsd:string -equivalent_to: UBERON:0000978 ! leg - -[Term] -id: EFO:0003054 ! -property_value: IAO:0000589 "tibia (EFO)" xsd:string -equivalent_to: UBERON:0000979 ! tibia - -[Term] -id: EFO:0001396 ! -property_value: IAO:0000589 "femur (EFO)" xsd:string -equivalent_to: UBERON:0000981 ! femur - -[Term] -id: EFO:0000948 ! -property_value: IAO:0000589 "skeletal joint (EFO)" xsd:string -equivalent_to: UBERON:0000982 ! skeletal joint - -[Term] -id: EFO:0000886 ! -property_value: IAO:0000589 "haltere (EFO)" xsd:string -equivalent_to: UBERON:0000987 ! haltere - -[Term] -id: EFO:0001394 ! -property_value: IAO:0000589 "pons (EFO)" xsd:string -equivalent_to: UBERON:0000988 ! pons - -[Term] -id: EFO:0000987 ! -property_value: IAO:0000589 "penis (EFO)" xsd:string -equivalent_to: UBERON:0000989 ! penis - -[Term] -id: EFO:0000809 ! -property_value: IAO:0000589 "reproductive system (EFO)" xsd:string -equivalent_to: UBERON:0000990 ! reproductive system - -[Term] -id: EFO:0000973 ! -property_value: IAO:0000589 "ovary (EFO)" xsd:string -equivalent_to: UBERON:0000992 ! ovary - -[Term] -id: EFO:0000974 ! -property_value: IAO:0000589 "oviduct (EFO)" xsd:string -equivalent_to: UBERON:0000993 ! oviduct - -[Term] -id: EFO:0000977 ! -property_value: IAO:0000589 "spermathecum (EFO)" xsd:string -equivalent_to: UBERON:0000994 ! spermathecum - -[Term] -id: EFO:0000975 ! -property_value: IAO:0000589 "uterus (EFO)" xsd:string -equivalent_to: UBERON:0000995 ! uterus - -[Term] -id: EFO:0000976 ! -property_value: IAO:0000589 "vagina (EFO)" xsd:string -equivalent_to: UBERON:0000996 ! vagina - -[Term] -id: EFO:0000978 ! -property_value: IAO:0000589 "mammalian vulva (EFO)" xsd:string -equivalent_to: UBERON:0000997 ! mammalian vulva - -[Term] -id: EFO:0000986 ! -property_value: IAO:0000589 "seminal vesicle (EFO)" xsd:string -equivalent_to: UBERON:0000998 ! seminal vesicle - -[Term] -id: EFO:0000985 ! -property_value: IAO:0000589 "ejaculatory duct (EFO)" xsd:string -equivalent_to: UBERON:0000999 ! ejaculatory duct - -[Term] -id: EFO:0000981 ! -property_value: IAO:0000589 "vas deferens (EFO)" xsd:string -equivalent_to: UBERON:0001000 ! vas deferens - -[Term] -id: EFO:0000944 ! -property_value: IAO:0000589 "chitin-based cuticle (EFO)" xsd:string -equivalent_to: UBERON:0001001 ! chitin-based cuticle - -[Term] -id: EFO:0000954 ! -property_value: IAO:0000589 "skin epidermis (EFO)" xsd:string -equivalent_to: UBERON:0001003 ! skin epidermis - -[Term] -id: EFO:0000804 ! -property_value: IAO:0000589 "respiratory system (EFO)" xsd:string -equivalent_to: UBERON:0001004 ! respiratory system - -[Term] -id: EFO:0000793 ! -property_value: IAO:0000589 "digestive system (EFO)" xsd:string -equivalent_to: UBERON:0001007 ! digestive system - -[Term] -id: EFO:0000803 ! -property_value: IAO:0000589 "renal system (EFO)" xsd:string -equivalent_to: UBERON:0001008 ! renal system - -[Term] -id: EFO:0000790 ! -property_value: IAO:0000589 "adipose tissue (EFO)" xsd:string -equivalent_to: UBERON:0001013 ! adipose tissue - -[Term] -id: EFO:0001949 ! -property_value: IAO:0000589 "musculature (EFO)" xsd:string -equivalent_to: UBERON:0001015 ! musculature - -[Term] -id: EFO:0000802 ! -property_value: IAO:0000589 "nervous system (EFO)" xsd:string -equivalent_to: UBERON:0001016 ! nervous system - -[Term] -id: EFO:0000908 ! -property_value: IAO:0000589 "central nervous system (EFO)" xsd:string -equivalent_to: UBERON:0001017 ! central nervous system - -[Term] -id: EFO:0000805 ! -property_value: IAO:0000589 "sensory system (EFO)" xsd:string -equivalent_to: UBERON:0001032 ! sensory system - -[Term] -id: EFO:0000830 ! -property_value: IAO:0000589 "gustatory system (EFO)" xsd:string -equivalent_to: UBERON:0001033 ! gustatory system - -[Term] -id: EFO:0000958 ! -property_value: IAO:0000589 "strand of hair (EFO)" xsd:string -equivalent_to: UBERON:0001037 ! strand of hair - -[Term] -id: EFO:0000940 ! -property_value: IAO:0000589 "chordotonal organ (EFO)" xsd:string -equivalent_to: UBERON:0001038 ! chordotonal organ - -[Term] -id: EFO:0003078 ! -property_value: IAO:0000589 "yolk sac (EFO)" xsd:string -equivalent_to: UBERON:0001040 ! yolk sac - -[Term] -id: EFO:0000836 ! -property_value: IAO:0000589 "chordate pharynx (EFO)" xsd:string -equivalent_to: UBERON:0001042 ! chordate pharynx - -[Term] -id: EFO:0000835 ! -property_value: IAO:0000589 "esophagus (EFO)" xsd:string -equivalent_to: UBERON:0001043 ! esophagus - -[Term] -id: EFO:0000859 ! -property_value: IAO:0000589 "saliva-secreting gland (EFO)" xsd:string -equivalent_to: UBERON:0001044 ! saliva-secreting gland - -[Term] -id: EFO:0001950 ! -property_value: IAO:0000589 "midgut (EFO)" xsd:string -equivalent_to: UBERON:0001045 ! midgut - -[Term] -id: EFO:0001652 ! -property_value: IAO:0000589 "primordium (EFO)" xsd:string -equivalent_to: UBERON:0001048 ! primordium - -[Term] -id: EFO:0001388 ! -property_value: IAO:0000589 "hypopharynx (EFO)" xsd:string -equivalent_to: UBERON:0001051 ! hypopharynx - -[Term] -id: EFO:0000848 ! -property_value: IAO:0000589 "rectum (EFO)" xsd:string -equivalent_to: UBERON:0001052 ! rectum - -[Term] -id: EFO:0000864 ! -property_value: IAO:0000589 "arthropod neurohemal organ (EFO)" xsd:string -equivalent_to: UBERON:0001053 ! arthropod neurohemal organ - -[Term] -id: EFO:0000243 ! -property_value: IAO:0000589 "Malpighian tubule (EFO)" xsd:string -equivalent_to: UBERON:0001054 ! Malpighian tubule - -[Term] -id: EFO:0000380 ! -property_value: IAO:0000589 "corpus cardiacum (EFO)" xsd:string -equivalent_to: UBERON:0001056 ! corpus cardiacum - -[Term] -id: EFO:0000379 ! -property_value: IAO:0000589 "corpus allatum (EFO)" xsd:string -equivalent_to: UBERON:0001057 ! corpus allatum - -[Term] -id: EFO:0000925 ! -property_value: IAO:0000589 "mushroom body (EFO)" xsd:string -equivalent_to: UBERON:0001058 ! mushroom body - -[Term] -id: EFO:0000926 ! -property_value: IAO:0000589 "pars intercerebralis (EFO)" xsd:string -equivalent_to: UBERON:0001059 ! pars intercerebralis - -[Term] -id: EFO:0001370 ! -property_value: IAO:0000589 "intervertebral disk (EFO)" xsd:string -equivalent_to: UBERON:0001066 ! intervertebral disk - -[Term] -id: EFO:0001953 ! -property_value: IAO:0000589 "external carotid artery (EFO)" xsd:string -equivalent_to: UBERON:0001070 ! external carotid artery - -[Term] -id: EFO:0003088 ! -property_value: IAO:0000589 "myocardium of ventricle (EFO)" xsd:string -equivalent_to: UBERON:0001083 ! myocardium of ventricle - -[Term] -id: EFO:0001939 ! -property_value: IAO:0000589 "urine (EFO)" xsd:string -equivalent_to: UBERON:0001088 ! urine - -[Term] -id: EFO:0000839 ! -property_value: IAO:0000589 "calcareous tooth (EFO)" xsd:string -equivalent_to: UBERON:0001091 ! calcareous tooth - -[Term] -id: EFO:0000937 ! -property_value: IAO:0000589 "diaphragm (EFO)" xsd:string -equivalent_to: UBERON:0001103 ! diaphragm - -[Term] -id: EFO:0001368 ! -property_value: IAO:0000589 "intercostal muscle (EFO)" xsd:string -equivalent_to: UBERON:0001111 ! intercostal muscle - -[Term] -id: EFO:0003067 ! -property_value: IAO:0000589 "latissimus dorsi muscle (EFO)" xsd:string -equivalent_to: UBERON:0001112 ! latissimus dorsi muscle - -[Term] -id: EFO:0001369 ! -property_value: IAO:0000589 "vertebral column (EFO)" xsd:string -equivalent_to: UBERON:0001130 ! vertebral column - -[Term] -id: EFO:0000862 ! -property_value: IAO:0000589 "parathyroid gland (EFO)" xsd:string -equivalent_to: UBERON:0001132 ! parathyroid gland - -[Term] -id: EFO:0000889 ! -property_value: IAO:0000589 "smooth muscle tissue (EFO)" xsd:string -equivalent_to: UBERON:0001135 ! smooth muscle tissue - -[Term] -id: EFO:0001405 ! -property_value: IAO:0000589 "dorsum (EFO)" xsd:string -equivalent_to: UBERON:0001137 ! dorsum - -[Term] -id: EFO:0000850 ! -property_value: IAO:0000589 "caecum (EFO)" xsd:string -equivalent_to: UBERON:0001153 ! caecum - -[Term] -id: EFO:0000849 ! -property_value: IAO:0000589 "vermiform appendix (EFO)" xsd:string -equivalent_to: UBERON:0001154 ! vermiform appendix - -[Term] -id: EFO:0000361 ! -property_value: IAO:0000589 "colon (EFO)" xsd:string -equivalent_to: UBERON:0001155 ! colon - -[Term] -id: EFO:0000843 ! -property_value: IAO:0000589 "ascending colon (EFO)" xsd:string -equivalent_to: UBERON:0001156 ! ascending colon - -[Term] -id: EFO:0000844 ! -property_value: IAO:0000589 "transverse colon (EFO)" xsd:string -equivalent_to: UBERON:0001157 ! transverse colon - -[Term] -id: EFO:0000845 ! -property_value: IAO:0000589 "descending colon (EFO)" xsd:string -equivalent_to: UBERON:0001158 ! descending colon - -[Term] -id: EFO:0000846 ! -property_value: IAO:0000589 "sigmoid colon (EFO)" xsd:string -equivalent_to: UBERON:0001159 ! sigmoid colon - -[Term] -id: EFO:0002554 ! -property_value: IAO:0000589 "fundus of stomach (EFO)" xsd:string -equivalent_to: UBERON:0001160 ! fundus of stomach - -[Term] -id: EFO:0002555 ! -property_value: IAO:0000589 "pyloric antrum (EFO)" xsd:string -equivalent_to: UBERON:0001165 ! pyloric antrum - -[Term] -id: EFO:0002552 ! -property_value: IAO:0000589 "renal artery (EFO)" xsd:string -equivalent_to: UBERON:0001184 ! renal artery - -[Term] -id: EFO:0001381 ! -property_value: IAO:0000589 "Peyer's patch (EFO)" xsd:string -equivalent_to: UBERON:0001211 ! Peyer's patch - -[Term] -id: EFO:0003666 ! -property_value: IAO:0000589 "nephron tubule (EFO)" xsd:string -equivalent_to: UBERON:0001231 ! nephron tubule - -[Term] -id: EFO:0000237 ! -property_value: IAO:0000589 "adrenal cortex (EFO)" xsd:string -equivalent_to: UBERON:0001235 ! adrenal cortex - -[Term] -id: EFO:0000852 ! -property_value: IAO:0000589 "adrenal medulla (EFO)" xsd:string -equivalent_to: UBERON:0001236 ! adrenal medulla - -[Term] -id: EFO:0000290 ! -property_value: IAO:0000589 "urinary bladder (EFO)" xsd:string -equivalent_to: UBERON:0001255 ! urinary bladder - -[Term] -id: EFO:0000293 ! -property_value: IAO:0000589 "mucosa of urinary bladder (EFO)" xsd:string -equivalent_to: UBERON:0001259 ! mucosa of urinary bladder - -[Term] -id: EFO:0000855 ! -property_value: IAO:0000589 "pancreas (EFO)" xsd:string -equivalent_to: UBERON:0001264 ! pancreas - -[Term] -id: EFO:0003049 ! -property_value: IAO:0000589 "ilium (EFO)" xsd:string -equivalent_to: UBERON:0001273 ! ilium - -[Term] -id: EFO:0000980 ! -property_value: IAO:0000589 "endometrium (EFO)" xsd:string -equivalent_to: UBERON:0001295 ! endometrium - -[Term] -id: EFO:0001970 ! -property_value: IAO:0000589 "myometrium (EFO)" xsd:string -equivalent_to: UBERON:0001296 ! myometrium - -[Term] -id: EFO:0000982 ! -property_value: IAO:0000589 "epididymis (EFO)" xsd:string -equivalent_to: UBERON:0001301 ! epididymis - -[Term] -id: EFO:0001417 ! -property_value: IAO:0000589 "sciatic nerve (EFO)" xsd:string -equivalent_to: UBERON:0001322 ! sciatic nerve - -[Term] -id: EFO:0003062 ! -property_value: IAO:0000589 "common fibular nerve (EFO)" xsd:string -equivalent_to: UBERON:0001324 ! common fibular nerve - -[Term] -id: EFO:0001664 ! -property_value: IAO:0000589 "prepuce of penis (EFO)" xsd:string -equivalent_to: UBERON:0001332 ! prepuce of penis - -[Term] -id: EFO:0001404 ! -property_value: IAO:0000589 "seminiferous tubule of testis (EFO)" xsd:string -equivalent_to: UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: EFO:0000813 ! -property_value: IAO:0000589 "white adipose tissue (EFO)" xsd:string -equivalent_to: UBERON:0001347 ! white adipose tissue - -[Term] -id: EFO:0000812 ! -property_value: IAO:0000589 "brown adipose tissue (EFO)" xsd:string -equivalent_to: UBERON:0001348 ! brown adipose tissue - -[Term] -id: EFO:0000847 ! -property_value: IAO:0000589 "anal region (EFO)" xsd:string -equivalent_to: UBERON:0001353 ! anal region - -[Term] -id: EFO:0000329 ! -property_value: IAO:0000589 "cerebrospinal fluid (EFO)" xsd:string -equivalent_to: UBERON:0001359 ! cerebrospinal fluid - -[Term] -id: EFO:0001418 ! -property_value: IAO:0000589 "biceps femoris (EFO)" xsd:string -equivalent_to: UBERON:0001374 ! biceps femoris - -[Term] -id: EFO:0001938 ! -property_value: IAO:0000589 "quadriceps femoris (EFO)" xsd:string -equivalent_to: UBERON:0001377 ! quadriceps femoris - -[Term] -id: EFO:0001937 ! -property_value: IAO:0000589 "vastus lateralis (EFO)" xsd:string -equivalent_to: UBERON:0001379 ! vastus lateralis - -[Term] -id: EFO:0002472 ! -property_value: IAO:0000589 "primary motor cortex (EFO)" xsd:string -equivalent_to: UBERON:0001384 ! primary motor cortex - -[Term] -id: EFO:0001385 ! -property_value: IAO:0000589 "tibialis anterior (EFO)" xsd:string -equivalent_to: UBERON:0001385 ! tibialis anterior - -[Term] -id: EFO:0001413 ! -property_value: IAO:0000589 "gastrocnemius (EFO)" xsd:string -equivalent_to: UBERON:0001388 ! gastrocnemius - -[Term] -id: EFO:0001946 ! -property_value: IAO:0000589 "soleus muscle (EFO)" xsd:string -equivalent_to: UBERON:0001389 ! soleus muscle - -[Term] -id: EFO:0004231 ! -property_value: IAO:0000589 "brachial artery (EFO)" xsd:string -equivalent_to: UBERON:0001398 ! brachial artery - -[Term] -id: EFO:0000214 ! -property_value: IAO:0000589 "skin of abdomen (EFO)" xsd:string -equivalent_to: UBERON:0001416 ! skin of abdomen - -[Term] -id: EFO:0000806 ! -property_value: IAO:0000589 "skeletal system (EFO)" xsd:string -equivalent_to: UBERON:0001434 ! skeletal system - -[Term] -id: EFO:0000965 ! -property_value: IAO:0000589 "chest (EFO)" xsd:string -equivalent_to: UBERON:0001443 ! chest - -[Term] -id: EFO:0003052 ! -property_value: IAO:0000589 "fibula (EFO)" xsd:string -equivalent_to: UBERON:0001446 ! fibula - -[Term] -id: EFO:0001410 ! -property_value: IAO:0000589 "arm (EFO)" xsd:string -equivalent_to: UBERON:0001460 ! arm - -[Term] -id: EFO:0003069 ! -property_value: IAO:0000589 "elbow (EFO)" xsd:string -equivalent_to: UBERON:0001461 ! elbow - -[Term] -id: EFO:0001929 ! -property_value: IAO:0000589 "hip (EFO)" xsd:string -equivalent_to: UBERON:0001464 ! hip - -[Term] -id: EFO:0003068 ! -property_value: IAO:0000589 "shoulder (EFO)" xsd:string -equivalent_to: UBERON:0001467 ! shoulder - -[Term] -id: EFO:0000873 ! -property_value: IAO:0000589 "lymphatic vessel (EFO)" xsd:string -equivalent_to: UBERON:0001473 ! lymphatic vessel - -[Term] -id: EFO:0000298 ! -property_value: IAO:0000589 "bone element (EFO)" xsd:string -equivalent_to: UBERON:0001474 ! bone element - -[Term] -id: EFO:0001412 ! -property_value: IAO:0000589 "deltoid (EFO)" xsd:string -equivalent_to: UBERON:0001476 ! deltoid - -[Term] -id: EFO:0001957 ! -property_value: IAO:0000589 "knee joint (EFO)" xsd:string -equivalent_to: UBERON:0001485 ! knee joint - -[Term] -id: EFO:0002526 ! -property_value: IAO:0000589 "arch of aorta (EFO)" xsd:string -equivalent_to: UBERON:0001508 ! arch of aorta - -[Term] -id: EFO:0002525 ! -property_value: IAO:0000589 "thoracic aorta (EFO)" xsd:string -equivalent_to: UBERON:0001515 ! thoracic aorta - -[Term] -id: EFO:0002524 ! -property_value: IAO:0000589 "abdominal aorta (EFO)" xsd:string -equivalent_to: UBERON:0001516 ! abdominal aorta - -[Term] -id: EFO:0002550 ! -property_value: IAO:0000589 "brachiocephalic artery (EFO)" xsd:string -equivalent_to: UBERON:0001529 ! brachiocephalic artery - -[Term] -id: EFO:0001952 ! -property_value: IAO:0000589 "internal carotid artery (EFO)" xsd:string -equivalent_to: UBERON:0001532 ! internal carotid artery - -[Term] -id: EFO:0001424 ! -property_value: IAO:0000589 "masseter muscle (EFO)" xsd:string -equivalent_to: UBERON:0001597 ! masseter muscle - -[Term] -id: EFO:0001921 ! -property_value: IAO:0000589 "extra-ocular muscle (EFO)" xsd:string -equivalent_to: UBERON:0001601 ! extra-ocular muscle - -[Term] -id: EFO:0002551 ! -property_value: IAO:0000589 "coronary artery (EFO)" xsd:string -equivalent_to: UBERON:0001621 ! coronary artery - -[Term] -id: EFO:0000814 ! -property_value: IAO:0000589 "artery (EFO)" xsd:string -equivalent_to: UBERON:0001637 ! artery - -[Term] -id: EFO:0000816 ! -property_value: IAO:0000589 "vein (EFO)" xsd:string -equivalent_to: UBERON:0001638 ! vein - -[Term] -id: EFO:0001402 ! -property_value: IAO:0000589 "trigeminal nerve (EFO)" xsd:string -equivalent_to: UBERON:0001645 ! trigeminal nerve - -[Term] -id: EFO:0004271 ! -property_value: IAO:0000589 "central retinal vein (EFO)" xsd:string -equivalent_to: UBERON:0001673 ! central retinal vein - -[Term] -id: EFO:0000903 ! -property_value: IAO:0000589 "trigeminal ganglion (EFO)" xsd:string -equivalent_to: UBERON:0001675 ! trigeminal ganglion - -[Term] -id: EFO:0001965 ! -property_value: IAO:0000589 "mandible (EFO)" xsd:string -equivalent_to: UBERON:0001684 ! mandible - -[Term] -id: EFO:0000826 ! -property_value: IAO:0000589 "ear (EFO)" xsd:string -equivalent_to: UBERON:0001690 ! ear - -[Term] -id: EFO:0004221 ! -property_value: IAO:0000589 "external ear (EFO)" xsd:string -equivalent_to: UBERON:0001691 ! external ear - -[Term] -id: EFO:0003669 ! -property_value: IAO:0000589 "geniculate ganglion (EFO)" xsd:string -equivalent_to: UBERON:0001700 ! geniculate ganglion - -[Term] -id: EFO:0000956 ! -property_value: IAO:0000589 "nail (EFO)" xsd:string -equivalent_to: UBERON:0001705 ! nail - -[Term] -id: EFO:0003660 ! -property_value: IAO:0000589 "lower jaw region (EFO)" xsd:string -equivalent_to: UBERON:0001710 ! lower jaw region - -[Term] -id: EFO:0000902 ! -property_value: IAO:0000589 "cranial ganglion (EFO)" xsd:string -equivalent_to: UBERON:0001714 ! cranial ganglion - -[Term] -id: EFO:0002468 ! -property_value: IAO:0000589 "oculomotor nuclear complex (EFO)" xsd:string -equivalent_to: UBERON:0001715 ! oculomotor nuclear complex - -[Term] -id: EFO:0000833 ! -property_value: IAO:0000589 "tongue (EFO)" xsd:string -equivalent_to: UBERON:0001723 ! tongue - -[Term] -id: EFO:0001976 ! -property_value: IAO:0000589 "oropharynx (EFO)" xsd:string -equivalent_to: UBERON:0001729 ! oropharynx - -[Term] -id: EFO:0001386 ! -property_value: IAO:0000589 "palatine uvula (EFO)" xsd:string -equivalent_to: UBERON:0001734 ! palatine uvula - -[Term] -id: EFO:0001387 ! -property_value: IAO:0000589 "submandibular gland (EFO)" xsd:string -equivalent_to: UBERON:0001736 ! submandibular gland - -[Term] -id: EFO:0000838 ! -property_value: IAO:0000589 "larynx (EFO)" xsd:string -equivalent_to: UBERON:0001737 ! larynx - -[Term] -id: EFO:0002549 ! -property_value: IAO:0000589 "vagus nerve (EFO)" xsd:string -equivalent_to: UBERON:0001759 ! vagus nerve - -[Term] -id: EFO:0004245 ! -property_value: IAO:0000589 "iris (EFO)" xsd:string -equivalent_to: UBERON:0001769 ! iris - -[Term] -id: EFO:0001917 ! -property_value: IAO:0000589 "corneal epithelium (EFO)" xsd:string -equivalent_to: UBERON:0001772 ! corneal epithelium - -[Term] -id: EFO:0002514 ! -property_value: IAO:0000589 "substantia propria of cornea (EFO)" xsd:string -equivalent_to: UBERON:0001777 ! substantia propria of cornea - -[Term] -id: EFO:0001974 ! -property_value: IAO:0000589 "optic disc (EFO)" xsd:string -equivalent_to: UBERON:0001783 ! optic disc - -[Term] -id: EFO:0000374 ! -property_value: IAO:0000589 "conjunctiva (EFO)" xsd:string -equivalent_to: UBERON:0001811 ! conjunctiva - -[Term] -id: EFO:0001389 ! -property_value: IAO:0000589 "lacrimal gland (EFO)" xsd:string -equivalent_to: UBERON:0001817 ! lacrimal gland - -[Term] -id: EFO:0001925 ! -property_value: IAO:0000589 "gingiva (EFO)" xsd:string -equivalent_to: UBERON:0001828 ! gingiva - -[Term] -id: EFO:0002558 ! -property_value: IAO:0000589 "parotid gland (EFO)" xsd:string -equivalent_to: UBERON:0001831 ! parotid gland - -[Term] -id: EFO:0000357 ! -property_value: IAO:0000589 "cochlea (EFO)" xsd:string -equivalent_to: UBERON:0001844 ! cochlea - -[Term] -id: EFO:0001363 ! -property_value: IAO:0000589 "internal ear (EFO)" xsd:string -equivalent_to: UBERON:0001846 ! internal ear - -[Term] -id: EFO:0000383 ! -property_value: IAO:0000589 "cortex (EFO)" xsd:string -equivalent_to: UBERON:0001851 ! cortex - -[Term] -id: EFO:0002521 ! -property_value: IAO:0000589 "cerebral hemisphere (EFO)" xsd:string -equivalent_to: UBERON:0001869 ! cerebral hemisphere - -[Term] -id: EFO:0000917 ! -property_value: IAO:0000589 "temporal lobe (EFO)" xsd:string -equivalent_to: UBERON:0001871 ! temporal lobe - -[Term] -id: EFO:0000914 ! -property_value: IAO:0000589 "parietal lobe (EFO)" xsd:string -equivalent_to: UBERON:0001872 ! parietal lobe - -[Term] -id: EFO:0000907 ! -property_value: IAO:0000589 "caudate nucleus (EFO)" xsd:string -equivalent_to: UBERON:0001873 ! caudate nucleus - -[Term] -id: EFO:0000905 ! -property_value: IAO:0000589 "globus pallidus (EFO)" xsd:string -equivalent_to: UBERON:0001875 ! globus pallidus - -[Term] -id: EFO:0000252 ! -property_value: IAO:0000589 "amygdala (EFO)" xsd:string -equivalent_to: UBERON:0001876 ! amygdala - -[Term] -id: EFO:0001971 ! -property_value: IAO:0000589 "bed nucleus of stria terminalis (EFO)" xsd:string -equivalent_to: UBERON:0001880 ! bed nucleus of stria terminalis - -[Term] -id: EFO:0000906 ! -property_value: IAO:0000589 "nucleus accumbens (EFO)" xsd:string -equivalent_to: UBERON:0001882 ! nucleus accumbens - -[Term] -id: EFO:0001366 ! -property_value: IAO:0000589 "dentate gyrus of hippocampal formation (EFO)" xsd:string -equivalent_to: UBERON:0001885 ! dentate gyrus of hippocampal formation - -[Term] -id: EFO:0001915 ! -property_value: IAO:0000589 "choroid plexus (EFO)" xsd:string -equivalent_to: UBERON:0001886 ! choroid plexus - -[Term] -id: EFO:0000909 ! -property_value: IAO:0000589 "forebrain (EFO)" xsd:string -equivalent_to: UBERON:0001890 ! forebrain - -[Term] -id: EFO:0000919 ! -property_value: IAO:0000589 "midbrain (EFO)" xsd:string -equivalent_to: UBERON:0001891 ! midbrain - -[Term] -id: EFO:0003617 ! -property_value: IAO:0000589 "rhombomere (EFO)" xsd:string -equivalent_to: UBERON:0001892 ! rhombomere - -[Term] -id: EFO:0000912 ! -property_value: IAO:0000589 "telencephalon (EFO)" xsd:string -equivalent_to: UBERON:0001893 ! telencephalon - -[Term] -id: EFO:0000911 ! -property_value: IAO:0000589 "diencephalon (EFO)" xsd:string -equivalent_to: UBERON:0001894 ! diencephalon - -[Term] -id: EFO:0000924 ! -property_value: IAO:0000589 "medulla oblongata (EFO)" xsd:string -equivalent_to: UBERON:0001896 ! medulla oblongata - -[Term] -id: EFO:0000910 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (EFO)" xsd:string -equivalent_to: UBERON:0001897 ! dorsal plus ventral thalamus - -[Term] -id: EFO:0000107 ! -property_value: IAO:0000589 "hypothalamus (EFO)" xsd:string -equivalent_to: UBERON:0001898 ! hypothalamus - -[Term] -id: EFO:0000918 ! -property_value: IAO:0000589 "epithalamus (EFO)" xsd:string -equivalent_to: UBERON:0001899 ! epithalamus - -[Term] -id: EFO:0000865 ! -property_value: IAO:0000589 "pineal body (EFO)" xsd:string -equivalent_to: UBERON:0001905 ! pineal body - -[Term] -id: EFO:0001392 ! -property_value: IAO:0000589 "subthalamic nucleus (EFO)" xsd:string -equivalent_to: UBERON:0001906 ! subthalamic nucleus - -[Term] -id: EFO:0000854 ! -property_value: IAO:0000589 "mammary gland (EFO)" xsd:string -equivalent_to: UBERON:0001911 ! mammary gland - -[Term] -id: EFO:0001988 ! -property_value: IAO:0000589 "lateral geniculate body (EFO)" xsd:string -equivalent_to: UBERON:0001926 ! lateral geniculate body - -[Term] -id: EFO:0001968 ! -property_value: IAO:0000589 "medial geniculate body (EFO)" xsd:string -equivalent_to: UBERON:0001927 ! medial geniculate body - -[Term] -id: EFO:0002523 ! -property_value: IAO:0000589 "preoptic area (EFO)" xsd:string -equivalent_to: UBERON:0001928 ! preoptic area - -[Term] -id: EFO:0002476 ! -property_value: IAO:0000589 "supraoptic nucleus (EFO)" xsd:string -equivalent_to: UBERON:0001929 ! supraoptic nucleus - -[Term] -id: EFO:0002469 ! -property_value: IAO:0000589 "paraventricular nucleus of hypothalamus (EFO)" xsd:string -equivalent_to: UBERON:0001930 ! paraventricular nucleus of hypothalamus - -[Term] -id: EFO:0000921 ! -property_value: IAO:0000589 "midbrain tegmentum (EFO)" xsd:string -equivalent_to: UBERON:0001943 ! midbrain tegmentum - -[Term] -id: EFO:0002474 ! -property_value: IAO:0000589 "superior colliculus (EFO)" xsd:string -equivalent_to: UBERON:0001945 ! superior colliculus - -[Term] -id: EFO:0002465 ! -property_value: IAO:0000589 "inferior colliculus (EFO)" xsd:string -equivalent_to: UBERON:0001946 ! inferior colliculus - -[Term] -id: EFO:0000530 ! -property_value: IAO:0000589 "Ammon's horn (EFO)" xsd:string -equivalent_to: UBERON:0001954 ! Ammon's horn - -[Term] -id: EFO:0001905 ! -property_value: IAO:0000589 "blood plasma (EFO)" xsd:string -equivalent_to: UBERON:0001969 ! blood plasma - -[Term] -id: EFO:0003041 ! -property_value: IAO:0000589 "epithelium of esophagus (EFO)" xsd:string -equivalent_to: UBERON:0001976 ! epithelium of esophagus - -[Term] -id: EFO:0000817 ! -property_value: IAO:0000589 "blood vessel (EFO)" xsd:string -equivalent_to: UBERON:0001981 ! blood vessel - -[Term] -id: EFO:0001906 ! -property_value: IAO:0000589 "capillary (EFO)" xsd:string -equivalent_to: UBERON:0001982 ! capillary - -[Term] -id: EFO:0002548 ! -property_value: IAO:0000589 "endothelium (EFO)" xsd:string -equivalent_to: UBERON:0001986 ! endothelium - -[Term] -id: EFO:0001407 ! -property_value: IAO:0000589 "placenta (EFO)" xsd:string -equivalent_to: UBERON:0001987 ! placenta - -[Term] -id: EFO:0001945 ! -property_value: IAO:0000589 "superior cervical ganglion (EFO)" xsd:string -equivalent_to: UBERON:0001989 ! superior cervical ganglion - -[Term] -id: EFO:0001972 ! -property_value: IAO:0000589 "olfactory epithelium (EFO)" xsd:string -equivalent_to: UBERON:0001997 ! olfactory epithelium - -[Term] -id: EFO:0000895 ! -property_value: IAO:0000589 "enteric nervous system (EFO)" xsd:string -equivalent_to: UBERON:0002005 ! enteric nervous system - -[Term] -id: EFO:0001399 ! -property_value: IAO:0000589 "pulmonary artery (EFO)" xsd:string -equivalent_to: UBERON:0002012 ! pulmonary artery - -[Term] -id: EFO:0001393 ! -property_value: IAO:0000589 "synovial membrane of synovial joint (EFO)" xsd:string -equivalent_to: UBERON:0002018 ! synovial membrane of synovial joint - -[Term] -id: EFO:0000915 ! -property_value: IAO:0000589 "occipital lobe (EFO)" xsd:string -equivalent_to: UBERON:0002021 ! occipital lobe - -[Term] -id: EFO:0000923 ! -property_value: IAO:0000589 "hindbrain (EFO)" xsd:string -equivalent_to: UBERON:0002028 ! hindbrain - -[Term] -id: EFO:0000307 ! -property_value: IAO:0000589 "epithelium of bronchus (EFO)" xsd:string -equivalent_to: UBERON:0002031 ! epithelium of bronchus - -[Term] -id: EFO:0002475 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (EFO)" xsd:string -equivalent_to: UBERON:0002034 ! suprachiasmatic nucleus - -[Term] -id: EFO:0000327 ! -property_value: IAO:0000589 "cerebellum (EFO)" xsd:string -equivalent_to: UBERON:0002037 ! cerebellum - -[Term] -id: EFO:0000922 ! -property_value: IAO:0000589 "substantia nigra (EFO)" xsd:string -equivalent_to: UBERON:0002038 ! substantia nigra - -[Term] -id: EFO:0001919 ! -property_value: IAO:0000589 "dorsal raphe nucleus (EFO)" xsd:string -equivalent_to: UBERON:0002043 ! dorsal raphe nucleus - -[Term] -id: EFO:0000861 ! -property_value: IAO:0000589 "thyroid gland (EFO)" xsd:string -equivalent_to: UBERON:0002046 ! thyroid gland - -[Term] -id: EFO:0000934 ! -property_value: IAO:0000589 "lung (EFO)" xsd:string -equivalent_to: UBERON:0002048 ! lung - -[Term] -id: EFO:0000461 ! -property_value: IAO:0000589 "embryonic structure (EFO)" xsd:string -equivalent_to: UBERON:0002050 ! embryonic structure - -[Term] -id: EFO:0002559 ! -property_value: IAO:0000589 "main ciliary ganglion (EFO)" xsd:string -equivalent_to: UBERON:0002058 ! main ciliary ganglion - -[Term] -id: EFO:0001940 ! -property_value: IAO:0000589 "umbilical vein (EFO)" xsd:string -equivalent_to: UBERON:0002066 ! umbilical vein - -[Term] -id: EFO:0000953 ! -property_value: IAO:0000589 "dermis (EFO)" xsd:string -equivalent_to: UBERON:0002067 ! dermis - -[Term] -id: EFO:0002464 ! -property_value: IAO:0000589 "hair follicle (EFO)" xsd:string -equivalent_to: UBERON:0002073 ! hair follicle - -[Term] -id: EFO:0000277 ! -property_value: IAO:0000589 "cardiac atrium (EFO)" xsd:string -equivalent_to: UBERON:0002081 ! cardiac atrium - -[Term] -id: EFO:0000317 ! -property_value: IAO:0000589 "cardiac ventricle (EFO)" xsd:string -equivalent_to: UBERON:0002082 ! cardiac ventricle - -[Term] -id: EFO:0000942 ! -property_value: IAO:0000589 "postcranial axial skeleton (EFO)" xsd:string -equivalent_to: UBERON:0002090 ! postcranial axial skeleton - -[Term] -id: EFO:0000951 ! -property_value: IAO:0000589 "appendicular skeleton (EFO)" xsd:string -equivalent_to: UBERON:0002091 ! appendicular skeleton - -[Term] -id: EFO:0001956 ! -property_value: IAO:0000589 "interventricular septum (EFO)" xsd:string -equivalent_to: UBERON:0002094 ! interventricular septum - -[Term] -id: EFO:0000962 ! -property_value: IAO:0000589 "skin of body (EFO)" xsd:string -equivalent_to: UBERON:0002097 ! skin of body - -[Term] -id: EFO:0000966 ! -property_value: IAO:0000589 "trunk (EFO)" xsd:string -equivalent_to: UBERON:0002100 ! trunk - -[Term] -id: EFO:0000876 ! -property_value: IAO:0000589 "limb (EFO)" xsd:string -equivalent_to: UBERON:0002101 ! limb - -[Term] -id: EFO:0000882 ! -property_value: IAO:0000589 "forelimb (EFO)" xsd:string -equivalent_to: UBERON:0002102 ! forelimb - -[Term] -id: EFO:0000883 ! -property_value: IAO:0000589 "hindlimb (EFO)" xsd:string -equivalent_to: UBERON:0002103 ! hindlimb - -[Term] -id: EFO:0000869 ! -property_value: IAO:0000589 "spleen (EFO)" xsd:string -equivalent_to: UBERON:0002106 ! spleen - -[Term] -id: EFO:0000887 ! -property_value: IAO:0000589 "liver (EFO)" xsd:string -equivalent_to: UBERON:0002107 ! liver - -[Term] -id: EFO:0000841 ! -property_value: IAO:0000589 "small intestine (EFO)" xsd:string -equivalent_to: UBERON:0002108 ! small intestine - -[Term] -id: EFO:0000853 ! -property_value: IAO:0000589 "gallbladder (EFO)" xsd:string -equivalent_to: UBERON:0002110 ! gallbladder - -[Term] -id: EFO:0000929 ! -property_value: IAO:0000589 "kidney (EFO)" xsd:string -equivalent_to: UBERON:0002113 ! kidney - -[Term] -id: EFO:0000851 ! -property_value: IAO:0000589 "duodenum (EFO)" xsd:string -equivalent_to: UBERON:0002114 ! duodenum - -[Term] -id: EFO:0001333 ! -property_value: IAO:0000589 "jejunum (EFO)" xsd:string -equivalent_to: UBERON:0002115 ! jejunum - -[Term] -id: EFO:0001334 ! -property_value: IAO:0000589 "ileum (EFO)" xsd:string -equivalent_to: UBERON:0002116 ! ileum - -[Term] -id: EFO:0000927 ! -property_value: IAO:0000589 "pronephros (EFO)" xsd:string -equivalent_to: UBERON:0002120 ! pronephros - -[Term] -id: EFO:0001969 ! -property_value: IAO:0000589 "medulla of thymus (EFO)" xsd:string -equivalent_to: UBERON:0002124 ! medulla of thymus - -[Term] -id: EFO:0003933 ! -property_value: IAO:0000589 "mitral valve (EFO)" xsd:string -equivalent_to: UBERON:0002135 ! mitral valve - -[Term] -id: EFO:0003879 ! -property_value: IAO:0000589 "aortic valve (EFO)" xsd:string -equivalent_to: UBERON:0002137 ! aortic valve - -[Term] -id: EFO:0001963 ! -property_value: IAO:0000589 "locus ceruleus (EFO)" xsd:string -equivalent_to: UBERON:0002148 ! locus ceruleus - -[Term] -id: EFO:0002518 ! -property_value: IAO:0000589 "nucleus raphe magnus (EFO)" xsd:string -equivalent_to: UBERON:0002156 ! nucleus raphe magnus - -[Term] -id: EFO:0000821 ! -property_value: IAO:0000589 "endocardium (EFO)" xsd:string -equivalent_to: UBERON:0002165 ! endocardium - -[Term] -id: EFO:0000932 ! -property_value: IAO:0000589 "bronchus (EFO)" xsd:string -equivalent_to: UBERON:0002185 ! bronchus - -[Term] -id: EFO:0000230 ! -property_value: IAO:0000589 "adenohypophysis (EFO)" xsd:string -equivalent_to: UBERON:0002196 ! adenohypophysis - -[Term] -id: EFO:0003656 ! -property_value: IAO:0000589 "vasculature of head (EFO)" xsd:string -equivalent_to: UBERON:0002200 ! vasculature of head - -[Term] -id: EFO:0003474 ! -property_value: IAO:0000589 "macula of utricle of membranous labyrinth (EFO)" xsd:string -equivalent_to: UBERON:0002214 ! macula of utricle of membranous labyrinth - -[Term] -id: EFO:0001364 ! -property_value: IAO:0000589 "spiral organ of cochlea (EFO)" xsd:string -equivalent_to: UBERON:0002227 ! spiral organ of cochlea - -[Term] -id: EFO:0003066 ! -property_value: IAO:0000589 "rib (EFO)" xsd:string -equivalent_to: UBERON:0002228 ! rib - -[Term] -id: EFO:0000110 ! -property_value: IAO:0000589 "spinal cord (EFO)" xsd:string -equivalent_to: UBERON:0002240 ! spinal cord - -[Term] -id: EFO:0001934 ! -property_value: IAO:0000589 "vomeronasal organ (EFO)" xsd:string -equivalent_to: UBERON:0002255 ! vomeronasal organ - -[Term] -id: EFO:0001644 ! -property_value: IAO:0000589 "stria vascularis of cochlear duct (EFO)" xsd:string -equivalent_to: UBERON:0002282 ! stria vascularis of cochlear duct - -[Term] -id: EFO:0001961 ! -property_value: IAO:0000589 "telencephalic ventricle (EFO)" xsd:string -equivalent_to: UBERON:0002285 ! telencephalic ventricle - -[Term] -id: EFO:0003501 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (EFO)" xsd:string -equivalent_to: UBERON:0002289 ! midbrain cerebral aqueduct - -[Term] -id: EFO:0001962 ! -property_value: IAO:0000589 "brainstem (EFO)" xsd:string -equivalent_to: UBERON:0002298 ! brainstem - -[Term] -id: EFO:0001985 ! -property_value: IAO:0000589 "alveolus of lung (EFO)" xsd:string -equivalent_to: UBERON:0002299 ! alveolus of lung - -[Term] -id: EFO:0003087 ! -property_value: IAO:0000589 "myocardium of atrium (EFO)" xsd:string -equivalent_to: UBERON:0002302 ! myocardium of atrium - -[Term] -id: EFO:0000920 ! -property_value: IAO:0000589 "midbrain tectum (EFO)" xsd:string -equivalent_to: UBERON:0002314 ! midbrain tectum - -[Term] -id: EFO:0001415 ! -property_value: IAO:0000589 "umbilical cord (EFO)" xsd:string -equivalent_to: UBERON:0002331 ! umbilical cord - -[Term] -id: EFO:0001390 ! -property_value: IAO:0000589 "corpus callosum (EFO)" xsd:string -equivalent_to: UBERON:0002336 ! corpus callosum - -[Term] -id: EFO:0002527 ! -property_value: IAO:0000589 "descending thoracic aorta (EFO)" xsd:string -equivalent_to: UBERON:0002345 ! descending thoracic aorta - -[Term] -id: EFO:0000819 ! -property_value: IAO:0000589 "myocardium (EFO)" xsd:string -equivalent_to: UBERON:0002349 ! myocardium - -[Term] -id: EFO:0003909 ! -property_value: IAO:0000589 "conducting system of heart (EFO)" xsd:string -equivalent_to: UBERON:0002350 ! conducting system of heart - -[Term] -id: EFO:0000276 ! -property_value: IAO:0000589 "atrioventricular node (EFO)" xsd:string -equivalent_to: UBERON:0002352 ! atrioventricular node - -[Term] -id: EFO:0002805 ! -property_value: IAO:0000589 "pelvic region of trunk (EFO)" xsd:string -equivalent_to: UBERON:0002355 ! pelvic region of trunk - -[Term] -id: EFO:0004141 ! -property_value: IAO:0000589 "perineum (EFO)" xsd:string -equivalent_to: UBERON:0002356 ! perineum - -[Term] -id: EFO:0000867 ! -property_value: IAO:0000589 "meninx (EFO)" xsd:string -equivalent_to: UBERON:0002360 ! meninx - -[Term] -id: EFO:0000858 ! -property_value: IAO:0000589 "prostate gland (EFO)" xsd:string -equivalent_to: UBERON:0002367 ! prostate gland - -[Term] -id: EFO:0000238 ! -property_value: IAO:0000589 "adrenal gland (EFO)" xsd:string -equivalent_to: UBERON:0002369 ! adrenal gland - -[Term] -id: EFO:0000860 ! -property_value: IAO:0000589 "thymus (EFO)" xsd:string -equivalent_to: UBERON:0002370 ! thymus - -[Term] -id: EFO:0000868 ! -property_value: IAO:0000589 "bone marrow (EFO)" xsd:string -equivalent_to: UBERON:0002371 ! bone marrow - -[Term] -id: EFO:0001401 ! -property_value: IAO:0000589 "tonsil (EFO)" xsd:string -equivalent_to: UBERON:0002372 ! tonsil - -[Term] -id: EFO:0001977 ! -property_value: IAO:0000589 "palatine tonsil (EFO)" xsd:string -equivalent_to: UBERON:0002373 ! palatine tonsil - -[Term] -id: EFO:0003886 ! -property_value: IAO:0000589 "metacarpal bone (EFO)" xsd:string -equivalent_to: UBERON:0002374 ! metacarpal bone - -[Term] -id: EFO:0003524 ! -property_value: IAO:0000589 "cranial muscle (EFO)" xsd:string -equivalent_to: UBERON:0002376 ! cranial muscle - -[Term] -id: EFO:0000952 ! -property_value: IAO:0000589 "connective tissue (EFO)" xsd:string -equivalent_to: UBERON:0002384 ! connective tissue - -[Term] -id: EFO:0003053 ! -property_value: IAO:0000589 "forelimb zeugopod (EFO)" xsd:string -equivalent_to: UBERON:0002386 ! forelimb zeugopod - -[Term] -id: EFO:0003065 ! -property_value: IAO:0000589 "pes (EFO)" xsd:string -equivalent_to: UBERON:0002387 ! pes - -[Term] -id: EFO:0000798 ! -property_value: IAO:0000589 "hematopoietic system (EFO)" xsd:string -equivalent_to: UBERON:0002390 ! hematopoietic system - -[Term] -id: EFO:0000871 ! -property_value: IAO:0000589 "lymph (EFO)" xsd:string -equivalent_to: UBERON:0002391 ! lymph - -[Term] -id: EFO:0000820 ! -property_value: IAO:0000589 "pericardium (EFO)" xsd:string -equivalent_to: UBERON:0002407 ! pericardium - -[Term] -id: EFO:0001371 ! -property_value: IAO:0000589 "vertebra (EFO)" xsd:string -equivalent_to: UBERON:0002412 ! vertebra - -[Term] -id: EFO:0000963 ! -property_value: IAO:0000589 "tail (EFO)" xsd:string -equivalent_to: UBERON:0002415 ! tail - -[Term] -id: EFO:0000807 ! -property_value: IAO:0000589 "integumental system (EFO)" xsd:string -equivalent_to: UBERON:0002416 ! integumental system - -[Term] -id: EFO:0000949 ! -property_value: IAO:0000589 "cartilage tissue (EFO)" xsd:string -equivalent_to: UBERON:0002418 ! cartilage tissue - -[Term] -id: EFO:0000904 ! -property_value: IAO:0000589 "basal ganglion (EFO)" xsd:string -equivalent_to: UBERON:0002420 ! basal ganglion - -[Term] -id: EFO:0000800 ! -property_value: IAO:0000589 "hepatobiliary system (EFO)" xsd:string -equivalent_to: UBERON:0002423 ! hepatobiliary system - -[Term] -id: EFO:0000945 ! -property_value: IAO:0000589 "limb bone (EFO)" xsd:string -equivalent_to: UBERON:0002428 ! limb bone - -[Term] -id: EFO:0000109 ! -property_value: IAO:0000589 "striatum (EFO)" xsd:string -equivalent_to: UBERON:0002435 ! striatum - -[Term] -id: EFO:0000877 ! -property_value: IAO:0000589 "autopod region (EFO)" xsd:string -equivalent_to: UBERON:0002470 ! autopod region - -[Term] -id: EFO:0000878 ! -property_value: IAO:0000589 "zeugopod (EFO)" xsd:string -equivalent_to: UBERON:0002471 ! zeugopod - -[Term] -id: EFO:0000879 ! -property_value: IAO:0000589 "stylopod (EFO)" xsd:string -equivalent_to: UBERON:0002472 ! stylopod - -[Term] -id: EFO:0003539 ! -property_value: IAO:0000589 "otolith organ (EFO)" xsd:string -equivalent_to: UBERON:0002518 ! otolith organ - -[Term] -id: EFO:0001670 ! -property_value: IAO:0000589 "mediastinal lymph node (EFO)" xsd:string -equivalent_to: UBERON:0002524 ! mediastinal lymph node - -[Term] -id: EFO:0000797 ! -property_value: IAO:0000589 "gland (EFO)" xsd:string -equivalent_to: UBERON:0002530 ! gland - -[Term] -id: EFO:0003468 ! -property_value: IAO:0000589 "paired fin bud (EFO)" xsd:string -equivalent_to: UBERON:0002531 ! paired fin bud - -[Term] -id: EFO:0002748 ! -property_value: IAO:0000589 "post-anal tail bud (EFO)" xsd:string -equivalent_to: UBERON:0002533 ! post-anal tail bud - -[Term] -id: EFO:0000939 ! -property_value: IAO:0000589 "arthropod sensillum (EFO)" xsd:string -equivalent_to: UBERON:0002536 ! arthropod sensillum - -[Term] -id: EFO:0000971 ! -property_value: IAO:0000589 "hermaphrodite gonad (EFO)" xsd:string -equivalent_to: UBERON:0002537 ! hermaphrodite gonad - -[Term] -id: EFO:0000863 ! -property_value: IAO:0000589 "hatching gland (EFO)" xsd:string -equivalent_to: UBERON:0002538 ! hatching gland - -[Term] -id: EFO:0000959 ! -property_value: IAO:0000589 "pharyngeal arch (EFO)" xsd:string -equivalent_to: UBERON:0002539 ! pharyngeal arch - -[Term] -id: EFO:0000941 ! -property_value: IAO:0000589 "lateral line system (EFO)" xsd:string -equivalent_to: UBERON:0002540 ! lateral line system - -[Term] -id: EFO:0003427 ! -property_value: IAO:0000589 "germ ring (EFO)" xsd:string -equivalent_to: UBERON:0002541 ! germ ring - -[Term] -id: EFO:0000960 ! -property_value: IAO:0000589 "scale (EFO)" xsd:string -equivalent_to: UBERON:0002542 ! scale - -[Term] -id: EFO:0000881 ! -property_value: IAO:0000589 "digit (EFO)" xsd:string -equivalent_to: UBERON:0002544 ! digit - -[Term] -id: EFO:0001650 ! -property_value: IAO:0000589 "cranial placode (EFO)" xsd:string -equivalent_to: UBERON:0002546 ! cranial placode - -[Term] -id: EFO:0001383 ! -property_value: IAO:0000589 "postcentral gyrus (EFO)" xsd:string -equivalent_to: UBERON:0002581 ! postcentral gyrus - -[Term] -id: EFO:0001987 ! -property_value: IAO:0000589 "cerebral peduncle (EFO)" xsd:string -equivalent_to: UBERON:0002623 ! cerebral peduncle - -[Term] -id: EFO:0001991 ! -property_value: IAO:0000589 "superior frontal gyrus (EFO)" xsd:string -equivalent_to: UBERON:0002661 ! superior frontal gyrus - -[Term] -id: EFO:0001935 ! -property_value: IAO:0000589 "ventral tegmental area (EFO)" xsd:string -equivalent_to: UBERON:0002691 ! ventral tegmental area - -[Term] -id: EFO:0001373 ! -property_value: IAO:0000589 "precentral gyrus (EFO)" xsd:string -equivalent_to: UBERON:0002703 ! precentral gyrus - -[Term] -id: EFO:0001920 ! -property_value: IAO:0000589 "entorhinal cortex (EFO)" xsd:string -equivalent_to: UBERON:0002728 ! entorhinal cortex - -[Term] -id: EFO:0001944 ! -property_value: IAO:0000589 "superior temporal gyrus (EFO)" xsd:string -equivalent_to: UBERON:0002769 ! superior temporal gyrus - -[Term] -id: EFO:0002466 ! -property_value: IAO:0000589 "middle temporal gyrus (EFO)" xsd:string -equivalent_to: UBERON:0002771 ! middle temporal gyrus - -[Term] -id: EFO:0003543 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (EFO)" xsd:string -equivalent_to: UBERON:0002827 ! vestibulocochlear ganglion - -[Term] -id: EFO:0003678 ! -property_value: IAO:0000589 "terminal nerve (EFO)" xsd:string -equivalent_to: UBERON:0002924 ! terminal nerve - -[Term] -id: EFO:0000343 ! -property_value: IAO:0000589 "cingulate cortex (EFO)" xsd:string -equivalent_to: UBERON:0003027 ! cingulate cortex - -[Term] -id: EFO:0002470 ! -property_value: IAO:0000589 "central gray substance of midbrain (EFO)" xsd:string -equivalent_to: UBERON:0003040 ! central gray substance of midbrain - -[Term] -id: EFO:0003420 ! -property_value: IAO:0000589 "olfactory placode (EFO)" xsd:string -equivalent_to: UBERON:0003050 ! olfactory placode - -[Term] -id: EFO:0003624 ! -property_value: IAO:0000589 "ventricular zone (EFO)" xsd:string -equivalent_to: UBERON:0003053 ! ventricular zone - -[Term] -id: EFO:0003475 ! -property_value: IAO:0000589 "hypochord (EFO)" xsd:string -equivalent_to: UBERON:0003058 ! hypochord - -[Term] -id: EFO:0001982 ! -property_value: IAO:0000589 "presomitic mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0003059 ! presomitic mesoderm - -[Term] -id: EFO:0003489 ! -property_value: IAO:0000589 "blood island (EFO)" xsd:string -equivalent_to: UBERON:0003061 ! blood island - -[Term] -id: EFO:0003668 ! -property_value: IAO:0000589 "ciliary marginal zone (EFO)" xsd:string -equivalent_to: UBERON:0003065 ! ciliary marginal zone - -[Term] -id: EFO:0003647 ! -property_value: IAO:0000589 "axial mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0003068 ! axial mesoderm - -[Term] -id: EFO:0003429 ! -property_value: IAO:0000589 "otic placode (EFO)" xsd:string -equivalent_to: UBERON:0003069 ! otic placode - -[Term] -id: EFO:0003433 ! -property_value: IAO:0000589 "trigeminal placode complex (EFO)" xsd:string -equivalent_to: UBERON:0003070 ! trigeminal placode complex - -[Term] -id: EFO:0003541 ! -property_value: IAO:0000589 "eye primordium (EFO)" xsd:string -equivalent_to: UBERON:0003071 ! eye primordium - -[Term] -id: EFO:0003494 ! -property_value: IAO:0000589 "lens placode (EFO)" xsd:string -equivalent_to: UBERON:0003073 ! lens placode - -[Term] -id: EFO:0003515 ! -property_value: IAO:0000589 "paraxial mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0003077 ! paraxial mesoderm - -[Term] -id: EFO:0003455 ! -property_value: IAO:0000589 "epibranchial placode (EFO)" xsd:string -equivalent_to: UBERON:0003078 ! epibranchial placode - -[Term] -id: EFO:0003473 ! -property_value: IAO:0000589 "floor plate (EFO)" xsd:string -equivalent_to: UBERON:0003079 ! floor plate - -[Term] -id: EFO:0003605 ! -property_value: IAO:0000589 "trunk neural crest (EFO)" xsd:string -equivalent_to: UBERON:0003083 ! trunk neural crest - -[Term] -id: EFO:0003472 ! -property_value: IAO:0000589 "caudal artery (EFO)" xsd:string -equivalent_to: UBERON:0003086 ! caudal artery - -[Term] -id: EFO:0003616 ! -property_value: IAO:0000589 "caudal vein (EFO)" xsd:string -equivalent_to: UBERON:0003088 ! caudal vein - -[Term] -id: EFO:0003645 ! -property_value: IAO:0000589 "cranial neural crest (EFO)" xsd:string -equivalent_to: UBERON:0003099 ! cranial neural crest - -[Term] -id: EFO:0003525 ! -property_value: IAO:0000589 "olfactory region (EFO)" xsd:string -equivalent_to: UBERON:0003112 ! olfactory region - -[Term] -id: EFO:0002780 ! -property_value: IAO:0000589 "chorion membrane (EFO)" xsd:string -equivalent_to: UBERON:0003124 ! chorion membrane - -[Term] -id: EFO:0000935 ! -property_value: IAO:0000589 "trachea (EFO)" xsd:string -equivalent_to: UBERON:0003126 ! trachea - -[Term] -id: EFO:0000831 ! -property_value: IAO:0000589 "cranium (EFO)" xsd:string -equivalent_to: UBERON:0003128 ! cranium - -[Term] -id: EFO:0002684 ! -property_value: IAO:0000589 "pupa (EFO)" xsd:string -equivalent_to: UBERON:0003143 ! pupa - -[Term] -id: EFO:0001927 ! -property_value: IAO:0000589 "insect head capsule (EFO)" xsd:string -equivalent_to: UBERON:0003153 ! insect head capsule - -[Term] -id: EFO:0002513 ! -property_value: IAO:0000589 "alveolus (EFO)" xsd:string -equivalent_to: UBERON:0003215 ! alveolus - -[Term] -id: EFO:0003688 ! -property_value: IAO:0000589 "floor plate of neural tube (EFO)" xsd:string -equivalent_to: UBERON:0003306 ! floor plate of neural tube - -[Term] -id: EFO:0000811 ! -property_value: IAO:0000589 "gonadal fat pad (EFO)" xsd:string -equivalent_to: UBERON:0003428 ! gonadal fat pad - -[Term] -id: EFO:0003842 ! -property_value: IAO:0000589 "hindlimb bone (EFO)" xsd:string -equivalent_to: UBERON:0003464 ! hindlimb bone - -[Term] -id: EFO:0001928 ! -property_value: IAO:0000589 "hindlimb muscle (EFO)" xsd:string -equivalent_to: UBERON:0003663 ! hindlimb muscle - -[Term] -id: EFO:0001923 ! -property_value: IAO:0000589 "mouth floor (EFO)" xsd:string -equivalent_to: UBERON:0003679 ! mouth floor - -[Term] -id: EFO:0000213 ! -property_value: IAO:0000589 "abdominal cavity (EFO)" xsd:string -equivalent_to: UBERON:0003684 ! abdominal cavity - -[Term] -id: EFO:0003071 ! -property_value: IAO:0000589 "fused sacrum (EFO)" xsd:string -equivalent_to: UBERON:0003690 ! fused sacrum - -[Term] -id: EFO:0002806 ! -property_value: IAO:0000589 "retroperitoneal space (EFO)" xsd:string -equivalent_to: UBERON:0003693 ! retroperitoneal space - -[Term] -id: EFO:0003057 ! -property_value: IAO:0000589 "mediastinum (EFO)" xsd:string -equivalent_to: UBERON:0003728 ! mediastinum - -[Term] -id: EFO:0003051 ! -property_value: IAO:0000589 "hindlimb zeugopod (EFO)" xsd:string -equivalent_to: UBERON:0003823 ! hindlimb zeugopod - -[Term] -id: EFO:0003591 ! -property_value: IAO:0000589 "mesencephalic neural crest (EFO)" xsd:string -equivalent_to: UBERON:0003849 ! mesencephalic neural crest - -[Term] -id: EFO:0003574 ! -property_value: IAO:0000589 "telencephalon neural crest (EFO)" xsd:string -equivalent_to: UBERON:0003850 ! telencephalon neural crest - -[Term] -id: EFO:0003573 ! -property_value: IAO:0000589 "diencephalon neural crest (EFO)" xsd:string -equivalent_to: UBERON:0003851 ! diencephalon neural crest - -[Term] -id: EFO:0003618 ! -property_value: IAO:0000589 "neural arch (EFO)" xsd:string -equivalent_to: UBERON:0003861 ! neural arch - -[Term] -id: EFO:0002454 ! -property_value: IAO:0000589 "CA1 field of hippocampus (EFO)" xsd:string -equivalent_to: UBERON:0003881 ! CA1 field of hippocampus - -[Term] -id: EFO:0002455 ! -property_value: IAO:0000589 "CA2 field of hippocampus (EFO)" xsd:string -equivalent_to: UBERON:0003882 ! CA2 field of hippocampus - -[Term] -id: EFO:0002456 ! -property_value: IAO:0000589 "CA3 field of hippocampus (EFO)" xsd:string -equivalent_to: UBERON:0003883 ! CA3 field of hippocampus - -[Term] -id: EFO:0002457 ! -property_value: IAO:0000589 "CA4 field of hippocampus (EFO)" xsd:string -equivalent_to: UBERON:0003884 ! CA4 field of hippocampus - -[Term] -id: EFO:0002577 ! -property_value: IAO:0000589 "liver primordium (EFO)" xsd:string -equivalent_to: UBERON:0003894 ! liver primordium - -[Term] -id: EFO:0003428 ! -property_value: IAO:0000589 "liver primordium (EFO)" xsd:string -equivalent_to: UBERON:0003894 ! liver primordium - -[Term] -id: EFO:0003555 ! -property_value: IAO:0000589 "horizontal septum (EFO)" xsd:string -equivalent_to: UBERON:0003901 ! horizontal septum - -[Term] -id: EFO:0000810 ! -property_value: IAO:0000589 "arthropod fat body (EFO)" xsd:string -equivalent_to: UBERON:0003917 ! arthropod fat body - -[Term] -id: EFO:0002579 ! -property_value: IAO:0000589 "pancreas primordium (EFO)" xsd:string -equivalent_to: UBERON:0003921 ! pancreas primordium - -[Term] -id: EFO:0003434 ! -property_value: IAO:0000589 "pancreas primordium (EFO)" xsd:string -equivalent_to: UBERON:0003921 ! pancreas primordium - -[Term] -id: EFO:0003470 ! -property_value: IAO:0000589 "pancreatic epithelial bud (EFO)" xsd:string -equivalent_to: UBERON:0003922 ! pancreatic epithelial bud - -[Term] -id: EFO:0003465 ! -property_value: IAO:0000589 "dorsal pancreatic bud (EFO)" xsd:string -equivalent_to: UBERON:0003923 ! dorsal pancreatic bud - -[Term] -id: EFO:0003464 ! -property_value: IAO:0000589 "ventral pancreatic bud (EFO)" xsd:string -equivalent_to: UBERON:0003924 ! ventral pancreatic bud - -[Term] -id: EFO:0003690 ! -property_value: IAO:0000589 "cartilage element of chondrocranium (EFO)" xsd:string -equivalent_to: UBERON:0003932 ! cartilage element of chondrocranium - -[Term] -id: EFO:0003604 ! -property_value: IAO:0000589 "mesenchyme pectoral fin (EFO)" xsd:string -equivalent_to: UBERON:0003934 ! mesenchyme pectoral fin - -[Term] -id: EFO:0003478 ! -property_value: IAO:0000589 "postoptic commissure (EFO)" xsd:string -equivalent_to: UBERON:0003936 ! postoptic commissure - -[Term] -id: EFO:0003653 ! -property_value: IAO:0000589 "mature ovarian follicle (EFO)" xsd:string -equivalent_to: UBERON:0003982 ! mature ovarian follicle - -[Term] -id: EFO:0001911 ! -property_value: IAO:0000589 "caudal ganglionic eminence (EFO)" xsd:string -equivalent_to: UBERON:0004026 ! caudal ganglionic eminence - -[Term] -id: EFO:0001904 ! -property_value: IAO:0000589 "neural tube basal plate (EFO)" xsd:string -equivalent_to: UBERON:0004064 ! neural tube basal plate - -[Term] -id: EFO:0001914 ! -property_value: IAO:0000589 "brain ventricle (EFO)" xsd:string -equivalent_to: UBERON:0004086 ! brain ventricle - -[Term] -id: EFO:0003627 ! -property_value: IAO:0000589 "pharyngeal pouch (EFO)" xsd:string -equivalent_to: UBERON:0004117 ! pharyngeal pouch - -[Term] -id: EFO:0003864 ! -property_value: IAO:0000589 "genitourinary system (EFO)" xsd:string -equivalent_to: UBERON:0004122 ! genitourinary system - -[Term] -id: EFO:0003706 ! -property_value: IAO:0000589 "myocardium trabecular layer (EFO)" xsd:string -equivalent_to: UBERON:0004124 ! myocardium trabecular layer - -[Term] -id: EFO:0003526 ! -property_value: IAO:0000589 "heart tube (EFO)" xsd:string -equivalent_to: UBERON:0004141 ! heart tube - -[Term] -id: EFO:0003505 ! -property_value: IAO:0000589 "bulbus arteriosus (EFO)" xsd:string -equivalent_to: UBERON:0004152 ! bulbus arteriosus - -[Term] -id: EFO:0001990 ! -property_value: IAO:0000589 "orbitofrontal cortex (EFO)" xsd:string -equivalent_to: UBERON:0004167 ! orbitofrontal cortex - -[Term] -id: EFO:0002775 ! -property_value: IAO:0000589 "aorta smooth muscle tissue (EFO)" xsd:string -equivalent_to: UBERON:0004178 ! aorta smooth muscle tissue - -[Term] -id: EFO:0003695 ! -property_value: IAO:0000589 "pharyngeal arch artery (EFO)" xsd:string -equivalent_to: UBERON:0004363 ! pharyngeal arch artery - -[Term] -id: EFO:0001409 ! -property_value: IAO:0000589 "tarsal region (EFO)" xsd:string -equivalent_to: UBERON:0004454 ! tarsal region - -[Term] -id: EFO:0003531 ! -property_value: IAO:0000589 "musculature of trunk (EFO)" xsd:string -equivalent_to: UBERON:0004479 ! musculature of trunk - -[Term] -id: EFO:0000791 ! -property_value: IAO:0000589 "cardiovascular system (EFO)" xsd:string -equivalent_to: UBERON:0004535 ! cardiovascular system - -[Term] -id: EFO:0001310 ! -property_value: IAO:0000589 "pharyngula stage (EFO)" xsd:string -equivalent_to: UBERON:0004707 ! pharyngula stage - -[Term] -id: EFO:0003503 ! -property_value: IAO:0000589 "basibranchial bone (EFO)" xsd:string -equivalent_to: UBERON:0004740 ! basibranchial bone - -[Term] -id: EFO:0003507 ! -property_value: IAO:0000589 "cleithrum (EFO)" xsd:string -equivalent_to: UBERON:0004741 ! cleithrum - -[Term] -id: EFO:0003508 ! -property_value: IAO:0000589 "dentary (EFO)" xsd:string -equivalent_to: UBERON:0004742 ! dentary - -[Term] -id: EFO:0003530 ! -property_value: IAO:0000589 "articular/anguloarticular (EFO)" xsd:string -equivalent_to: UBERON:0004744 ! articular/anguloarticular - -[Term] -id: EFO:0003542 ! -property_value: IAO:0000589 "prootic bone (EFO)" xsd:string -equivalent_to: UBERON:0004746 ! prootic bone - -[Term] -id: EFO:0001913 ! -property_value: IAO:0000589 "cervix epithelium (EFO)" xsd:string -equivalent_to: UBERON:0004801 ! cervix epithelium - -[Term] -id: EFO:0002597 ! -property_value: IAO:0000589 "aorta endothelium (EFO)" xsd:string -equivalent_to: UBERON:0004851 ! aorta endothelium - -[Term] -id: EFO:0003426 ! -property_value: IAO:0000589 "chordamesoderm (EFO)" xsd:string -equivalent_to: UBERON:0004880 ! chordamesoderm - -[Term] -id: EFO:0002553 ! -property_value: IAO:0000589 "mucosa of tongue (EFO)" xsd:string -equivalent_to: UBERON:0005020 ! mucosa of tongue - -[Term] -id: EFO:0003498 ! -property_value: IAO:0000589 "neural rod (EFO)" xsd:string -equivalent_to: UBERON:0005068 ! neural rod - -[Term] -id: EFO:0003628 ! -property_value: IAO:0000589 "granulosa cell layer (EFO)" xsd:string -equivalent_to: UBERON:0005170 ! granulosa cell layer - -[Term] -id: EFO:0003492 ! -property_value: IAO:0000589 "head mesenchyme (EFO)" xsd:string -equivalent_to: UBERON:0005253 ! head mesenchyme - -[Term] -id: EFO:0003485 ! -property_value: IAO:0000589 "trunk mesenchyme (EFO)" xsd:string -equivalent_to: UBERON:0005256 ! trunk mesenchyme - -[Term] -id: EFO:0003650 ! -property_value: IAO:0000589 "ventricular system of central nervous system (EFO)" xsd:string -equivalent_to: UBERON:0005281 ! ventricular system of central nervous system - -[Term] -id: EFO:0001406 ! -property_value: IAO:0000589 "extraembryonic tissue (EFO)" xsd:string -equivalent_to: UBERON:0005292 ! extraembryonic tissue - -[Term] -id: EFO:0001414 ! -property_value: IAO:0000589 "gonadal ridge (EFO)" xsd:string -equivalent_to: UBERON:0005294 ! gonadal ridge - -[Term] -id: EFO:0003658 ! -property_value: IAO:0000589 "blastema (EFO)" xsd:string -equivalent_to: UBERON:0005306 ! blastema - -[Term] -id: EFO:0002516 ! -property_value: IAO:0000589 "inferior vagus X ganglion (EFO)" xsd:string -equivalent_to: UBERON:0005363 ! inferior vagus X ganglion - -[Term] -id: EFO:0000108 ! -property_value: IAO:0000589 "olfactory lobe (EFO)" xsd:string -equivalent_to: UBERON:0005366 ! olfactory lobe - -[Term] -id: EFO:0001912 ! -property_value: IAO:0000589 "caudate-putamen (EFO)" xsd:string -equivalent_to: UBERON:0005383 ! caudate-putamen - -[Term] -id: EFO:0000818 ! -property_value: IAO:0000589 "carotid artery segment (EFO)" xsd:string -equivalent_to: UBERON:0005396 ! carotid artery segment - -[Term] -id: EFO:0001936 ! -property_value: IAO:0000589 "ventral striatum (EFO)" xsd:string -equivalent_to: UBERON:0005403 ! ventral striatum - -[Term] -id: EFO:0003430 ! -property_value: IAO:0000589 "pectoral appendage bud (EFO)" xsd:string -equivalent_to: UBERON:0005419 ! pectoral appendage bud - -[Term] -id: EFO:0003469 ! -property_value: IAO:0000589 "pelvic appendage bud (EFO)" xsd:string -equivalent_to: UBERON:0005420 ! pelvic appendage bud - -[Term] -id: EFO:0003487 ! -property_value: IAO:0000589 "pectoral appendage apical ectodermal ridge (EFO)" xsd:string -equivalent_to: UBERON:0005421 ! pectoral appendage apical ectodermal ridge - -[Term] -id: EFO:0003681 ! -property_value: IAO:0000589 "pelvic appendage apical ectodermal ridge (EFO)" xsd:string -equivalent_to: UBERON:0005422 ! pelvic appendage apical ectodermal ridge - -[Term] -id: EFO:0002574 ! -property_value: IAO:0000589 "definitive endoderm (EFO)" xsd:string -equivalent_to: UBERON:0005439 ! definitive endoderm - -[Term] -id: EFO:0002515 ! -property_value: IAO:0000589 "ductus arteriosus (EFO)" xsd:string -equivalent_to: UBERON:0005440 ! ductus arteriosus - -[Term] -id: EFO:0003536 ! -property_value: IAO:0000589 "hyoid muscle (EFO)" xsd:string -equivalent_to: UBERON:0005493 ! hyoid muscle - -[Term] -id: EFO:0003643 ! -property_value: IAO:0000589 "non-neural ectoderm (EFO)" xsd:string -equivalent_to: UBERON:0005497 ! non-neural ectoderm - -[Term] -id: EFO:0003608 ! -property_value: IAO:0000589 "rhombomere 1 (EFO)" xsd:string -equivalent_to: UBERON:0005499 ! rhombomere 1 - -[Term] -id: EFO:0003596 ! -property_value: IAO:0000589 "rhombomere 3 (EFO)" xsd:string -equivalent_to: UBERON:0005507 ! rhombomere 3 - -[Term] -id: EFO:0003609 ! -property_value: IAO:0000589 "rhombomere 4 (EFO)" xsd:string -equivalent_to: UBERON:0005511 ! rhombomere 4 - -[Term] -id: EFO:0003580 ! -property_value: IAO:0000589 "rhombomere 5 (EFO)" xsd:string -equivalent_to: UBERON:0005515 ! rhombomere 5 - -[Term] -id: EFO:0003480 ! -property_value: IAO:0000589 "rhombomere 6 (EFO)" xsd:string -equivalent_to: UBERON:0005519 ! rhombomere 6 - -[Term] -id: EFO:0003597 ! -property_value: IAO:0000589 "rhombomere 7 (EFO)" xsd:string -equivalent_to: UBERON:0005523 ! rhombomere 7 - -[Term] -id: EFO:0003500 ! -property_value: IAO:0000589 "rhombomere 8 (EFO)" xsd:string -equivalent_to: UBERON:0005527 ! rhombomere 8 - -[Term] -id: EFO:0003622 ! -property_value: IAO:0000589 "thymus primordium (EFO)" xsd:string -equivalent_to: UBERON:0005562 ! thymus primordium - -[Term] -id: EFO:0003484 ! -property_value: IAO:0000589 "trigeminal neural crest (EFO)" xsd:string -equivalent_to: UBERON:0005563 ! trigeminal neural crest - -[Term] -id: EFO:0003651 ! -property_value: IAO:0000589 "gonad primordium (EFO)" xsd:string -equivalent_to: UBERON:0005564 ! gonad primordium - -[Term] -id: EFO:0003584 ! -property_value: IAO:0000589 "rhombomere 1 floor plate (EFO)" xsd:string -equivalent_to: UBERON:0005566 ! rhombomere 1 floor plate - -[Term] -id: EFO:0003579 ! -property_value: IAO:0000589 "rhombomere 2 (EFO)" xsd:string -equivalent_to: UBERON:0005569 ! rhombomere 2 - -[Term] -id: EFO:0003568 ! -property_value: IAO:0000589 "rhombomere 2 floor plate (EFO)" xsd:string -equivalent_to: UBERON:0005570 ! rhombomere 2 floor plate - -[Term] -id: EFO:0003586 ! -property_value: IAO:0000589 "rhombomere 3 floor plate (EFO)" xsd:string -equivalent_to: UBERON:0005573 ! rhombomere 3 floor plate - -[Term] -id: EFO:0003588 ! -property_value: IAO:0000589 "rhombomere 4 floor plate (EFO)" xsd:string -equivalent_to: UBERON:0005576 ! rhombomere 4 floor plate - -[Term] -id: EFO:0003569 ! -property_value: IAO:0000589 "rhombomere 5 floor plate (EFO)" xsd:string -equivalent_to: UBERON:0005579 ! rhombomere 5 floor plate - -[Term] -id: EFO:0003587 ! -property_value: IAO:0000589 "rhombomere 6 floor plate (EFO)" xsd:string -equivalent_to: UBERON:0005582 ! rhombomere 6 floor plate - -[Term] -id: EFO:0003589 ! -property_value: IAO:0000589 "rhombomere 7 floor plate (EFO)" xsd:string -equivalent_to: UBERON:0005585 ! rhombomere 7 floor plate - -[Term] -id: EFO:0003570 ! -property_value: IAO:0000589 "rhombomere 8 floor plate (EFO)" xsd:string -equivalent_to: UBERON:0005588 ! rhombomere 8 floor plate - -[Term] -id: EFO:0002578 ! -property_value: IAO:0000589 "lung primordium (EFO)" xsd:string -equivalent_to: UBERON:0005597 ! lung primordium - -[Term] -id: EFO:0003479 ! -property_value: IAO:0000589 "pronephric mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0005721 ! pronephric mesoderm - -[Term] -id: EFO:0001973 ! -property_value: IAO:0000589 "olfactory system (EFO)" xsd:string -equivalent_to: UBERON:0005725 ! olfactory system - -[Term] -id: EFO:0003496 ! -property_value: IAO:0000589 "olfactory pit (EFO)" xsd:string -equivalent_to: UBERON:0005870 ! olfactory pit - -[Term] -id: EFO:0003677 ! -property_value: IAO:0000589 "neurocranial trabecula (EFO)" xsd:string -equivalent_to: UBERON:0005945 ! neurocranial trabecula - -[Term] -id: EFO:0003077 ! -property_value: IAO:0000589 "eye trabecular meshwork (EFO)" xsd:string -equivalent_to: UBERON:0005969 ! eye trabecular meshwork - -[Term] -id: EFO:0001978 ! -property_value: IAO:0000589 "perirhinal cortex (EFO)" xsd:string -equivalent_to: UBERON:0006083 ! perirhinal cortex - -[Term] -id: EFO:0001951 ! -property_value: IAO:0000589 "inferior parietal cortex (EFO)" xsd:string -equivalent_to: UBERON:0006088 ! inferior parietal cortex - -[Term] -id: EFO:0003442 ! -property_value: IAO:0000589 "future diencephalon (EFO)" xsd:string -equivalent_to: UBERON:0006222 ! future diencephalon - -[Term] -id: EFO:0003431 ! -property_value: IAO:0000589 "future brain (EFO)" xsd:string -equivalent_to: UBERON:0006238 ! future brain - -[Term] -id: EFO:0003423 ! -property_value: IAO:0000589 "future forebrain (EFO)" xsd:string -equivalent_to: UBERON:0006240 ! future forebrain - -[Term] -id: EFO:0003438 ! -property_value: IAO:0000589 "future spinal cord (EFO)" xsd:string -equivalent_to: UBERON:0006241 ! future spinal cord - -[Term] -id: EFO:0003595 ! -property_value: IAO:0000589 "posterior lateral line (EFO)" xsd:string -equivalent_to: UBERON:0006334 ! posterior lateral line - -[Term] -id: EFO:0000870 ! -property_value: IAO:0000589 "lymphatic part of lymphoid system (EFO)" xsd:string -equivalent_to: UBERON:0006558 ! lymphatic part of lymphoid system - -[Term] -id: EFO:0003437 ! -property_value: IAO:0000589 "presumptive endoderm (EFO)" xsd:string -equivalent_to: UBERON:0006595 ! presumptive endoderm - -[Term] -id: EFO:0003439 ! -property_value: IAO:0000589 "presumptive blood (EFO)" xsd:string -equivalent_to: UBERON:0006596 ! presumptive blood - -[Term] -id: EFO:0003547 ! -property_value: IAO:0000589 "quadrate bone (EFO)" xsd:string -equivalent_to: UBERON:0006597 ! quadrate bone - -[Term] -id: EFO:0003453 ! -property_value: IAO:0000589 "presumptive hypochord (EFO)" xsd:string -equivalent_to: UBERON:0006599 ! presumptive hypochord - -[Term] -id: EFO:0003462 ! -property_value: IAO:0000589 "presumptive enteric nervous system (EFO)" xsd:string -equivalent_to: UBERON:0006600 ! presumptive enteric nervous system - -[Term] -id: EFO:0003466 ! -property_value: IAO:0000589 "presumptive ectoderm (EFO)" xsd:string -equivalent_to: UBERON:0006601 ! presumptive ectoderm - -[Term] -id: EFO:0003467 ! -property_value: IAO:0000589 "presumptive mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0006603 ! presumptive mesoderm - -[Term] -id: EFO:0001403 ! -property_value: IAO:0000589 "corneo-scleral junction (EFO)" xsd:string -equivalent_to: UBERON:0006761 ! corneo-scleral junction - -[Term] -id: EFO:0001916 ! -property_value: IAO:0000589 "epithelium of conjunctiva (EFO)" xsd:string -equivalent_to: UBERON:0006763 ! epithelium of conjunctiva - -[Term] -id: EFO:0001400 ! -property_value: IAO:0000589 "scapula (EFO)" xsd:string -equivalent_to: UBERON:0006849 ! scapula - -[Term] -id: EFO:0003483 ! -property_value: IAO:0000589 "swim bladder (EFO)" xsd:string -equivalent_to: UBERON:0006860 ! swim bladder - -[Term] -id: EFO:0003337 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0006904 ! head mesenchyme from mesoderm - -[Term] -id: EFO:0003603 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0006904 ! head mesenchyme from mesoderm - -[Term] -id: EFO:0003709 ! -property_value: IAO:0000589 "vascular cord (EFO)" xsd:string -equivalent_to: UBERON:0006965 ! vascular cord - -[Term] -id: EFO:0000315 ! -property_value: IAO:0000589 "cardiogenic splanchnic mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0007005 ! cardiogenic splanchnic mesoderm - -[Term] -id: EFO:0003623 ! -property_value: IAO:0000589 "chordo neural hinge (EFO)" xsd:string -equivalent_to: UBERON:0007097 ! chordo neural hinge - -[Term] -id: EFO:0003631 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (EFO)" xsd:string -equivalent_to: UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: EFO:0003633 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (EFO)" xsd:string -equivalent_to: UBERON:0007123 ! pharyngeal pouch 2 - -[Term] -id: EFO:0003634 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (EFO)" xsd:string -equivalent_to: UBERON:0007124 ! pharyngeal pouch 3 - -[Term] -id: EFO:0003637 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (EFO)" xsd:string -equivalent_to: UBERON:0007125 ! pharyngeal pouch 4 - -[Term] -id: EFO:0003636 ! -property_value: IAO:0000589 "pharyngeal pouch 5 (EFO)" xsd:string -equivalent_to: UBERON:0007126 ! pharyngeal pouch 5 - -[Term] -id: EFO:0003635 ! -property_value: IAO:0000589 "pharyngeal pouch 6 (EFO)" xsd:string -equivalent_to: UBERON:0007127 ! pharyngeal pouch 6 - -[Term] -id: EFO:0000901 ! -property_value: IAO:0000589 "trunk ganglion (EFO)" xsd:string -equivalent_to: UBERON:0007134 ! trunk ganglion - -[Term] -id: EFO:0003497 ! -property_value: IAO:0000589 "neural keel (EFO)" xsd:string -equivalent_to: UBERON:0007135 ! neural keel - -[Term] -id: EFO:0003572 ! -property_value: IAO:0000589 "mesenchyme derived from head neural crest (EFO)" xsd:string -equivalent_to: UBERON:0007213 ! mesenchyme derived from head neural crest - -[Term] -id: EFO:0003540 ! -property_value: IAO:0000589 "pectoral appendage musculature (EFO)" xsd:string -equivalent_to: UBERON:0007269 ! pectoral appendage musculature - -[Term] -id: EFO:0003440 ! -property_value: IAO:0000589 "presumptive hindbrain (EFO)" xsd:string -equivalent_to: UBERON:0007277 ! presumptive hindbrain - -[Term] -id: EFO:0003446 ! -property_value: IAO:0000589 "presumptive midbrain hindbrain boundary (EFO)" xsd:string -equivalent_to: UBERON:0007281 ! presumptive midbrain hindbrain boundary - -[Term] -id: EFO:0003421 ! -property_value: IAO:0000589 "presumptive segmental plate (EFO)" xsd:string -equivalent_to: UBERON:0007282 ! presumptive segmental plate - -[Term] -id: EFO:0003444 ! -property_value: IAO:0000589 "presumptive shield (EFO)" xsd:string -equivalent_to: UBERON:0007283 ! presumptive shield - -[Term] -id: EFO:0003424 ! -property_value: IAO:0000589 "presumptive neural plate (EFO)" xsd:string -equivalent_to: UBERON:0007284 ! presumptive neural plate - -[Term] -id: EFO:0003443 ! -property_value: IAO:0000589 "presumptive paraxial mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0007285 ! presumptive paraxial mesoderm - -[Term] -id: EFO:0003454 ! -property_value: IAO:0000589 "presumptive floor plate (EFO)" xsd:string -equivalent_to: UBERON:0007286 ! presumptive floor plate - -[Term] -id: EFO:0003463 ! -property_value: IAO:0000589 "presumptive forebrain midbrain boundary (EFO)" xsd:string -equivalent_to: UBERON:0007288 ! presumptive forebrain midbrain boundary - -[Term] -id: EFO:0003451 ! -property_value: IAO:0000589 "presumptive rhombomere 3 (EFO)" xsd:string -equivalent_to: UBERON:0007290 ! presumptive rhombomere 3 - -[Term] -id: EFO:0003450 ! -property_value: IAO:0000589 "presumptive rhombomere 4 (EFO)" xsd:string -equivalent_to: UBERON:0007291 ! presumptive rhombomere 4 - -[Term] -id: EFO:0003449 ! -property_value: IAO:0000589 "presumptive rhombomere 5 (EFO)" xsd:string -equivalent_to: UBERON:0007292 ! presumptive rhombomere 5 - -[Term] -id: EFO:0003448 ! -property_value: IAO:0000589 "presumptive rhombomere 6 (EFO)" xsd:string -equivalent_to: UBERON:0007293 ! presumptive rhombomere 6 - -[Term] -id: EFO:0003447 ! -property_value: IAO:0000589 "presumptive rhombomere 7 (EFO)" xsd:string -equivalent_to: UBERON:0007294 ! presumptive rhombomere 7 - -[Term] -id: EFO:0003452 ! -property_value: IAO:0000589 "presumptive rhombomere 8 (EFO)" xsd:string -equivalent_to: UBERON:0007295 ! presumptive rhombomere 8 - -[Term] -id: EFO:0003619 ! -property_value: IAO:0000589 "presumptive pronephric mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0007297 ! presumptive pronephric mesoderm - -[Term] -id: EFO:0003425 ! -property_value: IAO:0000589 "enveloping layer of ectoderm (EFO)" xsd:string -equivalent_to: UBERON:0007383 ! enveloping layer of ectoderm - -[Term] -id: EFO:0003590 ! -property_value: IAO:0000589 "lateral mesenchyme derived from mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0007683 ! lateral mesenchyme derived from mesoderm - -[Term] -id: EFO:0001649 ! -property_value: IAO:0000589 "anlage (EFO)" xsd:string -equivalent_to: UBERON:0007688 ! anlage - -[Term] -id: EFO:0003626 ! -property_value: IAO:0000589 "early pharyngeal endoderm (EFO)" xsd:string -equivalent_to: UBERON:0007690 ! early pharyngeal endoderm - -[Term] -id: EFO:0003771 ! -property_value: IAO:0000589 "adipose tissue of abdominal region (EFO)" xsd:string -equivalent_to: UBERON:0007808 ! adipose tissue of abdominal region - -[Term] -id: EFO:0000946 ! -property_value: IAO:0000589 "pectoral girdle skeleton (EFO)" xsd:string -equivalent_to: UBERON:0007831 ! pectoral girdle skeleton - -[Term] -id: EFO:0000947 ! -property_value: IAO:0000589 "pelvic girdle skeleton (EFO)" xsd:string -equivalent_to: UBERON:0007832 ! pelvic girdle skeleton - -[Term] -id: EFO:0001397 ! -property_value: IAO:0000589 "inguinal part of abdomen (EFO)" xsd:string -equivalent_to: UBERON:0008337 ! inguinal part of abdomen - -[Term] -id: EFO:0003694 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch (EFO)" xsd:string -equivalent_to: UBERON:0008896 ! post-hyoid pharyngeal arch - -[Term] -id: EFO:0000875 ! -property_value: IAO:0000589 "fin (EFO)" xsd:string -equivalent_to: UBERON:0008897 ! fin - -[Term] -id: EFO:0003513 ! -property_value: IAO:0000589 "neuromast (EFO)" xsd:string -equivalent_to: UBERON:0008904 ! neuromast - -[Term] -id: EFO:0001391 ! -property_value: IAO:0000589 "somatosensory cortex (EFO)" xsd:string -equivalent_to: UBERON:0008930 ! somatosensory cortex - -[Term] -id: EFO:0003491 ! -property_value: IAO:0000589 "vasculature of brain (EFO)" xsd:string -equivalent_to: UBERON:0008998 ! vasculature of brain - -[Term] -id: EFO:0003554 ! -property_value: IAO:0000589 "gill filament (EFO)" xsd:string -equivalent_to: UBERON:0009120 ! gill filament - -[Term] -id: EFO:0000229 ! -property_value: IAO:0000589 "adenohypophyseal placode (EFO)" xsd:string -equivalent_to: UBERON:0009122 ! adenohypophyseal placode - -[Term] -id: EFO:0001395 ! -property_value: IAO:0000589 "axilla (EFO)" xsd:string -equivalent_to: UBERON:0009472 ! axilla - -[Term] -id: EFO:0003602 ! -property_value: IAO:0000589 "spinal cord lateral wall (EFO)" xsd:string -equivalent_to: UBERON:0009582 ! spinal cord lateral wall - -[Term] -id: EFO:0003432 ! -property_value: IAO:0000589 "presumptive midbrain (EFO)" xsd:string -equivalent_to: UBERON:0009616 ! presumptive midbrain - -[Term] -id: EFO:0003562 ! -property_value: IAO:0000589 "early telencephalic vesicle (EFO)" xsd:string -equivalent_to: UBERON:0009676 ! early telencephalic vesicle - -[Term] -id: EFO:0002557 ! -property_value: IAO:0000589 "pancreas mesenchyme (EFO)" xsd:string -equivalent_to: UBERON:0009752 ! pancreas mesenchyme - -[Term] -id: EFO:0000382 ! -property_value: IAO:0000589 "body of uterus (EFO)" xsd:string -equivalent_to: UBERON:0009853 ! body of uterus - -[Term] -id: EFO:0003704 ! -property_value: IAO:0000589 "anterior lateral plate mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0009881 ! anterior lateral plate mesoderm - -[Term] -id: EFO:0003705 ! -property_value: IAO:0000589 "posterior lateral plate mesoderm (EFO)" xsd:string -equivalent_to: UBERON:0009910 ! posterior lateral plate mesoderm - -[Term] -id: EFO:0003460 ! -property_value: IAO:0000589 "neurogenic placode (EFO)" xsd:string -equivalent_to: UBERON:0009955 ! neurogenic placode - -[Term] -id: EFO:0002556 ! -property_value: IAO:0000589 "epithelium of pancreatic duct (EFO)" xsd:string -equivalent_to: UBERON:0009970 ! epithelium of pancreatic duct - -[Term] -id: EFO:0003567 ! -property_value: IAO:0000589 "midbrain basal plate (EFO)" xsd:string -equivalent_to: UBERON:0010285 ! midbrain basal plate - -[Term] -id: EFO:0000250 ! -property_value: IAO:0000589 "amnioserosa (EFO)" xsd:string -equivalent_to: UBERON:0010302 ! amnioserosa - -[Term] -id: EFO:0003594 ! -property_value: IAO:0000589 "pectoral fin skeleton (EFO)" xsd:string -equivalent_to: UBERON:0010710 ! pectoral fin skeleton - -[Term] -id: EFO:0001902 ! -property_value: IAO:0000589 "articular cartilage of joint (EFO)" xsd:string -equivalent_to: UBERON:0010996 ! articular cartilage of joint - -[Term] -id: EFO:0003689 ! -property_value: IAO:0000589 "pharyngeal arch cartilage (EFO)" xsd:string -equivalent_to: UBERON:0011004 ! pharyngeal arch cartilage - -[Term] -id: EFO:0003659 ! -property_value: IAO:0000589 "palatoquadrate arch (EFO)" xsd:string -equivalent_to: UBERON:0011085 ! palatoquadrate arch - -[Term] -id: EFO:0000933 ! -property_value: IAO:0000589 "pharyngeal arch derived gill (EFO)" xsd:string -equivalent_to: UBERON:0011150 ! pharyngeal arch derived gill - -[Term] -id: EFO:0003684 ! -property_value: IAO:0000589 "ventral hyoid arch skeleton (EFO)" xsd:string -equivalent_to: UBERON:0011153 ! ventral hyoid arch skeleton - -[Term] -id: EFO:0003685 ! -property_value: IAO:0000589 "ethmoid cartilage (EFO)" xsd:string -equivalent_to: UBERON:0011242 ! ethmoid cartilage - -[Term] -id: EFO:0003556 ! -property_value: IAO:0000589 "hyomandibular bone (EFO)" xsd:string -equivalent_to: UBERON:0011606 ! hyomandibular bone - -[Term] -id: EFO:0003686 ! -property_value: IAO:0000589 "hyomandibular cartilage (EFO)" xsd:string -equivalent_to: UBERON:0011607 ! hyomandibular cartilage - -[Term] -id: EFO:0003552 ! -property_value: IAO:0000589 "ectopterygoid bone (EFO)" xsd:string -equivalent_to: UBERON:0011634 ! ectopterygoid bone - -[Term] -id: EFO:0003511 ! -property_value: IAO:0000589 "jaw muscle (EFO)" xsd:string -equivalent_to: UBERON:0011648 ! jaw muscle - -[Term] -id: EFO:0000227 ! -property_value: IAO:0000589 "adductor mandibulae (EFO)" xsd:string -equivalent_to: UBERON:0011683 ! adductor mandibulae - -[Term] -id: EFO:0001979 ! -property_value: IAO:0000589 "plantaris (EFO)" xsd:string -equivalent_to: UBERON:0011905 ! plantaris - -[Term] -id: EFO:0001942 ! -property_value: IAO:0000589 "umbilical cord blood (EFO)" xsd:string -equivalent_to: UBERON:0012168 ! umbilical cord blood - -[Term] -id: EFO:0002458 ! -property_value: IAO:0000589 "core of nucleus accumbens (EFO)" xsd:string -equivalent_to: UBERON:0012170 ! core of nucleus accumbens - -[Term] -id: EFO:0002459 ! -property_value: IAO:0000589 "shell of nucleus accumbens (EFO)" xsd:string -equivalent_to: UBERON:0012171 ! shell of nucleus accumbens - -[Term] -id: EFO:0002580 ! -property_value: IAO:0000589 "stomach primordium (EFO)" xsd:string -equivalent_to: UBERON:0012172 ! stomach primordium - -[Term] -id: EFO:0003070 ! -property_value: IAO:0000589 "buttock (EFO)" xsd:string -equivalent_to: UBERON:0013691 ! buttock - -[Term] -id: EFO:0004988 ! -property_value: IAO:0000589 "embryoid body (EFO)" xsd:string -equivalent_to: UBERON:0014374 ! embryoid body - -[Term] -id: EFO:0000888 ! -property_value: IAO:0000589 "skeletal muscle organ (EFO)" xsd:string -equivalent_to: UBERON:0014892 ! skeletal muscle organ - -[Term] -id: EFO:0003708 ! -property_value: IAO:0000589 "primordial vasculature (EFO)" xsd:string -equivalent_to: UBERON:0014903 ! primordial vasculature - -[Term] -id: EFO:0003664 ! -property_value: IAO:0000589 "intersomitic vessel (EFO)" xsd:string -equivalent_to: UBERON:0014907 ! intersomitic vessel - -[Term] -id: EFO:0000913 ! -property_value: IAO:0000589 "frontal lobe (EFO)" xsd:string -equivalent_to: UBERON:0016525 ! frontal lobe - -[Term] -id: EFO:0003699 ! -property_value: IAO:0000589 "ventral wall of dorsal aorta (EFO)" xsd:string -equivalent_to: UBERON:0018549 ! ventral wall of dorsal aorta - -[Term] -id: EFO:0002471 ! -property_value: IAO:0000589 "posterior cingulate cortex (EFO)" xsd:string -equivalent_to: UBERON:0022353 ! posterior cingulate cortex - -[Term] -id: EFO:0000625 ! -property_value: IAO:0000589 "mole (EFO)" xsd:string -equivalent_to: UBERON:1000010 ! mole - -[Term] -id: EFO:0003493 ! -property_value: IAO:0000589 "lateral line ganglion (EFO)" xsd:string -equivalent_to: UBERON:2000120 ! lateral line ganglion - -[Term] -id: EFO:0003551 ! -property_value: IAO:0000589 "dorsal fin musculature (EFO)" xsd:string -equivalent_to: UBERON:2000648 ! dorsal fin musculature - -[Term] -id: EFO:0003558 ! -property_value: IAO:0000589 "segmental intercostal artery (EFO)" xsd:string -equivalent_to: UBERON:2000677 ! segmental intercostal artery - -[Term] -id: EFO:0003577 ! -property_value: IAO:0000589 "nucleus of medial longitudinal fasciculus of medulla (EFO)" xsd:string -equivalent_to: UBERON:2000815 ! nucleus of medial longitudinal fasciculus of medulla - -[Term] -id: EFO:0003592 ! -property_value: IAO:0000589 "middle lateral line neuromast (EFO)" xsd:string -equivalent_to: UBERON:2000939 ! middle lateral line neuromast - -[Term] -id: EFO:0003606 ! -property_value: IAO:0000589 "occipital lateral line neuromast (EFO)" xsd:string -equivalent_to: UBERON:2001025 ! occipital lateral line neuromast - -[Term] -id: EFO:0003607 ! -property_value: IAO:0000589 "supraorbital lateral line neuromast (EFO)" xsd:string -equivalent_to: UBERON:2001026 ! supraorbital lateral line neuromast - -[Term] -id: EFO:0003612 ! -property_value: IAO:0000589 "future internal carotid artery (EFO)" xsd:string -equivalent_to: UBERON:2001053 ! future internal carotid artery - -[Term] -id: EFO:0003615 ! -property_value: IAO:0000589 "presumptive mesencephalic artery (EFO)" xsd:string -equivalent_to: UBERON:2001062 ! presumptive mesencephalic artery - -[Term] -id: EFO:0003657 ! -property_value: IAO:0000589 "regenerating fin/limb (EFO)" xsd:string -equivalent_to: UBERON:2001269 ! regenerating fin/limb - -[Term] -id: EFO:0003674 ! -property_value: IAO:0000589 "dorsal anterior lateral line ganglion (EFO)" xsd:string -equivalent_to: UBERON:2001312 ! dorsal anterior lateral line ganglion - -[Term] -id: EFO:0003461 ! -property_value: IAO:0000589 "anterior lateral line placode (EFO)" xsd:string -equivalent_to: UBERON:2001316 ! anterior lateral line placode - -[Term] -id: EFO:0003682 ! -property_value: IAO:0000589 "regeneration epithelium of fin/limb (EFO)" xsd:string -equivalent_to: UBERON:2001389 ! regeneration epithelium of fin/limb - -[Term] -id: EFO:0003683 ! -property_value: IAO:0000589 "anterior lateral line ganglion (EFO)" xsd:string -equivalent_to: UBERON:2001391 ! anterior lateral line ganglion - -[Term] -id: EFO:0003691 ! -property_value: IAO:0000589 "anterior lateral line system (EFO)" xsd:string -equivalent_to: UBERON:2001468 ! anterior lateral line system - -[Term] -id: EFO:0010666 ! -property_value: IAO:0000589 "airway submucosal gland (EFO)" xsd:string -equivalent_to: UBERON:8410077 ! airway submucosal gland - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-efo.owl b/src/ontology/bridge/uberon-bridge-to-efo.owl index eb8c6233d8..f90015bc2a 100644 --- a/src/ontology/bridge/uberon-bridge-to-efo.owl +++ b/src/ontology/bridge/uberon-bridge-to-efo.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - trunk ganglion (EFO) - EFO:0000901 + dorsal root ganglion (EFO) @@ -1748,8 +1323,7 @@ - cranial ganglion (EFO) - EFO:0000902 + cranial ganglion (EFO) @@ -1758,8 +1332,7 @@ - trigeminal ganglion (EFO) - EFO:0000903 + trigeminal ganglion (EFO) @@ -1768,8 +1341,7 @@ - basal ganglion (EFO) - EFO:0000904 + basal ganglion (EFO) @@ -1778,8 +1350,7 @@ - globus pallidus (EFO) - EFO:0000905 + globus pallidus (EFO) @@ -1788,8 +1359,7 @@ - nucleus accumbens (EFO) - EFO:0000906 + nucleus accumbens (EFO) @@ -1798,8 +1368,7 @@ - caudate nucleus (EFO) - EFO:0000907 + caudate nucleus (EFO) @@ -1808,8 +1377,7 @@ - central nervous system (EFO) - EFO:0000908 + central nervous system (EFO) @@ -1818,8 +1386,7 @@ - forebrain (EFO) - EFO:0000909 + forebrain (EFO) @@ -1828,8 +1395,7 @@ - dorsal plus ventral thalamus (EFO) - EFO:0000910 + dorsal plus ventral thalamus (EFO) @@ -1838,8 +1404,7 @@ - diencephalon (EFO) - EFO:0000911 + diencephalon (EFO) @@ -1848,8 +1413,7 @@ - telencephalon (EFO) - EFO:0000912 + telencephalon (EFO) @@ -1858,8 +1422,7 @@ - frontal lobe (EFO) - EFO:0000913 + frontal lobe (EFO) @@ -1868,8 +1431,7 @@ - parietal lobe (EFO) - EFO:0000914 + parietal lobe (EFO) @@ -1878,8 +1440,7 @@ - occipital lobe (EFO) - EFO:0000915 + occipital lobe (EFO) @@ -1888,8 +1449,7 @@ - visual cortex (EFO) - EFO:0000916 + visual cortex (EFO) @@ -1898,8 +1458,7 @@ - temporal lobe (EFO) - EFO:0000917 + temporal lobe (EFO) @@ -1908,8 +1467,7 @@ - epithalamus (EFO) - EFO:0000918 + epithalamus (EFO) @@ -1918,8 +1476,7 @@ - midbrain (EFO) - EFO:0000919 + midbrain (EFO) @@ -1928,8 +1485,7 @@ - midbrain tectum (EFO) - EFO:0000920 + midbrain tectum (EFO) @@ -1938,8 +1494,7 @@ - midbrain tegmentum (EFO) - EFO:0000921 + midbrain tegmentum (EFO) @@ -1948,8 +1503,7 @@ - substantia nigra (EFO) - EFO:0000922 + substantia nigra (EFO) @@ -1958,8 +1512,7 @@ - hindbrain (EFO) - EFO:0000923 + hindbrain (EFO) @@ -1968,8 +1521,7 @@ - medulla oblongata (EFO) - EFO:0000924 + medulla oblongata (EFO) @@ -1978,8 +1530,7 @@ - mushroom body (EFO) - EFO:0000925 + mushroom body (EFO) @@ -1988,8 +1539,7 @@ - pars intercerebralis (EFO) - EFO:0000926 + pars intercerebralis (EFO) @@ -1998,8 +1548,7 @@ - pronephros (EFO) - EFO:0000927 + pronephros (EFO) @@ -2008,20 +1557,7 @@ - mesonephros (EFO) - EFO:0000928 - - - - - - - - - - adult mammalian kidney (EFO) - kidney (EFO) - EFO:0000929 + mesonephros (EFO) @@ -2030,8 +1566,7 @@ - ureter (EFO) - EFO:0000930 + ureter (EFO) @@ -2040,8 +1575,7 @@ - urethra (EFO) - EFO:0000931 + urethra (EFO) @@ -2050,8 +1584,7 @@ - bronchus (EFO) - EFO:0000932 + bronchus (EFO) @@ -2060,8 +1593,7 @@ - pharyngeal arch derived gill (EFO) - EFO:0000933 + pharyngeal arch derived gill (EFO) @@ -2070,8 +1602,7 @@ - lung (EFO) - EFO:0000934 + lung (EFO) @@ -2080,8 +1611,7 @@ - trachea (EFO) - EFO:0000935 + trachea (EFO) @@ -2090,8 +1620,7 @@ - diaphragm (EFO) - EFO:0000937 + diaphragm (EFO) @@ -2100,8 +1629,7 @@ - arthropod sensillum (EFO) - EFO:0000939 + arthropod sensillum (EFO) @@ -2110,8 +1638,7 @@ - chordotonal organ (EFO) - EFO:0000940 + chordotonal organ (EFO) @@ -2120,8 +1647,7 @@ - lateral line system (EFO) - EFO:0000941 + lateral line system (EFO) @@ -2130,8 +1656,7 @@ - postcranial axial skeleton (EFO) - EFO:0000942 + postcranial axial skeleton (EFO) @@ -2140,8 +1665,7 @@ - chitin-based cuticle (EFO) - EFO:0000944 + chitin-based cuticle (EFO) @@ -2150,8 +1674,7 @@ - limb bone (EFO) - EFO:0000945 + limb bone (EFO) @@ -2160,8 +1683,7 @@ - pectoral girdle skeleton (EFO) - EFO:0000946 + pectoral girdle skeleton (EFO) @@ -2170,8 +1692,7 @@ - pelvic girdle skeleton (EFO) - EFO:0000947 + pelvic girdle skeleton (EFO) @@ -2180,8 +1701,7 @@ - skeletal joint (EFO) - EFO:0000948 + skeletal joint (EFO) @@ -2190,8 +1710,7 @@ - cartilage tissue (EFO) - EFO:0000949 + cartilage tissue (EFO) @@ -2200,8 +1719,7 @@ - appendicular skeleton (EFO) - EFO:0000951 + appendicular skeleton (EFO) @@ -2210,8 +1728,7 @@ - connective tissue (EFO) - EFO:0000952 + connective tissue (EFO) @@ -2220,8 +1737,7 @@ - dermis (EFO) - EFO:0000953 + dermis (EFO) @@ -2230,8 +1746,7 @@ - skin epidermis (EFO) - EFO:0000954 + skin epidermis (EFO) @@ -2240,8 +1755,7 @@ - feather (EFO) - EFO:0000955 + feather (EFO) @@ -2250,8 +1764,7 @@ - nail (EFO) - EFO:0000956 + nail (EFO) @@ -2260,8 +1773,7 @@ - strand of hair (EFO) - EFO:0000958 + strand of hair (EFO) @@ -2270,8 +1782,7 @@ - pharyngeal arch (EFO) - EFO:0000959 + pharyngeal arch (EFO) @@ -2280,8 +1791,7 @@ - scale (EFO) - EFO:0000960 + scale (EFO) @@ -2290,8 +1800,7 @@ - skin of body (EFO) - EFO:0000962 + skin of body (EFO) @@ -2300,8 +1809,7 @@ - tail (EFO) - EFO:0000963 + tail (EFO) @@ -2310,8 +1818,7 @@ - head (EFO) - EFO:0000964 + head (EFO) @@ -2320,8 +1827,7 @@ - chest (EFO) - EFO:0000965 + chest (EFO) @@ -2330,8 +1836,7 @@ - trunk (EFO) - EFO:0000966 + trunk (EFO) @@ -2340,8 +1845,7 @@ - neck (EFO) - EFO:0000967 + neck (EFO) @@ -2350,8 +1854,7 @@ - abdomen (EFO) - EFO:0000968 + abdomen (EFO) @@ -2360,8 +1863,7 @@ - female reproductive system (EFO) - EFO:0000969 + female reproductive system (EFO) @@ -2370,8 +1872,7 @@ - male reproductive system (EFO) - EFO:0000970 + male reproductive system (EFO) @@ -2380,8 +1881,7 @@ - hermaphrodite gonad (EFO) - EFO:0000971 + hermaphrodite gonad (EFO) @@ -2390,8 +1890,7 @@ - ovary (EFO) - EFO:0000973 + ovary (EFO) @@ -2400,8 +1899,7 @@ - oviduct (EFO) - EFO:0000974 + oviduct (EFO) @@ -2410,8 +1908,7 @@ - uterus (EFO) - EFO:0000975 + uterus (EFO) @@ -2420,8 +1917,7 @@ - vagina (EFO) - EFO:0000976 + vagina (EFO) @@ -2430,8 +1926,7 @@ - spermathecum (EFO) - EFO:0000977 + spermathecum (EFO) @@ -2440,8 +1935,7 @@ - mammalian vulva (EFO) - EFO:0000978 + mammalian vulva (EFO) @@ -2450,8 +1944,7 @@ - uterine cervix (EFO) - EFO:0000979 + uterine cervix (EFO) @@ -2460,8 +1953,7 @@ - endometrium (EFO) - EFO:0000980 + endometrium (EFO) @@ -2470,8 +1962,7 @@ - vas deferens (EFO) - EFO:0000981 + vas deferens (EFO) @@ -2480,8 +1971,7 @@ - epididymis (EFO) - EFO:0000982 + epididymis (EFO) @@ -2490,8 +1980,7 @@ - testis (EFO) - EFO:0000984 + testis (EFO) @@ -2500,8 +1989,7 @@ - ejaculatory duct (EFO) - EFO:0000985 + ejaculatory duct (EFO) @@ -2510,8 +1998,7 @@ - seminal vesicle (EFO) - EFO:0000986 + seminal vesicle (EFO) @@ -2520,8 +2007,7 @@ - penis (EFO) - EFO:0000987 + penis (EFO) @@ -2530,8 +2016,7 @@ - fully formed stage (EFO) - EFO:0001272 + fully formed stage (EFO) @@ -2540,8 +2025,7 @@ - blastula stage (EFO) - EFO:0001282 + blastula stage (EFO) @@ -2550,8 +2034,7 @@ - cleavage stage (EFO) - EFO:0001290 + cleavage stage (EFO) @@ -2560,8 +2043,7 @@ - gastrula stage (EFO) - EFO:0001296 + gastrula stage (EFO) @@ -2570,8 +2052,7 @@ - sexually immature stage (EFO) - EFO:0001300 + sexually immature stage (EFO) @@ -2580,8 +2061,7 @@ - larval stage (EFO) - EFO:0001303 + larval stage (EFO) @@ -2590,8 +2070,7 @@ - pharyngula stage (EFO) - EFO:0001310 + pharyngula stage (EFO) @@ -2600,8 +2079,7 @@ - zygote stage (EFO) - EFO:0001322 + zygote stage (EFO) @@ -2610,8 +2088,7 @@ - late embryo (EFO) - EFO:0001323 + late embryo (EFO) @@ -2620,8 +2097,7 @@ - jejunum (EFO) - EFO:0001333 + jejunum (EFO) @@ -2630,8 +2106,7 @@ - ileum (EFO) - EFO:0001334 + ileum (EFO) @@ -2640,8 +2115,7 @@ - internal ear (EFO) - EFO:0001363 + internal ear (EFO) @@ -2650,8 +2124,7 @@ - spiral organ of cochlea (EFO) - EFO:0001364 + spiral organ of cochlea (EFO) @@ -2660,8 +2133,7 @@ - dentate gyrus of hippocampal formation (EFO) - EFO:0001366 + dentate gyrus of hippocampal formation (EFO) @@ -2670,8 +2142,7 @@ - embryo (EFO) - EFO:0001367 + embryo (EFO) @@ -2680,8 +2151,7 @@ - intercostal muscle (EFO) - EFO:0001368 + intercostal muscle (EFO) @@ -2690,8 +2160,7 @@ - vertebral column (EFO) - EFO:0001369 + vertebral column (EFO) @@ -2700,8 +2169,7 @@ - intervertebral disk (EFO) - EFO:0001370 + intervertebral disk (EFO) @@ -2710,8 +2178,7 @@ - vertebra (EFO) - EFO:0001371 + vertebra (EFO) @@ -2720,8 +2187,7 @@ - precentral gyrus (EFO) - EFO:0001373 + precentral gyrus (EFO) @@ -2730,8 +2196,7 @@ - Peyer's patch (EFO) - EFO:0001381 + Peyer's patch (EFO) @@ -2740,8 +2205,7 @@ - postcentral gyrus (EFO) - EFO:0001383 + postcentral gyrus (EFO) @@ -2750,8 +2214,7 @@ - prefrontal cortex (EFO) - EFO:0001384 + prefrontal cortex (EFO) @@ -2760,8 +2223,7 @@ - tibialis anterior (EFO) - EFO:0001385 + tibialis anterior (EFO) @@ -2770,8 +2232,7 @@ - palatine uvula (EFO) - EFO:0001386 + palatine uvula (EFO) @@ -2780,8 +2241,7 @@ - submandibular gland (EFO) - EFO:0001387 + submandibular gland (EFO) @@ -2790,8 +2250,7 @@ - hypopharynx (EFO) - EFO:0001388 + hypopharynx (EFO) @@ -2800,8 +2259,7 @@ - lacrimal gland (EFO) - EFO:0001389 + lacrimal gland (EFO) @@ -2810,8 +2268,7 @@ - corpus callosum (EFO) - EFO:0001390 + corpus callosum (EFO) @@ -2820,8 +2277,7 @@ - somatosensory cortex (EFO) - EFO:0001391 + somatosensory cortex (EFO) @@ -2830,8 +2286,7 @@ - subthalamic nucleus (EFO) - EFO:0001392 + subthalamic nucleus (EFO) @@ -2840,8 +2295,7 @@ - synovial membrane of synovial joint (EFO) - EFO:0001393 + synovial membrane of synovial joint (EFO) @@ -2850,8 +2304,7 @@ - pons (EFO) - EFO:0001394 + pons (EFO) @@ -2860,8 +2313,7 @@ - axilla (EFO) - EFO:0001395 + axilla (EFO) @@ -2870,8 +2322,7 @@ - femur (EFO) - EFO:0001396 + femur (EFO) @@ -2880,8 +2331,7 @@ - inguinal part of abdomen (EFO) - EFO:0001397 + inguinal part of abdomen (EFO) @@ -2890,8 +2340,7 @@ - humerus (EFO) - EFO:0001398 + humerus (EFO) @@ -2900,8 +2349,7 @@ - pulmonary artery (EFO) - EFO:0001399 + pulmonary artery (EFO) @@ -2910,8 +2358,7 @@ - scapula (EFO) - EFO:0001400 + scapula (EFO) @@ -2920,8 +2367,7 @@ - tonsil (EFO) - EFO:0001401 + tonsil (EFO) @@ -2930,8 +2376,7 @@ - trigeminal nerve (EFO) - EFO:0001402 + trigeminal nerve (EFO) @@ -2940,8 +2385,7 @@ - corneo-scleral junction (EFO) - EFO:0001403 + corneo-scleral junction (EFO) @@ -2950,8 +2394,7 @@ - seminiferous tubule of testis (EFO) - EFO:0001404 + seminiferous tubule of testis (EFO) @@ -2960,8 +2403,7 @@ - dorsum (EFO) - EFO:0001405 + dorsum (EFO) @@ -2970,8 +2412,7 @@ - extraembryonic tissue (EFO) - EFO:0001406 + extraembryonic tissue (EFO) @@ -2980,8 +2421,7 @@ - placenta (EFO) - EFO:0001407 + placenta (EFO) @@ -2990,8 +2430,7 @@ - tarsal region (EFO) - EFO:0001409 + tarsal region (EFO) @@ -3000,8 +2439,7 @@ - arm (EFO) - EFO:0001410 + arm (EFO) @@ -3010,8 +2448,7 @@ - leg (EFO) - EFO:0001411 + leg (EFO) @@ -3020,8 +2457,7 @@ - deltoid (EFO) - EFO:0001412 + deltoid (EFO) @@ -3030,8 +2466,7 @@ - gastrocnemius (EFO) - EFO:0001413 + gastrocnemius (EFO) @@ -3040,8 +2475,7 @@ - gonadal ridge (EFO) - EFO:0001414 + gonadal ridge (EFO) @@ -3050,8 +2484,7 @@ - umbilical cord (EFO) - EFO:0001415 + umbilical cord (EFO) @@ -3060,8 +2493,7 @@ - sciatic nerve (EFO) - EFO:0001417 + sciatic nerve (EFO) @@ -3070,8 +2502,7 @@ - biceps femoris (EFO) - EFO:0001418 + biceps femoris (EFO) @@ -3080,8 +2511,7 @@ - masseter muscle (EFO) - EFO:0001424 + masseter muscle (EFO) @@ -3090,8 +2520,7 @@ - stria vascularis of cochlear duct (EFO) - EFO:0001644 + stria vascularis of cochlear duct (EFO) @@ -3100,8 +2529,7 @@ - anlage (EFO) - EFO:0001649 + anlage (EFO) @@ -3110,8 +2538,7 @@ - cranial placode (EFO) - EFO:0001650 + cranial placode (EFO) @@ -3120,8 +2547,7 @@ - primordium (EFO) - EFO:0001652 + primordium (EFO) @@ -3130,8 +2556,7 @@ - prepuce of penis (EFO) - EFO:0001664 + prepuce of penis (EFO) @@ -3140,8 +2565,7 @@ - mediastinal lymph node (EFO) - EFO:0001670 + mediastinal lymph node (EFO) @@ -3150,8 +2574,7 @@ - articular cartilage of joint (EFO) - EFO:0001902 + articular cartilage of joint (EFO) @@ -3160,8 +2583,7 @@ - neural tube basal plate (EFO) - EFO:0001904 + neural tube basal plate (EFO) @@ -3170,8 +2592,7 @@ - blood plasma (EFO) - EFO:0001905 + blood plasma (EFO) @@ -3180,8 +2601,7 @@ - capillary (EFO) - EFO:0001906 + capillary (EFO) @@ -3190,8 +2610,7 @@ - caudal ganglionic eminence (EFO) - EFO:0001911 + caudal ganglionic eminence (EFO) @@ -3200,8 +2619,7 @@ - caudate-putamen (EFO) - EFO:0001912 + caudate-putamen (EFO) @@ -3210,8 +2628,7 @@ - cervix epithelium (EFO) - EFO:0001913 + cervix epithelium (EFO) @@ -3220,8 +2637,7 @@ - brain ventricle (EFO) - EFO:0001914 + brain ventricle (EFO) @@ -3230,8 +2646,7 @@ - choroid plexus (EFO) - EFO:0001915 + choroid plexus (EFO) @@ -3240,8 +2655,7 @@ - epithelium of conjunctiva (EFO) - EFO:0001916 + epithelium of conjunctiva (EFO) @@ -3250,8 +2664,7 @@ - corneal epithelium (EFO) - EFO:0001917 + corneal epithelium (EFO) @@ -3260,8 +2673,7 @@ - decidua basalis (EFO) - EFO:0001918 + decidua basalis (EFO) @@ -3270,8 +2682,7 @@ - dorsal raphe nucleus (EFO) - EFO:0001919 + dorsal raphe nucleus (EFO) @@ -3280,8 +2691,7 @@ - entorhinal cortex (EFO) - EFO:0001920 + entorhinal cortex (EFO) @@ -3290,8 +2700,7 @@ - extra-ocular muscle (EFO) - EFO:0001921 + extra-ocular muscle (EFO) @@ -3300,8 +2709,7 @@ - mouth floor (EFO) - EFO:0001923 + mouth floor (EFO) @@ -3310,8 +2718,7 @@ - gingiva (EFO) - EFO:0001925 + gingiva (EFO) @@ -3320,8 +2727,7 @@ - insect head capsule (EFO) - EFO:0001927 + insect head capsule (EFO) @@ -3330,8 +2736,7 @@ - hindlimb muscle (EFO) - EFO:0001928 + hindlimb muscle (EFO) @@ -3340,8 +2745,7 @@ - hip (EFO) - EFO:0001929 + hip (EFO) @@ -3350,8 +2754,7 @@ - hypoblast (generic) (EFO) - EFO:0001930 + hypoblast (generic) (EFO) @@ -3360,8 +2763,7 @@ - vomeronasal organ (EFO) - EFO:0001934 + vomeronasal organ (EFO) @@ -3370,8 +2772,7 @@ - ventral tegmental area (EFO) - EFO:0001935 + ventral tegmental area (EFO) @@ -3380,8 +2781,7 @@ - ventral striatum (EFO) - EFO:0001936 + ventral striatum (EFO) @@ -3390,8 +2790,7 @@ - vastus lateralis (EFO) - EFO:0001937 + vastus lateralis (EFO) @@ -3400,8 +2799,7 @@ - quadriceps femoris (EFO) - EFO:0001938 + quadriceps femoris (EFO) @@ -3410,8 +2808,7 @@ - urine (EFO) - EFO:0001939 + urine (EFO) @@ -3420,8 +2817,7 @@ - umbilical vein (EFO) - EFO:0001940 + umbilical vein (EFO) @@ -3430,8 +2826,7 @@ - umbilical cord blood (EFO) - EFO:0001942 + umbilical cord blood (EFO) @@ -3440,8 +2835,7 @@ - hindlimb stylopod (EFO) - EFO:0001943 + hindlimb stylopod (EFO) @@ -3450,8 +2844,7 @@ - superior temporal gyrus (EFO) - EFO:0001944 + superior temporal gyrus (EFO) @@ -3460,8 +2853,7 @@ - superior cervical ganglion (EFO) - EFO:0001945 + superior cervical ganglion (EFO) @@ -3470,8 +2862,7 @@ - soleus muscle (EFO) - EFO:0001946 + soleus muscle (EFO) @@ -3480,8 +2871,7 @@ - musculature (EFO) - EFO:0001949 + musculature (EFO) @@ -3490,8 +2880,7 @@ - midgut (EFO) - EFO:0001950 + midgut (EFO) @@ -3500,8 +2889,7 @@ - inferior parietal cortex (EFO) - EFO:0001951 + inferior parietal cortex (EFO) @@ -3510,8 +2898,7 @@ - internal carotid artery (EFO) - EFO:0001952 + internal carotid artery (EFO) @@ -3520,8 +2907,7 @@ - external carotid artery (EFO) - EFO:0001953 + external carotid artery (EFO) @@ -3530,8 +2916,7 @@ - interventricular septum (EFO) - EFO:0001956 + interventricular septum (EFO) @@ -3540,8 +2925,7 @@ - knee joint (EFO) - EFO:0001957 + knee joint (EFO) @@ -3550,8 +2934,7 @@ - telencephalic ventricle (EFO) - EFO:0001961 + telencephalic ventricle (EFO) @@ -3560,8 +2943,7 @@ - brainstem (EFO) - EFO:0001962 + brainstem (EFO) @@ -3570,8 +2952,7 @@ - locus ceruleus (EFO) - EFO:0001963 + locus ceruleus (EFO) @@ -3580,8 +2961,7 @@ - mandible (EFO) - EFO:0001965 + mandible (EFO) @@ -3590,8 +2970,7 @@ - ligament (EFO) - EFO:0001966 + ligament (EFO) @@ -3600,8 +2979,7 @@ - medial geniculate body (EFO) - EFO:0001968 + medial geniculate body (EFO) @@ -3610,8 +2988,7 @@ - medulla of thymus (EFO) - EFO:0001969 + medulla of thymus (EFO) @@ -3620,8 +2997,7 @@ - myometrium (EFO) - EFO:0001970 + myometrium (EFO) @@ -3630,8 +3006,7 @@ - bed nucleus of stria terminalis (EFO) - EFO:0001971 + bed nucleus of stria terminalis (EFO) @@ -3640,8 +3015,7 @@ - olfactory epithelium (EFO) - EFO:0001972 + olfactory epithelium (EFO) @@ -3650,8 +3024,7 @@ - olfactory system (EFO) - EFO:0001973 + olfactory system (EFO) @@ -3660,8 +3033,7 @@ - optic disc (EFO) - EFO:0001974 + optic disc (EFO) @@ -3670,8 +3042,7 @@ - oral cavity (EFO) - EFO:0001975 + oral cavity (EFO) @@ -3680,8 +3051,7 @@ - oropharynx (EFO) - EFO:0001976 + oropharynx (EFO) @@ -3690,8 +3060,7 @@ - palatine tonsil (EFO) - EFO:0001977 + palatine tonsil (EFO) @@ -3700,8 +3069,7 @@ - perirhinal cortex (EFO) - EFO:0001978 + perirhinal cortex (EFO) @@ -3710,8 +3078,7 @@ - plantaris (EFO) - EFO:0001979 + plantaris (EFO) @@ -3720,8 +3087,7 @@ - pleura (EFO) - EFO:0001980 + pleura (EFO) @@ -3730,8 +3096,7 @@ - mesoderm (EFO) - EFO:0001981 + mesoderm (EFO) @@ -3740,8 +3105,7 @@ - presomitic mesoderm (EFO) - EFO:0001982 + presomitic mesoderm (EFO) @@ -3750,8 +3114,7 @@ - alveolus of lung (EFO) - EFO:0001985 + alveolus of lung (EFO) @@ -3760,8 +3123,7 @@ - cerebral peduncle (EFO) - EFO:0001987 + cerebral peduncle (EFO) @@ -3770,8 +3132,7 @@ - lateral geniculate body (EFO) - EFO:0001988 + lateral geniculate body (EFO) @@ -3780,8 +3141,7 @@ - orbitofrontal cortex (EFO) - EFO:0001990 + orbitofrontal cortex (EFO) @@ -3790,8 +3150,7 @@ - superior frontal gyrus (EFO) - EFO:0001991 + superior frontal gyrus (EFO) @@ -3800,8 +3159,7 @@ - CA1 field of hippocampus (EFO) - EFO:0002454 + CA1 field of hippocampus (EFO) @@ -3810,8 +3168,7 @@ - CA2 field of hippocampus (EFO) - EFO:0002455 + CA2 field of hippocampus (EFO) @@ -3820,8 +3177,7 @@ - CA3 field of hippocampus (EFO) - EFO:0002456 + CA3 field of hippocampus (EFO) @@ -3830,8 +3186,7 @@ - CA4 field of hippocampus (EFO) - EFO:0002457 + CA4 field of hippocampus (EFO) @@ -3840,8 +3195,7 @@ - core of nucleus accumbens (EFO) - EFO:0002458 + core of nucleus accumbens (EFO) @@ -3850,8 +3204,7 @@ - shell of nucleus accumbens (EFO) - EFO:0002459 + shell of nucleus accumbens (EFO) @@ -3860,8 +3213,7 @@ - hair follicle (EFO) - EFO:0002464 + hair follicle (EFO) @@ -3870,8 +3222,7 @@ - inferior colliculus (EFO) - EFO:0002465 + inferior colliculus (EFO) @@ -3880,8 +3231,7 @@ - middle temporal gyrus (EFO) - EFO:0002466 + middle temporal gyrus (EFO) @@ -3890,8 +3240,7 @@ - oculomotor nuclear complex (EFO) - EFO:0002468 + oculomotor nuclear complex (EFO) @@ -3900,8 +3249,7 @@ - paraventricular nucleus of hypothalamus (EFO) - EFO:0002469 + paraventricular nucleus of hypothalamus (EFO) @@ -3910,8 +3258,7 @@ - central gray substance of midbrain (EFO) - EFO:0002470 + central gray substance of midbrain (EFO) @@ -3920,8 +3267,7 @@ - posterior cingulate cortex (EFO) - EFO:0002471 + posterior cingulate cortex (EFO) @@ -3930,8 +3276,7 @@ - primary motor cortex (EFO) - EFO:0002472 + primary motor cortex (EFO) @@ -3940,8 +3285,7 @@ - superior colliculus (EFO) - EFO:0002474 + superior colliculus (EFO) @@ -3950,8 +3294,7 @@ - suprachiasmatic nucleus (EFO) - EFO:0002475 + suprachiasmatic nucleus (EFO) @@ -3960,8 +3303,7 @@ - supraoptic nucleus (EFO) - EFO:0002476 + supraoptic nucleus (EFO) @@ -3970,8 +3312,7 @@ - alveolus (EFO) - EFO:0002513 + alveolus (EFO) @@ -3980,8 +3321,7 @@ - substantia propria of cornea (EFO) - EFO:0002514 + substantia propria of cornea (EFO) @@ -3990,8 +3330,7 @@ - ductus arteriosus (EFO) - EFO:0002515 + ductus arteriosus (EFO) @@ -4000,8 +3339,7 @@ - inferior vagus X ganglion (EFO) - EFO:0002516 + inferior vagus X ganglion (EFO) @@ -4010,8 +3348,7 @@ - nucleus raphe magnus (EFO) - EFO:0002518 + nucleus raphe magnus (EFO) @@ -4020,8 +3357,7 @@ - cerebral hemisphere (EFO) - EFO:0002521 + cerebral hemisphere (EFO) @@ -4030,8 +3366,7 @@ - preoptic area (EFO) - EFO:0002523 + preoptic area (EFO) @@ -4040,8 +3375,7 @@ - abdominal aorta (EFO) - EFO:0002524 + abdominal aorta (EFO) @@ -4050,8 +3384,7 @@ - thoracic aorta (EFO) - EFO:0002525 + thoracic aorta (EFO) @@ -4060,8 +3393,7 @@ - arch of aorta (EFO) - EFO:0002526 + arch of aorta (EFO) @@ -4070,8 +3402,7 @@ - descending thoracic aorta (EFO) - EFO:0002527 + descending thoracic aorta (EFO) @@ -4080,8 +3411,7 @@ - endocrine pancreas (EFO) - EFO:0002542 + endocrine pancreas (EFO) @@ -4090,8 +3420,7 @@ - endoderm (EFO) - EFO:0002545 + endoderm (EFO) @@ -4100,8 +3429,7 @@ - endothelium (EFO) - EFO:0002548 + endothelium (EFO) @@ -4110,8 +3438,7 @@ - vagus nerve (EFO) - EFO:0002549 + vagus nerve (EFO) @@ -4120,8 +3447,7 @@ - brachiocephalic artery (EFO) - EFO:0002550 + brachiocephalic artery (EFO) @@ -4130,8 +3456,7 @@ - coronary artery (EFO) - EFO:0002551 + coronary artery (EFO) @@ -4140,8 +3465,7 @@ - renal artery (EFO) - EFO:0002552 + renal artery (EFO) @@ -4150,8 +3474,7 @@ - mucosa of tongue (EFO) - EFO:0002553 + mucosa of tongue (EFO) @@ -4160,8 +3483,7 @@ - fundus of stomach (EFO) - EFO:0002554 + fundus of stomach (EFO) @@ -4170,8 +3492,7 @@ - pyloric antrum (EFO) - EFO:0002555 + pyloric antrum (EFO) @@ -4180,8 +3501,7 @@ - epithelium of pancreatic duct (EFO) - EFO:0002556 + epithelium of pancreatic duct (EFO) @@ -4190,8 +3510,7 @@ - pancreas mesenchyme (EFO) - EFO:0002557 + pancreas mesenchyme (EFO) @@ -4200,8 +3519,7 @@ - parotid gland (EFO) - EFO:0002558 + parotid gland (EFO) @@ -4210,8 +3528,7 @@ - main ciliary ganglion (EFO) - EFO:0002559 + main ciliary ganglion (EFO) @@ -4220,8 +3537,7 @@ - definitive endoderm (EFO) - EFO:0002574 + definitive endoderm (EFO) @@ -4230,8 +3546,7 @@ - liver primordium (EFO) - EFO:0002577 + liver primordium (EFO) @@ -4240,8 +3555,7 @@ - lung primordium (EFO) - EFO:0002578 + lung primordium (EFO) @@ -4250,8 +3564,7 @@ - pancreas primordium (EFO) - EFO:0002579 + pancreas primordium (EFO) @@ -4260,8 +3573,7 @@ - stomach primordium (EFO) - EFO:0002580 + stomach primordium (EFO) @@ -4270,8 +3582,7 @@ - aorta endothelium (EFO) - EFO:0002597 + aorta endothelium (EFO) @@ -4280,8 +3591,7 @@ - pupa (EFO) - EFO:0002684 + pupa (EFO) @@ -4290,8 +3600,7 @@ - post-anal tail bud (EFO) - EFO:0002748 + post-anal tail bud (EFO) @@ -4300,8 +3609,7 @@ - aorta smooth muscle tissue (EFO) - EFO:0002775 + aorta smooth muscle tissue (EFO) @@ -4310,8 +3618,7 @@ - chorion membrane (EFO) - EFO:0002780 + chorion membrane (EFO) @@ -4320,8 +3627,7 @@ - pelvic region of trunk (EFO) - EFO:0002805 + pelvic region of trunk (EFO) @@ -4330,8 +3636,7 @@ - retroperitoneal space (EFO) - EFO:0002806 + retroperitoneal space (EFO) @@ -4340,8 +3645,7 @@ - multicellular organism (EFO) - EFO:0002906 + multicellular organism (EFO) @@ -4350,8 +3654,7 @@ - endocrine system (EFO) - EFO:0002969 + endocrine system (EFO) @@ -4360,8 +3663,7 @@ - colonic mucosa (EFO) - EFO:0003038 + colonic mucosa (EFO) @@ -4370,8 +3672,7 @@ - epithelium of esophagus (EFO) - EFO:0003041 + epithelium of esophagus (EFO) @@ -4380,8 +3681,7 @@ - ilium (EFO) - EFO:0003049 + ilium (EFO) @@ -4390,8 +3690,7 @@ - hindlimb zeugopod (EFO) - EFO:0003051 + hindlimb zeugopod (EFO) @@ -4400,8 +3699,7 @@ - fibula (EFO) - EFO:0003052 + fibula (EFO) @@ -4410,8 +3708,7 @@ - forelimb zeugopod (EFO) - EFO:0003053 + forelimb zeugopod (EFO) @@ -4420,8 +3717,7 @@ - tibia (EFO) - EFO:0003054 + tibia (EFO) @@ -4430,8 +3726,7 @@ - mediastinum (EFO) - EFO:0003057 + mediastinum (EFO) @@ -4440,8 +3735,7 @@ - common fibular nerve (EFO) - EFO:0003062 + common fibular nerve (EFO) @@ -4450,8 +3744,7 @@ - pes (EFO) - EFO:0003065 + pes (EFO) @@ -4460,8 +3753,7 @@ - rib (EFO) - EFO:0003066 + rib (EFO) @@ -4470,8 +3762,7 @@ - latissimus dorsi muscle (EFO) - EFO:0003067 + latissimus dorsi muscle (EFO) @@ -4480,8 +3771,7 @@ - shoulder (EFO) - EFO:0003068 + shoulder (EFO) @@ -4490,8 +3780,7 @@ - elbow (EFO) - EFO:0003069 + elbow (EFO) @@ -4500,8 +3789,7 @@ - buttock (EFO) - EFO:0003070 + buttock (EFO) @@ -4510,8 +3798,7 @@ - fused sacrum (EFO) - EFO:0003071 + fused sacrum (EFO) @@ -4520,8 +3807,7 @@ - eye trabecular meshwork (EFO) - EFO:0003077 + eye trabecular meshwork (EFO) @@ -4530,8 +3816,7 @@ - yolk sac (EFO) - EFO:0003078 + yolk sac (EFO) @@ -4540,8 +3825,7 @@ - myocardium of atrium (EFO) - EFO:0003087 + myocardium of atrium (EFO) @@ -4550,8 +3834,7 @@ - myocardium of ventricle (EFO) - EFO:0003088 + myocardium of ventricle (EFO) @@ -4560,8 +3843,7 @@ - mesectoderm (EFO) - EFO:0003336 + mesectoderm (EFO) @@ -4570,8 +3852,7 @@ - head mesenchyme from mesoderm (EFO) - EFO:0003337 + head mesenchyme from mesoderm (EFO) @@ -4580,8 +3861,7 @@ - olfactory placode (EFO) - EFO:0003420 + olfactory placode (EFO) @@ -4590,8 +3870,7 @@ - presumptive segmental plate (EFO) - EFO:0003421 + presumptive segmental plate (EFO) @@ -4600,8 +3879,7 @@ - future forebrain (EFO) - EFO:0003423 + future forebrain (EFO) @@ -4610,8 +3888,7 @@ - presumptive neural plate (EFO) - EFO:0003424 + presumptive neural plate (EFO) @@ -4620,8 +3897,7 @@ - enveloping layer of ectoderm (EFO) - EFO:0003425 + enveloping layer of ectoderm (EFO) @@ -4630,8 +3906,7 @@ - chordamesoderm (EFO) - EFO:0003426 + chordamesoderm (EFO) @@ -4640,8 +3915,7 @@ - germ ring (EFO) - EFO:0003427 + germ ring (EFO) @@ -4650,8 +3924,7 @@ - liver primordium (EFO) - EFO:0003428 + liver primordium (EFO) @@ -4660,8 +3933,7 @@ - otic placode (EFO) - EFO:0003429 + otic placode (EFO) @@ -4670,8 +3942,7 @@ - pectoral appendage bud (EFO) - EFO:0003430 + pectoral appendage bud (EFO) @@ -4680,8 +3951,7 @@ - future brain (EFO) - EFO:0003431 + future brain (EFO) @@ -4690,8 +3960,7 @@ - presumptive midbrain (EFO) - EFO:0003432 + presumptive midbrain (EFO) @@ -4700,8 +3969,7 @@ - trigeminal placode complex (EFO) - EFO:0003433 + trigeminal placode complex (EFO) @@ -4710,8 +3978,7 @@ - pancreas primordium (EFO) - EFO:0003434 + pancreas primordium (EFO) @@ -4720,8 +3987,7 @@ - presumptive endoderm (EFO) - EFO:0003437 + presumptive endoderm (EFO) @@ -4730,8 +3996,7 @@ - future spinal cord (EFO) - EFO:0003438 + future spinal cord (EFO) @@ -4740,8 +4005,7 @@ - presumptive blood (EFO) - EFO:0003439 + presumptive blood (EFO) @@ -4750,8 +4014,7 @@ - presumptive hindbrain (EFO) - EFO:0003440 + presumptive hindbrain (EFO) @@ -4760,8 +4023,7 @@ - future diencephalon (EFO) - EFO:0003442 + future diencephalon (EFO) @@ -4770,8 +4032,7 @@ - presumptive paraxial mesoderm (EFO) - EFO:0003443 + presumptive paraxial mesoderm (EFO) @@ -4780,8 +4041,7 @@ - presumptive shield (EFO) - EFO:0003444 + presumptive shield (EFO) @@ -4790,8 +4050,7 @@ - presumptive midbrain hindbrain boundary (EFO) - EFO:0003446 + presumptive midbrain hindbrain boundary (EFO) @@ -4800,8 +4059,7 @@ - presumptive rhombomere 7 (EFO) - EFO:0003447 + presumptive rhombomere 7 (EFO) @@ -4810,8 +4068,7 @@ - presumptive rhombomere 6 (EFO) - EFO:0003448 + presumptive rhombomere 6 (EFO) @@ -4820,8 +4077,7 @@ - presumptive rhombomere 5 (EFO) - EFO:0003449 + presumptive rhombomere 5 (EFO) @@ -4830,8 +4086,7 @@ - presumptive rhombomere 4 (EFO) - EFO:0003450 + presumptive rhombomere 4 (EFO) @@ -4840,8 +4095,7 @@ - presumptive rhombomere 3 (EFO) - EFO:0003451 + presumptive rhombomere 3 (EFO) @@ -4850,8 +4104,7 @@ - presumptive rhombomere 8 (EFO) - EFO:0003452 + presumptive rhombomere 8 (EFO) @@ -4860,8 +4113,7 @@ - presumptive hypochord (EFO) - EFO:0003453 + presumptive hypochord (EFO) @@ -4870,8 +4122,7 @@ - presumptive floor plate (EFO) - EFO:0003454 + presumptive floor plate (EFO) @@ -4880,8 +4131,7 @@ - epibranchial placode (EFO) - EFO:0003455 + epibranchial placode (EFO) @@ -4890,8 +4140,7 @@ - neurogenic placode (EFO) - EFO:0003460 + neurogenic placode (EFO) @@ -4900,8 +4149,7 @@ - anterior lateral line placode (EFO) - EFO:0003461 + anterior lateral line placode (EFO) @@ -4910,8 +4158,7 @@ - presumptive enteric nervous system (EFO) - EFO:0003462 + presumptive enteric nervous system (EFO) @@ -4920,8 +4167,7 @@ - presumptive forebrain midbrain boundary (EFO) - EFO:0003463 + presumptive forebrain midbrain boundary (EFO) @@ -4930,8 +4176,7 @@ - ventral pancreatic bud (EFO) - EFO:0003464 + ventral pancreatic bud (EFO) @@ -4940,8 +4185,7 @@ - dorsal pancreatic bud (EFO) - EFO:0003465 + dorsal pancreatic bud (EFO) @@ -4950,8 +4194,7 @@ - presumptive ectoderm (EFO) - EFO:0003466 + presumptive ectoderm (EFO) @@ -4960,8 +4203,7 @@ - presumptive mesoderm (EFO) - EFO:0003467 + presumptive mesoderm (EFO) @@ -4970,8 +4212,7 @@ - paired fin bud (EFO) - EFO:0003468 + paired fin bud (EFO) @@ -4980,8 +4221,7 @@ - pelvic appendage bud (EFO) - EFO:0003469 + pelvic appendage bud (EFO) @@ -4990,8 +4230,7 @@ - pancreatic epithelial bud (EFO) - EFO:0003470 + pancreatic epithelial bud (EFO) @@ -5000,8 +4239,7 @@ - caudal artery (EFO) - EFO:0003472 + caudal artery (EFO) @@ -5010,8 +4248,7 @@ - floor plate (EFO) - EFO:0003473 + floor plate (EFO) @@ -5020,8 +4257,7 @@ - macula of utricle of membranous labyrinth (EFO) - EFO:0003474 + macula of utricle of membranous labyrinth (EFO) @@ -5030,8 +4266,7 @@ - hypochord (EFO) - EFO:0003475 + hypochord (EFO) @@ -5040,8 +4275,7 @@ - postoptic commissure (EFO) - EFO:0003478 + postoptic commissure (EFO) @@ -5050,8 +4284,7 @@ - pronephric mesoderm (EFO) - EFO:0003479 + pronephric mesoderm (EFO) @@ -5060,8 +4293,7 @@ - rhombomere 6 (EFO) - EFO:0003480 + rhombomere 6 (EFO) @@ -5070,8 +4302,7 @@ - swim bladder (EFO) - EFO:0003483 + swim bladder (EFO) @@ -5080,8 +4311,7 @@ - trigeminal neural crest (EFO) - EFO:0003484 + trigeminal neural crest (EFO) @@ -5090,8 +4320,7 @@ - trunk mesenchyme (EFO) - EFO:0003485 + trunk mesenchyme (EFO) @@ -5100,8 +4329,7 @@ - pectoral appendage apical ectodermal ridge (EFO) - EFO:0003487 + pectoral appendage apical ectodermal ridge (EFO) @@ -5110,8 +4338,7 @@ - blood island (EFO) - EFO:0003489 + blood island (EFO) @@ -5120,8 +4347,7 @@ - vasculature of brain (EFO) - EFO:0003491 + vasculature of brain (EFO) @@ -5130,8 +4356,7 @@ - head mesenchyme (EFO) - EFO:0003492 + head mesenchyme (EFO) @@ -5140,8 +4365,7 @@ - lateral line ganglion (EFO) - EFO:0003493 + lateral line ganglion (EFO) @@ -5150,8 +4374,7 @@ - lens placode (EFO) - EFO:0003494 + lens placode (EFO) @@ -5160,8 +4383,7 @@ - olfactory pit (EFO) - EFO:0003496 + olfactory pit (EFO) @@ -5170,8 +4392,7 @@ - neural keel (EFO) - EFO:0003497 + neural keel (EFO) @@ -5180,8 +4401,7 @@ - neural rod (EFO) - EFO:0003498 + neural rod (EFO) @@ -5190,8 +4410,7 @@ - rhombomere 8 (EFO) - EFO:0003500 + rhombomere 8 (EFO) @@ -5200,8 +4419,7 @@ - midbrain cerebral aqueduct (EFO) - EFO:0003501 + midbrain cerebral aqueduct (EFO) @@ -5210,8 +4428,7 @@ - basibranchial bone (EFO) - EFO:0003503 + basibranchial bone (EFO) @@ -5220,8 +4437,7 @@ - chordate pharyngeal muscle (EFO) - EFO:0003504 + chordate pharyngeal muscle (EFO) @@ -5230,8 +4446,7 @@ - bulbus arteriosus (EFO) - EFO:0003505 + bulbus arteriosus (EFO) @@ -5240,8 +4455,7 @@ - cleithrum (EFO) - EFO:0003507 + cleithrum (EFO) @@ -5250,8 +4464,7 @@ - dentary (EFO) - EFO:0003508 + dentary (EFO) @@ -5260,8 +4473,7 @@ - jaw muscle (EFO) - EFO:0003511 + jaw muscle (EFO) @@ -5270,8 +4482,7 @@ - neuromast (EFO) - EFO:0003513 + neuromast (EFO) @@ -5280,8 +4491,7 @@ - paraxial mesoderm (EFO) - EFO:0003515 + paraxial mesoderm (EFO) @@ -5290,8 +4500,7 @@ - ventral part of telencephalon (EFO) - EFO:0003522 + ventral part of telencephalon (EFO) @@ -5300,8 +4509,7 @@ - cranial muscle (EFO) - EFO:0003524 + cranial muscle (EFO) @@ -5310,8 +4518,7 @@ - olfactory region (EFO) - EFO:0003525 + olfactory region (EFO) @@ -5320,8 +4527,7 @@ - heart tube (EFO) - EFO:0003526 + heart tube (EFO) @@ -5330,8 +4536,7 @@ - articular/anguloarticular (EFO) - EFO:0003530 + articular/anguloarticular (EFO) @@ -5340,8 +4545,7 @@ - musculature of trunk (EFO) - EFO:0003531 + musculature of trunk (EFO) @@ -5350,8 +4554,7 @@ - pallium (EFO) - EFO:0003534 + pallium (EFO) @@ -5360,8 +4563,7 @@ - hyoid muscle (EFO) - EFO:0003536 + hyoid muscle (EFO) @@ -5370,8 +4572,7 @@ - otolith organ (EFO) - EFO:0003539 + otolith organ (EFO) @@ -5380,8 +4581,7 @@ - pectoral appendage musculature (EFO) - EFO:0003540 + pectoral appendage musculature (EFO) @@ -5390,8 +4590,7 @@ - eye primordium (EFO) - EFO:0003541 + eye primordium (EFO) @@ -5400,8 +4599,7 @@ - prootic bone (EFO) - EFO:0003542 + prootic bone (EFO) @@ -5410,8 +4608,7 @@ - vestibulocochlear ganglion (EFO) - EFO:0003543 + vestibulocochlear ganglion (EFO) @@ -5420,8 +4617,7 @@ - quadrate bone (EFO) - EFO:0003547 + quadrate bone (EFO) @@ -5430,8 +4626,7 @@ - dorsal fin musculature (EFO) - EFO:0003551 + dorsal fin musculature (EFO) @@ -5440,8 +4635,7 @@ - ectopterygoid bone (EFO) - EFO:0003552 + ectopterygoid bone (EFO) @@ -5450,8 +4644,7 @@ - gill filament (EFO) - EFO:0003554 + gill filament (EFO) @@ -5460,8 +4653,7 @@ - horizontal septum (EFO) - EFO:0003555 + horizontal septum (EFO) @@ -5470,8 +4662,7 @@ - hyomandibular bone (EFO) - EFO:0003556 + hyomandibular bone (EFO) @@ -5480,8 +4671,7 @@ - segmental intercostal artery (EFO) - EFO:0003558 + segmental intercostal artery (EFO) @@ -5490,8 +4680,7 @@ - early telencephalic vesicle (EFO) - EFO:0003562 + early telencephalic vesicle (EFO) @@ -5500,8 +4689,7 @@ - midbrain basal plate (EFO) - EFO:0003567 + midbrain basal plate (EFO) @@ -5510,8 +4698,7 @@ - rhombomere 2 floor plate (EFO) - EFO:0003568 + rhombomere 2 floor plate (EFO) @@ -5520,8 +4707,7 @@ - rhombomere 5 floor plate (EFO) - EFO:0003569 + rhombomere 5 floor plate (EFO) @@ -5530,8 +4716,7 @@ - rhombomere 8 floor plate (EFO) - EFO:0003570 + rhombomere 8 floor plate (EFO) @@ -5540,8 +4725,7 @@ - mesenchyme derived from head neural crest (EFO) - EFO:0003572 + mesenchyme derived from head neural crest (EFO) @@ -5550,8 +4734,7 @@ - diencephalon neural crest (EFO) - EFO:0003573 + diencephalon neural crest (EFO) @@ -5560,8 +4743,7 @@ - telencephalon neural crest (EFO) - EFO:0003574 + telencephalon neural crest (EFO) @@ -5570,8 +4752,7 @@ - nucleus of medial longitudinal fasciculus of medulla (EFO) - EFO:0003577 + nucleus of medial longitudinal fasciculus of medulla (EFO) @@ -5580,8 +4761,7 @@ - rhombomere 2 (EFO) - EFO:0003579 + rhombomere 2 (EFO) @@ -5590,8 +4770,7 @@ - rhombomere 5 (EFO) - EFO:0003580 + rhombomere 5 (EFO) @@ -5600,8 +4779,7 @@ - rhombomere 1 floor plate (EFO) - EFO:0003584 + rhombomere 1 floor plate (EFO) @@ -5610,8 +4788,7 @@ - rhombomere 3 floor plate (EFO) - EFO:0003586 + rhombomere 3 floor plate (EFO) @@ -5620,8 +4797,7 @@ - rhombomere 6 floor plate (EFO) - EFO:0003587 + rhombomere 6 floor plate (EFO) @@ -5630,8 +4806,7 @@ - rhombomere 4 floor plate (EFO) - EFO:0003588 + rhombomere 4 floor plate (EFO) @@ -5640,8 +4815,7 @@ - rhombomere 7 floor plate (EFO) - EFO:0003589 + rhombomere 7 floor plate (EFO) @@ -5650,8 +4824,7 @@ - lateral mesenchyme derived from mesoderm (EFO) - EFO:0003590 + lateral mesenchyme derived from mesoderm (EFO) @@ -5660,8 +4833,7 @@ - mesencephalic neural crest (EFO) - EFO:0003591 + mesencephalic neural crest (EFO) @@ -5670,8 +4842,7 @@ - middle lateral line neuromast (EFO) - EFO:0003592 + middle lateral line neuromast (EFO) @@ -5680,8 +4851,7 @@ - pectoral fin skeleton (EFO) - EFO:0003594 + pectoral fin skeleton (EFO) @@ -5690,8 +4860,7 @@ - posterior lateral line (EFO) - EFO:0003595 + posterior lateral line (EFO) @@ -5700,8 +4869,7 @@ - rhombomere 3 (EFO) - EFO:0003596 + rhombomere 3 (EFO) @@ -5710,8 +4878,7 @@ - rhombomere 7 (EFO) - EFO:0003597 + rhombomere 7 (EFO) @@ -5720,8 +4887,7 @@ - spinal cord lateral wall (EFO) - EFO:0003602 + spinal cord lateral wall (EFO) @@ -5730,8 +4896,7 @@ - head mesenchyme from mesoderm (EFO) - EFO:0003603 + head mesenchyme from mesoderm (EFO) @@ -5740,8 +4905,7 @@ - mesenchyme pectoral fin (EFO) - EFO:0003604 + mesenchyme pectoral fin (EFO) @@ -5750,8 +4914,7 @@ - trunk neural crest (EFO) - EFO:0003605 + trunk neural crest (EFO) @@ -5760,8 +4923,7 @@ - occipital lateral line neuromast (EFO) - EFO:0003606 + occipital lateral line neuromast (EFO) @@ -5770,8 +4932,7 @@ - supraorbital lateral line neuromast (EFO) - EFO:0003607 + supraorbital lateral line neuromast (EFO) @@ -5780,8 +4941,7 @@ - rhombomere 1 (EFO) - EFO:0003608 + rhombomere 1 (EFO) @@ -5790,8 +4950,7 @@ - rhombomere 4 (EFO) - EFO:0003609 + rhombomere 4 (EFO) @@ -5800,8 +4959,7 @@ - future internal carotid artery (EFO) - EFO:0003612 + future internal carotid artery (EFO) @@ -5810,8 +4968,7 @@ - presumptive mesencephalic artery (EFO) - EFO:0003615 + presumptive mesencephalic artery (EFO) @@ -5820,8 +4977,7 @@ - caudal vein (EFO) - EFO:0003616 + caudal vein (EFO) @@ -5830,8 +4986,7 @@ - rhombomere (EFO) - EFO:0003617 + rhombomere (EFO) @@ -5840,8 +4995,7 @@ - neural arch (EFO) - EFO:0003618 + neural arch (EFO) @@ -5850,8 +5004,7 @@ - presumptive pronephric mesoderm (EFO) - EFO:0003619 + presumptive pronephric mesoderm (EFO) @@ -5860,8 +5013,7 @@ - thymus primordium (EFO) - EFO:0003622 + thymus primordium (EFO) @@ -5870,8 +5022,7 @@ - chordo neural hinge (EFO) - EFO:0003623 + chordo neural hinge (EFO) @@ -5880,8 +5031,7 @@ - ventricular zone (EFO) - EFO:0003624 + ventricular zone (EFO) @@ -5890,8 +5040,7 @@ - early pharyngeal endoderm (EFO) - EFO:0003626 + early pharyngeal endoderm (EFO) @@ -5900,8 +5049,7 @@ - pharyngeal pouch (EFO) - EFO:0003627 + pharyngeal pouch (EFO) @@ -5910,8 +5058,7 @@ - granulosa cell layer (EFO) - EFO:0003628 + granulosa cell layer (EFO) @@ -5920,8 +5067,7 @@ - theca cell layer (EFO) - EFO:0003629 + theca cell layer (EFO) @@ -5930,8 +5076,7 @@ - pharyngeal pouch 1 (EFO) - EFO:0003631 + pharyngeal pouch 1 (EFO) @@ -5940,8 +5085,7 @@ - pharyngeal pouch 2 (EFO) - EFO:0003633 + pharyngeal pouch 2 (EFO) @@ -5950,8 +5094,7 @@ - pharyngeal pouch 3 (EFO) - EFO:0003634 + pharyngeal pouch 3 (EFO) @@ -5960,8 +5103,7 @@ - pharyngeal pouch 6 (EFO) - EFO:0003635 + pharyngeal pouch 6 (EFO) @@ -5970,8 +5112,7 @@ - pharyngeal pouch 5 (EFO) - EFO:0003636 + pharyngeal pouch 5 (EFO) @@ -5980,8 +5121,7 @@ - pharyngeal pouch 4 (EFO) - EFO:0003637 + pharyngeal pouch 4 (EFO) @@ -5990,8 +5130,7 @@ - non-neural ectoderm (EFO) - EFO:0003643 + non-neural ectoderm (EFO) @@ -6000,8 +5139,7 @@ - pelvic fin (EFO) - EFO:0003644 + pelvic fin (EFO) @@ -6010,8 +5148,7 @@ - cranial neural crest (EFO) - EFO:0003645 + cranial neural crest (EFO) @@ -6020,8 +5157,7 @@ - axial mesoderm (EFO) - EFO:0003647 + axial mesoderm (EFO) @@ -6030,8 +5166,7 @@ - ventricular system of central nervous system (EFO) - EFO:0003650 + ventricular system of central nervous system (EFO) @@ -6040,8 +5175,7 @@ - gonad primordium (EFO) - EFO:0003651 + gonad primordium (EFO) @@ -6050,8 +5184,7 @@ - mature ovarian follicle (EFO) - EFO:0003653 + mature ovarian follicle (EFO) @@ -6060,8 +5193,7 @@ - vasculature of head (EFO) - EFO:0003656 + vasculature of head (EFO) @@ -6070,8 +5202,7 @@ - regenerating fin/limb (EFO) - EFO:0003657 + regenerating fin/limb (EFO) @@ -6080,8 +5211,7 @@ - blastema (EFO) - EFO:0003658 + blastema (EFO) @@ -6090,8 +5220,7 @@ - palatoquadrate arch (EFO) - EFO:0003659 + palatoquadrate arch (EFO) @@ -6100,8 +5229,7 @@ - lower jaw region (EFO) - EFO:0003660 + lower jaw region (EFO) @@ -6110,8 +5238,7 @@ - intersomitic vessel (EFO) - EFO:0003664 + intersomitic vessel (EFO) @@ -6120,8 +5247,7 @@ - nephron tubule (EFO) - EFO:0003666 + nephron tubule (EFO) @@ -6130,8 +5256,7 @@ - renal glomerulus (EFO) - EFO:0003667 + renal glomerulus (EFO) @@ -6140,8 +5265,7 @@ - ciliary marginal zone (EFO) - EFO:0003668 + ciliary marginal zone (EFO) @@ -6150,8 +5274,7 @@ - geniculate ganglion (EFO) - EFO:0003669 + geniculate ganglion (EFO) @@ -6160,8 +5283,7 @@ - dorsal anterior lateral line ganglion (EFO) - EFO:0003674 + dorsal anterior lateral line ganglion (EFO) @@ -6170,8 +5292,7 @@ - neurocranial trabecula (EFO) - EFO:0003677 + neurocranial trabecula (EFO) @@ -6180,8 +5301,7 @@ - terminal nerve (EFO) - EFO:0003678 + terminal nerve (EFO) @@ -6190,8 +5310,7 @@ - pelvic appendage apical ectodermal ridge (EFO) - EFO:0003681 + pelvic appendage apical ectodermal ridge (EFO) @@ -6200,8 +5319,7 @@ - regeneration epithelium of fin/limb (EFO) - EFO:0003682 + regeneration epithelium of fin/limb (EFO) @@ -6210,8 +5328,7 @@ - anterior lateral line ganglion (EFO) - EFO:0003683 + anterior lateral line ganglion (EFO) @@ -6220,8 +5337,7 @@ - ventral hyoid arch skeleton (EFO) - EFO:0003684 + ventral hyoid arch skeleton (EFO) @@ -6230,8 +5346,7 @@ - ethmoid cartilage (EFO) - EFO:0003685 + ethmoid cartilage (EFO) @@ -6240,8 +5355,7 @@ - hyomandibular cartilage (EFO) - EFO:0003686 + hyomandibular cartilage (EFO) @@ -6250,8 +5364,7 @@ - floor plate of neural tube (EFO) - EFO:0003688 + floor plate of neural tube (EFO) @@ -6260,8 +5373,7 @@ - pharyngeal arch cartilage (EFO) - EFO:0003689 + pharyngeal arch cartilage (EFO) @@ -6270,8 +5382,7 @@ - cartilage element of chondrocranium (EFO) - EFO:0003690 + cartilage element of chondrocranium (EFO) @@ -6280,8 +5391,7 @@ - anterior lateral line system (EFO) - EFO:0003691 + anterior lateral line system (EFO) @@ -6290,8 +5400,7 @@ - post-hyoid pharyngeal arch (EFO) - EFO:0003694 + post-hyoid pharyngeal arch (EFO) @@ -6300,8 +5409,7 @@ - pharyngeal arch artery (EFO) - EFO:0003695 + pharyngeal arch artery (EFO) @@ -6310,8 +5418,7 @@ - ventral wall of dorsal aorta (EFO) - EFO:0003699 + ventral wall of dorsal aorta (EFO) @@ -6320,8 +5427,7 @@ - anterior lateral plate mesoderm (EFO) - EFO:0003704 + anterior lateral plate mesoderm (EFO) @@ -6330,8 +5436,7 @@ - posterior lateral plate mesoderm (EFO) - EFO:0003705 + posterior lateral plate mesoderm (EFO) @@ -6340,8 +5445,7 @@ - myocardium trabecular layer (EFO) - EFO:0003706 + myocardium trabecular layer (EFO) @@ -6350,8 +5454,7 @@ - primordial vasculature (EFO) - EFO:0003708 + primordial vasculature (EFO) @@ -6360,8 +5463,7 @@ - vascular cord (EFO) - EFO:0003709 + vascular cord (EFO) @@ -6370,8 +5472,7 @@ - adipose tissue of abdominal region (EFO) - EFO:0003771 + adipose tissue of abdominal region (EFO) @@ -6380,8 +5481,7 @@ - hindlimb bone (EFO) - EFO:0003842 + hindlimb bone (EFO) @@ -6390,8 +5490,7 @@ - genitourinary system (EFO) - EFO:0003864 + genitourinary system (EFO) @@ -6400,8 +5499,7 @@ - aortic valve (EFO) - EFO:0003879 + aortic valve (EFO) @@ -6410,8 +5508,7 @@ - metacarpal bone (EFO) - EFO:0003886 + metacarpal bone (EFO) @@ -6420,8 +5517,7 @@ - conducting system of heart (EFO) - EFO:0003909 + conducting system of heart (EFO) @@ -6430,8 +5526,7 @@ - mitral valve (EFO) - EFO:0003933 + mitral valve (EFO) @@ -6440,8 +5535,7 @@ - perineum (EFO) - EFO:0004141 + perineum (EFO) @@ -6450,8 +5544,7 @@ - external ear (EFO) - EFO:0004221 + external ear (EFO) @@ -6460,8 +5553,7 @@ - brachial artery (EFO) - EFO:0004231 + brachial artery (EFO) @@ -6470,8 +5562,7 @@ - iris (EFO) - EFO:0004245 + iris (EFO) @@ -6480,8 +5571,7 @@ - cranial nerve II (EFO) - EFO:0004258 + cranial nerve II (EFO) @@ -6490,8 +5580,7 @@ - central retinal vein (EFO) - EFO:0004271 + central retinal vein (EFO) @@ -6500,8 +5589,7 @@ - embryoid body (EFO) - EFO:0004988 + embryoid body (EFO) @@ -6510,8 +5598,7 @@ - airway submucosal gland (EFO) - EFO:0010666 + airway submucosal gland (EFO) @@ -6666,12 +5753,6 @@ - - - - - - @@ -8262,12 +7343,6 @@ - - - - - - @@ -9696,12 +8771,6 @@ - - - - - - @@ -10225,5 +9294,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-ehdaa2.obo b/src/ontology/bridge/uberon-bridge-to-ehdaa2.obo deleted file mode 100644 index 21f8e5b8de..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-ehdaa2.obo +++ /dev/null @@ -1,8965 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-ehdaa2 -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to ehdaa2" xsd:string -property_value: dc-description "Equivalence axioms between EHDAA2 and Uberon. EHDAA2 replaces EHDAA" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Jonathan Bard" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/ehdaa2.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: EHDAA2:0001225 ! -property_value: IAO:0000589 "naris (embryonic human)" xsd:string -intersection_of: UBERON:0000003 ! naris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001274 ! -property_value: IAO:0000589 "nose (embryonic human)" xsd:string -intersection_of: UBERON:0000004 ! nose -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001471 ! -property_value: IAO:0000589 "pituitary gland (embryonic human)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001445 ! -property_value: IAO:0000589 "peripheral nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001402 ! -property_value: IAO:0000589 "parasympathetic nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001971 ! -property_value: IAO:0000589 "sympathetic nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001844 ! -property_value: IAO:0000589 "zone of skin (embryonic human)" xsd:string -intersection_of: UBERON:0000014 ! zone of skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000484 ! -property_value: IAO:0000589 "camera-type eye (embryonic human)" xsd:string -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001824 ! -property_value: IAO:0000589 "sense organ (embryonic human)" xsd:string -intersection_of: UBERON:0000020 ! sense organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003193 ! -property_value: IAO:0000589 "appendage (embryonic human)" xsd:string -intersection_of: UBERON:0000026 ! appendage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003106 ! -property_value: IAO:0000589 "head (embryonic human)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003091 ! -property_value: IAO:0000589 "tendon (embryonic human)" xsd:string -intersection_of: UBERON:0000043 ! tendon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000418 ! -property_value: IAO:0000589 "dorsal root ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001897 ! -property_value: IAO:0000589 "dorsal root ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003135 ! -property_value: IAO:0000589 "ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002139 ! -property_value: IAO:0000589 "ureter (embryonic human)" xsd:string -intersection_of: UBERON:0000056 ! ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003003 ! -property_value: IAO:0000589 "anatomical structure (embryonic human)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001606 ! -property_value: IAO:0000589 "respiratory tract (embryonic human)" xsd:string -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001968 ! -property_value: IAO:0000589 "external ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001054 ! -property_value: IAO:0000589 "male reproductive system (embryonic human)" xsd:string -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001130 ! -property_value: IAO:0000589 "mesonephros (embryonic human)" xsd:string -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001137 ! -property_value: IAO:0000589 "metanephros (embryonic human)" xsd:string -intersection_of: UBERON:0000081 ! metanephros -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001134 ! -property_value: IAO:0000589 "mesonephric tubule (embryonic human)" xsd:string -intersection_of: UBERON:0000083 ! mesonephric tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002140 ! -property_value: IAO:0000589 "ureteric bud (embryonic human)" xsd:string -intersection_of: UBERON:0000084 ! ureteric bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000005 ! -property_value: IAO:0000589 "morula (embryonic human)" xsd:string -intersection_of: UBERON:0000085 ! morula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002220 ! -property_value: IAO:0000589 "zona pellucida (embryonic human)" xsd:string -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000830 ! -property_value: IAO:0000589 "inner cell mass (embryonic human)" xsd:string -intersection_of: UBERON:0000087 ! inner cell mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000175 ! -property_value: IAO:0000589 "blastocele (embryonic human)" xsd:string -intersection_of: UBERON:0000090 ! blastocele -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004089 ! -property_value: IAO:0000589 "lung bud (embryonic human)" xsd:string -intersection_of: UBERON:0000118 ! lung bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004638 ! -property_value: IAO:0000589 "facial nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0000127 ! facial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000256 ! -property_value: IAO:0000589 "embryonic cloaca (embryonic human)" xsd:string -intersection_of: UBERON:0000163 ! embryonic cloaca -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004060 ! -property_value: IAO:0000589 "primitive urogenital sinus (embryonic human)" xsd:string -intersection_of: UBERON:0000164 ! primitive urogenital sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001326 ! -property_value: IAO:0000589 "mouth (embryonic human)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001324 ! -property_value: IAO:0000589 "oral cavity (embryonic human)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000176 ! -property_value: IAO:0000589 "blood (embryonic human)" xsd:string -intersection_of: UBERON:0000178 ! blood -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000119 ! -property_value: IAO:0000589 "amniotic cavity (embryonic human)" xsd:string -intersection_of: UBERON:0000301 ! amniotic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000116 ! -property_value: IAO:0000589 "amnion (embryonic human)" xsd:string -intersection_of: UBERON:0000305 ! amnion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002088 ! -property_value: IAO:0000589 "ophthalmic nerve (embryonic human)" xsd:string -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000596 ! -property_value: IAO:0000589 "corpus striatum (embryonic human)" xsd:string -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002086 ! -property_value: IAO:0000589 "mandibular nerve (embryonic human)" xsd:string -intersection_of: UBERON:0000375 ! mandibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002130 ! -property_value: IAO:0000589 "hindlimb stylopod (embryonic human)" xsd:string -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002087 ! -property_value: IAO:0000589 "maxillary nerve (embryonic human)" xsd:string -intersection_of: UBERON:0000377 ! maxillary nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002065 ! -property_value: IAO:0000589 "tongue muscle (embryonic human)" xsd:string -intersection_of: UBERON:0000378 ! tongue muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004081 ! -property_value: IAO:0000589 "epiglottis (embryonic human)" xsd:string -intersection_of: UBERON:0000388 ! epiglottis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002198 ! -property_value: IAO:0000589 "cochlear ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0000395 ! cochlear ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003004 ! -property_value: IAO:0000589 "organism substance (embryonic human)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003005 ! -property_value: IAO:0000589 "anatomical space (embryonic human)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003006 ! -property_value: IAO:0000589 "material anatomical entity (embryonic human)" xsd:string -intersection_of: UBERON:0000465 ! material anatomical entity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003007 ! -property_value: IAO:0000589 "immaterial anatomical entity (embryonic human)" xsd:string -intersection_of: UBERON:0000466 ! immaterial anatomical entity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003011 ! -property_value: IAO:0000589 "anatomical system (embryonic human)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003103 ! -property_value: IAO:0000589 "multicellular organism (embryonic human)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003191 ! -property_value: IAO:0000589 "multicellular organism (embryonic human)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003019 ! -property_value: IAO:0000589 "compound organ component (embryonic human)" xsd:string -intersection_of: UBERON:0000471 ! compound organ component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003190 ! -property_value: IAO:0000589 "simple organ (embryonic human)" xsd:string -intersection_of: UBERON:0000472 ! simple organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002007 ! -property_value: IAO:0000589 "testis (embryonic human)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000506 ! -property_value: IAO:0000589 "female reproductive system (embryonic human)" xsd:string -intersection_of: UBERON:0000474 ! female reproductive system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003032 ! -property_value: IAO:0000589 "organism subdivision (embryonic human)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003040 ! -property_value: IAO:0000589 "acellular anatomical structure (embryonic human)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003042 ! -property_value: IAO:0000589 "extraembryonic structure (embryonic human)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003043 ! -property_value: IAO:0000589 "tissue (embryonic human)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003054 ! -property_value: IAO:0000589 "anatomical group (embryonic human)" xsd:string -intersection_of: UBERON:0000480 ! anatomical group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003055 ! -property_value: IAO:0000589 "multi-tissue structure (embryonic human)" xsd:string -intersection_of: UBERON:0000481 ! multi-tissue structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003065 ! -property_value: IAO:0000589 "basal lamina of epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003066 ! -property_value: IAO:0000589 "epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003067 ! -property_value: IAO:0000589 "simple cuboidal epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0000484 ! simple cuboidal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003069 ! -property_value: IAO:0000589 "multilaminar epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0000486 ! multilaminar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003070 ! -property_value: IAO:0000589 "simple squamous epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0000487 ! simple squamous epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003071 ! -property_value: IAO:0000589 "atypical epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0000488 ! atypical epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003072 ! -property_value: IAO:0000589 "cavitated compound organ (embryonic human)" xsd:string -intersection_of: UBERON:0000489 ! cavitated compound organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003073 ! -property_value: IAO:0000589 "unilaminar epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0000490 ! unilaminar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003074 ! -property_value: IAO:0000589 "solid compound organ (embryonic human)" xsd:string -intersection_of: UBERON:0000491 ! solid compound organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000002 ! -property_value: IAO:0000589 "embryo (embryonic human)" xsd:string -intersection_of: UBERON:0000922 ! embryo -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000428 ! -property_value: IAO:0000589 "ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000436 ! -property_value: IAO:0000589 "endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0000925 ! endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001128 ! -property_value: IAO:0000589 "mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001929 ! -property_value: IAO:0000589 "stomodeum (embryonic human)" xsd:string -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000121 ! -property_value: IAO:0000589 "proctodeum (embryonic human)" xsd:string -intersection_of: UBERON:0000931 ! proctodeum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001313 ! -property_value: IAO:0000589 "cranial nerve II (embryonic human)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001915 ! -property_value: IAO:0000589 "stomach (embryonic human)" xsd:string -intersection_of: UBERON:0000945 ! stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000738 ! -property_value: IAO:0000589 "heart (embryonic human)" xsd:string -intersection_of: UBERON:0000948 ! heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002224 ! -property_value: IAO:0000589 "endocrine system (embryonic human)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000183 ! -property_value: IAO:0000589 "brain (embryonic human)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000234 ! -property_value: IAO:0000589 "cerebral cortex (embryonic human)" xsd:string -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001302 ! -property_value: IAO:0000589 "optic chiasma (embryonic human)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000316 ! -property_value: IAO:0000589 "cornea (embryonic human)" xsd:string -intersection_of: UBERON:0000964 ! cornea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001627 ! -property_value: IAO:0000589 "retina (embryonic human)" xsd:string -intersection_of: UBERON:0000966 ! retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003108 ! -property_value: IAO:0000589 "neck (embryonic human)" xsd:string -intersection_of: UBERON:0000974 ! neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001914 ! -property_value: IAO:0000589 "sternum (embryonic human)" xsd:string -intersection_of: UBERON:0000975 ! sternum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000972 ! -property_value: IAO:0000589 "leg (embryonic human)" xsd:string -intersection_of: UBERON:0000978 ! leg -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004394 ! -property_value: IAO:0000589 "pons (embryonic human)" xsd:string -intersection_of: UBERON:0000988 ! pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001433 ! -property_value: IAO:0000589 "penis (embryonic human)" xsd:string -intersection_of: UBERON:0000989 ! penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001603 ! -property_value: IAO:0000589 "reproductive system (embryonic human)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001360 ! -property_value: IAO:0000589 "ovary (embryonic human)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001604 ! -property_value: IAO:0000589 "respiratory system (embryonic human)" xsd:string -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001601 ! -property_value: IAO:0000589 "renal system (embryonic human)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003120 ! -property_value: IAO:0000589 "adipose tissue (embryonic human)" xsd:string -intersection_of: UBERON:0001013 ! adipose tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001246 ! -property_value: IAO:0000589 "nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000225 ! -property_value: IAO:0000589 "central nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003137 ! -property_value: IAO:0000589 "nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003200 ! -property_value: IAO:0000589 "sensory nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001027 ! sensory nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003094 ! -property_value: IAO:0000589 "sensory system (embryonic human)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002212 ! -property_value: IAO:0000589 "yolk sac (embryonic human)" xsd:string -intersection_of: UBERON:0001040 ! yolk sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000557 ! -property_value: IAO:0000589 "foregut (embryonic human)" xsd:string -intersection_of: UBERON:0001041 ! foregut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001458 ! -property_value: IAO:0000589 "chordate pharynx (embryonic human)" xsd:string -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001285 ! -property_value: IAO:0000589 "esophagus (embryonic human)" xsd:string -intersection_of: UBERON:0001043 ! esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001775 ! -property_value: IAO:0000589 "saliva-secreting gland (embryonic human)" xsd:string -intersection_of: UBERON:0001044 ! saliva-secreting gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001185 ! -property_value: IAO:0000589 "midgut (embryonic human)" xsd:string -intersection_of: UBERON:0001045 ! midgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000779 ! -property_value: IAO:0000589 "hindgut (embryonic human)" xsd:string -intersection_of: UBERON:0001046 ! hindgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003171 ! -property_value: IAO:0000589 "primordium (embryonic human)" xsd:string -intersection_of: UBERON:0001048 ! primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001254 ! -property_value: IAO:0000589 "neural tube (embryonic human)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004574 ! -property_value: IAO:0000589 "hypopharynx (embryonic human)" xsd:string -intersection_of: UBERON:0001051 ! hypopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001592 ! -property_value: IAO:0000589 "rectum (embryonic human)" xsd:string -intersection_of: UBERON:0001052 ! rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002229 ! -property_value: IAO:0000589 "anatomical entity (embryonic human)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001396 ! -property_value: IAO:0000589 "ventral pancreatic duct (embryonic human)" xsd:string -intersection_of: UBERON:0001064 ! ventral pancreatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001374 ! -property_value: IAO:0000589 "head of pancreas (embryonic human)" xsd:string -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000461 ! -property_value: IAO:0000589 "external carotid artery (embryonic human)" xsd:string -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000611 ! -property_value: IAO:0000589 "posterior vena cava (embryonic human)" xsd:string -intersection_of: UBERON:0001072 ! posterior vena cava -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001434 ! -property_value: IAO:0000589 "pericardial cavity (embryonic human)" xsd:string -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004605 ! -property_value: IAO:0000589 "calcareous tooth (embryonic human)" xsd:string -intersection_of: UBERON:0001091 ! calcareous tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001425 ! -property_value: IAO:0000589 "pectoralis minor (embryonic human)" xsd:string -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000468 ! -property_value: IAO:0000589 "external jugular vein (embryonic human)" xsd:string -intersection_of: UBERON:0001101 ! external jugular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003495 ! -property_value: IAO:0000589 "diaphragm (embryonic human)" xsd:string -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000841 ! -property_value: IAO:0000589 "intercostal muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001111 ! intercostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000932 ! -property_value: IAO:0000589 "latissimus dorsi muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001008 ! -property_value: IAO:0000589 "right lobe of liver (embryonic human)" xsd:string -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001000 ! -property_value: IAO:0000589 "left lobe of liver (embryonic human)" xsd:string -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001012 ! -property_value: IAO:0000589 "quadrate lobe of liver (embryonic human)" xsd:string -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001005 ! -property_value: IAO:0000589 "caudate lobe of liver (embryonic human)" xsd:string -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002032 ! -property_value: IAO:0000589 "lobe of thyroid gland (embryonic human)" xsd:string -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001759 ! -property_value: IAO:0000589 "right lobe of thyroid gland (embryonic human)" xsd:string -intersection_of: UBERON:0001119 ! right lobe of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000965 ! -property_value: IAO:0000589 "left lobe of thyroid gland (embryonic human)" xsd:string -intersection_of: UBERON:0001120 ! left lobe of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001832 ! -property_value: IAO:0000589 "serratus ventralis (embryonic human)" xsd:string -intersection_of: UBERON:0001125 ! serratus ventralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001943 ! -property_value: IAO:0000589 "subscapularis muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003142 ! -property_value: IAO:0000589 "cardiac muscle tissue (embryonic human)" xsd:string -intersection_of: UBERON:0001133 ! cardiac muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003141 ! -property_value: IAO:0000589 "smooth muscle tissue (embryonic human)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001951 ! -property_value: IAO:0000589 "superior mesenteric vein (embryonic human)" xsd:string -intersection_of: UBERON:0001138 ! superior mesenteric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001602 ! -property_value: IAO:0000589 "renal vein (embryonic human)" xsd:string -intersection_of: UBERON:0001140 ! renal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001966 ! -property_value: IAO:0000589 "suprarenal vein (embryonic human)" xsd:string -intersection_of: UBERON:0001146 ! suprarenal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001086 ! -property_value: IAO:0000589 "median nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001148 ! median nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001368 ! -property_value: IAO:0000589 "body of pancreas (embryonic human)" xsd:string -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001390 ! -property_value: IAO:0000589 "tail of pancreas (embryonic human)" xsd:string -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000333 ! -property_value: IAO:0000589 "cystic duct (embryonic human)" xsd:string -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000206 ! -property_value: IAO:0000589 "caecum (embryonic human)" xsd:string -intersection_of: UBERON:0001153 ! caecum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000588 ! -property_value: IAO:0000589 "vermiform appendix (embryonic human)" xsd:string -intersection_of: UBERON:0001154 ! vermiform appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001919 ! -property_value: IAO:0000589 "fundus of stomach (embryonic human)" xsd:string -intersection_of: UBERON:0001160 ! fundus of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001580 ! -property_value: IAO:0000589 "pylorus (embryonic human)" xsd:string -intersection_of: UBERON:0001166 ! pylorus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000303 ! -property_value: IAO:0000589 "common bile duct (embryonic human)" xsd:string -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001727 ! -property_value: IAO:0000589 "right hepatic duct (embryonic human)" xsd:string -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000941 ! -property_value: IAO:0000589 "left hepatic duct (embryonic human)" xsd:string -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001446 ! -property_value: IAO:0000589 "peritoneal cavity (embryonic human)" xsd:string -intersection_of: UBERON:0001179 ! peritoneal cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001958 ! -property_value: IAO:0000589 "superior recess of lesser sac (embryonic human)" xsd:string -intersection_of: UBERON:0001180 ! superior recess of lesser sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000825 ! -property_value: IAO:0000589 "inferior recess of lesser sac (embryonic human)" xsd:string -intersection_of: UBERON:0001181 ! inferior recess of lesser sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001949 ! -property_value: IAO:0000589 "superior mesenteric artery (embryonic human)" xsd:string -intersection_of: UBERON:0001182 ! superior mesenteric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000817 ! -property_value: IAO:0000589 "inferior mesenteric artery (embryonic human)" xsd:string -intersection_of: UBERON:0001183 ! inferior mesenteric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004100 ! -property_value: IAO:0000589 "renal artery (embryonic human)" xsd:string -intersection_of: UBERON:0001184 ! renal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000311 ! -property_value: IAO:0000589 "common iliac artery (embryonic human)" xsd:string -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000819 ! -property_value: IAO:0000589 "inferior mesenteric vein (embryonic human)" xsd:string -intersection_of: UBERON:0001215 ! inferior mesenteric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002078 ! -property_value: IAO:0000589 "transversus abdominis muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000499 ! -property_value: IAO:0000589 "falciform ligament (embryonic human)" xsd:string -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000174 ! -property_value: IAO:0000589 "urinary bladder (embryonic human)" xsd:string -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001367 ! -property_value: IAO:0000589 "pancreas (embryonic human)" xsd:string -intersection_of: UBERON:0001264 ! pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000507 ! -property_value: IAO:0000589 "femoral nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001267 ! femoral nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001918 ! -property_value: IAO:0000589 "epithelium of stomach (embryonic human)" xsd:string -intersection_of: UBERON:0001276 ! epithelium of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001004 ! -property_value: IAO:0000589 "liver parenchyma (embryonic human)" xsd:string -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000999 ! -property_value: IAO:0000589 "hepatic sinusoid (embryonic human)" xsd:string -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000463 ! -property_value: IAO:0000589 "external iliac artery (embryonic human)" xsd:string -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000464 ! -property_value: IAO:0000589 "external iliac vein (embryonic human)" xsd:string -intersection_of: UBERON:0001316 ! external iliac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000874 ! -property_value: IAO:0000589 "internal iliac vein (embryonic human)" xsd:string -intersection_of: UBERON:0001317 ! internal iliac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001779 ! -property_value: IAO:0000589 "sciatic nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001322 ! sciatic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001296 ! -property_value: IAO:0000589 "lesser sac (embryonic human)" xsd:string -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004554 ! -property_value: IAO:0000589 "lesser sac (embryonic human)" xsd:string -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000259 ! -property_value: IAO:0000589 "coccyx (embryonic human)" xsd:string -intersection_of: UBERON:0001350 ! coccyx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000460 ! -property_value: IAO:0000589 "external acoustic meatus (embryonic human)" xsd:string -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000122 ! -property_value: IAO:0000589 "anal region (embryonic human)" xsd:string -intersection_of: UBERON:0001353 ! anal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004441 ! -property_value: IAO:0000589 "cerebrospinal fluid (embryonic human)" xsd:string -intersection_of: UBERON:0001359 ! cerebrospinal fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001776 ! -property_value: IAO:0000589 "sartorius muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001373 ! sartorius muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001583 ! -property_value: IAO:0000589 "quadriceps femoris (embryonic human)" xsd:string -intersection_of: UBERON:0001377 ! quadriceps femoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000701 ! -property_value: IAO:0000589 "gastrocnemius (embryonic human)" xsd:string -intersection_of: UBERON:0001388 ! gastrocnemius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003168 ! -property_value: IAO:0000589 "skeletal system (embryonic human)" xsd:string -intersection_of: UBERON:0001434 ! skeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002222 ! -property_value: IAO:0000589 "forelimb skeleton (embryonic human)" xsd:string -intersection_of: UBERON:0001440 ! forelimb skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002226 ! -property_value: IAO:0000589 "hindlimb skeleton (embryonic human)" xsd:string -intersection_of: UBERON:0001441 ! hindlimb skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002227 ! -property_value: IAO:0000589 "skeleton of manus (embryonic human)" xsd:string -intersection_of: UBERON:0001442 ! skeleton of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002228 ! -property_value: IAO:0000589 "skeleton of pes (embryonic human)" xsd:string -intersection_of: UBERON:0001445 ! skeleton of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000140 ! -property_value: IAO:0000589 "arm (embryonic human)" xsd:string -intersection_of: UBERON:0001460 ! arm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000429 ! -property_value: IAO:0000589 "elbow (embryonic human)" xsd:string -intersection_of: UBERON:0001461 ! elbow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000511 ! -property_value: IAO:0000589 "manual digit 1 (embryonic human)" xsd:string -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000783 ! -property_value: IAO:0000589 "hip (embryonic human)" xsd:string -intersection_of: UBERON:0001464 ! hip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000895 ! -property_value: IAO:0000589 "knee (embryonic human)" xsd:string -intersection_of: UBERON:0001465 ! knee -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001834 ! -property_value: IAO:0000589 "shoulder (embryonic human)" xsd:string -intersection_of: UBERON:0001467 ! shoulder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003082 ! -property_value: IAO:0000589 "bone element (embryonic human)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000339 ! -property_value: IAO:0000589 "deltoid (embryonic human)" xsd:string -intersection_of: UBERON:0001476 ! deltoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000826 ! -property_value: IAO:0000589 "infraspinatus muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001477 ! infraspinatus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002004 ! -property_value: IAO:0000589 "teres major muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001478 ! teres major muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003086 ! -property_value: IAO:0000589 "sesamoid bone (embryonic human)" xsd:string -intersection_of: UBERON:0001479 ! sesamoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001584 ! -property_value: IAO:0000589 "radial nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002099 ! -property_value: IAO:0000589 "ulnar nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000147 ! -property_value: IAO:0000589 "ascending aorta (embryonic human)" xsd:string -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000181 ! -property_value: IAO:0000589 "brachialis muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001506 ! brachialis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000167 ! -property_value: IAO:0000589 "biceps brachii (embryonic human)" xsd:string -intersection_of: UBERON:0001507 ! biceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000132 ! -property_value: IAO:0000589 "arch of aorta (embryonic human)" xsd:string -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002080 ! -property_value: IAO:0000589 "triceps brachii (embryonic human)" xsd:string -intersection_of: UBERON:0001509 ! triceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000835 ! -property_value: IAO:0000589 "brachiocephalic artery (embryonic human)" xsd:string -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000217 ! -property_value: IAO:0000589 "common carotid artery plus branches (embryonic human)" xsd:string -intersection_of: UBERON:0001530 ! common carotid artery plus branches -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000873 ! -property_value: IAO:0000589 "internal carotid artery (embryonic human)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001933 ! -property_value: IAO:0000589 "subclavian artery (embryonic human)" xsd:string -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004514 ! -property_value: IAO:0000589 "right subclavian artery (embryonic human)" xsd:string -intersection_of: UBERON:0001534 ! right subclavian artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002192 ! -property_value: IAO:0000589 "vertebral artery (embryonic human)" xsd:string -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000726 ! -property_value: IAO:0000589 "digestive tract (embryonic human)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002136 ! -property_value: IAO:0000589 "upper respiratory tract (embryonic human)" xsd:string -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001036 ! -property_value: IAO:0000589 "lower respiratory tract (embryonic human)" xsd:string -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000704 ! -property_value: IAO:0000589 "genioglossus muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001571 ! genioglossus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002063 ! -property_value: IAO:0000589 "extrinsic muscle of tongue (embryonic human)" xsd:string -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002064 ! -property_value: IAO:0000589 "intrinsic muscle of tongue (embryonic human)" xsd:string -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001293 ! -property_value: IAO:0000589 "olfactory nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001962 ! -property_value: IAO:0000589 "anterior vena cava (embryonic human)" xsd:string -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000877 ! -property_value: IAO:0000589 "internal jugular vein (embryonic human)" xsd:string -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001934 ! -property_value: IAO:0000589 "subclavian vein (embryonic human)" xsd:string -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001067 ! -property_value: IAO:0000589 "masseter muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001597 ! masseter muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002001 ! -property_value: IAO:0000589 "temporalis muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001598 ! temporalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002002 ! -property_value: IAO:0000589 "tensor tympani (embryonic human)" xsd:string -intersection_of: UBERON:0001600 ! tensor tympani -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000482 ! -property_value: IAO:0000589 "extra-ocular muscle (embryonic human)" xsd:string -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002031 ! -property_value: IAO:0000589 "isthmus of thyroid gland (embryonic human)" xsd:string -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001069 ! -property_value: IAO:0000589 "maxillary artery (embryonic human)" xsd:string -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001300 ! -property_value: IAO:0000589 "ophthalmic artery (embryonic human)" xsd:string -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000128 ! -property_value: IAO:0000589 "anterior cerebral artery (embryonic human)" xsd:string -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004505 ! -property_value: IAO:0000589 "right coronary artery (embryonic human)" xsd:string -intersection_of: UBERON:0001625 ! right coronary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004504 ! -property_value: IAO:0000589 "left coronary artery (embryonic human)" xsd:string -intersection_of: UBERON:0001626 ! left coronary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001179 ! -property_value: IAO:0000589 "middle cerebral artery (embryonic human)" xsd:string -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004518 ! -property_value: IAO:0000589 "posterior communicating artery (embryonic human)" xsd:string -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004501 ! -property_value: IAO:0000589 "thoracic duct (embryonic human)" xsd:string -intersection_of: UBERON:0001631 ! thoracic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000163 ! -property_value: IAO:0000589 "basilar artery (embryonic human)" xsd:string -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000681 ! -property_value: IAO:0000589 "superior cerebellar artery (embryonic human)" xsd:string -intersection_of: UBERON:0001635 ! superior cerebellar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000659 ! -property_value: IAO:0000589 "posterior cerebral artery (embryonic human)" xsd:string -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000143 ! -property_value: IAO:0000589 "artery (embryonic human)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003253 ! -property_value: IAO:0000589 "artery (embryonic human)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003254 ! -property_value: IAO:0000589 "vein (embryonic human)" xsd:string -intersection_of: UBERON:0001638 ! vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004519 ! -property_value: IAO:0000589 "celiac artery (embryonic human)" xsd:string -intersection_of: UBERON:0001640 ! celiac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001284 ! -property_value: IAO:0000589 "oculomotor nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002090 ! -property_value: IAO:0000589 "trochlear nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002084 ! -property_value: IAO:0000589 "trigeminal nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000103 ! -property_value: IAO:0000589 "abducens nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000489 ! -property_value: IAO:0000589 "facial nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002194 ! -property_value: IAO:0000589 "vestibulocochlear nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000709 ! -property_value: IAO:0000589 "glossopharyngeal nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000798 ! -property_value: IAO:0000589 "hypoglossal nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002085 ! -property_value: IAO:0000589 "trigeminal ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001059 ! -property_value: IAO:0000589 "mandible (embryonic human)" xsd:string -intersection_of: UBERON:0001684 ! mandible -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001183 ! -property_value: IAO:0000589 "auditory ossicle bone (embryonic human)" xsd:string -intersection_of: UBERON:0001686 ! auditory ossicle bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000423 ! -property_value: IAO:0000589 "ear (embryonic human)" xsd:string -intersection_of: UBERON:0001690 ! ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000462 ! -property_value: IAO:0000589 "external ear (embryonic human)" xsd:string -intersection_of: UBERON:0001691 ! external ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001452 ! -property_value: IAO:0000589 "petrous part of temporal bone (embryonic human)" xsd:string -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000551 ! -property_value: IAO:0000589 "foramen ovale of skull (embryonic human)" xsd:string -intersection_of: UBERON:0001698 ! foramen ovale of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000491 ! -property_value: IAO:0000589 "geniculate ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004623 ! -property_value: IAO:0000589 "geniculate ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000710 ! -property_value: IAO:0000589 "glossopharyngeal ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000243 ! -property_value: IAO:0000589 "neurocranium (embryonic human)" xsd:string -intersection_of: UBERON:0001703 ! neurocranium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001234 ! -property_value: IAO:0000589 "nasal septum (embryonic human)" xsd:string -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004104 ! -property_value: IAO:0000589 "nasal septum (embryonic human)" xsd:string -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001226 ! -property_value: IAO:0000589 "nasal cavity (embryonic human)" xsd:string -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002118 ! -property_value: IAO:0000589 "upper jaw region (embryonic human)" xsd:string -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004607 ! -property_value: IAO:0000589 "upper jaw region (embryonic human)" xsd:string -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001018 ! -property_value: IAO:0000589 "lower jaw region (embryonic human)" xsd:string -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000487 ! -property_value: IAO:0000589 "eyelid (embryonic human)" xsd:string -intersection_of: UBERON:0001711 ! eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002115 ! -property_value: IAO:0000589 "upper eyelid (embryonic human)" xsd:string -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001015 ! -property_value: IAO:0000589 "lower eyelid (embryonic human)" xsd:string -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004211 ! -property_value: IAO:0000589 "oculomotor nuclear complex (embryonic human)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004305 ! -property_value: IAO:0000589 "nucleus ambiguus (embryonic human)" xsd:string -intersection_of: UBERON:0001719 ! nucleus ambiguus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002062 ! -property_value: IAO:0000589 "tongue (embryonic human)" xsd:string -intersection_of: UBERON:0001723 ! tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001239 ! -property_value: IAO:0000589 "nasopharynx (embryonic human)" xsd:string -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004082 ! -property_value: IAO:0000589 "oropharynx (embryonic human)" xsd:string -intersection_of: UBERON:0001729 ! oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004063 ! -property_value: IAO:0000589 "larynx (embryonic human)" xsd:string -intersection_of: UBERON:0001737 ! larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002030 ! -property_value: IAO:0000589 "thyroid cartilage (embryonic human)" xsd:string -intersection_of: UBERON:0001738 ! thyroid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001181 ! -property_value: IAO:0000589 "middle ear (embryonic human)" xsd:string -intersection_of: UBERON:0001756 ! middle ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001467 ! -property_value: IAO:0000589 "pinna (embryonic human)" xsd:string -intersection_of: UBERON:0001757 ! pinna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000550 ! -property_value: IAO:0000589 "future foramen cecum (embryonic human)" xsd:string -intersection_of: UBERON:0001761 ! future foramen cecum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004101 ! -property_value: IAO:0000589 "turbinate bone (embryonic human)" xsd:string -intersection_of: UBERON:0001762 ! turbinate bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000129 ! -property_value: IAO:0000589 "anterior chamber of eyeball (embryonic human)" xsd:string -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000319 ! -property_value: IAO:0000589 "corneal epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001898 ! -property_value: IAO:0000589 "spinal nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001465 ! -property_value: IAO:0000589 "pigmented layer of retina (embryonic human)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001307 ! -property_value: IAO:0000589 "optic disc (embryonic human)" xsd:string -intersection_of: UBERON:0001783 ! optic disc -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000323 ! -property_value: IAO:0000589 "cranial nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000139 ! -property_value: IAO:0000589 "aqueous humor of eyeball (embryonic human)" xsd:string -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000977 ! -property_value: IAO:0000589 "capsule of lens (embryonic human)" xsd:string -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001969 ! -property_value: IAO:0000589 "sympathetic ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0001806 ! sympathetic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001403 ! -property_value: IAO:0000589 "paravertebral ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0001807 ! paravertebral ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001400 ! -property_value: IAO:0000589 "parasympathetic ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0001808 ! parasympathetic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003138 ! -property_value: IAO:0000589 "nerve plexus (embryonic human)" xsd:string -intersection_of: UBERON:0001810 ! nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001899 ! -property_value: IAO:0000589 "spinal nerve plexus (embryonic human)" xsd:string -intersection_of: UBERON:0001813 ! spinal nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000180 ! -property_value: IAO:0000589 "brachial nerve plexus (embryonic human)" xsd:string -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001040 ! -property_value: IAO:0000589 "lumbosacral nerve plexus (embryonic human)" xsd:string -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001020 ! -property_value: IAO:0000589 "lower lip (embryonic human)" xsd:string -intersection_of: UBERON:0001835 ! lower lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001959 ! -property_value: IAO:0000589 "anterior semicircular canal (embryonic human)" xsd:string -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001489 ! -property_value: IAO:0000589 "posterior semicircular canal (embryonic human)" xsd:string -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000920 ! -property_value: IAO:0000589 "lateral semicircular canal (embryonic human)" xsd:string -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000831 ! -property_value: IAO:0000589 "internal ear (embryonic human)" xsd:string -intersection_of: UBERON:0001846 ! internal ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000899 ! -property_value: IAO:0000589 "membranous labyrinth (embryonic human)" xsd:string -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002153 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (embryonic human)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001769 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (embryonic human)" xsd:string -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000262 ! -property_value: IAO:0000589 "cochlear duct of membranous labyrinth (embryonic human)" xsd:string -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000832 ! -property_value: IAO:0000589 "vestibular labyrinth (embryonic human)" xsd:string -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004461 ! -property_value: IAO:0000589 "caudate nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004708 ! -property_value: IAO:0000589 "nucleus of diagonal band (embryonic human)" xsd:string -intersection_of: UBERON:0001879 ! nucleus of diagonal band -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004707 ! -property_value: IAO:0000589 "nucleus accumbens (embryonic human)" xsd:string -intersection_of: UBERON:0001882 ! nucleus accumbens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004701 ! -property_value: IAO:0000589 "olfactory tubercle (embryonic human)" xsd:string -intersection_of: UBERON:0001883 ! olfactory tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001463 ! -property_value: IAO:0000589 "trunk of phrenic nerve (embryonic human)" xsd:string -intersection_of: UBERON:0001889 ! trunk of phrenic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000556 ! -property_value: IAO:0000589 "forebrain (embryonic human)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001162 ! -property_value: IAO:0000589 "midbrain (embryonic human)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001982 ! -property_value: IAO:0000589 "telencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000385 ! -property_value: IAO:0000589 "diencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001149 ! -property_value: IAO:0000589 "metencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001088 ! -property_value: IAO:0000589 "medulla oblongata (embryonic human)" xsd:string -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000802 ! -property_value: IAO:0000589 "hypothalamus (embryonic human)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000448 ! -property_value: IAO:0000589 "epithalamus (embryonic human)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004470 ! -property_value: IAO:0000589 "ventral thalamus (embryonic human)" xsd:string -intersection_of: UBERON:0001900 ! ventral thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002069 ! -property_value: IAO:0000589 "epithelium of trachea (embryonic human)" xsd:string -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001466 ! -property_value: IAO:0000589 "pineal body (embryonic human)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004475 ! -property_value: IAO:0000589 "midbrain tegmentum (embryonic human)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004706 ! -property_value: IAO:0000589 "red nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0001947 ! red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004662 ! -property_value: IAO:0000589 "neocortex (embryonic human)" xsd:string -intersection_of: UBERON:0001950 ! neocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001241 ! -property_value: IAO:0000589 "epithelium of nasopharynx (embryonic human)" xsd:string -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004083 ! -property_value: IAO:0000589 "epithelium of oropharynx (embryonic human)" xsd:string -intersection_of: UBERON:0001952 ! epithelium of oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004443 ! -property_value: IAO:0000589 "Ammon's horn (embryonic human)" xsd:string -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001287 ! -property_value: IAO:0000589 "epithelium of esophagus (embryonic human)" xsd:string -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004728 ! -property_value: IAO:0000589 "blood serum (embryonic human)" xsd:string -intersection_of: UBERON:0001977 ! blood serum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003252 ! -property_value: IAO:0000589 "blood vessel (embryonic human)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001228 ! -property_value: IAO:0000589 "olfactory epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000812 ! -property_value: IAO:0000589 "iliopsoas (embryonic human)" xsd:string -intersection_of: UBERON:0001999 ! iliopsoas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000715 ! -property_value: IAO:0000589 "gluteal muscle (embryonic human)" xsd:string -intersection_of: UBERON:0002000 ! gluteal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004202 ! -property_value: IAO:0000589 "enteric nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0002005 ! enteric nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001575 ! -property_value: IAO:0000589 "pulmonary artery (embryonic human)" xsd:string -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001579 ! -property_value: IAO:0000589 "pulmonary vein (embryonic human)" xsd:string -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001485 ! -property_value: IAO:0000589 "portal vein (embryonic human)" xsd:string -intersection_of: UBERON:0002017 ! portal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000106 ! -property_value: IAO:0000589 "accessory XI nerve (embryonic human)" xsd:string -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003136 ! -property_value: IAO:0000589 "gray matter (embryonic human)" xsd:string -intersection_of: UBERON:0002020 ! gray matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000746 ! -property_value: IAO:0000589 "hindbrain (embryonic human)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003140 ! -property_value: IAO:0000589 "striated muscle tissue (embryonic human)" xsd:string -intersection_of: UBERON:0002036 ! striated muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000232 ! -property_value: IAO:0000589 "cerebellum (embryonic human)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004711 ! -property_value: IAO:0000589 "substantia nigra (embryonic human)" xsd:string -intersection_of: UBERON:0002038 ! substantia nigra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002028 ! -property_value: IAO:0000589 "thyroid gland (embryonic human)" xsd:string -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001042 ! -property_value: IAO:0000589 "lung (embryonic human)" xsd:string -intersection_of: UBERON:0002048 ! lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000251 ! -property_value: IAO:0000589 "main ciliary ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0002058 ! main ciliary ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001942 ! -property_value: IAO:0000589 "submandibular ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0002059 ! submandibular ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004143 ! -property_value: IAO:0000589 "truncus arteriosus (embryonic human)" xsd:string -intersection_of: UBERON:0002061 ! truncus arteriosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000434 ! -property_value: IAO:0000589 "endocardial cushion (embryonic human)" xsd:string -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004028 ! -property_value: IAO:0000589 "endocardial cushion (embryonic human)" xsd:string -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001839 ! -property_value: IAO:0000589 "sinus venosus (embryonic human)" xsd:string -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001486 ! -property_value: IAO:0000589 "posterior cardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002137 ! -property_value: IAO:0000589 "urachus (embryonic human)" xsd:string -intersection_of: UBERON:0002068 ! urachus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000290 ! -property_value: IAO:0000589 "right cardiac atrium (embryonic human)" xsd:string -intersection_of: UBERON:0002078 ! right cardiac atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000275 ! -property_value: IAO:0000589 "left cardiac atrium (embryonic human)" xsd:string -intersection_of: UBERON:0002079 ! left cardiac atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000196 ! -property_value: IAO:0000589 "heart right ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000154 ! -property_value: IAO:0000589 "cardiac atrium (embryonic human)" xsd:string -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004164 ! -property_value: IAO:0000589 "cardiac ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000422 ! -property_value: IAO:0000589 "ductus venosus (embryonic human)" xsd:string -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002178 ! -property_value: IAO:0000589 "heart left ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000838 ! -property_value: IAO:0000589 "interatrial septum (embryonic human)" xsd:string -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000161 ! -property_value: IAO:0000589 "postcranial axial skeleton (embryonic human)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001844 ! -property_value: IAO:0000589 "skin of body (embryonic human)" xsd:string -intersection_of: UBERON:0002097 ! skin of body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003172 ! -property_value: IAO:0000589 "limb (embryonic human)" xsd:string -intersection_of: UBERON:0002101 ! limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002133 ! -property_value: IAO:0000589 "forelimb (embryonic human)" xsd:string -intersection_of: UBERON:0002102 ! forelimb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001033 ! -property_value: IAO:0000589 "hindlimb (embryonic human)" xsd:string -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000997 ! -property_value: IAO:0000589 "liver (embryonic human)" xsd:string -intersection_of: UBERON:0002107 ! liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000699 ! -property_value: IAO:0000589 "gallbladder (embryonic human)" xsd:string -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001570 ! -property_value: IAO:0000589 "pronephros (embryonic human)" xsd:string -intersection_of: UBERON:0002120 ! pronephros -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000153 ! -property_value: IAO:0000589 "atrioventricular valve (embryonic human)" xsd:string -intersection_of: UBERON:0002133 ! atrioventricular valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004029 ! -property_value: IAO:0000589 "tricuspid valve (embryonic human)" xsd:string -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000168 ! -property_value: IAO:0000589 "mitral valve (embryonic human)" xsd:string -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000134 ! -property_value: IAO:0000589 "aortic valve (embryonic human)" xsd:string -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001577 ! -property_value: IAO:0000589 "pulmonary valve (embryonic human)" xsd:string -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004646 ! -property_value: IAO:0000589 "superior salivatory nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0002149 ! superior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004153 ! -property_value: IAO:0000589 "endocardium (embryonic human)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001730 ! -property_value: IAO:0000589 "right lung (embryonic human)" xsd:string -intersection_of: UBERON:0002167 ! right lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000943 ! -property_value: IAO:0000589 "left lung (embryonic human)" xsd:string -intersection_of: UBERON:0002168 ! left lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001747 ! -property_value: IAO:0000589 "upper lobe of right lung (embryonic human)" xsd:string -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001740 ! -property_value: IAO:0000589 "lower lobe of right lung (embryonic human)" xsd:string -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001044 ! -property_value: IAO:0000589 "main bronchus (embryonic human)" xsd:string -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000250 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (embryonic human)" xsd:string -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004615 ! -property_value: IAO:0000589 "hemolymphoid system (embryonic human)" xsd:string -intersection_of: UBERON:0002193 ! hemolymphoid system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000109 ! -property_value: IAO:0000589 "adenohypophysis (embryonic human)" xsd:string -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001080 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (embryonic human)" xsd:string -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001271 ! -property_value: IAO:0000589 "neurohypophysis (embryonic human)" xsd:string -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003178 ! -property_value: IAO:0000589 "fibrous joint (embryonic human)" xsd:string -intersection_of: UBERON:0002209 ! fibrous joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003183 ! -property_value: IAO:0000589 "synovial joint (embryonic human)" xsd:string -intersection_of: UBERON:0002217 ! synovial joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000441 ! -property_value: IAO:0000589 "endolymphatic sac (embryonic human)" xsd:string -intersection_of: UBERON:0002223 ! endolymphatic sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001255 ! -property_value: IAO:0000589 "spinal cord (embryonic human)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000243 ! -property_value: IAO:0000589 "chondrocranium (embryonic human)" xsd:string -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002077 ! -property_value: IAO:0000589 "transverse pericardial sinus (embryonic human)" xsd:string -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002211 ! -property_value: IAO:0000589 "vomeronasal organ (embryonic human)" xsd:string -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000266 ! -property_value: IAO:0000589 "celiac ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0002262 ! celiac ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004705 ! -property_value: IAO:0000589 "olfactory bulb (embryonic human)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004072 ! -property_value: IAO:0000589 "hyaloid artery (embryonic human)" xsd:string -intersection_of: UBERON:0002270 ! hyaloid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001984 ! -property_value: IAO:0000589 "telencephalic ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0002285 ! telencephalic ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000084 ! -property_value: IAO:0000589 "third ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001317 ! -property_value: IAO:0000589 "optic recess of third ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001163 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (embryonic human)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004361 ! -property_value: IAO:0000589 "central canal of spinal cord (embryonic human)" xsd:string -intersection_of: UBERON:0002291 ! central canal of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000262 ! -property_value: IAO:0000589 "scala media (embryonic human)" xsd:string -intersection_of: UBERON:0002295 ! scala media -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004560 ! -property_value: IAO:0000589 "dorsal mesentery (embryonic human)" xsd:string -intersection_of: UBERON:0002296 ! dorsal mesentery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004449 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0002307 ! choroid plexus of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004474 ! -property_value: IAO:0000589 "midbrain tectum (embryonic human)" xsd:string -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000267 ! -property_value: IAO:0000589 "coelemic cavity lumen (embryonic human)" xsd:string -intersection_of: UBERON:0002323 ! coelemic cavity lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001277 ! -property_value: IAO:0000589 "notochord (embryonic human)" xsd:string -intersection_of: UBERON:0002328 ! notochord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003436 ! -property_value: IAO:0000589 "somite (embryonic human)" xsd:string -intersection_of: UBERON:0002329 ! somite -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002225 ! -property_value: IAO:0000589 "exocrine system (embryonic human)" xsd:string -intersection_of: UBERON:0002330 ! exocrine system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000312 ! -property_value: IAO:0000589 "umbilical cord (embryonic human)" xsd:string -intersection_of: UBERON:0002331 ! umbilical cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001576 ! -property_value: IAO:0000589 "pulmonary trunk (embryonic human)" xsd:string -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001047 ! -property_value: IAO:0000589 "epithelium of main bronchus (embryonic human)" xsd:string -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004419 ! -property_value: IAO:0000589 "neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0002342 ! neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001248 ! -property_value: IAO:0000589 "neurectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002202 ! -property_value: IAO:0000589 "epicardium (embryonic human)" xsd:string -intersection_of: UBERON:0002348 ! epicardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004150 ! -property_value: IAO:0000589 "myocardium (embryonic human)" xsd:string -intersection_of: UBERON:0002349 ! myocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004185 ! -property_value: IAO:0000589 "conducting system of heart (embryonic human)" xsd:string -intersection_of: UBERON:0002350 ! conducting system of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004184 ! -property_value: IAO:0000589 "sinoatrial node (embryonic human)" xsd:string -intersection_of: UBERON:0002351 ! sinoatrial node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004183 ! -property_value: IAO:0000589 "atrioventricular node (embryonic human)" xsd:string -intersection_of: UBERON:0002352 ! atrioventricular node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004015 ! -property_value: IAO:0000589 "perineum (embryonic human)" xsd:string -intersection_of: UBERON:0002356 ! perineum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004318 ! -property_value: IAO:0000589 "pia mater (embryonic human)" xsd:string -intersection_of: UBERON:0002361 ! pia mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003097 ! -property_value: IAO:0000589 "exocrine gland (embryonic human)" xsd:string -intersection_of: UBERON:0002365 ! exocrine gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003098 ! -property_value: IAO:0000589 "endocrine gland (embryonic human)" xsd:string -intersection_of: UBERON:0002368 ! endocrine gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002017 ! -property_value: IAO:0000589 "thymus (embryonic human)" xsd:string -intersection_of: UBERON:0002370 ! thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000326 ! -property_value: IAO:0000589 "cricoid cartilage (embryonic human)" xsd:string -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000322 ! -property_value: IAO:0000589 "cranial muscle (embryonic human)" xsd:string -intersection_of: UBERON:0002376 ! cranial muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001424 ! -property_value: IAO:0000589 "pectoralis major (embryonic human)" xsd:string -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001595 ! -property_value: IAO:0000589 "rectus abdominis muscle (embryonic human)" xsd:string -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001967 ! -property_value: IAO:0000589 "supraspinatus muscle (embryonic human)" xsd:string -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003122 ! -property_value: IAO:0000589 "muscle tissue (embryonic human)" xsd:string -intersection_of: UBERON:0002385 ! muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000553 ! -property_value: IAO:0000589 "forelimb zeugopod (embryonic human)" xsd:string -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000546 ! -property_value: IAO:0000589 "pes (embryonic human)" xsd:string -intersection_of: UBERON:0002387 ! pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000404 ! -property_value: IAO:0000589 "manual digit (embryonic human)" xsd:string -intersection_of: UBERON:0002389 ! manual digit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001237 ! -property_value: IAO:0000589 "nasolacrimal duct (embryonic human)" xsd:string -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000741 ! -property_value: IAO:0000589 "bile duct (embryonic human)" xsd:string -intersection_of: UBERON:0002394 ! bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001068 ! -property_value: IAO:0000589 "maxilla (embryonic human)" xsd:string -intersection_of: UBERON:0002397 ! maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000728 ! -property_value: IAO:0000589 "manus (embryonic human)" xsd:string -intersection_of: UBERON:0002398 ! manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000991 ! -property_value: IAO:0000589 "lesser omentum (embryonic human)" xsd:string -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002205 ! -property_value: IAO:0000589 "visceral pleura (embryonic human)" xsd:string -intersection_of: UBERON:0002401 ! visceral pleura -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001475 ! -property_value: IAO:0000589 "pleural cavity (embryonic human)" xsd:string -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000875 ! -property_value: IAO:0000589 "internal intercostal muscle (embryonic human)" xsd:string -intersection_of: UBERON:0002403 ! internal intercostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000158 ! -property_value: IAO:0000589 "autonomic nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0002410 ! autonomic nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000255 ! -property_value: IAO:0000589 "clitoris (embryonic human)" xsd:string -intersection_of: UBERON:0002411 ! clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000836 ! -property_value: IAO:0000589 "integumental system (embryonic human)" xsd:string -intersection_of: UBERON:0002416 ! integumental system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003087 ! -property_value: IAO:0000589 "cartilage tissue (embryonic human)" xsd:string -intersection_of: UBERON:0002418 ! cartilage tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000100 ! -property_value: IAO:0000589 "fourth ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000998 ! -property_value: IAO:0000589 "hepatobiliary system (embryonic human)" xsd:string -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001325 ! -property_value: IAO:0000589 "oral epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001417 ! -property_value: IAO:0000589 "pars intermedia of adenohypophysis (embryonic human)" xsd:string -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001419 ! -property_value: IAO:0000589 "pars tuberalis of adenohypophysis (embryonic human)" xsd:string -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000828 ! -property_value: IAO:0000589 "pituitary stalk (embryonic human)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000880 ! -property_value: IAO:0000589 "internal thoracic artery (embryonic human)" xsd:string -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000882 ! -property_value: IAO:0000589 "intersomitic artery (embryonic human)" xsd:string -intersection_of: UBERON:0002457 ! intersomitic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001890 ! -property_value: IAO:0000589 "spinal artery (embryonic human)" xsd:string -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000125 ! -property_value: IAO:0000589 "anterior abdominal wall muscle (embryonic human)" xsd:string -intersection_of: UBERON:0002461 ! anterior abdominal wall muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000454 ! -property_value: IAO:0000589 "erector spinae muscle group (embryonic human)" xsd:string -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000727 ! -property_value: IAO:0000589 "muscle of posterior compartment of hindlimb stylopod (embryonic human)" xsd:string -intersection_of: UBERON:0002463 ! muscle of posterior compartment of hindlimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001043 ! -property_value: IAO:0000589 "lymphoid system (embryonic human)" xsd:string -intersection_of: UBERON:0002465 ! lymphoid system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004462 ! -property_value: IAO:0000589 "lateral globus pallidus (embryonic human)" xsd:string -intersection_of: UBERON:0002476 ! lateral globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003083 ! -property_value: IAO:0000589 "endochondral bone (embryonic human)" xsd:string -intersection_of: UBERON:0002513 ! endochondral bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003096 ! -property_value: IAO:0000589 "gland (embryonic human)" xsd:string -intersection_of: UBERON:0002530 ! gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001976 ! -property_value: IAO:0000589 "post-anal tail bud (embryonic human)" xsd:string -intersection_of: UBERON:0002533 ! post-anal tail bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004628 ! -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (embryonic human)" xsd:string -intersection_of: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004709 ! -property_value: IAO:0000589 "septal nuclear complex (embryonic human)" xsd:string -intersection_of: UBERON:0002663 ! septal nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004310 ! -property_value: IAO:0000589 "abducens nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0002682 ! abducens nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002196 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0002827 ! vestibulocochlear ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004649 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (embryonic human)" xsd:string -intersection_of: UBERON:0002870 ! dorsal motor nucleus of vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004635 ! -property_value: IAO:0000589 "hypoglossal nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0002871 ! hypoglossal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004641 ! -property_value: IAO:0000589 "inferior salivatory nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0002872 ! inferior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001289 ! -property_value: IAO:0000589 "olfactory cortex (embryonic human)" xsd:string -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004496 ! -property_value: IAO:0000589 "archicortex (embryonic human)" xsd:string -intersection_of: UBERON:0002961 ! archicortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001232 ! -property_value: IAO:0000589 "olfactory placode (embryonic human)" xsd:string -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001342 ! -property_value: IAO:0000589 "ear vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004395 ! -property_value: IAO:0000589 "midbrain-hindbrain boundary (embryonic human)" xsd:string -intersection_of: UBERON:0003052 ! midbrain-hindbrain boundary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001270 ! -property_value: IAO:0000589 "roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0003054 ! roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001846 ! -property_value: IAO:0000589 "periderm (embryonic human)" xsd:string -intersection_of: UBERON:0003055 ! periderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001272 ! -property_value: IAO:0000589 "primitive knot (embryonic human)" xsd:string -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001493 ! -property_value: IAO:0000589 "prechordal plate (embryonic human)" xsd:string -intersection_of: UBERON:0003063 ! prechordal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000050 ! -property_value: IAO:0000589 "pharyngeal arch 2 (embryonic human)" xsd:string -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001339 ! -property_value: IAO:0000589 "otic placode (embryonic human)" xsd:string -intersection_of: UBERON:0003069 ! otic placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004209 ! -property_value: IAO:0000589 "trigeminal placode complex (embryonic human)" xsd:string -intersection_of: UBERON:0003070 ! trigeminal placode complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004431 ! -property_value: IAO:0000589 "eye primordium (embryonic human)" xsd:string -intersection_of: UBERON:0003071 ! eye primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001303 ! -property_value: IAO:0000589 "optic cup (embryonic human)" xsd:string -intersection_of: UBERON:0003072 ! optic cup -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000982 ! -property_value: IAO:0000589 "lens placode (embryonic human)" xsd:string -intersection_of: UBERON:0003073 ! lens placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001243 ! -property_value: IAO:0000589 "mesonephric duct (embryonic human)" xsd:string -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000919 ! -property_value: IAO:0000589 "lateral plate mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001901 ! -property_value: IAO:0000589 "trunk neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0003083 ! trunk neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003439 ! -property_value: IAO:0000589 "sclerotome (embryonic human)" xsd:string -intersection_of: UBERON:0003089 ! sclerotome -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002033 ! -property_value: IAO:0000589 "thyroid primordium (embryonic human)" xsd:string -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002103 ! -property_value: IAO:0000589 "ultimobranchial body (embryonic human)" xsd:string -intersection_of: UBERON:0003092 ! ultimobranchial body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001318 ! -property_value: IAO:0000589 "optic stalk (embryonic human)" xsd:string -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004420 ! -property_value: IAO:0000589 "cranial neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0003099 ! cranial neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003024 ! -property_value: IAO:0000589 "compound organ (embryonic human)" xsd:string -intersection_of: UBERON:0003103 ! compound organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003145 ! -property_value: IAO:0000589 "mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0003104 ! mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001072 ! -property_value: IAO:0000589 "Meckel's cartilage (embryonic human)" xsd:string -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000069 ! -property_value: IAO:0000589 "pharyngeal arch 3 (embryonic human)" xsd:string -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000086 ! -property_value: IAO:0000589 "pharyngeal arch 4 (embryonic human)" xsd:string -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004075 ! -property_value: IAO:0000589 "pharyngeal arch 6 (embryonic human)" xsd:string -intersection_of: UBERON:0003117 ! pharyngeal arch 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000007 ! -property_value: IAO:0000589 "pharyngeal arch artery 1 (embryonic human)" xsd:string -intersection_of: UBERON:0003118 ! pharyngeal arch artery 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000051 ! -property_value: IAO:0000589 "pharyngeal arch artery 2 (embryonic human)" xsd:string -intersection_of: UBERON:0003119 ! pharyngeal arch artery 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000070 ! -property_value: IAO:0000589 "pharyngeal arch artery 3 (embryonic human)" xsd:string -intersection_of: UBERON:0003120 ! pharyngeal arch artery 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000087 ! -property_value: IAO:0000589 "pharyngeal arch artery 4 (embryonic human)" xsd:string -intersection_of: UBERON:0003121 ! pharyngeal arch artery 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000102 ! -property_value: IAO:0000589 "pharyngeal arch artery 6 (embryonic human)" xsd:string -intersection_of: UBERON:0003123 ! pharyngeal arch artery 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000245 ! -property_value: IAO:0000589 "chorion membrane (embryonic human)" xsd:string -intersection_of: UBERON:0003124 ! chorion membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002066 ! -property_value: IAO:0000589 "trachea (embryonic human)" xsd:string -intersection_of: UBERON:0003126 ! trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000325 ! -property_value: IAO:0000589 "skull (embryonic human)" xsd:string -intersection_of: UBERON:0003129 ! skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001418 ! -property_value: IAO:0000589 "neural lobe of neurohypophysis (embryonic human)" xsd:string -intersection_of: UBERON:0003217 ! neural lobe of neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004062 ! -property_value: IAO:0000589 "metanephric mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0003220 ! metanephric mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001973 ! -property_value: IAO:0000589 "chorion syncytiotrophoblast (embryonic human)" xsd:string -intersection_of: UBERON:0003224 ! chorion syncytiotrophoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000430 ! -property_value: IAO:0000589 "epithelium of elbow (embryonic human)" xsd:string -intersection_of: UBERON:0003229 ! epithelium of elbow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000219 ! -property_value: IAO:0000589 "epithelium of carpal region (embryonic human)" xsd:string -intersection_of: UBERON:0003230 ! epithelium of carpal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000784 ! -property_value: IAO:0000589 "epithelium of hip (embryonic human)" xsd:string -intersection_of: UBERON:0003231 ! epithelium of hip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000896 ! -property_value: IAO:0000589 "epithelium of knee (embryonic human)" xsd:string -intersection_of: UBERON:0003232 ! epithelium of knee -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001835 ! -property_value: IAO:0000589 "epithelium of shoulder (embryonic human)" xsd:string -intersection_of: UBERON:0003233 ! epithelium of shoulder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002119 ! -property_value: IAO:0000589 "epithelium of upper jaw (embryonic human)" xsd:string -intersection_of: UBERON:0003235 ! epithelium of upper jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001019 ! -property_value: IAO:0000589 "epithelium of lower jaw (embryonic human)" xsd:string -intersection_of: UBERON:0003236 ! epithelium of lower jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001057 ! -property_value: IAO:0000589 "epithelium of mammary gland (embryonic human)" xsd:string -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000554 ! -property_value: IAO:0000589 "epithelium of forearm (embryonic human)" xsd:string -intersection_of: UBERON:0003247 ! epithelium of forearm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000548 ! -property_value: IAO:0000589 "epithelium of footplate (embryonic human)" xsd:string -intersection_of: UBERON:0003248 ! epithelium of footplate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001341 ! -property_value: IAO:0000589 "epithelium of otic placode (embryonic human)" xsd:string -intersection_of: UBERON:0003249 ! epithelium of otic placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000117 ! -property_value: IAO:0000589 "amniotic ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0003254 ! amniotic ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002215 ! -property_value: IAO:0000589 "yolk sac endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0003257 ! yolk sac endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004568 ! -property_value: IAO:0000589 "endoderm of foregut (embryonic human)" xsd:string -intersection_of: UBERON:0003258 ! endoderm of foregut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000118 ! -property_value: IAO:0000589 "amniotic mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0003262 ! amniotic mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003245 ! -property_value: IAO:0000589 "chorionic mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0003265 ! chorionic mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001029 ! -property_value: IAO:0000589 "tooth of lower jaw (embryonic human)" xsd:string -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000486 ! -property_value: IAO:0000589 "skeletal muscle tissue of eye (embryonic human)" xsd:string -intersection_of: UBERON:0003269 ! skeletal muscle tissue of eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004557 ! -property_value: IAO:0000589 "mesothelium of omental bursa (embryonic human)" xsd:string -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002128 ! -property_value: IAO:0000589 "skeleton of upper jaw (embryonic human)" xsd:string -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004606 ! -property_value: IAO:0000589 "skeleton of lower jaw (embryonic human)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001922 ! -property_value: IAO:0000589 "mesentery of stomach (embryonic human)" xsd:string -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001288 ! -property_value: IAO:0000589 "mesentery of oesophagus (embryonic human)" xsd:string -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001202 ! -property_value: IAO:0000589 "mesentery of midgut (embryonic human)" xsd:string -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000560 ! -property_value: IAO:0000589 "foregut region of duodenum (embryonic human)" xsd:string -intersection_of: UBERON:0003286 ! foregut region of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001189 ! -property_value: IAO:0000589 "midgut region of duodenum (embryonic human)" xsd:string -intersection_of: UBERON:0003287 ! midgut region of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001174 ! -property_value: IAO:0000589 "meninx of midbrain (embryonic human)" xsd:string -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001990 ! -property_value: IAO:0000589 "meninx of telencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003289 ! meninx of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000399 ! -property_value: IAO:0000589 "meninx of diencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003290 ! meninx of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000770 ! -property_value: IAO:0000589 "meninx of hindbrain (embryonic human)" xsd:string -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001895 ! -property_value: IAO:0000589 "meninx of spinal cord (embryonic human)" xsd:string -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000567 ! -property_value: IAO:0000589 "gland of foregut (embryonic human)" xsd:string -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001461 ! -property_value: IAO:0000589 "pharyngeal gland (embryonic human)" xsd:string -intersection_of: UBERON:0003295 ! pharyngeal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000395 ! -property_value: IAO:0000589 "gland of diencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000837 ! -property_value: IAO:0000589 "gland of integumental system (embryonic human)" xsd:string -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001177 ! -property_value: IAO:0000589 "roof plate of midbrain (embryonic human)" xsd:string -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001994 ! -property_value: IAO:0000589 "roof plate of telencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003300 ! roof plate of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000402 ! -property_value: IAO:0000589 "roof plate of diencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001160 ! -property_value: IAO:0000589 "roof plate of metencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003302 ! roof plate of metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001099 ! -property_value: IAO:0000589 "roof plate of medulla oblongata (embryonic human)" xsd:string -intersection_of: UBERON:0003303 ! roof plate of medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003241 ! -property_value: IAO:0000589 "mesoderm blood island (embryonic human)" xsd:string -intersection_of: UBERON:0003304 ! mesoderm blood island -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001256 ! -property_value: IAO:0000589 "floor plate of neural tube (embryonic human)" xsd:string -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001164 ! -property_value: IAO:0000589 "floor plate of midbrain (embryonic human)" xsd:string -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001983 ! -property_value: IAO:0000589 "floor plate of telencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003308 ! floor plate of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000388 ! -property_value: IAO:0000589 "floor plate of diencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001158 ! -property_value: IAO:0000589 "floor plate of metencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0003310 ! floor plate of metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001097 ! -property_value: IAO:0000589 "floor plate of medulla oblongata (embryonic human)" xsd:string -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002010 ! -property_value: IAO:0000589 "mesenchyme of testis (embryonic human)" xsd:string -intersection_of: UBERON:0003312 ! mesenchyme of testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000485 ! -property_value: IAO:0000589 "eye mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001362 ! -property_value: IAO:0000589 "mesenchyme of ovary (embryonic human)" xsd:string -intersection_of: UBERON:0003315 ! mesenchyme of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002216 ! -property_value: IAO:0000589 "mesenchyme of yolk sac (embryonic human)" xsd:string -intersection_of: UBERON:0003316 ! mesenchyme of yolk sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000432 ! -property_value: IAO:0000589 "mesenchyme of elbow (embryonic human)" xsd:string -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000220 ! -property_value: IAO:0000589 "mesenchyme of carpal region (embryonic human)" xsd:string -intersection_of: UBERON:0003319 ! mesenchyme of carpal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000786 ! -property_value: IAO:0000589 "mesenchyme of hip (embryonic human)" xsd:string -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000898 ! -property_value: IAO:0000589 "mesenchyme of knee (embryonic human)" xsd:string -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001837 ! -property_value: IAO:0000589 "mesenchyme of shoulder (embryonic human)" xsd:string -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002124 ! -property_value: IAO:0000589 "mesenchyme of upper jaw (embryonic human)" xsd:string -intersection_of: UBERON:0003323 ! mesenchyme of upper jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001024 ! -property_value: IAO:0000589 "mesenchyme of lower jaw (embryonic human)" xsd:string -intersection_of: UBERON:0003324 ! mesenchyme of lower jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001469 ! -property_value: IAO:0000589 "mesenchyme of pinna (embryonic human)" xsd:string -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001058 ! -property_value: IAO:0000589 "mesenchyme of mammary gland (embryonic human)" xsd:string -intersection_of: UBERON:0003326 ! mesenchyme of mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000555 ! -property_value: IAO:0000589 "mesenchyme of forearm (embryonic human)" xsd:string -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000549 ! -property_value: IAO:0000589 "mesenchyme of footplate (embryonic human)" xsd:string -intersection_of: UBERON:0003328 ! mesenchyme of footplate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000227 ! -property_value: IAO:0000589 "ganglion of central nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001195 ! -property_value: IAO:0000589 "epithelium of midgut (embryonic human)" xsd:string -intersection_of: UBERON:0003352 ! epithelium of midgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000782 ! -property_value: IAO:0000589 "epithelium of hindgut (embryonic human)" xsd:string -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001594 ! -property_value: IAO:0000589 "epithelium of rectum (embryonic human)" xsd:string -intersection_of: UBERON:0003354 ! epithelium of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004598 ! -property_value: IAO:0000589 "epithelium of tongue (embryonic human)" xsd:string -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004102 ! -property_value: IAO:0000589 "epithelium of vomeronasal organ (embryonic human)" xsd:string -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001034 ! -property_value: IAO:0000589 "pelvic appendage bud ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0003371 ! pelvic appendage bud ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002134 ! -property_value: IAO:0000589 "pectoral appendage bud ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0003372 ! pectoral appendage bud ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004155 ! -property_value: IAO:0000589 "cardiac muscle of right atrium (embryonic human)" xsd:string -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004154 ! -property_value: IAO:0000589 "cardiac muscle of left atrium (embryonic human)" xsd:string -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004158 ! -property_value: IAO:0000589 "cardiac muscle tissue of interventricular septum (embryonic human)" xsd:string -intersection_of: UBERON:0003383 ! cardiac muscle tissue of interventricular septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001476 ! -property_value: IAO:0000589 "mesothelium of pleural cavity (embryonic human)" xsd:string -intersection_of: UBERON:0003390 ! mesothelium of pleural cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001035 ! -property_value: IAO:0000589 "pelvic appendage bud mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0003412 ! pelvic appendage bud mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002135 ! -property_value: IAO:0000589 "pectoral appendage bud mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0003413 ! pectoral appendage bud mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004614 ! -property_value: IAO:0000589 "mesenchyme of tongue (embryonic human)" xsd:string -intersection_of: UBERON:0003416 ! mesenchyme of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004103 ! -property_value: IAO:0000589 "mesenchyme of vomeronasal organ (embryonic human)" xsd:string -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002121 ! -property_value: IAO:0000589 "upper jaw incisor (embryonic human)" xsd:string -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001021 ! -property_value: IAO:0000589 "lower jaw incisor (embryonic human)" xsd:string -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000228 ! -property_value: IAO:0000589 "cerebellar artery (embryonic human)" xsd:string -intersection_of: UBERON:0003472 ! cerebellar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002160 ! -property_value: IAO:0000589 "vagus X nerve trunk (embryonic human)" xsd:string -intersection_of: UBERON:0003535 ! vagus X nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001175 ! -property_value: IAO:0000589 "midbrain pia mater (embryonic human)" xsd:string -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001992 ! -property_value: IAO:0000589 "telencephalon pia mater (embryonic human)" xsd:string -intersection_of: UBERON:0003552 ! telencephalon pia mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000400 ! -property_value: IAO:0000589 "diencephalon pia mater (embryonic human)" xsd:string -intersection_of: UBERON:0003553 ! diencephalon pia mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000772 ! -property_value: IAO:0000589 "hindbrain pia mater (embryonic human)" xsd:string -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001896 ! -property_value: IAO:0000589 "spinal cord pia mater (embryonic human)" xsd:string -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000517 ! -property_value: IAO:0000589 "manual digit 2 (embryonic human)" xsd:string -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000523 ! -property_value: IAO:0000589 "manual digit 3 (embryonic human)" xsd:string -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000529 ! -property_value: IAO:0000589 "manual digit 4 (embryonic human)" xsd:string -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000535 ! -property_value: IAO:0000589 "manual digit 5 (embryonic human)" xsd:string -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002037 ! -property_value: IAO:0000589 "pedal digit 1 (embryonic human)" xsd:string -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002042 ! -property_value: IAO:0000589 "pedal digit 2 (embryonic human)" xsd:string -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002047 ! -property_value: IAO:0000589 "pedal digit 3 (embryonic human)" xsd:string -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002052 ! -property_value: IAO:0000589 "pedal digit 4 (embryonic human)" xsd:string -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002057 ! -property_value: IAO:0000589 "pedal digit 5 (embryonic human)" xsd:string -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002125 ! -property_value: IAO:0000589 "upper jaw molar (embryonic human)" xsd:string -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001025 ! -property_value: IAO:0000589 "lower jaw molar (embryonic human)" xsd:string -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000252 ! -property_value: IAO:0000589 "circle of Willis (embryonic human)" xsd:string -intersection_of: UBERON:0003709 ! circle of Willis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000182 ! -property_value: IAO:0000589 "brachiocephalic vein (embryonic human)" xsd:string -intersection_of: UBERON:0003711 ! brachiocephalic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003123 ! -property_value: IAO:0000589 "neural tissue (embryonic human)" xsd:string -intersection_of: UBERON:0003714 ! neural tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002200 ! -property_value: IAO:0000589 "vestibular nerve (embryonic human)" xsd:string -intersection_of: UBERON:0003723 ! vestibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002112 ! -property_value: IAO:0000589 "forelimb stylopod (embryonic human)" xsd:string -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001030 ! -property_value: IAO:0000589 "hindlimb zeugopod (embryonic human)" xsd:string -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001269 ! -property_value: IAO:0000589 "neural tube lumen (embryonic human)" xsd:string -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002116 ! -property_value: IAO:0000589 "upper eyelid epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0003844 ! upper eyelid epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001016 ! -property_value: IAO:0000589 "lower eyelid epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0003845 ! lower eyelid epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002019 ! -property_value: IAO:0000589 "thymus epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0003846 ! thymus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002029 ! -property_value: IAO:0000589 "thyroid artery (embryonic human)" xsd:string -intersection_of: UBERON:0003847 ! thyroid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000719 ! -property_value: IAO:0000589 "gonadal vein (embryonic human)" xsd:string -intersection_of: UBERON:0003848 ! gonadal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001101 ! -property_value: IAO:0000589 "mesencephalic neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0003849 ! mesencephalic neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000603 ! -property_value: IAO:0000589 "diencephalon neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0003851 ! diencephalon neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001628 ! -property_value: IAO:0000589 "rhombencephalon neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0003852 ! rhombencephalon neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002117 ! -property_value: IAO:0000589 "upper eyelid mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0003857 ! upper eyelid mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001017 ! -property_value: IAO:0000589 "lower eyelid mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0003858 ! lower eyelid mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000246 ! -property_value: IAO:0000589 "extraembryonic coelomic cavity (embryonic human)" xsd:string -intersection_of: UBERON:0003888 ! extraembryonic coelomic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000504 ! -property_value: IAO:0000589 "fallopian tube (embryonic human)" xsd:string -intersection_of: UBERON:0003889 ! fallopian tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004048 ! -property_value: IAO:0000589 "Mullerian duct (embryonic human)" xsd:string -intersection_of: UBERON:0003890 ! Mullerian duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000744 ! -property_value: IAO:0000589 "liver primordium (embryonic human)" xsd:string -intersection_of: UBERON:0003894 ! liver primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001253 ! -property_value: IAO:0000589 "retinal neural layer (embryonic human)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000935 ! -property_value: IAO:0000589 "left atrioventricular canal (embryonic human)" xsd:string -intersection_of: UBERON:0003907 ! left atrioventricular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001719 ! -property_value: IAO:0000589 "right atrioventricular canal (embryonic human)" xsd:string -intersection_of: UBERON:0003908 ! right atrioventricular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003114 ! -property_value: IAO:0000589 "epithelial tube (embryonic human)" xsd:string -intersection_of: UBERON:0003914 ! epithelial tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001382 ! -property_value: IAO:0000589 "pancreas primordium (embryonic human)" xsd:string -intersection_of: UBERON:0003921 ! pancreas primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001385 ! -property_value: IAO:0000589 "dorsal pancreatic bud (embryonic human)" xsd:string -intersection_of: UBERON:0003923 ! dorsal pancreatic bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001389 ! -property_value: IAO:0000589 "ventral pancreatic bud (embryonic human)" xsd:string -intersection_of: UBERON:0003924 ! ventral pancreatic bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004567 ! -property_value: IAO:0000589 "digestive tract epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0003929 ! digestive tract epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001889 ! -property_value: IAO:0000589 "pterygopalatine ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0003962 ! pterygopalatine ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001335 ! -property_value: IAO:0000589 "otic ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0003963 ! otic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004046 ! -property_value: IAO:0000589 "valve (embryonic human)" xsd:string -intersection_of: UBERON:0003978 ! valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004401 ! -property_value: IAO:0000589 "cerebellar plate (embryonic human)" xsd:string -intersection_of: UBERON:0004008 ! cerebellar plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001521 ! -property_value: IAO:0000589 "primitive pit (embryonic human)" xsd:string -intersection_of: UBERON:0004055 ! primitive pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001511 ! -property_value: IAO:0000589 "primitive groove (embryonic human)" xsd:string -intersection_of: UBERON:0004056 ! primitive groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000578 ! -property_value: IAO:0000589 "frontonasal prominence (embryonic human)" xsd:string -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000916 ! -property_value: IAO:0000589 "lateral nasal prominence (embryonic human)" xsd:string -intersection_of: UBERON:0004067 ! lateral nasal prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001076 ! -property_value: IAO:0000589 "medial nasal prominence (embryonic human)" xsd:string -intersection_of: UBERON:0004068 ! medial nasal prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003080 ! -property_value: IAO:0000589 "anatomical conduit (embryonic human)" xsd:string -intersection_of: UBERON:0004111 ! anatomical conduit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004119 ! -property_value: IAO:0000589 "tympanic cavity (embryonic human)" xsd:string -intersection_of: UBERON:0004114 ! tympanic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001320 ! -property_value: IAO:0000589 "optic vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000215 ! -property_value: IAO:0000589 "cardiogenic plate (embryonic human)" xsd:string -intersection_of: UBERON:0004139 ! cardiogenic plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001351 ! -property_value: IAO:0000589 "outflow tract (embryonic human)" xsd:string -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004507 ! -property_value: IAO:0000589 "cardiac vein (embryonic human)" xsd:string -intersection_of: UBERON:0004148 ! cardiac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001825 ! -property_value: IAO:0000589 "atrial septum primum (embryonic human)" xsd:string -intersection_of: UBERON:0004154 ! atrial septum primum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001827 ! -property_value: IAO:0000589 "atrial septum secundum (embryonic human)" xsd:string -intersection_of: UBERON:0004155 ! atrial septum secundum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001829 ! -property_value: IAO:0000589 "septum transversum (embryonic human)" xsd:string -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001358 ! -property_value: IAO:0000589 "outflow tract myocardium (embryonic human)" xsd:string -intersection_of: UBERON:0004265 ! outflow tract myocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004450 ! -property_value: IAO:0000589 "lateral ventricle choroid plexus epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0004274 ! lateral ventricle choroid plexus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001843 ! -property_value: IAO:0000589 "skeleton (embryonic human)" xsd:string -intersection_of: UBERON:0004288 ! skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003259 ! -property_value: IAO:0000589 "dermomyotome (embryonic human)" xsd:string -intersection_of: UBERON:0004290 ! dermomyotome -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001401 ! -property_value: IAO:0000589 "parasympathetic nerve (embryonic human)" xsd:string -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001970 ! -property_value: IAO:0000589 "sympathetic nerve trunk (embryonic human)" xsd:string -intersection_of: UBERON:0004295 ! sympathetic nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002167 ! -property_value: IAO:0000589 "vault of skull (embryonic human)" xsd:string -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001504 ! -property_value: IAO:0000589 "allantois (embryonic human)" xsd:string -intersection_of: UBERON:0004340 ! allantois -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001525 ! -property_value: IAO:0000589 "primitive streak (embryonic human)" xsd:string -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000213 ! -property_value: IAO:0000589 "cardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002091 ! -property_value: IAO:0000589 "trophectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000006 ! -property_value: IAO:0000589 "pharyngeal arch 1 (embryonic human)" xsd:string -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000186 ! -property_value: IAO:0000589 "pharyngeal arch artery (embryonic human)" xsd:string -intersection_of: UBERON:0004363 ! pharyngeal arch artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000793 ! -property_value: IAO:0000589 "Reichert's cartilage (embryonic human)" xsd:string -intersection_of: UBERON:0004368 ! Reichert's cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002221 ! -property_value: IAO:0000589 "skeleton of limb (embryonic human)" xsd:string -intersection_of: UBERON:0004381 ! skeleton of limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000233 ! -property_value: IAO:0000589 "cerebral artery (embryonic human)" xsd:string -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000218 ! -property_value: IAO:0000589 "carpal region (embryonic human)" xsd:string -intersection_of: UBERON:0004452 ! carpal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000973 ! -property_value: IAO:0000589 "musculature of leg (embryonic human)" xsd:string -intersection_of: UBERON:0004466 ! musculature of leg -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001429 ! -property_value: IAO:0000589 "musculature of pelvic girdle (embryonic human)" xsd:string -intersection_of: UBERON:0004470 ! musculature of pelvic girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000141 ! -property_value: IAO:0000589 "musculature of arm (embryonic human)" xsd:string -intersection_of: UBERON:0004474 ! musculature of arm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000995 ! -property_value: IAO:0000589 "musculature of limb (embryonic human)" xsd:string -intersection_of: UBERON:0004480 ! musculature of limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004544 ! -property_value: IAO:0000589 "papillary muscle of right ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0004523 ! papillary muscle of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001398 ! -property_value: IAO:0000589 "papillary muscle of left ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0004524 ! papillary muscle of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000216 ! -property_value: IAO:0000589 "cardiovascular system (embryonic human)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000143 ! -property_value: IAO:0000589 "arterial system (embryonic human)" xsd:string -intersection_of: UBERON:0004572 ! arterial system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002171 ! -property_value: IAO:0000589 "venous system (embryonic human)" xsd:string -intersection_of: UBERON:0004582 ! venous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004596 ! -property_value: IAO:0000589 "interventricular septum membranous part (embryonic human)" xsd:string -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000885 ! -property_value: IAO:0000589 "interventricular septum muscular part (embryonic human)" xsd:string -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000702 ! -property_value: IAO:0000589 "gastro-splenic ligament (embryonic human)" xsd:string -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004572 ! -property_value: IAO:0000589 "lieno-renal ligament (embryonic human)" xsd:string -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000692 ! -property_value: IAO:0000589 "dorsal thalamus (embryonic human)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000197 ! -property_value: IAO:0000589 "bulbus cordis (embryonic human)" xsd:string -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000001 ! -property_value: IAO:0000589 "conceptus (embryonic human)" xsd:string -intersection_of: UBERON:0004716 ! conceptus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003235 ! -property_value: IAO:0000589 "conceptus (embryonic human)" xsd:string -intersection_of: UBERON:0004716 ! conceptus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002195 ! -property_value: IAO:0000589 "cochlear nerve (embryonic human)" xsd:string -intersection_of: UBERON:0004727 ! cochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004142 ! -property_value: IAO:0000589 "foramen ovale of heart (embryonic human)" xsd:string -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000242 ! -property_value: IAO:0000589 "posterior nasal aperture (embryonic human)" xsd:string -intersection_of: UBERON:0004771 ! posterior nasal aperture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004039 ! -property_value: IAO:0000589 "penis epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0004803 ! penis epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004065 ! -property_value: IAO:0000589 "larynx epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0004816 ! larynx epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000742 ! -property_value: IAO:0000589 "extrahepatic bile duct epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0004822 ! extrahepatic bile duct epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000743 ! -property_value: IAO:0000589 "intrahepatic bile duct epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0004823 ! intrahepatic bile duct epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001903 ! -property_value: IAO:0000589 "splanchnopleure (embryonic human)" xsd:string -intersection_of: UBERON:0004873 ! splanchnopleure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001847 ! -property_value: IAO:0000589 "somatopleure (embryonic human)" xsd:string -intersection_of: UBERON:0004874 ! somatopleure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004022 ! -property_value: IAO:0000589 "urogenital fold (embryonic human)" xsd:string -intersection_of: UBERON:0004876 ! urogenital fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000962 ! -property_value: IAO:0000589 "left lung hilus (embryonic human)" xsd:string -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001756 ! -property_value: IAO:0000589 "right lung hilus (embryonic human)" xsd:string -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001731 ! -property_value: IAO:0000589 "right lung accessory lobe (embryonic human)" xsd:string -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001736 ! -property_value: IAO:0000589 "right lung accessory lobe lobar bronchus (embryonic human)" xsd:string -intersection_of: UBERON:0004896 ! right lung accessory lobe lobar bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004061 ! -property_value: IAO:0000589 "urogenital sinus epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0004902 ! urogenital sinus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000171 ! -property_value: IAO:0000589 "biliary bud (embryonic human)" xsd:string -intersection_of: UBERON:0004912 ! biliary bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001249 ! -property_value: IAO:0000589 "neural fold (embryonic human)" xsd:string -intersection_of: UBERON:0005062 ! neural fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004203 ! -property_value: IAO:0000589 "anterior neuropore (embryonic human)" xsd:string -intersection_of: UBERON:0005070 ! anterior neuropore -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000676 ! -property_value: IAO:0000589 "posterior neuropore (embryonic human)" xsd:string -intersection_of: UBERON:0005071 ! posterior neuropore -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000903 ! -property_value: IAO:0000589 "lamina terminalis of neural tube (embryonic human)" xsd:string -intersection_of: UBERON:0005078 ! lamina terminalis of neural tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004618 ! -property_value: IAO:0000589 "tube lumen (embryonic human)" xsd:string -intersection_of: UBERON:0005082 ! tube lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001840 ! -property_value: IAO:0000589 "left horn of sinus venosus (embryonic human)" xsd:string -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001841 ! -property_value: IAO:0000589 "right horn of sinus venosus (embryonic human)" xsd:string -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001140 ! -property_value: IAO:0000589 "metanephric cortex mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005113 ! metanephric cortex mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001245 ! -property_value: IAO:0000589 "metanephric renal vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0005147 ! metanephric renal vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004052 ! -property_value: IAO:0000589 "epithelial cord (embryonic human)" xsd:string -intersection_of: UBERON:0005154 ! epithelial cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000741 ! -property_value: IAO:0000589 "hepatic duct (embryonic human)" xsd:string -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001056 ! -property_value: IAO:0000589 "thoracic mammary gland (embryonic human)" xsd:string -intersection_of: UBERON:0005200 ! thoracic mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000302 ! -property_value: IAO:0000589 "right atrium valve (embryonic human)" xsd:string -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001010 ! -property_value: IAO:0000589 "liver right lobe parenchyma (embryonic human)" xsd:string -intersection_of: UBERON:0005221 ! liver right lobe parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001002 ! -property_value: IAO:0000589 "liver left lobe parenchyma (embryonic human)" xsd:string -intersection_of: UBERON:0005222 ! liver left lobe parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001370 ! -property_value: IAO:0000589 "pancreas body parenchyma (embryonic human)" xsd:string -intersection_of: UBERON:0005223 ! pancreas body parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001392 ! -property_value: IAO:0000589 "pancreas tail parenchyma (embryonic human)" xsd:string -intersection_of: UBERON:0005224 ! pancreas tail parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002131 ! -property_value: IAO:0000589 "upper leg epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005225 ! upper leg epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000406 ! -property_value: IAO:0000589 "manual digit epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005227 ! manual digit epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002113 ! -property_value: IAO:0000589 "upper arm epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005228 ! upper arm epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001031 ! -property_value: IAO:0000589 "lower leg epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005229 ! lower leg epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001078 ! -property_value: IAO:0000589 "medial-nasal process ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005233 ! medial-nasal process ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001154 ! -property_value: IAO:0000589 "basal plate metencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001093 ! -property_value: IAO:0000589 "basal plate medulla oblongata (embryonic human)" xsd:string -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000886 ! -property_value: IAO:0000589 "interventricular septum endocardium (embryonic human)" xsd:string -intersection_of: UBERON:0005243 ! interventricular septum endocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000887 ! -property_value: IAO:0000589 "interventricular septum endocardium (embryonic human)" xsd:string -intersection_of: UBERON:0005243 ! interventricular septum endocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001752 ! -property_value: IAO:0000589 "lobar bronchus of right lung cranial lobe (embryonic human)" xsd:string -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001744 ! -property_value: IAO:0000589 "lobar bronchus of right lung caudal lobe (embryonic human)" xsd:string -intersection_of: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004558 ! -property_value: IAO:0000589 "lesser sac cavity (embryonic human)" xsd:string -intersection_of: UBERON:0005252 ! lesser sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000732 ! -property_value: IAO:0000589 "head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002132 ! -property_value: IAO:0000589 "upper leg mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002092 ! -property_value: IAO:0000589 "trunk mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000407 ! -property_value: IAO:0000589 "manual digit mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005257 ! manual digit mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002114 ! -property_value: IAO:0000589 "upper arm mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001032 ! -property_value: IAO:0000589 "lower leg mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001354 ! -property_value: IAO:0000589 "outflow tract cardiac jelly (embryonic human)" xsd:string -intersection_of: UBERON:0005263 ! outflow tract cardiac jelly -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004362 ! -property_value: IAO:0000589 "ventricular system of central nervous system (embryonic human)" xsd:string -intersection_of: UBERON:0005281 ! ventricular system of central nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001207 ! -property_value: IAO:0000589 "myelencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0005290 ! myelencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004044 ! -property_value: IAO:0000589 "gonadal ridge (embryonic human)" xsd:string -intersection_of: UBERON:0005294 ! gonadal ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004051 ! -property_value: IAO:0000589 "sex cord (embryonic human)" xsd:string -intersection_of: UBERON:0005295 ! sex cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001363 ! -property_value: IAO:0000589 "ovary sex cord (embryonic human)" xsd:string -intersection_of: UBERON:0005296 ! ovary sex cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002011 ! -property_value: IAO:0000589 "testis sex cord (embryonic human)" xsd:string -intersection_of: UBERON:0005297 ! testis sex cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001132 ! -property_value: IAO:0000589 "mesonephric mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005323 ! mesonephric mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001353 ! -property_value: IAO:0000589 "outflow tract aortic component (embryonic human)" xsd:string -intersection_of: UBERON:0005338 ! outflow tract aortic component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001359 ! -property_value: IAO:0000589 "outflow tract pulmonary component (embryonic human)" xsd:string -intersection_of: UBERON:0005339 ! outflow tract pulmonary component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001588 ! -property_value: IAO:0000589 "Rathke's pouch (embryonic human)" xsd:string -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000711 ! -property_value: IAO:0000589 "inferior glossopharyngeal IX ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0005360 ! inferior glossopharyngeal IX ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000712 ! -property_value: IAO:0000589 "superior glossopharyngeal IX ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0005361 ! superior glossopharyngeal IX ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004622 ! -property_value: IAO:0000589 "inferior vagus X ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001227 ! -property_value: IAO:0000589 "nasal cavity epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001230 ! -property_value: IAO:0000589 "nasal cavity respiratory epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005385 ! nasal cavity respiratory epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001462 ! -property_value: IAO:0000589 "philtrum (embryonic human)" xsd:string -intersection_of: UBERON:0005402 ! philtrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001938 ! -property_value: IAO:0000589 "sublingual ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0005407 ! sublingual ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000110 ! -property_value: IAO:0000589 "alimentary part of gastrointestinal system (embryonic human)" xsd:string -intersection_of: UBERON:0005409 ! alimentary part of gastrointestinal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001333 ! -property_value: IAO:0000589 "cartilaginous otic capsule (embryonic human)" xsd:string -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001319 ! -property_value: IAO:0000589 "optic fissure (embryonic human)" xsd:string -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000138 ! -property_value: IAO:0000589 "pectoral appendage apical ectodermal ridge (embryonic human)" xsd:string -intersection_of: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003194 ! -property_value: IAO:0000589 "pelvic appendage apical ectodermal ridge (embryonic human)" xsd:string -intersection_of: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003125 ! -property_value: IAO:0000589 "developing anatomical structure (embryonic human)" xsd:string -intersection_of: UBERON:0005423 ! developing anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001306 ! -property_value: IAO:0000589 "presumptive retinal pigmented epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005424 ! presumptive retinal pigmented epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001304 ! -property_value: IAO:0000589 "presumptive neural retina (embryonic human)" xsd:string -intersection_of: UBERON:0005425 ! presumptive neural retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000983 ! -property_value: IAO:0000589 "lens vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0005426 ! lens vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002156 ! -property_value: IAO:0000589 "vagal neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0005428 ! vagal neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001372 ! -property_value: IAO:0000589 "dorsal pancreatic duct (embryonic human)" xsd:string -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000124 ! -property_value: IAO:0000589 "ansa cervicalis (embryonic human)" xsd:string -intersection_of: UBERON:0005430 ! ansa cervicalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000131 ! -property_value: IAO:0000589 "anterior spinal artery (embryonic human)" xsd:string -intersection_of: UBERON:0005431 ! anterior spinal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004145 ! -property_value: IAO:0000589 "aortic sac (embryonic human)" xsd:string -intersection_of: UBERON:0005432 ! aortic sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000253 ! -property_value: IAO:0000589 "upper part of cisterna chyli (embryonic human)" xsd:string -intersection_of: UBERON:0005435 ! upper part of cisterna chyli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000308 ! -property_value: IAO:0000589 "common hepatic artery (embryonic human)" xsd:string -intersection_of: UBERON:0005436 ! common hepatic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000315 ! -property_value: IAO:0000589 "conus medullaris (embryonic human)" xsd:string -intersection_of: UBERON:0005437 ! conus medullaris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000320 ! -property_value: IAO:0000589 "coronary sinus (embryonic human)" xsd:string -intersection_of: UBERON:0005438 ! coronary sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000337 ! -property_value: IAO:0000589 "definitive endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005439 ! definitive endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000420 ! -property_value: IAO:0000589 "ductus arteriosus (embryonic human)" xsd:string -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000465 ! -property_value: IAO:0000589 "external intercostal muscle (embryonic human)" xsd:string -intersection_of: UBERON:0005441 ! external intercostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000469 ! -property_value: IAO:0000589 "abdominal external oblique muscle (embryonic human)" xsd:string -intersection_of: UBERON:0005442 ! abdominal external oblique muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000510 ! -property_value: IAO:0000589 "filum terminale (embryonic human)" xsd:string -intersection_of: UBERON:0005443 ! filum terminale -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000552 ! -property_value: IAO:0000589 "foramen rotundum (embryonic human)" xsd:string -intersection_of: UBERON:0005446 ! foramen rotundum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000720 ! -property_value: IAO:0000589 "greater omentum (embryonic human)" xsd:string -intersection_of: UBERON:0005448 ! greater omentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004738 ! -property_value: IAO:0000589 "greater sac (embryonic human)" xsd:string -intersection_of: UBERON:0005449 ! greater sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000724 ! -property_value: IAO:0000589 "greater sac cavity (embryonic human)" xsd:string -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000818 ! -property_value: IAO:0000589 "inferior mesenteric ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0005453 ! inferior mesenteric ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000879 ! -property_value: IAO:0000589 "abdominal internal oblique muscle (embryonic human)" xsd:string -intersection_of: UBERON:0005454 ! abdominal internal oblique muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000893 ! -property_value: IAO:0000589 "jugular foramen (embryonic human)" xsd:string -intersection_of: UBERON:0005456 ! jugular foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000966 ! -property_value: IAO:0000589 "left umbilical artery (embryonic human)" xsd:string -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000967 ! -property_value: IAO:0000589 "left umbilical vein (embryonic human)" xsd:string -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000971 ! -property_value: IAO:0000589 "left vitelline vein (embryonic human)" xsd:string -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000992 ! -property_value: IAO:0000589 "levator scapulae muscle (embryonic human)" xsd:string -intersection_of: UBERON:0005461 ! levator scapulae muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001087 ! -property_value: IAO:0000589 "median sacral artery (embryonic human)" xsd:string -intersection_of: UBERON:0005464 ! median sacral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001282 ! -property_value: IAO:0000589 "obturator nerve (embryonic human)" xsd:string -intersection_of: UBERON:0005465 ! obturator nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001474 ! -property_value: IAO:0000589 "platysma (embryonic human)" xsd:string -intersection_of: UBERON:0005467 ! platysma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001760 ! -property_value: IAO:0000589 "right umbilical artery (embryonic human)" xsd:string -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001761 ! -property_value: IAO:0000589 "right umbilical vein (embryonic human)" xsd:string -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001766 ! -property_value: IAO:0000589 "right vitelline vein (embryonic human)" xsd:string -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001838 ! -property_value: IAO:0000589 "sigmoid sinus (embryonic human)" xsd:string -intersection_of: UBERON:0005475 ! sigmoid sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001900 ! -property_value: IAO:0000589 "spinal nerve trunk (embryonic human)" xsd:string -intersection_of: UBERON:0005476 ! spinal nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001921 ! -property_value: IAO:0000589 "stomach fundus epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005477 ! stomach fundus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001950 ! -property_value: IAO:0000589 "superior mesenteric ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0005479 ! superior mesenteric ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001952 ! -property_value: IAO:0000589 "superior orbital fissure (embryonic human)" xsd:string -intersection_of: UBERON:0005480 ! superior orbital fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002003 ! -property_value: IAO:0000589 "tentorial sinus (embryonic human)" xsd:string -intersection_of: UBERON:0005481 ! tentorial sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002166 ! -property_value: IAO:0000589 "valve of inferior vena cava (embryonic human)" xsd:string -intersection_of: UBERON:0005485 ! valve of inferior vena cava -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002169 ! -property_value: IAO:0000589 "venous dural sinus (embryonic human)" xsd:string -intersection_of: UBERON:0005486 ! venous dural sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000714 ! -property_value: IAO:0000589 "glossopharyngeal neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0005491 ! glossopharyngeal neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000794 ! -property_value: IAO:0000589 "hyoid muscle (embryonic human)" xsd:string -intersection_of: UBERON:0005493 ! hyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000871 ! -property_value: IAO:0000589 "intermediate mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005494 ! intermediate mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001171 ! -property_value: IAO:0000589 "midbrain lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001257 ! -property_value: IAO:0000589 "neural tube lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005496 ! neural tube lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001512 ! -property_value: IAO:0000589 "primitive heart tube (embryonic human)" xsd:string -intersection_of: UBERON:0005498 ! primitive heart tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001637 ! -property_value: IAO:0000589 "rhombomere 1 (embryonic human)" xsd:string -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004324 ! -property_value: IAO:0000589 "rhombomere floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005500 ! rhombomere floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001657 ! -property_value: IAO:0000589 "rhombomere 3 (embryonic human)" xsd:string -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001667 ! -property_value: IAO:0000589 "rhombomere 4 (embryonic human)" xsd:string -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001677 ! -property_value: IAO:0000589 "rhombomere 5 (embryonic human)" xsd:string -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001687 ! -property_value: IAO:0000589 "rhombomere 6 (embryonic human)" xsd:string -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001697 ! -property_value: IAO:0000589 "rhombomere 7 (embryonic human)" xsd:string -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001707 ! -property_value: IAO:0000589 "rhombomere 8 (embryonic human)" xsd:string -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001985 ! -property_value: IAO:0000589 "telencephalon lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005561 ! telencephalon lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002023 ! -property_value: IAO:0000589 "thymus primordium (embryonic human)" xsd:string -intersection_of: UBERON:0005562 ! thymus primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002083 ! -property_value: IAO:0000589 "trigeminal neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0005563 ! trigeminal neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000492 ! -property_value: IAO:0000589 "facio-acoustic neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0005565 ! facio-acoustic neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001640 ! -property_value: IAO:0000589 "rhombomere 1 floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001641 ! -property_value: IAO:0000589 "rhombomere 1 lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001645 ! -property_value: IAO:0000589 "rhombomere 1 roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0005568 ! rhombomere 1 roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001647 ! -property_value: IAO:0000589 "rhombomere 2 (embryonic human)" xsd:string -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001650 ! -property_value: IAO:0000589 "rhombomere 2 floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001651 ! -property_value: IAO:0000589 "rhombomere 2 lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001655 ! -property_value: IAO:0000589 "rhombomere 2 roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0005572 ! rhombomere 2 roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001660 ! -property_value: IAO:0000589 "rhombomere 3 floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001661 ! -property_value: IAO:0000589 "rhombomere 3 lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001665 ! -property_value: IAO:0000589 "rhombomere 3 roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001670 ! -property_value: IAO:0000589 "rhombomere 4 floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001671 ! -property_value: IAO:0000589 "rhombomere 4 lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001675 ! -property_value: IAO:0000589 "rhombomere 4 roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001680 ! -property_value: IAO:0000589 "rhombomere 5 floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001681 ! -property_value: IAO:0000589 "rhombomere 5 lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001685 ! -property_value: IAO:0000589 "rhombomere 5 roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001690 ! -property_value: IAO:0000589 "rhombomere 6 floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001691 ! -property_value: IAO:0000589 "rhombomere 6 lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001695 ! -property_value: IAO:0000589 "rhombomere 6 roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001700 ! -property_value: IAO:0000589 "rhombomere 7 floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001701 ! -property_value: IAO:0000589 "rhombomere 7 lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001705 ! -property_value: IAO:0000589 "rhombomere 7 roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001709 ! -property_value: IAO:0000589 "rhombomere 8 floor plate (embryonic human)" xsd:string -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001710 ! -property_value: IAO:0000589 "rhombomere 8 lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001714 ! -property_value: IAO:0000589 "rhombomere 8 roof plate (embryonic human)" xsd:string -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000396 ! -property_value: IAO:0000589 "diencephalon lateral wall (embryonic human)" xsd:string -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003437 ! -property_value: IAO:0000589 "head somite (embryonic human)" xsd:string -intersection_of: UBERON:0005594 ! head somite -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003438 ! -property_value: IAO:0000589 "trunk somite (embryonic human)" xsd:string -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000307 ! -property_value: IAO:0000589 "common dorsal aorta (embryonic human)" xsd:string -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000330 ! -property_value: IAO:0000589 "crus commune (embryonic human)" xsd:string -intersection_of: UBERON:0005600 ! crus commune -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000413 ! -property_value: IAO:0000589 "dorsal mesocardium (embryonic human)" xsd:string -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000416 ! -property_value: IAO:0000589 "dorsal mesogastrium (embryonic human)" xsd:string -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000789 ! -property_value: IAO:0000589 "hyaloid cavity (embryonic human)" xsd:string -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000790 ! -property_value: IAO:0000589 "hyaloid vascular plexus (embryonic human)" xsd:string -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000811 ! -property_value: IAO:0000589 "iliac vein (embryonic human)" xsd:string -intersection_of: UBERON:0005610 ! iliac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000829 ! -property_value: IAO:0000589 "inner canthus (embryonic human)" xsd:string -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000840 ! -property_value: IAO:0000589 "intercostal artery (embryonic human)" xsd:string -intersection_of: UBERON:0005612 ! intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000936 ! -property_value: IAO:0000589 "left dorsal aorta (embryonic human)" xsd:string -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000984 ! -property_value: IAO:0000589 "lens anterior epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001123 ! -property_value: IAO:0000589 "mesenteric artery (embryonic human)" xsd:string -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001364 ! -property_value: IAO:0000589 "secondary palatal shelf (embryonic human)" xsd:string -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001496 ! -property_value: IAO:0000589 "primary palate (embryonic human)" xsd:string -intersection_of: UBERON:0005620 ! primary palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001499 ! -property_value: IAO:0000589 "primary palate (embryonic human)" xsd:string -intersection_of: UBERON:0005620 ! primary palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001635 ! -property_value: IAO:0000589 "rhomboid (embryonic human)" xsd:string -intersection_of: UBERON:0005621 ! rhomboid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001720 ! -property_value: IAO:0000589 "right dorsal aorta (embryonic human)" xsd:string -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001823 ! -property_value: IAO:0000589 "semi-lunar valve (embryonic human)" xsd:string -intersection_of: UBERON:0005623 ! semi-lunar valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001965 ! -property_value: IAO:0000589 "suprarenal artery (embryonic human)" xsd:string -intersection_of: UBERON:0005624 ! suprarenal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002095 ! -property_value: IAO:0000589 "tubotympanic recess lumen (embryonic human)" xsd:string -intersection_of: UBERON:0005625 ! tubotympanic recess lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002176 ! -property_value: IAO:0000589 "ventral mesogastrium (embryonic human)" xsd:string -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004112 ! -property_value: IAO:0000589 "vascular plexus (embryonic human)" xsd:string -intersection_of: UBERON:0005629 ! vascular plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004714 ! -property_value: IAO:0000589 "extraembryonic membrane (embryonic human)" xsd:string -intersection_of: UBERON:0005631 ! extraembryonic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000209 ! -property_value: IAO:0000589 "caecum epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005636 ! caecum epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001582 ! -property_value: IAO:0000589 "pyloric region epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005637 ! pyloric region epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000130 ! -property_value: IAO:0000589 "anterior chamber epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005638 ! anterior chamber epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001751 ! -property_value: IAO:0000589 "right lung cranial lobe epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005639 ! right lung cranial lobe epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001743 ! -property_value: IAO:0000589 "right lung caudal lobe epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005640 ! right lung caudal lobe epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002105 ! -property_value: IAO:0000589 "ultimobranchial body epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005642 ! ultimobranchial body epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000563 ! -property_value: IAO:0000589 "foregut duodenum epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005643 ! foregut duodenum epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001192 ! -property_value: IAO:0000589 "midgut duodenum epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005644 ! midgut duodenum epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000518 ! -property_value: IAO:0000589 "manual digit 2 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005645 ! manual digit 2 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000524 ! -property_value: IAO:0000589 "manual digit 3 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005646 ! manual digit 3 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000530 ! -property_value: IAO:0000589 "manual digit 4 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005647 ! manual digit 4 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000536 ! -property_value: IAO:0000589 "manual digit 5 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005648 ! manual digit 5 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002043 ! -property_value: IAO:0000589 "pedal digit 2 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005649 ! pedal digit 2 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002048 ! -property_value: IAO:0000589 "pedal digit 3 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005650 ! pedal digit 3 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002053 ! -property_value: IAO:0000589 "pedal digit 4 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005651 ! pedal digit 4 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002058 ! -property_value: IAO:0000589 "pedal digit 5 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005652 ! pedal digit 5 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002126 ! -property_value: IAO:0000589 "upper jaw molar epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005653 ! upper jaw molar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001026 ! -property_value: IAO:0000589 "lower jaw molar epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005654 ! lower jaw molar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001735 ! -property_value: IAO:0000589 "right lung accessory lobe epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005655 ! right lung accessory lobe epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000987 ! -property_value: IAO:0000589 "lens vesicle epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005656 ! lens vesicle epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001365 ! -property_value: IAO:0000589 "secondary palatal shelf epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005658 ! secondary palatal shelf epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001500 ! -property_value: IAO:0000589 "primary palate epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005659 ! primary palate epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000055 ! -property_value: IAO:0000589 "2nd arch ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000072 ! -property_value: IAO:0000589 "3rd arch ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004032 ! -property_value: IAO:0000589 "4th arch ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000061 ! -property_value: IAO:0000589 "2nd arch endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000075 ! -property_value: IAO:0000589 "3rd arch endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004033 ! -property_value: IAO:0000589 "4th arch endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000314 ! -property_value: IAO:0000589 "connecting stalk mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005667 ! connecting stalk mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001447 ! -property_value: IAO:0000589 "peritoneal cavity mesothelium (embryonic human)" xsd:string -intersection_of: UBERON:0005669 ! peritoneal cavity mesothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001755 ! -property_value: IAO:0000589 "right lung endothelium (embryonic human)" xsd:string -intersection_of: UBERON:0005672 ! right lung endothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000961 ! -property_value: IAO:0000589 "left lung endothelium (embryonic human)" xsd:string -intersection_of: UBERON:0005673 ! left lung endothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001754 ! -property_value: IAO:0000589 "right lung cranial lobe segmental bronchus (embryonic human)" xsd:string -intersection_of: UBERON:0005678 ! right lung cranial lobe segmental bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001746 ! -property_value: IAO:0000589 "right lung caudal lobe segmental bronchus (embryonic human)" xsd:string -intersection_of: UBERON:0005679 ! right lung caudal lobe segmental bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001738 ! -property_value: IAO:0000589 "right lung accessory lobe segmental bronchus (embryonic human)" xsd:string -intersection_of: UBERON:0005680 ! right lung accessory lobe segmental bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001749 ! -property_value: IAO:0000589 "right lung upper lobe bronchiole (embryonic human)" xsd:string -intersection_of: UBERON:0005681 ! right lung upper lobe bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001733 ! -property_value: IAO:0000589 "right lung accessory lobe bronchiole (embryonic human)" xsd:string -intersection_of: UBERON:0005682 ! right lung accessory lobe bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001329 ! -property_value: IAO:0000589 "orbitosphenoid cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0005687 ! orbitosphenoid cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000986 ! -property_value: IAO:0000589 "lens vesicle cavity (embryonic human)" xsd:string -intersection_of: UBERON:0005688 ! lens vesicle cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000066 ! -property_value: IAO:0000589 "2nd arch mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000081 ! -property_value: IAO:0000589 "3rd arch mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000096 ! -property_value: IAO:0000589 "4th arch mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005691 ! 4th arch mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000519 ! -property_value: IAO:0000589 "manual digit 2 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000525 ! -property_value: IAO:0000589 "manual digit 3 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000531 ! -property_value: IAO:0000589 "manual digit 4 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000537 ! -property_value: IAO:0000589 "manual digit 5 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002044 ! -property_value: IAO:0000589 "pedal digit 2 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002049 ! -property_value: IAO:0000589 "pedal digit 3 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002054 ! -property_value: IAO:0000589 "pedal digit 4 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002059 ! -property_value: IAO:0000589 "pedal digit 5 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002127 ! -property_value: IAO:0000589 "upper jaw molar odontogenic papilla (embryonic human)" xsd:string -intersection_of: UBERON:0005700 ! upper jaw molar odontogenic papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001027 ! -property_value: IAO:0000589 "lower jaw molar odontogenic papilla (embryonic human)" xsd:string -intersection_of: UBERON:0005701 ! lower jaw molar odontogenic papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001366 ! -property_value: IAO:0000589 "secondary palatal shelf mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005704 ! secondary palatal shelf mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001501 ! -property_value: IAO:0000589 "primary palate mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0005705 ! primary palate mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002123 ! -property_value: IAO:0000589 "upper jaw incisor odontogenic papilla (embryonic human)" xsd:string -intersection_of: UBERON:0005707 ! upper jaw incisor odontogenic papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001023 ! -property_value: IAO:0000589 "lower jaw incisor odontogenic papilla (embryonic human)" xsd:string -intersection_of: UBERON:0005708 ! lower jaw incisor odontogenic papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002122 ! -property_value: IAO:0000589 "upper jaw incisor epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005709 ! upper jaw incisor epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001022 ! -property_value: IAO:0000589 "lower jaw incisor epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0005710 ! lower jaw incisor epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000564 ! -property_value: IAO:0000589 "foregut duodenum mesentery (embryonic human)" xsd:string -intersection_of: UBERON:0005711 ! foregut duodenum mesentery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001193 ! -property_value: IAO:0000589 "midgut duodenum mesentery (embryonic human)" xsd:string -intersection_of: UBERON:0005712 ! midgut duodenum mesentery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000547 ! -property_value: IAO:0000589 "footplate apical ectodermal ridge (embryonic human)" xsd:string -intersection_of: UBERON:0005719 ! footplate apical ectodermal ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000776 ! -property_value: IAO:0000589 "hindbrain venous system (embryonic human)" xsd:string -intersection_of: UBERON:0005720 ! hindbrain venous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000474 ! -property_value: IAO:0000589 "extraembryonic mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0005728 ! extraembryonic mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001312 ! -property_value: IAO:0000589 "optic foramen (embryonic human)" xsd:string -intersection_of: UBERON:0005745 ! optic foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001502 ! -property_value: IAO:0000589 "primary vitreous (embryonic human)" xsd:string -intersection_of: UBERON:0005746 ! primary vitreous -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002152 ! -property_value: IAO:0000589 "urorectal septum (embryonic human)" xsd:string -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001242 ! -property_value: IAO:0000589 "nephric ridge (embryonic human)" xsd:string -intersection_of: UBERON:0005792 ! nephric ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003150 ! -property_value: IAO:0000589 "pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0005866 ! pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001061 ! -property_value: IAO:0000589 "mandibular prominence (embryonic human)" xsd:string -intersection_of: UBERON:0005867 ! mandibular prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001070 ! -property_value: IAO:0000589 "maxillary prominence (embryonic human)" xsd:string -intersection_of: UBERON:0005868 ! maxillary prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001295 ! -property_value: IAO:0000589 "olfactory pit (embryonic human)" xsd:string -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000009 ! -property_value: IAO:0000589 "1st arch pharyngeal cleft (embryonic human)" xsd:string -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000057 ! -property_value: IAO:0000589 "2nd arch pharyngeal cleft (embryonic human)" xsd:string -intersection_of: UBERON:0005873 ! 2nd arch pharyngeal cleft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000074 ! -property_value: IAO:0000589 "3rd arch pharyngeal cleft (embryonic human)" xsd:string -intersection_of: UBERON:0005874 ! 3rd arch pharyngeal cleft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000089 ! -property_value: IAO:0000589 "4th arch pharyngeal cleft (embryonic human)" xsd:string -intersection_of: UBERON:0005875 ! 4th arch pharyngeal cleft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000705 ! -property_value: IAO:0000589 "undifferentiated genital tubercle (embryonic human)" xsd:string -intersection_of: UBERON:0005876 ! undifferentiated genital tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001261 ! -property_value: IAO:0000589 "neural tube lateral wall mantle layer (embryonic human)" xsd:string -intersection_of: UBERON:0005883 ! neural tube lateral wall mantle layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001275 ! -property_value: IAO:0000589 "external naris (embryonic human)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002208 ! -property_value: IAO:0000589 "vitelline artery (embryonic human)" xsd:string -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000791 ! -property_value: IAO:0000589 "hyaloid vein (embryonic human)" xsd:string -intersection_of: UBERON:0006011 ! hyaloid vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000844 ! -property_value: IAO:0000589 "interdigital region between manual digits 1 and 2 (embryonic human)" xsd:string -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000847 ! -property_value: IAO:0000589 "interdigital region between manual digits 2 and 3 (embryonic human)" xsd:string -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000850 ! -property_value: IAO:0000589 "interdigital region between manual digits 3 and 4 (embryonic human)" xsd:string -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000853 ! -property_value: IAO:0000589 "interdigital region between manual digits 4 and 5 (embryonic human)" xsd:string -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000856 ! -property_value: IAO:0000589 "interdigital region between pedal digits 1 and 2 (embryonic human)" xsd:string -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000859 ! -property_value: IAO:0000589 "interdigital region between pedal digits 2 and 3 (embryonic human)" xsd:string -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000862 ! -property_value: IAO:0000589 "interdigital region between pedal digits 3 and 4 (embryonic human)" xsd:string -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000865 ! -property_value: IAO:0000589 "interdigital region between pedal digits 4 and 5 (embryonic human)" xsd:string -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000238 ! -property_value: IAO:0000589 "cervical region of vertebral column (embryonic human)" xsd:string -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001037 ! -property_value: IAO:0000589 "lumbar region of vertebral column (embryonic human)" xsd:string -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001772 ! -property_value: IAO:0000589 "sacral region of vertebral column (embryonic human)" xsd:string -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000582 ! -property_value: IAO:0000589 "fundus of urinary bladder (embryonic human)" xsd:string -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000136 ! -property_value: IAO:0000589 "aortico-pulmonary spiral septum (embryonic human)" xsd:string -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000155 ! -property_value: IAO:0000589 "auditory hillocks (embryonic human)" xsd:string -intersection_of: UBERON:0006208 ! auditory hillocks -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000164 ! -property_value: IAO:0000589 "basioccipital cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0006209 ! basioccipital cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000179 ! -property_value: IAO:0000589 "body-wall mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000189 ! -property_value: IAO:0000589 "buccopharyngeal membrane (embryonic human)" xsd:string -intersection_of: UBERON:0006211 ! buccopharyngeal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000195 ! -property_value: IAO:0000589 "bulbo-ventricular groove (embryonic human)" xsd:string -intersection_of: UBERON:0006212 ! bulbo-ventricular groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000221 ! -property_value: IAO:0000589 "carpus cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0006213 ! carpus cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000222 ! -property_value: IAO:0000589 "carpus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006214 ! carpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000231 ! -property_value: IAO:0000589 "rhombic lip (embryonic human)" xsd:string -intersection_of: UBERON:0006215 ! rhombic lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000078 ! -property_value: IAO:0000589 "cervical sinus of His (embryonic human)" xsd:string -intersection_of: UBERON:0006216 ! cervical sinus of His -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000257 ! -property_value: IAO:0000589 "cloacal membrane (embryonic human)" xsd:string -intersection_of: UBERON:0006217 ! cloacal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000340 ! -property_value: IAO:0000589 "deltoid pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0006219 ! deltoid pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000384 ! -property_value: IAO:0000589 "diencephalic part of interventricular foramen (embryonic human)" xsd:string -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000600 ! -property_value: IAO:0000589 "future diencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0006222 ! future diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000431 ! -property_value: IAO:0000589 "elbow joint primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006224 ! elbow joint primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000437 ! -property_value: IAO:0000589 "endolymphatic appendage (embryonic human)" xsd:string -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000456 ! -property_value: IAO:0000589 "ethmoid bone primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006227 ! ethmoid bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000457 ! -property_value: IAO:0000589 "exoccipital pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006228 ! exoccipital pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000483 ! -property_value: IAO:0000589 "extrinsic ocular pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0006230 ! extrinsic ocular pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000488 ! -property_value: IAO:0000589 "facial bone primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006231 ! facial bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000508 ! -property_value: IAO:0000589 "femur pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006234 ! femur pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000569 ! -property_value: IAO:0000589 "foregut-midgut junction (embryonic human)" xsd:string -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000577 ! -property_value: IAO:0000589 "tetrapod frontal bone primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006236 ! tetrapod frontal bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000593 ! -property_value: IAO:0000589 "future central tendon (embryonic human)" xsd:string -intersection_of: UBERON:0006239 ! future central tendon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000661 ! -property_value: IAO:0000589 "future forebrain (embryonic human)" xsd:string -intersection_of: UBERON:0006240 ! future forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000674 ! -property_value: IAO:0000589 "future spinal cord (embryonic human)" xsd:string -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000700 ! -property_value: IAO:0000589 "gallbladder primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006242 ! gallbladder primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000785 ! -property_value: IAO:0000589 "hip joint primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006244 ! hip joint primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000787 ! -property_value: IAO:0000589 "humerus cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0006245 ! humerus cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000788 ! -property_value: IAO:0000589 "humerus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006246 ! humerus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000809 ! -property_value: IAO:0000589 "iliac pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006247 ! iliac pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000813 ! -property_value: IAO:0000589 "incus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006248 ! incus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000827 ! -property_value: IAO:0000589 "infundibular recess of 3rd ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0006250 ! infundibular recess of 3rd ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000881 ! -property_value: IAO:0000589 "interparietal bone primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006251 ! interparietal bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000883 ! -property_value: IAO:0000589 "intersubcardinal venous anastomosis (embryonic human)" xsd:string -intersection_of: UBERON:0006252 ! intersubcardinal venous anastomosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000889 ! -property_value: IAO:0000589 "embryonic intraretinal space (embryonic human)" xsd:string -intersection_of: UBERON:0006253 ! embryonic intraretinal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000890 ! -property_value: IAO:0000589 "ischial cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0006254 ! ischial cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000891 ! -property_value: IAO:0000589 "ischial pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006255 ! ischial pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000897 ! -property_value: IAO:0000589 "knee joint primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006256 ! knee joint primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004073 ! -property_value: IAO:0000589 "laryngotracheal groove (embryonic human)" xsd:string -intersection_of: UBERON:0006257 ! laryngotracheal groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000981 ! -property_value: IAO:0000589 "lens pit (embryonic human)" xsd:string -intersection_of: UBERON:0006259 ! lens pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000996 ! -property_value: IAO:0000589 "lingual swellings (embryonic human)" xsd:string -intersection_of: UBERON:0006260 ! lingual swellings -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001055 ! -property_value: IAO:0000589 "malleus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006262 ! malleus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001074 ! -property_value: IAO:0000589 "Meckel's cartilage pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006263 ! Meckel's cartilage pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001206 ! -property_value: IAO:0000589 "mural trophectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001238 ! -property_value: IAO:0000589 "nasolacrimal groove (embryonic human)" xsd:string -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001278 ! -property_value: IAO:0000589 "notochordal plate (embryonic human)" xsd:string -intersection_of: UBERON:0006267 ! notochordal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001279 ! -property_value: IAO:0000589 "notochordal process (embryonic human)" xsd:string -intersection_of: UBERON:0006268 ! notochordal process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004433 ! -property_value: IAO:0000589 "optic pit (embryonic human)" xsd:string -intersection_of: UBERON:0006270 ! optic pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001328 ! -property_value: IAO:0000589 "orbital fissure (embryonic human)" xsd:string -intersection_of: UBERON:0006271 ! orbital fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001331 ! -property_value: IAO:0000589 "oronasal cavity (embryonic human)" xsd:string -intersection_of: UBERON:0006272 ! oronasal cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001336 ! -property_value: IAO:0000589 "otic pit (embryonic human)" xsd:string -intersection_of: UBERON:0006273 ! otic pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001404 ! -property_value: IAO:0000589 "tetrapod parietal bone primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006274 ! tetrapod parietal bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001440 ! -property_value: IAO:0000589 "pericardio-peritoneal canal (embryonic human)" xsd:string -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001479 ! -property_value: IAO:0000589 "pleuropericardial canals (embryonic human)" xsd:string -intersection_of: UBERON:0006277 ! pleuropericardial canals -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001480 ! -property_value: IAO:0000589 "pleuropericardial folds (embryonic human)" xsd:string -intersection_of: UBERON:0006278 ! pleuropericardial folds -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001481 ! -property_value: IAO:0000589 "pleuroperitoneal canal (embryonic human)" xsd:string -intersection_of: UBERON:0006279 ! pleuroperitoneal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001484 ! -property_value: IAO:0000589 "polar trophectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001498 ! -property_value: IAO:0000589 "primary head vein (embryonic human)" xsd:string -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001531 ! -property_value: IAO:0000589 "future cardiac ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0006283 ! future cardiac ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001571 ! -property_value: IAO:0000589 "early prosencephalic vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0006284 ! early prosencephalic vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001574 ! -property_value: IAO:0000589 "pubic pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006285 ! pubic pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001585 ! -property_value: IAO:0000589 "radius cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0006286 ! radius cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001587 ! -property_value: IAO:0000589 "radius-ulna pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006287 ! radius-ulna pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001716 ! -property_value: IAO:0000589 "rib cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0006288 ! rib cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001717 ! -property_value: IAO:0000589 "rib pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006289 ! rib pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001777 ! -property_value: IAO:0000589 "scapula cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0006290 ! scapula cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001778 ! -property_value: IAO:0000589 "scapula pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006291 ! scapula pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001836 ! -property_value: IAO:0000589 "shoulder joint primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006292 ! shoulder joint primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001904 ! -property_value: IAO:0000589 "spleen primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006293 ! spleen primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001910 ! -property_value: IAO:0000589 "stapes pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006294 ! stapes pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001912 ! -property_value: IAO:0000589 "sternebral bone pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0006295 ! sternebral bone pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001935 ! -property_value: IAO:0000589 "sublingual gland primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006297 ! sublingual gland primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001939 ! -property_value: IAO:0000589 "submandibular gland primordium (embryonic human)" xsd:string -intersection_of: UBERON:0006298 ! submandibular gland primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001964 ! -property_value: IAO:0000589 "supracardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0006300 ! supracardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001980 ! -property_value: IAO:0000589 "telencephalic part of interventricular foramen (embryonic human)" xsd:string -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002097 ! -property_value: IAO:0000589 "tunica vasculosa lentis (embryonic human)" xsd:string -intersection_of: UBERON:0006305 ! tunica vasculosa lentis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002098 ! -property_value: IAO:0000589 "ulna cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0006306 ! ulna cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004025 ! -property_value: IAO:0000589 "urogenital membrane (embryonic human)" xsd:string -intersection_of: UBERON:0006307 ! urogenital membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002210 ! -property_value: IAO:0000589 "vitelline venous plexus (embryonic human)" xsd:string -intersection_of: UBERON:0006310 ! vitelline venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001908 ! -property_value: IAO:0000589 "stapedial artery (embryonic human)" xsd:string -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003092 ! -property_value: IAO:0000589 "aponeurosis (embryonic human)" xsd:string -intersection_of: UBERON:0006614 ! aponeurosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000276 ! -property_value: IAO:0000589 "left atrium auricular region (embryonic human)" xsd:string -intersection_of: UBERON:0006630 ! left atrium auricular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000291 ! -property_value: IAO:0000589 "right atrium auricular region (embryonic human)" xsd:string -intersection_of: UBERON:0006631 ! right atrium auricular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004519 ! -property_value: IAO:0000589 "celiac trunk (embryonic human)" xsd:string -intersection_of: UBERON:0006637 ! celiac trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002096 ! -property_value: IAO:0000589 "tunica albuginea of testis (embryonic human)" xsd:string -intersection_of: UBERON:0006643 ! tunica albuginea of testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004534 ! -property_value: IAO:0000589 "hemiazygos vein (embryonic human)" xsd:string -intersection_of: UBERON:0006663 ! hemiazygos vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001828 ! -property_value: IAO:0000589 "foramen secundum (embryonic human)" xsd:string -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000910 ! -property_value: IAO:0000589 "outer canthus (embryonic human)" xsd:string -intersection_of: UBERON:0006726 ! outer canthus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001954 ! -property_value: IAO:0000589 "superior parathyroid gland (embryonic human)" xsd:string -intersection_of: UBERON:0006749 ! superior parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000821 ! -property_value: IAO:0000589 "inferior parathyroid gland (embryonic human)" xsd:string -intersection_of: UBERON:0006755 ! inferior parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001081 ! -property_value: IAO:0000589 "median lingual swelling (embryonic human)" xsd:string -intersection_of: UBERON:0006756 ! median lingual swelling -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000911 ! -property_value: IAO:0000589 "lateral lingual swelling (embryonic human)" xsd:string -intersection_of: UBERON:0006757 ! lateral lingual swelling -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000586 ! -property_value: IAO:0000589 "anterior communicating artery (embryonic human)" xsd:string -intersection_of: UBERON:0006764 ! anterior communicating artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003231 ! -property_value: IAO:0000589 "efferent nerve (embryonic human)" xsd:string -intersection_of: UBERON:0006798 ! efferent nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003008 ! -property_value: IAO:0000589 "anatomical line (embryonic human)" xsd:string -intersection_of: UBERON:0006800 ! anatomical line -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000729 ! -property_value: IAO:0000589 "handplate apical ectodermal ridge (embryonic human)" xsd:string -intersection_of: UBERON:0006872 ! handplate apical ectodermal ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003454 ! -property_value: IAO:0000589 "vasculature of liver (embryonic human)" xsd:string -intersection_of: UBERON:0006877 ! vasculature of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001118 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001062 ! -property_value: IAO:0000589 "mandibular process mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0006905 ! mandibular process mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001470 ! -property_value: IAO:0000589 "pinna surface epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001940 ! -property_value: IAO:0000589 "submandibular gland primordium epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0006957 ! submandibular gland primordium epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004508 ! -property_value: IAO:0000589 "great vein of heart (embryonic human)" xsd:string -intersection_of: UBERON:0006958 ! great vein of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001416 ! -property_value: IAO:0000589 "pars distalis of adenohypophysis (embryonic human)" xsd:string -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003009 ! -property_value: IAO:0000589 "anatomical point (embryonic human)" xsd:string -intersection_of: UBERON:0006983 ! anatomical point -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000214 ! -property_value: IAO:0000589 "cardiogenic splanchnic mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0007005 ! cardiogenic splanchnic mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004717 ! -property_value: IAO:0000589 "chorionic villus (embryonic human)" xsd:string -intersection_of: UBERON:0007106 ! chorionic villus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000016 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (embryonic human)" xsd:string -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000058 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (embryonic human)" xsd:string -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000077 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (embryonic human)" xsd:string -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000091 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (embryonic human)" xsd:string -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001442 ! -property_value: IAO:0000589 "pericardio-peritoneal canal mesothelium (embryonic human)" xsd:string -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003177 ! -property_value: IAO:0000589 "hermaphrodite anatomical structure (embryonic human)" xsd:string -intersection_of: UBERON:0007198 ! hermaphrodite anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000735 ! -property_value: IAO:0000589 "mesenchyme derived from head neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002093 ! -property_value: IAO:0000589 "mesenchyme derived from trunk neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000031 ! -property_value: IAO:0000589 "1st arch mandibular component (embryonic human)" xsd:string -intersection_of: UBERON:0007237 ! 1st arch mandibular component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000038 ! -property_value: IAO:0000589 "1st arch maxillary component (embryonic human)" xsd:string -intersection_of: UBERON:0007238 ! 1st arch maxillary component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002070 ! -property_value: IAO:0000589 "trachea pre-cartilage rings (embryonic human)" xsd:string -intersection_of: UBERON:0007267 ! trachea pre-cartilage rings -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001630 ! -property_value: IAO:0000589 "presumptive hindbrain (embryonic human)" xsd:string -intersection_of: UBERON:0007277 ! presumptive hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003081 ! -property_value: IAO:0000589 "matrix-based tissue (embryonic human)" xsd:string -intersection_of: UBERON:0007475 ! matrix-based tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003095 ! -property_value: IAO:0000589 "fluid-based anatomical entity (embryonic human)" xsd:string -intersection_of: UBERON:0007486 ! fluid-based anatomical entity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003099 ! -property_value: IAO:0000589 "keratin-based acellular structure (embryonic human)" xsd:string -intersection_of: UBERON:0007490 ! keratin-based acellular structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003100 ! -property_value: IAO:0000589 "chitin-based acellular structure (embryonic human)" xsd:string -intersection_of: UBERON:0007491 ! chitin-based acellular structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003115 ! -property_value: IAO:0000589 "epithelial sac (embryonic human)" xsd:string -intersection_of: UBERON:0007499 ! epithelial sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003117 ! -property_value: IAO:0000589 "arborizing epithelial duct system (embryonic human)" xsd:string -intersection_of: UBERON:0007501 ! arborizing epithelial duct system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003118 ! -property_value: IAO:0000589 "epithelial plexus (embryonic human)" xsd:string -intersection_of: UBERON:0007502 ! epithelial plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003119 ! -property_value: IAO:0000589 "epithelial vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0007503 ! epithelial vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003143 ! -property_value: IAO:0000589 "smooth muscle sphincter (embryonic human)" xsd:string -intersection_of: UBERON:0007521 ! smooth muscle sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003144 ! -property_value: IAO:0000589 "striated muscle sphincter (embryonic human)" xsd:string -intersection_of: UBERON:0007522 ! striated muscle sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003146 ! -property_value: IAO:0000589 "dense mesenchyme tissue (embryonic human)" xsd:string -intersection_of: UBERON:0007524 ! dense mesenchyme tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003151 ! -property_value: IAO:0000589 "loose mesenchyme tissue (embryonic human)" xsd:string -intersection_of: UBERON:0007529 ! loose mesenchyme tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003152 ! -property_value: IAO:0000589 "migrating mesenchyme population (embryonic human)" xsd:string -intersection_of: UBERON:0007530 ! migrating mesenchyme population -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003233 ! -property_value: IAO:0000589 "regenerating anatomical structure (embryonic human)" xsd:string -intersection_of: UBERON:0007567 ! regenerating anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003251 ! -property_value: IAO:0000589 "migrating epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0007573 ! migrating epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004453 ! -property_value: IAO:0000589 "future meninx (embryonic human)" xsd:string -intersection_of: UBERON:0007645 ! future meninx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004317 ! -property_value: IAO:0000589 "ectomeninx (embryonic human)" xsd:string -intersection_of: UBERON:0007647 ! ectomeninx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003170 ! -property_value: IAO:0000589 "anlage (embryonic human)" xsd:string -intersection_of: UBERON:0007688 ! anlage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001457 ! -property_value: IAO:0000589 "early pharyngeal endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0007690 ! early pharyngeal endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004520 ! -property_value: IAO:0000589 "vascular system (embryonic human)" xsd:string -intersection_of: UBERON:0007798 ! vascular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000313 ! -property_value: IAO:0000589 "connecting stalk vasculature (embryonic human)" xsd:string -intersection_of: UBERON:0007807 ! connecting stalk vasculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001420 ! -property_value: IAO:0000589 "pectoral girdle skeleton (embryonic human)" xsd:string -intersection_of: UBERON:0007831 ! pectoral girdle skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001426 ! -property_value: IAO:0000589 "pelvic girdle skeleton (embryonic human)" xsd:string -intersection_of: UBERON:0007832 ! pelvic girdle skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003085 ! -property_value: IAO:0000589 "membrane bone (embryonic human)" xsd:string -intersection_of: UBERON:0007842 ! membrane bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004539 ! -property_value: IAO:0000589 "right supracardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0008268 ! right supracardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001421 ! -property_value: IAO:0000589 "pectoral girdle and thoracic body wall skeletal muscle (embryonic human)" xsd:string -intersection_of: UBERON:0008713 ! pectoral girdle and thoracic body wall skeletal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000796 ! -property_value: IAO:0000589 "inner cell mass derived hypoblast (embryonic human)" xsd:string -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000444 ! -property_value: IAO:0000589 "inner cell mass derived epiblast (embryonic human)" xsd:string -intersection_of: UBERON:0008780 ! inner cell mass derived epiblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001413 ! -property_value: IAO:0000589 "parotid gland primordium (embryonic human)" xsd:string -intersection_of: UBERON:0008801 ! parotid gland primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000187 ! -property_value: IAO:0000589 "pharyngeal arch system (embryonic human)" xsd:string -intersection_of: UBERON:0008814 ! pharyngeal arch system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000740 ! -property_value: IAO:0000589 "hepatic diverticulum (embryonic human)" xsd:string -intersection_of: UBERON:0008835 ! hepatic diverticulum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003232 ! -property_value: IAO:0000589 "skeletal ligament (embryonic human)" xsd:string -intersection_of: UBERON:0008846 ! skeletal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003237 ! -property_value: IAO:0000589 "parietal yolk sac (embryonic human)" xsd:string -intersection_of: UBERON:0008853 ! parietal yolk sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000473 ! -property_value: IAO:0000589 "extraembryonic endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004069 ! -property_value: IAO:0000589 "respiratory primordium (embryonic human)" xsd:string -intersection_of: UBERON:0008947 ! respiratory primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000953 ! -property_value: IAO:0000589 "upper lobe of left lung (embryonic human)" xsd:string -intersection_of: UBERON:0008952 ! upper lobe of left lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000945 ! -property_value: IAO:0000589 "lower lobe of left lung (embryonic human)" xsd:string -intersection_of: UBERON:0008953 ! lower lobe of left lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004710 ! -property_value: IAO:0000589 "habenular nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0008993 ! habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000716 ! -property_value: IAO:0000589 "indifferent gonad (embryonic human)" xsd:string -intersection_of: UBERON:0009117 ! indifferent gonad -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004206 ! -property_value: IAO:0000589 "geniculate placode (embryonic human)" xsd:string -intersection_of: UBERON:0009124 ! geniculate placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004207 ! -property_value: IAO:0000589 "petrosal placode (embryonic human)" xsd:string -intersection_of: UBERON:0009125 ! petrosal placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004208 ! -property_value: IAO:0000589 "nodosal placode (embryonic human)" xsd:string -intersection_of: UBERON:0009126 ! nodosal placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000274 ! -property_value: IAO:0000589 "right atrium endocardium (embryonic human)" xsd:string -intersection_of: UBERON:0009129 ! right atrium endocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001450 ! -property_value: IAO:0000589 "peroneus (embryonic human)" xsd:string -intersection_of: UBERON:0009132 ! peroneus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001483 ! -property_value: IAO:0000589 "pleuroperitoneal membrane (embryonic human)" xsd:string -intersection_of: UBERON:0009133 ! pleuroperitoneal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004535 ! -property_value: IAO:0000589 "right common cardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0009138 ! right common cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004536 ! -property_value: IAO:0000589 "right posterior cardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0009139 ! right posterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004538 ! -property_value: IAO:0000589 "right subcardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0009140 ! right subcardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004542 ! -property_value: IAO:0000589 "craniocervical region vein (embryonic human)" xsd:string -intersection_of: UBERON:0009141 ! craniocervical region vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001113 ! -property_value: IAO:0000589 "entire embryonic mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009142 ! entire embryonic mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001826 ! -property_value: IAO:0000589 "foramen primum (embryonic human)" xsd:string -intersection_of: UBERON:0009149 ! foramen primum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003446 ! -property_value: IAO:0000589 "sphenoid bone pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0009191 ! sphenoid bone pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003447 ! -property_value: IAO:0000589 "basisphenoid pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0009192 ! basisphenoid pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001888 ! -property_value: IAO:0000589 "sphenoid cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0009193 ! sphenoid cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000166 ! -property_value: IAO:0000589 "basisphenoid cartilage condenstion (embryonic human)" xsd:string -intersection_of: UBERON:0009194 ! basisphenoid cartilage condenstion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004018 ! -property_value: IAO:0000589 "anal membrane (embryonic human)" xsd:string -intersection_of: UBERON:0009195 ! anal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004021 ! -property_value: IAO:0000589 "indifferent external genitalia (embryonic human)" xsd:string -intersection_of: UBERON:0009196 ! indifferent external genitalia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000165 ! -property_value: IAO:0000589 "basioccipital pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0009197 ! basioccipital pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001077 ! -property_value: IAO:0000589 "medial nasal process mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009204 ! medial nasal process mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000917 ! -property_value: IAO:0000589 "lateral nasal process mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009205 ! lateral nasal process mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000918 ! -property_value: IAO:0000589 "lateral nasal process surface ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0009206 ! lateral nasal process surface ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000581 ! -property_value: IAO:0000589 "embryonic nasal process (embryonic human)" xsd:string -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001340 ! -property_value: IAO:0000589 "associated mesenchyme of otic placode (embryonic human)" xsd:string -intersection_of: UBERON:0009477 ! associated mesenchyme of otic placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001186 ! -property_value: IAO:0000589 "associated mesenchyme of midgut (embryonic human)" xsd:string -intersection_of: UBERON:0009478 ! associated mesenchyme of midgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000190 ! -property_value: IAO:0000589 "ectoderm of buccopharyngeal membrane (embryonic human)" xsd:string -intersection_of: UBERON:0009479 ! ectoderm of buccopharyngeal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000191 ! -property_value: IAO:0000589 "endoderm of buccopharyngeal membrane (embryonic human)" xsd:string -intersection_of: UBERON:0009480 ! endoderm of buccopharyngeal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001441 ! -property_value: IAO:0000589 "cavity of pericardio-peritoneal canal (embryonic human)" xsd:string -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000570 ! -property_value: IAO:0000589 "associated mesenchyme of foregut-midgut junction (embryonic human)" xsd:string -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000575 ! -property_value: IAO:0000589 "mesentery of foregut-midgut junction (embryonic human)" xsd:string -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000571 ! -property_value: IAO:0000589 "dorsal mesentery of mesentery of foregut-midgut junction (embryonic human)" xsd:string -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000172 ! -property_value: IAO:0000589 "extrahepatic part of biliary bud (embryonic human)" xsd:string -intersection_of: UBERON:0009495 ! extrahepatic part of biliary bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000173 ! -property_value: IAO:0000589 "intrahepatic part of biliary bud (embryonic human)" xsd:string -intersection_of: UBERON:0009496 ! intrahepatic part of biliary bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000573 ! -property_value: IAO:0000589 "epithelium of foregut-midgut junction (embryonic human)" xsd:string -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001409 ! -property_value: IAO:0000589 "parietal of mesothelium of pericardio-peritoneal canal (embryonic human)" xsd:string -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001343 ! -property_value: IAO:0000589 "periotic mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009500 ! periotic mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004109 ! -property_value: IAO:0000589 "mesenchyme of fronto-nasal process (embryonic human)" xsd:string -intersection_of: UBERON:0009501 ! mesenchyme of fronto-nasal process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000780 ! -property_value: IAO:0000589 "mesenchyme of hindgut (embryonic human)" xsd:string -intersection_of: UBERON:0009503 ! mesenchyme of hindgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001045 ! -property_value: IAO:0000589 "mesenchyme of main bronchus (embryonic human)" xsd:string -intersection_of: UBERON:0009504 ! mesenchyme of main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002067 ! -property_value: IAO:0000589 "mesenchyme of trachea (embryonic human)" xsd:string -intersection_of: UBERON:0009505 ! mesenchyme of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001182 ! -property_value: IAO:0000589 "mesenchyme of middle ear (embryonic human)" xsd:string -intersection_of: UBERON:0009506 ! mesenchyme of middle ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004020 ! -property_value: IAO:0000589 "anal membrane endodermal component (embryonic human)" xsd:string -intersection_of: UBERON:0009521 ! anal membrane endodermal component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000913 ! -property_value: IAO:0000589 "lateral lingual swelling epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0009522 ! lateral lingual swelling epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000731 ! -property_value: IAO:0000589 "mesenchyme of handplate (embryonic human)" xsd:string -intersection_of: UBERON:0009523 ! mesenchyme of handplate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001071 ! -property_value: IAO:0000589 "maxillary process mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009526 ! maxillary process mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000963 ! -property_value: IAO:0000589 "vascular element of left lung (embryonic human)" xsd:string -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001757 ! -property_value: IAO:0000589 "vascular element of right lung (embryonic human)" xsd:string -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001937 ! -property_value: IAO:0000589 "mesenchyme of sublingual gland primordium (embryonic human)" xsd:string -intersection_of: UBERON:0009538 ! mesenchyme of sublingual gland primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001941 ! -property_value: IAO:0000589 "mesenchyme of submandibular gland primordium (embryonic human)" xsd:string -intersection_of: UBERON:0009539 ! mesenchyme of submandibular gland primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001001 ! -property_value: IAO:0000589 "hepatic sinusoid of left of lobe of liver (embryonic human)" xsd:string -intersection_of: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001009 ! -property_value: IAO:0000589 "hepatic sinusoid of right of lobe of liver (embryonic human)" xsd:string -intersection_of: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000572 ! -property_value: IAO:0000589 "endoderm of foregut-midgut junction (embryonic human)" xsd:string -intersection_of: UBERON:0009550 ! endoderm of foregut-midgut junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001265 ! -property_value: IAO:0000589 "spinal cord sulcus limitans (embryonic human)" xsd:string -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001100 ! -property_value: IAO:0000589 "medulla oblongata sulcus limitans (embryonic human)" xsd:string -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001161 ! -property_value: IAO:0000589 "metencephalon sulcus limitans (embryonic human)" xsd:string -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001945 ! -property_value: IAO:0000589 "myelencephalon sulcus limitans (embryonic human)" xsd:string -intersection_of: UBERON:0009578 ! myelencephalon sulcus limitans -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000646 ! -property_value: IAO:0000589 "myelencephalon basal plate (embryonic human)" xsd:string -intersection_of: UBERON:0009579 ! myelencephalon basal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000397 ! -property_value: IAO:0000589 "diencephalon mantle layer (embryonic human)" xsd:string -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001172 ! -property_value: IAO:0000589 "midbrain mantle layer (embryonic human)" xsd:string -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000034 ! -property_value: IAO:0000589 "1st arch mandibular mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009584 ! 1st arch mandibular mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000846 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between manual digits 1 and 2 (embryonic human)" xsd:string -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000849 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between manual digits 2 and 3 (embryonic human)" xsd:string -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000852 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between manual digits 3 and 4 (embryonic human)" xsd:string -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000855 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between manual digits 4 and 5 (embryonic human)" xsd:string -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000858 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between pedal digits 1 and 2 (embryonic human)" xsd:string -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000861 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between pedal digits 2 and 3 (embryonic human)" xsd:string -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000864 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between pedal digits 3 and 4 (embryonic human)" xsd:string -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000867 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between pedal digits 4 and 5 (embryonic human)" xsd:string -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000944 ! -property_value: IAO:0000589 "left lung associated mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001739 ! -property_value: IAO:0000589 "right lung associated mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000615 ! -property_value: IAO:0000589 "presumptive midbrain (embryonic human)" xsd:string -intersection_of: UBERON:0009616 ! presumptive midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000736 ! -property_value: IAO:0000589 "head paraxial mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0009617 ! head paraxial mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002094 ! -property_value: IAO:0000589 "trunk paraxial mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0009618 ! trunk paraxial mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003239 ! -property_value: IAO:0000589 "tail bud paraxial mesoderm (embryonic human)" xsd:string -intersection_of: UBERON:0009620 ! tail bud paraxial mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004566 ! -property_value: IAO:0000589 "gut mesentery (embryonic human)" xsd:string -intersection_of: UBERON:0009664 ! gut mesentery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004569 ! -property_value: IAO:0000589 "ventral mesentery (embryonic human)" xsd:string -intersection_of: UBERON:0009668 ! ventral mesentery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004586 ! -property_value: IAO:0000589 "embryonic cloacal lumen (embryonic human)" xsd:string -intersection_of: UBERON:0009669 ! embryonic cloacal lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004587 ! -property_value: IAO:0000589 "rectal lumen (embryonic human)" xsd:string -intersection_of: UBERON:0009670 ! rectal lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004548 ! -property_value: IAO:0000589 "nasal fin (embryonic human)" xsd:string -intersection_of: UBERON:0009671 ! nasal fin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000188 ! -property_value: IAO:0000589 "oronasal membrane (embryonic human)" xsd:string -intersection_of: UBERON:0009672 ! oronasal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000107 ! -property_value: IAO:0000589 "accessory XI nerve cranial component (embryonic human)" xsd:string -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000108 ! -property_value: IAO:0000589 "accessory XI nerve spinal component (embryonic human)" xsd:string -intersection_of: UBERON:0009674 ! accessory XI nerve spinal component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000490 ! -property_value: IAO:0000589 "chorda tympani branch of facial nerve (embryonic human)" xsd:string -intersection_of: UBERON:0009675 ! chorda tympani branch of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001981 ! -property_value: IAO:0000589 "early telencephalic vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001029 ! -property_value: IAO:0000589 "set of lower jaw teeth (embryonic human)" xsd:string -intersection_of: UBERON:0009679 ! set of lower jaw teeth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002129 ! -property_value: IAO:0000589 "set of upper jaw teeth (embryonic human)" xsd:string -intersection_of: UBERON:0009680 ! set of upper jaw teeth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004509 ! -property_value: IAO:0000589 "middle cardiac vein (embryonic human)" xsd:string -intersection_of: UBERON:0009687 ! middle cardiac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000660 ! -property_value: IAO:0000589 "posterior inferior cerebellar artery (embryonic human)" xsd:string -intersection_of: UBERON:0009688 ! posterior inferior cerebellar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000587 ! -property_value: IAO:0000589 "anterior inferior cerebellar artery (embryonic human)" xsd:string -intersection_of: UBERON:0009689 ! anterior inferior cerebellar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004118 ! -property_value: IAO:0000589 "lumen of pharyngotympanic tube (embryonic human)" xsd:string -intersection_of: UBERON:0009692 ! lumen of pharyngotympanic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004575 ! -property_value: IAO:0000589 "epithelium of laryngopharynx (embryonic human)" xsd:string -intersection_of: UBERON:0009695 ! epithelium of laryngopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004561 ! -property_value: IAO:0000589 "epithelium of appendix (embryonic human)" xsd:string -intersection_of: UBERON:0009697 ! epithelium of appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001371 ! -property_value: IAO:0000589 "dorsal pancreas (embryonic human)" xsd:string -intersection_of: UBERON:0009708 ! dorsal pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001393 ! -property_value: IAO:0000589 "ventral pancreas (embryonic human)" xsd:string -intersection_of: UBERON:0009709 ! ventral pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002188 ! -property_value: IAO:0000589 "endocardium of right ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002182 ! -property_value: IAO:0000589 "endocardium of left ventricle (embryonic human)" xsd:string -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000868 ! -property_value: IAO:0000589 "intermaxillary process (embryonic human)" xsd:string -intersection_of: UBERON:0009714 ! intermaxillary process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004621 ! -property_value: IAO:0000589 "entire pharyngeal arch endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0009722 ! entire pharyngeal arch endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004162 ! -property_value: IAO:0000589 "cardiac mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0009751 ! cardiac mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000304 ! -property_value: IAO:0000589 "left common cardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0009769 ! left common cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000127 ! -property_value: IAO:0000589 "left anterior cardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0009771 ! left anterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004537 ! -property_value: IAO:0000589 "right anterior cardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0009772 ! right anterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004737 ! -property_value: IAO:0000589 "pleural sac (embryonic human)" xsd:string -intersection_of: UBERON:0009778 ! pleural sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004169 ! -property_value: IAO:0000589 "cardiac muscle tissue of right auricle (embryonic human)" xsd:string -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004168 ! -property_value: IAO:0000589 "cardiac muscle tissue of left auricle (embryonic human)" xsd:string -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000229 ! -property_value: IAO:0000589 "upper rhombic lip (embryonic human)" xsd:string -intersection_of: UBERON:0009841 ! upper rhombic lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002142 ! -property_value: IAO:0000589 "urogenital sinus lumen (embryonic human)" xsd:string -intersection_of: UBERON:0009844 ! urogenital sinus lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004585 ! -property_value: IAO:0000589 "embryonic cloacal epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0009846 ! embryonic cloacal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001315 ! -property_value: IAO:0000589 "optic neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0009920 ! optic neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004058 ! -property_value: IAO:0000589 "bladder lumen (embryonic human)" xsd:string -intersection_of: UBERON:0009958 ! bladder lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004556 ! -property_value: IAO:0000589 "lumen of oropharynx (embryonic human)" xsd:string -intersection_of: UBERON:0009959 ! lumen of oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001527 ! -property_value: IAO:0000589 "primitive superior sagittal sinus (embryonic human)" xsd:string -intersection_of: UBERON:0009968 ! primitive superior sagittal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004138 ! -property_value: IAO:0000589 "lumen of Rathke's pouch (embryonic human)" xsd:string -intersection_of: UBERON:0009974 ! lumen of Rathke's pouch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004139 ! -property_value: IAO:0000589 "remnant of lumen of Rathke's pouch (embryonic human)" xsd:string -intersection_of: UBERON:0009975 ! remnant of lumen of Rathke's pouch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004115 ! -property_value: IAO:0000589 "tubotympanic recess epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0010020 ! tubotympanic recess epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000409 ! -property_value: IAO:0000589 "dorsal part of pharyngeal pouch 3 (embryonic human)" xsd:string -intersection_of: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002173 ! -property_value: IAO:0000589 "ventral part of pharyngeal pouch 3 (embryonic human)" xsd:string -intersection_of: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004076 ! -property_value: IAO:0000589 "6th arch mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010031 ! 6th arch mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004611 ! -property_value: IAO:0000589 "copula linguae (embryonic human)" xsd:string -intersection_of: UBERON:0010034 ! copula linguae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000041 ! -property_value: IAO:0000589 "1st arch maxillary mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010045 ! 1st arch maxillary mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001459 ! -property_value: IAO:0000589 "entire pharyngeal arch associated mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010046 ! entire pharyngeal arch associated mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001327 ! -property_value: IAO:0000589 "oral gland (embryonic human)" xsd:string -intersection_of: UBERON:0010047 ! oral gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000696 ! -property_value: IAO:0000589 "future tongue (embryonic human)" xsd:string -intersection_of: UBERON:0010056 ! future tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000799 ! -property_value: IAO:0000589 "hypopharyngeal eminence (embryonic human)" xsd:string -intersection_of: UBERON:0010057 ! hypopharyngeal eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004610 ! -property_value: IAO:0000589 "hypoglossal cord (embryonic human)" xsd:string -intersection_of: UBERON:0010059 ! hypoglossal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004117 ! -property_value: IAO:0000589 "pharyngotympanic tube epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0010062 ! pharyngotympanic tube epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004116 ! -property_value: IAO:0000589 "tympanic cavity epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0010063 ! tympanic cavity epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004616 ! -property_value: IAO:0000589 "open anatomical space (embryonic human)" xsd:string -intersection_of: UBERON:0010064 ! open anatomical space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004114 ! -property_value: IAO:0000589 "auditory meatus epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0010065 ! auditory meatus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000595 ! -property_value: IAO:0000589 "future common hepatic duct (embryonic human)" xsd:string -intersection_of: UBERON:0010081 ! future common hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000598 ! -property_value: IAO:0000589 "future dermis (embryonic human)" xsd:string -intersection_of: UBERON:0010083 ! future dermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000599 ! -property_value: IAO:0000589 "future diaphragm (embryonic human)" xsd:string -intersection_of: UBERON:0010084 ! future diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000608 ! -property_value: IAO:0000589 "future falx cerebri (embryonic human)" xsd:string -intersection_of: UBERON:0010090 ! future falx cerebri -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000610 ! -property_value: IAO:0000589 "future hindbrain meninx (embryonic human)" xsd:string -intersection_of: UBERON:0010091 ! future hindbrain meninx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000623 ! -property_value: IAO:0000589 "future metencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0010092 ! future metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000640 ! -property_value: IAO:0000589 "future myelencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0010096 ! future myelencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004639 ! -property_value: IAO:0000589 "future facial nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0010123 ! future facial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004643 ! -property_value: IAO:0000589 "future inferior salivatory nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0010124 ! future inferior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004644 ! -property_value: IAO:0000589 "future superior salivatory nucleus (embryonic human)" xsd:string -intersection_of: UBERON:0010125 ! future superior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004647 ! -property_value: IAO:0000589 "future nucleus ambiguus (embryonic human)" xsd:string -intersection_of: UBERON:0010126 ! future nucleus ambiguus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004650 ! -property_value: IAO:0000589 "future dorsal motor nucleus of vagus (embryonic human)" xsd:string -intersection_of: UBERON:0010127 ! future dorsal motor nucleus of vagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000673 ! -property_value: IAO:0000589 "future pterygopalatine ganglion (embryonic human)" xsd:string -intersection_of: UBERON:0010128 ! future pterygopalatine ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004528 ! -property_value: IAO:0000589 "conducting tissue of heart (embryonic human)" xsd:string -intersection_of: UBERON:0010131 ! conducting tissue of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000310 ! -property_value: IAO:0000589 "gastroduodenal artery (embryonic human)" xsd:string -intersection_of: UBERON:0010132 ! gastroduodenal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004051 ! -property_value: IAO:0000589 "primitive sex cord of indifferent gonad (embryonic human)" xsd:string -intersection_of: UBERON:0010141 ! primitive sex cord of indifferent gonad -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003250 ! -property_value: IAO:0000589 "protuberance (embryonic human)" xsd:string -intersection_of: UBERON:0010188 ! protuberance -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001762 ! -property_value: IAO:0000589 "right atrium venous valve (embryonic human)" xsd:string -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000410 ! -property_value: IAO:0000589 "pair of dorsal aortae (embryonic human)" xsd:string -intersection_of: UBERON:0010190 ! pair of dorsal aortae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004512 ! -property_value: IAO:0000589 "aortic system (embryonic human)" xsd:string -intersection_of: UBERON:0010191 ! aortic system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000306 ! -property_value: IAO:0000589 "trunk of common carotid artery (embryonic human)" xsd:string -intersection_of: UBERON:0010197 ! trunk of common carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000904 ! -property_value: IAO:0000589 "laryngeal apparatus (embryonic human)" xsd:string -intersection_of: UBERON:0010212 ! laryngeal apparatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000327 ! -property_value: IAO:0000589 "cricoid pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010214 ! cricoid pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000146 ! -property_value: IAO:0000589 "arytenoid swellings (embryonic human)" xsd:string -intersection_of: UBERON:0010215 ! arytenoid swellings -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004088 ! -property_value: IAO:0000589 "thyroid pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010219 ! thyroid pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000144 ! -property_value: IAO:0000589 "arytenoid pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010220 ! arytenoid pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004085 ! -property_value: IAO:0000589 "laryngeal associated mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010221 ! laryngeal associated mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004469 ! -property_value: IAO:0000589 "thalamic complex (embryonic human)" xsd:string -intersection_of: UBERON:0010225 ! thalamic complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000037 ! -property_value: IAO:0000589 "1st arch mandibular mesenchyme from neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010252 ! 1st arch mandibular mesenchyme from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000044 ! -property_value: IAO:0000589 "1st arch maxillary mesenchyme from neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010253 ! 1st arch maxillary mesenchyme from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000068 ! -property_value: IAO:0000589 "2nd arch mesenchyme from neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000083 ! -property_value: IAO:0000589 "3rd arch mesenchyme from neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000098 ! -property_value: IAO:0000589 "4th arch mesenchyme from neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010256 ! 4th arch mesenchyme from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004077 ! -property_value: IAO:0000589 "6th arch mesenchyme from neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010257 ! 6th arch mesenchyme from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004423 ! -property_value: IAO:0000589 "mesenchyme from rhombencephalic neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010258 ! mesenchyme from rhombencephalic neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004375 ! -property_value: IAO:0000589 "midbrain basal plate (embryonic human)" xsd:string -intersection_of: UBERON:0010285 ! midbrain basal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000730 ! -property_value: IAO:0000589 "epithelium of handplate (embryonic human)" xsd:string -intersection_of: UBERON:0010332 ! epithelium of handplate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004601 ! -property_value: IAO:0000589 "maxillary process mesenchyme from neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010334 ! maxillary process mesenchyme from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004602 ! -property_value: IAO:0000589 "maxillary process mesenchyme from head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010335 ! maxillary process mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004603 ! -property_value: IAO:0000589 "mandibular process mesenchyme from neural crest (embryonic human)" xsd:string -intersection_of: UBERON:0010336 ! mandibular process mesenchyme from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004604 ! -property_value: IAO:0000589 "mandibular process mesenchyme from head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010337 ! mandibular process mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000043 ! -property_value: IAO:0000589 "1st arch maxillary mesenchyme from head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010338 ! 1st arch maxillary mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000036 ! -property_value: IAO:0000589 "1st arch mandibular mesenchyme from head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010339 ! 1st arch mandibular mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000067 ! -property_value: IAO:0000589 "2nd arch mesenchyme from head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000082 ! -property_value: IAO:0000589 "3rd arch mesenchyme from head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000097 ! -property_value: IAO:0000589 "4th arch mesenchyme from head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004078 ! -property_value: IAO:0000589 "6th arch mesenchyme from head mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010347 ! 6th arch mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000795 ! -property_value: IAO:0000589 "hyoid pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010348 ! hyoid pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000833 ! -property_value: IAO:0000589 "otic capsule pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010349 ! otic capsule pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001384 ! -property_value: IAO:0000589 "pancreas dorsal primordium (embryonic human)" xsd:string -intersection_of: UBERON:0010375 ! pancreas dorsal primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001387 ! -property_value: IAO:0000589 "pancreas ventral primordium (embryonic human)" xsd:string -intersection_of: UBERON:0010376 ! pancreas ventral primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001120 ! -property_value: IAO:0000589 "mesenchyme from somatopleure (embryonic human)" xsd:string -intersection_of: UBERON:0010377 ! mesenchyme from somatopleure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001122 ! -property_value: IAO:0000589 "mesenchyme from splanchnopleure (embryonic human)" xsd:string -intersection_of: UBERON:0010378 ! mesenchyme from splanchnopleure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001143 ! -property_value: IAO:0000589 "metanephros induced blastemal cells (embryonic human)" xsd:string -intersection_of: UBERON:0010531 ! metanephros induced blastemal cells -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001516 ! -property_value: IAO:0000589 "primitive metanephric nephron (embryonic human)" xsd:string -intersection_of: UBERON:0010535 ! primitive metanephric nephron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001978 ! -property_value: IAO:0000589 "tarsus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010540 ! tarsus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001977 ! -property_value: IAO:0000589 "tarsus cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010541 ! tarsus cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002040 ! -property_value: IAO:0000589 "pedal digit 1 metatarsal pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010547 ! pedal digit 1 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002045 ! -property_value: IAO:0000589 "pedal digit 2 metatarsal pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010548 ! pedal digit 2 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002050 ! -property_value: IAO:0000589 "pedal digit 3 metatarsal pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010549 ! pedal digit 3 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002055 ! -property_value: IAO:0000589 "pedal digit 4 metatarsal pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010550 ! pedal digit 4 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002060 ! -property_value: IAO:0000589 "pedal digit 5 metatarsal pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010551 ! pedal digit 5 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002039 ! -property_value: IAO:0000589 "pedal digit 1 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000513 ! -property_value: IAO:0000589 "manual digit 1 mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000515 ! -property_value: IAO:0000589 "manual digit 1 metacarpus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010565 ! manual digit 1 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000521 ! -property_value: IAO:0000589 "manual digit 2 metacarpus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010566 ! manual digit 2 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000527 ! -property_value: IAO:0000589 "manual digit 3 metacarpus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010567 ! manual digit 3 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000533 ! -property_value: IAO:0000589 "manual digit 4 metacarpus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010568 ! manual digit 4 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000539 ! -property_value: IAO:0000589 "manual digit 5 metacarpus pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010569 ! manual digit 5 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000514 ! -property_value: IAO:0000589 "manual digit 1 metacarpus cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010570 ! manual digit 1 metacarpus cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000520 ! -property_value: IAO:0000589 "manual digit 2 metacarpus cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010571 ! manual digit 2 metacarpus cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000526 ! -property_value: IAO:0000589 "manual digit 3 metacarpus cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010572 ! manual digit 3 metacarpus cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000532 ! -property_value: IAO:0000589 "manual digit 4 metacarpus cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010573 ! manual digit 4 metacarpus cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000538 ! -property_value: IAO:0000589 "manual digit 5 metacarpus cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010574 ! manual digit 5 metacarpus cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000516 ! -property_value: IAO:0000589 "manual digit 1 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010575 ! manual digit 1 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000522 ! -property_value: IAO:0000589 "manual digit 2 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010576 ! manual digit 2 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000528 ! -property_value: IAO:0000589 "manual digit 3 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010577 ! manual digit 3 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000534 ! -property_value: IAO:0000589 "manual digit 4 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010578 ! manual digit 4 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000540 ! -property_value: IAO:0000589 "manual digit 5 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010579 ! manual digit 5 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002041 ! -property_value: IAO:0000589 "pedal digit 1 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010580 ! pedal digit 1 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002046 ! -property_value: IAO:0000589 "pedal digit 2 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010581 ! pedal digit 2 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002051 ! -property_value: IAO:0000589 "pedal digit 3 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010582 ! pedal digit 3 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002056 ! -property_value: IAO:0000589 "pedal digit 4 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010583 ! pedal digit 4 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002061 ! -property_value: IAO:0000589 "pedal digit 5 phalanx pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010584 ! pedal digit 5 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000512 ! -property_value: IAO:0000589 "manual digit 1 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0010690 ! manual digit 1 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002038 ! -property_value: IAO:0000589 "pedal digit 1 epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0010693 ! pedal digit 1 epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001014 ! -property_value: IAO:0000589 "parenchyma of quadrate lobe of liver (embryonic human)" xsd:string -intersection_of: UBERON:0010704 ! parenchyma of quadrate lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001007 ! -property_value: IAO:0000589 "parenchyma of caudate lobe of liver (embryonic human)" xsd:string -intersection_of: UBERON:0010706 ! parenchyma of caudate lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000808 ! -property_value: IAO:0000589 "iliac cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010714 ! iliac cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001573 ! -property_value: IAO:0000589 "pubic cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010718 ! pubic cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003449 ! -property_value: IAO:0000589 "sphenoid lesser wing pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010728 ! sphenoid lesser wing pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003448 ! -property_value: IAO:0000589 "alisphenoid pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010732 ! alisphenoid pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003450 ! -property_value: IAO:0000589 "alisphenoid cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010733 ! alisphenoid cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004661 ! -property_value: IAO:0000589 "meningeal cluster (embryonic human)" xsd:string -intersection_of: UBERON:0010743 ! meningeal cluster -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001774 ! -property_value: IAO:0000589 "sacral vertebra pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010744 ! sacral vertebra pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001773 ! -property_value: IAO:0000589 "sacral vertebra cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0010745 ! sacral vertebra cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001907 ! -property_value: IAO:0000589 "squamous part of temporal bone primordium (embryonic human)" xsd:string -intersection_of: UBERON:0010751 ! squamous part of temporal bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001586 ! -property_value: IAO:0000589 "radius pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010846 ! radius pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002100 ! -property_value: IAO:0000589 "ulna pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010847 ! ulna pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002036 ! -property_value: IAO:0000589 "tibia pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010850 ! tibia pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000509 ! -property_value: IAO:0000589 "fibula pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010852 ! fibula pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000254 ! -property_value: IAO:0000589 "clavicle bone primordium (embryonic human)" xsd:string -intersection_of: UBERON:0010905 ! clavicle bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001909 ! -property_value: IAO:0000589 "stapedius pre-muscle condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010929 ! stapedius pre-muscle condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002002 ! -property_value: IAO:0000589 "tensor tympani pre-muscle condensation (embryonic human)" xsd:string -intersection_of: UBERON:0010935 ! tensor tympani pre-muscle condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002079 ! -property_value: IAO:0000589 "trapezius pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010955 ! trapezius pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000455 ! -property_value: IAO:0000589 "erector spinae pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010961 ! erector spinae pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000459 ! -property_value: IAO:0000589 "extensor pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010962 ! extensor pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003425 ! -property_value: IAO:0000589 "trunk and cervical myotome group (embryonic human)" xsd:string -intersection_of: UBERON:0010963 ! trunk and cervical myotome group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000843 ! -property_value: IAO:0000589 "intercostal pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010970 ! intercostal pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000467 ! -property_value: IAO:0000589 "external intercostal pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010974 ! external intercostal pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000470 ! -property_value: IAO:0000589 "external oblique pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010975 ! external oblique pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000543 ! -property_value: IAO:0000589 "flexor pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010977 ! flexor pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000876 ! -property_value: IAO:0000589 "internal intercostal pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010981 ! internal intercostal pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000933 ! -property_value: IAO:0000589 "latissimus dorsi pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010982 ! latissimus dorsi pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000993 ! -property_value: IAO:0000589 "levator scapulae pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010983 ! levator scapulae pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001423 ! -property_value: IAO:0000589 "pectoral pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010984 ! pectoral pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001636 ! -property_value: IAO:0000589 "rhomboid pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010985 ! rhomboid pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001833 ! -property_value: IAO:0000589 "serratus ventralis pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010986 ! serratus ventralis pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001913 ! -property_value: IAO:0000589 "sterno-mastoid pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010987 ! sterno-mastoid pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002005 ! -property_value: IAO:0000589 "teres major pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010988 ! teres major pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002076 ! -property_value: IAO:0000589 "transverospinalis pre-muscle mass (embryonic human)" xsd:string -intersection_of: UBERON:0010989 ! transverospinalis pre-muscle mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002075 ! -property_value: IAO:0000589 "transversospinales muscle (embryonic human)" xsd:string -intersection_of: UBERON:0010990 ! transversospinales muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000277 ! -property_value: IAO:0000589 "endocardium of left auricle (embryonic human)" xsd:string -intersection_of: UBERON:0011006 ! endocardium of left auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000292 ! -property_value: IAO:0000589 "endocardium of right auricle (embryonic human)" xsd:string -intersection_of: UBERON:0011007 ! endocardium of right auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002206 ! -property_value: IAO:0000589 "facial skeleton (embryonic human)" xsd:string -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001963 ! -property_value: IAO:0000589 "supraoccipital pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0011163 ! supraoccipital pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004113 ! -property_value: IAO:0000589 "ophthalmic vein (embryonic human)" xsd:string -intersection_of: UBERON:0011191 ! ophthalmic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000824 ! -property_value: IAO:0000589 "inferior parathyroid epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0011195 ! inferior parathyroid epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001957 ! -property_value: IAO:0000589 "superior parathyroid epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0011196 ! superior parathyroid epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004725 ! -property_value: IAO:0000589 "urachus epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0011202 ! urachus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004726 ! -property_value: IAO:0000589 "urachus mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0011203 ! urachus mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001075 ! -property_value: IAO:0000589 "medial migration pathway NC-derived mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000915 ! -property_value: IAO:0000589 "lateral migration pathway NC-derived mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001845 ! -property_value: IAO:0000589 "embryonic skin basal layer (embryonic human)" xsd:string -intersection_of: UBERON:0011272 ! embryonic skin basal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001063 ! -property_value: IAO:0000589 "manubrium sternum pre-cartilage condensation (embryonic human)" xsd:string -intersection_of: UBERON:0011301 ! manubrium sternum pre-cartilage condensation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001244 ! -property_value: IAO:0000589 "mesonephric duct lumen (embryonic human)" xsd:string -intersection_of: UBERON:0011574 ! mesonephric duct lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002120 ! -property_value: IAO:0000589 "future upper lip (embryonic human)" xsd:string -intersection_of: UBERON:0011592 ! future upper lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001020 ! -property_value: IAO:0000589 "future lower lip (embryonic human)" xsd:string -intersection_of: UBERON:0011596 ! future lower lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001495 ! -property_value: IAO:0000589 "early premaxilla (embryonic human)" xsd:string -intersection_of: UBERON:0011628 ! early premaxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004137 ! -property_value: IAO:0000589 "oral epithelium from ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0011642 ! oral epithelium from ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000216 ! -property_value: IAO:0000589 "embryonic cardiovascular system (embryonic human)" xsd:string -intersection_of: UBERON:0011695 ! embryonic cardiovascular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000937 ! -property_value: IAO:0000589 "left extraembryonic umbilical artery (embryonic human)" xsd:string -intersection_of: UBERON:0011696 ! left extraembryonic umbilical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001721 ! -property_value: IAO:0000589 "right extraembryonic umbilical artery (embryonic human)" xsd:string -intersection_of: UBERON:0011697 ! right extraembryonic umbilical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001006 ! -property_value: IAO:0000589 "caudate lobe hepatic sinusoid (embryonic human)" xsd:string -intersection_of: UBERON:0011737 ! caudate lobe hepatic sinusoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001013 ! -property_value: IAO:0000589 "quadrate lobe hepatic sinusoid (embryonic human)" xsd:string -intersection_of: UBERON:0011738 ! quadrate lobe hepatic sinusoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000501 ! -property_value: IAO:0000589 "female labial swelling (embryonic human)" xsd:string -intersection_of: UBERON:0011755 ! female labial swelling -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001049 ! -property_value: IAO:0000589 "male genital swelling (embryonic human)" xsd:string -intersection_of: UBERON:0011756 ! male genital swelling -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000152 ! -property_value: IAO:0000589 "lumen of atrioventricular canal (embryonic human)" xsd:string -intersection_of: UBERON:0011819 ! lumen of atrioventricular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004149 ! -property_value: IAO:0000589 "atrioventricular region (embryonic human)" xsd:string -intersection_of: UBERON:0011820 ! atrioventricular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000177 ! -property_value: IAO:0000589 "yolk sac blood island (embryonic human)" xsd:string -intersection_of: UBERON:0011919 ! yolk sac blood island -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0003242 ! -property_value: IAO:0000589 "connecting stalk blood islands (embryonic human)" xsd:string -intersection_of: UBERON:0011921 ! connecting stalk blood islands -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004731 ! -property_value: IAO:0000589 "coelom (embryonic human)" xsd:string -intersection_of: UBERON:0011997 ! coelom -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000947 ! -property_value: IAO:0000589 "left lung lower lobe bronchiole (embryonic human)" xsd:string -intersection_of: UBERON:0012055 ! left lung lower lobe bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000955 ! -property_value: IAO:0000589 "left lung upper lobe bronchiole (embryonic human)" xsd:string -intersection_of: UBERON:0012056 ! left lung upper lobe bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004094 ! -property_value: IAO:0000589 "right lung lower lobe bronchiole (embryonic human)" xsd:string -intersection_of: UBERON:0012059 ! right lung lower lobe bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000494 ! -property_value: IAO:0000589 "acoustico-facial VII-VIII ganglion complex (embryonic human)" xsd:string -intersection_of: UBERON:0012175 ! acoustico-facial VII-VIII ganglion complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001473 ! -property_value: IAO:0000589 "Rathkes pouch epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0012287 ! Rathkes pouch epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004009 ! -property_value: IAO:0000589 "embryonic cloacal fold (embryonic human)" xsd:string -intersection_of: UBERON:0012292 ! embryonic cloacal fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004012 ! -property_value: IAO:0000589 "anal fold (embryonic human)" xsd:string -intersection_of: UBERON:0012293 ! anal fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004599 ! -property_value: IAO:0000589 "maxillary process ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0012312 ! maxillary process ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000039 ! -property_value: IAO:0000589 "1st arch maxillary ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0012313 ! 1st arch maxillary ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004588 ! -property_value: IAO:0000589 "internal anal region (embryonic human)" xsd:string -intersection_of: UBERON:0012361 ! internal anal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000447 ! -property_value: IAO:0000589 "epiploic foramen (embryonic human)" xsd:string -intersection_of: UBERON:0012442 ! epiploic foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000472 ! -property_value: IAO:0000589 "extraembryonic cavity (embryonic human)" xsd:string -intersection_of: UBERON:0012466 ! extraembryonic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004589 ! -property_value: IAO:0000589 "external anal region (embryonic human)" xsd:string -intersection_of: UBERON:0012469 ! external anal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001486 ! -property_value: IAO:0000589 "left posterior cardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0013124 ! left posterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001932 ! -property_value: IAO:0000589 "left subcardinal vein (embryonic human)" xsd:string -intersection_of: UBERON:0013125 ! left subcardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000185 ! -property_value: IAO:0000589 "venous system of brain (embryonic human)" xsd:string -intersection_of: UBERON:0013146 ! venous system of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001102 ! -property_value: IAO:0000589 "early mesencephalic vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0013147 ! early mesencephalic vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001103 ! -property_value: IAO:0000589 "early midbrain vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0013148 ! early midbrain vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000101 ! -property_value: IAO:0000589 "hindbrain vesicle (embryonic human)" xsd:string -intersection_of: UBERON:0013149 ! hindbrain vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004064 ! -property_value: IAO:0000589 "interventricular foramen of heart (embryonic human)" xsd:string -intersection_of: UBERON:0013152 ! interventricular foramen of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000040 ! -property_value: IAO:0000589 "1st arch maxillary endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0013154 ! 1st arch maxillary endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000032 ! -property_value: IAO:0000589 "1st arch mandibular ectoderm (embryonic human)" xsd:string -intersection_of: UBERON:0013155 ! 1st arch mandibular ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000033 ! -property_value: IAO:0000589 "1st arch mandibular endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0013156 ! 1st arch mandibular endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000046 ! -property_value: IAO:0000589 "1st arch maxillary-mandibular cleft (embryonic human)" xsd:string -intersection_of: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000574 ! -property_value: IAO:0000589 "foregut-midgut junction gland (embryonic human)" xsd:string -intersection_of: UBERON:0013158 ! foregut-midgut junction gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000449 ! -property_value: IAO:0000589 "epithalamus mantle layer (embryonic human)" xsd:string -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000450 ! -property_value: IAO:0000589 "epithalamus ventricular layer (embryonic human)" xsd:string -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001052 ! -property_value: IAO:0000589 "male paramesonephric duct (embryonic human)" xsd:string -intersection_of: UBERON:0013247 ! male paramesonephric duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004313 ! -property_value: IAO:0000589 "vestibulo-cochlear VIII ganglion complex (embryonic human)" xsd:string -intersection_of: UBERON:0013498 ! vestibulo-cochlear VIII ganglion complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000260 ! -property_value: IAO:0000589 "caudal vertebra cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0013503 ! caudal vertebra cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000240 ! -property_value: IAO:0000589 "cervical vertebra cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0013505 ! cervical vertebra cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002014 ! -property_value: IAO:0000589 "thoracic vertebra cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0013507 ! thoracic vertebra cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001038 ! -property_value: IAO:0000589 "lumbar vertebra cartilage element (embryonic human)" xsd:string -intersection_of: UBERON:0013509 ! lumbar vertebra cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004121 ! -property_value: IAO:0000589 "otocyst lumen (embryonic human)" xsd:string -intersection_of: UBERON:0013526 ! otocyst lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000159 ! -property_value: IAO:0000589 "axial musculature (embryonic human)" xsd:string -intersection_of: UBERON:0013700 ! axial musculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004424 ! -property_value: IAO:0000589 "future telencephalon (embryonic human)" xsd:string -intersection_of: UBERON:0014371 ! future telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002013 ! -property_value: IAO:0000589 "thoracic skeleton (embryonic human)" xsd:string -intersection_of: UBERON:0014477 ! thoracic skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000479 ! -property_value: IAO:0000589 "extraembryonic venous system (embryonic human)" xsd:string -intersection_of: UBERON:0014699 ! extraembryonic venous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000478 ! -property_value: IAO:0000589 "extraembryonic vascular system (embryonic human)" xsd:string -intersection_of: UBERON:0014701 ! extraembryonic vascular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004108 ! -property_value: IAO:0000589 "frontonasal process epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0014702 ! frontonasal process epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004019 ! -property_value: IAO:0000589 "anal membrane ectodermal component (embryonic human)" xsd:string -intersection_of: UBERON:0014703 ! anal membrane ectodermal component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004736 ! -property_value: IAO:0000589 "pleuroperitoneal canal lumen (embryonic human)" xsd:string -intersection_of: UBERON:0014704 ! pleuroperitoneal canal lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001085 ! -property_value: IAO:0000589 "median lingual swelling epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0014705 ! median lingual swelling epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001147 ! -property_value: IAO:0000589 "primitive renal collecting duct system (embryonic human)" xsd:string -intersection_of: UBERON:0014706 ! primitive renal collecting duct system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000597 ! -property_value: IAO:0000589 "crus of diaphragm (embryonic human)" xsd:string -intersection_of: UBERON:0014765 ! crus of diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004352 ! -property_value: IAO:0000589 "midbrain neuromere (embryonic human)" xsd:string -intersection_of: UBERON:0014776 ! midbrain neuromere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000113 ! -property_value: IAO:0000589 "allantois of embryonic urinary system (embryonic human)" xsd:string -intersection_of: UBERON:0014782 ! allantois of embryonic urinary system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000938 ! -property_value: IAO:0000589 "left extraembryonic umbilical vein (embryonic human)" xsd:string -intersection_of: UBERON:0014787 ! left extraembryonic umbilical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001722 ! -property_value: IAO:0000589 "right extraembryonic umbilical vein (embryonic human)" xsd:string -intersection_of: UBERON:0014788 ! right extraembryonic umbilical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0002223 ! -property_value: IAO:0000589 "glandular system (embryonic human)" xsd:string -intersection_of: UBERON:0015204 ! glandular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001153 ! -property_value: IAO:0000589 "cerebellum ventricular layer (embryonic human)" xsd:string -intersection_of: UBERON:0015828 ! cerebellum ventricular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000566 ! -property_value: IAO:0000589 "lower foregut region endoderm (embryonic human)" xsd:string -intersection_of: UBERON:0016547 ! lower foregut region endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000003 ! -property_value: IAO:0000589 "entire extraembryonic component (embryonic human)" xsd:string -intersection_of: UBERON:0016887 ! entire extraembryonic component -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001064 ! -property_value: IAO:0000589 "marginal venous sinus (embryonic human)" xsd:string -intersection_of: UBERON:0017637 ! marginal venous sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001514 ! -property_value: IAO:0000589 "primitive marginal sinus (embryonic human)" xsd:string -intersection_of: UBERON:0017638 ! primitive marginal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001842 ! -property_value: IAO:0000589 "skeletal musculature (embryonic human)" xsd:string -intersection_of: UBERON:0018254 ! skeletal musculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001432 ! -property_value: IAO:0000589 "pelvic splanchnic nerve (embryonic human)" xsd:string -intersection_of: UBERON:0018675 ! pelvic splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004353 ! -property_value: IAO:0000589 "mesomere 1 (embryonic human)" xsd:string -intersection_of: UBERON:0019272 ! mesomere 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004354 ! -property_value: IAO:0000589 "mesomere 2 (embryonic human)" xsd:string -intersection_of: UBERON:0019274 ! mesomere 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001152 ! -property_value: IAO:0000589 "cerebellum marginal layer (embryonic human)" xsd:string -intersection_of: UBERON:0034708 ! cerebellum marginal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001267 ! -property_value: IAO:0000589 "spinal cord ventricular layer (embryonic human)" xsd:string -intersection_of: UBERON:0034710 ! spinal cord ventricular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001472 ! -property_value: IAO:0000589 "future pituitary gland (embryonic human)" xsd:string -intersection_of: UBERON:0034875 ! future pituitary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004434 ! -property_value: IAO:0000589 "future neurohypophysis (embryonic human)" xsd:string -intersection_of: UBERON:0034876 ! future neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001821 ! -property_value: IAO:0000589 "secondary yolk sac cavity (embryonic human)" xsd:string -intersection_of: UBERON:0035676 ! secondary yolk sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0001503 ! -property_value: IAO:0000589 "primary yolk sac cavity (embryonic human)" xsd:string -intersection_of: UBERON:0035677 ! primary yolk sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004525 ! -property_value: IAO:0000589 "capillary network of liver (embryonic human)" xsd:string -intersection_of: UBERON:0035756 ! capillary network of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004540 ! -property_value: IAO:0000589 "embryonic capillary plexus (embryonic human)" xsd:string -intersection_of: UBERON:0035757 ! embryonic capillary plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004181 ! -property_value: IAO:0000589 "cavity of cardiac chamber (embryonic human)" xsd:string -intersection_of: UBERON:0035763 ! cavity of cardiac chamber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004070 ! -property_value: IAO:0000589 "respiratory primordium epithelium (embryonic human)" xsd:string -intersection_of: UBERON:0036072 ! respiratory primordium epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0004071 ! -property_value: IAO:0000589 "respiratory primordium mesenchyme (embryonic human)" xsd:string -intersection_of: UBERON:0036073 ! respiratory primordium mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:0000253 ! -property_value: IAO:0000589 "embryonic cisterna chyli (embryonic human)" xsd:string -intersection_of: UBERON:0036260 ! embryonic cisterna chyli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: EHDAA2:ENTITY -name: EHDAA2 entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-ehdaa2.owl b/src/ontology/bridge/uberon-bridge-to-ehdaa2.owl index 33ce3572ca..27c964caed 100644 --- a/src/ontology/bridge/uberon-bridge-to-ehdaa2.owl +++ b/src/ontology/bridge/uberon-bridge-to-ehdaa2.owl @@ -7,20 +7,13 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Jonathan Bard - Uberon editors - Equivalence axioms between EHDAA2 and Uberon. EHDAA2 replaces EHDAA - Uberon bridge to ehdaa2 - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Jonathan Bard + Uberon editors + Equivalence axioms between EHDAA2 and Uberon. EHDAA2 replaces EHDAA. + Uberon bridge to ehdaa2 @@ -36,18 +29,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -56,215 +37,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -281,42 +72,13 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -345,8 +107,7 @@ - conceptus (embryonic human) - EHDAA2:0000001 + conceptus (embryonic human) @@ -365,8 +126,7 @@ - embryo (embryonic human) - EHDAA2:0000002 + embryo (embryonic human) @@ -385,8 +145,7 @@ - entire extraembryonic component (embryonic human) - EHDAA2:0000003 + entire extraembryonic component (embryonic human) @@ -405,8 +164,7 @@ - morula (embryonic human) - EHDAA2:0000005 + morula (embryonic human) @@ -425,8 +183,7 @@ - pharyngeal arch 1 (embryonic human) - EHDAA2:0000006 + pharyngeal arch 1 (embryonic human) @@ -445,8 +202,7 @@ - pharyngeal arch artery 1 (embryonic human) - EHDAA2:0000007 + pharyngeal arch artery 1 (embryonic human) @@ -465,8 +221,7 @@ - 1st arch pharyngeal cleft (embryonic human) - EHDAA2:0000009 + 1st arch pharyngeal cleft (embryonic human) @@ -485,8 +240,7 @@ - pharyngeal pouch 1 (embryonic human) - EHDAA2:0000016 + pharyngeal pouch 1 (embryonic human) @@ -505,8 +259,7 @@ - 1st arch mandibular component (embryonic human) - EHDAA2:0000031 + 1st arch mandibular component (embryonic human) @@ -525,8 +278,7 @@ - 1st arch mandibular ectoderm (embryonic human) - EHDAA2:0000032 + 1st arch mandibular ectoderm (embryonic human) @@ -545,8 +297,7 @@ - 1st arch mandibular endoderm (embryonic human) - EHDAA2:0000033 + 1st arch mandibular endoderm (embryonic human) @@ -565,8 +316,7 @@ - 1st arch mandibular mesenchyme (embryonic human) - EHDAA2:0000034 + 1st arch mandibular mesenchyme (embryonic human) @@ -585,8 +335,7 @@ - 1st arch mandibular mesenchyme from head mesenchyme (embryonic human) - EHDAA2:0000036 + 1st arch mandibular mesenchyme from head mesenchyme (embryonic human) @@ -605,8 +354,7 @@ - 1st arch mandibular mesenchyme from neural crest (embryonic human) - EHDAA2:0000037 + 1st arch mandibular mesenchyme from neural crest (embryonic human) @@ -625,8 +373,7 @@ - 1st arch maxillary component (embryonic human) - EHDAA2:0000038 + 1st arch maxillary component (embryonic human) @@ -645,8 +392,7 @@ - 1st arch maxillary ectoderm (embryonic human) - EHDAA2:0000039 + 1st arch maxillary ectoderm (embryonic human) @@ -665,8 +411,7 @@ - 1st arch maxillary endoderm (embryonic human) - EHDAA2:0000040 + 1st arch maxillary endoderm (embryonic human) @@ -685,8 +430,7 @@ - 1st arch maxillary mesenchyme (embryonic human) - EHDAA2:0000041 + 1st arch maxillary mesenchyme (embryonic human) @@ -705,8 +449,7 @@ - 1st arch maxillary mesenchyme from head mesenchyme (embryonic human) - EHDAA2:0000043 + 1st arch maxillary mesenchyme from head mesenchyme (embryonic human) @@ -725,8 +468,7 @@ - 1st arch maxillary mesenchyme from neural crest (embryonic human) - EHDAA2:0000044 + 1st arch maxillary mesenchyme from neural crest (embryonic human) @@ -745,8 +487,7 @@ - 1st arch maxillary-mandibular cleft (embryonic human) - EHDAA2:0000046 + 1st arch maxillary-mandibular cleft (embryonic human) @@ -765,8 +506,7 @@ - pharyngeal arch 2 (embryonic human) - EHDAA2:0000050 + pharyngeal arch 2 (embryonic human) @@ -785,8 +525,7 @@ - pharyngeal arch artery 2 (embryonic human) - EHDAA2:0000051 + pharyngeal arch artery 2 (embryonic human) @@ -805,8 +544,7 @@ - 2nd arch ectoderm (embryonic human) - EHDAA2:0000055 + 2nd arch ectoderm (embryonic human) @@ -825,8 +563,7 @@ - 2nd arch pharyngeal cleft (embryonic human) - EHDAA2:0000057 + 2nd arch pharyngeal cleft (embryonic human) @@ -845,8 +582,7 @@ - pharyngeal pouch 2 (embryonic human) - EHDAA2:0000058 + pharyngeal pouch 2 (embryonic human) @@ -865,8 +601,7 @@ - 2nd arch endoderm (embryonic human) - EHDAA2:0000061 + 2nd arch endoderm (embryonic human) @@ -885,8 +620,7 @@ - 2nd arch mesenchyme (embryonic human) - EHDAA2:0000066 + 2nd arch mesenchyme (embryonic human) @@ -905,8 +639,7 @@ - 2nd arch mesenchyme from head mesenchyme (embryonic human) - EHDAA2:0000067 + 2nd arch mesenchyme from head mesenchyme (embryonic human) @@ -925,8 +658,7 @@ - 2nd arch mesenchyme from neural crest (embryonic human) - EHDAA2:0000068 + 2nd arch mesenchyme from neural crest (embryonic human) @@ -945,8 +677,7 @@ - pharyngeal arch 3 (embryonic human) - EHDAA2:0000069 + pharyngeal arch 3 (embryonic human) @@ -965,8 +696,7 @@ - pharyngeal arch artery 3 (embryonic human) - EHDAA2:0000070 + pharyngeal arch artery 3 (embryonic human) @@ -985,8 +715,7 @@ - 3rd arch ectoderm (embryonic human) - EHDAA2:0000072 + 3rd arch ectoderm (embryonic human) @@ -1005,8 +734,7 @@ - 3rd arch pharyngeal cleft (embryonic human) - EHDAA2:0000074 + 3rd arch pharyngeal cleft (embryonic human) @@ -1025,8 +753,7 @@ - 3rd arch endoderm (embryonic human) - EHDAA2:0000075 + 3rd arch endoderm (embryonic human) @@ -1045,8 +772,7 @@ - pharyngeal pouch 3 (embryonic human) - EHDAA2:0000077 + pharyngeal pouch 3 (embryonic human) @@ -1065,8 +791,7 @@ - cervical sinus of His (embryonic human) - EHDAA2:0000078 + cervical sinus of His (embryonic human) @@ -1085,8 +810,7 @@ - 3rd arch mesenchyme (embryonic human) - EHDAA2:0000081 + 3rd arch mesenchyme (embryonic human) @@ -1105,8 +829,7 @@ - 3rd arch mesenchyme from head mesenchyme (embryonic human) - EHDAA2:0000082 + 3rd arch mesenchyme from head mesenchyme (embryonic human) @@ -1125,8 +848,7 @@ - 3rd arch mesenchyme from neural crest (embryonic human) - EHDAA2:0000083 + 3rd arch mesenchyme from neural crest (embryonic human) @@ -1145,8 +867,7 @@ - third ventricle (embryonic human) - EHDAA2:0000084 + third ventricle (embryonic human) @@ -1165,8 +886,7 @@ - pharyngeal arch 4 (embryonic human) - EHDAA2:0000086 + pharyngeal arch 4 (embryonic human) @@ -1185,8 +905,7 @@ - pharyngeal arch artery 4 (embryonic human) - EHDAA2:0000087 + pharyngeal arch artery 4 (embryonic human) @@ -1205,8 +924,7 @@ - 4th arch pharyngeal cleft (embryonic human) - EHDAA2:0000089 + 4th arch pharyngeal cleft (embryonic human) @@ -1225,8 +943,7 @@ - pharyngeal pouch 4 (embryonic human) - EHDAA2:0000091 + pharyngeal pouch 4 (embryonic human) @@ -1245,8 +962,7 @@ - 4th arch mesenchyme (embryonic human) - EHDAA2:0000096 + 4th arch mesenchyme (embryonic human) @@ -1265,8 +981,7 @@ - 4th arch mesenchyme from head mesenchyme (embryonic human) - EHDAA2:0000097 + 4th arch mesenchyme from head mesenchyme (embryonic human) @@ -1285,8 +1000,7 @@ - 4th arch mesenchyme from neural crest (embryonic human) - EHDAA2:0000098 + 4th arch mesenchyme from neural crest (embryonic human) @@ -1305,8 +1019,7 @@ - fourth ventricle (embryonic human) - EHDAA2:0000100 + fourth ventricle (embryonic human) @@ -1325,8 +1038,7 @@ - hindbrain vesicle (embryonic human) - EHDAA2:0000101 + hindbrain vesicle (embryonic human) @@ -1345,8 +1057,7 @@ - pharyngeal arch artery 6 (embryonic human) - EHDAA2:0000102 + pharyngeal arch artery 6 (embryonic human) @@ -1365,8 +1076,7 @@ - abducens nerve (embryonic human) - EHDAA2:0000103 + abducens nerve (embryonic human) @@ -1385,8 +1095,7 @@ - accessory XI nerve (embryonic human) - EHDAA2:0000106 + accessory XI nerve (embryonic human) @@ -1405,8 +1114,7 @@ - accessory XI nerve cranial component (embryonic human) - EHDAA2:0000107 + accessory XI nerve cranial component (embryonic human) @@ -1425,8 +1133,7 @@ - accessory XI nerve spinal component (embryonic human) - EHDAA2:0000108 + accessory XI nerve spinal component (embryonic human) @@ -1445,8 +1152,7 @@ - adenohypophysis (embryonic human) - EHDAA2:0000109 + adenohypophysis (embryonic human) @@ -1465,8 +1171,7 @@ - alimentary part of gastrointestinal system (embryonic human) - EHDAA2:0000110 + alimentary part of gastrointestinal system (embryonic human) @@ -1485,8 +1190,7 @@ - allantois of embryonic urinary system (embryonic human) - EHDAA2:0000113 + allantois of embryonic urinary system (embryonic human) @@ -1505,8 +1209,7 @@ - amnion (embryonic human) - EHDAA2:0000116 + amnion (embryonic human) @@ -1525,8 +1228,7 @@ - amniotic ectoderm (embryonic human) - EHDAA2:0000117 + amniotic ectoderm (embryonic human) @@ -1545,8 +1247,7 @@ - amniotic mesoderm (embryonic human) - EHDAA2:0000118 + amniotic mesoderm (embryonic human) @@ -1565,8 +1266,7 @@ - amniotic cavity (embryonic human) - EHDAA2:0000119 + amniotic cavity (embryonic human) @@ -1585,8 +1285,7 @@ - proctodeum (embryonic human) - EHDAA2:0000121 + proctodeum (embryonic human) @@ -1605,8 +1304,7 @@ - anal region (embryonic human) - EHDAA2:0000122 + anal region (embryonic human) @@ -1625,8 +1323,7 @@ - ansa cervicalis (embryonic human) - EHDAA2:0000124 + ansa cervicalis (embryonic human) @@ -1645,8 +1342,7 @@ - anterior abdominal wall muscle (embryonic human) - EHDAA2:0000125 + anterior abdominal wall muscle (embryonic human) @@ -1665,8 +1361,7 @@ - left anterior cardinal vein (embryonic human) - EHDAA2:0000127 + left anterior cardinal vein (embryonic human) @@ -1685,8 +1380,7 @@ - anterior cerebral artery (embryonic human) - EHDAA2:0000128 + anterior cerebral artery (embryonic human) @@ -1705,8 +1399,7 @@ - anterior chamber of eyeball (embryonic human) - EHDAA2:0000129 + anterior chamber of eyeball (embryonic human) @@ -1725,8 +1418,7 @@ - anterior chamber epithelium (embryonic human) - EHDAA2:0000130 + anterior chamber epithelium (embryonic human) @@ -1745,8 +1437,7 @@ - anterior spinal artery (embryonic human) - EHDAA2:0000131 + anterior spinal artery (embryonic human) @@ -1765,8 +1456,7 @@ - arch of aorta (embryonic human) - EHDAA2:0000132 + arch of aorta (embryonic human) @@ -1785,8 +1475,7 @@ - aortic valve (embryonic human) - EHDAA2:0000134 + aortic valve (embryonic human) @@ -1805,8 +1494,7 @@ - aortico-pulmonary spiral septum (embryonic human) - EHDAA2:0000136 + aortico-pulmonary spiral septum (embryonic human) @@ -1825,8 +1513,7 @@ - pectoral appendage apical ectodermal ridge (embryonic human) - EHDAA2:0000138 + pectoral appendage apical ectodermal ridge (embryonic human) @@ -1845,8 +1532,7 @@ - aqueous humor of eyeball (embryonic human) - EHDAA2:0000139 + aqueous humor of eyeball (embryonic human) @@ -1865,8 +1551,7 @@ - arm (embryonic human) - EHDAA2:0000140 + arm (embryonic human) @@ -1885,30 +1570,7 @@ - musculature of arm (embryonic human) - EHDAA2:0000141 - - - - - - - - - - - - - - - - - - - - arterial system (embryonic human) - artery (embryonic human) - EHDAA2:0000143 + musculature of arm (embryonic human) @@ -1927,8 +1589,7 @@ - arytenoid pre-cartilage condensation (embryonic human) - EHDAA2:0000144 + arytenoid pre-cartilage condensation (embryonic human) @@ -1947,8 +1608,7 @@ - arytenoid swellings (embryonic human) - EHDAA2:0000146 + arytenoid swellings (embryonic human) @@ -1967,8 +1627,7 @@ - ascending aorta (embryonic human) - EHDAA2:0000147 + ascending aorta (embryonic human) @@ -1987,8 +1646,7 @@ - lumen of atrioventricular canal (embryonic human) - EHDAA2:0000152 + lumen of atrioventricular canal (embryonic human) @@ -2007,8 +1665,7 @@ - atrioventricular valve (embryonic human) - EHDAA2:0000153 + atrioventricular valve (embryonic human) @@ -2027,8 +1684,7 @@ - cardiac atrium (embryonic human) - EHDAA2:0000154 + cardiac atrium (embryonic human) @@ -2047,8 +1703,7 @@ - auditory hillocks (embryonic human) - EHDAA2:0000155 + auditory hillocks (embryonic human) @@ -2067,8 +1722,7 @@ - autonomic nervous system (embryonic human) - EHDAA2:0000158 + autonomic nervous system (embryonic human) @@ -2087,8 +1741,7 @@ - axial musculature (embryonic human) - EHDAA2:0000159 + axial musculature (embryonic human) @@ -2107,8 +1760,7 @@ - postcranial axial skeleton (embryonic human) - EHDAA2:0000161 + postcranial axial skeleton (embryonic human) @@ -2127,8 +1779,7 @@ - basilar artery (embryonic human) - EHDAA2:0000163 + basilar artery (embryonic human) @@ -2147,8 +1798,7 @@ - basioccipital cartilage element (embryonic human) - EHDAA2:0000164 + basioccipital cartilage element (embryonic human) @@ -2167,8 +1817,7 @@ - basioccipital pre-cartilage condensation (embryonic human) - EHDAA2:0000165 + basioccipital pre-cartilage condensation (embryonic human) @@ -2187,8 +1836,7 @@ - basisphenoid cartilage condenstion (embryonic human) - EHDAA2:0000166 + basisphenoid cartilage condenstion (embryonic human) @@ -2207,8 +1855,7 @@ - biceps brachii (embryonic human) - EHDAA2:0000167 + biceps brachii (embryonic human) @@ -2227,8 +1874,7 @@ - mitral valve (embryonic human) - EHDAA2:0000168 + mitral valve (embryonic human) @@ -2247,8 +1893,7 @@ - biliary bud (embryonic human) - EHDAA2:0000171 + biliary bud (embryonic human) @@ -2267,8 +1912,7 @@ - extrahepatic part of biliary bud (embryonic human) - EHDAA2:0000172 + extrahepatic part of biliary bud (embryonic human) @@ -2287,8 +1931,7 @@ - intrahepatic part of biliary bud (embryonic human) - EHDAA2:0000173 + intrahepatic part of biliary bud (embryonic human) @@ -2307,8 +1950,7 @@ - urinary bladder (embryonic human) - EHDAA2:0000174 + urinary bladder (embryonic human) @@ -2327,8 +1969,7 @@ - blastocele (embryonic human) - EHDAA2:0000175 + blastocele (embryonic human) @@ -2347,8 +1988,7 @@ - blood (embryonic human) - EHDAA2:0000176 + blood (embryonic human) @@ -2367,8 +2007,7 @@ - yolk sac blood island (embryonic human) - EHDAA2:0000177 + yolk sac blood island (embryonic human) @@ -2387,8 +2026,7 @@ - body-wall mesenchyme (embryonic human) - EHDAA2:0000179 + body-wall mesenchyme (embryonic human) @@ -2407,8 +2045,7 @@ - brachial nerve plexus (embryonic human) - EHDAA2:0000180 + brachial nerve plexus (embryonic human) @@ -2427,8 +2064,7 @@ - brachialis muscle (embryonic human) - EHDAA2:0000181 + brachialis muscle (embryonic human) @@ -2447,8 +2083,7 @@ - brachiocephalic vein (embryonic human) - EHDAA2:0000182 + brachiocephalic vein (embryonic human) @@ -2467,8 +2102,7 @@ - brain (embryonic human) - EHDAA2:0000183 + brain (embryonic human) @@ -2487,8 +2121,7 @@ - venous system of brain (embryonic human) - EHDAA2:0000185 + venous system of brain (embryonic human) @@ -2507,8 +2140,7 @@ - pharyngeal arch artery (embryonic human) - EHDAA2:0000186 + pharyngeal arch artery (embryonic human) @@ -2527,8 +2159,7 @@ - pharyngeal arch system (embryonic human) - EHDAA2:0000187 + pharyngeal arch system (embryonic human) @@ -2547,8 +2178,7 @@ - oronasal membrane (embryonic human) - EHDAA2:0000188 + oronasal membrane (embryonic human) @@ -2567,8 +2197,7 @@ - buccopharyngeal membrane (embryonic human) - EHDAA2:0000189 + buccopharyngeal membrane (embryonic human) @@ -2587,8 +2216,7 @@ - ectoderm of buccopharyngeal membrane (embryonic human) - EHDAA2:0000190 + ectoderm of buccopharyngeal membrane (embryonic human) @@ -2607,8 +2235,7 @@ - endoderm of buccopharyngeal membrane (embryonic human) - EHDAA2:0000191 + endoderm of buccopharyngeal membrane (embryonic human) @@ -2627,8 +2254,7 @@ - bulbo-ventricular groove (embryonic human) - EHDAA2:0000195 + bulbo-ventricular groove (embryonic human) @@ -2647,8 +2273,7 @@ - heart right ventricle (embryonic human) - EHDAA2:0000196 + heart right ventricle (embryonic human) @@ -2667,8 +2292,7 @@ - bulbus cordis (embryonic human) - EHDAA2:0000197 + bulbus cordis (embryonic human) @@ -2687,8 +2311,7 @@ - caecum (embryonic human) - EHDAA2:0000206 + caecum (embryonic human) @@ -2707,8 +2330,7 @@ - caecum epithelium (embryonic human) - EHDAA2:0000209 + caecum epithelium (embryonic human) @@ -2727,8 +2349,7 @@ - cardinal vein (embryonic human) - EHDAA2:0000213 + cardinal vein (embryonic human) @@ -2747,8 +2368,7 @@ - cardiogenic splanchnic mesoderm (embryonic human) - EHDAA2:0000214 + cardiogenic splanchnic mesoderm (embryonic human) @@ -2767,30 +2387,7 @@ - cardiogenic plate (embryonic human) - EHDAA2:0000215 - - - - - - - - - - - - - - - - - - - - cardiovascular system (embryonic human) - embryonic cardiovascular system (embryonic human) - EHDAA2:0000216 + cardiogenic plate (embryonic human) @@ -2809,8 +2406,7 @@ - common carotid artery plus branches (embryonic human) - EHDAA2:0000217 + common carotid artery plus branches (embryonic human) @@ -2829,8 +2425,7 @@ - carpal region (embryonic human) - EHDAA2:0000218 + carpal region (embryonic human) @@ -2849,8 +2444,7 @@ - epithelium of carpal region (embryonic human) - EHDAA2:0000219 + epithelium of carpal region (embryonic human) @@ -2869,8 +2463,7 @@ - mesenchyme of carpal region (embryonic human) - EHDAA2:0000220 + mesenchyme of carpal region (embryonic human) @@ -2889,8 +2482,7 @@ - carpus cartilage element (embryonic human) - EHDAA2:0000221 + carpus cartilage element (embryonic human) @@ -2909,8 +2501,7 @@ - carpus pre-cartilage condensation (embryonic human) - EHDAA2:0000222 + carpus pre-cartilage condensation (embryonic human) @@ -2929,8 +2520,7 @@ - central nervous system (embryonic human) - EHDAA2:0000225 + central nervous system (embryonic human) @@ -2949,8 +2539,7 @@ - ganglion of central nervous system (embryonic human) - EHDAA2:0000227 + ganglion of central nervous system (embryonic human) @@ -2969,8 +2558,7 @@ - cerebellar artery (embryonic human) - EHDAA2:0000228 + cerebellar artery (embryonic human) @@ -2989,8 +2577,7 @@ - upper rhombic lip (embryonic human) - EHDAA2:0000229 + upper rhombic lip (embryonic human) @@ -3009,8 +2596,7 @@ - rhombic lip (embryonic human) - EHDAA2:0000231 + rhombic lip (embryonic human) @@ -3029,8 +2615,7 @@ - cerebellum (embryonic human) - EHDAA2:0000232 + cerebellum (embryonic human) @@ -3049,8 +2634,7 @@ - cerebral artery (embryonic human) - EHDAA2:0000233 + cerebral artery (embryonic human) @@ -3069,8 +2653,7 @@ - cerebral cortex (embryonic human) - EHDAA2:0000234 + cerebral cortex (embryonic human) @@ -3089,8 +2672,7 @@ - cervical region of vertebral column (embryonic human) - EHDAA2:0000238 + cervical region of vertebral column (embryonic human) @@ -3109,8 +2691,7 @@ - cervical vertebra cartilage element (embryonic human) - EHDAA2:0000240 + cervical vertebra cartilage element (embryonic human) @@ -3129,30 +2710,7 @@ - posterior nasal aperture (embryonic human) - EHDAA2:0000242 - - - - - - - - - - - - - - - - - - - - chondrocranium (embryonic human) - neurocranium (embryonic human) - EHDAA2:0000243 + posterior nasal aperture (embryonic human) @@ -3171,8 +2729,7 @@ - chorion membrane (embryonic human) - EHDAA2:0000245 + chorion membrane (embryonic human) @@ -3191,8 +2748,7 @@ - extraembryonic coelomic cavity (embryonic human) - EHDAA2:0000246 + extraembryonic coelomic cavity (embryonic human) @@ -3211,8 +2767,7 @@ - ventricular system choroidal fissure (embryonic human) - EHDAA2:0000250 + ventricular system choroidal fissure (embryonic human) @@ -3231,8 +2786,7 @@ - main ciliary ganglion (embryonic human) - EHDAA2:0000251 + main ciliary ganglion (embryonic human) @@ -3251,30 +2805,7 @@ - circle of Willis (embryonic human) - EHDAA2:0000252 - - - - - - - - - - - - - - - - - - - - embryonic cisterna chyli (embryonic human) - upper part of cisterna chyli (embryonic human) - EHDAA2:0000253 + circle of Willis (embryonic human) @@ -3293,8 +2824,7 @@ - clavicle bone primordium (embryonic human) - EHDAA2:0000254 + clavicle bone primordium (embryonic human) @@ -3313,8 +2843,7 @@ - clitoris (embryonic human) - EHDAA2:0000255 + clitoris (embryonic human) @@ -3333,8 +2862,7 @@ - embryonic cloaca (embryonic human) - EHDAA2:0000256 + embryonic cloaca (embryonic human) @@ -3353,8 +2881,7 @@ - cloacal membrane (embryonic human) - EHDAA2:0000257 + cloacal membrane (embryonic human) @@ -3373,8 +2900,7 @@ - coccyx (embryonic human) - EHDAA2:0000259 + coccyx (embryonic human) @@ -3393,30 +2919,7 @@ - caudal vertebra cartilage element (embryonic human) - EHDAA2:0000260 - - - - - - - - - - - - - - - - - - - - cochlear duct of membranous labyrinth (embryonic human) - scala media (embryonic human) - EHDAA2:0000262 + caudal vertebra cartilage element (embryonic human) @@ -3435,8 +2938,7 @@ - celiac ganglion (embryonic human) - EHDAA2:0000266 + celiac ganglion (embryonic human) @@ -3455,8 +2957,7 @@ - coelemic cavity lumen (embryonic human) - EHDAA2:0000267 + coelemic cavity lumen (embryonic human) @@ -3475,8 +2976,7 @@ - right atrium endocardium (embryonic human) - EHDAA2:0000274 + right atrium endocardium (embryonic human) @@ -3495,8 +2995,7 @@ - left cardiac atrium (embryonic human) - EHDAA2:0000275 + left cardiac atrium (embryonic human) @@ -3515,8 +3014,7 @@ - left atrium auricular region (embryonic human) - EHDAA2:0000276 + left atrium auricular region (embryonic human) @@ -3535,8 +3033,7 @@ - endocardium of left auricle (embryonic human) - EHDAA2:0000277 + endocardium of left auricle (embryonic human) @@ -3555,8 +3052,7 @@ - right cardiac atrium (embryonic human) - EHDAA2:0000290 + right cardiac atrium (embryonic human) @@ -3575,8 +3071,7 @@ - right atrium auricular region (embryonic human) - EHDAA2:0000291 + right atrium auricular region (embryonic human) @@ -3595,8 +3090,7 @@ - endocardium of right auricle (embryonic human) - EHDAA2:0000292 + endocardium of right auricle (embryonic human) @@ -3615,8 +3109,7 @@ - right atrium valve (embryonic human) - EHDAA2:0000302 + right atrium valve (embryonic human) @@ -3635,8 +3128,7 @@ - common bile duct (embryonic human) - EHDAA2:0000303 + common bile duct (embryonic human) @@ -3655,8 +3147,7 @@ - left common cardinal vein (embryonic human) - EHDAA2:0000304 + left common cardinal vein (embryonic human) @@ -3675,8 +3166,7 @@ - trunk of common carotid artery (embryonic human) - EHDAA2:0000306 + trunk of common carotid artery (embryonic human) @@ -3695,8 +3185,7 @@ - common dorsal aorta (embryonic human) - EHDAA2:0000307 + common dorsal aorta (embryonic human) @@ -3715,8 +3204,7 @@ - common hepatic artery (embryonic human) - EHDAA2:0000308 + common hepatic artery (embryonic human) @@ -3735,8 +3223,7 @@ - gastroduodenal artery (embryonic human) - EHDAA2:0000310 + gastroduodenal artery (embryonic human) @@ -3755,8 +3242,7 @@ - common iliac artery (embryonic human) - EHDAA2:0000311 + common iliac artery (embryonic human) @@ -3775,8 +3261,7 @@ - umbilical cord (embryonic human) - EHDAA2:0000312 + umbilical cord (embryonic human) @@ -3795,8 +3280,7 @@ - connecting stalk vasculature (embryonic human) - EHDAA2:0000313 + connecting stalk vasculature (embryonic human) @@ -3815,8 +3299,7 @@ - connecting stalk mesoderm (embryonic human) - EHDAA2:0000314 + connecting stalk mesoderm (embryonic human) @@ -3835,8 +3318,7 @@ - conus medullaris (embryonic human) - EHDAA2:0000315 + conus medullaris (embryonic human) @@ -3855,8 +3337,7 @@ - cornea (embryonic human) - EHDAA2:0000316 + cornea (embryonic human) @@ -3875,8 +3356,7 @@ - corneal epithelium (embryonic human) - EHDAA2:0000319 + corneal epithelium (embryonic human) @@ -3895,8 +3375,7 @@ - coronary sinus (embryonic human) - EHDAA2:0000320 + coronary sinus (embryonic human) @@ -3915,8 +3394,7 @@ - cranial muscle (embryonic human) - EHDAA2:0000322 + cranial muscle (embryonic human) @@ -3935,8 +3413,7 @@ - cranial nerve (embryonic human) - EHDAA2:0000323 + cranial nerve (embryonic human) @@ -3955,8 +3432,7 @@ - skull (embryonic human) - EHDAA2:0000325 + skull (embryonic human) @@ -3975,8 +3451,7 @@ - cricoid cartilage (embryonic human) - EHDAA2:0000326 + cricoid cartilage (embryonic human) @@ -3995,8 +3470,7 @@ - cricoid pre-cartilage condensation (embryonic human) - EHDAA2:0000327 + cricoid pre-cartilage condensation (embryonic human) @@ -4015,8 +3489,7 @@ - crus commune (embryonic human) - EHDAA2:0000330 + crus commune (embryonic human) @@ -4035,8 +3508,7 @@ - cystic duct (embryonic human) - EHDAA2:0000333 + cystic duct (embryonic human) @@ -4055,8 +3527,7 @@ - definitive endoderm (embryonic human) - EHDAA2:0000337 + definitive endoderm (embryonic human) @@ -4075,8 +3546,7 @@ - deltoid (embryonic human) - EHDAA2:0000339 + deltoid (embryonic human) @@ -4095,8 +3565,7 @@ - deltoid pre-muscle mass (embryonic human) - EHDAA2:0000340 + deltoid pre-muscle mass (embryonic human) @@ -4115,8 +3584,7 @@ - diencephalic part of interventricular foramen (embryonic human) - EHDAA2:0000384 + diencephalic part of interventricular foramen (embryonic human) @@ -4135,8 +3603,7 @@ - diencephalon (embryonic human) - EHDAA2:0000385 + diencephalon (embryonic human) @@ -4155,8 +3622,7 @@ - floor plate of diencephalon (embryonic human) - EHDAA2:0000388 + floor plate of diencephalon (embryonic human) @@ -4175,8 +3641,7 @@ - gland of diencephalon (embryonic human) - EHDAA2:0000395 + gland of diencephalon (embryonic human) @@ -4195,8 +3660,7 @@ - diencephalon lateral wall (embryonic human) - EHDAA2:0000396 + diencephalon lateral wall (embryonic human) @@ -4215,8 +3679,7 @@ - diencephalon mantle layer (embryonic human) - EHDAA2:0000397 + diencephalon mantle layer (embryonic human) @@ -4235,8 +3698,7 @@ - meninx of diencephalon (embryonic human) - EHDAA2:0000399 + meninx of diencephalon (embryonic human) @@ -4255,8 +3717,7 @@ - diencephalon pia mater (embryonic human) - EHDAA2:0000400 + diencephalon pia mater (embryonic human) @@ -4275,8 +3736,7 @@ - roof plate of diencephalon (embryonic human) - EHDAA2:0000402 + roof plate of diencephalon (embryonic human) @@ -4295,8 +3755,7 @@ - manual digit (embryonic human) - EHDAA2:0000404 + manual digit (embryonic human) @@ -4315,8 +3774,7 @@ - manual digit epithelium (embryonic human) - EHDAA2:0000406 + manual digit epithelium (embryonic human) @@ -4335,8 +3793,7 @@ - manual digit mesenchyme (embryonic human) - EHDAA2:0000407 + manual digit mesenchyme (embryonic human) @@ -4355,8 +3812,7 @@ - dorsal part of pharyngeal pouch 3 (embryonic human) - EHDAA2:0000409 + dorsal part of pharyngeal pouch 3 (embryonic human) @@ -4375,8 +3831,7 @@ - pair of dorsal aortae (embryonic human) - EHDAA2:0000410 + pair of dorsal aortae (embryonic human) @@ -4395,8 +3850,7 @@ - dorsal mesocardium (embryonic human) - EHDAA2:0000413 + dorsal mesocardium (embryonic human) @@ -4415,8 +3869,7 @@ - dorsal mesogastrium (embryonic human) - EHDAA2:0000416 + dorsal mesogastrium (embryonic human) @@ -4435,8 +3888,7 @@ - dorsal root ganglion (embryonic human) - EHDAA2:0000418 + dorsal root ganglion (embryonic human) @@ -4455,8 +3907,7 @@ - ductus arteriosus (embryonic human) - EHDAA2:0000420 + ductus arteriosus (embryonic human) @@ -4475,8 +3926,7 @@ - ductus venosus (embryonic human) - EHDAA2:0000422 + ductus venosus (embryonic human) @@ -4495,8 +3945,7 @@ - ear (embryonic human) - EHDAA2:0000423 + ear (embryonic human) @@ -4515,8 +3964,7 @@ - ectoderm (embryonic human) - EHDAA2:0000428 + ectoderm (embryonic human) @@ -4535,8 +3983,7 @@ - elbow (embryonic human) - EHDAA2:0000429 + elbow (embryonic human) @@ -4555,8 +4002,7 @@ - epithelium of elbow (embryonic human) - EHDAA2:0000430 + epithelium of elbow (embryonic human) @@ -4575,8 +4021,7 @@ - elbow joint primordium (embryonic human) - EHDAA2:0000431 + elbow joint primordium (embryonic human) @@ -4595,8 +4040,7 @@ - mesenchyme of elbow (embryonic human) - EHDAA2:0000432 + mesenchyme of elbow (embryonic human) @@ -4615,8 +4059,7 @@ - endocardial cushion (embryonic human) - EHDAA2:0000434 + endocardial cushion (embryonic human) @@ -4635,8 +4078,7 @@ - endoderm (embryonic human) - EHDAA2:0000436 + endoderm (embryonic human) @@ -4655,8 +4097,7 @@ - endolymphatic appendage (embryonic human) - EHDAA2:0000437 + endolymphatic appendage (embryonic human) @@ -4675,8 +4116,7 @@ - endolymphatic sac (embryonic human) - EHDAA2:0000441 + endolymphatic sac (embryonic human) @@ -4695,8 +4135,7 @@ - inner cell mass derived epiblast (embryonic human) - EHDAA2:0000444 + inner cell mass derived epiblast (embryonic human) @@ -4715,8 +4154,7 @@ - epiploic foramen (embryonic human) - EHDAA2:0000447 + epiploic foramen (embryonic human) @@ -4735,8 +4173,7 @@ - epithalamus (embryonic human) - EHDAA2:0000448 + epithalamus (embryonic human) @@ -4755,8 +4192,7 @@ - epithalamus mantle layer (embryonic human) - EHDAA2:0000449 + epithalamus mantle layer (embryonic human) @@ -4775,8 +4211,7 @@ - epithalamus ventricular layer (embryonic human) - EHDAA2:0000450 + epithalamus ventricular layer (embryonic human) @@ -4795,8 +4230,7 @@ - erector spinae muscle group (embryonic human) - EHDAA2:0000454 + erector spinae muscle group (embryonic human) @@ -4815,8 +4249,7 @@ - erector spinae pre-muscle mass (embryonic human) - EHDAA2:0000455 + erector spinae pre-muscle mass (embryonic human) @@ -4835,8 +4268,7 @@ - ethmoid bone primordium (embryonic human) - EHDAA2:0000456 + ethmoid bone primordium (embryonic human) @@ -4855,8 +4287,7 @@ - exoccipital pre-cartilage condensation (embryonic human) - EHDAA2:0000457 + exoccipital pre-cartilage condensation (embryonic human) @@ -4875,8 +4306,7 @@ - extensor pre-muscle mass (embryonic human) - EHDAA2:0000459 + extensor pre-muscle mass (embryonic human) @@ -4895,8 +4325,7 @@ - external acoustic meatus (embryonic human) - EHDAA2:0000460 + external acoustic meatus (embryonic human) @@ -4915,8 +4344,7 @@ - external carotid artery (embryonic human) - EHDAA2:0000461 + external carotid artery (embryonic human) @@ -4935,8 +4363,7 @@ - external ear (embryonic human) - EHDAA2:0000462 + external ear (embryonic human) @@ -4955,8 +4382,7 @@ - external iliac artery (embryonic human) - EHDAA2:0000463 + external iliac artery (embryonic human) @@ -4975,8 +4401,7 @@ - external iliac vein (embryonic human) - EHDAA2:0000464 + external iliac vein (embryonic human) @@ -4995,8 +4420,7 @@ - external intercostal muscle (embryonic human) - EHDAA2:0000465 + external intercostal muscle (embryonic human) @@ -5015,8 +4439,7 @@ - external intercostal pre-muscle mass (embryonic human) - EHDAA2:0000467 + external intercostal pre-muscle mass (embryonic human) @@ -5035,8 +4458,7 @@ - external jugular vein (embryonic human) - EHDAA2:0000468 + external jugular vein (embryonic human) @@ -5055,8 +4477,7 @@ - abdominal external oblique muscle (embryonic human) - EHDAA2:0000469 + abdominal external oblique muscle (embryonic human) @@ -5075,8 +4496,7 @@ - external oblique pre-muscle mass (embryonic human) - EHDAA2:0000470 + external oblique pre-muscle mass (embryonic human) @@ -5095,8 +4515,7 @@ - extraembryonic cavity (embryonic human) - EHDAA2:0000472 + extraembryonic cavity (embryonic human) @@ -5115,8 +4534,7 @@ - extraembryonic endoderm (embryonic human) - EHDAA2:0000473 + extraembryonic endoderm (embryonic human) @@ -5135,8 +4553,7 @@ - extraembryonic mesoderm (embryonic human) - EHDAA2:0000474 + extraembryonic mesoderm (embryonic human) @@ -5155,8 +4572,7 @@ - extraembryonic vascular system (embryonic human) - EHDAA2:0000478 + extraembryonic vascular system (embryonic human) @@ -5175,8 +4591,7 @@ - extraembryonic venous system (embryonic human) - EHDAA2:0000479 + extraembryonic venous system (embryonic human) @@ -5195,8 +4610,7 @@ - extra-ocular muscle (embryonic human) - EHDAA2:0000482 + extra-ocular muscle (embryonic human) @@ -5215,8 +4629,7 @@ - extrinsic ocular pre-muscle mass (embryonic human) - EHDAA2:0000483 + extrinsic ocular pre-muscle mass (embryonic human) @@ -5235,8 +4648,7 @@ - camera-type eye (embryonic human) - EHDAA2:0000484 + camera-type eye (embryonic human) @@ -5255,8 +4667,7 @@ - eye mesenchyme (embryonic human) - EHDAA2:0000485 + eye mesenchyme (embryonic human) @@ -5275,8 +4686,7 @@ - skeletal muscle tissue of eye (embryonic human) - EHDAA2:0000486 + skeletal muscle tissue of eye (embryonic human) @@ -5295,8 +4705,7 @@ - eyelid (embryonic human) - EHDAA2:0000487 + eyelid (embryonic human) @@ -5315,8 +4724,7 @@ - facial bone primordium (embryonic human) - EHDAA2:0000488 + facial bone primordium (embryonic human) @@ -5335,8 +4743,7 @@ - facial nerve (embryonic human) - EHDAA2:0000489 + facial nerve (embryonic human) @@ -5355,8 +4762,7 @@ - chorda tympani branch of facial nerve (embryonic human) - EHDAA2:0000490 + chorda tympani branch of facial nerve (embryonic human) @@ -5375,8 +4781,7 @@ - geniculate ganglion (embryonic human) - EHDAA2:0000491 + geniculate ganglion (embryonic human) @@ -5395,8 +4800,7 @@ - facio-acoustic neural crest (embryonic human) - EHDAA2:0000492 + facio-acoustic neural crest (embryonic human) @@ -5415,8 +4819,7 @@ - acoustico-facial VII-VIII ganglion complex (embryonic human) - EHDAA2:0000494 + acoustico-facial VII-VIII ganglion complex (embryonic human) @@ -5435,8 +4838,7 @@ - falciform ligament (embryonic human) - EHDAA2:0000499 + falciform ligament (embryonic human) @@ -5455,8 +4857,7 @@ - female labial swelling (embryonic human) - EHDAA2:0000501 + female labial swelling (embryonic human) @@ -5475,8 +4876,7 @@ - fallopian tube (embryonic human) - EHDAA2:0000504 + fallopian tube (embryonic human) @@ -5495,8 +4895,7 @@ - female reproductive system (embryonic human) - EHDAA2:0000506 + female reproductive system (embryonic human) @@ -5515,8 +4914,7 @@ - femoral nerve (embryonic human) - EHDAA2:0000507 + femoral nerve (embryonic human) @@ -5535,8 +4933,7 @@ - femur pre-cartilage condensation (embryonic human) - EHDAA2:0000508 + femur pre-cartilage condensation (embryonic human) @@ -5555,8 +4952,7 @@ - fibula pre-cartilage condensation (embryonic human) - EHDAA2:0000509 + fibula pre-cartilage condensation (embryonic human) @@ -5575,8 +4971,7 @@ - filum terminale (embryonic human) - EHDAA2:0000510 + filum terminale (embryonic human) @@ -5595,8 +4990,7 @@ - manual digit 1 (embryonic human) - EHDAA2:0000511 + manual digit 1 (embryonic human) @@ -5615,8 +5009,7 @@ - manual digit 1 epithelium (embryonic human) - EHDAA2:0000512 + manual digit 1 epithelium (embryonic human) @@ -5635,8 +5028,7 @@ - manual digit 1 mesenchyme (embryonic human) - EHDAA2:0000513 + manual digit 1 mesenchyme (embryonic human) @@ -5655,8 +5047,7 @@ - manual digit 1 metacarpus cartilage element (embryonic human) - EHDAA2:0000514 + manual digit 1 metacarpus cartilage element (embryonic human) @@ -5675,8 +5066,7 @@ - manual digit 1 metacarpus pre-cartilage condensation (embryonic human) - EHDAA2:0000515 + manual digit 1 metacarpus pre-cartilage condensation (embryonic human) @@ -5695,8 +5085,7 @@ - manual digit 1 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0000516 + manual digit 1 phalanx pre-cartilage condensation (embryonic human) @@ -5715,8 +5104,7 @@ - manual digit 2 (embryonic human) - EHDAA2:0000517 + manual digit 2 (embryonic human) @@ -5735,8 +5123,7 @@ - manual digit 2 epithelium (embryonic human) - EHDAA2:0000518 + manual digit 2 epithelium (embryonic human) @@ -5755,8 +5142,7 @@ - manual digit 2 mesenchyme (embryonic human) - EHDAA2:0000519 + manual digit 2 mesenchyme (embryonic human) @@ -5775,8 +5161,7 @@ - manual digit 2 metacarpus cartilage element (embryonic human) - EHDAA2:0000520 + manual digit 2 metacarpus cartilage element (embryonic human) @@ -5795,8 +5180,7 @@ - manual digit 2 metacarpus pre-cartilage condensation (embryonic human) - EHDAA2:0000521 + manual digit 2 metacarpus pre-cartilage condensation (embryonic human) @@ -5815,8 +5199,7 @@ - manual digit 2 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0000522 + manual digit 2 phalanx pre-cartilage condensation (embryonic human) @@ -5835,8 +5218,7 @@ - manual digit 3 (embryonic human) - EHDAA2:0000523 + manual digit 3 (embryonic human) @@ -5855,8 +5237,7 @@ - manual digit 3 epithelium (embryonic human) - EHDAA2:0000524 + manual digit 3 epithelium (embryonic human) @@ -5875,8 +5256,7 @@ - manual digit 3 mesenchyme (embryonic human) - EHDAA2:0000525 + manual digit 3 mesenchyme (embryonic human) @@ -5895,8 +5275,7 @@ - manual digit 3 metacarpus cartilage element (embryonic human) - EHDAA2:0000526 + manual digit 3 metacarpus cartilage element (embryonic human) @@ -5915,8 +5294,7 @@ - manual digit 3 metacarpus pre-cartilage condensation (embryonic human) - EHDAA2:0000527 + manual digit 3 metacarpus pre-cartilage condensation (embryonic human) @@ -5935,8 +5313,7 @@ - manual digit 3 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0000528 + manual digit 3 phalanx pre-cartilage condensation (embryonic human) @@ -5955,8 +5332,7 @@ - manual digit 4 (embryonic human) - EHDAA2:0000529 + manual digit 4 (embryonic human) @@ -5975,8 +5351,7 @@ - manual digit 4 epithelium (embryonic human) - EHDAA2:0000530 + manual digit 4 epithelium (embryonic human) @@ -5995,8 +5370,7 @@ - manual digit 4 mesenchyme (embryonic human) - EHDAA2:0000531 + manual digit 4 mesenchyme (embryonic human) @@ -6015,8 +5389,7 @@ - manual digit 4 metacarpus cartilage element (embryonic human) - EHDAA2:0000532 + manual digit 4 metacarpus cartilage element (embryonic human) @@ -6035,8 +5408,7 @@ - manual digit 4 metacarpus pre-cartilage condensation (embryonic human) - EHDAA2:0000533 + manual digit 4 metacarpus pre-cartilage condensation (embryonic human) @@ -6055,8 +5427,7 @@ - manual digit 4 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0000534 + manual digit 4 phalanx pre-cartilage condensation (embryonic human) @@ -6075,8 +5446,7 @@ - manual digit 5 (embryonic human) - EHDAA2:0000535 + manual digit 5 (embryonic human) @@ -6095,8 +5465,7 @@ - manual digit 5 epithelium (embryonic human) - EHDAA2:0000536 + manual digit 5 epithelium (embryonic human) @@ -6115,8 +5484,7 @@ - manual digit 5 mesenchyme (embryonic human) - EHDAA2:0000537 + manual digit 5 mesenchyme (embryonic human) @@ -6135,8 +5503,7 @@ - manual digit 5 metacarpus cartilage element (embryonic human) - EHDAA2:0000538 + manual digit 5 metacarpus cartilage element (embryonic human) @@ -6155,8 +5522,7 @@ - manual digit 5 metacarpus pre-cartilage condensation (embryonic human) - EHDAA2:0000539 + manual digit 5 metacarpus pre-cartilage condensation (embryonic human) @@ -6175,8 +5541,7 @@ - manual digit 5 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0000540 + manual digit 5 phalanx pre-cartilage condensation (embryonic human) @@ -6195,8 +5560,7 @@ - flexor pre-muscle mass (embryonic human) - EHDAA2:0000543 + flexor pre-muscle mass (embryonic human) @@ -6215,8 +5579,7 @@ - pes (embryonic human) - EHDAA2:0000546 + pes (embryonic human) @@ -6235,8 +5598,7 @@ - footplate apical ectodermal ridge (embryonic human) - EHDAA2:0000547 + footplate apical ectodermal ridge (embryonic human) @@ -6255,8 +5617,7 @@ - epithelium of footplate (embryonic human) - EHDAA2:0000548 + epithelium of footplate (embryonic human) @@ -6275,8 +5636,7 @@ - mesenchyme of footplate (embryonic human) - EHDAA2:0000549 + mesenchyme of footplate (embryonic human) @@ -6295,8 +5655,7 @@ - future foramen cecum (embryonic human) - EHDAA2:0000550 + future foramen cecum (embryonic human) @@ -6315,8 +5674,7 @@ - foramen ovale of skull (embryonic human) - EHDAA2:0000551 + foramen ovale of skull (embryonic human) @@ -6335,8 +5693,7 @@ - foramen rotundum (embryonic human) - EHDAA2:0000552 + foramen rotundum (embryonic human) @@ -6355,8 +5712,7 @@ - forelimb zeugopod (embryonic human) - EHDAA2:0000553 + forelimb zeugopod (embryonic human) @@ -6375,8 +5731,7 @@ - epithelium of forearm (embryonic human) - EHDAA2:0000554 + epithelium of forearm (embryonic human) @@ -6395,8 +5750,7 @@ - mesenchyme of forearm (embryonic human) - EHDAA2:0000555 + mesenchyme of forearm (embryonic human) @@ -6415,8 +5769,7 @@ - forebrain (embryonic human) - EHDAA2:0000556 + forebrain (embryonic human) @@ -6435,8 +5788,7 @@ - foregut (embryonic human) - EHDAA2:0000557 + foregut (embryonic human) @@ -6455,8 +5807,7 @@ - foregut region of duodenum (embryonic human) - EHDAA2:0000560 + foregut region of duodenum (embryonic human) @@ -6475,8 +5826,7 @@ - foregut duodenum epithelium (embryonic human) - EHDAA2:0000563 + foregut duodenum epithelium (embryonic human) @@ -6495,8 +5845,7 @@ - foregut duodenum mesentery (embryonic human) - EHDAA2:0000564 + foregut duodenum mesentery (embryonic human) @@ -6515,8 +5864,7 @@ - lower foregut region endoderm (embryonic human) - EHDAA2:0000566 + lower foregut region endoderm (embryonic human) @@ -6535,8 +5883,7 @@ - gland of foregut (embryonic human) - EHDAA2:0000567 + gland of foregut (embryonic human) @@ -6555,8 +5902,7 @@ - foregut-midgut junction (embryonic human) - EHDAA2:0000569 + foregut-midgut junction (embryonic human) @@ -6575,8 +5921,7 @@ - associated mesenchyme of foregut-midgut junction (embryonic human) - EHDAA2:0000570 + associated mesenchyme of foregut-midgut junction (embryonic human) @@ -6595,8 +5940,7 @@ - dorsal mesentery of mesentery of foregut-midgut junction (embryonic human) - EHDAA2:0000571 + dorsal mesentery of mesentery of foregut-midgut junction (embryonic human) @@ -6615,8 +5959,7 @@ - endoderm of foregut-midgut junction (embryonic human) - EHDAA2:0000572 + endoderm of foregut-midgut junction (embryonic human) @@ -6635,8 +5978,7 @@ - epithelium of foregut-midgut junction (embryonic human) - EHDAA2:0000573 + epithelium of foregut-midgut junction (embryonic human) @@ -6655,8 +5997,7 @@ - foregut-midgut junction gland (embryonic human) - EHDAA2:0000574 + foregut-midgut junction gland (embryonic human) @@ -6675,8 +6016,7 @@ - mesentery of foregut-midgut junction (embryonic human) - EHDAA2:0000575 + mesentery of foregut-midgut junction (embryonic human) @@ -6695,8 +6035,7 @@ - tetrapod frontal bone primordium (embryonic human) - EHDAA2:0000577 + tetrapod frontal bone primordium (embryonic human) @@ -6715,8 +6054,7 @@ - frontonasal prominence (embryonic human) - EHDAA2:0000578 + frontonasal prominence (embryonic human) @@ -6735,8 +6073,7 @@ - embryonic nasal process (embryonic human) - EHDAA2:0000581 + embryonic nasal process (embryonic human) @@ -6755,8 +6092,7 @@ - fundus of urinary bladder (embryonic human) - EHDAA2:0000582 + fundus of urinary bladder (embryonic human) @@ -6775,8 +6111,7 @@ - anterior communicating artery (embryonic human) - EHDAA2:0000586 + anterior communicating artery (embryonic human) @@ -6795,8 +6130,7 @@ - anterior inferior cerebellar artery (embryonic human) - EHDAA2:0000587 + anterior inferior cerebellar artery (embryonic human) @@ -6815,8 +6149,7 @@ - vermiform appendix (embryonic human) - EHDAA2:0000588 + vermiform appendix (embryonic human) @@ -6835,8 +6168,7 @@ - future central tendon (embryonic human) - EHDAA2:0000593 + future central tendon (embryonic human) @@ -6855,8 +6187,7 @@ - future common hepatic duct (embryonic human) - EHDAA2:0000595 + future common hepatic duct (embryonic human) @@ -6875,8 +6206,7 @@ - corpus striatum (embryonic human) - EHDAA2:0000596 + corpus striatum (embryonic human) @@ -6895,8 +6225,7 @@ - crus of diaphragm (embryonic human) - EHDAA2:0000597 + crus of diaphragm (embryonic human) @@ -6915,8 +6244,7 @@ - future dermis (embryonic human) - EHDAA2:0000598 + future dermis (embryonic human) @@ -6935,8 +6263,7 @@ - future diaphragm (embryonic human) - EHDAA2:0000599 + future diaphragm (embryonic human) @@ -6955,8 +6282,7 @@ - future diencephalon (embryonic human) - EHDAA2:0000600 + future diencephalon (embryonic human) @@ -6975,8 +6301,7 @@ - diencephalon neural crest (embryonic human) - EHDAA2:0000603 + diencephalon neural crest (embryonic human) @@ -6995,8 +6320,7 @@ - future falx cerebri (embryonic human) - EHDAA2:0000608 + future falx cerebri (embryonic human) @@ -7015,8 +6339,7 @@ - future hindbrain meninx (embryonic human) - EHDAA2:0000610 + future hindbrain meninx (embryonic human) @@ -7035,8 +6358,7 @@ - posterior vena cava (embryonic human) - EHDAA2:0000611 + posterior vena cava (embryonic human) @@ -7055,8 +6377,7 @@ - presumptive midbrain (embryonic human) - EHDAA2:0000615 + presumptive midbrain (embryonic human) @@ -7075,8 +6396,7 @@ - future metencephalon (embryonic human) - EHDAA2:0000623 + future metencephalon (embryonic human) @@ -7095,8 +6415,7 @@ - future myelencephalon (embryonic human) - EHDAA2:0000640 + future myelencephalon (embryonic human) @@ -7115,8 +6434,7 @@ - myelencephalon basal plate (embryonic human) - EHDAA2:0000646 + myelencephalon basal plate (embryonic human) @@ -7135,8 +6453,7 @@ - posterior cerebral artery (embryonic human) - EHDAA2:0000659 + posterior cerebral artery (embryonic human) @@ -7155,8 +6472,7 @@ - posterior inferior cerebellar artery (embryonic human) - EHDAA2:0000660 + posterior inferior cerebellar artery (embryonic human) @@ -7175,8 +6491,7 @@ - future forebrain (embryonic human) - EHDAA2:0000661 + future forebrain (embryonic human) @@ -7195,8 +6510,7 @@ - future pterygopalatine ganglion (embryonic human) - EHDAA2:0000673 + future pterygopalatine ganglion (embryonic human) @@ -7215,8 +6529,7 @@ - future spinal cord (embryonic human) - EHDAA2:0000674 + future spinal cord (embryonic human) @@ -7235,8 +6548,7 @@ - posterior neuropore (embryonic human) - EHDAA2:0000676 + posterior neuropore (embryonic human) @@ -7255,8 +6567,7 @@ - superior cerebellar artery (embryonic human) - EHDAA2:0000681 + superior cerebellar artery (embryonic human) @@ -7275,8 +6586,7 @@ - dorsal thalamus (embryonic human) - EHDAA2:0000692 + dorsal thalamus (embryonic human) @@ -7295,8 +6605,7 @@ - future tongue (embryonic human) - EHDAA2:0000696 + future tongue (embryonic human) @@ -7315,8 +6624,7 @@ - gallbladder (embryonic human) - EHDAA2:0000699 + gallbladder (embryonic human) @@ -7335,8 +6643,7 @@ - gallbladder primordium (embryonic human) - EHDAA2:0000700 + gallbladder primordium (embryonic human) @@ -7355,8 +6662,7 @@ - gastrocnemius (embryonic human) - EHDAA2:0000701 + gastrocnemius (embryonic human) @@ -7375,8 +6681,7 @@ - gastro-splenic ligament (embryonic human) - EHDAA2:0000702 + gastro-splenic ligament (embryonic human) @@ -7395,8 +6700,7 @@ - genioglossus muscle (embryonic human) - EHDAA2:0000704 + genioglossus muscle (embryonic human) @@ -7415,8 +6719,7 @@ - undifferentiated genital tubercle (embryonic human) - EHDAA2:0000705 + undifferentiated genital tubercle (embryonic human) @@ -7435,8 +6738,7 @@ - glossopharyngeal nerve (embryonic human) - EHDAA2:0000709 + glossopharyngeal nerve (embryonic human) @@ -7455,8 +6757,7 @@ - glossopharyngeal ganglion (embryonic human) - EHDAA2:0000710 + glossopharyngeal ganglion (embryonic human) @@ -7475,8 +6776,7 @@ - inferior glossopharyngeal IX ganglion (embryonic human) - EHDAA2:0000711 + inferior glossopharyngeal IX ganglion (embryonic human) @@ -7495,8 +6795,7 @@ - superior glossopharyngeal IX ganglion (embryonic human) - EHDAA2:0000712 + superior glossopharyngeal IX ganglion (embryonic human) @@ -7515,8 +6814,7 @@ - glossopharyngeal neural crest (embryonic human) - EHDAA2:0000714 + glossopharyngeal neural crest (embryonic human) @@ -7535,8 +6833,7 @@ - gluteal muscle (embryonic human) - EHDAA2:0000715 + gluteal muscle (embryonic human) @@ -7555,8 +6852,7 @@ - indifferent gonad (embryonic human) - EHDAA2:0000716 + indifferent gonad (embryonic human) @@ -7575,8 +6871,7 @@ - gonadal vein (embryonic human) - EHDAA2:0000719 + gonadal vein (embryonic human) @@ -7595,8 +6890,7 @@ - greater omentum (embryonic human) - EHDAA2:0000720 + greater omentum (embryonic human) @@ -7615,8 +6909,7 @@ - greater sac cavity (embryonic human) - EHDAA2:0000724 + greater sac cavity (embryonic human) @@ -7635,8 +6928,7 @@ - digestive tract (embryonic human) - EHDAA2:0000726 + digestive tract (embryonic human) @@ -7655,8 +6947,7 @@ - muscle of posterior compartment of hindlimb stylopod (embryonic human) - EHDAA2:0000727 + muscle of posterior compartment of hindlimb stylopod (embryonic human) @@ -7675,8 +6966,7 @@ - manus (embryonic human) - EHDAA2:0000728 + manus (embryonic human) @@ -7695,8 +6985,7 @@ - handplate apical ectodermal ridge (embryonic human) - EHDAA2:0000729 + handplate apical ectodermal ridge (embryonic human) @@ -7715,8 +7004,7 @@ - epithelium of handplate (embryonic human) - EHDAA2:0000730 + epithelium of handplate (embryonic human) @@ -7735,8 +7023,7 @@ - mesenchyme of handplate (embryonic human) - EHDAA2:0000731 + mesenchyme of handplate (embryonic human) @@ -7755,8 +7042,7 @@ - head mesenchyme (embryonic human) - EHDAA2:0000732 + head mesenchyme (embryonic human) @@ -7775,8 +7061,7 @@ - mesenchyme derived from head neural crest (embryonic human) - EHDAA2:0000735 + mesenchyme derived from head neural crest (embryonic human) @@ -7795,8 +7080,7 @@ - head paraxial mesoderm (embryonic human) - EHDAA2:0000736 + head paraxial mesoderm (embryonic human) @@ -7815,8 +7099,7 @@ - heart (embryonic human) - EHDAA2:0000738 + heart (embryonic human) @@ -7835,30 +7118,7 @@ - hepatic diverticulum (embryonic human) - EHDAA2:0000740 - - - - - - - - - - - - - - - - - - - - bile duct (embryonic human) - hepatic duct (embryonic human) - EHDAA2:0000741 + hepatic diverticulum (embryonic human) @@ -7877,8 +7137,7 @@ - extrahepatic bile duct epithelium (embryonic human) - EHDAA2:0000742 + extrahepatic bile duct epithelium (embryonic human) @@ -7897,8 +7156,7 @@ - intrahepatic bile duct epithelium (embryonic human) - EHDAA2:0000743 + intrahepatic bile duct epithelium (embryonic human) @@ -7917,8 +7175,7 @@ - liver primordium (embryonic human) - EHDAA2:0000744 + liver primordium (embryonic human) @@ -7937,8 +7194,7 @@ - hindbrain (embryonic human) - EHDAA2:0000746 + hindbrain (embryonic human) @@ -7957,8 +7213,7 @@ - meninx of hindbrain (embryonic human) - EHDAA2:0000770 + meninx of hindbrain (embryonic human) @@ -7977,8 +7232,7 @@ - hindbrain pia mater (embryonic human) - EHDAA2:0000772 + hindbrain pia mater (embryonic human) @@ -7997,8 +7251,7 @@ - hindbrain venous system (embryonic human) - EHDAA2:0000776 + hindbrain venous system (embryonic human) @@ -8017,8 +7270,7 @@ - hindgut (embryonic human) - EHDAA2:0000779 + hindgut (embryonic human) @@ -8037,8 +7289,7 @@ - mesenchyme of hindgut (embryonic human) - EHDAA2:0000780 + mesenchyme of hindgut (embryonic human) @@ -8057,8 +7308,7 @@ - epithelium of hindgut (embryonic human) - EHDAA2:0000782 + epithelium of hindgut (embryonic human) @@ -8077,8 +7327,7 @@ - hip (embryonic human) - EHDAA2:0000783 + hip (embryonic human) @@ -8097,8 +7346,7 @@ - epithelium of hip (embryonic human) - EHDAA2:0000784 + epithelium of hip (embryonic human) @@ -8117,8 +7365,7 @@ - hip joint primordium (embryonic human) - EHDAA2:0000785 + hip joint primordium (embryonic human) @@ -8137,8 +7384,7 @@ - mesenchyme of hip (embryonic human) - EHDAA2:0000786 + mesenchyme of hip (embryonic human) @@ -8157,8 +7403,7 @@ - humerus cartilage element (embryonic human) - EHDAA2:0000787 + humerus cartilage element (embryonic human) @@ -8177,8 +7422,7 @@ - humerus pre-cartilage condensation (embryonic human) - EHDAA2:0000788 + humerus pre-cartilage condensation (embryonic human) @@ -8197,8 +7441,7 @@ - hyaloid cavity (embryonic human) - EHDAA2:0000789 + hyaloid cavity (embryonic human) @@ -8217,8 +7460,7 @@ - hyaloid vascular plexus (embryonic human) - EHDAA2:0000790 + hyaloid vascular plexus (embryonic human) @@ -8237,8 +7479,7 @@ - hyaloid vein (embryonic human) - EHDAA2:0000791 + hyaloid vein (embryonic human) @@ -8257,8 +7498,7 @@ - Reichert's cartilage (embryonic human) - EHDAA2:0000793 + Reichert's cartilage (embryonic human) @@ -8277,8 +7517,7 @@ - hyoid muscle (embryonic human) - EHDAA2:0000794 + hyoid muscle (embryonic human) @@ -8297,8 +7536,7 @@ - hyoid pre-muscle mass (embryonic human) - EHDAA2:0000795 + hyoid pre-muscle mass (embryonic human) @@ -8317,8 +7555,7 @@ - inner cell mass derived hypoblast (embryonic human) - EHDAA2:0000796 + inner cell mass derived hypoblast (embryonic human) @@ -8337,8 +7574,7 @@ - hypoglossal nerve (embryonic human) - EHDAA2:0000798 + hypoglossal nerve (embryonic human) @@ -8357,8 +7593,7 @@ - hypopharyngeal eminence (embryonic human) - EHDAA2:0000799 + hypopharyngeal eminence (embryonic human) @@ -8377,8 +7612,7 @@ - hypothalamus (embryonic human) - EHDAA2:0000802 + hypothalamus (embryonic human) @@ -8397,8 +7631,7 @@ - iliac cartilage element (embryonic human) - EHDAA2:0000808 + iliac cartilage element (embryonic human) @@ -8417,8 +7650,7 @@ - iliac pre-cartilage condensation (embryonic human) - EHDAA2:0000809 + iliac pre-cartilage condensation (embryonic human) @@ -8437,8 +7669,7 @@ - iliac vein (embryonic human) - EHDAA2:0000811 + iliac vein (embryonic human) @@ -8457,8 +7688,7 @@ - iliopsoas (embryonic human) - EHDAA2:0000812 + iliopsoas (embryonic human) @@ -8477,8 +7707,7 @@ - incus pre-cartilage condensation (embryonic human) - EHDAA2:0000813 + incus pre-cartilage condensation (embryonic human) @@ -8497,8 +7726,7 @@ - inferior mesenteric artery (embryonic human) - EHDAA2:0000817 + inferior mesenteric artery (embryonic human) @@ -8517,8 +7745,7 @@ - inferior mesenteric ganglion (embryonic human) - EHDAA2:0000818 + inferior mesenteric ganglion (embryonic human) @@ -8537,8 +7764,7 @@ - inferior mesenteric vein (embryonic human) - EHDAA2:0000819 + inferior mesenteric vein (embryonic human) @@ -8557,8 +7783,7 @@ - inferior parathyroid gland (embryonic human) - EHDAA2:0000821 + inferior parathyroid gland (embryonic human) @@ -8577,8 +7802,7 @@ - inferior parathyroid epithelium (embryonic human) - EHDAA2:0000824 + inferior parathyroid epithelium (embryonic human) @@ -8597,8 +7821,7 @@ - inferior recess of lesser sac (embryonic human) - EHDAA2:0000825 + inferior recess of lesser sac (embryonic human) @@ -8617,8 +7840,7 @@ - infraspinatus muscle (embryonic human) - EHDAA2:0000826 + infraspinatus muscle (embryonic human) @@ -8637,8 +7859,7 @@ - infundibular recess of 3rd ventricle (embryonic human) - EHDAA2:0000827 + infundibular recess of 3rd ventricle (embryonic human) @@ -8657,8 +7878,7 @@ - pituitary stalk (embryonic human) - EHDAA2:0000828 + pituitary stalk (embryonic human) @@ -8677,8 +7897,7 @@ - inner canthus (embryonic human) - EHDAA2:0000829 + inner canthus (embryonic human) @@ -8697,8 +7916,7 @@ - inner cell mass (embryonic human) - EHDAA2:0000830 + inner cell mass (embryonic human) @@ -8717,8 +7935,7 @@ - internal ear (embryonic human) - EHDAA2:0000831 + internal ear (embryonic human) @@ -8737,8 +7954,7 @@ - vestibular labyrinth (embryonic human) - EHDAA2:0000832 + vestibular labyrinth (embryonic human) @@ -8757,8 +7973,7 @@ - otic capsule pre-cartilage condensation (embryonic human) - EHDAA2:0000833 + otic capsule pre-cartilage condensation (embryonic human) @@ -8777,8 +7992,7 @@ - brachiocephalic artery (embryonic human) - EHDAA2:0000835 + brachiocephalic artery (embryonic human) @@ -8797,8 +8011,7 @@ - integumental system (embryonic human) - EHDAA2:0000836 + integumental system (embryonic human) @@ -8817,8 +8030,7 @@ - gland of integumental system (embryonic human) - EHDAA2:0000837 + gland of integumental system (embryonic human) @@ -8837,8 +8049,7 @@ - interatrial septum (embryonic human) - EHDAA2:0000838 + interatrial septum (embryonic human) @@ -8857,8 +8068,7 @@ - intercostal artery (embryonic human) - EHDAA2:0000840 + intercostal artery (embryonic human) @@ -8877,8 +8087,7 @@ - intercostal muscle (embryonic human) - EHDAA2:0000841 + intercostal muscle (embryonic human) @@ -8897,8 +8106,7 @@ - intercostal pre-muscle mass (embryonic human) - EHDAA2:0000843 + intercostal pre-muscle mass (embryonic human) @@ -8917,8 +8125,7 @@ - interdigital region between manual digits 1 and 2 (embryonic human) - EHDAA2:0000844 + interdigital region between manual digits 1 and 2 (embryonic human) @@ -8937,8 +8144,7 @@ - mesenchyme of interdigital region between manual digits 1 and 2 (embryonic human) - EHDAA2:0000846 + mesenchyme of interdigital region between manual digits 1 and 2 (embryonic human) @@ -8957,8 +8163,7 @@ - interdigital region between manual digits 2 and 3 (embryonic human) - EHDAA2:0000847 + interdigital region between manual digits 2 and 3 (embryonic human) @@ -8977,8 +8182,7 @@ - mesenchyme of interdigital region between manual digits 2 and 3 (embryonic human) - EHDAA2:0000849 + mesenchyme of interdigital region between manual digits 2 and 3 (embryonic human) @@ -8997,8 +8201,7 @@ - interdigital region between manual digits 3 and 4 (embryonic human) - EHDAA2:0000850 + interdigital region between manual digits 3 and 4 (embryonic human) @@ -9017,8 +8220,7 @@ - mesenchyme of interdigital region between manual digits 3 and 4 (embryonic human) - EHDAA2:0000852 + mesenchyme of interdigital region between manual digits 3 and 4 (embryonic human) @@ -9037,8 +8239,7 @@ - interdigital region between manual digits 4 and 5 (embryonic human) - EHDAA2:0000853 + interdigital region between manual digits 4 and 5 (embryonic human) @@ -9057,8 +8258,7 @@ - mesenchyme of interdigital region between manual digits 4 and 5 (embryonic human) - EHDAA2:0000855 + mesenchyme of interdigital region between manual digits 4 and 5 (embryonic human) @@ -9077,8 +8277,7 @@ - interdigital region between pedal digits 1 and 2 (embryonic human) - EHDAA2:0000856 + interdigital region between pedal digits 1 and 2 (embryonic human) @@ -9097,8 +8296,7 @@ - mesenchyme of interdigital region between pedal digits 1 and 2 (embryonic human) - EHDAA2:0000858 + mesenchyme of interdigital region between pedal digits 1 and 2 (embryonic human) @@ -9117,8 +8315,7 @@ - interdigital region between pedal digits 2 and 3 (embryonic human) - EHDAA2:0000859 + interdigital region between pedal digits 2 and 3 (embryonic human) @@ -9137,8 +8334,7 @@ - mesenchyme of interdigital region between pedal digits 2 and 3 (embryonic human) - EHDAA2:0000861 + mesenchyme of interdigital region between pedal digits 2 and 3 (embryonic human) @@ -9157,8 +8353,7 @@ - interdigital region between pedal digits 3 and 4 (embryonic human) - EHDAA2:0000862 + interdigital region between pedal digits 3 and 4 (embryonic human) @@ -9177,8 +8372,7 @@ - mesenchyme of interdigital region between pedal digits 3 and 4 (embryonic human) - EHDAA2:0000864 + mesenchyme of interdigital region between pedal digits 3 and 4 (embryonic human) @@ -9197,8 +8391,7 @@ - interdigital region between pedal digits 4 and 5 (embryonic human) - EHDAA2:0000865 + interdigital region between pedal digits 4 and 5 (embryonic human) @@ -9217,8 +8410,7 @@ - mesenchyme of interdigital region between pedal digits 4 and 5 (embryonic human) - EHDAA2:0000867 + mesenchyme of interdigital region between pedal digits 4 and 5 (embryonic human) @@ -9237,8 +8429,7 @@ - intermaxillary process (embryonic human) - EHDAA2:0000868 + intermaxillary process (embryonic human) @@ -9257,8 +8448,7 @@ - intermediate mesenchyme (embryonic human) - EHDAA2:0000871 + intermediate mesenchyme (embryonic human) @@ -9277,8 +8467,7 @@ - internal carotid artery (embryonic human) - EHDAA2:0000873 + internal carotid artery (embryonic human) @@ -9297,8 +8486,7 @@ - internal iliac vein (embryonic human) - EHDAA2:0000874 + internal iliac vein (embryonic human) @@ -9317,8 +8505,7 @@ - internal intercostal muscle (embryonic human) - EHDAA2:0000875 + internal intercostal muscle (embryonic human) @@ -9337,8 +8524,7 @@ - internal intercostal pre-muscle mass (embryonic human) - EHDAA2:0000876 + internal intercostal pre-muscle mass (embryonic human) @@ -9357,8 +8543,7 @@ - internal jugular vein (embryonic human) - EHDAA2:0000877 + internal jugular vein (embryonic human) @@ -9377,8 +8562,7 @@ - abdominal internal oblique muscle (embryonic human) - EHDAA2:0000879 + abdominal internal oblique muscle (embryonic human) @@ -9397,8 +8581,7 @@ - internal thoracic artery (embryonic human) - EHDAA2:0000880 + internal thoracic artery (embryonic human) @@ -9417,8 +8600,7 @@ - interparietal bone primordium (embryonic human) - EHDAA2:0000881 + interparietal bone primordium (embryonic human) @@ -9437,8 +8619,7 @@ - intersomitic artery (embryonic human) - EHDAA2:0000882 + intersomitic artery (embryonic human) @@ -9457,8 +8638,7 @@ - intersubcardinal venous anastomosis (embryonic human) - EHDAA2:0000883 + intersubcardinal venous anastomosis (embryonic human) @@ -9477,8 +8657,7 @@ - interventricular septum muscular part (embryonic human) - EHDAA2:0000885 + interventricular septum muscular part (embryonic human) @@ -9497,8 +8676,7 @@ - interventricular septum endocardium (embryonic human) - EHDAA2:0000886 + interventricular septum endocardium (embryonic human) @@ -9517,8 +8695,7 @@ - interventricular septum endocardium (embryonic human) - EHDAA2:0000887 + interventricular septum endocardium (embryonic human) @@ -9537,8 +8714,7 @@ - embryonic intraretinal space (embryonic human) - EHDAA2:0000889 + embryonic intraretinal space (embryonic human) @@ -9557,8 +8733,7 @@ - ischial cartilage element (embryonic human) - EHDAA2:0000890 + ischial cartilage element (embryonic human) @@ -9577,8 +8752,7 @@ - ischial pre-cartilage condensation (embryonic human) - EHDAA2:0000891 + ischial pre-cartilage condensation (embryonic human) @@ -9597,8 +8771,7 @@ - jugular foramen (embryonic human) - EHDAA2:0000893 + jugular foramen (embryonic human) @@ -9617,8 +8790,7 @@ - knee (embryonic human) - EHDAA2:0000895 + knee (embryonic human) @@ -9637,8 +8809,7 @@ - epithelium of knee (embryonic human) - EHDAA2:0000896 + epithelium of knee (embryonic human) @@ -9657,8 +8828,7 @@ - knee joint primordium (embryonic human) - EHDAA2:0000897 + knee joint primordium (embryonic human) @@ -9677,8 +8847,7 @@ - mesenchyme of knee (embryonic human) - EHDAA2:0000898 + mesenchyme of knee (embryonic human) @@ -9697,8 +8866,7 @@ - membranous labyrinth (embryonic human) - EHDAA2:0000899 + membranous labyrinth (embryonic human) @@ -9717,8 +8885,7 @@ - lamina terminalis of neural tube (embryonic human) - EHDAA2:0000903 + lamina terminalis of neural tube (embryonic human) @@ -9737,8 +8904,7 @@ - laryngeal apparatus (embryonic human) - EHDAA2:0000904 + laryngeal apparatus (embryonic human) @@ -9757,8 +8923,7 @@ - outer canthus (embryonic human) - EHDAA2:0000910 + outer canthus (embryonic human) @@ -9777,8 +8942,7 @@ - lateral lingual swelling (embryonic human) - EHDAA2:0000911 + lateral lingual swelling (embryonic human) @@ -9797,8 +8961,7 @@ - lateral lingual swelling epithelium (embryonic human) - EHDAA2:0000913 + lateral lingual swelling epithelium (embryonic human) @@ -9817,8 +8980,7 @@ - lateral migration pathway NC-derived mesenchyme (embryonic human) - EHDAA2:0000915 + lateral migration pathway NC-derived mesenchyme (embryonic human) @@ -9837,8 +8999,7 @@ - lateral nasal prominence (embryonic human) - EHDAA2:0000916 + lateral nasal prominence (embryonic human) @@ -9857,8 +9018,7 @@ - lateral nasal process mesenchyme (embryonic human) - EHDAA2:0000917 + lateral nasal process mesenchyme (embryonic human) @@ -9877,8 +9037,7 @@ - lateral nasal process surface ectoderm (embryonic human) - EHDAA2:0000918 + lateral nasal process surface ectoderm (embryonic human) @@ -9897,8 +9056,7 @@ - lateral plate mesoderm (embryonic human) - EHDAA2:0000919 + lateral plate mesoderm (embryonic human) @@ -9917,8 +9075,7 @@ - lateral semicircular canal (embryonic human) - EHDAA2:0000920 + lateral semicircular canal (embryonic human) @@ -9937,8 +9094,7 @@ - latissimus dorsi muscle (embryonic human) - EHDAA2:0000932 + latissimus dorsi muscle (embryonic human) @@ -9957,8 +9113,7 @@ - latissimus dorsi pre-muscle mass (embryonic human) - EHDAA2:0000933 + latissimus dorsi pre-muscle mass (embryonic human) @@ -9977,8 +9132,7 @@ - left atrioventricular canal (embryonic human) - EHDAA2:0000935 + left atrioventricular canal (embryonic human) @@ -9997,8 +9151,7 @@ - left dorsal aorta (embryonic human) - EHDAA2:0000936 + left dorsal aorta (embryonic human) @@ -10017,8 +9170,7 @@ - left extraembryonic umbilical artery (embryonic human) - EHDAA2:0000937 + left extraembryonic umbilical artery (embryonic human) @@ -10037,8 +9189,7 @@ - left extraembryonic umbilical vein (embryonic human) - EHDAA2:0000938 + left extraembryonic umbilical vein (embryonic human) @@ -10057,8 +9208,7 @@ - left hepatic duct (embryonic human) - EHDAA2:0000941 + left hepatic duct (embryonic human) @@ -10077,8 +9227,7 @@ - left lung (embryonic human) - EHDAA2:0000943 + left lung (embryonic human) @@ -10097,8 +9246,7 @@ - left lung associated mesenchyme (embryonic human) - EHDAA2:0000944 + left lung associated mesenchyme (embryonic human) @@ -10117,8 +9265,7 @@ - lower lobe of left lung (embryonic human) - EHDAA2:0000945 + lower lobe of left lung (embryonic human) @@ -10137,8 +9284,7 @@ - left lung lower lobe bronchiole (embryonic human) - EHDAA2:0000947 + left lung lower lobe bronchiole (embryonic human) @@ -10157,8 +9303,7 @@ - upper lobe of left lung (embryonic human) - EHDAA2:0000953 + upper lobe of left lung (embryonic human) @@ -10177,8 +9322,7 @@ - left lung upper lobe bronchiole (embryonic human) - EHDAA2:0000955 + left lung upper lobe bronchiole (embryonic human) @@ -10197,8 +9341,7 @@ - left lung endothelium (embryonic human) - EHDAA2:0000961 + left lung endothelium (embryonic human) @@ -10217,8 +9360,7 @@ - left lung hilus (embryonic human) - EHDAA2:0000962 + left lung hilus (embryonic human) @@ -10237,8 +9379,7 @@ - vascular element of left lung (embryonic human) - EHDAA2:0000963 + vascular element of left lung (embryonic human) @@ -10257,8 +9398,7 @@ - left lobe of thyroid gland (embryonic human) - EHDAA2:0000965 + left lobe of thyroid gland (embryonic human) @@ -10277,8 +9417,7 @@ - left umbilical artery (embryonic human) - EHDAA2:0000966 + left umbilical artery (embryonic human) @@ -10297,8 +9436,7 @@ - left umbilical vein (embryonic human) - EHDAA2:0000967 + left umbilical vein (embryonic human) @@ -10317,8 +9455,7 @@ - left vitelline vein (embryonic human) - EHDAA2:0000971 + left vitelline vein (embryonic human) @@ -10337,8 +9474,7 @@ - leg (embryonic human) - EHDAA2:0000972 + leg (embryonic human) @@ -10357,8 +9493,7 @@ - musculature of leg (embryonic human) - EHDAA2:0000973 + musculature of leg (embryonic human) @@ -10377,8 +9512,7 @@ - capsule of lens (embryonic human) - EHDAA2:0000977 + capsule of lens (embryonic human) @@ -10397,8 +9531,7 @@ - lens pit (embryonic human) - EHDAA2:0000981 + lens pit (embryonic human) @@ -10417,8 +9550,7 @@ - lens placode (embryonic human) - EHDAA2:0000982 + lens placode (embryonic human) @@ -10437,8 +9569,7 @@ - lens vesicle (embryonic human) - EHDAA2:0000983 + lens vesicle (embryonic human) @@ -10457,8 +9588,7 @@ - lens anterior epithelium (embryonic human) - EHDAA2:0000984 + lens anterior epithelium (embryonic human) @@ -10477,8 +9607,7 @@ - lens vesicle cavity (embryonic human) - EHDAA2:0000986 + lens vesicle cavity (embryonic human) @@ -10497,8 +9626,7 @@ - lens vesicle epithelium (embryonic human) - EHDAA2:0000987 + lens vesicle epithelium (embryonic human) @@ -10517,8 +9645,7 @@ - lesser omentum (embryonic human) - EHDAA2:0000991 + lesser omentum (embryonic human) @@ -10537,8 +9664,7 @@ - levator scapulae muscle (embryonic human) - EHDAA2:0000992 + levator scapulae muscle (embryonic human) @@ -10557,8 +9683,7 @@ - levator scapulae pre-muscle mass (embryonic human) - EHDAA2:0000993 + levator scapulae pre-muscle mass (embryonic human) @@ -10577,8 +9702,7 @@ - musculature of limb (embryonic human) - EHDAA2:0000995 + musculature of limb (embryonic human) @@ -10597,8 +9721,7 @@ - lingual swellings (embryonic human) - EHDAA2:0000996 + lingual swellings (embryonic human) @@ -10617,8 +9740,7 @@ - liver (embryonic human) - EHDAA2:0000997 + liver (embryonic human) @@ -10637,8 +9759,7 @@ - hepatobiliary system (embryonic human) - EHDAA2:0000998 + hepatobiliary system (embryonic human) @@ -10657,8 +9778,7 @@ - hepatic sinusoid (embryonic human) - EHDAA2:0000999 + hepatic sinusoid (embryonic human) @@ -10677,8 +9797,7 @@ - left lobe of liver (embryonic human) - EHDAA2:0001000 + left lobe of liver (embryonic human) @@ -10697,8 +9816,7 @@ - hepatic sinusoid of left of lobe of liver (embryonic human) - EHDAA2:0001001 + hepatic sinusoid of left of lobe of liver (embryonic human) @@ -10717,8 +9835,7 @@ - liver left lobe parenchyma (embryonic human) - EHDAA2:0001002 + liver left lobe parenchyma (embryonic human) @@ -10737,8 +9854,7 @@ - liver parenchyma (embryonic human) - EHDAA2:0001004 + liver parenchyma (embryonic human) @@ -10757,8 +9873,7 @@ - caudate lobe of liver (embryonic human) - EHDAA2:0001005 + caudate lobe of liver (embryonic human) @@ -10777,8 +9892,7 @@ - caudate lobe hepatic sinusoid (embryonic human) - EHDAA2:0001006 + caudate lobe hepatic sinusoid (embryonic human) @@ -10797,8 +9911,7 @@ - parenchyma of caudate lobe of liver (embryonic human) - EHDAA2:0001007 + parenchyma of caudate lobe of liver (embryonic human) @@ -10817,8 +9930,7 @@ - right lobe of liver (embryonic human) - EHDAA2:0001008 + right lobe of liver (embryonic human) @@ -10837,8 +9949,7 @@ - hepatic sinusoid of right of lobe of liver (embryonic human) - EHDAA2:0001009 + hepatic sinusoid of right of lobe of liver (embryonic human) @@ -10857,8 +9968,7 @@ - liver right lobe parenchyma (embryonic human) - EHDAA2:0001010 + liver right lobe parenchyma (embryonic human) @@ -10877,8 +9987,7 @@ - quadrate lobe of liver (embryonic human) - EHDAA2:0001012 + quadrate lobe of liver (embryonic human) @@ -10897,8 +10006,7 @@ - quadrate lobe hepatic sinusoid (embryonic human) - EHDAA2:0001013 + quadrate lobe hepatic sinusoid (embryonic human) @@ -10917,8 +10025,7 @@ - parenchyma of quadrate lobe of liver (embryonic human) - EHDAA2:0001014 + parenchyma of quadrate lobe of liver (embryonic human) @@ -10937,8 +10044,7 @@ - lower eyelid (embryonic human) - EHDAA2:0001015 + lower eyelid (embryonic human) @@ -10957,8 +10063,7 @@ - lower eyelid epithelium (embryonic human) - EHDAA2:0001016 + lower eyelid epithelium (embryonic human) @@ -10977,8 +10082,7 @@ - lower eyelid mesenchyme (embryonic human) - EHDAA2:0001017 + lower eyelid mesenchyme (embryonic human) @@ -10997,8 +10101,7 @@ - lower jaw region (embryonic human) - EHDAA2:0001018 + lower jaw region (embryonic human) @@ -11017,30 +10120,7 @@ - epithelium of lower jaw (embryonic human) - EHDAA2:0001019 - - - - - - - - - - - - - - - - - - - - future lower lip (embryonic human) - lower lip (embryonic human) - EHDAA2:0001020 + epithelium of lower jaw (embryonic human) @@ -11059,8 +10139,7 @@ - lower jaw incisor (embryonic human) - EHDAA2:0001021 + lower jaw incisor (embryonic human) @@ -11079,8 +10158,7 @@ - lower jaw incisor epithelium (embryonic human) - EHDAA2:0001022 + lower jaw incisor epithelium (embryonic human) @@ -11099,8 +10177,7 @@ - lower jaw incisor odontogenic papilla (embryonic human) - EHDAA2:0001023 + lower jaw incisor odontogenic papilla (embryonic human) @@ -11119,8 +10196,7 @@ - mesenchyme of lower jaw (embryonic human) - EHDAA2:0001024 + mesenchyme of lower jaw (embryonic human) @@ -11139,8 +10215,7 @@ - lower jaw molar (embryonic human) - EHDAA2:0001025 + lower jaw molar (embryonic human) @@ -11159,8 +10234,7 @@ - lower jaw molar epithelium (embryonic human) - EHDAA2:0001026 + lower jaw molar epithelium (embryonic human) @@ -11179,30 +10253,7 @@ - lower jaw molar odontogenic papilla (embryonic human) - EHDAA2:0001027 - - - - - - - - - - - - - - - - - - - - set of lower jaw teeth (embryonic human) - tooth of lower jaw (embryonic human) - EHDAA2:0001029 + lower jaw molar odontogenic papilla (embryonic human) @@ -11221,8 +10272,7 @@ - hindlimb zeugopod (embryonic human) - EHDAA2:0001030 + hindlimb zeugopod (embryonic human) @@ -11241,8 +10291,7 @@ - lower leg epithelium (embryonic human) - EHDAA2:0001031 + lower leg epithelium (embryonic human) @@ -11261,8 +10310,7 @@ - lower leg mesenchyme (embryonic human) - EHDAA2:0001032 + lower leg mesenchyme (embryonic human) @@ -11281,8 +10329,7 @@ - hindlimb (embryonic human) - EHDAA2:0001033 + hindlimb (embryonic human) @@ -11301,8 +10348,7 @@ - pelvic appendage bud ectoderm (embryonic human) - EHDAA2:0001034 + pelvic appendage bud ectoderm (embryonic human) @@ -11321,8 +10367,7 @@ - pelvic appendage bud mesenchyme (embryonic human) - EHDAA2:0001035 + pelvic appendage bud mesenchyme (embryonic human) @@ -11341,8 +10386,7 @@ - lower respiratory tract (embryonic human) - EHDAA2:0001036 + lower respiratory tract (embryonic human) @@ -11361,8 +10405,7 @@ - lumbar region of vertebral column (embryonic human) - EHDAA2:0001037 + lumbar region of vertebral column (embryonic human) @@ -11381,8 +10424,7 @@ - lumbar vertebra cartilage element (embryonic human) - EHDAA2:0001038 + lumbar vertebra cartilage element (embryonic human) @@ -11401,8 +10443,7 @@ - lumbosacral nerve plexus (embryonic human) - EHDAA2:0001040 + lumbosacral nerve plexus (embryonic human) @@ -11421,8 +10462,7 @@ - lung (embryonic human) - EHDAA2:0001042 + lung (embryonic human) @@ -11441,8 +10481,7 @@ - lymphoid system (embryonic human) - EHDAA2:0001043 + lymphoid system (embryonic human) @@ -11461,8 +10500,7 @@ - main bronchus (embryonic human) - EHDAA2:0001044 + main bronchus (embryonic human) @@ -11481,8 +10519,7 @@ - mesenchyme of main bronchus (embryonic human) - EHDAA2:0001045 + mesenchyme of main bronchus (embryonic human) @@ -11501,8 +10538,7 @@ - epithelium of main bronchus (embryonic human) - EHDAA2:0001047 + epithelium of main bronchus (embryonic human) @@ -11521,8 +10557,7 @@ - male genital swelling (embryonic human) - EHDAA2:0001049 + male genital swelling (embryonic human) @@ -11541,8 +10576,7 @@ - male paramesonephric duct (embryonic human) - EHDAA2:0001052 + male paramesonephric duct (embryonic human) @@ -11561,8 +10595,7 @@ - male reproductive system (embryonic human) - EHDAA2:0001054 + male reproductive system (embryonic human) @@ -11581,8 +10614,7 @@ - malleus pre-cartilage condensation (embryonic human) - EHDAA2:0001055 + malleus pre-cartilage condensation (embryonic human) @@ -11601,8 +10633,7 @@ - thoracic mammary gland (embryonic human) - EHDAA2:0001056 + thoracic mammary gland (embryonic human) @@ -11621,8 +10652,7 @@ - epithelium of mammary gland (embryonic human) - EHDAA2:0001057 + epithelium of mammary gland (embryonic human) @@ -11641,8 +10671,7 @@ - mesenchyme of mammary gland (embryonic human) - EHDAA2:0001058 + mesenchyme of mammary gland (embryonic human) @@ -11661,8 +10690,7 @@ - mandible (embryonic human) - EHDAA2:0001059 + mandible (embryonic human) @@ -11681,8 +10709,7 @@ - mandibular prominence (embryonic human) - EHDAA2:0001061 + mandibular prominence (embryonic human) @@ -11701,8 +10728,7 @@ - mandibular process mesenchyme (embryonic human) - EHDAA2:0001062 + mandibular process mesenchyme (embryonic human) @@ -11721,8 +10747,7 @@ - manubrium sternum pre-cartilage condensation (embryonic human) - EHDAA2:0001063 + manubrium sternum pre-cartilage condensation (embryonic human) @@ -11741,8 +10766,7 @@ - marginal venous sinus (embryonic human) - EHDAA2:0001064 + marginal venous sinus (embryonic human) @@ -11761,8 +10785,7 @@ - masseter muscle (embryonic human) - EHDAA2:0001067 + masseter muscle (embryonic human) @@ -11781,8 +10804,7 @@ - maxilla (embryonic human) - EHDAA2:0001068 + maxilla (embryonic human) @@ -11801,8 +10823,7 @@ - maxillary artery (embryonic human) - EHDAA2:0001069 + maxillary artery (embryonic human) @@ -11821,8 +10842,7 @@ - maxillary prominence (embryonic human) - EHDAA2:0001070 + maxillary prominence (embryonic human) @@ -11841,8 +10861,7 @@ - maxillary process mesenchyme (embryonic human) - EHDAA2:0001071 + maxillary process mesenchyme (embryonic human) @@ -11861,8 +10880,7 @@ - Meckel's cartilage (embryonic human) - EHDAA2:0001072 + Meckel's cartilage (embryonic human) @@ -11881,8 +10899,7 @@ - Meckel's cartilage pre-cartilage condensation (embryonic human) - EHDAA2:0001074 + Meckel's cartilage pre-cartilage condensation (embryonic human) @@ -11901,8 +10918,7 @@ - medial migration pathway NC-derived mesenchyme (embryonic human) - EHDAA2:0001075 + medial migration pathway NC-derived mesenchyme (embryonic human) @@ -11921,8 +10937,7 @@ - medial nasal prominence (embryonic human) - EHDAA2:0001076 + medial nasal prominence (embryonic human) @@ -11941,8 +10956,7 @@ - medial nasal process mesenchyme (embryonic human) - EHDAA2:0001077 + medial nasal process mesenchyme (embryonic human) @@ -11961,8 +10975,7 @@ - medial-nasal process ectoderm (embryonic human) - EHDAA2:0001078 + medial-nasal process ectoderm (embryonic human) @@ -11981,8 +10994,7 @@ - median eminence of neurohypophysis (embryonic human) - EHDAA2:0001080 + median eminence of neurohypophysis (embryonic human) @@ -12001,8 +11013,7 @@ - median lingual swelling (embryonic human) - EHDAA2:0001081 + median lingual swelling (embryonic human) @@ -12021,8 +11032,7 @@ - median lingual swelling epithelium (embryonic human) - EHDAA2:0001085 + median lingual swelling epithelium (embryonic human) @@ -12041,8 +11051,7 @@ - median nerve (embryonic human) - EHDAA2:0001086 + median nerve (embryonic human) @@ -12061,8 +11070,7 @@ - median sacral artery (embryonic human) - EHDAA2:0001087 + median sacral artery (embryonic human) @@ -12081,8 +11089,7 @@ - medulla oblongata (embryonic human) - EHDAA2:0001088 + medulla oblongata (embryonic human) @@ -12101,8 +11108,7 @@ - basal plate medulla oblongata (embryonic human) - EHDAA2:0001093 + basal plate medulla oblongata (embryonic human) @@ -12121,8 +11127,7 @@ - floor plate of medulla oblongata (embryonic human) - EHDAA2:0001097 + floor plate of medulla oblongata (embryonic human) @@ -12141,8 +11146,7 @@ - roof plate of medulla oblongata (embryonic human) - EHDAA2:0001099 + roof plate of medulla oblongata (embryonic human) @@ -12161,8 +11165,7 @@ - medulla oblongata sulcus limitans (embryonic human) - EHDAA2:0001100 + medulla oblongata sulcus limitans (embryonic human) @@ -12181,8 +11184,7 @@ - mesencephalic neural crest (embryonic human) - EHDAA2:0001101 + mesencephalic neural crest (embryonic human) @@ -12201,8 +11203,7 @@ - early mesencephalic vesicle (embryonic human) - EHDAA2:0001102 + early mesencephalic vesicle (embryonic human) @@ -12221,8 +11222,7 @@ - early midbrain vesicle (embryonic human) - EHDAA2:0001103 + early midbrain vesicle (embryonic human) @@ -12241,8 +11241,7 @@ - entire embryonic mesenchyme (embryonic human) - EHDAA2:0001113 + entire embryonic mesenchyme (embryonic human) @@ -12261,8 +11260,7 @@ - head mesenchyme from mesoderm (embryonic human) - EHDAA2:0001118 + head mesenchyme from mesoderm (embryonic human) @@ -12281,8 +11279,7 @@ - mesenchyme from somatopleure (embryonic human) - EHDAA2:0001120 + mesenchyme from somatopleure (embryonic human) @@ -12301,8 +11298,7 @@ - mesenchyme from splanchnopleure (embryonic human) - EHDAA2:0001122 + mesenchyme from splanchnopleure (embryonic human) @@ -12321,8 +11317,7 @@ - mesenteric artery (embryonic human) - EHDAA2:0001123 + mesenteric artery (embryonic human) @@ -12341,8 +11336,7 @@ - mesoderm (embryonic human) - EHDAA2:0001128 + mesoderm (embryonic human) @@ -12361,8 +11355,7 @@ - mesonephros (embryonic human) - EHDAA2:0001130 + mesonephros (embryonic human) @@ -12381,8 +11374,7 @@ - mesonephric mesenchyme (embryonic human) - EHDAA2:0001132 + mesonephric mesenchyme (embryonic human) @@ -12401,8 +11393,7 @@ - mesonephric tubule (embryonic human) - EHDAA2:0001134 + mesonephric tubule (embryonic human) @@ -12421,8 +11412,7 @@ - metanephros (embryonic human) - EHDAA2:0001137 + metanephros (embryonic human) @@ -12441,8 +11431,7 @@ - metanephric cortex mesenchyme (embryonic human) - EHDAA2:0001140 + metanephric cortex mesenchyme (embryonic human) @@ -12461,8 +11450,7 @@ - metanephros induced blastemal cells (embryonic human) - EHDAA2:0001143 + metanephros induced blastemal cells (embryonic human) @@ -12481,8 +11469,7 @@ - primitive renal collecting duct system (embryonic human) - EHDAA2:0001147 + primitive renal collecting duct system (embryonic human) @@ -12501,8 +11488,7 @@ - metencephalon (embryonic human) - EHDAA2:0001149 + metencephalon (embryonic human) @@ -12521,8 +11507,7 @@ - cerebellum marginal layer (embryonic human) - EHDAA2:0001152 + cerebellum marginal layer (embryonic human) @@ -12541,8 +11526,7 @@ - cerebellum ventricular layer (embryonic human) - EHDAA2:0001153 + cerebellum ventricular layer (embryonic human) @@ -12561,8 +11545,7 @@ - basal plate metencephalon (embryonic human) - EHDAA2:0001154 + basal plate metencephalon (embryonic human) @@ -12581,8 +11564,7 @@ - floor plate of metencephalon (embryonic human) - EHDAA2:0001158 + floor plate of metencephalon (embryonic human) @@ -12601,8 +11583,7 @@ - roof plate of metencephalon (embryonic human) - EHDAA2:0001160 + roof plate of metencephalon (embryonic human) @@ -12621,8 +11602,7 @@ - metencephalon sulcus limitans (embryonic human) - EHDAA2:0001161 + metencephalon sulcus limitans (embryonic human) @@ -12641,8 +11621,7 @@ - midbrain (embryonic human) - EHDAA2:0001162 + midbrain (embryonic human) @@ -12661,8 +11640,7 @@ - midbrain cerebral aqueduct (embryonic human) - EHDAA2:0001163 + midbrain cerebral aqueduct (embryonic human) @@ -12681,8 +11659,7 @@ - floor plate of midbrain (embryonic human) - EHDAA2:0001164 + floor plate of midbrain (embryonic human) @@ -12701,8 +11678,7 @@ - midbrain lateral wall (embryonic human) - EHDAA2:0001171 + midbrain lateral wall (embryonic human) @@ -12721,8 +11697,7 @@ - midbrain mantle layer (embryonic human) - EHDAA2:0001172 + midbrain mantle layer (embryonic human) @@ -12741,8 +11716,7 @@ - meninx of midbrain (embryonic human) - EHDAA2:0001174 + meninx of midbrain (embryonic human) @@ -12761,8 +11735,7 @@ - midbrain pia mater (embryonic human) - EHDAA2:0001175 + midbrain pia mater (embryonic human) @@ -12781,8 +11754,7 @@ - roof plate of midbrain (embryonic human) - EHDAA2:0001177 + roof plate of midbrain (embryonic human) @@ -12801,8 +11773,7 @@ - middle cerebral artery (embryonic human) - EHDAA2:0001179 + middle cerebral artery (embryonic human) @@ -12821,8 +11792,7 @@ - middle ear (embryonic human) - EHDAA2:0001181 + middle ear (embryonic human) @@ -12841,8 +11811,7 @@ - mesenchyme of middle ear (embryonic human) - EHDAA2:0001182 + mesenchyme of middle ear (embryonic human) @@ -12861,8 +11830,7 @@ - auditory ossicle bone (embryonic human) - EHDAA2:0001183 + auditory ossicle bone (embryonic human) @@ -12881,8 +11849,7 @@ - midgut (embryonic human) - EHDAA2:0001185 + midgut (embryonic human) @@ -12901,8 +11868,7 @@ - associated mesenchyme of midgut (embryonic human) - EHDAA2:0001186 + associated mesenchyme of midgut (embryonic human) @@ -12921,8 +11887,7 @@ - midgut region of duodenum (embryonic human) - EHDAA2:0001189 + midgut region of duodenum (embryonic human) @@ -12941,8 +11906,7 @@ - midgut duodenum epithelium (embryonic human) - EHDAA2:0001192 + midgut duodenum epithelium (embryonic human) @@ -12961,8 +11925,7 @@ - midgut duodenum mesentery (embryonic human) - EHDAA2:0001193 + midgut duodenum mesentery (embryonic human) @@ -12981,8 +11944,7 @@ - epithelium of midgut (embryonic human) - EHDAA2:0001195 + epithelium of midgut (embryonic human) @@ -13001,8 +11963,7 @@ - mesentery of midgut (embryonic human) - EHDAA2:0001202 + mesentery of midgut (embryonic human) @@ -13021,8 +11982,7 @@ - mural trophectoderm (embryonic human) - EHDAA2:0001206 + mural trophectoderm (embryonic human) @@ -13041,8 +12001,7 @@ - myelencephalon (embryonic human) - EHDAA2:0001207 + myelencephalon (embryonic human) @@ -13061,8 +12020,7 @@ - naris (embryonic human) - EHDAA2:0001225 + naris (embryonic human) @@ -13081,8 +12039,7 @@ - nasal cavity (embryonic human) - EHDAA2:0001226 + nasal cavity (embryonic human) @@ -13101,8 +12058,7 @@ - nasal cavity epithelium (embryonic human) - EHDAA2:0001227 + nasal cavity epithelium (embryonic human) @@ -13121,8 +12077,7 @@ - olfactory epithelium (embryonic human) - EHDAA2:0001228 + olfactory epithelium (embryonic human) @@ -13141,8 +12096,7 @@ - nasal cavity respiratory epithelium (embryonic human) - EHDAA2:0001230 + nasal cavity respiratory epithelium (embryonic human) @@ -13161,8 +12115,7 @@ - olfactory placode (embryonic human) - EHDAA2:0001232 + olfactory placode (embryonic human) @@ -13181,8 +12134,7 @@ - nasal septum (embryonic human) - EHDAA2:0001234 + nasal septum (embryonic human) @@ -13201,8 +12153,7 @@ - nasolacrimal duct (embryonic human) - EHDAA2:0001237 + nasolacrimal duct (embryonic human) @@ -13221,8 +12172,7 @@ - nasolacrimal groove (embryonic human) - EHDAA2:0001238 + nasolacrimal groove (embryonic human) @@ -13241,8 +12191,7 @@ - nasopharynx (embryonic human) - EHDAA2:0001239 + nasopharynx (embryonic human) @@ -13261,8 +12210,7 @@ - epithelium of nasopharynx (embryonic human) - EHDAA2:0001241 + epithelium of nasopharynx (embryonic human) @@ -13281,8 +12229,7 @@ - nephric ridge (embryonic human) - EHDAA2:0001242 + nephric ridge (embryonic human) @@ -13301,8 +12248,7 @@ - mesonephric duct (embryonic human) - EHDAA2:0001243 + mesonephric duct (embryonic human) @@ -13321,8 +12267,7 @@ - mesonephric duct lumen (embryonic human) - EHDAA2:0001244 + mesonephric duct lumen (embryonic human) @@ -13341,8 +12286,7 @@ - metanephric renal vesicle (embryonic human) - EHDAA2:0001245 + metanephric renal vesicle (embryonic human) @@ -13361,8 +12305,7 @@ - nervous system (embryonic human) - EHDAA2:0001246 + nervous system (embryonic human) @@ -13381,8 +12324,7 @@ - neurectoderm (embryonic human) - EHDAA2:0001248 + neurectoderm (embryonic human) @@ -13401,8 +12343,7 @@ - neural fold (embryonic human) - EHDAA2:0001249 + neural fold (embryonic human) @@ -13421,8 +12362,7 @@ - retinal neural layer (embryonic human) - EHDAA2:0001253 + retinal neural layer (embryonic human) @@ -13441,8 +12381,7 @@ - neural tube (embryonic human) - EHDAA2:0001254 + neural tube (embryonic human) @@ -13461,8 +12400,7 @@ - spinal cord (embryonic human) - EHDAA2:0001255 + spinal cord (embryonic human) @@ -13481,8 +12419,7 @@ - floor plate of neural tube (embryonic human) - EHDAA2:0001256 + floor plate of neural tube (embryonic human) @@ -13501,8 +12438,7 @@ - neural tube lateral wall (embryonic human) - EHDAA2:0001257 + neural tube lateral wall (embryonic human) @@ -13521,8 +12457,7 @@ - neural tube lateral wall mantle layer (embryonic human) - EHDAA2:0001261 + neural tube lateral wall mantle layer (embryonic human) @@ -13541,8 +12476,7 @@ - spinal cord sulcus limitans (embryonic human) - EHDAA2:0001265 + spinal cord sulcus limitans (embryonic human) @@ -13561,8 +12495,7 @@ - spinal cord ventricular layer (embryonic human) - EHDAA2:0001267 + spinal cord ventricular layer (embryonic human) @@ -13581,8 +12514,7 @@ - neural tube lumen (embryonic human) - EHDAA2:0001269 + neural tube lumen (embryonic human) @@ -13601,8 +12533,7 @@ - roof plate (embryonic human) - EHDAA2:0001270 + roof plate (embryonic human) @@ -13621,8 +12552,7 @@ - neurohypophysis (embryonic human) - EHDAA2:0001271 + neurohypophysis (embryonic human) @@ -13641,8 +12571,7 @@ - primitive knot (embryonic human) - EHDAA2:0001272 + primitive knot (embryonic human) @@ -13661,8 +12590,7 @@ - nose (embryonic human) - EHDAA2:0001274 + nose (embryonic human) @@ -13681,8 +12609,7 @@ - external naris (embryonic human) - EHDAA2:0001275 + external naris (embryonic human) @@ -13701,8 +12628,7 @@ - notochord (embryonic human) - EHDAA2:0001277 + notochord (embryonic human) @@ -13721,8 +12647,7 @@ - notochordal plate (embryonic human) - EHDAA2:0001278 + notochordal plate (embryonic human) @@ -13741,8 +12666,7 @@ - notochordal process (embryonic human) - EHDAA2:0001279 + notochordal process (embryonic human) @@ -13761,8 +12685,7 @@ - obturator nerve (embryonic human) - EHDAA2:0001282 + obturator nerve (embryonic human) @@ -13781,8 +12704,7 @@ - oculomotor nerve (embryonic human) - EHDAA2:0001284 + oculomotor nerve (embryonic human) @@ -13801,8 +12723,7 @@ - esophagus (embryonic human) - EHDAA2:0001285 + esophagus (embryonic human) @@ -13821,8 +12742,7 @@ - epithelium of esophagus (embryonic human) - EHDAA2:0001287 + epithelium of esophagus (embryonic human) @@ -13841,8 +12761,7 @@ - mesentery of oesophagus (embryonic human) - EHDAA2:0001288 + mesentery of oesophagus (embryonic human) @@ -13861,8 +12780,7 @@ - olfactory cortex (embryonic human) - EHDAA2:0001289 + olfactory cortex (embryonic human) @@ -13881,8 +12799,7 @@ - olfactory nerve (embryonic human) - EHDAA2:0001293 + olfactory nerve (embryonic human) @@ -13901,8 +12818,7 @@ - olfactory pit (embryonic human) - EHDAA2:0001295 + olfactory pit (embryonic human) @@ -13921,8 +12837,7 @@ - lesser sac (embryonic human) - EHDAA2:0001296 + lesser sac (embryonic human) @@ -13941,8 +12856,7 @@ - ophthalmic artery (embryonic human) - EHDAA2:0001300 + ophthalmic artery (embryonic human) @@ -13961,8 +12875,7 @@ - optic chiasma (embryonic human) - EHDAA2:0001302 + optic chiasma (embryonic human) @@ -13981,8 +12894,7 @@ - optic cup (embryonic human) - EHDAA2:0001303 + optic cup (embryonic human) @@ -14001,8 +12913,7 @@ - presumptive neural retina (embryonic human) - EHDAA2:0001304 + presumptive neural retina (embryonic human) @@ -14021,8 +12932,7 @@ - presumptive retinal pigmented epithelium (embryonic human) - EHDAA2:0001306 + presumptive retinal pigmented epithelium (embryonic human) @@ -14041,8 +12951,7 @@ - optic disc (embryonic human) - EHDAA2:0001307 + optic disc (embryonic human) @@ -14061,8 +12970,7 @@ - optic foramen (embryonic human) - EHDAA2:0001312 + optic foramen (embryonic human) @@ -14081,8 +12989,7 @@ - cranial nerve II (embryonic human) - EHDAA2:0001313 + cranial nerve II (embryonic human) @@ -14101,8 +13008,7 @@ - optic neural crest (embryonic human) - EHDAA2:0001315 + optic neural crest (embryonic human) @@ -14121,8 +13027,7 @@ - optic recess of third ventricle (embryonic human) - EHDAA2:0001317 + optic recess of third ventricle (embryonic human) @@ -14141,8 +13046,7 @@ - optic stalk (embryonic human) - EHDAA2:0001318 + optic stalk (embryonic human) @@ -14161,8 +13065,7 @@ - optic fissure (embryonic human) - EHDAA2:0001319 + optic fissure (embryonic human) @@ -14181,8 +13084,7 @@ - optic vesicle (embryonic human) - EHDAA2:0001320 + optic vesicle (embryonic human) @@ -14201,8 +13103,7 @@ - oral cavity (embryonic human) - EHDAA2:0001324 + oral cavity (embryonic human) @@ -14221,8 +13122,7 @@ - oral epithelium (embryonic human) - EHDAA2:0001325 + oral epithelium (embryonic human) @@ -14241,8 +13141,7 @@ - mouth (embryonic human) - EHDAA2:0001326 + mouth (embryonic human) @@ -14261,8 +13160,7 @@ - oral gland (embryonic human) - EHDAA2:0001327 + oral gland (embryonic human) @@ -14281,8 +13179,7 @@ - orbital fissure (embryonic human) - EHDAA2:0001328 + orbital fissure (embryonic human) @@ -14301,8 +13198,7 @@ - orbitosphenoid cartilage element (embryonic human) - EHDAA2:0001329 + orbitosphenoid cartilage element (embryonic human) @@ -14321,8 +13217,7 @@ - oronasal cavity (embryonic human) - EHDAA2:0001331 + oronasal cavity (embryonic human) @@ -14341,8 +13236,7 @@ - cartilaginous otic capsule (embryonic human) - EHDAA2:0001333 + cartilaginous otic capsule (embryonic human) @@ -14361,8 +13255,7 @@ - otic ganglion (embryonic human) - EHDAA2:0001335 + otic ganglion (embryonic human) @@ -14381,8 +13274,7 @@ - otic pit (embryonic human) - EHDAA2:0001336 + otic pit (embryonic human) @@ -14401,8 +13293,7 @@ - otic placode (embryonic human) - EHDAA2:0001339 + otic placode (embryonic human) @@ -14421,8 +13312,7 @@ - associated mesenchyme of otic placode (embryonic human) - EHDAA2:0001340 + associated mesenchyme of otic placode (embryonic human) @@ -14441,8 +13331,7 @@ - epithelium of otic placode (embryonic human) - EHDAA2:0001341 + epithelium of otic placode (embryonic human) @@ -14461,8 +13350,7 @@ - ear vesicle (embryonic human) - EHDAA2:0001342 + ear vesicle (embryonic human) @@ -14481,8 +13369,7 @@ - periotic mesenchyme (embryonic human) - EHDAA2:0001343 + periotic mesenchyme (embryonic human) @@ -14501,8 +13388,7 @@ - outflow tract (embryonic human) - EHDAA2:0001351 + outflow tract (embryonic human) @@ -14521,8 +13407,7 @@ - outflow tract aortic component (embryonic human) - EHDAA2:0001353 + outflow tract aortic component (embryonic human) @@ -14541,8 +13426,7 @@ - outflow tract cardiac jelly (embryonic human) - EHDAA2:0001354 + outflow tract cardiac jelly (embryonic human) @@ -14561,8 +13445,7 @@ - outflow tract myocardium (embryonic human) - EHDAA2:0001358 + outflow tract myocardium (embryonic human) @@ -14581,8 +13464,7 @@ - outflow tract pulmonary component (embryonic human) - EHDAA2:0001359 + outflow tract pulmonary component (embryonic human) @@ -14601,8 +13483,7 @@ - ovary (embryonic human) - EHDAA2:0001360 + ovary (embryonic human) @@ -14621,8 +13502,7 @@ - mesenchyme of ovary (embryonic human) - EHDAA2:0001362 + mesenchyme of ovary (embryonic human) @@ -14641,8 +13521,7 @@ - ovary sex cord (embryonic human) - EHDAA2:0001363 + ovary sex cord (embryonic human) @@ -14661,8 +13540,7 @@ - secondary palatal shelf (embryonic human) - EHDAA2:0001364 + secondary palatal shelf (embryonic human) @@ -14681,8 +13559,7 @@ - secondary palatal shelf epithelium (embryonic human) - EHDAA2:0001365 + secondary palatal shelf epithelium (embryonic human) @@ -14701,8 +13578,7 @@ - secondary palatal shelf mesenchyme (embryonic human) - EHDAA2:0001366 + secondary palatal shelf mesenchyme (embryonic human) @@ -14721,8 +13597,7 @@ - pancreas (embryonic human) - EHDAA2:0001367 + pancreas (embryonic human) @@ -14741,8 +13616,7 @@ - body of pancreas (embryonic human) - EHDAA2:0001368 + body of pancreas (embryonic human) @@ -14761,8 +13635,7 @@ - pancreas body parenchyma (embryonic human) - EHDAA2:0001370 + pancreas body parenchyma (embryonic human) @@ -14781,8 +13654,7 @@ - dorsal pancreas (embryonic human) - EHDAA2:0001371 + dorsal pancreas (embryonic human) @@ -14801,8 +13673,7 @@ - dorsal pancreatic duct (embryonic human) - EHDAA2:0001372 + dorsal pancreatic duct (embryonic human) @@ -14821,8 +13692,7 @@ - head of pancreas (embryonic human) - EHDAA2:0001374 + head of pancreas (embryonic human) @@ -14841,8 +13711,7 @@ - pancreas primordium (embryonic human) - EHDAA2:0001382 + pancreas primordium (embryonic human) @@ -14861,8 +13730,7 @@ - pancreas dorsal primordium (embryonic human) - EHDAA2:0001384 + pancreas dorsal primordium (embryonic human) @@ -14881,8 +13749,7 @@ - dorsal pancreatic bud (embryonic human) - EHDAA2:0001385 + dorsal pancreatic bud (embryonic human) @@ -14901,8 +13768,7 @@ - pancreas ventral primordium (embryonic human) - EHDAA2:0001387 + pancreas ventral primordium (embryonic human) @@ -14921,8 +13787,7 @@ - ventral pancreatic bud (embryonic human) - EHDAA2:0001389 + ventral pancreatic bud (embryonic human) @@ -14941,8 +13806,7 @@ - tail of pancreas (embryonic human) - EHDAA2:0001390 + tail of pancreas (embryonic human) @@ -14961,8 +13825,7 @@ - pancreas tail parenchyma (embryonic human) - EHDAA2:0001392 + pancreas tail parenchyma (embryonic human) @@ -14981,8 +13844,7 @@ - ventral pancreas (embryonic human) - EHDAA2:0001393 + ventral pancreas (embryonic human) @@ -15001,8 +13863,7 @@ - ventral pancreatic duct (embryonic human) - EHDAA2:0001396 + ventral pancreatic duct (embryonic human) @@ -15021,8 +13882,7 @@ - papillary muscle of left ventricle (embryonic human) - EHDAA2:0001398 + papillary muscle of left ventricle (embryonic human) @@ -15041,8 +13901,7 @@ - parasympathetic ganglion (embryonic human) - EHDAA2:0001400 + parasympathetic ganglion (embryonic human) @@ -15061,8 +13920,7 @@ - parasympathetic nerve (embryonic human) - EHDAA2:0001401 + parasympathetic nerve (embryonic human) @@ -15081,8 +13939,7 @@ - parasympathetic nervous system (embryonic human) - EHDAA2:0001402 + parasympathetic nervous system (embryonic human) @@ -15101,8 +13958,7 @@ - paravertebral ganglion (embryonic human) - EHDAA2:0001403 + paravertebral ganglion (embryonic human) @@ -15121,8 +13977,7 @@ - tetrapod parietal bone primordium (embryonic human) - EHDAA2:0001404 + tetrapod parietal bone primordium (embryonic human) @@ -15141,8 +13996,7 @@ - parietal of mesothelium of pericardio-peritoneal canal (embryonic human) - EHDAA2:0001409 + parietal of mesothelium of pericardio-peritoneal canal (embryonic human) @@ -15161,8 +14015,7 @@ - parotid gland primordium (embryonic human) - EHDAA2:0001413 + parotid gland primordium (embryonic human) @@ -15181,8 +14034,7 @@ - pars distalis of adenohypophysis (embryonic human) - EHDAA2:0001416 + pars distalis of adenohypophysis (embryonic human) @@ -15201,8 +14053,7 @@ - pars intermedia of adenohypophysis (embryonic human) - EHDAA2:0001417 + pars intermedia of adenohypophysis (embryonic human) @@ -15221,8 +14072,7 @@ - neural lobe of neurohypophysis (embryonic human) - EHDAA2:0001418 + neural lobe of neurohypophysis (embryonic human) @@ -15241,8 +14091,7 @@ - pars tuberalis of adenohypophysis (embryonic human) - EHDAA2:0001419 + pars tuberalis of adenohypophysis (embryonic human) @@ -15261,8 +14110,7 @@ - pectoral girdle skeleton (embryonic human) - EHDAA2:0001420 + pectoral girdle skeleton (embryonic human) @@ -15281,8 +14129,7 @@ - pectoral girdle and thoracic body wall skeletal muscle (embryonic human) - EHDAA2:0001421 + pectoral girdle and thoracic body wall skeletal muscle (embryonic human) @@ -15301,8 +14148,7 @@ - pectoral pre-muscle mass (embryonic human) - EHDAA2:0001423 + pectoral pre-muscle mass (embryonic human) @@ -15321,8 +14167,7 @@ - pectoralis major (embryonic human) - EHDAA2:0001424 + pectoralis major (embryonic human) @@ -15341,8 +14186,7 @@ - pectoralis minor (embryonic human) - EHDAA2:0001425 + pectoralis minor (embryonic human) @@ -15361,8 +14205,7 @@ - pelvic girdle skeleton (embryonic human) - EHDAA2:0001426 + pelvic girdle skeleton (embryonic human) @@ -15381,8 +14224,7 @@ - musculature of pelvic girdle (embryonic human) - EHDAA2:0001429 + musculature of pelvic girdle (embryonic human) @@ -15401,8 +14243,7 @@ - pelvic splanchnic nerve (embryonic human) - EHDAA2:0001432 + pelvic splanchnic nerve (embryonic human) @@ -15421,8 +14262,7 @@ - penis (embryonic human) - EHDAA2:0001433 + penis (embryonic human) @@ -15441,8 +14281,7 @@ - pericardial cavity (embryonic human) - EHDAA2:0001434 + pericardial cavity (embryonic human) @@ -15461,8 +14300,7 @@ - pericardio-peritoneal canal (embryonic human) - EHDAA2:0001440 + pericardio-peritoneal canal (embryonic human) @@ -15481,8 +14319,7 @@ - cavity of pericardio-peritoneal canal (embryonic human) - EHDAA2:0001441 + cavity of pericardio-peritoneal canal (embryonic human) @@ -15501,8 +14338,7 @@ - pericardio-peritoneal canal mesothelium (embryonic human) - EHDAA2:0001442 + pericardio-peritoneal canal mesothelium (embryonic human) @@ -15521,8 +14357,7 @@ - peripheral nervous system (embryonic human) - EHDAA2:0001445 + peripheral nervous system (embryonic human) @@ -15541,8 +14376,7 @@ - peritoneal cavity (embryonic human) - EHDAA2:0001446 + peritoneal cavity (embryonic human) @@ -15561,8 +14395,7 @@ - peritoneal cavity mesothelium (embryonic human) - EHDAA2:0001447 + peritoneal cavity mesothelium (embryonic human) @@ -15581,8 +14414,7 @@ - peroneus (embryonic human) - EHDAA2:0001450 + peroneus (embryonic human) @@ -15601,8 +14433,7 @@ - petrous part of temporal bone (embryonic human) - EHDAA2:0001452 + petrous part of temporal bone (embryonic human) @@ -15621,8 +14452,7 @@ - early pharyngeal endoderm (embryonic human) - EHDAA2:0001457 + early pharyngeal endoderm (embryonic human) @@ -15641,8 +14471,7 @@ - chordate pharynx (embryonic human) - EHDAA2:0001458 + chordate pharynx (embryonic human) @@ -15661,8 +14490,7 @@ - entire pharyngeal arch associated mesenchyme (embryonic human) - EHDAA2:0001459 + entire pharyngeal arch associated mesenchyme (embryonic human) @@ -15681,8 +14509,7 @@ - pharyngeal gland (embryonic human) - EHDAA2:0001461 + pharyngeal gland (embryonic human) @@ -15701,8 +14528,7 @@ - philtrum (embryonic human) - EHDAA2:0001462 + philtrum (embryonic human) @@ -15721,8 +14547,7 @@ - trunk of phrenic nerve (embryonic human) - EHDAA2:0001463 + trunk of phrenic nerve (embryonic human) @@ -15741,8 +14566,7 @@ - pigmented layer of retina (embryonic human) - EHDAA2:0001465 + pigmented layer of retina (embryonic human) @@ -15761,8 +14585,7 @@ - pineal body (embryonic human) - EHDAA2:0001466 + pineal body (embryonic human) @@ -15781,8 +14604,7 @@ - pinna (embryonic human) - EHDAA2:0001467 + pinna (embryonic human) @@ -15801,8 +14623,7 @@ - mesenchyme of pinna (embryonic human) - EHDAA2:0001469 + mesenchyme of pinna (embryonic human) @@ -15821,8 +14642,7 @@ - pinna surface epithelium (embryonic human) - EHDAA2:0001470 + pinna surface epithelium (embryonic human) @@ -15841,8 +14661,7 @@ - pituitary gland (embryonic human) - EHDAA2:0001471 + pituitary gland (embryonic human) @@ -15861,8 +14680,7 @@ - future pituitary gland (embryonic human) - EHDAA2:0001472 + future pituitary gland (embryonic human) @@ -15881,8 +14699,7 @@ - Rathkes pouch epithelium (embryonic human) - EHDAA2:0001473 + Rathkes pouch epithelium (embryonic human) @@ -15901,8 +14718,7 @@ - platysma (embryonic human) - EHDAA2:0001474 + platysma (embryonic human) @@ -15921,8 +14737,7 @@ - pleural cavity (embryonic human) - EHDAA2:0001475 + pleural cavity (embryonic human) @@ -15941,8 +14756,7 @@ - mesothelium of pleural cavity (embryonic human) - EHDAA2:0001476 + mesothelium of pleural cavity (embryonic human) @@ -15961,8 +14775,7 @@ - pleuropericardial canals (embryonic human) - EHDAA2:0001479 + pleuropericardial canals (embryonic human) @@ -15981,8 +14794,7 @@ - pleuropericardial folds (embryonic human) - EHDAA2:0001480 + pleuropericardial folds (embryonic human) @@ -16001,8 +14813,7 @@ - pleuroperitoneal canal (embryonic human) - EHDAA2:0001481 + pleuroperitoneal canal (embryonic human) @@ -16021,8 +14832,7 @@ - pleuroperitoneal membrane (embryonic human) - EHDAA2:0001483 + pleuroperitoneal membrane (embryonic human) @@ -16041,8 +14851,7 @@ - polar trophectoderm (embryonic human) - EHDAA2:0001484 + polar trophectoderm (embryonic human) @@ -16061,30 +14870,7 @@ - portal vein (embryonic human) - EHDAA2:0001485 - - - - - - - - - - - - - - - - - - - - left posterior cardinal vein (embryonic human) - posterior cardinal vein (embryonic human) - EHDAA2:0001486 + portal vein (embryonic human) @@ -16103,8 +14889,7 @@ - posterior semicircular canal (embryonic human) - EHDAA2:0001489 + posterior semicircular canal (embryonic human) @@ -16123,8 +14908,7 @@ - prechordal plate (embryonic human) - EHDAA2:0001493 + prechordal plate (embryonic human) @@ -16143,8 +14927,7 @@ - early premaxilla (embryonic human) - EHDAA2:0001495 + early premaxilla (embryonic human) @@ -16163,8 +14946,7 @@ - primary palate (embryonic human) - EHDAA2:0001496 + primary palate (embryonic human) @@ -16183,8 +14965,7 @@ - primary head vein (embryonic human) - EHDAA2:0001498 + primary head vein (embryonic human) @@ -16203,8 +14984,7 @@ - primary palate (embryonic human) - EHDAA2:0001499 + primary palate (embryonic human) @@ -16223,8 +15003,7 @@ - primary palate epithelium (embryonic human) - EHDAA2:0001500 + primary palate epithelium (embryonic human) @@ -16243,8 +15022,7 @@ - primary palate mesenchyme (embryonic human) - EHDAA2:0001501 + primary palate mesenchyme (embryonic human) @@ -16263,8 +15041,7 @@ - primary vitreous (embryonic human) - EHDAA2:0001502 + primary vitreous (embryonic human) @@ -16283,8 +15060,7 @@ - primary yolk sac cavity (embryonic human) - EHDAA2:0001503 + primary yolk sac cavity (embryonic human) @@ -16303,8 +15079,7 @@ - allantois (embryonic human) - EHDAA2:0001504 + allantois (embryonic human) @@ -16323,8 +15098,7 @@ - primitive groove (embryonic human) - EHDAA2:0001511 + primitive groove (embryonic human) @@ -16343,8 +15117,7 @@ - primitive heart tube (embryonic human) - EHDAA2:0001512 + primitive heart tube (embryonic human) @@ -16363,8 +15136,7 @@ - primitive marginal sinus (embryonic human) - EHDAA2:0001514 + primitive marginal sinus (embryonic human) @@ -16383,8 +15155,7 @@ - primitive metanephric nephron (embryonic human) - EHDAA2:0001516 + primitive metanephric nephron (embryonic human) @@ -16403,8 +15174,7 @@ - primitive pit (embryonic human) - EHDAA2:0001521 + primitive pit (embryonic human) @@ -16423,8 +15193,7 @@ - primitive streak (embryonic human) - EHDAA2:0001525 + primitive streak (embryonic human) @@ -16443,8 +15212,7 @@ - primitive superior sagittal sinus (embryonic human) - EHDAA2:0001527 + primitive superior sagittal sinus (embryonic human) @@ -16463,8 +15231,7 @@ - future cardiac ventricle (embryonic human) - EHDAA2:0001531 + future cardiac ventricle (embryonic human) @@ -16483,8 +15250,7 @@ - pronephros (embryonic human) - EHDAA2:0001570 + pronephros (embryonic human) @@ -16503,8 +15269,7 @@ - early prosencephalic vesicle (embryonic human) - EHDAA2:0001571 + early prosencephalic vesicle (embryonic human) @@ -16523,8 +15288,7 @@ - pubic cartilage element (embryonic human) - EHDAA2:0001573 + pubic cartilage element (embryonic human) @@ -16543,8 +15307,7 @@ - pubic pre-cartilage condensation (embryonic human) - EHDAA2:0001574 + pubic pre-cartilage condensation (embryonic human) @@ -16563,8 +15326,7 @@ - pulmonary artery (embryonic human) - EHDAA2:0001575 + pulmonary artery (embryonic human) @@ -16583,8 +15345,7 @@ - pulmonary trunk (embryonic human) - EHDAA2:0001576 + pulmonary trunk (embryonic human) @@ -16603,8 +15364,7 @@ - pulmonary valve (embryonic human) - EHDAA2:0001577 + pulmonary valve (embryonic human) @@ -16623,8 +15383,7 @@ - pulmonary vein (embryonic human) - EHDAA2:0001579 + pulmonary vein (embryonic human) @@ -16643,8 +15402,7 @@ - pylorus (embryonic human) - EHDAA2:0001580 + pylorus (embryonic human) @@ -16663,8 +15421,7 @@ - pyloric region epithelium (embryonic human) - EHDAA2:0001582 + pyloric region epithelium (embryonic human) @@ -16683,8 +15440,7 @@ - quadriceps femoris (embryonic human) - EHDAA2:0001583 + quadriceps femoris (embryonic human) @@ -16703,8 +15459,7 @@ - radial nerve (embryonic human) - EHDAA2:0001584 + radial nerve (embryonic human) @@ -16723,8 +15478,7 @@ - radius cartilage element (embryonic human) - EHDAA2:0001585 + radius cartilage element (embryonic human) @@ -16743,8 +15497,7 @@ - radius pre-cartilage condensation (embryonic human) - EHDAA2:0001586 + radius pre-cartilage condensation (embryonic human) @@ -16763,8 +15516,7 @@ - radius-ulna pre-cartilage condensation (embryonic human) - EHDAA2:0001587 + radius-ulna pre-cartilage condensation (embryonic human) @@ -16783,8 +15535,7 @@ - Rathke's pouch (embryonic human) - EHDAA2:0001588 + Rathke's pouch (embryonic human) @@ -16803,8 +15554,7 @@ - rectum (embryonic human) - EHDAA2:0001592 + rectum (embryonic human) @@ -16823,8 +15573,7 @@ - epithelium of rectum (embryonic human) - EHDAA2:0001594 + epithelium of rectum (embryonic human) @@ -16843,8 +15592,7 @@ - rectus abdominis muscle (embryonic human) - EHDAA2:0001595 + rectus abdominis muscle (embryonic human) @@ -16863,8 +15611,7 @@ - renal system (embryonic human) - EHDAA2:0001601 + renal system (embryonic human) @@ -16883,8 +15630,7 @@ - renal vein (embryonic human) - EHDAA2:0001602 + renal vein (embryonic human) @@ -16903,8 +15649,7 @@ - reproductive system (embryonic human) - EHDAA2:0001603 + reproductive system (embryonic human) @@ -16923,8 +15668,7 @@ - respiratory system (embryonic human) - EHDAA2:0001604 + respiratory system (embryonic human) @@ -16943,8 +15687,7 @@ - respiratory tract (embryonic human) - EHDAA2:0001606 + respiratory tract (embryonic human) @@ -16963,8 +15706,7 @@ - retina (embryonic human) - EHDAA2:0001627 + retina (embryonic human) @@ -16983,8 +15725,7 @@ - rhombencephalon neural crest (embryonic human) - EHDAA2:0001628 + rhombencephalon neural crest (embryonic human) @@ -17003,8 +15744,7 @@ - presumptive hindbrain (embryonic human) - EHDAA2:0001630 + presumptive hindbrain (embryonic human) @@ -17023,8 +15763,7 @@ - rhomboid (embryonic human) - EHDAA2:0001635 + rhomboid (embryonic human) @@ -17043,8 +15782,7 @@ - rhomboid pre-muscle mass (embryonic human) - EHDAA2:0001636 + rhomboid pre-muscle mass (embryonic human) @@ -17063,8 +15801,7 @@ - rhombomere 1 (embryonic human) - EHDAA2:0001637 + rhombomere 1 (embryonic human) @@ -17083,8 +15820,7 @@ - rhombomere 1 floor plate (embryonic human) - EHDAA2:0001640 + rhombomere 1 floor plate (embryonic human) @@ -17103,8 +15839,7 @@ - rhombomere 1 lateral wall (embryonic human) - EHDAA2:0001641 + rhombomere 1 lateral wall (embryonic human) @@ -17123,8 +15858,7 @@ - rhombomere 1 roof plate (embryonic human) - EHDAA2:0001645 + rhombomere 1 roof plate (embryonic human) @@ -17143,8 +15877,7 @@ - rhombomere 2 (embryonic human) - EHDAA2:0001647 + rhombomere 2 (embryonic human) @@ -17163,8 +15896,7 @@ - rhombomere 2 floor plate (embryonic human) - EHDAA2:0001650 + rhombomere 2 floor plate (embryonic human) @@ -17183,8 +15915,7 @@ - rhombomere 2 lateral wall (embryonic human) - EHDAA2:0001651 + rhombomere 2 lateral wall (embryonic human) @@ -17203,8 +15934,7 @@ - rhombomere 2 roof plate (embryonic human) - EHDAA2:0001655 + rhombomere 2 roof plate (embryonic human) @@ -17223,8 +15953,7 @@ - rhombomere 3 (embryonic human) - EHDAA2:0001657 + rhombomere 3 (embryonic human) @@ -17243,8 +15972,7 @@ - rhombomere 3 floor plate (embryonic human) - EHDAA2:0001660 + rhombomere 3 floor plate (embryonic human) @@ -17263,8 +15991,7 @@ - rhombomere 3 lateral wall (embryonic human) - EHDAA2:0001661 + rhombomere 3 lateral wall (embryonic human) @@ -17283,8 +16010,7 @@ - rhombomere 3 roof plate (embryonic human) - EHDAA2:0001665 + rhombomere 3 roof plate (embryonic human) @@ -17303,8 +16029,7 @@ - rhombomere 4 (embryonic human) - EHDAA2:0001667 + rhombomere 4 (embryonic human) @@ -17323,8 +16048,7 @@ - rhombomere 4 floor plate (embryonic human) - EHDAA2:0001670 + rhombomere 4 floor plate (embryonic human) @@ -17343,8 +16067,7 @@ - rhombomere 4 lateral wall (embryonic human) - EHDAA2:0001671 + rhombomere 4 lateral wall (embryonic human) @@ -17363,8 +16086,7 @@ - rhombomere 4 roof plate (embryonic human) - EHDAA2:0001675 + rhombomere 4 roof plate (embryonic human) @@ -17383,8 +16105,7 @@ - rhombomere 5 (embryonic human) - EHDAA2:0001677 + rhombomere 5 (embryonic human) @@ -17403,8 +16124,7 @@ - rhombomere 5 floor plate (embryonic human) - EHDAA2:0001680 + rhombomere 5 floor plate (embryonic human) @@ -17423,8 +16143,7 @@ - rhombomere 5 lateral wall (embryonic human) - EHDAA2:0001681 + rhombomere 5 lateral wall (embryonic human) @@ -17443,8 +16162,7 @@ - rhombomere 5 roof plate (embryonic human) - EHDAA2:0001685 + rhombomere 5 roof plate (embryonic human) @@ -17463,8 +16181,7 @@ - rhombomere 6 (embryonic human) - EHDAA2:0001687 + rhombomere 6 (embryonic human) @@ -17483,8 +16200,7 @@ - rhombomere 6 floor plate (embryonic human) - EHDAA2:0001690 + rhombomere 6 floor plate (embryonic human) @@ -17503,8 +16219,7 @@ - rhombomere 6 lateral wall (embryonic human) - EHDAA2:0001691 + rhombomere 6 lateral wall (embryonic human) @@ -17523,8 +16238,7 @@ - rhombomere 6 roof plate (embryonic human) - EHDAA2:0001695 + rhombomere 6 roof plate (embryonic human) @@ -17543,8 +16257,7 @@ - rhombomere 7 (embryonic human) - EHDAA2:0001697 + rhombomere 7 (embryonic human) @@ -17563,8 +16276,7 @@ - rhombomere 7 floor plate (embryonic human) - EHDAA2:0001700 + rhombomere 7 floor plate (embryonic human) @@ -17583,8 +16295,7 @@ - rhombomere 7 lateral wall (embryonic human) - EHDAA2:0001701 + rhombomere 7 lateral wall (embryonic human) @@ -17603,8 +16314,7 @@ - rhombomere 7 roof plate (embryonic human) - EHDAA2:0001705 + rhombomere 7 roof plate (embryonic human) @@ -17623,8 +16333,7 @@ - rhombomere 8 (embryonic human) - EHDAA2:0001707 + rhombomere 8 (embryonic human) @@ -17643,8 +16352,7 @@ - rhombomere 8 floor plate (embryonic human) - EHDAA2:0001709 + rhombomere 8 floor plate (embryonic human) @@ -17663,8 +16371,7 @@ - rhombomere 8 lateral wall (embryonic human) - EHDAA2:0001710 + rhombomere 8 lateral wall (embryonic human) @@ -17683,8 +16390,7 @@ - rhombomere 8 roof plate (embryonic human) - EHDAA2:0001714 + rhombomere 8 roof plate (embryonic human) @@ -17703,8 +16409,7 @@ - rib cartilage element (embryonic human) - EHDAA2:0001716 + rib cartilage element (embryonic human) @@ -17723,8 +16428,7 @@ - rib pre-cartilage condensation (embryonic human) - EHDAA2:0001717 + rib pre-cartilage condensation (embryonic human) @@ -17743,8 +16447,7 @@ - right atrioventricular canal (embryonic human) - EHDAA2:0001719 + right atrioventricular canal (embryonic human) @@ -17763,8 +16466,7 @@ - right dorsal aorta (embryonic human) - EHDAA2:0001720 + right dorsal aorta (embryonic human) @@ -17783,8 +16485,7 @@ - right extraembryonic umbilical artery (embryonic human) - EHDAA2:0001721 + right extraembryonic umbilical artery (embryonic human) @@ -17803,8 +16504,7 @@ - right extraembryonic umbilical vein (embryonic human) - EHDAA2:0001722 + right extraembryonic umbilical vein (embryonic human) @@ -17823,8 +16523,7 @@ - right hepatic duct (embryonic human) - EHDAA2:0001727 + right hepatic duct (embryonic human) @@ -17843,8 +16542,7 @@ - right lung (embryonic human) - EHDAA2:0001730 + right lung (embryonic human) @@ -17863,8 +16561,7 @@ - right lung accessory lobe (embryonic human) - EHDAA2:0001731 + right lung accessory lobe (embryonic human) @@ -17883,8 +16580,7 @@ - right lung accessory lobe bronchiole (embryonic human) - EHDAA2:0001733 + right lung accessory lobe bronchiole (embryonic human) @@ -17903,8 +16599,7 @@ - right lung accessory lobe epithelium (embryonic human) - EHDAA2:0001735 + right lung accessory lobe epithelium (embryonic human) @@ -17923,8 +16618,7 @@ - right lung accessory lobe lobar bronchus (embryonic human) - EHDAA2:0001736 + right lung accessory lobe lobar bronchus (embryonic human) @@ -17943,8 +16637,7 @@ - right lung accessory lobe segmental bronchus (embryonic human) - EHDAA2:0001738 + right lung accessory lobe segmental bronchus (embryonic human) @@ -17963,8 +16656,7 @@ - right lung associated mesenchyme (embryonic human) - EHDAA2:0001739 + right lung associated mesenchyme (embryonic human) @@ -17983,8 +16675,7 @@ - lower lobe of right lung (embryonic human) - EHDAA2:0001740 + lower lobe of right lung (embryonic human) @@ -18003,8 +16694,7 @@ - right lung caudal lobe epithelium (embryonic human) - EHDAA2:0001743 + right lung caudal lobe epithelium (embryonic human) @@ -18023,8 +16713,7 @@ - lobar bronchus of right lung caudal lobe (embryonic human) - EHDAA2:0001744 + lobar bronchus of right lung caudal lobe (embryonic human) @@ -18043,8 +16732,7 @@ - right lung caudal lobe segmental bronchus (embryonic human) - EHDAA2:0001746 + right lung caudal lobe segmental bronchus (embryonic human) @@ -18063,8 +16751,7 @@ - upper lobe of right lung (embryonic human) - EHDAA2:0001747 + upper lobe of right lung (embryonic human) @@ -18083,8 +16770,7 @@ - right lung upper lobe bronchiole (embryonic human) - EHDAA2:0001749 + right lung upper lobe bronchiole (embryonic human) @@ -18103,8 +16789,7 @@ - right lung cranial lobe epithelium (embryonic human) - EHDAA2:0001751 + right lung cranial lobe epithelium (embryonic human) @@ -18123,8 +16808,7 @@ - lobar bronchus of right lung cranial lobe (embryonic human) - EHDAA2:0001752 + lobar bronchus of right lung cranial lobe (embryonic human) @@ -18143,8 +16827,7 @@ - right lung cranial lobe segmental bronchus (embryonic human) - EHDAA2:0001754 + right lung cranial lobe segmental bronchus (embryonic human) @@ -18163,8 +16846,7 @@ - right lung endothelium (embryonic human) - EHDAA2:0001755 + right lung endothelium (embryonic human) @@ -18183,8 +16865,7 @@ - right lung hilus (embryonic human) - EHDAA2:0001756 + right lung hilus (embryonic human) @@ -18203,8 +16884,7 @@ - vascular element of right lung (embryonic human) - EHDAA2:0001757 + vascular element of right lung (embryonic human) @@ -18223,8 +16903,7 @@ - right lobe of thyroid gland (embryonic human) - EHDAA2:0001759 + right lobe of thyroid gland (embryonic human) @@ -18243,8 +16922,7 @@ - right umbilical artery (embryonic human) - EHDAA2:0001760 + right umbilical artery (embryonic human) @@ -18263,8 +16941,7 @@ - right umbilical vein (embryonic human) - EHDAA2:0001761 + right umbilical vein (embryonic human) @@ -18283,8 +16960,7 @@ - right atrium venous valve (embryonic human) - EHDAA2:0001762 + right atrium venous valve (embryonic human) @@ -18303,8 +16979,7 @@ - right vitelline vein (embryonic human) - EHDAA2:0001766 + right vitelline vein (embryonic human) @@ -18323,8 +16998,7 @@ - saccule of membranous labyrinth (embryonic human) - EHDAA2:0001769 + saccule of membranous labyrinth (embryonic human) @@ -18343,8 +17017,7 @@ - sacral region of vertebral column (embryonic human) - EHDAA2:0001772 + sacral region of vertebral column (embryonic human) @@ -18363,8 +17036,7 @@ - sacral vertebra cartilage element (embryonic human) - EHDAA2:0001773 + sacral vertebra cartilage element (embryonic human) @@ -18383,8 +17055,7 @@ - sacral vertebra pre-cartilage condensation (embryonic human) - EHDAA2:0001774 + sacral vertebra pre-cartilage condensation (embryonic human) @@ -18403,8 +17074,7 @@ - saliva-secreting gland (embryonic human) - EHDAA2:0001775 + saliva-secreting gland (embryonic human) @@ -18423,8 +17093,7 @@ - sartorius muscle (embryonic human) - EHDAA2:0001776 + sartorius muscle (embryonic human) @@ -18443,8 +17112,7 @@ - scapula cartilage element (embryonic human) - EHDAA2:0001777 + scapula cartilage element (embryonic human) @@ -18463,8 +17131,7 @@ - scapula pre-cartilage condensation (embryonic human) - EHDAA2:0001778 + scapula pre-cartilage condensation (embryonic human) @@ -18483,8 +17150,7 @@ - sciatic nerve (embryonic human) - EHDAA2:0001779 + sciatic nerve (embryonic human) @@ -18503,8 +17169,7 @@ - secondary yolk sac cavity (embryonic human) - EHDAA2:0001821 + secondary yolk sac cavity (embryonic human) @@ -18523,8 +17188,7 @@ - semi-lunar valve (embryonic human) - EHDAA2:0001823 + semi-lunar valve (embryonic human) @@ -18543,8 +17207,7 @@ - sense organ (embryonic human) - EHDAA2:0001824 + sense organ (embryonic human) @@ -18563,8 +17226,7 @@ - atrial septum primum (embryonic human) - EHDAA2:0001825 + atrial septum primum (embryonic human) @@ -18583,8 +17245,7 @@ - foramen primum (embryonic human) - EHDAA2:0001826 + foramen primum (embryonic human) @@ -18603,8 +17264,7 @@ - atrial septum secundum (embryonic human) - EHDAA2:0001827 + atrial septum secundum (embryonic human) @@ -18623,8 +17283,7 @@ - foramen secundum (embryonic human) - EHDAA2:0001828 + foramen secundum (embryonic human) @@ -18643,8 +17302,7 @@ - septum transversum (embryonic human) - EHDAA2:0001829 + septum transversum (embryonic human) @@ -18663,8 +17321,7 @@ - serratus ventralis (embryonic human) - EHDAA2:0001832 + serratus ventralis (embryonic human) @@ -18683,8 +17340,7 @@ - serratus ventralis pre-muscle mass (embryonic human) - EHDAA2:0001833 + serratus ventralis pre-muscle mass (embryonic human) @@ -18703,8 +17359,7 @@ - shoulder (embryonic human) - EHDAA2:0001834 + shoulder (embryonic human) @@ -18723,8 +17378,7 @@ - epithelium of shoulder (embryonic human) - EHDAA2:0001835 + epithelium of shoulder (embryonic human) @@ -18743,8 +17397,7 @@ - shoulder joint primordium (embryonic human) - EHDAA2:0001836 + shoulder joint primordium (embryonic human) @@ -18763,8 +17416,7 @@ - mesenchyme of shoulder (embryonic human) - EHDAA2:0001837 + mesenchyme of shoulder (embryonic human) @@ -18783,8 +17435,7 @@ - sigmoid sinus (embryonic human) - EHDAA2:0001838 + sigmoid sinus (embryonic human) @@ -18803,8 +17454,7 @@ - sinus venosus (embryonic human) - EHDAA2:0001839 + sinus venosus (embryonic human) @@ -18823,8 +17473,7 @@ - left horn of sinus venosus (embryonic human) - EHDAA2:0001840 + left horn of sinus venosus (embryonic human) @@ -18843,8 +17492,7 @@ - right horn of sinus venosus (embryonic human) - EHDAA2:0001841 + right horn of sinus venosus (embryonic human) @@ -18863,8 +17511,7 @@ - skeletal musculature (embryonic human) - EHDAA2:0001842 + skeletal musculature (embryonic human) @@ -18883,30 +17530,7 @@ - skeleton (embryonic human) - EHDAA2:0001843 - - - - - - - - - - - - - - - - - - - - skin of body (embryonic human) - zone of skin (embryonic human) - EHDAA2:0001844 + skeleton (embryonic human) @@ -18925,8 +17549,7 @@ - embryonic skin basal layer (embryonic human) - EHDAA2:0001845 + embryonic skin basal layer (embryonic human) @@ -18945,8 +17568,7 @@ - periderm (embryonic human) - EHDAA2:0001846 + periderm (embryonic human) @@ -18965,8 +17587,7 @@ - somatopleure (embryonic human) - EHDAA2:0001847 + somatopleure (embryonic human) @@ -18985,8 +17606,7 @@ - sphenoid cartilage element (embryonic human) - EHDAA2:0001888 + sphenoid cartilage element (embryonic human) @@ -19005,8 +17625,7 @@ - pterygopalatine ganglion (embryonic human) - EHDAA2:0001889 + pterygopalatine ganglion (embryonic human) @@ -19025,8 +17644,7 @@ - spinal artery (embryonic human) - EHDAA2:0001890 + spinal artery (embryonic human) @@ -19045,8 +17663,7 @@ - meninx of spinal cord (embryonic human) - EHDAA2:0001895 + meninx of spinal cord (embryonic human) @@ -19065,8 +17682,7 @@ - spinal cord pia mater (embryonic human) - EHDAA2:0001896 + spinal cord pia mater (embryonic human) @@ -19085,8 +17701,7 @@ - dorsal root ganglion (embryonic human) - EHDAA2:0001897 + dorsal root ganglion (embryonic human) @@ -19105,8 +17720,7 @@ - spinal nerve (embryonic human) - EHDAA2:0001898 + spinal nerve (embryonic human) @@ -19125,8 +17739,7 @@ - spinal nerve plexus (embryonic human) - EHDAA2:0001899 + spinal nerve plexus (embryonic human) @@ -19145,8 +17758,7 @@ - spinal nerve trunk (embryonic human) - EHDAA2:0001900 + spinal nerve trunk (embryonic human) @@ -19165,8 +17777,7 @@ - trunk neural crest (embryonic human) - EHDAA2:0001901 + trunk neural crest (embryonic human) @@ -19185,8 +17796,7 @@ - splanchnopleure (embryonic human) - EHDAA2:0001903 + splanchnopleure (embryonic human) @@ -19205,8 +17815,7 @@ - spleen primordium (embryonic human) - EHDAA2:0001904 + spleen primordium (embryonic human) @@ -19225,8 +17834,7 @@ - squamous part of temporal bone primordium (embryonic human) - EHDAA2:0001907 + squamous part of temporal bone primordium (embryonic human) @@ -19245,8 +17853,7 @@ - stapedial artery (embryonic human) - EHDAA2:0001908 + stapedial artery (embryonic human) @@ -19265,8 +17872,7 @@ - stapedius pre-muscle condensation (embryonic human) - EHDAA2:0001909 + stapedius pre-muscle condensation (embryonic human) @@ -19285,8 +17891,7 @@ - stapes pre-cartilage condensation (embryonic human) - EHDAA2:0001910 + stapes pre-cartilage condensation (embryonic human) @@ -19305,8 +17910,7 @@ - sternebral bone pre-cartilage condensation (embryonic human) - EHDAA2:0001912 + sternebral bone pre-cartilage condensation (embryonic human) @@ -19325,8 +17929,7 @@ - sterno-mastoid pre-muscle mass (embryonic human) - EHDAA2:0001913 + sterno-mastoid pre-muscle mass (embryonic human) @@ -19345,8 +17948,7 @@ - sternum (embryonic human) - EHDAA2:0001914 + sternum (embryonic human) @@ -19365,8 +17967,7 @@ - stomach (embryonic human) - EHDAA2:0001915 + stomach (embryonic human) @@ -19385,8 +17986,7 @@ - epithelium of stomach (embryonic human) - EHDAA2:0001918 + epithelium of stomach (embryonic human) @@ -19405,8 +18005,7 @@ - fundus of stomach (embryonic human) - EHDAA2:0001919 + fundus of stomach (embryonic human) @@ -19425,8 +18024,7 @@ - stomach fundus epithelium (embryonic human) - EHDAA2:0001921 + stomach fundus epithelium (embryonic human) @@ -19445,8 +18043,7 @@ - mesentery of stomach (embryonic human) - EHDAA2:0001922 + mesentery of stomach (embryonic human) @@ -19465,8 +18062,7 @@ - stomodeum (embryonic human) - EHDAA2:0001929 + stomodeum (embryonic human) @@ -19485,8 +18081,7 @@ - left subcardinal vein (embryonic human) - EHDAA2:0001932 + left subcardinal vein (embryonic human) @@ -19505,8 +18100,7 @@ - subclavian artery (embryonic human) - EHDAA2:0001933 + subclavian artery (embryonic human) @@ -19525,8 +18119,7 @@ - subclavian vein (embryonic human) - EHDAA2:0001934 + subclavian vein (embryonic human) @@ -19545,8 +18138,7 @@ - sublingual gland primordium (embryonic human) - EHDAA2:0001935 + sublingual gland primordium (embryonic human) @@ -19565,8 +18157,7 @@ - mesenchyme of sublingual gland primordium (embryonic human) - EHDAA2:0001937 + mesenchyme of sublingual gland primordium (embryonic human) @@ -19585,8 +18176,7 @@ - sublingual ganglion (embryonic human) - EHDAA2:0001938 + sublingual ganglion (embryonic human) @@ -19605,8 +18195,7 @@ - submandibular gland primordium (embryonic human) - EHDAA2:0001939 + submandibular gland primordium (embryonic human) @@ -19625,8 +18214,7 @@ - submandibular gland primordium epithelium (embryonic human) - EHDAA2:0001940 + submandibular gland primordium epithelium (embryonic human) @@ -19645,8 +18233,7 @@ - mesenchyme of submandibular gland primordium (embryonic human) - EHDAA2:0001941 + mesenchyme of submandibular gland primordium (embryonic human) @@ -19665,8 +18252,7 @@ - submandibular ganglion (embryonic human) - EHDAA2:0001942 + submandibular ganglion (embryonic human) @@ -19685,8 +18271,7 @@ - subscapularis muscle (embryonic human) - EHDAA2:0001943 + subscapularis muscle (embryonic human) @@ -19705,8 +18290,7 @@ - myelencephalon sulcus limitans (embryonic human) - EHDAA2:0001945 + myelencephalon sulcus limitans (embryonic human) @@ -19725,8 +18309,7 @@ - superior mesenteric artery (embryonic human) - EHDAA2:0001949 + superior mesenteric artery (embryonic human) @@ -19745,8 +18328,7 @@ - superior mesenteric ganglion (embryonic human) - EHDAA2:0001950 + superior mesenteric ganglion (embryonic human) @@ -19765,8 +18347,7 @@ - superior mesenteric vein (embryonic human) - EHDAA2:0001951 + superior mesenteric vein (embryonic human) @@ -19785,8 +18366,7 @@ - superior orbital fissure (embryonic human) - EHDAA2:0001952 + superior orbital fissure (embryonic human) @@ -19805,8 +18385,7 @@ - superior parathyroid gland (embryonic human) - EHDAA2:0001954 + superior parathyroid gland (embryonic human) @@ -19825,8 +18404,7 @@ - superior parathyroid epithelium (embryonic human) - EHDAA2:0001957 + superior parathyroid epithelium (embryonic human) @@ -19845,8 +18423,7 @@ - superior recess of lesser sac (embryonic human) - EHDAA2:0001958 + superior recess of lesser sac (embryonic human) @@ -19865,8 +18442,7 @@ - anterior semicircular canal (embryonic human) - EHDAA2:0001959 + anterior semicircular canal (embryonic human) @@ -19885,8 +18461,7 @@ - anterior vena cava (embryonic human) - EHDAA2:0001962 + anterior vena cava (embryonic human) @@ -19905,8 +18480,7 @@ - supraoccipital pre-cartilage condensation (embryonic human) - EHDAA2:0001963 + supraoccipital pre-cartilage condensation (embryonic human) @@ -19925,8 +18499,7 @@ - supracardinal vein (embryonic human) - EHDAA2:0001964 + supracardinal vein (embryonic human) @@ -19945,8 +18518,7 @@ - suprarenal artery (embryonic human) - EHDAA2:0001965 + suprarenal artery (embryonic human) @@ -19965,8 +18537,7 @@ - suprarenal vein (embryonic human) - EHDAA2:0001966 + suprarenal vein (embryonic human) @@ -19985,8 +18556,7 @@ - supraspinatus muscle (embryonic human) - EHDAA2:0001967 + supraspinatus muscle (embryonic human) @@ -20005,8 +18575,7 @@ - external ectoderm (embryonic human) - EHDAA2:0001968 + external ectoderm (embryonic human) @@ -20025,8 +18594,7 @@ - sympathetic ganglion (embryonic human) - EHDAA2:0001969 + sympathetic ganglion (embryonic human) @@ -20045,8 +18613,7 @@ - sympathetic nerve trunk (embryonic human) - EHDAA2:0001970 + sympathetic nerve trunk (embryonic human) @@ -20065,8 +18632,7 @@ - sympathetic nervous system (embryonic human) - EHDAA2:0001971 + sympathetic nervous system (embryonic human) @@ -20085,8 +18651,7 @@ - chorion syncytiotrophoblast (embryonic human) - EHDAA2:0001973 + chorion syncytiotrophoblast (embryonic human) @@ -20105,8 +18670,7 @@ - post-anal tail bud (embryonic human) - EHDAA2:0001976 + post-anal tail bud (embryonic human) @@ -20125,8 +18689,7 @@ - tarsus cartilage element (embryonic human) - EHDAA2:0001977 + tarsus cartilage element (embryonic human) @@ -20145,8 +18708,7 @@ - tarsus pre-cartilage condensation (embryonic human) - EHDAA2:0001978 + tarsus pre-cartilage condensation (embryonic human) @@ -20165,8 +18727,7 @@ - telencephalic part of interventricular foramen (embryonic human) - EHDAA2:0001980 + telencephalic part of interventricular foramen (embryonic human) @@ -20185,8 +18746,7 @@ - early telencephalic vesicle (embryonic human) - EHDAA2:0001981 + early telencephalic vesicle (embryonic human) @@ -20205,8 +18765,7 @@ - telencephalon (embryonic human) - EHDAA2:0001982 + telencephalon (embryonic human) @@ -20225,8 +18784,7 @@ - floor plate of telencephalon (embryonic human) - EHDAA2:0001983 + floor plate of telencephalon (embryonic human) @@ -20245,8 +18803,7 @@ - telencephalic ventricle (embryonic human) - EHDAA2:0001984 + telencephalic ventricle (embryonic human) @@ -20265,8 +18822,7 @@ - telencephalon lateral wall (embryonic human) - EHDAA2:0001985 + telencephalon lateral wall (embryonic human) @@ -20285,8 +18841,7 @@ - meninx of telencephalon (embryonic human) - EHDAA2:0001990 + meninx of telencephalon (embryonic human) @@ -20305,8 +18860,7 @@ - telencephalon pia mater (embryonic human) - EHDAA2:0001992 + telencephalon pia mater (embryonic human) @@ -20325,8 +18879,7 @@ - roof plate of telencephalon (embryonic human) - EHDAA2:0001994 + roof plate of telencephalon (embryonic human) @@ -20345,30 +18898,7 @@ - temporalis muscle (embryonic human) - EHDAA2:0002001 - - - - - - - - - - - - - - - - - - - - tensor tympani (embryonic human) - tensor tympani pre-muscle condensation (embryonic human) - EHDAA2:0002002 + temporalis muscle (embryonic human) @@ -20387,8 +18917,7 @@ - tentorial sinus (embryonic human) - EHDAA2:0002003 + tentorial sinus (embryonic human) @@ -20407,8 +18936,7 @@ - teres major muscle (embryonic human) - EHDAA2:0002004 + teres major muscle (embryonic human) @@ -20427,8 +18955,7 @@ - teres major pre-muscle mass (embryonic human) - EHDAA2:0002005 + teres major pre-muscle mass (embryonic human) @@ -20447,8 +18974,7 @@ - testis (embryonic human) - EHDAA2:0002007 + testis (embryonic human) @@ -20467,8 +18993,7 @@ - mesenchyme of testis (embryonic human) - EHDAA2:0002010 + mesenchyme of testis (embryonic human) @@ -20487,8 +19012,7 @@ - testis sex cord (embryonic human) - EHDAA2:0002011 + testis sex cord (embryonic human) @@ -20507,8 +19031,7 @@ - thoracic skeleton (embryonic human) - EHDAA2:0002013 + thoracic skeleton (embryonic human) @@ -20527,8 +19050,7 @@ - thoracic vertebra cartilage element (embryonic human) - EHDAA2:0002014 + thoracic vertebra cartilage element (embryonic human) @@ -20547,8 +19069,7 @@ - thymus (embryonic human) - EHDAA2:0002017 + thymus (embryonic human) @@ -20567,8 +19088,7 @@ - thymus epithelium (embryonic human) - EHDAA2:0002019 + thymus epithelium (embryonic human) @@ -20587,8 +19107,7 @@ - thymus primordium (embryonic human) - EHDAA2:0002023 + thymus primordium (embryonic human) @@ -20607,8 +19126,7 @@ - thyroid gland (embryonic human) - EHDAA2:0002028 + thyroid gland (embryonic human) @@ -20627,8 +19145,7 @@ - thyroid artery (embryonic human) - EHDAA2:0002029 + thyroid artery (embryonic human) @@ -20647,8 +19164,7 @@ - thyroid cartilage (embryonic human) - EHDAA2:0002030 + thyroid cartilage (embryonic human) @@ -20667,8 +19183,7 @@ - isthmus of thyroid gland (embryonic human) - EHDAA2:0002031 + isthmus of thyroid gland (embryonic human) @@ -20687,8 +19202,7 @@ - lobe of thyroid gland (embryonic human) - EHDAA2:0002032 + lobe of thyroid gland (embryonic human) @@ -20707,8 +19221,7 @@ - thyroid primordium (embryonic human) - EHDAA2:0002033 + thyroid primordium (embryonic human) @@ -20727,8 +19240,7 @@ - tibia pre-cartilage condensation (embryonic human) - EHDAA2:0002036 + tibia pre-cartilage condensation (embryonic human) @@ -20747,8 +19259,7 @@ - pedal digit 1 (embryonic human) - EHDAA2:0002037 + pedal digit 1 (embryonic human) @@ -20767,8 +19278,7 @@ - pedal digit 1 epithelium (embryonic human) - EHDAA2:0002038 + pedal digit 1 epithelium (embryonic human) @@ -20787,8 +19297,7 @@ - pedal digit 1 mesenchyme (embryonic human) - EHDAA2:0002039 + pedal digit 1 mesenchyme (embryonic human) @@ -20807,8 +19316,7 @@ - pedal digit 1 metatarsal pre-cartilage condensation (embryonic human) - EHDAA2:0002040 + pedal digit 1 metatarsal pre-cartilage condensation (embryonic human) @@ -20827,8 +19335,7 @@ - pedal digit 1 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0002041 + pedal digit 1 phalanx pre-cartilage condensation (embryonic human) @@ -20847,8 +19354,7 @@ - pedal digit 2 (embryonic human) - EHDAA2:0002042 + pedal digit 2 (embryonic human) @@ -20867,8 +19373,7 @@ - pedal digit 2 epithelium (embryonic human) - EHDAA2:0002043 + pedal digit 2 epithelium (embryonic human) @@ -20887,8 +19392,7 @@ - pedal digit 2 mesenchyme (embryonic human) - EHDAA2:0002044 + pedal digit 2 mesenchyme (embryonic human) @@ -20907,8 +19411,7 @@ - pedal digit 2 metatarsal pre-cartilage condensation (embryonic human) - EHDAA2:0002045 + pedal digit 2 metatarsal pre-cartilage condensation (embryonic human) @@ -20927,8 +19430,7 @@ - pedal digit 2 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0002046 + pedal digit 2 phalanx pre-cartilage condensation (embryonic human) @@ -20947,8 +19449,7 @@ - pedal digit 3 (embryonic human) - EHDAA2:0002047 + pedal digit 3 (embryonic human) @@ -20967,8 +19468,7 @@ - pedal digit 3 epithelium (embryonic human) - EHDAA2:0002048 + pedal digit 3 epithelium (embryonic human) @@ -20987,8 +19487,7 @@ - pedal digit 3 mesenchyme (embryonic human) - EHDAA2:0002049 + pedal digit 3 mesenchyme (embryonic human) @@ -21007,8 +19506,7 @@ - pedal digit 3 metatarsal pre-cartilage condensation (embryonic human) - EHDAA2:0002050 + pedal digit 3 metatarsal pre-cartilage condensation (embryonic human) @@ -21027,8 +19525,7 @@ - pedal digit 3 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0002051 + pedal digit 3 phalanx pre-cartilage condensation (embryonic human) @@ -21047,8 +19544,7 @@ - pedal digit 4 (embryonic human) - EHDAA2:0002052 + pedal digit 4 (embryonic human) @@ -21067,8 +19563,7 @@ - pedal digit 4 epithelium (embryonic human) - EHDAA2:0002053 + pedal digit 4 epithelium (embryonic human) @@ -21087,8 +19582,7 @@ - pedal digit 4 mesenchyme (embryonic human) - EHDAA2:0002054 + pedal digit 4 mesenchyme (embryonic human) @@ -21107,8 +19601,7 @@ - pedal digit 4 metatarsal pre-cartilage condensation (embryonic human) - EHDAA2:0002055 + pedal digit 4 metatarsal pre-cartilage condensation (embryonic human) @@ -21127,8 +19620,7 @@ - pedal digit 4 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0002056 + pedal digit 4 phalanx pre-cartilage condensation (embryonic human) @@ -21147,8 +19639,7 @@ - pedal digit 5 (embryonic human) - EHDAA2:0002057 + pedal digit 5 (embryonic human) @@ -21167,8 +19658,7 @@ - pedal digit 5 epithelium (embryonic human) - EHDAA2:0002058 + pedal digit 5 epithelium (embryonic human) @@ -21187,8 +19677,7 @@ - pedal digit 5 mesenchyme (embryonic human) - EHDAA2:0002059 + pedal digit 5 mesenchyme (embryonic human) @@ -21207,8 +19696,7 @@ - pedal digit 5 metatarsal pre-cartilage condensation (embryonic human) - EHDAA2:0002060 + pedal digit 5 metatarsal pre-cartilage condensation (embryonic human) @@ -21227,8 +19715,7 @@ - pedal digit 5 phalanx pre-cartilage condensation (embryonic human) - EHDAA2:0002061 + pedal digit 5 phalanx pre-cartilage condensation (embryonic human) @@ -21247,8 +19734,7 @@ - tongue (embryonic human) - EHDAA2:0002062 + tongue (embryonic human) @@ -21267,8 +19753,7 @@ - extrinsic muscle of tongue (embryonic human) - EHDAA2:0002063 + extrinsic muscle of tongue (embryonic human) @@ -21287,8 +19772,7 @@ - intrinsic muscle of tongue (embryonic human) - EHDAA2:0002064 + intrinsic muscle of tongue (embryonic human) @@ -21307,8 +19791,7 @@ - tongue muscle (embryonic human) - EHDAA2:0002065 + tongue muscle (embryonic human) @@ -21327,8 +19810,7 @@ - trachea (embryonic human) - EHDAA2:0002066 + trachea (embryonic human) @@ -21347,8 +19829,7 @@ - mesenchyme of trachea (embryonic human) - EHDAA2:0002067 + mesenchyme of trachea (embryonic human) @@ -21367,8 +19848,7 @@ - epithelium of trachea (embryonic human) - EHDAA2:0002069 + epithelium of trachea (embryonic human) @@ -21387,8 +19867,7 @@ - trachea pre-cartilage rings (embryonic human) - EHDAA2:0002070 + trachea pre-cartilage rings (embryonic human) @@ -21407,8 +19886,7 @@ - transversospinales muscle (embryonic human) - EHDAA2:0002075 + transversospinales muscle (embryonic human) @@ -21427,8 +19905,7 @@ - transverospinalis pre-muscle mass (embryonic human) - EHDAA2:0002076 + transverospinalis pre-muscle mass (embryonic human) @@ -21447,8 +19924,7 @@ - transverse pericardial sinus (embryonic human) - EHDAA2:0002077 + transverse pericardial sinus (embryonic human) @@ -21467,8 +19943,7 @@ - transversus abdominis muscle (embryonic human) - EHDAA2:0002078 + transversus abdominis muscle (embryonic human) @@ -21487,8 +19962,7 @@ - trapezius pre-muscle mass (embryonic human) - EHDAA2:0002079 + trapezius pre-muscle mass (embryonic human) @@ -21507,8 +19981,7 @@ - triceps brachii (embryonic human) - EHDAA2:0002080 + triceps brachii (embryonic human) @@ -21527,8 +20000,7 @@ - trigeminal neural crest (embryonic human) - EHDAA2:0002083 + trigeminal neural crest (embryonic human) @@ -21547,8 +20019,7 @@ - trigeminal nerve (embryonic human) - EHDAA2:0002084 + trigeminal nerve (embryonic human) @@ -21567,8 +20038,7 @@ - trigeminal ganglion (embryonic human) - EHDAA2:0002085 + trigeminal ganglion (embryonic human) @@ -21587,8 +20057,7 @@ - mandibular nerve (embryonic human) - EHDAA2:0002086 + mandibular nerve (embryonic human) @@ -21607,8 +20076,7 @@ - maxillary nerve (embryonic human) - EHDAA2:0002087 + maxillary nerve (embryonic human) @@ -21627,8 +20095,7 @@ - ophthalmic nerve (embryonic human) - EHDAA2:0002088 + ophthalmic nerve (embryonic human) @@ -21647,8 +20114,7 @@ - trochlear nerve (embryonic human) - EHDAA2:0002090 + trochlear nerve (embryonic human) @@ -21667,8 +20133,7 @@ - trophectoderm (embryonic human) - EHDAA2:0002091 + trophectoderm (embryonic human) @@ -21687,8 +20152,7 @@ - trunk mesenchyme (embryonic human) - EHDAA2:0002092 + trunk mesenchyme (embryonic human) @@ -21707,8 +20171,7 @@ - mesenchyme derived from trunk neural crest (embryonic human) - EHDAA2:0002093 + mesenchyme derived from trunk neural crest (embryonic human) @@ -21727,8 +20190,7 @@ - trunk paraxial mesoderm (embryonic human) - EHDAA2:0002094 + trunk paraxial mesoderm (embryonic human) @@ -21747,8 +20209,7 @@ - tubotympanic recess lumen (embryonic human) - EHDAA2:0002095 + tubotympanic recess lumen (embryonic human) @@ -21767,8 +20228,7 @@ - tunica albuginea of testis (embryonic human) - EHDAA2:0002096 + tunica albuginea of testis (embryonic human) @@ -21787,8 +20247,7 @@ - tunica vasculosa lentis (embryonic human) - EHDAA2:0002097 + tunica vasculosa lentis (embryonic human) @@ -21807,8 +20266,7 @@ - ulna cartilage element (embryonic human) - EHDAA2:0002098 + ulna cartilage element (embryonic human) @@ -21827,8 +20285,7 @@ - ulnar nerve (embryonic human) - EHDAA2:0002099 + ulnar nerve (embryonic human) @@ -21847,8 +20304,7 @@ - ulna pre-cartilage condensation (embryonic human) - EHDAA2:0002100 + ulna pre-cartilage condensation (embryonic human) @@ -21867,8 +20323,7 @@ - ultimobranchial body (embryonic human) - EHDAA2:0002103 + ultimobranchial body (embryonic human) @@ -21887,8 +20342,7 @@ - ultimobranchial body epithelium (embryonic human) - EHDAA2:0002105 + ultimobranchial body epithelium (embryonic human) @@ -21907,8 +20361,7 @@ - forelimb stylopod (embryonic human) - EHDAA2:0002112 + forelimb stylopod (embryonic human) @@ -21927,8 +20380,7 @@ - upper arm epithelium (embryonic human) - EHDAA2:0002113 + upper arm epithelium (embryonic human) @@ -21947,8 +20399,7 @@ - upper arm mesenchyme (embryonic human) - EHDAA2:0002114 + upper arm mesenchyme (embryonic human) @@ -21967,8 +20418,7 @@ - upper eyelid (embryonic human) - EHDAA2:0002115 + upper eyelid (embryonic human) @@ -21987,8 +20437,7 @@ - upper eyelid epithelium (embryonic human) - EHDAA2:0002116 + upper eyelid epithelium (embryonic human) @@ -22007,8 +20456,7 @@ - upper eyelid mesenchyme (embryonic human) - EHDAA2:0002117 + upper eyelid mesenchyme (embryonic human) @@ -22027,8 +20475,7 @@ - upper jaw region (embryonic human) - EHDAA2:0002118 + upper jaw region (embryonic human) @@ -22047,8 +20494,7 @@ - epithelium of upper jaw (embryonic human) - EHDAA2:0002119 + epithelium of upper jaw (embryonic human) @@ -22067,8 +20513,7 @@ - future upper lip (embryonic human) - EHDAA2:0002120 + future upper lip (embryonic human) @@ -22087,8 +20532,7 @@ - upper jaw incisor (embryonic human) - EHDAA2:0002121 + upper jaw incisor (embryonic human) @@ -22107,8 +20551,7 @@ - upper jaw incisor epithelium (embryonic human) - EHDAA2:0002122 + upper jaw incisor epithelium (embryonic human) @@ -22127,8 +20570,7 @@ - upper jaw incisor odontogenic papilla (embryonic human) - EHDAA2:0002123 + upper jaw incisor odontogenic papilla (embryonic human) @@ -22147,8 +20589,7 @@ - mesenchyme of upper jaw (embryonic human) - EHDAA2:0002124 + mesenchyme of upper jaw (embryonic human) @@ -22167,8 +20608,7 @@ - upper jaw molar (embryonic human) - EHDAA2:0002125 + upper jaw molar (embryonic human) @@ -22187,8 +20627,7 @@ - upper jaw molar epithelium (embryonic human) - EHDAA2:0002126 + upper jaw molar epithelium (embryonic human) @@ -22207,8 +20646,7 @@ - upper jaw molar odontogenic papilla (embryonic human) - EHDAA2:0002127 + upper jaw molar odontogenic papilla (embryonic human) @@ -22227,8 +20665,7 @@ - skeleton of upper jaw (embryonic human) - EHDAA2:0002128 + skeleton of upper jaw (embryonic human) @@ -22247,8 +20684,7 @@ - set of upper jaw teeth (embryonic human) - EHDAA2:0002129 + set of upper jaw teeth (embryonic human) @@ -22267,8 +20703,7 @@ - hindlimb stylopod (embryonic human) - EHDAA2:0002130 + hindlimb stylopod (embryonic human) @@ -22287,8 +20722,7 @@ - upper leg epithelium (embryonic human) - EHDAA2:0002131 + upper leg epithelium (embryonic human) @@ -22307,8 +20741,7 @@ - upper leg mesenchyme (embryonic human) - EHDAA2:0002132 + upper leg mesenchyme (embryonic human) @@ -22327,8 +20760,7 @@ - forelimb (embryonic human) - EHDAA2:0002133 + forelimb (embryonic human) @@ -22347,8 +20779,7 @@ - pectoral appendage bud ectoderm (embryonic human) - EHDAA2:0002134 + pectoral appendage bud ectoderm (embryonic human) @@ -22367,8 +20798,7 @@ - pectoral appendage bud mesenchyme (embryonic human) - EHDAA2:0002135 + pectoral appendage bud mesenchyme (embryonic human) @@ -22387,8 +20817,7 @@ - upper respiratory tract (embryonic human) - EHDAA2:0002136 + upper respiratory tract (embryonic human) @@ -22407,8 +20836,7 @@ - urachus (embryonic human) - EHDAA2:0002137 + urachus (embryonic human) @@ -22427,8 +20855,7 @@ - ureter (embryonic human) - EHDAA2:0002139 + ureter (embryonic human) @@ -22447,8 +20874,7 @@ - ureteric bud (embryonic human) - EHDAA2:0002140 + ureteric bud (embryonic human) @@ -22467,8 +20893,7 @@ - urogenital sinus lumen (embryonic human) - EHDAA2:0002142 + urogenital sinus lumen (embryonic human) @@ -22487,8 +20912,7 @@ - urorectal septum (embryonic human) - EHDAA2:0002152 + urorectal septum (embryonic human) @@ -22507,8 +20931,7 @@ - utricle of membranous labyrinth (embryonic human) - EHDAA2:0002153 + utricle of membranous labyrinth (embryonic human) @@ -22527,8 +20950,7 @@ - vagal neural crest (embryonic human) - EHDAA2:0002156 + vagal neural crest (embryonic human) @@ -22547,8 +20969,7 @@ - vagus X nerve trunk (embryonic human) - EHDAA2:0002160 + vagus X nerve trunk (embryonic human) @@ -22567,8 +20988,7 @@ - valve of inferior vena cava (embryonic human) - EHDAA2:0002166 + valve of inferior vena cava (embryonic human) @@ -22587,8 +21007,7 @@ - vault of skull (embryonic human) - EHDAA2:0002167 + vault of skull (embryonic human) @@ -22607,8 +21026,7 @@ - venous dural sinus (embryonic human) - EHDAA2:0002169 + venous dural sinus (embryonic human) @@ -22627,8 +21045,7 @@ - venous system (embryonic human) - EHDAA2:0002171 + venous system (embryonic human) @@ -22647,8 +21064,7 @@ - ventral part of pharyngeal pouch 3 (embryonic human) - EHDAA2:0002173 + ventral part of pharyngeal pouch 3 (embryonic human) @@ -22667,8 +21083,7 @@ - ventral mesogastrium (embryonic human) - EHDAA2:0002176 + ventral mesogastrium (embryonic human) @@ -22687,8 +21102,7 @@ - heart left ventricle (embryonic human) - EHDAA2:0002178 + heart left ventricle (embryonic human) @@ -22707,8 +21121,7 @@ - endocardium of left ventricle (embryonic human) - EHDAA2:0002182 + endocardium of left ventricle (embryonic human) @@ -22727,8 +21140,7 @@ - endocardium of right ventricle (embryonic human) - EHDAA2:0002188 + endocardium of right ventricle (embryonic human) @@ -22747,8 +21159,7 @@ - vertebral artery (embryonic human) - EHDAA2:0002192 + vertebral artery (embryonic human) @@ -22767,8 +21178,7 @@ - vestibulocochlear nerve (embryonic human) - EHDAA2:0002194 + vestibulocochlear nerve (embryonic human) @@ -22787,8 +21197,7 @@ - cochlear nerve (embryonic human) - EHDAA2:0002195 + cochlear nerve (embryonic human) @@ -22807,8 +21216,7 @@ - vestibulocochlear ganglion (embryonic human) - EHDAA2:0002196 + vestibulocochlear ganglion (embryonic human) @@ -22827,8 +21235,7 @@ - cochlear ganglion (embryonic human) - EHDAA2:0002198 + cochlear ganglion (embryonic human) @@ -22847,8 +21254,7 @@ - vestibular nerve (embryonic human) - EHDAA2:0002200 + vestibular nerve (embryonic human) @@ -22867,8 +21273,7 @@ - epicardium (embryonic human) - EHDAA2:0002202 + epicardium (embryonic human) @@ -22887,8 +21292,7 @@ - visceral pleura (embryonic human) - EHDAA2:0002205 + visceral pleura (embryonic human) @@ -22907,8 +21311,7 @@ - facial skeleton (embryonic human) - EHDAA2:0002206 + facial skeleton (embryonic human) @@ -22927,8 +21330,7 @@ - vitelline artery (embryonic human) - EHDAA2:0002208 + vitelline artery (embryonic human) @@ -22947,8 +21349,7 @@ - vitelline venous plexus (embryonic human) - EHDAA2:0002210 + vitelline venous plexus (embryonic human) @@ -22967,8 +21368,7 @@ - vomeronasal organ (embryonic human) - EHDAA2:0002211 + vomeronasal organ (embryonic human) @@ -22987,8 +21387,7 @@ - yolk sac (embryonic human) - EHDAA2:0002212 + yolk sac (embryonic human) @@ -23007,8 +21406,7 @@ - yolk sac endoderm (embryonic human) - EHDAA2:0002215 + yolk sac endoderm (embryonic human) @@ -23027,8 +21425,7 @@ - mesenchyme of yolk sac (embryonic human) - EHDAA2:0002216 + mesenchyme of yolk sac (embryonic human) @@ -23047,8 +21444,7 @@ - zona pellucida (embryonic human) - EHDAA2:0002220 + zona pellucida (embryonic human) @@ -23067,8 +21463,7 @@ - skeleton of limb (embryonic human) - EHDAA2:0002221 + skeleton of limb (embryonic human) @@ -23087,8 +21482,7 @@ - forelimb skeleton (embryonic human) - EHDAA2:0002222 + forelimb skeleton (embryonic human) @@ -23107,8 +21501,7 @@ - glandular system (embryonic human) - EHDAA2:0002223 + glandular system (embryonic human) @@ -23127,8 +21520,7 @@ - endocrine system (embryonic human) - EHDAA2:0002224 + endocrine system (embryonic human) @@ -23147,8 +21539,7 @@ - exocrine system (embryonic human) - EHDAA2:0002225 + exocrine system (embryonic human) @@ -23167,8 +21558,7 @@ - hindlimb skeleton (embryonic human) - EHDAA2:0002226 + hindlimb skeleton (embryonic human) @@ -23187,8 +21577,7 @@ - skeleton of manus (embryonic human) - EHDAA2:0002227 + skeleton of manus (embryonic human) @@ -23207,8 +21596,7 @@ - skeleton of pes (embryonic human) - EHDAA2:0002228 + skeleton of pes (embryonic human) @@ -23227,8 +21615,7 @@ - anatomical entity (embryonic human) - EHDAA2:0002229 + anatomical entity (embryonic human) @@ -23247,8 +21634,7 @@ - anatomical structure (embryonic human) - EHDAA2:0003003 + anatomical structure (embryonic human) @@ -23267,8 +21653,7 @@ - organism substance (embryonic human) - EHDAA2:0003004 + organism substance (embryonic human) @@ -23287,8 +21672,7 @@ - anatomical space (embryonic human) - EHDAA2:0003005 + anatomical space (embryonic human) @@ -23307,8 +21691,7 @@ - material anatomical entity (embryonic human) - EHDAA2:0003006 + material anatomical entity (embryonic human) @@ -23327,8 +21710,7 @@ - immaterial anatomical entity (embryonic human) - EHDAA2:0003007 + immaterial anatomical entity (embryonic human) @@ -23347,8 +21729,7 @@ - anatomical line (embryonic human) - EHDAA2:0003008 + anatomical line (embryonic human) @@ -23367,8 +21748,7 @@ - anatomical point (embryonic human) - EHDAA2:0003009 + anatomical point (embryonic human) @@ -23387,8 +21767,7 @@ - anatomical system (embryonic human) - EHDAA2:0003011 + anatomical system (embryonic human) @@ -23407,8 +21786,7 @@ - compound organ component (embryonic human) - EHDAA2:0003019 + compound organ component (embryonic human) @@ -23427,8 +21805,7 @@ - compound organ (embryonic human) - EHDAA2:0003024 + compound organ (embryonic human) @@ -23447,8 +21824,7 @@ - organism subdivision (embryonic human) - EHDAA2:0003032 + organism subdivision (embryonic human) @@ -23467,8 +21843,7 @@ - acellular anatomical structure (embryonic human) - EHDAA2:0003040 + acellular anatomical structure (embryonic human) @@ -23487,8 +21862,7 @@ - extraembryonic structure (embryonic human) - EHDAA2:0003042 + extraembryonic structure (embryonic human) @@ -23507,8 +21881,7 @@ - tissue (embryonic human) - EHDAA2:0003043 + tissue (embryonic human) @@ -23527,8 +21900,7 @@ - anatomical group (embryonic human) - EHDAA2:0003054 + anatomical group (embryonic human) @@ -23547,8 +21919,7 @@ - multi-tissue structure (embryonic human) - EHDAA2:0003055 + multi-tissue structure (embryonic human) @@ -23567,8 +21938,7 @@ - basal lamina of epithelium (embryonic human) - EHDAA2:0003065 + basal lamina of epithelium (embryonic human) @@ -23587,8 +21957,7 @@ - epithelium (embryonic human) - EHDAA2:0003066 + epithelium (embryonic human) @@ -23607,8 +21976,7 @@ - simple cuboidal epithelium (embryonic human) - EHDAA2:0003067 + simple cuboidal epithelium (embryonic human) @@ -23627,8 +21995,7 @@ - multilaminar epithelium (embryonic human) - EHDAA2:0003069 + multilaminar epithelium (embryonic human) @@ -23647,8 +22014,7 @@ - simple squamous epithelium (embryonic human) - EHDAA2:0003070 + simple squamous epithelium (embryonic human) @@ -23667,8 +22033,7 @@ - atypical epithelium (embryonic human) - EHDAA2:0003071 + atypical epithelium (embryonic human) @@ -23687,8 +22052,7 @@ - cavitated compound organ (embryonic human) - EHDAA2:0003072 + cavitated compound organ (embryonic human) @@ -23707,8 +22071,7 @@ - unilaminar epithelium (embryonic human) - EHDAA2:0003073 + unilaminar epithelium (embryonic human) @@ -23727,8 +22090,7 @@ - solid compound organ (embryonic human) - EHDAA2:0003074 + solid compound organ (embryonic human) @@ -23747,8 +22109,7 @@ - anatomical conduit (embryonic human) - EHDAA2:0003080 + anatomical conduit (embryonic human) @@ -23767,8 +22128,7 @@ - matrix-based tissue (embryonic human) - EHDAA2:0003081 + matrix-based tissue (embryonic human) @@ -23787,8 +22147,7 @@ - bone element (embryonic human) - EHDAA2:0003082 + bone element (embryonic human) @@ -23807,8 +22166,7 @@ - endochondral bone (embryonic human) - EHDAA2:0003083 + endochondral bone (embryonic human) @@ -23827,8 +22185,7 @@ - membrane bone (embryonic human) - EHDAA2:0003085 + membrane bone (embryonic human) @@ -23847,8 +22204,7 @@ - sesamoid bone (embryonic human) - EHDAA2:0003086 + sesamoid bone (embryonic human) @@ -23867,8 +22223,7 @@ - cartilage tissue (embryonic human) - EHDAA2:0003087 + cartilage tissue (embryonic human) @@ -23887,8 +22242,7 @@ - tendon (embryonic human) - EHDAA2:0003091 + tendon (embryonic human) @@ -23907,8 +22261,7 @@ - aponeurosis (embryonic human) - EHDAA2:0003092 + aponeurosis (embryonic human) @@ -23927,8 +22280,7 @@ - sensory system (embryonic human) - EHDAA2:0003094 + sensory system (embryonic human) @@ -23947,8 +22299,7 @@ - fluid-based anatomical entity (embryonic human) - EHDAA2:0003095 + fluid-based anatomical entity (embryonic human) @@ -23967,8 +22318,7 @@ - gland (embryonic human) - EHDAA2:0003096 + gland (embryonic human) @@ -23987,8 +22337,7 @@ - exocrine gland (embryonic human) - EHDAA2:0003097 + exocrine gland (embryonic human) @@ -24007,8 +22356,7 @@ - endocrine gland (embryonic human) - EHDAA2:0003098 + endocrine gland (embryonic human) @@ -24027,8 +22375,7 @@ - keratin-based acellular structure (embryonic human) - EHDAA2:0003099 + keratin-based acellular structure (embryonic human) @@ -24047,8 +22394,7 @@ - chitin-based acellular structure (embryonic human) - EHDAA2:0003100 + chitin-based acellular structure (embryonic human) @@ -24067,8 +22413,7 @@ - multicellular organism (embryonic human) - EHDAA2:0003103 + multicellular organism (embryonic human) @@ -24087,8 +22432,7 @@ - head (embryonic human) - EHDAA2:0003106 + head (embryonic human) @@ -24107,8 +22451,7 @@ - neck (embryonic human) - EHDAA2:0003108 + neck (embryonic human) @@ -24127,8 +22470,7 @@ - epithelial tube (embryonic human) - EHDAA2:0003114 + epithelial tube (embryonic human) @@ -24147,8 +22489,7 @@ - epithelial sac (embryonic human) - EHDAA2:0003115 + epithelial sac (embryonic human) @@ -24167,8 +22508,7 @@ - arborizing epithelial duct system (embryonic human) - EHDAA2:0003117 + arborizing epithelial duct system (embryonic human) @@ -24187,8 +22527,7 @@ - epithelial plexus (embryonic human) - EHDAA2:0003118 + epithelial plexus (embryonic human) @@ -24207,8 +22546,7 @@ - epithelial vesicle (embryonic human) - EHDAA2:0003119 + epithelial vesicle (embryonic human) @@ -24227,8 +22565,7 @@ - adipose tissue (embryonic human) - EHDAA2:0003120 + adipose tissue (embryonic human) @@ -24247,8 +22584,7 @@ - muscle tissue (embryonic human) - EHDAA2:0003122 + muscle tissue (embryonic human) @@ -24267,8 +22603,7 @@ - neural tissue (embryonic human) - EHDAA2:0003123 + neural tissue (embryonic human) @@ -24287,8 +22622,7 @@ - developing anatomical structure (embryonic human) - EHDAA2:0003125 + developing anatomical structure (embryonic human) @@ -24307,8 +22641,7 @@ - ganglion (embryonic human) - EHDAA2:0003135 + ganglion (embryonic human) @@ -24327,8 +22660,7 @@ - gray matter (embryonic human) - EHDAA2:0003136 + gray matter (embryonic human) @@ -24347,8 +22679,7 @@ - nerve (embryonic human) - EHDAA2:0003137 + nerve (embryonic human) @@ -24367,8 +22698,7 @@ - nerve plexus (embryonic human) - EHDAA2:0003138 + nerve plexus (embryonic human) @@ -24387,8 +22717,7 @@ - striated muscle tissue (embryonic human) - EHDAA2:0003140 + striated muscle tissue (embryonic human) @@ -24407,8 +22736,7 @@ - smooth muscle tissue (embryonic human) - EHDAA2:0003141 + smooth muscle tissue (embryonic human) @@ -24427,8 +22755,7 @@ - cardiac muscle tissue (embryonic human) - EHDAA2:0003142 + cardiac muscle tissue (embryonic human) @@ -24447,8 +22774,7 @@ - smooth muscle sphincter (embryonic human) - EHDAA2:0003143 + smooth muscle sphincter (embryonic human) @@ -24467,8 +22793,7 @@ - striated muscle sphincter (embryonic human) - EHDAA2:0003144 + striated muscle sphincter (embryonic human) @@ -24487,8 +22812,7 @@ - mesenchyme (embryonic human) - EHDAA2:0003145 + mesenchyme (embryonic human) @@ -24507,8 +22831,7 @@ - dense mesenchyme tissue (embryonic human) - EHDAA2:0003146 + dense mesenchyme tissue (embryonic human) @@ -24527,8 +22850,7 @@ - pre-cartilage condensation (embryonic human) - EHDAA2:0003150 + pre-cartilage condensation (embryonic human) @@ -24547,8 +22869,7 @@ - loose mesenchyme tissue (embryonic human) - EHDAA2:0003151 + loose mesenchyme tissue (embryonic human) @@ -24567,8 +22888,7 @@ - migrating mesenchyme population (embryonic human) - EHDAA2:0003152 + migrating mesenchyme population (embryonic human) @@ -24587,8 +22907,7 @@ - skeletal system (embryonic human) - EHDAA2:0003168 + skeletal system (embryonic human) @@ -24607,8 +22926,7 @@ - anlage (embryonic human) - EHDAA2:0003170 + anlage (embryonic human) @@ -24627,8 +22945,7 @@ - primordium (embryonic human) - EHDAA2:0003171 + primordium (embryonic human) @@ -24647,8 +22964,7 @@ - limb (embryonic human) - EHDAA2:0003172 + limb (embryonic human) @@ -24667,8 +22983,7 @@ - hermaphrodite anatomical structure (embryonic human) - EHDAA2:0003177 + hermaphrodite anatomical structure (embryonic human) @@ -24687,8 +23002,7 @@ - fibrous joint (embryonic human) - EHDAA2:0003178 + fibrous joint (embryonic human) @@ -24707,8 +23021,7 @@ - synovial joint (embryonic human) - EHDAA2:0003183 + synovial joint (embryonic human) @@ -24727,8 +23040,7 @@ - simple organ (embryonic human) - EHDAA2:0003190 + simple organ (embryonic human) @@ -24747,8 +23059,7 @@ - multicellular organism (embryonic human) - EHDAA2:0003191 + multicellular organism (embryonic human) @@ -24767,8 +23078,7 @@ - appendage (embryonic human) - EHDAA2:0003193 + appendage (embryonic human) @@ -24787,8 +23097,7 @@ - pelvic appendage apical ectodermal ridge (embryonic human) - EHDAA2:0003194 + pelvic appendage apical ectodermal ridge (embryonic human) @@ -24807,8 +23116,7 @@ - sensory nerve (embryonic human) - EHDAA2:0003200 + sensory nerve (embryonic human) @@ -24827,8 +23135,7 @@ - efferent nerve (embryonic human) - EHDAA2:0003231 + efferent nerve (embryonic human) @@ -24847,8 +23154,7 @@ - skeletal ligament (embryonic human) - EHDAA2:0003232 + skeletal ligament (embryonic human) @@ -24867,8 +23173,7 @@ - regenerating anatomical structure (embryonic human) - EHDAA2:0003233 + regenerating anatomical structure (embryonic human) @@ -24887,8 +23192,7 @@ - conceptus (embryonic human) - EHDAA2:0003235 + conceptus (embryonic human) @@ -24907,8 +23211,7 @@ - parietal yolk sac (embryonic human) - EHDAA2:0003237 + parietal yolk sac (embryonic human) @@ -24927,8 +23230,7 @@ - tail bud paraxial mesoderm (embryonic human) - EHDAA2:0003239 + tail bud paraxial mesoderm (embryonic human) @@ -24947,8 +23249,7 @@ - mesoderm blood island (embryonic human) - EHDAA2:0003241 + mesoderm blood island (embryonic human) @@ -24967,8 +23268,7 @@ - connecting stalk blood islands (embryonic human) - EHDAA2:0003242 + connecting stalk blood islands (embryonic human) @@ -24987,8 +23287,7 @@ - chorionic mesenchyme (embryonic human) - EHDAA2:0003245 + chorionic mesenchyme (embryonic human) @@ -25007,8 +23306,7 @@ - protuberance (embryonic human) - EHDAA2:0003250 + protuberance (embryonic human) @@ -25027,8 +23325,7 @@ - migrating epithelium (embryonic human) - EHDAA2:0003251 + migrating epithelium (embryonic human) @@ -25047,8 +23344,7 @@ - blood vessel (embryonic human) - EHDAA2:0003252 + blood vessel (embryonic human) @@ -25067,8 +23363,7 @@ - artery (embryonic human) - EHDAA2:0003253 + artery (embryonic human) @@ -25087,8 +23382,7 @@ - vein (embryonic human) - EHDAA2:0003254 + vein (embryonic human) @@ -25107,8 +23401,7 @@ - dermomyotome (embryonic human) - EHDAA2:0003259 + dermomyotome (embryonic human) @@ -25127,8 +23420,7 @@ - trunk and cervical myotome group (embryonic human) - EHDAA2:0003425 + trunk and cervical myotome group (embryonic human) @@ -25147,8 +23439,7 @@ - somite (embryonic human) - EHDAA2:0003436 + somite (embryonic human) @@ -25167,8 +23458,7 @@ - head somite (embryonic human) - EHDAA2:0003437 + head somite (embryonic human) @@ -25187,8 +23477,7 @@ - trunk somite (embryonic human) - EHDAA2:0003438 + trunk somite (embryonic human) @@ -25207,8 +23496,7 @@ - sclerotome (embryonic human) - EHDAA2:0003439 + sclerotome (embryonic human) @@ -25227,8 +23515,7 @@ - sphenoid bone pre-cartilage condensation (embryonic human) - EHDAA2:0003446 + sphenoid bone pre-cartilage condensation (embryonic human) @@ -25247,8 +23534,7 @@ - basisphenoid pre-cartilage condensation (embryonic human) - EHDAA2:0003447 + basisphenoid pre-cartilage condensation (embryonic human) @@ -25267,8 +23553,7 @@ - alisphenoid pre-cartilage condensation (embryonic human) - EHDAA2:0003448 + alisphenoid pre-cartilage condensation (embryonic human) @@ -25287,8 +23572,7 @@ - sphenoid lesser wing pre-cartilage condensation (embryonic human) - EHDAA2:0003449 + sphenoid lesser wing pre-cartilage condensation (embryonic human) @@ -25307,8 +23591,7 @@ - alisphenoid cartilage element (embryonic human) - EHDAA2:0003450 + alisphenoid cartilage element (embryonic human) @@ -25327,8 +23610,7 @@ - vasculature of liver (embryonic human) - EHDAA2:0003454 + vasculature of liver (embryonic human) @@ -25347,8 +23629,7 @@ - diaphragm (embryonic human) - EHDAA2:0003495 + diaphragm (embryonic human) @@ -25367,8 +23648,7 @@ - embryonic cloacal fold (embryonic human) - EHDAA2:0004009 + embryonic cloacal fold (embryonic human) @@ -25387,8 +23667,7 @@ - anal fold (embryonic human) - EHDAA2:0004012 + anal fold (embryonic human) @@ -25407,8 +23686,7 @@ - perineum (embryonic human) - EHDAA2:0004015 + perineum (embryonic human) @@ -25427,8 +23705,7 @@ - anal membrane (embryonic human) - EHDAA2:0004018 + anal membrane (embryonic human) @@ -25447,8 +23724,7 @@ - anal membrane ectodermal component (embryonic human) - EHDAA2:0004019 + anal membrane ectodermal component (embryonic human) @@ -25467,8 +23743,7 @@ - anal membrane endodermal component (embryonic human) - EHDAA2:0004020 + anal membrane endodermal component (embryonic human) @@ -25487,8 +23762,7 @@ - indifferent external genitalia (embryonic human) - EHDAA2:0004021 + indifferent external genitalia (embryonic human) @@ -25507,8 +23781,7 @@ - urogenital fold (embryonic human) - EHDAA2:0004022 + urogenital fold (embryonic human) @@ -25527,8 +23800,7 @@ - urogenital membrane (embryonic human) - EHDAA2:0004025 + urogenital membrane (embryonic human) @@ -25547,8 +23819,7 @@ - endocardial cushion (embryonic human) - EHDAA2:0004028 + endocardial cushion (embryonic human) @@ -25567,8 +23838,7 @@ - tricuspid valve (embryonic human) - EHDAA2:0004029 + tricuspid valve (embryonic human) @@ -25587,8 +23857,7 @@ - 4th arch ectoderm (embryonic human) - EHDAA2:0004032 + 4th arch ectoderm (embryonic human) @@ -25607,8 +23876,7 @@ - 4th arch endoderm (embryonic human) - EHDAA2:0004033 + 4th arch endoderm (embryonic human) @@ -25627,8 +23895,7 @@ - penis epithelium (embryonic human) - EHDAA2:0004039 + penis epithelium (embryonic human) @@ -25647,8 +23914,7 @@ - gonadal ridge (embryonic human) - EHDAA2:0004044 + gonadal ridge (embryonic human) @@ -25667,8 +23933,7 @@ - valve (embryonic human) - EHDAA2:0004046 + valve (embryonic human) @@ -25687,30 +23952,7 @@ - Mullerian duct (embryonic human) - EHDAA2:0004048 - - - - - - - - - - - - - - - - - - - - primitive sex cord of indifferent gonad (embryonic human) - sex cord (embryonic human) - EHDAA2:0004051 + Mullerian duct (embryonic human) @@ -25729,8 +23971,7 @@ - epithelial cord (embryonic human) - EHDAA2:0004052 + epithelial cord (embryonic human) @@ -25749,8 +23990,7 @@ - bladder lumen (embryonic human) - EHDAA2:0004058 + bladder lumen (embryonic human) @@ -25769,8 +24009,7 @@ - primitive urogenital sinus (embryonic human) - EHDAA2:0004060 + primitive urogenital sinus (embryonic human) @@ -25789,8 +24028,7 @@ - urogenital sinus epithelium (embryonic human) - EHDAA2:0004061 + urogenital sinus epithelium (embryonic human) @@ -25809,8 +24047,7 @@ - metanephric mesenchyme (embryonic human) - EHDAA2:0004062 + metanephric mesenchyme (embryonic human) @@ -25829,8 +24066,7 @@ - larynx (embryonic human) - EHDAA2:0004063 + larynx (embryonic human) @@ -25849,8 +24085,7 @@ - interventricular foramen of heart (embryonic human) - EHDAA2:0004064 + interventricular foramen of heart (embryonic human) @@ -25869,8 +24104,7 @@ - larynx epithelium (embryonic human) - EHDAA2:0004065 + larynx epithelium (embryonic human) @@ -25889,8 +24123,7 @@ - respiratory primordium (embryonic human) - EHDAA2:0004069 + respiratory primordium (embryonic human) @@ -25909,8 +24142,7 @@ - respiratory primordium epithelium (embryonic human) - EHDAA2:0004070 + respiratory primordium epithelium (embryonic human) @@ -25929,8 +24161,7 @@ - respiratory primordium mesenchyme (embryonic human) - EHDAA2:0004071 + respiratory primordium mesenchyme (embryonic human) @@ -25949,8 +24180,7 @@ - hyaloid artery (embryonic human) - EHDAA2:0004072 + hyaloid artery (embryonic human) @@ -25969,8 +24199,7 @@ - laryngotracheal groove (embryonic human) - EHDAA2:0004073 + laryngotracheal groove (embryonic human) @@ -25989,8 +24218,7 @@ - pharyngeal arch 6 (embryonic human) - EHDAA2:0004075 + pharyngeal arch 6 (embryonic human) @@ -26009,8 +24237,7 @@ - 6th arch mesenchyme (embryonic human) - EHDAA2:0004076 + 6th arch mesenchyme (embryonic human) @@ -26029,8 +24256,7 @@ - 6th arch mesenchyme from neural crest (embryonic human) - EHDAA2:0004077 + 6th arch mesenchyme from neural crest (embryonic human) @@ -26049,8 +24275,7 @@ - 6th arch mesenchyme from head mesenchyme (embryonic human) - EHDAA2:0004078 + 6th arch mesenchyme from head mesenchyme (embryonic human) @@ -26069,8 +24294,7 @@ - epiglottis (embryonic human) - EHDAA2:0004081 + epiglottis (embryonic human) @@ -26089,8 +24313,7 @@ - oropharynx (embryonic human) - EHDAA2:0004082 + oropharynx (embryonic human) @@ -26109,8 +24332,7 @@ - epithelium of oropharynx (embryonic human) - EHDAA2:0004083 + epithelium of oropharynx (embryonic human) @@ -26129,8 +24351,7 @@ - laryngeal associated mesenchyme (embryonic human) - EHDAA2:0004085 + laryngeal associated mesenchyme (embryonic human) @@ -26149,8 +24370,7 @@ - thyroid pre-cartilage condensation (embryonic human) - EHDAA2:0004088 + thyroid pre-cartilage condensation (embryonic human) @@ -26169,8 +24389,7 @@ - lung bud (embryonic human) - EHDAA2:0004089 + lung bud (embryonic human) @@ -26189,8 +24408,7 @@ - right lung lower lobe bronchiole (embryonic human) - EHDAA2:0004094 + right lung lower lobe bronchiole (embryonic human) @@ -26209,8 +24427,7 @@ - renal artery (embryonic human) - EHDAA2:0004100 + renal artery (embryonic human) @@ -26229,8 +24446,7 @@ - turbinate bone (embryonic human) - EHDAA2:0004101 + turbinate bone (embryonic human) @@ -26249,8 +24465,7 @@ - epithelium of vomeronasal organ (embryonic human) - EHDAA2:0004102 + epithelium of vomeronasal organ (embryonic human) @@ -26269,8 +24484,7 @@ - mesenchyme of vomeronasal organ (embryonic human) - EHDAA2:0004103 + mesenchyme of vomeronasal organ (embryonic human) @@ -26289,8 +24503,7 @@ - nasal septum (embryonic human) - EHDAA2:0004104 + nasal septum (embryonic human) @@ -26309,8 +24522,7 @@ - frontonasal process epithelium (embryonic human) - EHDAA2:0004108 + frontonasal process epithelium (embryonic human) @@ -26329,8 +24541,7 @@ - mesenchyme of fronto-nasal process (embryonic human) - EHDAA2:0004109 + mesenchyme of fronto-nasal process (embryonic human) @@ -26349,8 +24560,7 @@ - vascular plexus (embryonic human) - EHDAA2:0004112 + vascular plexus (embryonic human) @@ -26369,8 +24579,7 @@ - ophthalmic vein (embryonic human) - EHDAA2:0004113 + ophthalmic vein (embryonic human) @@ -26389,8 +24598,7 @@ - auditory meatus epithelium (embryonic human) - EHDAA2:0004114 + auditory meatus epithelium (embryonic human) @@ -26409,8 +24617,7 @@ - tubotympanic recess epithelium (embryonic human) - EHDAA2:0004115 + tubotympanic recess epithelium (embryonic human) @@ -26429,8 +24636,7 @@ - tympanic cavity epithelium (embryonic human) - EHDAA2:0004116 + tympanic cavity epithelium (embryonic human) @@ -26449,8 +24655,7 @@ - pharyngotympanic tube epithelium (embryonic human) - EHDAA2:0004117 + pharyngotympanic tube epithelium (embryonic human) @@ -26469,8 +24674,7 @@ - lumen of pharyngotympanic tube (embryonic human) - EHDAA2:0004118 + lumen of pharyngotympanic tube (embryonic human) @@ -26489,8 +24693,7 @@ - tympanic cavity (embryonic human) - EHDAA2:0004119 + tympanic cavity (embryonic human) @@ -26509,8 +24712,7 @@ - otocyst lumen (embryonic human) - EHDAA2:0004121 + otocyst lumen (embryonic human) @@ -26529,8 +24731,7 @@ - oral epithelium from ectoderm (embryonic human) - EHDAA2:0004137 + oral epithelium from ectoderm (embryonic human) @@ -26549,8 +24750,7 @@ - lumen of Rathke's pouch (embryonic human) - EHDAA2:0004138 + lumen of Rathke's pouch (embryonic human) @@ -26569,8 +24769,7 @@ - remnant of lumen of Rathke's pouch (embryonic human) - EHDAA2:0004139 + remnant of lumen of Rathke's pouch (embryonic human) @@ -26589,8 +24788,7 @@ - foramen ovale of heart (embryonic human) - EHDAA2:0004142 + foramen ovale of heart (embryonic human) @@ -26609,8 +24807,7 @@ - truncus arteriosus (embryonic human) - EHDAA2:0004143 + truncus arteriosus (embryonic human) @@ -26629,8 +24826,7 @@ - aortic sac (embryonic human) - EHDAA2:0004145 + aortic sac (embryonic human) @@ -26649,8 +24845,7 @@ - atrioventricular region (embryonic human) - EHDAA2:0004149 + atrioventricular region (embryonic human) @@ -26669,8 +24864,7 @@ - myocardium (embryonic human) - EHDAA2:0004150 + myocardium (embryonic human) @@ -26689,8 +24883,7 @@ - endocardium (embryonic human) - EHDAA2:0004153 + endocardium (embryonic human) @@ -26709,8 +24902,7 @@ - cardiac muscle of left atrium (embryonic human) - EHDAA2:0004154 + cardiac muscle of left atrium (embryonic human) @@ -26729,8 +24921,7 @@ - cardiac muscle of right atrium (embryonic human) - EHDAA2:0004155 + cardiac muscle of right atrium (embryonic human) @@ -26749,8 +24940,7 @@ - cardiac muscle tissue of interventricular septum (embryonic human) - EHDAA2:0004158 + cardiac muscle tissue of interventricular septum (embryonic human) @@ -26769,8 +24959,7 @@ - cardiac mesenchyme (embryonic human) - EHDAA2:0004162 + cardiac mesenchyme (embryonic human) @@ -26789,8 +24978,7 @@ - cardiac ventricle (embryonic human) - EHDAA2:0004164 + cardiac ventricle (embryonic human) @@ -26809,8 +24997,7 @@ - cardiac muscle tissue of left auricle (embryonic human) - EHDAA2:0004168 + cardiac muscle tissue of left auricle (embryonic human) @@ -26829,8 +25016,7 @@ - cardiac muscle tissue of right auricle (embryonic human) - EHDAA2:0004169 + cardiac muscle tissue of right auricle (embryonic human) @@ -26849,8 +25035,7 @@ - cavity of cardiac chamber (embryonic human) - EHDAA2:0004181 + cavity of cardiac chamber (embryonic human) @@ -26869,8 +25054,7 @@ - atrioventricular node (embryonic human) - EHDAA2:0004183 + atrioventricular node (embryonic human) @@ -26889,8 +25073,7 @@ - sinoatrial node (embryonic human) - EHDAA2:0004184 + sinoatrial node (embryonic human) @@ -26909,8 +25092,7 @@ - conducting system of heart (embryonic human) - EHDAA2:0004185 + conducting system of heart (embryonic human) @@ -26929,8 +25111,7 @@ - enteric nervous system (embryonic human) - EHDAA2:0004202 + enteric nervous system (embryonic human) @@ -26949,8 +25130,7 @@ - anterior neuropore (embryonic human) - EHDAA2:0004203 + anterior neuropore (embryonic human) @@ -26969,8 +25149,7 @@ - geniculate placode (embryonic human) - EHDAA2:0004206 + geniculate placode (embryonic human) @@ -26989,8 +25168,7 @@ - petrosal placode (embryonic human) - EHDAA2:0004207 + petrosal placode (embryonic human) @@ -27009,8 +25187,7 @@ - nodosal placode (embryonic human) - EHDAA2:0004208 + nodosal placode (embryonic human) @@ -27029,8 +25206,7 @@ - trigeminal placode complex (embryonic human) - EHDAA2:0004209 + trigeminal placode complex (embryonic human) @@ -27049,8 +25225,7 @@ - oculomotor nuclear complex (embryonic human) - EHDAA2:0004211 + oculomotor nuclear complex (embryonic human) @@ -27069,8 +25244,7 @@ - nucleus ambiguus (embryonic human) - EHDAA2:0004305 + nucleus ambiguus (embryonic human) @@ -27089,8 +25263,7 @@ - abducens nucleus (embryonic human) - EHDAA2:0004310 + abducens nucleus (embryonic human) @@ -27109,8 +25282,7 @@ - vestibulo-cochlear VIII ganglion complex (embryonic human) - EHDAA2:0004313 + vestibulo-cochlear VIII ganglion complex (embryonic human) @@ -27129,8 +25301,7 @@ - ectomeninx (embryonic human) - EHDAA2:0004317 + ectomeninx (embryonic human) @@ -27149,8 +25320,7 @@ - pia mater (embryonic human) - EHDAA2:0004318 + pia mater (embryonic human) @@ -27169,8 +25339,7 @@ - rhombomere floor plate (embryonic human) - EHDAA2:0004324 + rhombomere floor plate (embryonic human) @@ -27189,8 +25358,7 @@ - midbrain neuromere (embryonic human) - EHDAA2:0004352 + midbrain neuromere (embryonic human) @@ -27209,8 +25377,7 @@ - mesomere 1 (embryonic human) - EHDAA2:0004353 + mesomere 1 (embryonic human) @@ -27229,8 +25396,7 @@ - mesomere 2 (embryonic human) - EHDAA2:0004354 + mesomere 2 (embryonic human) @@ -27249,8 +25415,7 @@ - central canal of spinal cord (embryonic human) - EHDAA2:0004361 + central canal of spinal cord (embryonic human) @@ -27269,8 +25434,7 @@ - ventricular system of central nervous system (embryonic human) - EHDAA2:0004362 + ventricular system of central nervous system (embryonic human) @@ -27289,8 +25453,7 @@ - midbrain basal plate (embryonic human) - EHDAA2:0004375 + midbrain basal plate (embryonic human) @@ -27309,8 +25472,7 @@ - pons (embryonic human) - EHDAA2:0004394 + pons (embryonic human) @@ -27329,8 +25491,7 @@ - midbrain-hindbrain boundary (embryonic human) - EHDAA2:0004395 + midbrain-hindbrain boundary (embryonic human) @@ -27349,8 +25510,7 @@ - cerebellar plate (embryonic human) - EHDAA2:0004401 + cerebellar plate (embryonic human) @@ -27369,8 +25529,7 @@ - neural crest (embryonic human) - EHDAA2:0004419 + neural crest (embryonic human) @@ -27389,8 +25548,7 @@ - cranial neural crest (embryonic human) - EHDAA2:0004420 + cranial neural crest (embryonic human) @@ -27409,8 +25567,7 @@ - mesenchyme from rhombencephalic neural crest (embryonic human) - EHDAA2:0004423 + mesenchyme from rhombencephalic neural crest (embryonic human) @@ -27429,8 +25586,7 @@ - future telencephalon (embryonic human) - EHDAA2:0004424 + future telencephalon (embryonic human) @@ -27449,8 +25605,7 @@ - eye primordium (embryonic human) - EHDAA2:0004431 + eye primordium (embryonic human) @@ -27469,8 +25624,7 @@ - optic pit (embryonic human) - EHDAA2:0004433 + optic pit (embryonic human) @@ -27489,8 +25643,7 @@ - future neurohypophysis (embryonic human) - EHDAA2:0004434 + future neurohypophysis (embryonic human) @@ -27509,8 +25662,7 @@ - cerebrospinal fluid (embryonic human) - EHDAA2:0004441 + cerebrospinal fluid (embryonic human) @@ -27529,8 +25681,7 @@ - Ammon's horn (embryonic human) - EHDAA2:0004443 + Ammon's horn (embryonic human) @@ -27549,8 +25700,7 @@ - choroid plexus of lateral ventricle (embryonic human) - EHDAA2:0004449 + choroid plexus of lateral ventricle (embryonic human) @@ -27569,8 +25719,7 @@ - lateral ventricle choroid plexus epithelium (embryonic human) - EHDAA2:0004450 + lateral ventricle choroid plexus epithelium (embryonic human) @@ -27589,8 +25738,7 @@ - future meninx (embryonic human) - EHDAA2:0004453 + future meninx (embryonic human) @@ -27609,8 +25757,7 @@ - caudate nucleus (embryonic human) - EHDAA2:0004461 + caudate nucleus (embryonic human) @@ -27629,8 +25776,7 @@ - lateral globus pallidus (embryonic human) - EHDAA2:0004462 + lateral globus pallidus (embryonic human) @@ -27649,8 +25795,7 @@ - thalamic complex (embryonic human) - EHDAA2:0004469 + thalamic complex (embryonic human) @@ -27669,8 +25814,7 @@ - ventral thalamus (embryonic human) - EHDAA2:0004470 + ventral thalamus (embryonic human) @@ -27689,8 +25833,7 @@ - midbrain tectum (embryonic human) - EHDAA2:0004474 + midbrain tectum (embryonic human) @@ -27709,8 +25852,7 @@ - midbrain tegmentum (embryonic human) - EHDAA2:0004475 + midbrain tegmentum (embryonic human) @@ -27729,8 +25871,7 @@ - archicortex (embryonic human) - EHDAA2:0004496 + archicortex (embryonic human) @@ -27749,8 +25890,7 @@ - thoracic duct (embryonic human) - EHDAA2:0004501 + thoracic duct (embryonic human) @@ -27769,8 +25909,7 @@ - left coronary artery (embryonic human) - EHDAA2:0004504 + left coronary artery (embryonic human) @@ -27789,8 +25928,7 @@ - right coronary artery (embryonic human) - EHDAA2:0004505 + right coronary artery (embryonic human) @@ -27809,8 +25947,7 @@ - cardiac vein (embryonic human) - EHDAA2:0004507 + cardiac vein (embryonic human) @@ -27829,8 +25966,7 @@ - great vein of heart (embryonic human) - EHDAA2:0004508 + great vein of heart (embryonic human) @@ -27849,8 +25985,7 @@ - middle cardiac vein (embryonic human) - EHDAA2:0004509 + middle cardiac vein (embryonic human) @@ -27869,8 +26004,7 @@ - aortic system (embryonic human) - EHDAA2:0004512 + aortic system (embryonic human) @@ -27889,8 +26023,7 @@ - right subclavian artery (embryonic human) - EHDAA2:0004514 + right subclavian artery (embryonic human) @@ -27909,30 +26042,7 @@ - posterior communicating artery (embryonic human) - EHDAA2:0004518 - - - - - - - - - - - - - - - - - - - - celiac artery (embryonic human) - celiac trunk (embryonic human) - EHDAA2:0004519 + posterior communicating artery (embryonic human) @@ -27951,8 +26061,7 @@ - vascular system (embryonic human) - EHDAA2:0004520 + vascular system (embryonic human) @@ -27971,8 +26080,7 @@ - capillary network of liver (embryonic human) - EHDAA2:0004525 + capillary network of liver (embryonic human) @@ -27991,8 +26099,7 @@ - conducting tissue of heart (embryonic human) - EHDAA2:0004528 + conducting tissue of heart (embryonic human) @@ -28011,8 +26118,7 @@ - hemiazygos vein (embryonic human) - EHDAA2:0004534 + hemiazygos vein (embryonic human) @@ -28031,8 +26137,7 @@ - right common cardinal vein (embryonic human) - EHDAA2:0004535 + right common cardinal vein (embryonic human) @@ -28051,8 +26156,7 @@ - right posterior cardinal vein (embryonic human) - EHDAA2:0004536 + right posterior cardinal vein (embryonic human) @@ -28071,8 +26175,7 @@ - right anterior cardinal vein (embryonic human) - EHDAA2:0004537 + right anterior cardinal vein (embryonic human) @@ -28091,8 +26194,7 @@ - right subcardinal vein (embryonic human) - EHDAA2:0004538 + right subcardinal vein (embryonic human) @@ -28111,8 +26213,7 @@ - right supracardinal vein (embryonic human) - EHDAA2:0004539 + right supracardinal vein (embryonic human) @@ -28131,8 +26232,7 @@ - embryonic capillary plexus (embryonic human) - EHDAA2:0004540 + embryonic capillary plexus (embryonic human) @@ -28151,8 +26251,7 @@ - craniocervical region vein (embryonic human) - EHDAA2:0004542 + craniocervical region vein (embryonic human) @@ -28171,8 +26270,7 @@ - papillary muscle of right ventricle (embryonic human) - EHDAA2:0004544 + papillary muscle of right ventricle (embryonic human) @@ -28191,8 +26289,7 @@ - nasal fin (embryonic human) - EHDAA2:0004548 + nasal fin (embryonic human) @@ -28211,8 +26308,7 @@ - lesser sac (embryonic human) - EHDAA2:0004554 + lesser sac (embryonic human) @@ -28231,8 +26327,7 @@ - lumen of oropharynx (embryonic human) - EHDAA2:0004556 + lumen of oropharynx (embryonic human) @@ -28251,8 +26346,7 @@ - mesothelium of omental bursa (embryonic human) - EHDAA2:0004557 + mesothelium of omental bursa (embryonic human) @@ -28271,8 +26365,7 @@ - lesser sac cavity (embryonic human) - EHDAA2:0004558 + lesser sac cavity (embryonic human) @@ -28291,8 +26384,7 @@ - dorsal mesentery (embryonic human) - EHDAA2:0004560 + dorsal mesentery (embryonic human) @@ -28311,8 +26403,7 @@ - epithelium of appendix (embryonic human) - EHDAA2:0004561 + epithelium of appendix (embryonic human) @@ -28331,8 +26422,7 @@ - gut mesentery (embryonic human) - EHDAA2:0004566 + gut mesentery (embryonic human) @@ -28351,8 +26441,7 @@ - digestive tract epithelium (embryonic human) - EHDAA2:0004567 + digestive tract epithelium (embryonic human) @@ -28371,8 +26460,7 @@ - endoderm of foregut (embryonic human) - EHDAA2:0004568 + endoderm of foregut (embryonic human) @@ -28391,8 +26479,7 @@ - ventral mesentery (embryonic human) - EHDAA2:0004569 + ventral mesentery (embryonic human) @@ -28411,8 +26498,7 @@ - lieno-renal ligament (embryonic human) - EHDAA2:0004572 + lieno-renal ligament (embryonic human) @@ -28431,8 +26517,7 @@ - hypopharynx (embryonic human) - EHDAA2:0004574 + hypopharynx (embryonic human) @@ -28451,8 +26536,7 @@ - epithelium of laryngopharynx (embryonic human) - EHDAA2:0004575 + epithelium of laryngopharynx (embryonic human) @@ -28471,8 +26555,7 @@ - embryonic cloacal epithelium (embryonic human) - EHDAA2:0004585 + embryonic cloacal epithelium (embryonic human) @@ -28491,8 +26574,7 @@ - embryonic cloacal lumen (embryonic human) - EHDAA2:0004586 + embryonic cloacal lumen (embryonic human) @@ -28511,8 +26593,7 @@ - rectal lumen (embryonic human) - EHDAA2:0004587 + rectal lumen (embryonic human) @@ -28531,8 +26612,7 @@ - internal anal region (embryonic human) - EHDAA2:0004588 + internal anal region (embryonic human) @@ -28551,8 +26631,7 @@ - external anal region (embryonic human) - EHDAA2:0004589 + external anal region (embryonic human) @@ -28571,8 +26650,7 @@ - interventricular septum membranous part (embryonic human) - EHDAA2:0004596 + interventricular septum membranous part (embryonic human) @@ -28591,8 +26669,7 @@ - epithelium of tongue (embryonic human) - EHDAA2:0004598 + epithelium of tongue (embryonic human) @@ -28611,8 +26688,7 @@ - maxillary process ectoderm (embryonic human) - EHDAA2:0004599 + maxillary process ectoderm (embryonic human) @@ -28631,8 +26707,7 @@ - maxillary process mesenchyme from neural crest (embryonic human) - EHDAA2:0004601 + maxillary process mesenchyme from neural crest (embryonic human) @@ -28651,8 +26726,7 @@ - maxillary process mesenchyme from head mesenchyme (embryonic human) - EHDAA2:0004602 + maxillary process mesenchyme from head mesenchyme (embryonic human) @@ -28671,8 +26745,7 @@ - mandibular process mesenchyme from neural crest (embryonic human) - EHDAA2:0004603 + mandibular process mesenchyme from neural crest (embryonic human) @@ -28691,8 +26764,7 @@ - mandibular process mesenchyme from head mesenchyme (embryonic human) - EHDAA2:0004604 + mandibular process mesenchyme from head mesenchyme (embryonic human) @@ -28711,8 +26783,7 @@ - calcareous tooth (embryonic human) - EHDAA2:0004605 + calcareous tooth (embryonic human) @@ -28731,8 +26802,7 @@ - skeleton of lower jaw (embryonic human) - EHDAA2:0004606 + skeleton of lower jaw (embryonic human) @@ -28751,8 +26821,7 @@ - upper jaw region (embryonic human) - EHDAA2:0004607 + upper jaw region (embryonic human) @@ -28771,8 +26840,7 @@ - hypoglossal cord (embryonic human) - EHDAA2:0004610 + hypoglossal cord (embryonic human) @@ -28791,8 +26859,7 @@ - copula linguae (embryonic human) - EHDAA2:0004611 + copula linguae (embryonic human) @@ -28811,8 +26878,7 @@ - mesenchyme of tongue (embryonic human) - EHDAA2:0004614 + mesenchyme of tongue (embryonic human) @@ -28831,8 +26897,7 @@ - hemolymphoid system (embryonic human) - EHDAA2:0004615 + hemolymphoid system (embryonic human) @@ -28851,8 +26916,7 @@ - open anatomical space (embryonic human) - EHDAA2:0004616 + open anatomical space (embryonic human) @@ -28871,8 +26935,7 @@ - tube lumen (embryonic human) - EHDAA2:0004618 + tube lumen (embryonic human) @@ -28891,8 +26954,7 @@ - entire pharyngeal arch endoderm (embryonic human) - EHDAA2:0004621 + entire pharyngeal arch endoderm (embryonic human) @@ -28911,8 +26973,7 @@ - inferior vagus X ganglion (embryonic human) - EHDAA2:0004622 + inferior vagus X ganglion (embryonic human) @@ -28931,8 +26992,7 @@ - geniculate ganglion (embryonic human) - EHDAA2:0004623 + geniculate ganglion (embryonic human) @@ -28951,8 +27011,7 @@ - principal sensory nucleus of trigeminal nerve (embryonic human) - EHDAA2:0004628 + principal sensory nucleus of trigeminal nerve (embryonic human) @@ -28971,8 +27030,7 @@ - hypoglossal nucleus (embryonic human) - EHDAA2:0004635 + hypoglossal nucleus (embryonic human) @@ -28991,8 +27049,7 @@ - facial nucleus (embryonic human) - EHDAA2:0004638 + facial nucleus (embryonic human) @@ -29011,8 +27068,7 @@ - future facial nucleus (embryonic human) - EHDAA2:0004639 + future facial nucleus (embryonic human) @@ -29031,8 +27087,7 @@ - inferior salivatory nucleus (embryonic human) - EHDAA2:0004641 + inferior salivatory nucleus (embryonic human) @@ -29051,8 +27106,7 @@ - future inferior salivatory nucleus (embryonic human) - EHDAA2:0004643 + future inferior salivatory nucleus (embryonic human) @@ -29071,8 +27125,7 @@ - future superior salivatory nucleus (embryonic human) - EHDAA2:0004644 + future superior salivatory nucleus (embryonic human) @@ -29091,8 +27144,7 @@ - superior salivatory nucleus (embryonic human) - EHDAA2:0004646 + superior salivatory nucleus (embryonic human) @@ -29111,8 +27163,7 @@ - future nucleus ambiguus (embryonic human) - EHDAA2:0004647 + future nucleus ambiguus (embryonic human) @@ -29131,8 +27182,7 @@ - dorsal motor nucleus of vagus nerve (embryonic human) - EHDAA2:0004649 + dorsal motor nucleus of vagus nerve (embryonic human) @@ -29151,8 +27201,7 @@ - future dorsal motor nucleus of vagus (embryonic human) - EHDAA2:0004650 + future dorsal motor nucleus of vagus (embryonic human) @@ -29171,8 +27220,7 @@ - meningeal cluster (embryonic human) - EHDAA2:0004661 + meningeal cluster (embryonic human) @@ -29191,8 +27239,7 @@ - neocortex (embryonic human) - EHDAA2:0004662 + neocortex (embryonic human) @@ -29211,8 +27258,7 @@ - olfactory tubercle (embryonic human) - EHDAA2:0004701 + olfactory tubercle (embryonic human) @@ -29231,8 +27277,7 @@ - olfactory bulb (embryonic human) - EHDAA2:0004705 + olfactory bulb (embryonic human) @@ -29251,8 +27296,7 @@ - red nucleus (embryonic human) - EHDAA2:0004706 + red nucleus (embryonic human) @@ -29271,8 +27315,7 @@ - nucleus accumbens (embryonic human) - EHDAA2:0004707 + nucleus accumbens (embryonic human) @@ -29291,8 +27334,7 @@ - nucleus of diagonal band (embryonic human) - EHDAA2:0004708 + nucleus of diagonal band (embryonic human) @@ -29311,8 +27353,7 @@ - septal nuclear complex (embryonic human) - EHDAA2:0004709 + septal nuclear complex (embryonic human) @@ -29331,8 +27372,7 @@ - habenular nucleus (embryonic human) - EHDAA2:0004710 + habenular nucleus (embryonic human) @@ -29351,8 +27391,7 @@ - substantia nigra (embryonic human) - EHDAA2:0004711 + substantia nigra (embryonic human) @@ -29371,8 +27410,7 @@ - extraembryonic membrane (embryonic human) - EHDAA2:0004714 + extraembryonic membrane (embryonic human) @@ -29391,8 +27429,7 @@ - chorionic villus (embryonic human) - EHDAA2:0004717 + chorionic villus (embryonic human) @@ -29411,8 +27448,7 @@ - urachus epithelium (embryonic human) - EHDAA2:0004725 + urachus epithelium (embryonic human) @@ -29431,8 +27467,7 @@ - urachus mesenchyme (embryonic human) - EHDAA2:0004726 + urachus mesenchyme (embryonic human) @@ -29451,8 +27486,7 @@ - blood serum (embryonic human) - EHDAA2:0004728 + blood serum (embryonic human) @@ -29471,8 +27505,7 @@ - coelom (embryonic human) - EHDAA2:0004731 + coelom (embryonic human) @@ -29491,8 +27524,7 @@ - pleuroperitoneal canal lumen (embryonic human) - EHDAA2:0004736 + pleuroperitoneal canal lumen (embryonic human) @@ -29511,8 +27543,7 @@ - pleural sac (embryonic human) - EHDAA2:0004737 + pleural sac (embryonic human) @@ -29531,34 +27562,7 @@ - greater sac (embryonic human) - EHDAA2:0004738 - - - - - - - - - - - - - - - - - - - - - - - - - EHDAA2:ENTITY - EHDAA2 entity + greater sac (embryonic human) @@ -29605,12 +27609,6 @@ - - - - - - @@ -30865,12 +28863,6 @@ - - - - - - @@ -30961,12 +28953,6 @@ - - - - - - @@ -31069,12 +29055,6 @@ - - - - - - @@ -31273,12 +29253,6 @@ - - - - - - @@ -31321,12 +29295,6 @@ - - - - - - @@ -31603,12 +29571,6 @@ - - - - - - @@ -31669,12 +29631,6 @@ - - - - - - @@ -31837,12 +29793,6 @@ - - - - - - @@ -31903,12 +29853,6 @@ - - - - - - @@ -32101,12 +30045,6 @@ - - - - - - @@ -32647,12 +30585,6 @@ - - - - - - @@ -33559,18 +31491,6 @@ - - - - - - - - - - - - @@ -33775,12 +31695,6 @@ - - - - - - @@ -33943,12 +31857,6 @@ - - - - - - @@ -34111,12 +32019,6 @@ - - - - - - @@ -35779,12 +33681,6 @@ - - - - - - @@ -36727,12 +34623,6 @@ - - - - - - @@ -37087,12 +34977,6 @@ - - - - - - @@ -37615,12 +35499,6 @@ - - - - - - @@ -37819,12 +35697,6 @@ - - - - - - @@ -37837,12 +35709,6 @@ - - - - - - @@ -37987,12 +35853,6 @@ - - - - - - @@ -38329,12 +36189,32 @@ - + - + + + + + + + + + + + + + + + - + diff --git a/src/ontology/bridge/uberon-bridge-to-emapa.obo b/src/ontology/bridge/uberon-bridge-to-emapa.obo deleted file mode 100644 index f2d7a68a4a..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-emapa.obo +++ /dev/null @@ -1,26991 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-emapa -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to emapa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "vHOG editors" xsd:string -property_value: dc-creator "Aurelie Comte" xsd:string -property_value: dc-creator "Anne Niknejad" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: EMAPA:29927 ! -property_value: IAO:0000589 "uterine cervix (embryonic mouse)" xsd:string -intersection_of: UBERON:0000002 ! uterine cervix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17847 ! -property_value: IAO:0000589 "naris (embryonic mouse)" xsd:string -intersection_of: UBERON:0000003 ! naris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16542 ! -property_value: IAO:0000589 "nose (embryonic mouse)" xsd:string -intersection_of: UBERON:0000004 ! nose -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32927 ! -property_value: IAO:0000589 "islet of Langerhans (embryonic mouse)" xsd:string -intersection_of: UBERON:0000006 ! islet of Langerhans -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35998 ! -property_value: IAO:0000589 "pituitary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16665 ! -property_value: IAO:0000589 "peripheral nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17270 ! -property_value: IAO:0000589 "parasympathetic nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16985 ! -property_value: IAO:0000589 "sympathetic nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17525 ! -property_value: IAO:0000589 "zone of skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0000014 ! zone of skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35305 ! -property_value: IAO:0000589 "endocrine pancreas (embryonic mouse)" xsd:string -intersection_of: UBERON:0000016 ! endocrine pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35328 ! -property_value: IAO:0000589 "exocrine pancreas (embryonic mouse)" xsd:string -intersection_of: UBERON:0000017 ! exocrine pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16198 ! -property_value: IAO:0000589 "camera-type eye (embryonic mouse)" xsd:string -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35955 ! -property_value: IAO:0000589 "sense organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0000020 ! sense organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37283 ! {source="MA:th"} -property_value: IAO:0000589 "appendage (embryonic mouse)" xsd:string -intersection_of: UBERON:0000026 ! appendage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35523 ! -property_value: IAO:0000589 "lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0000029 ! lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35877 ! -property_value: IAO:0000589 "lamina propria of trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0000031 ! lamina propria of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31858 ! -property_value: IAO:0000589 "head (embryonic mouse)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35631 ! -property_value: IAO:0000589 "primary ovarian follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0000035 ! primary ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35632 ! -property_value: IAO:0000589 "secondary ovarian follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0000036 ! secondary ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30763 ! -property_value: IAO:0000589 "tertiary ovarian follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0000037 ! tertiary ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37867 ! {source="MA:th"} -property_value: IAO:0000589 "follicular antrum (embryonic mouse)" xsd:string -intersection_of: UBERON:0000039 ! follicular antrum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35854 ! -property_value: IAO:0000589 "tendon (embryonic mouse)" xsd:string -intersection_of: UBERON:0000043 ! tendon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16667 ! -property_value: IAO:0000589 "dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16668 ! -property_value: IAO:0000589 "dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18372 ! -property_value: IAO:0000589 "dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32846 ! -property_value: IAO:0000589 "ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35352 ! -property_value: IAO:0000589 "fornix of brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0000052 ! fornix of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36516 ! -property_value: IAO:0000589 "macula lutea (embryonic mouse)" xsd:string -intersection_of: UBERON:0000053 ! macula lutea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17950 ! -property_value: IAO:0000589 "ureter (embryonic mouse)" xsd:string -intersection_of: UBERON:0000056 ! ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30901 ! -property_value: IAO:0000589 "urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0000057 ! urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19252 ! -property_value: IAO:0000589 "large intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0000059 ! large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25036 ! -property_value: IAO:0000589 "anatomical wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0000060 ! anatomical wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:0 ! -property_value: IAO:0000589 "anatomical structure (embryonic mouse)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35949 ! -property_value: IAO:0000589 "organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0000062 ! organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16737 ! -property_value: IAO:0000589 "respiratory tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16737 ! -property_value: IAO:0000589 "proximo-distal subdivision of respiratory tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0000072 ! proximo-distal subdivision of respiratory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28329 ! -property_value: IAO:0000589 "renal glomerulus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000074 ! renal glomerulus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16096 ! -property_value: IAO:0000589 "external ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17968 ! -property_value: IAO:0000589 "male reproductive system (embryonic mouse)" xsd:string -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16744 ! -property_value: IAO:0000589 "mesonephros (embryonic mouse)" xsd:string -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17373 ! -property_value: IAO:0000589 "metanephros (embryonic mouse)" xsd:string -intersection_of: UBERON:0000081 ! metanephros -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16747 ! -property_value: IAO:0000589 "mesonephric tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0000083 ! mesonephric tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17209 ! -property_value: IAO:0000589 "ureteric bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0000084 ! ureteric bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16035 ! -property_value: IAO:0000589 "zona pellucida (embryonic mouse)" xsd:string -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16041 ! -property_value: IAO:0000589 "inner cell mass (embryonic mouse)" xsd:string -intersection_of: UBERON:0000087 ! inner cell mass -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32762 ! -property_value: IAO:0000589 "hypoblast (generic) (embryonic mouse)" xsd:string -intersection_of: UBERON:0000089 ! hypoblast (generic) -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16044 ! -property_value: IAO:0000589 "blastocele (embryonic mouse)" xsd:string -intersection_of: UBERON:0000090 ! blastocele -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36281 ! -property_value: IAO:0000589 "lobe of lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0000101 ! lobe of lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35521 ! -property_value: IAO:0000589 "lung connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0000114 ! lung connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32860 ! -property_value: IAO:0000589 "lung epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000115 ! lung epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37946 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0000117 ! respiratory tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37849 ! {source="MA:th"} -property_value: IAO:0000589 "perineurium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000121 ! perineurium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37847 ! {source="MA:th"} -property_value: IAO:0000589 "endoneurium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000123 ! endoneurium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37848 ! {source="MA:th"} -property_value: IAO:0000589 "epineurium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000124 ! epineurium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37066 ! {source="MA:th"} -property_value: IAO:0000589 "cranial nerve nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000126 ! cranial nerve nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35338 ! -property_value: IAO:0000589 "facial nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000127 ! facial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36272 ! -property_value: IAO:0000589 "transverse foramen (embryonic mouse)" xsd:string -intersection_of: UBERON:0000130 ! transverse foramen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35636 ! -property_value: IAO:0000589 "theca cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0000155 ! theca cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18256 ! -property_value: IAO:0000589 "anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0000159 ! anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32874 ! -property_value: IAO:0000589 "intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27573 ! -property_value: IAO:0000589 "embryonic cloaca (embryonic mouse)" xsd:string -intersection_of: UBERON:0000163 ! embryonic cloaca -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17379 ! -property_value: IAO:0000589 "primitive urogenital sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000164 ! primitive urogenital sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16262 ! -property_value: IAO:0000589 "mouth (embryonic mouse)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17411 ! -property_value: IAO:0000589 "oral cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18399 ! -property_value: IAO:0000589 "oral cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17607 ! -property_value: IAO:0000589 "respiration organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36771 ! -property_value: IAO:0000589 "amniotic fluid (embryonic mouse)" xsd:string -intersection_of: UBERON:0000173 ! amniotic fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16332 ! -property_value: IAO:0000589 "blood (embryonic mouse)" xsd:string -intersection_of: UBERON:0000178 ! blood -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19016 ! -property_value: IAO:0000589 "tetrapod frontal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0000209 ! tetrapod frontal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18715 ! -property_value: IAO:0000589 "tetrapod parietal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0000210 ! tetrapod parietal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35493 ! -property_value: IAO:0000589 "ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0000211 ! ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16079 ! -property_value: IAO:0000589 "amniotic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0000301 ! amniotic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36220 ! -property_value: IAO:0000589 "adductor longus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000303 ! adductor longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16109 ! -property_value: IAO:0000589 "amnion (embryonic mouse)" xsd:string -intersection_of: UBERON:0000305 ! amnion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32761 ! -property_value: IAO:0000589 "body wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0000309 ! body wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32666 ! -property_value: IAO:0000589 "subarachnoid space (embryonic mouse)" xsd:string -intersection_of: UBERON:0000315 ! subarachnoid space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27375 ! -property_value: IAO:0000589 "colonic mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0000317 ! colonic mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16067 ! -property_value: IAO:0000589 "cytotrophoblast (embryonic mouse)" xsd:string -intersection_of: UBERON:0000319 ! cytotrophoblast -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27235 ! -property_value: IAO:0000589 "duodenal mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0000320 ! duodenal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27181 ! -property_value: IAO:0000589 "gastric gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0000325 ! gastric gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35424 ! -property_value: IAO:0000589 "ileal mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0000331 ! ileal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37973 ! {source="MA:th"} -property_value: IAO:0000589 "throat (embryonic mouse)" xsd:string -intersection_of: UBERON:0000341 ! throat -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17800 ! -property_value: IAO:0000589 "ophthalmic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19207 ! -property_value: IAO:0000589 "nuchal ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0000351 ! nuchal ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26957 ! -property_value: IAO:0000589 "pharyngeal mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0000355 ! pharyngeal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36035 ! -property_value: IAO:0000589 "blastocyst (embryonic mouse)" xsd:string -intersection_of: UBERON:0000358 ! blastocyst -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35701 ! -property_value: IAO:0000589 "preputial gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0000359 ! preputial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19279 ! -property_value: IAO:0000589 "renal medulla (embryonic mouse)" xsd:string -intersection_of: UBERON:0000362 ! renal medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37978 ! {source="MA:th"} -property_value: IAO:0000589 "urothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000365 ! urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36219 ! -property_value: IAO:0000589 "adductor brevis (embryonic mouse)" xsd:string -intersection_of: UBERON:0000368 ! adductor brevis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17549 ! -property_value: IAO:0000589 "corpus striatum (embryonic mouse)" xsd:string -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36221 ! -property_value: IAO:0000589 "adductor magnus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000370 ! adductor magnus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16068 ! -property_value: IAO:0000589 "syncytiotrophoblast (embryonic mouse)" xsd:string -intersection_of: UBERON:0000371 ! syncytiotrophoblast -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36258 ! -property_value: IAO:0000589 "extensor digitorum brevis pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0000372 ! extensor digitorum brevis pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17798 ! -property_value: IAO:0000589 "mandibular nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0000375 ! mandibular nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17499 ! -property_value: IAO:0000589 "hindlimb stylopod (embryonic mouse)" xsd:string -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17799 ! -property_value: IAO:0000589 "maxillary nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0000377 ! maxillary nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17883 ! -property_value: IAO:0000589 "tongue muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0000378 ! tongue muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28637 ! -property_value: IAO:0000589 "urinary bladder detrusor smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0000381 ! urinary bladder detrusor smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37426 ! {source="MA:th"} -property_value: IAO:0000589 "apocrine sweat gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0000382 ! apocrine sweat gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35578 ! -property_value: IAO:0000589 "musculature of body (embryonic mouse)" xsd:string -intersection_of: UBERON:0000383 ! musculature of body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18289 ! -property_value: IAO:0000589 "epiglottis (embryonic mouse)" xsd:string -intersection_of: UBERON:0000388 ! epiglottis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37648 ! {source="MA:th"} -property_value: IAO:0000589 "longissimus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0000392 ! longissimus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17572 ! -property_value: IAO:0000589 "cochlear ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0000395 ! cochlear ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18271 ! -property_value: IAO:0000589 "vallate papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0000396 ! vallate papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18941 ! -property_value: IAO:0000589 "colonic epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000397 ! colonic epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27109 ! -property_value: IAO:0000589 "jejunal mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0000399 ! jejunal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18668 ! -property_value: IAO:0000589 "jejunal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000400 ! jejunal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25100 ! -property_value: IAO:0000589 "mandibular ramus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000401 ! mandibular ramus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37949 ! {source="MA:th"} -property_value: IAO:0000589 "scalp (embryonic mouse)" xsd:string -intersection_of: UBERON:0000403 ! scalp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37950 ! {source="MA:th"} -property_value: IAO:0000589 "serous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0000409 ! serous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36446 ! -property_value: IAO:0000589 "visual cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0000411 ! visual cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36484 ! -property_value: IAO:0000589 "dermal papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0000412 ! dermal papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37913 ! {source="MA:th"} -property_value: IAO:0000589 "mucous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0000414 ! mucous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35711 ! -property_value: IAO:0000589 "prostate epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000428 ! prostate epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35446 ! -property_value: IAO:0000589 "enteric plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000429 ! enteric plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37383 ! {source="MA:th"} -property_value: IAO:0000589 "right testicular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0000442 ! right testicular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37167 ! {source="MA:th"} -property_value: IAO:0000589 "left testicular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0000443 ! left testicular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32837 ! -property_value: IAO:0000589 "septum of telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0000446 ! septum of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29888 ! -property_value: IAO:0000589 "corpus albicans (embryonic mouse)" xsd:string -intersection_of: UBERON:0000450 ! corpus albicans -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35356 ! -property_value: IAO:0000589 "prefrontal cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0000451 ! prefrontal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35270 ! -property_value: IAO:0000589 "decidua basalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0000453 ! decidua basalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36535 ! -property_value: IAO:0000589 "secretion of exocrine gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0000456 ! secretion of exocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36429 ! -property_value: IAO:0000589 "major vestibular gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0000460 ! major vestibular gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35178 ! -property_value: IAO:0000589 "organism substance (embryonic mouse)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16103 ! -property_value: IAO:0000589 "anatomical system (embryonic mouse)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25765 ! -property_value: IAO:0000589 "multicellular organism (embryonic mouse)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17972 ! -property_value: IAO:0000589 "testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17959 ! -property_value: IAO:0000589 "female reproductive system (embryonic mouse)" xsd:string -intersection_of: UBERON:0000474 ! female reproductive system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36031 ! -property_value: IAO:0000589 "organism subdivision (embryonic mouse)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35868 ! -property_value: IAO:0000589 "tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32738 ! -property_value: IAO:0000589 "epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35404 ! -property_value: IAO:0000589 "hippocampal commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0000908 ! hippocampal commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35862 ! -property_value: IAO:0000589 "thoracic segment of trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0000915 ! thoracic segment of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35102 ! -property_value: IAO:0000589 "abdomen (embryonic mouse)" xsd:string -intersection_of: UBERON:0000916 ! abdomen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16039 ! -property_value: IAO:0000589 "embryo (embryonic mouse)" xsd:string -intersection_of: UBERON:0000922 ! embryo -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36033 ! -property_value: IAO:0000589 "germ layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0000923 ! germ layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16069 ! -property_value: IAO:0000589 "ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16062 ! -property_value: IAO:0000589 "endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0000925 ! endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16083 ! -property_value: IAO:0000589 "mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16263 ! -property_value: IAO:0000589 "stomodeum (embryonic mouse)" xsd:string -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25038 ! -property_value: IAO:0000589 "proctodeum (embryonic mouse)" xsd:string -intersection_of: UBERON:0000931 ! proctodeum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18963 ! -property_value: IAO:0000589 "chordate pharyngeal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0000933 ! chordate pharyngeal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19038 ! -property_value: IAO:0000589 "anterior commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35695 ! -property_value: IAO:0000589 "posterior commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0000936 ! posterior commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17575 ! -property_value: IAO:0000589 "cranial nerve II (embryonic mouse)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17021 ! -property_value: IAO:0000589 "stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0000945 ! stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17869 ! -property_value: IAO:0000589 "cardiac valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0000946 ! cardiac valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18601 ! -property_value: IAO:0000589 "aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0000947 ! aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16105 ! -property_value: IAO:0000589 "heart (embryonic mouse)" xsd:string -intersection_of: UBERON:0000948 ! heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35306 ! -property_value: IAO:0000589 "endocrine system (embryonic mouse)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36231 ! -property_value: IAO:0000589 "gracilis (embryonic mouse)" xsd:string -intersection_of: UBERON:0000950 ! gracilis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16894 ! -property_value: IAO:0000589 "brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17544 ! -property_value: IAO:0000589 "cerebral cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17603 ! -property_value: IAO:0000589 "optic chiasma (embryonic mouse)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17158 ! -property_value: IAO:0000589 "thoracic ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17161 ! -property_value: IAO:0000589 "cornea (embryonic mouse)" xsd:string -intersection_of: UBERON:0000964 ! cornea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17838 ! -property_value: IAO:0000589 "lens of camera-type eye (embryonic mouse)" xsd:string -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17168 ! -property_value: IAO:0000589 "retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0000966 ! retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35587 ! -property_value: IAO:0000589 "neck (embryonic mouse)" xsd:string -intersection_of: UBERON:0000974 ! neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18344 ! -property_value: IAO:0000589 "sternum (embryonic mouse)" xsd:string -intersection_of: UBERON:0000975 ! sternum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19106 ! -property_value: IAO:0000589 "humerus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000976 ! humerus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16775 ! -property_value: IAO:0000589 "pleura (embryonic mouse)" xsd:string -intersection_of: UBERON:0000977 ! pleura -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17489 ! -property_value: IAO:0000589 "leg (embryonic mouse)" xsd:string -intersection_of: UBERON:0000978 ! leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19142 ! -property_value: IAO:0000589 "tibia (embryonic mouse)" xsd:string -intersection_of: UBERON:0000979 ! tibia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19143 ! -property_value: IAO:0000589 "femur (embryonic mouse)" xsd:string -intersection_of: UBERON:0000981 ! femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35456 ! -property_value: IAO:0000589 "skeletal joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0000982 ! skeletal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18758 ! -property_value: IAO:0000589 "axillary vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0000985 ! axillary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17563 ! -property_value: IAO:0000589 "pons (embryonic mouse)" xsd:string -intersection_of: UBERON:0000988 ! pons -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18682 ! -property_value: IAO:0000589 "penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0000989 ! penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17381 ! -property_value: IAO:0000589 "reproductive system (embryonic mouse)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17383 ! -property_value: IAO:0000589 "gonad (embryonic mouse)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17962 ! -property_value: IAO:0000589 "ovary (embryonic mouse)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18984 ! -property_value: IAO:0000589 "oviduct (embryonic mouse)" xsd:string -intersection_of: UBERON:0000993 ! oviduct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29915 ! -property_value: IAO:0000589 "uterus (embryonic mouse)" xsd:string -intersection_of: UBERON:0000995 ! uterus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18986 ! -property_value: IAO:0000589 "vagina (embryonic mouse)" xsd:string -intersection_of: UBERON:0000996 ! vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36631 ! -property_value: IAO:0000589 "mammalian vulva (embryonic mouse)" xsd:string -intersection_of: UBERON:0000997 ! mammalian vulva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19180 ! -property_value: IAO:0000589 "seminal vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0000998 ! seminal vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19088 ! -property_value: IAO:0000589 "ejaculatory duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0000999 ! ejaculatory duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18681 ! -property_value: IAO:0000589 "vas deferens (embryonic mouse)" xsd:string -intersection_of: UBERON:0001000 ! vas deferens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17528 ! -property_value: IAO:0000589 "skin epidermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001003 ! skin epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16727 ! -property_value: IAO:0000589 "respiratory system (embryonic mouse)" xsd:string -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17366 ! -property_value: IAO:0000589 "renal system (embryonic mouse)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35112 ! -property_value: IAO:0000589 "adipose tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001013 ! adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32715 ! -property_value: IAO:0000589 "musculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0001015 ! musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35577 ! -property_value: IAO:0000589 "musculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0001015 ! musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16469 ! -property_value: IAO:0000589 "nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16470 ! -property_value: IAO:0000589 "central nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16754 ! -property_value: IAO:0000589 "central nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36605 ! -property_value: IAO:0000589 "nerve fasciculus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001019 ! nerve fasciculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32808 ! -property_value: IAO:0000589 "nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32815 ! -property_value: IAO:0000589 "nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16192 ! -property_value: IAO:0000589 "sensory system (embryonic mouse)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37464 ! {source="MA:th"} -property_value: IAO:0000589 "dento-alveolar joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001035 ! dento-alveolar joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18769 ! -property_value: IAO:0000589 "strand of hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0001037 ! strand of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16085 ! -property_value: IAO:0000589 "yolk sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0001040 ! yolk sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16548 ! -property_value: IAO:0000589 "foregut (embryonic mouse)" xsd:string -intersection_of: UBERON:0001041 ! foregut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16706 ! -property_value: IAO:0000589 "chordate pharynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16833 ! -property_value: IAO:0000589 "esophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001043 ! esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17751 ! -property_value: IAO:0000589 "saliva-secreting gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001044 ! saliva-secreting gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16255 ! -property_value: IAO:0000589 "midgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0001045 ! midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16715 ! -property_value: IAO:0000589 "hindgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0001046 ! hindgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16164 ! -property_value: IAO:0000589 "neural tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16757 ! -property_value: IAO:0000589 "neural tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17896 ! -property_value: IAO:0000589 "rectum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001052 ! rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35346 ! -property_value: IAO:0000589 "flocculus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001063 ! flocculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17510 ! -property_value: IAO:0000589 "ventral pancreatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001064 ! ventral pancreatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36563 ! -property_value: IAO:0000589 "parotid main excretory duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001065 ! parotid main excretory duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32739 ! -property_value: IAO:0000589 "intervertebral disk (embryonic mouse)" xsd:string -intersection_of: UBERON:0001066 ! intervertebral disk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36392 ! -property_value: IAO:0000589 "skin of back (embryonic mouse)" xsd:string -intersection_of: UBERON:0001068 ! skin of back -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17507 ! -property_value: IAO:0000589 "head of pancreas (embryonic mouse)" xsd:string -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18611 ! -property_value: IAO:0000589 "external carotid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37117 ! {source="MA:th"} -property_value: IAO:0000589 "superficial cervical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001071 ! superficial cervical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18416 ! -property_value: IAO:0000589 "posterior vena cava (embryonic mouse)" xsd:string -intersection_of: UBERON:0001072 ! posterior vena cava -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37601 ! {source="MA:th"} -property_value: IAO:0000589 "ileocecal junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0001073 ! ileocecal junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16131 ! -property_value: IAO:0000589 "pericardial cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16132 ! -property_value: IAO:0000589 "pericardial cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36588 ! -property_value: IAO:0000589 "bony vertebral centrum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001075 ! bony vertebral centrum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25107 ! -property_value: IAO:0000589 "neural spine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001076 ! neural spine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37802 ! {source="MA:th"} -property_value: IAO:0000589 "prezygapophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001079 ! prezygapophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35918 ! -property_value: IAO:0000589 "postzygapophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001080 ! postzygapophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32747 ! -property_value: IAO:0000589 "endocardium of ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001081 ! endocardium of ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32748 ! -property_value: IAO:0000589 "myocardium of ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001083 ! myocardium of ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37278 ! {source="MA:th"} -property_value: IAO:0000589 "skin of trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0001085 ! skin of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36554 ! -property_value: IAO:0000589 "urine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001088 ! urine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32906 ! -property_value: IAO:0000589 "calcareous tooth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001091 ! calcareous tooth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19431 ! -property_value: IAO:0000589 "vertebral bone 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001092 ! vertebral bone 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19432 ! -property_value: IAO:0000589 "vertebral bone 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001093 ! vertebral bone 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18336 ! -property_value: IAO:0000589 "sacral vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0001094 ! sacral vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18374 ! -property_value: IAO:0000589 "caudal vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35326 ! -property_value: IAO:0000589 "wall of esophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001096 ! wall of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32889 ! -property_value: IAO:0000589 "incisor tooth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001098 ! incisor tooth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37189 ! {source="MA:th"} -property_value: IAO:0000589 "subcostal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001099 ! subcostal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18180 ! -property_value: IAO:0000589 "pectoralis minor (embryonic mouse)" xsd:string -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17875 ! -property_value: IAO:0000589 "external jugular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001101 ! external jugular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19092 ! -property_value: IAO:0000589 "cartilage of main bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001102 ! cartilage of main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17701 ! -property_value: IAO:0000589 "diaphragm (embryonic mouse)" xsd:string -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37134 ! {source="MA:th"} -property_value: IAO:0000589 "anterior jugular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001104 ! anterior jugular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18721 ! -property_value: IAO:0000589 "clavicle bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001105 ! clavicle bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25075 ! -property_value: IAO:0000589 "cephalic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001106 ! cephalic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19271 ! -property_value: IAO:0000589 "sternohyoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001107 ! sternohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37689 ! {source="MA:th"} -property_value: IAO:0000589 "omohyoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001108 ! omohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19272 ! -property_value: IAO:0000589 "sternothyroid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001109 ! sternothyroid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19273 ! -property_value: IAO:0000589 "thyrohyoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001110 ! thyrohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18521 ! -property_value: IAO:0000589 "intercostal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001111 ! intercostal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18178 ! -property_value: IAO:0000589 "latissimus dorsi muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18306 ! -property_value: IAO:0000589 "lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0001113 ! lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18311 ! -property_value: IAO:0000589 "right lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18307 ! -property_value: IAO:0000589 "left lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18318 ! -property_value: IAO:0000589 "quadrate lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18313 ! -property_value: IAO:0000589 "caudate lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18196 ! -property_value: IAO:0000589 "lobe of thyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18198 ! -property_value: IAO:0000589 "right lobe of thyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001119 ! right lobe of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18197 ! -property_value: IAO:0000589 "left lobe of thyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001120 ! left lobe of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37654 ! {source="MA:th"} -property_value: IAO:0000589 "longus colli muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001121 ! longus colli muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37738 ! {source="MA:th"} -property_value: IAO:0000589 "scalenus medius (embryonic mouse)" xsd:string -intersection_of: UBERON:0001122 ! scalenus medius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37737 ! {source="MA:th"} -property_value: IAO:0000589 "scalenus posterior (embryonic mouse)" xsd:string -intersection_of: UBERON:0001123 ! scalenus posterior -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18525 ! -property_value: IAO:0000589 "serratus ventralis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001125 ! serratus ventralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37698 ! {source="MA:th"} -property_value: IAO:0000589 "serratus dorsalis superior muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001126 ! serratus dorsalis superior muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37697 ! {source="MA:th"} -property_value: IAO:0000589 "serratus dorsalis inferior muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001127 ! serratus dorsalis inferior muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25137 ! -property_value: IAO:0000589 "sternocleidomastoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001128 ! sternocleidomastoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18181 ! -property_value: IAO:0000589 "subscapularis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35919 ! -property_value: IAO:0000589 "vertebral column (embryonic mouse)" xsd:string -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37803 ! {source="MA:th"} -property_value: IAO:0000589 "vertebral foramen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001131 ! vertebral foramen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32812 ! -property_value: IAO:0000589 "parathyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001132 ! parathyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32688 ! -property_value: IAO:0000589 "cardiac muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001133 ! cardiac muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32716 ! -property_value: IAO:0000589 "skeletal muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001134 ! skeletal muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32717 ! -property_value: IAO:0000589 "smooth muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32856 ! -property_value: IAO:0000589 "mesothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001136 ! mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18643 ! -property_value: IAO:0000589 "superior mesenteric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001138 ! superior mesenteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17874 ! -property_value: IAO:0000589 "common iliac vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28376 ! -property_value: IAO:0000589 "renal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001140 ! renal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37381 ! {source="MA:th"} -property_value: IAO:0000589 "right renal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001141 ! right renal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37166 ! {source="MA:th"} -property_value: IAO:0000589 "left renal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001142 ! left renal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19221 ! -property_value: IAO:0000589 "hepatic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18647 ! -property_value: IAO:0000589 "testicular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001144 ! testicular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18644 ! -property_value: IAO:0000589 "ovarian vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001145 ! ovarian vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17277 ! -property_value: IAO:0000589 "median nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001148 ! median nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17945 ! -property_value: IAO:0000589 "bare area of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17504 ! -property_value: IAO:0000589 "body of pancreas (embryonic mouse)" xsd:string -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17511 ! -property_value: IAO:0000589 "tail of pancreas (embryonic mouse)" xsd:string -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16841 ! -property_value: IAO:0000589 "cystic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35197 ! -property_value: IAO:0000589 "caecum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001153 ! caecum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35140 ! -property_value: IAO:0000589 "vermiform appendix (embryonic mouse)" xsd:string -intersection_of: UBERON:0001154 ! vermiform appendix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18939 ! -property_value: IAO:0000589 "colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001155 ! colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35151 ! -property_value: IAO:0000589 "ascending colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001156 ! ascending colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35880 ! -property_value: IAO:0000589 "transverse colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001157 ! transverse colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35285 ! -property_value: IAO:0000589 "descending colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001158 ! descending colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36391 ! -property_value: IAO:0000589 "sigmoid colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001159 ! sigmoid colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17886 ! -property_value: IAO:0000589 "fundus of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001160 ! fundus of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35810 ! -property_value: IAO:0000589 "body of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001161 ! body of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35811 ! -property_value: IAO:0000589 "cardia of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001162 ! cardia of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37754 ! {source="MA:th"} -property_value: IAO:0000589 "lesser curvature of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001163 ! lesser curvature of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37753 ! {source="MA:th"} -property_value: IAO:0000589 "greater curvature of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001164 ! greater curvature of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17891 ! -property_value: IAO:0000589 "pyloric antrum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17631 ! -property_value: IAO:0000589 "pylorus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001166 ! pylorus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35826 ! -property_value: IAO:0000589 "wall of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001167 ! wall of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35785 ! -property_value: IAO:0000589 "wall of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001168 ! wall of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35470 ! -property_value: IAO:0000589 "wall of large intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001169 ! wall of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37745 ! {source="MA:th"} -property_value: IAO:0000589 "mesentery of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001170 ! mesentery of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35497 ! -property_value: IAO:0000589 "hepatic acinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001172 ! hepatic acinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35172 ! -property_value: IAO:0000589 "biliary tree (embryonic mouse)" xsd:string -intersection_of: UBERON:0001173 ! biliary tree -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17201 ! -property_value: IAO:0000589 "common bile duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19101 ! -property_value: IAO:0000589 "common hepatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001175 ! common hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32797 ! -property_value: IAO:0000589 "right hepatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32795 ! -property_value: IAO:0000589 "left hepatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16592 ! -property_value: IAO:0000589 "visceral peritoneum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001178 ! visceral peritoneum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16138 ! -property_value: IAO:0000589 "peritoneal cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0001179 ! peritoneal cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18049 ! -property_value: IAO:0000589 "superior recess of lesser sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0001180 ! superior recess of lesser sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18048 ! -property_value: IAO:0000589 "inferior recess of lesser sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0001181 ! inferior recess of lesser sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18619 ! -property_value: IAO:0000589 "superior mesenteric artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001182 ! superior mesenteric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18618 ! -property_value: IAO:0000589 "inferior mesenteric artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001183 ! inferior mesenteric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28373 ! -property_value: IAO:0000589 "renal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001184 ! renal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37380 ! {source="MA:th"} -property_value: IAO:0000589 "right renal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001185 ! right renal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37098 ! {source="MA:th"} -property_value: IAO:0000589 "left renal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001186 ! left renal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18621 ! -property_value: IAO:0000589 "testicular artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001187 ! testicular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37382 ! {source="MA:th"} -property_value: IAO:0000589 "right testicular artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001188 ! right testicular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37099 ! {source="MA:th"} -property_value: IAO:0000589 "left testicular artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001189 ! left testicular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18620 ! -property_value: IAO:0000589 "ovarian artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001190 ! ovarian artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17310 ! -property_value: IAO:0000589 "common iliac artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35374 ! -property_value: IAO:0000589 "left gastric artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001192 ! left gastric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17859 ! -property_value: IAO:0000589 "hepatic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19216 ! -property_value: IAO:0000589 "splenic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001194 ! splenic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37086 ! {source="MA:th"} -property_value: IAO:0000589 "inferior pancreaticoduodenal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001195 ! inferior pancreaticoduodenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37106 ! {source="MA:th"} -property_value: IAO:0000589 "middle colic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001196 ! middle colic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37083 ! {source="MA:th"} -property_value: IAO:0000589 "ileocolic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001197 ! ileocolic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37122 ! {source="MA:th"} -property_value: IAO:0000589 "superior suprarenal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001198 ! superior suprarenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35817 ! -property_value: IAO:0000589 "mucosa of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001199 ! mucosa of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35825 ! -property_value: IAO:0000589 "submucosa of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001200 ! submucosa of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35822 ! -property_value: IAO:0000589 "serosa of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001201 ! serosa of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19251 ! -property_value: IAO:0000589 "pyloric sphincter (embryonic mouse)" xsd:string -intersection_of: UBERON:0001202 ! pyloric sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35818 ! -property_value: IAO:0000589 "muscularis mucosae of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001203 ! muscularis mucosae of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35780 ! -property_value: IAO:0000589 "mucosa of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001204 ! mucosa of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37564 ! {source="MA:th"} -property_value: IAO:0000589 "submucosa of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001205 ! submucosa of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37561 ! {source="MA:th"} -property_value: IAO:0000589 "serosa of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001206 ! serosa of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35467 ! -property_value: IAO:0000589 "mucosa of large intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001207 ! mucosa of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37560 ! {source="MA:th"} -property_value: IAO:0000589 "submucosa of large intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001208 ! submucosa of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37557 ! {source="MA:th"} -property_value: IAO:0000589 "serosa of large intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001209 ! serosa of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35781 ! -property_value: IAO:0000589 "muscularis mucosae of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001210 ! muscularis mucosae of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19028 ! -property_value: IAO:0000589 "Peyer's patch (embryonic mouse)" xsd:string -intersection_of: UBERON:0001211 ! Peyer's patch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36522 ! -property_value: IAO:0000589 "duodenal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001212 ! duodenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35784 ! -property_value: IAO:0000589 "intestinal villus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001213 ! intestinal villus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37678 ! {source="MA:th"} -property_value: IAO:0000589 "pancreatic tributary of splenic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001214 ! pancreatic tributary of splenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18642 ! -property_value: IAO:0000589 "inferior mesenteric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001215 ! inferior mesenteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37160 ! {source="MA:th"} -property_value: IAO:0000589 "jejunal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001216 ! jejunal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37149 ! {source="MA:th"} -property_value: IAO:0000589 "ileal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001217 ! ileal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37174 ! {source="MA:th"} -property_value: IAO:0000589 "middle colic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001218 ! middle colic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37150 ! {source="MA:th"} -property_value: IAO:0000589 "ileocolic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001219 ! ileocolic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18524 ! -property_value: IAO:0000589 "quadratus lumborum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001220 ! quadratus lumborum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18165 ! -property_value: IAO:0000589 "transversus abdominis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37373 ! {source="MA:th"} -property_value: IAO:0000589 "right ureter (embryonic mouse)" xsd:string -intersection_of: UBERON:0001222 ! right ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37372 ! {source="MA:th"} -property_value: IAO:0000589 "left ureter (embryonic mouse)" xsd:string -intersection_of: UBERON:0001223 ! left ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17948 ! -property_value: IAO:0000589 "renal pelvis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17952 ! -property_value: IAO:0000589 "cortex of kidney (embryonic mouse)" xsd:string -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18677 ! -property_value: IAO:0000589 "major calyx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001226 ! major calyx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18678 ! -property_value: IAO:0000589 "minor calyx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001227 ! minor calyx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35727 ! -property_value: IAO:0000589 "renal papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0001228 ! renal papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28236 ! -property_value: IAO:0000589 "renal corpuscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001229 ! renal corpuscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35726 ! -property_value: IAO:0000589 "renal corpuscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001229 ! renal corpuscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27973 ! -property_value: IAO:0000589 "glomerular capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28257 ! -property_value: IAO:0000589 "glomerular capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27782 ! -property_value: IAO:0000589 "nephron tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001231 ! nephron tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28407 ! -property_value: IAO:0000589 "collecting duct of renal tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001232 ! collecting duct of renal tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37357 ! {source="MA:th"} -property_value: IAO:0000589 "right adrenal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001233 ! right adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37356 ! {source="MA:th"} -property_value: IAO:0000589 "left adrenal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001234 ! left adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18427 ! -property_value: IAO:0000589 "adrenal cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18428 ! -property_value: IAO:0000589 "adrenal medulla (embryonic mouse)" xsd:string -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18223 ! -property_value: IAO:0000589 "paraaortic body (embryonic mouse)" xsd:string -intersection_of: UBERON:0001237 ! paraaortic body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35779 ! -property_value: IAO:0000589 "lamina propria of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001238 ! lamina propria of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37556 ! {source="MA:th"} -property_value: IAO:0000589 "muscularis mucosae of large intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001239 ! muscularis mucosae of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35442 ! -property_value: IAO:0000589 "muscularis mucosae of intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001240 ! muscularis mucosae of intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35777 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001241 ! crypt of Lieberkuhn of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35440 ! -property_value: IAO:0000589 "intestinal mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0001242 ! intestinal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37619 ! {source="MA:th"} -property_value: IAO:0000589 "serosa of intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001243 ! serosa of intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18266 ! -property_value: IAO:0000589 "internal anal sphincter (embryonic mouse)" xsd:string -intersection_of: UBERON:0001244 ! internal anal sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18288 ! -property_value: IAO:0000589 "falciform ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19303 ! -property_value: IAO:0000589 "hilum of spleen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001248 ! hilum of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35804 ! -property_value: IAO:0000589 "spleen lymphoid follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001249 ! spleen lymphoid follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35806 ! -property_value: IAO:0000589 "red pulp of spleen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001250 ! red pulp of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36650 ! -property_value: IAO:0000589 "marginal zone of spleen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001251 ! marginal zone of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28114 ! -property_value: IAO:0000589 "adventitia of ureter (embryonic mouse)" xsd:string -intersection_of: UBERON:0001252 ! adventitia of ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28841 ! -property_value: IAO:0000589 "lamina propria of ureter (embryonic mouse)" xsd:string -intersection_of: UBERON:0001253 ! lamina propria of ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28089 ! -property_value: IAO:0000589 "urothelium of ureter (embryonic mouse)" xsd:string -intersection_of: UBERON:0001254 ! urothelium of ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18321 ! -property_value: IAO:0000589 "urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35175 ! -property_value: IAO:0000589 "wall of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001256 ! wall of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35174 ! -property_value: IAO:0000589 "trigone of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001257 ! trigone of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36078 ! -property_value: IAO:0000589 "neck of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001258 ! neck of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35897 ! -property_value: IAO:0000589 "mucosa of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001259 ! mucosa of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28661 ! -property_value: IAO:0000589 "serosa of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001260 ! serosa of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30088 ! -property_value: IAO:0000589 "lamina propria of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001261 ! lamina propria of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35444 ! -property_value: IAO:0000589 "wall of intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001262 ! wall of intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35651 ! -property_value: IAO:0000589 "pancreatic acinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001263 ! pancreatic acinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17503 ! -property_value: IAO:0000589 "pancreas (embryonic mouse)" xsd:string -intersection_of: UBERON:0001264 ! pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35808 ! -property_value: IAO:0000589 "trabecula of spleen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001265 ! trabecula of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37752 ! {source="MA:th"} -property_value: IAO:0000589 "splenic cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0001266 ! splenic cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35343 ! -property_value: IAO:0000589 "femoral nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001267 ! femoral nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35683 ! -property_value: IAO:0000589 "peritoneal fluid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001268 ! peritoneal fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18346 ! -property_value: IAO:0000589 "acetabular part of hip bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001269 ! acetabular part of hip bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37862 ! {source="MA:th"} -property_value: IAO:0000589 "pelvic girdle region (embryonic mouse)" xsd:string -intersection_of: UBERON:0001271 ! pelvic girdle region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18726 ! -property_value: IAO:0000589 "ilium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001273 ! ilium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18727 ! -property_value: IAO:0000589 "ischium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001274 ! ischium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18728 ! -property_value: IAO:0000589 "pubis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001275 ! pubis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17023 ! -property_value: IAO:0000589 "epithelium of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0001276 ! epithelium of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32873 ! -property_value: IAO:0000589 "intestinal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001277 ! intestinal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35466 ! -property_value: IAO:0000589 "epithelium of large intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001278 ! epithelium of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17203 ! -property_value: IAO:0000589 "liver parenchyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17365 ! -property_value: IAO:0000589 "hepatic sinusoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36534 ! -property_value: IAO:0000589 "bile canaliculus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001283 ! bile canaliculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37487 ! {source="MA:th"} -property_value: IAO:0000589 "renal column (embryonic mouse)" xsd:string -intersection_of: UBERON:0001284 ! renal column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28491 ! -property_value: IAO:0000589 "nephron (embryonic mouse)" xsd:string -intersection_of: UBERON:0001285 ! nephron -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35592 ! -property_value: IAO:0000589 "nephron (embryonic mouse)" xsd:string -intersection_of: UBERON:0001285 ! nephron -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27985 ! -property_value: IAO:0000589 "Bowman's space (embryonic mouse)" xsd:string -intersection_of: UBERON:0001286 ! Bowman's space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28263 ! -property_value: IAO:0000589 "Bowman's space (embryonic mouse)" xsd:string -intersection_of: UBERON:0001286 ! Bowman's space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28287 ! -property_value: IAO:0000589 "proximal convoluted tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001287 ! proximal convoluted tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19280 ! -property_value: IAO:0000589 "loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001288 ! loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35511 ! -property_value: IAO:0000589 "descending limb of loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001289 ! descending limb of loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29661 ! -property_value: IAO:0000589 "proximal straight tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001290 ! proximal straight tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29669 ! -property_value: IAO:0000589 "proximal straight tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001290 ! proximal straight tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28396 ! -property_value: IAO:0000589 "thick ascending limb of loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001291 ! thick ascending limb of loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29671 ! -property_value: IAO:0000589 "thick ascending limb of loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001291 ! thick ascending limb of loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35512 ! -property_value: IAO:0000589 "thick ascending limb of loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001291 ! thick ascending limb of loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28393 ! -property_value: IAO:0000589 "distal convoluted tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001292 ! distal convoluted tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28310 ! -property_value: IAO:0000589 "outer medulla of kidney (embryonic mouse)" xsd:string -intersection_of: UBERON:0001293 ! outer medulla of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28349 ! -property_value: IAO:0000589 "inner medulla of kidney (embryonic mouse)" xsd:string -intersection_of: UBERON:0001294 ! inner medulla of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29917 ! -property_value: IAO:0000589 "endometrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001295 ! endometrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29923 ! -property_value: IAO:0000589 "myometrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001296 ! myometrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37792 ! {source="MA:th"} -property_value: IAO:0000589 "serosa of uterus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001297 ! serosa of uterus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18169 ! -property_value: IAO:0000589 "psoas major muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001298 ! psoas major muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18988 ! -property_value: IAO:0000589 "glans penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001299 ! glans penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19296 ! -property_value: IAO:0000589 "scrotum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001300 ! scrotum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19290 ! -property_value: IAO:0000589 "epididymis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001301 ! epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37369 ! {source="MA:th"} -property_value: IAO:0000589 "right uterine tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0001302 ! right uterine tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37368 ! {source="MA:th"} -property_value: IAO:0000589 "left uterine tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0001303 ! left uterine tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17963 ! -property_value: IAO:0000589 "germinal epithelium of ovary (embryonic mouse)" xsd:string -intersection_of: UBERON:0001304 ! germinal epithelium of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35627 ! -property_value: IAO:0000589 "ovarian follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001305 ! ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35267 ! -property_value: IAO:0000589 "cumulus oophorus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001306 ! cumulus oophorus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35626 ! -property_value: IAO:0000589 "capsule of ovary (embryonic mouse)" xsd:string -intersection_of: UBERON:0001307 ! capsule of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17614 ! -property_value: IAO:0000589 "external iliac artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17860 ! -property_value: IAO:0000589 "internal iliac artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16331 ! -property_value: IAO:0000589 "umbilical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16372 ! -property_value: IAO:0000589 "umbilical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37089 ! {source="MA:th"} -property_value: IAO:0000589 "inferior vesical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001311 ! inferior vesical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37123 ! {source="MA:th"} -property_value: IAO:0000589 "superior vesical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001312 ! superior vesical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37085 ! {source="MA:th"} -property_value: IAO:0000589 "iliolumbar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001313 ! iliolumbar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37671 ! {source="MA:th"} -property_value: IAO:0000589 "obturator artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001314 ! obturator artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37120 ! {source="MA:th"} -property_value: IAO:0000589 "superior gluteal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001315 ! superior gluteal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37144 ! {source="MA:th"} -property_value: IAO:0000589 "external iliac vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001316 ! external iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37148 ! {source="MA:th"} -property_value: IAO:0000589 "internal iliac vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001317 ! internal iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37158 ! {source="MA:th"} -property_value: IAO:0000589 "inferior vesical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001318 ! inferior vesical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37796 ! {source="MA:th"} -property_value: IAO:0000589 "vaginal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001319 ! vaginal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37152 ! {source="MA:th"} -property_value: IAO:0000589 "iliolumbar vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001320 ! iliolumbar vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37677 ! {source="MA:th"} -property_value: IAO:0000589 "obturator vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001321 ! obturator vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18577 ! -property_value: IAO:0000589 "sciatic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001322 ! sciatic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36512 ! -property_value: IAO:0000589 "tibial nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001323 ! tibial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18184 ! -property_value: IAO:0000589 "muscle of pelvis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001325 ! muscle of pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37481 ! {source="MA:th"} -property_value: IAO:0000589 "muscle of pelvis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001325 ! muscle of pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19165 ! -property_value: IAO:0000589 "levator ani muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001326 ! levator ani muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37482 ! {source="MA:th"} -property_value: IAO:0000589 "coccygeus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001327 ! coccygeus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35712 ! -property_value: IAO:0000589 "lobe of prostate (embryonic mouse)" xsd:string -intersection_of: UBERON:0001328 ! lobe of prostate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29794 ! -property_value: IAO:0000589 "prostate gland anterior lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0001329 ! prostate gland anterior lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37385 ! {source="MA:th"} -property_value: IAO:0000589 "pampiniform plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001330 ! pampiniform plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35675 ! -property_value: IAO:0000589 "skin of penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001331 ! skin of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18989 ! -property_value: IAO:0000589 "prepuce of penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001332 ! prepuce of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18692 ! -property_value: IAO:0000589 "male urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0001333 ! male urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28747 ! -property_value: IAO:0000589 "female urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0001334 ! female urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30942 ! -property_value: IAO:0000589 "prostatic urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0001335 ! prostatic urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37542 ! {source="MA:th"} -property_value: IAO:0000589 "membranous urethra of male or female (embryonic mouse)" xsd:string -intersection_of: UBERON:0001336 ! membranous urethra of male or female -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30944 ! -property_value: IAO:0000589 "spongiose part of urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0001337 ! spongiose part of urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37784 ! {source="MA:th"} -property_value: IAO:0000589 "urethral gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001338 ! urethral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37455 ! {source="MA:th"} -property_value: IAO:0000589 "ischiocavernosus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001339 ! ischiocavernosus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37080 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal artery of penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001340 ! dorsal artery of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16889 ! -property_value: IAO:0000589 "lesser sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17961 ! -property_value: IAO:0000589 "mesovarium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18685 ! -property_value: IAO:0000589 "seminiferous tubule of testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31476 ! -property_value: IAO:0000589 "seminiferous tubule of testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30991 ! -property_value: IAO:0000589 "epithelium of vagina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001344 ! epithelium of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37795 ! {source="MA:th"} -property_value: IAO:0000589 "vaginal hymen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001346 ! vaginal hymen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35926 ! -property_value: IAO:0000589 "white adipose tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001347 ! white adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19209 ! -property_value: IAO:0000589 "brown adipose tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001348 ! brown adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17588 ! -property_value: IAO:0000589 "external acoustic meatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16831 ! -property_value: IAO:0000589 "anal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0001353 ! anal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18751 ! -property_value: IAO:0000589 "inferior epigastric artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001354 ! inferior epigastric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37216 ! {source="MA:th"} -property_value: IAO:0000589 "deep femoral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001355 ! deep femoral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37670 ! {source="MA:th"} -property_value: IAO:0000589 "medial circumflex femoral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001356 ! medial circumflex femoral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37087 ! {source="MA:th"} -property_value: IAO:0000589 "inferior rectal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001357 ! inferior rectal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37107 ! {source="MA:th"} -property_value: IAO:0000589 "perineal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001358 ! perineal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37511 ! {source="MA:th"} -property_value: IAO:0000589 "deep circumflex iliac vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001360 ! deep circumflex iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17876 ! -property_value: IAO:0000589 "femoral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37179 ! {source="MA:th"} -property_value: IAO:0000589 "perineal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001362 ! perineal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37147 ! {source="MA:th"} -property_value: IAO:0000589 "great saphenous vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001363 ! great saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19300 ! -property_value: IAO:0000589 "sacro-iliac joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001365 ! sacro-iliac joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16591 ! -property_value: IAO:0000589 "parietal peritoneum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001366 ! parietal peritoneum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18265 ! -property_value: IAO:0000589 "external anal sphincter (embryonic mouse)" xsd:string -intersection_of: UBERON:0001367 ! external anal sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36236 ! -property_value: IAO:0000589 "obturator externus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001368 ! obturator externus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19164 ! -property_value: IAO:0000589 "iliacus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001369 ! iliacus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18527 ! -property_value: IAO:0000589 "gluteus maximus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001370 ! gluteus maximus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19163 ! -property_value: IAO:0000589 "gluteus medius (embryonic mouse)" xsd:string -intersection_of: UBERON:0001371 ! gluteus medius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18170 ! -property_value: IAO:0000589 "psoas minor muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001372 ! psoas minor muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37693 ! {source="MA:th"} -property_value: IAO:0000589 "sartorius muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001373 ! sartorius muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35170 ! -property_value: IAO:0000589 "biceps femoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0001374 ! biceps femoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35762 ! -property_value: IAO:0000589 "semitendinosus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001375 ! semitendinosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35855 ! -property_value: IAO:0000589 "tensor fasciae latae muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001376 ! tensor fasciae latae muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19146 ! -property_value: IAO:0000589 "quadriceps femoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0001377 ! quadriceps femoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36266 ! -property_value: IAO:0000589 "rectus femoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0001378 ! rectus femoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36244 ! -property_value: IAO:0000589 "vastus lateralis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001379 ! vastus lateralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36245 ! -property_value: IAO:0000589 "vastus medialis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001380 ! vastus medialis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36242 ! -property_value: IAO:0000589 "semimembranosus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001381 ! semimembranosus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36238 ! -property_value: IAO:0000589 "pectineus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001382 ! pectineus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19144 ! -property_value: IAO:0000589 "muscle of leg (embryonic mouse)" xsd:string -intersection_of: UBERON:0001383 ! muscle of leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19318 ! -property_value: IAO:0000589 "muscle of leg (embryonic mouse)" xsd:string -intersection_of: UBERON:0001383 ! muscle of leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35704 ! -property_value: IAO:0000589 "primary motor cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0001384 ! primary motor cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35866 ! -property_value: IAO:0000589 "tibialis anterior (embryonic mouse)" xsd:string -intersection_of: UBERON:0001385 ! tibialis anterior -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35330 ! -property_value: IAO:0000589 "extensor digitorum longus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001386 ! extensor digitorum longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36253 ! -property_value: IAO:0000589 "fibularis longus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001387 ! fibularis longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35375 ! -property_value: IAO:0000589 "gastrocnemius (embryonic mouse)" xsd:string -intersection_of: UBERON:0001388 ! gastrocnemius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35786 ! -property_value: IAO:0000589 "soleus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001389 ! soleus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37125 ! {source="MA:th"} -property_value: IAO:0000589 "sural artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001390 ! sural artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36240 ! -property_value: IAO:0000589 "popliteus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001391 ! popliteus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37588 ! {source="MA:th"} -property_value: IAO:0000589 "flexor hallucis longus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001392 ! flexor hallucis longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35156 ! -property_value: IAO:0000589 "auditory cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0001393 ! auditory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18749 ! -property_value: IAO:0000589 "axillary artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001394 ! axillary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37128 ! {source="MA:th"} -property_value: IAO:0000589 "thoraco-acromial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001395 ! thoraco-acromial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37095 ! {source="MA:th"} -property_value: IAO:0000589 "lateral thoracic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001396 ! lateral thoracic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37116 ! {source="MA:th"} -property_value: IAO:0000589 "subscapular artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001397 ! subscapular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37215 ! {source="MA:th"} -property_value: IAO:0000589 "deep brachial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001399 ! deep brachial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37604 ! {source="MA:th"} -property_value: IAO:0000589 "iliocostalis thoracis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001400 ! iliocostalis thoracis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37653 ! {source="MA:th"} -property_value: IAO:0000589 "longissimus thoracis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001401 ! longissimus thoracis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37651 ! {source="MA:th"} -property_value: IAO:0000589 "longissimus cervicis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001402 ! longissimus cervicis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37650 ! {source="MA:th"} -property_value: IAO:0000589 "longissimus capitis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001403 ! longissimus capitis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37112 ! {source="MA:th"} -property_value: IAO:0000589 "radial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001404 ! radial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37700 ! {source="MA:th"} -property_value: IAO:0000589 "spinalis thoracis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001405 ! spinalis thoracis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37675 ! {source="MA:th"} -property_value: IAO:0000589 "ulnar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001406 ! ulnar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37696 ! {source="MA:th"} -property_value: IAO:0000589 "semispinalis thoracis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001407 ! semispinalis thoracis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37695 ! {source="MA:th"} -property_value: IAO:0000589 "semispinalis cervicis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001408 ! semispinalis cervicis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37694 ! {source="MA:th"} -property_value: IAO:0000589 "semispinalis capitis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001409 ! semispinalis capitis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37207 ! {source="MA:th"} -property_value: IAO:0000589 "common palmar digital artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001410 ! common palmar digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37439 ! {source="MA:th"} -property_value: IAO:0000589 "basilic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001411 ! basilic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37222 ! {source="MA:th"} -property_value: IAO:0000589 "common palmar digital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001412 ! common palmar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37445 ! {source="MA:th"} -property_value: IAO:0000589 "brachial vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001413 ! brachial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37173 ! {source="MA:th"} -property_value: IAO:0000589 "median basilic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001414 ! median basilic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37282 ! {source="MA:th"} -property_value: IAO:0000589 "skin of pelvis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001415 ! skin of pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37277 ! {source="MA:th"} -property_value: IAO:0000589 "skin of neck (embryonic mouse)" xsd:string -intersection_of: UBERON:0001417 ! skin of neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37765 ! {source="MA:th"} -property_value: IAO:0000589 "skin of thorax (embryonic mouse)" xsd:string -intersection_of: UBERON:0001418 ! skin of thorax -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32726 ! -property_value: IAO:0000589 "skin of limb (embryonic mouse)" xsd:string -intersection_of: UBERON:0001419 ! skin of limb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37190 ! {source="MA:th"} -property_value: IAO:0000589 "subscapular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001420 ! subscapular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37856 ! {source="MA:th"} -property_value: IAO:0000589 "pectoral girdle region (embryonic mouse)" xsd:string -intersection_of: UBERON:0001421 ! pectoral girdle region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19103 ! -property_value: IAO:0000589 "radius bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001423 ! radius bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19104 ! -property_value: IAO:0000589 "ulna (embryonic mouse)" xsd:string -intersection_of: UBERON:0001424 ! ulna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37660 ! {source="MA:th"} -property_value: IAO:0000589 "radiale (embryonic mouse)" xsd:string -intersection_of: UBERON:0001427 ! radiale -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37659 ! {source="MA:th"} -property_value: IAO:0000589 "intermedium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001428 ! intermedium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36165 ! -property_value: IAO:0000589 "pisiform (embryonic mouse)" xsd:string -intersection_of: UBERON:0001429 ! pisiform -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36173 ! -property_value: IAO:0000589 "distal carpal bone 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001430 ! distal carpal bone 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36174 ! -property_value: IAO:0000589 "distal carpal bone 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001431 ! distal carpal bone 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36169 ! -property_value: IAO:0000589 "distal carpal bone 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001432 ! distal carpal bone 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36172 ! -property_value: IAO:0000589 "distal carpal bone 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001433 ! distal carpal bone 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35773 ! -property_value: IAO:0000589 "skeletal system (embryonic mouse)" xsd:string -intersection_of: UBERON:0001434 ! skeletal system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25056 ! -property_value: IAO:0000589 "carpal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001435 ! carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32650 ! -property_value: IAO:0000589 "phalanx of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001436 ! phalanx of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35508 ! -property_value: IAO:0000589 "epiphysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001437 ! epiphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35509 ! -property_value: IAO:0000589 "metaphysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001438 ! metaphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35250 ! -property_value: IAO:0000589 "compact bone tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001439 ! compact bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32623 ! -property_value: IAO:0000589 "forelimb skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0001440 ! forelimb skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32633 ! -property_value: IAO:0000589 "hindlimb skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0001441 ! hindlimb skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32643 ! -property_value: IAO:0000589 "skeleton of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001442 ! skeleton of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37232 ! {source="MA:th"} -property_value: IAO:0000589 "chest (embryonic mouse)" xsd:string -intersection_of: UBERON:0001443 ! chest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19141 ! -property_value: IAO:0000589 "fibula (embryonic mouse)" xsd:string -intersection_of: UBERON:0001446 ! fibula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25072 ! -property_value: IAO:0000589 "tarsal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001447 ! tarsal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32940 ! -property_value: IAO:0000589 "metatarsal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001448 ! metatarsal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36159 ! -property_value: IAO:0000589 "metatarsal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001448 ! metatarsal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32941 ! -property_value: IAO:0000589 "phalanx of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0001449 ! phalanx of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19134 ! -property_value: IAO:0000589 "calcaneus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001450 ! calcaneus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36180 ! -property_value: IAO:0000589 "navicular bone of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0001451 ! navicular bone of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36176 ! -property_value: IAO:0000589 "distal tarsal bone 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001452 ! distal tarsal bone 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36177 ! -property_value: IAO:0000589 "distal tarsal bone 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001453 ! distal tarsal bone 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36178 ! -property_value: IAO:0000589 "distal tarsal bone 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001454 ! distal tarsal bone 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36175 ! -property_value: IAO:0000589 "cuboid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001455 ! cuboid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32763 ! -property_value: IAO:0000589 "face (embryonic mouse)" xsd:string -intersection_of: UBERON:0001456 ! face -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37536 ! {source="MA:th"} -property_value: IAO:0000589 "skin of eyelid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001457 ! skin of eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37643 ! {source="MA:th"} -property_value: IAO:0000589 "skin of lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0001458 ! skin of lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35301 ! -property_value: IAO:0000589 "skin of external ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0001459 ! skin of external ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17413 ! -property_value: IAO:0000589 "arm (embryonic mouse)" xsd:string -intersection_of: UBERON:0001460 ! arm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17414 ! -property_value: IAO:0000589 "elbow (embryonic mouse)" xsd:string -intersection_of: UBERON:0001461 ! elbow -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17429 ! -property_value: IAO:0000589 "manual digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17490 ! -property_value: IAO:0000589 "hip (embryonic mouse)" xsd:string -intersection_of: UBERON:0001464 ! hip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17493 ! -property_value: IAO:0000589 "knee (embryonic mouse)" xsd:string -intersection_of: UBERON:0001465 ! knee -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32649 ! -property_value: IAO:0000589 "pedal digit (embryonic mouse)" xsd:string -intersection_of: UBERON:0001466 ! pedal digit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17421 ! -property_value: IAO:0000589 "shoulder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001467 ! shoulder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37622 ! {source="MA:th"} -property_value: IAO:0000589 "intervertebral joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001468 ! intervertebral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19203 ! -property_value: IAO:0000589 "sternoclavicular joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001469 ! sternoclavicular joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19105 ! -property_value: IAO:0000589 "glenohumeral joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001470 ! glenohumeral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37801 ! {source="MA:th"} -property_value: IAO:0000589 "vaginal venous plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001472 ! vaginal venous plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35532 ! -property_value: IAO:0000589 "lymphatic vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0001473 ! lymphatic vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32782 ! -property_value: IAO:0000589 "bone element (embryonic mouse)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18177 ! -property_value: IAO:0000589 "deltoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001476 ! deltoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18526 ! -property_value: IAO:0000589 "infraspinatus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001477 ! infraspinatus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19110 ! -property_value: IAO:0000589 "teres major muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001478 ! teres major muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36620 ! -property_value: IAO:0000589 "sesamoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001479 ! sesamoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36164 ! -property_value: IAO:0000589 "proximal carpal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001480 ! proximal carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36168 ! -property_value: IAO:0000589 "distal carpal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001481 ! distal carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36154 ! -property_value: IAO:0000589 "muscle of shoulder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001482 ! muscle of shoulder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18059 ! -property_value: IAO:0000589 "skin of shoulder (embryonic mouse)" xsd:string -intersection_of: UBERON:0001483 ! skin of shoulder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37621 ! {source="MA:th"} -property_value: IAO:0000589 "articular capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001484 ! articular capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19137 ! -property_value: IAO:0000589 "knee joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001485 ! knee joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19136 ! -property_value: IAO:0000589 "hip joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001486 ! hip joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32949 ! -property_value: IAO:0000589 "pes joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001487 ! pes joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35126 ! -property_value: IAO:0000589 "ankle joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001488 ! ankle joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32641 ! -property_value: IAO:0000589 "manus joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001489 ! manus joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19102 ! -property_value: IAO:0000589 "elbow joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001490 ! elbow joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19205 ! -property_value: IAO:0000589 "wrist joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001491 ! wrist joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17278 ! -property_value: IAO:0000589 "radial nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18802 ! -property_value: IAO:0000589 "axillary nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001493 ! axillary nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17279 ! -property_value: IAO:0000589 "ulnar nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35670 ! -property_value: IAO:0000589 "pectoral muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001495 ! pectoral muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17014 ! -property_value: IAO:0000589 "ascending aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18184 ! -property_value: IAO:0000589 "muscle of pelvic girdle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001497 ! muscle of pelvic girdle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18185 ! -property_value: IAO:0000589 "muscle of pelvic girdle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001497 ! muscle of pelvic girdle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36160 ! -property_value: IAO:0000589 "muscle of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0001498 ! muscle of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36053 ! -property_value: IAO:0000589 "muscle of arm (embryonic mouse)" xsd:string -intersection_of: UBERON:0001499 ! muscle of arm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32644 ! -property_value: IAO:0000589 "muscle of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001500 ! muscle of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36217 ! -property_value: IAO:0000589 "lumbrical muscle of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001501 ! lumbrical muscle of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36216 ! -property_value: IAO:0000589 "interosseous muscle of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001502 ! interosseous muscle of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37519 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal interosseous of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001503 ! dorsal interosseous of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36263 ! -property_value: IAO:0000589 "lumbrical muscle of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0001504 ! lumbrical muscle of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36182 ! -property_value: IAO:0000589 "coracobrachialis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001505 ! coracobrachialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19109 ! -property_value: IAO:0000589 "brachialis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001506 ! brachialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19108 ! -property_value: IAO:0000589 "biceps brachii (embryonic mouse)" xsd:string -intersection_of: UBERON:0001507 ! biceps brachii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17613 ! -property_value: IAO:0000589 "arch of aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19111 ! -property_value: IAO:0000589 "triceps brachii (embryonic mouse)" xsd:string -intersection_of: UBERON:0001509 ! triceps brachii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18151 ! -property_value: IAO:0000589 "skin of knee (embryonic mouse)" xsd:string -intersection_of: UBERON:0001510 ! skin of knee -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18156 ! -property_value: IAO:0000589 "skin of leg (embryonic mouse)" xsd:string -intersection_of: UBERON:0001511 ! skin of leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18159 ! -property_value: IAO:0000589 "skin of leg (embryonic mouse)" xsd:string -intersection_of: UBERON:0001511 ! skin of leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37352 ! {source="MA:th"} -property_value: IAO:0000589 "skin of leg (embryonic mouse)" xsd:string -intersection_of: UBERON:0001511 ! skin of leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37353 ! {source="MA:th"} -property_value: IAO:0000589 "skin of ankle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001512 ! skin of ankle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18504 ! -property_value: IAO:0000589 "skin of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0001513 ! skin of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18606 ! -property_value: IAO:0000589 "descending aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0001514 ! descending aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18603 ! -property_value: IAO:0000589 "thoracic aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0001515 ! thoracic aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17856 ! -property_value: IAO:0000589 "abdominal aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18051 ! -property_value: IAO:0000589 "skin of elbow (embryonic mouse)" xsd:string -intersection_of: UBERON:0001517 ! skin of elbow -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37351 ! {source="MA:th"} -property_value: IAO:0000589 "skin of wrist (embryonic mouse)" xsd:string -intersection_of: UBERON:0001518 ! skin of wrist -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18486 ! -property_value: IAO:0000589 "skin of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001519 ! skin of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36207 ! -property_value: IAO:0000589 "pronator teres (embryonic mouse)" xsd:string -intersection_of: UBERON:0001520 ! pronator teres -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36197 ! -property_value: IAO:0000589 "flexor carpi radialis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001521 ! flexor carpi radialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36198 ! -property_value: IAO:0000589 "flexor carpi ulnaris muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001522 ! flexor carpi ulnaris muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19319 ! -property_value: IAO:0000589 "flexor digitorum profundus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001523 ! flexor digitorum profundus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36189 ! -property_value: IAO:0000589 "extensor carpi radialis longus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001524 ! extensor carpi radialis longus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36188 ! -property_value: IAO:0000589 "extensor carpi radialis brevis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001525 ! extensor carpi radialis brevis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36190 ! -property_value: IAO:0000589 "extensor carpi ulnaris muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001526 ! extensor carpi ulnaris muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36210 ! -property_value: IAO:0000589 "abductor pollicis longus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001527 ! abductor pollicis longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19206 ! -property_value: IAO:0000589 "radio-ulnar joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0001528 ! radio-ulnar joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17615 ! -property_value: IAO:0000589 "brachiocephalic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17855 ! -property_value: IAO:0000589 "common carotid artery plus branches (embryonic mouse)" xsd:string -intersection_of: UBERON:0001530 ! common carotid artery plus branches -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35749 ! -property_value: IAO:0000589 "right common carotid artery plus branches (embryonic mouse)" xsd:string -intersection_of: UBERON:0001531 ! right common carotid artery plus branches -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16328 ! -property_value: IAO:0000589 "internal carotid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17617 ! -property_value: IAO:0000589 "subclavian artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37384 ! {source="MA:th"} -property_value: IAO:0000589 "right subclavian artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001534 ! right subclavian artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17314 ! -property_value: IAO:0000589 "vertebral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35491 ! -property_value: IAO:0000589 "left common carotid artery plus branches (embryonic mouse)" xsd:string -intersection_of: UBERON:0001536 ! left common carotid artery plus branches -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37071 ! {source="MA:th"} -property_value: IAO:0000589 "anterior tibial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001537 ! anterior tibial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37110 ! {source="MA:th"} -property_value: IAO:0000589 "posterior tibial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001538 ! posterior tibial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37077 ! {source="MA:th"} -property_value: IAO:0000589 "dorsalis pedis artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001539 ! dorsalis pedis artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37674 ! {source="MA:th"} -property_value: IAO:0000589 "peroneal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001540 ! peroneal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37101 ! {source="MA:th"} -property_value: IAO:0000589 "medial plantar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001541 ! medial plantar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35431 ! -property_value: IAO:0000589 "inguinal lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0001542 ! inguinal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37181 ! {source="MA:th"} -property_value: IAO:0000589 "popliteal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001544 ! popliteal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37135 ! {source="MA:th"} -property_value: IAO:0000589 "anterior tibial vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001545 ! anterior tibial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37183 ! {source="MA:th"} -property_value: IAO:0000589 "posterior tibial vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001546 ! posterior tibial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37187 ! {source="MA:th"} -property_value: IAO:0000589 "small saphenous vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001547 ! small saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37161 ! {source="MA:th"} -property_value: IAO:0000589 "lateral marginal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001548 ! lateral marginal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37143 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal metatarsal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001549 ! dorsal metatarsal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37170 ! {source="MA:th"} -property_value: IAO:0000589 "medial marginal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001550 ! medial marginal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37231 ! {source="MA:th"} -property_value: IAO:0000589 "vein of hindlimb zeugopod (embryonic mouse)" xsd:string -intersection_of: UBERON:0001551 ! vein of hindlimb zeugopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28215 ! -property_value: IAO:0000589 "kidney arcuate artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001552 ! kidney arcuate artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37102 ! {source="MA:th"} -property_value: IAO:0000589 "medial tarsal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001553 ! medial tarsal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18148 ! -property_value: IAO:0000589 "skin of hip (embryonic mouse)" xsd:string -intersection_of: UBERON:0001554 ! skin of hip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16247 ! -property_value: IAO:0000589 "digestive tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17669 ! -property_value: IAO:0000589 "upper respiratory tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16738 ! -property_value: IAO:0000589 "lower respiratory tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19097 ! -property_value: IAO:0000589 "subcostal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001561 ! subcostal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25134 ! -property_value: IAO:0000589 "digastric muscle group (embryonic mouse)" xsd:string -intersection_of: UBERON:0001562 ! digastric muscle group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25131 ! -property_value: IAO:0000589 "longus capitis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001563 ! longus capitis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25136 ! -property_value: IAO:0000589 "mylohyoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001564 ! mylohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36626 ! -property_value: IAO:0000589 "geniohyoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001565 ! geniohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19270 ! -property_value: IAO:0000589 "cricothyroid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001566 ! cricothyroid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37451 ! {source="MA:th"} -property_value: IAO:0000589 "cheek (embryonic mouse)" xsd:string -intersection_of: UBERON:0001567 ! cheek -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35473 ! -property_value: IAO:0000589 "muscle of larynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001568 ! muscle of larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18964 ! -property_value: IAO:0000589 "constrictor muscle of pharynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001569 ! constrictor muscle of pharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18965 ! -property_value: IAO:0000589 "inferior pharyngeal constrictor (embryonic mouse)" xsd:string -intersection_of: UBERON:0001570 ! inferior pharyngeal constrictor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18276 ! -property_value: IAO:0000589 "genioglossus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001571 ! genioglossus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18277 ! -property_value: IAO:0000589 "hyoglossus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18279 ! -property_value: IAO:0000589 "styloglossus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001573 ! styloglossus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18278 ! -property_value: IAO:0000589 "palatoglossus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001574 ! palatoglossus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18275 ! -property_value: IAO:0000589 "extrinsic muscle of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18280 ! -property_value: IAO:0000589 "intrinsic muscle of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35619 ! -property_value: IAO:0000589 "orbicularis oculi muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001578 ! orbicularis oculi muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17797 ! -property_value: IAO:0000589 "olfactory nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37503 ! {source="MA:th"} -property_value: IAO:0000589 "levator labii superioris (embryonic mouse)" xsd:string -intersection_of: UBERON:0001580 ! levator labii superioris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37516 ! {source="MA:th"} -property_value: IAO:0000589 "depressor labii inferioris (embryonic mouse)" xsd:string -intersection_of: UBERON:0001581 ! depressor labii inferioris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37453 ! {source="MA:th"} -property_value: IAO:0000589 "buccinator muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001582 ! buccinator muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37527 ! {source="MA:th"} -property_value: IAO:0000589 "extrinsic auricular muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001583 ! extrinsic auricular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37100 ! {source="MA:th"} -property_value: IAO:0000589 "left subclavian artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001584 ! left subclavian artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18417 ! -property_value: IAO:0000589 "anterior vena cava (embryonic mouse)" xsd:string -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17620 ! -property_value: IAO:0000589 "internal jugular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17621 ! -property_value: IAO:0000589 "subclavian vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36271 ! -property_value: IAO:0000589 "vertebral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001588 ! vertebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18641 ! -property_value: IAO:0000589 "internal thoracic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001589 ! internal thoracic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37178 ! {source="MA:th"} -property_value: IAO:0000589 "pericardiacophrenic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001590 ! pericardiacophrenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36325 ! -property_value: IAO:0000589 "thymic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001591 ! thymic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36284 ! -property_value: IAO:0000589 "bronchial vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001592 ! bronchial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36327 ! -property_value: IAO:0000589 "venous plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001593 ! venous plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18250 ! -property_value: IAO:0000589 "azygos vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001594 ! azygos vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35159 ! -property_value: IAO:0000589 "auricular muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001595 ! auricular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37528 ! {source="MA:th"} -property_value: IAO:0000589 "intrinsic auricular muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001596 ! intrinsic auricular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25135 ! -property_value: IAO:0000589 "masseter muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001597 ! masseter muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25138 ! -property_value: IAO:0000589 "temporalis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001598 ! temporalis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18586 ! -property_value: IAO:0000589 "stapedius muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001599 ! stapedius muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18587 ! -property_value: IAO:0000589 "tensor tympani (embryonic mouse)" xsd:string -intersection_of: UBERON:0001600 ! tensor tympani -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18234 ! -property_value: IAO:0000589 "extra-ocular muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36652 ! -property_value: IAO:0000589 "levator palpebrae superioris (embryonic mouse)" xsd:string -intersection_of: UBERON:0001604 ! levator palpebrae superioris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35240 ! -property_value: IAO:0000589 "ciliary muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001605 ! ciliary muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35448 ! -property_value: IAO:0000589 "muscle of iris (embryonic mouse)" xsd:string -intersection_of: UBERON:0001606 ! muscle of iris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35788 ! -property_value: IAO:0000589 "sphincter pupillae (embryonic mouse)" xsd:string -intersection_of: UBERON:0001607 ! sphincter pupillae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35286 ! -property_value: IAO:0000589 "dilatator pupillae (embryonic mouse)" xsd:string -intersection_of: UBERON:0001608 ! dilatator pupillae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18195 ! -property_value: IAO:0000589 "isthmus of thyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36324 ! -property_value: IAO:0000589 "lingual artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001610 ! lingual artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37115 ! {source="MA:th"} -property_value: IAO:0000589 "sublingual artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001611 ! sublingual artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19213 ! -property_value: IAO:0000589 "facial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001612 ! facial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37672 ! {source="MA:th"} -property_value: IAO:0000589 "occipital artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001613 ! occipital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37118 ! {source="MA:th"} -property_value: IAO:0000589 "superficial temporal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001614 ! superficial temporal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37130 ! {source="MA:th"} -property_value: IAO:0000589 "transverse facial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001615 ! transverse facial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17311 ! -property_value: IAO:0000589 "maxillary artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37105 ! {source="MA:th"} -property_value: IAO:0000589 "mental artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001617 ! mental artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37073 ! {source="MA:th"} -property_value: IAO:0000589 "buccal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001618 ! buccal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17007 ! -property_value: IAO:0000589 "ophthalmic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37113 ! {source="MA:th"} -property_value: IAO:0000589 "central retinal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001620 ! central retinal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19160 ! -property_value: IAO:0000589 "coronary artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001621 ! coronary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37094 ! {source="MA:th"} -property_value: IAO:0000589 "lacrimal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001622 ! lacrimal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35292 ! -property_value: IAO:0000589 "dorsal nasal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001623 ! dorsal nasal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17854 ! -property_value: IAO:0000589 "anterior cerebral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36532 ! -property_value: IAO:0000589 "right coronary artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001625 ! right coronary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36531 ! -property_value: IAO:0000589 "left coronary artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001626 ! left coronary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18239 ! -property_value: IAO:0000589 "middle cerebral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18600 ! -property_value: IAO:0000589 "posterior communicating artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19211 ! -property_value: IAO:0000589 "carotid body (embryonic mouse)" xsd:string -intersection_of: UBERON:0001629 ! carotid body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32715 ! -property_value: IAO:0000589 "muscle organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0001630 ! muscle organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37474 ! {source="MA:th"} -property_value: IAO:0000589 "muscle organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0001630 ! muscle organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19310 ! -property_value: IAO:0000589 "thoracic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001631 ! thoracic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37127 ! {source="MA:th"} -property_value: IAO:0000589 "temporal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001632 ! temporal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17307 ! -property_value: IAO:0000589 "basilar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19309 ! -property_value: IAO:0000589 "superior cerebellar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001635 ! superior cerebellar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17861 ! -property_value: IAO:0000589 "posterior cerebral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35147 ! -property_value: IAO:0000589 "artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35906 ! -property_value: IAO:0000589 "vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001638 ! vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35202 ! -property_value: IAO:0000589 "celiac artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001640 ! celiac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18637 ! -property_value: IAO:0000589 "transverse sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001641 ! transverse sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18636 ! -property_value: IAO:0000589 "superior sagittal sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001642 ! superior sagittal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17574 ! -property_value: IAO:0000589 "oculomotor nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18218 ! -property_value: IAO:0000589 "trochlear nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17576 ! -property_value: IAO:0000589 "trigeminal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18216 ! -property_value: IAO:0000589 "abducens nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17796 ! -property_value: IAO:0000589 "facial nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17801 ! -property_value: IAO:0000589 "vestibulocochlear nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17268 ! -property_value: IAO:0000589 "glossopharyngeal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17269 ! -property_value: IAO:0000589 "hypoglossal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37378 ! {source="MA:th"} -property_value: IAO:0000589 "right pulmonary artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001651 ! right pulmonary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37097 ! {source="MA:th"} -property_value: IAO:0000589 "left pulmonary artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001652 ! left pulmonary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19220 ! -property_value: IAO:0000589 "facial vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001653 ! facial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37195 ! {source="MA:th"} -property_value: IAO:0000589 "supraorbital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001654 ! supraorbital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37188 ! {source="MA:th"} -property_value: IAO:0000589 "submental vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001655 ! submental vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37182 ! {source="MA:th"} -property_value: IAO:0000589 "retromandibular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001656 ! retromandibular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19315 ! -property_value: IAO:0000589 "superficial temporal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001657 ! superficial temporal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37176 ! {source="MA:th"} -property_value: IAO:0000589 "middle temporal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001658 ! middle temporal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37200 ! {source="MA:th"} -property_value: IAO:0000589 "transverse facial vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001659 ! transverse facial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37169 ! {source="MA:th"} -property_value: IAO:0000589 "maxillary vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001660 ! maxillary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37512 ! {source="MA:th"} -property_value: IAO:0000589 "deep temporal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001661 ! deep temporal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37132 ! {source="MA:th"} -property_value: IAO:0000589 "anterior auricular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001662 ! anterior auricular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37140 ! {source="MA:th"} -property_value: IAO:0000589 "cerebral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001663 ! cerebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37154 ! {source="MA:th"} -property_value: IAO:0000589 "inferior cerebral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001664 ! inferior cerebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36267 ! -property_value: IAO:0000589 "triceps surae (embryonic mouse)" xsd:string -intersection_of: UBERON:0001665 ! triceps surae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36248 ! -property_value: IAO:0000589 "flexor digitorum longus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001666 ! flexor digitorum longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36255 ! -property_value: IAO:0000589 "tibialis posterior (embryonic mouse)" xsd:string -intersection_of: UBERON:0001667 ! tibialis posterior -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37139 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellar vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001668 ! cerebellar vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37191 ! {source="MA:th"} -property_value: IAO:0000589 "superior cerebellar vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001669 ! superior cerebellar vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37153 ! {source="MA:th"} -property_value: IAO:0000589 "inferior cerebellar vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001670 ! inferior cerebellar vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37196 ! {source="MA:th"} -property_value: IAO:0000589 "temporal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001671 ! temporal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36467 ! -property_value: IAO:0000589 "anterior cerebral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001672 ! anterior cerebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37185 ! {source="MA:th"} -property_value: IAO:0000589 "central retinal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001673 ! central retinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37168 ! {source="MA:th"} -property_value: IAO:0000589 "masseteric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001674 ! masseteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16797 ! -property_value: IAO:0000589 "trigeminal ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25112 ! -property_value: IAO:0000589 "occipital bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001676 ! occipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18340 ! -property_value: IAO:0000589 "sphenoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001677 ! sphenoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17682 ! -property_value: IAO:0000589 "temporal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19018 ! -property_value: IAO:0000589 "ethmoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001679 ! ethmoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19202 ! -property_value: IAO:0000589 "nasal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001681 ! nasal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36619 ! -property_value: IAO:0000589 "palatine bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001682 ! palatine bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25111 ! -property_value: IAO:0000589 "jugal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001683 ! jugal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18290 ! -property_value: IAO:0000589 "mandible (embryonic mouse)" xsd:string -intersection_of: UBERON:0001684 ! mandible -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18650 ! -property_value: IAO:0000589 "hyoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001685 ! hyoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17824 ! -property_value: IAO:0000589 "auditory ossicle bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001686 ! auditory ossicle bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18585 ! -property_value: IAO:0000589 "stapes bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001687 ! stapes bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18583 ! -property_value: IAO:0000589 "incus bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001688 ! incus bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18584 ! -property_value: IAO:0000589 "malleus bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001689 ! malleus bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16193 ! -property_value: IAO:0000589 "ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0001690 ! ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16991 ! -property_value: IAO:0000589 "external ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0001691 ! external ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18705 ! -property_value: IAO:0000589 "basioccipital bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18708 ! -property_value: IAO:0000589 "exoccipital bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17683 ! -property_value: IAO:0000589 "petrous part of temporal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18021 ! -property_value: IAO:0000589 "squamous part of temporal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18711 ! -property_value: IAO:0000589 "foramen ovale of skull (embryonic mouse)" xsd:string -intersection_of: UBERON:0001698 ! foramen ovale of skull -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17569 ! -property_value: IAO:0000589 "geniculate ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16795 ! -property_value: IAO:0000589 "glossopharyngeal ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17681 ! -property_value: IAO:0000589 "neurocranium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001703 ! neurocranium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35580 ! -property_value: IAO:0000589 "nail (embryonic mouse)" xsd:string -intersection_of: UBERON:0001705 ! nail -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17608 ! -property_value: IAO:0000589 "nasal septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17604 ! -property_value: IAO:0000589 "nasal cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35455 ! -property_value: IAO:0000589 "jaw skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0001708 ! jaw skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17924 ! -property_value: IAO:0000589 "upper jaw region (embryonic mouse)" xsd:string -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17906 ! -property_value: IAO:0000589 "lower jaw region (embryonic mouse)" xsd:string -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17829 ! -property_value: IAO:0000589 "eyelid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001711 ! eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17834 ! -property_value: IAO:0000589 "upper eyelid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17831 ! -property_value: IAO:0000589 "lower eyelid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16659 ! -property_value: IAO:0000589 "cranial ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35605 ! -property_value: IAO:0000589 "oculomotor nuclear complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18948 ! -property_value: IAO:0000589 "secondary palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0001716 ! secondary palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35885 ! -property_value: IAO:0000589 "spinal nucleus of trigeminal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001717 ! spinal nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35881 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35596 ! -property_value: IAO:0000589 "nucleus ambiguus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001719 ! nucleus ambiguus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35248 ! -property_value: IAO:0000589 "cochlear nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001720 ! cochlear nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35797 ! -property_value: IAO:0000589 "inferior vestibular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001721 ! inferior vestibular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35554 ! -property_value: IAO:0000589 "medial vestibular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001722 ! medial vestibular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17185 ! -property_value: IAO:0000589 "tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001723 ! tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35264 ! -property_value: IAO:0000589 "cranial synchondrosis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001725 ! cranial synchondrosis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32777 ! -property_value: IAO:0000589 "papilla of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001726 ! papilla of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35850 ! -property_value: IAO:0000589 "taste bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0001727 ! taste bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17670 ! -property_value: IAO:0000589 "nasopharynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25094 ! -property_value: IAO:0000589 "oropharynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001729 ! oropharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37627 ! {source="MA:th"} -property_value: IAO:0000589 "extrinsic ligament of larynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001730 ! extrinsic ligament of larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18381 ! -property_value: IAO:0000589 "cavity of pharynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18949 ! -property_value: IAO:0000589 "soft palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0001733 ! soft palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18812 ! -property_value: IAO:0000589 "submandibular gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001736 ! submandibular gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18333 ! -property_value: IAO:0000589 "larynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001737 ! larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18698 ! -property_value: IAO:0000589 "thyroid cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0001738 ! thyroid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18697 ! -property_value: IAO:0000589 "laryngeal cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0001739 ! laryngeal cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17977 ! -property_value: IAO:0000589 "arytenoid cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18695 ! -property_value: IAO:0000589 "arytenoid cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37484 ! {source="MA:th"} -property_value: IAO:0000589 "corniculate cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0001741 ! corniculate cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37522 ! {source="MA:th"} -property_value: IAO:0000589 "epiglottic cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0001742 ! epiglottic cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37626 ! {source="MA:th"} -property_value: IAO:0000589 "ligament of larynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001743 ! ligament of larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37767 ! {source="MA:th"} -property_value: IAO:0000589 "capsule of thyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001746 ! capsule of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37769 ! {source="MA:th"} -property_value: IAO:0000589 "parenchyma of thyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001747 ! parenchyma of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35663 ! -property_value: IAO:0000589 "capsule of parathyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001748 ! capsule of parathyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35664 ! -property_value: IAO:0000589 "parenchyma of parathyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001749 ! parenchyma of parathyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35462 ! -property_value: IAO:0000589 "lacrimal apparatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001750 ! lacrimal apparatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35281 ! -property_value: IAO:0000589 "dentine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001751 ! dentine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35303 ! -property_value: IAO:0000589 "enamel (embryonic mouse)" xsd:string -intersection_of: UBERON:0001752 ! enamel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35203 ! -property_value: IAO:0000589 "cementum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001753 ! cementum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35274 ! -property_value: IAO:0000589 "dental pulp (embryonic mouse)" xsd:string -intersection_of: UBERON:0001754 ! dental pulp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17000 ! -property_value: IAO:0000589 "middle ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0001756 ! middle ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17589 ! -property_value: IAO:0000589 "pinna (embryonic mouse)" xsd:string -intersection_of: UBERON:0001757 ! pinna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37797 ! {source="MA:th"} -property_value: IAO:0000589 "vagus nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001759 ! vagus nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17069 ! -property_value: IAO:0000589 "future foramen cecum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001761 ! future foramen cecum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25093 ! -property_value: IAO:0000589 "turbinate bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0001762 ! turbinate bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32892 ! -property_value: IAO:0000589 "odontogenic papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0001763 ! odontogenic papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35538 ! -property_value: IAO:0000589 "mammary duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001765 ! mammary duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18231 ! -property_value: IAO:0000589 "anterior chamber of eyeball (embryonic mouse)" xsd:string -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35901 ! -property_value: IAO:0000589 "uvea (embryonic mouse)" xsd:string -intersection_of: UBERON:0001768 ! uvea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19154 ! -property_value: IAO:0000589 "iris (embryonic mouse)" xsd:string -intersection_of: UBERON:0001769 ! iris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37624 ! {source="MA:th"} -property_value: IAO:0000589 "lacrimal canaliculus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001770 ! lacrimal canaliculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17162 ! -property_value: IAO:0000589 "corneal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19027 ! -property_value: IAO:0000589 "sclera (embryonic mouse)" xsd:string -intersection_of: UBERON:0001773 ! sclera -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35888 ! -property_value: IAO:0000589 "skeletal muscle of trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0001774 ! skeletal muscle of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19065 ! -property_value: IAO:0000589 "ciliary body (embryonic mouse)" xsd:string -intersection_of: UBERON:0001775 ! ciliary body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19077 ! -property_value: IAO:0000589 "optic choroid (embryonic mouse)" xsd:string -intersection_of: UBERON:0001776 ! optic choroid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17602 ! -property_value: IAO:0000589 "substantia propria of cornea (embryonic mouse)" xsd:string -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35239 ! -property_value: IAO:0000589 "ciliary epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001778 ! ciliary epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35451 ! -property_value: IAO:0000589 "iris stroma (embryonic mouse)" xsd:string -intersection_of: UBERON:0001779 ! iris stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16989 ! -property_value: IAO:0000589 "spinal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35742 ! -property_value: IAO:0000589 "layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001781 ! layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17172 ! -property_value: IAO:0000589 "pigmented layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35738 ! -property_value: IAO:0000589 "pigmented layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18238 ! -property_value: IAO:0000589 "optic disc (embryonic mouse)" xsd:string -intersection_of: UBERON:0001783 ! optic disc -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17264 ! -property_value: IAO:0000589 "cranial nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37589 ! {source="MA:th"} -property_value: IAO:0000589 "fovea centralis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001786 ! fovea centralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35686 ! -property_value: IAO:0000589 "photoreceptor layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001787 ! photoreceptor layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36518 ! -property_value: IAO:0000589 "outer limiting layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001788 ! outer limiting layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19157 ! -property_value: IAO:0000589 "outer nuclear layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001789 ! outer nuclear layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35744 ! -property_value: IAO:0000589 "outer plexiform layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001790 ! outer plexiform layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19155 ! -property_value: IAO:0000589 "inner nuclear layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001791 ! inner nuclear layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35739 ! -property_value: IAO:0000589 "ganglionic layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001792 ! ganglionic layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18591 ! -property_value: IAO:0000589 "nerve fiber layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36519 ! -property_value: IAO:0000589 "inner limiting layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001794 ! inner limiting layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35741 ! -property_value: IAO:0000589 "inner plexiform layer of retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0001795 ! inner plexiform layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18232 ! -property_value: IAO:0000589 "aqueous humor of eyeball (embryonic mouse)" xsd:string -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17837 ! -property_value: IAO:0000589 "vitreous humor (embryonic mouse)" xsd:string -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37805 ! {source="MA:th"} -property_value: IAO:0000589 "vitreous chamber of eyeball (embryonic mouse)" xsd:string -intersection_of: UBERON:0001799 ! vitreous chamber of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36596 ! -property_value: IAO:0000589 "sensory ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001800 ! sensory ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36594 ! -property_value: IAO:0000589 "anterior segment of eyeball (embryonic mouse)" xsd:string -intersection_of: UBERON:0001801 ! anterior segment of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36595 ! -property_value: IAO:0000589 "posterior segment of eyeball (embryonic mouse)" xsd:string -intersection_of: UBERON:0001802 ! posterior segment of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32871 ! -property_value: IAO:0000589 "epithelium of lens (embryonic mouse)" xsd:string -intersection_of: UBERON:0001803 ! epithelium of lens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18237 ! -property_value: IAO:0000589 "capsule of lens (embryonic mouse)" xsd:string -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17157 ! -property_value: IAO:0000589 "autonomic ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18221 ! -property_value: IAO:0000589 "autonomic ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17157 ! -property_value: IAO:0000589 "sympathetic ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001806 ! sympathetic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32813 ! -property_value: IAO:0000589 "parasympathetic ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001808 ! parasympathetic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35312 ! -property_value: IAO:0000589 "enteric ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001809 ! enteric ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37683 ! {source="MA:th"} -property_value: IAO:0000589 "nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001810 ! nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18233 ! -property_value: IAO:0000589 "conjunctiva (embryonic mouse)" xsd:string -intersection_of: UBERON:0001811 ! conjunctiva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16987 ! -property_value: IAO:0000589 "spinal nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001813 ! spinal nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16988 ! -property_value: IAO:0000589 "brachial nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17587 ! -property_value: IAO:0000589 "lumbosacral nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18224 ! -property_value: IAO:0000589 "autonomic nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001816 ! autonomic nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35463 ! -property_value: IAO:0000589 "lacrimal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001817 ! lacrimal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35844 ! -property_value: IAO:0000589 "sweat gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001820 ! sweat gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35754 ! -property_value: IAO:0000589 "sebaceous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001821 ! sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37609 ! {source="MA:th"} -property_value: IAO:0000589 "orbital septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001822 ! orbital septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37681 ! {source="MA:th"} -property_value: IAO:0000589 "nasal cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0001823 ! nasal cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18334 ! -property_value: IAO:0000589 "mucosa of larynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001824 ! mucosa of larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35662 ! -property_value: IAO:0000589 "paranasal sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001825 ! paranasal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36026 ! -property_value: IAO:0000589 "nasal cavity mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0001826 ! nasal cavity mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36537 ! -property_value: IAO:0000589 "secretion of lacrimal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001827 ! secretion of lacrimal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35945 ! -property_value: IAO:0000589 "gingiva (embryonic mouse)" xsd:string -intersection_of: UBERON:0001828 ! gingiva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35574 ! -property_value: IAO:0000589 "minor salivary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001830 ! minor salivary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18537 ! -property_value: IAO:0000589 "parotid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001831 ! parotid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18809 ! -property_value: IAO:0000589 "sublingual gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001832 ! sublingual gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32839 ! -property_value: IAO:0000589 "lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0001833 ! lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17925 ! -property_value: IAO:0000589 "upper lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0001834 ! upper lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17909 ! -property_value: IAO:0000589 "lower lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0001835 ! lower lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36536 ! -property_value: IAO:0000589 "saliva (embryonic mouse)" xsd:string -intersection_of: UBERON:0001836 ! saliva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35750 ! -property_value: IAO:0000589 "duct of salivary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001837 ! duct of salivary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36564 ! -property_value: IAO:0000589 "sublingual duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001838 ! sublingual duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36580 ! -property_value: IAO:0000589 "bony labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001839 ! bony labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32832 ! -property_value: IAO:0000589 "semicircular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0001840 ! semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17299 ! -property_value: IAO:0000589 "anterior semicircular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17296 ! -property_value: IAO:0000589 "posterior semicircular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17821 ! -property_value: IAO:0000589 "lateral semicircular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17597 ! -property_value: IAO:0000589 "cochlea (embryonic mouse)" xsd:string -intersection_of: UBERON:0001844 ! cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36549 ! -property_value: IAO:0000589 "perilymph (embryonic mouse)" xsd:string -intersection_of: UBERON:0001845 ! perilymph -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16194 ! -property_value: IAO:0000589 "internal ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0001846 ! internal ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35158 ! -property_value: IAO:0000589 "auricular cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0001848 ! auricular cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17815 ! -property_value: IAO:0000589 "membranous labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19245 ! -property_value: IAO:0000589 "lacrimal drainage system (embryonic mouse)" xsd:string -intersection_of: UBERON:0001850 ! lacrimal drainage system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36548 ! -property_value: IAO:0000589 "endolymph (embryonic mouse)" xsd:string -intersection_of: UBERON:0001852 ! endolymph -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17293 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17290 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17598 ! -property_value: IAO:0000589 "cochlear duct of membranous labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32830 ! -property_value: IAO:0000589 "semicircular duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001856 ! semicircular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37411 ! {source="MA:th"} -property_value: IAO:0000589 "anterior semicircular duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001857 ! anterior semicircular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37413 ! {source="MA:th"} -property_value: IAO:0000589 "posterior semicircular duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001858 ! posterior semicircular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37412 ! {source="MA:th"} -property_value: IAO:0000589 "lateral semicircular duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001859 ! lateral semicircular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18580 ! -property_value: IAO:0000589 "endolymphatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17287 ! -property_value: IAO:0000589 "ductus reuniens (embryonic mouse)" xsd:string -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17286 ! -property_value: IAO:0000589 "vestibular labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17815 ! -property_value: IAO:0000589 "vestibular labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35753 ! -property_value: IAO:0000589 "scala vestibuli (embryonic mouse)" xsd:string -intersection_of: UBERON:0001863 ! scala vestibuli -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35752 ! -property_value: IAO:0000589 "scala tympani (embryonic mouse)" xsd:string -intersection_of: UBERON:0001864 ! scala tympani -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37525 ! {source="MA:th"} -property_value: IAO:0000589 "cartilaginous external acoustic tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0001865 ! cartilaginous external acoustic tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37706 ! {source="MA:th"} -property_value: IAO:0000589 "cartilage of external ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0001867 ! cartilage of external ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37279 ! {source="MA:th"} -property_value: IAO:0000589 "skin of chest (embryonic mouse)" xsd:string -intersection_of: UBERON:0001868 ! skin of chest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16653 ! -property_value: IAO:0000589 "cerebral hemisphere (embryonic mouse)" xsd:string -intersection_of: UBERON:0001869 ! cerebral hemisphere -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35357 ! -property_value: IAO:0000589 "frontal cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0001870 ! frontal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18797 ! -property_value: IAO:0000589 "temporal lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0001871 ! temporal lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18207 ! -property_value: IAO:0000589 "caudate nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35719 ! -property_value: IAO:0000589 "putamen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001874 ! putamen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35380 ! -property_value: IAO:0000589 "globus pallidus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001875 ! globus pallidus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32672 ! -property_value: IAO:0000589 "amygdala (embryonic mouse)" xsd:string -intersection_of: UBERON:0001876 ! amygdala -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36051 ! -property_value: IAO:0000589 "amygdala (embryonic mouse)" xsd:string -intersection_of: UBERON:0001876 ! amygdala -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35553 ! -property_value: IAO:0000589 "medial septal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001877 ! medial septal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35767 ! -property_value: IAO:0000589 "septofimbrial nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001878 ! septofimbrial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35598 ! -property_value: IAO:0000589 "nucleus of diagonal band (embryonic mouse)" xsd:string -intersection_of: UBERON:0001879 ! nucleus of diagonal band -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35169 ! -property_value: IAO:0000589 "bed nucleus of stria terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001880 ! bed nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35452 ! -property_value: IAO:0000589 "island of Calleja (embryonic mouse)" xsd:string -intersection_of: UBERON:0001881 ! island of Calleja -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32789 ! -property_value: IAO:0000589 "nucleus accumbens (embryonic mouse)" xsd:string -intersection_of: UBERON:0001882 ! nucleus accumbens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35616 ! -property_value: IAO:0000589 "olfactory tubercle (embryonic mouse)" xsd:string -intersection_of: UBERON:0001883 ! olfactory tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17813 ! -property_value: IAO:0000589 "phrenic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001884 ! phrenic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19037 ! -property_value: IAO:0000589 "dentate gyrus of hippocampal formation (embryonic mouse)" xsd:string -intersection_of: UBERON:0001885 ! dentate gyrus of hippocampal formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32741 ! -property_value: IAO:0000589 "choroid plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001886 ! choroid plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18206 ! -property_value: IAO:0000589 "internal capsule of telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001887 ! internal capsule of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35437 ! -property_value: IAO:0000589 "internal capsule of telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001887 ! internal capsule of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37718 ! {source="MA:th"} -property_value: IAO:0000589 "trunk of phrenic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001889 ! trunk of phrenic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16895 ! -property_value: IAO:0000589 "forebrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16974 ! -property_value: IAO:0000589 "midbrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16148 ! -property_value: IAO:0000589 "rhombomere (embryonic mouse)" xsd:string -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16910 ! -property_value: IAO:0000589 "telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16896 ! -property_value: IAO:0000589 "diencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17071 ! -property_value: IAO:0000589 "metencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17550 ! -property_value: IAO:0000589 "medulla oblongata (embryonic mouse)" xsd:string -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17540 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001897 ! dorsal plus ventral thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17536 ! -property_value: IAO:0000589 "hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17532 ! -property_value: IAO:0000589 "epithalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35915 ! -property_value: IAO:0000589 "ventral thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001900 ! ventral thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16855 ! -property_value: IAO:0000589 "epithelium of trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18409 ! -property_value: IAO:0000589 "epithelium of trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35778 ! -property_value: IAO:0000589 "epithelium of small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001902 ! epithelium of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35737 ! -property_value: IAO:0000589 "thalamic reticular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001903 ! thalamic reticular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35386 ! -property_value: IAO:0000589 "habenula (embryonic mouse)" xsd:string -intersection_of: UBERON:0001904 ! habenula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18778 ! -property_value: IAO:0000589 "pineal body (embryonic mouse)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35839 ! -property_value: IAO:0000589 "subthalamic nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001906 ! subthalamic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35930 ! -property_value: IAO:0000589 "zona incerta (embryonic mouse)" xsd:string -intersection_of: UBERON:0001907 ! zona incerta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16678 ! -property_value: IAO:0000589 "optic tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35617 ! -property_value: IAO:0000589 "optic tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37875 ! {source="MA:th"} -property_value: IAO:0000589 "habenular commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0001909 ! habenular commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17759 ! -property_value: IAO:0000589 "mammary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36634 ! -property_value: IAO:0000589 "lobule of mammary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0001912 ! lobule of mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36540 ! -property_value: IAO:0000589 "milk (embryonic mouse)" xsd:string -intersection_of: UBERON:0001913 ! milk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36292 ! -property_value: IAO:0000589 "endothelium of capillary (embryonic mouse)" xsd:string -intersection_of: UBERON:0001915 ! endothelium of capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36286 ! -property_value: IAO:0000589 "endothelium of arteriole (embryonic mouse)" xsd:string -intersection_of: UBERON:0001916 ! endothelium of arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35148 ! -property_value: IAO:0000589 "endothelium of artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0001917 ! endothelium of artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36290 ! -property_value: IAO:0000589 "endothelium of venule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001918 ! endothelium of venule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36288 ! -property_value: IAO:0000589 "endothelium of vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0001919 ! endothelium of vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35666 ! -property_value: IAO:0000589 "paraventricular nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001920 ! paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35602 ! -property_value: IAO:0000589 "reuniens nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001921 ! reuniens nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35659 ! -property_value: IAO:0000589 "parafascicular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001922 ! parafascicular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35206 ! -property_value: IAO:0000589 "central medial nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001923 ! central medial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35658 ! -property_value: IAO:0000589 "paracentral nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001924 ! paracentral nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36654 ! -property_value: IAO:0000589 "ventral lateral nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001925 ! ventral lateral nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35478 ! -property_value: IAO:0000589 "lateral geniculate body (embryonic mouse)" xsd:string -intersection_of: UBERON:0001926 ! lateral geniculate body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35546 ! -property_value: IAO:0000589 "medial geniculate body (embryonic mouse)" xsd:string -intersection_of: UBERON:0001927 ! medial geniculate body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36655 ! -property_value: IAO:0000589 "preoptic area (embryonic mouse)" xsd:string -intersection_of: UBERON:0001928 ! preoptic area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35843 ! -property_value: IAO:0000589 "supraoptic nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001929 ! supraoptic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35665 ! -property_value: IAO:0000589 "paraventricular nucleus of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001930 ! paraventricular nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35483 ! -property_value: IAO:0000589 "lateral preoptic nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001931 ! lateral preoptic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35142 ! -property_value: IAO:0000589 "arcuate nucleus of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001932 ! arcuate nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37732 ! {source="MA:th"} -property_value: IAO:0000589 "retrochiasmatic area (embryonic mouse)" xsd:string -intersection_of: UBERON:0001933 ! retrochiasmatic area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35297 ! -property_value: IAO:0000589 "dorsomedial nucleus of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001934 ! dorsomedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35916 ! -property_value: IAO:0000589 "ventromedial nucleus of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001935 ! ventromedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35889 ! -property_value: IAO:0000589 "tuberomammillary nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001936 ! tuberomammillary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35481 ! -property_value: IAO:0000589 "lateral mammillary nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001938 ! lateral mammillary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35548 ! -property_value: IAO:0000589 "medial mammillary nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001939 ! medial mammillary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35842 ! -property_value: IAO:0000589 "supramammillary nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001940 ! supramammillary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35479 ! -property_value: IAO:0000589 "lateral habenular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001941 ! lateral habenular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35547 ! -property_value: IAO:0000589 "medial habenular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001942 ! medial habenular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18215 ! -property_value: IAO:0000589 "midbrain tegmentum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32778 ! -property_value: IAO:0000589 "pretectal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0001944 ! pretectal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32869 ! -property_value: IAO:0000589 "superior colliculus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32870 ! -property_value: IAO:0000589 "inferior colliculus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001946 ! inferior colliculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35724 ! -property_value: IAO:0000589 "red nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001947 ! red nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32842 ! -property_value: IAO:0000589 "neocortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0001950 ! neocortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35589 ! -property_value: IAO:0000589 "neocortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0001950 ! neocortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17672 ! -property_value: IAO:0000589 "epithelium of nasopharynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37705 ! {source="MA:th"} -property_value: IAO:0000589 "epithelium of oropharynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0001952 ! epithelium of oropharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35703 ! -property_value: IAO:0000589 "presubiculum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001953 ! presubiculum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32772 ! -property_value: IAO:0000589 "Ammon's horn (embryonic mouse)" xsd:string -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32845 ! -property_value: IAO:0000589 "Ammon's horn (embryonic mouse)" xsd:string -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35730 ! -property_value: IAO:0000589 "epithelium of respiratory bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0001955 ! epithelium of respiratory bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35192 ! -property_value: IAO:0000589 "cartilage of bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001956 ! cartilage of bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37449 ! {source="MA:th"} -property_value: IAO:0000589 "submucosa of bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001957 ! submucosa of bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36283 ! -property_value: IAO:0000589 "terminal bronchiole epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001958 ! terminal bronchiole epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35809 ! -property_value: IAO:0000589 "white pulp of spleen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001959 ! white pulp of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37750 ! {source="MA:th"} -property_value: IAO:0000589 "periarterial lymphatic sheath (embryonic mouse)" xsd:string -intersection_of: UBERON:0001960 ! periarterial lymphatic sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29691 ! -property_value: IAO:0000589 "least splanchnic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0001964 ! least splanchnic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35836 ! -property_value: IAO:0000589 "substantia nigra pars compacta (embryonic mouse)" xsd:string -intersection_of: UBERON:0001965 ! substantia nigra pars compacta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35838 ! -property_value: IAO:0000589 "substantia nigra pars reticulata (embryonic mouse)" xsd:string -intersection_of: UBERON:0001966 ! substantia nigra pars reticulata -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31488 ! -property_value: IAO:0000589 "semen (embryonic mouse)" xsd:string -intersection_of: UBERON:0001968 ! semen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35690 ! -property_value: IAO:0000589 "blood plasma (embryonic mouse)" xsd:string -intersection_of: UBERON:0001969 ! blood plasma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35325 ! -property_value: IAO:0000589 "submucosa of esophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001972 ! submucosa of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26987 ! -property_value: IAO:0000589 "lamina propria of esophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001974 ! lamina propria of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35322 ! -property_value: IAO:0000589 "serosa of esophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001975 ! serosa of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16835 ! -property_value: IAO:0000589 "epithelium of esophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35770 ! -property_value: IAO:0000589 "blood serum (embryonic mouse)" xsd:string -intersection_of: UBERON:0001977 ! blood serum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32925 ! -property_value: IAO:0000589 "parenchyma of pancreas (embryonic mouse)" xsd:string -intersection_of: UBERON:0001978 ! parenchyma of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35917 ! -property_value: IAO:0000589 "venule (embryonic mouse)" xsd:string -intersection_of: UBERON:0001979 ! venule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35146 ! -property_value: IAO:0000589 "arteriole (embryonic mouse)" xsd:string -intersection_of: UBERON:0001980 ! arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32743 ! -property_value: IAO:0000589 "blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35993 ! -property_value: IAO:0000589 "blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35198 ! -property_value: IAO:0000589 "capillary (embryonic mouse)" xsd:string -intersection_of: UBERON:0001982 ! capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35266 ! -property_value: IAO:0000589 "crypt of Lieberkuhn (embryonic mouse)" xsd:string -intersection_of: UBERON:0001983 ! crypt of Lieberkuhn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35465 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of large intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0001984 ! crypt of Lieberkuhn of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35935 ! -property_value: IAO:0000589 "corneal endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001985 ! corneal endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35689 ! -property_value: IAO:0000589 "placenta (embryonic mouse)" xsd:string -intersection_of: UBERON:0001987 ! placenta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18441 ! -property_value: IAO:0000589 "superior cervical ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18440 ! -property_value: IAO:0000589 "middle cervical ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18438 ! -property_value: IAO:0000589 "cervical ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35282 ! -property_value: IAO:0000589 "papillary layer of dermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001992 ! papillary layer of dermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35283 ! -property_value: IAO:0000589 "reticular layer of dermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0001993 ! reticular layer of dermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35414 ! -property_value: IAO:0000589 "hyaline cartilage tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0001994 ! hyaline cartilage tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17606 ! -property_value: IAO:0000589 "olfactory epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18520 ! -property_value: IAO:0000589 "iliopsoas (embryonic mouse)" xsd:string -intersection_of: UBERON:0001999 ! iliopsoas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18186 ! -property_value: IAO:0000589 "gluteal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002000 ! gluteal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18577 ! -property_value: IAO:0000589 "trunk of sciatic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002004 ! trunk of sciatic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26922 ! -property_value: IAO:0000589 "enteric nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002005 ! enteric nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35525 ! -property_value: IAO:0000589 "cortex of lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0002006 ! cortex of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35529 ! -property_value: IAO:0000589 "medulla of lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0002007 ! medulla of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37460 ! {source="MA:th"} -property_value: IAO:0000589 "cardiac nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002008 ! cardiac nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37462 ! {source="MA:th"} -property_value: IAO:0000589 "pulmonary nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002009 ! pulmonary nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37461 ! {source="MA:th"} -property_value: IAO:0000589 "celiac nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002010 ! celiac nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37129 ! {source="MA:th"} -property_value: IAO:0000589 "thoracodorsal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002011 ! thoracodorsal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17008 ! -property_value: IAO:0000589 "pulmonary artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19274 ! -property_value: IAO:0000589 "superior hypogastric nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002013 ! superior hypogastric nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19275 ! -property_value: IAO:0000589 "inferior hypogastric nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002014 ! inferior hypogastric nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18679 ! -property_value: IAO:0000589 "kidney capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0002015 ! kidney capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18645 ! -property_value: IAO:0000589 "pulmonary vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17349 ! -property_value: IAO:0000589 "portal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002017 ! portal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37476 ! {source="MA:th"} -property_value: IAO:0000589 "synovial membrane of synovial joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0002018 ! synovial membrane of synovial joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17265 ! -property_value: IAO:0000589 "accessory XI nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37596 ! {source="MA:th"} -property_value: IAO:0000589 "gray matter (embryonic mouse)" xsd:string -intersection_of: UBERON:0002020 ! gray matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35244 ! -property_value: IAO:0000589 "claustrum of brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0002023 ! claustrum of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37618 ! {source="MA:th"} -property_value: IAO:0000589 "internal carotid nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002024 ! internal carotid nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32779 ! -property_value: IAO:0000589 "stratum basale of epidermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002025 ! stratum basale of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32785 ! -property_value: IAO:0000589 "stratum spinosum of epidermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002026 ! stratum spinosum of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32787 ! -property_value: IAO:0000589 "stratum corneum of epidermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002027 ! stratum corneum of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16916 ! -property_value: IAO:0000589 "hindbrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35370 ! -property_value: IAO:0000589 "epithelium of gall bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0002029 ! epithelium of gall bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36508 ! -property_value: IAO:0000589 "nipple (embryonic mouse)" xsd:string -intersection_of: UBERON:0002030 ! nipple -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32691 ! -property_value: IAO:0000589 "epithelium of bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002031 ! epithelium of bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26775 ! -property_value: IAO:0000589 "arrector muscle of hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0002033 ! arrector muscle of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35841 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002034 ! suprachiasmatic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35549 ! -property_value: IAO:0000589 "medial preoptic nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002035 ! medial preoptic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36390 ! -property_value: IAO:0000589 "striated muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0002036 ! striated muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17787 ! -property_value: IAO:0000589 "cerebellum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35835 ! -property_value: IAO:0000589 "substantia nigra (embryonic mouse)" xsd:string -intersection_of: UBERON:0002038 ! substantia nigra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37157 ! {source="MA:th"} -property_value: IAO:0000589 "inferior phrenic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002039 ! inferior phrenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18608 ! -property_value: IAO:0000589 "bronchial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002040 ! bronchial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37763 ! {source="MA:th"} -property_value: IAO:0000589 "terminal bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002041 ! terminal bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35533 ! -property_value: IAO:0000589 "lymphatic vessel endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002042 ! lymphatic vessel endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35293 ! -property_value: IAO:0000589 "dorsal raphe nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002043 ! dorsal raphe nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35597 ! -property_value: IAO:0000589 "ventral nucleus of posterior commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0002044 ! ventral nucleus of posterior commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35268 ! -property_value: IAO:0000589 "cuneate nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002045 ! cuneate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17068 ! -property_value: IAO:0000589 "thyroid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16728 ! -property_value: IAO:0000589 "lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0002048 ! lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32693 ! -property_value: IAO:0000589 "epithelium of bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0002051 ! epithelium of bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35115 ! -property_value: IAO:0000589 "zona glomerulosa of adrenal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002053 ! zona glomerulosa of adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35114 ! -property_value: IAO:0000589 "zona fasciculata of adrenal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002054 ! zona fasciculata of adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35116 ! -property_value: IAO:0000589 "zona reticularis of adrenal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002055 ! zona reticularis of adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37088 ! {source="MA:th"} -property_value: IAO:0000589 "inferior suprarenal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002056 ! inferior suprarenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37108 ! {source="MA:th"} -property_value: IAO:0000589 "phrenic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002057 ! phrenic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18222 ! -property_value: IAO:0000589 "main ciliary ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002058 ! main ciliary ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36276 ! -property_value: IAO:0000589 "submandibular ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002059 ! submandibular ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35342 ! -property_value: IAO:0000589 "femoral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002060 ! femoral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35887 ! -property_value: IAO:0000589 "truncus arteriosus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002061 ! truncus arteriosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16696 ! -property_value: IAO:0000589 "endocardial cushion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16237 ! -property_value: IAO:0000589 "sinus venosus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16356 ! -property_value: IAO:0000589 "common cardinal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16357 ! -property_value: IAO:0000589 "posterior cardinal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16243 ! -property_value: IAO:0000589 "umbilical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16375 ! -property_value: IAO:0000589 "umbilical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17527 ! -property_value: IAO:0000589 "dermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002067 ! dermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18323 ! -property_value: IAO:0000589 "urachus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002068 ! urachus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32786 ! -property_value: IAO:0000589 "stratum granulosum of epidermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002069 ! stratum granulosum of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37121 ! {source="MA:th"} -property_value: IAO:0000589 "superior pancreaticoduodenal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002070 ! superior pancreaticoduodenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35314 ! -property_value: IAO:0000589 "stratum lucidum of epidermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002071 ! stratum lucidum of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37505 ! {source="MA:th"} -property_value: IAO:0000589 "hypodermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002072 ! hypodermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18771 ! -property_value: IAO:0000589 "hair follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002073 ! hair follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29741 ! -property_value: IAO:0000589 "hair follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002073 ! hair follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36498 ! -property_value: IAO:0000589 "hair shaft (embryonic mouse)" xsd:string -intersection_of: UBERON:0002074 ! hair shaft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16245 ! -property_value: IAO:0000589 "viscus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002075 ! viscus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35388 ! -property_value: IAO:0000589 "cuticle of hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0002076 ! cuticle of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35387 ! -property_value: IAO:0000589 "cortex of hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0002077 ! cortex of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17321 ! -property_value: IAO:0000589 "right cardiac atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002078 ! right cardiac atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17315 ! -property_value: IAO:0000589 "left cardiac atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002079 ! left cardiac atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17340 ! -property_value: IAO:0000589 "heart right ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16688 ! -property_value: IAO:0000589 "cardiac atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17331 ! -property_value: IAO:0000589 "cardiac ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17343 ! -property_value: IAO:0000589 "ductus venosus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17337 ! -property_value: IAO:0000589 "heart left ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17011 ! -property_value: IAO:0000589 "interatrial septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16546 ! -property_value: IAO:0000589 "atrioventricular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37163 ! {source="MA:th"} -property_value: IAO:0000589 "lateral thoracic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002088 ! lateral thoracic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37198 ! {source="MA:th"} -property_value: IAO:0000589 "thoracodorsal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002089 ! thoracodorsal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17214 ! -property_value: IAO:0000589 "postcranial axial skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37721 ! {source="MA:th"} -property_value: IAO:0000589 "postcranial axial skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32729 ! -property_value: IAO:0000589 "appendicular skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0002091 ! appendicular skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32668 ! -property_value: IAO:0000589 "brain dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0002092 ! brain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17806 ! -property_value: IAO:0000589 "spinal dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17333 ! -property_value: IAO:0000589 "interventricular septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17525 ! -property_value: IAO:0000589 "skin of body (embryonic mouse)" xsd:string -intersection_of: UBERON:0002097 ! skin of body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35400 ! -property_value: IAO:0000589 "cardiac septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002099 ! cardiac septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31857 ! -property_value: IAO:0000589 "trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0002100 ! trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16405 ! -property_value: IAO:0000589 "limb (embryonic mouse)" xsd:string -intersection_of: UBERON:0002101 ! limb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17412 ! -property_value: IAO:0000589 "forelimb (embryonic mouse)" xsd:string -intersection_of: UBERON:0002102 ! forelimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17458 ! -property_value: IAO:0000589 "hindlimb (embryonic mouse)" xsd:string -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36003 ! -property_value: IAO:0000589 "visual system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002104 ! visual system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36002 ! -property_value: IAO:0000589 "vestibulo-auditory system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002105 ! vestibulo-auditory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37985 ! {source="MA:th"} -property_value: IAO:0000589 "vestibulo-auditory system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002105 ! vestibulo-auditory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18767 ! -property_value: IAO:0000589 "spleen (embryonic mouse)" xsd:string -intersection_of: UBERON:0002106 ! spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16846 ! -property_value: IAO:0000589 "liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0002107 ! liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32834 ! -property_value: IAO:0000589 "small intestine (embryonic mouse)" xsd:string -intersection_of: UBERON:0002108 ! small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17202 ! -property_value: IAO:0000589 "gallbladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36285 ! -property_value: IAO:0000589 "artery smooth muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0002111 ! artery smooth muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35323 ! -property_value: IAO:0000589 "smooth muscle of esophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002112 ! smooth muscle of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17373 ! -property_value: IAO:0000589 "kidney (embryonic mouse)" xsd:string -intersection_of: UBERON:0002113 ! kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18852 ! -property_value: IAO:0000589 "duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002114 ! duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18666 ! -property_value: IAO:0000589 "jejunum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002115 ! jejunum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32764 ! -property_value: IAO:0000589 "ileum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002116 ! ileum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37367 ! {source="MA:th"} -property_value: IAO:0000589 "right ovary (embryonic mouse)" xsd:string -intersection_of: UBERON:0002118 ! right ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37366 ! {source="MA:th"} -property_value: IAO:0000589 "left ovary (embryonic mouse)" xsd:string -intersection_of: UBERON:0002119 ! left ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16579 ! -property_value: IAO:0000589 "pronephros (embryonic mouse)" xsd:string -intersection_of: UBERON:0002120 ! pronephros -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19306 ! -property_value: IAO:0000589 "capsule of thymus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002122 ! capsule of thymus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35863 ! -property_value: IAO:0000589 "cortex of thymus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002123 ! cortex of thymus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19305 ! -property_value: IAO:0000589 "medulla of thymus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002124 ! medulla of thymus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19241 ! -property_value: IAO:0000589 "inferior olivary complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002127 ! inferior olivary complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35840 ! -property_value: IAO:0000589 "superior olivary complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002128 ! superior olivary complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35211 ! -property_value: IAO:0000589 "cerebellar cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002129 ! cerebellar cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35215 ! -property_value: IAO:0000589 "anterior lobe of cerebellum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002131 ! anterior lobe of cerebellum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35154 ! -property_value: IAO:0000589 "atrioventricular valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002133 ! atrioventricular valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17873 ! -property_value: IAO:0000589 "tricuspid valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17871 ! -property_value: IAO:0000589 "mitral valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35277 ! -property_value: IAO:0000589 "hilus of dentate gyrus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002136 ! hilus of dentate gyrus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17870 ! -property_value: IAO:0000589 "aortic valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36606 ! -property_value: IAO:0000589 "habenulo-interpeduncular tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0002138 ! habenulo-interpeduncular tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35828 ! -property_value: IAO:0000589 "subcommissural organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0002139 ! subcommissural organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35656 ! -property_value: IAO:0000589 "parabigeminal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002140 ! parabigeminal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35302 ! -property_value: IAO:0000589 "parvocellular oculomotor nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002141 ! parvocellular oculomotor nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35672 ! -property_value: IAO:0000589 "pedunculopontine tegmental nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002142 ! pedunculopontine tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35294 ! -property_value: IAO:0000589 "dorsal tegmental nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002143 ! dorsal tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37717 ! {source="MA:th"} -property_value: IAO:0000589 "peripeduncular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002144 ! peripeduncular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35439 ! -property_value: IAO:0000589 "interpeduncular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002145 ! interpeduncular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17872 ! -property_value: IAO:0000589 "pulmonary valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35736 ! -property_value: IAO:0000589 "reticulotegmental nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002147 ! reticulotegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35502 ! -property_value: IAO:0000589 "locus ceruleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002148 ! locus ceruleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37756 ! {source="MA:th"} -property_value: IAO:0000589 "superior salivatory nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002149 ! superior salivatory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35692 ! -property_value: IAO:0000589 "pontine nuclear group (embryonic mouse)" xsd:string -intersection_of: UBERON:0002151 ! pontine nuclear group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35484 ! -property_value: IAO:0000589 "lateral reticular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002154 ! lateral reticular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35378 ! -property_value: IAO:0000589 "gigantocellular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002155 ! gigantocellular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35720 ! -property_value: IAO:0000589 "nucleus raphe magnus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002156 ! nucleus raphe magnus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35722 ! -property_value: IAO:0000589 "nucleus raphe pallidus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002157 ! nucleus raphe pallidus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37615 ! {source="MA:th"} -property_value: IAO:0000589 "principal inferior olivary nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002158 ! principal inferior olivary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37614 ! {source="MA:th"} -property_value: IAO:0000589 "medial accessory inferior olivary nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002159 ! medial accessory inferior olivary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36622 ! -property_value: IAO:0000589 "nucleus prepositus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002160 ! nucleus prepositus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37593 ! {source="MA:th"} -property_value: IAO:0000589 "gracile nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002161 ! gracile nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35143 ! -property_value: IAO:0000589 "area postrema (embryonic mouse)" xsd:string -intersection_of: UBERON:0002162 ! area postrema -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17868 ! -property_value: IAO:0000589 "endocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32686 ! -property_value: IAO:0000589 "endocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32745 ! -property_value: IAO:0000589 "endocardium of atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002166 ! endocardium of atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17661 ! -property_value: IAO:0000589 "right lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0002167 ! right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17653 ! -property_value: IAO:0000589 "left lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0002168 ! left lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35119 ! -property_value: IAO:0000589 "alveolar sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0002169 ! alveolar sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17991 ! -property_value: IAO:0000589 "upper lobe of right lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17986 ! -property_value: IAO:0000589 "lower lobe of right lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37390 ! {source="MA:th"} -property_value: IAO:0000589 "alveolar atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002172 ! alveolar atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32694 ! -property_value: IAO:0000589 "pulmonary alveolar duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002173 ! pulmonary alveolar duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17997 ! -property_value: IAO:0000589 "middle lobe of right lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36565 ! -property_value: IAO:0000589 "intermediolateral nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002175 ! intermediolateral nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37633 ! {source="MA:th"} -property_value: IAO:0000589 "lateral cervical nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002176 ! lateral cervical nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37365 ! {source="MA:th"} -property_value: IAO:0000589 "right main bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002177 ! right main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37364 ! {source="MA:th"} -property_value: IAO:0000589 "left main bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002178 ! left main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36510 ! -property_value: IAO:0000589 "substantia gelatinosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0002181 ! substantia gelatinosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16849 ! -property_value: IAO:0000589 "main bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32696 ! -property_value: IAO:0000589 "lobar bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37739 ! {source="MA:th"} -property_value: IAO:0000589 "segmental bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002184 ! segmental bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32689 ! -property_value: IAO:0000589 "bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002185 ! bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32697 ! -property_value: IAO:0000589 "bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0002186 ! bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36282 ! -property_value: IAO:0000589 "terminal bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0002187 ! terminal bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35729 ! -property_value: IAO:0000589 "respiratory bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0002188 ! respiratory bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37485 ! {source="MA:th"} -property_value: IAO:0000589 "outer cortex of kidney (embryonic mouse)" xsd:string -intersection_of: UBERON:0002189 ! outer cortex of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35829 ! -property_value: IAO:0000589 "subcutaneous adipose tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0002190 ! subcutaneous adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35832 ! -property_value: IAO:0000589 "subiculum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002191 ! subiculum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17548 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17768 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18765 ! -property_value: IAO:0000589 "hemolymphoid system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002193 ! hemolymphoid system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35524 ! -property_value: IAO:0000589 "capsule of lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0002194 ! capsule of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17514 ! -property_value: IAO:0000589 "adenohypophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17521 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17519 ! -property_value: IAO:0000589 "neurohypophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37504 ! {source="MA:th"} -property_value: IAO:0000589 "integument (embryonic mouse)" xsd:string -intersection_of: UBERON:0002199 ! integument -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35879 ! -property_value: IAO:0000589 "submucosa of trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0002202 ! submucosa of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32714 ! -property_value: IAO:0000589 "musculoskeletal system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002204 ! musculoskeletal system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18723 ! -property_value: IAO:0000589 "manubrium of sternum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002205 ! manubrium of sternum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35542 ! -property_value: IAO:0000589 "mammillary body (embryonic mouse)" xsd:string -intersection_of: UBERON:0002206 ! mammillary body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18725 ! -property_value: IAO:0000589 "xiphoid process (embryonic mouse)" xsd:string -intersection_of: UBERON:0002207 ! xiphoid process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18724 ! -property_value: IAO:0000589 "sternebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0002208 ! sternebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35344 ! -property_value: IAO:0000589 "fibrous joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0002209 ! fibrous joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37465 ! {source="MA:th"} -property_value: IAO:0000589 "syndesmosis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002210 ! syndesmosis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35534 ! -property_value: IAO:0000589 "macula of saccule of membranous labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0002212 ! macula of saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36581 ! -property_value: IAO:0000589 "cartilaginous joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0002213 ! cartilaginous joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35535 ! -property_value: IAO:0000589 "macula of utricle of membranous labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0002214 ! macula of utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35846 ! -property_value: IAO:0000589 "synchondrosis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002215 ! synchondrosis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37758 ! {source="MA:th"} -property_value: IAO:0000589 "symphysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002216 ! symphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19197 ! -property_value: IAO:0000589 "tympanic ring (embryonic mouse)" xsd:string -intersection_of: UBERON:0002218 ! tympanic ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35830 ! -property_value: IAO:0000589 "subfornical organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0002219 ! subfornical organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35676 ! -property_value: IAO:0000589 "perichondrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002222 ! perichondrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17593 ! -property_value: IAO:0000589 "endolymphatic sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0002223 ! endolymphatic sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36497 ! -property_value: IAO:0000589 "thoracic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0002224 ! thoracic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37491 ! {source="MA:th"} -property_value: IAO:0000589 "costal arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0002225 ! costal arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35166 ! -property_value: IAO:0000589 "basilar membrane of cochlea (embryonic mouse)" xsd:string -intersection_of: UBERON:0002226 ! basilar membrane of cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19061 ! -property_value: IAO:0000589 "spiral organ of cochlea (embryonic mouse)" xsd:string -intersection_of: UBERON:0002227 ! spiral organ of cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18010 ! -property_value: IAO:0000589 "rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0002228 ! rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19017 ! -property_value: IAO:0000589 "interparietal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0002229 ! interparietal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37735 ! {source="MA:th"} -property_value: IAO:0000589 "head of rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0002230 ! head of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36014 ! -property_value: IAO:0000589 "body of rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0002231 ! body of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35613 ! -property_value: IAO:0000589 "olfactory gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002232 ! olfactory gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35851 ! -property_value: IAO:0000589 "tectorial membrane of cochlea (embryonic mouse)" xsd:string -intersection_of: UBERON:0002233 ! tectorial membrane of cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37307 ! {source="MA:th"} -property_value: IAO:0000589 "proximal phalanx of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002234 ! proximal phalanx of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37736 ! {source="MA:th"} -property_value: IAO:0000589 "tubercle of rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0002235 ! tubercle of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35262 ! -property_value: IAO:0000589 "costal cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0002236 ! costal cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37774 ! {source="MA:th"} -property_value: IAO:0000589 "true rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0002237 ! true rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37493 ! {source="MA:th"} -property_value: IAO:0000589 "false rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0002238 ! false rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37494 ! {source="MA:th"} -property_value: IAO:0000589 "floating rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0002239 ! floating rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17577 ! -property_value: IAO:0000589 "spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17681 ! -property_value: IAO:0000589 "chondrocranium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18008 ! -property_value: IAO:0000589 "nucleus pulposus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002242 ! nucleus pulposus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37506 ! {source="MA:th"} -property_value: IAO:0000589 "cutaneous vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002243 ! cutaneous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17641 ! -property_value: IAO:0000589 "premaxilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35218 ! -property_value: IAO:0000589 "cerebellar hemisphere (embryonic mouse)" xsd:string -intersection_of: UBERON:0002245 ! cerebellar hemisphere -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37635 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal thoracic nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002246 ! dorsal thoracic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18985 ! -property_value: IAO:0000589 "uterine horn (embryonic mouse)" xsd:string -intersection_of: UBERON:0002247 ! uterine horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16214 ! -property_value: IAO:0000589 "transverse pericardial sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37103 ! {source="MA:th"} -property_value: IAO:0000589 "median artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002249 ! median artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37109 ! {source="MA:th"} -property_value: IAO:0000589 "popliteal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002250 ! popliteal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37603 ! {source="MA:th"} -property_value: IAO:0000589 "iliocostalis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002251 ! iliocostalis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37701 ! {source="MA:th"} -property_value: IAO:0000589 "splenius (embryonic mouse)" xsd:string -intersection_of: UBERON:0002252 ! splenius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17070 ! -property_value: IAO:0000589 "thyroglossal duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17612 ! -property_value: IAO:0000589 "vomeronasal organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18574 ! -property_value: IAO:0000589 "dorsal horn of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35790 ! -property_value: IAO:0000589 "dorsal horn of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18575 ! -property_value: IAO:0000589 "ventral horn of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35794 ! -property_value: IAO:0000589 "ventral horn of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36556 ! -property_value: IAO:0000589 "corpora quadrigemina (embryonic mouse)" xsd:string -intersection_of: UBERON:0002259 ! corpora quadrigemina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19321 ! -property_value: IAO:0000589 "celiac ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002262 ! celiac ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18208 ! -property_value: IAO:0000589 "lentiform nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19147 ! -property_value: IAO:0000589 "lentiform nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32809 ! -property_value: IAO:0000589 "olfactory bulb (embryonic mouse)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35615 ! -property_value: IAO:0000589 "olfactory tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0002265 ! olfactory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35131 ! -property_value: IAO:0000589 "anterior olfactory nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002266 ! anterior olfactory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35490 ! -property_value: IAO:0000589 "laterodorsal tegmental nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002267 ! laterodorsal tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19242 ! -property_value: IAO:0000589 "hyaloid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002270 ! hyaloid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35421 ! -property_value: IAO:0000589 "periventricular zone of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002271 ! periventricular zone of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35419 ! -property_value: IAO:0000589 "medial zone of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002272 ! medial zone of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35418 ! -property_value: IAO:0000589 "lateral zone of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002273 ! lateral zone of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37716 ! {source="MA:th"} -property_value: IAO:0000589 "perifornical nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002274 ! perifornical nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35188 ! -property_value: IAO:0000589 "reticular formation (embryonic mouse)" xsd:string -intersection_of: UBERON:0002275 ! reticular formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35496 ! -property_value: IAO:0000589 "lamina of spiral limbus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002276 ! lamina of spiral limbus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35800 ! -property_value: IAO:0000589 "spiral sulcus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002277 ! spiral sulcus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37924 ! {source="MA:th"} -property_value: IAO:0000589 "otolith (embryonic mouse)" xsd:string -intersection_of: UBERON:0002280 ! otolith -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35922 ! -property_value: IAO:0000589 "vestibular membrane of cochlear duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002281 ! vestibular membrane of cochlear duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35827 ! -property_value: IAO:0000589 "stria vascularis of cochlear duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002282 ! stria vascularis of cochlear duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35582 ! -property_value: IAO:0000589 "nail matrix (embryonic mouse)" xsd:string -intersection_of: UBERON:0002283 ! nail matrix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37508 ! {source="MA:th"} -property_value: IAO:0000589 "hyponychium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002284 ! hyponychium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16900 ! -property_value: IAO:0000589 "third ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16902 ! -property_value: IAO:0000589 "optic recess of third ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18543 ! -property_value: IAO:0000589 "choroid plexus of third ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002288 ! choroid plexus of third ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17795 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32742 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002290 ! choroid plexus of fourth ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35789 ! -property_value: IAO:0000589 "central canal of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002291 ! central canal of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19020 ! -property_value: IAO:0000589 "costovertebral joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0002292 ! costovertebral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36490 ! -property_value: IAO:0000589 "costochondral joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0002293 ! costochondral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35751 ! -property_value: IAO:0000589 "scala media (embryonic mouse)" xsd:string -intersection_of: UBERON:0002295 ! scala media -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32678 ! -property_value: IAO:0000589 "brainstem (embryonic mouse)" xsd:string -intersection_of: UBERON:0002298 ! brainstem -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32682 ! -property_value: IAO:0000589 "alveolus of lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0002299 ! alveolus of lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35588 ! -property_value: IAO:0000589 "layer of neocortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002301 ! layer of neocortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32746 ! -property_value: IAO:0000589 "myocardium of atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002302 ! myocardium of atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30449 ! -property_value: IAO:0000589 "juxtaglomerular apparatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002303 ! juxtaglomerular apparatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35278 ! -property_value: IAO:0000589 "layer of dentate gyrus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002304 ! layer of dentate gyrus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35407 ! -property_value: IAO:0000589 "layer of hippocampus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002305 ! layer of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36552 ! -property_value: IAO:0000589 "nasal mucus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002306 ! nasal mucus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17769 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002307 ! choroid plexus of lateral ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35185 ! -property_value: IAO:0000589 "nucleus of brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0002308 ! nucleus of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35345 ! -property_value: IAO:0000589 "hippocampus fimbria (embryonic mouse)" xsd:string -intersection_of: UBERON:0002310 ! hippocampus fimbria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35409 ! -property_value: IAO:0000589 "hippocampus pyramidal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0002313 ! hippocampus pyramidal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19051 ! -property_value: IAO:0000589 "midbrain tectum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35792 ! -property_value: IAO:0000589 "gray matter of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002315 ! gray matter of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35927 ! -property_value: IAO:0000589 "white matter (embryonic mouse)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35235 ! -property_value: IAO:0000589 "white matter of cerebellum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002317 ! white matter of cerebellum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35795 ! -property_value: IAO:0000589 "white matter of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002318 ! white matter of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28248 ! -property_value: IAO:0000589 "mesangium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002319 ! mesangium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36561 ! {source="MA:th"} -property_value: IAO:0000589 "mesangium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002319 ! mesangium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27961 ! -property_value: IAO:0000589 "glomerular mesangium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002320 ! glomerular mesangium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28248 ! -property_value: IAO:0000589 "glomerular mesangium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002320 ! glomerular mesangium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28278 ! -property_value: IAO:0000589 "extraglomerular mesangium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002321 ! extraglomerular mesangium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35161 ! -property_value: IAO:0000589 "muscle of back (embryonic mouse)" xsd:string -intersection_of: UBERON:0002324 ! muscle of back -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31518 ! -property_value: IAO:0000589 "epithelium of urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0002325 ! epithelium of urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37785 ! {source="MA:th"} -property_value: IAO:0000589 "lamina propria of urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0002326 ! lamina propria of urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18227 ! -property_value: IAO:0000589 "trunk of intercostal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002327 ! trunk of intercostal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37720 ! {source="MA:th"} -property_value: IAO:0000589 "trunk of intercostal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002327 ! trunk of intercostal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16191 ! -property_value: IAO:0000589 "notochord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002328 ! notochord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31169 ! -property_value: IAO:0000589 "somite (embryonic mouse)" xsd:string -intersection_of: UBERON:0002329 ! somite -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35329 ! -property_value: IAO:0000589 "exocrine system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002330 ! exocrine system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26115 ! -property_value: IAO:0000589 "umbilical cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0002331 ! umbilical cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17015 ! -property_value: IAO:0000589 "pulmonary trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35833 ! -property_value: IAO:0000589 "submandibular duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002334 ! submandibular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28399 ! -property_value: IAO:0000589 "macula densa (embryonic mouse)" xsd:string -intersection_of: UBERON:0002335 ! macula densa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35253 ! -property_value: IAO:0000589 "corpus callosum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002336 ! corpus callosum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35310 ! -property_value: IAO:0000589 "endometrial stroma (embryonic mouse)" xsd:string -intersection_of: UBERON:0002337 ! endometrial stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35194 ! -property_value: IAO:0000589 "lamina propria of bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002338 ! lamina propria of bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32695 ! -property_value: IAO:0000589 "epithelium of lobar bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16851 ! -property_value: IAO:0000589 "epithelium of main bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37740 ! {source="MA:th"} -property_value: IAO:0000589 "epithelium of segmental bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002341 ! epithelium of segmental bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32737 ! -property_value: IAO:0000589 "neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0002342 ! neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18605 ! -property_value: IAO:0000589 "descending thoracic aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0002345 ! descending thoracic aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16073 ! -property_value: IAO:0000589 "neurectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18011 ! -property_value: IAO:0000589 "thoracic vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0002347 ! thoracic vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32688 ! -property_value: IAO:0000589 "myocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002349 ! myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35428 ! -property_value: IAO:0000589 "conducting system of heart (embryonic mouse)" xsd:string -intersection_of: UBERON:0002350 ! conducting system of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35772 ! -property_value: IAO:0000589 "sinoatrial node (embryonic mouse)" xsd:string -intersection_of: UBERON:0002351 ! sinoatrial node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35153 ! -property_value: IAO:0000589 "atrioventricular node (embryonic mouse)" xsd:string -intersection_of: UBERON:0002352 ! atrioventricular node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35152 ! -property_value: IAO:0000589 "bundle of His (embryonic mouse)" xsd:string -intersection_of: UBERON:0002353 ! bundle of His -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35718 ! -property_value: IAO:0000589 "cardiac Purkinje fiber (embryonic mouse)" xsd:string -intersection_of: UBERON:0002354 ! cardiac Purkinje fiber -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35931 ! -property_value: IAO:0000589 "pelvic region of trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0002355 ! pelvic region of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36628 ! -property_value: IAO:0000589 "perineum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002356 ! perineum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19030 ! -property_value: IAO:0000589 "serous pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002357 ! serous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19029 ! -property_value: IAO:0000589 "fibrous pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002359 ! fibrous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32660 ! -property_value: IAO:0000589 "meninx (embryonic mouse)" xsd:string -intersection_of: UBERON:0002360 ! meninx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32663 ! -property_value: IAO:0000589 "pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0002361 ! pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32659 ! -property_value: IAO:0000589 "arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0002362 ! arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32664 ! -property_value: IAO:0000589 "dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0002363 ! dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19062 ! -property_value: IAO:0000589 "tympanic membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0002364 ! tympanic membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35327 ! -property_value: IAO:0000589 "exocrine gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002365 ! exocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19286 ! -property_value: IAO:0000589 "bulbo-urethral gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002366 ! bulbo-urethral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19287 ! -property_value: IAO:0000589 "prostate gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002367 ! prostate gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35999 ! -property_value: IAO:0000589 "endocrine gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002368 ! endocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18426 ! -property_value: IAO:0000589 "adrenal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18768 ! -property_value: IAO:0000589 "thymus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002370 ! thymus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32760 ! -property_value: IAO:0000589 "bone marrow (embryonic mouse)" xsd:string -intersection_of: UBERON:0002371 ! bone marrow -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35871 ! -property_value: IAO:0000589 "tonsil (embryonic mouse)" xsd:string -intersection_of: UBERON:0002372 ! tonsil -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35644 ! -property_value: IAO:0000589 "palatine tonsil (embryonic mouse)" xsd:string -intersection_of: UBERON:0002373 ! palatine tonsil -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36158 ! -property_value: IAO:0000589 "metacarpal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0002374 ! metacarpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18696 ! -property_value: IAO:0000589 "cricoid cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18172 ! -property_value: IAO:0000589 "cranial muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002376 ! cranial muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36050 ! -property_value: IAO:0000589 "muscle of neck (embryonic mouse)" xsd:string -intersection_of: UBERON:0002377 ! muscle of neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35103 ! -property_value: IAO:0000589 "muscle of abdomen (embryonic mouse)" xsd:string -intersection_of: UBERON:0002378 ! muscle of abdomen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36629 ! -property_value: IAO:0000589 "perineal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002379 ! perineal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18183 ! -property_value: IAO:0000589 "trapezius muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002380 ! trapezius muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18179 ! -property_value: IAO:0000589 "pectoralis major (embryonic mouse)" xsd:string -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18164 ! -property_value: IAO:0000589 "rectus abdominis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18182 ! -property_value: IAO:0000589 "supraspinatus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35251 ! -property_value: IAO:0000589 "connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0002384 ! connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32715 ! -property_value: IAO:0000589 "muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0002385 ! muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17417 ! -property_value: IAO:0000589 "forelimb zeugopod (embryonic mouse)" xsd:string -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17459 ! -property_value: IAO:0000589 "pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0002387 ! pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32642 ! -property_value: IAO:0000589 "manual digit (embryonic mouse)" xsd:string -intersection_of: UBERON:0002389 ! manual digit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35402 ! -property_value: IAO:0000589 "hematopoietic system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002390 ! hematopoietic system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17853 ! -property_value: IAO:0000589 "nasolacrimal duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17601 ! -property_value: IAO:0000589 "pharyngotympanic tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35171 ! -property_value: IAO:0000589 "bile duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002394 ! bile duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19135 ! -property_value: IAO:0000589 "talus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002395 ! talus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17639 ! -property_value: IAO:0000589 "maxilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0002397 ! maxilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17428 ! -property_value: IAO:0000589 "manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002398 ! manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17890 ! -property_value: IAO:0000589 "lesser omentum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16776 ! -property_value: IAO:0000589 "parietal pleura (embryonic mouse)" xsd:string -intersection_of: UBERON:0002400 ! parietal pleura -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16777 ! -property_value: IAO:0000589 "visceral pleura (embryonic mouse)" xsd:string -intersection_of: UBERON:0002401 ! visceral pleura -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16773 ! -property_value: IAO:0000589 "pleural cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16774 ! -property_value: IAO:0000589 "pleural cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18523 ! -property_value: IAO:0000589 "internal intercostal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002403 ! internal intercostal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19267 ! -property_value: IAO:0000589 "transversus thoracis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002404 ! transversus thoracis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16133 ! -property_value: IAO:0000589 "pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002407 ! pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19031 ! -property_value: IAO:0000589 "parietal serous pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16984 ! -property_value: IAO:0000589 "autonomic nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002410 ! autonomic nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30819 ! -property_value: IAO:0000589 "clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0002411 ! clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32740 ! -property_value: IAO:0000589 "vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0002412 ! vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17674 ! -property_value: IAO:0000589 "cervical vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18007 ! -property_value: IAO:0000589 "lumbar vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0002414 ! lumbar vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17524 ! -property_value: IAO:0000589 "integumental system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002416 ! integumental system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35104 ! -property_value: IAO:0000589 "abdominal segment of trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0002417 ! abdominal segment of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32730 ! -property_value: IAO:0000589 "cartilage tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0002418 ! cartilage tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35774 ! -property_value: IAO:0000589 "skin gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002419 ! skin gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35405 ! -property_value: IAO:0000589 "hippocampal formation (embryonic mouse)" xsd:string -intersection_of: UBERON:0002421 ! hippocampal formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16917 ! -property_value: IAO:0000589 "fourth ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16840 ! -property_value: IAO:0000589 "hepatobiliary system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16839 ! -property_value: IAO:0000589 "oral epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26942 ! -property_value: IAO:0000589 "oral epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16589 ! -property_value: IAO:0000589 "visceral serous pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19032 ! -property_value: IAO:0000589 "visceral serous pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17747 ! -property_value: IAO:0000589 "chest muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002426 ! chest muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17748 ! -property_value: IAO:0000589 "chest muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002426 ! chest muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37350 ! {source="MA:th"} -property_value: IAO:0000589 "arm skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0002427 ! arm skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35480 ! -property_value: IAO:0000589 "lateral hypothalamic area (embryonic mouse)" xsd:string -intersection_of: UBERON:0002430 ! lateral hypothalamic area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17516 ! -property_value: IAO:0000589 "pars intermedia of adenohypophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17517 ! -property_value: IAO:0000589 "pars tuberalis of adenohypophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17520 ! -property_value: IAO:0000589 "pituitary stalk (embryonic mouse)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17549 ! -property_value: IAO:0000589 "striatum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002435 ! striatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35708 ! -property_value: IAO:0000589 "primary visual cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002436 ! primary visual cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35237 ! -property_value: IAO:0000589 "cerebral hemisphere white matter (embryonic mouse)" xsd:string -intersection_of: UBERON:0002437 ! cerebral hemisphere white matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35914 ! -property_value: IAO:0000589 "ventral tegmental nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002438 ! ventral tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32847 ! -property_value: IAO:0000589 "myenteric nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002439 ! myenteric nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18439 ! -property_value: IAO:0000589 "inferior cervical ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18226 ! -property_value: IAO:0000589 "cervicothoracic ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002441 ! cervicothoracic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37719 ! {source="MA:th"} -property_value: IAO:0000589 "axillary nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0002442 ! axillary nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17828 ! -property_value: IAO:0000589 "choroidal blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17841 ! -property_value: IAO:0000589 "lens fiber (embryonic mouse)" xsd:string -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36167 ! -property_value: IAO:0000589 "ulnare (embryonic mouse)" xsd:string -intersection_of: UBERON:0002445 ! ulnare -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35668 ! -property_value: IAO:0000589 "patella (embryonic mouse)" xsd:string -intersection_of: UBERON:0002446 ! patella -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35643 ! -property_value: IAO:0000589 "palatine gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002447 ! palatine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18272 ! -property_value: IAO:0000589 "fungiform papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0002448 ! fungiform papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35269 ! -property_value: IAO:0000589 "decidua (embryonic mouse)" xsd:string -intersection_of: UBERON:0002450 ! decidua -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29919 ! -property_value: IAO:0000589 "endometrial gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002451 ! endometrial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37079 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal metacarpal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002454 ! dorsal metacarpal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37208 ! {source="MA:th"} -property_value: IAO:0000589 "common plantar digital arteries (embryonic mouse)" xsd:string -intersection_of: UBERON:0002455 ! common plantar digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18617 ! -property_value: IAO:0000589 "internal thoracic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17616 ! -property_value: IAO:0000589 "intersomitic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002457 ! intersomitic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18241 ! -property_value: IAO:0000589 "spinal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37156 ! {source="MA:th"} -property_value: IAO:0000589 "inferior palpebral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002459 ! inferior palpebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37205 ! {source="MA:th"} -property_value: IAO:0000589 "vesical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0002460 ! vesical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17744 ! -property_value: IAO:0000589 "anterior abdominal wall muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002461 ! anterior abdominal wall muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17745 ! -property_value: IAO:0000589 "anterior abdominal wall muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002461 ! anterior abdominal wall muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18168 ! -property_value: IAO:0000589 "erector spinae muscle group (embryonic mouse)" xsd:string -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19145 ! -property_value: IAO:0000589 "muscle of posterior compartment of hindlimb stylopod (embryonic mouse)" xsd:string -intersection_of: UBERON:0002463 ! muscle of posterior compartment of hindlimb stylopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16986 ! -property_value: IAO:0000589 "nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0002464 ! nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37664 ! {source="MA:th"} -property_value: IAO:0000589 "lymphoid system (embryonic mouse)" xsd:string -intersection_of: UBERON:0002465 ! lymphoid system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18873 ! -property_value: IAO:0000589 "filiform papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0002467 ! filiform papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32788 ! -property_value: IAO:0000589 "foliate papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0002468 ! foliate papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26981 ! -property_value: IAO:0000589 "esophagus mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0002469 ! esophagus mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32722 ! -property_value: IAO:0000589 "autopod region (embryonic mouse)" xsd:string -intersection_of: UBERON:0002470 ! autopod region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35435 ! -property_value: IAO:0000589 "intercerebral commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0002473 ! intercerebral commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36625 ! -property_value: IAO:0000589 "saphenous nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002475 ! saphenous nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37638 ! {source="MA:th"} -property_value: IAO:0000589 "lateral globus pallidus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002476 ! lateral globus pallidus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37639 ! {source="MA:th"} -property_value: IAO:0000589 "medial globus pallidus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002477 ! medial globus pallidus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18719 ! -property_value: IAO:0000589 "orbitosphenoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35290 ! -property_value: IAO:0000589 "dorsal lateral geniculate nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002479 ! dorsal lateral geniculate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35908 ! -property_value: IAO:0000589 "ventral lateral geniculate nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002480 ! ventral lateral geniculate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35179 ! -property_value: IAO:0000589 "bone tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0002481 ! bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37625 ! {source="MA:th"} -property_value: IAO:0000589 "lamellar bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0002482 ! lamellar bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35873 ! -property_value: IAO:0000589 "trabecular bone tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0002483 ! trabecular bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36568 ! -property_value: IAO:0000589 "prostate duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0002485 ! prostate duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19225 ! -property_value: IAO:0000589 "coronal suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0002489 ! coronal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19226 ! -property_value: IAO:0000589 "frontal suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0002490 ! frontal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35358 ! -property_value: IAO:0000589 "frontal suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0002490 ! frontal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19227 ! -property_value: IAO:0000589 "lambdoid suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0002491 ! lambdoid suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19224 ! -property_value: IAO:0000589 "sagittal suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0002492 ! sagittal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35503 ! -property_value: IAO:0000589 "long bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0002495 ! long bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25119 ! -property_value: IAO:0000589 "acromion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002497 ! acromion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25052 ! -property_value: IAO:0000589 "deltopectoral crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0002498 ! deltopectoral crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36569 ! -property_value: IAO:0000589 "cochlear labyrinth (embryonic mouse)" xsd:string -intersection_of: UBERON:0002499 ! cochlear labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36570 ! -property_value: IAO:0000589 "zygomatic arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0002500 ! zygomatic arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19240 ! -property_value: IAO:0000589 "oval window (embryonic mouse)" xsd:string -intersection_of: UBERON:0002501 ! oval window -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19239 ! -property_value: IAO:0000589 "round window of inner ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0002502 ! round window of inner ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37594 ! {source="MA:th"} -property_value: IAO:0000589 "greater trochanter (embryonic mouse)" xsd:string -intersection_of: UBERON:0002503 ! greater trochanter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37595 ! {source="MA:th"} -property_value: IAO:0000589 "lesser trochanter (embryonic mouse)" xsd:string -intersection_of: UBERON:0002504 ! lesser trochanter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35447 ! -property_value: IAO:0000589 "iris epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0002506 ! iris epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35992 ! -property_value: IAO:0000589 "abdominal lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0002507 ! abdominal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35561 ! -property_value: IAO:0000589 "mesenteric lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0002509 ! mesenteric lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19199 ! -property_value: IAO:0000589 "anterior fontanel (embryonic mouse)" xsd:string -intersection_of: UBERON:0002510 ! anterior fontanel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18626 ! -property_value: IAO:0000589 "trabecula carnea (embryonic mouse)" xsd:string -intersection_of: UBERON:0002511 ! trabecula carnea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29886 ! -property_value: IAO:0000589 "corpus luteum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002512 ! corpus luteum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36615 ! -property_value: IAO:0000589 "intramembranous bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0002514 ! intramembranous bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35681 ! -property_value: IAO:0000589 "periosteum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002515 ! periosteum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35505 ! -property_value: IAO:0000589 "epiphyseal plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0002516 ! epiphyseal plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36298 ! -property_value: IAO:0000589 "tunica media (embryonic mouse)" xsd:string -intersection_of: UBERON:0002522 ! tunica media -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36297 ! -property_value: IAO:0000589 "tunica intima (embryonic mouse)" xsd:string -intersection_of: UBERON:0002523 ! tunica intima -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35555 ! -property_value: IAO:0000589 "mediastinal lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0002524 ! mediastinal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18425 ! -property_value: IAO:0000589 "gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0002530 ! gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16580 ! -property_value: IAO:0000589 "post-anal tail bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0002533 ! post-anal tail bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16117 ! -property_value: IAO:0000589 "pharyngeal arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32725 ! -property_value: IAO:0000589 "digit (embryonic mouse)" xsd:string -intersection_of: UBERON:0002544 ! digit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37442 ! {source="MA:th"} -property_value: IAO:0000589 "anatomical cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0002553 ! anatomical cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35556 ! -property_value: IAO:0000589 "medullary reticular formation (embryonic mouse)" xsd:string -intersection_of: UBERON:0002559 ! medullary reticular formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37921 ! {source="MA:th"} -property_value: IAO:0000589 "olivary pretectal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002565 ! olivary pretectal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35693 ! -property_value: IAO:0000589 "pontine reticular formation (embryonic mouse)" xsd:string -intersection_of: UBERON:0002573 ! pontine reticular formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37888 ! {source="MA:th"} -property_value: IAO:0000589 "lateral corticospinal tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0002589 ! lateral corticospinal tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35912 ! -property_value: IAO:0000589 "ventral posterior nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002596 ! ventral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37773 ! {source="MA:th"} -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35339 ! -property_value: IAO:0000589 "fasciolar gyrus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002601 ! fasciolar gyrus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37821 ! {source="MA:th"} -property_value: IAO:0000589 "emboliform nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002602 ! emboliform nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37820 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellum globose nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002613 ! cerebellum globose nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35420 ! -property_value: IAO:0000589 "tuber cinereum (embryonic mouse)" xsd:string -intersection_of: UBERON:0002620 ! tuber cinereum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18547 ! -property_value: IAO:0000589 "head of caudate nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002626 ! head of caudate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18548 ! -property_value: IAO:0000589 "tail of caudate nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002628 ! tail of caudate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37499 ! {source="MA:th"} -property_value: IAO:0000589 "cerebral crus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002631 ! cerebral crus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35882 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002633 ! motor nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37409 ! {source="MA:th"} -property_value: IAO:0000589 "anterior nucleus of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002634 ! anterior nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35133 ! -property_value: IAO:0000589 "ventral anterior nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002637 ! ventral anterior nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35570 ! -property_value: IAO:0000589 "midbrain reticular formation (embryonic mouse)" xsd:string -intersection_of: UBERON:0002639 ! midbrain reticular formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35544 ! -property_value: IAO:0000589 "magnocellular part of medial dorsal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002647 ! magnocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17770 ! -property_value: IAO:0000589 "anterior horn of lateral ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002651 ! anterior horn of lateral ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35763 ! -property_value: IAO:0000589 "septal nuclear complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002663 ! septal nuclear complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35486 ! -property_value: IAO:0000589 "lateral septal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002667 ! lateral septal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35129 ! -property_value: IAO:0000589 "anterodorsal nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002679 ! anterodorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35105 ! -property_value: IAO:0000589 "abducens nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002682 ! abducens nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37730 ! {source="MA:th"} -property_value: IAO:0000589 "nucleus raphe obscurus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002684 ! nucleus raphe obscurus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35133 ! -property_value: IAO:0000589 "anteroventral nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002685 ! anteroventral nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37742 ! {source="MA:th"} -property_value: IAO:0000589 "supraoptic crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0002689 ! supraoptic crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35913 ! -property_value: IAO:0000589 "ventral tegmental area (embryonic mouse)" xsd:string -intersection_of: UBERON:0002691 ! ventral tegmental area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35376 ! -property_value: IAO:0000589 "metathalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002704 ! metathalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35573 ! -property_value: IAO:0000589 "midline nuclear group (embryonic mouse)" xsd:string -intersection_of: UBERON:0002705 ! midline nuclear group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36600 ! -property_value: IAO:0000589 "corticospinal tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0002707 ! corticospinal tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35697 ! -property_value: IAO:0000589 "posterior nuclear complex of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002709 ! posterior nuclear complex of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35698 ! -property_value: IAO:0000589 "posterior nuclear complex of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002709 ! posterior nuclear complex of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35886 ! -property_value: IAO:0000589 "trochlear nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002722 ! trochlear nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35313 ! -property_value: IAO:0000589 "entorhinal cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002728 ! entorhinal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35445 ! -property_value: IAO:0000589 "intralaminar nuclear group (embryonic mouse)" xsd:string -intersection_of: UBERON:0002733 ! intralaminar nuclear group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35487 ! -property_value: IAO:0000589 "lateral nuclear group of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002736 ! lateral nuclear group of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35296 ! -property_value: IAO:0000589 "medial dorsal nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002739 ! medial dorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35164 ! -property_value: IAO:0000589 "basal forebrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0002743 ! basal forebrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37945 ! {source="MA:th"} -property_value: IAO:0000589 "pyramidal decussation (embryonic mouse)" xsd:string -intersection_of: UBERON:0002755 ! pyramidal decussation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37889 ! {source="MA:th"} -property_value: IAO:0000589 "ventral corticospinal tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0002760 ! ventral corticospinal tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35132 ! -property_value: IAO:0000589 "anterior nuclear group (embryonic mouse)" xsd:string -intersection_of: UBERON:0002788 ! anterior nuclear group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17573 ! -property_value: IAO:0000589 "vestibular ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16982 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002827 ! vestibulocochlear ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17571 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002827 ! vestibulocochlear ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35289 ! -property_value: IAO:0000589 "dorsal cochlear nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002829 ! dorsal cochlear nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25144 ! -property_value: IAO:0000589 "first cervical dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002838 ! first cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25155 ! -property_value: IAO:0000589 "second cervical dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002839 ! second cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25156 ! -property_value: IAO:0000589 "third cervical dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002840 ! third cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25157 ! -property_value: IAO:0000589 "fourth cervical dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002841 ! fourth cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25158 ! -property_value: IAO:0000589 "fifth cervical dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002842 ! fifth cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25160 ! -property_value: IAO:0000589 "seventh cervical dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002843 ! seventh cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25174 ! -property_value: IAO:0000589 "first thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002845 ! first thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25175 ! -property_value: IAO:0000589 "second thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002846 ! second thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25176 ! -property_value: IAO:0000589 "third thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002847 ! third thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25179 ! -property_value: IAO:0000589 "fifth thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002848 ! fifth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25178 ! -property_value: IAO:0000589 "sixth thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002849 ! sixth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25180 ! -property_value: IAO:0000589 "seventh thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002850 ! seventh thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25181 ! -property_value: IAO:0000589 "eighth thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002851 ! eighth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25182 ! -property_value: IAO:0000589 "ninth thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002852 ! ninth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25183 ! -property_value: IAO:0000589 "tenth thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002853 ! tenth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25184 ! -property_value: IAO:0000589 "eleventh thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002854 ! eleventh thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25185 ! -property_value: IAO:0000589 "twelfth thoracic dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002855 ! twelfth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25165 ! -property_value: IAO:0000589 "second lumbar dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002856 ! second lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25164 ! -property_value: IAO:0000589 "first lumbar dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002857 ! first lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25166 ! -property_value: IAO:0000589 "third lumbar dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002858 ! third lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25168 ! -property_value: IAO:0000589 "fifth lumbar dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002859 ! fifth lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25170 ! -property_value: IAO:0000589 "first sacral dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002860 ! first sacral dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25171 ! -property_value: IAO:0000589 "second sacral dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002861 ! second sacral dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25172 ! -property_value: IAO:0000589 "third sacral dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0002862 ! third sacral dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35291 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0002870 ! dorsal motor nucleus of vagus nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35416 ! -property_value: IAO:0000589 "hypoglossal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002871 ! hypoglossal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35204 ! -property_value: IAO:0000589 "central amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002883 ! central amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35434 ! -property_value: IAO:0000589 "intercalated amygdaloid nuclei (embryonic mouse)" xsd:string -intersection_of: UBERON:0002884 ! intercalated amygdaloid nuclei -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35476 ! -property_value: IAO:0000589 "lateral amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002886 ! lateral amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35167 ! -property_value: IAO:0000589 "basal amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002887 ! basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35168 ! -property_value: IAO:0000589 "medial part of basal amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002889 ! medial part of basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35127 ! -property_value: IAO:0000589 "anterior amygdaloid area (embryonic mouse)" xsd:string -intersection_of: UBERON:0002890 ! anterior amygdaloid area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35254 ! -property_value: IAO:0000589 "cortical amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002891 ! cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35543 ! -property_value: IAO:0000589 "medial amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002892 ! medial amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35599 ! -property_value: IAO:0000589 "nucleus of lateral olfactory tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0002893 ! nucleus of lateral olfactory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17779 ! -property_value: IAO:0000589 "olfactory cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35313 ! -property_value: IAO:0000589 "secondary olfactory cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002895 ! secondary olfactory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19057 ! -property_value: IAO:0000589 "chiasmatic cistern (embryonic mouse)" xsd:string -intersection_of: UBERON:0002898 ! chiasmatic cistern -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36471 ! -property_value: IAO:0000589 "hippocampal sulcus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002899 ! hippocampal sulcus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35883 ! -property_value: IAO:0000589 "trigeminal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002925 ! trigeminal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35280 ! -property_value: IAO:0000589 "dentate gyrus polymorphic layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0002928 ! dentate gyrus polymorphic layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37515 ! {source="MA:th"} -property_value: IAO:0000589 "dentate gyrus pyramidal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0002929 ! dentate gyrus pyramidal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35912 ! -property_value: IAO:0000589 "ventral posteroinferior nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002939 ! ventral posteroinferior nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35910 ! -property_value: IAO:0000589 "ventral posterolateral nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002942 ! ventral posterolateral nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35911 ! -property_value: IAO:0000589 "ventral posteromedial nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002945 ! ventral posteromedial nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35217 ! -property_value: IAO:0000589 "granular layer of cerebellar cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002956 ! granular layer of cerebellar cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36213 ! -property_value: IAO:0000589 "adductor pollicis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002962 ! adductor pollicis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35680 ! -property_value: IAO:0000589 "periolivary nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002971 ! periolivary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35221 ! -property_value: IAO:0000589 "molecular layer of cerebellar cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002974 ! molecular layer of cerebellar cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35223 ! -property_value: IAO:0000589 "Purkinje cell layer of cerebellar cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0002979 ! Purkinje cell layer of cerebellar cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36181 ! -property_value: IAO:0000589 "anconeus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0002989 ! anconeus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37904 ! {source="MA:th"} -property_value: IAO:0000589 "mammillothalamic tract of hypothalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0002990 ! mammillothalamic tract of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35837 ! -property_value: IAO:0000589 "substantia nigra pars lateralis (embryonic mouse)" xsd:string -intersection_of: UBERON:0002995 ! substantia nigra pars lateralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35551 ! -property_value: IAO:0000589 "median raphe nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003004 ! median raphe nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35242 ! -property_value: IAO:0000589 "cingulate cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0003027 ! cingulate cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35210 ! -property_value: IAO:0000589 "central dorsal nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003034 ! central dorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35205 ! -property_value: IAO:0000589 "central lateral nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003036 ! central lateral nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37404 ! {source="MA:th"} -property_value: IAO:0000589 "anterior commissure anterior part (embryonic mouse)" xsd:string -intersection_of: UBERON:0003039 ! anterior commissure anterior part -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32781 ! -property_value: IAO:0000589 "central gray substance of midbrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0003040 ! central gray substance of midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37410 ! {source="MA:th"} -property_value: IAO:0000589 "posterior part of anterior commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0003043 ! posterior part of anterior commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16543 ! -property_value: IAO:0000589 "olfactory placode (embryonic mouse)" xsd:string -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16669 ! -property_value: IAO:0000589 "ear vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32857 ! -property_value: IAO:0000589 "midbrain-hindbrain boundary (embryonic mouse)" xsd:string -intersection_of: UBERON:0003052 ! midbrain-hindbrain boundary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32679 ! -property_value: IAO:0000589 "ventricular zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003053 ! ventricular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16168 ! -property_value: IAO:0000589 "roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003054 ! roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35361 ! -property_value: IAO:0000589 "roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003054 ! roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16189 ! -property_value: IAO:0000589 "presomitic mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003059 ! presomitic mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16752 ! -property_value: IAO:0000589 "presomitic mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003059 ! presomitic mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16075 ! -property_value: IAO:0000589 "primitive knot (embryonic mouse)" xsd:string -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16056 ! -property_value: IAO:0000589 "intermediate mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16178 ! -property_value: IAO:0000589 "intermediate mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16272 ! -property_value: IAO:0000589 "pharyngeal arch 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16195 ! -property_value: IAO:0000589 "otic placode (embryonic mouse)" xsd:string -intersection_of: UBERON:0003069 ! otic placode -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16674 ! -property_value: IAO:0000589 "optic cup (embryonic mouse)" xsd:string -intersection_of: UBERON:0003072 ! optic cup -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16672 ! -property_value: IAO:0000589 "lens placode (embryonic mouse)" xsd:string -intersection_of: UBERON:0003073 ! lens placode -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16577 ! -property_value: IAO:0000589 "mesonephric duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35593 ! -property_value: IAO:0000589 "neural plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003075 ! neural plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16183 ! -property_value: IAO:0000589 "paraxial mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16751 ! -property_value: IAO:0000589 "paraxial mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32684 ! -property_value: IAO:0000589 "floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003079 ! floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16179 ! -property_value: IAO:0000589 "lateral plate mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32841 ! -property_value: IAO:0000589 "myotome (embryonic mouse)" xsd:string -intersection_of: UBERON:0003082 ! myotome -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16241 ! -property_value: IAO:0000589 "anterior cardinal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31159 ! -property_value: IAO:0000589 "sclerotome (embryonic mouse)" xsd:string -intersection_of: UBERON:0003089 ! sclerotome -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16361 ! -property_value: IAO:0000589 "thyroid primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36030 ! -property_value: IAO:0000589 "ultimobranchial body (embryonic mouse)" xsd:string -intersection_of: UBERON:0003092 ! ultimobranchial body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16678 ! -property_value: IAO:0000589 "optic stalk (embryonic mouse)" xsd:string -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16091 ! -property_value: IAO:0000589 "cranial neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0003099 ! cranial neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17635 ! -property_value: IAO:0000589 "Meckel's cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16399 ! -property_value: IAO:0000589 "pharyngeal arch 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16760 ! -property_value: IAO:0000589 "pharyngeal arch 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32766 ! -property_value: IAO:0000589 "pharyngeal arch 6 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003117 ! pharyngeal arch 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16202 ! -property_value: IAO:0000589 "pharyngeal arch artery 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003118 ! pharyngeal arch artery 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16685 ! -property_value: IAO:0000589 "pharyngeal arch artery 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003118 ! pharyngeal arch artery 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16203 ! -property_value: IAO:0000589 "pharyngeal arch artery 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003119 ! pharyngeal arch artery 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16686 ! -property_value: IAO:0000589 "pharyngeal arch artery 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003119 ! pharyngeal arch artery 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16687 ! -property_value: IAO:0000589 "pharyngeal arch artery 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003120 ! pharyngeal arch artery 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17004 ! -property_value: IAO:0000589 "pharyngeal arch artery 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003121 ! pharyngeal arch artery 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17005 ! -property_value: IAO:0000589 "pharyngeal arch artery 6 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003123 ! pharyngeal arch artery 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16112 ! -property_value: IAO:0000589 "chorion membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0003124 ! chorion membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16853 ! -property_value: IAO:0000589 "trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0003126 ! trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17680 ! -property_value: IAO:0000589 "cranium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003128 ! cranium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17680 ! -property_value: IAO:0000589 "skull (embryonic mouse)" xsd:string -intersection_of: UBERON:0003129 ! skull -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17381 ! -property_value: IAO:0000589 "reproductive organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0003133 ! reproductive organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37731 ! {source="MA:th"} -property_value: IAO:0000589 "reproductive organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0003133 ! reproductive organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28540 ! -property_value: IAO:0000589 "female reproductive organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0003134 ! female reproductive organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36566 ! -property_value: IAO:0000589 "mammary gland alveolus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003214 ! mammary gland alveolus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18952 ! -property_value: IAO:0000589 "hard palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003216 ! hard palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35595 ! -property_value: IAO:0000589 "neural lobe of neurohypophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0003217 ! neural lobe of neurohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17375 ! -property_value: IAO:0000589 "metanephric mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003220 ! metanephric mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32614 ! -property_value: IAO:0000589 "phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003221 ! phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36202 ! -property_value: IAO:0000589 "flexor digitorum superficialis (embryonic mouse)" xsd:string -intersection_of: UBERON:0003222 ! flexor digitorum superficialis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36208 ! -property_value: IAO:0000589 "supinator muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003228 ! supinator muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17415 ! -property_value: IAO:0000589 "epithelium of elbow (embryonic mouse)" xsd:string -intersection_of: UBERON:0003229 ! epithelium of elbow -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17491 ! -property_value: IAO:0000589 "epithelium of hip (embryonic mouse)" xsd:string -intersection_of: UBERON:0003231 ! epithelium of hip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17494 ! -property_value: IAO:0000589 "epithelium of knee (embryonic mouse)" xsd:string -intersection_of: UBERON:0003232 ! epithelium of knee -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17422 ! -property_value: IAO:0000589 "epithelium of shoulder (embryonic mouse)" xsd:string -intersection_of: UBERON:0003233 ! epithelium of shoulder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36196 ! -property_value: IAO:0000589 "extensor pollicis longus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003234 ! extensor pollicis longus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17943 ! -property_value: IAO:0000589 "epithelium of upper jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003235 ! epithelium of upper jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18971 ! -property_value: IAO:0000589 "epithelium of upper jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003235 ! epithelium of upper jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35516 ! -property_value: IAO:0000589 "epithelium of lower jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003236 ! epithelium of lower jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17301 ! -property_value: IAO:0000589 "epithelium of superior semicircular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003238 ! epithelium of superior semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17298 ! -property_value: IAO:0000589 "epithelium of posterior semicircular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003239 ! epithelium of posterior semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17823 ! -property_value: IAO:0000589 "epithelium of lateral semicircular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003240 ! epithelium of lateral semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17295 ! -property_value: IAO:0000589 "epithelium of utricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17298 ! -property_value: IAO:0000589 "epithelium of utricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17301 ! -property_value: IAO:0000589 "epithelium of utricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17820 ! -property_value: IAO:0000589 "epithelium of utricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17823 ! -property_value: IAO:0000589 "epithelium of utricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17292 ! -property_value: IAO:0000589 "epithelium of saccule (embryonic mouse)" xsd:string -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17600 ! -property_value: IAO:0000589 "epithelium of cochlear duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003243 ! epithelium of cochlear duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17760 ! -property_value: IAO:0000589 "epithelium of mammary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17595 ! -property_value: IAO:0000589 "epithelium of endolymphatic sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0003246 ! epithelium of endolymphatic sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17418 ! -property_value: IAO:0000589 "epithelium of forearm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003247 ! epithelium of forearm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32655 ! -property_value: IAO:0000589 "epithelium of footplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003248 ! epithelium of footplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16197 ! -property_value: IAO:0000589 "epithelium of otic placode (embryonic mouse)" xsd:string -intersection_of: UBERON:0003249 ! epithelium of otic placode -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37826 ! {source="MA:th"} -property_value: IAO:0000589 "neck of rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0003253 ! neck of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16110 ! -property_value: IAO:0000589 "amniotic ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003254 ! amniotic ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16086 ! -property_value: IAO:0000589 "yolk sac endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003257 ! yolk sac endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16257 ! -property_value: IAO:0000589 "endoderm of midgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0003259 ! endoderm of midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25357 ! -property_value: IAO:0000589 "thyroid primordium endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003261 ! thyroid primordium endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16111 ! -property_value: IAO:0000589 "amniotic mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003262 ! amniotic mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16265 ! -property_value: IAO:0000589 "amniotic mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003262 ! amniotic mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16114 ! -property_value: IAO:0000589 "chorionic mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003265 ! chorionic mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16266 ! -property_value: IAO:0000589 "chorionic mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003265 ! chorionic mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17938 ! -property_value: IAO:0000589 "tooth of upper jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003267 ! tooth of upper jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17917 ! -property_value: IAO:0000589 "tooth of lower jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17844 ! -property_value: IAO:0000589 "skeletal muscle tissue of eye (embryonic mouse)" xsd:string -intersection_of: UBERON:0003269 ! skeletal muscle tissue of eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16890 ! -property_value: IAO:0000589 "mesothelium of omental bursa (embryonic mouse)" xsd:string -intersection_of: UBERON:0003274 ! mesothelium of omental bursa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17927 ! -property_value: IAO:0000589 "skeleton of upper jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17906 ! -property_value: IAO:0000589 "skeleton of lower jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17910 ! -property_value: IAO:0000589 "skeleton of lower jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17024 ! -property_value: IAO:0000589 "mesentery of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16212 ! -property_value: IAO:0000589 "mesentery of heart (embryonic mouse)" xsd:string -intersection_of: UBERON:0003282 ! mesentery of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16836 ! -property_value: IAO:0000589 "mesentery of oesophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16721 ! -property_value: IAO:0000589 "mesentery of midgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17039 ! -property_value: IAO:0000589 "mesentery of midgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17197 ! -property_value: IAO:0000589 "mesentery of midgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0003284 ! mesentery of midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17178 ! -property_value: IAO:0000589 "foregut region of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003286 ! foregut region of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17193 ! -property_value: IAO:0000589 "midgut region of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003287 ! midgut region of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17791 ! -property_value: IAO:0000589 "meninx of midbrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17774 ! -property_value: IAO:0000589 "meninx of telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003289 ! meninx of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17764 ! -property_value: IAO:0000589 "meninx of diencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003290 ! meninx of diencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17783 ! -property_value: IAO:0000589 "meninx of hindbrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17804 ! -property_value: IAO:0000589 "meninx of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16557 ! -property_value: IAO:0000589 "gland of foregut (embryonic mouse)" xsd:string -intersection_of: UBERON:0003294 ! gland of foregut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16897 ! -property_value: IAO:0000589 "gland of diencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003296 ! gland of diencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17758 ! -property_value: IAO:0000589 "gland of integumental system (embryonic mouse)" xsd:string -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16981 ! -property_value: IAO:0000589 "roof plate of midbrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16657 ! -property_value: IAO:0000589 "roof plate of telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003300 ! roof plate of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16909 ! -property_value: IAO:0000589 "roof plate of diencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16483 ! -property_value: IAO:0000589 "roof plate of metencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003302 ! roof plate of metencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16487 ! -property_value: IAO:0000589 "roof plate of metencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003302 ! roof plate of metencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16115 ! -property_value: IAO:0000589 "mesoderm blood island (embryonic mouse)" xsd:string -intersection_of: UBERON:0003304 ! mesoderm blood island -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16165 ! -property_value: IAO:0000589 "floor plate of neural tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16975 ! -property_value: IAO:0000589 "floor plate of midbrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16655 ! -property_value: IAO:0000589 "floor plate of telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003308 ! floor plate of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16903 ! -property_value: IAO:0000589 "floor plate of diencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16291 ! -property_value: IAO:0000589 "floor plate of metencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003310 ! floor plate of metencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16294 ! -property_value: IAO:0000589 "floor plate of metencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003310 ! floor plate of metencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17258 ! -property_value: IAO:0000589 "floor plate of metencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003310 ! floor plate of metencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17551 ! -property_value: IAO:0000589 "floor plate of medulla oblongata (embryonic mouse)" xsd:string -intersection_of: UBERON:0003311 ! floor plate of medulla oblongata -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35858 ! -property_value: IAO:0000589 "mesenchyme of testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0003312 ! mesenchyme of testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16673 ! -property_value: IAO:0000589 "eye mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003314 ! eye mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16087 ! -property_value: IAO:0000589 "mesenchyme of yolk sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0003316 ! mesenchyme of yolk sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16267 ! -property_value: IAO:0000589 "mesenchyme of yolk sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0003316 ! mesenchyme of yolk sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32893 ! -property_value: IAO:0000589 "odontogenic papilla of incisor (embryonic mouse)" xsd:string -intersection_of: UBERON:0003317 ! odontogenic papilla of incisor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17416 ! -property_value: IAO:0000589 "mesenchyme of elbow (embryonic mouse)" xsd:string -intersection_of: UBERON:0003318 ! mesenchyme of elbow -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19122 ! -property_value: IAO:0000589 "mesenchyme of carpal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0003319 ! mesenchyme of carpal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17492 ! -property_value: IAO:0000589 "mesenchyme of hip (embryonic mouse)" xsd:string -intersection_of: UBERON:0003320 ! mesenchyme of hip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17495 ! -property_value: IAO:0000589 "mesenchyme of knee (embryonic mouse)" xsd:string -intersection_of: UBERON:0003321 ! mesenchyme of knee -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17423 ! -property_value: IAO:0000589 "mesenchyme of shoulder (embryonic mouse)" xsd:string -intersection_of: UBERON:0003322 ! mesenchyme of shoulder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17929 ! -property_value: IAO:0000589 "mesenchyme of upper jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003323 ! mesenchyme of upper jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17916 ! -property_value: IAO:0000589 "mesenchyme of lower jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0003324 ! mesenchyme of lower jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17591 ! -property_value: IAO:0000589 "mesenchyme of pinna (embryonic mouse)" xsd:string -intersection_of: UBERON:0003325 ! mesenchyme of pinna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17761 ! -property_value: IAO:0000589 "mesenchyme of mammary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003326 ! mesenchyme of mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17419 ! -property_value: IAO:0000589 "mesenchyme of forearm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003327 ! mesenchyme of forearm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17252 ! -property_value: IAO:0000589 "mesenchyme of footplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003328 ! mesenchyme of footplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17488 ! -property_value: IAO:0000589 "mesenchyme of footplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003328 ! mesenchyme of footplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27217 ! -property_value: IAO:0000589 "submucosa of anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003329 ! submucosa of anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27227 ! -property_value: IAO:0000589 "submucosa of anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003329 ! submucosa of anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27535 ! -property_value: IAO:0000589 "submucosa of anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003329 ! submucosa of anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27083 ! -property_value: IAO:0000589 "submucosa of rectum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003330 ! submucosa of rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27379 ! -property_value: IAO:0000589 "submucosa of colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003331 ! submucosa of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27027 ! -property_value: IAO:0000589 "submucosa of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003332 ! submucosa of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27097 ! -property_value: IAO:0000589 "submucosa of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003332 ! submucosa of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27239 ! -property_value: IAO:0000589 "submucosa of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003332 ! submucosa of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27111 ! -property_value: IAO:0000589 "submucosa of jejunum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003333 ! submucosa of jejunum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27087 ! -property_value: IAO:0000589 "serosa of rectum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003334 ! serosa of rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27387 ! -property_value: IAO:0000589 "serosa of colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003335 ! serosa of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27247 ! -property_value: IAO:0000589 "serosa of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003336 ! serosa of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27115 ! -property_value: IAO:0000589 "serosa of jejunum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003337 ! serosa of jejunum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32814 ! -property_value: IAO:0000589 "ganglion of peripheral nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0003338 ! ganglion of peripheral nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16658 ! -property_value: IAO:0000589 "ganglion of central nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27531 ! -property_value: IAO:0000589 "mucosa of anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003342 ! mucosa of anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26937 ! -property_value: IAO:0000589 "mucosa of oral region (embryonic mouse)" xsd:string -intersection_of: UBERON:0003343 ! mucosa of oral region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27081 ! -property_value: IAO:0000589 "mucosa of rectum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003346 ! mucosa of rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16708 ! -property_value: IAO:0000589 "pharyngeal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16569 ! -property_value: IAO:0000589 "epithelium of midgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0003352 ! epithelium of midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16717 ! -property_value: IAO:0000589 "epithelium of hindgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17898 ! -property_value: IAO:0000589 "epithelium of rectum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003354 ! epithelium of rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32890 ! -property_value: IAO:0000589 "epithelium of incisor (embryonic mouse)" xsd:string -intersection_of: UBERON:0003355 ! epithelium of incisor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18442 ! -property_value: IAO:0000589 "epithelium of nasal septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003356 ! epithelium of nasal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17881 ! -property_value: IAO:0000589 "epithelium of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18950 ! -property_value: IAO:0000589 "epithelium of soft palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003358 ! epithelium of soft palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18813 ! -property_value: IAO:0000589 "epithelium of submandibular gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003359 ! epithelium of submandibular gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18538 ! -property_value: IAO:0000589 "epithelium of parotid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003360 ! epithelium of parotid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18810 ! -property_value: IAO:0000589 "epithelium of sublingual gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003361 ! epithelium of sublingual gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18582 ! -property_value: IAO:0000589 "epithelium of endolymphatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003362 ! epithelium of endolymphatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17289 ! -property_value: IAO:0000589 "epithelium of ductus reuniens (embryonic mouse)" xsd:string -intersection_of: UBERON:0003363 ! epithelium of ductus reuniens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17663 ! -property_value: IAO:0000589 "epithelium of right lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17655 ! -property_value: IAO:0000589 "epithelium of left lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29030 ! -property_value: IAO:0000589 "epithelium of uterine horn (embryonic mouse)" xsd:string -intersection_of: UBERON:0003366 ! epithelium of uterine horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18444 ! -property_value: IAO:0000589 "epithelium of vomeronasal organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18953 ! -property_value: IAO:0000589 "epithelium of hard palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003368 ! epithelium of hard palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16780 ! -property_value: IAO:0000589 "pelvic appendage bud ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003371 ! pelvic appendage bud ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16407 ! -property_value: IAO:0000589 "pectoral appendage bud ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003372 ! pectoral appendage bud ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17250 ! -property_value: IAO:0000589 "ectoderm of footplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003373 ! ectoderm of footplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16113 ! -property_value: IAO:0000589 "chorionic ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003374 ! chorionic ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36056 ! -property_value: IAO:0000589 "cardiac muscle of auricular region (embryonic mouse)" xsd:string -intersection_of: UBERON:0003378 ! cardiac muscle of auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17326 ! -property_value: IAO:0000589 "cardiac muscle of right atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17320 ! -property_value: IAO:0000589 "cardiac muscle of left atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17342 ! -property_value: IAO:0000589 "cardiac muscle of right ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17339 ! -property_value: IAO:0000589 "cardiac muscle of left ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17335 ! -property_value: IAO:0000589 "cardiac muscle tissue of interventricular septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003383 ! cardiac muscle tissue of interventricular septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18963 ! -property_value: IAO:0000589 "skeletal muscle tissue of pharynx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003384 ! skeletal muscle tissue of pharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18807 ! -property_value: IAO:0000589 "smooth muscle of eye (embryonic mouse)" xsd:string -intersection_of: UBERON:0003386 ! smooth muscle of eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19192 ! -property_value: IAO:0000589 "smooth muscle of trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0003387 ! smooth muscle of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18429 ! -property_value: IAO:0000589 "mesothelium of diaphragm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003389 ! mesothelium of diaphragm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16775 ! -property_value: IAO:0000589 "mesothelium of pleural cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0003390 ! mesothelium of pleural cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17367 ! -property_value: IAO:0000589 "mesentery of urinary system (embryonic mouse)" xsd:string -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16718 ! -property_value: IAO:0000589 "mesentery of hindgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0003394 ! mesentery of hindgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18664 ! -property_value: IAO:0000589 "mesentery of rectum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003395 ! mesentery of rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18942 ! -property_value: IAO:0000589 "mesentery of colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003396 ! mesentery of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19081 ! -property_value: IAO:0000589 "mesentery of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003397 ! mesentery of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18670 ! -property_value: IAO:0000589 "mesentery of jejunum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003398 ! mesentery of jejunum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18056 ! -property_value: IAO:0000589 "skin of forearm (embryonic mouse)" xsd:string -intersection_of: UBERON:0003403 ! skin of forearm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17664 ! -property_value: IAO:0000589 "lobar bronchus of right lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0003404 ! lobar bronchus of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17388 ! -property_value: IAO:0000589 "lobar bronchus of left lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17656 ! -property_value: IAO:0000589 "lobar bronchus of left lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18694 ! -property_value: IAO:0000589 "cartilage of respiratory system (embryonic mouse)" xsd:string -intersection_of: UBERON:0003406 ! cartilage of respiratory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25091 ! -property_value: IAO:0000589 "cartilage of nasal septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003407 ! cartilage of nasal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18815 ! -property_value: IAO:0000589 "gland of digestive tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0003408 ! gland of digestive tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25097 ! -property_value: IAO:0000589 "gland of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003409 ! gland of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25095 ! -property_value: IAO:0000589 "oropharyngeal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003410 ! oropharyngeal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16781 ! -property_value: IAO:0000589 "pelvic appendage bud mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003412 ! pelvic appendage bud mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16408 ! -property_value: IAO:0000589 "pectoral appendage bud mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003413 ! pectoral appendage bud mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17912 ! -property_value: IAO:0000589 "mesenchyme of mandible (embryonic mouse)" xsd:string -intersection_of: UBERON:0003414 ! mesenchyme of mandible -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18443 ! -property_value: IAO:0000589 "mesenchyme of nasal septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17882 ! -property_value: IAO:0000589 "mesenchyme of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003416 ! mesenchyme of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18951 ! -property_value: IAO:0000589 "mesenchyme of soft palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003417 ! mesenchyme of soft palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18814 ! -property_value: IAO:0000589 "mesenchyme of submandibular gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003418 ! mesenchyme of submandibular gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18539 ! -property_value: IAO:0000589 "mesenchyme of parotid (embryonic mouse)" xsd:string -intersection_of: UBERON:0003419 ! mesenchyme of parotid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18811 ! -property_value: IAO:0000589 "mesenchyme of sublingual gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003420 ! mesenchyme of sublingual gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18445 ! -property_value: IAO:0000589 "mesenchyme of vomeronasal organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0003421 ! mesenchyme of vomeronasal organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26127 ! -property_value: IAO:0000589 "mesenchyme of umbilical cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0003422 ! mesenchyme of umbilical cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35925 ! -property_value: IAO:0000589 "mesenchyme of umbilical cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0003422 ! mesenchyme of umbilical cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18954 ! -property_value: IAO:0000589 "mesenchyme of hard palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0003424 ! mesenchyme of hard palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36499 ! -property_value: IAO:0000589 "abdominal fat pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0003427 ! abdominal fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37263 ! {source="MA:th"} -property_value: IAO:0000589 "neck nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003430 ! neck nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37343 ! {source="MA:th"} -property_value: IAO:0000589 "leg nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003431 ! leg nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37266 ! {source="MA:th"} -property_value: IAO:0000589 "chest nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003432 ! chest nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37336 ! {source="MA:th"} -property_value: IAO:0000589 "arm nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003433 ! arm nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37339 ! {source="MA:th"} -property_value: IAO:0000589 "wrist nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003434 ! wrist nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37348 ! {source="MA:th"} -property_value: IAO:0000589 "pedal digit nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003435 ! pedal digit nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37335 ! {source="MA:th"} -property_value: IAO:0000589 "shoulder nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003436 ! shoulder nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37535 ! {source="MA:th"} -property_value: IAO:0000589 "eyelid nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003437 ! eyelid nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35449 ! -property_value: IAO:0000589 "iris nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003438 ! iris nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37264 ! {source="MA:th"} -property_value: IAO:0000589 "nerve of trunk region (embryonic mouse)" xsd:string -intersection_of: UBERON:0003439 ! nerve of trunk region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37291 ! {source="MA:th"} -property_value: IAO:0000589 "limb nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003440 ! limb nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37334 ! {source="MA:th"} -property_value: IAO:0000589 "forelimb nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003441 ! forelimb nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37342 ! {source="MA:th"} -property_value: IAO:0000589 "hindlimb nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003442 ! hindlimb nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37267 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic cavity nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003443 ! thoracic cavity nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37269 ! {source="MA:th"} -property_value: IAO:0000589 "pelvis nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003444 ! pelvis nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37347 ! {source="MA:th"} -property_value: IAO:0000589 "pes nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003445 ! pes nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37346 ! {source="MA:th"} -property_value: IAO:0000589 "ankle nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003446 ! ankle nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37341 ! {source="MA:th"} -property_value: IAO:0000589 "digit nerve of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003447 ! digit nerve of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37340 ! {source="MA:th"} -property_value: IAO:0000589 "manus nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003448 ! manus nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19592 ! -property_value: IAO:0000589 "tail intervertebral disc (embryonic mouse)" xsd:string -intersection_of: UBERON:0003449 ! tail intervertebral disc -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17939 ! -property_value: IAO:0000589 "upper jaw incisor (embryonic mouse)" xsd:string -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17918 ! -property_value: IAO:0000589 "lower jaw incisor (embryonic mouse)" xsd:string -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36573 ! -property_value: IAO:0000589 "trabecula carnea cardiac muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003452 ! trabecula carnea cardiac muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35468 ! -property_value: IAO:0000589 "large intestine Peyer's patch (embryonic mouse)" xsd:string -intersection_of: UBERON:0003453 ! large intestine Peyer's patch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35782 ! -property_value: IAO:0000589 "small intestine Peyer's patch (embryonic mouse)" xsd:string -intersection_of: UBERON:0003454 ! small intestine Peyer's patch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28352 ! -property_value: IAO:0000589 "inner renal medulla loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003455 ! inner renal medulla loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37580 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system lymphatic vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003456 ! respiratory system lymphatic vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35996 ! -property_value: IAO:0000589 "head bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003457 ! head bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37246 ! {source="MA:th"} -property_value: IAO:0000589 "neck bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003458 ! neck bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18025 ! -property_value: IAO:0000589 "chest bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003459 ! chest bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37303 ! {source="MA:th"} -property_value: IAO:0000589 "arm bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003460 ! arm bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19019 ! -property_value: IAO:0000589 "facial bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003462 ! facial bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35924 ! -property_value: IAO:0000589 "facial bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003462 ! facial bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36583 ! -property_value: IAO:0000589 "trunk bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003463 ! trunk bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35347 ! -property_value: IAO:0000589 "forelimb zeugopod bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003466 ! forelimb zeugopod bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35771 ! -property_value: IAO:0000589 "sesamoid bone of gastrocnemius (embryonic mouse)" xsd:string -intersection_of: UBERON:0003467 ! sesamoid bone of gastrocnemius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37676 ! {source="MA:th"} -property_value: IAO:0000589 "ureteric segment of renal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0003468 ! ureteric segment of renal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37569 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0003469 ! respiratory system artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37430 ! {source="MA:th"} -property_value: IAO:0000589 "artery of upper lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0003470 ! artery of upper lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37429 ! {source="MA:th"} -property_value: IAO:0000589 "artery of lower lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0003471 ! artery of lower lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37074 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0003472 ! cerebellar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37241 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic cavity artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0003473 ! thoracic cavity artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37104 ! {source="MA:th"} -property_value: IAO:0000589 "meningeal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0003474 ! meningeal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37679 ! {source="MA:th"} -property_value: IAO:0000589 "ureteric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0003475 ! ureteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37584 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system venous blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003476 ! respiratory system venous blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37204 ! {source="MA:th"} -property_value: IAO:0000589 "vein of upper lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0003477 ! vein of upper lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37202 ! {source="MA:th"} -property_value: IAO:0000589 "vein of lower lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0003478 ! vein of lower lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37242 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic cavity vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0003479 ! thoracic cavity vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37201 ! {source="MA:th"} -property_value: IAO:0000589 "vein of clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0003480 ! vein of clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37761 ! {source="MA:th"} -property_value: IAO:0000589 "tail vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0003481 ! tail vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37203 ! {source="MA:th"} -property_value: IAO:0000589 "vein of trabecular bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003482 ! vein of trabecular bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37766 ! {source="MA:th"} -property_value: IAO:0000589 "thymus lymphoid tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003483 ! thymus lymphoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37531 ! {source="MA:th"} -property_value: IAO:0000589 "eye sebaceous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003484 ! eye sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37793 ! {source="MA:th"} -property_value: IAO:0000589 "vagina sebaceous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003485 ! vagina sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36507 ! -property_value: IAO:0000589 "abdominal mammary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003488 ! abdominal mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37575 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system capillary endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003489 ! respiratory system capillary endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37572 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system reticular lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0003490 ! respiratory system reticular lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37811 ! {source="MA:th"} -property_value: IAO:0000589 "bronchus reticular lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0003492 ! bronchus reticular lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37554 ! {source="MA:th"} -property_value: IAO:0000589 "trachea reticular lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0003493 ! trachea reticular lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37587 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system venule (embryonic mouse)" xsd:string -intersection_of: UBERON:0003494 ! respiratory system venule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37568 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system arteriole (embryonic mouse)" xsd:string -intersection_of: UBERON:0003495 ! respiratory system arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36610 ! -property_value: IAO:0000589 "head blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003496 ! head blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35397 ! -property_value: IAO:0000589 "heart blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003498 ! heart blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35182 ! -property_value: IAO:0000589 "brain blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003499 ! brain blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36611 ! -property_value: IAO:0000589 "corneal blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003500 ! corneal blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36520 ! -property_value: IAO:0000589 "retina blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003501 ! retina blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37236 ! {source="MA:th"} -property_value: IAO:0000589 "neck blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003502 ! neck blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36500 ! -property_value: IAO:0000589 "leg blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003503 ! leg blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35731 ! -property_value: IAO:0000589 "respiratory system blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003504 ! respiratory system blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35995 ! -property_value: IAO:0000589 "respiratory system blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003504 ! respiratory system blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35874 ! -property_value: IAO:0000589 "trachea blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003505 ! trachea blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37239 ! {source="MA:th"} -property_value: IAO:0000589 "chest blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003506 ! chest blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37293 ! {source="MA:th"} -property_value: IAO:0000589 "arm blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003507 ! arm blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37302 ! {source="MA:th"} -property_value: IAO:0000589 "pedal digit blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003508 ! pedal digit blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35144 ! -property_value: IAO:0000589 "arterial blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003509 ! arterial blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37388 ! {source="MA:th"} -property_value: IAO:0000589 "eyelid blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003510 ! eyelid blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37387 ! {source="MA:th"} -property_value: IAO:0000589 "iris blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003511 ! iris blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32867 ! -property_value: IAO:0000589 "lung blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003512 ! lung blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37237 ! {source="MA:th"} -property_value: IAO:0000589 "trunk blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003513 ! trunk blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36598 ! -property_value: IAO:0000589 "limb blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003514 ! limb blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37292 ! {source="MA:th"} -property_value: IAO:0000589 "forelimb blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003515 ! forelimb blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37298 ! {source="MA:th"} -property_value: IAO:0000589 "hindlimb blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003516 ! hindlimb blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28457 ! -property_value: IAO:0000589 "kidney blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003517 ! kidney blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16852 ! -property_value: IAO:0000589 "main bronchus blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003518 ! main bronchus blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37240 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic cavity blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003519 ! thoracic cavity blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37244 ! {source="MA:th"} -property_value: IAO:0000589 "pelvis blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003520 ! pelvis blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37301 ! {source="MA:th"} -property_value: IAO:0000589 "pes blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003521 ! pes blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37297 ! {source="MA:th"} -property_value: IAO:0000589 "manual digit blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003522 ! manual digit blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37296 ! {source="MA:th"} -property_value: IAO:0000589 "manus blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003523 ! manus blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35848 ! -property_value: IAO:0000589 "tail blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003524 ! tail blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37574 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system capillary (embryonic mouse)" xsd:string -intersection_of: UBERON:0003526 ! respiratory system capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31443 ! -property_value: IAO:0000589 "kidney capillary (embryonic mouse)" xsd:string -intersection_of: UBERON:0003527 ! kidney capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35184 ! -property_value: IAO:0000589 "brain gray matter (embryonic mouse)" xsd:string -intersection_of: UBERON:0003528 ! brain gray matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37581 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system lymphatic vessel endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003529 ! respiratory system lymphatic vessel endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32942 ! -property_value: IAO:0000589 "pedal digit skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0003530 ! pedal digit skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32612 ! -property_value: IAO:0000589 "forelimb skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0003531 ! forelimb skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32620 ! -property_value: IAO:0000589 "hindlimb skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0003532 ! hindlimb skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32648 ! -property_value: IAO:0000589 "manual digit skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0003533 ! manual digit skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36502 ! -property_value: IAO:0000589 "tail skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0003534 ! tail skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17272 ! -property_value: IAO:0000589 "vagus X nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0003535 ! vagus X nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35819 ! -property_value: IAO:0000589 "right lung alveolar duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19183 ! -property_value: IAO:0000589 "left lung alveolar duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003537 ! left lung alveolar duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35425 ! -property_value: IAO:0000589 "right lung bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0003538 ! right lung bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19000 ! -property_value: IAO:0000589 "left lung bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0003539 ! left lung bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36638 ! -property_value: IAO:0000589 "right lung terminal bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0003540 ! right lung terminal bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36636 ! -property_value: IAO:0000589 "left lung terminal bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0003541 ! left lung terminal bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36637 ! -property_value: IAO:0000589 "right lung respiratory bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0003542 ! right lung respiratory bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36635 ! -property_value: IAO:0000589 "left lung respiratory bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0003543 ! left lung respiratory bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35187 ! -property_value: IAO:0000589 "brain white matter (embryonic mouse)" xsd:string -intersection_of: UBERON:0003544 ! brain white matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32662 ! -property_value: IAO:0000589 "brain meninx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003547 ! brain meninx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17764 ! -property_value: IAO:0000589 "forebrain meninges (embryonic mouse)" xsd:string -intersection_of: UBERON:0003548 ! forebrain meninges -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17774 ! -property_value: IAO:0000589 "forebrain meninges (embryonic mouse)" xsd:string -intersection_of: UBERON:0003548 ! forebrain meninges -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37543 ! {source="MA:th"} -property_value: IAO:0000589 "forebrain meninges (embryonic mouse)" xsd:string -intersection_of: UBERON:0003548 ! forebrain meninges -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32667 ! -property_value: IAO:0000589 "brain pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003549 ! brain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17767 ! -property_value: IAO:0000589 "forebrain pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003550 ! forebrain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17777 ! -property_value: IAO:0000589 "forebrain pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003550 ! forebrain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37546 ! {source="MA:th"} -property_value: IAO:0000589 "forebrain pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003550 ! forebrain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17794 ! -property_value: IAO:0000589 "midbrain pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17777 ! -property_value: IAO:0000589 "telencephalon pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003552 ! telencephalon pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17767 ! -property_value: IAO:0000589 "diencephalon pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003553 ! diencephalon pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17786 ! -property_value: IAO:0000589 "hindbrain pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17807 ! -property_value: IAO:0000589 "spinal cord pia mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17765 ! -property_value: IAO:0000589 "forebrain arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003556 ! forebrain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17775 ! -property_value: IAO:0000589 "forebrain arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003556 ! forebrain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37544 ! {source="MA:th"} -property_value: IAO:0000589 "forebrain arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003556 ! forebrain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17792 ! -property_value: IAO:0000589 "midbrain arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003557 ! midbrain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17765 ! -property_value: IAO:0000589 "diencephalon arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003558 ! diencephalon arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17784 ! -property_value: IAO:0000589 "hindbrain arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003559 ! hindbrain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17805 ! -property_value: IAO:0000589 "spinal cord arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003560 ! spinal cord arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17766 ! -property_value: IAO:0000589 "forebrain dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003561 ! forebrain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37545 ! {source="MA:th"} -property_value: IAO:0000589 "forebrain dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003561 ! forebrain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17793 ! -property_value: IAO:0000589 "midbrain dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003562 ! midbrain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17776 ! -property_value: IAO:0000589 "telencephalon dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003563 ! telencephalon dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17766 ! -property_value: IAO:0000589 "diencephalon dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003564 ! diencephalon dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17785 ! -property_value: IAO:0000589 "hindbrain dura mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0003565 ! hindbrain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16098 ! -property_value: IAO:0000589 "head connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003566 ! head connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37250 ! {source="MA:th"} -property_value: IAO:0000589 "neck connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003568 ! neck connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37324 ! {source="MA:th"} -property_value: IAO:0000589 "leg connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003569 ! leg connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35968 ! -property_value: IAO:0000589 "respiratory system connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003570 ! respiratory system connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35977 ! -property_value: IAO:0000589 "respiratory system connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003570 ! respiratory system connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35876 ! -property_value: IAO:0000589 "trachea connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003571 ! trachea connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37254 ! {source="MA:th"} -property_value: IAO:0000589 "chest connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003572 ! chest connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37316 ! {source="MA:th"} -property_value: IAO:0000589 "arm connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003573 ! arm connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37318 ! {source="MA:th"} -property_value: IAO:0000589 "elbow connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003574 ! elbow connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37320 ! {source="MA:th"} -property_value: IAO:0000589 "wrist connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003575 ! wrist connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37323 ! {source="MA:th"} -property_value: IAO:0000589 "hip connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003576 ! hip connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37326 ! {source="MA:th"} -property_value: IAO:0000589 "knee connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003577 ! knee connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37330 ! {source="MA:th"} -property_value: IAO:0000589 "pedal digit connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003578 ! pedal digit connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37315 ! {source="MA:th"} -property_value: IAO:0000589 "shoulder connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003579 ! shoulder connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37548 ! {source="MA:th"} -property_value: IAO:0000589 "lower respiratory tract connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003580 ! lower respiratory tract connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37532 ! {source="MA:th"} -property_value: IAO:0000589 "eyelid connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003581 ! eyelid connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37682 ! {source="MA:th"} -property_value: IAO:0000589 "nasopharynx connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003582 ! nasopharynx connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35471 ! -property_value: IAO:0000589 "larynx connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003583 ! larynx connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35537 ! -property_value: IAO:0000589 "mammary gland connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003584 ! mammary gland connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36509 ! -property_value: IAO:0000589 "dermis connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003585 ! dermis connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37252 ! {source="MA:th"} -property_value: IAO:0000589 "trunk connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003586 ! trunk connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37313 ! {source="MA:th"} -property_value: IAO:0000589 "limb connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003587 ! limb connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37314 ! {source="MA:th"} -property_value: IAO:0000589 "forelimb connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003588 ! forelimb connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37322 ! {source="MA:th"} -property_value: IAO:0000589 "hindlimb connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003589 ! hindlimb connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37550 ! {source="MA:th"} -property_value: IAO:0000589 "main bronchus connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003590 ! main bronchus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37647 ! {source="MA:th"} -property_value: IAO:0000589 "lobar bronchus connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003591 ! lobar bronchus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32690 ! -property_value: IAO:0000589 "bronchus connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003592 ! bronchus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35193 ! -property_value: IAO:0000589 "bronchus connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003592 ! bronchus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37255 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic cavity connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003593 ! thoracic cavity connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37257 ! {source="MA:th"} -property_value: IAO:0000589 "pelvis connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003594 ! pelvis connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37329 ! {source="MA:th"} -property_value: IAO:0000589 "pes connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003595 ! pes connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37328 ! {source="MA:th"} -property_value: IAO:0000589 "ankle connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003596 ! ankle connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37321 ! {source="MA:th"} -property_value: IAO:0000589 "manual digit connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003597 ! manual digit connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35392 ! -property_value: IAO:0000589 "manus connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003598 ! manus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16749 ! -property_value: IAO:0000589 "tail connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003599 ! tail connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37251 ! {source="MA:th"} -property_value: IAO:0000589 "neck cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0003601 ! neck cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37547 ! {source="MA:th"} -property_value: IAO:0000589 "lower respiratory tract cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0003603 ! lower respiratory tract cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18699 ! -property_value: IAO:0000589 "trachea cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0003604 ! trachea cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35875 ! -property_value: IAO:0000589 "trachea cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0003604 ! trachea cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37530 ! {source="MA:th"} -property_value: IAO:0000589 "eye skin gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0003605 ! eye skin gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35495 ! -property_value: IAO:0000589 "limb long bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003606 ! limb long bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35350 ! -property_value: IAO:0000589 "forelimb long bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003607 ! forelimb long bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35403 ! -property_value: IAO:0000589 "hindlimb long bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003608 ! hindlimb long bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37579 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system elastic tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003611 ! respiratory system elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36300 ! -property_value: IAO:0000589 "blood vessel elastic tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003614 ! blood vessel elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35138 ! -property_value: IAO:0000589 "aorta tunica media (embryonic mouse)" xsd:string -intersection_of: UBERON:0003618 ! aorta tunica media -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35137 ! -property_value: IAO:0000589 "aorta tunica intima (embryonic mouse)" xsd:string -intersection_of: UBERON:0003619 ! aorta tunica intima -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19113 ! -property_value: IAO:0000589 "manual digit 1 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003620 ! manual digit 1 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17432 ! -property_value: IAO:0000589 "manual digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17435 ! -property_value: IAO:0000589 "manual digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17438 ! -property_value: IAO:0000589 "manual digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17441 ! -property_value: IAO:0000589 "manual digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17460 ! -property_value: IAO:0000589 "pedal digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17463 ! -property_value: IAO:0000589 "pedal digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17466 ! -property_value: IAO:0000589 "pedal digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17469 ! -property_value: IAO:0000589 "pedal digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17472 ! -property_value: IAO:0000589 "pedal digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19115 ! -property_value: IAO:0000589 "manual digit 2 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003636 ! manual digit 2 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19117 ! -property_value: IAO:0000589 "manual digit 3 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003637 ! manual digit 3 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19119 ! -property_value: IAO:0000589 "manual digit 4 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003638 ! manual digit 4 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19121 ! -property_value: IAO:0000589 "manual digit 5 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003639 ! manual digit 5 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19124 ! -property_value: IAO:0000589 "pedal digit 1 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003640 ! pedal digit 1 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19126 ! -property_value: IAO:0000589 "pedal digit 2 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003641 ! pedal digit 2 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19128 ! -property_value: IAO:0000589 "pedal digit 3 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003642 ! pedal digit 3 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37565 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system arterial blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003643 ! respiratory system arterial blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31436 ! -property_value: IAO:0000589 "kidney arterial blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003644 ! kidney arterial blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19112 ! -property_value: IAO:0000589 "metacarpal bone of digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003645 ! metacarpal bone of digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19114 ! -property_value: IAO:0000589 "metacarpal bone of digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003646 ! metacarpal bone of digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19116 ! -property_value: IAO:0000589 "metacarpal bone of digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003647 ! metacarpal bone of digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19118 ! -property_value: IAO:0000589 "metacarpal bone of digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003648 ! metacarpal bone of digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19120 ! -property_value: IAO:0000589 "metacarpal bone of digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003649 ! metacarpal bone of digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19123 ! -property_value: IAO:0000589 "metatarsal bone of digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003650 ! metatarsal bone of digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19125 ! -property_value: IAO:0000589 "metatarsal bone of digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003651 ! metatarsal bone of digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19127 ! -property_value: IAO:0000589 "metatarsal bone of digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003652 ! metatarsal bone of digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19129 ! -property_value: IAO:0000589 "metatarsal bone of digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003653 ! metatarsal bone of digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19131 ! -property_value: IAO:0000589 "metatarsal bone of digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0003654 ! metatarsal bone of digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32897 ! -property_value: IAO:0000589 "molar tooth (embryonic mouse)" xsd:string -intersection_of: UBERON:0003655 ! molar tooth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36579 ! -property_value: IAO:0000589 "mesopodium bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003656 ! mesopodium bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36501 ! -property_value: IAO:0000589 "limb joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0003657 ! limb joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37333 ! {source="MA:th"} -property_value: IAO:0000589 "pedal digit muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003659 ! pedal digit muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32700 ! -property_value: IAO:0000589 "limb muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003661 ! limb muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36049 ! -property_value: IAO:0000589 "forelimb muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003662 ! forelimb muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37331 ! {source="MA:th"} -property_value: IAO:0000589 "manual digit muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003664 ! manual digit muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37759 ! {source="MA:th"} -property_value: IAO:0000589 "post-anal tail muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003665 ! post-anal tail muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17942 ! -property_value: IAO:0000589 "upper jaw molar (embryonic mouse)" xsd:string -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17921 ! -property_value: IAO:0000589 "lower jaw molar (embryonic mouse)" xsd:string -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18509 ! -property_value: IAO:0000589 "patellar ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0003676 ! patellar ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37975 ! {source="MA:th"} -property_value: IAO:0000589 "tooth root (embryonic mouse)" xsd:string -intersection_of: UBERON:0003677 ! tooth root -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37911 ! {source="MA:th"} -property_value: IAO:0000589 "mouth floor (embryonic mouse)" xsd:string -intersection_of: UBERON:0003679 ! mouth floor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37929 ! {source="MA:th"} -property_value: IAO:0000589 "palatal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003682 ! palatal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36505 ! -property_value: IAO:0000589 "abdominal cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0003684 ! abdominal cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35263 ! -property_value: IAO:0000589 "cranial suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0003685 ! cranial suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37868 ! {source="MA:th"} -property_value: IAO:0000589 "foramen magnum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003687 ! foramen magnum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19302 ! -property_value: IAO:0000589 "metacarpophalangeal joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0003695 ! metacarpophalangeal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37064 ! {source="MA:th"} -property_value: IAO:0000589 "abdominal wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0003697 ! abdominal wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37940 ! {source="MA:th"} -property_value: IAO:0000589 "pubic symphysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0003699 ! pubic symphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19196 ! -property_value: IAO:0000589 "temporomandibular joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0003700 ! temporomandibular joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35853 ! -property_value: IAO:0000589 "calcaneal tendon (embryonic mouse)" xsd:string -intersection_of: UBERON:0003701 ! calcaneal tendon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37881 ! {source="MA:th"} -property_value: IAO:0000589 "inguinal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003702 ! inguinal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19181 ! -property_value: IAO:0000589 "laryngeal vocal fold (embryonic mouse)" xsd:string -intersection_of: UBERON:0003706 ! laryngeal vocal fold -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18625 ! -property_value: IAO:0000589 "sinus of Valsalva (embryonic mouse)" xsd:string -intersection_of: UBERON:0003707 ! sinus of Valsalva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19320 ! -property_value: IAO:0000589 "carotid sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003708 ! carotid sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37829 ! {source="MA:th"} -property_value: IAO:0000589 "circle of Willis (embryonic mouse)" xsd:string -intersection_of: UBERON:0003709 ! circle of Willis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19059 ! -property_value: IAO:0000589 "cavernous sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003712 ! cavernous sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37226 ! {source="MA:th"} -property_value: IAO:0000589 "splenic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0003713 ! splenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37959 ! {source="MA:th"} -property_value: IAO:0000589 "splanchnic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003715 ! splanchnic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19168 ! -property_value: IAO:0000589 "lingual nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003721 ! lingual nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17803 ! -property_value: IAO:0000589 "vestibular nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003723 ! vestibular nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18227 ! -property_value: IAO:0000589 "intercostal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0003727 ! intercostal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36001 ! -property_value: IAO:0000589 "mediastinum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003728 ! mediastinum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26937 ! -property_value: IAO:0000589 "mouth mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0003729 ! mouth mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36141 ! -property_value: IAO:0000589 "prostate bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0003820 ! prostate bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37284 ! {source="MA:th"} -property_value: IAO:0000589 "metapodium bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003821 ! metapodium bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17424 ! -property_value: IAO:0000589 "forelimb stylopod (embryonic mouse)" xsd:string -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17496 ! -property_value: IAO:0000589 "hindlimb zeugopod (embryonic mouse)" xsd:string -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37265 ! {source="MA:th"} -property_value: IAO:0000589 "nerve of thoracic segment (embryonic mouse)" xsd:string -intersection_of: UBERON:0003824 ! nerve of thoracic segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37061 ! {source="MA:th"} -property_value: IAO:0000589 "nerve of abdominal segment (embryonic mouse)" xsd:string -intersection_of: UBERON:0003825 ! nerve of abdominal segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35893 ! -property_value: IAO:0000589 "upper leg bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003826 ! upper leg bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37247 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic segment bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003827 ! thoracic segment bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37058 ! {source="MA:th"} -property_value: IAO:0000589 "abdominal segment bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003828 ! abdominal segment bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37787 ! {source="MA:th"} -property_value: IAO:0000589 "urethra muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003829 ! urethra muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35733 ! -property_value: IAO:0000589 "respiratory system muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003831 ! respiratory system muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26983 ! -property_value: IAO:0000589 "esophagus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003832 ! esophagus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37060 ! {source="MA:th"} -property_value: IAO:0000589 "abdominal segment muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003833 ! abdominal segment muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37238 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic segment blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003834 ! thoracic segment blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37057 ! {source="MA:th"} -property_value: IAO:0000589 "abdominal segment blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003835 ! abdominal segment blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37063 ! {source="MA:th"} -property_value: IAO:0000589 "abdominal segment skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0003836 ! abdominal segment skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37253 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic segment connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003837 ! thoracic segment connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37059 ! {source="MA:th"} -property_value: IAO:0000589 "abdominal segment connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003838 ! abdominal segment connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19204 ! -property_value: IAO:0000589 "forelimb joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0003839 ! forelimb joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32635 ! -property_value: IAO:0000589 "hindlimb joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0003840 ! hindlimb joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35160 ! -property_value: IAO:0000589 "autopod joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0003841 ! autopod joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16167 ! -property_value: IAO:0000589 "neural tube lumen (embryonic mouse)" xsd:string -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32903 ! -property_value: IAO:0000589 "dental epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003843 ! dental epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17835 ! -property_value: IAO:0000589 "upper eyelid epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003844 ! upper eyelid epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17832 ! -property_value: IAO:0000589 "lower eyelid epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003845 ! lower eyelid epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35864 ! -property_value: IAO:0000589 "thymus epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003846 ! thymus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18622 ! -property_value: IAO:0000589 "thyroid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0003847 ! thyroid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16518 ! -property_value: IAO:0000589 "diencephalon neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0003851 ! diencephalon neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35747 ! -property_value: IAO:0000589 "rhombencephalon neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0003852 ! rhombencephalon neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16163 ! -property_value: IAO:0000589 "spinal cord neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0003853 ! spinal cord neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16881 ! -property_value: IAO:0000589 "spinal cord neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0003853 ! spinal cord neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16858 ! -property_value: IAO:0000589 "gonad mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003855 ! gonad mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17385 ! -property_value: IAO:0000589 "gonad mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003855 ! gonad mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32891 ! -property_value: IAO:0000589 "uncondensed odontogenic mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003856 ! uncondensed odontogenic mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17836 ! -property_value: IAO:0000589 "upper eyelid mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003857 ! upper eyelid mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17833 ! -property_value: IAO:0000589 "lower eyelid mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003858 ! lower eyelid mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32628 ! -property_value: IAO:0000589 "forelimb mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003859 ! forelimb mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32637 ! -property_value: IAO:0000589 "hindlimb mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0003860 ! hindlimb mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19130 ! -property_value: IAO:0000589 "pedal digit 4 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003862 ! pedal digit 4 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19132 ! -property_value: IAO:0000589 "pedal digit 5 phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0003863 ! pedal digit 5 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37306 ! {source="MA:th"} -property_value: IAO:0000589 "middle phalanx of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003864 ! middle phalanx of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35393 ! -property_value: IAO:0000589 "distal phalanx of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003865 ! distal phalanx of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37311 ! {source="MA:th"} -property_value: IAO:0000589 "middle phalanx of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0003866 ! middle phalanx of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37310 ! {source="MA:th"} -property_value: IAO:0000589 "distal phalanx of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0003867 ! distal phalanx of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37312 ! {source="MA:th"} -property_value: IAO:0000589 "proximal phalanx of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0003868 ! proximal phalanx of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32772 ! -property_value: IAO:0000589 "hippocampal field (embryonic mouse)" xsd:string -intersection_of: UBERON:0003876 ! hippocampal field -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32768 ! -property_value: IAO:0000589 "CA1 field of hippocampus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003881 ! CA1 field of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32769 ! -property_value: IAO:0000589 "CA2 field of hippocampus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003882 ! CA2 field of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32770 ! -property_value: IAO:0000589 "CA3 field of hippocampus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003883 ! CA3 field of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32771 ! -property_value: IAO:0000589 "CA4 field of hippocampus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003884 ! CA4 field of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35562 ! -property_value: IAO:0000589 "mesometrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003885 ! mesometrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16088 ! -property_value: IAO:0000589 "intraembryonic coelom (embryonic mouse)" xsd:string -intersection_of: UBERON:0003887 ! intraembryonic coelom -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16081 ! -property_value: IAO:0000589 "extraembryonic coelomic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0003888 ! extraembryonic coelomic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18984 ! -property_value: IAO:0000589 "fallopian tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0003889 ! fallopian tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35660 ! -property_value: IAO:0000589 "fallopian tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0003889 ! fallopian tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27665 ! -property_value: IAO:0000589 "Mullerian duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003890 ! Mullerian duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16847 ! -property_value: IAO:0000589 "liver primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003894 ! liver primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18167 ! -property_value: IAO:0000589 "axial muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17171 ! -property_value: IAO:0000589 "retinal neural layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18590 ! -property_value: IAO:0000589 "retinal neural layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32687 ! -property_value: IAO:0000589 "cardiac jelly (embryonic mouse)" xsd:string -intersection_of: UBERON:0003906 ! cardiac jelly -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36608 ! -property_value: IAO:0000589 "choroid plexus epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003911 ! choroid plexus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35340 ! -property_value: IAO:0000589 "fat pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0003916 ! fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35932 ! -property_value: IAO:0000589 "venous blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0003920 ! venous blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17066 ! -property_value: IAO:0000589 "pancreas primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003921 ! pancreas primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35645 ! -property_value: IAO:0000589 "pancreatic epithelial bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0003922 ! pancreatic epithelial bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17067 ! -property_value: IAO:0000589 "dorsal pancreatic bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0003923 ! dorsal pancreatic bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17256 ! -property_value: IAO:0000589 "ventral pancreatic bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0003924 ! ventral pancreatic bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35687 ! -property_value: IAO:0000589 "photoreceptor inner segment layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0003925 ! photoreceptor inner segment layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35688 ! -property_value: IAO:0000589 "photoreceptor outer segment layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0003926 ! photoreceptor outer segment layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32928 ! -property_value: IAO:0000589 "digestive tract epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0003929 ! digestive tract epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37954 ! {source="MA:th"} -property_value: IAO:0000589 "somatosensory system (embryonic mouse)" xsd:string -intersection_of: UBERON:0003942 ! somatosensory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25167 ! -property_value: IAO:0000589 "fourth lumbar dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0003943 ! fourth lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37953 ! {source="MA:th"} -property_value: IAO:0000589 "somatic motor system (embryonic mouse)" xsd:string -intersection_of: UBERON:0003945 ! somatic motor system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37882 ! {source="MA:th"} -property_value: IAO:0000589 "inner ear canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0003950 ! inner ear canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37916 ! {source="MA:th"} -property_value: IAO:0000589 "ocular fundus (embryonic mouse)" xsd:string -intersection_of: UBERON:0003951 ! ocular fundus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37414 ! {source="MA:th"} -property_value: IAO:0000589 "anterior stroma of cornea (embryonic mouse)" xsd:string -intersection_of: UBERON:0003952 ! anterior stroma of cornea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37415 ! {source="MA:th"} -property_value: IAO:0000589 "posterior stroma of cornea (embryonic mouse)" xsd:string -intersection_of: UBERON:0003953 ! posterior stroma of cornea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19228 ! -property_value: IAO:0000589 "squamoparietal suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0003954 ! squamoparietal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37910 ! {source="MA:th"} -property_value: IAO:0000589 "molar crown (embryonic mouse)" xsd:string -intersection_of: UBERON:0003955 ! molar crown -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37427 ! {source="MA:th"} -property_value: IAO:0000589 "aqueous drainage system (embryonic mouse)" xsd:string -intersection_of: UBERON:0003956 ! aqueous drainage system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37450 ! {source="MA:th"} -property_value: IAO:0000589 "Bruch's membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0003957 ! Bruch's membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37896 ! {source="MA:th"} -property_value: IAO:0000589 "long bone epiphyseal ossification zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003958 ! long bone epiphyseal ossification zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18332 ! -property_value: IAO:0000589 "rete testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0003959 ! rete testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36320 ! -property_value: IAO:0000589 "styloid process of temporal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003960 ! styloid process of temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37828 ! {source="MA:th"} -property_value: IAO:0000589 "cingulum of brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0003961 ! cingulum of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36275 ! -property_value: IAO:0000589 "pterygopalatine ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0003962 ! pterygopalatine ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36274 ! -property_value: IAO:0000589 "otic ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0003963 ! otic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37874 ! {source="MA:th"} -property_value: IAO:0000589 "gonial bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003966 ! gonial bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37841 ! {source="MA:th"} -property_value: IAO:0000589 "cutaneous elastic tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0003967 ! cutaneous elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37938 ! {source="MA:th"} -property_value: IAO:0000589 "peripheral lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0003968 ! peripheral lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37914 ! {source="MA:th"} -property_value: IAO:0000589 "nasal concha of ethmoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0003973 ! nasal concha of ethmoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18987 ! -property_value: IAO:0000589 "upper part of vagina (embryonic mouse)" xsd:string -intersection_of: UBERON:0003974 ! upper part of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37982 ! {source="MA:th"} -property_value: IAO:0000589 "saccule duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003976 ! saccule duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37981 ! {source="MA:th"} -property_value: IAO:0000589 "utricle duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003977 ! utricle duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37818 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellum fissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0003980 ! cerebellum fissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30755 ! -property_value: IAO:0000589 "primordial ovarian follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003981 ! primordial ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30777 ! -property_value: IAO:0000589 "mature ovarian follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003982 ! mature ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29897 ! -property_value: IAO:0000589 "uterine tube infundibulum (embryonic mouse)" xsd:string -intersection_of: UBERON:0003984 ! uterine tube infundibulum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37899 ! {source="MA:th"} -property_value: IAO:0000589 "major sublingual duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003985 ! major sublingual duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37909 ! {source="MA:th"} -property_value: IAO:0000589 "minor sublingual duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0003986 ! minor sublingual duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35395 ! -property_value: IAO:0000589 "Hassall's corpuscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0003987 ! Hassall's corpuscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37974 ! {source="MA:th"} -property_value: IAO:0000589 "thymus corticomedullary boundary (embryonic mouse)" xsd:string -intersection_of: UBERON:0003988 ! thymus corticomedullary boundary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36067 ! -property_value: IAO:0000589 "interventricular foramen of CNS (embryonic mouse)" xsd:string -intersection_of: UBERON:0003993 ! interventricular foramen of CNS -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37967 ! {source="MA:th"} -property_value: IAO:0000589 "subarcuate fossa (embryonic mouse)" xsd:string -intersection_of: UBERON:0003995 ! subarcuate fossa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18651 ! -property_value: IAO:0000589 "hyoid bone greater horn (embryonic mouse)" xsd:string -intersection_of: UBERON:0003997 ! hyoid bone greater horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18652 ! -property_value: IAO:0000589 "hyoid bone lesser horn (embryonic mouse)" xsd:string -intersection_of: UBERON:0003998 ! hyoid bone lesser horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18653 ! -property_value: IAO:0000589 "hyoid bone body (embryonic mouse)" xsd:string -intersection_of: UBERON:0003999 ! hyoid bone body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37972 ! {source="MA:th"} -property_value: IAO:0000589 "tarsal gland acinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004000 ! tarsal gland acinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37917 ! {source="MA:th"} -property_value: IAO:0000589 "olfactory bulb layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004001 ! olfactory bulb layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35222 ! -property_value: IAO:0000589 "posterior lobe of cerebellum (embryonic mouse)" xsd:string -intersection_of: UBERON:0004002 ! posterior lobe of cerebellum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37822 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellum intermediate zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004006 ! cerebellum intermediate zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37873 ! {source="MA:th"} -property_value: IAO:0000589 "golgi tendon organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0004012 ! golgi tendon organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36119 ! -property_value: IAO:0000589 "egg cylinder (embryonic mouse)" xsd:string -intersection_of: UBERON:0004013 ! egg cylinder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32838 ! -property_value: IAO:0000589 "dermatome (embryonic mouse)" xsd:string -intersection_of: UBERON:0004016 ! dermatome -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36597 ! -property_value: IAO:0000589 "baroreceptor (embryonic mouse)" xsd:string -intersection_of: UBERON:0004019 ! baroreceptor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31876 ! -property_value: IAO:0000589 "spongiotrophoblast layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004021 ! spongiotrophoblast layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32665 ! -property_value: IAO:0000589 "ganglionic eminence (embryonic mouse)" xsd:string -intersection_of: UBERON:0004023 ! ganglionic eminence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37471 ! {source="MA:th"} -property_value: IAO:0000589 "medial ganglionic eminence (embryonic mouse)" xsd:string -intersection_of: UBERON:0004024 ! medial ganglionic eminence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37470 ! {source="MA:th"} -property_value: IAO:0000589 "lateral ganglionic eminence (embryonic mouse)" xsd:string -intersection_of: UBERON:0004025 ! lateral ganglionic eminence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37469 ! {source="MA:th"} -property_value: IAO:0000589 "caudal ganglionic eminence (embryonic mouse)" xsd:string -intersection_of: UBERON:0004026 ! caudal ganglionic eminence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31872 ! -property_value: IAO:0000589 "chorionic plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0004027 ! chorionic plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37456 ! {source="MA:th"} -property_value: IAO:0000589 "canal of Schlemm (embryonic mouse)" xsd:string -intersection_of: UBERON:0004029 ! canal of Schlemm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37428 ! {source="MA:th"} -property_value: IAO:0000589 "aqueous vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004030 ! aqueous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32703 ! -property_value: IAO:0000589 "cortical subplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0004035 ! cortical subplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17545 ! -property_value: IAO:0000589 "cortical intermediate zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004040 ! cortical intermediate zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32712 ! -property_value: IAO:0000589 "cortical intermediate zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004040 ! cortical intermediate zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37960 ! {source="MA:th"} -property_value: IAO:0000589 "spleen primary B follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004041 ! spleen primary B follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37961 ! {source="MA:th"} -property_value: IAO:0000589 "spleen secondary B follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004042 ! spleen secondary B follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32831 ! -property_value: IAO:0000589 "semicircular canal ampulla (embryonic mouse)" xsd:string -intersection_of: UBERON:0004043 ! semicircular canal ampulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36068 ! -property_value: IAO:0000589 "anterior visceral endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0004044 ! anterior visceral endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36331 ! -property_value: IAO:0000589 "tailgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0004045 ! tailgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19056 ! -property_value: IAO:0000589 "basal cistern (embryonic mouse)" xsd:string -intersection_of: UBERON:0004047 ! basal cistern -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18212 ! -property_value: IAO:0000589 "pontine cistern (embryonic mouse)" xsd:string -intersection_of: UBERON:0004048 ! pontine cistern -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37814 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellomedullary cistern (embryonic mouse)" xsd:string -intersection_of: UBERON:0004049 ! cerebellomedullary cistern -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37813 ! {source="MA:th"} -property_value: IAO:0000589 "subarachnoid cistern (embryonic mouse)" xsd:string -intersection_of: UBERON:0004050 ! subarachnoid cistern -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37815 ! {source="MA:th"} -property_value: IAO:0000589 "lateral cerebellomedullary cistern (embryonic mouse)" xsd:string -intersection_of: UBERON:0004051 ! lateral cerebellomedullary cistern -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37817 ! {source="MA:th"} -property_value: IAO:0000589 "quadrigeminal cistern (embryonic mouse)" xsd:string -intersection_of: UBERON:0004052 ! quadrigeminal cistern -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30977 ! -property_value: IAO:0000589 "external male genitalia (embryonic mouse)" xsd:string -intersection_of: UBERON:0004053 ! external male genitalia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37440 ! {source="MA:th"} -property_value: IAO:0000589 "biliary ductule (embryonic mouse)" xsd:string -intersection_of: UBERON:0004058 ! biliary ductule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17152 ! -property_value: IAO:0000589 "neural tube ventricular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004060 ! neural tube ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35362 ! -property_value: IAO:0000589 "neural tube ventricular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004060 ! neural tube ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17148 ! -property_value: IAO:0000589 "neural tube mantle layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004061 ! neural tube mantle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35360 ! -property_value: IAO:0000589 "neural tube mantle layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004061 ! neural tube mantle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17151 ! -property_value: IAO:0000589 "neural tube marginal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004062 ! neural tube marginal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17149 ! -property_value: IAO:0000589 "spinal cord alar plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17581 ! -property_value: IAO:0000589 "spinal cord alar plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0004063 ! spinal cord alar plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16681 ! -property_value: IAO:0000589 "frontonasal prominence (embryonic mouse)" xsd:string -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16805 ! -property_value: IAO:0000589 "lateral nasal prominence (embryonic mouse)" xsd:string -intersection_of: UBERON:0004067 ! lateral nasal prominence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16808 ! -property_value: IAO:0000589 "medial nasal prominence (embryonic mouse)" xsd:string -intersection_of: UBERON:0004068 ! medial nasal prominence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35106 ! -property_value: IAO:0000589 "accessory olfactory bulb (embryonic mouse)" xsd:string -intersection_of: UBERON:0004069 ! accessory olfactory bulb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35224 ! -property_value: IAO:0000589 "cerebellum vermis lobule (embryonic mouse)" xsd:string -intersection_of: UBERON:0004070 ! cerebellum vermis lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37819 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellum interpositus nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004073 ! cerebellum interpositus nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35225 ! -property_value: IAO:0000589 "cerebellum vermis lobule I (embryonic mouse)" xsd:string -intersection_of: UBERON:0004074 ! cerebellum vermis lobule I -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35226 ! -property_value: IAO:0000589 "cerebellum vermis lobule II (embryonic mouse)" xsd:string -intersection_of: UBERON:0004075 ! cerebellum vermis lobule II -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35227 ! -property_value: IAO:0000589 "cerebellum vermis lobule III (embryonic mouse)" xsd:string -intersection_of: UBERON:0004076 ! cerebellum vermis lobule III -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35228 ! -property_value: IAO:0000589 "cerebellum vermis lobule IV (embryonic mouse)" xsd:string -intersection_of: UBERON:0004077 ! cerebellum vermis lobule IV -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35229 ! -property_value: IAO:0000589 "cerebellum vermis lobule IX (embryonic mouse)" xsd:string -intersection_of: UBERON:0004078 ! cerebellum vermis lobule IX -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35230 ! -property_value: IAO:0000589 "cerebellum vermis lobule V (embryonic mouse)" xsd:string -intersection_of: UBERON:0004079 ! cerebellum vermis lobule V -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35231 ! -property_value: IAO:0000589 "cerebellum vermis lobule VI (embryonic mouse)" xsd:string -intersection_of: UBERON:0004080 ! cerebellum vermis lobule VI -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35232 ! -property_value: IAO:0000589 "cerebellum vermis lobule VII (embryonic mouse)" xsd:string -intersection_of: UBERON:0004081 ! cerebellum vermis lobule VII -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35233 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIII (embryonic mouse)" xsd:string -intersection_of: UBERON:0004082 ! cerebellum vermis lobule VIII -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35234 ! -property_value: IAO:0000589 "cerebellum vermis lobule X (embryonic mouse)" xsd:string -intersection_of: UBERON:0004083 ! cerebellum vermis lobule X -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30837 ! -property_value: IAO:0000589 "genital labium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004084 ! genital labium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32674 ! -property_value: IAO:0000589 "brain ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004086 ! brain ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18415 ! -property_value: IAO:0000589 "vena cava (embryonic mouse)" xsd:string -intersection_of: UBERON:0004087 ! vena cava -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32806 ! -property_value: IAO:0000589 "midface (embryonic mouse)" xsd:string -intersection_of: UBERON:0004089 ! midface -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26535 ! -property_value: IAO:0000589 "odontoid process of cervical vertebra 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004096 ! odontoid process of cervical vertebra 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35118 ! -property_value: IAO:0000589 "alveolar ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0004103 ! alveolar ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37776 ! {source="MA:th"} -property_value: IAO:0000589 "muscle of auditory ossicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004113 ! muscle of auditory ossicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37778 ! {source="MA:th"} -property_value: IAO:0000589 "tympanic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0004114 ! tympanic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37775 ! {source="MA:th"} -property_value: IAO:0000589 "blood vessel of tympanic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0004115 ! blood vessel of tympanic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37777 ! {source="MA:th"} -property_value: IAO:0000589 "nerve of tympanic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0004116 ! nerve of tympanic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32752 ! -property_value: IAO:0000589 "pharyngeal pouch (embryonic mouse)" xsd:string -intersection_of: UBERON:0004117 ! pharyngeal pouch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16367 ! -property_value: IAO:0000589 "genitourinary system (embryonic mouse)" xsd:string -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37475 ! {source="MA:th"} -property_value: IAO:0000589 "myocardial layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004123 ! myocardial layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37833 ! {source="MA:th"} -property_value: IAO:0000589 "compact layer of ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004127 ! compact layer of ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16540 ! -property_value: IAO:0000589 "optic vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35212 ! -property_value: IAO:0000589 "cerebellar layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004130 ! cerebellar layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35884 ! -property_value: IAO:0000589 "trigeminal sensory nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004132 ! trigeminal sensory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28281 ! -property_value: IAO:0000589 "proximal tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0004134 ! proximal tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28387 ! -property_value: IAO:0000589 "distal tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0004135 ! distal tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16106 ! -property_value: IAO:0000589 "cardiogenic plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0004139 ! cardiogenic plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32685 ! -property_value: IAO:0000589 "heart tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0004141 ! heart tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16346 ! -property_value: IAO:0000589 "outflow tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37137 ! {source="MA:th"} -property_value: IAO:0000589 "cardiac vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004148 ! cardiac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17013 ! -property_value: IAO:0000589 "atrial septum primum (embryonic mouse)" xsd:string -intersection_of: UBERON:0004154 ! atrial septum primum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17864 ! -property_value: IAO:0000589 "atrial septum secundum (embryonic mouse)" xsd:string -intersection_of: UBERON:0004155 ! atrial septum secundum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36025 ! -property_value: IAO:0000589 "proepicardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004160 ! proepicardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16318 ! -property_value: IAO:0000589 "septum transversum (embryonic mouse)" xsd:string -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37956 ! {source="MA:th"} -property_value: IAO:0000589 "spinal cord ventral commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0004170 ! spinal cord ventral commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37665 ! {source="MA:th"} -property_value: IAO:0000589 "hemopoietic organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0004177 ! hemopoietic organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35135 ! -property_value: IAO:0000589 "aorta smooth muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004178 ! aorta smooth muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35539 ! -property_value: IAO:0000589 "mammary gland fat (embryonic mouse)" xsd:string -intersection_of: UBERON:0004180 ! mammary gland fat -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35714 ! -property_value: IAO:0000589 "prostate gland stroma (embryonic mouse)" xsd:string -intersection_of: UBERON:0004184 ! prostate gland stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32930 ! -property_value: IAO:0000589 "endodermal part of digestive tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0004185 ! endodermal part of digestive tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35611 ! -property_value: IAO:0000589 "olfactory bulb mitral cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004186 ! olfactory bulb mitral cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19153 ! -property_value: IAO:0000589 "Harderian gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0004187 ! Harderian gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35458 ! -property_value: IAO:0000589 "glomerular epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004188 ! glomerular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28328 ! -property_value: IAO:0000589 "loop of Henle ascending limb thin segment (embryonic mouse)" xsd:string -intersection_of: UBERON:0004193 ! loop of Henle ascending limb thin segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28361 ! -property_value: IAO:0000589 "loop of Henle ascending limb thin segment (embryonic mouse)" xsd:string -intersection_of: UBERON:0004193 ! loop of Henle ascending limb thin segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29657 ! -property_value: IAO:0000589 "proximal convoluted tubule segment 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004196 ! proximal convoluted tubule segment 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29659 ! -property_value: IAO:0000589 "proximal convoluted tubule segment 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004197 ! proximal convoluted tubule segment 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27681 ! -property_value: IAO:0000589 "comma-shaped body (embryonic mouse)" xsd:string -intersection_of: UBERON:0004198 ! comma-shaped body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27756 ! -property_value: IAO:0000589 "S-shaped body (embryonic mouse)" xsd:string -intersection_of: UBERON:0004199 ! S-shaped body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29675 ! -property_value: IAO:0000589 "kidney outer medulla inner stripe (embryonic mouse)" xsd:string -intersection_of: UBERON:0004201 ! kidney outer medulla inner stripe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29663 ! -property_value: IAO:0000589 "kidney outer medulla outer stripe (embryonic mouse)" xsd:string -intersection_of: UBERON:0004202 ! kidney outer medulla outer stripe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28130 ! -property_value: IAO:0000589 "cortical collecting duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0004203 ! cortical collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28346 ! -property_value: IAO:0000589 "outer medullary collecting duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0004204 ! outer medullary collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28370 ! -property_value: IAO:0000589 "inner medullary collecting duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0004205 ! inner medullary collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28245 ! -property_value: IAO:0000589 "glomerular capillary (embryonic mouse)" xsd:string -intersection_of: UBERON:0004212 ! glomerular capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37344 ! {source="MA:th"} -property_value: IAO:0000589 "upper leg nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0004214 ! upper leg nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37268 ! {source="MA:th"} -property_value: IAO:0000589 "back nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0004215 ! back nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37338 ! {source="MA:th"} -property_value: IAO:0000589 "lower arm nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0004216 ! lower arm nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37337 ! {source="MA:th"} -property_value: IAO:0000589 "upper arm nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0004217 ! upper arm nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37345 ! {source="MA:th"} -property_value: IAO:0000589 "lower leg nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0004218 ! lower leg nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36630 ! -property_value: IAO:0000589 "urethra smooth muscle layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004219 ! urethra smooth muscle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35469 ! -property_value: IAO:0000589 "large intestine smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004220 ! large intestine smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35441 ! -property_value: IAO:0000589 "intestine smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004221 ! intestine smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35443 ! -property_value: IAO:0000589 "intestine smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004221 ! intestine smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35823 ! -property_value: IAO:0000589 "stomach smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004222 ! stomach smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30997 ! -property_value: IAO:0000589 "vagina smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004223 ! vagina smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29270 ! -property_value: IAO:0000589 "muscular coat of vas deferens (embryonic mouse)" xsd:string -intersection_of: UBERON:0004224 ! muscular coat of vas deferens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35734 ! -property_value: IAO:0000589 "respiratory system smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004225 ! respiratory system smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35117 ! -property_value: IAO:0000589 "gastrointestinal system smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004226 ! gastrointestinal system smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28120 ! -property_value: IAO:0000589 "kidney pelvis smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004227 ! kidney pelvis smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37791 ! {source="MA:th"} -property_value: IAO:0000589 "urinary bladder smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004228 ! urinary bladder smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28649 ! -property_value: IAO:0000589 "urinary bladder trigone smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004229 ! urinary bladder trigone smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30123 ! -property_value: IAO:0000589 "urinary bladder neck smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004230 ! urinary bladder neck smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37394 ! {source="MA:th"} -property_value: IAO:0000589 "anal region smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004231 ! anal region smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36313 ! -property_value: IAO:0000589 "lymphatic vessel smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004232 ! lymphatic vessel smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35520 ! -property_value: IAO:0000589 "lower respiratory tract smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004233 ! lower respiratory tract smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35448 ! -property_value: IAO:0000589 "iris smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004234 ! iris smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37669 ! {source="MA:th"} -property_value: IAO:0000589 "mammary gland smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004235 ! mammary gland smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36287 ! -property_value: IAO:0000589 "arteriole smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004236 ! arteriole smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35177 ! -property_value: IAO:0000589 "blood vessel smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004237 ! blood vessel smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35807 ! -property_value: IAO:0000589 "spleen smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004238 ! spleen smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35783 ! -property_value: IAO:0000589 "small intestine smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004239 ! small intestine smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35373 ! -property_value: IAO:0000589 "gallbladder smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004240 ! gallbladder smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37551 ! {source="MA:th"} -property_value: IAO:0000589 "main bronchus smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004241 ! main bronchus smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35195 ! -property_value: IAO:0000589 "bronchus smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004242 ! bronchus smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35713 ! -property_value: IAO:0000589 "prostate gland smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004243 ! prostate gland smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29046 ! -property_value: IAO:0000589 "oviduct smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004245 ! oviduct smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37708 ! {source="MA:th"} -property_value: IAO:0000589 "outflow tract smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004246 ! outflow tract smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37248 ! {source="MA:th"} -property_value: IAO:0000589 "bone of dorsum (embryonic mouse)" xsd:string -intersection_of: UBERON:0004247 ! bone of dorsum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37309 ! {source="MA:th"} -property_value: IAO:0000589 "pedal digit bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004248 ! pedal digit bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37305 ! {source="MA:th"} -property_value: IAO:0000589 "manual digit bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004249 ! manual digit bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35892 ! -property_value: IAO:0000589 "upper arm bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004250 ! upper arm bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35519 ! -property_value: IAO:0000589 "hindlimb zeugopod bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004251 ! hindlimb zeugopod bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19144 ! -property_value: IAO:0000589 "hindlimb stylopod muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004252 ! hindlimb stylopod muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18187 ! -property_value: IAO:0000589 "skin muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35776 ! -property_value: IAO:0000589 "skin muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32622 ! -property_value: IAO:0000589 "forelimb zeugopod muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004254 ! forelimb zeugopod muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19107 ! -property_value: IAO:0000589 "forelimb stylopod muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004255 ! forelimb stylopod muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19318 ! -property_value: IAO:0000589 "hindlimb zeugopod muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004256 ! hindlimb zeugopod muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37299 ! {source="MA:th"} -property_value: IAO:0000589 "upper leg blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0004257 ! upper leg blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37243 ! {source="MA:th"} -property_value: IAO:0000589 "back blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0004258 ! back blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37295 ! {source="MA:th"} -property_value: IAO:0000589 "lower arm blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0004259 ! lower arm blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37294 ! {source="MA:th"} -property_value: IAO:0000589 "upper arm blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0004260 ! upper arm blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37300 ! {source="MA:th"} -property_value: IAO:0000589 "lower leg blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0004261 ! lower leg blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18159 ! -property_value: IAO:0000589 "upper leg skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0004262 ! upper leg skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18062 ! -property_value: IAO:0000589 "upper arm skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0004263 ! upper arm skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18156 ! -property_value: IAO:0000589 "lower leg skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0004264 ! lower leg skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35623 ! -property_value: IAO:0000589 "outflow tract myocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004265 ! outflow tract myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37325 ! {source="MA:th"} -property_value: IAO:0000589 "upper leg connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004266 ! upper leg connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37256 ! {source="MA:th"} -property_value: IAO:0000589 "back connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004267 ! back connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37319 ! {source="MA:th"} -property_value: IAO:0000589 "lower arm connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004268 ! lower arm connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37317 ! {source="MA:th"} -property_value: IAO:0000589 "upper arm connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004269 ! upper arm connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37327 ! {source="MA:th"} -property_value: IAO:0000589 "lower leg connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004270 ! lower leg connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37707 ! {source="MA:th"} -property_value: IAO:0000589 "outflow tract pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004271 ! outflow tract pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37463 ! {source="MA:th"} -property_value: IAO:0000589 "cartilaginous joint suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0004273 ! cartilaginous joint suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37055 ! {source="MA:th"} -property_value: IAO:0000589 "third ventricle choroid plexus epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004275 ! third ventricle choroid plexus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35335 ! -property_value: IAO:0000589 "eye muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004277 ! eye muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17213 ! -property_value: IAO:0000589 "skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0004288 ! skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31109 ! -property_value: IAO:0000589 "dermomyotome (embryonic mouse)" xsd:string -intersection_of: UBERON:0004290 ! dermomyotome -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36645 ! -property_value: IAO:0000589 "cardiac skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0004292 ! cardiac skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17271 ! -property_value: IAO:0000589 "parasympathetic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35845 ! -property_value: IAO:0000589 "sympathetic nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0004295 ! sympathetic nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37582 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system lymphatic vessel smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004296 ! respiratory system lymphatic vessel smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37573 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system blood vessel smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004297 ! respiratory system blood vessel smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35287 ! -property_value: IAO:0000589 "distal phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0004300 ! distal phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35572 ! -property_value: IAO:0000589 "middle phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0004301 ! middle phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35716 ! -property_value: IAO:0000589 "proximal phalanx (embryonic mouse)" xsd:string -intersection_of: UBERON:0004302 ! proximal phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18016 ! -property_value: IAO:0000589 "vault of skull (embryonic mouse)" xsd:string -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16107 ! -property_value: IAO:0000589 "allantois (embryonic mouse)" xsd:string -intersection_of: UBERON:0004340 ! allantois -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16072 ! -property_value: IAO:0000589 "primitive streak (embryonic mouse)" xsd:string -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16354 ! -property_value: IAO:0000589 "cardinal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16046 ! -property_value: IAO:0000589 "trophectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0004345 ! trophectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35944 ! -property_value: IAO:0000589 "limb bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0004347 ! limb bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16322 ! -property_value: IAO:0000589 "optic eminence (embryonic mouse)" xsd:string -intersection_of: UBERON:0004348 ! optic eminence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19171 ! -property_value: IAO:0000589 "female inguinal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0004353 ! female inguinal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26913 ! -property_value: IAO:0000589 "male inguinal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0004354 ! male inguinal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32744 ! -property_value: IAO:0000589 "apical ectodermal ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0004356 ! apical ectodermal ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19291 ! -property_value: IAO:0000589 "caput epididymis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004358 ! caput epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19293 ! -property_value: IAO:0000589 "corpus epididymis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004359 ! corpus epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19292 ! -property_value: IAO:0000589 "cauda epididymis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004360 ! cauda epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16118 ! -property_value: IAO:0000589 "pharyngeal arch 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16684 ! -property_value: IAO:0000589 "pharyngeal arch artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004363 ! pharyngeal arch artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16059 ! -property_value: IAO:0000589 "ectoplacental cone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004364 ! ectoplacental cone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36494 ! -property_value: IAO:0000589 "vitelline blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0004365 ! vitelline blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16065 ! -property_value: IAO:0000589 "extraembryonic ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0004366 ! extraembryonic ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18804 ! -property_value: IAO:0000589 "Descemet's membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0004367 ! Descemet's membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17622 ! -property_value: IAO:0000589 "Reichert's cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0004368 ! Reichert's cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16057 ! -property_value: IAO:0000589 "Reichert's membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0004369 ! Reichert's membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32702 ! -property_value: IAO:0000589 "skeleton of limb (embryonic mouse)" xsd:string -intersection_of: UBERON:0004381 ! skeleton of limb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37771 ! {source="MA:th"} -property_value: IAO:0000589 "epiphysis of tibia (embryonic mouse)" xsd:string -intersection_of: UBERON:0004383 ! epiphysis of tibia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37539 ! {source="MA:th"} -property_value: IAO:0000589 "epiphysis of femur (embryonic mouse)" xsd:string -intersection_of: UBERON:0004384 ! epiphysis of femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18613 ! -property_value: IAO:0000589 "cerebral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37146 ! {source="MA:th"} -property_value: IAO:0000589 "gastric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004450 ! gastric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37722 ! {source="MA:th"} -property_value: IAO:0000589 "trunk or cervical vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0004451 ! trunk or cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19122 ! -property_value: IAO:0000589 "carpal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0004452 ! carpal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32784 ! -property_value: IAO:0000589 "carpal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0004452 ! carpal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32654 ! -property_value: IAO:0000589 "metacarpus region (embryonic mouse)" xsd:string -intersection_of: UBERON:0004453 ! metacarpus region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32783 ! -property_value: IAO:0000589 "tarsal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0004454 ! tarsal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18171 ! -property_value: IAO:0000589 "skeletal musculature of head (embryonic mouse)" xsd:string -intersection_of: UBERON:0004461 ! skeletal musculature of head -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37853 ! {source="MA:th"} -property_value: IAO:0000589 "musculature of body wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0004462 ! musculature of body wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37260 ! {source="MA:th"} -property_value: IAO:0000589 "musculature of thorax (embryonic mouse)" xsd:string -intersection_of: UBERON:0004464 ! musculature of thorax -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36050 ! -property_value: IAO:0000589 "musculature of neck (embryonic mouse)" xsd:string -intersection_of: UBERON:0004465 ! musculature of neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18184 ! -property_value: IAO:0000589 "musculature of pelvic girdle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004470 ! musculature of pelvic girdle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37857 ! {source="MA:th"} -property_value: IAO:0000589 "musculature of pectoral girdle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004471 ! musculature of pectoral girdle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32700 ! -property_value: IAO:0000589 "musculature of limb (embryonic mouse)" xsd:string -intersection_of: UBERON:0004480 ! musculature of limb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36629 ! -property_value: IAO:0000589 "musculature of perineum (embryonic mouse)" xsd:string -intersection_of: UBERON:0004486 ! musculature of perineum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32688 ! -property_value: IAO:0000589 "cardiac muscle tissue of myocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004493 ! cardiac muscle tissue of myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37370 ! {source="MA:th"} -property_value: IAO:0000589 "left testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004533 ! left testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37371 ! {source="MA:th"} -property_value: IAO:0000589 "right testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004534 ! right testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16104 ! -property_value: IAO:0000589 "cardiovascular system (embryonic mouse)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16370 ! -property_value: IAO:0000589 "cardiovascular system (embryonic mouse)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36589 ! -property_value: IAO:0000589 "left kidney (embryonic mouse)" xsd:string -intersection_of: UBERON:0004538 ! left kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36590 ! -property_value: IAO:0000589 "right kidney (embryonic mouse)" xsd:string -intersection_of: UBERON:0004539 ! right kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37219 ! {source="MA:th"} -property_value: IAO:0000589 "proper plantar digital artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004540 ! proper plantar digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30445 ! -property_value: IAO:0000589 "epididymis epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004544 ! epididymis epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35331 ! -property_value: IAO:0000589 "external capsule of telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0004545 ! external capsule of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19201 ! -property_value: IAO:0000589 "cribriform plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0004546 ! cribriform plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35271 ! -property_value: IAO:0000589 "decidua capsularis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004547 ! decidua capsularis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37362 ! {source="MA:th"} -property_value: IAO:0000589 "left eye (embryonic mouse)" xsd:string -intersection_of: UBERON:0004548 ! left eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37363 ! {source="MA:th"} -property_value: IAO:0000589 "right eye (embryonic mouse)" xsd:string -intersection_of: UBERON:0004549 ! right eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18267 ! -property_value: IAO:0000589 "gastroesophageal sphincter (embryonic mouse)" xsd:string -intersection_of: UBERON:0004550 ! gastroesophageal sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37076 ! {source="MA:th"} -property_value: IAO:0000589 "digital artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004552 ! digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37210 ! {source="MA:th"} -property_value: IAO:0000589 "forelimb digital artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004553 ! forelimb digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37214 ! {source="MA:th"} -property_value: IAO:0000589 "hindlimb digital artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004554 ! hindlimb digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37229 ! {source="MA:th"} -property_value: IAO:0000589 "proper palmar digital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004561 ! proper palmar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37141 ! {source="MA:th"} -property_value: IAO:0000589 "digital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004562 ! digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37223 ! {source="MA:th"} -property_value: IAO:0000589 "forelimb digital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004563 ! forelimb digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37224 ! {source="MA:th"} -property_value: IAO:0000589 "hindlimb digital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004564 ! hindlimb digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16201 ! -property_value: IAO:0000589 "arterial system (embryonic mouse)" xsd:string -intersection_of: UBERON:0004572 ! arterial system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16371 ! -property_value: IAO:0000589 "arterial system (embryonic mouse)" xsd:string -intersection_of: UBERON:0004572 ! arterial system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37126 ! {source="MA:th"} -property_value: IAO:0000589 "systemic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004573 ! systemic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16240 ! -property_value: IAO:0000589 "venous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0004582 ! venous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19529 ! -property_value: IAO:0000589 "rib 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004601 ! rib 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19530 ! -property_value: IAO:0000589 "rib 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004602 ! rib 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19531 ! -property_value: IAO:0000589 "rib 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004603 ! rib 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19532 ! -property_value: IAO:0000589 "rib 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004604 ! rib 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19533 ! -property_value: IAO:0000589 "rib 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004605 ! rib 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19534 ! -property_value: IAO:0000589 "rib 6 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004606 ! rib 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19535 ! -property_value: IAO:0000589 "rib 7 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004607 ! rib 7 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19537 ! -property_value: IAO:0000589 "rib 9 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004608 ! rib 9 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19538 ! -property_value: IAO:0000589 "rib 10 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004609 ! rib 10 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19539 ! -property_value: IAO:0000589 "rib 11 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004610 ! rib 11 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19540 ! -property_value: IAO:0000589 "rib 12 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004611 ! rib 12 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19433 ! -property_value: IAO:0000589 "mammalian cervical vertebra 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004612 ! mammalian cervical vertebra 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19434 ! -property_value: IAO:0000589 "mammalian cervical vertebra 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004613 ! mammalian cervical vertebra 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19435 ! -property_value: IAO:0000589 "mammalian cervical vertebra 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004614 ! mammalian cervical vertebra 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19466 ! -property_value: IAO:0000589 "mammalian cervical vertebra 6 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004615 ! mammalian cervical vertebra 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19467 ! -property_value: IAO:0000589 "mammalian cervical vertebra 7 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004616 ! mammalian cervical vertebra 7 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19472 ! -property_value: IAO:0000589 "lumbar vertebra 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004617 ! lumbar vertebra 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19570 ! -property_value: IAO:0000589 "lumbar vertebra 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004618 ! lumbar vertebra 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19571 ! -property_value: IAO:0000589 "lumbar vertebra 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004619 ! lumbar vertebra 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19572 ! -property_value: IAO:0000589 "lumbar vertebra 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004620 ! lumbar vertebra 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19573 ! -property_value: IAO:0000589 "lumbar vertebra 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004621 ! lumbar vertebra 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19588 ! -property_value: IAO:0000589 "sacral vertebra 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004622 ! sacral vertebra 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19589 ! -property_value: IAO:0000589 "sacral vertebra 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004623 ! sacral vertebra 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19590 ! -property_value: IAO:0000589 "sacral vertebra 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004624 ! sacral vertebra 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19591 ! -property_value: IAO:0000589 "sacral vertebra 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004625 ! sacral vertebra 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19542 ! -property_value: IAO:0000589 "thoracic vertebra 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004626 ! thoracic vertebra 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19543 ! -property_value: IAO:0000589 "thoracic vertebra 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004627 ! thoracic vertebra 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19544 ! -property_value: IAO:0000589 "thoracic vertebra 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004628 ! thoracic vertebra 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19545 ! -property_value: IAO:0000589 "thoracic vertebra 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004629 ! thoracic vertebra 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19546 ! -property_value: IAO:0000589 "thoracic vertebra 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004630 ! thoracic vertebra 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19547 ! -property_value: IAO:0000589 "thoracic vertebra 6 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004631 ! thoracic vertebra 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19548 ! -property_value: IAO:0000589 "thoracic vertebra 7 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004632 ! thoracic vertebra 7 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19550 ! -property_value: IAO:0000589 "thoracic vertebra 9 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004633 ! thoracic vertebra 9 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19551 ! -property_value: IAO:0000589 "thoracic vertebra 10 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004634 ! thoracic vertebra 10 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19552 ! -property_value: IAO:0000589 "thoracic vertebra 11 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004635 ! thoracic vertebra 11 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19553 ! -property_value: IAO:0000589 "thoracic vertebra 12 (embryonic mouse)" xsd:string -intersection_of: UBERON:0004636 ! thoracic vertebra 12 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35176 ! -property_value: IAO:0000589 "blood vessel endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004638 ! blood vessel endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28230 ! -property_value: IAO:0000589 "renal afferent arteriole (embryonic mouse)" xsd:string -intersection_of: UBERON:0004639 ! renal afferent arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28266 ! -property_value: IAO:0000589 "renal afferent arteriole (embryonic mouse)" xsd:string -intersection_of: UBERON:0004639 ! renal afferent arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28233 ! -property_value: IAO:0000589 "renal efferent arteriole (embryonic mouse)" xsd:string -intersection_of: UBERON:0004640 ! renal efferent arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28275 ! -property_value: IAO:0000589 "renal efferent arteriole (embryonic mouse)" xsd:string -intersection_of: UBERON:0004640 ! renal efferent arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35802 ! -property_value: IAO:0000589 "spleen capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0004641 ! spleen capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35100 ! -property_value: IAO:0000589 "third ventricle ependyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0004642 ! third ventricle ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35488 ! -property_value: IAO:0000589 "lateral ventricle ependyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0004643 ! lateral ventricle ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35355 ! -property_value: IAO:0000589 "fourth ventricle ependyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0004644 ! fourth ventricle ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28601 ! -property_value: IAO:0000589 "urinary bladder urothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004645 ! urinary bladder urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37090 ! {source="MA:th"} -property_value: IAO:0000589 "infraorbital artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004646 ! infraorbital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35499 ! -property_value: IAO:0000589 "liver lobule (embryonic mouse)" xsd:string -intersection_of: UBERON:0004647 ! liver lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26989 ! -property_value: IAO:0000589 "esophagus muscularis mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0004648 ! esophagus muscularis mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25123 ! -property_value: IAO:0000589 "scapula spine (embryonic mouse)" xsd:string -intersection_of: UBERON:0004651 ! scapula spine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25051 ! -property_value: IAO:0000589 "humerus diaphysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004652 ! humerus diaphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37807 ! {source="MA:th"} -property_value: IAO:0000589 "temporal process of zygomatic bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004654 ! temporal process of zygomatic bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19015 ! -property_value: IAO:0000589 "zygomatic process of temporal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004655 ! zygomatic process of temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36572 ! -property_value: IAO:0000589 "mandible condylar process (embryonic mouse)" xsd:string -intersection_of: UBERON:0004657 ! mandible condylar process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35139 ! -property_value: IAO:0000589 "aorta wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0004663 ! aorta wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35136 ! -property_value: IAO:0000589 "aorta tunica adventitia (embryonic mouse)" xsd:string -intersection_of: UBERON:0004664 ! aorta tunica adventitia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29773 ! -property_value: IAO:0000589 "muscular coat of seminal vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004665 ! muscular coat of seminal vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18246 ! -property_value: IAO:0000589 "interventricular septum membranous part (embryonic mouse)" xsd:string -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18247 ! -property_value: IAO:0000589 "interventricular septum muscular part (embryonic mouse)" xsd:string -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37865 ! {source="MA:th"} -property_value: IAO:0000589 "ependyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0004670 ! ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17772 ! -property_value: IAO:0000589 "posterior horn lateral ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004672 ! posterior horn lateral ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37747 ! {source="MA:th"} -property_value: IAO:0000589 "spinal cord gray commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0004677 ! spinal cord gray commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35279 ! -property_value: IAO:0000589 "dentate gyrus molecular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004679 ! dentate gyrus molecular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37986 ! {source="MA:th"} -property_value: IAO:0000589 "vestibular system (embryonic mouse)" xsd:string -intersection_of: UBERON:0004681 ! vestibular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35721 ! -property_value: IAO:0000589 "raphe nuclei (embryonic mouse)" xsd:string -intersection_of: UBERON:0004684 ! raphe nuclei -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18285 ! -property_value: IAO:0000589 "gastro-splenic ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18286 ! -property_value: IAO:0000589 "lieno-renal ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37496 ! {source="MA:th"} -property_value: IAO:0000589 "costo-cervical trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0004688 ! costo-cervical trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37227 ! {source="MA:th"} -property_value: IAO:0000589 "naso-frontal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004689 ! naso-frontal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37177 ! {source="MA:th"} -property_value: IAO:0000589 "pancreaticoduodenal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004690 ! pancreaticoduodenal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36544 ! -property_value: IAO:0000589 "bulbourethral gland secretion (embryonic mouse)" xsd:string -intersection_of: UBERON:0004691 ! bulbourethral gland secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18596 ! -property_value: IAO:0000589 "external naris epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004692 ! external naris epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36506 ! -property_value: IAO:0000589 "Peyer's patch epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004693 ! Peyer's patch epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36503 ! -property_value: IAO:0000589 "arterial system smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004695 ! arterial system smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36613 ! -property_value: IAO:0000589 "venous system smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004696 ! venous system smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35684 ! -property_value: IAO:0000589 "Peyer's patch germinal center (embryonic mouse)" xsd:string -intersection_of: UBERON:0004697 ! Peyer's patch germinal center -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37800 ! {source="MA:th"} -property_value: IAO:0000589 "vena cava endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004698 ! vena cava endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35145 ! -property_value: IAO:0000589 "arterial system endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004700 ! arterial system endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35907 ! -property_value: IAO:0000589 "venous system endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004701 ! venous system endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35732 ! -property_value: IAO:0000589 "respiratory system blood vessel endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004702 ! respiratory system blood vessel endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35295 ! -property_value: IAO:0000589 "dorsal thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16333 ! -property_value: IAO:0000589 "bulbus cordis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18638 ! -property_value: IAO:0000589 "jugular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004711 ! jugular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29850 ! -property_value: IAO:0000589 "corpus cavernosum penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004713 ! corpus cavernosum penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29856 ! -property_value: IAO:0000589 "corpus cavernosum penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004713 ! corpus cavernosum penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32670 ! -property_value: IAO:0000589 "annulus fibrosus disci intervertebralis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004715 ! annulus fibrosus disci intervertebralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36040 ! -property_value: IAO:0000589 "conceptus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004716 ! conceptus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28221 ! -property_value: IAO:0000589 "kidney arcuate vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0004719 ! kidney arcuate vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35214 ! -property_value: IAO:0000589 "cerebellar vermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004720 ! cerebellar vermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32791 ! -property_value: IAO:0000589 "crista ampullaris (embryonic mouse)" xsd:string -intersection_of: UBERON:0004721 ! crista ampullaris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37510 ! {source="MA:th"} -property_value: IAO:0000589 "deep cervical lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0004722 ! deep cervical lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28212 ! -property_value: IAO:0000589 "interlobular artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004723 ! interlobular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37608 ! {source="MA:th"} -property_value: IAO:0000589 "medial palpebral ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0004724 ! medial palpebral ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32767 ! -property_value: IAO:0000589 "piriform cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0004725 ! piriform cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30043 ! -property_value: IAO:0000589 "vasa recta (embryonic mouse)" xsd:string -intersection_of: UBERON:0004726 ! vasa recta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17802 ! -property_value: IAO:0000589 "cochlear nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0004727 ! cochlear nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36618 ! -property_value: IAO:0000589 "supraoccipital bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004747 ! supraoccipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18244 ! -property_value: IAO:0000589 "foramen ovale of heart (embryonic mouse)" xsd:string -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37744 ! {source="MA:th"} -property_value: IAO:0000589 "skeletal tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004755 ! skeletal tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27221 ! -property_value: IAO:0000589 "gland of anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0004760 ! gland of anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27233 ! -property_value: IAO:0000589 "gland of anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0004760 ! gland of anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27543 ! -property_value: IAO:0000589 "gland of anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0004760 ! gland of anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35304 ! -property_value: IAO:0000589 "endochondral bone tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004763 ! endochondral bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35504 ! -property_value: IAO:0000589 "diaphysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0004769 ! diaphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35150 ! -property_value: IAO:0000589 "articular system (embryonic mouse)" xsd:string -intersection_of: UBERON:0004770 ! articular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17849 ! -property_value: IAO:0000589 "posterior nasal aperture (embryonic mouse)" xsd:string -intersection_of: UBERON:0004771 ! posterior nasal aperture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37607 ! {source="MA:th"} -property_value: IAO:0000589 "superior eyelid tarsus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004773 ! superior eyelid tarsus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37606 ! {source="MA:th"} -property_value: IAO:0000589 "inferior eyelid tarsus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004774 ! inferior eyelid tarsus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36560 ! -property_value: IAO:0000589 "outer renal medulla vasa recta (embryonic mouse)" xsd:string -intersection_of: UBERON:0004775 ! outer renal medulla vasa recta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36559 ! -property_value: IAO:0000589 "inner renal medulla vasa recta (embryonic mouse)" xsd:string -intersection_of: UBERON:0004776 ! inner renal medulla vasa recta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37578 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system submucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0004777 ! respiratory system submucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35474 ! -property_value: IAO:0000589 "larynx submucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0004778 ! larynx submucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37576 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system lamina propria (embryonic mouse)" xsd:string -intersection_of: UBERON:0004779 ! respiratory system lamina propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35371 ! -property_value: IAO:0000589 "gallbladder lamina propria (embryonic mouse)" xsd:string -intersection_of: UBERON:0004781 ! gallbladder lamina propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37592 ! {source="MA:th"} -property_value: IAO:0000589 "gastrointestinal system serosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0004782 ! gastrointestinal system serosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35372 ! -property_value: IAO:0000589 "gallbladder serosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0004783 ! gallbladder serosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18334 ! -property_value: IAO:0000589 "respiratory system mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0004785 ! respiratory system mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37577 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0004785 ! respiratory system mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36591 ! -property_value: IAO:0000589 "gastrointestinal system mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0004786 ! gastrointestinal system mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35896 ! -property_value: IAO:0000589 "urethra urothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004787 ! urethra urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28077 ! -property_value: IAO:0000589 "kidney pelvis urothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004788 ! kidney pelvis urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37631 ! {source="MA:th"} -property_value: IAO:0000589 "larynx mucous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0004789 ! larynx mucous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35775 ! -property_value: IAO:0000589 "skin mucous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0004790 ! skin mucous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36545 ! -property_value: IAO:0000589 "prostate gland secretion (embryonic mouse)" xsd:string -intersection_of: UBERON:0004796 ! prostate gland secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36296 ! -property_value: IAO:0000589 "blood vessel layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0004797 ! blood vessel layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37571 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system basal lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0004798 ! respiratory system basal lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37553 ! {source="MA:th"} -property_value: IAO:0000589 "trachea basal lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0004799 ! trachea basal lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37810 ! {source="MA:th"} -property_value: IAO:0000589 "bronchus basal lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0004800 ! bronchus basal lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29929 ! -property_value: IAO:0000589 "cervix epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004801 ! cervix epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32827 ! -property_value: IAO:0000589 "respiratory tract epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004802 ! respiratory tract epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35674 ! -property_value: IAO:0000589 "penis epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004803 ! penis epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29043 ! -property_value: IAO:0000589 "oviduct epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004804 ! oviduct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29771 ! -property_value: IAO:0000589 "seminal vesicle epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004805 ! seminal vesicle epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29274 ! -property_value: IAO:0000589 "vas deferens epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004806 ! vas deferens epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32826 ! -property_value: IAO:0000589 "respiratory system epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004807 ! respiratory system epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32683 ! -property_value: IAO:0000589 "gastrointestinal system epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004808 ! gastrointestinal system epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32816 ! -property_value: IAO:0000589 "salivary gland epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004809 ! salivary gland epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36524 ! -property_value: IAO:0000589 "nephron tubule epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004810 ! nephron tubule epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35307 ! -property_value: IAO:0000589 "endometrium epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004811 ! endometrium epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30655 ! -property_value: IAO:0000589 "male prepuce epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004812 ! male prepuce epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35761 ! -property_value: IAO:0000589 "seminiferous tubule epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004813 ! seminiferous tubule epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35894 ! -property_value: IAO:0000589 "upper respiratory tract epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004814 ! upper respiratory tract epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37549 ! {source="MA:th"} -property_value: IAO:0000589 "lower respiratory tract epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004815 ! lower respiratory tract epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35472 ! -property_value: IAO:0000589 "larynx epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004816 ! larynx epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36515 ! -property_value: IAO:0000589 "lacrimal gland epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004817 ! lacrimal gland epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37764 ! {source="MA:th"} -property_value: IAO:0000589 "terminal bronchus epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004818 ! terminal bronchus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35457 ! -property_value: IAO:0000589 "kidney epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004819 ! kidney epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35121 ! -property_value: IAO:0000589 "pulmonary alveolus epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004821 ! pulmonary alveolus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32902 ! -property_value: IAO:0000589 "dental lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37768 ! {source="MA:th"} -property_value: IAO:0000589 "thyroid gland medulla (embryonic mouse)" xsd:string -intersection_of: UBERON:0004827 ! thyroid gland medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37788 ! {source="MA:th"} -property_value: IAO:0000589 "urethra skeletal muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004829 ! urethra skeletal muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37583 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system skeletal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004830 ! respiratory system skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36523 ! -property_value: IAO:0000589 "esophagus skeletal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004831 ! esophagus skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37393 ! {source="MA:th"} -property_value: IAO:0000589 "anal region skeletal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004832 ! anal region skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37642 ! {source="MA:th"} -property_value: IAO:0000589 "lip skeletal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004833 ! lip skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37598 ! {source="MA:th"} -property_value: IAO:0000589 "hepatic duct smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004834 ! hepatic duct smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30747 ! -property_value: IAO:0000589 "epididymis smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004835 ! epididymis smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37566 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system arterial endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004848 ! respiratory system arterial endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37585 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system venous endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004849 ! respiratory system venous endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35526 ! -property_value: IAO:0000589 "lymph node endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004850 ! lymph node endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35134 ! -property_value: IAO:0000589 "aorta endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004851 ! aorta endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35201 ! -property_value: IAO:0000589 "cardiovascular system endothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004852 ! cardiovascular system endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37068 ! {source="MA:th"} -property_value: IAO:0000589 "gastrointestinal system mesentery (embryonic mouse)" xsd:string -intersection_of: UBERON:0004854 ! gastrointestinal system mesentery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37743 ! {source="MA:th"} -property_value: IAO:0000589 "skeletal muscle connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0004857 ! skeletal muscle connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37473 ! {source="MA:th"} -property_value: IAO:0000589 "cellular cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0004858 ! cellular cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35334 ! -property_value: IAO:0000589 "eye gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0004859 ! eye gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35997 ! -property_value: IAO:0000589 "right lung alveolus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19182 ! -property_value: IAO:0000589 "left lung alveolus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004862 ! left lung alveolus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37657 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic sympathetic nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0004863 ! thoracic sympathetic nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37725 ! {source="MA:th"} -property_value: IAO:0000589 "superficial cervical lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0004870 ! superficial cervical lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16181 ! -property_value: IAO:0000589 "splanchnopleure (embryonic mouse)" xsd:string -intersection_of: UBERON:0004873 ! splanchnopleure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16180 ! -property_value: IAO:0000589 "somatopleure (embryonic mouse)" xsd:string -intersection_of: UBERON:0004874 ! somatopleure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30888 ! -property_value: IAO:0000589 "urogenital fold (embryonic mouse)" xsd:string -intersection_of: UBERON:0004876 ! urogenital fold -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16058 ! -property_value: IAO:0000589 "visceral endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0004877 ! visceral endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37507 ! {source="MA:th"} -property_value: IAO:0000589 "eponychium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004882 ! eponychium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32866 ! -property_value: IAO:0000589 "lung mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0004883 ! lung mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32698 ! -property_value: IAO:0000589 "lobar bronchus mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0004884 ! lobar bronchus mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36005 ! -property_value: IAO:0000589 "lung hilus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004886 ! lung hilus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17980 ! -property_value: IAO:0000589 "left lung hilus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17996 ! -property_value: IAO:0000589 "right lung hilus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17981 ! -property_value: IAO:0000589 "right lung accessory lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35433 ! -property_value: IAO:0000589 "interalveolar septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0004893 ! interalveolar septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35120 ! -property_value: IAO:0000589 "alveolar wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0004894 ! alveolar wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35122 ! -property_value: IAO:0000589 "alveolar smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0004895 ! alveolar smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17982 ! -property_value: IAO:0000589 "right lung accessory lobe lobar bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004896 ! right lung accessory lobe lobar bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17983 ! -property_value: IAO:0000589 "right lung accessory lobe lobar bronchus mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0004897 ! right lung accessory lobe lobar bronchus mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17993 ! -property_value: IAO:0000589 "right lung cranial lobe lobar bronchus mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0004899 ! right lung cranial lobe lobar bronchus mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17999 ! -property_value: IAO:0000589 "right lung middle lobe lobar bronchus mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0004900 ! right lung middle lobe lobar bronchus mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17665 ! -property_value: IAO:0000589 "right lung lobar bronchus mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0004901 ! right lung lobar bronchus mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31509 ! -property_value: IAO:0000589 "urogenital sinus epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0004902 ! urogenital sinus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37448 ! {source="MA:th"} -property_value: IAO:0000589 "bronchoalveolar duct junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0004903 ! bronchoalveolar duct junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17973 ! -property_value: IAO:0000589 "epithelium of male gonad (embryonic mouse)" xsd:string -intersection_of: UBERON:0004910 ! epithelium of male gonad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16561 ! -property_value: IAO:0000589 "biliary bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0004912 ! biliary bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18662 ! -property_value: IAO:0000589 "duodenal papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0004914 ! duodenal papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18663 ! -property_value: IAO:0000589 "sphincter of hepatopancreatic ampulla (embryonic mouse)" xsd:string -intersection_of: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36052 ! -property_value: IAO:0000589 "anal sphincter (embryonic mouse)" xsd:string -intersection_of: UBERON:0004916 ! anal sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37789 ! {source="MA:th"} -property_value: IAO:0000589 "urethral sphincter (embryonic mouse)" xsd:string -intersection_of: UBERON:0004917 ! urethral sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37790 ! {source="MA:th"} -property_value: IAO:0000589 "external urethral sphincter (embryonic mouse)" xsd:string -intersection_of: UBERON:0004919 ! external urethral sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32804 ! -property_value: IAO:0000589 "postnatal subventricular zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0004922 ! postnatal subventricular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27153 ! -property_value: IAO:0000589 "submucosa of fundus of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0004933 ! submucosa of fundus of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27201 ! -property_value: IAO:0000589 "submucosa of pylorus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004937 ! submucosa of pylorus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32275 ! -property_value: IAO:0000589 "submucosa of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0004943 ! submucosa of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32304 ! -property_value: IAO:0000589 "submucosa of trigone of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0004944 ! submucosa of trigone of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32276 ! -property_value: IAO:0000589 "submucosa of neck of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0004945 ! submucosa of neck of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27151 ! -property_value: IAO:0000589 "mucosa of fundus of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0004994 ! mucosa of fundus of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27199 ! -property_value: IAO:0000589 "mucosa of pylorus (embryonic mouse)" xsd:string -intersection_of: UBERON:0004998 ! mucosa of pylorus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36028 ! -property_value: IAO:0000589 "mucosa of nasal septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005018 ! mucosa of nasal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37646 ! {source="MA:th"} -property_value: IAO:0000589 "liver papillary process (embryonic mouse)" xsd:string -intersection_of: UBERON:0005050 ! liver papillary process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18331 ! -property_value: IAO:0000589 "mediastinum testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0005051 ! mediastinum testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30984 ! -property_value: IAO:0000589 "external female genitalia (embryonic mouse)" xsd:string -intersection_of: UBERON:0005056 ! external female genitalia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18766 ! -property_value: IAO:0000589 "hemolymphoid system gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0005058 ! hemolymphoid system gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35594 ! -property_value: IAO:0000589 "neural groove (embryonic mouse)" xsd:string -intersection_of: UBERON:0005061 ! neural groove -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16523 ! -property_value: IAO:0000589 "anterior neuropore (embryonic mouse)" xsd:string -intersection_of: UBERON:0005070 ! anterior neuropore -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16526 ! -property_value: IAO:0000589 "posterior neuropore (embryonic mouse)" xsd:string -intersection_of: UBERON:0005071 ! posterior neuropore -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36449 ! -property_value: IAO:0000589 "forebrain-midbrain boundary (embryonic mouse)" xsd:string -intersection_of: UBERON:0005075 ! forebrain-midbrain boundary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16904 ! -property_value: IAO:0000589 "lamina terminalis of neural tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0005078 ! lamina terminalis of neural tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36479 ! -property_value: IAO:0000589 "hair follicle placode (embryonic mouse)" xsd:string -intersection_of: UBERON:0005086 ! hair follicle placode -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32715 ! -property_value: IAO:0000589 "muscle structure (embryonic mouse)" xsd:string -intersection_of: UBERON:0005090 ! muscle structure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16238 ! -property_value: IAO:0000589 "left horn of sinus venosus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16239 ! -property_value: IAO:0000589 "right horn of sinus venosus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35514 ! -property_value: IAO:0000589 "descending thin limb (embryonic mouse)" xsd:string -intersection_of: UBERON:0005096 ! descending thin limb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27758 ! -property_value: IAO:0000589 "renal connecting tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005097 ! renal connecting tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27790 ! -property_value: IAO:0000589 "renal connecting tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005097 ! renal connecting tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28011 ! -property_value: IAO:0000589 "renal connecting tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005097 ! renal connecting tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28393 ! -property_value: IAO:0000589 "early distal convoluted tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005101 ! early distal convoluted tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28393 ! -property_value: IAO:0000589 "late distal convoluted tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005102 ! late distal convoluted tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30562 ! -property_value: IAO:0000589 "anterior mesonephric tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005104 ! anterior mesonephric tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30571 ! -property_value: IAO:0000589 "posterior mesonephric tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005105 ! posterior mesonephric tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27621 ! -property_value: IAO:0000589 "metanephric cap (embryonic mouse)" xsd:string -intersection_of: UBERON:0005107 ! metanephric cap -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27678 ! -property_value: IAO:0000589 "metanephric renal vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005147 ! metanephric renal vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35510 ! -property_value: IAO:0000589 "ascending limb of loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005164 ! ascending limb of loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35655 ! -property_value: IAO:0000589 "papillary duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0005167 ! papillary duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28218 ! -property_value: IAO:0000589 "renal interlobular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005168 ! renal interlobular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35633 ! -property_value: IAO:0000589 "granulosa cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005170 ! granulosa cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16843 ! -property_value: IAO:0000589 "hepatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37062 ! {source="MA:th"} -property_value: IAO:0000589 "abdominal segment element (embryonic mouse)" xsd:string -intersection_of: UBERON:0005173 ! abdominal segment element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37274 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal region element (embryonic mouse)" xsd:string -intersection_of: UBERON:0005174 ! dorsal region element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37272 ! {source="MA:th"} -property_value: IAO:0000589 "chest organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0005175 ! chest organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32888 ! -property_value: IAO:0000589 "tooth enamel organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0005176 ! tooth enamel organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37270 ! {source="MA:th"} -property_value: IAO:0000589 "trunk region element (embryonic mouse)" xsd:string -intersection_of: UBERON:0005177 ! trunk region element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37273 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic cavity element (embryonic mouse)" xsd:string -intersection_of: UBERON:0005178 ! thoracic cavity element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37275 ! {source="MA:th"} -property_value: IAO:0000589 "pelvic region element (embryonic mouse)" xsd:string -intersection_of: UBERON:0005179 ! pelvic region element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37271 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic segment organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0005181 ! thoracic segment organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35389 ! -property_value: IAO:0000589 "hair medulla (embryonic mouse)" xsd:string -intersection_of: UBERON:0005184 ! hair medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28061 ! -property_value: IAO:0000589 "renal medulla collecting duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0005185 ! renal medulla collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35459 ! -property_value: IAO:0000589 "renal medulla collecting duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0005185 ! renal medulla collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37513 ! {source="MA:th"} -property_value: IAO:0000589 "deferent duct artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005192 ! deferent duct artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37081 ! {source="MA:th"} -property_value: IAO:0000589 "ethmoidal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005193 ! ethmoidal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37197 ! {source="MA:th"} -property_value: IAO:0000589 "thoracic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005194 ! thoracic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37514 ! {source="MA:th"} -property_value: IAO:0000589 "deferent duct vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005195 ! deferent duct vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35803 ! -property_value: IAO:0000589 "spleen germinal center (embryonic mouse)" xsd:string -intersection_of: UBERON:0005196 ! spleen germinal center -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16990 ! -property_value: IAO:0000589 "segmental spinal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25149 ! -property_value: IAO:0000589 "segmental spinal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36633 ! -property_value: IAO:0000589 "thoracic mammary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0005200 ! thoracic mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28399 ! -property_value: IAO:0000589 "distal straight tubule macula densa (embryonic mouse)" xsd:string -intersection_of: UBERON:0005202 ! distal straight tubule macula densa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36574 ! -property_value: IAO:0000589 "trachea gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0005203 ! trachea gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35475 ! -property_value: IAO:0000589 "larynx submucosa gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0005204 ! larynx submucosa gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35902 ! -property_value: IAO:0000589 "lamina propria of vagina (embryonic mouse)" xsd:string -intersection_of: UBERON:0005205 ! lamina propria of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36609 ! -property_value: IAO:0000589 "choroid plexus stroma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005206 ! choroid plexus stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17327 ! -property_value: IAO:0000589 "right atrium valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18326 ! -property_value: IAO:0000589 "renal medulla interstitium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005211 ! renal medulla interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18687 ! -property_value: IAO:0000589 "Leydig cell region of testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0005212 ! Leydig cell region of testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28337 ! -property_value: IAO:0000589 "outer renal medulla interstitium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005213 ! outer renal medulla interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28364 ! -property_value: IAO:0000589 "inner renal medulla interstitium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005214 ! inner renal medulla interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28518 ! -property_value: IAO:0000589 "kidney interstitium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005215 ! kidney interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16539 ! -property_value: IAO:0000589 "optic eminence surface ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005216 ! optic eminence surface ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19055 ! -property_value: IAO:0000589 "midbrain subarachnoid space (embryonic mouse)" xsd:string -intersection_of: UBERON:0005217 ! midbrain subarachnoid space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19053 ! -property_value: IAO:0000589 "diencephalon subarachnoid space (embryonic mouse)" xsd:string -intersection_of: UBERON:0005218 ! diencephalon subarachnoid space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18211 ! -property_value: IAO:0000589 "hindbrain subarachnoid space (embryonic mouse)" xsd:string -intersection_of: UBERON:0005219 ! hindbrain subarachnoid space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17508 ! -property_value: IAO:0000589 "pancreas head parenchyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005220 ! pancreas head parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18317 ! -property_value: IAO:0000589 "liver right lobe parenchyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005221 ! liver right lobe parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18310 ! -property_value: IAO:0000589 "liver left lobe parenchyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005222 ! liver left lobe parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17506 ! -property_value: IAO:0000589 "pancreas body parenchyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005223 ! pancreas body parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17513 ! -property_value: IAO:0000589 "pancreas tail parenchyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005224 ! pancreas tail parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17500 ! -property_value: IAO:0000589 "upper leg epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005225 ! upper leg epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32946 ! -property_value: IAO:0000589 "pedal digit epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005226 ! pedal digit epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32647 ! -property_value: IAO:0000589 "manual digit epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005227 ! manual digit epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17425 ! -property_value: IAO:0000589 "upper arm epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005228 ! upper arm epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17497 ! -property_value: IAO:0000589 "lower leg epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005229 ! lower leg epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16809 ! -property_value: IAO:0000589 "medial-nasal process ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005233 ! medial-nasal process ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16539 ! -property_value: IAO:0000589 "optic eminence ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005234 ! optic eminence ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17078 ! -property_value: IAO:0000589 "basal plate metencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0005239 ! basal plate metencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17557 ! -property_value: IAO:0000589 "basal plate medulla oblongata (embryonic mouse)" xsd:string -intersection_of: UBERON:0005240 ! basal plate medulla oblongata -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17992 ! -property_value: IAO:0000589 "lobar bronchus of right lung cranial lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17987 ! -property_value: IAO:0000589 "lobar bronchus of right lung caudal lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0005245 ! lobar bronchus of right lung caudal lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36488 ! -property_value: IAO:0000589 "bulbus cordis myocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005248 ! bulbus cordis myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16055 ! -property_value: IAO:0000589 "yolk sac cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0005251 ! yolk sac cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18461 ! -property_value: IAO:0000589 "lesser sac cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0005252 ! lesser sac cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16098 ! -property_value: IAO:0000589 "head mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17501 ! -property_value: IAO:0000589 "upper leg mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005254 ! upper leg mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32947 ! -property_value: IAO:0000589 "pedal digit mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005255 ! pedal digit mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16177 ! -property_value: IAO:0000589 "trunk mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32645 ! -property_value: IAO:0000589 "manual digit mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005257 ! manual digit mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17426 ! -property_value: IAO:0000589 "upper arm mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005258 ! upper arm mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17498 ! -property_value: IAO:0000589 "lower leg mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005259 ! lower leg mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16343 ! -property_value: IAO:0000589 "atrium cardiac jelly (embryonic mouse)" xsd:string -intersection_of: UBERON:0005261 ! atrium cardiac jelly -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16814 ! -property_value: IAO:0000589 "atrium cardiac jelly (embryonic mouse)" xsd:string -intersection_of: UBERON:0005261 ! atrium cardiac jelly -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16821 ! -property_value: IAO:0000589 "atrium cardiac jelly (embryonic mouse)" xsd:string -intersection_of: UBERON:0005261 ! atrium cardiac jelly -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16347 ! -property_value: IAO:0000589 "outflow tract cardiac jelly (embryonic mouse)" xsd:string -intersection_of: UBERON:0005263 ! outflow tract cardiac jelly -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28147 ! -property_value: IAO:0000589 "renal cortex artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005268 ! renal cortex artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28152 ! -property_value: IAO:0000589 "renal cortex vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005269 ! renal cortex vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28136 ! -property_value: IAO:0000589 "renal cortex interstitium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005270 ! renal cortex interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37623 ! {source="MA:th"} -property_value: IAO:0000589 "juxtamedullary cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0005271 ! juxtamedullary cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36558 ! -property_value: IAO:0000589 "peritubular capillary (embryonic mouse)" xsd:string -intersection_of: UBERON:0005272 ! peritubular capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35581 ! -property_value: IAO:0000589 "nail bed (embryonic mouse)" xsd:string -intersection_of: UBERON:0005273 ! nail bed -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37509 ! {source="MA:th"} -property_value: IAO:0000589 "proximal nail bed (embryonic mouse)" xsd:string -intersection_of: UBERON:0005274 ! proximal nail bed -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37447 ! {source="MA:th"} -property_value: IAO:0000589 "ventricular system of brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0005282 ! ventricular system of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17082 ! -property_value: IAO:0000589 "myelencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0005290 ! myelencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35220 ! -property_value: IAO:0000589 "cerebellum lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0005293 ! cerebellum lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35899 ! -property_value: IAO:0000589 "gonadal ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0005294 ! gonadal ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31058 ! -property_value: IAO:0000589 "ovary sex cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0005296 ! ovary sex cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29098 ! -property_value: IAO:0000589 "testis sex cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0005297 ! testis sex cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30699 ! -property_value: IAO:0000589 "prepuce of clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0005299 ! prepuce of clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30659 ! -property_value: IAO:0000589 "male preputial gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0005301 ! male preputial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30711 ! -property_value: IAO:0000589 "female preputial gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0005302 ! female preputial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18225 ! -property_value: IAO:0000589 "hypogastric nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0005303 ! hypogastric nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35834 ! -property_value: IAO:0000589 "submucous nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005304 ! submucous nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19307 ! -property_value: IAO:0000589 "thyroid follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005305 ! thyroid follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19308 ! -property_value: IAO:0000589 "thyroid follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005305 ! thyroid follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35541 ! -property_value: IAO:0000589 "mammary placode (embryonic mouse)" xsd:string -intersection_of: UBERON:0005311 ! mammary placode -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37900 ! {source="MA:th"} -property_value: IAO:0000589 "mammary duct terminal end bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0005313 ! mammary duct terminal end bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16745 ! -property_value: IAO:0000589 "mesonephric mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005323 ! mesonephric mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30568 ! -property_value: IAO:0000589 "mesonephric glomerulus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005325 ! mesonephric glomerulus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35536 ! -property_value: IAO:0000589 "mammary bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0005333 ! mammary bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26947 ! -property_value: IAO:0000589 "oral lamina propria (embryonic mouse)" xsd:string -intersection_of: UBERON:0005334 ! oral lamina propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17329 ! -property_value: IAO:0000589 "outflow tract aortic component (embryonic mouse)" xsd:string -intersection_of: UBERON:0005338 ! outflow tract aortic component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17330 ! -property_value: IAO:0000589 "outflow tract pulmonary component (embryonic mouse)" xsd:string -intersection_of: UBERON:0005339 ! outflow tract pulmonary component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37844 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal telencephalic commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0005340 ! dorsal telencephalic commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37845 ! {source="MA:th"} -property_value: IAO:0000589 "ventral commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0005341 ! ventral commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32711 ! -property_value: IAO:0000589 "cortical plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005343 ! cortical plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37823 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellum vermis lobule VIIA (embryonic mouse)" xsd:string -intersection_of: UBERON:0005345 ! cerebellum vermis lobule VIIA -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37824 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellum vermis lobule VIIB (embryonic mouse)" xsd:string -intersection_of: UBERON:0005346 ! cerebellum vermis lobule VIIB -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37400 ! {source="MA:th"} -property_value: IAO:0000589 "copula pyramidis (embryonic mouse)" xsd:string -intersection_of: UBERON:0005347 ! copula pyramidis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37397 ! {source="MA:th"} -property_value: IAO:0000589 "ansiform lobule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005348 ! ansiform lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37403 ! {source="MA:th"} -property_value: IAO:0000589 "paramedian lobule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005349 ! paramedian lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37401 ! {source="MA:th"} -property_value: IAO:0000589 "lobule simplex (embryonic mouse)" xsd:string -intersection_of: UBERON:0005350 ! lobule simplex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37402 ! {source="MA:th"} -property_value: IAO:0000589 "paraflocculus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005351 ! paraflocculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16725 ! -property_value: IAO:0000589 "Rathke's pouch (embryonic mouse)" xsd:string -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35183 ! -property_value: IAO:0000589 "brain ependyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005357 ! brain ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35209 ! -property_value: IAO:0000589 "ventricle of nervous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0005358 ! ventricle of nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35791 ! -property_value: IAO:0000589 "spinal cord ependyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17153 ! -property_value: IAO:0000589 "inferior glossopharyngeal IX ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0005360 ! inferior glossopharyngeal IX ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17154 ! -property_value: IAO:0000589 "superior glossopharyngeal IX ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0005361 ! superior glossopharyngeal IX ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16798 ! -property_value: IAO:0000589 "vagus X ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17155 ! -property_value: IAO:0000589 "inferior vagus X ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17156 ! -property_value: IAO:0000589 "superior vagus X ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17778 ! -property_value: IAO:0000589 "olfactory lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0005366 ! olfactory lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35406 ! -property_value: IAO:0000589 "hippocampus granule cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005367 ! hippocampus granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35408 ! -property_value: IAO:0000589 "hippocampus molecular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005368 ! hippocampus molecular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35410 ! -property_value: IAO:0000589 "hippocampus stratum lacunosum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005370 ! hippocampus stratum lacunosum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35412 ! -property_value: IAO:0000589 "hippocampus stratum oriens (embryonic mouse)" xsd:string -intersection_of: UBERON:0005371 ! hippocampus stratum oriens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35413 ! -property_value: IAO:0000589 "hippocampus stratum radiatum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005372 ! hippocampus stratum radiatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35607 ! -property_value: IAO:0000589 "olfactory bulb external plexiform layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005376 ! olfactory bulb external plexiform layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35608 ! -property_value: IAO:0000589 "olfactory bulb glomerular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005377 ! olfactory bulb glomerular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35609 ! -property_value: IAO:0000589 "olfactory bulb granule cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005378 ! olfactory bulb granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35610 ! -property_value: IAO:0000589 "olfactory bulb internal plexiform layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005379 ! olfactory bulb internal plexiform layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35612 ! -property_value: IAO:0000589 "olfactory bulb subependymal zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0005380 ! olfactory bulb subependymal zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35276 ! -property_value: IAO:0000589 "dentate gyrus granule cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005381 ! dentate gyrus granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36575 ! -property_value: IAO:0000589 "dorsal striatum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005382 ! dorsal striatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19095 ! -property_value: IAO:0000589 "caudate-putamen (embryonic mouse)" xsd:string -intersection_of: UBERON:0005383 ! caudate-putamen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17605 ! -property_value: IAO:0000589 "nasal cavity epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17607 ! -property_value: IAO:0000589 "nasal cavity respiratory epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005385 ! nasal cavity respiratory epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37918 ! {source="MA:th"} -property_value: IAO:0000589 "olfactory segment of nasal mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0005386 ! olfactory segment of nasal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35255 ! -property_value: IAO:0000589 "cortical layer I (embryonic mouse)" xsd:string -intersection_of: UBERON:0005390 ! cortical layer I -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35256 ! -property_value: IAO:0000589 "cortical layer II (embryonic mouse)" xsd:string -intersection_of: UBERON:0005391 ! cortical layer II -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35257 ! -property_value: IAO:0000589 "cortical layer III (embryonic mouse)" xsd:string -intersection_of: UBERON:0005392 ! cortical layer III -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35258 ! -property_value: IAO:0000589 "cortical layer IV (embryonic mouse)" xsd:string -intersection_of: UBERON:0005393 ! cortical layer IV -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35259 ! -property_value: IAO:0000589 "cortical layer V (embryonic mouse)" xsd:string -intersection_of: UBERON:0005394 ! cortical layer V -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35260 ! -property_value: IAO:0000589 "cortical layer VI (embryonic mouse)" xsd:string -intersection_of: UBERON:0005395 ! cortical layer VI -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18609 ! -property_value: IAO:0000589 "carotid artery segment (embryonic mouse)" xsd:string -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32661 ! -property_value: IAO:0000589 "brain arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0005397 ! brain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19285 ! -property_value: IAO:0000589 "male reproductive gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0005399 ! male reproductive gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17775 ! -property_value: IAO:0000589 "telencephalon arachnoid mater (embryonic mouse)" xsd:string -intersection_of: UBERON:0005400 ! telencephalon arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37477 ! {source="MA:th"} -property_value: IAO:0000589 "cerebral hemisphere gray matter (embryonic mouse)" xsd:string -intersection_of: UBERON:0005401 ! cerebral hemisphere gray matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17926 ! -property_value: IAO:0000589 "philtrum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005402 ! philtrum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36576 ! -property_value: IAO:0000589 "ventral striatum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005403 ! ventral striatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35359 ! -property_value: IAO:0000589 "frontonasal suture (embryonic mouse)" xsd:string -intersection_of: UBERON:0005404 ! frontonasal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37713 ! {source="MA:th"} -property_value: IAO:0000589 "pararenal fat (embryonic mouse)" xsd:string -intersection_of: UBERON:0005405 ! pararenal fat -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36495 ! -property_value: IAO:0000589 "perirenal fat (embryonic mouse)" xsd:string -intersection_of: UBERON:0005406 ! perirenal fat -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35243 ! -property_value: IAO:0000589 "circumventricular organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0005408 ! circumventricular organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16246 ! -property_value: IAO:0000589 "alimentary part of gastrointestinal system (embryonic mouse)" xsd:string -intersection_of: UBERON:0005409 ! alimentary part of gastrointestinal system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17596 ! -property_value: IAO:0000589 "cartilaginous otic capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18803 ! -property_value: IAO:0000589 "cartilaginous otic capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37467 ! {source="MA:th"} -property_value: IAO:0000589 "cartilaginous otic capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17596 ! -property_value: IAO:0000589 "bony otic capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005411 ! bony otic capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37466 ! {source="MA:th"} -property_value: IAO:0000589 "bony otic capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0005411 ! bony otic capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17166 ! -property_value: IAO:0000589 "optic fissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16406 ! -property_value: IAO:0000589 "forelimb bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16779 ! -property_value: IAO:0000589 "hindlimb bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0005418 ! hindlimb bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16778 ! -property_value: IAO:0000589 "pectoral appendage apical ectodermal ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16892 ! -property_value: IAO:0000589 "pelvic appendage apical ectodermal ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16677 ! -property_value: IAO:0000589 "presumptive retinal pigmented epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005424 ! presumptive retinal pigmented epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16675 ! -property_value: IAO:0000589 "presumptive neural retina (embryonic mouse)" xsd:string -intersection_of: UBERON:0005425 ! presumptive neural retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17163 ! -property_value: IAO:0000589 "lens vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005426 ! lens vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32953 ! -property_value: IAO:0000589 "dorsal pancreatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18242 ! -property_value: IAO:0000589 "anterior spinal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005431 ! anterior spinal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36461 ! -property_value: IAO:0000589 "aortic sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0005432 ! aortic sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37206 ! {source="MA:th"} -property_value: IAO:0000589 "common hepatic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005436 ! common hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18219 ! -property_value: IAO:0000589 "conus medullaris (embryonic mouse)" xsd:string -intersection_of: UBERON:0005437 ! conus medullaris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37836 ! {source="MA:th"} -property_value: IAO:0000589 "coronary sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005438 ! coronary sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16070 ! -property_value: IAO:0000589 "definitive endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005439 ! definitive endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17858 ! -property_value: IAO:0000589 "ductus arteriosus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18522 ! -property_value: IAO:0000589 "external intercostal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005441 ! external intercostal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18162 ! -property_value: IAO:0000589 "abdominal external oblique muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005442 ! abdominal external oblique muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18220 ! -property_value: IAO:0000589 "filum terminale (embryonic mouse)" xsd:string -intersection_of: UBERON:0005443 ! filum terminale -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18712 ! -property_value: IAO:0000589 "foramen rotundum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005446 ! foramen rotundum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18660 ! -property_value: IAO:0000589 "greater omentum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005448 ! greater omentum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16885 ! -property_value: IAO:0000589 "greater sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0005449 ! greater sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16886 ! -property_value: IAO:0000589 "greater sac cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37880 ! {source="MA:th"} -property_value: IAO:0000589 "hepatic cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0005452 ! hepatic cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18163 ! -property_value: IAO:0000589 "abdominal internal oblique muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005454 ! abdominal internal oblique muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17336 ! -property_value: IAO:0000589 "interventricular groove (embryonic mouse)" xsd:string -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18713 ! -property_value: IAO:0000589 "jugular foramen (embryonic mouse)" xsd:string -intersection_of: UBERON:0005456 ! jugular foramen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16544 ! -property_value: IAO:0000589 "left umbilical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16358 ! -property_value: IAO:0000589 "left umbilical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16377 ! -property_value: IAO:0000589 "left umbilical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16380 ! -property_value: IAO:0000589 "left vitelline vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16698 ! -property_value: IAO:0000589 "left vitelline vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36623 ! -property_value: IAO:0000589 "lower back (embryonic mouse)" xsd:string -intersection_of: UBERON:0005462 ! lower back -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37662 ! {source="MA:th"} -property_value: IAO:0000589 "subcapsular sinus of lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0005463 ! subcapsular sinus of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19214 ! -property_value: IAO:0000589 "median sacral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005464 ! median sacral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18190 ! -property_value: IAO:0000589 "platysma (embryonic mouse)" xsd:string -intersection_of: UBERON:0005467 ! platysma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16545 ! -property_value: IAO:0000589 "right umbilical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16359 ! -property_value: IAO:0000589 "right umbilical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16378 ! -property_value: IAO:0000589 "right umbilical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16381 ! -property_value: IAO:0000589 "right vitelline vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16699 ! -property_value: IAO:0000589 "right vitelline vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19060 ! -property_value: IAO:0000589 "sigmoid sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005475 ! sigmoid sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17888 ! -property_value: IAO:0000589 "stomach fundus epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005477 ! stomach fundus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18718 ! -property_value: IAO:0000589 "superior orbital fissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0005480 ! superior orbital fissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18630 ! -property_value: IAO:0000589 "tricuspid valve leaflet (embryonic mouse)" xsd:string -intersection_of: UBERON:0005484 ! tricuspid valve leaflet -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18634 ! -property_value: IAO:0000589 "venous dural sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005486 ! venous dural sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36021 ! -property_value: IAO:0000589 "vitelline vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16976 ! -property_value: IAO:0000589 "midbrain lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16166 ! -property_value: IAO:0000589 "neural tube lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005496 ! neural tube lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16074 ! -property_value: IAO:0000589 "non-neural ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005497 ! non-neural ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16215 ! -property_value: IAO:0000589 "primitive heart tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0005498 ! primitive heart tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16290 ! -property_value: IAO:0000589 "rhombomere 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32818 ! -property_value: IAO:0000589 "rhombomere floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005500 ! rhombomere floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32819 ! -property_value: IAO:0000589 "rhombomere lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005501 ! rhombomere lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35364 ! -property_value: IAO:0000589 "rhombomere lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005501 ! rhombomere lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32824 ! -property_value: IAO:0000589 "rhombomere roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005502 ! rhombomere roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35367 ! -property_value: IAO:0000589 "rhombomere roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005502 ! rhombomere roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16297 ! -property_value: IAO:0000589 "rhombomere 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16301 ! -property_value: IAO:0000589 "rhombomere 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16305 ! -property_value: IAO:0000589 "rhombomere 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16500 ! -property_value: IAO:0000589 "rhombomere 6 (embryonic mouse)" xsd:string -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16504 ! -property_value: IAO:0000589 "rhombomere 7 (embryonic mouse)" xsd:string -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16508 ! -property_value: IAO:0000589 "rhombomere 8 (embryonic mouse)" xsd:string -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16656 ! -property_value: IAO:0000589 "telencephalon lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005561 ! telencephalon lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17523 ! -property_value: IAO:0000589 "thymus primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005562 ! thymus primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16170 ! -property_value: IAO:0000589 "trigeminal neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0005563 ! trigeminal neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17204 ! -property_value: IAO:0000589 "gonad primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005564 ! gonad primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16312 ! -property_value: IAO:0000589 "facio-acoustic neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0005565 ! facio-acoustic neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16291 ! -property_value: IAO:0000589 "rhombomere 1 floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16482 ! -property_value: IAO:0000589 "rhombomere 1 lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16483 ! -property_value: IAO:0000589 "rhombomere 1 roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005568 ! rhombomere 1 roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16293 ! -property_value: IAO:0000589 "rhombomere 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16294 ! -property_value: IAO:0000589 "rhombomere 2 floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16486 ! -property_value: IAO:0000589 "rhombomere 2 lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16487 ! -property_value: IAO:0000589 "rhombomere 2 roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005572 ! rhombomere 2 roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16298 ! -property_value: IAO:0000589 "rhombomere 3 floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16490 ! -property_value: IAO:0000589 "rhombomere 3 lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16491 ! -property_value: IAO:0000589 "rhombomere 3 roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16302 ! -property_value: IAO:0000589 "rhombomere 4 floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16494 ! -property_value: IAO:0000589 "rhombomere 4 lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16495 ! -property_value: IAO:0000589 "rhombomere 4 roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16306 ! -property_value: IAO:0000589 "rhombomere 5 floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16498 ! -property_value: IAO:0000589 "rhombomere 5 lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16499 ! -property_value: IAO:0000589 "rhombomere 5 roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16501 ! -property_value: IAO:0000589 "rhombomere 6 floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16502 ! -property_value: IAO:0000589 "rhombomere 6 lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16503 ! -property_value: IAO:0000589 "rhombomere 6 roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16505 ! -property_value: IAO:0000589 "rhombomere 7 floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16506 ! -property_value: IAO:0000589 "rhombomere 7 lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16507 ! -property_value: IAO:0000589 "rhombomere 7 roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16509 ! -property_value: IAO:0000589 "rhombomere 8 floor plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16510 ! -property_value: IAO:0000589 "rhombomere 8 lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16511 ! -property_value: IAO:0000589 "rhombomere 8 roof plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16905 ! -property_value: IAO:0000589 "diencephalon lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16172 ! -property_value: IAO:0000589 "head somite (embryonic mouse)" xsd:string -intersection_of: UBERON:0005594 ! head somite -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36007 ! -property_value: IAO:0000589 "lung primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005597 ! lung primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16184 ! -property_value: IAO:0000589 "trunk somite (embryonic mouse)" xsd:string -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16327 ! -property_value: IAO:0000589 "common dorsal aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17818 ! -property_value: IAO:0000589 "crus commune (embryonic mouse)" xsd:string -intersection_of: UBERON:0005600 ! crus commune -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16213 ! -property_value: IAO:0000589 "dorsal mesocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17025 ! -property_value: IAO:0000589 "dorsal mesogastrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16844 ! -property_value: IAO:0000589 "extrahepatic part of hepatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0005604 ! extrahepatic part of hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16845 ! -property_value: IAO:0000589 "intrahepatic part of hepatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0005605 ! intrahepatic part of hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17302 ! -property_value: IAO:0000589 "hyaloid cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17303 ! -property_value: IAO:0000589 "hyaloid vascular plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17308 ! -property_value: IAO:0000589 "hyoid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17309 ! -property_value: IAO:0000589 "iliac artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37151 ! {source="MA:th"} -property_value: IAO:0000589 "iliac vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005610 ! iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17830 ! -property_value: IAO:0000589 "inner canthus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18753 ! -property_value: IAO:0000589 "intercostal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005612 ! intercostal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16205 ! -property_value: IAO:0000589 "left dorsal aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17304 ! -property_value: IAO:0000589 "lens anterior epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17839 ! -property_value: IAO:0000589 "lens anterior epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17840 ! -property_value: IAO:0000589 "lens equatorial epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005615 ! lens equatorial epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17312 ! -property_value: IAO:0000589 "mesenteric artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17348 ! -property_value: IAO:0000589 "mesenteric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17362 ! -property_value: IAO:0000589 "secondary palatal shelf (embryonic mouse)" xsd:string -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17642 ! -property_value: IAO:0000589 "primary palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0005620 ! primary palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37733 ! {source="MA:th"} -property_value: IAO:0000589 "rhomboid (embryonic mouse)" xsd:string -intersection_of: UBERON:0005621 ! rhomboid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16206 ! -property_value: IAO:0000589 "right dorsal aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35760 ! -property_value: IAO:0000589 "semi-lunar valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0005623 ! semi-lunar valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37124 ! {source="MA:th"} -property_value: IAO:0000589 "suprarenal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005624 ! suprarenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17026 ! -property_value: IAO:0000589 "ventral mesogastrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35904 ! -property_value: IAO:0000589 "vascular plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005629 ! vascular plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17633 ! -property_value: IAO:0000589 "pyloric region epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005637 ! pyloric region epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17433 ! -property_value: IAO:0000589 "manual digit 2 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005645 ! manual digit 2 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17436 ! -property_value: IAO:0000589 "manual digit 3 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005646 ! manual digit 3 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17439 ! -property_value: IAO:0000589 "manual digit 4 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005647 ! manual digit 4 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17442 ! -property_value: IAO:0000589 "manual digit 5 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005648 ! manual digit 5 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17464 ! -property_value: IAO:0000589 "pedal digit 2 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005649 ! pedal digit 2 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17467 ! -property_value: IAO:0000589 "pedal digit 3 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005650 ! pedal digit 3 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17470 ! -property_value: IAO:0000589 "pedal digit 4 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005651 ! pedal digit 4 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17473 ! -property_value: IAO:0000589 "pedal digit 5 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005652 ! pedal digit 5 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17943 ! -property_value: IAO:0000589 "upper jaw molar epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005653 ! upper jaw molar epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17922 ! -property_value: IAO:0000589 "lower jaw molar epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005654 ! lower jaw molar epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17165 ! -property_value: IAO:0000589 "lens vesicle epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005656 ! lens vesicle epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17820 ! -property_value: IAO:0000589 "crus commune epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005657 ! crus commune epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17363 ! -property_value: IAO:0000589 "secondary palatal shelf epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005658 ! secondary palatal shelf epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17643 ! -property_value: IAO:0000589 "primary palate epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005659 ! primary palate epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16277 ! -property_value: IAO:0000589 "2nd arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16397 ! -property_value: IAO:0000589 "2nd arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16398 ! -property_value: IAO:0000589 "2nd arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005660 ! 2nd arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16400 ! -property_value: IAO:0000589 "3rd arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16582 ! -property_value: IAO:0000589 "3rd arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16584 ! -property_value: IAO:0000589 "3rd arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005661 ! 3rd arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16762 ! -property_value: IAO:0000589 "4th arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16764 ! -property_value: IAO:0000589 "4th arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16768 ! -property_value: IAO:0000589 "4th arch ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005662 ! 4th arch ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16274 ! -property_value: IAO:0000589 "2nd arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16276 ! -property_value: IAO:0000589 "2nd arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16278 ! -property_value: IAO:0000589 "2nd arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005664 ! 2nd arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16401 ! -property_value: IAO:0000589 "3rd arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16585 ! -property_value: IAO:0000589 "3rd arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16587 ! -property_value: IAO:0000589 "3rd arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005665 ! 3rd arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16765 ! -property_value: IAO:0000589 "4th arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16767 ! -property_value: IAO:0000589 "4th arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16769 ! -property_value: IAO:0000589 "4th arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005666 ! 4th arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16139 ! -property_value: IAO:0000589 "peritoneal cavity mesothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005669 ! peritoneal cavity mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16887 ! -property_value: IAO:0000589 "greater sac mesothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005671 ! greater sac mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19006 ! -property_value: IAO:0000589 "right lung upper lobe bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0005681 ! right lung upper lobe bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19002 ! -property_value: IAO:0000589 "right lung accessory lobe bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0005682 ! right lung accessory lobe bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16722 ! -property_value: IAO:0000589 "midgut dorsal mesentery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17040 ! -property_value: IAO:0000589 "midgut dorsal mesentery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18671 ! -property_value: IAO:0000589 "midgut dorsal mesentery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005685 ! midgut dorsal mesentery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17164 ! -property_value: IAO:0000589 "lens vesicle cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0005688 ! lens vesicle cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16279 ! -property_value: IAO:0000589 "2nd arch mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16402 ! -property_value: IAO:0000589 "3rd arch mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16770 ! -property_value: IAO:0000589 "4th arch mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005691 ! 4th arch mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17434 ! -property_value: IAO:0000589 "manual digit 2 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005692 ! manual digit 2 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17437 ! -property_value: IAO:0000589 "manual digit 3 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005693 ! manual digit 3 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17440 ! -property_value: IAO:0000589 "manual digit 4 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005694 ! manual digit 4 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17443 ! -property_value: IAO:0000589 "manual digit 5 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005695 ! manual digit 5 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17465 ! -property_value: IAO:0000589 "pedal digit 2 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005696 ! pedal digit 2 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17468 ! -property_value: IAO:0000589 "pedal digit 3 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005697 ! pedal digit 3 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17471 ! -property_value: IAO:0000589 "pedal digit 4 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005698 ! pedal digit 4 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17474 ! -property_value: IAO:0000589 "pedal digit 5 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005699 ! pedal digit 5 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17944 ! -property_value: IAO:0000589 "upper jaw molar odontogenic papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0005700 ! upper jaw molar odontogenic papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17923 ! -property_value: IAO:0000589 "lower jaw molar odontogenic papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0005701 ! lower jaw molar odontogenic papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16324 ! -property_value: IAO:0000589 "optic eminence mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005702 ! optic eminence mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17364 ! -property_value: IAO:0000589 "secondary palatal shelf mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005704 ! secondary palatal shelf mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17644 ! -property_value: IAO:0000589 "primary palate mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0005705 ! primary palate mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17941 ! -property_value: IAO:0000589 "upper jaw incisor odontogenic papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0005707 ! upper jaw incisor odontogenic papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17920 ! -property_value: IAO:0000589 "lower jaw incisor odontogenic papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0005708 ! lower jaw incisor odontogenic papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17940 ! -property_value: IAO:0000589 "upper jaw incisor epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005709 ! upper jaw incisor epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17919 ! -property_value: IAO:0000589 "lower jaw incisor epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005710 ! lower jaw incisor epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17251 ! -property_value: IAO:0000589 "footplate apical ectodermal ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0005719 ! footplate apical ectodermal ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18632 ! -property_value: IAO:0000589 "hindbrain venous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0005720 ! hindbrain venous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17578 ! -property_value: IAO:0000589 "floor plate spinal cord region (embryonic mouse)" xsd:string -intersection_of: UBERON:0005723 ! floor plate spinal cord region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17586 ! -property_value: IAO:0000589 "roof plate spinal cord region (embryonic mouse)" xsd:string -intersection_of: UBERON:0005724 ! roof plate spinal cord region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36004 ! -property_value: IAO:0000589 "olfactory system (embryonic mouse)" xsd:string -intersection_of: UBERON:0005725 ! olfactory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31862 ! -property_value: IAO:0000589 "extraembryonic mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005728 ! extraembryonic mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31863 ! -property_value: IAO:0000589 "extraembryonic mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0005728 ! extraembryonic mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36299 ! -property_value: IAO:0000589 "tunica adventitia of blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0005734 ! tunica adventitia of blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36293 ! -property_value: IAO:0000589 "tunica intima of artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0005740 ! tunica intima of artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18716 ! -property_value: IAO:0000589 "optic foramen (embryonic mouse)" xsd:string -intersection_of: UBERON:0005745 ! optic foramen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28239 ! -property_value: IAO:0000589 "glomerular tuft (embryonic mouse)" xsd:string -intersection_of: UBERON:0005749 ! glomerular tuft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27979 ! -property_value: IAO:0000589 "glomerular parietal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005750 ! glomerular parietal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28260 ! -property_value: IAO:0000589 "glomerular parietal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005750 ! glomerular parietal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35969 ! -property_value: IAO:0000589 "glomerular parietal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005750 ! glomerular parietal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28254 ! -property_value: IAO:0000589 "glomerular visceral epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005751 ! glomerular visceral epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17212 ! -property_value: IAO:0000589 "urorectal septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28251 ! -property_value: IAO:0000589 "glomerular basement membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0005777 ! glomerular basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30965 ! -property_value: IAO:0000589 "glomerular basement membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0005777 ! glomerular basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16368 ! -property_value: IAO:0000589 "nephric ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0005792 ! nephric ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18606 ! -property_value: IAO:0000589 "dorsal aorta (embryonic mouse)" xsd:string -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32731 ! -property_value: IAO:0000589 "cartilaginous condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0005863 ! cartilaginous condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32736 ! -property_value: IAO:0000589 "pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0005866 ! pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17355 ! -property_value: IAO:0000589 "mandibular prominence (embryonic mouse)" xsd:string -intersection_of: UBERON:0005867 ! mandibular prominence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17359 ! -property_value: IAO:0000589 "maxillary prominence (embryonic mouse)" xsd:string -intersection_of: UBERON:0005868 ! maxillary prominence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16800 ! -property_value: IAO:0000589 "olfactory pit (embryonic mouse)" xsd:string -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37932 ! {source="MA:th"} -property_value: IAO:0000589 "palatine process of maxilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0005871 ! palatine process of maxilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16119 ! -property_value: IAO:0000589 "1st arch pharyngeal cleft (embryonic mouse)" xsd:string -intersection_of: UBERON:0005872 ! 1st arch pharyngeal cleft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16396 ! -property_value: IAO:0000589 "2nd arch pharyngeal cleft (embryonic mouse)" xsd:string -intersection_of: UBERON:0005873 ! 2nd arch pharyngeal cleft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16581 ! -property_value: IAO:0000589 "3rd arch pharyngeal cleft (embryonic mouse)" xsd:string -intersection_of: UBERON:0005874 ! 3rd arch pharyngeal cleft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16761 ! -property_value: IAO:0000589 "4th arch pharyngeal cleft (embryonic mouse)" xsd:string -intersection_of: UBERON:0005875 ! 4th arch pharyngeal cleft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17382 ! -property_value: IAO:0000589 "undifferentiated genital tubercle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005876 ! undifferentiated genital tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32750 ! -property_value: IAO:0000589 "pharyngeal cleft (embryonic mouse)" xsd:string -intersection_of: UBERON:0005879 ! pharyngeal cleft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17384 ! -property_value: IAO:0000589 "gonad germinal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005890 ! gonad germinal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27564 ! -property_value: IAO:0000589 "gonad germinal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005890 ! gonad germinal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35382 ! -property_value: IAO:0000589 "gonad germinal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0005890 ! gonad germinal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37304 ! {source="MA:th"} -property_value: IAO:0000589 "leg bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0005893 ! leg bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35391 ! -property_value: IAO:0000589 "manus bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0005897 ! manus bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35354 ! -property_value: IAO:0000589 "pes bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0005899 ! pes bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29282 ! -property_value: IAO:0000589 "duct of seminal vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005903 ! duct of seminal vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16060 ! -property_value: IAO:0000589 "serous sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0005906 ! serous sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18233 ! -property_value: IAO:0000589 "conjunctival sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0005908 ! conjunctival sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17848 ! -property_value: IAO:0000589 "external naris (embryonic mouse)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17851 ! -property_value: IAO:0000589 "primary choana (embryonic mouse)" xsd:string -intersection_of: UBERON:0005931 ! primary choana -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18770 ! -property_value: IAO:0000589 "bulb of hair follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005932 ! bulb of hair follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18772 ! -property_value: IAO:0000589 "hair root sheath (embryonic mouse)" xsd:string -intersection_of: UBERON:0005933 ! hair root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32792 ! -property_value: IAO:0000589 "hair inner root sheath (embryonic mouse)" xsd:string -intersection_of: UBERON:0005941 ! hair inner root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32793 ! -property_value: IAO:0000589 "hair outer root sheath (embryonic mouse)" xsd:string -intersection_of: UBERON:0005942 ! hair outer root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35390 ! -property_value: IAO:0000589 "hair root sheath matrix (embryonic mouse)" xsd:string -intersection_of: UBERON:0005943 ! hair root sheath matrix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17214 ! -property_value: IAO:0000589 "axial skeleton plus cranial skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0005944 ! axial skeleton plus cranial skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18043 ! -property_value: IAO:0000589 "axial skeleton plus cranial skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0005944 ! axial skeleton plus cranial skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37926 ! {source="MA:th"} -property_value: IAO:0000589 "outflow part of right ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005953 ! outflow part of right ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37925 ! {source="MA:th"} -property_value: IAO:0000589 "outflow part of left ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005956 ! outflow part of left ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17332 ! -property_value: IAO:0000589 "conotruncal ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0005967 ! conotruncal ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37446 ! {source="MA:th"} -property_value: IAO:0000589 "brain commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0005970 ! brain commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16076 ! -property_value: IAO:0000589 "amniotic fold (embryonic mouse)" xsd:string -intersection_of: UBERON:0005971 ! amniotic fold -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37976 ! {source="MA:th"} -property_value: IAO:0000589 "tunnel of Corti (embryonic mouse)" xsd:string -intersection_of: UBERON:0005972 ! tunnel of Corti -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37816 ! {source="MA:th"} -property_value: IAO:0000589 "posterior cerebellomedullary cistern (embryonic mouse)" xsd:string -intersection_of: UBERON:0005974 ! posterior cerebellomedullary cistern -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37876 ! {source="MA:th"} -property_value: IAO:0000589 "hair follicle bulge (embryonic mouse)" xsd:string -intersection_of: UBERON:0005975 ! hair follicle bulge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37398 ! {source="MA:th"} -property_value: IAO:0000589 "ansiform lobule crus I (embryonic mouse)" xsd:string -intersection_of: UBERON:0005976 ! ansiform lobule crus I -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37399 ! {source="MA:th"} -property_value: IAO:0000589 "ansiform lobule crus II (embryonic mouse)" xsd:string -intersection_of: UBERON:0005977 ! ansiform lobule crus II -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35614 ! -property_value: IAO:0000589 "olfactory bulb outer nerve layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005978 ! olfactory bulb outer nerve layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37837 ! {source="MA:th"} -property_value: IAO:0000589 "crista terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0005979 ! crista terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37935 ! {source="MA:th"} -property_value: IAO:0000589 "pectinate muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005980 ! pectinate muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37435 ! {source="MA:th"} -property_value: IAO:0000589 "Bachmann's bundle (embryonic mouse)" xsd:string -intersection_of: UBERON:0005982 ! Bachmann's bundle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37968 ! {source="MA:th"} -property_value: IAO:0000589 "subendocardium layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0005984 ! subendocardium layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37358 ! {source="MA:th"} -property_value: IAO:0000589 "left bundle branch (embryonic mouse)" xsd:string -intersection_of: UBERON:0005986 ! left bundle branch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37359 ! {source="MA:th"} -property_value: IAO:0000589 "right bundle branch (embryonic mouse)" xsd:string -intersection_of: UBERON:0005987 ! right bundle branch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37432 ! {source="MA:th"} -property_value: IAO:0000589 "atrium myocardial trabecula (embryonic mouse)" xsd:string -intersection_of: UBERON:0005988 ! atrium myocardial trabecula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37431 ! {source="MA:th"} -property_value: IAO:0000589 "atrioventricular septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0005989 ! atrioventricular septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37418 ! {source="MA:th"} -property_value: IAO:0000589 "aortic valve anulus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005991 ! aortic valve anulus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37420 ! {source="MA:th"} -property_value: IAO:0000589 "pulmonary valve anulus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005993 ! pulmonary valve anulus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36322 ! -property_value: IAO:0000589 "chorda tendineae (embryonic mouse)" xsd:string -intersection_of: UBERON:0005994 ! chorda tendineae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37419 ! {source="MA:th"} -property_value: IAO:0000589 "mitral valve anulus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005995 ! mitral valve anulus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37421 ! {source="MA:th"} -property_value: IAO:0000589 "tricuspid valve anulus (embryonic mouse)" xsd:string -intersection_of: UBERON:0005997 ! tricuspid valve anulus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16207 ! -property_value: IAO:0000589 "vitelline artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006002 ! vitelline artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37883 ! {source="MA:th"} -property_value: IAO:0000589 "integumentary adnexa (embryonic mouse)" xsd:string -intersection_of: UBERON:0006003 ! integumentary adnexa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37878 ! {source="MA:th"} -property_value: IAO:0000589 "hair follicle matrix region (embryonic mouse)" xsd:string -intersection_of: UBERON:0006004 ! hair follicle matrix region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37877 ! {source="MA:th"} -property_value: IAO:0000589 "hair follicle isthmus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006005 ! hair follicle isthmus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37908 ! {source="MA:th"} -property_value: IAO:0000589 "metoptic pillar (embryonic mouse)" xsd:string -intersection_of: UBERON:0006006 ! metoptic pillar -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36557 ! -property_value: IAO:0000589 "pre-Botzinger complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0006007 ! pre-Botzinger complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37422 ! {source="MA:th"} -property_value: IAO:0000589 "fibrous ring of heart (embryonic mouse)" xsd:string -intersection_of: UBERON:0006008 ! fibrous ring of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32618 ! -property_value: IAO:0000589 "interdigital region (embryonic mouse)" xsd:string -intersection_of: UBERON:0006012 ! interdigital region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32651 ! -property_value: IAO:0000589 "interdigital region between manual digits (embryonic mouse)" xsd:string -intersection_of: UBERON:0006013 ! interdigital region between manual digits -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32945 ! -property_value: IAO:0000589 "interdigital region between pedal digits (embryonic mouse)" xsd:string -intersection_of: UBERON:0006014 ! interdigital region between pedal digits -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17445 ! -property_value: IAO:0000589 "interdigital region between manual digits 1 and 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006026 ! interdigital region between manual digits 1 and 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17448 ! -property_value: IAO:0000589 "interdigital region between manual digits 2 and 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006029 ! interdigital region between manual digits 2 and 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17451 ! -property_value: IAO:0000589 "interdigital region between manual digits 3 and 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006032 ! interdigital region between manual digits 3 and 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17454 ! -property_value: IAO:0000589 "interdigital region between manual digits 4 and 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006035 ! interdigital region between manual digits 4 and 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17476 ! -property_value: IAO:0000589 "interdigital region between pedal digits 1 and 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006038 ! interdigital region between pedal digits 1 and 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17479 ! -property_value: IAO:0000589 "interdigital region between pedal digits 2 and 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006041 ! interdigital region between pedal digits 2 and 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17482 ! -property_value: IAO:0000589 "interdigital region between pedal digits 3 and 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006044 ! interdigital region between pedal digits 3 and 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17485 ! -property_value: IAO:0000589 "interdigital region between pedal digits 4 and 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006047 ! interdigital region between pedal digits 4 and 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37285 ! {source="MA:th"} -property_value: IAO:0000589 "digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006048 ! digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37286 ! {source="MA:th"} -property_value: IAO:0000589 "digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006049 ! digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37287 ! {source="MA:th"} -property_value: IAO:0000589 "digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006050 ! digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37288 ! {source="MA:th"} -property_value: IAO:0000589 "digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006051 ! digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17441 ! -property_value: IAO:0000589 "digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006052 ! digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37289 ! {source="MA:th"} -property_value: IAO:0000589 "digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006052 ! digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18551 ! -property_value: IAO:0000589 "falx cerebri (embryonic mouse)" xsd:string -intersection_of: UBERON:0006059 ! falx cerebri -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16338 ! -property_value: IAO:0000589 "conotruncus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006060 ! conotruncus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18042 ! -property_value: IAO:0000589 "bone of tail (embryonic mouse)" xsd:string -intersection_of: UBERON:0006068 ! bone of tail -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17215 ! -property_value: IAO:0000589 "cervical region of vertebral column (embryonic mouse)" xsd:string -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17396 ! -property_value: IAO:0000589 "thoracic region of vertebral column (embryonic mouse)" xsd:string -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17393 ! -property_value: IAO:0000589 "lumbar region of vertebral column (embryonic mouse)" xsd:string -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17676 ! -property_value: IAO:0000589 "sacral region of vertebral column (embryonic mouse)" xsd:string -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18043 ! -property_value: IAO:0000589 "caudal region of vertebral column (embryonic mouse)" xsd:string -intersection_of: UBERON:0006076 ! caudal region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35173 ! -property_value: IAO:0000589 "fundus of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35682 ! -property_value: IAO:0000589 "perirhinal cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0006083 ! perirhinal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36607 ! -property_value: IAO:0000589 "stria medullaris (embryonic mouse)" xsd:string -intersection_of: UBERON:0006086 ! stria medullaris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17771 ! -property_value: IAO:0000589 "inferior horn of the lateral ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006091 ! inferior horn of the lateral ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35801 ! -property_value: IAO:0000589 "cochlear canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006106 ! cochlear canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37218 ! {source="MA:th"} -property_value: IAO:0000589 "proper palmar digital artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006137 ! proper palmar digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37221 ! {source="MA:th"} -property_value: IAO:0000589 "common plantar digital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006142 ! common plantar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37230 ! {source="MA:th"} -property_value: IAO:0000589 "proper plantar digital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006143 ! proper plantar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37171 ! {source="MA:th"} -property_value: IAO:0000589 "medial plantar digital vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006144 ! medial plantar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37209 ! {source="MA:th"} -property_value: IAO:0000589 "forelimb common dorsal digital arteries (embryonic mouse)" xsd:string -intersection_of: UBERON:0006164 ! forelimb common dorsal digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37637 ! {source="MA:th"} -property_value: IAO:0000589 "median dorsal digital artery for digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006165 ! median dorsal digital artery for digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37636 ! {source="MA:th"} -property_value: IAO:0000589 "lateral dorsal digital artery for digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0006166 ! lateral dorsal digital artery for digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37211 ! {source="MA:th"} -property_value: IAO:0000589 "forelimb proper dorsal digital arteries (embryonic mouse)" xsd:string -intersection_of: UBERON:0006167 ! forelimb proper dorsal digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37213 ! {source="MA:th"} -property_value: IAO:0000589 "hindlimb common dorsal digital arteries (embryonic mouse)" xsd:string -intersection_of: UBERON:0006168 ! hindlimb common dorsal digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37212 ! {source="MA:th"} -property_value: IAO:0000589 "hindlimb proper dorsal digital arteries (embryonic mouse)" xsd:string -intersection_of: UBERON:0006169 ! hindlimb proper dorsal digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37136 ! {source="MA:th"} -property_value: IAO:0000589 "auricular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006197 ! auricular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37078 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal intercostal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006198 ! dorsal intercostal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37138 ! {source="MA:th"} -property_value: IAO:0000589 "posterior auricular vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006199 ! posterior auricular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37472 ! {source="MA:th"} -property_value: IAO:0000589 "caudal humeral circumflex vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006200 ! caudal humeral circumflex vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16827 ! -property_value: IAO:0000589 "aortico-pulmonary spiral septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006207 ! aortico-pulmonary spiral septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17280 ! -property_value: IAO:0000589 "auditory hillocks (embryonic mouse)" xsd:string -intersection_of: UBERON:0006208 ! auditory hillocks -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18337 ! -property_value: IAO:0000589 "basioccipital cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0006209 ! basioccipital cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16893 ! -property_value: IAO:0000589 "body-wall mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0006210 ! body-wall mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16259 ! -property_value: IAO:0000589 "buccopharyngeal membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0006211 ! buccopharyngeal membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16693 ! -property_value: IAO:0000589 "bulbo-ventricular groove (embryonic mouse)" xsd:string -intersection_of: UBERON:0006212 ! bulbo-ventricular groove -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18102 ! -property_value: IAO:0000589 "carpus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0006213 ! carpus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17724 ! -property_value: IAO:0000589 "carpus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006214 ! carpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17074 ! -property_value: IAO:0000589 "rhombic lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0006215 ! rhombic lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16884 ! -property_value: IAO:0000589 "cervical sinus of His (embryonic mouse)" xsd:string -intersection_of: UBERON:0006216 ! cervical sinus of His -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16832 ! -property_value: IAO:0000589 "cloacal membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0006217 ! cloacal membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16342 ! -property_value: IAO:0000589 "common atrial chamber (embryonic mouse)" xsd:string -intersection_of: UBERON:0006218 ! common atrial chamber -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17749 ! -property_value: IAO:0000589 "deltoid pre-muscle mass (embryonic mouse)" xsd:string -intersection_of: UBERON:0006219 ! deltoid pre-muscle mass -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16901 ! -property_value: IAO:0000589 "diencephalic part of interventricular foramen (embryonic mouse)" xsd:string -intersection_of: UBERON:0006220 ! diencephalic part of interventricular foramen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16514 ! -property_value: IAO:0000589 "future diencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0006222 ! future diencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16704 ! -property_value: IAO:0000589 "dorsal meso-oesophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17710 ! -property_value: IAO:0000589 "elbow joint primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006224 ! elbow joint primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16994 ! -property_value: IAO:0000589 "endolymphatic appendage (embryonic mouse)" xsd:string -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18023 ! -property_value: IAO:0000589 "ethmoid bone primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006227 ! ethmoid bone primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18014 ! -property_value: IAO:0000589 "exoccipital pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006228 ! exoccipital pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17845 ! -property_value: IAO:0000589 "extrinsic ocular pre-muscle mass (embryonic mouse)" xsd:string -intersection_of: UBERON:0006230 ! extrinsic ocular pre-muscle mass -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18024 ! -property_value: IAO:0000589 "facial bone primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006231 ! facial bone primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16660 ! -property_value: IAO:0000589 "facio-acoustic VII-VIII preganglion complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0006232 ! facio-acoustic VII-VIII preganglion complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18680 ! -property_value: IAO:0000589 "female genital tubercle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006233 ! female genital tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17502 ! -property_value: IAO:0000589 "femur pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006234 ! femur pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16363 ! -property_value: IAO:0000589 "foregut-midgut junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0006235 ! foregut-midgut junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18017 ! -property_value: IAO:0000589 "tetrapod frontal bone primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006236 ! tetrapod frontal bone primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16089 ! -property_value: IAO:0000589 "future brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0006238 ! future brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25035 ! -property_value: IAO:0000589 "future central tendon (embryonic mouse)" xsd:string -intersection_of: UBERON:0006239 ! future central tendon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16640 ! -property_value: IAO:0000589 "future forebrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0006240 ! future forebrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16092 ! -property_value: IAO:0000589 "future spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16755 ! -property_value: IAO:0000589 "future spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16713 ! -property_value: IAO:0000589 "gallbladder primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006242 ! gallbladder primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16661 ! -property_value: IAO:0000589 "glossopharyngeal IX preganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0006243 ! glossopharyngeal IX preganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17739 ! -property_value: IAO:0000589 "hip joint primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006244 ! hip joint primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17713 ! -property_value: IAO:0000589 "humerus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0006245 ! humerus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17427 ! -property_value: IAO:0000589 "humerus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006246 ! humerus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18029 ! -property_value: IAO:0000589 "iliac pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006247 ! iliac pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17825 ! -property_value: IAO:0000589 "incus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006248 ! incus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16899 ! -property_value: IAO:0000589 "infundibular recess of 3rd ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006250 ! infundibular recess of 3rd ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18018 ! -property_value: IAO:0000589 "interparietal bone primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006251 ! interparietal bone primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16828 ! -property_value: IAO:0000589 "intersubcardinal venous anastomosis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006252 ! intersubcardinal venous anastomosis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16676 ! -property_value: IAO:0000589 "embryonic intraretinal space (embryonic mouse)" xsd:string -intersection_of: UBERON:0006253 ! embryonic intraretinal space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17170 ! -property_value: IAO:0000589 "embryonic intraretinal space (embryonic mouse)" xsd:string -intersection_of: UBERON:0006253 ! embryonic intraretinal space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26930 ! -property_value: IAO:0000589 "ischial cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0006254 ! ischial cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18348 ! -property_value: IAO:0000589 "ischial pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006255 ! ischial pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17740 ! -property_value: IAO:0000589 "knee joint primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006256 ! knee joint primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16739 ! -property_value: IAO:0000589 "laryngotracheal groove (embryonic mouse)" xsd:string -intersection_of: UBERON:0006257 ! laryngotracheal groove -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16799 ! -property_value: IAO:0000589 "lens pit (embryonic mouse)" xsd:string -intersection_of: UBERON:0006259 ! lens pit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17186 ! -property_value: IAO:0000589 "lingual swellings (embryonic mouse)" xsd:string -intersection_of: UBERON:0006260 ! lingual swellings -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17969 ! -property_value: IAO:0000589 "male genital tubercle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006261 ! male genital tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17826 ! -property_value: IAO:0000589 "malleus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006262 ! malleus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17358 ! -property_value: IAO:0000589 "Meckel's cartilage pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006263 ! Meckel's cartilage pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16258 ! -property_value: IAO:0000589 "mouth-foregut junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0006264 ! mouth-foregut junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16047 ! -property_value: IAO:0000589 "mural trophectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0006265 ! mural trophectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16679 ! -property_value: IAO:0000589 "nasolacrimal groove (embryonic mouse)" xsd:string -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16101 ! -property_value: IAO:0000589 "notochordal plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0006267 ! notochordal plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16102 ! -property_value: IAO:0000589 "notochordal process (embryonic mouse)" xsd:string -intersection_of: UBERON:0006268 ! notochordal process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16199 ! -property_value: IAO:0000589 "optic pit (embryonic mouse)" xsd:string -intersection_of: UBERON:0006270 ! optic pit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16325 ! -property_value: IAO:0000589 "optic pit (embryonic mouse)" xsd:string -intersection_of: UBERON:0006270 ! optic pit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18717 ! -property_value: IAO:0000589 "orbital fissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0006271 ! orbital fissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17200 ! -property_value: IAO:0000589 "oronasal cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0006272 ! oronasal cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16536 ! -property_value: IAO:0000589 "otic pit (embryonic mouse)" xsd:string -intersection_of: UBERON:0006273 ! otic pit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18019 ! -property_value: IAO:0000589 "tetrapod parietal bone primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006274 ! tetrapod parietal bone primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16282 ! -property_value: IAO:0000589 "pericardio-peritoneal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006275 ! pericardio-peritoneal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17167 ! -property_value: IAO:0000589 "perioptic mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0006276 ! perioptic mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17704 ! -property_value: IAO:0000589 "pleuropericardial canals (embryonic mouse)" xsd:string -intersection_of: UBERON:0006277 ! pleuropericardial canals -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17706 ! -property_value: IAO:0000589 "pleuropericardial folds (embryonic mouse)" xsd:string -intersection_of: UBERON:0006278 ! pleuropericardial folds -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17704 ! -property_value: IAO:0000589 "pleuroperitoneal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006279 ! pleuroperitoneal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17707 ! -property_value: IAO:0000589 "pleuroperitoneal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006279 ! pleuroperitoneal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16048 ! -property_value: IAO:0000589 "polar trophectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0006280 ! polar trophectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16242 ! -property_value: IAO:0000589 "primary head vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006282 ! primary head vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16350 ! -property_value: IAO:0000589 "future cardiac ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006283 ! future cardiac ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16521 ! -property_value: IAO:0000589 "early prosencephalic vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006284 ! early prosencephalic vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18349 ! -property_value: IAO:0000589 "pubic pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006285 ! pubic pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18054 ! -property_value: IAO:0000589 "radius cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0006286 ! radius cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17420 ! -property_value: IAO:0000589 "radius-ulna pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006287 ! radius-ulna pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17678 ! -property_value: IAO:0000589 "rib cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0006288 ! rib cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17397 ! -property_value: IAO:0000589 "rib pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006289 ! rib pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18343 ! -property_value: IAO:0000589 "scapula cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0006290 ! scapula cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18027 ! -property_value: IAO:0000589 "scapula pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006291 ! scapula pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17712 ! -property_value: IAO:0000589 "shoulder joint primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006292 ! shoulder joint primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18535 ! -property_value: IAO:0000589 "spleen primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006293 ! spleen primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17827 ! -property_value: IAO:0000589 "stapes pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006294 ! stapes pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18345 ! -property_value: IAO:0000589 "sternebral bone pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0006295 ! sternebral bone pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16829 ! -property_value: IAO:0000589 "subcardinal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006296 ! subcardinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17752 ! -property_value: IAO:0000589 "sublingual gland primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006297 ! sublingual gland primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17755 ! -property_value: IAO:0000589 "submandibular gland primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006298 ! submandibular gland primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16830 ! -property_value: IAO:0000589 "supracardinal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006300 ! supracardinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16915 ! -property_value: IAO:0000589 "telencephalic part of interventricular foramen (embryonic mouse)" xsd:string -intersection_of: UBERON:0006301 ! telencephalic part of interventricular foramen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16740 ! -property_value: IAO:0000589 "tracheal diverticulum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006303 ! tracheal diverticulum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16663 ! -property_value: IAO:0000589 "future trigeminal ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0006304 ! future trigeminal ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18235 ! -property_value: IAO:0000589 "tunica vasculosa lentis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006305 ! tunica vasculosa lentis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18055 ! -property_value: IAO:0000589 "ulna cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0006306 ! ulna cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17378 ! -property_value: IAO:0000589 "urogenital membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0006307 ! urogenital membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17020 ! -property_value: IAO:0000589 "venous vitelline plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006309 ! venous vitelline plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17020 ! -property_value: IAO:0000589 "vitelline venous plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006310 ! vitelline venous plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37529 ! {source="MA:th"} -property_value: IAO:0000589 "chamber of eyeball (embryonic mouse)" xsd:string -intersection_of: UBERON:0006311 ! chamber of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37441 ! {source="MA:th"} -property_value: IAO:0000589 "bodily fluid (embryonic mouse)" xsd:string -intersection_of: UBERON:0006314 ! bodily fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37691 ! {source="MA:th"} -property_value: IAO:0000589 "orbitalis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006318 ! orbitalis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37749 ! {source="MA:th"} -property_value: IAO:0000589 "spinal cord reticular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006319 ! spinal cord reticular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37628 ! {source="MA:th"} -property_value: IAO:0000589 "laryngeal intrinsic ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0006325 ! laryngeal intrinsic ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37424 ! {source="MA:th"} -property_value: IAO:0000589 "base of arytenoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0006326 ! base of arytenoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37629 ! {source="MA:th"} -property_value: IAO:0000589 "laryngeal extrinsic muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006327 ! laryngeal extrinsic muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37630 ! {source="MA:th"} -property_value: IAO:0000589 "laryngeal intrinsic muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006328 ! laryngeal intrinsic muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18966 ! -property_value: IAO:0000589 "superior pharyngeal constrictor (embryonic mouse)" xsd:string -intersection_of: UBERON:0006329 ! superior pharyngeal constrictor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32790 ! -property_value: IAO:0000589 "brainstem nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006331 ! brainstem nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17852 ! -property_value: IAO:0000589 "nasal capsule (embryonic mouse)" xsd:string -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32806 ! -property_value: IAO:0000589 "snout (embryonic mouse)" xsd:string -intersection_of: UBERON:0006333 ! snout -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27788 ! -property_value: IAO:0000589 "distal early tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0006337 ! distal early tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28007 ! -property_value: IAO:0000589 "distal early tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0006337 ! distal early tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37056 ! {source="MA:th"} -property_value: IAO:0000589 "third ventricle choroid plexus stroma (embryonic mouse)" xsd:string -intersection_of: UBERON:0006339 ! third ventricle choroid plexus stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35461 ! -property_value: IAO:0000589 "outer renal medulla peritubular capillary (embryonic mouse)" xsd:string -intersection_of: UBERON:0006341 ! outer renal medulla peritubular capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18047 ! -property_value: IAO:0000589 "left subhepatic recess (embryonic mouse)" xsd:string -intersection_of: UBERON:0006342 ! left subhepatic recess -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18050 ! -property_value: IAO:0000589 "right subhepatic recess (embryonic mouse)" xsd:string -intersection_of: UBERON:0006343 ! right subhepatic recess -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17313 ! -property_value: IAO:0000589 "stapedial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18598 ! -property_value: IAO:0000589 "communicating artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006347 ! communicating artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18750 ! -property_value: IAO:0000589 "epigastric artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006349 ! epigastric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17018 ! -property_value: IAO:0000589 "principal vein of forelimb (embryonic mouse)" xsd:string -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17019 ! -property_value: IAO:0000589 "principal vein of hindlimb (embryonic mouse)" xsd:string -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18646 ! -property_value: IAO:0000589 "superior vesical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006355 ! superior vesical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18759 ! -property_value: IAO:0000589 "epigastric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006356 ! epigastric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18236 ! -property_value: IAO:0000589 "vasa hyaloidea propria (embryonic mouse)" xsd:string -intersection_of: UBERON:0006358 ! vasa hyaloidea propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17183 ! -property_value: IAO:0000589 "mesoduodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17198 ! -property_value: IAO:0000589 "mesoduodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19082 ! -property_value: IAO:0000589 "mesoduodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18273 ! -property_value: IAO:0000589 "tongue intermolar eminence (embryonic mouse)" xsd:string -intersection_of: UBERON:0006360 ! tongue intermolar eminence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27605 ! -property_value: IAO:0000589 "ureteric bud tip (embryonic mouse)" xsd:string -intersection_of: UBERON:0006364 ! ureteric bud tip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28083 ! -property_value: IAO:0000589 "perihilar interstitium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006373 ! perihilar interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28269 ! -property_value: IAO:0000589 "part of afferent arteriole forming the juxtaglomerular complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0006374 ! part of afferent arteriole forming the juxtaglomerular complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29671 ! -property_value: IAO:0000589 "premacula segment of distal straight tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0006376 ! premacula segment of distal straight tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17518 ! -property_value: IAO:0000589 "remnant of Rathke's pouch (embryonic mouse)" xsd:string -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26747 ! -property_value: IAO:0000589 "strand of vibrissa hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0006378 ! strand of vibrissa hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18706 ! -property_value: IAO:0000589 "basisphenoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18725 ! -property_value: IAO:0000589 "xiphoid cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0006430 ! xiphoid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29769 ! -property_value: IAO:0000589 "os penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006435 ! os penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16811 ! -property_value: IAO:0000589 "principal artery to forelimb (embryonic mouse)" xsd:string -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16812 ! -property_value: IAO:0000589 "principal artery to hindlimb (embryonic mouse)" xsd:string -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30823 ! -property_value: IAO:0000589 "os clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0006440 ! os clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32670 ! -property_value: IAO:0000589 "annulus fibrosus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006444 ! annulus fibrosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37423 ! {source="MA:th"} -property_value: IAO:0000589 "apex of arytenoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0006494 ! apex of arytenoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35621 ! -property_value: IAO:0000589 "osseus cochlear canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006495 ! osseus cochlear canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37526 ! {source="MA:th"} -property_value: IAO:0000589 "external acoustic meatus osseus part (embryonic mouse)" xsd:string -intersection_of: UBERON:0006496 ! external acoustic meatus osseus part -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36262 ! -property_value: IAO:0000589 "interosseous muscle of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0006497 ! interosseous muscle of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37517 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal pes interosseous muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006499 ! dorsal pes interosseous muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37518 ! {source="MA:th"} -property_value: IAO:0000589 "plantar interosseous muscle of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0006502 ! plantar interosseous muscle of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37520 ! {source="MA:th"} -property_value: IAO:0000589 "palmar interosseous muscle of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006505 ! palmar interosseous muscle of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32780 ! -property_value: IAO:0000589 "pallidum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006514 ! pallidum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18676 ! -property_value: IAO:0000589 "kidney calyx (embryonic mouse)" xsd:string -intersection_of: UBERON:0006517 ! kidney calyx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35155 ! -property_value: IAO:0000589 "right lung lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0006518 ! right lung lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32692 ! -property_value: IAO:0000589 "alveolar system (embryonic mouse)" xsd:string -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19001 ! -property_value: IAO:0000589 "left lung alveolar system (embryonic mouse)" xsd:string -intersection_of: UBERON:0006525 ! left lung alveolar system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35717 ! -property_value: IAO:0000589 "right lung alveolar system (embryonic mouse)" xsd:string -intersection_of: UBERON:0006526 ! right lung alveolar system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36543 ! -property_value: IAO:0000589 "seminal fluid (embryonic mouse)" xsd:string -intersection_of: UBERON:0006530 ! seminal fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35725 ! -property_value: IAO:0000589 "renal convoluted tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0006534 ! renal convoluted tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36541 ! -property_value: IAO:0000589 "male reproductive gland secretion (embryonic mouse)" xsd:string -intersection_of: UBERON:0006536 ! male reproductive gland secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36550 ! -property_value: IAO:0000589 "respiratory system fluid/secretion (embryonic mouse)" xsd:string -intersection_of: UBERON:0006538 ! respiratory system fluid/secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36538 ! -property_value: IAO:0000589 "mammary gland fluid/secretion (embryonic mouse)" xsd:string -intersection_of: UBERON:0006539 ! mammary gland fluid/secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29679 ! -property_value: IAO:0000589 "outer medulla inner stripe loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006541 ! outer medulla inner stripe loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29665 ! -property_value: IAO:0000589 "outer medulla outer stripe loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006542 ! outer medulla outer stripe loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28457 ! -property_value: IAO:0000589 "kidney vasculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0006544 ! kidney vasculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18248 ! -property_value: IAO:0000589 "lymphatic part of lymphoid system (embryonic mouse)" xsd:string -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37755 ! {source="MA:th"} -property_value: IAO:0000589 "superficial palmar arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0006564 ! superficial palmar arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36453 ! -property_value: IAO:0000589 "female urethral meatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006565 ! female urethral meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17339 ! -property_value: IAO:0000589 "left ventricle myocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006566 ! left ventricle myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17342 ! -property_value: IAO:0000589 "right ventricle myocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006567 ! right ventricle myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35417 ! -property_value: IAO:0000589 "hypothalamic nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006568 ! hypothalamic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19159 ! -property_value: IAO:0000589 "pectinate line (embryonic mouse)" xsd:string -intersection_of: UBERON:0006574 ! pectinate line -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36547 ! -property_value: IAO:0000589 "otolymph (embryonic mouse)" xsd:string -intersection_of: UBERON:0006586 ! otolymph -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37361 ! {source="MA:th"} -property_value: IAO:0000589 "right external ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0006616 ! right external ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37360 ! {source="MA:th"} -property_value: IAO:0000589 "left external ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0006617 ! left external ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36055 ! -property_value: IAO:0000589 "atrium auricular region (embryonic mouse)" xsd:string -intersection_of: UBERON:0006618 ! atrium auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16816 ! -property_value: IAO:0000589 "left atrium auricular region (embryonic mouse)" xsd:string -intersection_of: UBERON:0006630 ! left atrium auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17316 ! -property_value: IAO:0000589 "left atrium auricular region (embryonic mouse)" xsd:string -intersection_of: UBERON:0006630 ! left atrium auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16824 ! -property_value: IAO:0000589 "right atrium auricular region (embryonic mouse)" xsd:string -intersection_of: UBERON:0006631 ! right atrium auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17322 ! -property_value: IAO:0000589 "right atrium auricular region (embryonic mouse)" xsd:string -intersection_of: UBERON:0006631 ! right atrium auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19215 ! -property_value: IAO:0000589 "musculo-phrenic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006632 ! musculo-phrenic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25121 ! -property_value: IAO:0000589 "coracoid process of scapula (embryonic mouse)" xsd:string -intersection_of: UBERON:0006633 ! coracoid process of scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19312 ! -property_value: IAO:0000589 "lingual vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006634 ! lingual vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17744 ! -property_value: IAO:0000589 "anterior abdominal wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0006635 ! anterior abdominal wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19096 ! -property_value: IAO:0000589 "lumbar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006636 ! lumbar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19212 ! -property_value: IAO:0000589 "celiac trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0006637 ! celiac trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29637 ! -property_value: IAO:0000589 "remnant of urachus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006638 ! remnant of urachus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19294 ! -property_value: IAO:0000589 "crus of penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006639 ! crus of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30821 ! -property_value: IAO:0000589 "crus of clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0006640 ! crus of clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19086 ! -property_value: IAO:0000589 "appendix epididymis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006641 ! appendix epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29046 ! -property_value: IAO:0000589 "muscle layer of oviduct (embryonic mouse)" xsd:string -intersection_of: UBERON:0006642 ! muscle layer of oviduct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19289 ! -property_value: IAO:0000589 "tunica albuginea of testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006643 ! tunica albuginea of testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30522 ! -property_value: IAO:0000589 "tunica albuginea of ovary (embryonic mouse)" xsd:string -intersection_of: UBERON:0006644 ! tunica albuginea of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30443 ! -property_value: IAO:0000589 "adventitia of epididymis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006645 ! adventitia of epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30747 ! -property_value: IAO:0000589 "muscle layer of epididymis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006646 ! muscle layer of epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29767 ! -property_value: IAO:0000589 "adventitia of ductus deferens (embryonic mouse)" xsd:string -intersection_of: UBERON:0006647 ! adventitia of ductus deferens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29775 ! -property_value: IAO:0000589 "adventitia of seminal vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006648 ! adventitia of seminal vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19085 ! -property_value: IAO:0000589 "suspensory ligament of ovary (embryonic mouse)" xsd:string -intersection_of: UBERON:0006649 ! suspensory ligament of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19179 ! -property_value: IAO:0000589 "tunica vaginalis testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006650 ! tunica vaginalis testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19087 ! -property_value: IAO:0000589 "appendix testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006651 ! appendix testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29304 ! -property_value: IAO:0000589 "appendix testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006651 ! appendix testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30997 ! -property_value: IAO:0000589 "muscular layer of vagina (embryonic mouse)" xsd:string -intersection_of: UBERON:0006652 ! muscular layer of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19170 ! -property_value: IAO:0000589 "glans clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0006653 ! glans clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30829 ! -property_value: IAO:0000589 "glans clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0006653 ! glans clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17892 ! -property_value: IAO:0000589 "perineal body (embryonic mouse)" xsd:string -intersection_of: UBERON:0006654 ! perineal body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29745 ! -property_value: IAO:0000589 "septum of scrotum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006655 ! septum of scrotum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19219 ! -property_value: IAO:0000589 "deep dorsal vein of penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006656 ! deep dorsal vein of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25122 ! -property_value: IAO:0000589 "glenoid fossa (embryonic mouse)" xsd:string -intersection_of: UBERON:0006657 ! glenoid fossa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37884 ! {source="MA:th"} -property_value: IAO:0000589 "interphalangeal joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0006658 ! interphalangeal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19210 ! -property_value: IAO:0000589 "epicranial aponeurosis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006661 ! epicranial aponeurosis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19222 ! -property_value: IAO:0000589 "musculo-phrenic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006662 ! musculo-phrenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18251 ! -property_value: IAO:0000589 "hemiazygos vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006663 ! hemiazygos vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18754 ! -property_value: IAO:0000589 "greater palatine artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006664 ! greater palatine artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19217 ! -property_value: IAO:0000589 "accessory hemiazygos vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006665 ! accessory hemiazygos vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19311 ! -property_value: IAO:0000589 "great cerebral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006666 ! great cerebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19195 ! -property_value: IAO:0000589 "pituitary fossa (embryonic mouse)" xsd:string -intersection_of: UBERON:0006667 ! pituitary fossa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18707 ! -property_value: IAO:0000589 "carotid canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006668 ! carotid canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25099 ! -property_value: IAO:0000589 "alveolar canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006669 ! alveolar canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17702 ! -property_value: IAO:0000589 "central tendon of diaphragm (embryonic mouse)" xsd:string -intersection_of: UBERON:0006670 ! central tendon of diaphragm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19152 ! -property_value: IAO:0000589 "orbital fat pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0006671 ! orbital fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19034 ! -property_value: IAO:0000589 "incisive canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006672 ! incisive canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19161 ! -property_value: IAO:0000589 "mandibular canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006673 ! mandibular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29307 ! -property_value: IAO:0000589 "inguinal ring (embryonic mouse)" xsd:string -intersection_of: UBERON:0006674 ! inguinal ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35385 ! -property_value: IAO:0000589 "muscularis mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0006676 ! muscularis mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17863 ! -property_value: IAO:0000589 "foramen secundum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18407 ! -property_value: IAO:0000589 "carina of trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19193 ! -property_value: IAO:0000589 "trachealis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006680 ! trachealis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18546 ! -property_value: IAO:0000589 "interthalamic adhesion (embryonic mouse)" xsd:string -intersection_of: UBERON:0006681 ! interthalamic adhesion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19012 ! -property_value: IAO:0000589 "hypoglossal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0006682 ! hypoglossal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19200 ! -property_value: IAO:0000589 "posterior fontanelle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006683 ! posterior fontanelle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19229 ! -property_value: IAO:0000589 "sphenoidal fontanelle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006684 ! sphenoidal fontanelle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19250 ! -property_value: IAO:0000589 "pharyngeal tubercle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006685 ! pharyngeal tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18255 ! -property_value: IAO:0000589 "spinal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006686 ! spinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26064 ! -property_value: IAO:0000589 "median sacral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0006687 ! median sacral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18961 ! -property_value: IAO:0000589 "sublingual caruncle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006688 ! sublingual caruncle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18656 ! -property_value: IAO:0000589 "frenulum of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0006689 ! frenulum of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19218 ! -property_value: IAO:0000589 "deep dorsal vein of clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0006690 ! deep dorsal vein of clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18210 ! -property_value: IAO:0000589 "tentorium cerebelli (embryonic mouse)" xsd:string -intersection_of: UBERON:0006691 ! tentorium cerebelli -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17069 ! -property_value: IAO:0000589 "foramen cecum of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0006699 ! foramen cecum of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25141 ! -property_value: IAO:0000589 "medial pterygoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006718 ! medial pterygoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25140 ! -property_value: IAO:0000589 "lateral pterygoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006719 ! lateral pterygoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25139 ! -property_value: IAO:0000589 "pterygoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006720 ! pterygoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36567 ! -property_value: IAO:0000589 "alisphenoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0006721 ! alisphenoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35575 ! -property_value: IAO:0000589 "cochlear modiolus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006723 ! cochlear modiolus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35622 ! -property_value: IAO:0000589 "osseus spiral lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0006724 ! osseus spiral lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35798 ! -property_value: IAO:0000589 "spiral ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0006725 ! spiral ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37458 ! {source="MA:th"} -property_value: IAO:0000589 "outer canthus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006726 ! outer canthus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37644 ! {source="MA:th"} -property_value: IAO:0000589 "liver left lateral lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0006727 ! liver left lateral lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37645 ! {source="MA:th"} -property_value: IAO:0000589 "liver left medial lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0006728 ! liver left medial lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37457 ! {source="MA:th"} -property_value: IAO:0000589 "canthus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006742 ! canthus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17187 ! -property_value: IAO:0000589 "median lingual swelling (embryonic mouse)" xsd:string -intersection_of: UBERON:0006756 ! median lingual swelling -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17189 ! -property_value: IAO:0000589 "lateral lingual swelling (embryonic mouse)" xsd:string -intersection_of: UBERON:0006757 ! lateral lingual swelling -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37835 ! {source="MA:th"} -property_value: IAO:0000589 "corneo-scleral junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0006761 ! corneo-scleral junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18599 ! -property_value: IAO:0000589 "anterior communicating artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0006764 ! anterior communicating artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18418 ! -property_value: IAO:0000589 "left anterior vena cava (embryonic mouse)" xsd:string -intersection_of: UBERON:0006765 ! left anterior vena cava -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18419 ! -property_value: IAO:0000589 "right anterior vena cava (embryonic mouse)" xsd:string -intersection_of: UBERON:0006766 ! right anterior vena cava -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37541 ! {source="MA:th"} -property_value: IAO:0000589 "head of femur (embryonic mouse)" xsd:string -intersection_of: UBERON:0006767 ! head of femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35507 ! -property_value: IAO:0000589 "long bone epiphyseal plate proliferative zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0006771 ! long bone epiphyseal plate proliferative zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35506 ! -property_value: IAO:0000589 "long bone epiphyseal plate hypertrophic zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0006772 ! long bone epiphyseal plate hypertrophic zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25050 ! -property_value: IAO:0000589 "proximal head of humerus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006801 ! proximal head of humerus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37846 ! {source="MA:th"} -property_value: IAO:0000589 "reticular tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0006804 ! reticular tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37443 ! {source="MA:th"} -property_value: IAO:0000589 "body of sternum (embryonic mouse)" xsd:string -intersection_of: UBERON:0006820 ! body of sternum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37500 ! {source="MA:th"} -property_value: IAO:0000589 "cutaneous muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006821 ! cutaneous muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19269 ! -property_value: IAO:0000589 "pre-tracheal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0006831 ! pre-tracheal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36179 ! -property_value: IAO:0000589 "medial tibial tarsal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0006836 ! medial tibial tarsal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37922 ! {source="MA:th"} -property_value: IAO:0000589 "posterior pretectal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0006848 ! posterior pretectal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18722 ! -property_value: IAO:0000589 "scapula (embryonic mouse)" xsd:string -intersection_of: UBERON:0006849 ! scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37488 ! {source="MA:th"} -property_value: IAO:0000589 "renal cortex peritubular capillary (embryonic mouse)" xsd:string -intersection_of: UBERON:0006851 ! renal cortex peritubular capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18976 ! -property_value: IAO:0000589 "renal cortex tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0006853 ! renal cortex tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28402 ! -property_value: IAO:0000589 "distal straight tubule postmacula segment (embryonic mouse)" xsd:string -intersection_of: UBERON:0006854 ! distal straight tubule postmacula segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28811 ! -property_value: IAO:0000589 "muscular coat of ureter (embryonic mouse)" xsd:string -intersection_of: UBERON:0006855 ! muscular coat of ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37538 ! {source="MA:th"} -property_value: IAO:0000589 "diaphysis of femur (embryonic mouse)" xsd:string -intersection_of: UBERON:0006862 ! diaphysis of femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37540 ! {source="MA:th"} -property_value: IAO:0000589 "metaphysis of femur (embryonic mouse)" xsd:string -intersection_of: UBERON:0006865 ! metaphysis of femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17249 ! -property_value: IAO:0000589 "embryonic footplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0006871 ! embryonic footplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17247 ! -property_value: IAO:0000589 "handplate apical ectodermal ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0006872 ! handplate apical ectodermal ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17245 ! -property_value: IAO:0000589 "embryonic handplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0006875 ! embryonic handplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35501 ! -property_value: IAO:0000589 "vasculature of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0006877 ! vasculature of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16099 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17357 ! -property_value: IAO:0000589 "mandibular process mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0006905 ! mandibular process mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32908 ! -property_value: IAO:0000589 "lumen of digestive tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0006909 ! lumen of digestive tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28619 ! -property_value: IAO:0000589 "urinary bladder muscularis mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0006912 ! urinary bladder muscularis mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35324 ! -property_value: IAO:0000589 "esophagus squamous epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006920 ! esophagus squamous epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35824 ! -property_value: IAO:0000589 "stomach squamous epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006921 ! stomach squamous epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37794 ! {source="MA:th"} -property_value: IAO:0000589 "vagina squamous epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006923 ! vagina squamous epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17623 ! -property_value: IAO:0000589 "stomach glandular epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006924 ! stomach glandular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35814 ! -property_value: IAO:0000589 "stomach glandular epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006924 ! stomach glandular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27167 ! -property_value: IAO:0000589 "stomach glandular region mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0006931 ! stomach glandular region mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32884 ! -property_value: IAO:0000589 "vestibular epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006932 ! vestibular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35921 ! -property_value: IAO:0000589 "vestibular epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006932 ! vestibular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32883 ! -property_value: IAO:0000589 "inner ear epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006937 ! inner ear epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17592 ! -property_value: IAO:0000589 "pinna surface epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006938 ! pinna surface epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18993 ! -property_value: IAO:0000589 "efferent duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0006946 ! efferent duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29747 ! -property_value: IAO:0000589 "efferent duct epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006948 ! efferent duct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29786 ! -property_value: IAO:0000589 "ejaculatory duct epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006953 ! ejaculatory duct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37903 ! {source="MA:th"} -property_value: IAO:0000589 "mammary gland myoepithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006954 ! mammary gland myoepithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17756 ! -property_value: IAO:0000589 "submandibular gland primordium epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0006957 ! submandibular gland primordium epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37225 ! {source="MA:th"} -property_value: IAO:0000589 "great vein of heart (embryonic mouse)" xsd:string -intersection_of: UBERON:0006958 ! great vein of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28880 ! -property_value: IAO:0000589 "ovary stroma (embryonic mouse)" xsd:string -intersection_of: UBERON:0006960 ! ovary stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17515 ! -property_value: IAO:0000589 "pars distalis of adenohypophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26139 ! -property_value: IAO:0000589 "vitelline duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0007105 ! vitelline duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16124 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16125 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16275 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16276 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16586 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16766 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37714 ! {source="MA:th"} -property_value: IAO:0000589 "parietal mesothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0007140 ! parietal mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37804 ! {source="MA:th"} -property_value: IAO:0000589 "visceral mesothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0007141 ! visceral mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16329 ! -property_value: IAO:0000589 "left internal carotid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007142 ! left internal carotid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16330 ! -property_value: IAO:0000589 "right internal carotid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007143 ! right internal carotid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16748 ! -property_value: IAO:0000589 "embryonic post-anal tail (embryonic mouse)" xsd:string -intersection_of: UBERON:0007144 ! embryonic post-anal tail -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18046 ! -property_value: IAO:0000589 "dome of diaphragm (embryonic mouse)" xsd:string -intersection_of: UBERON:0007145 ! dome of diaphragm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18243 ! -property_value: IAO:0000589 "posterior spinal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007146 ! posterior spinal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18377 ! -property_value: IAO:0000589 "lumen of midgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0007147 ! lumen of midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18396 ! -property_value: IAO:0000589 "lumen of hindgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0007148 ! lumen of hindgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18623 ! -property_value: IAO:0000589 "inferior thyroid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007149 ! inferior thyroid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18624 ! -property_value: IAO:0000589 "superior thyroid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007150 ! superior thyroid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18628 ! -property_value: IAO:0000589 "mitral valve leaflet (embryonic mouse)" xsd:string -intersection_of: UBERON:0007151 ! mitral valve leaflet -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18635 ! -property_value: IAO:0000589 "inferior sagittal sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007152 ! inferior sagittal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18752 ! -property_value: IAO:0000589 "superior epigastric artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007153 ! superior epigastric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18760 ! -property_value: IAO:0000589 "inferior epigastric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007154 ! inferior epigastric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18761 ! -property_value: IAO:0000589 "superior epigastric vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007155 ! superior epigastric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18763 ! -property_value: IAO:0000589 "inferior thyroid vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007156 ! inferior thyroid vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18764 ! -property_value: IAO:0000589 "superior thyroid vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007157 ! superior thyroid vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18836 ! -property_value: IAO:0000589 "lumen of anal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0007158 ! lumen of anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18945 ! -property_value: IAO:0000589 "lumen of colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0007159 ! lumen of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19234 ! -property_value: IAO:0000589 "inferior petrosal sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007160 ! inferior petrosal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19237 ! -property_value: IAO:0000589 "medial arcuate ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0007161 ! medial arcuate ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19238 ! -property_value: IAO:0000589 "lateral arcuate ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0007162 ! lateral arcuate ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19276 ! -property_value: IAO:0000589 "superior nasal meatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007163 ! superior nasal meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19316 ! -property_value: IAO:0000589 "distal radio-ulnar joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0007164 ! distal radio-ulnar joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19317 ! -property_value: IAO:0000589 "proximal radio-ulnar joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0007165 ! proximal radio-ulnar joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25047 ! -property_value: IAO:0000589 "left dome of diaphragm (embryonic mouse)" xsd:string -intersection_of: UBERON:0007166 ! left dome of diaphragm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25048 ! -property_value: IAO:0000589 "right dome of diaphragm (embryonic mouse)" xsd:string -intersection_of: UBERON:0007167 ! right dome of diaphragm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25054 ! -property_value: IAO:0000589 "long head of biceps brachii (embryonic mouse)" xsd:string -intersection_of: UBERON:0007168 ! long head of biceps brachii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25055 ! -property_value: IAO:0000589 "short head of biceps brachii (embryonic mouse)" xsd:string -intersection_of: UBERON:0007169 ! short head of biceps brachii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25113 ! -property_value: IAO:0000589 "squamous part of occipital bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0007170 ! squamous part of occipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25124 ! -property_value: IAO:0000589 "border of scapula (embryonic mouse)" xsd:string -intersection_of: UBERON:0007171 ! border of scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25125 ! -property_value: IAO:0000589 "angle of scapula (embryonic mouse)" xsd:string -intersection_of: UBERON:0007172 ! angle of scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25126 ! -property_value: IAO:0000589 "lateral border of scapula (embryonic mouse)" xsd:string -intersection_of: UBERON:0007173 ! lateral border of scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25127 ! -property_value: IAO:0000589 "medial border of scapula (embryonic mouse)" xsd:string -intersection_of: UBERON:0007174 ! medial border of scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25128 ! -property_value: IAO:0000589 "inferior angle of scapula (embryonic mouse)" xsd:string -intersection_of: UBERON:0007175 ! inferior angle of scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25129 ! -property_value: IAO:0000589 "superior angle of scapula (embryonic mouse)" xsd:string -intersection_of: UBERON:0007176 ! superior angle of scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27395 ! -property_value: IAO:0000589 "lamina propria of mucosa of colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0007177 ! lamina propria of mucosa of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27399 ! -property_value: IAO:0000589 "muscularis mucosae of colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0007178 ! muscularis mucosae of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28806 ! -property_value: IAO:0000589 "basal cell layer of urothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0007179 ! basal cell layer of urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29874 ! -property_value: IAO:0000589 "atretic follicle of ovary (embryonic mouse)" xsd:string -intersection_of: UBERON:0007180 ! atretic follicle of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29903 ! -property_value: IAO:0000589 "serosa of infundibulum of uterine tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0007181 ! serosa of infundibulum of uterine tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31264 ! -property_value: IAO:0000589 "muscle layer of infundibulum of uterine tube (embryonic mouse)" xsd:string -intersection_of: UBERON:0007182 ! muscle layer of infundibulum of uterine tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16284 ! -property_value: IAO:0000589 "pericardio-peritoneal canal mesothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0007185 ! pericardio-peritoneal canal mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16589 ! -property_value: IAO:0000589 "pericardial visceral mesothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16588 ! -property_value: IAO:0000589 "pericardial parietal mesothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16133 ! -property_value: IAO:0000589 "mesothelium of serous pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19180 ! -property_value: IAO:0000589 "vesicular gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0007194 ! vesicular gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16169 ! -property_value: IAO:0000589 "mesenchyme derived from head neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16271 ! -property_value: IAO:0000589 "mesenchyme derived from head neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16182 ! -property_value: IAO:0000589 "mesenchyme derived from trunk neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35620 ! -property_value: IAO:0000589 "osseus cochlea (embryonic mouse)" xsd:string -intersection_of: UBERON:0007223 ! osseus cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35545 ! -property_value: IAO:0000589 "medial entorhinal cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0007224 ! medial entorhinal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35477 ! -property_value: IAO:0000589 "lateral entorhinal cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0007225 ! lateral entorhinal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35923 ! -property_value: IAO:0000589 "vestibular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007228 ! vestibular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36643 ! -property_value: IAO:0000589 "lateral vestibular nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007230 ! lateral vestibular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16382 ! -property_value: IAO:0000589 "1st arch mandibular component (embryonic mouse)" xsd:string -intersection_of: UBERON:0007237 ! 1st arch mandibular component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16388 ! -property_value: IAO:0000589 "1st arch maxillary component (embryonic mouse)" xsd:string -intersection_of: UBERON:0007238 ! 1st arch maxillary component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36294 ! -property_value: IAO:0000589 "tunica media of artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007239 ! tunica media of artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36295 ! -property_value: IAO:0000589 "tunica adventitia of artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007240 ! tunica adventitia of artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36310 ! -property_value: IAO:0000589 "tunica adventitia of vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007241 ! tunica adventitia of vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36308 ! -property_value: IAO:0000589 "tunica intima of vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007242 ! tunica intima of vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36309 ! -property_value: IAO:0000589 "tunica media of vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007243 ! tunica media of vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19241 ! -property_value: IAO:0000589 "inferior olivary nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007244 ! inferior olivary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19415 ! -property_value: IAO:0000589 "intervertebral disk of cervical vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007252 ! intervertebral disk of cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19489 ! -property_value: IAO:0000589 "intervertebral disk of thoracic vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007254 ! intervertebral disk of thoracic vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19468 ! -property_value: IAO:0000589 "intervertebral disk of lumbar vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007255 ! intervertebral disk of lumbar vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19575 ! -property_value: IAO:0000589 "intervertebral disk of sacral vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007257 ! intervertebral disk of sacral vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19422 ! -property_value: IAO:0000589 "intervertebral disk of third cervical vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007260 ! intervertebral disk of third cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19425 ! -property_value: IAO:0000589 "intervertebral disk of fourth cervical vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19428 ! -property_value: IAO:0000589 "intervertebral disk of fifth cervical vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19460 ! -property_value: IAO:0000589 "intervertebral disk of sixth cervical vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19463 ! -property_value: IAO:0000589 "intervertebral disk of seventh cervical vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19419 ! -property_value: IAO:0000589 "intervertebral disk of axis (embryonic mouse)" xsd:string -intersection_of: UBERON:0007265 ! intervertebral disk of axis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19416 ! -property_value: IAO:0000589 "intervertebral disk of atlas (embryonic mouse)" xsd:string -intersection_of: UBERON:0007266 ! intervertebral disk of atlas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36553 ! -property_value: IAO:0000589 "sputum (embryonic mouse)" xsd:string -intersection_of: UBERON:0007311 ! sputum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37111 ! {source="MA:th"} -property_value: IAO:0000589 "pudendal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007312 ! pudendal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37119 ! {source="MA:th"} -property_value: IAO:0000589 "superior external pudendal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007314 ! superior external pudendal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37186 ! {source="MA:th"} -property_value: IAO:0000589 "saphenous vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007318 ! saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37172 ! {source="MA:th"} -property_value: IAO:0000589 "medial saphenous vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007319 ! medial saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37162 ! {source="MA:th"} -property_value: IAO:0000589 "lateral saphenous vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007321 ! lateral saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37710 ! {source="MA:th"} -property_value: IAO:0000589 "pancreatic lobule (embryonic mouse)" xsd:string -intersection_of: UBERON:0007324 ! pancreatic lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32952 ! -property_value: IAO:0000589 "pancreatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0007329 ! pancreatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18228 ! -property_value: IAO:0000589 "incus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0007374 ! incus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35721 ! -property_value: IAO:0000589 "midbrain raphe nuclei (embryonic mouse)" xsd:string -intersection_of: UBERON:0007412 ! midbrain raphe nuclei -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36642 ! -property_value: IAO:0000589 "nucleus of pontine reticular formation (embryonic mouse)" xsd:string -intersection_of: UBERON:0007413 ! nucleus of pontine reticular formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35213 ! -property_value: IAO:0000589 "cerebellar peduncle (embryonic mouse)" xsd:string -intersection_of: UBERON:0007416 ! cerebellar peduncle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36530 ! -property_value: IAO:0000589 "tibial artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0007610 ! tibial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36191 ! -property_value: IAO:0000589 "extensor digitorum communis (embryonic mouse)" xsd:string -intersection_of: UBERON:0007612 ! extensor digitorum communis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36192 ! -property_value: IAO:0000589 "extensor digitorum lateralis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0007613 ! extensor digitorum lateralis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29836 ! -property_value: IAO:0000589 "prostate gland ventral lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0007615 ! prostate gland ventral lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19021 ! -property_value: IAO:0000589 "synovial cavity of hip joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0007618 ! synovial cavity of hip joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37666 ! {source="MA:th"} -property_value: IAO:0000589 "magnocellular nucleus of stria terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0007627 ! magnocellular nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35485 ! -property_value: IAO:0000589 "lateral septal complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0007628 ! lateral septal complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35552 ! -property_value: IAO:0000589 "medial septal complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0007629 ! medial septal complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35768 ! -property_value: IAO:0000589 "septohippocampal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007630 ! septohippocampal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35108 ! -property_value: IAO:0000589 "accessory olfactory bulb glomerular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0007631 ! accessory olfactory bulb glomerular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37436 ! {source="MA:th"} -property_value: IAO:0000589 "Barrington's nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007632 ! Barrington's nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35600 ! -property_value: IAO:0000589 "nucleus of trapezoid body (embryonic mouse)" xsd:string -intersection_of: UBERON:0007633 ! nucleus of trapezoid body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35657 ! -property_value: IAO:0000589 "parabrachial nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007634 ! parabrachial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35411 ! -property_value: IAO:0000589 "hippocampus stratum lucidum (embryonic mouse)" xsd:string -intersection_of: UBERON:0007637 ! hippocampus stratum lucidum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28506 ! -property_value: IAO:0000589 "capillary loop nephron (embryonic mouse)" xsd:string -intersection_of: UBERON:0007653 ! capillary loop nephron -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28485 ! -property_value: IAO:0000589 "maturing nephron (embryonic mouse)" xsd:string -intersection_of: UBERON:0007654 ! maturing nephron -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17257 ! -property_value: IAO:0000589 "lateral recess of fourth ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19322 ! -property_value: IAO:0000589 "anular ligament of radius (embryonic mouse)" xsd:string -intersection_of: UBERON:0007657 ! anular ligament of radius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26056 ! -property_value: IAO:0000589 "intersomitic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0007679 ! intersomitic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16311 ! -property_value: IAO:0000589 "facial neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0007681 ! facial neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16409 ! -property_value: IAO:0000589 "lateral mesenchyme derived from mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0007683 ! lateral mesenchyme derived from mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32754 ! -property_value: IAO:0000589 "early pharyngeal endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0007690 ! early pharyngeal endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35859 ! -property_value: IAO:0000589 "nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007692 ! nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25159 ! -property_value: IAO:0000589 "sixth cervical dorsal root ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0007711 ! sixth cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25177 ! -property_value: IAO:0000589 "fourth thoracic spinal ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0007712 ! fourth thoracic spinal ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25173 ! -property_value: IAO:0000589 "fourth sacral spinal ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0007713 ! fourth sacral spinal ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36337 ! -property_value: IAO:0000589 "interphalangeal joint of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0007721 ! interphalangeal joint of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36336 ! -property_value: IAO:0000589 "interphalangeal joint of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007722 ! interphalangeal joint of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25058 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007723 ! interphalangeal joint of manual digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26430 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007724 ! interphalangeal joint of pedal digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26448 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007725 ! interphalangeal joint of pedal digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26454 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007726 ! interphalangeal joint of pedal digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26466 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007727 ! interphalangeal joint of pedal digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26478 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007728 ! interphalangeal joint of pedal digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25061 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007729 ! interphalangeal joint of manual digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25064 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007730 ! interphalangeal joint of manual digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25067 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007731 ! interphalangeal joint of manual digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25070 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007732 ! interphalangeal joint of manual digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25057 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007735 ! metacarpophalangeal joint of manual digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25060 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007738 ! metacarpophalangeal joint of manual digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25063 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007741 ! metacarpophalangeal joint of manual digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25066 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007744 ! metacarpophalangeal joint of manual digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25069 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007747 ! metacarpophalangeal joint of manual digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26436 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007750 ! metatarsophalangeal joint of pedal digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26442 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007753 ! metatarsophalangeal joint of pedal digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26460 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007756 ! metatarsophalangeal joint of pedal digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26472 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007759 ! metatarsophalangeal joint of pedal digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26484 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0007762 ! metatarsophalangeal joint of pedal digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35550 ! -property_value: IAO:0000589 "medial preoptic region (embryonic mouse)" xsd:string -intersection_of: UBERON:0007769 ! medial preoptic region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29743 ! -property_value: IAO:0000589 "scrotal sweat gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0007773 ! scrotal sweat gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35905 ! -property_value: IAO:0000589 "vascular system (embryonic mouse)" xsd:string -intersection_of: UBERON:0007798 ! vascular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16748 ! -property_value: IAO:0000589 "post-anal tail (embryonic mouse)" xsd:string -intersection_of: UBERON:0007812 ! post-anal tail -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37854 ! {source="MA:th"} -property_value: IAO:0000589 "appendage girdle region (embryonic mouse)" xsd:string -intersection_of: UBERON:0007823 ! appendage girdle region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35735 ! -property_value: IAO:0000589 "reticular membrane of spiral organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0007825 ! reticular membrane of spiral organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37831 ! {source="MA:th"} -property_value: IAO:0000589 "external nose (embryonic mouse)" xsd:string -intersection_of: UBERON:0007827 ! external nose -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35379 ! -property_value: IAO:0000589 "girdle bone/zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0007828 ! girdle bone/zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35669 ! -property_value: IAO:0000589 "pectoral girdle bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0007829 ! pectoral girdle bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18028 ! -property_value: IAO:0000589 "pelvic girdle bone/zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0007830 ! pelvic girdle bone/zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18028 ! -property_value: IAO:0000589 "pelvic girdle skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0007832 ! pelvic girdle skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32730 ! -property_value: IAO:0000589 "cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0007844 ! cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37245 ! {source="MA:th"} -property_value: IAO:0000589 "bone of craniocervical region (embryonic mouse)" xsd:string -intersection_of: UBERON:0007914 ! bone of craniocervical region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36171 ! -property_value: IAO:0000589 "falciform carpal bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0007959 ! falciform carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36166 ! -property_value: IAO:0000589 "scapholunate (embryonic mouse)" xsd:string -intersection_of: UBERON:0007960 ! scapholunate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37728 ! {source="MA:th"} -property_value: IAO:0000589 "proximal sesamoid bone of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0007990 ! proximal sesamoid bone of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37729 ! {source="MA:th"} -property_value: IAO:0000589 "proximal sesamoid bone of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0007991 ! proximal sesamoid bone of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36621 ! -property_value: IAO:0000589 "ulnar sesamoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0007993 ! ulnar sesamoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37620 ! {source="MA:th"} -property_value: IAO:0000589 "joint articular surface (embryonic mouse)" xsd:string -intersection_of: UBERON:0008124 ! joint articular surface -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35415 ! -property_value: IAO:0000589 "hypertrophic cartilage zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0008187 ! hypertrophic cartilage zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25053 ! -property_value: IAO:0000589 "tendon of biceps brachii (embryonic mouse)" xsd:string -intersection_of: UBERON:0008188 ! tendon of biceps brachii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17748 ! -property_value: IAO:0000589 "muscle of pectoral girdle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008196 ! muscle of pectoral girdle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35583 ! -property_value: IAO:0000589 "nail plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0008198 ! nail plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37827 ! {source="MA:th"} -property_value: IAO:0000589 "chin (embryonic mouse)" xsd:string -intersection_of: UBERON:0008199 ! chin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37869 ! {source="MA:th"} -property_value: IAO:0000589 "forehead (embryonic mouse)" xsd:string -intersection_of: UBERON:0008200 ! forehead -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37308 ! {source="MA:th"} -property_value: IAO:0000589 "bone of hip region (embryonic mouse)" xsd:string -intersection_of: UBERON:0008202 ! bone of hip region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37235 ! {source="MA:th"} -property_value: IAO:0000589 "pelvic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0008203 ! pelvic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37259 ! {source="MA:th"} -property_value: IAO:0000589 "craniocervical region musculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0008229 ! craniocervical region musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35867 ! -property_value: IAO:0000589 "tibialis (embryonic mouse)" xsd:string -intersection_of: UBERON:0008230 ! tibialis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37234 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal thoracic segment of trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0008231 ! dorsal thoracic segment of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37262 ! {source="MA:th"} -property_value: IAO:0000589 "lower back muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008242 ! lower back muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37261 ! {source="MA:th"} -property_value: IAO:0000589 "upper back muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008243 ! upper back muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35679 ! -property_value: IAO:0000589 "periodontal ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0008266 ! periodontal ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37832 ! {source="MA:th"} -property_value: IAO:0000589 "columella nasi (embryonic mouse)" xsd:string -intersection_of: UBERON:0008341 ! columella nasi -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35423 ! -property_value: IAO:0000589 "ileal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0008345 ! ileal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19078 ! -property_value: IAO:0000589 "duodenal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0008346 ! duodenal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18541 ! -property_value: IAO:0000589 "mammary ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0008425 ! mammary ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37762 ! {source="MA:th"} -property_value: IAO:0000589 "intertarsal joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0008447 ! intertarsal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36157 ! -property_value: IAO:0000589 "psoas muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008450 ! psoas muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31250 ! -property_value: IAO:0000589 "cremaster muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008488 ! cremaster muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36230 ! -property_value: IAO:0000589 "gluteus minimus (embryonic mouse)" xsd:string -intersection_of: UBERON:0008521 ! gluteus minimus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36239 ! -property_value: IAO:0000589 "piriformis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008529 ! piriformis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36241 ! -property_value: IAO:0000589 "quadratus femoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0008537 ! quadratus femoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18281 ! -property_value: IAO:0000589 "transverse muscle of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0008583 ! transverse muscle of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18282 ! -property_value: IAO:0000589 "vertical muscle of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0008584 ! vertical muscle of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37842 ! {source="MA:th"} -property_value: IAO:0000589 "depressor anguli oris muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008597 ! depressor anguli oris muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17748 ! -property_value: IAO:0000589 "pectoral girdle and thoracic body wall skeletal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008713 ! pectoral girdle and thoracic body wall skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37890 ! {source="MA:th"} -property_value: IAO:0000589 "proximal epiphysis of fibula (embryonic mouse)" xsd:string -intersection_of: UBERON:0008775 ! proximal epiphysis of fibula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16051 ! -property_value: IAO:0000589 "inner cell mass derived hypoblast (embryonic mouse)" xsd:string -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37852 ! {source="MA:th"} -property_value: IAO:0000589 "hypaxial musculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0008777 ! hypaxial musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37851 ! {source="MA:th"} -property_value: IAO:0000589 "epaxial musculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0008778 ! epaxial musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16050 ! -property_value: IAO:0000589 "inner cell mass derived epiblast (embryonic mouse)" xsd:string -intersection_of: UBERON:0008780 ! inner cell mass derived epiblast -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37521 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal venous arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0008783 ! dorsal venous arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35638 ! -property_value: IAO:0000589 "transverse palatine fold (embryonic mouse)" xsd:string -intersection_of: UBERON:0008799 ! transverse palatine fold -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16053 ! -property_value: IAO:0000589 "parietal endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0008800 ! parietal endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37452 ! {source="MA:th"} -property_value: IAO:0000589 "cheek pouch (embryonic mouse)" xsd:string -intersection_of: UBERON:0008802 ! cheek pouch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29794 ! -property_value: IAO:0000589 "coagulating gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0008807 ! coagulating gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35710 ! -property_value: IAO:0000589 "prostate gland dorsolateral lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0008808 ! prostate gland dorsolateral lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36525 ! -property_value: IAO:0000589 "duct of epididymis (embryonic mouse)" xsd:string -intersection_of: UBERON:0008824 ! duct of epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36551 ! -property_value: IAO:0000589 "pulmonary surfactant (embryonic mouse)" xsd:string -intersection_of: UBERON:0008826 ! pulmonary surfactant -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17627 ! -property_value: IAO:0000589 "murine forestomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0008827 ! murine forestomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36616 ! -property_value: IAO:0000589 "presphenoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0008828 ! presphenoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35216 ! -property_value: IAO:0000589 "cerebellum external granule cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0008829 ! cerebellum external granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35219 ! -property_value: IAO:0000589 "cerebellum internal granule cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0008830 ! cerebellum internal granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35438 ! -property_value: IAO:0000589 "inner spiral sulcus (embryonic mouse)" xsd:string -intersection_of: UBERON:0008831 ! inner spiral sulcus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35332 ! -property_value: IAO:0000589 "outer spiral sulcus (embryonic mouse)" xsd:string -intersection_of: UBERON:0008832 ! outer spiral sulcus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18489 ! -property_value: IAO:0000589 "palmar pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0008839 ! palmar pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18507 ! -property_value: IAO:0000589 "plantar pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0008840 ! plantar pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19089 ! -property_value: IAO:0000589 "gubernaculum testis (embryonic mouse)" xsd:string -intersection_of: UBERON:0008843 ! gubernaculum testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30068 ! -property_value: IAO:0000589 "cranial suspensory ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0008848 ! cranial suspensory ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16080 ! -property_value: IAO:0000589 "ectoplacental cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0008851 ! ectoplacental cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37948 ! {source="MA:th"} -property_value: IAO:0000589 "root of molar tooth (embryonic mouse)" xsd:string -intersection_of: UBERON:0008854 ! root of molar tooth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37944 ! {source="MA:th"} -property_value: IAO:0000589 "pyloric canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0008858 ! pyloric canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37459 ! {source="MA:th"} -property_value: IAO:0000589 "cardiac gastric gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0008859 ! cardiac gastric gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27211 ! -property_value: IAO:0000589 "pyloric gastric gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0008861 ! pyloric gastric gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37965 ! {source="MA:th"} -property_value: IAO:0000589 "stomach smooth muscle inner oblique layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0008862 ! stomach smooth muscle inner oblique layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37966 ! {source="MA:th"} -property_value: IAO:0000589 "stomach smooth muscle outer longitudinal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0008863 ! stomach smooth muscle outer longitudinal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37942 ! {source="MA:th"} -property_value: IAO:0000589 "pulmonary alveolar parenchyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0008870 ! pulmonary alveolar parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37391 ! {source="MA:th"} -property_value: IAO:0000589 "alveolar pore (embryonic mouse)" xsd:string -intersection_of: UBERON:0008873 ! alveolar pore -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37941 ! {source="MA:th"} -property_value: IAO:0000589 "pulmonary acinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0008874 ! pulmonary acinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18188 ! -property_value: IAO:0000589 "hypodermis skeletal muscle layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0008876 ! hypodermis skeletal muscle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37866 ! {source="MA:th"} -property_value: IAO:0000589 "epidermal-dermal junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0008877 ! epidermal-dermal junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37434 ! {source="MA:th"} -property_value: IAO:0000589 "ligament of pinna (embryonic mouse)" xsd:string -intersection_of: UBERON:0008879 ! ligament of pinna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37955 ! {source="MA:th"} -property_value: IAO:0000589 "spinal cord commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0008882 ! spinal cord commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37923 ! {source="MA:th"} -property_value: IAO:0000589 "osteoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0008883 ! osteoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35706 ! -property_value: IAO:0000589 "primary somatosensory cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0008933 ! primary somatosensory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35756 ! -property_value: IAO:0000589 "secondary somatosensory cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0008934 ! secondary somatosensory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16052 ! -property_value: IAO:0000589 "extraembryonic endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0008945 ! extraembryonic endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35522 ! -property_value: IAO:0000589 "lung parenchyma (embryonic mouse)" xsd:string -intersection_of: UBERON:0008946 ! lung parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37433 ! {source="MA:th"} -property_value: IAO:0000589 "auditory bulla (embryonic mouse)" xsd:string -intersection_of: UBERON:0008959 ! auditory bulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35275 ! -property_value: IAO:0000589 "dental follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0008969 ! dental follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35141 ! -property_value: IAO:0000589 "apocrine gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0008974 ! apocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37395 ! {source="MA:th"} -property_value: IAO:0000589 "anal sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0008978 ! anal sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35272 ! -property_value: IAO:0000589 "nucleus of cerebellar nuclear complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0008995 ! nucleus of cerebellar nuclear complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35186 ! -property_value: IAO:0000589 "vasculature of brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0008998 ! vasculature of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37806 ! {source="MA:th"} -property_value: IAO:0000589 "white fibrocartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0009013 ! white fibrocartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37281 ! {source="MA:th"} -property_value: IAO:0000589 "lower back skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0009014 ! lower back skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37280 ! {source="MA:th"} -property_value: IAO:0000589 "upper back skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0009015 ! upper back skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35241 ! -property_value: IAO:0000589 "ciliary stroma (embryonic mouse)" xsd:string -intersection_of: UBERON:0009016 ! ciliary stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37374 ! {source="MA:th"} -property_value: IAO:0000589 "left uterine horn (embryonic mouse)" xsd:string -intersection_of: UBERON:0009020 ! left uterine horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37375 ! {source="MA:th"} -property_value: IAO:0000589 "right uterine horn (embryonic mouse)" xsd:string -intersection_of: UBERON:0009022 ! right uterine horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37082 ! {source="MA:th"} -property_value: IAO:0000589 "gastroepiploic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009025 ! gastroepiploic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37084 ! {source="MA:th"} -property_value: IAO:0000589 "iliac circumflex artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009026 ! iliac circumflex artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37131 ! {source="MA:th"} -property_value: IAO:0000589 "vesical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009027 ! vesical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37184 ! {source="MA:th"} -property_value: IAO:0000589 "pudendal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0009029 ! pudendal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37165 ! {source="MA:th"} -property_value: IAO:0000589 "left pulmonary vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0009030 ! left pulmonary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37379 ! {source="MA:th"} -property_value: IAO:0000589 "right pulmonary vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0009032 ! right pulmonary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37489 ! {source="MA:th"} -property_value: IAO:0000589 "renal straight tubule (embryonic mouse)" xsd:string -intersection_of: UBERON:0009035 ! renal straight tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35528 ! -property_value: IAO:0000589 "lymph node germinal center (embryonic mouse)" xsd:string -intersection_of: UBERON:0009039 ! lymph node germinal center -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37155 ! {source="MA:th"} -property_value: IAO:0000589 "inferior external pudendal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0009046 ! inferior external pudendal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37192 ! {source="MA:th"} -property_value: IAO:0000589 "superior external pudendal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0009047 ! superior external pudendal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35787 ! -property_value: IAO:0000589 "nucleus of solitary tract (embryonic mouse)" xsd:string -intersection_of: UBERON:0009050 ! nucleus of solitary tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36251 ! -property_value: IAO:0000589 "peroneus (embryonic mouse)" xsd:string -intersection_of: UBERON:0009132 ! peroneus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17709 ! -property_value: IAO:0000589 "pleuroperitoneal membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0009133 ! pleuroperitoneal membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16097 ! -property_value: IAO:0000589 "entire embryonic mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009142 ! entire embryonic mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16549 ! -property_value: IAO:0000589 "pharyngeal region of foregut (embryonic mouse)" xsd:string -intersection_of: UBERON:0009145 ! pharyngeal region of foregut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17012 ! -property_value: IAO:0000589 "foramen primum (embryonic mouse)" xsd:string -intersection_of: UBERON:0009149 ! foramen primum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18015 ! -property_value: IAO:0000589 "sphenoid bone pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0009191 ! sphenoid bone pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18013 ! -property_value: IAO:0000589 "basisphenoid pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0009192 ! basisphenoid pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18338 ! -property_value: IAO:0000589 "basisphenoid cartilage condenstion (embryonic mouse)" xsd:string -intersection_of: UBERON:0009194 ! basisphenoid cartilage condenstion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18012 ! -property_value: IAO:0000589 "basioccipital pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0009197 ! basioccipital pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32728 ! -property_value: IAO:0000589 "limb epidermis (embryonic mouse)" xsd:string -intersection_of: UBERON:0009200 ! limb epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16577 ! -property_value: IAO:0000589 "nephric duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0009201 ! nephric duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16810 ! -property_value: IAO:0000589 "medial nasal process mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009204 ! medial nasal process mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16807 ! -property_value: IAO:0000589 "lateral nasal process mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009205 ! lateral nasal process mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16806 ! -property_value: IAO:0000589 "lateral nasal process surface ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0009206 ! lateral nasal process surface ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32749 ! -property_value: IAO:0000589 "pharyngeal membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0009210 ! pharyngeal membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16121 ! -property_value: IAO:0000589 "pharyngeal membrane of 1st arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16992 ! -property_value: IAO:0000589 "pharyngeal membrane of 1st arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17281 ! -property_value: IAO:0000589 "pharyngeal membrane of 1st arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0009213 ! pharyngeal membrane of 1st arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16273 ! -property_value: IAO:0000589 "pharyngeal membrane of 2nd arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0009215 ! pharyngeal membrane of 2nd arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16583 ! -property_value: IAO:0000589 "pharyngeal membrane of 3rd arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0009216 ! pharyngeal membrane of 3rd arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16763 ! -property_value: IAO:0000589 "pharyngeal membrane of 4th arch (embryonic mouse)" xsd:string -intersection_of: UBERON:0009217 ! pharyngeal membrane of 4th arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16680 ! -property_value: IAO:0000589 "embryonic nasal process (embryonic mouse)" xsd:string -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16802 ! -property_value: IAO:0000589 "embryonic frontal process (embryonic mouse)" xsd:string -intersection_of: UBERON:0009293 ! embryonic frontal process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16196 ! -property_value: IAO:0000589 "associated mesenchyme of otic placode (embryonic mouse)" xsd:string -intersection_of: UBERON:0009477 ! associated mesenchyme of otic placode -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16256 ! -property_value: IAO:0000589 "associated mesenchyme of midgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0009478 ! associated mesenchyme of midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16260 ! -property_value: IAO:0000589 "ectoderm of buccopharyngeal membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0009479 ! ectoderm of buccopharyngeal membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16261 ! -property_value: IAO:0000589 "endoderm of buccopharyngeal membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0009480 ! endoderm of buccopharyngeal membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16283 ! -property_value: IAO:0000589 "cavity of pericardio-peritoneal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0009481 ! cavity of pericardio-peritoneal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16364 ! -property_value: IAO:0000589 "associated mesenchyme of foregut-midgut junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0009482 ! associated mesenchyme of foregut-midgut junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16365 ! -property_value: IAO:0000589 "mesentery of foregut-midgut junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0009483 ! mesentery of foregut-midgut junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16366 ! -property_value: IAO:0000589 "dorsal mesentery of mesentery of foregut-midgut junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0009484 ! dorsal mesentery of mesentery of foregut-midgut junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32755 ! -property_value: IAO:0000589 "pharyngeal arch mesenchymal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0009494 ! pharyngeal arch mesenchymal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16562 ! -property_value: IAO:0000589 "extrahepatic part of biliary bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0009495 ! extrahepatic part of biliary bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16563 ! -property_value: IAO:0000589 "intrahepatic part of biliary bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0009496 ! intrahepatic part of biliary bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16564 ! -property_value: IAO:0000589 "epithelium of foregut-midgut junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0009497 ! epithelium of foregut-midgut junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16590 ! -property_value: IAO:0000589 "parietal of mesothelium of pericardio-peritoneal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0009499 ! parietal of mesothelium of pericardio-peritoneal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16670 ! -property_value: IAO:0000589 "periotic mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009500 ! periotic mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16683 ! -property_value: IAO:0000589 "mesenchyme of fronto-nasal process (embryonic mouse)" xsd:string -intersection_of: UBERON:0009501 ! mesenchyme of fronto-nasal process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16714 ! -property_value: IAO:0000589 "ventral mesentery of mesentery of foregut-midgut junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0009502 ! ventral mesentery of mesentery of foregut-midgut junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16716 ! -property_value: IAO:0000589 "mesenchyme of hindgut (embryonic mouse)" xsd:string -intersection_of: UBERON:0009503 ! mesenchyme of hindgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16850 ! -property_value: IAO:0000589 "mesenchyme of main bronchus (embryonic mouse)" xsd:string -intersection_of: UBERON:0009504 ! mesenchyme of main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16854 ! -property_value: IAO:0000589 "mesenchyme of trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0009505 ! mesenchyme of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17001 ! -property_value: IAO:0000589 "mesenchyme of middle ear (embryonic mouse)" xsd:string -intersection_of: UBERON:0009506 ! mesenchyme of middle ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17177 ! -property_value: IAO:0000589 "anal membrane endodermal component (embryonic mouse)" xsd:string -intersection_of: UBERON:0009521 ! anal membrane endodermal component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17190 ! -property_value: IAO:0000589 "lateral lingual swelling epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0009522 ! lateral lingual swelling epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17248 ! -property_value: IAO:0000589 "mesenchyme of handplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0009523 ! mesenchyme of handplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17457 ! -property_value: IAO:0000589 "mesenchyme of handplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0009523 ! mesenchyme of handplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17361 ! -property_value: IAO:0000589 "maxillary process mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009526 ! maxillary process mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17660 ! -property_value: IAO:0000589 "vascular element of left lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0009536 ! vascular element of left lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17668 ! -property_value: IAO:0000589 "vascular element of right lung (embryonic mouse)" xsd:string -intersection_of: UBERON:0009537 ! vascular element of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17754 ! -property_value: IAO:0000589 "mesenchyme of sublingual gland primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0009538 ! mesenchyme of sublingual gland primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17757 ! -property_value: IAO:0000589 "mesenchyme of submandibular gland primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0009539 ! mesenchyme of submandibular gland primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18309 ! -property_value: IAO:0000589 "hepatic sinusoid of left of lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0009548 ! hepatic sinusoid of left of lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18316 ! -property_value: IAO:0000589 "hepatic sinusoid of right of lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0009549 ! hepatic sinusoid of right of lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18403 ! -property_value: IAO:0000589 "endoderm of foregut-midgut junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0009550 ! endoderm of foregut-midgut junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35349 ! -property_value: IAO:0000589 "nail of manual digit (embryonic mouse)" xsd:string -intersection_of: UBERON:0009565 ! nail of manual digit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36457 ! -property_value: IAO:0000589 "nail of pedal digit (embryonic mouse)" xsd:string -intersection_of: UBERON:0009567 ! nail of pedal digit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17584 ! -property_value: IAO:0000589 "spinal cord sulcus limitans (embryonic mouse)" xsd:string -intersection_of: UBERON:0009570 ! spinal cord sulcus limitans -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25042 ! -property_value: IAO:0000589 "lumen of central canal of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0009572 ! lumen of central canal of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17561 ! -property_value: IAO:0000589 "medulla oblongata sulcus limitans (embryonic mouse)" xsd:string -intersection_of: UBERON:0009576 ! medulla oblongata sulcus limitans -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17567 ! -property_value: IAO:0000589 "metencephalon sulcus limitans (embryonic mouse)" xsd:string -intersection_of: UBERON:0009577 ! metencephalon sulcus limitans -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17088 ! -property_value: IAO:0000589 "myelencephalon basal plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0009579 ! myelencephalon basal plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16906 ! -property_value: IAO:0000589 "diencephalon mantle layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0009580 ! diencephalon mantle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16977 ! -property_value: IAO:0000589 "midbrain mantle layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0009581 ! midbrain mantle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17579 ! -property_value: IAO:0000589 "spinal cord lateral wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17580 ! -property_value: IAO:0000589 "spinal cord mantle layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0009583 ! spinal cord mantle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16385 ! -property_value: IAO:0000589 "1st arch mandibular mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009584 ! 1st arch mandibular mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32609 ! -property_value: IAO:0000589 "interdigital region mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009585 ! interdigital region mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17447 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between manual digits 1 and 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0009586 ! mesenchyme of interdigital region between manual digits 1 and 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17450 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between manual digits 2 and 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0009587 ! mesenchyme of interdigital region between manual digits 2 and 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17453 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between manual digits 3 and 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0009588 ! mesenchyme of interdigital region between manual digits 3 and 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17456 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between manual digits 4 and 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0009589 ! mesenchyme of interdigital region between manual digits 4 and 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17478 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between pedal digits 1 and 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0009590 ! mesenchyme of interdigital region between pedal digits 1 and 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17481 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between pedal digits 2 and 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0009591 ! mesenchyme of interdigital region between pedal digits 2 and 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17484 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between pedal digits 3 and 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0009592 ! mesenchyme of interdigital region between pedal digits 3 and 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17487 ! -property_value: IAO:0000589 "mesenchyme of interdigital region between pedal digits 4 and 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0009593 ! mesenchyme of interdigital region between pedal digits 4 and 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32653 ! -property_value: IAO:0000589 "mesenchyme of interdigital region of manus (embryonic mouse)" xsd:string -intersection_of: UBERON:0009600 ! mesenchyme of interdigital region of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32955 ! -property_value: IAO:0000589 "mesenchyme of interdigital region of pes (embryonic mouse)" xsd:string -intersection_of: UBERON:0009601 ! mesenchyme of interdigital region of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16730 ! -property_value: IAO:0000589 "left lung associated mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17654 ! -property_value: IAO:0000589 "left lung associated mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009602 ! left lung associated mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17662 ! -property_value: IAO:0000589 "right lung associated mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009603 ! right lung associated mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16140 ! -property_value: IAO:0000589 "presumptive midbrain (embryonic mouse)" xsd:string -intersection_of: UBERON:0009616 ! presumptive midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16171 ! -property_value: IAO:0000589 "head paraxial mesoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0009617 ! head paraxial mesoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16860 ! -property_value: IAO:0000589 "tail somite (embryonic mouse)" xsd:string -intersection_of: UBERON:0009621 ! tail somite -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35878 ! -property_value: IAO:0000589 "trachea non-cartilage connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0009644 ! trachea non-cartilage connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35123 ! -property_value: IAO:0000589 "ampullary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0009645 ! ampullary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37655 ! {source="MA:th"} -property_value: IAO:0000589 "lumbar sympathetic nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0009646 ! lumbar sympathetic nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19064 ! -property_value: IAO:0000589 "tympanic membrane epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0009647 ! tympanic membrane epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37533 ! {source="MA:th"} -property_value: IAO:0000589 "eyelid subcutaneous connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0009648 ! eyelid subcutaneous connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37486 ! {source="MA:th"} -property_value: IAO:0000589 "cortical arch of kidney (embryonic mouse)" xsd:string -intersection_of: UBERON:0009650 ! cortical arch of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37490 ! {source="MA:th"} -property_value: IAO:0000589 "nephron tubule basement membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0009651 ! nephron tubule basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37809 ! {source="MA:th"} -property_value: IAO:0000589 "bronchus basement membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0009652 ! bronchus basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37552 ! {source="MA:th"} -property_value: IAO:0000589 "trachea basement membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0009653 ! trachea basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37069 ! {source="MA:th"} -property_value: IAO:0000589 "alveolar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009654 ! alveolar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37072 ! {source="MA:th"} -property_value: IAO:0000589 "auricular artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009655 ! auricular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37092 ! {source="MA:th"} -property_value: IAO:0000589 "artery of lip (embryonic mouse)" xsd:string -intersection_of: UBERON:0009657 ! artery of lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36529 ! -property_value: IAO:0000589 "pancreaticoduodenal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009658 ! pancreaticoduodenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32911 ! -property_value: IAO:0000589 "gut mesentery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009664 ! gut mesentery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18388 ! -property_value: IAO:0000589 "rectal lumen (embryonic mouse)" xsd:string -intersection_of: UBERON:0009670 ! rectal lumen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17266 ! -property_value: IAO:0000589 "accessory XI nerve cranial component (embryonic mouse)" xsd:string -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17267 ! -property_value: IAO:0000589 "accessory XI nerve spinal component (embryonic mouse)" xsd:string -intersection_of: UBERON:0009674 ! accessory XI nerve spinal component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18217 ! -property_value: IAO:0000589 "chorda tympani branch of facial nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0009675 ! chorda tympani branch of facial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16914 ! -property_value: IAO:0000589 "early telencephalic vesicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0009676 ! early telencephalic vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37070 ! {source="MA:th"} -property_value: IAO:0000589 "anterior inferior cerebellar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009689 ! anterior inferior cerebellar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17341 ! -property_value: IAO:0000589 "endocardium of right ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17338 ! -property_value: IAO:0000589 "endocardium of left ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32754 ! -property_value: IAO:0000589 "entire pharyngeal arch endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0009722 ! entire pharyngeal arch endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36038 ! -property_value: IAO:0000589 "proamniotic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0009742 ! proamniotic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37898 ! {source="MA:th"} -property_value: IAO:0000589 "lymph node medullary sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0009744 ! lymph node medullary sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37897 ! {source="MA:th"} -property_value: IAO:0000589 "lymph node medullary cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0009745 ! lymph node medullary cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16090 ! -property_value: IAO:0000589 "cephalic neural fold (embryonic mouse)" xsd:string -intersection_of: UBERON:0009748 ! cephalic neural fold -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32705 ! -property_value: IAO:0000589 "limb mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009749 ! limb mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36438 ! -property_value: IAO:0000589 "cardiac mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009751 ! cardiac mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26220 ! -property_value: IAO:0000589 "pancreas mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009752 ! pancreas mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35113 ! -property_value: IAO:0000589 "adrenal gland cortex zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0009753 ! adrenal gland cortex zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16826 ! -property_value: IAO:0000589 "cardiac muscle tissue of right auricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17324 ! -property_value: IAO:0000589 "cardiac muscle tissue of right auricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16818 ! -property_value: IAO:0000589 "cardiac muscle tissue of left auricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17318 ! -property_value: IAO:0000589 "cardiac muscle tissue of left auricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31500 ! -property_value: IAO:0000589 "urogenital sinus mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009845 ! urogenital sinus mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36604 ! -property_value: IAO:0000589 "zona limitans intrathalamica (embryonic mouse)" xsd:string -intersection_of: UBERON:0009848 ! zona limitans intrathalamica -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35821 ! -property_value: IAO:0000589 "zone of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0009870 ! zone of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27721 ! -property_value: IAO:0000589 "nephrogenic zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0009871 ! nephrogenic zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19133 ! -property_value: IAO:0000589 "tarsal skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0009879 ! tarsal skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37906 ! {source="MA:th"} -property_value: IAO:0000589 "medullary ray (embryonic mouse)" xsd:string -intersection_of: UBERON:0009883 ! medullary ray -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37091 ! {source="MA:th"} -property_value: IAO:0000589 "interlobar artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0009885 ! interlobar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35337 ! -property_value: IAO:0000589 "facial mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0009891 ! facial mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37886 ! {source="MA:th"} -property_value: IAO:0000589 "kidney corticomedullary boundary (embryonic mouse)" xsd:string -intersection_of: UBERON:0009917 ! kidney corticomedullary boundary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28811 ! -property_value: IAO:0000589 "ureter smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0009919 ! ureter smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35831 ! -property_value: IAO:0000589 "dentate gyrus subgranular zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0009952 ! dentate gyrus subgranular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37523 ! {source="MA:th"} -property_value: IAO:0000589 "esophagus smooth muscle circular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0009960 ! esophagus smooth muscle circular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37524 ! {source="MA:th"} -property_value: IAO:0000589 "esophagus smooth muscle longitudinal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0009961 ! esophagus smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37751 ! {source="MA:th"} -property_value: IAO:0000589 "spleen venous sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0009967 ! spleen venous sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18636 ! -property_value: IAO:0000589 "primitive superior sagittal sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0009968 ! primitive superior sagittal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37782 ! {source="MA:th"} -property_value: IAO:0000589 "ureteropelvic junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0009972 ! ureteropelvic junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37783 ! {source="MA:th"} -property_value: IAO:0000589 "ureterovesical junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0009973 ! ureterovesical junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25037 ! -property_value: IAO:0000589 "lumen of Rathke's pouch (embryonic mouse)" xsd:string -intersection_of: UBERON:0009974 ! lumen of Rathke's pouch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37943 ! {source="MA:th"} -property_value: IAO:0000589 "pulmonary neuroendocrine body (embryonic mouse)" xsd:string -intersection_of: UBERON:0010002 ! pulmonary neuroendocrine body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32673 ! -property_value: IAO:0000589 "collection of basal ganglia (embryonic mouse)" xsd:string -intersection_of: UBERON:0010011 ! collection of basal ganglia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17002 ! -property_value: IAO:0000589 "tubotympanic recess epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0010020 ! tubotympanic recess epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16758 ! -property_value: IAO:0000589 "dorsal part of pharyngeal pouch 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0010025 ! dorsal part of pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16759 ! -property_value: IAO:0000589 "ventral part of pharyngeal pouch 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0010026 ! ventral part of pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32765 ! -property_value: IAO:0000589 "6th arch mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010031 ! 6th arch mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37437 ! {source="MA:th"} -property_value: IAO:0000589 "anterior part of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0010032 ! anterior part of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37438 ! {source="MA:th"} -property_value: IAO:0000589 "posterior part of tongue (embryonic mouse)" xsd:string -intersection_of: UBERON:0010033 ! posterior part of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37416 ! {source="MA:th"} -property_value: IAO:0000589 "anterior tegmental nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0010036 ! anterior tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27161 ! -property_value: IAO:0000589 "fundic gastric gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0010038 ! fundic gastric gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16128 ! -property_value: IAO:0000589 "1st arch mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010042 ! 1st arch mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16391 ! -property_value: IAO:0000589 "1st arch maxillary mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010045 ! 1st arch maxillary mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16550 ! -property_value: IAO:0000589 "entire pharyngeal arch associated mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010046 ! entire pharyngeal arch associated mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16572 ! -property_value: IAO:0000589 "oral gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0010047 ! oral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16723 ! -property_value: IAO:0000589 "oral gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0010047 ! oral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18229 ! -property_value: IAO:0000589 "malleus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010054 ! malleus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18230 ! -property_value: IAO:0000589 "stapes cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010055 ! stapes cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17352 ! -property_value: IAO:0000589 "hypopharyngeal eminence (embryonic mouse)" xsd:string -intersection_of: UBERON:0010057 ! hypopharyngeal eminence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32801 ! -property_value: IAO:0000589 "pharyngotympanic tube epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0010062 ! pharyngotympanic tube epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19063 ! -property_value: IAO:0000589 "intermediate layer of tympanic membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0010070 ! intermediate layer of tympanic membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17742 ! -property_value: IAO:0000589 "femur cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010129 ! femur cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35759 ! -property_value: IAO:0000589 "secretory circumventricular organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0010134 ! secretory circumventricular organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37741 ! {source="MA:th"} -property_value: IAO:0000589 "sensory circumventricular organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0010135 ! sensory circumventricular organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36133 ! -property_value: IAO:0000589 "paraurethral gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0010145 ! paraurethral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36134 ! -property_value: IAO:0000589 "paraurethral gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0010145 ! paraurethral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37760 ! {source="MA:th"} -property_value: IAO:0000589 "post-anal tail tip (embryonic mouse)" xsd:string -intersection_of: UBERON:0010162 ! post-anal tail tip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36485 ! -property_value: IAO:0000589 "coat of hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0010166 ! coat of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32737 ! -property_value: IAO:0000589 "region of neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0010170 ! region of neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37951 ! {source="MA:th"} -property_value: IAO:0000589 "sinotubular junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0010173 ! sinotubular junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17966 ! -property_value: IAO:0000589 "rete ovarii (embryonic mouse)" xsd:string -intersection_of: UBERON:0010185 ! rete ovarii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29645 ! -property_value: IAO:0000589 "male urethral gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0010186 ! male urethral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29653 ! -property_value: IAO:0000589 "female urethral gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0010187 ! female urethral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17010 ! -property_value: IAO:0000589 "right atrium venous valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17328 ! -property_value: IAO:0000589 "right atrium venous valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18606 ! -property_value: IAO:0000589 "pair of dorsal aortae (embryonic mouse)" xsd:string -intersection_of: UBERON:0010190 ! pair of dorsal aortae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17855 ! -property_value: IAO:0000589 "trunk of common carotid artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0010197 ! trunk of common carotid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17006 ! -property_value: IAO:0000589 "carotid duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0010198 ! carotid duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17387 ! -property_value: IAO:0000589 "arytenoid pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010220 ! arytenoid pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16281 ! -property_value: IAO:0000589 "2nd arch mesenchyme from neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0010254 ! 2nd arch mesenchyme from neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16404 ! -property_value: IAO:0000589 "3rd arch mesenchyme from neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0010255 ! 3rd arch mesenchyme from neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16772 ! -property_value: IAO:0000589 "4th arch mesenchyme from neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0010256 ! 4th arch mesenchyme from neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16129 ! -property_value: IAO:0000589 "1st arch mesenchyme from neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0010259 ! 1st arch mesenchyme from neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36493 ! -property_value: IAO:0000589 "umbilical blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0010260 ! umbilical blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37600 ! {source="MA:th"} -property_value: IAO:0000589 "hyoid apparatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0010272 ! hyoid apparatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16212 ! -property_value: IAO:0000589 "mesocardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0010277 ! mesocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37834 ! {source="MA:th"} -property_value: IAO:0000589 "conjunctival fornix (embryonic mouse)" xsd:string -intersection_of: UBERON:0010307 ! conjunctival fornix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32759 ! -property_value: IAO:0000589 "eyelid mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010330 ! eyelid mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32630 ! -property_value: IAO:0000589 "epithelium of handplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0010332 ! epithelium of handplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16130 ! -property_value: IAO:0000589 "1st arch mesenchyme from head mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010341 ! 1st arch mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16280 ! -property_value: IAO:0000589 "2nd arch mesenchyme from head mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010343 ! 2nd arch mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16403 ! -property_value: IAO:0000589 "3rd arch mesenchyme from head mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010344 ! 3rd arch mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16771 ! -property_value: IAO:0000589 "4th arch mesenchyme from head mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010345 ! 4th arch mesenchyme from head mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17351 ! -property_value: IAO:0000589 "Reichert's cartilage pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010354 ! Reichert's cartilage pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36614 ! -property_value: IAO:0000589 "arch of centrum of vertebra (embryonic mouse)" xsd:string -intersection_of: UBERON:0010358 ! arch of centrum of vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35872 ! -property_value: IAO:0000589 "odontoid tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0010365 ! odontoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37199 ! {source="MA:th"} -property_value: IAO:0000589 "tibial vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0010370 ! tibial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17509 ! -property_value: IAO:0000589 "uncinate process of pancreas (embryonic mouse)" xsd:string -intersection_of: UBERON:0010373 ! uncinate process of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37479 ! {source="MA:th"} -property_value: IAO:0000589 "enteric nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0010380 ! enteric nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37939 ! {source="MA:th"} -property_value: IAO:0000589 "Peyer's patch T cell area (embryonic mouse)" xsd:string -intersection_of: UBERON:0010387 ! Peyer's patch T cell area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37495 ! {source="MA:th"} -property_value: IAO:0000589 "proximal segment of rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0010388 ! proximal segment of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36617 ! -property_value: IAO:0000589 "pterygoid bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0010389 ! pterygoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35530 ! -property_value: IAO:0000589 "lymph node primary follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010395 ! lymph node primary follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37964 ! {source="MA:th", seeAlso="https://github.com/obophenotype/mouse-anatomy-ontology/issues/117"} -property_value: IAO:0000589 "spleen marginal sinus (embryonic mouse)" xsd:string -intersection_of: UBERON:0010398 ! spleen marginal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35315 ! -property_value: IAO:0000589 "epidermis suprabasal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0010402 ! epidermis suprabasal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32680 ! -property_value: IAO:0000589 "brain marginal zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0010403 ! brain marginal zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35489 ! -property_value: IAO:0000589 "lateral ventricle subependymal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0010404 ! lateral ventricle subependymal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37480 ! {source="MA:th"} -property_value: IAO:0000589 "cholinergic enteric nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0010406 ! cholinergic enteric nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37673 ! {source="MA:th"} -property_value: IAO:0000589 "ocular angle artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0010408 ! ocular angle artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35336 ! -property_value: IAO:0000589 "ocular surface region (embryonic mouse)" xsd:string -intersection_of: UBERON:0010409 ! ocular surface region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35316 ! -property_value: IAO:0000589 "epididymal fat pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0010412 ! epididymal fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35163 ! -property_value: IAO:0000589 "barrel cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010415 ! barrel cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37663 ! {source="MA:th"} -property_value: IAO:0000589 "lymph node T cell domain (embryonic mouse)" xsd:string -intersection_of: UBERON:0010417 ! lymph node T cell domain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35965 ! -property_value: IAO:0000589 "urethral opening (embryonic mouse)" xsd:string -intersection_of: UBERON:0010418 ! urethral opening -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26720 ! -property_value: IAO:0000589 "vibrissa follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010419 ! vibrissa follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37661 ! {source="MA:th"} -property_value: IAO:0000589 "lymph node germinal center mantle zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0010420 ! lymph node germinal center mantle zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37962 ! {source="MA:th"} -property_value: IAO:0000589 "spleen B cell corona (embryonic mouse)" xsd:string -intersection_of: UBERON:0010421 ! spleen B cell corona -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37492 ! {source="MA:th"} -property_value: IAO:0000589 "distal segment of rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0010424 ! distal segment of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37703 ! {source="MA:th"} -property_value: IAO:0000589 "zygomaticus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010437 ! zygomaticus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36155 ! -property_value: IAO:0000589 "teres muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010467 ! teres muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36156 ! -property_value: IAO:0000589 "teres minor muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010496 ! teres minor muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36485 ! -property_value: IAO:0000589 "strand of pelage hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0010509 ! strand of pelage hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36527 ! -property_value: IAO:0000589 "strand of auchene hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0010510 ! strand of auchene hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36639 ! -property_value: IAO:0000589 "strand of awl hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0010511 ! strand of awl hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36528 ! -property_value: IAO:0000589 "strand of guard hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0010512 ! strand of guard hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36640 ! -property_value: IAO:0000589 "strand of zigzag hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0010513 ! strand of zigzag hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36261 ! -property_value: IAO:0000589 "fibularis tertius (embryonic mouse)" xsd:string -intersection_of: UBERON:0010524 ! fibularis tertius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36252 ! -property_value: IAO:0000589 "fibularis brevis (embryonic mouse)" xsd:string -intersection_of: UBERON:0010526 ! fibularis brevis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17953 ! -property_value: IAO:0000589 "metanephros induced blastemal cells (embryonic mouse)" xsd:string -intersection_of: UBERON:0010531 ! metanephros induced blastemal cells -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27621 ! -property_value: IAO:0000589 "metanephros induced blastemal cells (embryonic mouse)" xsd:string -intersection_of: UBERON:0010531 ! metanephros induced blastemal cells -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36158 ! -property_value: IAO:0000589 "metacarpus skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0010544 ! metacarpus skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17725 ! -property_value: IAO:0000589 "pedal digit 1 metatarsal pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010547 ! pedal digit 1 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17727 ! -property_value: IAO:0000589 "pedal digit 2 metatarsal pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010548 ! pedal digit 2 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17729 ! -property_value: IAO:0000589 "pedal digit 3 metatarsal pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010549 ! pedal digit 3 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17731 ! -property_value: IAO:0000589 "pedal digit 4 metatarsal pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010550 ! pedal digit 4 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17733 ! -property_value: IAO:0000589 "pedal digit 5 metatarsal pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010551 ! pedal digit 5 metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18106 ! -property_value: IAO:0000589 "pedal digit 1 metatarsal cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010557 ! pedal digit 1 metatarsal cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18111 ! -property_value: IAO:0000589 "pedal digit 2 metatarsal cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010558 ! pedal digit 2 metatarsal cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18116 ! -property_value: IAO:0000589 "pedal digit 3 metatarsal cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010559 ! pedal digit 3 metatarsal cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18121 ! -property_value: IAO:0000589 "pedal digit 4 metatarsal cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010560 ! pedal digit 4 metatarsal cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18126 ! -property_value: IAO:0000589 "pedal digit 5 metatarsal cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010561 ! pedal digit 5 metatarsal cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17462 ! -property_value: IAO:0000589 "pedal digit 1 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010562 ! pedal digit 1 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17431 ! -property_value: IAO:0000589 "manual digit 1 mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010564 ! manual digit 1 mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17714 ! -property_value: IAO:0000589 "manual digit 1 metacarpus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010565 ! manual digit 1 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17716 ! -property_value: IAO:0000589 "manual digit 2 metacarpus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010566 ! manual digit 2 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17718 ! -property_value: IAO:0000589 "manual digit 3 metacarpus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010567 ! manual digit 3 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17720 ! -property_value: IAO:0000589 "manual digit 4 metacarpus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010568 ! manual digit 4 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17722 ! -property_value: IAO:0000589 "manual digit 5 metacarpus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010569 ! manual digit 5 metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18065 ! -property_value: IAO:0000589 "manual digit 1 metacarpus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010570 ! manual digit 1 metacarpus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18070 ! -property_value: IAO:0000589 "manual digit 2 metacarpus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010571 ! manual digit 2 metacarpus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18075 ! -property_value: IAO:0000589 "manual digit 3 metacarpus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010572 ! manual digit 3 metacarpus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18080 ! -property_value: IAO:0000589 "manual digit 4 metacarpus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010573 ! manual digit 4 metacarpus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18085 ! -property_value: IAO:0000589 "manual digit 5 metacarpus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010574 ! manual digit 5 metacarpus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17715 ! -property_value: IAO:0000589 "manual digit 1 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010575 ! manual digit 1 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17717 ! -property_value: IAO:0000589 "manual digit 2 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010576 ! manual digit 2 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17719 ! -property_value: IAO:0000589 "manual digit 3 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010577 ! manual digit 3 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17721 ! -property_value: IAO:0000589 "manual digit 4 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010578 ! manual digit 4 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17723 ! -property_value: IAO:0000589 "manual digit 5 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010579 ! manual digit 5 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17726 ! -property_value: IAO:0000589 "pedal digit 1 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010580 ! pedal digit 1 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17728 ! -property_value: IAO:0000589 "pedal digit 2 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010581 ! pedal digit 2 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17730 ! -property_value: IAO:0000589 "pedal digit 3 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010582 ! pedal digit 3 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17732 ! -property_value: IAO:0000589 "pedal digit 4 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010583 ! pedal digit 4 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17734 ! -property_value: IAO:0000589 "pedal digit 5 phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010584 ! pedal digit 5 phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32950 ! -property_value: IAO:0000589 "pedal digit phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010585 ! pedal digit phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32639 ! -property_value: IAO:0000589 "manual digit phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010586 ! manual digit phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18066 ! -property_value: IAO:0000589 "manual digit 1 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010675 ! manual digit 1 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18071 ! -property_value: IAO:0000589 "manual digit 2 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010676 ! manual digit 2 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18076 ! -property_value: IAO:0000589 "manual digit 3 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010677 ! manual digit 3 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18081 ! -property_value: IAO:0000589 "manual digit 4 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010678 ! manual digit 4 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18086 ! -property_value: IAO:0000589 "manual digit 5 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010679 ! manual digit 5 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18107 ! -property_value: IAO:0000589 "pedal digit 1 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010680 ! pedal digit 1 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18112 ! -property_value: IAO:0000589 "pedal digit 2 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010681 ! pedal digit 2 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18117 ! -property_value: IAO:0000589 "pedal digit 3 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010682 ! pedal digit 3 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18122 ! -property_value: IAO:0000589 "pedal digit 4 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010683 ! pedal digit 4 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18127 ! -property_value: IAO:0000589 "pedal digit 5 phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010684 ! pedal digit 5 phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32948 ! -property_value: IAO:0000589 "pedal digit phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010685 ! pedal digit phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32658 ! -property_value: IAO:0000589 "manual digit phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010686 ! manual digit phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32956 ! -property_value: IAO:0000589 "pedal digit metatarsal pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010687 ! pedal digit metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35568 ! -property_value: IAO:0000589 "pedal digit metatarsal pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010687 ! pedal digit metatarsal pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17430 ! -property_value: IAO:0000589 "manual digit 1 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0010690 ! manual digit 1 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17461 ! -property_value: IAO:0000589 "pedal digit 1 epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0010693 ! pedal digit 1 epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18502 ! -property_value: IAO:0000589 "mesenchyme of tarsal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0010695 ! mesenchyme of tarsal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32951 ! -property_value: IAO:0000589 "pedal digit metatarsal cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010697 ! pedal digit metatarsal cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32850 ! -property_value: IAO:0000589 "manual digit metacarpus pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010698 ! manual digit metacarpus pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32849 ! -property_value: IAO:0000589 "manual digit metacarpus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010699 ! manual digit metacarpus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32720 ! -property_value: IAO:0000589 "phalanx pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010700 ! phalanx pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32721 ! -property_value: IAO:0000589 "phalanx cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010701 ! phalanx cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32719 ! -property_value: IAO:0000589 "digit mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0010702 ! digit mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18320 ! -property_value: IAO:0000589 "parenchyma of quadrate lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0010704 ! parenchyma of quadrate lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18315 ! -property_value: IAO:0000589 "parenchyma of caudate lobe of liver (embryonic mouse)" xsd:string -intersection_of: UBERON:0010706 ! parenchyma of caudate lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37858 ! {source="MA:th"} -property_value: IAO:0000589 "appendage girdle complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010707 ! appendage girdle complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37860 ! {source="MA:th"} -property_value: IAO:0000589 "pectoral complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010708 ! pectoral complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37863 ! {source="MA:th"} -property_value: IAO:0000589 "pelvic complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010709 ! pelvic complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18347 ! -property_value: IAO:0000589 "iliac cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010714 ! iliac cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26928 ! -property_value: IAO:0000589 "pubic cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010718 ! pubic cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35494 ! -property_value: IAO:0000589 "bone of appendage girdle complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010740 ! bone of appendage girdle complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32623 ! -property_value: IAO:0000589 "bone of pectoral complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010741 ! bone of pectoral complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35933 ! -property_value: IAO:0000589 "bone of pectoral complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010741 ! bone of pectoral complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32633 ! -property_value: IAO:0000589 "bone of pelvic complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010742 ! bone of pelvic complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35934 ! -property_value: IAO:0000589 "bone of pelvic complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0010742 ! bone of pelvic complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32660 ! -property_value: IAO:0000589 "meningeal cluster (embryonic mouse)" xsd:string -intersection_of: UBERON:0010743 ! meningeal cluster -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17677 ! -property_value: IAO:0000589 "sacral vertebra pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010744 ! sacral vertebra pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18009 ! -property_value: IAO:0000589 "sacral vertebra cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010745 ! sacral vertebra cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35527 ! -property_value: IAO:0000589 "lymph node follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010748 ! lymph node follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18339 ! -property_value: IAO:0000589 "exoccipital cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010752 ! exoccipital cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35531 ! -property_value: IAO:0000589 "lymph node secondary follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010753 ! lymph node secondary follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37963 ! {source="MA:th"} -property_value: IAO:0000589 "spleen follicular dendritic cell network (embryonic mouse)" xsd:string -intersection_of: UBERON:0010756 ! spleen follicular dendritic cell network -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19536 ! -property_value: IAO:0000589 "rib 8 (embryonic mouse)" xsd:string -intersection_of: UBERON:0010757 ! rib 8 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17736 ! -property_value: IAO:0000589 "calcaneum pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010801 ! calcaneum pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18143 ! -property_value: IAO:0000589 "calcaneum cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010842 ! calcaneum cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18342 ! -property_value: IAO:0000589 "clavicle cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010843 ! clavicle cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18026 ! -property_value: IAO:0000589 "clavicle pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010844 ! clavicle pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17711 ! -property_value: IAO:0000589 "radius-ulna cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010848 ! radius-ulna cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18155 ! -property_value: IAO:0000589 "tibia cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010849 ! tibia cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18154 ! -property_value: IAO:0000589 "fibula cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010851 ! fibula cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32626 ! -property_value: IAO:0000589 "forelimb cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010883 ! forelimb cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32625 ! -property_value: IAO:0000589 "forelimb bone pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010884 ! forelimb bone pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32632 ! -property_value: IAO:0000589 "hindlimb cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0010885 ! hindlimb cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32638 ! -property_value: IAO:0000589 "hindlimb pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0010886 ! hindlimb pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32634 ! -property_value: IAO:0000589 "pelvic complex muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010890 ! pelvic complex muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32624 ! -property_value: IAO:0000589 "pectoral complex muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010891 ! pectoral complex muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37498 ! {source="MA:th"} -property_value: IAO:0000589 "crico-arytenoid muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010932 ! crico-arytenoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37405 ! {source="MA:th"} -property_value: IAO:0000589 "anterior digastric muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010943 ! anterior digastric muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37406 ! {source="MA:th"} -property_value: IAO:0000589 "posterior digastric muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010944 ! posterior digastric muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37688 ! {source="MA:th"} -property_value: IAO:0000589 "cleidooccipital muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010948 ! cleidooccipital muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37702 ! {source="MA:th"} -property_value: IAO:0000589 "sternooccipital muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0010949 ! sternooccipital muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17750 ! -property_value: IAO:0000589 "subscapularis pre-muscle mass (embryonic mouse)" xsd:string -intersection_of: UBERON:0010993 ! subscapularis pre-muscle mass -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35149 ! -property_value: IAO:0000589 "articular cartilage of joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0010996 ! articular cartilage of joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36259 ! -property_value: IAO:0000589 "flexor hallucis brevis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011022 ! flexor hallucis brevis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36235 ! -property_value: IAO:0000589 "obturator muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011043 ! obturator muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36237 ! -property_value: IAO:0000589 "obturator internus (embryonic mouse)" xsd:string -intersection_of: UBERON:0011048 ! obturator internus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19549 ! -property_value: IAO:0000589 "thoracic vertebra 8 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011050 ! thoracic vertebra 8 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35677 ! -property_value: IAO:0000589 "perilymphatic channel (embryonic mouse)" xsd:string -intersection_of: UBERON:0011060 ! perilymphatic channel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32669 ! -property_value: IAO:0000589 "vertebra cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0011094 ! vertebra cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32671 ! -property_value: IAO:0000589 "vertebra pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0011095 ! vertebra pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19010 ! -property_value: IAO:0000589 "cruciate ligament of atlas (embryonic mouse)" xsd:string -intersection_of: UBERON:0011106 ! cruciate ligament of atlas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18714 ! -property_value: IAO:0000589 "temporomandibular joint primordium (embryonic mouse)" xsd:string -intersection_of: UBERON:0011130 ! temporomandibular joint primordium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19166 ! -property_value: IAO:0000589 "adductor muscle of hip (embryonic mouse)" xsd:string -intersection_of: UBERON:0011144 ! adductor muscle of hip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37970 ! {source="MA:th"} -property_value: IAO:0000589 "submucosal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0011148 ! submucosal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18022 ! -property_value: IAO:0000589 "facial skeleton (embryonic mouse)" xsd:string -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18341 ! -property_value: IAO:0000589 "supraoccipital cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0011162 ! supraoccipital cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35238 ! -property_value: IAO:0000589 "neurocranium bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0011164 ! neurocranium bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37407 ! {source="MA:th"} -property_value: IAO:0000589 "anterior division of bed nuclei of stria terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011173 ! anterior division of bed nuclei of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37591 ! {source="MA:th"} -property_value: IAO:0000589 "fusiform nucleus of stria terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011175 ! fusiform nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37667 ! {source="MA:th"} -property_value: IAO:0000589 "oval nucleus of stria terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011176 ! oval nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37408 ! {source="MA:th"} -property_value: IAO:0000589 "posterior division of bed nuclei of stria terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011177 ! posterior division of bed nuclei of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37726 ! {source="MA:th"} -property_value: IAO:0000589 "principal nucleus of stria terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011178 ! principal nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37727 ! {source="MA:th"} -property_value: IAO:0000589 "transverse nucleus of stria terminalis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011179 ! transverse nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29850 ! -property_value: IAO:0000589 "corpus spongiosum of penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011183 ! corpus spongiosum of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29856 ! -property_value: IAO:0000589 "corpus spongiosum of penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011183 ! corpus spongiosum of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19313 ! -property_value: IAO:0000589 "ophthalmic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0011191 ! ophthalmic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37704 ! {source="MA:th"} -property_value: IAO:0000589 "ophthalmic plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0011194 ! ophthalmic plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16597 ! -property_value: IAO:0000589 "medial migration pathway NC-derived mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16596 ! -property_value: IAO:0000589 "lateral migration pathway NC-derived mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36269 ! -property_value: IAO:0000589 "serratus dorsalis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011217 ! serratus dorsalis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37652 ! {source="MA:th"} -property_value: IAO:0000589 "longissimus lumborum muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011219 ! longissimus lumborum muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18808 ! -property_value: IAO:0000589 "intra-ocular muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011222 ! intra-ocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25114 ! -property_value: IAO:0000589 "perpendicular plate of ethmoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0011244 ! perpendicular plate of ethmoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35162 ! -property_value: IAO:0000589 "dorsal trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0011270 ! dorsal trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18734 ! -property_value: IAO:0000589 "nail of manual digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011273 ! nail of manual digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18735 ! -property_value: IAO:0000589 "nail of manual digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011274 ! nail of manual digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18736 ! -property_value: IAO:0000589 "nail of manual digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011275 ! nail of manual digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18737 ! -property_value: IAO:0000589 "nail of manual digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011276 ! nail of manual digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18738 ! -property_value: IAO:0000589 "nail of manual digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011277 ! nail of manual digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18739 ! -property_value: IAO:0000589 "nail of pedal digit 1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011278 ! nail of pedal digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18740 ! -property_value: IAO:0000589 "nail of pedal digit 2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011279 ! nail of pedal digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18741 ! -property_value: IAO:0000589 "nail of pedal digit 3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011280 ! nail of pedal digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18742 ! -property_value: IAO:0000589 "nail of pedal digit 4 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011281 ! nail of pedal digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18743 ! -property_value: IAO:0000589 "nail of pedal digit 5 (embryonic mouse)" xsd:string -intersection_of: UBERON:0011282 ! nail of pedal digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17884 ! -property_value: IAO:0000589 "extrinsic tongue pre-muscle mass (embryonic mouse)" xsd:string -intersection_of: UBERON:0011332 ! extrinsic tongue pre-muscle mass -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37687 ! {source="MA:th"} -property_value: IAO:0000589 "cleidocephalicus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011364 ! cleidocephalicus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37686 ! {source="MA:th"} -property_value: IAO:0000589 "cleidobrachialis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011366 ! cleidobrachialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37685 ! {source="MA:th"} -property_value: IAO:0000589 "brachiocephalic muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011368 ! brachiocephalic muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37690 ! {source="MA:th"} -property_value: IAO:0000589 "omotransversarius muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011369 ! omotransversarius muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37605 ! {source="MA:th"} -property_value: IAO:0000589 "iliothoracic muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011376 ! iliothoracic muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37616 ! {source="MA:th"} -property_value: IAO:0000589 "inferior pancreaticoduodenal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0011383 ! inferior pancreaticoduodenal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37194 ! {source="MA:th"} -property_value: IAO:0000589 "superior pancreaticoduodenal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0011384 ! superior pancreaticoduodenal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37692 ! {source="MA:th"} -property_value: IAO:0000589 "parotidoauricular muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011385 ! parotidoauricular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37483 ! {source="MA:th"} -property_value: IAO:0000589 "constrictor vulvae muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011387 ! constrictor vulvae muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37454 ! {source="MA:th"} -property_value: IAO:0000589 "bulbospongiosus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011389 ! bulbospongiosus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36301 ! -property_value: IAO:0000589 "blood vessel internal elastic membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0011392 ! blood vessel internal elastic membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37501 ! {source="MA:th"} -property_value: IAO:0000589 "cutaneous trunci muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011415 ! cutaneous trunci muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37502 ! {source="MA:th"} -property_value: IAO:0000589 "levator nasolabialis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011464 ! levator nasolabialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37649 ! {source="MA:th"} -property_value: IAO:0000589 "longissimus atlantis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011465 ! longissimus atlantis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37658 ! {source="MA:th"} -property_value: IAO:0000589 "ventral lateral sacrocaudal muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011472 ! ventral lateral sacrocaudal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37709 ! {source="MA:th"} -property_value: IAO:0000589 "rectus thoracis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011495 ! rectus thoracis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37699 ! {source="MA:th"} -property_value: IAO:0000589 "sphincter colli superficialis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011508 ! sphincter colli superficialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18380 ! -property_value: IAO:0000589 "lumen of esophagus (embryonic mouse)" xsd:string -intersection_of: UBERON:0011566 ! lumen of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36439 ! -property_value: IAO:0000589 "pre-dentine (embryonic mouse)" xsd:string -intersection_of: UBERON:0011587 ! pre-dentine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32905 ! -property_value: IAO:0000589 "jaw region (embryonic mouse)" xsd:string -intersection_of: UBERON:0011595 ! jaw region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18970 ! -property_value: IAO:0000589 "gingiva of upper jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0011601 ! gingiva of upper jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18967 ! -property_value: IAO:0000589 "gingiva of lower jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0011602 ! gingiva of lower jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32881 ! -property_value: IAO:0000589 "odontogenic mesenchyme of molar (embryonic mouse)" xsd:string -intersection_of: UBERON:0011641 ! odontogenic mesenchyme of molar -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37734 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal head of rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0011652 ! dorsal head of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17036 ! -property_value: IAO:0000589 "midgut loop (embryonic mouse)" xsd:string -intersection_of: UBERON:0011698 ! midgut loop -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18314 ! -property_value: IAO:0000589 "caudate lobe hepatic sinusoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0011737 ! caudate lobe hepatic sinusoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18319 ! -property_value: IAO:0000589 "quadrate lobe hepatic sinusoid (embryonic mouse)" xsd:string -intersection_of: UBERON:0011738 ! quadrate lobe hepatic sinusoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35903 ! -property_value: IAO:0000589 "cardiac valve leaflet (embryonic mouse)" xsd:string -intersection_of: UBERON:0011741 ! cardiac valve leaflet -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18627 ! -property_value: IAO:0000589 "aortic valve leaflet (embryonic mouse)" xsd:string -intersection_of: UBERON:0011742 ! aortic valve leaflet -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18629 ! -property_value: IAO:0000589 "pulmonary valve leaflets (embryonic mouse)" xsd:string -intersection_of: UBERON:0011745 ! pulmonary valve leaflets -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30074 ! -property_value: IAO:0000589 "genital swelling (embryonic mouse)" xsd:string -intersection_of: UBERON:0011754 ! genital swelling -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35377 ! -property_value: IAO:0000589 "genital swelling (embryonic mouse)" xsd:string -intersection_of: UBERON:0011754 ! genital swelling -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18329 ! -property_value: IAO:0000589 "female labial swelling (embryonic mouse)" xsd:string -intersection_of: UBERON:0011755 ! female labial swelling -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30423 ! -property_value: IAO:0000589 "female labial swelling (embryonic mouse)" xsd:string -intersection_of: UBERON:0011755 ! female labial swelling -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30509 ! -property_value: IAO:0000589 "male genital swelling (embryonic mouse)" xsd:string -intersection_of: UBERON:0011756 ! male genital swelling -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18249 ! -property_value: IAO:0000589 "jugular lymph sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0011765 ! jugular lymph sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25350 ! -property_value: IAO:0000589 "left recurrent laryngeal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0011766 ! left recurrent laryngeal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17275 ! -property_value: IAO:0000589 "right recurrent laryngeal nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0011767 ! right recurrent laryngeal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19036 ! -property_value: IAO:0000589 "pineal gland stalk (embryonic mouse)" xsd:string -intersection_of: UBERON:0011768 ! pineal gland stalk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37980 ! {source="MA:th"} -property_value: IAO:0000589 "utriculosaccular duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0011774 ! utriculosaccular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37748 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal commissural nucleus of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0011776 ! dorsal commissural nucleus of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37668 ! {source="MA:th"} -property_value: IAO:0000589 "areolar gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0011827 ! areolar gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37933 ! {source="MA:th"} -property_value: IAO:0000589 "acinus of parotid gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0011847 ! acinus of parotid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36187 ! -property_value: IAO:0000589 "extensor carpi radialis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0011867 ! extensor carpi radialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17971 ! -property_value: IAO:0000589 "mesorchium (embryonic mouse)" xsd:string -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37417 ! {source="MA:th"} -property_value: IAO:0000589 "anterior uvea (embryonic mouse)" xsd:string -intersection_of: UBERON:0011892 ! anterior uvea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37850 ! {source="MA:th"} -property_value: IAO:0000589 "endoneurial fluid (embryonic mouse)" xsd:string -intersection_of: UBERON:0011893 ! endoneurial fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36254 ! -property_value: IAO:0000589 "plantaris (embryonic mouse)" xsd:string -intersection_of: UBERON:0011905 ! plantaris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36250 ! -property_value: IAO:0000589 "gastrocnemius medialis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011907 ! gastrocnemius medialis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36249 ! -property_value: IAO:0000589 "gastrocnemius lateralis (embryonic mouse)" xsd:string -intersection_of: UBERON:0011908 ! gastrocnemius lateralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37812 ! {source="MA:th"} -property_value: IAO:0000589 "cerebellar glomerulus (embryonic mouse)" xsd:string -intersection_of: UBERON:0011915 ! cerebellar glomerulus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37895 ! {source="MA:th"} -property_value: IAO:0000589 "line of Schwalbe (embryonic mouse)" xsd:string -intersection_of: UBERON:0011918 ! line of Schwalbe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16115 ! -property_value: IAO:0000589 "yolk sac blood island (embryonic mouse)" xsd:string -intersection_of: UBERON:0011919 ! yolk sac blood island -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37830 ! {source="MA:th"} -property_value: IAO:0000589 "cochlear basement membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0011922 ! cochlear basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36582 ! -property_value: IAO:0000589 "pilosebaceous unit (embryonic mouse)" xsd:string -intersection_of: UBERON:0011932 ! pilosebaceous unit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17529 ! -property_value: IAO:0000589 "vibrissa unit (embryonic mouse)" xsd:string -intersection_of: UBERON:0011933 ! vibrissa unit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26716 ! -property_value: IAO:0000589 "vibrissa hair bulb (embryonic mouse)" xsd:string -intersection_of: UBERON:0011936 ! vibrissa hair bulb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26724 ! -property_value: IAO:0000589 "vibrissa root sheath (embryonic mouse)" xsd:string -intersection_of: UBERON:0011937 ! vibrissa root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36477 ! -property_value: IAO:0000589 "vibrissa inner root sheath (embryonic mouse)" xsd:string -intersection_of: UBERON:0011938 ! vibrissa inner root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36478 ! -property_value: IAO:0000589 "vibrissa outer root sheath (embryonic mouse)" xsd:string -intersection_of: UBERON:0011939 ! vibrissa outer root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26771 ! -property_value: IAO:0000589 "arrector pili muscle of vibrissa (embryonic mouse)" xsd:string -intersection_of: UBERON:0011940 ! arrector pili muscle of vibrissa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37779 ! {source="MA:th"} -property_value: IAO:0000589 "ureter luminal urothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0011947 ! ureter luminal urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37780 ! {source="MA:th"} -property_value: IAO:0000589 "ureter subluminal urothelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0011948 ! ureter subluminal urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35309 ! -property_value: IAO:0000589 "endometrium luminal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0011949 ! endometrium luminal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37902 ! {source="MA:th"} -property_value: IAO:0000589 "mammary gland luminal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0011950 ! mammary gland luminal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17623 ! -property_value: IAO:0000589 "stomach glandular region (embryonic mouse)" xsd:string -intersection_of: UBERON:0011953 ! stomach glandular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17627 ! -property_value: IAO:0000589 "stomach non-glandular region (embryonic mouse)" xsd:string -intersection_of: UBERON:0011954 ! stomach non-glandular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37164 ! {source="MA:th"} -property_value: IAO:0000589 "left hepatic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0011955 ! left hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37377 ! {source="MA:th"} -property_value: IAO:0000589 "right hepatic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0011956 ! right hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37175 ! {source="MA:th"} -property_value: IAO:0000589 "middle hepatic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0011957 ! middle hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19205 ! -property_value: IAO:0000589 "radio-carpal joint (embryonic mouse)" xsd:string -intersection_of: UBERON:0011968 ! radio-carpal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31134 ! -property_value: IAO:0000589 "myocoele (embryonic mouse)" xsd:string -intersection_of: UBERON:0012054 ! myocoele -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19004 ! -property_value: IAO:0000589 "right lung lower lobe bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0012059 ! right lung lower lobe bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17998 ! -property_value: IAO:0000589 "lobar bronchus of right lung middle lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0012063 ! lobar bronchus of right lung middle lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19008 ! -property_value: IAO:0000589 "right lung middle lobe bronchiole (embryonic mouse)" xsd:string -intersection_of: UBERON:0012068 ! right lung middle lobe bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37930 ! {source="MA:th"} -property_value: IAO:0000589 "palate bone (embryonic mouse)" xsd:string -intersection_of: UBERON:0012071 ! palate bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37444 ! {source="MA:th"} -property_value: IAO:0000589 "bony part of hard palate (embryonic mouse)" xsd:string -intersection_of: UBERON:0012074 ! bony part of hard palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19140 ! -property_value: IAO:0000589 "patella cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0012080 ! patella cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18510 ! -property_value: IAO:0000589 "patella pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0012081 ! patella pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37915 ! {source="MA:th"} -property_value: IAO:0000589 "nose tip (embryonic mouse)" xsd:string -intersection_of: UBERON:0012128 ! nose tip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36170 ! -property_value: IAO:0000589 "centrale (embryonic mouse)" xsd:string -intersection_of: UBERON:0012131 ! centrale -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16794 ! -property_value: IAO:0000589 "acoustico-facial VII-VIII ganglion complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0012175 ! acoustico-facial VII-VIII ganglion complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37249 ! {source="MA:th"} -property_value: IAO:0000589 "bone of pelvis (embryonic mouse)" xsd:string -intersection_of: UBERON:0012179 ! bone of pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37276 ! {source="MA:th"} -property_value: IAO:0000589 "head or neck skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0012180 ! head or neck skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35628 ! -property_value: IAO:0000589 "ovary growing follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0012186 ! ovary growing follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37590 ! {source="MA:th"} -property_value: IAO:0000589 "frontal artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0012187 ! frontal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37180 ! {source="MA:th"} -property_value: IAO:0000589 "phrenic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0012193 ! phrenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37193 ! {source="MA:th"} -property_value: IAO:0000589 "superior intercostal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0012194 ! superior intercostal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18762 ! -property_value: IAO:0000589 "intercostal vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0012197 ! intercostal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27608 ! -property_value: IAO:0000589 "ureteric bud trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0012238 ! ureteric bud trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27697 ! -property_value: IAO:0000589 "ureteric bud trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0012238 ! ureteric bud trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28679 ! -property_value: IAO:0000589 "urinary bladder vasculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0012239 ! urinary bladder vasculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37977 ! {source="MA:th"} -property_value: IAO:0000589 "urethral meatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0012240 ! urethral meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36434 ! -property_value: IAO:0000589 "male urethral meatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0012241 ! male urethral meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37640 ! {source="MA:th"} -property_value: IAO:0000589 "forestomach-glandular stomach junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0012270 ! forestomach-glandular stomach junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35308 ! -property_value: IAO:0000589 "endometrium glandular epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0012276 ! endometrium glandular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37871 ! {source="MA:th"} -property_value: IAO:0000589 "gland of nasal mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0012278 ! gland of nasal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37936 ! {source="MA:th"} -property_value: IAO:0000589 "perianal sebaceous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0012281 ! perianal sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37901 ! {source="MA:th"} -property_value: IAO:0000589 "mammary fat pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0012282 ! mammary fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25036 ! -property_value: IAO:0000589 "Rathkes pouch epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0012287 ! Rathkes pouch epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37893 ! {source="MA:th"} -property_value: IAO:0000589 "lateral malleolus of fibula (embryonic mouse)" xsd:string -intersection_of: UBERON:0012291 ! lateral malleolus of fibula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37392 ! {source="MA:th"} -property_value: IAO:0000589 "anal fold (embryonic mouse)" xsd:string -intersection_of: UBERON:0012293 ! anal fold -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37912 ! {source="MA:th"} -property_value: IAO:0000589 "mucosa of urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0012299 ! mucosa of urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37537 ! {source="MA:th"} -property_value: IAO:0000589 "female membranous urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0012301 ! female membranous urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17637 ! -property_value: IAO:0000589 "maxillary process ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0012312 ! maxillary process ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16389 ! -property_value: IAO:0000589 "1st arch maxillary ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0012313 ! 1st arch maxillary ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37983 ! {source="MA:th"} -property_value: IAO:0000589 "vagina orifice (embryonic mouse)" xsd:string -intersection_of: UBERON:0012317 ! vagina orifice -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37075 ! {source="MA:th"} -property_value: IAO:0000589 "cervical artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0012320 ! cervical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37715 ! {source="MA:th"} -property_value: IAO:0000589 "perianal skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0012336 ! perianal skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37468 ! {source="MA:th"} -property_value: IAO:0000589 "cauda equina (embryonic mouse)" xsd:string -intersection_of: UBERON:0012337 ! cauda equina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37907 ! {source="MA:th"} -property_value: IAO:0000589 "mesangial matrix (embryonic mouse)" xsd:string -intersection_of: UBERON:0012352 ! mesangial matrix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35453 ! -property_value: IAO:0000589 "bone of jaw (embryonic mouse)" xsd:string -intersection_of: UBERON:0012360 ! bone of jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37617 ! {source="MA:th"} -property_value: IAO:0000589 "sympathetic nerve plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0012373 ! sympathetic nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37558 ! {source="MA:th"} -property_value: IAO:0000589 "large intestine smooth muscle circular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0012398 ! large intestine smooth muscle circular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37559 ! {source="MA:th"} -property_value: IAO:0000589 "large intestine smooth muscle longitudinal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0012399 ! large intestine smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37562 ! {source="MA:th"} -property_value: IAO:0000589 "small intestine smooth muscle circular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0012401 ! small intestine smooth muscle circular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37563 ! {source="MA:th"} -property_value: IAO:0000589 "small intestine smooth muscle longitudinal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0012402 ! small intestine smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37567 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system arterial smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0012416 ! respiratory system arterial smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37586 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system venous smooth muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0012418 ! respiratory system venous smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16054 ! -property_value: IAO:0000589 "extraembryonic cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0012466 ! extraembryonic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27577 ! -property_value: IAO:0000589 "cloacal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0012481 ! cloacal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36070 ! -property_value: IAO:0000589 "cloacal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0012481 ! cloacal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27383 ! -property_value: IAO:0000589 "muscle layer of colon (embryonic mouse)" xsd:string -intersection_of: UBERON:0012489 ! muscle layer of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27243 ! -property_value: IAO:0000589 "muscularis mucosae of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0012494 ! muscularis mucosae of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27259 ! -property_value: IAO:0000589 "muscularis mucosae of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0012494 ! muscularis mucosae of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27093 ! -property_value: IAO:0000589 "muscularis mucosae of rectum (embryonic mouse)" xsd:string -intersection_of: UBERON:0012497 ! muscularis mucosae of rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27157 ! -property_value: IAO:0000589 "serosa of fundus of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0012503 ! serosa of fundus of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37396 ! {source="MA:th"} -property_value: IAO:0000589 "anococcygeus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0012649 ! anococcygeus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37534 ! {source="MA:th"} -property_value: IAO:0000589 "eyelid submuscular connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0013120 ! eyelid submuscular connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36291 ! -property_value: IAO:0000589 "capillary bed (embryonic mouse)" xsd:string -intersection_of: UBERON:0013141 ! capillary bed -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18631 ! -property_value: IAO:0000589 "venous system of brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0013146 ! venous system of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16390 ! -property_value: IAO:0000589 "1st arch maxillary endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0013154 ! 1st arch maxillary endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16383 ! -property_value: IAO:0000589 "1st arch mandibular ectoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0013155 ! 1st arch mandibular ectoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16384 ! -property_value: IAO:0000589 "1st arch mandibular endoderm (embryonic mouse)" xsd:string -intersection_of: UBERON:0013156 ! 1st arch mandibular endoderm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16395 ! -property_value: IAO:0000589 "1st arch maxillary-mandibular cleft (embryonic mouse)" xsd:string -intersection_of: UBERON:0013157 ! 1st arch maxillary-mandibular cleft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17065 ! -property_value: IAO:0000589 "foregut-midgut junction gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0013158 ! foregut-midgut junction gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17533 ! -property_value: IAO:0000589 "epithalamus mantle layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0013159 ! epithalamus mantle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17535 ! -property_value: IAO:0000589 "epithalamus ventricular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0013160 ! epithalamus ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37927 ! {source="MA:th"} -property_value: IAO:0000589 "ovarian cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0013191 ! ovarian cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37928 ! {source="MA:th"} -property_value: IAO:0000589 "ovarian medulla (embryonic mouse)" xsd:string -intersection_of: UBERON:0013192 ! ovarian medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35765 ! -property_value: IAO:0000589 "Grueneberg ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0013208 ! Grueneberg ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36226 ! -property_value: IAO:0000589 "caudofemoralis (embryonic mouse)" xsd:string -intersection_of: UBERON:0013221 ! caudofemoralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29252 ! -property_value: IAO:0000589 "future glans penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0013239 ! future glans penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19170 ! -property_value: IAO:0000589 "future glans clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0013240 ! future glans clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29161 ! -property_value: IAO:0000589 "male paramesonephric duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0013247 ! male paramesonephric duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35661 ! -property_value: IAO:0000589 "male paramesonephric duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0013247 ! male paramesonephric duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18978 ! -property_value: IAO:0000589 "vesicular appendage of epoophoron (embryonic mouse)" xsd:string -intersection_of: UBERON:0013250 ! vesicular appendage of epoophoron -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37892 ! {source="MA:th"} -property_value: IAO:0000589 "diaphysis of fibula (embryonic mouse)" xsd:string -intersection_of: UBERON:0013279 ! diaphysis of fibula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37770 ! {source="MA:th"} -property_value: IAO:0000589 "diaphysis of tibia (embryonic mouse)" xsd:string -intersection_of: UBERON:0013280 ! diaphysis of tibia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37497 ! {source="MA:th"} -property_value: IAO:0000589 "cranial cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0013411 ! cranial cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37839 ! {source="MA:th"} -property_value: IAO:0000589 "crypt of Lieberkuhn of ileum (embryonic mouse)" xsd:string -intersection_of: UBERON:0013481 ! crypt of Lieberkuhn of ileum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37838 ! {source="MA:th"} -property_value: IAO:0000589 "crypt of Lieberkuhn of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0013482 ! crypt of Lieberkuhn of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37840 ! {source="MA:th"} -property_value: IAO:0000589 "crypt of Lieberkuhn of jejunum (embryonic mouse)" xsd:string -intersection_of: UBERON:0013483 ! crypt of Lieberkuhn of jejunum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17570 ! -property_value: IAO:0000589 "vestibulo-cochlear VIII ganglion complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0013498 ! vestibulo-cochlear VIII ganglion complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16662 ! -property_value: IAO:0000589 "glossopharyngeal-vagus IX-X preganglion complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0013499 ! glossopharyngeal-vagus IX-X preganglion complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16796 ! -property_value: IAO:0000589 "glossopharyngeal-vagus IX-X ganglion complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0013500 ! glossopharyngeal-vagus IX-X ganglion complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18044 ! -property_value: IAO:0000589 "caudal vertebra cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0013503 ! caudal vertebra cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18045 ! -property_value: IAO:0000589 "caudal vertebra pre-cartilage condensation (embryonic mouse)" xsd:string -intersection_of: UBERON:0013504 ! caudal vertebra pre-cartilage condensation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18395 ! -property_value: IAO:0000589 "stomach lumen (embryonic mouse)" xsd:string -intersection_of: UBERON:0013525 ! stomach lumen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25363 ! -property_value: IAO:0000589 "otocyst lumen (embryonic mouse)" xsd:string -intersection_of: UBERON:0013526 ! otocyst lumen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36447 ! -property_value: IAO:0000589 "Brodmann (1909) area 32 (embryonic mouse)" xsd:string -intersection_of: UBERON:0013560 ! Brodmann (1909) area 32 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37612 ! {source="MA:th"} -property_value: IAO:0000589 "inferior olive dorsal accessory nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0013608 ! inferior olive dorsal accessory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37613 ! {source="MA:th"} -property_value: IAO:0000589 "inferior olive medial accessory nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0013609 ! inferior olive medial accessory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29822 ! -property_value: IAO:0000589 "prostate gland lateral lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0013637 ! prostate gland lateral lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18166 ! -property_value: IAO:0000589 "axial musculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0013700 ! axial musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36031 ! -property_value: IAO:0000589 "body proper (embryonic mouse)" xsd:string -intersection_of: UBERON:0013702 ! body proper -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37772 ! {source="MA:th"} -property_value: IAO:0000589 "metaphysis of tibia (embryonic mouse)" xsd:string -intersection_of: UBERON:0013750 ! metaphysis of tibia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37843 ! {source="MA:th"} -property_value: IAO:0000589 "digestive system element (embryonic mouse)" xsd:string -intersection_of: UBERON:0013765 ! digestive system element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36460 ! -property_value: IAO:0000589 "great vessel of heart (embryonic mouse)" xsd:string -intersection_of: UBERON:0013768 ! great vessel of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36273 ! -property_value: IAO:0000589 "uterine lumen (embryonic mouse)" xsd:string -intersection_of: UBERON:0013769 ! uterine lumen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35311 ! -property_value: IAO:0000589 "endopiriform nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0014284 ! endopiriform nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36024 ! -property_value: IAO:0000589 "future telencephalon (embryonic mouse)" xsd:string -intersection_of: UBERON:0014371 ! future telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36247 ! -property_value: IAO:0000589 "flexor digitorum brevis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0014380 ! flexor digitorum brevis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32735 ! -property_value: IAO:0000589 "mesenchyme derived from neural crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0014387 ! mesenchyme derived from neural crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37885 ! {source="MA:th"} -property_value: IAO:0000589 "kidney collecting duct epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0014388 ! kidney collecting duct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37979 ! {source="MA:th"} -property_value: IAO:0000589 "uterine fat pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0014394 ! uterine fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31450 ! -property_value: IAO:0000589 "renal venous blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0014401 ! renal venous blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36260 ! -property_value: IAO:0000589 "fibularis quartus (embryonic mouse)" xsd:string -intersection_of: UBERON:0014410 ! fibularis quartus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37602 ! {source="MA:th"} -property_value: IAO:0000589 "iliac crest (embryonic mouse)" xsd:string -intersection_of: UBERON:0014437 ! iliac crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37919 ! {source="MA:th"} -property_value: IAO:0000589 "pretectal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0014450 ! pretectal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36644 ! -property_value: IAO:0000589 "cardiac ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0014463 ! cardiac ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35196 ! -property_value: IAO:0000589 "pyramidal layer of CA1 (embryonic mouse)" xsd:string -intersection_of: UBERON:0014548 ! pyramidal layer of CA1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36480 ! -property_value: IAO:0000589 "pyramidal layer of CA2 (embryonic mouse)" xsd:string -intersection_of: UBERON:0014549 ! pyramidal layer of CA2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36448 ! -property_value: IAO:0000589 "pyramidal layer of CA3 (embryonic mouse)" xsd:string -intersection_of: UBERON:0014550 ! pyramidal layer of CA3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16374 ! -property_value: IAO:0000589 "extraembryonic venous system (embryonic mouse)" xsd:string -intersection_of: UBERON:0014699 ! extraembryonic venous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16370 ! -property_value: IAO:0000589 "extraembryonic vascular system (embryonic mouse)" xsd:string -intersection_of: UBERON:0014701 ! extraembryonic vascular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32918 ! -property_value: IAO:0000589 "frontonasal process epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0014702 ! frontonasal process epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25040 ! -property_value: IAO:0000589 "anal membrane ectodermal component (embryonic mouse)" xsd:string -intersection_of: UBERON:0014703 ! anal membrane ectodermal component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25034 ! -property_value: IAO:0000589 "pleuroperitoneal canal lumen (embryonic mouse)" xsd:string -intersection_of: UBERON:0014704 ! pleuroperitoneal canal lumen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17188 ! -property_value: IAO:0000589 "median lingual swelling epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0014705 ! median lingual swelling epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17646 ! -property_value: IAO:0000589 "primitive renal collecting duct system (embryonic mouse)" xsd:string -intersection_of: UBERON:0014706 ! primitive renal collecting duct system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17703 ! -property_value: IAO:0000589 "crus of diaphragm (embryonic mouse)" xsd:string -intersection_of: UBERON:0014765 ! crus of diaphragm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28547 ! -property_value: IAO:0000589 "allantois of embryonic urinary system (embryonic mouse)" xsd:string -intersection_of: UBERON:0014782 ! allantois of embryonic urinary system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18274 ! -property_value: IAO:0000589 "lingual septum (embryonic mouse)" xsd:string -intersection_of: UBERON:0014790 ! lingual septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37864 ! {source="MA:th"} -property_value: IAO:0000589 "musculature of pelvic complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0014792 ! musculature of pelvic complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37861 ! {source="MA:th"} -property_value: IAO:0000589 "musculature of pectoral complex (embryonic mouse)" xsd:string -intersection_of: UBERON:0014793 ! musculature of pectoral complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35769 ! -property_value: IAO:0000589 "serratus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0014835 ! serratus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36243 ! -property_value: IAO:0000589 "vastus intermedius (embryonic mouse)" xsd:string -intersection_of: UBERON:0014847 ! vastus intermedius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37879 ! {source="MA:th"} -property_value: IAO:0000589 "hemotrichorial placental membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0014849 ! hemotrichorial placental membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35189 ! -property_value: IAO:0000589 "brainstem white matter (embryonic mouse)" xsd:string -intersection_of: UBERON:0014891 ! brainstem white matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35988 ! -property_value: IAO:0000589 "skeletal muscle organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0014892 ! skeletal muscle organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37389 ! {source="MA:th"} -property_value: IAO:0000589 "intersomitic vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0014907 ! intersomitic vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37870 ! {source="MA:th"} -property_value: IAO:0000589 "genu of facial nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0014915 ! genu of facial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37947 ! {source="MA:th"} -property_value: IAO:0000589 "retrosplenial granular cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0014918 ! retrosplenial granular cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17546 ! -property_value: IAO:0000589 "cerebral cortex marginal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0014935 ! cerebral cortex marginal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32713 ! -property_value: IAO:0000589 "cerebral cortex marginal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0014935 ! cerebral cortex marginal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17547 ! -property_value: IAO:0000589 "cerebral cortex ventricular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0014936 ! cerebral cortex ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32707 ! -property_value: IAO:0000589 "cerebral cortex ventricular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0014936 ! cerebral cortex ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32704 ! -property_value: IAO:0000589 "cerebral cortex subventricular zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0014940 ! cerebral cortex subventricular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37971 ! {source="MA:th"} -property_value: IAO:0000589 "tail hair (embryonic mouse)" xsd:string -intersection_of: UBERON:0015148 ! tail hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36612 ! -property_value: IAO:0000589 "uterine spiral artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0015171 ! uterine spiral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35678 ! -property_value: IAO:0000589 "perineural vascular plexus (embryonic mouse)" xsd:string -intersection_of: UBERON:0015189 ! perineural vascular plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19236 ! -property_value: IAO:0000589 "arcuate ligament (embryonic mouse)" xsd:string -intersection_of: UBERON:0015214 ! arcuate ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18593 ! -property_value: IAO:0000589 "nasal meatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0015216 ! nasal meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19277 ! -property_value: IAO:0000589 "middle nasal meatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0015219 ! middle nasal meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19278 ! -property_value: IAO:0000589 "inferior nasal meatus (embryonic mouse)" xsd:string -intersection_of: UBERON:0015220 ! inferior nasal meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18999 ! -property_value: IAO:0000589 "lower part of vagina (embryonic mouse)" xsd:string -intersection_of: UBERON:0015243 ! lower part of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35109 ! -property_value: IAO:0000589 "accessory olfactory bulb granule cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0015244 ! accessory olfactory bulb granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35764 ! -property_value: IAO:0000589 "septal olfactory organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0015245 ! septal olfactory organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35766 ! -property_value: IAO:0000589 "septal organ of Masera (embryonic mouse)" xsd:string -intersection_of: UBERON:0015246 ! septal organ of Masera -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37555 ! {source="MA:th"} -property_value: IAO:0000589 "bifurcation of trachea (embryonic mouse)" xsd:string -intersection_of: UBERON:0015247 ! bifurcation of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32615 ! -property_value: IAO:0000589 "digit skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0015249 ! digit skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37610 ! {source="MA:th"} -property_value: IAO:0000589 "inferior olivary commissure (embryonic mouse)" xsd:string -intersection_of: UBERON:0015250 ! inferior olivary commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37680 ! {source="MA:th"} -property_value: IAO:0000589 "modified sebaceous gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0015251 ! modified sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35246 ! -property_value: IAO:0000589 "coat hair follicle (embryonic mouse)" xsd:string -intersection_of: UBERON:0015252 ! coat hair follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37711 ! {source="MA:th"} -property_value: IAO:0000589 "pancreas left lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0015280 ! pancreas left lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37712 ! {source="MA:th"} -property_value: IAO:0000589 "pancreas right lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0015281 ! pancreas right lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37570 ! {source="MA:th"} -property_value: IAO:0000589 "respiratory system basement membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0015329 ! respiratory system basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37220 ! {source="MA:th"} -property_value: IAO:0000589 "saphenous artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0015350 ! saphenous artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37597 ! {source="MA:th"} -property_value: IAO:0000589 "heart plus pericardium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015410 ! heart plus pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37786 ! {source="MA:th"} -property_value: IAO:0000589 "urethra mesenchymal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0015418 ! urethra mesenchymal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37781 ! {source="MA:th"} -property_value: IAO:0000589 "ureteral valve (embryonic mouse)" xsd:string -intersection_of: UBERON:0015420 ! ureteral valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37599 ! {source="MA:th"} -property_value: IAO:0000589 "hilar portion of hepatic duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0015423 ! hilar portion of hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36627 ! -property_value: IAO:0000589 "levator auris longus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0015430 ! levator auris longus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35111 ! -property_value: IAO:0000589 "accessory olfactory bulb mitral cell layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0015432 ! accessory olfactory bulb mitral cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36302 ! -property_value: IAO:0000589 "blood vessel external elastic membrane (embryonic mouse)" xsd:string -intersection_of: UBERON:0015433 ! blood vessel external elastic membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37641 ! {source="MA:th"} -property_value: IAO:0000589 "anterior lingual gland duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0015445 ! anterior lingual gland duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37065 ! {source="MA:th"} -property_value: IAO:0000589 "accessory hepatic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0015455 ! accessory hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37349 ! {source="MA:th"} -property_value: IAO:0000589 "axilla skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0015474 ! axilla skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37684 ! {source="MA:th"} -property_value: IAO:0000589 "nose skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0015476 ! nose skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36411 ! -property_value: IAO:0000589 "scrotum skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0015479 ! scrotum skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37217 ! {source="MA:th"} -property_value: IAO:0000589 "proper hepatic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0015480 ! proper hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37096 ! {source="MA:th"} -property_value: IAO:0000589 "left hepatic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0015481 ! left hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37376 ! {source="MA:th"} -property_value: IAO:0000589 "right hepatic artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0015482 ! right hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37355 ! {source="MA:th"} -property_value: IAO:0000589 "epidermis of metapodial pad (embryonic mouse)" xsd:string -intersection_of: UBERON:0015484 ! epidermis of metapodial pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37478 ! {source="MA:th"} -property_value: IAO:0000589 "choledocho-duodenal junction (embryonic mouse)" xsd:string -intersection_of: UBERON:0015485 ! choledocho-duodenal junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37757 ! {source="MA:th"} -property_value: IAO:0000589 "sural nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0015488 ! sural nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18835 ! -property_value: IAO:0000589 "anal canal epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015716 ! anal canal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32289 ! -property_value: IAO:0000589 "smooth muscle tissue layer of ejaculatory duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0015717 ! smooth muscle tissue layer of ejaculatory duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25133 ! -property_value: IAO:0000589 "cranial or facial muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0015789 ! cranial or facial muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32723 ! -property_value: IAO:0000589 "autopod skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0015790 ! autopod skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37290 ! {source="MA:th"} -property_value: IAO:0000589 "digit connective tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0015791 ! digit connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29808 ! -property_value: IAO:0000589 "prostate gland dorsal lobe (embryonic mouse)" xsd:string -intersection_of: UBERON:0015792 ! prostate gland dorsal lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35430 ! -property_value: IAO:0000589 "induseum griseum (embryonic mouse)" xsd:string -intersection_of: UBERON:0015793 ! induseum griseum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17658 ! -property_value: IAO:0000589 "left lung lobar bronchus epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015794 ! left lung lobar bronchus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17666 ! -property_value: IAO:0000589 "right lung lobar bronchus epitheium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015795 ! right lung lobar bronchus epitheium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35498 ! -property_value: IAO:0000589 "liver blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0015796 ! liver blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35847 ! -property_value: IAO:0000589 "taenia tectum of brain (embryonic mouse)" xsd:string -intersection_of: UBERON:0015800 ! taenia tectum of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32800 ! -property_value: IAO:0000589 "ear epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015807 ! ear epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35957 ! -property_value: IAO:0000589 "eye epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015808 ! eye epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35673 ! -property_value: IAO:0000589 "middle ear epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015813 ! middle ear epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35956 ! -property_value: IAO:0000589 "outer ear epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015814 ! outer ear epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17790 ! -property_value: IAO:0000589 "cerebellum ventricular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0015828 ! cerebellum ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32921 ! -property_value: IAO:0000589 "forebrain ventricular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0015829 ! forebrain ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32922 ! -property_value: IAO:0000589 "foregut epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015833 ! foregut epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27255 ! -property_value: IAO:0000589 "duodenum lamina propria (embryonic mouse)" xsd:string -intersection_of: UBERON:0015834 ! duodenum lamina propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35429 ! -property_value: IAO:0000589 "incisor dental pulp (embryonic mouse)" xsd:string -intersection_of: UBERON:0015837 ! incisor dental pulp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35576 ! -property_value: IAO:0000589 "molar dental pulp (embryonic mouse)" xsd:string -intersection_of: UBERON:0015838 ! molar dental pulp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32878 ! -property_value: IAO:0000589 "molar epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0015839 ! molar epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32896 ! -property_value: IAO:0000589 "incisor dental lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0015840 ! incisor dental lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32879 ! -property_value: IAO:0000589 "molar dental lamina (embryonic mouse)" xsd:string -intersection_of: UBERON:0015841 ! molar dental lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32895 ! -property_value: IAO:0000589 "incisor enamel organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0015842 ! incisor enamel organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32880 ! -property_value: IAO:0000589 "molar enamel organ (embryonic mouse)" xsd:string -intersection_of: UBERON:0015843 ! molar enamel organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32882 ! -property_value: IAO:0000589 "molar dental papilla (embryonic mouse)" xsd:string -intersection_of: UBERON:0015844 ! molar dental papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32894 ! -property_value: IAO:0000589 "incisor mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0015846 ! incisor mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36491 ! -property_value: IAO:0000589 "ventral ectodermal ridge (embryonic mouse)" xsd:string -intersection_of: UBERON:0015855 ! ventral ectodermal ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37724 ! {source="MA:th"} -property_value: IAO:0000589 "retropharyngeal lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0015869 ! retropharyngeal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37354 ! {source="MA:th"} -property_value: IAO:0000589 "heel skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0015873 ! heel skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37723 ! {source="MA:th"} -property_value: IAO:0000589 "prescapular lymph node (embryonic mouse)" xsd:string -intersection_of: UBERON:0016382 ! prescapular lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37233 ! {source="MA:th"} -property_value: IAO:0000589 "chest wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0016435 ! chest wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37937 ! {source="MA:th"} -property_value: IAO:0000589 "periorbital skin (embryonic mouse)" xsd:string -intersection_of: UBERON:0016462 ! periorbital skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37952 ! {source="MA:th"} -property_value: IAO:0000589 "skin of forehead (embryonic mouse)" xsd:string -intersection_of: UBERON:0016475 ! skin of forehead -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36002 ! -property_value: IAO:0000589 "auditory system (embryonic mouse)" xsd:string -intersection_of: UBERON:0016490 ! auditory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36205 ! -property_value: IAO:0000589 "palmaris longus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0016493 ! palmaris longus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28625 ! -property_value: IAO:0000589 "muscularis mucosa of fundus of urinary bladder (embryonic mouse)" xsd:string -intersection_of: UBERON:0016500 ! muscularis mucosa of fundus of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27165 ! -property_value: IAO:0000589 "muscularis mucosae of fundus of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0016501 ! muscularis mucosae of fundus of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18382 ! -property_value: IAO:0000589 "stomach fundus lumen (embryonic mouse)" xsd:string -intersection_of: UBERON:0016502 ! stomach fundus lumen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31868 ! -property_value: IAO:0000589 "umbilical ring (embryonic mouse)" xsd:string -intersection_of: UBERON:0016504 ! umbilical ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18328 ! -property_value: IAO:0000589 "Mullerian tubercle (embryonic mouse)" xsd:string -intersection_of: UBERON:0016505 ! Mullerian tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31527 ! -property_value: IAO:0000589 "pelvic ganglion (embryonic mouse)" xsd:string -intersection_of: UBERON:0016508 ! pelvic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26047 ! -property_value: IAO:0000589 "cavity of right ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0016509 ! cavity of right ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30467 ! -property_value: IAO:0000589 "epithelium of male urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0016510 ! epithelium of male urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27163 ! -property_value: IAO:0000589 "lamina propria of fundus of stomach (embryonic mouse)" xsd:string -intersection_of: UBERON:0016511 ! lamina propria of fundus of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19080 ! -property_value: IAO:0000589 "lumen of duodenum (embryonic mouse)" xsd:string -intersection_of: UBERON:0016512 ! lumen of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26011 ! -property_value: IAO:0000589 "cavity of left atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0016513 ! cavity of left atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26038 ! -property_value: IAO:0000589 "cavity of left ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0016514 ! cavity of left ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30956 ! -property_value: IAO:0000589 "muscular layer of prostatic urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0016515 ! muscular layer of prostatic urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32303 ! -property_value: IAO:0000589 "lamina propria of prostatic urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0016516 ! lamina propria of prostatic urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18729 ! -property_value: IAO:0000589 "lumen of jejunum (embryonic mouse)" xsd:string -intersection_of: UBERON:0016517 ! lumen of jejunum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27121 ! -property_value: IAO:0000589 "muscularis mucosae of jejunum (embryonic mouse)" xsd:string -intersection_of: UBERON:0016519 ! muscularis mucosae of jejunum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30470 ! -property_value: IAO:0000589 "epithelium of female urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0016520 ! epithelium of female urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:26020 ! -property_value: IAO:0000589 "cavity of right atrium (embryonic mouse)" xsd:string -intersection_of: UBERON:0016522 ! cavity of right atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30950 ! -property_value: IAO:0000589 "muscle layer of spongiose part of urethra (embryonic mouse)" xsd:string -intersection_of: UBERON:0016524 ! muscle layer of spongiose part of urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35667 ! -property_value: IAO:0000589 "parietal cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0016530 ! parietal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35604 ! -property_value: IAO:0000589 "occipital cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0016540 ! occipital cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37632 ! {source="MA:th"} -property_value: IAO:0000589 "lamina VI of gray matter of spinal cord (embryonic mouse)" xsd:string -intersection_of: UBERON:0016577 ! lamina VI of gray matter of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19194 ! -property_value: IAO:0000589 "craniopharyngeal canal (embryonic mouse)" xsd:string -intersection_of: UBERON:0016881 ! craniopharyngeal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16042 ! -property_value: IAO:0000589 "entire extraembryonic component (embryonic mouse)" xsd:string -intersection_of: UBERON:0016887 ! entire extraembryonic component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36195 ! -property_value: IAO:0000589 "extensor pollicis brevis muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0017618 ! extensor pollicis brevis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37145 ! {source="MA:th"} -property_value: IAO:0000589 "external thoracic vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0017643 ! external thoracic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37159 ! {source="MA:th"} -property_value: IAO:0000589 "internal mammary vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0017646 ! internal mammary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:25130 ! -property_value: IAO:0000589 "prevertebral muscle of neck (embryonic mouse)" xsd:string -intersection_of: UBERON:0017647 ! prevertebral muscle of neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37984 ! {source="MA:th"} -property_value: IAO:0000589 "ventral body wall (embryonic mouse)" xsd:string -intersection_of: UBERON:0017648 ! ventral body wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37825 ! {source="MA:th"} -property_value: IAO:0000589 "cervical rib (embryonic mouse)" xsd:string -intersection_of: UBERON:0018144 ! cervical rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37093 ! {source="MA:th"} -property_value: IAO:0000589 "labyrinthine artery (embryonic mouse)" xsd:string -intersection_of: UBERON:0018231 ! labyrinthine artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18189 ! -property_value: IAO:0000589 "panniculus carnosus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0018240 ! panniculus carnosus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37931 ! {source="MA:th"} -property_value: IAO:0000589 "palatine bone horizontal plate (embryonic mouse)" xsd:string -intersection_of: UBERON:0018242 ! palatine bone horizontal plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18648 ! -property_value: IAO:0000589 "thyroid vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0018246 ! thyroid vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35578 ! -property_value: IAO:0000589 "skeletal musculature (embryonic mouse)" xsd:string -intersection_of: UBERON:0018254 ! skeletal musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19172 ! -property_value: IAO:0000589 "female inguinal ring (embryonic mouse)" xsd:string -intersection_of: UBERON:0018529 ! female inguinal ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29307 ! -property_value: IAO:0000589 "male inguinal ring (embryonic mouse)" xsd:string -intersection_of: UBERON:0018530 ! male inguinal ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19174 ! -property_value: IAO:0000589 "female superficial inguinal ring (embryonic mouse)" xsd:string -intersection_of: UBERON:0018531 ! female superficial inguinal ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:19173 ! -property_value: IAO:0000589 "female deep inguinal ring (embryonic mouse)" xsd:string -intersection_of: UBERON:0018532 ! female deep inguinal ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37891 ! {source="MA:th"} -property_value: IAO:0000589 "neck of fibula (embryonic mouse)" xsd:string -intersection_of: UBERON:0018673 ! neck of fibula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36227 ! -property_value: IAO:0000589 "gemellus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0019201 ! gemellus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36228 ! -property_value: IAO:0000589 "inferior gemellus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0019202 ! inferior gemellus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36229 ! -property_value: IAO:0000589 "superior gemellus muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0019203 ! superior gemellus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35869 ! -property_value: IAO:0000589 "tongue papilla epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0019206 ! tongue papilla epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36032 ! -property_value: IAO:0000589 "early embryo (embryonic mouse)" xsd:string -intersection_of: UBERON:0019248 ! early embryo -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16036 ! -property_value: IAO:0000589 "2-cell stage embryo (embryonic mouse)" xsd:string -intersection_of: UBERON:0019249 ! 2-cell stage embryo -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16037 ! -property_value: IAO:0000589 "4-8 cell stage embryo (embryonic mouse)" xsd:string -intersection_of: UBERON:0019250 ! 4-8 cell stage embryo -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31864 ! -property_value: IAO:0000589 "4-cell stage embryo (embryonic mouse)" xsd:string -intersection_of: UBERON:0019251 ! 4-cell stage embryo -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:31865 ! -property_value: IAO:0000589 "8-cell stage embryo (embryonic mouse)" xsd:string -intersection_of: UBERON:0019252 ! 8-cell stage embryo -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35107 ! -property_value: IAO:0000589 "accessory olfactory bulb external plexiform layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0019289 ! accessory olfactory bulb external plexiform layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35110 ! -property_value: IAO:0000589 "accessory olfactory bulb internal plexiform layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0019290 ! accessory olfactory bulb internal plexiform layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35952 ! -property_value: IAO:0000589 "sensory organ epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0019304 ! sensory organ epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35958 ! -property_value: IAO:0000589 "nose epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0019306 ! nose epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36578 ! -property_value: IAO:0000589 "intraorbital lacrimal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0019324 ! intraorbital lacrimal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36577 ! -property_value: IAO:0000589 "exorbital lacrimal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0019325 ! exorbital lacrimal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37067 ! {source="MA:th"} -property_value: IAO:0000589 "accessory XI nerve nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0020358 ! accessory XI nerve nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37386 ! {source="MA:th"} -property_value: IAO:0000589 "auricular blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0020550 ! auricular blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35694 ! -property_value: IAO:0000589 "posterior amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0022229 ! posterior amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35745 ! -property_value: IAO:0000589 "retrohippocampal region (embryonic mouse)" xsd:string -intersection_of: UBERON:0022230 ! retrohippocampal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35758 ! -property_value: IAO:0000589 "secondary visual cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0022232 ! secondary visual cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18542 ! -property_value: IAO:0000589 "pineal recess of third ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0022283 ! pineal recess of third ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35464 ! -property_value: IAO:0000589 "lacrimal gland bud (embryonic mouse)" xsd:string -intersection_of: UBERON:0022284 ! lacrimal gland bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35799 ! -property_value: IAO:0000589 "spiral prominence of cochlear duct (embryonic mouse)" xsd:string -intersection_of: UBERON:0028194 ! spiral prominence of cochlear duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35124 ! -property_value: IAO:0000589 "amygdalohippocampal area (embryonic mouse)" xsd:string -intersection_of: UBERON:0034673 ! amygdalohippocampal area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35128 ! {source="MA"} -property_value: IAO:0000589 "amygdalohippocampal area (embryonic mouse)" xsd:string -intersection_of: UBERON:0034673 ! amygdalohippocampal area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17789 ! -property_value: IAO:0000589 "cerebellum marginal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0034708 ! cerebellum marginal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32916 ! -property_value: IAO:0000589 "hindbrain marginal layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0034709 ! hindbrain marginal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:17585 ! -property_value: IAO:0000589 "spinal cord ventricular layer (embryonic mouse)" xsd:string -intersection_of: UBERON:0034710 ! spinal cord ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35261 ! -property_value: IAO:0000589 "cortical preplate (embryonic mouse)" xsd:string -intersection_of: UBERON:0034711 ! cortical preplate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37957 ! {source="MA:th"} -property_value: IAO:0000589 "autonomic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0034728 ! autonomic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37958 ! {source="MA:th"} -property_value: IAO:0000589 "sympathetic nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0034729 ! sympathetic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29790 ! -property_value: IAO:0000589 "bulbourethral gland epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0034770 ! bulbourethral gland epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37905 ! {source="MA:th"} -property_value: IAO:0000589 "margin of eyelid (embryonic mouse)" xsd:string -intersection_of: UBERON:0034772 ! margin of eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32796 ! -property_value: IAO:0000589 "future pituitary gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0034875 ! future pituitary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16647 ! -property_value: IAO:0000589 "future neurohypophysis (embryonic mouse)" xsd:string -intersection_of: UBERON:0034876 ! future neurohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27991 ! -property_value: IAO:0000589 "juxtaglomerular arteriole (embryonic mouse)" xsd:string -intersection_of: UBERON:0034884 ! juxtaglomerular arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35432 ! -property_value: IAO:0000589 "insular cortex (embryonic mouse)" xsd:string -intersection_of: UBERON:0034891 ! insular cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37656 ! {source="MA:th"} -property_value: IAO:0000589 "sacral sympathetic nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0034902 ! sacral sympathetic nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37920 ! {source="MA:th"} -property_value: IAO:0000589 "anterior pretectal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0034918 ! anterior pretectal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35125 ! -property_value: IAO:0000589 "amygdalopiriform transition area (embryonic mouse)" xsd:string -intersection_of: UBERON:0034989 ! amygdalopiriform transition area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35128 ! -property_value: IAO:0000589 "anterior cortical amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0034991 ! anterior cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35165 ! -property_value: IAO:0000589 "basal ventral medial nucleus of thalamus (embryonic mouse)" xsd:string -intersection_of: UBERON:0034993 ! basal ventral medial nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32917 ! -property_value: IAO:0000589 "hindbrain cortical intermediate zone (embryonic mouse)" xsd:string -intersection_of: UBERON:0034994 ! hindbrain cortical intermediate zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32907 ! -property_value: IAO:0000589 "jaw mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0034995 ! jaw mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35454 ! -property_value: IAO:0000589 "jaw mesenchyme (embryonic mouse)" xsd:string -intersection_of: UBERON:0034995 ! jaw mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:28322 ! -property_value: IAO:0000589 "outer renal medulla loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0034996 ! outer renal medulla loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35460 ! -property_value: IAO:0000589 "renal medulla loop of Henle (embryonic mouse)" xsd:string -intersection_of: UBERON:0034997 ! renal medulla loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35699 ! -property_value: IAO:0000589 "posterolateral cortical amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0034999 ! posterolateral cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35700 ! -property_value: IAO:0000589 "posteromedial cortical amygdaloid nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0035001 ! posteromedial cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35702 ! -property_value: IAO:0000589 "preputial swelling (embryonic mouse)" xsd:string -intersection_of: UBERON:0035004 ! preputial swelling -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:29220 ! -property_value: IAO:0000589 "preputial swelling of male (embryonic mouse)" xsd:string -intersection_of: UBERON:0035005 ! preputial swelling of male -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30478 ! -property_value: IAO:0000589 "preputial swelling of female (embryonic mouse)" xsd:string -intersection_of: UBERON:0035006 ! preputial swelling of female -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35890 ! -property_value: IAO:0000589 "nasal concha cartilage (embryonic mouse)" xsd:string -intersection_of: UBERON:0035007 ! nasal concha cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35852 ! -property_value: IAO:0000589 "temporal cortex association area (embryonic mouse)" xsd:string -intersection_of: UBERON:0035013 ! temporal cortex association area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37611 ! {source="MA:th"} -property_value: IAO:0000589 "inferior olive, beta nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0035019 ! inferior olive, beta nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37798 ! {source="MA:th"} -property_value: IAO:0000589 "left vagus X nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0035020 ! left vagus X nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37799 ! {source="MA:th"} -property_value: IAO:0000589 "right vagus X nerve trunk (embryonic mouse)" xsd:string -intersection_of: UBERON:0035021 ! right vagus X nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37634 ! {source="MA:th"} -property_value: IAO:0000589 "lateral spinal nucleus (embryonic mouse)" xsd:string -intersection_of: UBERON:0035024 ! lateral spinal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35603 ! -property_value: IAO:0000589 "abdominal oblique muscle (embryonic mouse)" xsd:string -intersection_of: UBERON:0035032 ! abdominal oblique muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32758 ! -property_value: IAO:0000589 "eyelid epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0035034 ! eyelid epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35959 ! -property_value: IAO:0000589 "naris epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0035036 ! naris epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32904 ! -property_value: IAO:0000589 "jaw epithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0035037 ! jaw epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37934 ! {source="MA:th"} -property_value: IAO:0000589 "parotid gland myoepithelium (embryonic mouse)" xsd:string -intersection_of: UBERON:0035076 ! parotid gland myoepithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37894 ! {source="MA:th"} -property_value: IAO:0000589 "lateral nasal gland (embryonic mouse)" xsd:string -intersection_of: UBERON:0035077 ! lateral nasal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:18923 ! -property_value: IAO:0000589 "perineal body smooth muscle muscle tissue (embryonic mouse)" xsd:string -intersection_of: UBERON:0035103 ! perineal body smooth muscle muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32631 ! -property_value: IAO:0000589 "manus cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0035128 ! manus cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:32657 ! -property_value: IAO:0000589 "pes cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0035129 ! pes cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35979 ! -property_value: IAO:0000589 "auditory ossicle cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0035131 ! auditory ossicle cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35982 ! -property_value: IAO:0000589 "auditory ossicle pre-cartilage element (embryonic mouse)" xsd:string -intersection_of: UBERON:0035132 ! auditory ossicle pre-cartilage element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36342 ! -property_value: IAO:0000589 "preputial space of male (embryonic mouse)" xsd:string -intersection_of: UBERON:0035142 ! preputial space of male -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37142 ! {source="MA:th"} -property_value: IAO:0000589 "dorsal cerebral vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0035151 ! dorsal cerebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36513 ! -property_value: IAO:0000589 "nerve innervating pinna (embryonic mouse)" xsd:string -intersection_of: UBERON:0035648 ! nerve innervating pinna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35057 ! -property_value: IAO:0000589 "nerve of penis (embryonic mouse)" xsd:string -intersection_of: UBERON:0035649 ! nerve of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35044 ! -property_value: IAO:0000589 "nerve of clitoris (embryonic mouse)" xsd:string -intersection_of: UBERON:0035650 ! nerve of clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36511 ! -property_value: IAO:0000589 "fibular nerve (embryonic mouse)" xsd:string -intersection_of: UBERON:0035652 ! fibular nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37228 ! {source="MA:th"} -property_value: IAO:0000589 "paraumbilical vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0035655 ! paraumbilical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37133 ! {source="MA:th"} -property_value: IAO:0000589 "anterior facial vein (embryonic mouse)" xsd:string -intersection_of: UBERON:0035675 ! anterior facial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36039 ! -property_value: IAO:0000589 "primary yolk sac cavity (embryonic mouse)" xsd:string -intersection_of: UBERON:0035677 ! primary yolk sac cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:16137 ! -property_value: IAO:0000589 "peritoneal sac (embryonic mouse)" xsd:string -intersection_of: UBERON:0035820 ! peritoneal sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37425 ! {source="MA:th"} -property_value: IAO:0000589 "apical region of heart ventricle (embryonic mouse)" xsd:string -intersection_of: UBERON:0035837 ! apical region of heart ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27039 ! -property_value: IAO:0000589 "esophagogastric junction mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0035838 ! esophagogastric junction mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27041 ! -property_value: IAO:0000589 "esophagogastric junction submucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0035839 ! esophagogastric junction submucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:27051 ! -property_value: IAO:0000589 "esophagogastric junction muscularis mucosa (embryonic mouse)" xsd:string -intersection_of: UBERON:0035840 ! esophagogastric junction muscularis mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37987 ! {source="MA:th"} -property_value: IAO:0000589 "wall of blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0035965 ! wall of blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37969 ! {source="MA:th"} -property_value: IAO:0000589 "subglottis (embryonic mouse)" xsd:string -intersection_of: UBERON:0036068 ! subglottis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37872 ! {source="MA:th"} -property_value: IAO:0000589 "glymphatic system (embryonic mouse)" xsd:string -intersection_of: UBERON:0036145 ! glymphatic system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:30807 ! -property_value: IAO:0000589 "penis blood vessel (embryonic mouse)" xsd:string -intersection_of: UBERON:0036269 ! penis blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37746 ! {source="MA:th"} -property_value: IAO:0000589 "skin of snout (embryonic mouse)" xsd:string -intersection_of: UBERON:1000015 ! skin of snout -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:36657 ! -property_value: IAO:0000589 "skin of face (embryonic mouse)" xsd:string -intersection_of: UBERON:1000021 ! skin of face -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:37808 ! {source="MA:th"} -property_value: IAO:0000589 "Zymbal's gland (embryonic mouse)" xsd:string -intersection_of: UBERON:1000022 ! Zymbal's gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:35805 ! -property_value: IAO:0000589 "spleen pulp (embryonic mouse)" xsd:string -intersection_of: UBERON:1000023 ! spleen pulp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: EMAPA:ENTITY -name: EMAPA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-emapa.owl b/src/ontology/bridge/uberon-bridge-to-emapa.owl index 3171bde0d0..d60ba213f1 100644 --- a/src/ontology/bridge/uberon-bridge-to-emapa.owl +++ b/src/ontology/bridge/uberon-bridge-to-emapa.owl @@ -7,22 +7,15 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Anne Niknejad - Aurelie Comte - Uberon editors - vHOG editors - Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and Uberon - Uberon bridge to emapa - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Anne Niknejad + Aurelie Comte + Uberon editors + vHOG editors + Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and Uberon. + Uberon bridge to emapa @@ -38,235 +31,27 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -283,42 +68,7 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -347,8 +97,7 @@ - anatomical structure (embryonic mouse) - EMAPA:0 + anatomical structure (embryonic mouse) @@ -367,8 +116,7 @@ - zona pellucida (embryonic mouse) - EMAPA:16035 + zona pellucida (embryonic mouse) @@ -387,8 +135,7 @@ - 2-cell stage embryo (embryonic mouse) - EMAPA:16036 + 2-cell stage embryo (embryonic mouse) @@ -407,8 +154,7 @@ - 4-8 cell stage embryo (embryonic mouse) - EMAPA:16037 + 4-8 cell stage embryo (embryonic mouse) @@ -427,8 +173,7 @@ - embryo (embryonic mouse) - EMAPA:16039 + embryo (embryonic mouse) @@ -447,8 +192,7 @@ - inner cell mass (embryonic mouse) - EMAPA:16041 + inner cell mass (embryonic mouse) @@ -467,8 +211,7 @@ - entire extraembryonic component (embryonic mouse) - EMAPA:16042 + entire extraembryonic component (embryonic mouse) @@ -487,8 +230,7 @@ - blastocele (embryonic mouse) - EMAPA:16044 + blastocele (embryonic mouse) @@ -507,8 +249,7 @@ - trophectoderm (embryonic mouse) - EMAPA:16046 + trophectoderm (embryonic mouse) @@ -527,8 +268,7 @@ - mural trophectoderm (embryonic mouse) - EMAPA:16047 + mural trophectoderm (embryonic mouse) @@ -547,8 +287,7 @@ - polar trophectoderm (embryonic mouse) - EMAPA:16048 + polar trophectoderm (embryonic mouse) @@ -567,8 +306,7 @@ - inner cell mass derived epiblast (embryonic mouse) - EMAPA:16050 + inner cell mass derived epiblast (embryonic mouse) @@ -587,8 +325,7 @@ - inner cell mass derived hypoblast (embryonic mouse) - EMAPA:16051 + inner cell mass derived hypoblast (embryonic mouse) @@ -607,8 +344,7 @@ - extraembryonic endoderm (embryonic mouse) - EMAPA:16052 + extraembryonic endoderm (embryonic mouse) @@ -627,8 +363,7 @@ - parietal endoderm (embryonic mouse) - EMAPA:16053 + parietal endoderm (embryonic mouse) @@ -647,8 +382,7 @@ - extraembryonic cavity (embryonic mouse) - EMAPA:16054 + extraembryonic cavity (embryonic mouse) @@ -667,8 +401,7 @@ - yolk sac cavity (embryonic mouse) - EMAPA:16055 + yolk sac cavity (embryonic mouse) @@ -687,8 +420,7 @@ - intermediate mesoderm (embryonic mouse) - EMAPA:16056 + intermediate mesoderm (embryonic mouse) @@ -707,8 +439,7 @@ - Reichert's membrane (embryonic mouse) - EMAPA:16057 + Reichert's membrane (embryonic mouse) @@ -727,8 +458,7 @@ - visceral endoderm (embryonic mouse) - EMAPA:16058 + visceral endoderm (embryonic mouse) @@ -747,8 +477,7 @@ - ectoplacental cone (embryonic mouse) - EMAPA:16059 + ectoplacental cone (embryonic mouse) @@ -767,8 +496,7 @@ - serous sac (embryonic mouse) - EMAPA:16060 + serous sac (embryonic mouse) @@ -787,8 +515,7 @@ - endoderm (embryonic mouse) - EMAPA:16062 + endoderm (embryonic mouse) @@ -807,8 +534,7 @@ - extraembryonic ectoderm (embryonic mouse) - EMAPA:16065 + extraembryonic ectoderm (embryonic mouse) @@ -827,8 +553,7 @@ - cytotrophoblast (embryonic mouse) - EMAPA:16067 + cytotrophoblast (embryonic mouse) @@ -847,8 +572,7 @@ - syncytiotrophoblast (embryonic mouse) - EMAPA:16068 + syncytiotrophoblast (embryonic mouse) @@ -867,8 +591,7 @@ - ectoderm (embryonic mouse) - EMAPA:16069 + ectoderm (embryonic mouse) @@ -887,8 +610,7 @@ - definitive endoderm (embryonic mouse) - EMAPA:16070 + definitive endoderm (embryonic mouse) @@ -907,8 +629,7 @@ - primitive streak (embryonic mouse) - EMAPA:16072 + primitive streak (embryonic mouse) @@ -927,8 +648,7 @@ - neurectoderm (embryonic mouse) - EMAPA:16073 + neurectoderm (embryonic mouse) @@ -947,8 +667,7 @@ - non-neural ectoderm (embryonic mouse) - EMAPA:16074 + non-neural ectoderm (embryonic mouse) @@ -967,8 +686,7 @@ - primitive knot (embryonic mouse) - EMAPA:16075 + primitive knot (embryonic mouse) @@ -987,8 +705,7 @@ - amniotic fold (embryonic mouse) - EMAPA:16076 + amniotic fold (embryonic mouse) @@ -1007,8 +724,7 @@ - amniotic cavity (embryonic mouse) - EMAPA:16079 + amniotic cavity (embryonic mouse) @@ -1027,8 +743,7 @@ - ectoplacental cavity (embryonic mouse) - EMAPA:16080 + ectoplacental cavity (embryonic mouse) @@ -1047,8 +762,7 @@ - extraembryonic coelomic cavity (embryonic mouse) - EMAPA:16081 + extraembryonic coelomic cavity (embryonic mouse) @@ -1067,8 +781,7 @@ - mesoderm (embryonic mouse) - EMAPA:16083 + mesoderm (embryonic mouse) @@ -1087,8 +800,7 @@ - yolk sac (embryonic mouse) - EMAPA:16085 + yolk sac (embryonic mouse) @@ -1107,8 +819,7 @@ - yolk sac endoderm (embryonic mouse) - EMAPA:16086 + yolk sac endoderm (embryonic mouse) @@ -1127,8 +838,7 @@ - mesenchyme of yolk sac (embryonic mouse) - EMAPA:16087 + mesenchyme of yolk sac (embryonic mouse) @@ -1147,8 +857,7 @@ - intraembryonic coelom (embryonic mouse) - EMAPA:16088 + intraembryonic coelom (embryonic mouse) @@ -1167,8 +876,7 @@ - future brain (embryonic mouse) - EMAPA:16089 + future brain (embryonic mouse) @@ -1187,8 +895,7 @@ - cephalic neural fold (embryonic mouse) - EMAPA:16090 + cephalic neural fold (embryonic mouse) @@ -1207,8 +914,7 @@ - cranial neural crest (embryonic mouse) - EMAPA:16091 + cranial neural crest (embryonic mouse) @@ -1227,8 +933,7 @@ - future spinal cord (embryonic mouse) - EMAPA:16092 + future spinal cord (embryonic mouse) @@ -1247,8 +952,7 @@ - external ectoderm (embryonic mouse) - EMAPA:16096 + external ectoderm (embryonic mouse) @@ -1267,30 +971,7 @@ - entire embryonic mesenchyme (embryonic mouse) - EMAPA:16097 - - - - - - - - - - - - - - - - - - - - head connective tissue (embryonic mouse) - head mesenchyme (embryonic mouse) - EMAPA:16098 + entire embryonic mesenchyme (embryonic mouse) @@ -1309,8 +990,7 @@ - head mesenchyme from mesoderm (embryonic mouse) - EMAPA:16099 + head mesenchyme from mesoderm (embryonic mouse) @@ -1329,8 +1009,7 @@ - notochordal plate (embryonic mouse) - EMAPA:16101 + notochordal plate (embryonic mouse) @@ -1349,8 +1028,7 @@ - notochordal process (embryonic mouse) - EMAPA:16102 + notochordal process (embryonic mouse) @@ -1369,8 +1047,7 @@ - anatomical system (embryonic mouse) - EMAPA:16103 + anatomical system (embryonic mouse) @@ -1389,8 +1066,7 @@ - cardiovascular system (embryonic mouse) - EMAPA:16104 + cardiovascular system (embryonic mouse) @@ -1409,8 +1085,7 @@ - heart (embryonic mouse) - EMAPA:16105 + heart (embryonic mouse) @@ -1429,8 +1104,7 @@ - cardiogenic plate (embryonic mouse) - EMAPA:16106 + cardiogenic plate (embryonic mouse) @@ -1449,8 +1123,7 @@ - allantois (embryonic mouse) - EMAPA:16107 + allantois (embryonic mouse) @@ -1469,8 +1142,7 @@ - amnion (embryonic mouse) - EMAPA:16109 + amnion (embryonic mouse) @@ -1489,8 +1161,7 @@ - amniotic ectoderm (embryonic mouse) - EMAPA:16110 + amniotic ectoderm (embryonic mouse) @@ -1509,8 +1180,7 @@ - amniotic mesoderm (embryonic mouse) - EMAPA:16111 + amniotic mesoderm (embryonic mouse) @@ -1529,8 +1199,7 @@ - chorion membrane (embryonic mouse) - EMAPA:16112 + chorion membrane (embryonic mouse) @@ -1549,8 +1218,7 @@ - chorionic ectoderm (embryonic mouse) - EMAPA:16113 + chorionic ectoderm (embryonic mouse) @@ -1569,30 +1237,7 @@ - chorionic mesenchyme (embryonic mouse) - EMAPA:16114 - - - - - - - - - - - - - - - - - - - - mesoderm blood island (embryonic mouse) - yolk sac blood island (embryonic mouse) - EMAPA:16115 + chorionic mesenchyme (embryonic mouse) @@ -1611,8 +1256,7 @@ - pharyngeal arch (embryonic mouse) - EMAPA:16117 + pharyngeal arch (embryonic mouse) @@ -1631,8 +1275,7 @@ - pharyngeal arch 1 (embryonic mouse) - EMAPA:16118 + pharyngeal arch 1 (embryonic mouse) @@ -1651,8 +1294,7 @@ - 1st arch pharyngeal cleft (embryonic mouse) - EMAPA:16119 + 1st arch pharyngeal cleft (embryonic mouse) @@ -1671,8 +1313,7 @@ - pharyngeal membrane of 1st arch (embryonic mouse) - EMAPA:16121 + pharyngeal membrane of 1st arch (embryonic mouse) @@ -1691,8 +1332,7 @@ - pharyngeal pouch 1 (embryonic mouse) - EMAPA:16124 + pharyngeal pouch 1 (embryonic mouse) @@ -1711,8 +1351,7 @@ - pharyngeal pouch 1 (embryonic mouse) - EMAPA:16125 + pharyngeal pouch 1 (embryonic mouse) @@ -1731,8 +1370,7 @@ - 1st arch mesenchyme (embryonic mouse) - EMAPA:16128 + 1st arch mesenchyme (embryonic mouse) @@ -1751,8 +1389,7 @@ - 1st arch mesenchyme from neural crest (embryonic mouse) - EMAPA:16129 + 1st arch mesenchyme from neural crest (embryonic mouse) @@ -1771,8 +1408,7 @@ - 1st arch mesenchyme from head mesenchyme (embryonic mouse) - EMAPA:16130 + 1st arch mesenchyme from head mesenchyme (embryonic mouse) @@ -1791,8 +1427,7 @@ - pericardial cavity (embryonic mouse) - EMAPA:16131 + pericardial cavity (embryonic mouse) @@ -1811,30 +1446,7 @@ - pericardial cavity (embryonic mouse) - EMAPA:16132 - - - - - - - - - - - - - - - - - - - - mesothelium of serous pericardium (embryonic mouse) - pericardium (embryonic mouse) - EMAPA:16133 + pericardial cavity (embryonic mouse) @@ -1853,8 +1465,7 @@ - peritoneal sac (embryonic mouse) - EMAPA:16137 + peritoneal sac (embryonic mouse) @@ -1873,8 +1484,7 @@ - peritoneal cavity (embryonic mouse) - EMAPA:16138 + peritoneal cavity (embryonic mouse) @@ -1893,8 +1503,7 @@ - peritoneal cavity mesothelium (embryonic mouse) - EMAPA:16139 + peritoneal cavity mesothelium (embryonic mouse) @@ -1913,8 +1522,7 @@ - presumptive midbrain (embryonic mouse) - EMAPA:16140 + presumptive midbrain (embryonic mouse) @@ -1933,8 +1541,7 @@ - rhombomere (embryonic mouse) - EMAPA:16148 + rhombomere (embryonic mouse) @@ -1953,8 +1560,7 @@ - spinal cord neural crest (embryonic mouse) - EMAPA:16163 + spinal cord neural crest (embryonic mouse) @@ -1973,8 +1579,7 @@ - neural tube (embryonic mouse) - EMAPA:16164 + neural tube (embryonic mouse) @@ -1993,8 +1598,7 @@ - floor plate of neural tube (embryonic mouse) - EMAPA:16165 + floor plate of neural tube (embryonic mouse) @@ -2013,8 +1617,7 @@ - neural tube lateral wall (embryonic mouse) - EMAPA:16166 + neural tube lateral wall (embryonic mouse) @@ -2033,8 +1636,7 @@ - neural tube lumen (embryonic mouse) - EMAPA:16167 + neural tube lumen (embryonic mouse) @@ -2053,8 +1655,7 @@ - roof plate (embryonic mouse) - EMAPA:16168 + roof plate (embryonic mouse) @@ -2073,8 +1674,7 @@ - mesenchyme derived from head neural crest (embryonic mouse) - EMAPA:16169 + mesenchyme derived from head neural crest (embryonic mouse) @@ -2093,8 +1693,7 @@ - trigeminal neural crest (embryonic mouse) - EMAPA:16170 + trigeminal neural crest (embryonic mouse) @@ -2113,8 +1712,7 @@ - head paraxial mesoderm (embryonic mouse) - EMAPA:16171 + head paraxial mesoderm (embryonic mouse) @@ -2133,8 +1731,7 @@ - head somite (embryonic mouse) - EMAPA:16172 + head somite (embryonic mouse) @@ -2153,8 +1750,7 @@ - trunk mesenchyme (embryonic mouse) - EMAPA:16177 + trunk mesenchyme (embryonic mouse) @@ -2173,8 +1769,7 @@ - intermediate mesoderm (embryonic mouse) - EMAPA:16178 + intermediate mesoderm (embryonic mouse) @@ -2193,8 +1788,7 @@ - lateral plate mesoderm (embryonic mouse) - EMAPA:16179 + lateral plate mesoderm (embryonic mouse) @@ -2213,8 +1807,7 @@ - somatopleure (embryonic mouse) - EMAPA:16180 + somatopleure (embryonic mouse) @@ -2233,8 +1826,7 @@ - splanchnopleure (embryonic mouse) - EMAPA:16181 + splanchnopleure (embryonic mouse) @@ -2253,8 +1845,7 @@ - mesenchyme derived from trunk neural crest (embryonic mouse) - EMAPA:16182 + mesenchyme derived from trunk neural crest (embryonic mouse) @@ -2273,8 +1864,7 @@ - paraxial mesoderm (embryonic mouse) - EMAPA:16183 + paraxial mesoderm (embryonic mouse) @@ -2293,8 +1883,7 @@ - trunk somite (embryonic mouse) - EMAPA:16184 + trunk somite (embryonic mouse) @@ -2313,8 +1902,7 @@ - presomitic mesoderm (embryonic mouse) - EMAPA:16189 + presomitic mesoderm (embryonic mouse) @@ -2333,8 +1921,7 @@ - notochord (embryonic mouse) - EMAPA:16191 + notochord (embryonic mouse) @@ -2353,8 +1940,7 @@ - sensory system (embryonic mouse) - EMAPA:16192 + sensory system (embryonic mouse) @@ -2373,8 +1959,7 @@ - ear (embryonic mouse) - EMAPA:16193 + ear (embryonic mouse) @@ -2393,8 +1978,7 @@ - internal ear (embryonic mouse) - EMAPA:16194 + internal ear (embryonic mouse) @@ -2413,8 +1997,7 @@ - otic placode (embryonic mouse) - EMAPA:16195 + otic placode (embryonic mouse) @@ -2433,8 +2016,7 @@ - associated mesenchyme of otic placode (embryonic mouse) - EMAPA:16196 + associated mesenchyme of otic placode (embryonic mouse) @@ -2453,8 +2035,7 @@ - epithelium of otic placode (embryonic mouse) - EMAPA:16197 + epithelium of otic placode (embryonic mouse) @@ -2473,8 +2054,7 @@ - camera-type eye (embryonic mouse) - EMAPA:16198 + camera-type eye (embryonic mouse) @@ -2493,8 +2073,7 @@ - optic pit (embryonic mouse) - EMAPA:16199 + optic pit (embryonic mouse) @@ -2513,8 +2092,7 @@ - arterial system (embryonic mouse) - EMAPA:16201 + arterial system (embryonic mouse) @@ -2533,8 +2111,7 @@ - pharyngeal arch artery 1 (embryonic mouse) - EMAPA:16202 + pharyngeal arch artery 1 (embryonic mouse) @@ -2553,8 +2130,7 @@ - pharyngeal arch artery 2 (embryonic mouse) - EMAPA:16203 + pharyngeal arch artery 2 (embryonic mouse) @@ -2573,8 +2149,7 @@ - left dorsal aorta (embryonic mouse) - EMAPA:16205 + left dorsal aorta (embryonic mouse) @@ -2593,8 +2168,7 @@ - right dorsal aorta (embryonic mouse) - EMAPA:16206 + right dorsal aorta (embryonic mouse) @@ -2613,30 +2187,7 @@ - vitelline artery (embryonic mouse) - EMAPA:16207 - - - - - - - - - - - - - - - - - - - - mesentery of heart (embryonic mouse) - mesocardium (embryonic mouse) - EMAPA:16212 + vitelline artery (embryonic mouse) @@ -2655,8 +2206,7 @@ - dorsal mesocardium (embryonic mouse) - EMAPA:16213 + dorsal mesocardium (embryonic mouse) @@ -2675,8 +2225,7 @@ - transverse pericardial sinus (embryonic mouse) - EMAPA:16214 + transverse pericardial sinus (embryonic mouse) @@ -2695,8 +2244,7 @@ - primitive heart tube (embryonic mouse) - EMAPA:16215 + primitive heart tube (embryonic mouse) @@ -2715,8 +2263,7 @@ - sinus venosus (embryonic mouse) - EMAPA:16237 + sinus venosus (embryonic mouse) @@ -2735,8 +2282,7 @@ - left horn of sinus venosus (embryonic mouse) - EMAPA:16238 + left horn of sinus venosus (embryonic mouse) @@ -2755,8 +2301,7 @@ - right horn of sinus venosus (embryonic mouse) - EMAPA:16239 + right horn of sinus venosus (embryonic mouse) @@ -2775,8 +2320,7 @@ - venous system (embryonic mouse) - EMAPA:16240 + venous system (embryonic mouse) @@ -2795,8 +2339,7 @@ - anterior cardinal vein (embryonic mouse) - EMAPA:16241 + anterior cardinal vein (embryonic mouse) @@ -2815,8 +2358,7 @@ - primary head vein (embryonic mouse) - EMAPA:16242 + primary head vein (embryonic mouse) @@ -2835,8 +2377,7 @@ - umbilical vein (embryonic mouse) - EMAPA:16243 + umbilical vein (embryonic mouse) @@ -2855,8 +2396,7 @@ - viscus (embryonic mouse) - EMAPA:16245 + viscus (embryonic mouse) @@ -2875,8 +2415,7 @@ - alimentary part of gastrointestinal system (embryonic mouse) - EMAPA:16246 + alimentary part of gastrointestinal system (embryonic mouse) @@ -2895,8 +2434,7 @@ - digestive tract (embryonic mouse) - EMAPA:16247 + digestive tract (embryonic mouse) @@ -2915,8 +2453,7 @@ - midgut (embryonic mouse) - EMAPA:16255 + midgut (embryonic mouse) @@ -2935,8 +2472,7 @@ - associated mesenchyme of midgut (embryonic mouse) - EMAPA:16256 + associated mesenchyme of midgut (embryonic mouse) @@ -2955,8 +2491,7 @@ - endoderm of midgut (embryonic mouse) - EMAPA:16257 + endoderm of midgut (embryonic mouse) @@ -2975,8 +2510,7 @@ - mouth-foregut junction (embryonic mouse) - EMAPA:16258 + mouth-foregut junction (embryonic mouse) @@ -2995,8 +2529,7 @@ - buccopharyngeal membrane (embryonic mouse) - EMAPA:16259 + buccopharyngeal membrane (embryonic mouse) @@ -3015,8 +2548,7 @@ - ectoderm of buccopharyngeal membrane (embryonic mouse) - EMAPA:16260 + ectoderm of buccopharyngeal membrane (embryonic mouse) @@ -3035,8 +2567,7 @@ - endoderm of buccopharyngeal membrane (embryonic mouse) - EMAPA:16261 + endoderm of buccopharyngeal membrane (embryonic mouse) @@ -3055,8 +2586,7 @@ - mouth (embryonic mouse) - EMAPA:16262 + mouth (embryonic mouse) @@ -3075,8 +2605,7 @@ - stomodeum (embryonic mouse) - EMAPA:16263 + stomodeum (embryonic mouse) @@ -3095,8 +2624,7 @@ - amniotic mesoderm (embryonic mouse) - EMAPA:16265 + amniotic mesoderm (embryonic mouse) @@ -3115,8 +2643,7 @@ - chorionic mesenchyme (embryonic mouse) - EMAPA:16266 + chorionic mesenchyme (embryonic mouse) @@ -3135,8 +2662,7 @@ - mesenchyme of yolk sac (embryonic mouse) - EMAPA:16267 + mesenchyme of yolk sac (embryonic mouse) @@ -3155,8 +2681,7 @@ - mesenchyme derived from head neural crest (embryonic mouse) - EMAPA:16271 + mesenchyme derived from head neural crest (embryonic mouse) @@ -3175,8 +2700,7 @@ - pharyngeal arch 2 (embryonic mouse) - EMAPA:16272 + pharyngeal arch 2 (embryonic mouse) @@ -3195,8 +2719,7 @@ - pharyngeal membrane of 2nd arch (embryonic mouse) - EMAPA:16273 + pharyngeal membrane of 2nd arch (embryonic mouse) @@ -3215,8 +2738,7 @@ - 2nd arch endoderm (embryonic mouse) - EMAPA:16274 + 2nd arch endoderm (embryonic mouse) @@ -3235,30 +2757,7 @@ - pharyngeal pouch 2 (embryonic mouse) - EMAPA:16275 - - - - - - - - - - - - - - - - - - - - 2nd arch endoderm (embryonic mouse) - pharyngeal pouch 2 (embryonic mouse) - EMAPA:16276 + pharyngeal pouch 2 (embryonic mouse) @@ -3277,8 +2776,7 @@ - 2nd arch ectoderm (embryonic mouse) - EMAPA:16277 + 2nd arch ectoderm (embryonic mouse) @@ -3297,8 +2795,7 @@ - 2nd arch endoderm (embryonic mouse) - EMAPA:16278 + 2nd arch endoderm (embryonic mouse) @@ -3317,8 +2814,7 @@ - 2nd arch mesenchyme (embryonic mouse) - EMAPA:16279 + 2nd arch mesenchyme (embryonic mouse) @@ -3337,8 +2833,7 @@ - 2nd arch mesenchyme from head mesenchyme (embryonic mouse) - EMAPA:16280 + 2nd arch mesenchyme from head mesenchyme (embryonic mouse) @@ -3357,8 +2852,7 @@ - 2nd arch mesenchyme from neural crest (embryonic mouse) - EMAPA:16281 + 2nd arch mesenchyme from neural crest (embryonic mouse) @@ -3377,8 +2871,7 @@ - pericardio-peritoneal canal (embryonic mouse) - EMAPA:16282 + pericardio-peritoneal canal (embryonic mouse) @@ -3397,8 +2890,7 @@ - cavity of pericardio-peritoneal canal (embryonic mouse) - EMAPA:16283 + cavity of pericardio-peritoneal canal (embryonic mouse) @@ -3417,8 +2909,7 @@ - pericardio-peritoneal canal mesothelium (embryonic mouse) - EMAPA:16284 + pericardio-peritoneal canal mesothelium (embryonic mouse) @@ -3437,30 +2928,7 @@ - rhombomere 1 (embryonic mouse) - EMAPA:16290 - - - - - - - - - - - - - - - - - - - - floor plate of metencephalon (embryonic mouse) - rhombomere 1 floor plate (embryonic mouse) - EMAPA:16291 + rhombomere 1 (embryonic mouse) @@ -3479,30 +2947,7 @@ - rhombomere 2 (embryonic mouse) - EMAPA:16293 - - - - - - - - - - - - - - - - - - - - floor plate of metencephalon (embryonic mouse) - rhombomere 2 floor plate (embryonic mouse) - EMAPA:16294 + rhombomere 2 (embryonic mouse) @@ -3521,8 +2966,7 @@ - rhombomere 3 (embryonic mouse) - EMAPA:16297 + rhombomere 3 (embryonic mouse) @@ -3541,8 +2985,7 @@ - rhombomere 3 floor plate (embryonic mouse) - EMAPA:16298 + rhombomere 3 floor plate (embryonic mouse) @@ -3561,8 +3004,7 @@ - rhombomere 4 (embryonic mouse) - EMAPA:16301 + rhombomere 4 (embryonic mouse) @@ -3581,8 +3023,7 @@ - rhombomere 4 floor plate (embryonic mouse) - EMAPA:16302 + rhombomere 4 floor plate (embryonic mouse) @@ -3601,8 +3042,7 @@ - rhombomere 5 (embryonic mouse) - EMAPA:16305 + rhombomere 5 (embryonic mouse) @@ -3621,8 +3061,7 @@ - rhombomere 5 floor plate (embryonic mouse) - EMAPA:16306 + rhombomere 5 floor plate (embryonic mouse) @@ -3641,8 +3080,7 @@ - facial neural crest (embryonic mouse) - EMAPA:16311 + facial neural crest (embryonic mouse) @@ -3661,8 +3099,7 @@ - facio-acoustic neural crest (embryonic mouse) - EMAPA:16312 + facio-acoustic neural crest (embryonic mouse) @@ -3681,8 +3118,7 @@ - septum transversum (embryonic mouse) - EMAPA:16318 + septum transversum (embryonic mouse) @@ -3701,8 +3137,7 @@ - optic eminence (embryonic mouse) - EMAPA:16322 + optic eminence (embryonic mouse) @@ -3721,8 +3156,7 @@ - optic eminence mesenchyme (embryonic mouse) - EMAPA:16324 + optic eminence mesenchyme (embryonic mouse) @@ -3741,8 +3175,7 @@ - optic pit (embryonic mouse) - EMAPA:16325 + optic pit (embryonic mouse) @@ -3761,8 +3194,7 @@ - common dorsal aorta (embryonic mouse) - EMAPA:16327 + common dorsal aorta (embryonic mouse) @@ -3781,8 +3213,7 @@ - internal carotid artery (embryonic mouse) - EMAPA:16328 + internal carotid artery (embryonic mouse) @@ -3801,8 +3232,7 @@ - left internal carotid artery (embryonic mouse) - EMAPA:16329 + left internal carotid artery (embryonic mouse) @@ -3821,8 +3251,7 @@ - right internal carotid artery (embryonic mouse) - EMAPA:16330 + right internal carotid artery (embryonic mouse) @@ -3841,8 +3270,7 @@ - umbilical artery (embryonic mouse) - EMAPA:16331 + umbilical artery (embryonic mouse) @@ -3861,8 +3289,7 @@ - blood (embryonic mouse) - EMAPA:16332 + blood (embryonic mouse) @@ -3881,8 +3308,7 @@ - bulbus cordis (embryonic mouse) - EMAPA:16333 + bulbus cordis (embryonic mouse) @@ -3901,8 +3327,7 @@ - conotruncus (embryonic mouse) - EMAPA:16338 + conotruncus (embryonic mouse) @@ -3921,8 +3346,7 @@ - common atrial chamber (embryonic mouse) - EMAPA:16342 + common atrial chamber (embryonic mouse) @@ -3941,8 +3365,7 @@ - atrium cardiac jelly (embryonic mouse) - EMAPA:16343 + atrium cardiac jelly (embryonic mouse) @@ -3961,8 +3384,7 @@ - outflow tract (embryonic mouse) - EMAPA:16346 + outflow tract (embryonic mouse) @@ -3981,8 +3403,7 @@ - outflow tract cardiac jelly (embryonic mouse) - EMAPA:16347 + outflow tract cardiac jelly (embryonic mouse) @@ -4001,8 +3422,7 @@ - future cardiac ventricle (embryonic mouse) - EMAPA:16350 + future cardiac ventricle (embryonic mouse) @@ -4021,8 +3441,7 @@ - cardinal vein (embryonic mouse) - EMAPA:16354 + cardinal vein (embryonic mouse) @@ -4041,8 +3460,7 @@ - common cardinal vein (embryonic mouse) - EMAPA:16356 + common cardinal vein (embryonic mouse) @@ -4061,8 +3479,7 @@ - posterior cardinal vein (embryonic mouse) - EMAPA:16357 + posterior cardinal vein (embryonic mouse) @@ -4081,8 +3498,7 @@ - left umbilical vein (embryonic mouse) - EMAPA:16358 + left umbilical vein (embryonic mouse) @@ -4101,8 +3517,7 @@ - right umbilical vein (embryonic mouse) - EMAPA:16359 + right umbilical vein (embryonic mouse) @@ -4121,8 +3536,7 @@ - thyroid primordium (embryonic mouse) - EMAPA:16361 + thyroid primordium (embryonic mouse) @@ -4141,8 +3555,7 @@ - foregut-midgut junction (embryonic mouse) - EMAPA:16363 + foregut-midgut junction (embryonic mouse) @@ -4161,8 +3574,7 @@ - associated mesenchyme of foregut-midgut junction (embryonic mouse) - EMAPA:16364 + associated mesenchyme of foregut-midgut junction (embryonic mouse) @@ -4181,8 +3593,7 @@ - mesentery of foregut-midgut junction (embryonic mouse) - EMAPA:16365 + mesentery of foregut-midgut junction (embryonic mouse) @@ -4201,8 +3612,7 @@ - dorsal mesentery of mesentery of foregut-midgut junction (embryonic mouse) - EMAPA:16366 + dorsal mesentery of mesentery of foregut-midgut junction (embryonic mouse) @@ -4221,8 +3631,7 @@ - genitourinary system (embryonic mouse) - EMAPA:16367 + genitourinary system (embryonic mouse) @@ -4241,30 +3650,7 @@ - nephric ridge (embryonic mouse) - EMAPA:16368 - - - - - - - - - - - - - - - - - - - - cardiovascular system (embryonic mouse) - extraembryonic vascular system (embryonic mouse) - EMAPA:16370 + nephric ridge (embryonic mouse) @@ -4283,8 +3669,7 @@ - arterial system (embryonic mouse) - EMAPA:16371 + arterial system (embryonic mouse) @@ -4303,8 +3688,7 @@ - umbilical artery (embryonic mouse) - EMAPA:16372 + umbilical artery (embryonic mouse) @@ -4323,8 +3707,7 @@ - extraembryonic venous system (embryonic mouse) - EMAPA:16374 + extraembryonic venous system (embryonic mouse) @@ -4343,8 +3726,7 @@ - umbilical vein (embryonic mouse) - EMAPA:16375 + umbilical vein (embryonic mouse) @@ -4363,8 +3745,7 @@ - left umbilical vein (embryonic mouse) - EMAPA:16377 + left umbilical vein (embryonic mouse) @@ -4383,8 +3764,7 @@ - right umbilical vein (embryonic mouse) - EMAPA:16378 + right umbilical vein (embryonic mouse) @@ -4403,8 +3783,7 @@ - left vitelline vein (embryonic mouse) - EMAPA:16380 + left vitelline vein (embryonic mouse) @@ -4423,8 +3802,7 @@ - right vitelline vein (embryonic mouse) - EMAPA:16381 + right vitelline vein (embryonic mouse) @@ -4443,8 +3821,7 @@ - 1st arch mandibular component (embryonic mouse) - EMAPA:16382 + 1st arch mandibular component (embryonic mouse) @@ -4463,8 +3840,7 @@ - 1st arch mandibular ectoderm (embryonic mouse) - EMAPA:16383 + 1st arch mandibular ectoderm (embryonic mouse) @@ -4483,8 +3859,7 @@ - 1st arch mandibular endoderm (embryonic mouse) - EMAPA:16384 + 1st arch mandibular endoderm (embryonic mouse) @@ -4503,8 +3878,7 @@ - 1st arch mandibular mesenchyme (embryonic mouse) - EMAPA:16385 + 1st arch mandibular mesenchyme (embryonic mouse) @@ -4523,8 +3897,7 @@ - 1st arch maxillary component (embryonic mouse) - EMAPA:16388 + 1st arch maxillary component (embryonic mouse) @@ -4543,8 +3916,7 @@ - 1st arch maxillary ectoderm (embryonic mouse) - EMAPA:16389 + 1st arch maxillary ectoderm (embryonic mouse) @@ -4563,8 +3935,7 @@ - 1st arch maxillary endoderm (embryonic mouse) - EMAPA:16390 + 1st arch maxillary endoderm (embryonic mouse) @@ -4583,8 +3954,7 @@ - 1st arch maxillary mesenchyme (embryonic mouse) - EMAPA:16391 + 1st arch maxillary mesenchyme (embryonic mouse) @@ -4603,8 +3973,7 @@ - 1st arch maxillary-mandibular cleft (embryonic mouse) - EMAPA:16395 + 1st arch maxillary-mandibular cleft (embryonic mouse) @@ -4623,8 +3992,7 @@ - 2nd arch pharyngeal cleft (embryonic mouse) - EMAPA:16396 + 2nd arch pharyngeal cleft (embryonic mouse) @@ -4643,8 +4011,7 @@ - 2nd arch ectoderm (embryonic mouse) - EMAPA:16397 + 2nd arch ectoderm (embryonic mouse) @@ -4663,8 +4030,7 @@ - 2nd arch ectoderm (embryonic mouse) - EMAPA:16398 + 2nd arch ectoderm (embryonic mouse) @@ -4683,8 +4049,7 @@ - pharyngeal arch 3 (embryonic mouse) - EMAPA:16399 + pharyngeal arch 3 (embryonic mouse) @@ -4703,8 +4068,7 @@ - 3rd arch ectoderm (embryonic mouse) - EMAPA:16400 + 3rd arch ectoderm (embryonic mouse) @@ -4723,8 +4087,7 @@ - 3rd arch endoderm (embryonic mouse) - EMAPA:16401 + 3rd arch endoderm (embryonic mouse) @@ -4743,8 +4106,7 @@ - 3rd arch mesenchyme (embryonic mouse) - EMAPA:16402 + 3rd arch mesenchyme (embryonic mouse) @@ -4763,8 +4125,7 @@ - 3rd arch mesenchyme from head mesenchyme (embryonic mouse) - EMAPA:16403 + 3rd arch mesenchyme from head mesenchyme (embryonic mouse) @@ -4783,8 +4144,7 @@ - 3rd arch mesenchyme from neural crest (embryonic mouse) - EMAPA:16404 + 3rd arch mesenchyme from neural crest (embryonic mouse) @@ -4803,8 +4163,7 @@ - limb (embryonic mouse) - EMAPA:16405 + limb (embryonic mouse) @@ -4823,8 +4182,7 @@ - forelimb bud (embryonic mouse) - EMAPA:16406 + forelimb bud (embryonic mouse) @@ -4843,8 +4201,7 @@ - pectoral appendage bud ectoderm (embryonic mouse) - EMAPA:16407 + pectoral appendage bud ectoderm (embryonic mouse) @@ -4863,8 +4220,7 @@ - pectoral appendage bud mesenchyme (embryonic mouse) - EMAPA:16408 + pectoral appendage bud mesenchyme (embryonic mouse) @@ -4883,8 +4239,7 @@ - lateral mesenchyme derived from mesoderm (embryonic mouse) - EMAPA:16409 + lateral mesenchyme derived from mesoderm (embryonic mouse) @@ -4903,8 +4258,7 @@ - nervous system (embryonic mouse) - EMAPA:16469 + nervous system (embryonic mouse) @@ -4923,8 +4277,7 @@ - central nervous system (embryonic mouse) - EMAPA:16470 + central nervous system (embryonic mouse) @@ -4943,30 +4296,7 @@ - rhombomere 1 lateral wall (embryonic mouse) - EMAPA:16482 - - - - - - - - - - - - - - - - - - - - rhombomere 1 roof plate (embryonic mouse) - roof plate of metencephalon (embryonic mouse) - EMAPA:16483 + rhombomere 1 lateral wall (embryonic mouse) @@ -4985,30 +4315,7 @@ - rhombomere 2 lateral wall (embryonic mouse) - EMAPA:16486 - - - - - - - - - - - - - - - - - - - - rhombomere 2 roof plate (embryonic mouse) - roof plate of metencephalon (embryonic mouse) - EMAPA:16487 + rhombomere 2 lateral wall (embryonic mouse) @@ -5027,8 +4334,7 @@ - rhombomere 3 lateral wall (embryonic mouse) - EMAPA:16490 + rhombomere 3 lateral wall (embryonic mouse) @@ -5047,8 +4353,7 @@ - rhombomere 3 roof plate (embryonic mouse) - EMAPA:16491 + rhombomere 3 roof plate (embryonic mouse) @@ -5067,8 +4372,7 @@ - rhombomere 4 lateral wall (embryonic mouse) - EMAPA:16494 + rhombomere 4 lateral wall (embryonic mouse) @@ -5087,8 +4391,7 @@ - rhombomere 4 roof plate (embryonic mouse) - EMAPA:16495 + rhombomere 4 roof plate (embryonic mouse) @@ -5107,8 +4410,7 @@ - rhombomere 5 lateral wall (embryonic mouse) - EMAPA:16498 + rhombomere 5 lateral wall (embryonic mouse) @@ -5127,8 +4429,7 @@ - rhombomere 5 roof plate (embryonic mouse) - EMAPA:16499 + rhombomere 5 roof plate (embryonic mouse) @@ -5147,8 +4448,7 @@ - rhombomere 6 (embryonic mouse) - EMAPA:16500 + rhombomere 6 (embryonic mouse) @@ -5167,8 +4467,7 @@ - rhombomere 6 floor plate (embryonic mouse) - EMAPA:16501 + rhombomere 6 floor plate (embryonic mouse) @@ -5187,8 +4486,7 @@ - rhombomere 6 lateral wall (embryonic mouse) - EMAPA:16502 + rhombomere 6 lateral wall (embryonic mouse) @@ -5207,8 +4505,7 @@ - rhombomere 6 roof plate (embryonic mouse) - EMAPA:16503 + rhombomere 6 roof plate (embryonic mouse) @@ -5227,8 +4524,7 @@ - rhombomere 7 (embryonic mouse) - EMAPA:16504 + rhombomere 7 (embryonic mouse) @@ -5247,8 +4543,7 @@ - rhombomere 7 floor plate (embryonic mouse) - EMAPA:16505 + rhombomere 7 floor plate (embryonic mouse) @@ -5267,8 +4562,7 @@ - rhombomere 7 lateral wall (embryonic mouse) - EMAPA:16506 + rhombomere 7 lateral wall (embryonic mouse) @@ -5287,8 +4581,7 @@ - rhombomere 7 roof plate (embryonic mouse) - EMAPA:16507 + rhombomere 7 roof plate (embryonic mouse) @@ -5307,8 +4600,7 @@ - rhombomere 8 (embryonic mouse) - EMAPA:16508 + rhombomere 8 (embryonic mouse) @@ -5327,8 +4619,7 @@ - rhombomere 8 floor plate (embryonic mouse) - EMAPA:16509 + rhombomere 8 floor plate (embryonic mouse) @@ -5347,8 +4638,7 @@ - rhombomere 8 lateral wall (embryonic mouse) - EMAPA:16510 + rhombomere 8 lateral wall (embryonic mouse) @@ -5367,8 +4657,7 @@ - rhombomere 8 roof plate (embryonic mouse) - EMAPA:16511 + rhombomere 8 roof plate (embryonic mouse) @@ -5387,8 +4676,7 @@ - future diencephalon (embryonic mouse) - EMAPA:16514 + future diencephalon (embryonic mouse) @@ -5407,8 +4695,7 @@ - diencephalon neural crest (embryonic mouse) - EMAPA:16518 + diencephalon neural crest (embryonic mouse) @@ -5427,8 +4714,7 @@ - early prosencephalic vesicle (embryonic mouse) - EMAPA:16521 + early prosencephalic vesicle (embryonic mouse) @@ -5447,8 +4733,7 @@ - anterior neuropore (embryonic mouse) - EMAPA:16523 + anterior neuropore (embryonic mouse) @@ -5467,8 +4752,7 @@ - posterior neuropore (embryonic mouse) - EMAPA:16526 + posterior neuropore (embryonic mouse) @@ -5487,30 +4771,7 @@ - otic pit (embryonic mouse) - EMAPA:16536 - - - - - - - - - - - - - - - - - - - - optic eminence ectoderm (embryonic mouse) - optic eminence surface ectoderm (embryonic mouse) - EMAPA:16539 + otic pit (embryonic mouse) @@ -5529,8 +4790,7 @@ - optic vesicle (embryonic mouse) - EMAPA:16540 + optic vesicle (embryonic mouse) @@ -5549,8 +4809,7 @@ - nose (embryonic mouse) - EMAPA:16542 + nose (embryonic mouse) @@ -5569,8 +4828,7 @@ - olfactory placode (embryonic mouse) - EMAPA:16543 + olfactory placode (embryonic mouse) @@ -5589,8 +4847,7 @@ - left umbilical artery (embryonic mouse) - EMAPA:16544 + left umbilical artery (embryonic mouse) @@ -5609,8 +4866,7 @@ - right umbilical artery (embryonic mouse) - EMAPA:16545 + right umbilical artery (embryonic mouse) @@ -5629,8 +4885,7 @@ - atrioventricular canal (embryonic mouse) - EMAPA:16546 + atrioventricular canal (embryonic mouse) @@ -5649,8 +4904,7 @@ - foregut (embryonic mouse) - EMAPA:16548 + foregut (embryonic mouse) @@ -5669,8 +4923,7 @@ - pharyngeal region of foregut (embryonic mouse) - EMAPA:16549 + pharyngeal region of foregut (embryonic mouse) @@ -5689,8 +4942,7 @@ - entire pharyngeal arch associated mesenchyme (embryonic mouse) - EMAPA:16550 + entire pharyngeal arch associated mesenchyme (embryonic mouse) @@ -5709,8 +4961,7 @@ - gland of foregut (embryonic mouse) - EMAPA:16557 + gland of foregut (embryonic mouse) @@ -5729,8 +4980,7 @@ - biliary bud (embryonic mouse) - EMAPA:16561 + biliary bud (embryonic mouse) @@ -5749,8 +4999,7 @@ - extrahepatic part of biliary bud (embryonic mouse) - EMAPA:16562 + extrahepatic part of biliary bud (embryonic mouse) @@ -5769,8 +5018,7 @@ - intrahepatic part of biliary bud (embryonic mouse) - EMAPA:16563 + intrahepatic part of biliary bud (embryonic mouse) @@ -5789,8 +5037,7 @@ - epithelium of foregut-midgut junction (embryonic mouse) - EMAPA:16564 + epithelium of foregut-midgut junction (embryonic mouse) @@ -5809,8 +5056,7 @@ - epithelium of midgut (embryonic mouse) - EMAPA:16569 + epithelium of midgut (embryonic mouse) @@ -5829,30 +5075,7 @@ - oral gland (embryonic mouse) - EMAPA:16572 - - - - - - - - - - - - - - - - - - - - mesonephric duct (embryonic mouse) - nephric duct (embryonic mouse) - EMAPA:16577 + oral gland (embryonic mouse) @@ -5871,8 +5094,7 @@ - pronephros (embryonic mouse) - EMAPA:16579 + pronephros (embryonic mouse) @@ -5891,8 +5113,7 @@ - post-anal tail bud (embryonic mouse) - EMAPA:16580 + post-anal tail bud (embryonic mouse) @@ -5911,8 +5132,7 @@ - 3rd arch pharyngeal cleft (embryonic mouse) - EMAPA:16581 + 3rd arch pharyngeal cleft (embryonic mouse) @@ -5931,8 +5151,7 @@ - 3rd arch ectoderm (embryonic mouse) - EMAPA:16582 + 3rd arch ectoderm (embryonic mouse) @@ -5951,8 +5170,7 @@ - pharyngeal membrane of 3rd arch (embryonic mouse) - EMAPA:16583 + pharyngeal membrane of 3rd arch (embryonic mouse) @@ -5971,8 +5189,7 @@ - 3rd arch ectoderm (embryonic mouse) - EMAPA:16584 + 3rd arch ectoderm (embryonic mouse) @@ -5991,8 +5208,7 @@ - 3rd arch endoderm (embryonic mouse) - EMAPA:16585 + 3rd arch endoderm (embryonic mouse) @@ -6011,8 +5227,7 @@ - pharyngeal pouch 3 (embryonic mouse) - EMAPA:16586 + pharyngeal pouch 3 (embryonic mouse) @@ -6031,8 +5246,7 @@ - 3rd arch endoderm (embryonic mouse) - EMAPA:16587 + 3rd arch endoderm (embryonic mouse) @@ -6051,30 +5265,7 @@ - pericardial parietal mesothelium (embryonic mouse) - EMAPA:16588 - - - - - - - - - - - - - - - - - - - - pericardial visceral mesothelium (embryonic mouse) - visceral serous pericardium (embryonic mouse) - EMAPA:16589 + pericardial parietal mesothelium (embryonic mouse) @@ -6093,8 +5284,7 @@ - parietal of mesothelium of pericardio-peritoneal canal (embryonic mouse) - EMAPA:16590 + parietal of mesothelium of pericardio-peritoneal canal (embryonic mouse) @@ -6113,8 +5303,7 @@ - parietal peritoneum (embryonic mouse) - EMAPA:16591 + parietal peritoneum (embryonic mouse) @@ -6133,8 +5322,7 @@ - visceral peritoneum (embryonic mouse) - EMAPA:16592 + visceral peritoneum (embryonic mouse) @@ -6153,8 +5341,7 @@ - lateral migration pathway NC-derived mesenchyme (embryonic mouse) - EMAPA:16596 + lateral migration pathway NC-derived mesenchyme (embryonic mouse) @@ -6173,8 +5360,7 @@ - medial migration pathway NC-derived mesenchyme (embryonic mouse) - EMAPA:16597 + medial migration pathway NC-derived mesenchyme (embryonic mouse) @@ -6193,8 +5379,7 @@ - future forebrain (embryonic mouse) - EMAPA:16640 + future forebrain (embryonic mouse) @@ -6213,8 +5398,7 @@ - future neurohypophysis (embryonic mouse) - EMAPA:16647 + future neurohypophysis (embryonic mouse) @@ -6233,8 +5417,7 @@ - cerebral hemisphere (embryonic mouse) - EMAPA:16653 + cerebral hemisphere (embryonic mouse) @@ -6253,8 +5436,7 @@ - floor plate of telencephalon (embryonic mouse) - EMAPA:16655 + floor plate of telencephalon (embryonic mouse) @@ -6273,8 +5455,7 @@ - telencephalon lateral wall (embryonic mouse) - EMAPA:16656 + telencephalon lateral wall (embryonic mouse) @@ -6293,8 +5474,7 @@ - roof plate of telencephalon (embryonic mouse) - EMAPA:16657 + roof plate of telencephalon (embryonic mouse) @@ -6313,8 +5493,7 @@ - ganglion of central nervous system (embryonic mouse) - EMAPA:16658 + ganglion of central nervous system (embryonic mouse) @@ -6333,8 +5512,7 @@ - cranial ganglion (embryonic mouse) - EMAPA:16659 + cranial ganglion (embryonic mouse) @@ -6353,8 +5531,7 @@ - facio-acoustic VII-VIII preganglion complex (embryonic mouse) - EMAPA:16660 + facio-acoustic VII-VIII preganglion complex (embryonic mouse) @@ -6373,8 +5550,7 @@ - glossopharyngeal IX preganglion (embryonic mouse) - EMAPA:16661 + glossopharyngeal IX preganglion (embryonic mouse) @@ -6393,8 +5569,7 @@ - glossopharyngeal-vagus IX-X preganglion complex (embryonic mouse) - EMAPA:16662 + glossopharyngeal-vagus IX-X preganglion complex (embryonic mouse) @@ -6413,8 +5588,7 @@ - future trigeminal ganglion (embryonic mouse) - EMAPA:16663 + future trigeminal ganglion (embryonic mouse) @@ -6433,8 +5607,7 @@ - peripheral nervous system (embryonic mouse) - EMAPA:16665 + peripheral nervous system (embryonic mouse) @@ -6453,8 +5626,7 @@ - dorsal root ganglion (embryonic mouse) - EMAPA:16667 + dorsal root ganglion (embryonic mouse) @@ -6473,8 +5645,7 @@ - dorsal root ganglion (embryonic mouse) - EMAPA:16668 + dorsal root ganglion (embryonic mouse) @@ -6493,8 +5664,7 @@ - ear vesicle (embryonic mouse) - EMAPA:16669 + ear vesicle (embryonic mouse) @@ -6513,8 +5683,7 @@ - periotic mesenchyme (embryonic mouse) - EMAPA:16670 + periotic mesenchyme (embryonic mouse) @@ -6533,8 +5702,7 @@ - lens placode (embryonic mouse) - EMAPA:16672 + lens placode (embryonic mouse) @@ -6553,8 +5721,7 @@ - eye mesenchyme (embryonic mouse) - EMAPA:16673 + eye mesenchyme (embryonic mouse) @@ -6573,8 +5740,7 @@ - optic cup (embryonic mouse) - EMAPA:16674 + optic cup (embryonic mouse) @@ -6593,8 +5759,7 @@ - presumptive neural retina (embryonic mouse) - EMAPA:16675 + presumptive neural retina (embryonic mouse) @@ -6613,8 +5778,7 @@ - embryonic intraretinal space (embryonic mouse) - EMAPA:16676 + embryonic intraretinal space (embryonic mouse) @@ -6633,30 +5797,7 @@ - presumptive retinal pigmented epithelium (embryonic mouse) - EMAPA:16677 - - - - - - - - - - - - - - - - - - - - optic stalk (embryonic mouse) - optic tract (embryonic mouse) - EMAPA:16678 + presumptive retinal pigmented epithelium (embryonic mouse) @@ -6675,8 +5816,7 @@ - nasolacrimal groove (embryonic mouse) - EMAPA:16679 + nasolacrimal groove (embryonic mouse) @@ -6695,8 +5835,7 @@ - embryonic nasal process (embryonic mouse) - EMAPA:16680 + embryonic nasal process (embryonic mouse) @@ -6715,8 +5854,7 @@ - frontonasal prominence (embryonic mouse) - EMAPA:16681 + frontonasal prominence (embryonic mouse) @@ -6735,8 +5873,7 @@ - mesenchyme of fronto-nasal process (embryonic mouse) - EMAPA:16683 + mesenchyme of fronto-nasal process (embryonic mouse) @@ -6755,8 +5892,7 @@ - pharyngeal arch artery (embryonic mouse) - EMAPA:16684 + pharyngeal arch artery (embryonic mouse) @@ -6775,8 +5911,7 @@ - pharyngeal arch artery 1 (embryonic mouse) - EMAPA:16685 + pharyngeal arch artery 1 (embryonic mouse) @@ -6795,8 +5930,7 @@ - pharyngeal arch artery 2 (embryonic mouse) - EMAPA:16686 + pharyngeal arch artery 2 (embryonic mouse) @@ -6815,8 +5949,7 @@ - pharyngeal arch artery 3 (embryonic mouse) - EMAPA:16687 + pharyngeal arch artery 3 (embryonic mouse) @@ -6835,8 +5968,7 @@ - cardiac atrium (embryonic mouse) - EMAPA:16688 + cardiac atrium (embryonic mouse) @@ -6855,8 +5987,7 @@ - bulbo-ventricular groove (embryonic mouse) - EMAPA:16693 + bulbo-ventricular groove (embryonic mouse) @@ -6875,8 +6006,7 @@ - endocardial cushion (embryonic mouse) - EMAPA:16696 + endocardial cushion (embryonic mouse) @@ -6895,8 +6025,7 @@ - left vitelline vein (embryonic mouse) - EMAPA:16698 + left vitelline vein (embryonic mouse) @@ -6915,8 +6044,7 @@ - right vitelline vein (embryonic mouse) - EMAPA:16699 + right vitelline vein (embryonic mouse) @@ -6935,8 +6063,7 @@ - dorsal meso-oesophagus (embryonic mouse) - EMAPA:16704 + dorsal meso-oesophagus (embryonic mouse) @@ -6955,8 +6082,7 @@ - chordate pharynx (embryonic mouse) - EMAPA:16706 + chordate pharynx (embryonic mouse) @@ -6975,8 +6101,7 @@ - pharyngeal epithelium (embryonic mouse) - EMAPA:16708 + pharyngeal epithelium (embryonic mouse) @@ -6995,8 +6120,7 @@ - gallbladder primordium (embryonic mouse) - EMAPA:16713 + gallbladder primordium (embryonic mouse) @@ -7015,8 +6139,7 @@ - ventral mesentery of mesentery of foregut-midgut junction (embryonic mouse) - EMAPA:16714 + ventral mesentery of mesentery of foregut-midgut junction (embryonic mouse) @@ -7035,8 +6158,7 @@ - hindgut (embryonic mouse) - EMAPA:16715 + hindgut (embryonic mouse) @@ -7055,8 +6177,7 @@ - mesenchyme of hindgut (embryonic mouse) - EMAPA:16716 + mesenchyme of hindgut (embryonic mouse) @@ -7075,8 +6196,7 @@ - epithelium of hindgut (embryonic mouse) - EMAPA:16717 + epithelium of hindgut (embryonic mouse) @@ -7095,8 +6215,7 @@ - mesentery of hindgut (embryonic mouse) - EMAPA:16718 + mesentery of hindgut (embryonic mouse) @@ -7115,8 +6234,7 @@ - mesentery of midgut (embryonic mouse) - EMAPA:16721 + mesentery of midgut (embryonic mouse) @@ -7135,8 +6253,7 @@ - midgut dorsal mesentery (embryonic mouse) - EMAPA:16722 + midgut dorsal mesentery (embryonic mouse) @@ -7155,8 +6272,7 @@ - oral gland (embryonic mouse) - EMAPA:16723 + oral gland (embryonic mouse) @@ -7175,8 +6291,7 @@ - Rathke's pouch (embryonic mouse) - EMAPA:16725 + Rathke's pouch (embryonic mouse) @@ -7195,8 +6310,7 @@ - respiratory system (embryonic mouse) - EMAPA:16727 + respiratory system (embryonic mouse) @@ -7215,8 +6329,7 @@ - lung (embryonic mouse) - EMAPA:16728 + lung (embryonic mouse) @@ -7235,30 +6348,7 @@ - left lung associated mesenchyme (embryonic mouse) - EMAPA:16730 - - - - - - - - - - - - - - - - - - - - proximo-distal subdivision of respiratory tract (embryonic mouse) - respiratory tract (embryonic mouse) - EMAPA:16737 + left lung associated mesenchyme (embryonic mouse) @@ -7277,8 +6367,7 @@ - lower respiratory tract (embryonic mouse) - EMAPA:16738 + lower respiratory tract (embryonic mouse) @@ -7297,8 +6386,7 @@ - laryngotracheal groove (embryonic mouse) - EMAPA:16739 + laryngotracheal groove (embryonic mouse) @@ -7317,8 +6405,7 @@ - tracheal diverticulum (embryonic mouse) - EMAPA:16740 + tracheal diverticulum (embryonic mouse) @@ -7337,8 +6424,7 @@ - mesonephros (embryonic mouse) - EMAPA:16744 + mesonephros (embryonic mouse) @@ -7357,8 +6443,7 @@ - mesonephric mesenchyme (embryonic mouse) - EMAPA:16745 + mesonephric mesenchyme (embryonic mouse) @@ -7377,30 +6462,7 @@ - mesonephric tubule (embryonic mouse) - EMAPA:16747 - - - - - - - - - - - - - - - - - - - - embryonic post-anal tail (embryonic mouse) - post-anal tail (embryonic mouse) - EMAPA:16748 + mesonephric tubule (embryonic mouse) @@ -7419,8 +6481,7 @@ - tail connective tissue (embryonic mouse) - EMAPA:16749 + tail connective tissue (embryonic mouse) @@ -7439,8 +6500,7 @@ - paraxial mesoderm (embryonic mouse) - EMAPA:16751 + paraxial mesoderm (embryonic mouse) @@ -7459,8 +6519,7 @@ - presomitic mesoderm (embryonic mouse) - EMAPA:16752 + presomitic mesoderm (embryonic mouse) @@ -7479,8 +6538,7 @@ - central nervous system (embryonic mouse) - EMAPA:16754 + central nervous system (embryonic mouse) @@ -7499,8 +6557,7 @@ - future spinal cord (embryonic mouse) - EMAPA:16755 + future spinal cord (embryonic mouse) @@ -7519,8 +6576,7 @@ - neural tube (embryonic mouse) - EMAPA:16757 + neural tube (embryonic mouse) @@ -7539,8 +6595,7 @@ - dorsal part of pharyngeal pouch 3 (embryonic mouse) - EMAPA:16758 + dorsal part of pharyngeal pouch 3 (embryonic mouse) @@ -7559,8 +6614,7 @@ - ventral part of pharyngeal pouch 3 (embryonic mouse) - EMAPA:16759 + ventral part of pharyngeal pouch 3 (embryonic mouse) @@ -7579,8 +6633,7 @@ - pharyngeal arch 4 (embryonic mouse) - EMAPA:16760 + pharyngeal arch 4 (embryonic mouse) @@ -7599,8 +6652,7 @@ - 4th arch pharyngeal cleft (embryonic mouse) - EMAPA:16761 + 4th arch pharyngeal cleft (embryonic mouse) @@ -7619,8 +6671,7 @@ - 4th arch ectoderm (embryonic mouse) - EMAPA:16762 + 4th arch ectoderm (embryonic mouse) @@ -7639,8 +6690,7 @@ - pharyngeal membrane of 4th arch (embryonic mouse) - EMAPA:16763 + pharyngeal membrane of 4th arch (embryonic mouse) @@ -7659,8 +6709,7 @@ - 4th arch ectoderm (embryonic mouse) - EMAPA:16764 + 4th arch ectoderm (embryonic mouse) @@ -7679,8 +6728,7 @@ - 4th arch endoderm (embryonic mouse) - EMAPA:16765 + 4th arch endoderm (embryonic mouse) @@ -7699,8 +6747,7 @@ - pharyngeal pouch 4 (embryonic mouse) - EMAPA:16766 + pharyngeal pouch 4 (embryonic mouse) @@ -7719,8 +6766,7 @@ - 4th arch endoderm (embryonic mouse) - EMAPA:16767 + 4th arch endoderm (embryonic mouse) @@ -7739,8 +6785,7 @@ - 4th arch ectoderm (embryonic mouse) - EMAPA:16768 + 4th arch ectoderm (embryonic mouse) @@ -7759,8 +6804,7 @@ - 4th arch endoderm (embryonic mouse) - EMAPA:16769 + 4th arch endoderm (embryonic mouse) @@ -7779,8 +6823,7 @@ - 4th arch mesenchyme (embryonic mouse) - EMAPA:16770 + 4th arch mesenchyme (embryonic mouse) @@ -7799,8 +6842,7 @@ - 4th arch mesenchyme from head mesenchyme (embryonic mouse) - EMAPA:16771 + 4th arch mesenchyme from head mesenchyme (embryonic mouse) @@ -7819,8 +6861,7 @@ - 4th arch mesenchyme from neural crest (embryonic mouse) - EMAPA:16772 + 4th arch mesenchyme from neural crest (embryonic mouse) @@ -7839,8 +6880,7 @@ - pleural cavity (embryonic mouse) - EMAPA:16773 + pleural cavity (embryonic mouse) @@ -7859,30 +6899,7 @@ - pleural cavity (embryonic mouse) - EMAPA:16774 - - - - - - - - - - - - - - - - - - - - mesothelium of pleural cavity (embryonic mouse) - pleura (embryonic mouse) - EMAPA:16775 + pleural cavity (embryonic mouse) @@ -7901,8 +6918,7 @@ - parietal pleura (embryonic mouse) - EMAPA:16776 + parietal pleura (embryonic mouse) @@ -7921,8 +6937,7 @@ - visceral pleura (embryonic mouse) - EMAPA:16777 + visceral pleura (embryonic mouse) @@ -7941,8 +6956,7 @@ - pectoral appendage apical ectodermal ridge (embryonic mouse) - EMAPA:16778 + pectoral appendage apical ectodermal ridge (embryonic mouse) @@ -7961,8 +6975,7 @@ - hindlimb bud (embryonic mouse) - EMAPA:16779 + hindlimb bud (embryonic mouse) @@ -7981,8 +6994,7 @@ - pelvic appendage bud ectoderm (embryonic mouse) - EMAPA:16780 + pelvic appendage bud ectoderm (embryonic mouse) @@ -8001,8 +7013,7 @@ - pelvic appendage bud mesenchyme (embryonic mouse) - EMAPA:16781 + pelvic appendage bud mesenchyme (embryonic mouse) @@ -8021,8 +7032,7 @@ - acoustico-facial VII-VIII ganglion complex (embryonic mouse) - EMAPA:16794 + acoustico-facial VII-VIII ganglion complex (embryonic mouse) @@ -8041,8 +7051,7 @@ - glossopharyngeal ganglion (embryonic mouse) - EMAPA:16795 + glossopharyngeal ganglion (embryonic mouse) @@ -8061,8 +7070,7 @@ - glossopharyngeal-vagus IX-X ganglion complex (embryonic mouse) - EMAPA:16796 + glossopharyngeal-vagus IX-X ganglion complex (embryonic mouse) @@ -8081,8 +7089,7 @@ - trigeminal ganglion (embryonic mouse) - EMAPA:16797 + trigeminal ganglion (embryonic mouse) @@ -8101,8 +7108,7 @@ - vagus X ganglion (embryonic mouse) - EMAPA:16798 + vagus X ganglion (embryonic mouse) @@ -8121,8 +7127,7 @@ - lens pit (embryonic mouse) - EMAPA:16799 + lens pit (embryonic mouse) @@ -8141,8 +7146,7 @@ - olfactory pit (embryonic mouse) - EMAPA:16800 + olfactory pit (embryonic mouse) @@ -8161,8 +7165,7 @@ - embryonic frontal process (embryonic mouse) - EMAPA:16802 + embryonic frontal process (embryonic mouse) @@ -8181,8 +7184,7 @@ - lateral nasal prominence (embryonic mouse) - EMAPA:16805 + lateral nasal prominence (embryonic mouse) @@ -8201,8 +7203,7 @@ - lateral nasal process surface ectoderm (embryonic mouse) - EMAPA:16806 + lateral nasal process surface ectoderm (embryonic mouse) @@ -8221,8 +7222,7 @@ - lateral nasal process mesenchyme (embryonic mouse) - EMAPA:16807 + lateral nasal process mesenchyme (embryonic mouse) @@ -8241,8 +7241,7 @@ - medial nasal prominence (embryonic mouse) - EMAPA:16808 + medial nasal prominence (embryonic mouse) @@ -8261,8 +7260,7 @@ - medial-nasal process ectoderm (embryonic mouse) - EMAPA:16809 + medial-nasal process ectoderm (embryonic mouse) @@ -8281,8 +7279,7 @@ - medial nasal process mesenchyme (embryonic mouse) - EMAPA:16810 + medial nasal process mesenchyme (embryonic mouse) @@ -8301,8 +7298,7 @@ - principal artery to forelimb (embryonic mouse) - EMAPA:16811 + principal artery to forelimb (embryonic mouse) @@ -8321,8 +7317,7 @@ - principal artery to hindlimb (embryonic mouse) - EMAPA:16812 + principal artery to hindlimb (embryonic mouse) @@ -8341,8 +7336,7 @@ - atrium cardiac jelly (embryonic mouse) - EMAPA:16814 + atrium cardiac jelly (embryonic mouse) @@ -8361,8 +7355,7 @@ - left atrium auricular region (embryonic mouse) - EMAPA:16816 + left atrium auricular region (embryonic mouse) @@ -8381,8 +7374,7 @@ - cardiac muscle tissue of left auricle (embryonic mouse) - EMAPA:16818 + cardiac muscle tissue of left auricle (embryonic mouse) @@ -8401,8 +7393,7 @@ - atrium cardiac jelly (embryonic mouse) - EMAPA:16821 + atrium cardiac jelly (embryonic mouse) @@ -8421,8 +7412,7 @@ - right atrium auricular region (embryonic mouse) - EMAPA:16824 + right atrium auricular region (embryonic mouse) @@ -8441,8 +7431,7 @@ - cardiac muscle tissue of right auricle (embryonic mouse) - EMAPA:16826 + cardiac muscle tissue of right auricle (embryonic mouse) @@ -8461,8 +7450,7 @@ - aortico-pulmonary spiral septum (embryonic mouse) - EMAPA:16827 + aortico-pulmonary spiral septum (embryonic mouse) @@ -8481,8 +7469,7 @@ - intersubcardinal venous anastomosis (embryonic mouse) - EMAPA:16828 + intersubcardinal venous anastomosis (embryonic mouse) @@ -8501,8 +7488,7 @@ - subcardinal vein (embryonic mouse) - EMAPA:16829 + subcardinal vein (embryonic mouse) @@ -8521,8 +7507,7 @@ - supracardinal vein (embryonic mouse) - EMAPA:16830 + supracardinal vein (embryonic mouse) @@ -8541,8 +7526,7 @@ - anal region (embryonic mouse) - EMAPA:16831 + anal region (embryonic mouse) @@ -8561,8 +7545,7 @@ - cloacal membrane (embryonic mouse) - EMAPA:16832 + cloacal membrane (embryonic mouse) @@ -8581,8 +7564,7 @@ - esophagus (embryonic mouse) - EMAPA:16833 + esophagus (embryonic mouse) @@ -8601,8 +7583,7 @@ - epithelium of esophagus (embryonic mouse) - EMAPA:16835 + epithelium of esophagus (embryonic mouse) @@ -8621,8 +7602,7 @@ - mesentery of oesophagus (embryonic mouse) - EMAPA:16836 + mesentery of oesophagus (embryonic mouse) @@ -8641,8 +7621,7 @@ - oral epithelium (embryonic mouse) - EMAPA:16839 + oral epithelium (embryonic mouse) @@ -8661,8 +7640,7 @@ - hepatobiliary system (embryonic mouse) - EMAPA:16840 + hepatobiliary system (embryonic mouse) @@ -8681,8 +7659,7 @@ - cystic duct (embryonic mouse) - EMAPA:16841 + cystic duct (embryonic mouse) @@ -8701,8 +7678,7 @@ - hepatic duct (embryonic mouse) - EMAPA:16843 + hepatic duct (embryonic mouse) @@ -8721,8 +7697,7 @@ - extrahepatic part of hepatic duct (embryonic mouse) - EMAPA:16844 + extrahepatic part of hepatic duct (embryonic mouse) @@ -8741,8 +7716,7 @@ - intrahepatic part of hepatic duct (embryonic mouse) - EMAPA:16845 + intrahepatic part of hepatic duct (embryonic mouse) @@ -8761,8 +7735,7 @@ - liver (embryonic mouse) - EMAPA:16846 + liver (embryonic mouse) @@ -8781,8 +7754,7 @@ - liver primordium (embryonic mouse) - EMAPA:16847 + liver primordium (embryonic mouse) @@ -8801,8 +7773,7 @@ - main bronchus (embryonic mouse) - EMAPA:16849 + main bronchus (embryonic mouse) @@ -8821,8 +7792,7 @@ - mesenchyme of main bronchus (embryonic mouse) - EMAPA:16850 + mesenchyme of main bronchus (embryonic mouse) @@ -8841,8 +7811,7 @@ - epithelium of main bronchus (embryonic mouse) - EMAPA:16851 + epithelium of main bronchus (embryonic mouse) @@ -8861,8 +7830,7 @@ - main bronchus blood vessel (embryonic mouse) - EMAPA:16852 + main bronchus blood vessel (embryonic mouse) @@ -8881,8 +7849,7 @@ - trachea (embryonic mouse) - EMAPA:16853 + trachea (embryonic mouse) @@ -8901,8 +7868,7 @@ - mesenchyme of trachea (embryonic mouse) - EMAPA:16854 + mesenchyme of trachea (embryonic mouse) @@ -8921,8 +7887,7 @@ - epithelium of trachea (embryonic mouse) - EMAPA:16855 + epithelium of trachea (embryonic mouse) @@ -8941,8 +7906,7 @@ - gonad mesenchyme (embryonic mouse) - EMAPA:16858 + gonad mesenchyme (embryonic mouse) @@ -8961,8 +7925,7 @@ - tail somite (embryonic mouse) - EMAPA:16860 + tail somite (embryonic mouse) @@ -8981,8 +7944,7 @@ - spinal cord neural crest (embryonic mouse) - EMAPA:16881 + spinal cord neural crest (embryonic mouse) @@ -9001,8 +7963,7 @@ - cervical sinus of His (embryonic mouse) - EMAPA:16884 + cervical sinus of His (embryonic mouse) @@ -9021,8 +7982,7 @@ - greater sac (embryonic mouse) - EMAPA:16885 + greater sac (embryonic mouse) @@ -9041,8 +8001,7 @@ - greater sac cavity (embryonic mouse) - EMAPA:16886 + greater sac cavity (embryonic mouse) @@ -9061,8 +8020,7 @@ - greater sac mesothelium (embryonic mouse) - EMAPA:16887 + greater sac mesothelium (embryonic mouse) @@ -9081,8 +8039,7 @@ - lesser sac (embryonic mouse) - EMAPA:16889 + lesser sac (embryonic mouse) @@ -9101,8 +8058,7 @@ - mesothelium of omental bursa (embryonic mouse) - EMAPA:16890 + mesothelium of omental bursa (embryonic mouse) @@ -9121,8 +8077,7 @@ - pelvic appendage apical ectodermal ridge (embryonic mouse) - EMAPA:16892 + pelvic appendage apical ectodermal ridge (embryonic mouse) @@ -9141,8 +8096,7 @@ - body-wall mesenchyme (embryonic mouse) - EMAPA:16893 + body-wall mesenchyme (embryonic mouse) @@ -9161,8 +8115,7 @@ - brain (embryonic mouse) - EMAPA:16894 + brain (embryonic mouse) @@ -9181,8 +8134,7 @@ - forebrain (embryonic mouse) - EMAPA:16895 + forebrain (embryonic mouse) @@ -9201,8 +8153,7 @@ - diencephalon (embryonic mouse) - EMAPA:16896 + diencephalon (embryonic mouse) @@ -9221,8 +8172,7 @@ - gland of diencephalon (embryonic mouse) - EMAPA:16897 + gland of diencephalon (embryonic mouse) @@ -9241,8 +8191,7 @@ - infundibular recess of 3rd ventricle (embryonic mouse) - EMAPA:16899 + infundibular recess of 3rd ventricle (embryonic mouse) @@ -9261,8 +8210,7 @@ - third ventricle (embryonic mouse) - EMAPA:16900 + third ventricle (embryonic mouse) @@ -9281,8 +8229,7 @@ - diencephalic part of interventricular foramen (embryonic mouse) - EMAPA:16901 + diencephalic part of interventricular foramen (embryonic mouse) @@ -9301,8 +8248,7 @@ - optic recess of third ventricle (embryonic mouse) - EMAPA:16902 + optic recess of third ventricle (embryonic mouse) @@ -9321,8 +8267,7 @@ - floor plate of diencephalon (embryonic mouse) - EMAPA:16903 + floor plate of diencephalon (embryonic mouse) @@ -9341,8 +8286,7 @@ - lamina terminalis of neural tube (embryonic mouse) - EMAPA:16904 + lamina terminalis of neural tube (embryonic mouse) @@ -9361,8 +8305,7 @@ - diencephalon lateral wall (embryonic mouse) - EMAPA:16905 + diencephalon lateral wall (embryonic mouse) @@ -9381,8 +8324,7 @@ - diencephalon mantle layer (embryonic mouse) - EMAPA:16906 + diencephalon mantle layer (embryonic mouse) @@ -9401,8 +8343,7 @@ - roof plate of diencephalon (embryonic mouse) - EMAPA:16909 + roof plate of diencephalon (embryonic mouse) @@ -9421,8 +8362,7 @@ - telencephalon (embryonic mouse) - EMAPA:16910 + telencephalon (embryonic mouse) @@ -9441,8 +8381,7 @@ - early telencephalic vesicle (embryonic mouse) - EMAPA:16914 + early telencephalic vesicle (embryonic mouse) @@ -9461,8 +8400,7 @@ - telencephalic part of interventricular foramen (embryonic mouse) - EMAPA:16915 + telencephalic part of interventricular foramen (embryonic mouse) @@ -9481,8 +8419,7 @@ - hindbrain (embryonic mouse) - EMAPA:16916 + hindbrain (embryonic mouse) @@ -9501,8 +8438,7 @@ - fourth ventricle (embryonic mouse) - EMAPA:16917 + fourth ventricle (embryonic mouse) @@ -9521,8 +8457,7 @@ - midbrain (embryonic mouse) - EMAPA:16974 + midbrain (embryonic mouse) @@ -9541,8 +8476,7 @@ - floor plate of midbrain (embryonic mouse) - EMAPA:16975 + floor plate of midbrain (embryonic mouse) @@ -9561,8 +8495,7 @@ - midbrain lateral wall (embryonic mouse) - EMAPA:16976 + midbrain lateral wall (embryonic mouse) @@ -9581,8 +8514,7 @@ - midbrain mantle layer (embryonic mouse) - EMAPA:16977 + midbrain mantle layer (embryonic mouse) @@ -9601,8 +8533,7 @@ - roof plate of midbrain (embryonic mouse) - EMAPA:16981 + roof plate of midbrain (embryonic mouse) @@ -9621,8 +8552,7 @@ - vestibulocochlear ganglion (embryonic mouse) - EMAPA:16982 + vestibulocochlear ganglion (embryonic mouse) @@ -9641,8 +8571,7 @@ - autonomic nervous system (embryonic mouse) - EMAPA:16984 + autonomic nervous system (embryonic mouse) @@ -9661,8 +8590,7 @@ - sympathetic nervous system (embryonic mouse) - EMAPA:16985 + sympathetic nervous system (embryonic mouse) @@ -9681,8 +8609,7 @@ - nerve trunk (embryonic mouse) - EMAPA:16986 + nerve trunk (embryonic mouse) @@ -9701,8 +8628,7 @@ - spinal nerve plexus (embryonic mouse) - EMAPA:16987 + spinal nerve plexus (embryonic mouse) @@ -9721,8 +8647,7 @@ - brachial nerve plexus (embryonic mouse) - EMAPA:16988 + brachial nerve plexus (embryonic mouse) @@ -9741,8 +8666,7 @@ - spinal nerve (embryonic mouse) - EMAPA:16989 + spinal nerve (embryonic mouse) @@ -9761,8 +8685,7 @@ - segmental spinal nerve (embryonic mouse) - EMAPA:16990 + segmental spinal nerve (embryonic mouse) @@ -9781,8 +8704,7 @@ - external ear (embryonic mouse) - EMAPA:16991 + external ear (embryonic mouse) @@ -9801,8 +8723,7 @@ - pharyngeal membrane of 1st arch (embryonic mouse) - EMAPA:16992 + pharyngeal membrane of 1st arch (embryonic mouse) @@ -9821,8 +8742,7 @@ - endolymphatic appendage (embryonic mouse) - EMAPA:16994 + endolymphatic appendage (embryonic mouse) @@ -9841,8 +8761,7 @@ - middle ear (embryonic mouse) - EMAPA:17000 + middle ear (embryonic mouse) @@ -9861,8 +8780,7 @@ - mesenchyme of middle ear (embryonic mouse) - EMAPA:17001 + mesenchyme of middle ear (embryonic mouse) @@ -9881,8 +8799,7 @@ - tubotympanic recess epithelium (embryonic mouse) - EMAPA:17002 + tubotympanic recess epithelium (embryonic mouse) @@ -9901,8 +8818,7 @@ - pharyngeal arch artery 4 (embryonic mouse) - EMAPA:17004 + pharyngeal arch artery 4 (embryonic mouse) @@ -9921,8 +8837,7 @@ - pharyngeal arch artery 6 (embryonic mouse) - EMAPA:17005 + pharyngeal arch artery 6 (embryonic mouse) @@ -9941,8 +8856,7 @@ - carotid duct (embryonic mouse) - EMAPA:17006 + carotid duct (embryonic mouse) @@ -9961,8 +8875,7 @@ - ophthalmic artery (embryonic mouse) - EMAPA:17007 + ophthalmic artery (embryonic mouse) @@ -9981,8 +8894,7 @@ - pulmonary artery (embryonic mouse) - EMAPA:17008 + pulmonary artery (embryonic mouse) @@ -10001,8 +8913,7 @@ - right atrium venous valve (embryonic mouse) - EMAPA:17010 + right atrium venous valve (embryonic mouse) @@ -10021,8 +8932,7 @@ - interatrial septum (embryonic mouse) - EMAPA:17011 + interatrial septum (embryonic mouse) @@ -10041,8 +8951,7 @@ - foramen primum (embryonic mouse) - EMAPA:17012 + foramen primum (embryonic mouse) @@ -10061,8 +8970,7 @@ - atrial septum primum (embryonic mouse) - EMAPA:17013 + atrial septum primum (embryonic mouse) @@ -10081,8 +8989,7 @@ - ascending aorta (embryonic mouse) - EMAPA:17014 + ascending aorta (embryonic mouse) @@ -10101,8 +9008,7 @@ - pulmonary trunk (embryonic mouse) - EMAPA:17015 + pulmonary trunk (embryonic mouse) @@ -10121,8 +9027,7 @@ - principal vein of forelimb (embryonic mouse) - EMAPA:17018 + principal vein of forelimb (embryonic mouse) @@ -10141,30 +9046,7 @@ - principal vein of hindlimb (embryonic mouse) - EMAPA:17019 - - - - - - - - - - - - - - - - - - - - venous vitelline plexus (embryonic mouse) - vitelline venous plexus (embryonic mouse) - EMAPA:17020 + principal vein of hindlimb (embryonic mouse) @@ -10183,8 +9065,7 @@ - stomach (embryonic mouse) - EMAPA:17021 + stomach (embryonic mouse) @@ -10203,8 +9084,7 @@ - epithelium of stomach (embryonic mouse) - EMAPA:17023 + epithelium of stomach (embryonic mouse) @@ -10223,8 +9103,7 @@ - mesentery of stomach (embryonic mouse) - EMAPA:17024 + mesentery of stomach (embryonic mouse) @@ -10243,8 +9122,7 @@ - dorsal mesogastrium (embryonic mouse) - EMAPA:17025 + dorsal mesogastrium (embryonic mouse) @@ -10263,8 +9141,7 @@ - ventral mesogastrium (embryonic mouse) - EMAPA:17026 + ventral mesogastrium (embryonic mouse) @@ -10283,8 +9160,7 @@ - midgut loop (embryonic mouse) - EMAPA:17036 + midgut loop (embryonic mouse) @@ -10303,8 +9179,7 @@ - mesentery of midgut (embryonic mouse) - EMAPA:17039 + mesentery of midgut (embryonic mouse) @@ -10323,8 +9198,7 @@ - midgut dorsal mesentery (embryonic mouse) - EMAPA:17040 + midgut dorsal mesentery (embryonic mouse) @@ -10343,8 +9217,7 @@ - foregut-midgut junction gland (embryonic mouse) - EMAPA:17065 + foregut-midgut junction gland (embryonic mouse) @@ -10363,8 +9236,7 @@ - pancreas primordium (embryonic mouse) - EMAPA:17066 + pancreas primordium (embryonic mouse) @@ -10383,8 +9255,7 @@ - dorsal pancreatic bud (embryonic mouse) - EMAPA:17067 + dorsal pancreatic bud (embryonic mouse) @@ -10403,30 +9274,7 @@ - thyroid gland (embryonic mouse) - EMAPA:17068 - - - - - - - - - - - - - - - - - - - - foramen cecum of tongue (embryonic mouse) - future foramen cecum (embryonic mouse) - EMAPA:17069 + thyroid gland (embryonic mouse) @@ -10445,8 +9293,7 @@ - thyroglossal duct (embryonic mouse) - EMAPA:17070 + thyroglossal duct (embryonic mouse) @@ -10465,8 +9312,7 @@ - metencephalon (embryonic mouse) - EMAPA:17071 + metencephalon (embryonic mouse) @@ -10485,8 +9331,7 @@ - rhombic lip (embryonic mouse) - EMAPA:17074 + rhombic lip (embryonic mouse) @@ -10505,8 +9350,7 @@ - basal plate metencephalon (embryonic mouse) - EMAPA:17078 + basal plate metencephalon (embryonic mouse) @@ -10525,8 +9369,7 @@ - myelencephalon (embryonic mouse) - EMAPA:17082 + myelencephalon (embryonic mouse) @@ -10545,8 +9388,7 @@ - myelencephalon basal plate (embryonic mouse) - EMAPA:17088 + myelencephalon basal plate (embryonic mouse) @@ -10565,8 +9407,7 @@ - neural tube mantle layer (embryonic mouse) - EMAPA:17148 + neural tube mantle layer (embryonic mouse) @@ -10585,8 +9426,7 @@ - spinal cord alar plate (embryonic mouse) - EMAPA:17149 + spinal cord alar plate (embryonic mouse) @@ -10605,8 +9445,7 @@ - neural tube marginal layer (embryonic mouse) - EMAPA:17151 + neural tube marginal layer (embryonic mouse) @@ -10625,8 +9464,7 @@ - neural tube ventricular layer (embryonic mouse) - EMAPA:17152 + neural tube ventricular layer (embryonic mouse) @@ -10645,8 +9483,7 @@ - inferior glossopharyngeal IX ganglion (embryonic mouse) - EMAPA:17153 + inferior glossopharyngeal IX ganglion (embryonic mouse) @@ -10665,8 +9502,7 @@ - superior glossopharyngeal IX ganglion (embryonic mouse) - EMAPA:17154 + superior glossopharyngeal IX ganglion (embryonic mouse) @@ -10685,8 +9521,7 @@ - inferior vagus X ganglion (embryonic mouse) - EMAPA:17155 + inferior vagus X ganglion (embryonic mouse) @@ -10705,30 +9540,7 @@ - superior vagus X ganglion (embryonic mouse) - EMAPA:17156 - - - - - - - - - - - - - - - - - - - - autonomic ganglion (embryonic mouse) - sympathetic ganglion (embryonic mouse) - EMAPA:17157 + superior vagus X ganglion (embryonic mouse) @@ -10747,8 +9559,7 @@ - thoracic ganglion (embryonic mouse) - EMAPA:17158 + thoracic ganglion (embryonic mouse) @@ -10767,8 +9578,7 @@ - cornea (embryonic mouse) - EMAPA:17161 + cornea (embryonic mouse) @@ -10787,8 +9597,7 @@ - corneal epithelium (embryonic mouse) - EMAPA:17162 + corneal epithelium (embryonic mouse) @@ -10807,8 +9616,7 @@ - lens vesicle (embryonic mouse) - EMAPA:17163 + lens vesicle (embryonic mouse) @@ -10827,8 +9635,7 @@ - lens vesicle cavity (embryonic mouse) - EMAPA:17164 + lens vesicle cavity (embryonic mouse) @@ -10847,8 +9654,7 @@ - lens vesicle epithelium (embryonic mouse) - EMAPA:17165 + lens vesicle epithelium (embryonic mouse) @@ -10867,8 +9673,7 @@ - optic fissure (embryonic mouse) - EMAPA:17166 + optic fissure (embryonic mouse) @@ -10887,8 +9692,7 @@ - perioptic mesenchyme (embryonic mouse) - EMAPA:17167 + perioptic mesenchyme (embryonic mouse) @@ -10907,8 +9711,7 @@ - retina (embryonic mouse) - EMAPA:17168 + retina (embryonic mouse) @@ -10927,8 +9730,7 @@ - embryonic intraretinal space (embryonic mouse) - EMAPA:17170 + embryonic intraretinal space (embryonic mouse) @@ -10947,8 +9749,7 @@ - retinal neural layer (embryonic mouse) - EMAPA:17171 + retinal neural layer (embryonic mouse) @@ -10967,8 +9768,7 @@ - pigmented layer of retina (embryonic mouse) - EMAPA:17172 + pigmented layer of retina (embryonic mouse) @@ -10987,8 +9787,7 @@ - anal membrane endodermal component (embryonic mouse) - EMAPA:17177 + anal membrane endodermal component (embryonic mouse) @@ -11007,8 +9806,7 @@ - foregut region of duodenum (embryonic mouse) - EMAPA:17178 + foregut region of duodenum (embryonic mouse) @@ -11027,8 +9825,7 @@ - mesoduodenum (embryonic mouse) - EMAPA:17183 + mesoduodenum (embryonic mouse) @@ -11047,8 +9844,7 @@ - tongue (embryonic mouse) - EMAPA:17185 + tongue (embryonic mouse) @@ -11067,8 +9863,7 @@ - lingual swellings (embryonic mouse) - EMAPA:17186 + lingual swellings (embryonic mouse) @@ -11087,8 +9882,7 @@ - median lingual swelling (embryonic mouse) - EMAPA:17187 + median lingual swelling (embryonic mouse) @@ -11107,8 +9901,7 @@ - median lingual swelling epithelium (embryonic mouse) - EMAPA:17188 + median lingual swelling epithelium (embryonic mouse) @@ -11127,8 +9920,7 @@ - lateral lingual swelling (embryonic mouse) - EMAPA:17189 + lateral lingual swelling (embryonic mouse) @@ -11147,8 +9939,7 @@ - lateral lingual swelling epithelium (embryonic mouse) - EMAPA:17190 + lateral lingual swelling epithelium (embryonic mouse) @@ -11167,8 +9958,7 @@ - midgut region of duodenum (embryonic mouse) - EMAPA:17193 + midgut region of duodenum (embryonic mouse) @@ -11187,8 +9977,7 @@ - mesentery of midgut (embryonic mouse) - EMAPA:17197 + mesentery of midgut (embryonic mouse) @@ -11207,8 +9996,7 @@ - mesoduodenum (embryonic mouse) - EMAPA:17198 + mesoduodenum (embryonic mouse) @@ -11227,8 +10015,7 @@ - oronasal cavity (embryonic mouse) - EMAPA:17200 + oronasal cavity (embryonic mouse) @@ -11247,8 +10034,7 @@ - common bile duct (embryonic mouse) - EMAPA:17201 + common bile duct (embryonic mouse) @@ -11267,8 +10053,7 @@ - gallbladder (embryonic mouse) - EMAPA:17202 + gallbladder (embryonic mouse) @@ -11287,8 +10072,7 @@ - liver parenchyma (embryonic mouse) - EMAPA:17203 + liver parenchyma (embryonic mouse) @@ -11307,8 +10091,7 @@ - gonad primordium (embryonic mouse) - EMAPA:17204 + gonad primordium (embryonic mouse) @@ -11327,8 +10110,7 @@ - ureteric bud (embryonic mouse) - EMAPA:17209 + ureteric bud (embryonic mouse) @@ -11347,8 +10129,7 @@ - urorectal septum (embryonic mouse) - EMAPA:17212 + urorectal septum (embryonic mouse) @@ -11367,30 +10148,7 @@ - skeleton (embryonic mouse) - EMAPA:17213 - - - - - - - - - - - - - - - - - - - - axial skeleton plus cranial skeleton (embryonic mouse) - postcranial axial skeleton (embryonic mouse) - EMAPA:17214 + skeleton (embryonic mouse) @@ -11409,8 +10167,7 @@ - cervical region of vertebral column (embryonic mouse) - EMAPA:17215 + cervical region of vertebral column (embryonic mouse) @@ -11429,8 +10186,7 @@ - embryonic handplate (embryonic mouse) - EMAPA:17245 + embryonic handplate (embryonic mouse) @@ -11449,8 +10205,7 @@ - handplate apical ectodermal ridge (embryonic mouse) - EMAPA:17247 + handplate apical ectodermal ridge (embryonic mouse) @@ -11469,8 +10224,7 @@ - mesenchyme of handplate (embryonic mouse) - EMAPA:17248 + mesenchyme of handplate (embryonic mouse) @@ -11489,8 +10243,7 @@ - embryonic footplate (embryonic mouse) - EMAPA:17249 + embryonic footplate (embryonic mouse) @@ -11509,8 +10262,7 @@ - ectoderm of footplate (embryonic mouse) - EMAPA:17250 + ectoderm of footplate (embryonic mouse) @@ -11529,8 +10281,7 @@ - footplate apical ectodermal ridge (embryonic mouse) - EMAPA:17251 + footplate apical ectodermal ridge (embryonic mouse) @@ -11549,8 +10300,7 @@ - mesenchyme of footplate (embryonic mouse) - EMAPA:17252 + mesenchyme of footplate (embryonic mouse) @@ -11569,8 +10319,7 @@ - ventral pancreatic bud (embryonic mouse) - EMAPA:17256 + ventral pancreatic bud (embryonic mouse) @@ -11589,8 +10338,7 @@ - lateral recess of fourth ventricle (embryonic mouse) - EMAPA:17257 + lateral recess of fourth ventricle (embryonic mouse) @@ -11609,8 +10357,7 @@ - floor plate of metencephalon (embryonic mouse) - EMAPA:17258 + floor plate of metencephalon (embryonic mouse) @@ -11629,8 +10376,7 @@ - cranial nerve (embryonic mouse) - EMAPA:17264 + cranial nerve (embryonic mouse) @@ -11649,8 +10395,7 @@ - accessory XI nerve (embryonic mouse) - EMAPA:17265 + accessory XI nerve (embryonic mouse) @@ -11669,8 +10414,7 @@ - accessory XI nerve cranial component (embryonic mouse) - EMAPA:17266 + accessory XI nerve cranial component (embryonic mouse) @@ -11689,8 +10433,7 @@ - accessory XI nerve spinal component (embryonic mouse) - EMAPA:17267 + accessory XI nerve spinal component (embryonic mouse) @@ -11709,8 +10452,7 @@ - glossopharyngeal nerve (embryonic mouse) - EMAPA:17268 + glossopharyngeal nerve (embryonic mouse) @@ -11729,8 +10471,7 @@ - hypoglossal nerve (embryonic mouse) - EMAPA:17269 + hypoglossal nerve (embryonic mouse) @@ -11749,8 +10490,7 @@ - parasympathetic nervous system (embryonic mouse) - EMAPA:17270 + parasympathetic nervous system (embryonic mouse) @@ -11769,8 +10509,7 @@ - parasympathetic nerve (embryonic mouse) - EMAPA:17271 + parasympathetic nerve (embryonic mouse) @@ -11789,8 +10528,7 @@ - vagus X nerve trunk (embryonic mouse) - EMAPA:17272 + vagus X nerve trunk (embryonic mouse) @@ -11809,8 +10547,7 @@ - right recurrent laryngeal nerve (embryonic mouse) - EMAPA:17275 + right recurrent laryngeal nerve (embryonic mouse) @@ -11829,8 +10566,7 @@ - median nerve (embryonic mouse) - EMAPA:17277 + median nerve (embryonic mouse) @@ -11849,8 +10585,7 @@ - radial nerve (embryonic mouse) - EMAPA:17278 + radial nerve (embryonic mouse) @@ -11869,8 +10604,7 @@ - ulnar nerve (embryonic mouse) - EMAPA:17279 + ulnar nerve (embryonic mouse) @@ -11889,8 +10623,7 @@ - auditory hillocks (embryonic mouse) - EMAPA:17280 + auditory hillocks (embryonic mouse) @@ -11909,8 +10642,7 @@ - pharyngeal membrane of 1st arch (embryonic mouse) - EMAPA:17281 + pharyngeal membrane of 1st arch (embryonic mouse) @@ -11929,8 +10661,7 @@ - vestibular labyrinth (embryonic mouse) - EMAPA:17286 + vestibular labyrinth (embryonic mouse) @@ -11949,8 +10680,7 @@ - ductus reuniens (embryonic mouse) - EMAPA:17287 + ductus reuniens (embryonic mouse) @@ -11969,8 +10699,7 @@ - epithelium of ductus reuniens (embryonic mouse) - EMAPA:17289 + epithelium of ductus reuniens (embryonic mouse) @@ -11989,8 +10718,7 @@ - saccule of membranous labyrinth (embryonic mouse) - EMAPA:17290 + saccule of membranous labyrinth (embryonic mouse) @@ -12009,8 +10737,7 @@ - epithelium of saccule (embryonic mouse) - EMAPA:17292 + epithelium of saccule (embryonic mouse) @@ -12029,8 +10756,7 @@ - utricle of membranous labyrinth (embryonic mouse) - EMAPA:17293 + utricle of membranous labyrinth (embryonic mouse) @@ -12049,8 +10775,7 @@ - epithelium of utricle (embryonic mouse) - EMAPA:17295 + epithelium of utricle (embryonic mouse) @@ -12069,30 +10794,7 @@ - posterior semicircular canal (embryonic mouse) - EMAPA:17296 - - - - - - - - - - - - - - - - - - - - epithelium of posterior semicircular canal (embryonic mouse) - epithelium of utricle (embryonic mouse) - EMAPA:17298 + posterior semicircular canal (embryonic mouse) @@ -12111,30 +10813,7 @@ - anterior semicircular canal (embryonic mouse) - EMAPA:17299 - - - - - - - - - - - - - - - - - - - - epithelium of superior semicircular canal (embryonic mouse) - epithelium of utricle (embryonic mouse) - EMAPA:17301 + anterior semicircular canal (embryonic mouse) @@ -12153,8 +10832,7 @@ - hyaloid cavity (embryonic mouse) - EMAPA:17302 + hyaloid cavity (embryonic mouse) @@ -12173,8 +10851,7 @@ - hyaloid vascular plexus (embryonic mouse) - EMAPA:17303 + hyaloid vascular plexus (embryonic mouse) @@ -12193,8 +10870,7 @@ - lens anterior epithelium (embryonic mouse) - EMAPA:17304 + lens anterior epithelium (embryonic mouse) @@ -12213,8 +10889,7 @@ - basilar artery (embryonic mouse) - EMAPA:17307 + basilar artery (embryonic mouse) @@ -12233,8 +10908,7 @@ - hyoid artery (embryonic mouse) - EMAPA:17308 + hyoid artery (embryonic mouse) @@ -12253,8 +10927,7 @@ - iliac artery (embryonic mouse) - EMAPA:17309 + iliac artery (embryonic mouse) @@ -12273,8 +10946,7 @@ - common iliac artery (embryonic mouse) - EMAPA:17310 + common iliac artery (embryonic mouse) @@ -12293,8 +10965,7 @@ - maxillary artery (embryonic mouse) - EMAPA:17311 + maxillary artery (embryonic mouse) @@ -12313,8 +10984,7 @@ - mesenteric artery (embryonic mouse) - EMAPA:17312 + mesenteric artery (embryonic mouse) @@ -12333,8 +11003,7 @@ - stapedial artery (embryonic mouse) - EMAPA:17313 + stapedial artery (embryonic mouse) @@ -12353,8 +11022,7 @@ - vertebral artery (embryonic mouse) - EMAPA:17314 + vertebral artery (embryonic mouse) @@ -12373,8 +11041,7 @@ - left cardiac atrium (embryonic mouse) - EMAPA:17315 + left cardiac atrium (embryonic mouse) @@ -12393,8 +11060,7 @@ - left atrium auricular region (embryonic mouse) - EMAPA:17316 + left atrium auricular region (embryonic mouse) @@ -12413,8 +11079,7 @@ - cardiac muscle tissue of left auricle (embryonic mouse) - EMAPA:17318 + cardiac muscle tissue of left auricle (embryonic mouse) @@ -12433,8 +11098,7 @@ - cardiac muscle of left atrium (embryonic mouse) - EMAPA:17320 + cardiac muscle of left atrium (embryonic mouse) @@ -12453,8 +11117,7 @@ - right cardiac atrium (embryonic mouse) - EMAPA:17321 + right cardiac atrium (embryonic mouse) @@ -12473,8 +11136,7 @@ - right atrium auricular region (embryonic mouse) - EMAPA:17322 + right atrium auricular region (embryonic mouse) @@ -12493,8 +11155,7 @@ - cardiac muscle tissue of right auricle (embryonic mouse) - EMAPA:17324 + cardiac muscle tissue of right auricle (embryonic mouse) @@ -12513,8 +11174,7 @@ - cardiac muscle of right atrium (embryonic mouse) - EMAPA:17326 + cardiac muscle of right atrium (embryonic mouse) @@ -12533,8 +11193,7 @@ - right atrium valve (embryonic mouse) - EMAPA:17327 + right atrium valve (embryonic mouse) @@ -12553,8 +11212,7 @@ - right atrium venous valve (embryonic mouse) - EMAPA:17328 + right atrium venous valve (embryonic mouse) @@ -12573,8 +11231,7 @@ - outflow tract aortic component (embryonic mouse) - EMAPA:17329 + outflow tract aortic component (embryonic mouse) @@ -12593,8 +11250,7 @@ - outflow tract pulmonary component (embryonic mouse) - EMAPA:17330 + outflow tract pulmonary component (embryonic mouse) @@ -12613,8 +11269,7 @@ - cardiac ventricle (embryonic mouse) - EMAPA:17331 + cardiac ventricle (embryonic mouse) @@ -12633,8 +11288,7 @@ - conotruncal ridge (embryonic mouse) - EMAPA:17332 + conotruncal ridge (embryonic mouse) @@ -12653,8 +11307,7 @@ - interventricular septum (embryonic mouse) - EMAPA:17333 + interventricular septum (embryonic mouse) @@ -12673,8 +11326,7 @@ - cardiac muscle tissue of interventricular septum (embryonic mouse) - EMAPA:17335 + cardiac muscle tissue of interventricular septum (embryonic mouse) @@ -12693,8 +11345,7 @@ - interventricular groove (embryonic mouse) - EMAPA:17336 + interventricular groove (embryonic mouse) @@ -12713,8 +11364,7 @@ - heart left ventricle (embryonic mouse) - EMAPA:17337 + heart left ventricle (embryonic mouse) @@ -12733,30 +11383,7 @@ - endocardium of left ventricle (embryonic mouse) - EMAPA:17338 - - - - - - - - - - - - - - - - - - - - cardiac muscle of left ventricle (embryonic mouse) - left ventricle myocardium (embryonic mouse) - EMAPA:17339 + endocardium of left ventricle (embryonic mouse) @@ -12775,8 +11402,7 @@ - heart right ventricle (embryonic mouse) - EMAPA:17340 + heart right ventricle (embryonic mouse) @@ -12795,30 +11421,7 @@ - endocardium of right ventricle (embryonic mouse) - EMAPA:17341 - - - - - - - - - - - - - - - - - - - - cardiac muscle of right ventricle (embryonic mouse) - right ventricle myocardium (embryonic mouse) - EMAPA:17342 + endocardium of right ventricle (embryonic mouse) @@ -12837,8 +11440,7 @@ - ductus venosus (embryonic mouse) - EMAPA:17343 + ductus venosus (embryonic mouse) @@ -12857,8 +11459,7 @@ - mesenteric vein (embryonic mouse) - EMAPA:17348 + mesenteric vein (embryonic mouse) @@ -12877,8 +11478,7 @@ - portal vein (embryonic mouse) - EMAPA:17349 + portal vein (embryonic mouse) @@ -12897,8 +11497,7 @@ - Reichert's cartilage pre-cartilage condensation (embryonic mouse) - EMAPA:17351 + Reichert's cartilage pre-cartilage condensation (embryonic mouse) @@ -12917,8 +11516,7 @@ - hypopharyngeal eminence (embryonic mouse) - EMAPA:17352 + hypopharyngeal eminence (embryonic mouse) @@ -12937,8 +11535,7 @@ - mandibular prominence (embryonic mouse) - EMAPA:17355 + mandibular prominence (embryonic mouse) @@ -12957,8 +11554,7 @@ - mandibular process mesenchyme (embryonic mouse) - EMAPA:17357 + mandibular process mesenchyme (embryonic mouse) @@ -12977,8 +11573,7 @@ - Meckel's cartilage pre-cartilage condensation (embryonic mouse) - EMAPA:17358 + Meckel's cartilage pre-cartilage condensation (embryonic mouse) @@ -12997,8 +11592,7 @@ - maxillary prominence (embryonic mouse) - EMAPA:17359 + maxillary prominence (embryonic mouse) @@ -13017,8 +11611,7 @@ - maxillary process mesenchyme (embryonic mouse) - EMAPA:17361 + maxillary process mesenchyme (embryonic mouse) @@ -13037,8 +11630,7 @@ - secondary palatal shelf (embryonic mouse) - EMAPA:17362 + secondary palatal shelf (embryonic mouse) @@ -13057,8 +11649,7 @@ - secondary palatal shelf epithelium (embryonic mouse) - EMAPA:17363 + secondary palatal shelf epithelium (embryonic mouse) @@ -13077,8 +11668,7 @@ - secondary palatal shelf mesenchyme (embryonic mouse) - EMAPA:17364 + secondary palatal shelf mesenchyme (embryonic mouse) @@ -13097,8 +11687,7 @@ - hepatic sinusoid (embryonic mouse) - EMAPA:17365 + hepatic sinusoid (embryonic mouse) @@ -13117,8 +11706,7 @@ - renal system (embryonic mouse) - EMAPA:17366 + renal system (embryonic mouse) @@ -13137,30 +11725,7 @@ - mesentery of urinary system (embryonic mouse) - EMAPA:17367 - - - - - - - - - - - - - - - - - - - - kidney (embryonic mouse) - metanephros (embryonic mouse) - EMAPA:17373 + mesentery of urinary system (embryonic mouse) @@ -13179,8 +11744,7 @@ - metanephric mesenchyme (embryonic mouse) - EMAPA:17375 + metanephric mesenchyme (embryonic mouse) @@ -13199,8 +11763,7 @@ - urogenital membrane (embryonic mouse) - EMAPA:17378 + urogenital membrane (embryonic mouse) @@ -13219,30 +11782,7 @@ - primitive urogenital sinus (embryonic mouse) - EMAPA:17379 - - - - - - - - - - - - - - - - - - - - reproductive organ (embryonic mouse) - reproductive system (embryonic mouse) - EMAPA:17381 + primitive urogenital sinus (embryonic mouse) @@ -13261,8 +11801,7 @@ - undifferentiated genital tubercle (embryonic mouse) - EMAPA:17382 + undifferentiated genital tubercle (embryonic mouse) @@ -13281,8 +11820,7 @@ - gonad (embryonic mouse) - EMAPA:17383 + gonad (embryonic mouse) @@ -13301,8 +11839,7 @@ - gonad germinal epithelium (embryonic mouse) - EMAPA:17384 + gonad germinal epithelium (embryonic mouse) @@ -13321,8 +11858,7 @@ - gonad mesenchyme (embryonic mouse) - EMAPA:17385 + gonad mesenchyme (embryonic mouse) @@ -13341,8 +11877,7 @@ - arytenoid pre-cartilage condensation (embryonic mouse) - EMAPA:17387 + arytenoid pre-cartilage condensation (embryonic mouse) @@ -13361,8 +11896,7 @@ - lobar bronchus of left lung (embryonic mouse) - EMAPA:17388 + lobar bronchus of left lung (embryonic mouse) @@ -13381,8 +11915,7 @@ - lumbar region of vertebral column (embryonic mouse) - EMAPA:17393 + lumbar region of vertebral column (embryonic mouse) @@ -13401,8 +11934,7 @@ - thoracic region of vertebral column (embryonic mouse) - EMAPA:17396 + thoracic region of vertebral column (embryonic mouse) @@ -13421,8 +11953,7 @@ - rib pre-cartilage condensation (embryonic mouse) - EMAPA:17397 + rib pre-cartilage condensation (embryonic mouse) @@ -13441,8 +11972,7 @@ - oral cavity (embryonic mouse) - EMAPA:17411 + oral cavity (embryonic mouse) @@ -13461,8 +11991,7 @@ - forelimb (embryonic mouse) - EMAPA:17412 + forelimb (embryonic mouse) @@ -13481,8 +12010,7 @@ - arm (embryonic mouse) - EMAPA:17413 + arm (embryonic mouse) @@ -13501,8 +12029,7 @@ - elbow (embryonic mouse) - EMAPA:17414 + elbow (embryonic mouse) @@ -13521,8 +12048,7 @@ - epithelium of elbow (embryonic mouse) - EMAPA:17415 + epithelium of elbow (embryonic mouse) @@ -13541,8 +12067,7 @@ - mesenchyme of elbow (embryonic mouse) - EMAPA:17416 + mesenchyme of elbow (embryonic mouse) @@ -13561,8 +12086,7 @@ - forelimb zeugopod (embryonic mouse) - EMAPA:17417 + forelimb zeugopod (embryonic mouse) @@ -13581,8 +12105,7 @@ - epithelium of forearm (embryonic mouse) - EMAPA:17418 + epithelium of forearm (embryonic mouse) @@ -13601,8 +12124,7 @@ - mesenchyme of forearm (embryonic mouse) - EMAPA:17419 + mesenchyme of forearm (embryonic mouse) @@ -13621,8 +12143,7 @@ - radius-ulna pre-cartilage condensation (embryonic mouse) - EMAPA:17420 + radius-ulna pre-cartilage condensation (embryonic mouse) @@ -13641,8 +12162,7 @@ - shoulder (embryonic mouse) - EMAPA:17421 + shoulder (embryonic mouse) @@ -13661,8 +12181,7 @@ - epithelium of shoulder (embryonic mouse) - EMAPA:17422 + epithelium of shoulder (embryonic mouse) @@ -13681,8 +12200,7 @@ - mesenchyme of shoulder (embryonic mouse) - EMAPA:17423 + mesenchyme of shoulder (embryonic mouse) @@ -13701,8 +12219,7 @@ - forelimb stylopod (embryonic mouse) - EMAPA:17424 + forelimb stylopod (embryonic mouse) @@ -13721,8 +12238,7 @@ - upper arm epithelium (embryonic mouse) - EMAPA:17425 + upper arm epithelium (embryonic mouse) @@ -13741,8 +12257,7 @@ - upper arm mesenchyme (embryonic mouse) - EMAPA:17426 + upper arm mesenchyme (embryonic mouse) @@ -13761,8 +12276,7 @@ - humerus pre-cartilage condensation (embryonic mouse) - EMAPA:17427 + humerus pre-cartilage condensation (embryonic mouse) @@ -13781,8 +12295,7 @@ - manus (embryonic mouse) - EMAPA:17428 + manus (embryonic mouse) @@ -13801,8 +12314,7 @@ - manual digit 1 (embryonic mouse) - EMAPA:17429 + manual digit 1 (embryonic mouse) @@ -13821,8 +12333,7 @@ - manual digit 1 epithelium (embryonic mouse) - EMAPA:17430 + manual digit 1 epithelium (embryonic mouse) @@ -13841,8 +12352,7 @@ - manual digit 1 mesenchyme (embryonic mouse) - EMAPA:17431 + manual digit 1 mesenchyme (embryonic mouse) @@ -13861,8 +12371,7 @@ - manual digit 2 (embryonic mouse) - EMAPA:17432 + manual digit 2 (embryonic mouse) @@ -13881,8 +12390,7 @@ - manual digit 2 epithelium (embryonic mouse) - EMAPA:17433 + manual digit 2 epithelium (embryonic mouse) @@ -13901,8 +12409,7 @@ - manual digit 2 mesenchyme (embryonic mouse) - EMAPA:17434 + manual digit 2 mesenchyme (embryonic mouse) @@ -13921,8 +12428,7 @@ - manual digit 3 (embryonic mouse) - EMAPA:17435 + manual digit 3 (embryonic mouse) @@ -13941,8 +12447,7 @@ - manual digit 3 epithelium (embryonic mouse) - EMAPA:17436 + manual digit 3 epithelium (embryonic mouse) @@ -13961,8 +12466,7 @@ - manual digit 3 mesenchyme (embryonic mouse) - EMAPA:17437 + manual digit 3 mesenchyme (embryonic mouse) @@ -13981,8 +12485,7 @@ - manual digit 4 (embryonic mouse) - EMAPA:17438 + manual digit 4 (embryonic mouse) @@ -14001,8 +12504,7 @@ - manual digit 4 epithelium (embryonic mouse) - EMAPA:17439 + manual digit 4 epithelium (embryonic mouse) @@ -14021,30 +12523,7 @@ - manual digit 4 mesenchyme (embryonic mouse) - EMAPA:17440 - - - - - - - - - - - - - - - - - - - - digit 5 (embryonic mouse) - manual digit 5 (embryonic mouse) - EMAPA:17441 + manual digit 4 mesenchyme (embryonic mouse) @@ -14063,8 +12542,7 @@ - manual digit 5 epithelium (embryonic mouse) - EMAPA:17442 + manual digit 5 epithelium (embryonic mouse) @@ -14083,8 +12561,7 @@ - manual digit 5 mesenchyme (embryonic mouse) - EMAPA:17443 + manual digit 5 mesenchyme (embryonic mouse) @@ -14103,8 +12580,7 @@ - interdigital region between manual digits 1 and 2 (embryonic mouse) - EMAPA:17445 + interdigital region between manual digits 1 and 2 (embryonic mouse) @@ -14123,8 +12599,7 @@ - mesenchyme of interdigital region between manual digits 1 and 2 (embryonic mouse) - EMAPA:17447 + mesenchyme of interdigital region between manual digits 1 and 2 (embryonic mouse) @@ -14143,8 +12618,7 @@ - interdigital region between manual digits 2 and 3 (embryonic mouse) - EMAPA:17448 + interdigital region between manual digits 2 and 3 (embryonic mouse) @@ -14163,8 +12637,7 @@ - mesenchyme of interdigital region between manual digits 2 and 3 (embryonic mouse) - EMAPA:17450 + mesenchyme of interdigital region between manual digits 2 and 3 (embryonic mouse) @@ -14183,8 +12656,7 @@ - interdigital region between manual digits 3 and 4 (embryonic mouse) - EMAPA:17451 + interdigital region between manual digits 3 and 4 (embryonic mouse) @@ -14203,8 +12675,7 @@ - mesenchyme of interdigital region between manual digits 3 and 4 (embryonic mouse) - EMAPA:17453 + mesenchyme of interdigital region between manual digits 3 and 4 (embryonic mouse) @@ -14223,8 +12694,7 @@ - interdigital region between manual digits 4 and 5 (embryonic mouse) - EMAPA:17454 + interdigital region between manual digits 4 and 5 (embryonic mouse) @@ -14243,8 +12713,7 @@ - mesenchyme of interdigital region between manual digits 4 and 5 (embryonic mouse) - EMAPA:17456 + mesenchyme of interdigital region between manual digits 4 and 5 (embryonic mouse) @@ -14263,8 +12732,7 @@ - mesenchyme of handplate (embryonic mouse) - EMAPA:17457 + mesenchyme of handplate (embryonic mouse) @@ -14283,8 +12751,7 @@ - hindlimb (embryonic mouse) - EMAPA:17458 + hindlimb (embryonic mouse) @@ -14303,8 +12770,7 @@ - pes (embryonic mouse) - EMAPA:17459 + pes (embryonic mouse) @@ -14323,8 +12789,7 @@ - pedal digit 1 (embryonic mouse) - EMAPA:17460 + pedal digit 1 (embryonic mouse) @@ -14343,8 +12808,7 @@ - pedal digit 1 epithelium (embryonic mouse) - EMAPA:17461 + pedal digit 1 epithelium (embryonic mouse) @@ -14363,8 +12827,7 @@ - pedal digit 1 mesenchyme (embryonic mouse) - EMAPA:17462 + pedal digit 1 mesenchyme (embryonic mouse) @@ -14383,8 +12846,7 @@ - pedal digit 2 (embryonic mouse) - EMAPA:17463 + pedal digit 2 (embryonic mouse) @@ -14403,8 +12865,7 @@ - pedal digit 2 epithelium (embryonic mouse) - EMAPA:17464 + pedal digit 2 epithelium (embryonic mouse) @@ -14423,8 +12884,7 @@ - pedal digit 2 mesenchyme (embryonic mouse) - EMAPA:17465 + pedal digit 2 mesenchyme (embryonic mouse) @@ -14443,8 +12903,7 @@ - pedal digit 3 (embryonic mouse) - EMAPA:17466 + pedal digit 3 (embryonic mouse) @@ -14463,8 +12922,7 @@ - pedal digit 3 epithelium (embryonic mouse) - EMAPA:17467 + pedal digit 3 epithelium (embryonic mouse) @@ -14483,8 +12941,7 @@ - pedal digit 3 mesenchyme (embryonic mouse) - EMAPA:17468 + pedal digit 3 mesenchyme (embryonic mouse) @@ -14503,8 +12960,7 @@ - pedal digit 4 (embryonic mouse) - EMAPA:17469 + pedal digit 4 (embryonic mouse) @@ -14523,8 +12979,7 @@ - pedal digit 4 epithelium (embryonic mouse) - EMAPA:17470 + pedal digit 4 epithelium (embryonic mouse) @@ -14543,8 +12998,7 @@ - pedal digit 4 mesenchyme (embryonic mouse) - EMAPA:17471 + pedal digit 4 mesenchyme (embryonic mouse) @@ -14563,8 +13017,7 @@ - pedal digit 5 (embryonic mouse) - EMAPA:17472 + pedal digit 5 (embryonic mouse) @@ -14583,8 +13036,7 @@ - pedal digit 5 epithelium (embryonic mouse) - EMAPA:17473 + pedal digit 5 epithelium (embryonic mouse) @@ -14603,8 +13055,7 @@ - pedal digit 5 mesenchyme (embryonic mouse) - EMAPA:17474 + pedal digit 5 mesenchyme (embryonic mouse) @@ -14623,8 +13074,7 @@ - interdigital region between pedal digits 1 and 2 (embryonic mouse) - EMAPA:17476 + interdigital region between pedal digits 1 and 2 (embryonic mouse) @@ -14643,8 +13093,7 @@ - mesenchyme of interdigital region between pedal digits 1 and 2 (embryonic mouse) - EMAPA:17478 + mesenchyme of interdigital region between pedal digits 1 and 2 (embryonic mouse) @@ -14663,8 +13112,7 @@ - interdigital region between pedal digits 2 and 3 (embryonic mouse) - EMAPA:17479 + interdigital region between pedal digits 2 and 3 (embryonic mouse) @@ -14683,8 +13131,7 @@ - mesenchyme of interdigital region between pedal digits 2 and 3 (embryonic mouse) - EMAPA:17481 + mesenchyme of interdigital region between pedal digits 2 and 3 (embryonic mouse) @@ -14703,8 +13150,7 @@ - interdigital region between pedal digits 3 and 4 (embryonic mouse) - EMAPA:17482 + interdigital region between pedal digits 3 and 4 (embryonic mouse) @@ -14723,8 +13169,7 @@ - mesenchyme of interdigital region between pedal digits 3 and 4 (embryonic mouse) - EMAPA:17484 + mesenchyme of interdigital region between pedal digits 3 and 4 (embryonic mouse) @@ -14743,8 +13188,7 @@ - interdigital region between pedal digits 4 and 5 (embryonic mouse) - EMAPA:17485 + interdigital region between pedal digits 4 and 5 (embryonic mouse) @@ -14763,8 +13207,7 @@ - mesenchyme of interdigital region between pedal digits 4 and 5 (embryonic mouse) - EMAPA:17487 + mesenchyme of interdigital region between pedal digits 4 and 5 (embryonic mouse) @@ -14783,8 +13226,7 @@ - mesenchyme of footplate (embryonic mouse) - EMAPA:17488 + mesenchyme of footplate (embryonic mouse) @@ -14803,8 +13245,7 @@ - leg (embryonic mouse) - EMAPA:17489 + leg (embryonic mouse) @@ -14823,8 +13264,7 @@ - hip (embryonic mouse) - EMAPA:17490 + hip (embryonic mouse) @@ -14843,8 +13283,7 @@ - epithelium of hip (embryonic mouse) - EMAPA:17491 + epithelium of hip (embryonic mouse) @@ -14863,8 +13302,7 @@ - mesenchyme of hip (embryonic mouse) - EMAPA:17492 + mesenchyme of hip (embryonic mouse) @@ -14883,8 +13321,7 @@ - knee (embryonic mouse) - EMAPA:17493 + knee (embryonic mouse) @@ -14903,8 +13340,7 @@ - epithelium of knee (embryonic mouse) - EMAPA:17494 + epithelium of knee (embryonic mouse) @@ -14923,8 +13359,7 @@ - mesenchyme of knee (embryonic mouse) - EMAPA:17495 + mesenchyme of knee (embryonic mouse) @@ -14943,8 +13378,7 @@ - hindlimb zeugopod (embryonic mouse) - EMAPA:17496 + hindlimb zeugopod (embryonic mouse) @@ -14963,8 +13397,7 @@ - lower leg epithelium (embryonic mouse) - EMAPA:17497 + lower leg epithelium (embryonic mouse) @@ -14983,8 +13416,7 @@ - lower leg mesenchyme (embryonic mouse) - EMAPA:17498 + lower leg mesenchyme (embryonic mouse) @@ -15003,8 +13435,7 @@ - hindlimb stylopod (embryonic mouse) - EMAPA:17499 + hindlimb stylopod (embryonic mouse) @@ -15023,8 +13454,7 @@ - upper leg epithelium (embryonic mouse) - EMAPA:17500 + upper leg epithelium (embryonic mouse) @@ -15043,8 +13473,7 @@ - upper leg mesenchyme (embryonic mouse) - EMAPA:17501 + upper leg mesenchyme (embryonic mouse) @@ -15063,8 +13492,7 @@ - femur pre-cartilage condensation (embryonic mouse) - EMAPA:17502 + femur pre-cartilage condensation (embryonic mouse) @@ -15083,8 +13511,7 @@ - pancreas (embryonic mouse) - EMAPA:17503 + pancreas (embryonic mouse) @@ -15103,8 +13530,7 @@ - body of pancreas (embryonic mouse) - EMAPA:17504 + body of pancreas (embryonic mouse) @@ -15123,8 +13549,7 @@ - pancreas body parenchyma (embryonic mouse) - EMAPA:17506 + pancreas body parenchyma (embryonic mouse) @@ -15143,8 +13568,7 @@ - head of pancreas (embryonic mouse) - EMAPA:17507 + head of pancreas (embryonic mouse) @@ -15163,8 +13587,7 @@ - pancreas head parenchyma (embryonic mouse) - EMAPA:17508 + pancreas head parenchyma (embryonic mouse) @@ -15183,8 +13606,7 @@ - uncinate process of pancreas (embryonic mouse) - EMAPA:17509 + uncinate process of pancreas (embryonic mouse) @@ -15203,8 +13625,7 @@ - ventral pancreatic duct (embryonic mouse) - EMAPA:17510 + ventral pancreatic duct (embryonic mouse) @@ -15223,8 +13644,7 @@ - tail of pancreas (embryonic mouse) - EMAPA:17511 + tail of pancreas (embryonic mouse) @@ -15243,8 +13663,7 @@ - pancreas tail parenchyma (embryonic mouse) - EMAPA:17513 + pancreas tail parenchyma (embryonic mouse) @@ -15263,8 +13682,7 @@ - adenohypophysis (embryonic mouse) - EMAPA:17514 + adenohypophysis (embryonic mouse) @@ -15283,8 +13701,7 @@ - pars distalis of adenohypophysis (embryonic mouse) - EMAPA:17515 + pars distalis of adenohypophysis (embryonic mouse) @@ -15303,8 +13720,7 @@ - pars intermedia of adenohypophysis (embryonic mouse) - EMAPA:17516 + pars intermedia of adenohypophysis (embryonic mouse) @@ -15323,8 +13739,7 @@ - pars tuberalis of adenohypophysis (embryonic mouse) - EMAPA:17517 + pars tuberalis of adenohypophysis (embryonic mouse) @@ -15343,8 +13758,7 @@ - remnant of Rathke's pouch (embryonic mouse) - EMAPA:17518 + remnant of Rathke's pouch (embryonic mouse) @@ -15363,8 +13777,7 @@ - neurohypophysis (embryonic mouse) - EMAPA:17519 + neurohypophysis (embryonic mouse) @@ -15383,8 +13796,7 @@ - pituitary stalk (embryonic mouse) - EMAPA:17520 + pituitary stalk (embryonic mouse) @@ -15403,8 +13815,7 @@ - median eminence of neurohypophysis (embryonic mouse) - EMAPA:17521 + median eminence of neurohypophysis (embryonic mouse) @@ -15423,8 +13834,7 @@ - thymus primordium (embryonic mouse) - EMAPA:17523 + thymus primordium (embryonic mouse) @@ -15443,30 +13853,7 @@ - integumental system (embryonic mouse) - EMAPA:17524 - - - - - - - - - - - - - - - - - - - - skin of body (embryonic mouse) - zone of skin (embryonic mouse) - EMAPA:17525 + integumental system (embryonic mouse) @@ -15485,8 +13872,7 @@ - dermis (embryonic mouse) - EMAPA:17527 + dermis (embryonic mouse) @@ -15505,8 +13891,7 @@ - skin epidermis (embryonic mouse) - EMAPA:17528 + skin epidermis (embryonic mouse) @@ -15525,8 +13910,7 @@ - vibrissa unit (embryonic mouse) - EMAPA:17529 + vibrissa unit (embryonic mouse) @@ -15545,8 +13929,7 @@ - epithalamus (embryonic mouse) - EMAPA:17532 + epithalamus (embryonic mouse) @@ -15565,8 +13948,7 @@ - epithalamus mantle layer (embryonic mouse) - EMAPA:17533 + epithalamus mantle layer (embryonic mouse) @@ -15585,8 +13967,7 @@ - epithalamus ventricular layer (embryonic mouse) - EMAPA:17535 + epithalamus ventricular layer (embryonic mouse) @@ -15605,8 +13986,7 @@ - hypothalamus (embryonic mouse) - EMAPA:17536 + hypothalamus (embryonic mouse) @@ -15625,8 +14005,7 @@ - dorsal plus ventral thalamus (embryonic mouse) - EMAPA:17540 + dorsal plus ventral thalamus (embryonic mouse) @@ -15645,8 +14024,7 @@ - cerebral cortex (embryonic mouse) - EMAPA:17544 + cerebral cortex (embryonic mouse) @@ -15665,8 +14043,7 @@ - cortical intermediate zone (embryonic mouse) - EMAPA:17545 + cortical intermediate zone (embryonic mouse) @@ -15685,8 +14062,7 @@ - cerebral cortex marginal layer (embryonic mouse) - EMAPA:17546 + cerebral cortex marginal layer (embryonic mouse) @@ -15705,8 +14081,7 @@ - cerebral cortex ventricular layer (embryonic mouse) - EMAPA:17547 + cerebral cortex ventricular layer (embryonic mouse) @@ -15725,30 +14100,7 @@ - ventricular system choroidal fissure (embryonic mouse) - EMAPA:17548 - - - - - - - - - - - - - - - - - - - - corpus striatum (embryonic mouse) - striatum (embryonic mouse) - EMAPA:17549 + ventricular system choroidal fissure (embryonic mouse) @@ -15767,8 +14119,7 @@ - medulla oblongata (embryonic mouse) - EMAPA:17550 + medulla oblongata (embryonic mouse) @@ -15787,8 +14138,7 @@ - floor plate of medulla oblongata (embryonic mouse) - EMAPA:17551 + floor plate of medulla oblongata (embryonic mouse) @@ -15807,8 +14157,7 @@ - basal plate medulla oblongata (embryonic mouse) - EMAPA:17557 + basal plate medulla oblongata (embryonic mouse) @@ -15827,8 +14176,7 @@ - medulla oblongata sulcus limitans (embryonic mouse) - EMAPA:17561 + medulla oblongata sulcus limitans (embryonic mouse) @@ -15847,8 +14195,7 @@ - pons (embryonic mouse) - EMAPA:17563 + pons (embryonic mouse) @@ -15867,8 +14214,7 @@ - metencephalon sulcus limitans (embryonic mouse) - EMAPA:17567 + metencephalon sulcus limitans (embryonic mouse) @@ -15887,8 +14233,7 @@ - geniculate ganglion (embryonic mouse) - EMAPA:17569 + geniculate ganglion (embryonic mouse) @@ -15907,8 +14252,7 @@ - vestibulo-cochlear VIII ganglion complex (embryonic mouse) - EMAPA:17570 + vestibulo-cochlear VIII ganglion complex (embryonic mouse) @@ -15927,8 +14271,7 @@ - vestibulocochlear ganglion (embryonic mouse) - EMAPA:17571 + vestibulocochlear ganglion (embryonic mouse) @@ -15947,8 +14290,7 @@ - cochlear ganglion (embryonic mouse) - EMAPA:17572 + cochlear ganglion (embryonic mouse) @@ -15967,8 +14309,7 @@ - vestibular ganglion (embryonic mouse) - EMAPA:17573 + vestibular ganglion (embryonic mouse) @@ -15987,8 +14328,7 @@ - oculomotor nerve (embryonic mouse) - EMAPA:17574 + oculomotor nerve (embryonic mouse) @@ -16007,8 +14347,7 @@ - cranial nerve II (embryonic mouse) - EMAPA:17575 + cranial nerve II (embryonic mouse) @@ -16027,8 +14366,7 @@ - trigeminal nerve (embryonic mouse) - EMAPA:17576 + trigeminal nerve (embryonic mouse) @@ -16047,8 +14385,7 @@ - spinal cord (embryonic mouse) - EMAPA:17577 + spinal cord (embryonic mouse) @@ -16067,8 +14404,7 @@ - floor plate spinal cord region (embryonic mouse) - EMAPA:17578 + floor plate spinal cord region (embryonic mouse) @@ -16087,8 +14423,7 @@ - spinal cord lateral wall (embryonic mouse) - EMAPA:17579 + spinal cord lateral wall (embryonic mouse) @@ -16107,8 +14442,7 @@ - spinal cord mantle layer (embryonic mouse) - EMAPA:17580 + spinal cord mantle layer (embryonic mouse) @@ -16127,8 +14461,7 @@ - spinal cord alar plate (embryonic mouse) - EMAPA:17581 + spinal cord alar plate (embryonic mouse) @@ -16147,8 +14480,7 @@ - spinal cord sulcus limitans (embryonic mouse) - EMAPA:17584 + spinal cord sulcus limitans (embryonic mouse) @@ -16167,8 +14499,7 @@ - spinal cord ventricular layer (embryonic mouse) - EMAPA:17585 + spinal cord ventricular layer (embryonic mouse) @@ -16187,8 +14518,7 @@ - roof plate spinal cord region (embryonic mouse) - EMAPA:17586 + roof plate spinal cord region (embryonic mouse) @@ -16207,8 +14537,7 @@ - lumbosacral nerve plexus (embryonic mouse) - EMAPA:17587 + lumbosacral nerve plexus (embryonic mouse) @@ -16227,8 +14556,7 @@ - external acoustic meatus (embryonic mouse) - EMAPA:17588 + external acoustic meatus (embryonic mouse) @@ -16247,8 +14575,7 @@ - pinna (embryonic mouse) - EMAPA:17589 + pinna (embryonic mouse) @@ -16267,8 +14594,7 @@ - mesenchyme of pinna (embryonic mouse) - EMAPA:17591 + mesenchyme of pinna (embryonic mouse) @@ -16287,8 +14613,7 @@ - pinna surface epithelium (embryonic mouse) - EMAPA:17592 + pinna surface epithelium (embryonic mouse) @@ -16307,8 +14632,7 @@ - endolymphatic sac (embryonic mouse) - EMAPA:17593 + endolymphatic sac (embryonic mouse) @@ -16327,30 +14651,7 @@ - epithelium of endolymphatic sac (embryonic mouse) - EMAPA:17595 - - - - - - - - - - - - - - - - - - - - bony otic capsule (embryonic mouse) - cartilaginous otic capsule (embryonic mouse) - EMAPA:17596 + epithelium of endolymphatic sac (embryonic mouse) @@ -16369,8 +14670,7 @@ - cochlea (embryonic mouse) - EMAPA:17597 + cochlea (embryonic mouse) @@ -16389,8 +14689,7 @@ - cochlear duct of membranous labyrinth (embryonic mouse) - EMAPA:17598 + cochlear duct of membranous labyrinth (embryonic mouse) @@ -16409,8 +14708,7 @@ - epithelium of cochlear duct (embryonic mouse) - EMAPA:17600 + epithelium of cochlear duct (embryonic mouse) @@ -16429,8 +14727,7 @@ - pharyngotympanic tube (embryonic mouse) - EMAPA:17601 + pharyngotympanic tube (embryonic mouse) @@ -16449,8 +14746,7 @@ - substantia propria of cornea (embryonic mouse) - EMAPA:17602 + substantia propria of cornea (embryonic mouse) @@ -16469,8 +14765,7 @@ - optic chiasma (embryonic mouse) - EMAPA:17603 + optic chiasma (embryonic mouse) @@ -16489,8 +14784,7 @@ - nasal cavity (embryonic mouse) - EMAPA:17604 + nasal cavity (embryonic mouse) @@ -16509,8 +14803,7 @@ - nasal cavity epithelium (embryonic mouse) - EMAPA:17605 + nasal cavity epithelium (embryonic mouse) @@ -16529,30 +14822,7 @@ - olfactory epithelium (embryonic mouse) - EMAPA:17606 - - - - - - - - - - - - - - - - - - - - nasal cavity respiratory epithelium (embryonic mouse) - respiration organ (embryonic mouse) - EMAPA:17607 + olfactory epithelium (embryonic mouse) @@ -16571,8 +14841,7 @@ - nasal septum (embryonic mouse) - EMAPA:17608 + nasal septum (embryonic mouse) @@ -16591,8 +14860,7 @@ - vomeronasal organ (embryonic mouse) - EMAPA:17612 + vomeronasal organ (embryonic mouse) @@ -16611,8 +14879,7 @@ - arch of aorta (embryonic mouse) - EMAPA:17613 + arch of aorta (embryonic mouse) @@ -16631,8 +14898,7 @@ - external iliac artery (embryonic mouse) - EMAPA:17614 + external iliac artery (embryonic mouse) @@ -16651,8 +14917,7 @@ - brachiocephalic artery (embryonic mouse) - EMAPA:17615 + brachiocephalic artery (embryonic mouse) @@ -16671,8 +14936,7 @@ - intersomitic artery (embryonic mouse) - EMAPA:17616 + intersomitic artery (embryonic mouse) @@ -16691,8 +14955,7 @@ - subclavian artery (embryonic mouse) - EMAPA:17617 + subclavian artery (embryonic mouse) @@ -16711,8 +14974,7 @@ - internal jugular vein (embryonic mouse) - EMAPA:17620 + internal jugular vein (embryonic mouse) @@ -16731,8 +14993,7 @@ - subclavian vein (embryonic mouse) - EMAPA:17621 + subclavian vein (embryonic mouse) @@ -16751,52 +15012,7 @@ - Reichert's cartilage (embryonic mouse) - EMAPA:17622 - - - - - - - - - - - - - - - - - - - - stomach glandular epithelium (embryonic mouse) - stomach glandular region (embryonic mouse) - EMAPA:17623 - - - - - - - - - - - - - - - - - - - - murine forestomach (embryonic mouse) - stomach non-glandular region (embryonic mouse) - EMAPA:17627 + Reichert's cartilage (embryonic mouse) @@ -16815,8 +15031,7 @@ - pylorus (embryonic mouse) - EMAPA:17631 + pylorus (embryonic mouse) @@ -16835,8 +15050,7 @@ - pyloric region epithelium (embryonic mouse) - EMAPA:17633 + pyloric region epithelium (embryonic mouse) @@ -16855,8 +15069,7 @@ - Meckel's cartilage (embryonic mouse) - EMAPA:17635 + Meckel's cartilage (embryonic mouse) @@ -16875,8 +15088,7 @@ - maxillary process ectoderm (embryonic mouse) - EMAPA:17637 + maxillary process ectoderm (embryonic mouse) @@ -16895,8 +15107,7 @@ - maxilla (embryonic mouse) - EMAPA:17639 + maxilla (embryonic mouse) @@ -16915,8 +15126,7 @@ - premaxilla (embryonic mouse) - EMAPA:17641 + premaxilla (embryonic mouse) @@ -16935,8 +15145,7 @@ - primary palate (embryonic mouse) - EMAPA:17642 + primary palate (embryonic mouse) @@ -16955,8 +15164,7 @@ - primary palate epithelium (embryonic mouse) - EMAPA:17643 + primary palate epithelium (embryonic mouse) @@ -16975,8 +15183,7 @@ - primary palate mesenchyme (embryonic mouse) - EMAPA:17644 + primary palate mesenchyme (embryonic mouse) @@ -16995,8 +15202,7 @@ - primitive renal collecting duct system (embryonic mouse) - EMAPA:17646 + primitive renal collecting duct system (embryonic mouse) @@ -17015,8 +15221,7 @@ - left lung (embryonic mouse) - EMAPA:17653 + left lung (embryonic mouse) @@ -17035,8 +15240,7 @@ - left lung associated mesenchyme (embryonic mouse) - EMAPA:17654 + left lung associated mesenchyme (embryonic mouse) @@ -17055,8 +15259,7 @@ - epithelium of left lung (embryonic mouse) - EMAPA:17655 + epithelium of left lung (embryonic mouse) @@ -17075,8 +15278,7 @@ - lobar bronchus of left lung (embryonic mouse) - EMAPA:17656 + lobar bronchus of left lung (embryonic mouse) @@ -17095,8 +15297,7 @@ - left lung lobar bronchus epithelium (embryonic mouse) - EMAPA:17658 + left lung lobar bronchus epithelium (embryonic mouse) @@ -17115,8 +15316,7 @@ - vascular element of left lung (embryonic mouse) - EMAPA:17660 + vascular element of left lung (embryonic mouse) @@ -17135,8 +15335,7 @@ - right lung (embryonic mouse) - EMAPA:17661 + right lung (embryonic mouse) @@ -17155,8 +15354,7 @@ - right lung associated mesenchyme (embryonic mouse) - EMAPA:17662 + right lung associated mesenchyme (embryonic mouse) @@ -17175,8 +15373,7 @@ - epithelium of right lung (embryonic mouse) - EMAPA:17663 + epithelium of right lung (embryonic mouse) @@ -17195,8 +15392,7 @@ - lobar bronchus of right lung (embryonic mouse) - EMAPA:17664 + lobar bronchus of right lung (embryonic mouse) @@ -17215,8 +15411,7 @@ - right lung lobar bronchus mesenchyme (embryonic mouse) - EMAPA:17665 + right lung lobar bronchus mesenchyme (embryonic mouse) @@ -17235,8 +15430,7 @@ - right lung lobar bronchus epitheium (embryonic mouse) - EMAPA:17666 + right lung lobar bronchus epitheium (embryonic mouse) @@ -17255,8 +15449,7 @@ - vascular element of right lung (embryonic mouse) - EMAPA:17668 + vascular element of right lung (embryonic mouse) @@ -17275,8 +15468,7 @@ - upper respiratory tract (embryonic mouse) - EMAPA:17669 + upper respiratory tract (embryonic mouse) @@ -17295,8 +15487,7 @@ - nasopharynx (embryonic mouse) - EMAPA:17670 + nasopharynx (embryonic mouse) @@ -17315,8 +15506,7 @@ - epithelium of nasopharynx (embryonic mouse) - EMAPA:17672 + epithelium of nasopharynx (embryonic mouse) @@ -17335,8 +15525,7 @@ - cervical vertebra (embryonic mouse) - EMAPA:17674 + cervical vertebra (embryonic mouse) @@ -17355,8 +15544,7 @@ - sacral region of vertebral column (embryonic mouse) - EMAPA:17676 + sacral region of vertebral column (embryonic mouse) @@ -17375,8 +15563,7 @@ - sacral vertebra pre-cartilage condensation (embryonic mouse) - EMAPA:17677 + sacral vertebra pre-cartilage condensation (embryonic mouse) @@ -17395,52 +15582,7 @@ - rib cartilage element (embryonic mouse) - EMAPA:17678 - - - - - - - - - - - - - - - - - - - - cranium (embryonic mouse) - skull (embryonic mouse) - EMAPA:17680 - - - - - - - - - - - - - - - - - - - - chondrocranium (embryonic mouse) - neurocranium (embryonic mouse) - EMAPA:17681 + rib cartilage element (embryonic mouse) @@ -17459,8 +15601,7 @@ - temporal bone (embryonic mouse) - EMAPA:17682 + temporal bone (embryonic mouse) @@ -17479,8 +15620,7 @@ - petrous part of temporal bone (embryonic mouse) - EMAPA:17683 + petrous part of temporal bone (embryonic mouse) @@ -17499,8 +15639,7 @@ - diaphragm (embryonic mouse) - EMAPA:17701 + diaphragm (embryonic mouse) @@ -17519,8 +15658,7 @@ - central tendon of diaphragm (embryonic mouse) - EMAPA:17702 + central tendon of diaphragm (embryonic mouse) @@ -17539,30 +15677,7 @@ - crus of diaphragm (embryonic mouse) - EMAPA:17703 - - - - - - - - - - - - - - - - - - - - pleuropericardial canals (embryonic mouse) - pleuroperitoneal canal (embryonic mouse) - EMAPA:17704 + crus of diaphragm (embryonic mouse) @@ -17581,8 +15696,7 @@ - pleuropericardial folds (embryonic mouse) - EMAPA:17706 + pleuropericardial folds (embryonic mouse) @@ -17601,8 +15715,7 @@ - pleuroperitoneal canal (embryonic mouse) - EMAPA:17707 + pleuroperitoneal canal (embryonic mouse) @@ -17621,8 +15734,7 @@ - pleuroperitoneal membrane (embryonic mouse) - EMAPA:17709 + pleuroperitoneal membrane (embryonic mouse) @@ -17641,8 +15753,7 @@ - elbow joint primordium (embryonic mouse) - EMAPA:17710 + elbow joint primordium (embryonic mouse) @@ -17661,8 +15772,7 @@ - radius-ulna cartilage element (embryonic mouse) - EMAPA:17711 + radius-ulna cartilage element (embryonic mouse) @@ -17681,8 +15791,7 @@ - shoulder joint primordium (embryonic mouse) - EMAPA:17712 + shoulder joint primordium (embryonic mouse) @@ -17701,8 +15810,7 @@ - humerus cartilage element (embryonic mouse) - EMAPA:17713 + humerus cartilage element (embryonic mouse) @@ -17721,8 +15829,7 @@ - manual digit 1 metacarpus pre-cartilage condensation (embryonic mouse) - EMAPA:17714 + manual digit 1 metacarpus pre-cartilage condensation (embryonic mouse) @@ -17741,8 +15848,7 @@ - manual digit 1 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17715 + manual digit 1 phalanx pre-cartilage condensation (embryonic mouse) @@ -17761,8 +15867,7 @@ - manual digit 2 metacarpus pre-cartilage condensation (embryonic mouse) - EMAPA:17716 + manual digit 2 metacarpus pre-cartilage condensation (embryonic mouse) @@ -17781,8 +15886,7 @@ - manual digit 2 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17717 + manual digit 2 phalanx pre-cartilage condensation (embryonic mouse) @@ -17801,8 +15905,7 @@ - manual digit 3 metacarpus pre-cartilage condensation (embryonic mouse) - EMAPA:17718 + manual digit 3 metacarpus pre-cartilage condensation (embryonic mouse) @@ -17821,8 +15924,7 @@ - manual digit 3 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17719 + manual digit 3 phalanx pre-cartilage condensation (embryonic mouse) @@ -17841,8 +15943,7 @@ - manual digit 4 metacarpus pre-cartilage condensation (embryonic mouse) - EMAPA:17720 + manual digit 4 metacarpus pre-cartilage condensation (embryonic mouse) @@ -17861,8 +15962,7 @@ - manual digit 4 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17721 + manual digit 4 phalanx pre-cartilage condensation (embryonic mouse) @@ -17881,8 +15981,7 @@ - manual digit 5 metacarpus pre-cartilage condensation (embryonic mouse) - EMAPA:17722 + manual digit 5 metacarpus pre-cartilage condensation (embryonic mouse) @@ -17901,8 +16000,7 @@ - manual digit 5 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17723 + manual digit 5 phalanx pre-cartilage condensation (embryonic mouse) @@ -17921,8 +16019,7 @@ - carpus pre-cartilage condensation (embryonic mouse) - EMAPA:17724 + carpus pre-cartilage condensation (embryonic mouse) @@ -17941,8 +16038,7 @@ - pedal digit 1 metatarsal pre-cartilage condensation (embryonic mouse) - EMAPA:17725 + pedal digit 1 metatarsal pre-cartilage condensation (embryonic mouse) @@ -17961,8 +16057,7 @@ - pedal digit 1 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17726 + pedal digit 1 phalanx pre-cartilage condensation (embryonic mouse) @@ -17981,8 +16076,7 @@ - pedal digit 2 metatarsal pre-cartilage condensation (embryonic mouse) - EMAPA:17727 + pedal digit 2 metatarsal pre-cartilage condensation (embryonic mouse) @@ -18001,8 +16095,7 @@ - pedal digit 2 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17728 + pedal digit 2 phalanx pre-cartilage condensation (embryonic mouse) @@ -18021,8 +16114,7 @@ - pedal digit 3 metatarsal pre-cartilage condensation (embryonic mouse) - EMAPA:17729 + pedal digit 3 metatarsal pre-cartilage condensation (embryonic mouse) @@ -18041,8 +16133,7 @@ - pedal digit 3 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17730 + pedal digit 3 phalanx pre-cartilage condensation (embryonic mouse) @@ -18061,8 +16152,7 @@ - pedal digit 4 metatarsal pre-cartilage condensation (embryonic mouse) - EMAPA:17731 + pedal digit 4 metatarsal pre-cartilage condensation (embryonic mouse) @@ -18081,8 +16171,7 @@ - pedal digit 4 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17732 + pedal digit 4 phalanx pre-cartilage condensation (embryonic mouse) @@ -18101,8 +16190,7 @@ - pedal digit 5 metatarsal pre-cartilage condensation (embryonic mouse) - EMAPA:17733 + pedal digit 5 metatarsal pre-cartilage condensation (embryonic mouse) @@ -18121,8 +16209,7 @@ - pedal digit 5 phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:17734 + pedal digit 5 phalanx pre-cartilage condensation (embryonic mouse) @@ -18141,8 +16228,7 @@ - calcaneum pre-cartilage condensation (embryonic mouse) - EMAPA:17736 + calcaneum pre-cartilage condensation (embryonic mouse) @@ -18161,8 +16247,7 @@ - hip joint primordium (embryonic mouse) - EMAPA:17739 + hip joint primordium (embryonic mouse) @@ -18181,8 +16266,7 @@ - knee joint primordium (embryonic mouse) - EMAPA:17740 + knee joint primordium (embryonic mouse) @@ -18201,30 +16285,7 @@ - femur cartilage element (embryonic mouse) - EMAPA:17742 - - - - - - - - - - - - - - - - - - - - anterior abdominal wall (embryonic mouse) - anterior abdominal wall muscle (embryonic mouse) - EMAPA:17744 + femur cartilage element (embryonic mouse) @@ -18243,8 +16304,7 @@ - anterior abdominal wall muscle (embryonic mouse) - EMAPA:17745 + anterior abdominal wall muscle (embryonic mouse) @@ -18263,32 +16323,7 @@ - chest muscle (embryonic mouse) - EMAPA:17747 - - - - - - - - - - - - - - - - - - - - - chest muscle (embryonic mouse) - muscle of pectoral girdle (embryonic mouse) - pectoral girdle and thoracic body wall skeletal muscle (embryonic mouse) - EMAPA:17748 + chest muscle (embryonic mouse) @@ -18307,8 +16342,7 @@ - deltoid pre-muscle mass (embryonic mouse) - EMAPA:17749 + deltoid pre-muscle mass (embryonic mouse) @@ -18327,8 +16361,7 @@ - subscapularis pre-muscle mass (embryonic mouse) - EMAPA:17750 + subscapularis pre-muscle mass (embryonic mouse) @@ -18347,8 +16380,7 @@ - saliva-secreting gland (embryonic mouse) - EMAPA:17751 + saliva-secreting gland (embryonic mouse) @@ -18367,8 +16399,7 @@ - sublingual gland primordium (embryonic mouse) - EMAPA:17752 + sublingual gland primordium (embryonic mouse) @@ -18387,8 +16418,7 @@ - mesenchyme of sublingual gland primordium (embryonic mouse) - EMAPA:17754 + mesenchyme of sublingual gland primordium (embryonic mouse) @@ -18407,8 +16437,7 @@ - submandibular gland primordium (embryonic mouse) - EMAPA:17755 + submandibular gland primordium (embryonic mouse) @@ -18427,8 +16456,7 @@ - submandibular gland primordium epithelium (embryonic mouse) - EMAPA:17756 + submandibular gland primordium epithelium (embryonic mouse) @@ -18447,8 +16475,7 @@ - mesenchyme of submandibular gland primordium (embryonic mouse) - EMAPA:17757 + mesenchyme of submandibular gland primordium (embryonic mouse) @@ -18467,8 +16494,7 @@ - gland of integumental system (embryonic mouse) - EMAPA:17758 + gland of integumental system (embryonic mouse) @@ -18487,8 +16513,7 @@ - mammary gland (embryonic mouse) - EMAPA:17759 + mammary gland (embryonic mouse) @@ -18507,8 +16532,7 @@ - epithelium of mammary gland (embryonic mouse) - EMAPA:17760 + epithelium of mammary gland (embryonic mouse) @@ -18527,96 +16551,7 @@ - mesenchyme of mammary gland (embryonic mouse) - EMAPA:17761 - - - - - - - - - - - - - - - - - - - - forebrain meninges (embryonic mouse) - meninx of diencephalon (embryonic mouse) - EMAPA:17764 - - - - - - - - - - - - - - - - - - - - diencephalon arachnoid mater (embryonic mouse) - forebrain arachnoid mater (embryonic mouse) - EMAPA:17765 - - - - - - - - - - - - - - - - - - - - diencephalon dura mater (embryonic mouse) - forebrain dura mater (embryonic mouse) - EMAPA:17766 - - - - - - - - - - - - - - - - - - - - diencephalon pia mater (embryonic mouse) - forebrain pia mater (embryonic mouse) - EMAPA:17767 + mesenchyme of mammary gland (embryonic mouse) @@ -18635,8 +16570,7 @@ - ventricular system choroidal fissure (embryonic mouse) - EMAPA:17768 + ventricular system choroidal fissure (embryonic mouse) @@ -18655,8 +16589,7 @@ - choroid plexus of lateral ventricle (embryonic mouse) - EMAPA:17769 + choroid plexus of lateral ventricle (embryonic mouse) @@ -18675,8 +16608,7 @@ - anterior horn of lateral ventricle (embryonic mouse) - EMAPA:17770 + anterior horn of lateral ventricle (embryonic mouse) @@ -18695,8 +16627,7 @@ - inferior horn of the lateral ventricle (embryonic mouse) - EMAPA:17771 + inferior horn of the lateral ventricle (embryonic mouse) @@ -18715,52 +16646,7 @@ - posterior horn lateral ventricle (embryonic mouse) - EMAPA:17772 - - - - - - - - - - - - - - - - - - - - forebrain meninges (embryonic mouse) - meninx of telencephalon (embryonic mouse) - EMAPA:17774 - - - - - - - - - - - - - - - - - - - - forebrain arachnoid mater (embryonic mouse) - telencephalon arachnoid mater (embryonic mouse) - EMAPA:17775 + posterior horn lateral ventricle (embryonic mouse) @@ -18779,30 +16665,7 @@ - telencephalon dura mater (embryonic mouse) - EMAPA:17776 - - - - - - - - - - - - - - - - - - - - forebrain pia mater (embryonic mouse) - telencephalon pia mater (embryonic mouse) - EMAPA:17777 + telencephalon dura mater (embryonic mouse) @@ -18821,8 +16684,7 @@ - olfactory lobe (embryonic mouse) - EMAPA:17778 + olfactory lobe (embryonic mouse) @@ -18841,8 +16703,7 @@ - olfactory cortex (embryonic mouse) - EMAPA:17779 + olfactory cortex (embryonic mouse) @@ -18861,8 +16722,7 @@ - meninx of hindbrain (embryonic mouse) - EMAPA:17783 + meninx of hindbrain (embryonic mouse) @@ -18881,8 +16741,7 @@ - hindbrain arachnoid mater (embryonic mouse) - EMAPA:17784 + hindbrain arachnoid mater (embryonic mouse) @@ -18901,8 +16760,7 @@ - hindbrain dura mater (embryonic mouse) - EMAPA:17785 + hindbrain dura mater (embryonic mouse) @@ -18921,8 +16779,7 @@ - hindbrain pia mater (embryonic mouse) - EMAPA:17786 + hindbrain pia mater (embryonic mouse) @@ -18941,8 +16798,7 @@ - cerebellum (embryonic mouse) - EMAPA:17787 + cerebellum (embryonic mouse) @@ -18961,8 +16817,7 @@ - cerebellum marginal layer (embryonic mouse) - EMAPA:17789 + cerebellum marginal layer (embryonic mouse) @@ -18981,8 +16836,7 @@ - cerebellum ventricular layer (embryonic mouse) - EMAPA:17790 + cerebellum ventricular layer (embryonic mouse) @@ -19001,8 +16855,7 @@ - meninx of midbrain (embryonic mouse) - EMAPA:17791 + meninx of midbrain (embryonic mouse) @@ -19021,8 +16874,7 @@ - midbrain arachnoid mater (embryonic mouse) - EMAPA:17792 + midbrain arachnoid mater (embryonic mouse) @@ -19041,8 +16893,7 @@ - midbrain dura mater (embryonic mouse) - EMAPA:17793 + midbrain dura mater (embryonic mouse) @@ -19061,8 +16912,7 @@ - midbrain pia mater (embryonic mouse) - EMAPA:17794 + midbrain pia mater (embryonic mouse) @@ -19081,8 +16931,7 @@ - midbrain cerebral aqueduct (embryonic mouse) - EMAPA:17795 + midbrain cerebral aqueduct (embryonic mouse) @@ -19101,8 +16950,7 @@ - facial nerve (embryonic mouse) - EMAPA:17796 + facial nerve (embryonic mouse) @@ -19121,8 +16969,7 @@ - olfactory nerve (embryonic mouse) - EMAPA:17797 + olfactory nerve (embryonic mouse) @@ -19141,8 +16988,7 @@ - mandibular nerve (embryonic mouse) - EMAPA:17798 + mandibular nerve (embryonic mouse) @@ -19161,8 +17007,7 @@ - maxillary nerve (embryonic mouse) - EMAPA:17799 + maxillary nerve (embryonic mouse) @@ -19181,8 +17026,7 @@ - ophthalmic nerve (embryonic mouse) - EMAPA:17800 + ophthalmic nerve (embryonic mouse) @@ -19201,8 +17045,7 @@ - vestibulocochlear nerve (embryonic mouse) - EMAPA:17801 + vestibulocochlear nerve (embryonic mouse) @@ -19221,8 +17064,7 @@ - cochlear nerve (embryonic mouse) - EMAPA:17802 + cochlear nerve (embryonic mouse) @@ -19241,8 +17083,7 @@ - vestibular nerve (embryonic mouse) - EMAPA:17803 + vestibular nerve (embryonic mouse) @@ -19261,8 +17102,7 @@ - meninx of spinal cord (embryonic mouse) - EMAPA:17804 + meninx of spinal cord (embryonic mouse) @@ -19281,8 +17121,7 @@ - spinal cord arachnoid mater (embryonic mouse) - EMAPA:17805 + spinal cord arachnoid mater (embryonic mouse) @@ -19301,8 +17140,7 @@ - spinal dura mater (embryonic mouse) - EMAPA:17806 + spinal dura mater (embryonic mouse) @@ -19321,8 +17159,7 @@ - spinal cord pia mater (embryonic mouse) - EMAPA:17807 + spinal cord pia mater (embryonic mouse) @@ -19341,30 +17178,7 @@ - phrenic nerve (embryonic mouse) - EMAPA:17813 - - - - - - - - - - - - - - - - - - - - membranous labyrinth (embryonic mouse) - vestibular labyrinth (embryonic mouse) - EMAPA:17815 + phrenic nerve (embryonic mouse) @@ -19383,30 +17197,7 @@ - crus commune (embryonic mouse) - EMAPA:17818 - - - - - - - - - - - - - - - - - - - - crus commune epithelium (embryonic mouse) - epithelium of utricle (embryonic mouse) - EMAPA:17820 + crus commune (embryonic mouse) @@ -19425,30 +17216,7 @@ - lateral semicircular canal (embryonic mouse) - EMAPA:17821 - - - - - - - - - - - - - - - - - - - - epithelium of lateral semicircular canal (embryonic mouse) - epithelium of utricle (embryonic mouse) - EMAPA:17823 + lateral semicircular canal (embryonic mouse) @@ -19467,8 +17235,7 @@ - auditory ossicle bone (embryonic mouse) - EMAPA:17824 + auditory ossicle bone (embryonic mouse) @@ -19487,8 +17254,7 @@ - incus pre-cartilage condensation (embryonic mouse) - EMAPA:17825 + incus pre-cartilage condensation (embryonic mouse) @@ -19507,8 +17273,7 @@ - malleus pre-cartilage condensation (embryonic mouse) - EMAPA:17826 + malleus pre-cartilage condensation (embryonic mouse) @@ -19527,8 +17292,7 @@ - stapes pre-cartilage condensation (embryonic mouse) - EMAPA:17827 + stapes pre-cartilage condensation (embryonic mouse) @@ -19547,8 +17311,7 @@ - choroidal blood vessel (embryonic mouse) - EMAPA:17828 + choroidal blood vessel (embryonic mouse) @@ -19567,8 +17330,7 @@ - eyelid (embryonic mouse) - EMAPA:17829 + eyelid (embryonic mouse) @@ -19587,8 +17349,7 @@ - inner canthus (embryonic mouse) - EMAPA:17830 + inner canthus (embryonic mouse) @@ -19607,8 +17368,7 @@ - lower eyelid (embryonic mouse) - EMAPA:17831 + lower eyelid (embryonic mouse) @@ -19627,8 +17387,7 @@ - lower eyelid epithelium (embryonic mouse) - EMAPA:17832 + lower eyelid epithelium (embryonic mouse) @@ -19647,8 +17406,7 @@ - lower eyelid mesenchyme (embryonic mouse) - EMAPA:17833 + lower eyelid mesenchyme (embryonic mouse) @@ -19667,8 +17425,7 @@ - upper eyelid (embryonic mouse) - EMAPA:17834 + upper eyelid (embryonic mouse) @@ -19687,8 +17444,7 @@ - upper eyelid epithelium (embryonic mouse) - EMAPA:17835 + upper eyelid epithelium (embryonic mouse) @@ -19707,8 +17463,7 @@ - upper eyelid mesenchyme (embryonic mouse) - EMAPA:17836 + upper eyelid mesenchyme (embryonic mouse) @@ -19727,8 +17482,7 @@ - vitreous humor (embryonic mouse) - EMAPA:17837 + vitreous humor (embryonic mouse) @@ -19747,8 +17501,7 @@ - lens of camera-type eye (embryonic mouse) - EMAPA:17838 + lens of camera-type eye (embryonic mouse) @@ -19767,8 +17520,7 @@ - lens anterior epithelium (embryonic mouse) - EMAPA:17839 + lens anterior epithelium (embryonic mouse) @@ -19787,8 +17539,7 @@ - lens equatorial epithelium (embryonic mouse) - EMAPA:17840 + lens equatorial epithelium (embryonic mouse) @@ -19807,8 +17558,7 @@ - lens fiber (embryonic mouse) - EMAPA:17841 + lens fiber (embryonic mouse) @@ -19827,8 +17577,7 @@ - skeletal muscle tissue of eye (embryonic mouse) - EMAPA:17844 + skeletal muscle tissue of eye (embryonic mouse) @@ -19847,8 +17596,7 @@ - extrinsic ocular pre-muscle mass (embryonic mouse) - EMAPA:17845 + extrinsic ocular pre-muscle mass (embryonic mouse) @@ -19867,8 +17615,7 @@ - naris (embryonic mouse) - EMAPA:17847 + naris (embryonic mouse) @@ -19887,8 +17634,7 @@ - external naris (embryonic mouse) - EMAPA:17848 + external naris (embryonic mouse) @@ -19907,8 +17653,7 @@ - posterior nasal aperture (embryonic mouse) - EMAPA:17849 + posterior nasal aperture (embryonic mouse) @@ -19927,8 +17672,7 @@ - primary choana (embryonic mouse) - EMAPA:17851 + primary choana (embryonic mouse) @@ -19947,8 +17691,7 @@ - nasal capsule (embryonic mouse) - EMAPA:17852 + nasal capsule (embryonic mouse) @@ -19967,8 +17710,7 @@ - nasolacrimal duct (embryonic mouse) - EMAPA:17853 + nasolacrimal duct (embryonic mouse) @@ -19987,30 +17729,7 @@ - anterior cerebral artery (embryonic mouse) - EMAPA:17854 - - - - - - - - - - - - - - - - - - - - common carotid artery plus branches (embryonic mouse) - trunk of common carotid artery (embryonic mouse) - EMAPA:17855 + anterior cerebral artery (embryonic mouse) @@ -20029,8 +17748,7 @@ - abdominal aorta (embryonic mouse) - EMAPA:17856 + abdominal aorta (embryonic mouse) @@ -20049,8 +17767,7 @@ - ductus arteriosus (embryonic mouse) - EMAPA:17858 + ductus arteriosus (embryonic mouse) @@ -20069,8 +17786,7 @@ - hepatic artery (embryonic mouse) - EMAPA:17859 + hepatic artery (embryonic mouse) @@ -20089,8 +17805,7 @@ - internal iliac artery (embryonic mouse) - EMAPA:17860 + internal iliac artery (embryonic mouse) @@ -20109,8 +17824,7 @@ - posterior cerebral artery (embryonic mouse) - EMAPA:17861 + posterior cerebral artery (embryonic mouse) @@ -20129,8 +17843,7 @@ - foramen secundum (embryonic mouse) - EMAPA:17863 + foramen secundum (embryonic mouse) @@ -20149,8 +17862,7 @@ - atrial septum secundum (embryonic mouse) - EMAPA:17864 + atrial septum secundum (embryonic mouse) @@ -20169,8 +17881,7 @@ - endocardium (embryonic mouse) - EMAPA:17868 + endocardium (embryonic mouse) @@ -20189,8 +17900,7 @@ - cardiac valve (embryonic mouse) - EMAPA:17869 + cardiac valve (embryonic mouse) @@ -20209,8 +17919,7 @@ - aortic valve (embryonic mouse) - EMAPA:17870 + aortic valve (embryonic mouse) @@ -20229,8 +17938,7 @@ - mitral valve (embryonic mouse) - EMAPA:17871 + mitral valve (embryonic mouse) @@ -20249,8 +17957,7 @@ - pulmonary valve (embryonic mouse) - EMAPA:17872 + pulmonary valve (embryonic mouse) @@ -20269,8 +17976,7 @@ - tricuspid valve (embryonic mouse) - EMAPA:17873 + tricuspid valve (embryonic mouse) @@ -20289,8 +17995,7 @@ - common iliac vein (embryonic mouse) - EMAPA:17874 + common iliac vein (embryonic mouse) @@ -20309,8 +18014,7 @@ - external jugular vein (embryonic mouse) - EMAPA:17875 + external jugular vein (embryonic mouse) @@ -20329,8 +18033,7 @@ - femoral vein (embryonic mouse) - EMAPA:17876 + femoral vein (embryonic mouse) @@ -20349,8 +18052,7 @@ - epithelium of tongue (embryonic mouse) - EMAPA:17881 + epithelium of tongue (embryonic mouse) @@ -20369,8 +18071,7 @@ - mesenchyme of tongue (embryonic mouse) - EMAPA:17882 + mesenchyme of tongue (embryonic mouse) @@ -20389,8 +18090,7 @@ - tongue muscle (embryonic mouse) - EMAPA:17883 + tongue muscle (embryonic mouse) @@ -20409,8 +18109,7 @@ - extrinsic tongue pre-muscle mass (embryonic mouse) - EMAPA:17884 + extrinsic tongue pre-muscle mass (embryonic mouse) @@ -20429,8 +18128,7 @@ - fundus of stomach (embryonic mouse) - EMAPA:17886 + fundus of stomach (embryonic mouse) @@ -20449,8 +18147,7 @@ - stomach fundus epithelium (embryonic mouse) - EMAPA:17888 + stomach fundus epithelium (embryonic mouse) @@ -20469,8 +18166,7 @@ - lesser omentum (embryonic mouse) - EMAPA:17890 + lesser omentum (embryonic mouse) @@ -20489,8 +18185,7 @@ - pyloric antrum (embryonic mouse) - EMAPA:17891 + pyloric antrum (embryonic mouse) @@ -20509,8 +18204,7 @@ - perineal body (embryonic mouse) - EMAPA:17892 + perineal body (embryonic mouse) @@ -20529,8 +18223,7 @@ - rectum (embryonic mouse) - EMAPA:17896 + rectum (embryonic mouse) @@ -20549,30 +18242,7 @@ - epithelium of rectum (embryonic mouse) - EMAPA:17898 - - - - - - - - - - - - - - - - - - - - lower jaw region (embryonic mouse) - skeleton of lower jaw (embryonic mouse) - EMAPA:17906 + epithelium of rectum (embryonic mouse) @@ -20591,8 +18261,7 @@ - lower lip (embryonic mouse) - EMAPA:17909 + lower lip (embryonic mouse) @@ -20611,8 +18280,7 @@ - skeleton of lower jaw (embryonic mouse) - EMAPA:17910 + skeleton of lower jaw (embryonic mouse) @@ -20631,8 +18299,7 @@ - mesenchyme of mandible (embryonic mouse) - EMAPA:17912 + mesenchyme of mandible (embryonic mouse) @@ -20651,8 +18318,7 @@ - mesenchyme of lower jaw (embryonic mouse) - EMAPA:17916 + mesenchyme of lower jaw (embryonic mouse) @@ -20671,8 +18337,7 @@ - tooth of lower jaw (embryonic mouse) - EMAPA:17917 + tooth of lower jaw (embryonic mouse) @@ -20691,8 +18356,7 @@ - lower jaw incisor (embryonic mouse) - EMAPA:17918 + lower jaw incisor (embryonic mouse) @@ -20711,8 +18375,7 @@ - lower jaw incisor epithelium (embryonic mouse) - EMAPA:17919 + lower jaw incisor epithelium (embryonic mouse) @@ -20731,8 +18394,7 @@ - lower jaw incisor odontogenic papilla (embryonic mouse) - EMAPA:17920 + lower jaw incisor odontogenic papilla (embryonic mouse) @@ -20751,8 +18413,7 @@ - lower jaw molar (embryonic mouse) - EMAPA:17921 + lower jaw molar (embryonic mouse) @@ -20771,8 +18432,7 @@ - lower jaw molar epithelium (embryonic mouse) - EMAPA:17922 + lower jaw molar epithelium (embryonic mouse) @@ -20791,8 +18451,7 @@ - lower jaw molar odontogenic papilla (embryonic mouse) - EMAPA:17923 + lower jaw molar odontogenic papilla (embryonic mouse) @@ -20811,8 +18470,7 @@ - upper jaw region (embryonic mouse) - EMAPA:17924 + upper jaw region (embryonic mouse) @@ -20831,8 +18489,7 @@ - upper lip (embryonic mouse) - EMAPA:17925 + upper lip (embryonic mouse) @@ -20851,8 +18508,7 @@ - philtrum (embryonic mouse) - EMAPA:17926 + philtrum (embryonic mouse) @@ -20871,8 +18527,7 @@ - skeleton of upper jaw (embryonic mouse) - EMAPA:17927 + skeleton of upper jaw (embryonic mouse) @@ -20891,8 +18546,7 @@ - mesenchyme of upper jaw (embryonic mouse) - EMAPA:17929 + mesenchyme of upper jaw (embryonic mouse) @@ -20911,8 +18565,7 @@ - tooth of upper jaw (embryonic mouse) - EMAPA:17938 + tooth of upper jaw (embryonic mouse) @@ -20931,8 +18584,7 @@ - upper jaw incisor (embryonic mouse) - EMAPA:17939 + upper jaw incisor (embryonic mouse) @@ -20951,8 +18603,7 @@ - upper jaw incisor epithelium (embryonic mouse) - EMAPA:17940 + upper jaw incisor epithelium (embryonic mouse) @@ -20971,8 +18622,7 @@ - upper jaw incisor odontogenic papilla (embryonic mouse) - EMAPA:17941 + upper jaw incisor odontogenic papilla (embryonic mouse) @@ -20991,30 +18641,7 @@ - upper jaw molar (embryonic mouse) - EMAPA:17942 - - - - - - - - - - - - - - - - - - - - epithelium of upper jaw (embryonic mouse) - upper jaw molar epithelium (embryonic mouse) - EMAPA:17943 + upper jaw molar (embryonic mouse) @@ -21033,8 +18660,7 @@ - upper jaw molar odontogenic papilla (embryonic mouse) - EMAPA:17944 + upper jaw molar odontogenic papilla (embryonic mouse) @@ -21053,8 +18679,7 @@ - bare area of liver (embryonic mouse) - EMAPA:17945 + bare area of liver (embryonic mouse) @@ -21073,8 +18698,7 @@ - renal pelvis (embryonic mouse) - EMAPA:17948 + renal pelvis (embryonic mouse) @@ -21093,8 +18717,7 @@ - ureter (embryonic mouse) - EMAPA:17950 + ureter (embryonic mouse) @@ -21113,8 +18736,7 @@ - cortex of kidney (embryonic mouse) - EMAPA:17952 + cortex of kidney (embryonic mouse) @@ -21133,8 +18755,7 @@ - metanephros induced blastemal cells (embryonic mouse) - EMAPA:17953 + metanephros induced blastemal cells (embryonic mouse) @@ -21153,8 +18774,7 @@ - female reproductive system (embryonic mouse) - EMAPA:17959 + female reproductive system (embryonic mouse) @@ -21173,8 +18793,7 @@ - mesovarium (embryonic mouse) - EMAPA:17961 + mesovarium (embryonic mouse) @@ -21193,8 +18812,7 @@ - ovary (embryonic mouse) - EMAPA:17962 + ovary (embryonic mouse) @@ -21213,8 +18831,7 @@ - germinal epithelium of ovary (embryonic mouse) - EMAPA:17963 + germinal epithelium of ovary (embryonic mouse) @@ -21233,8 +18850,7 @@ - rete ovarii (embryonic mouse) - EMAPA:17966 + rete ovarii (embryonic mouse) @@ -21253,8 +18869,7 @@ - male reproductive system (embryonic mouse) - EMAPA:17968 + male reproductive system (embryonic mouse) @@ -21273,8 +18888,7 @@ - male genital tubercle (embryonic mouse) - EMAPA:17969 + male genital tubercle (embryonic mouse) @@ -21293,8 +18907,7 @@ - mesorchium (embryonic mouse) - EMAPA:17971 + mesorchium (embryonic mouse) @@ -21313,8 +18926,7 @@ - testis (embryonic mouse) - EMAPA:17972 + testis (embryonic mouse) @@ -21333,8 +18945,7 @@ - epithelium of male gonad (embryonic mouse) - EMAPA:17973 + epithelium of male gonad (embryonic mouse) @@ -21353,8 +18964,7 @@ - arytenoid cartilage (embryonic mouse) - EMAPA:17977 + arytenoid cartilage (embryonic mouse) @@ -21373,8 +18983,7 @@ - left lung hilus (embryonic mouse) - EMAPA:17980 + left lung hilus (embryonic mouse) @@ -21393,8 +19002,7 @@ - right lung accessory lobe (embryonic mouse) - EMAPA:17981 + right lung accessory lobe (embryonic mouse) @@ -21413,8 +19021,7 @@ - right lung accessory lobe lobar bronchus (embryonic mouse) - EMAPA:17982 + right lung accessory lobe lobar bronchus (embryonic mouse) @@ -21433,8 +19040,7 @@ - right lung accessory lobe lobar bronchus mesenchyme (embryonic mouse) - EMAPA:17983 + right lung accessory lobe lobar bronchus mesenchyme (embryonic mouse) @@ -21453,8 +19059,7 @@ - lower lobe of right lung (embryonic mouse) - EMAPA:17986 + lower lobe of right lung (embryonic mouse) @@ -21473,8 +19078,7 @@ - lobar bronchus of right lung caudal lobe (embryonic mouse) - EMAPA:17987 + lobar bronchus of right lung caudal lobe (embryonic mouse) @@ -21493,8 +19097,7 @@ - upper lobe of right lung (embryonic mouse) - EMAPA:17991 + upper lobe of right lung (embryonic mouse) @@ -21513,8 +19116,7 @@ - lobar bronchus of right lung cranial lobe (embryonic mouse) - EMAPA:17992 + lobar bronchus of right lung cranial lobe (embryonic mouse) @@ -21533,8 +19135,7 @@ - right lung cranial lobe lobar bronchus mesenchyme (embryonic mouse) - EMAPA:17993 + right lung cranial lobe lobar bronchus mesenchyme (embryonic mouse) @@ -21553,8 +19154,7 @@ - right lung hilus (embryonic mouse) - EMAPA:17996 + right lung hilus (embryonic mouse) @@ -21573,8 +19173,7 @@ - middle lobe of right lung (embryonic mouse) - EMAPA:17997 + middle lobe of right lung (embryonic mouse) @@ -21593,8 +19192,7 @@ - lobar bronchus of right lung middle lobe (embryonic mouse) - EMAPA:17998 + lobar bronchus of right lung middle lobe (embryonic mouse) @@ -21613,8 +19211,7 @@ - right lung middle lobe lobar bronchus mesenchyme (embryonic mouse) - EMAPA:17999 + right lung middle lobe lobar bronchus mesenchyme (embryonic mouse) @@ -21633,8 +19230,7 @@ - lumbar vertebra (embryonic mouse) - EMAPA:18007 + lumbar vertebra (embryonic mouse) @@ -21653,8 +19249,7 @@ - nucleus pulposus (embryonic mouse) - EMAPA:18008 + nucleus pulposus (embryonic mouse) @@ -21673,8 +19268,7 @@ - sacral vertebra cartilage element (embryonic mouse) - EMAPA:18009 + sacral vertebra cartilage element (embryonic mouse) @@ -21693,8 +19287,7 @@ - rib (embryonic mouse) - EMAPA:18010 + rib (embryonic mouse) @@ -21713,8 +19306,7 @@ - thoracic vertebra (embryonic mouse) - EMAPA:18011 + thoracic vertebra (embryonic mouse) @@ -21733,8 +19325,7 @@ - basioccipital pre-cartilage condensation (embryonic mouse) - EMAPA:18012 + basioccipital pre-cartilage condensation (embryonic mouse) @@ -21753,8 +19344,7 @@ - basisphenoid pre-cartilage condensation (embryonic mouse) - EMAPA:18013 + basisphenoid pre-cartilage condensation (embryonic mouse) @@ -21773,8 +19363,7 @@ - exoccipital pre-cartilage condensation (embryonic mouse) - EMAPA:18014 + exoccipital pre-cartilage condensation (embryonic mouse) @@ -21793,8 +19382,7 @@ - sphenoid bone pre-cartilage condensation (embryonic mouse) - EMAPA:18015 + sphenoid bone pre-cartilage condensation (embryonic mouse) @@ -21813,8 +19401,7 @@ - vault of skull (embryonic mouse) - EMAPA:18016 + vault of skull (embryonic mouse) @@ -21833,8 +19420,7 @@ - tetrapod frontal bone primordium (embryonic mouse) - EMAPA:18017 + tetrapod frontal bone primordium (embryonic mouse) @@ -21853,8 +19439,7 @@ - interparietal bone primordium (embryonic mouse) - EMAPA:18018 + interparietal bone primordium (embryonic mouse) @@ -21873,8 +19458,7 @@ - tetrapod parietal bone primordium (embryonic mouse) - EMAPA:18019 + tetrapod parietal bone primordium (embryonic mouse) @@ -21893,8 +19477,7 @@ - squamous part of temporal bone (embryonic mouse) - EMAPA:18021 + squamous part of temporal bone (embryonic mouse) @@ -21913,8 +19496,7 @@ - facial skeleton (embryonic mouse) - EMAPA:18022 + facial skeleton (embryonic mouse) @@ -21933,8 +19515,7 @@ - ethmoid bone primordium (embryonic mouse) - EMAPA:18023 + ethmoid bone primordium (embryonic mouse) @@ -21953,8 +19534,7 @@ - facial bone primordium (embryonic mouse) - EMAPA:18024 + facial bone primordium (embryonic mouse) @@ -21973,8 +19553,7 @@ - chest bone (embryonic mouse) - EMAPA:18025 + chest bone (embryonic mouse) @@ -21993,8 +19572,7 @@ - clavicle pre-cartilage condensation (embryonic mouse) - EMAPA:18026 + clavicle pre-cartilage condensation (embryonic mouse) @@ -22013,30 +19591,7 @@ - scapula pre-cartilage condensation (embryonic mouse) - EMAPA:18027 - - - - - - - - - - - - - - - - - - - - pelvic girdle bone/zone (embryonic mouse) - pelvic girdle skeleton (embryonic mouse) - EMAPA:18028 + scapula pre-cartilage condensation (embryonic mouse) @@ -22055,8 +19610,7 @@ - iliac pre-cartilage condensation (embryonic mouse) - EMAPA:18029 + iliac pre-cartilage condensation (embryonic mouse) @@ -22075,30 +19629,7 @@ - bone of tail (embryonic mouse) - EMAPA:18042 - - - - - - - - - - - - - - - - - - - - axial skeleton plus cranial skeleton (embryonic mouse) - caudal region of vertebral column (embryonic mouse) - EMAPA:18043 + bone of tail (embryonic mouse) @@ -22117,8 +19648,7 @@ - caudal vertebra cartilage element (embryonic mouse) - EMAPA:18044 + caudal vertebra cartilage element (embryonic mouse) @@ -22137,8 +19667,7 @@ - caudal vertebra pre-cartilage condensation (embryonic mouse) - EMAPA:18045 + caudal vertebra pre-cartilage condensation (embryonic mouse) @@ -22157,8 +19686,7 @@ - dome of diaphragm (embryonic mouse) - EMAPA:18046 + dome of diaphragm (embryonic mouse) @@ -22177,8 +19705,7 @@ - left subhepatic recess (embryonic mouse) - EMAPA:18047 + left subhepatic recess (embryonic mouse) @@ -22197,8 +19724,7 @@ - inferior recess of lesser sac (embryonic mouse) - EMAPA:18048 + inferior recess of lesser sac (embryonic mouse) @@ -22217,8 +19743,7 @@ - superior recess of lesser sac (embryonic mouse) - EMAPA:18049 + superior recess of lesser sac (embryonic mouse) @@ -22237,8 +19762,7 @@ - right subhepatic recess (embryonic mouse) - EMAPA:18050 + right subhepatic recess (embryonic mouse) @@ -22257,8 +19781,7 @@ - skin of elbow (embryonic mouse) - EMAPA:18051 + skin of elbow (embryonic mouse) @@ -22277,8 +19800,7 @@ - radius cartilage element (embryonic mouse) - EMAPA:18054 + radius cartilage element (embryonic mouse) @@ -22297,8 +19819,7 @@ - ulna cartilage element (embryonic mouse) - EMAPA:18055 + ulna cartilage element (embryonic mouse) @@ -22317,8 +19838,7 @@ - skin of forearm (embryonic mouse) - EMAPA:18056 + skin of forearm (embryonic mouse) @@ -22337,8 +19857,7 @@ - skin of shoulder (embryonic mouse) - EMAPA:18059 + skin of shoulder (embryonic mouse) @@ -22357,8 +19876,7 @@ - upper arm skin (embryonic mouse) - EMAPA:18062 + upper arm skin (embryonic mouse) @@ -22377,8 +19895,7 @@ - manual digit 1 metacarpus cartilage element (embryonic mouse) - EMAPA:18065 + manual digit 1 metacarpus cartilage element (embryonic mouse) @@ -22397,8 +19914,7 @@ - manual digit 1 phalanx cartilage element (embryonic mouse) - EMAPA:18066 + manual digit 1 phalanx cartilage element (embryonic mouse) @@ -22417,8 +19933,7 @@ - manual digit 2 metacarpus cartilage element (embryonic mouse) - EMAPA:18070 + manual digit 2 metacarpus cartilage element (embryonic mouse) @@ -22437,8 +19952,7 @@ - manual digit 2 phalanx cartilage element (embryonic mouse) - EMAPA:18071 + manual digit 2 phalanx cartilage element (embryonic mouse) @@ -22457,8 +19971,7 @@ - manual digit 3 metacarpus cartilage element (embryonic mouse) - EMAPA:18075 + manual digit 3 metacarpus cartilage element (embryonic mouse) @@ -22477,8 +19990,7 @@ - manual digit 3 phalanx cartilage element (embryonic mouse) - EMAPA:18076 + manual digit 3 phalanx cartilage element (embryonic mouse) @@ -22497,8 +20009,7 @@ - manual digit 4 metacarpus cartilage element (embryonic mouse) - EMAPA:18080 + manual digit 4 metacarpus cartilage element (embryonic mouse) @@ -22517,8 +20028,7 @@ - manual digit 4 phalanx cartilage element (embryonic mouse) - EMAPA:18081 + manual digit 4 phalanx cartilage element (embryonic mouse) @@ -22537,8 +20047,7 @@ - manual digit 5 metacarpus cartilage element (embryonic mouse) - EMAPA:18085 + manual digit 5 metacarpus cartilage element (embryonic mouse) @@ -22557,8 +20066,7 @@ - manual digit 5 phalanx cartilage element (embryonic mouse) - EMAPA:18086 + manual digit 5 phalanx cartilage element (embryonic mouse) @@ -22577,8 +20085,7 @@ - carpus cartilage element (embryonic mouse) - EMAPA:18102 + carpus cartilage element (embryonic mouse) @@ -22597,8 +20104,7 @@ - pedal digit 1 metatarsal cartilage element (embryonic mouse) - EMAPA:18106 + pedal digit 1 metatarsal cartilage element (embryonic mouse) @@ -22617,8 +20123,7 @@ - pedal digit 1 phalanx cartilage element (embryonic mouse) - EMAPA:18107 + pedal digit 1 phalanx cartilage element (embryonic mouse) @@ -22637,8 +20142,7 @@ - pedal digit 2 metatarsal cartilage element (embryonic mouse) - EMAPA:18111 + pedal digit 2 metatarsal cartilage element (embryonic mouse) @@ -22657,8 +20161,7 @@ - pedal digit 2 phalanx cartilage element (embryonic mouse) - EMAPA:18112 + pedal digit 2 phalanx cartilage element (embryonic mouse) @@ -22677,8 +20180,7 @@ - pedal digit 3 metatarsal cartilage element (embryonic mouse) - EMAPA:18116 + pedal digit 3 metatarsal cartilage element (embryonic mouse) @@ -22697,8 +20199,7 @@ - pedal digit 3 phalanx cartilage element (embryonic mouse) - EMAPA:18117 + pedal digit 3 phalanx cartilage element (embryonic mouse) @@ -22717,8 +20218,7 @@ - pedal digit 4 metatarsal cartilage element (embryonic mouse) - EMAPA:18121 + pedal digit 4 metatarsal cartilage element (embryonic mouse) @@ -22737,8 +20237,7 @@ - pedal digit 4 phalanx cartilage element (embryonic mouse) - EMAPA:18122 + pedal digit 4 phalanx cartilage element (embryonic mouse) @@ -22757,8 +20256,7 @@ - pedal digit 5 metatarsal cartilage element (embryonic mouse) - EMAPA:18126 + pedal digit 5 metatarsal cartilage element (embryonic mouse) @@ -22777,8 +20275,7 @@ - pedal digit 5 phalanx cartilage element (embryonic mouse) - EMAPA:18127 + pedal digit 5 phalanx cartilage element (embryonic mouse) @@ -22797,8 +20294,7 @@ - calcaneum cartilage element (embryonic mouse) - EMAPA:18143 + calcaneum cartilage element (embryonic mouse) @@ -22817,8 +20313,7 @@ - skin of hip (embryonic mouse) - EMAPA:18148 + skin of hip (embryonic mouse) @@ -22837,8 +20332,7 @@ - skin of knee (embryonic mouse) - EMAPA:18151 + skin of knee (embryonic mouse) @@ -22857,8 +20351,7 @@ - fibula cartilage element (embryonic mouse) - EMAPA:18154 + fibula cartilage element (embryonic mouse) @@ -22877,52 +20370,7 @@ - tibia cartilage element (embryonic mouse) - EMAPA:18155 - - - - - - - - - - - - - - - - - - - - lower leg skin (embryonic mouse) - skin of leg (embryonic mouse) - EMAPA:18156 - - - - - - - - - - - - - - - - - - - - skin of leg (embryonic mouse) - upper leg skin (embryonic mouse) - EMAPA:18159 + tibia cartilage element (embryonic mouse) @@ -22941,8 +20389,7 @@ - abdominal external oblique muscle (embryonic mouse) - EMAPA:18162 + abdominal external oblique muscle (embryonic mouse) @@ -22961,8 +20408,7 @@ - abdominal internal oblique muscle (embryonic mouse) - EMAPA:18163 + abdominal internal oblique muscle (embryonic mouse) @@ -22981,8 +20427,7 @@ - rectus abdominis muscle (embryonic mouse) - EMAPA:18164 + rectus abdominis muscle (embryonic mouse) @@ -23001,8 +20446,7 @@ - transversus abdominis muscle (embryonic mouse) - EMAPA:18165 + transversus abdominis muscle (embryonic mouse) @@ -23021,8 +20465,7 @@ - axial musculature (embryonic mouse) - EMAPA:18166 + axial musculature (embryonic mouse) @@ -23041,8 +20484,7 @@ - axial muscle (embryonic mouse) - EMAPA:18167 + axial muscle (embryonic mouse) @@ -23061,8 +20503,7 @@ - erector spinae muscle group (embryonic mouse) - EMAPA:18168 + erector spinae muscle group (embryonic mouse) @@ -23081,8 +20522,7 @@ - psoas major muscle (embryonic mouse) - EMAPA:18169 + psoas major muscle (embryonic mouse) @@ -23101,8 +20541,7 @@ - psoas minor muscle (embryonic mouse) - EMAPA:18170 + psoas minor muscle (embryonic mouse) @@ -23121,8 +20560,7 @@ - skeletal musculature of head (embryonic mouse) - EMAPA:18171 + skeletal musculature of head (embryonic mouse) @@ -23141,8 +20579,7 @@ - cranial muscle (embryonic mouse) - EMAPA:18172 + cranial muscle (embryonic mouse) @@ -23161,8 +20598,7 @@ - deltoid (embryonic mouse) - EMAPA:18177 + deltoid (embryonic mouse) @@ -23181,8 +20617,7 @@ - latissimus dorsi muscle (embryonic mouse) - EMAPA:18178 + latissimus dorsi muscle (embryonic mouse) @@ -23201,8 +20636,7 @@ - pectoralis major (embryonic mouse) - EMAPA:18179 + pectoralis major (embryonic mouse) @@ -23221,8 +20655,7 @@ - pectoralis minor (embryonic mouse) - EMAPA:18180 + pectoralis minor (embryonic mouse) @@ -23241,8 +20674,7 @@ - subscapularis muscle (embryonic mouse) - EMAPA:18181 + subscapularis muscle (embryonic mouse) @@ -23261,8 +20693,7 @@ - supraspinatus muscle (embryonic mouse) - EMAPA:18182 + supraspinatus muscle (embryonic mouse) @@ -23281,32 +20712,7 @@ - trapezius muscle (embryonic mouse) - EMAPA:18183 - - - - - - - - - - - - - - - - - - - - - muscle of pelvic girdle (embryonic mouse) - muscle of pelvis (embryonic mouse) - musculature of pelvic girdle (embryonic mouse) - EMAPA:18184 + trapezius muscle (embryonic mouse) @@ -23325,8 +20731,7 @@ - muscle of pelvic girdle (embryonic mouse) - EMAPA:18185 + muscle of pelvic girdle (embryonic mouse) @@ -23345,8 +20750,7 @@ - gluteal muscle (embryonic mouse) - EMAPA:18186 + gluteal muscle (embryonic mouse) @@ -23365,8 +20769,7 @@ - skin muscle (embryonic mouse) - EMAPA:18187 + skin muscle (embryonic mouse) @@ -23385,8 +20788,7 @@ - hypodermis skeletal muscle layer (embryonic mouse) - EMAPA:18188 + hypodermis skeletal muscle layer (embryonic mouse) @@ -23405,8 +20807,7 @@ - panniculus carnosus muscle (embryonic mouse) - EMAPA:18189 + panniculus carnosus muscle (embryonic mouse) @@ -23425,8 +20826,7 @@ - platysma (embryonic mouse) - EMAPA:18190 + platysma (embryonic mouse) @@ -23445,8 +20845,7 @@ - isthmus of thyroid gland (embryonic mouse) - EMAPA:18195 + isthmus of thyroid gland (embryonic mouse) @@ -23465,8 +20864,7 @@ - lobe of thyroid gland (embryonic mouse) - EMAPA:18196 + lobe of thyroid gland (embryonic mouse) @@ -23485,8 +20883,7 @@ - left lobe of thyroid gland (embryonic mouse) - EMAPA:18197 + left lobe of thyroid gland (embryonic mouse) @@ -23505,8 +20902,7 @@ - right lobe of thyroid gland (embryonic mouse) - EMAPA:18198 + right lobe of thyroid gland (embryonic mouse) @@ -23525,8 +20921,7 @@ - internal capsule of telencephalon (embryonic mouse) - EMAPA:18206 + internal capsule of telencephalon (embryonic mouse) @@ -23545,8 +20940,7 @@ - caudate nucleus (embryonic mouse) - EMAPA:18207 + caudate nucleus (embryonic mouse) @@ -23565,8 +20959,7 @@ - lentiform nucleus (embryonic mouse) - EMAPA:18208 + lentiform nucleus (embryonic mouse) @@ -23585,8 +20978,7 @@ - tentorium cerebelli (embryonic mouse) - EMAPA:18210 + tentorium cerebelli (embryonic mouse) @@ -23605,8 +20997,7 @@ - hindbrain subarachnoid space (embryonic mouse) - EMAPA:18211 + hindbrain subarachnoid space (embryonic mouse) @@ -23625,8 +21016,7 @@ - pontine cistern (embryonic mouse) - EMAPA:18212 + pontine cistern (embryonic mouse) @@ -23645,8 +21035,7 @@ - midbrain tegmentum (embryonic mouse) - EMAPA:18215 + midbrain tegmentum (embryonic mouse) @@ -23665,8 +21054,7 @@ - abducens nerve (embryonic mouse) - EMAPA:18216 + abducens nerve (embryonic mouse) @@ -23685,8 +21073,7 @@ - chorda tympani branch of facial nerve (embryonic mouse) - EMAPA:18217 + chorda tympani branch of facial nerve (embryonic mouse) @@ -23705,8 +21092,7 @@ - trochlear nerve (embryonic mouse) - EMAPA:18218 + trochlear nerve (embryonic mouse) @@ -23725,8 +21111,7 @@ - conus medullaris (embryonic mouse) - EMAPA:18219 + conus medullaris (embryonic mouse) @@ -23745,8 +21130,7 @@ - filum terminale (embryonic mouse) - EMAPA:18220 + filum terminale (embryonic mouse) @@ -23765,8 +21149,7 @@ - autonomic ganglion (embryonic mouse) - EMAPA:18221 + autonomic ganglion (embryonic mouse) @@ -23785,8 +21168,7 @@ - main ciliary ganglion (embryonic mouse) - EMAPA:18222 + main ciliary ganglion (embryonic mouse) @@ -23805,8 +21187,7 @@ - paraaortic body (embryonic mouse) - EMAPA:18223 + paraaortic body (embryonic mouse) @@ -23825,8 +21206,7 @@ - autonomic nerve plexus (embryonic mouse) - EMAPA:18224 + autonomic nerve plexus (embryonic mouse) @@ -23845,8 +21225,7 @@ - hypogastric nerve (embryonic mouse) - EMAPA:18225 + hypogastric nerve (embryonic mouse) @@ -23865,30 +21244,7 @@ - cervicothoracic ganglion (embryonic mouse) - EMAPA:18226 - - - - - - - - - - - - - - - - - - - - intercostal nerve (embryonic mouse) - trunk of intercostal nerve (embryonic mouse) - EMAPA:18227 + cervicothoracic ganglion (embryonic mouse) @@ -23907,8 +21263,7 @@ - incus cartilage element (embryonic mouse) - EMAPA:18228 + incus cartilage element (embryonic mouse) @@ -23927,8 +21282,7 @@ - malleus cartilage element (embryonic mouse) - EMAPA:18229 + malleus cartilage element (embryonic mouse) @@ -23947,8 +21301,7 @@ - stapes cartilage element (embryonic mouse) - EMAPA:18230 + stapes cartilage element (embryonic mouse) @@ -23967,8 +21320,7 @@ - anterior chamber of eyeball (embryonic mouse) - EMAPA:18231 + anterior chamber of eyeball (embryonic mouse) @@ -23987,30 +21339,7 @@ - aqueous humor of eyeball (embryonic mouse) - EMAPA:18232 - - - - - - - - - - - - - - - - - - - - conjunctiva (embryonic mouse) - conjunctival sac (embryonic mouse) - EMAPA:18233 + aqueous humor of eyeball (embryonic mouse) @@ -24029,8 +21358,7 @@ - extra-ocular muscle (embryonic mouse) - EMAPA:18234 + extra-ocular muscle (embryonic mouse) @@ -24049,8 +21377,7 @@ - tunica vasculosa lentis (embryonic mouse) - EMAPA:18235 + tunica vasculosa lentis (embryonic mouse) @@ -24069,8 +21396,7 @@ - vasa hyaloidea propria (embryonic mouse) - EMAPA:18236 + vasa hyaloidea propria (embryonic mouse) @@ -24089,8 +21415,7 @@ - capsule of lens (embryonic mouse) - EMAPA:18237 + capsule of lens (embryonic mouse) @@ -24109,8 +21434,7 @@ - optic disc (embryonic mouse) - EMAPA:18238 + optic disc (embryonic mouse) @@ -24129,8 +21453,7 @@ - middle cerebral artery (embryonic mouse) - EMAPA:18239 + middle cerebral artery (embryonic mouse) @@ -24149,8 +21472,7 @@ - spinal artery (embryonic mouse) - EMAPA:18241 + spinal artery (embryonic mouse) @@ -24169,8 +21491,7 @@ - anterior spinal artery (embryonic mouse) - EMAPA:18242 + anterior spinal artery (embryonic mouse) @@ -24189,8 +21510,7 @@ - posterior spinal artery (embryonic mouse) - EMAPA:18243 + posterior spinal artery (embryonic mouse) @@ -24209,8 +21529,7 @@ - foramen ovale of heart (embryonic mouse) - EMAPA:18244 + foramen ovale of heart (embryonic mouse) @@ -24229,8 +21548,7 @@ - interventricular septum membranous part (embryonic mouse) - EMAPA:18246 + interventricular septum membranous part (embryonic mouse) @@ -24249,8 +21567,7 @@ - interventricular septum muscular part (embryonic mouse) - EMAPA:18247 + interventricular septum muscular part (embryonic mouse) @@ -24269,8 +21586,7 @@ - lymphatic part of lymphoid system (embryonic mouse) - EMAPA:18248 + lymphatic part of lymphoid system (embryonic mouse) @@ -24289,8 +21605,7 @@ - jugular lymph sac (embryonic mouse) - EMAPA:18249 + jugular lymph sac (embryonic mouse) @@ -24309,8 +21624,7 @@ - azygos vein (embryonic mouse) - EMAPA:18250 + azygos vein (embryonic mouse) @@ -24329,8 +21643,7 @@ - hemiazygos vein (embryonic mouse) - EMAPA:18251 + hemiazygos vein (embryonic mouse) @@ -24349,8 +21662,7 @@ - spinal vein (embryonic mouse) - EMAPA:18255 + spinal vein (embryonic mouse) @@ -24369,8 +21681,7 @@ - anal canal (embryonic mouse) - EMAPA:18256 + anal canal (embryonic mouse) @@ -24389,8 +21700,7 @@ - external anal sphincter (embryonic mouse) - EMAPA:18265 + external anal sphincter (embryonic mouse) @@ -24409,8 +21719,7 @@ - internal anal sphincter (embryonic mouse) - EMAPA:18266 + internal anal sphincter (embryonic mouse) @@ -24429,8 +21738,7 @@ - gastroesophageal sphincter (embryonic mouse) - EMAPA:18267 + gastroesophageal sphincter (embryonic mouse) @@ -24449,8 +21757,7 @@ - vallate papilla (embryonic mouse) - EMAPA:18271 + vallate papilla (embryonic mouse) @@ -24469,8 +21776,7 @@ - fungiform papilla (embryonic mouse) - EMAPA:18272 + fungiform papilla (embryonic mouse) @@ -24489,8 +21795,7 @@ - tongue intermolar eminence (embryonic mouse) - EMAPA:18273 + tongue intermolar eminence (embryonic mouse) @@ -24509,8 +21814,7 @@ - lingual septum (embryonic mouse) - EMAPA:18274 + lingual septum (embryonic mouse) @@ -24529,8 +21833,7 @@ - extrinsic muscle of tongue (embryonic mouse) - EMAPA:18275 + extrinsic muscle of tongue (embryonic mouse) @@ -24549,8 +21852,7 @@ - genioglossus muscle (embryonic mouse) - EMAPA:18276 + genioglossus muscle (embryonic mouse) @@ -24569,8 +21871,7 @@ - hyoglossus muscle (embryonic mouse) - EMAPA:18277 + hyoglossus muscle (embryonic mouse) @@ -24589,8 +21890,7 @@ - palatoglossus muscle (embryonic mouse) - EMAPA:18278 + palatoglossus muscle (embryonic mouse) @@ -24609,8 +21909,7 @@ - styloglossus (embryonic mouse) - EMAPA:18279 + styloglossus (embryonic mouse) @@ -24629,8 +21928,7 @@ - intrinsic muscle of tongue (embryonic mouse) - EMAPA:18280 + intrinsic muscle of tongue (embryonic mouse) @@ -24649,8 +21947,7 @@ - transverse muscle of tongue (embryonic mouse) - EMAPA:18281 + transverse muscle of tongue (embryonic mouse) @@ -24669,8 +21966,7 @@ - vertical muscle of tongue (embryonic mouse) - EMAPA:18282 + vertical muscle of tongue (embryonic mouse) @@ -24689,8 +21985,7 @@ - gastro-splenic ligament (embryonic mouse) - EMAPA:18285 + gastro-splenic ligament (embryonic mouse) @@ -24709,8 +22004,7 @@ - lieno-renal ligament (embryonic mouse) - EMAPA:18286 + lieno-renal ligament (embryonic mouse) @@ -24729,8 +22023,7 @@ - falciform ligament (embryonic mouse) - EMAPA:18288 + falciform ligament (embryonic mouse) @@ -24749,8 +22042,7 @@ - epiglottis (embryonic mouse) - EMAPA:18289 + epiglottis (embryonic mouse) @@ -24769,8 +22061,7 @@ - mandible (embryonic mouse) - EMAPA:18290 + mandible (embryonic mouse) @@ -24789,8 +22080,7 @@ - lobe of liver (embryonic mouse) - EMAPA:18306 + lobe of liver (embryonic mouse) @@ -24809,8 +22099,7 @@ - left lobe of liver (embryonic mouse) - EMAPA:18307 + left lobe of liver (embryonic mouse) @@ -24829,8 +22118,7 @@ - hepatic sinusoid of left of lobe of liver (embryonic mouse) - EMAPA:18309 + hepatic sinusoid of left of lobe of liver (embryonic mouse) @@ -24849,8 +22137,7 @@ - liver left lobe parenchyma (embryonic mouse) - EMAPA:18310 + liver left lobe parenchyma (embryonic mouse) @@ -24869,8 +22156,7 @@ - right lobe of liver (embryonic mouse) - EMAPA:18311 + right lobe of liver (embryonic mouse) @@ -24889,8 +22175,7 @@ - caudate lobe of liver (embryonic mouse) - EMAPA:18313 + caudate lobe of liver (embryonic mouse) @@ -24909,8 +22194,7 @@ - caudate lobe hepatic sinusoid (embryonic mouse) - EMAPA:18314 + caudate lobe hepatic sinusoid (embryonic mouse) @@ -24929,8 +22213,7 @@ - parenchyma of caudate lobe of liver (embryonic mouse) - EMAPA:18315 + parenchyma of caudate lobe of liver (embryonic mouse) @@ -24949,8 +22232,7 @@ - hepatic sinusoid of right of lobe of liver (embryonic mouse) - EMAPA:18316 + hepatic sinusoid of right of lobe of liver (embryonic mouse) @@ -24969,8 +22251,7 @@ - liver right lobe parenchyma (embryonic mouse) - EMAPA:18317 + liver right lobe parenchyma (embryonic mouse) @@ -24989,8 +22270,7 @@ - quadrate lobe of liver (embryonic mouse) - EMAPA:18318 + quadrate lobe of liver (embryonic mouse) @@ -25009,8 +22289,7 @@ - quadrate lobe hepatic sinusoid (embryonic mouse) - EMAPA:18319 + quadrate lobe hepatic sinusoid (embryonic mouse) @@ -25029,8 +22308,7 @@ - parenchyma of quadrate lobe of liver (embryonic mouse) - EMAPA:18320 + parenchyma of quadrate lobe of liver (embryonic mouse) @@ -25049,8 +22327,7 @@ - urinary bladder (embryonic mouse) - EMAPA:18321 + urinary bladder (embryonic mouse) @@ -25069,8 +22346,7 @@ - urachus (embryonic mouse) - EMAPA:18323 + urachus (embryonic mouse) @@ -25089,8 +22365,7 @@ - renal medulla interstitium (embryonic mouse) - EMAPA:18326 + renal medulla interstitium (embryonic mouse) @@ -25109,8 +22384,7 @@ - Mullerian tubercle (embryonic mouse) - EMAPA:18328 + Mullerian tubercle (embryonic mouse) @@ -25129,8 +22403,7 @@ - female labial swelling (embryonic mouse) - EMAPA:18329 + female labial swelling (embryonic mouse) @@ -25149,8 +22422,7 @@ - mediastinum testis (embryonic mouse) - EMAPA:18331 + mediastinum testis (embryonic mouse) @@ -25169,8 +22441,7 @@ - rete testis (embryonic mouse) - EMAPA:18332 + rete testis (embryonic mouse) @@ -25189,30 +22460,7 @@ - larynx (embryonic mouse) - EMAPA:18333 - - - - - - - - - - - - - - - - - - - - mucosa of larynx (embryonic mouse) - respiratory system mucosa (embryonic mouse) - EMAPA:18334 + larynx (embryonic mouse) @@ -25231,8 +22479,7 @@ - sacral vertebra (embryonic mouse) - EMAPA:18336 + sacral vertebra (embryonic mouse) @@ -25251,8 +22498,7 @@ - basioccipital cartilage element (embryonic mouse) - EMAPA:18337 + basioccipital cartilage element (embryonic mouse) @@ -25271,8 +22517,7 @@ - basisphenoid cartilage condenstion (embryonic mouse) - EMAPA:18338 + basisphenoid cartilage condenstion (embryonic mouse) @@ -25291,8 +22536,7 @@ - exoccipital cartilage element (embryonic mouse) - EMAPA:18339 + exoccipital cartilage element (embryonic mouse) @@ -25311,8 +22555,7 @@ - sphenoid bone (embryonic mouse) - EMAPA:18340 + sphenoid bone (embryonic mouse) @@ -25331,8 +22574,7 @@ - supraoccipital cartilage element (embryonic mouse) - EMAPA:18341 + supraoccipital cartilage element (embryonic mouse) @@ -25351,8 +22593,7 @@ - clavicle cartilage element (embryonic mouse) - EMAPA:18342 + clavicle cartilage element (embryonic mouse) @@ -25371,8 +22612,7 @@ - scapula cartilage element (embryonic mouse) - EMAPA:18343 + scapula cartilage element (embryonic mouse) @@ -25391,8 +22631,7 @@ - sternum (embryonic mouse) - EMAPA:18344 + sternum (embryonic mouse) @@ -25411,8 +22650,7 @@ - sternebral bone pre-cartilage condensation (embryonic mouse) - EMAPA:18345 + sternebral bone pre-cartilage condensation (embryonic mouse) @@ -25431,8 +22669,7 @@ - acetabular part of hip bone (embryonic mouse) - EMAPA:18346 + acetabular part of hip bone (embryonic mouse) @@ -25451,8 +22688,7 @@ - iliac cartilage element (embryonic mouse) - EMAPA:18347 + iliac cartilage element (embryonic mouse) @@ -25471,8 +22707,7 @@ - ischial pre-cartilage condensation (embryonic mouse) - EMAPA:18348 + ischial pre-cartilage condensation (embryonic mouse) @@ -25491,8 +22726,7 @@ - pubic pre-cartilage condensation (embryonic mouse) - EMAPA:18349 + pubic pre-cartilage condensation (embryonic mouse) @@ -25511,8 +22745,7 @@ - dorsal root ganglion (embryonic mouse) - EMAPA:18372 + dorsal root ganglion (embryonic mouse) @@ -25531,8 +22764,7 @@ - caudal vertebra (embryonic mouse) - EMAPA:18374 + caudal vertebra (embryonic mouse) @@ -25551,8 +22783,7 @@ - lumen of midgut (embryonic mouse) - EMAPA:18377 + lumen of midgut (embryonic mouse) @@ -25571,8 +22802,7 @@ - lumen of esophagus (embryonic mouse) - EMAPA:18380 + lumen of esophagus (embryonic mouse) @@ -25591,8 +22821,7 @@ - cavity of pharynx (embryonic mouse) - EMAPA:18381 + cavity of pharynx (embryonic mouse) @@ -25611,8 +22840,7 @@ - stomach fundus lumen (embryonic mouse) - EMAPA:18382 + stomach fundus lumen (embryonic mouse) @@ -25631,8 +22859,7 @@ - rectal lumen (embryonic mouse) - EMAPA:18388 + rectal lumen (embryonic mouse) @@ -25651,8 +22878,7 @@ - stomach lumen (embryonic mouse) - EMAPA:18395 + stomach lumen (embryonic mouse) @@ -25671,8 +22897,7 @@ - lumen of hindgut (embryonic mouse) - EMAPA:18396 + lumen of hindgut (embryonic mouse) @@ -25691,8 +22916,7 @@ - oral cavity (embryonic mouse) - EMAPA:18399 + oral cavity (embryonic mouse) @@ -25711,8 +22935,7 @@ - endoderm of foregut-midgut junction (embryonic mouse) - EMAPA:18403 + endoderm of foregut-midgut junction (embryonic mouse) @@ -25731,8 +22954,7 @@ - carina of trachea (embryonic mouse) - EMAPA:18407 + carina of trachea (embryonic mouse) @@ -25751,8 +22973,7 @@ - epithelium of trachea (embryonic mouse) - EMAPA:18409 + epithelium of trachea (embryonic mouse) @@ -25771,8 +22992,7 @@ - vena cava (embryonic mouse) - EMAPA:18415 + vena cava (embryonic mouse) @@ -25791,8 +23011,7 @@ - posterior vena cava (embryonic mouse) - EMAPA:18416 + posterior vena cava (embryonic mouse) @@ -25811,8 +23030,7 @@ - anterior vena cava (embryonic mouse) - EMAPA:18417 + anterior vena cava (embryonic mouse) @@ -25831,8 +23049,7 @@ - left anterior vena cava (embryonic mouse) - EMAPA:18418 + left anterior vena cava (embryonic mouse) @@ -25851,8 +23068,7 @@ - right anterior vena cava (embryonic mouse) - EMAPA:18419 + right anterior vena cava (embryonic mouse) @@ -25871,8 +23087,7 @@ - gland (embryonic mouse) - EMAPA:18425 + gland (embryonic mouse) @@ -25891,8 +23106,7 @@ - adrenal gland (embryonic mouse) - EMAPA:18426 + adrenal gland (embryonic mouse) @@ -25911,8 +23125,7 @@ - adrenal cortex (embryonic mouse) - EMAPA:18427 + adrenal cortex (embryonic mouse) @@ -25931,8 +23144,7 @@ - adrenal medulla (embryonic mouse) - EMAPA:18428 + adrenal medulla (embryonic mouse) @@ -25951,8 +23163,7 @@ - mesothelium of diaphragm (embryonic mouse) - EMAPA:18429 + mesothelium of diaphragm (embryonic mouse) @@ -25971,8 +23182,7 @@ - cervical ganglion (embryonic mouse) - EMAPA:18438 + cervical ganglion (embryonic mouse) @@ -25991,8 +23201,7 @@ - inferior cervical ganglion (embryonic mouse) - EMAPA:18439 + inferior cervical ganglion (embryonic mouse) @@ -26011,8 +23220,7 @@ - middle cervical ganglion (embryonic mouse) - EMAPA:18440 + middle cervical ganglion (embryonic mouse) @@ -26031,8 +23239,7 @@ - superior cervical ganglion (embryonic mouse) - EMAPA:18441 + superior cervical ganglion (embryonic mouse) @@ -26051,8 +23258,7 @@ - epithelium of nasal septum (embryonic mouse) - EMAPA:18442 + epithelium of nasal septum (embryonic mouse) @@ -26071,8 +23277,7 @@ - mesenchyme of nasal septum (embryonic mouse) - EMAPA:18443 + mesenchyme of nasal septum (embryonic mouse) @@ -26091,8 +23296,7 @@ - epithelium of vomeronasal organ (embryonic mouse) - EMAPA:18444 + epithelium of vomeronasal organ (embryonic mouse) @@ -26111,8 +23315,7 @@ - mesenchyme of vomeronasal organ (embryonic mouse) - EMAPA:18445 + mesenchyme of vomeronasal organ (embryonic mouse) @@ -26131,8 +23334,7 @@ - lesser sac cavity (embryonic mouse) - EMAPA:18461 + lesser sac cavity (embryonic mouse) @@ -26151,8 +23353,7 @@ - skin of manus (embryonic mouse) - EMAPA:18486 + skin of manus (embryonic mouse) @@ -26171,8 +23372,7 @@ - palmar pad (embryonic mouse) - EMAPA:18489 + palmar pad (embryonic mouse) @@ -26191,8 +23391,7 @@ - mesenchyme of tarsal region (embryonic mouse) - EMAPA:18502 + mesenchyme of tarsal region (embryonic mouse) @@ -26211,8 +23410,7 @@ - skin of pes (embryonic mouse) - EMAPA:18504 + skin of pes (embryonic mouse) @@ -26231,8 +23429,7 @@ - plantar pad (embryonic mouse) - EMAPA:18507 + plantar pad (embryonic mouse) @@ -26251,8 +23448,7 @@ - patellar ligament (embryonic mouse) - EMAPA:18509 + patellar ligament (embryonic mouse) @@ -26271,8 +23467,7 @@ - patella pre-cartilage condensation (embryonic mouse) - EMAPA:18510 + patella pre-cartilage condensation (embryonic mouse) @@ -26291,8 +23486,7 @@ - iliopsoas (embryonic mouse) - EMAPA:18520 + iliopsoas (embryonic mouse) @@ -26311,8 +23505,7 @@ - intercostal muscle (embryonic mouse) - EMAPA:18521 + intercostal muscle (embryonic mouse) @@ -26331,8 +23524,7 @@ - external intercostal muscle (embryonic mouse) - EMAPA:18522 + external intercostal muscle (embryonic mouse) @@ -26351,8 +23543,7 @@ - internal intercostal muscle (embryonic mouse) - EMAPA:18523 + internal intercostal muscle (embryonic mouse) @@ -26371,8 +23562,7 @@ - quadratus lumborum (embryonic mouse) - EMAPA:18524 + quadratus lumborum (embryonic mouse) @@ -26391,8 +23581,7 @@ - serratus ventralis (embryonic mouse) - EMAPA:18525 + serratus ventralis (embryonic mouse) @@ -26411,8 +23600,7 @@ - infraspinatus muscle (embryonic mouse) - EMAPA:18526 + infraspinatus muscle (embryonic mouse) @@ -26431,8 +23619,7 @@ - gluteus maximus (embryonic mouse) - EMAPA:18527 + gluteus maximus (embryonic mouse) @@ -26451,8 +23638,7 @@ - spleen primordium (embryonic mouse) - EMAPA:18535 + spleen primordium (embryonic mouse) @@ -26471,8 +23657,7 @@ - parotid gland (embryonic mouse) - EMAPA:18537 + parotid gland (embryonic mouse) @@ -26491,8 +23676,7 @@ - epithelium of parotid gland (embryonic mouse) - EMAPA:18538 + epithelium of parotid gland (embryonic mouse) @@ -26511,8 +23695,7 @@ - mesenchyme of parotid (embryonic mouse) - EMAPA:18539 + mesenchyme of parotid (embryonic mouse) @@ -26531,8 +23714,7 @@ - mammary ridge (embryonic mouse) - EMAPA:18541 + mammary ridge (embryonic mouse) @@ -26551,8 +23733,7 @@ - pineal recess of third ventricle (embryonic mouse) - EMAPA:18542 + pineal recess of third ventricle (embryonic mouse) @@ -26571,8 +23752,7 @@ - choroid plexus of third ventricle (embryonic mouse) - EMAPA:18543 + choroid plexus of third ventricle (embryonic mouse) @@ -26591,8 +23771,7 @@ - interthalamic adhesion (embryonic mouse) - EMAPA:18546 + interthalamic adhesion (embryonic mouse) @@ -26611,8 +23790,7 @@ - head of caudate nucleus (embryonic mouse) - EMAPA:18547 + head of caudate nucleus (embryonic mouse) @@ -26631,8 +23809,7 @@ - tail of caudate nucleus (embryonic mouse) - EMAPA:18548 + tail of caudate nucleus (embryonic mouse) @@ -26651,8 +23828,7 @@ - falx cerebri (embryonic mouse) - EMAPA:18551 + falx cerebri (embryonic mouse) @@ -26671,8 +23847,7 @@ - dorsal horn of spinal cord (embryonic mouse) - EMAPA:18574 + dorsal horn of spinal cord (embryonic mouse) @@ -26691,30 +23866,7 @@ - ventral horn of spinal cord (embryonic mouse) - EMAPA:18575 - - - - - - - - - - - - - - - - - - - - sciatic nerve (embryonic mouse) - trunk of sciatic nerve (embryonic mouse) - EMAPA:18577 + ventral horn of spinal cord (embryonic mouse) @@ -26733,8 +23885,7 @@ - endolymphatic duct (embryonic mouse) - EMAPA:18580 + endolymphatic duct (embryonic mouse) @@ -26753,8 +23904,7 @@ - epithelium of endolymphatic duct (embryonic mouse) - EMAPA:18582 + epithelium of endolymphatic duct (embryonic mouse) @@ -26773,8 +23923,7 @@ - incus bone (embryonic mouse) - EMAPA:18583 + incus bone (embryonic mouse) @@ -26793,8 +23942,7 @@ - malleus bone (embryonic mouse) - EMAPA:18584 + malleus bone (embryonic mouse) @@ -26813,8 +23961,7 @@ - stapes bone (embryonic mouse) - EMAPA:18585 + stapes bone (embryonic mouse) @@ -26833,8 +23980,7 @@ - stapedius muscle (embryonic mouse) - EMAPA:18586 + stapedius muscle (embryonic mouse) @@ -26853,8 +23999,7 @@ - tensor tympani (embryonic mouse) - EMAPA:18587 + tensor tympani (embryonic mouse) @@ -26873,8 +24018,7 @@ - retinal neural layer (embryonic mouse) - EMAPA:18590 + retinal neural layer (embryonic mouse) @@ -26893,8 +24037,7 @@ - nerve fiber layer of retina (embryonic mouse) - EMAPA:18591 + nerve fiber layer of retina (embryonic mouse) @@ -26913,8 +24056,7 @@ - nasal meatus (embryonic mouse) - EMAPA:18593 + nasal meatus (embryonic mouse) @@ -26933,8 +24075,7 @@ - external naris epithelium (embryonic mouse) - EMAPA:18596 + external naris epithelium (embryonic mouse) @@ -26953,8 +24094,7 @@ - communicating artery (embryonic mouse) - EMAPA:18598 + communicating artery (embryonic mouse) @@ -26973,8 +24113,7 @@ - anterior communicating artery (embryonic mouse) - EMAPA:18599 + anterior communicating artery (embryonic mouse) @@ -26993,8 +24132,7 @@ - posterior communicating artery (embryonic mouse) - EMAPA:18600 + posterior communicating artery (embryonic mouse) @@ -27013,8 +24151,7 @@ - aorta (embryonic mouse) - EMAPA:18601 + aorta (embryonic mouse) @@ -27033,8 +24170,7 @@ - thoracic aorta (embryonic mouse) - EMAPA:18603 + thoracic aorta (embryonic mouse) @@ -27053,32 +24189,7 @@ - descending thoracic aorta (embryonic mouse) - EMAPA:18605 - - - - - - - - - - - - - - - - - - - - - descending aorta (embryonic mouse) - dorsal aorta (embryonic mouse) - pair of dorsal aortae (embryonic mouse) - EMAPA:18606 + descending thoracic aorta (embryonic mouse) @@ -27097,8 +24208,7 @@ - bronchial artery (embryonic mouse) - EMAPA:18608 + bronchial artery (embryonic mouse) @@ -27117,8 +24227,7 @@ - carotid artery segment (embryonic mouse) - EMAPA:18609 + carotid artery segment (embryonic mouse) @@ -27137,8 +24246,7 @@ - external carotid artery (embryonic mouse) - EMAPA:18611 + external carotid artery (embryonic mouse) @@ -27157,8 +24265,7 @@ - cerebral artery (embryonic mouse) - EMAPA:18613 + cerebral artery (embryonic mouse) @@ -27177,8 +24284,7 @@ - internal thoracic artery (embryonic mouse) - EMAPA:18617 + internal thoracic artery (embryonic mouse) @@ -27197,8 +24303,7 @@ - inferior mesenteric artery (embryonic mouse) - EMAPA:18618 + inferior mesenteric artery (embryonic mouse) @@ -27217,8 +24322,7 @@ - superior mesenteric artery (embryonic mouse) - EMAPA:18619 + superior mesenteric artery (embryonic mouse) @@ -27237,8 +24341,7 @@ - ovarian artery (embryonic mouse) - EMAPA:18620 + ovarian artery (embryonic mouse) @@ -27257,8 +24360,7 @@ - testicular artery (embryonic mouse) - EMAPA:18621 + testicular artery (embryonic mouse) @@ -27277,8 +24379,7 @@ - thyroid artery (embryonic mouse) - EMAPA:18622 + thyroid artery (embryonic mouse) @@ -27297,8 +24398,7 @@ - inferior thyroid artery (embryonic mouse) - EMAPA:18623 + inferior thyroid artery (embryonic mouse) @@ -27317,8 +24417,7 @@ - superior thyroid artery (embryonic mouse) - EMAPA:18624 + superior thyroid artery (embryonic mouse) @@ -27337,8 +24436,7 @@ - sinus of Valsalva (embryonic mouse) - EMAPA:18625 + sinus of Valsalva (embryonic mouse) @@ -27357,8 +24455,7 @@ - trabecula carnea (embryonic mouse) - EMAPA:18626 + trabecula carnea (embryonic mouse) @@ -27377,8 +24474,7 @@ - aortic valve leaflet (embryonic mouse) - EMAPA:18627 + aortic valve leaflet (embryonic mouse) @@ -27397,8 +24493,7 @@ - mitral valve leaflet (embryonic mouse) - EMAPA:18628 + mitral valve leaflet (embryonic mouse) @@ -27417,8 +24512,7 @@ - pulmonary valve leaflets (embryonic mouse) - EMAPA:18629 + pulmonary valve leaflets (embryonic mouse) @@ -27437,8 +24531,7 @@ - tricuspid valve leaflet (embryonic mouse) - EMAPA:18630 + tricuspid valve leaflet (embryonic mouse) @@ -27457,8 +24550,7 @@ - venous system of brain (embryonic mouse) - EMAPA:18631 + venous system of brain (embryonic mouse) @@ -27477,8 +24569,7 @@ - hindbrain venous system (embryonic mouse) - EMAPA:18632 + hindbrain venous system (embryonic mouse) @@ -27497,8 +24588,7 @@ - venous dural sinus (embryonic mouse) - EMAPA:18634 + venous dural sinus (embryonic mouse) @@ -27517,30 +24607,7 @@ - inferior sagittal sinus (embryonic mouse) - EMAPA:18635 - - - - - - - - - - - - - - - - - - - - primitive superior sagittal sinus (embryonic mouse) - superior sagittal sinus (embryonic mouse) - EMAPA:18636 + inferior sagittal sinus (embryonic mouse) @@ -27559,8 +24626,7 @@ - transverse sinus (embryonic mouse) - EMAPA:18637 + transverse sinus (embryonic mouse) @@ -27579,8 +24645,7 @@ - jugular vein (embryonic mouse) - EMAPA:18638 + jugular vein (embryonic mouse) @@ -27599,8 +24664,7 @@ - internal thoracic vein (embryonic mouse) - EMAPA:18641 + internal thoracic vein (embryonic mouse) @@ -27619,8 +24683,7 @@ - inferior mesenteric vein (embryonic mouse) - EMAPA:18642 + inferior mesenteric vein (embryonic mouse) @@ -27639,8 +24702,7 @@ - superior mesenteric vein (embryonic mouse) - EMAPA:18643 + superior mesenteric vein (embryonic mouse) @@ -27659,8 +24721,7 @@ - ovarian vein (embryonic mouse) - EMAPA:18644 + ovarian vein (embryonic mouse) @@ -27679,8 +24740,7 @@ - pulmonary vein (embryonic mouse) - EMAPA:18645 + pulmonary vein (embryonic mouse) @@ -27699,8 +24759,7 @@ - superior vesical vein (embryonic mouse) - EMAPA:18646 + superior vesical vein (embryonic mouse) @@ -27719,8 +24778,7 @@ - testicular vein (embryonic mouse) - EMAPA:18647 + testicular vein (embryonic mouse) @@ -27739,8 +24797,7 @@ - thyroid vein (embryonic mouse) - EMAPA:18648 + thyroid vein (embryonic mouse) @@ -27759,8 +24816,7 @@ - hyoid bone (embryonic mouse) - EMAPA:18650 + hyoid bone (embryonic mouse) @@ -27779,8 +24835,7 @@ - hyoid bone greater horn (embryonic mouse) - EMAPA:18651 + hyoid bone greater horn (embryonic mouse) @@ -27799,8 +24854,7 @@ - hyoid bone lesser horn (embryonic mouse) - EMAPA:18652 + hyoid bone lesser horn (embryonic mouse) @@ -27819,8 +24873,7 @@ - hyoid bone body (embryonic mouse) - EMAPA:18653 + hyoid bone body (embryonic mouse) @@ -27839,8 +24892,7 @@ - frenulum of tongue (embryonic mouse) - EMAPA:18656 + frenulum of tongue (embryonic mouse) @@ -27859,8 +24911,7 @@ - greater omentum (embryonic mouse) - EMAPA:18660 + greater omentum (embryonic mouse) @@ -27879,8 +24930,7 @@ - duodenal papilla (embryonic mouse) - EMAPA:18662 + duodenal papilla (embryonic mouse) @@ -27899,8 +24949,7 @@ - sphincter of hepatopancreatic ampulla (embryonic mouse) - EMAPA:18663 + sphincter of hepatopancreatic ampulla (embryonic mouse) @@ -27919,8 +24968,7 @@ - mesentery of rectum (embryonic mouse) - EMAPA:18664 + mesentery of rectum (embryonic mouse) @@ -27939,8 +24987,7 @@ - jejunum (embryonic mouse) - EMAPA:18666 + jejunum (embryonic mouse) @@ -27959,8 +25006,7 @@ - jejunal epithelium (embryonic mouse) - EMAPA:18668 + jejunal epithelium (embryonic mouse) @@ -27979,8 +25025,7 @@ - mesentery of jejunum (embryonic mouse) - EMAPA:18670 + mesentery of jejunum (embryonic mouse) @@ -27999,8 +25044,7 @@ - midgut dorsal mesentery (embryonic mouse) - EMAPA:18671 + midgut dorsal mesentery (embryonic mouse) @@ -28019,8 +25063,7 @@ - kidney calyx (embryonic mouse) - EMAPA:18676 + kidney calyx (embryonic mouse) @@ -28039,8 +25082,7 @@ - major calyx (embryonic mouse) - EMAPA:18677 + major calyx (embryonic mouse) @@ -28059,8 +25101,7 @@ - minor calyx (embryonic mouse) - EMAPA:18678 + minor calyx (embryonic mouse) @@ -28079,8 +25120,7 @@ - kidney capsule (embryonic mouse) - EMAPA:18679 + kidney capsule (embryonic mouse) @@ -28099,8 +25139,7 @@ - female genital tubercle (embryonic mouse) - EMAPA:18680 + female genital tubercle (embryonic mouse) @@ -28119,8 +25158,7 @@ - vas deferens (embryonic mouse) - EMAPA:18681 + vas deferens (embryonic mouse) @@ -28139,8 +25177,7 @@ - penis (embryonic mouse) - EMAPA:18682 + penis (embryonic mouse) @@ -28159,8 +25196,7 @@ - seminiferous tubule of testis (embryonic mouse) - EMAPA:18685 + seminiferous tubule of testis (embryonic mouse) @@ -28179,8 +25215,7 @@ - Leydig cell region of testis (embryonic mouse) - EMAPA:18687 + Leydig cell region of testis (embryonic mouse) @@ -28199,8 +25234,7 @@ - male urethra (embryonic mouse) - EMAPA:18692 + male urethra (embryonic mouse) @@ -28219,8 +25253,7 @@ - cartilage of respiratory system (embryonic mouse) - EMAPA:18694 + cartilage of respiratory system (embryonic mouse) @@ -28239,8 +25272,7 @@ - arytenoid cartilage (embryonic mouse) - EMAPA:18695 + arytenoid cartilage (embryonic mouse) @@ -28259,8 +25291,7 @@ - cricoid cartilage (embryonic mouse) - EMAPA:18696 + cricoid cartilage (embryonic mouse) @@ -28279,8 +25310,7 @@ - laryngeal cartilage (embryonic mouse) - EMAPA:18697 + laryngeal cartilage (embryonic mouse) @@ -28299,8 +25329,7 @@ - thyroid cartilage (embryonic mouse) - EMAPA:18698 + thyroid cartilage (embryonic mouse) @@ -28319,8 +25348,7 @@ - trachea cartilage (embryonic mouse) - EMAPA:18699 + trachea cartilage (embryonic mouse) @@ -28339,8 +25367,7 @@ - basioccipital bone (embryonic mouse) - EMAPA:18705 + basioccipital bone (embryonic mouse) @@ -28359,8 +25386,7 @@ - basisphenoid bone (embryonic mouse) - EMAPA:18706 + basisphenoid bone (embryonic mouse) @@ -28379,8 +25405,7 @@ - carotid canal (embryonic mouse) - EMAPA:18707 + carotid canal (embryonic mouse) @@ -28399,8 +25424,7 @@ - exoccipital bone (embryonic mouse) - EMAPA:18708 + exoccipital bone (embryonic mouse) @@ -28419,8 +25443,7 @@ - foramen ovale of skull (embryonic mouse) - EMAPA:18711 + foramen ovale of skull (embryonic mouse) @@ -28439,8 +25462,7 @@ - foramen rotundum (embryonic mouse) - EMAPA:18712 + foramen rotundum (embryonic mouse) @@ -28459,8 +25481,7 @@ - jugular foramen (embryonic mouse) - EMAPA:18713 + jugular foramen (embryonic mouse) @@ -28479,8 +25500,7 @@ - temporomandibular joint primordium (embryonic mouse) - EMAPA:18714 + temporomandibular joint primordium (embryonic mouse) @@ -28499,8 +25519,7 @@ - tetrapod parietal bone (embryonic mouse) - EMAPA:18715 + tetrapod parietal bone (embryonic mouse) @@ -28519,8 +25538,7 @@ - optic foramen (embryonic mouse) - EMAPA:18716 + optic foramen (embryonic mouse) @@ -28539,8 +25557,7 @@ - orbital fissure (embryonic mouse) - EMAPA:18717 + orbital fissure (embryonic mouse) @@ -28559,8 +25576,7 @@ - superior orbital fissure (embryonic mouse) - EMAPA:18718 + superior orbital fissure (embryonic mouse) @@ -28579,8 +25595,7 @@ - orbitosphenoid (embryonic mouse) - EMAPA:18719 + orbitosphenoid (embryonic mouse) @@ -28599,8 +25614,7 @@ - clavicle bone (embryonic mouse) - EMAPA:18721 + clavicle bone (embryonic mouse) @@ -28619,8 +25633,7 @@ - scapula (embryonic mouse) - EMAPA:18722 + scapula (embryonic mouse) @@ -28639,8 +25652,7 @@ - manubrium of sternum (embryonic mouse) - EMAPA:18723 + manubrium of sternum (embryonic mouse) @@ -28659,30 +25671,7 @@ - sternebra (embryonic mouse) - EMAPA:18724 - - - - - - - - - - - - - - - - - - - - xiphoid cartilage (embryonic mouse) - xiphoid process (embryonic mouse) - EMAPA:18725 + sternebra (embryonic mouse) @@ -28701,8 +25690,7 @@ - ilium (embryonic mouse) - EMAPA:18726 + ilium (embryonic mouse) @@ -28721,8 +25709,7 @@ - ischium (embryonic mouse) - EMAPA:18727 + ischium (embryonic mouse) @@ -28741,8 +25728,7 @@ - pubis (embryonic mouse) - EMAPA:18728 + pubis (embryonic mouse) @@ -28761,8 +25747,7 @@ - lumen of jejunum (embryonic mouse) - EMAPA:18729 + lumen of jejunum (embryonic mouse) @@ -28781,8 +25766,7 @@ - nail of manual digit 1 (embryonic mouse) - EMAPA:18734 + nail of manual digit 1 (embryonic mouse) @@ -28801,8 +25785,7 @@ - nail of manual digit 2 (embryonic mouse) - EMAPA:18735 + nail of manual digit 2 (embryonic mouse) @@ -28821,8 +25804,7 @@ - nail of manual digit 3 (embryonic mouse) - EMAPA:18736 + nail of manual digit 3 (embryonic mouse) @@ -28841,8 +25823,7 @@ - nail of manual digit 4 (embryonic mouse) - EMAPA:18737 + nail of manual digit 4 (embryonic mouse) @@ -28861,8 +25842,7 @@ - nail of manual digit 5 (embryonic mouse) - EMAPA:18738 + nail of manual digit 5 (embryonic mouse) @@ -28881,8 +25861,7 @@ - nail of pedal digit 1 (embryonic mouse) - EMAPA:18739 + nail of pedal digit 1 (embryonic mouse) @@ -28901,8 +25880,7 @@ - nail of pedal digit 2 (embryonic mouse) - EMAPA:18740 + nail of pedal digit 2 (embryonic mouse) @@ -28921,8 +25899,7 @@ - nail of pedal digit 3 (embryonic mouse) - EMAPA:18741 + nail of pedal digit 3 (embryonic mouse) @@ -28941,8 +25918,7 @@ - nail of pedal digit 4 (embryonic mouse) - EMAPA:18742 + nail of pedal digit 4 (embryonic mouse) @@ -28961,8 +25937,7 @@ - nail of pedal digit 5 (embryonic mouse) - EMAPA:18743 + nail of pedal digit 5 (embryonic mouse) @@ -28981,8 +25956,7 @@ - axillary artery (embryonic mouse) - EMAPA:18749 + axillary artery (embryonic mouse) @@ -29001,8 +25975,7 @@ - epigastric artery (embryonic mouse) - EMAPA:18750 + epigastric artery (embryonic mouse) @@ -29021,8 +25994,7 @@ - inferior epigastric artery (embryonic mouse) - EMAPA:18751 + inferior epigastric artery (embryonic mouse) @@ -29041,8 +26013,7 @@ - superior epigastric artery (embryonic mouse) - EMAPA:18752 + superior epigastric artery (embryonic mouse) @@ -29061,8 +26032,7 @@ - intercostal artery (embryonic mouse) - EMAPA:18753 + intercostal artery (embryonic mouse) @@ -29081,8 +26051,7 @@ - greater palatine artery (embryonic mouse) - EMAPA:18754 + greater palatine artery (embryonic mouse) @@ -29101,8 +26070,7 @@ - axillary vein (embryonic mouse) - EMAPA:18758 + axillary vein (embryonic mouse) @@ -29121,8 +26089,7 @@ - epigastric vein (embryonic mouse) - EMAPA:18759 + epigastric vein (embryonic mouse) @@ -29141,8 +26108,7 @@ - inferior epigastric vein (embryonic mouse) - EMAPA:18760 + inferior epigastric vein (embryonic mouse) @@ -29161,8 +26127,7 @@ - superior epigastric vein (embryonic mouse) - EMAPA:18761 + superior epigastric vein (embryonic mouse) @@ -29181,8 +26146,7 @@ - intercostal vein (embryonic mouse) - EMAPA:18762 + intercostal vein (embryonic mouse) @@ -29201,8 +26165,7 @@ - inferior thyroid vein (embryonic mouse) - EMAPA:18763 + inferior thyroid vein (embryonic mouse) @@ -29221,8 +26184,7 @@ - superior thyroid vein (embryonic mouse) - EMAPA:18764 + superior thyroid vein (embryonic mouse) @@ -29241,8 +26203,7 @@ - hemolymphoid system (embryonic mouse) - EMAPA:18765 + hemolymphoid system (embryonic mouse) @@ -29261,8 +26222,7 @@ - hemolymphoid system gland (embryonic mouse) - EMAPA:18766 + hemolymphoid system gland (embryonic mouse) @@ -29281,8 +26241,7 @@ - spleen (embryonic mouse) - EMAPA:18767 + spleen (embryonic mouse) @@ -29301,8 +26260,7 @@ - thymus (embryonic mouse) - EMAPA:18768 + thymus (embryonic mouse) @@ -29321,8 +26279,7 @@ - strand of hair (embryonic mouse) - EMAPA:18769 + strand of hair (embryonic mouse) @@ -29341,8 +26298,7 @@ - bulb of hair follicle (embryonic mouse) - EMAPA:18770 + bulb of hair follicle (embryonic mouse) @@ -29361,8 +26317,7 @@ - hair follicle (embryonic mouse) - EMAPA:18771 + hair follicle (embryonic mouse) @@ -29381,8 +26336,7 @@ - hair root sheath (embryonic mouse) - EMAPA:18772 + hair root sheath (embryonic mouse) @@ -29401,8 +26355,7 @@ - pineal body (embryonic mouse) - EMAPA:18778 + pineal body (embryonic mouse) @@ -29421,8 +26374,7 @@ - temporal lobe (embryonic mouse) - EMAPA:18797 + temporal lobe (embryonic mouse) @@ -29441,8 +26393,7 @@ - axillary nerve (embryonic mouse) - EMAPA:18802 + axillary nerve (embryonic mouse) @@ -29461,8 +26412,7 @@ - cartilaginous otic capsule (embryonic mouse) - EMAPA:18803 + cartilaginous otic capsule (embryonic mouse) @@ -29481,8 +26431,7 @@ - Descemet's membrane (embryonic mouse) - EMAPA:18804 + Descemet's membrane (embryonic mouse) @@ -29501,8 +26450,7 @@ - smooth muscle of eye (embryonic mouse) - EMAPA:18807 + smooth muscle of eye (embryonic mouse) @@ -29521,8 +26469,7 @@ - intra-ocular muscle (embryonic mouse) - EMAPA:18808 + intra-ocular muscle (embryonic mouse) @@ -29541,8 +26488,7 @@ - sublingual gland (embryonic mouse) - EMAPA:18809 + sublingual gland (embryonic mouse) @@ -29561,8 +26507,7 @@ - epithelium of sublingual gland (embryonic mouse) - EMAPA:18810 + epithelium of sublingual gland (embryonic mouse) @@ -29581,8 +26526,7 @@ - mesenchyme of sublingual gland (embryonic mouse) - EMAPA:18811 + mesenchyme of sublingual gland (embryonic mouse) @@ -29601,8 +26545,7 @@ - submandibular gland (embryonic mouse) - EMAPA:18812 + submandibular gland (embryonic mouse) @@ -29621,8 +26564,7 @@ - epithelium of submandibular gland (embryonic mouse) - EMAPA:18813 + epithelium of submandibular gland (embryonic mouse) @@ -29641,8 +26583,7 @@ - mesenchyme of submandibular gland (embryonic mouse) - EMAPA:18814 + mesenchyme of submandibular gland (embryonic mouse) @@ -29661,8 +26602,7 @@ - gland of digestive tract (embryonic mouse) - EMAPA:18815 + gland of digestive tract (embryonic mouse) @@ -29681,8 +26621,7 @@ - anal canal epithelium (embryonic mouse) - EMAPA:18835 + anal canal epithelium (embryonic mouse) @@ -29701,8 +26640,7 @@ - lumen of anal canal (embryonic mouse) - EMAPA:18836 + lumen of anal canal (embryonic mouse) @@ -29721,8 +26659,7 @@ - duodenum (embryonic mouse) - EMAPA:18852 + duodenum (embryonic mouse) @@ -29741,8 +26678,7 @@ - filiform papilla (embryonic mouse) - EMAPA:18873 + filiform papilla (embryonic mouse) @@ -29761,8 +26697,7 @@ - perineal body smooth muscle muscle tissue (embryonic mouse) - EMAPA:18923 + perineal body smooth muscle muscle tissue (embryonic mouse) @@ -29781,8 +26716,7 @@ - colon (embryonic mouse) - EMAPA:18939 + colon (embryonic mouse) @@ -29801,8 +26735,7 @@ - colonic epithelium (embryonic mouse) - EMAPA:18941 + colonic epithelium (embryonic mouse) @@ -29821,8 +26754,7 @@ - mesentery of colon (embryonic mouse) - EMAPA:18942 + mesentery of colon (embryonic mouse) @@ -29841,8 +26773,7 @@ - lumen of colon (embryonic mouse) - EMAPA:18945 + lumen of colon (embryonic mouse) @@ -29861,8 +26792,7 @@ - secondary palate (embryonic mouse) - EMAPA:18948 + secondary palate (embryonic mouse) @@ -29881,8 +26811,7 @@ - soft palate (embryonic mouse) - EMAPA:18949 + soft palate (embryonic mouse) @@ -29901,8 +26830,7 @@ - epithelium of soft palate (embryonic mouse) - EMAPA:18950 + epithelium of soft palate (embryonic mouse) @@ -29921,8 +26849,7 @@ - mesenchyme of soft palate (embryonic mouse) - EMAPA:18951 + mesenchyme of soft palate (embryonic mouse) @@ -29941,8 +26868,7 @@ - hard palate (embryonic mouse) - EMAPA:18952 + hard palate (embryonic mouse) @@ -29961,8 +26887,7 @@ - epithelium of hard palate (embryonic mouse) - EMAPA:18953 + epithelium of hard palate (embryonic mouse) @@ -29981,8 +26906,7 @@ - mesenchyme of hard palate (embryonic mouse) - EMAPA:18954 + mesenchyme of hard palate (embryonic mouse) @@ -30001,30 +26925,7 @@ - sublingual caruncle (embryonic mouse) - EMAPA:18961 - - - - - - - - - - - - - - - - - - - - chordate pharyngeal muscle (embryonic mouse) - skeletal muscle tissue of pharynx (embryonic mouse) - EMAPA:18963 + sublingual caruncle (embryonic mouse) @@ -30043,8 +26944,7 @@ - constrictor muscle of pharynx (embryonic mouse) - EMAPA:18964 + constrictor muscle of pharynx (embryonic mouse) @@ -30063,8 +26963,7 @@ - inferior pharyngeal constrictor (embryonic mouse) - EMAPA:18965 + inferior pharyngeal constrictor (embryonic mouse) @@ -30083,8 +26982,7 @@ - superior pharyngeal constrictor (embryonic mouse) - EMAPA:18966 + superior pharyngeal constrictor (embryonic mouse) @@ -30103,8 +27001,7 @@ - gingiva of lower jaw (embryonic mouse) - EMAPA:18967 + gingiva of lower jaw (embryonic mouse) @@ -30123,8 +27020,7 @@ - gingiva of upper jaw (embryonic mouse) - EMAPA:18970 + gingiva of upper jaw (embryonic mouse) @@ -30143,8 +27039,7 @@ - epithelium of upper jaw (embryonic mouse) - EMAPA:18971 + epithelium of upper jaw (embryonic mouse) @@ -30163,8 +27058,7 @@ - renal cortex tubule (embryonic mouse) - EMAPA:18976 + renal cortex tubule (embryonic mouse) @@ -30183,30 +27077,7 @@ - vesicular appendage of epoophoron (embryonic mouse) - EMAPA:18978 - - - - - - - - - - - - - - - - - - - - fallopian tube (embryonic mouse) - oviduct (embryonic mouse) - EMAPA:18984 + vesicular appendage of epoophoron (embryonic mouse) @@ -30225,8 +27096,7 @@ - uterine horn (embryonic mouse) - EMAPA:18985 + uterine horn (embryonic mouse) @@ -30245,8 +27115,7 @@ - vagina (embryonic mouse) - EMAPA:18986 + vagina (embryonic mouse) @@ -30265,8 +27134,7 @@ - upper part of vagina (embryonic mouse) - EMAPA:18987 + upper part of vagina (embryonic mouse) @@ -30285,8 +27153,7 @@ - glans penis (embryonic mouse) - EMAPA:18988 + glans penis (embryonic mouse) @@ -30305,8 +27172,7 @@ - prepuce of penis (embryonic mouse) - EMAPA:18989 + prepuce of penis (embryonic mouse) @@ -30325,8 +27191,7 @@ - efferent duct (embryonic mouse) - EMAPA:18993 + efferent duct (embryonic mouse) @@ -30345,8 +27210,7 @@ - lower part of vagina (embryonic mouse) - EMAPA:18999 + lower part of vagina (embryonic mouse) @@ -30365,8 +27229,7 @@ - left lung bronchiole (embryonic mouse) - EMAPA:19000 + left lung bronchiole (embryonic mouse) @@ -30385,8 +27248,7 @@ - left lung alveolar system (embryonic mouse) - EMAPA:19001 + left lung alveolar system (embryonic mouse) @@ -30405,8 +27267,7 @@ - right lung accessory lobe bronchiole (embryonic mouse) - EMAPA:19002 + right lung accessory lobe bronchiole (embryonic mouse) @@ -30425,8 +27286,7 @@ - right lung lower lobe bronchiole (embryonic mouse) - EMAPA:19004 + right lung lower lobe bronchiole (embryonic mouse) @@ -30445,8 +27305,7 @@ - right lung upper lobe bronchiole (embryonic mouse) - EMAPA:19006 + right lung upper lobe bronchiole (embryonic mouse) @@ -30465,8 +27324,7 @@ - right lung middle lobe bronchiole (embryonic mouse) - EMAPA:19008 + right lung middle lobe bronchiole (embryonic mouse) @@ -30485,8 +27343,7 @@ - cruciate ligament of atlas (embryonic mouse) - EMAPA:19010 + cruciate ligament of atlas (embryonic mouse) @@ -30505,8 +27362,7 @@ - hypoglossal canal (embryonic mouse) - EMAPA:19012 + hypoglossal canal (embryonic mouse) @@ -30525,8 +27381,7 @@ - zygomatic process of temporal bone (embryonic mouse) - EMAPA:19015 + zygomatic process of temporal bone (embryonic mouse) @@ -30545,8 +27400,7 @@ - tetrapod frontal bone (embryonic mouse) - EMAPA:19016 + tetrapod frontal bone (embryonic mouse) @@ -30565,8 +27419,7 @@ - interparietal bone (embryonic mouse) - EMAPA:19017 + interparietal bone (embryonic mouse) @@ -30585,8 +27438,7 @@ - ethmoid bone (embryonic mouse) - EMAPA:19018 + ethmoid bone (embryonic mouse) @@ -30605,8 +27457,7 @@ - facial bone (embryonic mouse) - EMAPA:19019 + facial bone (embryonic mouse) @@ -30625,8 +27476,7 @@ - costovertebral joint (embryonic mouse) - EMAPA:19020 + costovertebral joint (embryonic mouse) @@ -30645,8 +27495,7 @@ - synovial cavity of hip joint (embryonic mouse) - EMAPA:19021 + synovial cavity of hip joint (embryonic mouse) @@ -30665,8 +27514,7 @@ - sclera (embryonic mouse) - EMAPA:19027 + sclera (embryonic mouse) @@ -30685,8 +27533,7 @@ - Peyer's patch (embryonic mouse) - EMAPA:19028 + Peyer's patch (embryonic mouse) @@ -30705,8 +27552,7 @@ - fibrous pericardium (embryonic mouse) - EMAPA:19029 + fibrous pericardium (embryonic mouse) @@ -30725,8 +27571,7 @@ - serous pericardium (embryonic mouse) - EMAPA:19030 + serous pericardium (embryonic mouse) @@ -30745,8 +27590,7 @@ - parietal serous pericardium (embryonic mouse) - EMAPA:19031 + parietal serous pericardium (embryonic mouse) @@ -30765,8 +27609,7 @@ - visceral serous pericardium (embryonic mouse) - EMAPA:19032 + visceral serous pericardium (embryonic mouse) @@ -30785,8 +27628,7 @@ - incisive canal (embryonic mouse) - EMAPA:19034 + incisive canal (embryonic mouse) @@ -30805,8 +27647,7 @@ - pineal gland stalk (embryonic mouse) - EMAPA:19036 + pineal gland stalk (embryonic mouse) @@ -30825,8 +27666,7 @@ - dentate gyrus of hippocampal formation (embryonic mouse) - EMAPA:19037 + dentate gyrus of hippocampal formation (embryonic mouse) @@ -30845,8 +27685,7 @@ - anterior commissure (embryonic mouse) - EMAPA:19038 + anterior commissure (embryonic mouse) @@ -30865,8 +27704,7 @@ - midbrain tectum (embryonic mouse) - EMAPA:19051 + midbrain tectum (embryonic mouse) @@ -30885,8 +27723,7 @@ - diencephalon subarachnoid space (embryonic mouse) - EMAPA:19053 + diencephalon subarachnoid space (embryonic mouse) @@ -30905,8 +27742,7 @@ - midbrain subarachnoid space (embryonic mouse) - EMAPA:19055 + midbrain subarachnoid space (embryonic mouse) @@ -30925,8 +27761,7 @@ - basal cistern (embryonic mouse) - EMAPA:19056 + basal cistern (embryonic mouse) @@ -30945,8 +27780,7 @@ - chiasmatic cistern (embryonic mouse) - EMAPA:19057 + chiasmatic cistern (embryonic mouse) @@ -30965,8 +27799,7 @@ - cavernous sinus (embryonic mouse) - EMAPA:19059 + cavernous sinus (embryonic mouse) @@ -30985,8 +27818,7 @@ - sigmoid sinus (embryonic mouse) - EMAPA:19060 + sigmoid sinus (embryonic mouse) @@ -31005,8 +27837,7 @@ - spiral organ of cochlea (embryonic mouse) - EMAPA:19061 + spiral organ of cochlea (embryonic mouse) @@ -31025,8 +27856,7 @@ - tympanic membrane (embryonic mouse) - EMAPA:19062 + tympanic membrane (embryonic mouse) @@ -31045,8 +27875,7 @@ - intermediate layer of tympanic membrane (embryonic mouse) - EMAPA:19063 + intermediate layer of tympanic membrane (embryonic mouse) @@ -31065,8 +27894,7 @@ - tympanic membrane epithelium (embryonic mouse) - EMAPA:19064 + tympanic membrane epithelium (embryonic mouse) @@ -31085,8 +27913,7 @@ - ciliary body (embryonic mouse) - EMAPA:19065 + ciliary body (embryonic mouse) @@ -31105,8 +27932,7 @@ - optic choroid (embryonic mouse) - EMAPA:19077 + optic choroid (embryonic mouse) @@ -31125,8 +27951,7 @@ - duodenal epithelium (embryonic mouse) - EMAPA:19078 + duodenal epithelium (embryonic mouse) @@ -31145,8 +27970,7 @@ - lumen of duodenum (embryonic mouse) - EMAPA:19080 + lumen of duodenum (embryonic mouse) @@ -31165,8 +27989,7 @@ - mesentery of duodenum (embryonic mouse) - EMAPA:19081 + mesentery of duodenum (embryonic mouse) @@ -31185,8 +28008,7 @@ - mesoduodenum (embryonic mouse) - EMAPA:19082 + mesoduodenum (embryonic mouse) @@ -31205,8 +28027,7 @@ - suspensory ligament of ovary (embryonic mouse) - EMAPA:19085 + suspensory ligament of ovary (embryonic mouse) @@ -31225,8 +28046,7 @@ - appendix epididymis (embryonic mouse) - EMAPA:19086 + appendix epididymis (embryonic mouse) @@ -31245,8 +28065,7 @@ - appendix testis (embryonic mouse) - EMAPA:19087 + appendix testis (embryonic mouse) @@ -31265,8 +28084,7 @@ - ejaculatory duct (embryonic mouse) - EMAPA:19088 + ejaculatory duct (embryonic mouse) @@ -31285,8 +28103,7 @@ - gubernaculum testis (embryonic mouse) - EMAPA:19089 + gubernaculum testis (embryonic mouse) @@ -31305,8 +28122,7 @@ - cartilage of main bronchus (embryonic mouse) - EMAPA:19092 + cartilage of main bronchus (embryonic mouse) @@ -31325,8 +28141,7 @@ - caudate-putamen (embryonic mouse) - EMAPA:19095 + caudate-putamen (embryonic mouse) @@ -31345,8 +28160,7 @@ - lumbar artery (embryonic mouse) - EMAPA:19096 + lumbar artery (embryonic mouse) @@ -31365,8 +28179,7 @@ - subcostal artery (embryonic mouse) - EMAPA:19097 + subcostal artery (embryonic mouse) @@ -31385,8 +28198,7 @@ - common hepatic duct (embryonic mouse) - EMAPA:19101 + common hepatic duct (embryonic mouse) @@ -31405,8 +28217,7 @@ - elbow joint (embryonic mouse) - EMAPA:19102 + elbow joint (embryonic mouse) @@ -31425,8 +28236,7 @@ - radius bone (embryonic mouse) - EMAPA:19103 + radius bone (embryonic mouse) @@ -31445,8 +28255,7 @@ - ulna (embryonic mouse) - EMAPA:19104 + ulna (embryonic mouse) @@ -31465,8 +28274,7 @@ - glenohumeral joint (embryonic mouse) - EMAPA:19105 + glenohumeral joint (embryonic mouse) @@ -31485,8 +28293,7 @@ - humerus (embryonic mouse) - EMAPA:19106 + humerus (embryonic mouse) @@ -31505,8 +28312,7 @@ - forelimb stylopod muscle (embryonic mouse) - EMAPA:19107 + forelimb stylopod muscle (embryonic mouse) @@ -31525,8 +28331,7 @@ - biceps brachii (embryonic mouse) - EMAPA:19108 + biceps brachii (embryonic mouse) @@ -31545,8 +28350,7 @@ - brachialis muscle (embryonic mouse) - EMAPA:19109 + brachialis muscle (embryonic mouse) @@ -31565,8 +28369,7 @@ - teres major muscle (embryonic mouse) - EMAPA:19110 + teres major muscle (embryonic mouse) @@ -31585,8 +28388,7 @@ - triceps brachii (embryonic mouse) - EMAPA:19111 + triceps brachii (embryonic mouse) @@ -31605,8 +28407,7 @@ - metacarpal bone of digit 1 (embryonic mouse) - EMAPA:19112 + metacarpal bone of digit 1 (embryonic mouse) @@ -31625,8 +28426,7 @@ - manual digit 1 phalanx (embryonic mouse) - EMAPA:19113 + manual digit 1 phalanx (embryonic mouse) @@ -31645,8 +28445,7 @@ - metacarpal bone of digit 2 (embryonic mouse) - EMAPA:19114 + metacarpal bone of digit 2 (embryonic mouse) @@ -31665,8 +28464,7 @@ - manual digit 2 phalanx (embryonic mouse) - EMAPA:19115 + manual digit 2 phalanx (embryonic mouse) @@ -31685,8 +28483,7 @@ - metacarpal bone of digit 3 (embryonic mouse) - EMAPA:19116 + metacarpal bone of digit 3 (embryonic mouse) @@ -31705,8 +28502,7 @@ - manual digit 3 phalanx (embryonic mouse) - EMAPA:19117 + manual digit 3 phalanx (embryonic mouse) @@ -31725,8 +28521,7 @@ - metacarpal bone of digit 4 (embryonic mouse) - EMAPA:19118 + metacarpal bone of digit 4 (embryonic mouse) @@ -31745,8 +28540,7 @@ - manual digit 4 phalanx (embryonic mouse) - EMAPA:19119 + manual digit 4 phalanx (embryonic mouse) @@ -31765,8 +28559,7 @@ - metacarpal bone of digit 5 (embryonic mouse) - EMAPA:19120 + metacarpal bone of digit 5 (embryonic mouse) @@ -31785,30 +28578,7 @@ - manual digit 5 phalanx (embryonic mouse) - EMAPA:19121 - - - - - - - - - - - - - - - - - - - - carpal region (embryonic mouse) - mesenchyme of carpal region (embryonic mouse) - EMAPA:19122 + manual digit 5 phalanx (embryonic mouse) @@ -31827,8 +28597,7 @@ - metatarsal bone of digit 1 (embryonic mouse) - EMAPA:19123 + metatarsal bone of digit 1 (embryonic mouse) @@ -31847,8 +28616,7 @@ - pedal digit 1 phalanx (embryonic mouse) - EMAPA:19124 + pedal digit 1 phalanx (embryonic mouse) @@ -31867,8 +28635,7 @@ - metatarsal bone of digit 2 (embryonic mouse) - EMAPA:19125 + metatarsal bone of digit 2 (embryonic mouse) @@ -31887,8 +28654,7 @@ - pedal digit 2 phalanx (embryonic mouse) - EMAPA:19126 + pedal digit 2 phalanx (embryonic mouse) @@ -31907,8 +28673,7 @@ - metatarsal bone of digit 3 (embryonic mouse) - EMAPA:19127 + metatarsal bone of digit 3 (embryonic mouse) @@ -31927,8 +28692,7 @@ - pedal digit 3 phalanx (embryonic mouse) - EMAPA:19128 + pedal digit 3 phalanx (embryonic mouse) @@ -31947,8 +28711,7 @@ - metatarsal bone of digit 4 (embryonic mouse) - EMAPA:19129 + metatarsal bone of digit 4 (embryonic mouse) @@ -31967,8 +28730,7 @@ - pedal digit 4 phalanx (embryonic mouse) - EMAPA:19130 + pedal digit 4 phalanx (embryonic mouse) @@ -31987,8 +28749,7 @@ - metatarsal bone of digit 5 (embryonic mouse) - EMAPA:19131 + metatarsal bone of digit 5 (embryonic mouse) @@ -32007,8 +28768,7 @@ - pedal digit 5 phalanx (embryonic mouse) - EMAPA:19132 + pedal digit 5 phalanx (embryonic mouse) @@ -32027,8 +28787,7 @@ - tarsal skeleton (embryonic mouse) - EMAPA:19133 + tarsal skeleton (embryonic mouse) @@ -32047,8 +28806,7 @@ - calcaneus (embryonic mouse) - EMAPA:19134 + calcaneus (embryonic mouse) @@ -32067,8 +28825,7 @@ - talus (embryonic mouse) - EMAPA:19135 + talus (embryonic mouse) @@ -32087,8 +28844,7 @@ - hip joint (embryonic mouse) - EMAPA:19136 + hip joint (embryonic mouse) @@ -32107,8 +28863,7 @@ - knee joint (embryonic mouse) - EMAPA:19137 + knee joint (embryonic mouse) @@ -32127,8 +28882,7 @@ - patella cartilage element (embryonic mouse) - EMAPA:19140 + patella cartilage element (embryonic mouse) @@ -32147,8 +28901,7 @@ - fibula (embryonic mouse) - EMAPA:19141 + fibula (embryonic mouse) @@ -32167,8 +28920,7 @@ - tibia (embryonic mouse) - EMAPA:19142 + tibia (embryonic mouse) @@ -32187,30 +28939,7 @@ - femur (embryonic mouse) - EMAPA:19143 - - - - - - - - - - - - - - - - - - - - hindlimb stylopod muscle (embryonic mouse) - muscle of leg (embryonic mouse) - EMAPA:19144 + femur (embryonic mouse) @@ -32229,8 +28958,7 @@ - muscle of posterior compartment of hindlimb stylopod (embryonic mouse) - EMAPA:19145 + muscle of posterior compartment of hindlimb stylopod (embryonic mouse) @@ -32249,8 +28977,7 @@ - quadriceps femoris (embryonic mouse) - EMAPA:19146 + quadriceps femoris (embryonic mouse) @@ -32269,8 +28996,7 @@ - lentiform nucleus (embryonic mouse) - EMAPA:19147 + lentiform nucleus (embryonic mouse) @@ -32289,8 +29015,7 @@ - orbital fat pad (embryonic mouse) - EMAPA:19152 + orbital fat pad (embryonic mouse) @@ -32309,8 +29034,7 @@ - Harderian gland (embryonic mouse) - EMAPA:19153 + Harderian gland (embryonic mouse) @@ -32329,8 +29053,7 @@ - iris (embryonic mouse) - EMAPA:19154 + iris (embryonic mouse) @@ -32349,8 +29072,7 @@ - inner nuclear layer of retina (embryonic mouse) - EMAPA:19155 + inner nuclear layer of retina (embryonic mouse) @@ -32369,8 +29091,7 @@ - outer nuclear layer of retina (embryonic mouse) - EMAPA:19157 + outer nuclear layer of retina (embryonic mouse) @@ -32389,8 +29110,7 @@ - pectinate line (embryonic mouse) - EMAPA:19159 + pectinate line (embryonic mouse) @@ -32409,8 +29129,7 @@ - coronary artery (embryonic mouse) - EMAPA:19160 + coronary artery (embryonic mouse) @@ -32429,8 +29148,7 @@ - mandibular canal (embryonic mouse) - EMAPA:19161 + mandibular canal (embryonic mouse) @@ -32449,8 +29167,7 @@ - gluteus medius (embryonic mouse) - EMAPA:19163 + gluteus medius (embryonic mouse) @@ -32469,8 +29186,7 @@ - iliacus muscle (embryonic mouse) - EMAPA:19164 + iliacus muscle (embryonic mouse) @@ -32489,8 +29205,7 @@ - levator ani muscle (embryonic mouse) - EMAPA:19165 + levator ani muscle (embryonic mouse) @@ -32509,8 +29224,7 @@ - adductor muscle of hip (embryonic mouse) - EMAPA:19166 + adductor muscle of hip (embryonic mouse) @@ -32529,30 +29243,7 @@ - lingual nerve (embryonic mouse) - EMAPA:19168 - - - - - - - - - - - - - - - - - - - - future glans clitoris (embryonic mouse) - glans clitoris (embryonic mouse) - EMAPA:19170 + lingual nerve (embryonic mouse) @@ -32571,8 +29262,7 @@ - female inguinal canal (embryonic mouse) - EMAPA:19171 + female inguinal canal (embryonic mouse) @@ -32591,8 +29281,7 @@ - female inguinal ring (embryonic mouse) - EMAPA:19172 + female inguinal ring (embryonic mouse) @@ -32611,8 +29300,7 @@ - female deep inguinal ring (embryonic mouse) - EMAPA:19173 + female deep inguinal ring (embryonic mouse) @@ -32631,8 +29319,7 @@ - female superficial inguinal ring (embryonic mouse) - EMAPA:19174 + female superficial inguinal ring (embryonic mouse) @@ -32651,30 +29338,7 @@ - tunica vaginalis testis (embryonic mouse) - EMAPA:19179 - - - - - - - - - - - - - - - - - - - - seminal vesicle (embryonic mouse) - vesicular gland (embryonic mouse) - EMAPA:19180 + tunica vaginalis testis (embryonic mouse) @@ -32693,8 +29357,7 @@ - laryngeal vocal fold (embryonic mouse) - EMAPA:19181 + laryngeal vocal fold (embryonic mouse) @@ -32713,8 +29376,7 @@ - left lung alveolus (embryonic mouse) - EMAPA:19182 + left lung alveolus (embryonic mouse) @@ -32733,8 +29395,7 @@ - left lung alveolar duct (embryonic mouse) - EMAPA:19183 + left lung alveolar duct (embryonic mouse) @@ -32753,8 +29414,7 @@ - smooth muscle of trachea (embryonic mouse) - EMAPA:19192 + smooth muscle of trachea (embryonic mouse) @@ -32773,8 +29433,7 @@ - trachealis (embryonic mouse) - EMAPA:19193 + trachealis (embryonic mouse) @@ -32793,8 +29452,7 @@ - craniopharyngeal canal (embryonic mouse) - EMAPA:19194 + craniopharyngeal canal (embryonic mouse) @@ -32813,8 +29471,7 @@ - pituitary fossa (embryonic mouse) - EMAPA:19195 + pituitary fossa (embryonic mouse) @@ -32833,8 +29490,7 @@ - temporomandibular joint (embryonic mouse) - EMAPA:19196 + temporomandibular joint (embryonic mouse) @@ -32853,8 +29509,7 @@ - tympanic ring (embryonic mouse) - EMAPA:19197 + tympanic ring (embryonic mouse) @@ -32873,8 +29528,7 @@ - anterior fontanel (embryonic mouse) - EMAPA:19199 + anterior fontanel (embryonic mouse) @@ -32893,8 +29547,7 @@ - posterior fontanelle (embryonic mouse) - EMAPA:19200 + posterior fontanelle (embryonic mouse) @@ -32913,8 +29566,7 @@ - cribriform plate (embryonic mouse) - EMAPA:19201 + cribriform plate (embryonic mouse) @@ -32933,8 +29585,7 @@ - nasal bone (embryonic mouse) - EMAPA:19202 + nasal bone (embryonic mouse) @@ -32953,8 +29604,7 @@ - sternoclavicular joint (embryonic mouse) - EMAPA:19203 + sternoclavicular joint (embryonic mouse) @@ -32973,30 +29623,7 @@ - forelimb joint (embryonic mouse) - EMAPA:19204 - - - - - - - - - - - - - - - - - - - - radio-carpal joint (embryonic mouse) - wrist joint (embryonic mouse) - EMAPA:19205 + forelimb joint (embryonic mouse) @@ -33015,8 +29642,7 @@ - radio-ulnar joint (embryonic mouse) - EMAPA:19206 + radio-ulnar joint (embryonic mouse) @@ -33035,8 +29661,7 @@ - nuchal ligament (embryonic mouse) - EMAPA:19207 + nuchal ligament (embryonic mouse) @@ -33055,8 +29680,7 @@ - brown adipose tissue (embryonic mouse) - EMAPA:19209 + brown adipose tissue (embryonic mouse) @@ -33075,8 +29699,7 @@ - epicranial aponeurosis (embryonic mouse) - EMAPA:19210 + epicranial aponeurosis (embryonic mouse) @@ -33095,8 +29718,7 @@ - carotid body (embryonic mouse) - EMAPA:19211 + carotid body (embryonic mouse) @@ -33115,8 +29737,7 @@ - celiac trunk (embryonic mouse) - EMAPA:19212 + celiac trunk (embryonic mouse) @@ -33135,8 +29756,7 @@ - facial artery (embryonic mouse) - EMAPA:19213 + facial artery (embryonic mouse) @@ -33155,8 +29775,7 @@ - median sacral artery (embryonic mouse) - EMAPA:19214 + median sacral artery (embryonic mouse) @@ -33175,8 +29794,7 @@ - musculo-phrenic artery (embryonic mouse) - EMAPA:19215 + musculo-phrenic artery (embryonic mouse) @@ -33195,8 +29813,7 @@ - splenic artery (embryonic mouse) - EMAPA:19216 + splenic artery (embryonic mouse) @@ -33215,8 +29832,7 @@ - accessory hemiazygos vein (embryonic mouse) - EMAPA:19217 + accessory hemiazygos vein (embryonic mouse) @@ -33235,8 +29851,7 @@ - deep dorsal vein of clitoris (embryonic mouse) - EMAPA:19218 + deep dorsal vein of clitoris (embryonic mouse) @@ -33255,8 +29870,7 @@ - deep dorsal vein of penis (embryonic mouse) - EMAPA:19219 + deep dorsal vein of penis (embryonic mouse) @@ -33275,8 +29889,7 @@ - facial vein (embryonic mouse) - EMAPA:19220 + facial vein (embryonic mouse) @@ -33295,8 +29908,7 @@ - hepatic vein (embryonic mouse) - EMAPA:19221 + hepatic vein (embryonic mouse) @@ -33315,8 +29927,7 @@ - musculo-phrenic vein (embryonic mouse) - EMAPA:19222 + musculo-phrenic vein (embryonic mouse) @@ -33335,8 +29946,7 @@ - sagittal suture (embryonic mouse) - EMAPA:19224 + sagittal suture (embryonic mouse) @@ -33355,8 +29965,7 @@ - coronal suture (embryonic mouse) - EMAPA:19225 + coronal suture (embryonic mouse) @@ -33375,8 +29984,7 @@ - frontal suture (embryonic mouse) - EMAPA:19226 + frontal suture (embryonic mouse) @@ -33395,8 +30003,7 @@ - lambdoid suture (embryonic mouse) - EMAPA:19227 + lambdoid suture (embryonic mouse) @@ -33415,8 +30022,7 @@ - squamoparietal suture (embryonic mouse) - EMAPA:19228 + squamoparietal suture (embryonic mouse) @@ -33435,8 +30041,7 @@ - sphenoidal fontanelle (embryonic mouse) - EMAPA:19229 + sphenoidal fontanelle (embryonic mouse) @@ -33455,8 +30060,7 @@ - inferior petrosal sinus (embryonic mouse) - EMAPA:19234 + inferior petrosal sinus (embryonic mouse) @@ -33475,8 +30079,7 @@ - arcuate ligament (embryonic mouse) - EMAPA:19236 + arcuate ligament (embryonic mouse) @@ -33495,8 +30098,7 @@ - medial arcuate ligament (embryonic mouse) - EMAPA:19237 + medial arcuate ligament (embryonic mouse) @@ -33515,8 +30117,7 @@ - lateral arcuate ligament (embryonic mouse) - EMAPA:19238 + lateral arcuate ligament (embryonic mouse) @@ -33535,8 +30136,7 @@ - round window of inner ear (embryonic mouse) - EMAPA:19239 + round window of inner ear (embryonic mouse) @@ -33555,30 +30155,7 @@ - oval window (embryonic mouse) - EMAPA:19240 - - - - - - - - - - - - - - - - - - - - inferior olivary complex (embryonic mouse) - inferior olivary nucleus (embryonic mouse) - EMAPA:19241 + oval window (embryonic mouse) @@ -33597,8 +30174,7 @@ - hyaloid artery (embryonic mouse) - EMAPA:19242 + hyaloid artery (embryonic mouse) @@ -33617,8 +30193,7 @@ - lacrimal drainage system (embryonic mouse) - EMAPA:19245 + lacrimal drainage system (embryonic mouse) @@ -33637,8 +30212,7 @@ - pharyngeal tubercle (embryonic mouse) - EMAPA:19250 + pharyngeal tubercle (embryonic mouse) @@ -33657,8 +30231,7 @@ - pyloric sphincter (embryonic mouse) - EMAPA:19251 + pyloric sphincter (embryonic mouse) @@ -33677,8 +30250,7 @@ - large intestine (embryonic mouse) - EMAPA:19252 + large intestine (embryonic mouse) @@ -33697,8 +30269,7 @@ - transversus thoracis (embryonic mouse) - EMAPA:19267 + transversus thoracis (embryonic mouse) @@ -33717,8 +30288,7 @@ - pre-tracheal muscle (embryonic mouse) - EMAPA:19269 + pre-tracheal muscle (embryonic mouse) @@ -33737,8 +30307,7 @@ - cricothyroid muscle (embryonic mouse) - EMAPA:19270 + cricothyroid muscle (embryonic mouse) @@ -33757,8 +30326,7 @@ - sternohyoid muscle (embryonic mouse) - EMAPA:19271 + sternohyoid muscle (embryonic mouse) @@ -33777,8 +30345,7 @@ - sternothyroid muscle (embryonic mouse) - EMAPA:19272 + sternothyroid muscle (embryonic mouse) @@ -33797,8 +30364,7 @@ - thyrohyoid muscle (embryonic mouse) - EMAPA:19273 + thyrohyoid muscle (embryonic mouse) @@ -33817,8 +30383,7 @@ - superior hypogastric nerve plexus (embryonic mouse) - EMAPA:19274 + superior hypogastric nerve plexus (embryonic mouse) @@ -33837,8 +30402,7 @@ - inferior hypogastric nerve plexus (embryonic mouse) - EMAPA:19275 + inferior hypogastric nerve plexus (embryonic mouse) @@ -33857,8 +30421,7 @@ - superior nasal meatus (embryonic mouse) - EMAPA:19276 + superior nasal meatus (embryonic mouse) @@ -33877,8 +30440,7 @@ - middle nasal meatus (embryonic mouse) - EMAPA:19277 + middle nasal meatus (embryonic mouse) @@ -33897,8 +30459,7 @@ - inferior nasal meatus (embryonic mouse) - EMAPA:19278 + inferior nasal meatus (embryonic mouse) @@ -33917,8 +30478,7 @@ - renal medulla (embryonic mouse) - EMAPA:19279 + renal medulla (embryonic mouse) @@ -33937,8 +30497,7 @@ - loop of Henle (embryonic mouse) - EMAPA:19280 + loop of Henle (embryonic mouse) @@ -33957,8 +30516,7 @@ - male reproductive gland (embryonic mouse) - EMAPA:19285 + male reproductive gland (embryonic mouse) @@ -33977,8 +30535,7 @@ - bulbo-urethral gland (embryonic mouse) - EMAPA:19286 + bulbo-urethral gland (embryonic mouse) @@ -33997,8 +30554,7 @@ - prostate gland (embryonic mouse) - EMAPA:19287 + prostate gland (embryonic mouse) @@ -34017,8 +30573,7 @@ - tunica albuginea of testis (embryonic mouse) - EMAPA:19289 + tunica albuginea of testis (embryonic mouse) @@ -34037,8 +30592,7 @@ - epididymis (embryonic mouse) - EMAPA:19290 + epididymis (embryonic mouse) @@ -34057,8 +30611,7 @@ - caput epididymis (embryonic mouse) - EMAPA:19291 + caput epididymis (embryonic mouse) @@ -34077,8 +30630,7 @@ - cauda epididymis (embryonic mouse) - EMAPA:19292 + cauda epididymis (embryonic mouse) @@ -34097,8 +30649,7 @@ - corpus epididymis (embryonic mouse) - EMAPA:19293 + corpus epididymis (embryonic mouse) @@ -34117,8 +30668,7 @@ - crus of penis (embryonic mouse) - EMAPA:19294 + crus of penis (embryonic mouse) @@ -34137,8 +30687,7 @@ - scrotum (embryonic mouse) - EMAPA:19296 + scrotum (embryonic mouse) @@ -34157,8 +30706,7 @@ - sacro-iliac joint (embryonic mouse) - EMAPA:19300 + sacro-iliac joint (embryonic mouse) @@ -34177,8 +30725,7 @@ - metacarpophalangeal joint (embryonic mouse) - EMAPA:19302 + metacarpophalangeal joint (embryonic mouse) @@ -34197,8 +30744,7 @@ - hilum of spleen (embryonic mouse) - EMAPA:19303 + hilum of spleen (embryonic mouse) @@ -34217,8 +30763,7 @@ - medulla of thymus (embryonic mouse) - EMAPA:19305 + medulla of thymus (embryonic mouse) @@ -34237,8 +30782,7 @@ - capsule of thymus (embryonic mouse) - EMAPA:19306 + capsule of thymus (embryonic mouse) @@ -34257,8 +30801,7 @@ - thyroid follicle (embryonic mouse) - EMAPA:19307 + thyroid follicle (embryonic mouse) @@ -34277,8 +30820,7 @@ - thyroid follicle (embryonic mouse) - EMAPA:19308 + thyroid follicle (embryonic mouse) @@ -34297,8 +30839,7 @@ - superior cerebellar artery (embryonic mouse) - EMAPA:19309 + superior cerebellar artery (embryonic mouse) @@ -34317,8 +30858,7 @@ - thoracic duct (embryonic mouse) - EMAPA:19310 + thoracic duct (embryonic mouse) @@ -34337,8 +30877,7 @@ - great cerebral vein (embryonic mouse) - EMAPA:19311 + great cerebral vein (embryonic mouse) @@ -34357,8 +30896,7 @@ - lingual vein (embryonic mouse) - EMAPA:19312 + lingual vein (embryonic mouse) @@ -34377,8 +30915,7 @@ - ophthalmic vein (embryonic mouse) - EMAPA:19313 + ophthalmic vein (embryonic mouse) @@ -34397,8 +30934,7 @@ - superficial temporal vein (embryonic mouse) - EMAPA:19315 + superficial temporal vein (embryonic mouse) @@ -34417,8 +30953,7 @@ - distal radio-ulnar joint (embryonic mouse) - EMAPA:19316 + distal radio-ulnar joint (embryonic mouse) @@ -34437,30 +30972,7 @@ - proximal radio-ulnar joint (embryonic mouse) - EMAPA:19317 - - - - - - - - - - - - - - - - - - - - hindlimb zeugopod muscle (embryonic mouse) - muscle of leg (embryonic mouse) - EMAPA:19318 + proximal radio-ulnar joint (embryonic mouse) @@ -34479,8 +30991,7 @@ - flexor digitorum profundus (embryonic mouse) - EMAPA:19319 + flexor digitorum profundus (embryonic mouse) @@ -34499,8 +31010,7 @@ - carotid sinus (embryonic mouse) - EMAPA:19320 + carotid sinus (embryonic mouse) @@ -34519,8 +31029,7 @@ - celiac ganglion (embryonic mouse) - EMAPA:19321 + celiac ganglion (embryonic mouse) @@ -34539,8 +31048,7 @@ - anular ligament of radius (embryonic mouse) - EMAPA:19322 + anular ligament of radius (embryonic mouse) @@ -34559,8 +31067,7 @@ - intervertebral disk of cervical vertebra (embryonic mouse) - EMAPA:19415 + intervertebral disk of cervical vertebra (embryonic mouse) @@ -34579,8 +31086,7 @@ - intervertebral disk of atlas (embryonic mouse) - EMAPA:19416 + intervertebral disk of atlas (embryonic mouse) @@ -34599,8 +31105,7 @@ - intervertebral disk of axis (embryonic mouse) - EMAPA:19419 + intervertebral disk of axis (embryonic mouse) @@ -34619,8 +31124,7 @@ - intervertebral disk of third cervical vertebra (embryonic mouse) - EMAPA:19422 + intervertebral disk of third cervical vertebra (embryonic mouse) @@ -34639,8 +31143,7 @@ - intervertebral disk of fourth cervical vertebra (embryonic mouse) - EMAPA:19425 + intervertebral disk of fourth cervical vertebra (embryonic mouse) @@ -34659,8 +31162,7 @@ - intervertebral disk of fifth cervical vertebra (embryonic mouse) - EMAPA:19428 + intervertebral disk of fifth cervical vertebra (embryonic mouse) @@ -34679,8 +31181,7 @@ - vertebral bone 1 (embryonic mouse) - EMAPA:19431 + vertebral bone 1 (embryonic mouse) @@ -34699,8 +31200,7 @@ - vertebral bone 2 (embryonic mouse) - EMAPA:19432 + vertebral bone 2 (embryonic mouse) @@ -34719,8 +31219,7 @@ - mammalian cervical vertebra 3 (embryonic mouse) - EMAPA:19433 + mammalian cervical vertebra 3 (embryonic mouse) @@ -34739,8 +31238,7 @@ - mammalian cervical vertebra 4 (embryonic mouse) - EMAPA:19434 + mammalian cervical vertebra 4 (embryonic mouse) @@ -34759,8 +31257,7 @@ - mammalian cervical vertebra 5 (embryonic mouse) - EMAPA:19435 + mammalian cervical vertebra 5 (embryonic mouse) @@ -34779,8 +31276,7 @@ - intervertebral disk of sixth cervical vertebra (embryonic mouse) - EMAPA:19460 + intervertebral disk of sixth cervical vertebra (embryonic mouse) @@ -34799,8 +31295,7 @@ - intervertebral disk of seventh cervical vertebra (embryonic mouse) - EMAPA:19463 + intervertebral disk of seventh cervical vertebra (embryonic mouse) @@ -34819,8 +31314,7 @@ - mammalian cervical vertebra 6 (embryonic mouse) - EMAPA:19466 + mammalian cervical vertebra 6 (embryonic mouse) @@ -34839,8 +31333,7 @@ - mammalian cervical vertebra 7 (embryonic mouse) - EMAPA:19467 + mammalian cervical vertebra 7 (embryonic mouse) @@ -34859,8 +31352,7 @@ - intervertebral disk of lumbar vertebra (embryonic mouse) - EMAPA:19468 + intervertebral disk of lumbar vertebra (embryonic mouse) @@ -34879,8 +31371,7 @@ - lumbar vertebra 1 (embryonic mouse) - EMAPA:19472 + lumbar vertebra 1 (embryonic mouse) @@ -34899,8 +31390,7 @@ - intervertebral disk of thoracic vertebra (embryonic mouse) - EMAPA:19489 + intervertebral disk of thoracic vertebra (embryonic mouse) @@ -34919,8 +31409,7 @@ - rib 1 (embryonic mouse) - EMAPA:19529 + rib 1 (embryonic mouse) @@ -34939,8 +31428,7 @@ - rib 2 (embryonic mouse) - EMAPA:19530 + rib 2 (embryonic mouse) @@ -34959,8 +31447,7 @@ - rib 3 (embryonic mouse) - EMAPA:19531 + rib 3 (embryonic mouse) @@ -34979,8 +31466,7 @@ - rib 4 (embryonic mouse) - EMAPA:19532 + rib 4 (embryonic mouse) @@ -34999,8 +31485,7 @@ - rib 5 (embryonic mouse) - EMAPA:19533 + rib 5 (embryonic mouse) @@ -35019,8 +31504,7 @@ - rib 6 (embryonic mouse) - EMAPA:19534 + rib 6 (embryonic mouse) @@ -35039,8 +31523,7 @@ - rib 7 (embryonic mouse) - EMAPA:19535 + rib 7 (embryonic mouse) @@ -35059,8 +31542,7 @@ - rib 8 (embryonic mouse) - EMAPA:19536 + rib 8 (embryonic mouse) @@ -35079,8 +31561,7 @@ - rib 9 (embryonic mouse) - EMAPA:19537 + rib 9 (embryonic mouse) @@ -35099,8 +31580,7 @@ - rib 10 (embryonic mouse) - EMAPA:19538 + rib 10 (embryonic mouse) @@ -35119,8 +31599,7 @@ - rib 11 (embryonic mouse) - EMAPA:19539 + rib 11 (embryonic mouse) @@ -35139,8 +31618,7 @@ - rib 12 (embryonic mouse) - EMAPA:19540 + rib 12 (embryonic mouse) @@ -35159,8 +31637,7 @@ - thoracic vertebra 1 (embryonic mouse) - EMAPA:19542 + thoracic vertebra 1 (embryonic mouse) @@ -35179,8 +31656,7 @@ - thoracic vertebra 2 (embryonic mouse) - EMAPA:19543 + thoracic vertebra 2 (embryonic mouse) @@ -35199,8 +31675,7 @@ - thoracic vertebra 3 (embryonic mouse) - EMAPA:19544 + thoracic vertebra 3 (embryonic mouse) @@ -35219,8 +31694,7 @@ - thoracic vertebra 4 (embryonic mouse) - EMAPA:19545 + thoracic vertebra 4 (embryonic mouse) @@ -35239,8 +31713,7 @@ - thoracic vertebra 5 (embryonic mouse) - EMAPA:19546 + thoracic vertebra 5 (embryonic mouse) @@ -35259,8 +31732,7 @@ - thoracic vertebra 6 (embryonic mouse) - EMAPA:19547 + thoracic vertebra 6 (embryonic mouse) @@ -35279,8 +31751,7 @@ - thoracic vertebra 7 (embryonic mouse) - EMAPA:19548 + thoracic vertebra 7 (embryonic mouse) @@ -35299,8 +31770,7 @@ - thoracic vertebra 8 (embryonic mouse) - EMAPA:19549 + thoracic vertebra 8 (embryonic mouse) @@ -35319,8 +31789,7 @@ - thoracic vertebra 9 (embryonic mouse) - EMAPA:19550 + thoracic vertebra 9 (embryonic mouse) @@ -35339,8 +31808,7 @@ - thoracic vertebra 10 (embryonic mouse) - EMAPA:19551 + thoracic vertebra 10 (embryonic mouse) @@ -35359,8 +31827,7 @@ - thoracic vertebra 11 (embryonic mouse) - EMAPA:19552 + thoracic vertebra 11 (embryonic mouse) @@ -35379,8 +31846,7 @@ - thoracic vertebra 12 (embryonic mouse) - EMAPA:19553 + thoracic vertebra 12 (embryonic mouse) @@ -35399,8 +31865,7 @@ - lumbar vertebra 2 (embryonic mouse) - EMAPA:19570 + lumbar vertebra 2 (embryonic mouse) @@ -35419,8 +31884,7 @@ - lumbar vertebra 3 (embryonic mouse) - EMAPA:19571 + lumbar vertebra 3 (embryonic mouse) @@ -35439,8 +31903,7 @@ - lumbar vertebra 4 (embryonic mouse) - EMAPA:19572 + lumbar vertebra 4 (embryonic mouse) @@ -35459,8 +31922,7 @@ - lumbar vertebra 5 (embryonic mouse) - EMAPA:19573 + lumbar vertebra 5 (embryonic mouse) @@ -35479,8 +31941,7 @@ - intervertebral disk of sacral vertebra (embryonic mouse) - EMAPA:19575 + intervertebral disk of sacral vertebra (embryonic mouse) @@ -35499,8 +31960,7 @@ - sacral vertebra 1 (embryonic mouse) - EMAPA:19588 + sacral vertebra 1 (embryonic mouse) @@ -35519,8 +31979,7 @@ - sacral vertebra 2 (embryonic mouse) - EMAPA:19589 + sacral vertebra 2 (embryonic mouse) @@ -35539,8 +31998,7 @@ - sacral vertebra 3 (embryonic mouse) - EMAPA:19590 + sacral vertebra 3 (embryonic mouse) @@ -35559,8 +32017,7 @@ - sacral vertebra 4 (embryonic mouse) - EMAPA:19591 + sacral vertebra 4 (embryonic mouse) @@ -35579,8 +32036,7 @@ - tail intervertebral disc (embryonic mouse) - EMAPA:19592 + tail intervertebral disc (embryonic mouse) @@ -35599,8 +32055,7 @@ - pleuroperitoneal canal lumen (embryonic mouse) - EMAPA:25034 + pleuroperitoneal canal lumen (embryonic mouse) @@ -35619,30 +32074,7 @@ - future central tendon (embryonic mouse) - EMAPA:25035 - - - - - - - - - - - - - - - - - - - - Rathkes pouch epithelium (embryonic mouse) - anatomical wall (embryonic mouse) - EMAPA:25036 + future central tendon (embryonic mouse) @@ -35661,8 +32093,7 @@ - lumen of Rathke's pouch (embryonic mouse) - EMAPA:25037 + lumen of Rathke's pouch (embryonic mouse) @@ -35681,8 +32112,7 @@ - proctodeum (embryonic mouse) - EMAPA:25038 + proctodeum (embryonic mouse) @@ -35701,8 +32131,7 @@ - anal membrane ectodermal component (embryonic mouse) - EMAPA:25040 + anal membrane ectodermal component (embryonic mouse) @@ -35721,8 +32150,7 @@ - lumen of central canal of spinal cord (embryonic mouse) - EMAPA:25042 + lumen of central canal of spinal cord (embryonic mouse) @@ -35741,8 +32169,7 @@ - left dome of diaphragm (embryonic mouse) - EMAPA:25047 + left dome of diaphragm (embryonic mouse) @@ -35761,8 +32188,7 @@ - right dome of diaphragm (embryonic mouse) - EMAPA:25048 + right dome of diaphragm (embryonic mouse) @@ -35781,8 +32207,7 @@ - proximal head of humerus (embryonic mouse) - EMAPA:25050 + proximal head of humerus (embryonic mouse) @@ -35801,8 +32226,7 @@ - humerus diaphysis (embryonic mouse) - EMAPA:25051 + humerus diaphysis (embryonic mouse) @@ -35821,8 +32245,7 @@ - deltopectoral crest (embryonic mouse) - EMAPA:25052 + deltopectoral crest (embryonic mouse) @@ -35841,8 +32264,7 @@ - tendon of biceps brachii (embryonic mouse) - EMAPA:25053 + tendon of biceps brachii (embryonic mouse) @@ -35861,8 +32283,7 @@ - long head of biceps brachii (embryonic mouse) - EMAPA:25054 + long head of biceps brachii (embryonic mouse) @@ -35881,8 +32302,7 @@ - short head of biceps brachii (embryonic mouse) - EMAPA:25055 + short head of biceps brachii (embryonic mouse) @@ -35901,8 +32321,7 @@ - carpal bone (embryonic mouse) - EMAPA:25056 + carpal bone (embryonic mouse) @@ -35921,8 +32340,7 @@ - metacarpophalangeal joint of manual digit 1 (embryonic mouse) - EMAPA:25057 + metacarpophalangeal joint of manual digit 1 (embryonic mouse) @@ -35941,8 +32359,7 @@ - interphalangeal joint of manual digit 1 (embryonic mouse) - EMAPA:25058 + interphalangeal joint of manual digit 1 (embryonic mouse) @@ -35961,8 +32378,7 @@ - metacarpophalangeal joint of manual digit 2 (embryonic mouse) - EMAPA:25060 + metacarpophalangeal joint of manual digit 2 (embryonic mouse) @@ -35981,8 +32397,7 @@ - interphalangeal joint of manual digit 2 (embryonic mouse) - EMAPA:25061 + interphalangeal joint of manual digit 2 (embryonic mouse) @@ -36001,8 +32416,7 @@ - metacarpophalangeal joint of manual digit 3 (embryonic mouse) - EMAPA:25063 + metacarpophalangeal joint of manual digit 3 (embryonic mouse) @@ -36021,8 +32435,7 @@ - interphalangeal joint of manual digit 3 (embryonic mouse) - EMAPA:25064 + interphalangeal joint of manual digit 3 (embryonic mouse) @@ -36041,8 +32454,7 @@ - metacarpophalangeal joint of manual digit 4 (embryonic mouse) - EMAPA:25066 + metacarpophalangeal joint of manual digit 4 (embryonic mouse) @@ -36061,8 +32473,7 @@ - interphalangeal joint of manual digit 4 (embryonic mouse) - EMAPA:25067 + interphalangeal joint of manual digit 4 (embryonic mouse) @@ -36081,8 +32492,7 @@ - metacarpophalangeal joint of manual digit 5 (embryonic mouse) - EMAPA:25069 + metacarpophalangeal joint of manual digit 5 (embryonic mouse) @@ -36101,8 +32511,7 @@ - interphalangeal joint of manual digit 5 (embryonic mouse) - EMAPA:25070 + interphalangeal joint of manual digit 5 (embryonic mouse) @@ -36121,8 +32530,7 @@ - tarsal bone (embryonic mouse) - EMAPA:25072 + tarsal bone (embryonic mouse) @@ -36141,8 +32549,7 @@ - cephalic vein (embryonic mouse) - EMAPA:25075 + cephalic vein (embryonic mouse) @@ -36161,8 +32568,7 @@ - cartilage of nasal septum (embryonic mouse) - EMAPA:25091 + cartilage of nasal septum (embryonic mouse) @@ -36181,8 +32587,7 @@ - turbinate bone (embryonic mouse) - EMAPA:25093 + turbinate bone (embryonic mouse) @@ -36201,8 +32606,7 @@ - oropharynx (embryonic mouse) - EMAPA:25094 + oropharynx (embryonic mouse) @@ -36221,8 +32625,7 @@ - oropharyngeal gland (embryonic mouse) - EMAPA:25095 + oropharyngeal gland (embryonic mouse) @@ -36241,8 +32644,7 @@ - gland of tongue (embryonic mouse) - EMAPA:25097 + gland of tongue (embryonic mouse) @@ -36261,8 +32663,7 @@ - alveolar canal (embryonic mouse) - EMAPA:25099 + alveolar canal (embryonic mouse) @@ -36281,8 +32682,7 @@ - mandibular ramus (embryonic mouse) - EMAPA:25100 + mandibular ramus (embryonic mouse) @@ -36301,8 +32701,7 @@ - neural spine (embryonic mouse) - EMAPA:25107 + neural spine (embryonic mouse) @@ -36321,8 +32720,7 @@ - jugal bone (embryonic mouse) - EMAPA:25111 + jugal bone (embryonic mouse) @@ -36341,8 +32739,7 @@ - occipital bone (embryonic mouse) - EMAPA:25112 + occipital bone (embryonic mouse) @@ -36361,8 +32758,7 @@ - squamous part of occipital bone (embryonic mouse) - EMAPA:25113 + squamous part of occipital bone (embryonic mouse) @@ -36381,8 +32777,7 @@ - perpendicular plate of ethmoid (embryonic mouse) - EMAPA:25114 + perpendicular plate of ethmoid (embryonic mouse) @@ -36401,8 +32796,7 @@ - acromion (embryonic mouse) - EMAPA:25119 + acromion (embryonic mouse) @@ -36421,8 +32815,7 @@ - coracoid process of scapula (embryonic mouse) - EMAPA:25121 + coracoid process of scapula (embryonic mouse) @@ -36441,8 +32834,7 @@ - glenoid fossa (embryonic mouse) - EMAPA:25122 + glenoid fossa (embryonic mouse) @@ -36461,8 +32853,7 @@ - scapula spine (embryonic mouse) - EMAPA:25123 + scapula spine (embryonic mouse) @@ -36481,8 +32872,7 @@ - border of scapula (embryonic mouse) - EMAPA:25124 + border of scapula (embryonic mouse) @@ -36501,8 +32891,7 @@ - angle of scapula (embryonic mouse) - EMAPA:25125 + angle of scapula (embryonic mouse) @@ -36521,8 +32910,7 @@ - lateral border of scapula (embryonic mouse) - EMAPA:25126 + lateral border of scapula (embryonic mouse) @@ -36541,8 +32929,7 @@ - medial border of scapula (embryonic mouse) - EMAPA:25127 + medial border of scapula (embryonic mouse) @@ -36561,8 +32948,7 @@ - inferior angle of scapula (embryonic mouse) - EMAPA:25128 + inferior angle of scapula (embryonic mouse) @@ -36581,8 +32967,7 @@ - superior angle of scapula (embryonic mouse) - EMAPA:25129 + superior angle of scapula (embryonic mouse) @@ -36601,8 +32986,7 @@ - prevertebral muscle of neck (embryonic mouse) - EMAPA:25130 + prevertebral muscle of neck (embryonic mouse) @@ -36621,8 +33005,7 @@ - longus capitis muscle (embryonic mouse) - EMAPA:25131 + longus capitis muscle (embryonic mouse) @@ -36641,8 +33024,7 @@ - cranial or facial muscle (embryonic mouse) - EMAPA:25133 + cranial or facial muscle (embryonic mouse) @@ -36661,8 +33043,7 @@ - digastric muscle group (embryonic mouse) - EMAPA:25134 + digastric muscle group (embryonic mouse) @@ -36681,8 +33062,7 @@ - masseter muscle (embryonic mouse) - EMAPA:25135 + masseter muscle (embryonic mouse) @@ -36701,8 +33081,7 @@ - mylohyoid muscle (embryonic mouse) - EMAPA:25136 + mylohyoid muscle (embryonic mouse) @@ -36721,8 +33100,7 @@ - sternocleidomastoid (embryonic mouse) - EMAPA:25137 + sternocleidomastoid (embryonic mouse) @@ -36741,8 +33119,7 @@ - temporalis muscle (embryonic mouse) - EMAPA:25138 + temporalis muscle (embryonic mouse) @@ -36761,8 +33138,7 @@ - pterygoid muscle (embryonic mouse) - EMAPA:25139 + pterygoid muscle (embryonic mouse) @@ -36781,8 +33157,7 @@ - lateral pterygoid muscle (embryonic mouse) - EMAPA:25140 + lateral pterygoid muscle (embryonic mouse) @@ -36801,8 +33176,7 @@ - medial pterygoid muscle (embryonic mouse) - EMAPA:25141 + medial pterygoid muscle (embryonic mouse) @@ -36821,8 +33195,7 @@ - first cervical dorsal root ganglion (embryonic mouse) - EMAPA:25144 + first cervical dorsal root ganglion (embryonic mouse) @@ -36841,8 +33214,7 @@ - segmental spinal nerve (embryonic mouse) - EMAPA:25149 + segmental spinal nerve (embryonic mouse) @@ -36861,8 +33233,7 @@ - second cervical dorsal root ganglion (embryonic mouse) - EMAPA:25155 + second cervical dorsal root ganglion (embryonic mouse) @@ -36881,8 +33252,7 @@ - third cervical dorsal root ganglion (embryonic mouse) - EMAPA:25156 + third cervical dorsal root ganglion (embryonic mouse) @@ -36901,8 +33271,7 @@ - fourth cervical dorsal root ganglion (embryonic mouse) - EMAPA:25157 + fourth cervical dorsal root ganglion (embryonic mouse) @@ -36921,8 +33290,7 @@ - fifth cervical dorsal root ganglion (embryonic mouse) - EMAPA:25158 + fifth cervical dorsal root ganglion (embryonic mouse) @@ -36941,8 +33309,7 @@ - sixth cervical dorsal root ganglion (embryonic mouse) - EMAPA:25159 + sixth cervical dorsal root ganglion (embryonic mouse) @@ -36961,8 +33328,7 @@ - seventh cervical dorsal root ganglion (embryonic mouse) - EMAPA:25160 + seventh cervical dorsal root ganglion (embryonic mouse) @@ -36981,8 +33347,7 @@ - first lumbar dorsal root ganglion (embryonic mouse) - EMAPA:25164 + first lumbar dorsal root ganglion (embryonic mouse) @@ -37001,8 +33366,7 @@ - second lumbar dorsal root ganglion (embryonic mouse) - EMAPA:25165 + second lumbar dorsal root ganglion (embryonic mouse) @@ -37021,8 +33385,7 @@ - third lumbar dorsal root ganglion (embryonic mouse) - EMAPA:25166 + third lumbar dorsal root ganglion (embryonic mouse) @@ -37041,8 +33404,7 @@ - fourth lumbar dorsal root ganglion (embryonic mouse) - EMAPA:25167 + fourth lumbar dorsal root ganglion (embryonic mouse) @@ -37061,8 +33423,7 @@ - fifth lumbar dorsal root ganglion (embryonic mouse) - EMAPA:25168 + fifth lumbar dorsal root ganglion (embryonic mouse) @@ -37081,8 +33442,7 @@ - first sacral dorsal root ganglion (embryonic mouse) - EMAPA:25170 + first sacral dorsal root ganglion (embryonic mouse) @@ -37101,8 +33461,7 @@ - second sacral dorsal root ganglion (embryonic mouse) - EMAPA:25171 + second sacral dorsal root ganglion (embryonic mouse) @@ -37121,8 +33480,7 @@ - third sacral dorsal root ganglion (embryonic mouse) - EMAPA:25172 + third sacral dorsal root ganglion (embryonic mouse) @@ -37141,8 +33499,7 @@ - fourth sacral spinal ganglion (embryonic mouse) - EMAPA:25173 + fourth sacral spinal ganglion (embryonic mouse) @@ -37161,8 +33518,7 @@ - first thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25174 + first thoracic dorsal root ganglion (embryonic mouse) @@ -37181,8 +33537,7 @@ - second thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25175 + second thoracic dorsal root ganglion (embryonic mouse) @@ -37201,8 +33556,7 @@ - third thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25176 + third thoracic dorsal root ganglion (embryonic mouse) @@ -37221,8 +33575,7 @@ - fourth thoracic spinal ganglion (embryonic mouse) - EMAPA:25177 + fourth thoracic spinal ganglion (embryonic mouse) @@ -37241,8 +33594,7 @@ - sixth thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25178 + sixth thoracic dorsal root ganglion (embryonic mouse) @@ -37261,8 +33613,7 @@ - fifth thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25179 + fifth thoracic dorsal root ganglion (embryonic mouse) @@ -37281,8 +33632,7 @@ - seventh thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25180 + seventh thoracic dorsal root ganglion (embryonic mouse) @@ -37301,8 +33651,7 @@ - eighth thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25181 + eighth thoracic dorsal root ganglion (embryonic mouse) @@ -37321,8 +33670,7 @@ - ninth thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25182 + ninth thoracic dorsal root ganglion (embryonic mouse) @@ -37341,8 +33689,7 @@ - tenth thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25183 + tenth thoracic dorsal root ganglion (embryonic mouse) @@ -37361,8 +33708,7 @@ - eleventh thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25184 + eleventh thoracic dorsal root ganglion (embryonic mouse) @@ -37381,8 +33727,7 @@ - twelfth thoracic dorsal root ganglion (embryonic mouse) - EMAPA:25185 + twelfth thoracic dorsal root ganglion (embryonic mouse) @@ -37401,8 +33746,7 @@ - left recurrent laryngeal nerve (embryonic mouse) - EMAPA:25350 + left recurrent laryngeal nerve (embryonic mouse) @@ -37421,8 +33765,7 @@ - thyroid primordium endoderm (embryonic mouse) - EMAPA:25357 + thyroid primordium endoderm (embryonic mouse) @@ -37441,8 +33784,7 @@ - otocyst lumen (embryonic mouse) - EMAPA:25363 + otocyst lumen (embryonic mouse) @@ -37461,8 +33803,7 @@ - multicellular organism (embryonic mouse) - EMAPA:25765 + multicellular organism (embryonic mouse) @@ -37481,8 +33822,7 @@ - cavity of left atrium (embryonic mouse) - EMAPA:26011 + cavity of left atrium (embryonic mouse) @@ -37501,8 +33841,7 @@ - cavity of right atrium (embryonic mouse) - EMAPA:26020 + cavity of right atrium (embryonic mouse) @@ -37521,8 +33860,7 @@ - cavity of left ventricle (embryonic mouse) - EMAPA:26038 + cavity of left ventricle (embryonic mouse) @@ -37541,8 +33879,7 @@ - cavity of right ventricle (embryonic mouse) - EMAPA:26047 + cavity of right ventricle (embryonic mouse) @@ -37561,8 +33898,7 @@ - intersomitic vein (embryonic mouse) - EMAPA:26056 + intersomitic vein (embryonic mouse) @@ -37581,8 +33917,7 @@ - median sacral vein (embryonic mouse) - EMAPA:26064 + median sacral vein (embryonic mouse) @@ -37601,8 +33936,7 @@ - umbilical cord (embryonic mouse) - EMAPA:26115 + umbilical cord (embryonic mouse) @@ -37621,8 +33955,7 @@ - mesenchyme of umbilical cord (embryonic mouse) - EMAPA:26127 + mesenchyme of umbilical cord (embryonic mouse) @@ -37641,8 +33974,7 @@ - vitelline duct (embryonic mouse) - EMAPA:26139 + vitelline duct (embryonic mouse) @@ -37661,8 +33993,7 @@ - pancreas mesenchyme (embryonic mouse) - EMAPA:26220 + pancreas mesenchyme (embryonic mouse) @@ -37681,8 +34012,7 @@ - interphalangeal joint of pedal digit 1 (embryonic mouse) - EMAPA:26430 + interphalangeal joint of pedal digit 1 (embryonic mouse) @@ -37701,8 +34031,7 @@ - metatarsophalangeal joint of pedal digit 1 (embryonic mouse) - EMAPA:26436 + metatarsophalangeal joint of pedal digit 1 (embryonic mouse) @@ -37721,8 +34050,7 @@ - metatarsophalangeal joint of pedal digit 2 (embryonic mouse) - EMAPA:26442 + metatarsophalangeal joint of pedal digit 2 (embryonic mouse) @@ -37741,8 +34069,7 @@ - interphalangeal joint of pedal digit 2 (embryonic mouse) - EMAPA:26448 + interphalangeal joint of pedal digit 2 (embryonic mouse) @@ -37761,8 +34088,7 @@ - interphalangeal joint of pedal digit 3 (embryonic mouse) - EMAPA:26454 + interphalangeal joint of pedal digit 3 (embryonic mouse) @@ -37781,8 +34107,7 @@ - metatarsophalangeal joint of pedal digit 3 (embryonic mouse) - EMAPA:26460 + metatarsophalangeal joint of pedal digit 3 (embryonic mouse) @@ -37801,8 +34126,7 @@ - interphalangeal joint of pedal digit 4 (embryonic mouse) - EMAPA:26466 + interphalangeal joint of pedal digit 4 (embryonic mouse) @@ -37821,8 +34145,7 @@ - metatarsophalangeal joint of pedal digit 4 (embryonic mouse) - EMAPA:26472 + metatarsophalangeal joint of pedal digit 4 (embryonic mouse) @@ -37841,8 +34164,7 @@ - interphalangeal joint of pedal digit 5 (embryonic mouse) - EMAPA:26478 + interphalangeal joint of pedal digit 5 (embryonic mouse) @@ -37861,8 +34183,7 @@ - metatarsophalangeal joint of pedal digit 5 (embryonic mouse) - EMAPA:26484 + metatarsophalangeal joint of pedal digit 5 (embryonic mouse) @@ -37881,8 +34202,7 @@ - odontoid process of cervical vertebra 2 (embryonic mouse) - EMAPA:26535 + odontoid process of cervical vertebra 2 (embryonic mouse) @@ -37901,8 +34221,7 @@ - vibrissa hair bulb (embryonic mouse) - EMAPA:26716 + vibrissa hair bulb (embryonic mouse) @@ -37921,8 +34240,7 @@ - vibrissa follicle (embryonic mouse) - EMAPA:26720 + vibrissa follicle (embryonic mouse) @@ -37941,8 +34259,7 @@ - vibrissa root sheath (embryonic mouse) - EMAPA:26724 + vibrissa root sheath (embryonic mouse) @@ -37961,8 +34278,7 @@ - strand of vibrissa hair (embryonic mouse) - EMAPA:26747 + strand of vibrissa hair (embryonic mouse) @@ -37981,8 +34297,7 @@ - arrector pili muscle of vibrissa (embryonic mouse) - EMAPA:26771 + arrector pili muscle of vibrissa (embryonic mouse) @@ -38001,8 +34316,7 @@ - arrector muscle of hair (embryonic mouse) - EMAPA:26775 + arrector muscle of hair (embryonic mouse) @@ -38021,8 +34335,7 @@ - male inguinal canal (embryonic mouse) - EMAPA:26913 + male inguinal canal (embryonic mouse) @@ -38041,8 +34354,7 @@ - enteric nervous system (embryonic mouse) - EMAPA:26922 + enteric nervous system (embryonic mouse) @@ -38061,8 +34373,7 @@ - pubic cartilage element (embryonic mouse) - EMAPA:26928 + pubic cartilage element (embryonic mouse) @@ -38081,30 +34392,7 @@ - ischial cartilage element (embryonic mouse) - EMAPA:26930 - - - - - - - - - - - - - - - - - - - - mouth mucosa (embryonic mouse) - mucosa of oral region (embryonic mouse) - EMAPA:26937 + ischial cartilage element (embryonic mouse) @@ -38123,8 +34411,7 @@ - oral epithelium (embryonic mouse) - EMAPA:26942 + oral epithelium (embryonic mouse) @@ -38143,8 +34430,7 @@ - oral lamina propria (embryonic mouse) - EMAPA:26947 + oral lamina propria (embryonic mouse) @@ -38163,8 +34449,7 @@ - pharyngeal mucosa (embryonic mouse) - EMAPA:26957 + pharyngeal mucosa (embryonic mouse) @@ -38183,8 +34468,7 @@ - esophagus mucosa (embryonic mouse) - EMAPA:26981 + esophagus mucosa (embryonic mouse) @@ -38203,8 +34487,7 @@ - esophagus muscle (embryonic mouse) - EMAPA:26983 + esophagus muscle (embryonic mouse) @@ -38223,8 +34506,7 @@ - lamina propria of esophagus (embryonic mouse) - EMAPA:26987 + lamina propria of esophagus (embryonic mouse) @@ -38243,8 +34525,7 @@ - esophagus muscularis mucosa (embryonic mouse) - EMAPA:26989 + esophagus muscularis mucosa (embryonic mouse) @@ -38263,8 +34544,7 @@ - submucosa of duodenum (embryonic mouse) - EMAPA:27027 + submucosa of duodenum (embryonic mouse) @@ -38283,8 +34563,7 @@ - esophagogastric junction mucosa (embryonic mouse) - EMAPA:27039 + esophagogastric junction mucosa (embryonic mouse) @@ -38303,8 +34582,7 @@ - esophagogastric junction submucosa (embryonic mouse) - EMAPA:27041 + esophagogastric junction submucosa (embryonic mouse) @@ -38323,8 +34601,7 @@ - esophagogastric junction muscularis mucosa (embryonic mouse) - EMAPA:27051 + esophagogastric junction muscularis mucosa (embryonic mouse) @@ -38343,8 +34620,7 @@ - mucosa of rectum (embryonic mouse) - EMAPA:27081 + mucosa of rectum (embryonic mouse) @@ -38363,8 +34639,7 @@ - submucosa of rectum (embryonic mouse) - EMAPA:27083 + submucosa of rectum (embryonic mouse) @@ -38383,8 +34658,7 @@ - serosa of rectum (embryonic mouse) - EMAPA:27087 + serosa of rectum (embryonic mouse) @@ -38403,8 +34677,7 @@ - muscularis mucosae of rectum (embryonic mouse) - EMAPA:27093 + muscularis mucosae of rectum (embryonic mouse) @@ -38423,8 +34696,7 @@ - submucosa of duodenum (embryonic mouse) - EMAPA:27097 + submucosa of duodenum (embryonic mouse) @@ -38443,8 +34715,7 @@ - jejunal mucosa (embryonic mouse) - EMAPA:27109 + jejunal mucosa (embryonic mouse) @@ -38463,8 +34734,7 @@ - submucosa of jejunum (embryonic mouse) - EMAPA:27111 + submucosa of jejunum (embryonic mouse) @@ -38483,8 +34753,7 @@ - serosa of jejunum (embryonic mouse) - EMAPA:27115 + serosa of jejunum (embryonic mouse) @@ -38503,8 +34772,7 @@ - muscularis mucosae of jejunum (embryonic mouse) - EMAPA:27121 + muscularis mucosae of jejunum (embryonic mouse) @@ -38523,8 +34791,7 @@ - mucosa of fundus of stomach (embryonic mouse) - EMAPA:27151 + mucosa of fundus of stomach (embryonic mouse) @@ -38543,8 +34810,7 @@ - submucosa of fundus of stomach (embryonic mouse) - EMAPA:27153 + submucosa of fundus of stomach (embryonic mouse) @@ -38563,8 +34829,7 @@ - serosa of fundus of stomach (embryonic mouse) - EMAPA:27157 + serosa of fundus of stomach (embryonic mouse) @@ -38583,8 +34848,7 @@ - fundic gastric gland (embryonic mouse) - EMAPA:27161 + fundic gastric gland (embryonic mouse) @@ -38603,8 +34867,7 @@ - lamina propria of fundus of stomach (embryonic mouse) - EMAPA:27163 + lamina propria of fundus of stomach (embryonic mouse) @@ -38623,8 +34886,7 @@ - muscularis mucosae of fundus of stomach (embryonic mouse) - EMAPA:27165 + muscularis mucosae of fundus of stomach (embryonic mouse) @@ -38643,8 +34905,7 @@ - stomach glandular region mucosa (embryonic mouse) - EMAPA:27167 + stomach glandular region mucosa (embryonic mouse) @@ -38663,8 +34924,7 @@ - gastric gland (embryonic mouse) - EMAPA:27181 + gastric gland (embryonic mouse) @@ -38683,8 +34943,7 @@ - mucosa of pylorus (embryonic mouse) - EMAPA:27199 + mucosa of pylorus (embryonic mouse) @@ -38703,8 +34962,7 @@ - submucosa of pylorus (embryonic mouse) - EMAPA:27201 + submucosa of pylorus (embryonic mouse) @@ -38723,8 +34981,7 @@ - pyloric gastric gland (embryonic mouse) - EMAPA:27211 + pyloric gastric gland (embryonic mouse) @@ -38743,8 +35000,7 @@ - submucosa of anal canal (embryonic mouse) - EMAPA:27217 + submucosa of anal canal (embryonic mouse) @@ -38763,8 +35019,7 @@ - gland of anal canal (embryonic mouse) - EMAPA:27221 + gland of anal canal (embryonic mouse) @@ -38783,8 +35038,7 @@ - submucosa of anal canal (embryonic mouse) - EMAPA:27227 + submucosa of anal canal (embryonic mouse) @@ -38803,8 +35057,7 @@ - gland of anal canal (embryonic mouse) - EMAPA:27233 + gland of anal canal (embryonic mouse) @@ -38823,8 +35076,7 @@ - duodenal mucosa (embryonic mouse) - EMAPA:27235 + duodenal mucosa (embryonic mouse) @@ -38843,8 +35095,7 @@ - submucosa of duodenum (embryonic mouse) - EMAPA:27239 + submucosa of duodenum (embryonic mouse) @@ -38863,8 +35114,7 @@ - muscularis mucosae of duodenum (embryonic mouse) - EMAPA:27243 + muscularis mucosae of duodenum (embryonic mouse) @@ -38883,8 +35133,7 @@ - serosa of duodenum (embryonic mouse) - EMAPA:27247 + serosa of duodenum (embryonic mouse) @@ -38903,8 +35152,7 @@ - duodenum lamina propria (embryonic mouse) - EMAPA:27255 + duodenum lamina propria (embryonic mouse) @@ -38923,8 +35171,7 @@ - muscularis mucosae of duodenum (embryonic mouse) - EMAPA:27259 + muscularis mucosae of duodenum (embryonic mouse) @@ -38943,8 +35190,7 @@ - colonic mucosa (embryonic mouse) - EMAPA:27375 + colonic mucosa (embryonic mouse) @@ -38963,8 +35209,7 @@ - submucosa of colon (embryonic mouse) - EMAPA:27379 + submucosa of colon (embryonic mouse) @@ -38983,8 +35228,7 @@ - muscle layer of colon (embryonic mouse) - EMAPA:27383 + muscle layer of colon (embryonic mouse) @@ -39003,8 +35247,7 @@ - serosa of colon (embryonic mouse) - EMAPA:27387 + serosa of colon (embryonic mouse) @@ -39023,8 +35266,7 @@ - lamina propria of mucosa of colon (embryonic mouse) - EMAPA:27395 + lamina propria of mucosa of colon (embryonic mouse) @@ -39043,8 +35285,7 @@ - muscularis mucosae of colon (embryonic mouse) - EMAPA:27399 + muscularis mucosae of colon (embryonic mouse) @@ -39063,8 +35304,7 @@ - mucosa of anal canal (embryonic mouse) - EMAPA:27531 + mucosa of anal canal (embryonic mouse) @@ -39083,8 +35323,7 @@ - submucosa of anal canal (embryonic mouse) - EMAPA:27535 + submucosa of anal canal (embryonic mouse) @@ -39103,8 +35342,7 @@ - gland of anal canal (embryonic mouse) - EMAPA:27543 + gland of anal canal (embryonic mouse) @@ -39123,8 +35361,7 @@ - gonad germinal epithelium (embryonic mouse) - EMAPA:27564 + gonad germinal epithelium (embryonic mouse) @@ -39143,8 +35380,7 @@ - embryonic cloaca (embryonic mouse) - EMAPA:27573 + embryonic cloaca (embryonic mouse) @@ -39163,8 +35399,7 @@ - cloacal epithelium (embryonic mouse) - EMAPA:27577 + cloacal epithelium (embryonic mouse) @@ -39183,8 +35418,7 @@ - ureteric bud tip (embryonic mouse) - EMAPA:27605 + ureteric bud tip (embryonic mouse) @@ -39203,30 +35437,7 @@ - ureteric bud trunk (embryonic mouse) - EMAPA:27608 - - - - - - - - - - - - - - - - - - - - metanephric cap (embryonic mouse) - metanephros induced blastemal cells (embryonic mouse) - EMAPA:27621 + ureteric bud trunk (embryonic mouse) @@ -39245,8 +35456,7 @@ - Mullerian duct (embryonic mouse) - EMAPA:27665 + Mullerian duct (embryonic mouse) @@ -39265,8 +35475,7 @@ - metanephric renal vesicle (embryonic mouse) - EMAPA:27678 + metanephric renal vesicle (embryonic mouse) @@ -39285,8 +35494,7 @@ - comma-shaped body (embryonic mouse) - EMAPA:27681 + comma-shaped body (embryonic mouse) @@ -39305,8 +35513,7 @@ - ureteric bud trunk (embryonic mouse) - EMAPA:27697 + ureteric bud trunk (embryonic mouse) @@ -39325,8 +35532,7 @@ - nephrogenic zone (embryonic mouse) - EMAPA:27721 + nephrogenic zone (embryonic mouse) @@ -39345,8 +35551,7 @@ - S-shaped body (embryonic mouse) - EMAPA:27756 + S-shaped body (embryonic mouse) @@ -39365,8 +35570,7 @@ - renal connecting tubule (embryonic mouse) - EMAPA:27758 + renal connecting tubule (embryonic mouse) @@ -39385,8 +35589,7 @@ - nephron tubule (embryonic mouse) - EMAPA:27782 + nephron tubule (embryonic mouse) @@ -39405,8 +35608,7 @@ - distal early tubule (embryonic mouse) - EMAPA:27788 + distal early tubule (embryonic mouse) @@ -39425,8 +35627,7 @@ - renal connecting tubule (embryonic mouse) - EMAPA:27790 + renal connecting tubule (embryonic mouse) @@ -39445,8 +35646,7 @@ - glomerular mesangium (embryonic mouse) - EMAPA:27961 + glomerular mesangium (embryonic mouse) @@ -39465,8 +35665,7 @@ - glomerular capsule (embryonic mouse) - EMAPA:27973 + glomerular capsule (embryonic mouse) @@ -39485,8 +35684,7 @@ - glomerular parietal epithelium (embryonic mouse) - EMAPA:27979 + glomerular parietal epithelium (embryonic mouse) @@ -39505,8 +35703,7 @@ - Bowman's space (embryonic mouse) - EMAPA:27985 + Bowman's space (embryonic mouse) @@ -39525,8 +35722,7 @@ - juxtaglomerular arteriole (embryonic mouse) - EMAPA:27991 + juxtaglomerular arteriole (embryonic mouse) @@ -39545,8 +35741,7 @@ - distal early tubule (embryonic mouse) - EMAPA:28007 + distal early tubule (embryonic mouse) @@ -39565,8 +35760,7 @@ - renal connecting tubule (embryonic mouse) - EMAPA:28011 + renal connecting tubule (embryonic mouse) @@ -39585,8 +35779,7 @@ - renal medulla collecting duct (embryonic mouse) - EMAPA:28061 + renal medulla collecting duct (embryonic mouse) @@ -39605,8 +35798,7 @@ - kidney pelvis urothelium (embryonic mouse) - EMAPA:28077 + kidney pelvis urothelium (embryonic mouse) @@ -39625,8 +35817,7 @@ - perihilar interstitium (embryonic mouse) - EMAPA:28083 + perihilar interstitium (embryonic mouse) @@ -39645,8 +35836,7 @@ - urothelium of ureter (embryonic mouse) - EMAPA:28089 + urothelium of ureter (embryonic mouse) @@ -39665,8 +35855,7 @@ - adventitia of ureter (embryonic mouse) - EMAPA:28114 + adventitia of ureter (embryonic mouse) @@ -39685,8 +35874,7 @@ - kidney pelvis smooth muscle (embryonic mouse) - EMAPA:28120 + kidney pelvis smooth muscle (embryonic mouse) @@ -39705,8 +35893,7 @@ - cortical collecting duct (embryonic mouse) - EMAPA:28130 + cortical collecting duct (embryonic mouse) @@ -39725,8 +35912,7 @@ - renal cortex interstitium (embryonic mouse) - EMAPA:28136 + renal cortex interstitium (embryonic mouse) @@ -39745,8 +35931,7 @@ - renal cortex artery (embryonic mouse) - EMAPA:28147 + renal cortex artery (embryonic mouse) @@ -39765,8 +35950,7 @@ - renal cortex vein (embryonic mouse) - EMAPA:28152 + renal cortex vein (embryonic mouse) @@ -39785,8 +35969,7 @@ - interlobular artery (embryonic mouse) - EMAPA:28212 + interlobular artery (embryonic mouse) @@ -39805,8 +35988,7 @@ - kidney arcuate artery (embryonic mouse) - EMAPA:28215 + kidney arcuate artery (embryonic mouse) @@ -39825,8 +36007,7 @@ - renal interlobular vein (embryonic mouse) - EMAPA:28218 + renal interlobular vein (embryonic mouse) @@ -39845,8 +36026,7 @@ - kidney arcuate vein (embryonic mouse) - EMAPA:28221 + kidney arcuate vein (embryonic mouse) @@ -39865,8 +36045,7 @@ - renal afferent arteriole (embryonic mouse) - EMAPA:28230 + renal afferent arteriole (embryonic mouse) @@ -39885,8 +36064,7 @@ - renal efferent arteriole (embryonic mouse) - EMAPA:28233 + renal efferent arteriole (embryonic mouse) @@ -39905,8 +36083,7 @@ - renal corpuscle (embryonic mouse) - EMAPA:28236 + renal corpuscle (embryonic mouse) @@ -39925,8 +36102,7 @@ - glomerular tuft (embryonic mouse) - EMAPA:28239 + glomerular tuft (embryonic mouse) @@ -39945,30 +36121,7 @@ - glomerular capillary (embryonic mouse) - EMAPA:28245 - - - - - - - - - - - - - - - - - - - - glomerular mesangium (embryonic mouse) - mesangium (embryonic mouse) - EMAPA:28248 + glomerular capillary (embryonic mouse) @@ -39987,8 +36140,7 @@ - glomerular basement membrane (embryonic mouse) - EMAPA:28251 + glomerular basement membrane (embryonic mouse) @@ -40007,8 +36159,7 @@ - glomerular visceral epithelium (embryonic mouse) - EMAPA:28254 + glomerular visceral epithelium (embryonic mouse) @@ -40027,8 +36178,7 @@ - glomerular capsule (embryonic mouse) - EMAPA:28257 + glomerular capsule (embryonic mouse) @@ -40047,8 +36197,7 @@ - glomerular parietal epithelium (embryonic mouse) - EMAPA:28260 + glomerular parietal epithelium (embryonic mouse) @@ -40067,8 +36216,7 @@ - Bowman's space (embryonic mouse) - EMAPA:28263 + Bowman's space (embryonic mouse) @@ -40087,8 +36235,7 @@ - renal afferent arteriole (embryonic mouse) - EMAPA:28266 + renal afferent arteriole (embryonic mouse) @@ -40107,8 +36254,7 @@ - part of afferent arteriole forming the juxtaglomerular complex (embryonic mouse) - EMAPA:28269 + part of afferent arteriole forming the juxtaglomerular complex (embryonic mouse) @@ -40127,8 +36273,7 @@ - renal efferent arteriole (embryonic mouse) - EMAPA:28275 + renal efferent arteriole (embryonic mouse) @@ -40147,8 +36292,7 @@ - extraglomerular mesangium (embryonic mouse) - EMAPA:28278 + extraglomerular mesangium (embryonic mouse) @@ -40167,8 +36311,7 @@ - proximal tubule (embryonic mouse) - EMAPA:28281 + proximal tubule (embryonic mouse) @@ -40187,8 +36330,7 @@ - proximal convoluted tubule (embryonic mouse) - EMAPA:28287 + proximal convoluted tubule (embryonic mouse) @@ -40207,8 +36349,7 @@ - outer medulla of kidney (embryonic mouse) - EMAPA:28310 + outer medulla of kidney (embryonic mouse) @@ -40227,8 +36368,7 @@ - outer renal medulla loop of Henle (embryonic mouse) - EMAPA:28322 + outer renal medulla loop of Henle (embryonic mouse) @@ -40247,8 +36387,7 @@ - loop of Henle ascending limb thin segment (embryonic mouse) - EMAPA:28328 + loop of Henle ascending limb thin segment (embryonic mouse) @@ -40267,8 +36406,7 @@ - renal glomerulus (embryonic mouse) - EMAPA:28329 + renal glomerulus (embryonic mouse) @@ -40287,8 +36425,7 @@ - outer renal medulla interstitium (embryonic mouse) - EMAPA:28337 + outer renal medulla interstitium (embryonic mouse) @@ -40307,8 +36444,7 @@ - outer medullary collecting duct (embryonic mouse) - EMAPA:28346 + outer medullary collecting duct (embryonic mouse) @@ -40327,8 +36463,7 @@ - inner medulla of kidney (embryonic mouse) - EMAPA:28349 + inner medulla of kidney (embryonic mouse) @@ -40347,8 +36482,7 @@ - inner renal medulla loop of Henle (embryonic mouse) - EMAPA:28352 + inner renal medulla loop of Henle (embryonic mouse) @@ -40367,8 +36501,7 @@ - loop of Henle ascending limb thin segment (embryonic mouse) - EMAPA:28361 + loop of Henle ascending limb thin segment (embryonic mouse) @@ -40387,8 +36520,7 @@ - inner renal medulla interstitium (embryonic mouse) - EMAPA:28364 + inner renal medulla interstitium (embryonic mouse) @@ -40407,8 +36539,7 @@ - inner medullary collecting duct (embryonic mouse) - EMAPA:28370 + inner medullary collecting duct (embryonic mouse) @@ -40427,8 +36558,7 @@ - renal artery (embryonic mouse) - EMAPA:28373 + renal artery (embryonic mouse) @@ -40447,8 +36577,7 @@ - renal vein (embryonic mouse) - EMAPA:28376 + renal vein (embryonic mouse) @@ -40467,32 +36596,7 @@ - distal tubule (embryonic mouse) - EMAPA:28387 - - - - - - - - - - - - - - - - - - - - - distal convoluted tubule (embryonic mouse) - early distal convoluted tubule (embryonic mouse) - late distal convoluted tubule (embryonic mouse) - EMAPA:28393 + distal tubule (embryonic mouse) @@ -40511,30 +36615,7 @@ - thick ascending limb of loop of Henle (embryonic mouse) - EMAPA:28396 - - - - - - - - - - - - - - - - - - - - distal straight tubule macula densa (embryonic mouse) - macula densa (embryonic mouse) - EMAPA:28399 + thick ascending limb of loop of Henle (embryonic mouse) @@ -40553,8 +36634,7 @@ - distal straight tubule postmacula segment (embryonic mouse) - EMAPA:28402 + distal straight tubule postmacula segment (embryonic mouse) @@ -40573,30 +36653,7 @@ - collecting duct of renal tubule (embryonic mouse) - EMAPA:28407 - - - - - - - - - - - - - - - - - - - - kidney blood vessel (embryonic mouse) - kidney vasculature (embryonic mouse) - EMAPA:28457 + collecting duct of renal tubule (embryonic mouse) @@ -40615,8 +36672,7 @@ - maturing nephron (embryonic mouse) - EMAPA:28485 + maturing nephron (embryonic mouse) @@ -40635,8 +36691,7 @@ - nephron (embryonic mouse) - EMAPA:28491 + nephron (embryonic mouse) @@ -40655,8 +36710,7 @@ - capillary loop nephron (embryonic mouse) - EMAPA:28506 + capillary loop nephron (embryonic mouse) @@ -40675,8 +36729,7 @@ - kidney interstitium (embryonic mouse) - EMAPA:28518 + kidney interstitium (embryonic mouse) @@ -40695,8 +36748,7 @@ - female reproductive organ (embryonic mouse) - EMAPA:28540 + female reproductive organ (embryonic mouse) @@ -40715,8 +36767,7 @@ - allantois of embryonic urinary system (embryonic mouse) - EMAPA:28547 + allantois of embryonic urinary system (embryonic mouse) @@ -40735,8 +36786,7 @@ - urinary bladder urothelium (embryonic mouse) - EMAPA:28601 + urinary bladder urothelium (embryonic mouse) @@ -40755,8 +36805,7 @@ - urinary bladder muscularis mucosa (embryonic mouse) - EMAPA:28619 + urinary bladder muscularis mucosa (embryonic mouse) @@ -40775,8 +36824,7 @@ - muscularis mucosa of fundus of urinary bladder (embryonic mouse) - EMAPA:28625 + muscularis mucosa of fundus of urinary bladder (embryonic mouse) @@ -40795,8 +36843,7 @@ - urinary bladder detrusor smooth muscle (embryonic mouse) - EMAPA:28637 + urinary bladder detrusor smooth muscle (embryonic mouse) @@ -40815,8 +36862,7 @@ - urinary bladder trigone smooth muscle (embryonic mouse) - EMAPA:28649 + urinary bladder trigone smooth muscle (embryonic mouse) @@ -40835,8 +36881,7 @@ - serosa of urinary bladder (embryonic mouse) - EMAPA:28661 + serosa of urinary bladder (embryonic mouse) @@ -40855,8 +36900,7 @@ - urinary bladder vasculature (embryonic mouse) - EMAPA:28679 + urinary bladder vasculature (embryonic mouse) @@ -40875,8 +36919,7 @@ - female urethra (embryonic mouse) - EMAPA:28747 + female urethra (embryonic mouse) @@ -40895,30 +36938,7 @@ - basal cell layer of urothelium (embryonic mouse) - EMAPA:28806 - - - - - - - - - - - - - - - - - - - - muscular coat of ureter (embryonic mouse) - ureter smooth muscle (embryonic mouse) - EMAPA:28811 + basal cell layer of urothelium (embryonic mouse) @@ -40937,8 +36957,7 @@ - lamina propria of ureter (embryonic mouse) - EMAPA:28841 + lamina propria of ureter (embryonic mouse) @@ -40957,8 +36976,7 @@ - ovary stroma (embryonic mouse) - EMAPA:28880 + ovary stroma (embryonic mouse) @@ -40977,8 +36995,7 @@ - epithelium of uterine horn (embryonic mouse) - EMAPA:29030 + epithelium of uterine horn (embryonic mouse) @@ -40997,30 +37014,7 @@ - oviduct epithelium (embryonic mouse) - EMAPA:29043 - - - - - - - - - - - - - - - - - - - - muscle layer of oviduct (embryonic mouse) - oviduct smooth muscle (embryonic mouse) - EMAPA:29046 + oviduct epithelium (embryonic mouse) @@ -41039,8 +37033,7 @@ - testis sex cord (embryonic mouse) - EMAPA:29098 + testis sex cord (embryonic mouse) @@ -41059,8 +37052,7 @@ - male paramesonephric duct (embryonic mouse) - EMAPA:29161 + male paramesonephric duct (embryonic mouse) @@ -41079,8 +37071,7 @@ - preputial swelling of male (embryonic mouse) - EMAPA:29220 + preputial swelling of male (embryonic mouse) @@ -41099,8 +37090,7 @@ - future glans penis (embryonic mouse) - EMAPA:29252 + future glans penis (embryonic mouse) @@ -41119,8 +37109,7 @@ - muscular coat of vas deferens (embryonic mouse) - EMAPA:29270 + muscular coat of vas deferens (embryonic mouse) @@ -41139,8 +37128,7 @@ - vas deferens epithelium (embryonic mouse) - EMAPA:29274 + vas deferens epithelium (embryonic mouse) @@ -41159,8 +37147,7 @@ - duct of seminal vesicle (embryonic mouse) - EMAPA:29282 + duct of seminal vesicle (embryonic mouse) @@ -41179,30 +37166,7 @@ - appendix testis (embryonic mouse) - EMAPA:29304 - - - - - - - - - - - - - - - - - - - - inguinal ring (embryonic mouse) - male inguinal ring (embryonic mouse) - EMAPA:29307 + appendix testis (embryonic mouse) @@ -41221,8 +37185,7 @@ - remnant of urachus (embryonic mouse) - EMAPA:29637 + remnant of urachus (embryonic mouse) @@ -41241,8 +37204,7 @@ - male urethral gland (embryonic mouse) - EMAPA:29645 + male urethral gland (embryonic mouse) @@ -41261,8 +37223,7 @@ - female urethral gland (embryonic mouse) - EMAPA:29653 + female urethral gland (embryonic mouse) @@ -41281,8 +37242,7 @@ - proximal convoluted tubule segment 1 (embryonic mouse) - EMAPA:29657 + proximal convoluted tubule segment 1 (embryonic mouse) @@ -41301,8 +37261,7 @@ - proximal convoluted tubule segment 2 (embryonic mouse) - EMAPA:29659 + proximal convoluted tubule segment 2 (embryonic mouse) @@ -41321,8 +37280,7 @@ - proximal straight tubule (embryonic mouse) - EMAPA:29661 + proximal straight tubule (embryonic mouse) @@ -41341,8 +37299,7 @@ - kidney outer medulla outer stripe (embryonic mouse) - EMAPA:29663 + kidney outer medulla outer stripe (embryonic mouse) @@ -41361,8 +37318,7 @@ - outer medulla outer stripe loop of Henle (embryonic mouse) - EMAPA:29665 + outer medulla outer stripe loop of Henle (embryonic mouse) @@ -41381,30 +37337,7 @@ - proximal straight tubule (embryonic mouse) - EMAPA:29669 - - - - - - - - - - - - - - - - - - - - premacula segment of distal straight tubule (embryonic mouse) - thick ascending limb of loop of Henle (embryonic mouse) - EMAPA:29671 + proximal straight tubule (embryonic mouse) @@ -41423,8 +37356,7 @@ - kidney outer medulla inner stripe (embryonic mouse) - EMAPA:29675 + kidney outer medulla inner stripe (embryonic mouse) @@ -41443,8 +37375,7 @@ - outer medulla inner stripe loop of Henle (embryonic mouse) - EMAPA:29679 + outer medulla inner stripe loop of Henle (embryonic mouse) @@ -41463,8 +37394,7 @@ - least splanchnic nerve (embryonic mouse) - EMAPA:29691 + least splanchnic nerve (embryonic mouse) @@ -41483,8 +37413,7 @@ - hair follicle (embryonic mouse) - EMAPA:29741 + hair follicle (embryonic mouse) @@ -41503,8 +37432,7 @@ - scrotal sweat gland (embryonic mouse) - EMAPA:29743 + scrotal sweat gland (embryonic mouse) @@ -41523,8 +37451,7 @@ - septum of scrotum (embryonic mouse) - EMAPA:29745 + septum of scrotum (embryonic mouse) @@ -41543,8 +37470,7 @@ - efferent duct epithelium (embryonic mouse) - EMAPA:29747 + efferent duct epithelium (embryonic mouse) @@ -41563,8 +37489,7 @@ - adventitia of ductus deferens (embryonic mouse) - EMAPA:29767 + adventitia of ductus deferens (embryonic mouse) @@ -41583,8 +37508,7 @@ - os penis (embryonic mouse) - EMAPA:29769 + os penis (embryonic mouse) @@ -41603,8 +37527,7 @@ - seminal vesicle epithelium (embryonic mouse) - EMAPA:29771 + seminal vesicle epithelium (embryonic mouse) @@ -41623,8 +37546,7 @@ - muscular coat of seminal vesicle (embryonic mouse) - EMAPA:29773 + muscular coat of seminal vesicle (embryonic mouse) @@ -41643,8 +37565,7 @@ - adventitia of seminal vesicle (embryonic mouse) - EMAPA:29775 + adventitia of seminal vesicle (embryonic mouse) @@ -41663,8 +37584,7 @@ - ejaculatory duct epithelium (embryonic mouse) - EMAPA:29786 + ejaculatory duct epithelium (embryonic mouse) @@ -41683,30 +37603,7 @@ - bulbourethral gland epithelium (embryonic mouse) - EMAPA:29790 - - - - - - - - - - - - - - - - - - - - coagulating gland (embryonic mouse) - prostate gland anterior lobe (embryonic mouse) - EMAPA:29794 + bulbourethral gland epithelium (embryonic mouse) @@ -41725,8 +37622,7 @@ - prostate gland dorsal lobe (embryonic mouse) - EMAPA:29808 + prostate gland dorsal lobe (embryonic mouse) @@ -41745,8 +37641,7 @@ - prostate gland lateral lobe (embryonic mouse) - EMAPA:29822 + prostate gland lateral lobe (embryonic mouse) @@ -41765,52 +37660,7 @@ - prostate gland ventral lobe (embryonic mouse) - EMAPA:29836 - - - - - - - - - - - - - - - - - - - - corpus cavernosum penis (embryonic mouse) - corpus spongiosum of penis (embryonic mouse) - EMAPA:29850 - - - - - - - - - - - - - - - - - - - - corpus cavernosum penis (embryonic mouse) - corpus spongiosum of penis (embryonic mouse) - EMAPA:29856 + prostate gland ventral lobe (embryonic mouse) @@ -41829,8 +37679,7 @@ - atretic follicle of ovary (embryonic mouse) - EMAPA:29874 + atretic follicle of ovary (embryonic mouse) @@ -41849,8 +37698,7 @@ - corpus luteum (embryonic mouse) - EMAPA:29886 + corpus luteum (embryonic mouse) @@ -41869,8 +37717,7 @@ - corpus albicans (embryonic mouse) - EMAPA:29888 + corpus albicans (embryonic mouse) @@ -41889,8 +37736,7 @@ - uterine tube infundibulum (embryonic mouse) - EMAPA:29897 + uterine tube infundibulum (embryonic mouse) @@ -41909,8 +37755,7 @@ - serosa of infundibulum of uterine tube (embryonic mouse) - EMAPA:29903 + serosa of infundibulum of uterine tube (embryonic mouse) @@ -41929,8 +37774,7 @@ - uterus (embryonic mouse) - EMAPA:29915 + uterus (embryonic mouse) @@ -41949,8 +37793,7 @@ - endometrium (embryonic mouse) - EMAPA:29917 + endometrium (embryonic mouse) @@ -41969,8 +37812,7 @@ - endometrial gland (embryonic mouse) - EMAPA:29919 + endometrial gland (embryonic mouse) @@ -41989,8 +37831,7 @@ - myometrium (embryonic mouse) - EMAPA:29923 + myometrium (embryonic mouse) @@ -42009,8 +37850,7 @@ - uterine cervix (embryonic mouse) - EMAPA:29927 + uterine cervix (embryonic mouse) @@ -42029,8 +37869,7 @@ - cervix epithelium (embryonic mouse) - EMAPA:29929 + cervix epithelium (embryonic mouse) @@ -42049,8 +37888,7 @@ - vasa recta (embryonic mouse) - EMAPA:30043 + vasa recta (embryonic mouse) @@ -42069,8 +37907,7 @@ - cranial suspensory ligament (embryonic mouse) - EMAPA:30068 + cranial suspensory ligament (embryonic mouse) @@ -42089,8 +37926,7 @@ - genital swelling (embryonic mouse) - EMAPA:30074 + genital swelling (embryonic mouse) @@ -42109,8 +37945,7 @@ - lamina propria of urinary bladder (embryonic mouse) - EMAPA:30088 + lamina propria of urinary bladder (embryonic mouse) @@ -42129,8 +37964,7 @@ - urinary bladder neck smooth muscle (embryonic mouse) - EMAPA:30123 + urinary bladder neck smooth muscle (embryonic mouse) @@ -42149,8 +37983,7 @@ - female labial swelling (embryonic mouse) - EMAPA:30423 + female labial swelling (embryonic mouse) @@ -42169,8 +38002,7 @@ - adventitia of epididymis (embryonic mouse) - EMAPA:30443 + adventitia of epididymis (embryonic mouse) @@ -42189,8 +38021,7 @@ - epididymis epithelium (embryonic mouse) - EMAPA:30445 + epididymis epithelium (embryonic mouse) @@ -42209,8 +38040,7 @@ - juxtaglomerular apparatus (embryonic mouse) - EMAPA:30449 + juxtaglomerular apparatus (embryonic mouse) @@ -42229,8 +38059,7 @@ - epithelium of male urethra (embryonic mouse) - EMAPA:30467 + epithelium of male urethra (embryonic mouse) @@ -42249,8 +38078,7 @@ - epithelium of female urethra (embryonic mouse) - EMAPA:30470 + epithelium of female urethra (embryonic mouse) @@ -42269,8 +38097,7 @@ - preputial swelling of female (embryonic mouse) - EMAPA:30478 + preputial swelling of female (embryonic mouse) @@ -42289,8 +38116,7 @@ - male genital swelling (embryonic mouse) - EMAPA:30509 + male genital swelling (embryonic mouse) @@ -42309,8 +38135,7 @@ - tunica albuginea of ovary (embryonic mouse) - EMAPA:30522 + tunica albuginea of ovary (embryonic mouse) @@ -42329,8 +38154,7 @@ - anterior mesonephric tubule (embryonic mouse) - EMAPA:30562 + anterior mesonephric tubule (embryonic mouse) @@ -42349,8 +38173,7 @@ - mesonephric glomerulus (embryonic mouse) - EMAPA:30568 + mesonephric glomerulus (embryonic mouse) @@ -42369,8 +38192,7 @@ - posterior mesonephric tubule (embryonic mouse) - EMAPA:30571 + posterior mesonephric tubule (embryonic mouse) @@ -42389,8 +38211,7 @@ - male prepuce epithelium (embryonic mouse) - EMAPA:30655 + male prepuce epithelium (embryonic mouse) @@ -42409,8 +38230,7 @@ - male preputial gland (embryonic mouse) - EMAPA:30659 + male preputial gland (embryonic mouse) @@ -42429,8 +38249,7 @@ - prepuce of clitoris (embryonic mouse) - EMAPA:30699 + prepuce of clitoris (embryonic mouse) @@ -42449,30 +38268,7 @@ - female preputial gland (embryonic mouse) - EMAPA:30711 - - - - - - - - - - - - - - - - - - - - epididymis smooth muscle (embryonic mouse) - muscle layer of epididymis (embryonic mouse) - EMAPA:30747 + female preputial gland (embryonic mouse) @@ -42491,8 +38287,7 @@ - primordial ovarian follicle (embryonic mouse) - EMAPA:30755 + primordial ovarian follicle (embryonic mouse) @@ -42511,8 +38306,7 @@ - tertiary ovarian follicle (embryonic mouse) - EMAPA:30763 + tertiary ovarian follicle (embryonic mouse) @@ -42531,8 +38325,7 @@ - mature ovarian follicle (embryonic mouse) - EMAPA:30777 + mature ovarian follicle (embryonic mouse) @@ -42551,8 +38344,7 @@ - penis blood vessel (embryonic mouse) - EMAPA:30807 + penis blood vessel (embryonic mouse) @@ -42571,8 +38363,7 @@ - clitoris (embryonic mouse) - EMAPA:30819 + clitoris (embryonic mouse) @@ -42591,8 +38382,7 @@ - crus of clitoris (embryonic mouse) - EMAPA:30821 + crus of clitoris (embryonic mouse) @@ -42611,8 +38401,7 @@ - os clitoris (embryonic mouse) - EMAPA:30823 + os clitoris (embryonic mouse) @@ -42631,8 +38420,7 @@ - glans clitoris (embryonic mouse) - EMAPA:30829 + glans clitoris (embryonic mouse) @@ -42651,8 +38439,7 @@ - genital labium (embryonic mouse) - EMAPA:30837 + genital labium (embryonic mouse) @@ -42671,8 +38458,7 @@ - urogenital fold (embryonic mouse) - EMAPA:30888 + urogenital fold (embryonic mouse) @@ -42691,8 +38477,7 @@ - urethra (embryonic mouse) - EMAPA:30901 + urethra (embryonic mouse) @@ -42711,8 +38496,7 @@ - prostatic urethra (embryonic mouse) - EMAPA:30942 + prostatic urethra (embryonic mouse) @@ -42731,8 +38515,7 @@ - spongiose part of urethra (embryonic mouse) - EMAPA:30944 + spongiose part of urethra (embryonic mouse) @@ -42751,8 +38534,7 @@ - muscle layer of spongiose part of urethra (embryonic mouse) - EMAPA:30950 + muscle layer of spongiose part of urethra (embryonic mouse) @@ -42771,8 +38553,7 @@ - muscular layer of prostatic urethra (embryonic mouse) - EMAPA:30956 + muscular layer of prostatic urethra (embryonic mouse) @@ -42791,8 +38572,7 @@ - glomerular basement membrane (embryonic mouse) - EMAPA:30965 + glomerular basement membrane (embryonic mouse) @@ -42811,8 +38591,7 @@ - external male genitalia (embryonic mouse) - EMAPA:30977 + external male genitalia (embryonic mouse) @@ -42831,8 +38610,7 @@ - external female genitalia (embryonic mouse) - EMAPA:30984 + external female genitalia (embryonic mouse) @@ -42851,30 +38629,7 @@ - epithelium of vagina (embryonic mouse) - EMAPA:30991 - - - - - - - - - - - - - - - - - - - - muscular layer of vagina (embryonic mouse) - vagina smooth muscle (embryonic mouse) - EMAPA:30997 + epithelium of vagina (embryonic mouse) @@ -42893,8 +38648,7 @@ - ovary sex cord (embryonic mouse) - EMAPA:31058 + ovary sex cord (embryonic mouse) @@ -42913,8 +38667,7 @@ - dermomyotome (embryonic mouse) - EMAPA:31109 + dermomyotome (embryonic mouse) @@ -42933,8 +38686,7 @@ - myocoele (embryonic mouse) - EMAPA:31134 + myocoele (embryonic mouse) @@ -42953,8 +38705,7 @@ - sclerotome (embryonic mouse) - EMAPA:31159 + sclerotome (embryonic mouse) @@ -42973,8 +38724,7 @@ - somite (embryonic mouse) - EMAPA:31169 + somite (embryonic mouse) @@ -42993,8 +38743,7 @@ - cremaster muscle (embryonic mouse) - EMAPA:31250 + cremaster muscle (embryonic mouse) @@ -43013,8 +38762,7 @@ - muscle layer of infundibulum of uterine tube (embryonic mouse) - EMAPA:31264 + muscle layer of infundibulum of uterine tube (embryonic mouse) @@ -43033,8 +38781,7 @@ - kidney arterial blood vessel (embryonic mouse) - EMAPA:31436 + kidney arterial blood vessel (embryonic mouse) @@ -43053,8 +38800,7 @@ - kidney capillary (embryonic mouse) - EMAPA:31443 + kidney capillary (embryonic mouse) @@ -43073,8 +38819,7 @@ - renal venous blood vessel (embryonic mouse) - EMAPA:31450 + renal venous blood vessel (embryonic mouse) @@ -43093,8 +38838,7 @@ - seminiferous tubule of testis (embryonic mouse) - EMAPA:31476 + seminiferous tubule of testis (embryonic mouse) @@ -43113,8 +38857,7 @@ - semen (embryonic mouse) - EMAPA:31488 + semen (embryonic mouse) @@ -43133,8 +38876,7 @@ - urogenital sinus mesenchyme (embryonic mouse) - EMAPA:31500 + urogenital sinus mesenchyme (embryonic mouse) @@ -43153,8 +38895,7 @@ - urogenital sinus epithelium (embryonic mouse) - EMAPA:31509 + urogenital sinus epithelium (embryonic mouse) @@ -43173,8 +38914,7 @@ - epithelium of urethra (embryonic mouse) - EMAPA:31518 + epithelium of urethra (embryonic mouse) @@ -43193,8 +38933,7 @@ - pelvic ganglion (embryonic mouse) - EMAPA:31527 + pelvic ganglion (embryonic mouse) @@ -43213,8 +38952,7 @@ - trunk (embryonic mouse) - EMAPA:31857 + trunk (embryonic mouse) @@ -43233,8 +38971,7 @@ - head (embryonic mouse) - EMAPA:31858 + head (embryonic mouse) @@ -43253,8 +38990,7 @@ - extraembryonic mesoderm (embryonic mouse) - EMAPA:31862 + extraembryonic mesoderm (embryonic mouse) @@ -43273,8 +39009,7 @@ - extraembryonic mesoderm (embryonic mouse) - EMAPA:31863 + extraembryonic mesoderm (embryonic mouse) @@ -43293,8 +39028,7 @@ - 4-cell stage embryo (embryonic mouse) - EMAPA:31864 + 4-cell stage embryo (embryonic mouse) @@ -43313,8 +39047,7 @@ - 8-cell stage embryo (embryonic mouse) - EMAPA:31865 + 8-cell stage embryo (embryonic mouse) @@ -43333,8 +39066,7 @@ - umbilical ring (embryonic mouse) - EMAPA:31868 + umbilical ring (embryonic mouse) @@ -43353,8 +39085,7 @@ - chorionic plate (embryonic mouse) - EMAPA:31872 + chorionic plate (embryonic mouse) @@ -43373,8 +39104,7 @@ - spongiotrophoblast layer (embryonic mouse) - EMAPA:31876 + spongiotrophoblast layer (embryonic mouse) @@ -43393,8 +39123,7 @@ - submucosa of urinary bladder (embryonic mouse) - EMAPA:32275 + submucosa of urinary bladder (embryonic mouse) @@ -43413,8 +39142,7 @@ - submucosa of neck of urinary bladder (embryonic mouse) - EMAPA:32276 + submucosa of neck of urinary bladder (embryonic mouse) @@ -43433,8 +39161,7 @@ - smooth muscle tissue layer of ejaculatory duct (embryonic mouse) - EMAPA:32289 + smooth muscle tissue layer of ejaculatory duct (embryonic mouse) @@ -43453,8 +39180,7 @@ - lamina propria of prostatic urethra (embryonic mouse) - EMAPA:32303 + lamina propria of prostatic urethra (embryonic mouse) @@ -43473,8 +39199,7 @@ - submucosa of trigone of urinary bladder (embryonic mouse) - EMAPA:32304 + submucosa of trigone of urinary bladder (embryonic mouse) @@ -43493,8 +39218,7 @@ - interdigital region mesenchyme (embryonic mouse) - EMAPA:32609 + interdigital region mesenchyme (embryonic mouse) @@ -43513,8 +39237,7 @@ - forelimb skin (embryonic mouse) - EMAPA:32612 + forelimb skin (embryonic mouse) @@ -43533,8 +39256,7 @@ - phalanx (embryonic mouse) - EMAPA:32614 + phalanx (embryonic mouse) @@ -43553,8 +39275,7 @@ - digit skin (embryonic mouse) - EMAPA:32615 + digit skin (embryonic mouse) @@ -43573,8 +39294,7 @@ - interdigital region (embryonic mouse) - EMAPA:32618 + interdigital region (embryonic mouse) @@ -43593,8 +39313,7 @@ - hindlimb skin (embryonic mouse) - EMAPA:32620 + hindlimb skin (embryonic mouse) @@ -43613,30 +39332,7 @@ - forelimb zeugopod muscle (embryonic mouse) - EMAPA:32622 - - - - - - - - - - - - - - - - - - - - bone of pectoral complex (embryonic mouse) - forelimb skeleton (embryonic mouse) - EMAPA:32623 + forelimb zeugopod muscle (embryonic mouse) @@ -43655,8 +39351,7 @@ - pectoral complex muscle (embryonic mouse) - EMAPA:32624 + pectoral complex muscle (embryonic mouse) @@ -43675,8 +39370,7 @@ - forelimb bone pre-cartilage condensation (embryonic mouse) - EMAPA:32625 + forelimb bone pre-cartilage condensation (embryonic mouse) @@ -43695,8 +39389,7 @@ - forelimb cartilage element (embryonic mouse) - EMAPA:32626 + forelimb cartilage element (embryonic mouse) @@ -43715,8 +39408,7 @@ - forelimb mesenchyme (embryonic mouse) - EMAPA:32628 + forelimb mesenchyme (embryonic mouse) @@ -43735,8 +39427,7 @@ - epithelium of handplate (embryonic mouse) - EMAPA:32630 + epithelium of handplate (embryonic mouse) @@ -43755,8 +39446,7 @@ - manus cartilage element (embryonic mouse) - EMAPA:32631 + manus cartilage element (embryonic mouse) @@ -43775,30 +39465,7 @@ - hindlimb cartilage element (embryonic mouse) - EMAPA:32632 - - - - - - - - - - - - - - - - - - - - bone of pelvic complex (embryonic mouse) - hindlimb skeleton (embryonic mouse) - EMAPA:32633 + hindlimb cartilage element (embryonic mouse) @@ -43817,8 +39484,7 @@ - pelvic complex muscle (embryonic mouse) - EMAPA:32634 + pelvic complex muscle (embryonic mouse) @@ -43837,8 +39503,7 @@ - hindlimb joint (embryonic mouse) - EMAPA:32635 + hindlimb joint (embryonic mouse) @@ -43857,8 +39522,7 @@ - hindlimb mesenchyme (embryonic mouse) - EMAPA:32637 + hindlimb mesenchyme (embryonic mouse) @@ -43877,8 +39541,7 @@ - hindlimb pre-cartilage condensation (embryonic mouse) - EMAPA:32638 + hindlimb pre-cartilage condensation (embryonic mouse) @@ -43897,8 +39560,7 @@ - manual digit phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:32639 + manual digit phalanx pre-cartilage condensation (embryonic mouse) @@ -43917,8 +39579,7 @@ - manus joint (embryonic mouse) - EMAPA:32641 + manus joint (embryonic mouse) @@ -43937,8 +39598,7 @@ - manual digit (embryonic mouse) - EMAPA:32642 + manual digit (embryonic mouse) @@ -43957,8 +39617,7 @@ - skeleton of manus (embryonic mouse) - EMAPA:32643 + skeleton of manus (embryonic mouse) @@ -43977,8 +39636,7 @@ - muscle of manus (embryonic mouse) - EMAPA:32644 + muscle of manus (embryonic mouse) @@ -43997,8 +39655,7 @@ - manual digit mesenchyme (embryonic mouse) - EMAPA:32645 + manual digit mesenchyme (embryonic mouse) @@ -44017,8 +39674,7 @@ - manual digit epithelium (embryonic mouse) - EMAPA:32647 + manual digit epithelium (embryonic mouse) @@ -44037,8 +39693,7 @@ - manual digit skin (embryonic mouse) - EMAPA:32648 + manual digit skin (embryonic mouse) @@ -44057,8 +39712,7 @@ - pedal digit (embryonic mouse) - EMAPA:32649 + pedal digit (embryonic mouse) @@ -44077,8 +39731,7 @@ - phalanx of manus (embryonic mouse) - EMAPA:32650 + phalanx of manus (embryonic mouse) @@ -44097,8 +39750,7 @@ - interdigital region between manual digits (embryonic mouse) - EMAPA:32651 + interdigital region between manual digits (embryonic mouse) @@ -44117,8 +39769,7 @@ - mesenchyme of interdigital region of manus (embryonic mouse) - EMAPA:32653 + mesenchyme of interdigital region of manus (embryonic mouse) @@ -44137,8 +39788,7 @@ - metacarpus region (embryonic mouse) - EMAPA:32654 + metacarpus region (embryonic mouse) @@ -44157,8 +39807,7 @@ - epithelium of footplate (embryonic mouse) - EMAPA:32655 + epithelium of footplate (embryonic mouse) @@ -44177,8 +39826,7 @@ - pes cartilage element (embryonic mouse) - EMAPA:32657 + pes cartilage element (embryonic mouse) @@ -44197,8 +39845,7 @@ - manual digit phalanx cartilage element (embryonic mouse) - EMAPA:32658 + manual digit phalanx cartilage element (embryonic mouse) @@ -44217,30 +39864,7 @@ - arachnoid mater (embryonic mouse) - EMAPA:32659 - - - - - - - - - - - - - - - - - - - - meningeal cluster (embryonic mouse) - meninx (embryonic mouse) - EMAPA:32660 + arachnoid mater (embryonic mouse) @@ -44259,8 +39883,7 @@ - brain arachnoid mater (embryonic mouse) - EMAPA:32661 + brain arachnoid mater (embryonic mouse) @@ -44279,8 +39902,7 @@ - brain meninx (embryonic mouse) - EMAPA:32662 + brain meninx (embryonic mouse) @@ -44299,8 +39921,7 @@ - pia mater (embryonic mouse) - EMAPA:32663 + pia mater (embryonic mouse) @@ -44319,8 +39940,7 @@ - dura mater (embryonic mouse) - EMAPA:32664 + dura mater (embryonic mouse) @@ -44339,8 +39959,7 @@ - ganglionic eminence (embryonic mouse) - EMAPA:32665 + ganglionic eminence (embryonic mouse) @@ -44359,8 +39978,7 @@ - subarachnoid space (embryonic mouse) - EMAPA:32666 + subarachnoid space (embryonic mouse) @@ -44379,8 +39997,7 @@ - brain pia mater (embryonic mouse) - EMAPA:32667 + brain pia mater (embryonic mouse) @@ -44399,8 +40016,7 @@ - brain dura mater (embryonic mouse) - EMAPA:32668 + brain dura mater (embryonic mouse) @@ -44419,30 +40035,7 @@ - vertebra cartilage element (embryonic mouse) - EMAPA:32669 - - - - - - - - - - - - - - - - - - - - annulus fibrosus (embryonic mouse) - annulus fibrosus disci intervertebralis (embryonic mouse) - EMAPA:32670 + vertebra cartilage element (embryonic mouse) @@ -44461,8 +40054,7 @@ - vertebra pre-cartilage condensation (embryonic mouse) - EMAPA:32671 + vertebra pre-cartilage condensation (embryonic mouse) @@ -44481,8 +40073,7 @@ - amygdala (embryonic mouse) - EMAPA:32672 + amygdala (embryonic mouse) @@ -44501,8 +40092,7 @@ - collection of basal ganglia (embryonic mouse) - EMAPA:32673 + collection of basal ganglia (embryonic mouse) @@ -44521,8 +40111,7 @@ - brain ventricle (embryonic mouse) - EMAPA:32674 + brain ventricle (embryonic mouse) @@ -44541,8 +40130,7 @@ - brainstem (embryonic mouse) - EMAPA:32678 + brainstem (embryonic mouse) @@ -44561,8 +40149,7 @@ - ventricular zone (embryonic mouse) - EMAPA:32679 + ventricular zone (embryonic mouse) @@ -44581,8 +40168,7 @@ - brain marginal zone (embryonic mouse) - EMAPA:32680 + brain marginal zone (embryonic mouse) @@ -44601,8 +40187,7 @@ - alveolus of lung (embryonic mouse) - EMAPA:32682 + alveolus of lung (embryonic mouse) @@ -44621,8 +40206,7 @@ - gastrointestinal system epithelium (embryonic mouse) - EMAPA:32683 + gastrointestinal system epithelium (embryonic mouse) @@ -44641,8 +40225,7 @@ - floor plate (embryonic mouse) - EMAPA:32684 + floor plate (embryonic mouse) @@ -44661,8 +40244,7 @@ - heart tube (embryonic mouse) - EMAPA:32685 + heart tube (embryonic mouse) @@ -44681,8 +40263,7 @@ - endocardium (embryonic mouse) - EMAPA:32686 + endocardium (embryonic mouse) @@ -44701,32 +40282,7 @@ - cardiac jelly (embryonic mouse) - EMAPA:32687 - - - - - - - - - - - - - - - - - - - - - cardiac muscle tissue (embryonic mouse) - cardiac muscle tissue of myocardium (embryonic mouse) - myocardium (embryonic mouse) - EMAPA:32688 + cardiac jelly (embryonic mouse) @@ -44745,8 +40301,7 @@ - bronchus (embryonic mouse) - EMAPA:32689 + bronchus (embryonic mouse) @@ -44765,8 +40320,7 @@ - bronchus connective tissue (embryonic mouse) - EMAPA:32690 + bronchus connective tissue (embryonic mouse) @@ -44785,8 +40339,7 @@ - epithelium of bronchus (embryonic mouse) - EMAPA:32691 + epithelium of bronchus (embryonic mouse) @@ -44805,8 +40358,7 @@ - alveolar system (embryonic mouse) - EMAPA:32692 + alveolar system (embryonic mouse) @@ -44825,8 +40377,7 @@ - epithelium of bronchiole (embryonic mouse) - EMAPA:32693 + epithelium of bronchiole (embryonic mouse) @@ -44845,8 +40396,7 @@ - pulmonary alveolar duct (embryonic mouse) - EMAPA:32694 + pulmonary alveolar duct (embryonic mouse) @@ -44865,8 +40415,7 @@ - epithelium of lobar bronchus (embryonic mouse) - EMAPA:32695 + epithelium of lobar bronchus (embryonic mouse) @@ -44885,8 +40434,7 @@ - lobar bronchus (embryonic mouse) - EMAPA:32696 + lobar bronchus (embryonic mouse) @@ -44905,8 +40453,7 @@ - bronchiole (embryonic mouse) - EMAPA:32697 + bronchiole (embryonic mouse) @@ -44925,30 +40472,7 @@ - lobar bronchus mesenchyme (embryonic mouse) - EMAPA:32698 - - - - - - - - - - - - - - - - - - - - limb muscle (embryonic mouse) - musculature of limb (embryonic mouse) - EMAPA:32700 + lobar bronchus mesenchyme (embryonic mouse) @@ -44967,8 +40491,7 @@ - skeleton of limb (embryonic mouse) - EMAPA:32702 + skeleton of limb (embryonic mouse) @@ -44987,8 +40510,7 @@ - cortical subplate (embryonic mouse) - EMAPA:32703 + cortical subplate (embryonic mouse) @@ -45007,8 +40529,7 @@ - cerebral cortex subventricular zone (embryonic mouse) - EMAPA:32704 + cerebral cortex subventricular zone (embryonic mouse) @@ -45027,8 +40548,7 @@ - limb mesenchyme (embryonic mouse) - EMAPA:32705 + limb mesenchyme (embryonic mouse) @@ -45047,8 +40567,7 @@ - cerebral cortex ventricular layer (embryonic mouse) - EMAPA:32707 + cerebral cortex ventricular layer (embryonic mouse) @@ -45067,8 +40586,7 @@ - cortical plate (embryonic mouse) - EMAPA:32711 + cortical plate (embryonic mouse) @@ -45087,8 +40605,7 @@ - cortical intermediate zone (embryonic mouse) - EMAPA:32712 + cortical intermediate zone (embryonic mouse) @@ -45107,8 +40624,7 @@ - cerebral cortex marginal layer (embryonic mouse) - EMAPA:32713 + cerebral cortex marginal layer (embryonic mouse) @@ -45127,34 +40643,7 @@ - musculoskeletal system (embryonic mouse) - EMAPA:32714 - - - - - - - - - - - - - - - - - - - - - - muscle organ (embryonic mouse) - muscle structure (embryonic mouse) - muscle tissue (embryonic mouse) - musculature (embryonic mouse) - EMAPA:32715 + musculoskeletal system (embryonic mouse) @@ -45173,8 +40662,7 @@ - skeletal muscle tissue (embryonic mouse) - EMAPA:32716 + skeletal muscle tissue (embryonic mouse) @@ -45193,8 +40681,7 @@ - smooth muscle tissue (embryonic mouse) - EMAPA:32717 + smooth muscle tissue (embryonic mouse) @@ -45213,8 +40700,7 @@ - digit mesenchyme (embryonic mouse) - EMAPA:32719 + digit mesenchyme (embryonic mouse) @@ -45233,8 +40719,7 @@ - phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:32720 + phalanx pre-cartilage condensation (embryonic mouse) @@ -45253,8 +40738,7 @@ - phalanx cartilage element (embryonic mouse) - EMAPA:32721 + phalanx cartilage element (embryonic mouse) @@ -45273,8 +40757,7 @@ - autopod region (embryonic mouse) - EMAPA:32722 + autopod region (embryonic mouse) @@ -45293,8 +40776,7 @@ - autopod skin (embryonic mouse) - EMAPA:32723 + autopod skin (embryonic mouse) @@ -45313,8 +40795,7 @@ - digit (embryonic mouse) - EMAPA:32725 + digit (embryonic mouse) @@ -45333,8 +40814,7 @@ - skin of limb (embryonic mouse) - EMAPA:32726 + skin of limb (embryonic mouse) @@ -45353,8 +40833,7 @@ - limb epidermis (embryonic mouse) - EMAPA:32728 + limb epidermis (embryonic mouse) @@ -45373,30 +40852,7 @@ - appendicular skeleton (embryonic mouse) - EMAPA:32729 - - - - - - - - - - - - - - - - - - - - cartilage element (embryonic mouse) - cartilage tissue (embryonic mouse) - EMAPA:32730 + appendicular skeleton (embryonic mouse) @@ -45415,8 +40871,7 @@ - cartilaginous condensation (embryonic mouse) - EMAPA:32731 + cartilaginous condensation (embryonic mouse) @@ -45435,8 +40890,7 @@ - mesenchyme derived from neural crest (embryonic mouse) - EMAPA:32735 + mesenchyme derived from neural crest (embryonic mouse) @@ -45455,30 +40909,7 @@ - pre-cartilage condensation (embryonic mouse) - EMAPA:32736 - - - - - - - - - - - - - - - - - - - - neural crest (embryonic mouse) - region of neural crest (embryonic mouse) - EMAPA:32737 + pre-cartilage condensation (embryonic mouse) @@ -45497,8 +40928,7 @@ - epithelium (embryonic mouse) - EMAPA:32738 + epithelium (embryonic mouse) @@ -45517,8 +40947,7 @@ - intervertebral disk (embryonic mouse) - EMAPA:32739 + intervertebral disk (embryonic mouse) @@ -45537,8 +40966,7 @@ - vertebra (embryonic mouse) - EMAPA:32740 + vertebra (embryonic mouse) @@ -45557,8 +40985,7 @@ - choroid plexus (embryonic mouse) - EMAPA:32741 + choroid plexus (embryonic mouse) @@ -45577,8 +41004,7 @@ - choroid plexus of fourth ventricle (embryonic mouse) - EMAPA:32742 + choroid plexus of fourth ventricle (embryonic mouse) @@ -45597,8 +41023,7 @@ - blood vessel (embryonic mouse) - EMAPA:32743 + blood vessel (embryonic mouse) @@ -45617,8 +41042,7 @@ - apical ectodermal ridge (embryonic mouse) - EMAPA:32744 + apical ectodermal ridge (embryonic mouse) @@ -45637,8 +41061,7 @@ - endocardium of atrium (embryonic mouse) - EMAPA:32745 + endocardium of atrium (embryonic mouse) @@ -45657,8 +41080,7 @@ - myocardium of atrium (embryonic mouse) - EMAPA:32746 + myocardium of atrium (embryonic mouse) @@ -45677,8 +41099,7 @@ - endocardium of ventricle (embryonic mouse) - EMAPA:32747 + endocardium of ventricle (embryonic mouse) @@ -45697,8 +41118,7 @@ - myocardium of ventricle (embryonic mouse) - EMAPA:32748 + myocardium of ventricle (embryonic mouse) @@ -45717,8 +41137,7 @@ - pharyngeal membrane (embryonic mouse) - EMAPA:32749 + pharyngeal membrane (embryonic mouse) @@ -45737,8 +41156,7 @@ - pharyngeal cleft (embryonic mouse) - EMAPA:32750 + pharyngeal cleft (embryonic mouse) @@ -45757,30 +41175,7 @@ - pharyngeal pouch (embryonic mouse) - EMAPA:32752 - - - - - - - - - - - - - - - - - - - - early pharyngeal endoderm (embryonic mouse) - entire pharyngeal arch endoderm (embryonic mouse) - EMAPA:32754 + pharyngeal pouch (embryonic mouse) @@ -45799,8 +41194,7 @@ - pharyngeal arch mesenchymal region (embryonic mouse) - EMAPA:32755 + pharyngeal arch mesenchymal region (embryonic mouse) @@ -45819,8 +41213,7 @@ - eyelid epithelium (embryonic mouse) - EMAPA:32758 + eyelid epithelium (embryonic mouse) @@ -45839,8 +41232,7 @@ - eyelid mesenchyme (embryonic mouse) - EMAPA:32759 + eyelid mesenchyme (embryonic mouse) @@ -45859,8 +41251,7 @@ - bone marrow (embryonic mouse) - EMAPA:32760 + bone marrow (embryonic mouse) @@ -45879,8 +41270,7 @@ - body wall (embryonic mouse) - EMAPA:32761 + body wall (embryonic mouse) @@ -45899,8 +41289,7 @@ - hypoblast (generic) (embryonic mouse) - EMAPA:32762 + hypoblast (generic) (embryonic mouse) @@ -45919,8 +41308,7 @@ - face (embryonic mouse) - EMAPA:32763 + face (embryonic mouse) @@ -45939,8 +41327,7 @@ - ileum (embryonic mouse) - EMAPA:32764 + ileum (embryonic mouse) @@ -45959,8 +41346,7 @@ - 6th arch mesenchyme (embryonic mouse) - EMAPA:32765 + 6th arch mesenchyme (embryonic mouse) @@ -45979,8 +41365,7 @@ - pharyngeal arch 6 (embryonic mouse) - EMAPA:32766 + pharyngeal arch 6 (embryonic mouse) @@ -45999,8 +41384,7 @@ - piriform cortex (embryonic mouse) - EMAPA:32767 + piriform cortex (embryonic mouse) @@ -46019,8 +41403,7 @@ - CA1 field of hippocampus (embryonic mouse) - EMAPA:32768 + CA1 field of hippocampus (embryonic mouse) @@ -46039,8 +41422,7 @@ - CA2 field of hippocampus (embryonic mouse) - EMAPA:32769 + CA2 field of hippocampus (embryonic mouse) @@ -46059,8 +41441,7 @@ - CA3 field of hippocampus (embryonic mouse) - EMAPA:32770 + CA3 field of hippocampus (embryonic mouse) @@ -46079,30 +41460,7 @@ - CA4 field of hippocampus (embryonic mouse) - EMAPA:32771 - - - - - - - - - - - - - - - - - - - - Ammon's horn (embryonic mouse) - hippocampal field (embryonic mouse) - EMAPA:32772 + CA4 field of hippocampus (embryonic mouse) @@ -46121,8 +41479,7 @@ - papilla of tongue (embryonic mouse) - EMAPA:32777 + papilla of tongue (embryonic mouse) @@ -46141,8 +41498,7 @@ - pretectal region (embryonic mouse) - EMAPA:32778 + pretectal region (embryonic mouse) @@ -46161,8 +41517,7 @@ - stratum basale of epidermis (embryonic mouse) - EMAPA:32779 + stratum basale of epidermis (embryonic mouse) @@ -46181,8 +41536,7 @@ - pallidum (embryonic mouse) - EMAPA:32780 + pallidum (embryonic mouse) @@ -46201,8 +41555,7 @@ - central gray substance of midbrain (embryonic mouse) - EMAPA:32781 + central gray substance of midbrain (embryonic mouse) @@ -46221,8 +41574,7 @@ - bone element (embryonic mouse) - EMAPA:32782 + bone element (embryonic mouse) @@ -46241,8 +41593,7 @@ - tarsal region (embryonic mouse) - EMAPA:32783 + tarsal region (embryonic mouse) @@ -46261,8 +41612,7 @@ - carpal region (embryonic mouse) - EMAPA:32784 + carpal region (embryonic mouse) @@ -46281,8 +41631,7 @@ - stratum spinosum of epidermis (embryonic mouse) - EMAPA:32785 + stratum spinosum of epidermis (embryonic mouse) @@ -46301,8 +41650,7 @@ - stratum granulosum of epidermis (embryonic mouse) - EMAPA:32786 + stratum granulosum of epidermis (embryonic mouse) @@ -46321,8 +41669,7 @@ - stratum corneum of epidermis (embryonic mouse) - EMAPA:32787 + stratum corneum of epidermis (embryonic mouse) @@ -46341,8 +41688,7 @@ - foliate papilla (embryonic mouse) - EMAPA:32788 + foliate papilla (embryonic mouse) @@ -46361,8 +41707,7 @@ - nucleus accumbens (embryonic mouse) - EMAPA:32789 + nucleus accumbens (embryonic mouse) @@ -46381,8 +41726,7 @@ - brainstem nucleus (embryonic mouse) - EMAPA:32790 + brainstem nucleus (embryonic mouse) @@ -46401,8 +41745,7 @@ - crista ampullaris (embryonic mouse) - EMAPA:32791 + crista ampullaris (embryonic mouse) @@ -46421,8 +41764,7 @@ - hair inner root sheath (embryonic mouse) - EMAPA:32792 + hair inner root sheath (embryonic mouse) @@ -46441,8 +41783,7 @@ - hair outer root sheath (embryonic mouse) - EMAPA:32793 + hair outer root sheath (embryonic mouse) @@ -46461,8 +41802,7 @@ - left hepatic duct (embryonic mouse) - EMAPA:32795 + left hepatic duct (embryonic mouse) @@ -46481,8 +41821,7 @@ - future pituitary gland (embryonic mouse) - EMAPA:32796 + future pituitary gland (embryonic mouse) @@ -46501,8 +41840,7 @@ - right hepatic duct (embryonic mouse) - EMAPA:32797 + right hepatic duct (embryonic mouse) @@ -46521,8 +41859,7 @@ - ear epithelium (embryonic mouse) - EMAPA:32800 + ear epithelium (embryonic mouse) @@ -46541,8 +41878,7 @@ - pharyngotympanic tube epithelium (embryonic mouse) - EMAPA:32801 + pharyngotympanic tube epithelium (embryonic mouse) @@ -46561,30 +41897,7 @@ - postnatal subventricular zone (embryonic mouse) - EMAPA:32804 - - - - - - - - - - - - - - - - - - - - midface (embryonic mouse) - snout (embryonic mouse) - EMAPA:32806 + postnatal subventricular zone (embryonic mouse) @@ -46603,8 +41916,7 @@ - nerve (embryonic mouse) - EMAPA:32808 + nerve (embryonic mouse) @@ -46623,8 +41935,7 @@ - olfactory bulb (embryonic mouse) - EMAPA:32809 + olfactory bulb (embryonic mouse) @@ -46643,8 +41954,7 @@ - parathyroid gland (embryonic mouse) - EMAPA:32812 + parathyroid gland (embryonic mouse) @@ -46663,8 +41973,7 @@ - parasympathetic ganglion (embryonic mouse) - EMAPA:32813 + parasympathetic ganglion (embryonic mouse) @@ -46683,8 +41992,7 @@ - ganglion of peripheral nervous system (embryonic mouse) - EMAPA:32814 + ganglion of peripheral nervous system (embryonic mouse) @@ -46703,8 +42011,7 @@ - nerve (embryonic mouse) - EMAPA:32815 + nerve (embryonic mouse) @@ -46723,8 +42030,7 @@ - salivary gland epithelium (embryonic mouse) - EMAPA:32816 + salivary gland epithelium (embryonic mouse) @@ -46743,8 +42049,7 @@ - rhombomere floor plate (embryonic mouse) - EMAPA:32818 + rhombomere floor plate (embryonic mouse) @@ -46763,8 +42068,7 @@ - rhombomere lateral wall (embryonic mouse) - EMAPA:32819 + rhombomere lateral wall (embryonic mouse) @@ -46783,8 +42087,7 @@ - rhombomere roof plate (embryonic mouse) - EMAPA:32824 + rhombomere roof plate (embryonic mouse) @@ -46803,8 +42106,7 @@ - respiratory system epithelium (embryonic mouse) - EMAPA:32826 + respiratory system epithelium (embryonic mouse) @@ -46823,8 +42125,7 @@ - respiratory tract epithelium (embryonic mouse) - EMAPA:32827 + respiratory tract epithelium (embryonic mouse) @@ -46843,8 +42144,7 @@ - semicircular duct (embryonic mouse) - EMAPA:32830 + semicircular duct (embryonic mouse) @@ -46863,8 +42163,7 @@ - semicircular canal ampulla (embryonic mouse) - EMAPA:32831 + semicircular canal ampulla (embryonic mouse) @@ -46883,8 +42182,7 @@ - semicircular canal (embryonic mouse) - EMAPA:32832 + semicircular canal (embryonic mouse) @@ -46903,8 +42201,7 @@ - small intestine (embryonic mouse) - EMAPA:32834 + small intestine (embryonic mouse) @@ -46923,8 +42220,7 @@ - septum of telencephalon (embryonic mouse) - EMAPA:32837 + septum of telencephalon (embryonic mouse) @@ -46943,8 +42239,7 @@ - dermatome (embryonic mouse) - EMAPA:32838 + dermatome (embryonic mouse) @@ -46963,8 +42258,7 @@ - lip (embryonic mouse) - EMAPA:32839 + lip (embryonic mouse) @@ -46983,8 +42277,7 @@ - myotome (embryonic mouse) - EMAPA:32841 + myotome (embryonic mouse) @@ -47003,8 +42296,7 @@ - neocortex (embryonic mouse) - EMAPA:32842 + neocortex (embryonic mouse) @@ -47023,8 +42315,7 @@ - Ammon's horn (embryonic mouse) - EMAPA:32845 + Ammon's horn (embryonic mouse) @@ -47043,8 +42334,7 @@ - ganglion (embryonic mouse) - EMAPA:32846 + ganglion (embryonic mouse) @@ -47063,8 +42353,7 @@ - myenteric nerve plexus (embryonic mouse) - EMAPA:32847 + myenteric nerve plexus (embryonic mouse) @@ -47083,8 +42372,7 @@ - manual digit metacarpus cartilage element (embryonic mouse) - EMAPA:32849 + manual digit metacarpus cartilage element (embryonic mouse) @@ -47103,8 +42391,7 @@ - manual digit metacarpus pre-cartilage condensation (embryonic mouse) - EMAPA:32850 + manual digit metacarpus pre-cartilage condensation (embryonic mouse) @@ -47123,8 +42410,7 @@ - mesothelium (embryonic mouse) - EMAPA:32856 + mesothelium (embryonic mouse) @@ -47143,8 +42429,7 @@ - midbrain-hindbrain boundary (embryonic mouse) - EMAPA:32857 + midbrain-hindbrain boundary (embryonic mouse) @@ -47163,8 +42448,7 @@ - lung epithelium (embryonic mouse) - EMAPA:32860 + lung epithelium (embryonic mouse) @@ -47183,8 +42467,7 @@ - lung mesenchyme (embryonic mouse) - EMAPA:32866 + lung mesenchyme (embryonic mouse) @@ -47203,8 +42486,7 @@ - lung blood vessel (embryonic mouse) - EMAPA:32867 + lung blood vessel (embryonic mouse) @@ -47223,8 +42505,7 @@ - superior colliculus (embryonic mouse) - EMAPA:32869 + superior colliculus (embryonic mouse) @@ -47243,8 +42524,7 @@ - inferior colliculus (embryonic mouse) - EMAPA:32870 + inferior colliculus (embryonic mouse) @@ -47263,8 +42543,7 @@ - epithelium of lens (embryonic mouse) - EMAPA:32871 + epithelium of lens (embryonic mouse) @@ -47283,8 +42562,7 @@ - intestinal epithelium (embryonic mouse) - EMAPA:32873 + intestinal epithelium (embryonic mouse) @@ -47303,8 +42581,7 @@ - intestine (embryonic mouse) - EMAPA:32874 + intestine (embryonic mouse) @@ -47323,8 +42600,7 @@ - molar epithelium (embryonic mouse) - EMAPA:32878 + molar epithelium (embryonic mouse) @@ -47343,8 +42619,7 @@ - molar dental lamina (embryonic mouse) - EMAPA:32879 + molar dental lamina (embryonic mouse) @@ -47363,8 +42638,7 @@ - molar enamel organ (embryonic mouse) - EMAPA:32880 + molar enamel organ (embryonic mouse) @@ -47383,8 +42657,7 @@ - odontogenic mesenchyme of molar (embryonic mouse) - EMAPA:32881 + odontogenic mesenchyme of molar (embryonic mouse) @@ -47403,8 +42676,7 @@ - molar dental papilla (embryonic mouse) - EMAPA:32882 + molar dental papilla (embryonic mouse) @@ -47423,8 +42695,7 @@ - inner ear epithelium (embryonic mouse) - EMAPA:32883 + inner ear epithelium (embryonic mouse) @@ -47443,8 +42714,7 @@ - vestibular epithelium (embryonic mouse) - EMAPA:32884 + vestibular epithelium (embryonic mouse) @@ -47463,8 +42733,7 @@ - tooth enamel organ (embryonic mouse) - EMAPA:32888 + tooth enamel organ (embryonic mouse) @@ -47483,8 +42752,7 @@ - incisor tooth (embryonic mouse) - EMAPA:32889 + incisor tooth (embryonic mouse) @@ -47503,8 +42771,7 @@ - epithelium of incisor (embryonic mouse) - EMAPA:32890 + epithelium of incisor (embryonic mouse) @@ -47523,8 +42790,7 @@ - uncondensed odontogenic mesenchyme (embryonic mouse) - EMAPA:32891 + uncondensed odontogenic mesenchyme (embryonic mouse) @@ -47543,8 +42809,7 @@ - odontogenic papilla (embryonic mouse) - EMAPA:32892 + odontogenic papilla (embryonic mouse) @@ -47563,8 +42828,7 @@ - odontogenic papilla of incisor (embryonic mouse) - EMAPA:32893 + odontogenic papilla of incisor (embryonic mouse) @@ -47583,8 +42847,7 @@ - incisor mesenchyme (embryonic mouse) - EMAPA:32894 + incisor mesenchyme (embryonic mouse) @@ -47603,8 +42866,7 @@ - incisor enamel organ (embryonic mouse) - EMAPA:32895 + incisor enamel organ (embryonic mouse) @@ -47623,8 +42885,7 @@ - incisor dental lamina (embryonic mouse) - EMAPA:32896 + incisor dental lamina (embryonic mouse) @@ -47643,8 +42904,7 @@ - molar tooth (embryonic mouse) - EMAPA:32897 + molar tooth (embryonic mouse) @@ -47663,8 +42923,7 @@ - dental lamina (embryonic mouse) - EMAPA:32902 + dental lamina (embryonic mouse) @@ -47683,8 +42942,7 @@ - dental epithelium (embryonic mouse) - EMAPA:32903 + dental epithelium (embryonic mouse) @@ -47703,8 +42961,7 @@ - jaw epithelium (embryonic mouse) - EMAPA:32904 + jaw epithelium (embryonic mouse) @@ -47723,8 +42980,7 @@ - jaw region (embryonic mouse) - EMAPA:32905 + jaw region (embryonic mouse) @@ -47743,8 +42999,7 @@ - calcareous tooth (embryonic mouse) - EMAPA:32906 + calcareous tooth (embryonic mouse) @@ -47763,8 +43018,7 @@ - jaw mesenchyme (embryonic mouse) - EMAPA:32907 + jaw mesenchyme (embryonic mouse) @@ -47783,8 +43037,7 @@ - lumen of digestive tract (embryonic mouse) - EMAPA:32908 + lumen of digestive tract (embryonic mouse) @@ -47803,8 +43056,7 @@ - gut mesentery (embryonic mouse) - EMAPA:32911 + gut mesentery (embryonic mouse) @@ -47823,8 +43075,7 @@ - hindbrain marginal layer (embryonic mouse) - EMAPA:32916 + hindbrain marginal layer (embryonic mouse) @@ -47843,8 +43094,7 @@ - hindbrain cortical intermediate zone (embryonic mouse) - EMAPA:32917 + hindbrain cortical intermediate zone (embryonic mouse) @@ -47863,8 +43113,7 @@ - frontonasal process epithelium (embryonic mouse) - EMAPA:32918 + frontonasal process epithelium (embryonic mouse) @@ -47883,8 +43132,7 @@ - forebrain ventricular layer (embryonic mouse) - EMAPA:32921 + forebrain ventricular layer (embryonic mouse) @@ -47903,8 +43151,7 @@ - foregut epithelium (embryonic mouse) - EMAPA:32922 + foregut epithelium (embryonic mouse) @@ -47923,8 +43170,7 @@ - parenchyma of pancreas (embryonic mouse) - EMAPA:32925 + parenchyma of pancreas (embryonic mouse) @@ -47943,8 +43189,7 @@ - islet of Langerhans (embryonic mouse) - EMAPA:32927 + islet of Langerhans (embryonic mouse) @@ -47963,8 +43208,7 @@ - digestive tract epithelium (embryonic mouse) - EMAPA:32928 + digestive tract epithelium (embryonic mouse) @@ -47983,8 +43227,7 @@ - endodermal part of digestive tract (embryonic mouse) - EMAPA:32930 + endodermal part of digestive tract (embryonic mouse) @@ -48003,8 +43246,7 @@ - metatarsal bone (embryonic mouse) - EMAPA:32940 + metatarsal bone (embryonic mouse) @@ -48023,8 +43265,7 @@ - phalanx of pes (embryonic mouse) - EMAPA:32941 + phalanx of pes (embryonic mouse) @@ -48043,8 +43284,7 @@ - pedal digit skin (embryonic mouse) - EMAPA:32942 + pedal digit skin (embryonic mouse) @@ -48063,8 +43303,7 @@ - interdigital region between pedal digits (embryonic mouse) - EMAPA:32945 + interdigital region between pedal digits (embryonic mouse) @@ -48083,8 +43322,7 @@ - pedal digit epithelium (embryonic mouse) - EMAPA:32946 + pedal digit epithelium (embryonic mouse) @@ -48103,8 +43341,7 @@ - pedal digit mesenchyme (embryonic mouse) - EMAPA:32947 + pedal digit mesenchyme (embryonic mouse) @@ -48123,8 +43360,7 @@ - pedal digit phalanx cartilage element (embryonic mouse) - EMAPA:32948 + pedal digit phalanx cartilage element (embryonic mouse) @@ -48143,8 +43379,7 @@ - pes joint (embryonic mouse) - EMAPA:32949 + pes joint (embryonic mouse) @@ -48163,8 +43398,7 @@ - pedal digit phalanx pre-cartilage condensation (embryonic mouse) - EMAPA:32950 + pedal digit phalanx pre-cartilage condensation (embryonic mouse) @@ -48183,8 +43417,7 @@ - pedal digit metatarsal cartilage element (embryonic mouse) - EMAPA:32951 + pedal digit metatarsal cartilage element (embryonic mouse) @@ -48203,8 +43436,7 @@ - pancreatic duct (embryonic mouse) - EMAPA:32952 + pancreatic duct (embryonic mouse) @@ -48223,8 +43455,7 @@ - dorsal pancreatic duct (embryonic mouse) - EMAPA:32953 + dorsal pancreatic duct (embryonic mouse) @@ -48243,8 +43474,7 @@ - mesenchyme of interdigital region of pes (embryonic mouse) - EMAPA:32955 + mesenchyme of interdigital region of pes (embryonic mouse) @@ -48263,8 +43493,7 @@ - pedal digit metatarsal pre-cartilage condensation (embryonic mouse) - EMAPA:32956 + pedal digit metatarsal pre-cartilage condensation (embryonic mouse) @@ -48283,8 +43512,7 @@ - nerve of clitoris (embryonic mouse) - EMAPA:35044 + nerve of clitoris (embryonic mouse) @@ -48303,8 +43531,7 @@ - nerve of penis (embryonic mouse) - EMAPA:35057 + nerve of penis (embryonic mouse) @@ -48323,8 +43550,7 @@ - third ventricle ependyma (embryonic mouse) - EMAPA:35100 + third ventricle ependyma (embryonic mouse) @@ -48343,8 +43569,7 @@ - abdomen (embryonic mouse) - EMAPA:35102 + abdomen (embryonic mouse) @@ -48363,8 +43588,7 @@ - muscle of abdomen (embryonic mouse) - EMAPA:35103 + muscle of abdomen (embryonic mouse) @@ -48383,8 +43607,7 @@ - abdominal segment of trunk (embryonic mouse) - EMAPA:35104 + abdominal segment of trunk (embryonic mouse) @@ -48403,8 +43626,7 @@ - abducens nucleus (embryonic mouse) - EMAPA:35105 + abducens nucleus (embryonic mouse) @@ -48423,8 +43645,7 @@ - accessory olfactory bulb (embryonic mouse) - EMAPA:35106 + accessory olfactory bulb (embryonic mouse) @@ -48443,8 +43664,7 @@ - accessory olfactory bulb external plexiform layer (embryonic mouse) - EMAPA:35107 + accessory olfactory bulb external plexiform layer (embryonic mouse) @@ -48463,8 +43683,7 @@ - accessory olfactory bulb glomerular layer (embryonic mouse) - EMAPA:35108 + accessory olfactory bulb glomerular layer (embryonic mouse) @@ -48483,8 +43702,7 @@ - accessory olfactory bulb granule cell layer (embryonic mouse) - EMAPA:35109 + accessory olfactory bulb granule cell layer (embryonic mouse) @@ -48503,8 +43721,7 @@ - accessory olfactory bulb internal plexiform layer (embryonic mouse) - EMAPA:35110 + accessory olfactory bulb internal plexiform layer (embryonic mouse) @@ -48523,8 +43740,7 @@ - accessory olfactory bulb mitral cell layer (embryonic mouse) - EMAPA:35111 + accessory olfactory bulb mitral cell layer (embryonic mouse) @@ -48543,8 +43759,7 @@ - adipose tissue (embryonic mouse) - EMAPA:35112 + adipose tissue (embryonic mouse) @@ -48563,8 +43778,7 @@ - adrenal gland cortex zone (embryonic mouse) - EMAPA:35113 + adrenal gland cortex zone (embryonic mouse) @@ -48583,8 +43797,7 @@ - zona fasciculata of adrenal gland (embryonic mouse) - EMAPA:35114 + zona fasciculata of adrenal gland (embryonic mouse) @@ -48603,8 +43816,7 @@ - zona glomerulosa of adrenal gland (embryonic mouse) - EMAPA:35115 + zona glomerulosa of adrenal gland (embryonic mouse) @@ -48623,8 +43835,7 @@ - zona reticularis of adrenal gland (embryonic mouse) - EMAPA:35116 + zona reticularis of adrenal gland (embryonic mouse) @@ -48643,8 +43854,7 @@ - gastrointestinal system smooth muscle (embryonic mouse) - EMAPA:35117 + gastrointestinal system smooth muscle (embryonic mouse) @@ -48663,8 +43873,7 @@ - alveolar ridge (embryonic mouse) - EMAPA:35118 + alveolar ridge (embryonic mouse) @@ -48683,8 +43892,7 @@ - alveolar sac (embryonic mouse) - EMAPA:35119 + alveolar sac (embryonic mouse) @@ -48703,8 +43911,7 @@ - alveolar wall (embryonic mouse) - EMAPA:35120 + alveolar wall (embryonic mouse) @@ -48723,8 +43930,7 @@ - pulmonary alveolus epithelium (embryonic mouse) - EMAPA:35121 + pulmonary alveolus epithelium (embryonic mouse) @@ -48743,8 +43949,7 @@ - alveolar smooth muscle (embryonic mouse) - EMAPA:35122 + alveolar smooth muscle (embryonic mouse) @@ -48763,8 +43968,7 @@ - ampullary gland (embryonic mouse) - EMAPA:35123 + ampullary gland (embryonic mouse) @@ -48783,8 +43987,7 @@ - amygdalohippocampal area (embryonic mouse) - EMAPA:35124 + amygdalohippocampal area (embryonic mouse) @@ -48803,8 +44006,7 @@ - amygdalopiriform transition area (embryonic mouse) - EMAPA:35125 + amygdalopiriform transition area (embryonic mouse) @@ -48823,8 +44025,7 @@ - ankle joint (embryonic mouse) - EMAPA:35126 + ankle joint (embryonic mouse) @@ -48843,30 +44044,7 @@ - anterior amygdaloid area (embryonic mouse) - EMAPA:35127 - - - - - - - - - - - - - - - - - - - - amygdalohippocampal area (embryonic mouse) - anterior cortical amygdaloid nucleus (embryonic mouse) - EMAPA:35128 + anterior amygdaloid area (embryonic mouse) @@ -48885,8 +44063,7 @@ - anterodorsal nucleus of thalamus (embryonic mouse) - EMAPA:35129 + anterodorsal nucleus of thalamus (embryonic mouse) @@ -48905,8 +44082,7 @@ - anterior olfactory nucleus (embryonic mouse) - EMAPA:35131 + anterior olfactory nucleus (embryonic mouse) @@ -48925,30 +44101,7 @@ - anterior nuclear group (embryonic mouse) - EMAPA:35132 - - - - - - - - - - - - - - - - - - - - anteroventral nucleus of thalamus (embryonic mouse) - ventral anterior nucleus of thalamus (embryonic mouse) - EMAPA:35133 + anterior nuclear group (embryonic mouse) @@ -48967,8 +44120,7 @@ - aorta endothelium (embryonic mouse) - EMAPA:35134 + aorta endothelium (embryonic mouse) @@ -48987,8 +44139,7 @@ - aorta smooth muscle tissue (embryonic mouse) - EMAPA:35135 + aorta smooth muscle tissue (embryonic mouse) @@ -49007,8 +44158,7 @@ - aorta tunica adventitia (embryonic mouse) - EMAPA:35136 + aorta tunica adventitia (embryonic mouse) @@ -49027,8 +44177,7 @@ - aorta tunica intima (embryonic mouse) - EMAPA:35137 + aorta tunica intima (embryonic mouse) @@ -49047,8 +44196,7 @@ - aorta tunica media (embryonic mouse) - EMAPA:35138 + aorta tunica media (embryonic mouse) @@ -49067,8 +44215,7 @@ - aorta wall (embryonic mouse) - EMAPA:35139 + aorta wall (embryonic mouse) @@ -49087,8 +44234,7 @@ - vermiform appendix (embryonic mouse) - EMAPA:35140 + vermiform appendix (embryonic mouse) @@ -49107,8 +44253,7 @@ - apocrine gland (embryonic mouse) - EMAPA:35141 + apocrine gland (embryonic mouse) @@ -49127,8 +44272,7 @@ - arcuate nucleus of hypothalamus (embryonic mouse) - EMAPA:35142 + arcuate nucleus of hypothalamus (embryonic mouse) @@ -49147,8 +44291,7 @@ - area postrema (embryonic mouse) - EMAPA:35143 + area postrema (embryonic mouse) @@ -49167,8 +44310,7 @@ - arterial blood vessel (embryonic mouse) - EMAPA:35144 + arterial blood vessel (embryonic mouse) @@ -49187,8 +44329,7 @@ - arterial system endothelium (embryonic mouse) - EMAPA:35145 + arterial system endothelium (embryonic mouse) @@ -49207,8 +44348,7 @@ - arteriole (embryonic mouse) - EMAPA:35146 + arteriole (embryonic mouse) @@ -49227,8 +44367,7 @@ - artery (embryonic mouse) - EMAPA:35147 + artery (embryonic mouse) @@ -49247,8 +44386,7 @@ - endothelium of artery (embryonic mouse) - EMAPA:35148 + endothelium of artery (embryonic mouse) @@ -49267,8 +44405,7 @@ - articular cartilage of joint (embryonic mouse) - EMAPA:35149 + articular cartilage of joint (embryonic mouse) @@ -49287,8 +44424,7 @@ - articular system (embryonic mouse) - EMAPA:35150 + articular system (embryonic mouse) @@ -49307,8 +44443,7 @@ - ascending colon (embryonic mouse) - EMAPA:35151 + ascending colon (embryonic mouse) @@ -49327,8 +44462,7 @@ - bundle of His (embryonic mouse) - EMAPA:35152 + bundle of His (embryonic mouse) @@ -49347,8 +44481,7 @@ - atrioventricular node (embryonic mouse) - EMAPA:35153 + atrioventricular node (embryonic mouse) @@ -49367,8 +44500,7 @@ - atrioventricular valve (embryonic mouse) - EMAPA:35154 + atrioventricular valve (embryonic mouse) @@ -49387,8 +44519,7 @@ - right lung lobe (embryonic mouse) - EMAPA:35155 + right lung lobe (embryonic mouse) @@ -49407,8 +44538,7 @@ - auditory cortex (embryonic mouse) - EMAPA:35156 + auditory cortex (embryonic mouse) @@ -49427,8 +44557,7 @@ - auricular cartilage (embryonic mouse) - EMAPA:35158 + auricular cartilage (embryonic mouse) @@ -49447,8 +44576,7 @@ - auricular muscle (embryonic mouse) - EMAPA:35159 + auricular muscle (embryonic mouse) @@ -49467,8 +44595,7 @@ - autopod joint (embryonic mouse) - EMAPA:35160 + autopod joint (embryonic mouse) @@ -49487,8 +44614,7 @@ - muscle of back (embryonic mouse) - EMAPA:35161 + muscle of back (embryonic mouse) @@ -49507,8 +44633,7 @@ - dorsal trunk (embryonic mouse) - EMAPA:35162 + dorsal trunk (embryonic mouse) @@ -49527,8 +44652,7 @@ - barrel cortex (embryonic mouse) - EMAPA:35163 + barrel cortex (embryonic mouse) @@ -49547,8 +44671,7 @@ - basal forebrain (embryonic mouse) - EMAPA:35164 + basal forebrain (embryonic mouse) @@ -49567,8 +44690,7 @@ - basal ventral medial nucleus of thalamus (embryonic mouse) - EMAPA:35165 + basal ventral medial nucleus of thalamus (embryonic mouse) @@ -49587,8 +44709,7 @@ - basilar membrane of cochlea (embryonic mouse) - EMAPA:35166 + basilar membrane of cochlea (embryonic mouse) @@ -49607,8 +44728,7 @@ - basal amygdaloid nucleus (embryonic mouse) - EMAPA:35167 + basal amygdaloid nucleus (embryonic mouse) @@ -49627,8 +44747,7 @@ - medial part of basal amygdaloid nucleus (embryonic mouse) - EMAPA:35168 + medial part of basal amygdaloid nucleus (embryonic mouse) @@ -49647,8 +44766,7 @@ - bed nucleus of stria terminalis (embryonic mouse) - EMAPA:35169 + bed nucleus of stria terminalis (embryonic mouse) @@ -49667,8 +44785,7 @@ - biceps femoris (embryonic mouse) - EMAPA:35170 + biceps femoris (embryonic mouse) @@ -49687,8 +44804,7 @@ - bile duct (embryonic mouse) - EMAPA:35171 + bile duct (embryonic mouse) @@ -49707,8 +44823,7 @@ - biliary tree (embryonic mouse) - EMAPA:35172 + biliary tree (embryonic mouse) @@ -49727,8 +44842,7 @@ - fundus of urinary bladder (embryonic mouse) - EMAPA:35173 + fundus of urinary bladder (embryonic mouse) @@ -49747,8 +44861,7 @@ - trigone of urinary bladder (embryonic mouse) - EMAPA:35174 + trigone of urinary bladder (embryonic mouse) @@ -49767,8 +44880,7 @@ - wall of urinary bladder (embryonic mouse) - EMAPA:35175 + wall of urinary bladder (embryonic mouse) @@ -49787,8 +44899,7 @@ - blood vessel endothelium (embryonic mouse) - EMAPA:35176 + blood vessel endothelium (embryonic mouse) @@ -49807,8 +44918,7 @@ - blood vessel smooth muscle (embryonic mouse) - EMAPA:35177 + blood vessel smooth muscle (embryonic mouse) @@ -49827,8 +44937,7 @@ - organism substance (embryonic mouse) - EMAPA:35178 + organism substance (embryonic mouse) @@ -49847,8 +44956,7 @@ - bone tissue (embryonic mouse) - EMAPA:35179 + bone tissue (embryonic mouse) @@ -49867,8 +44975,7 @@ - brain blood vessel (embryonic mouse) - EMAPA:35182 + brain blood vessel (embryonic mouse) @@ -49887,8 +44994,7 @@ - brain ependyma (embryonic mouse) - EMAPA:35183 + brain ependyma (embryonic mouse) @@ -49907,8 +45013,7 @@ - brain gray matter (embryonic mouse) - EMAPA:35184 + brain gray matter (embryonic mouse) @@ -49927,8 +45032,7 @@ - nucleus of brain (embryonic mouse) - EMAPA:35185 + nucleus of brain (embryonic mouse) @@ -49947,8 +45051,7 @@ - vasculature of brain (embryonic mouse) - EMAPA:35186 + vasculature of brain (embryonic mouse) @@ -49967,8 +45070,7 @@ - brain white matter (embryonic mouse) - EMAPA:35187 + brain white matter (embryonic mouse) @@ -49987,8 +45089,7 @@ - reticular formation (embryonic mouse) - EMAPA:35188 + reticular formation (embryonic mouse) @@ -50007,8 +45108,7 @@ - brainstem white matter (embryonic mouse) - EMAPA:35189 + brainstem white matter (embryonic mouse) @@ -50027,8 +45127,7 @@ - cartilage of bronchus (embryonic mouse) - EMAPA:35192 + cartilage of bronchus (embryonic mouse) @@ -50047,8 +45146,7 @@ - bronchus connective tissue (embryonic mouse) - EMAPA:35193 + bronchus connective tissue (embryonic mouse) @@ -50067,8 +45165,7 @@ - lamina propria of bronchus (embryonic mouse) - EMAPA:35194 + lamina propria of bronchus (embryonic mouse) @@ -50087,8 +45184,7 @@ - bronchus smooth muscle (embryonic mouse) - EMAPA:35195 + bronchus smooth muscle (embryonic mouse) @@ -50107,8 +45203,7 @@ - pyramidal layer of CA1 (embryonic mouse) - EMAPA:35196 + pyramidal layer of CA1 (embryonic mouse) @@ -50127,8 +45222,7 @@ - caecum (embryonic mouse) - EMAPA:35197 + caecum (embryonic mouse) @@ -50147,8 +45241,7 @@ - capillary (embryonic mouse) - EMAPA:35198 + capillary (embryonic mouse) @@ -50167,8 +45260,7 @@ - cardiovascular system endothelium (embryonic mouse) - EMAPA:35201 + cardiovascular system endothelium (embryonic mouse) @@ -50187,8 +45279,7 @@ - celiac artery (embryonic mouse) - EMAPA:35202 + celiac artery (embryonic mouse) @@ -50207,8 +45298,7 @@ - cementum (embryonic mouse) - EMAPA:35203 + cementum (embryonic mouse) @@ -50227,8 +45317,7 @@ - central amygdaloid nucleus (embryonic mouse) - EMAPA:35204 + central amygdaloid nucleus (embryonic mouse) @@ -50247,8 +45336,7 @@ - central lateral nucleus (embryonic mouse) - EMAPA:35205 + central lateral nucleus (embryonic mouse) @@ -50267,8 +45355,7 @@ - central medial nucleus (embryonic mouse) - EMAPA:35206 + central medial nucleus (embryonic mouse) @@ -50287,8 +45374,7 @@ - ventricle of nervous system (embryonic mouse) - EMAPA:35209 + ventricle of nervous system (embryonic mouse) @@ -50307,8 +45393,7 @@ - central dorsal nucleus of thalamus (embryonic mouse) - EMAPA:35210 + central dorsal nucleus of thalamus (embryonic mouse) @@ -50327,8 +45412,7 @@ - cerebellar cortex (embryonic mouse) - EMAPA:35211 + cerebellar cortex (embryonic mouse) @@ -50347,8 +45431,7 @@ - cerebellar layer (embryonic mouse) - EMAPA:35212 + cerebellar layer (embryonic mouse) @@ -50367,8 +45450,7 @@ - cerebellar peduncle (embryonic mouse) - EMAPA:35213 + cerebellar peduncle (embryonic mouse) @@ -50387,8 +45469,7 @@ - cerebellar vermis (embryonic mouse) - EMAPA:35214 + cerebellar vermis (embryonic mouse) @@ -50407,8 +45488,7 @@ - anterior lobe of cerebellum (embryonic mouse) - EMAPA:35215 + anterior lobe of cerebellum (embryonic mouse) @@ -50427,8 +45507,7 @@ - cerebellum external granule cell layer (embryonic mouse) - EMAPA:35216 + cerebellum external granule cell layer (embryonic mouse) @@ -50447,8 +45526,7 @@ - granular layer of cerebellar cortex (embryonic mouse) - EMAPA:35217 + granular layer of cerebellar cortex (embryonic mouse) @@ -50467,8 +45545,7 @@ - cerebellar hemisphere (embryonic mouse) - EMAPA:35218 + cerebellar hemisphere (embryonic mouse) @@ -50487,8 +45564,7 @@ - cerebellum internal granule cell layer (embryonic mouse) - EMAPA:35219 + cerebellum internal granule cell layer (embryonic mouse) @@ -50507,8 +45583,7 @@ - cerebellum lobe (embryonic mouse) - EMAPA:35220 + cerebellum lobe (embryonic mouse) @@ -50527,8 +45602,7 @@ - molecular layer of cerebellar cortex (embryonic mouse) - EMAPA:35221 + molecular layer of cerebellar cortex (embryonic mouse) @@ -50547,8 +45621,7 @@ - posterior lobe of cerebellum (embryonic mouse) - EMAPA:35222 + posterior lobe of cerebellum (embryonic mouse) @@ -50567,8 +45640,7 @@ - Purkinje cell layer of cerebellar cortex (embryonic mouse) - EMAPA:35223 + Purkinje cell layer of cerebellar cortex (embryonic mouse) @@ -50587,8 +45659,7 @@ - cerebellum vermis lobule (embryonic mouse) - EMAPA:35224 + cerebellum vermis lobule (embryonic mouse) @@ -50607,8 +45678,7 @@ - cerebellum vermis lobule I (embryonic mouse) - EMAPA:35225 + cerebellum vermis lobule I (embryonic mouse) @@ -50627,8 +45697,7 @@ - cerebellum vermis lobule II (embryonic mouse) - EMAPA:35226 + cerebellum vermis lobule II (embryonic mouse) @@ -50647,8 +45716,7 @@ - cerebellum vermis lobule III (embryonic mouse) - EMAPA:35227 + cerebellum vermis lobule III (embryonic mouse) @@ -50667,8 +45735,7 @@ - cerebellum vermis lobule IV (embryonic mouse) - EMAPA:35228 + cerebellum vermis lobule IV (embryonic mouse) @@ -50687,8 +45754,7 @@ - cerebellum vermis lobule IX (embryonic mouse) - EMAPA:35229 + cerebellum vermis lobule IX (embryonic mouse) @@ -50707,8 +45773,7 @@ - cerebellum vermis lobule V (embryonic mouse) - EMAPA:35230 + cerebellum vermis lobule V (embryonic mouse) @@ -50727,8 +45792,7 @@ - cerebellum vermis lobule VI (embryonic mouse) - EMAPA:35231 + cerebellum vermis lobule VI (embryonic mouse) @@ -50747,8 +45811,7 @@ - cerebellum vermis lobule VII (embryonic mouse) - EMAPA:35232 + cerebellum vermis lobule VII (embryonic mouse) @@ -50767,8 +45830,7 @@ - cerebellum vermis lobule VIII (embryonic mouse) - EMAPA:35233 + cerebellum vermis lobule VIII (embryonic mouse) @@ -50787,8 +45849,7 @@ - cerebellum vermis lobule X (embryonic mouse) - EMAPA:35234 + cerebellum vermis lobule X (embryonic mouse) @@ -50807,8 +45868,7 @@ - white matter of cerebellum (embryonic mouse) - EMAPA:35235 + white matter of cerebellum (embryonic mouse) @@ -50827,8 +45887,7 @@ - cerebral hemisphere white matter (embryonic mouse) - EMAPA:35237 + cerebral hemisphere white matter (embryonic mouse) @@ -50847,8 +45906,7 @@ - neurocranium bone (embryonic mouse) - EMAPA:35238 + neurocranium bone (embryonic mouse) @@ -50867,8 +45925,7 @@ - ciliary epithelium (embryonic mouse) - EMAPA:35239 + ciliary epithelium (embryonic mouse) @@ -50887,8 +45944,7 @@ - ciliary muscle (embryonic mouse) - EMAPA:35240 + ciliary muscle (embryonic mouse) @@ -50907,8 +45963,7 @@ - ciliary stroma (embryonic mouse) - EMAPA:35241 + ciliary stroma (embryonic mouse) @@ -50927,8 +45982,7 @@ - cingulate cortex (embryonic mouse) - EMAPA:35242 + cingulate cortex (embryonic mouse) @@ -50947,8 +46001,7 @@ - circumventricular organ (embryonic mouse) - EMAPA:35243 + circumventricular organ (embryonic mouse) @@ -50967,8 +46020,7 @@ - claustrum of brain (embryonic mouse) - EMAPA:35244 + claustrum of brain (embryonic mouse) @@ -50987,8 +46039,7 @@ - coat hair follicle (embryonic mouse) - EMAPA:35246 + coat hair follicle (embryonic mouse) @@ -51007,8 +46058,7 @@ - cochlear nucleus (embryonic mouse) - EMAPA:35248 + cochlear nucleus (embryonic mouse) @@ -51027,8 +46077,7 @@ - compact bone tissue (embryonic mouse) - EMAPA:35250 + compact bone tissue (embryonic mouse) @@ -51047,8 +46096,7 @@ - connective tissue (embryonic mouse) - EMAPA:35251 + connective tissue (embryonic mouse) @@ -51067,8 +46115,7 @@ - corpus callosum (embryonic mouse) - EMAPA:35253 + corpus callosum (embryonic mouse) @@ -51087,8 +46134,7 @@ - cortical amygdaloid nucleus (embryonic mouse) - EMAPA:35254 + cortical amygdaloid nucleus (embryonic mouse) @@ -51107,8 +46153,7 @@ - cortical layer I (embryonic mouse) - EMAPA:35255 + cortical layer I (embryonic mouse) @@ -51127,8 +46172,7 @@ - cortical layer II (embryonic mouse) - EMAPA:35256 + cortical layer II (embryonic mouse) @@ -51147,8 +46191,7 @@ - cortical layer III (embryonic mouse) - EMAPA:35257 + cortical layer III (embryonic mouse) @@ -51167,8 +46210,7 @@ - cortical layer IV (embryonic mouse) - EMAPA:35258 + cortical layer IV (embryonic mouse) @@ -51187,8 +46229,7 @@ - cortical layer V (embryonic mouse) - EMAPA:35259 + cortical layer V (embryonic mouse) @@ -51207,8 +46248,7 @@ - cortical layer VI (embryonic mouse) - EMAPA:35260 + cortical layer VI (embryonic mouse) @@ -51227,8 +46267,7 @@ - cortical preplate (embryonic mouse) - EMAPA:35261 + cortical preplate (embryonic mouse) @@ -51247,8 +46286,7 @@ - costal cartilage (embryonic mouse) - EMAPA:35262 + costal cartilage (embryonic mouse) @@ -51267,8 +46305,7 @@ - cranial suture (embryonic mouse) - EMAPA:35263 + cranial suture (embryonic mouse) @@ -51287,8 +46324,7 @@ - cranial synchondrosis (embryonic mouse) - EMAPA:35264 + cranial synchondrosis (embryonic mouse) @@ -51307,8 +46343,7 @@ - crypt of Lieberkuhn (embryonic mouse) - EMAPA:35266 + crypt of Lieberkuhn (embryonic mouse) @@ -51327,8 +46362,7 @@ - cumulus oophorus (embryonic mouse) - EMAPA:35267 + cumulus oophorus (embryonic mouse) @@ -51347,8 +46381,7 @@ - cuneate nucleus (embryonic mouse) - EMAPA:35268 + cuneate nucleus (embryonic mouse) @@ -51367,8 +46400,7 @@ - decidua (embryonic mouse) - EMAPA:35269 + decidua (embryonic mouse) @@ -51387,8 +46419,7 @@ - decidua basalis (embryonic mouse) - EMAPA:35270 + decidua basalis (embryonic mouse) @@ -51407,8 +46438,7 @@ - decidua capsularis (embryonic mouse) - EMAPA:35271 + decidua capsularis (embryonic mouse) @@ -51427,8 +46457,7 @@ - nucleus of cerebellar nuclear complex (embryonic mouse) - EMAPA:35272 + nucleus of cerebellar nuclear complex (embryonic mouse) @@ -51447,8 +46476,7 @@ - dental pulp (embryonic mouse) - EMAPA:35274 + dental pulp (embryonic mouse) @@ -51467,8 +46495,7 @@ - dental follicle (embryonic mouse) - EMAPA:35275 + dental follicle (embryonic mouse) @@ -51487,8 +46514,7 @@ - dentate gyrus granule cell layer (embryonic mouse) - EMAPA:35276 + dentate gyrus granule cell layer (embryonic mouse) @@ -51507,8 +46533,7 @@ - hilus of dentate gyrus (embryonic mouse) - EMAPA:35277 + hilus of dentate gyrus (embryonic mouse) @@ -51527,8 +46552,7 @@ - layer of dentate gyrus (embryonic mouse) - EMAPA:35278 + layer of dentate gyrus (embryonic mouse) @@ -51547,8 +46571,7 @@ - dentate gyrus molecular layer (embryonic mouse) - EMAPA:35279 + dentate gyrus molecular layer (embryonic mouse) @@ -51567,8 +46590,7 @@ - dentate gyrus polymorphic layer (embryonic mouse) - EMAPA:35280 + dentate gyrus polymorphic layer (embryonic mouse) @@ -51587,8 +46609,7 @@ - dentine (embryonic mouse) - EMAPA:35281 + dentine (embryonic mouse) @@ -51607,8 +46628,7 @@ - papillary layer of dermis (embryonic mouse) - EMAPA:35282 + papillary layer of dermis (embryonic mouse) @@ -51627,8 +46647,7 @@ - reticular layer of dermis (embryonic mouse) - EMAPA:35283 + reticular layer of dermis (embryonic mouse) @@ -51647,8 +46666,7 @@ - descending colon (embryonic mouse) - EMAPA:35285 + descending colon (embryonic mouse) @@ -51667,8 +46685,7 @@ - dilatator pupillae (embryonic mouse) - EMAPA:35286 + dilatator pupillae (embryonic mouse) @@ -51687,8 +46704,7 @@ - distal phalanx (embryonic mouse) - EMAPA:35287 + distal phalanx (embryonic mouse) @@ -51707,8 +46723,7 @@ - dorsal cochlear nucleus (embryonic mouse) - EMAPA:35289 + dorsal cochlear nucleus (embryonic mouse) @@ -51727,8 +46742,7 @@ - dorsal lateral geniculate nucleus (embryonic mouse) - EMAPA:35290 + dorsal lateral geniculate nucleus (embryonic mouse) @@ -51747,8 +46761,7 @@ - dorsal motor nucleus of vagus nerve (embryonic mouse) - EMAPA:35291 + dorsal motor nucleus of vagus nerve (embryonic mouse) @@ -51767,8 +46780,7 @@ - dorsal nasal artery (embryonic mouse) - EMAPA:35292 + dorsal nasal artery (embryonic mouse) @@ -51787,8 +46799,7 @@ - dorsal raphe nucleus (embryonic mouse) - EMAPA:35293 + dorsal raphe nucleus (embryonic mouse) @@ -51807,8 +46818,7 @@ - dorsal tegmental nucleus (embryonic mouse) - EMAPA:35294 + dorsal tegmental nucleus (embryonic mouse) @@ -51827,8 +46837,7 @@ - dorsal thalamus (embryonic mouse) - EMAPA:35295 + dorsal thalamus (embryonic mouse) @@ -51847,8 +46856,7 @@ - medial dorsal nucleus of thalamus (embryonic mouse) - EMAPA:35296 + medial dorsal nucleus of thalamus (embryonic mouse) @@ -51867,8 +46875,7 @@ - dorsomedial nucleus of hypothalamus (embryonic mouse) - EMAPA:35297 + dorsomedial nucleus of hypothalamus (embryonic mouse) @@ -51887,8 +46894,7 @@ - skin of external ear (embryonic mouse) - EMAPA:35301 + skin of external ear (embryonic mouse) @@ -51907,8 +46913,7 @@ - parvocellular oculomotor nucleus (embryonic mouse) - EMAPA:35302 + parvocellular oculomotor nucleus (embryonic mouse) @@ -51927,8 +46932,7 @@ - enamel (embryonic mouse) - EMAPA:35303 + enamel (embryonic mouse) @@ -51947,8 +46951,7 @@ - endochondral bone tissue (embryonic mouse) - EMAPA:35304 + endochondral bone tissue (embryonic mouse) @@ -51967,8 +46970,7 @@ - endocrine pancreas (embryonic mouse) - EMAPA:35305 + endocrine pancreas (embryonic mouse) @@ -51987,8 +46989,7 @@ - endocrine system (embryonic mouse) - EMAPA:35306 + endocrine system (embryonic mouse) @@ -52007,8 +47008,7 @@ - endometrium epithelium (embryonic mouse) - EMAPA:35307 + endometrium epithelium (embryonic mouse) @@ -52027,8 +47027,7 @@ - endometrium glandular epithelium (embryonic mouse) - EMAPA:35308 + endometrium glandular epithelium (embryonic mouse) @@ -52047,8 +47046,7 @@ - endometrium luminal epithelium (embryonic mouse) - EMAPA:35309 + endometrium luminal epithelium (embryonic mouse) @@ -52067,8 +47065,7 @@ - endometrial stroma (embryonic mouse) - EMAPA:35310 + endometrial stroma (embryonic mouse) @@ -52087,8 +47084,7 @@ - endopiriform nucleus (embryonic mouse) - EMAPA:35311 + endopiriform nucleus (embryonic mouse) @@ -52107,30 +47103,7 @@ - enteric ganglion (embryonic mouse) - EMAPA:35312 - - - - - - - - - - - - - - - - - - - - entorhinal cortex (embryonic mouse) - secondary olfactory cortex (embryonic mouse) - EMAPA:35313 + enteric ganglion (embryonic mouse) @@ -52149,8 +47122,7 @@ - stratum lucidum of epidermis (embryonic mouse) - EMAPA:35314 + stratum lucidum of epidermis (embryonic mouse) @@ -52169,8 +47141,7 @@ - epidermis suprabasal layer (embryonic mouse) - EMAPA:35315 + epidermis suprabasal layer (embryonic mouse) @@ -52189,8 +47160,7 @@ - epididymal fat pad (embryonic mouse) - EMAPA:35316 + epididymal fat pad (embryonic mouse) @@ -52209,8 +47179,7 @@ - serosa of esophagus (embryonic mouse) - EMAPA:35322 + serosa of esophagus (embryonic mouse) @@ -52229,8 +47198,7 @@ - smooth muscle of esophagus (embryonic mouse) - EMAPA:35323 + smooth muscle of esophagus (embryonic mouse) @@ -52249,8 +47217,7 @@ - esophagus squamous epithelium (embryonic mouse) - EMAPA:35324 + esophagus squamous epithelium (embryonic mouse) @@ -52269,8 +47236,7 @@ - submucosa of esophagus (embryonic mouse) - EMAPA:35325 + submucosa of esophagus (embryonic mouse) @@ -52289,8 +47255,7 @@ - wall of esophagus (embryonic mouse) - EMAPA:35326 + wall of esophagus (embryonic mouse) @@ -52309,8 +47274,7 @@ - exocrine gland (embryonic mouse) - EMAPA:35327 + exocrine gland (embryonic mouse) @@ -52329,8 +47293,7 @@ - exocrine pancreas (embryonic mouse) - EMAPA:35328 + exocrine pancreas (embryonic mouse) @@ -52349,8 +47312,7 @@ - exocrine system (embryonic mouse) - EMAPA:35329 + exocrine system (embryonic mouse) @@ -52369,8 +47331,7 @@ - extensor digitorum longus (embryonic mouse) - EMAPA:35330 + extensor digitorum longus (embryonic mouse) @@ -52389,8 +47350,7 @@ - external capsule of telencephalon (embryonic mouse) - EMAPA:35331 + external capsule of telencephalon (embryonic mouse) @@ -52409,8 +47369,7 @@ - outer spiral sulcus (embryonic mouse) - EMAPA:35332 + outer spiral sulcus (embryonic mouse) @@ -52429,8 +47388,7 @@ - eye gland (embryonic mouse) - EMAPA:35334 + eye gland (embryonic mouse) @@ -52449,8 +47407,7 @@ - eye muscle (embryonic mouse) - EMAPA:35335 + eye muscle (embryonic mouse) @@ -52469,8 +47426,7 @@ - ocular surface region (embryonic mouse) - EMAPA:35336 + ocular surface region (embryonic mouse) @@ -52489,8 +47445,7 @@ - facial mesenchyme (embryonic mouse) - EMAPA:35337 + facial mesenchyme (embryonic mouse) @@ -52509,8 +47464,7 @@ - facial nucleus (embryonic mouse) - EMAPA:35338 + facial nucleus (embryonic mouse) @@ -52529,8 +47483,7 @@ - fasciolar gyrus (embryonic mouse) - EMAPA:35339 + fasciolar gyrus (embryonic mouse) @@ -52549,8 +47502,7 @@ - fat pad (embryonic mouse) - EMAPA:35340 + fat pad (embryonic mouse) @@ -52569,8 +47521,7 @@ - femoral artery (embryonic mouse) - EMAPA:35342 + femoral artery (embryonic mouse) @@ -52589,8 +47540,7 @@ - femoral nerve (embryonic mouse) - EMAPA:35343 + femoral nerve (embryonic mouse) @@ -52609,8 +47559,7 @@ - fibrous joint (embryonic mouse) - EMAPA:35344 + fibrous joint (embryonic mouse) @@ -52629,8 +47578,7 @@ - hippocampus fimbria (embryonic mouse) - EMAPA:35345 + hippocampus fimbria (embryonic mouse) @@ -52649,8 +47597,7 @@ - flocculus (embryonic mouse) - EMAPA:35346 + flocculus (embryonic mouse) @@ -52669,8 +47616,7 @@ - forelimb zeugopod bone (embryonic mouse) - EMAPA:35347 + forelimb zeugopod bone (embryonic mouse) @@ -52689,8 +47635,7 @@ - nail of manual digit (embryonic mouse) - EMAPA:35349 + nail of manual digit (embryonic mouse) @@ -52709,8 +47654,7 @@ - forelimb long bone (embryonic mouse) - EMAPA:35350 + forelimb long bone (embryonic mouse) @@ -52729,8 +47673,7 @@ - fornix of brain (embryonic mouse) - EMAPA:35352 + fornix of brain (embryonic mouse) @@ -52749,8 +47692,7 @@ - pes bone (embryonic mouse) - EMAPA:35354 + pes bone (embryonic mouse) @@ -52769,8 +47711,7 @@ - fourth ventricle ependyma (embryonic mouse) - EMAPA:35355 + fourth ventricle ependyma (embryonic mouse) @@ -52789,8 +47730,7 @@ - prefrontal cortex (embryonic mouse) - EMAPA:35356 + prefrontal cortex (embryonic mouse) @@ -52809,8 +47749,7 @@ - frontal cortex (embryonic mouse) - EMAPA:35357 + frontal cortex (embryonic mouse) @@ -52829,8 +47768,7 @@ - frontal suture (embryonic mouse) - EMAPA:35358 + frontal suture (embryonic mouse) @@ -52849,8 +47787,7 @@ - frontonasal suture (embryonic mouse) - EMAPA:35359 + frontonasal suture (embryonic mouse) @@ -52869,8 +47806,7 @@ - neural tube mantle layer (embryonic mouse) - EMAPA:35360 + neural tube mantle layer (embryonic mouse) @@ -52889,8 +47825,7 @@ - roof plate (embryonic mouse) - EMAPA:35361 + roof plate (embryonic mouse) @@ -52909,8 +47844,7 @@ - neural tube ventricular layer (embryonic mouse) - EMAPA:35362 + neural tube ventricular layer (embryonic mouse) @@ -52929,8 +47863,7 @@ - rhombomere lateral wall (embryonic mouse) - EMAPA:35364 + rhombomere lateral wall (embryonic mouse) @@ -52949,8 +47882,7 @@ - rhombomere roof plate (embryonic mouse) - EMAPA:35367 + rhombomere roof plate (embryonic mouse) @@ -52969,8 +47901,7 @@ - epithelium of gall bladder (embryonic mouse) - EMAPA:35370 + epithelium of gall bladder (embryonic mouse) @@ -52989,8 +47920,7 @@ - gallbladder lamina propria (embryonic mouse) - EMAPA:35371 + gallbladder lamina propria (embryonic mouse) @@ -53009,8 +47939,7 @@ - gallbladder serosa (embryonic mouse) - EMAPA:35372 + gallbladder serosa (embryonic mouse) @@ -53029,8 +47958,7 @@ - gallbladder smooth muscle (embryonic mouse) - EMAPA:35373 + gallbladder smooth muscle (embryonic mouse) @@ -53049,8 +47977,7 @@ - left gastric artery (embryonic mouse) - EMAPA:35374 + left gastric artery (embryonic mouse) @@ -53069,8 +47996,7 @@ - gastrocnemius (embryonic mouse) - EMAPA:35375 + gastrocnemius (embryonic mouse) @@ -53089,8 +48015,7 @@ - metathalamus (embryonic mouse) - EMAPA:35376 + metathalamus (embryonic mouse) @@ -53109,8 +48034,7 @@ - genital swelling (embryonic mouse) - EMAPA:35377 + genital swelling (embryonic mouse) @@ -53129,8 +48053,7 @@ - gigantocellular nucleus (embryonic mouse) - EMAPA:35378 + gigantocellular nucleus (embryonic mouse) @@ -53149,8 +48072,7 @@ - girdle bone/zone (embryonic mouse) - EMAPA:35379 + girdle bone/zone (embryonic mouse) @@ -53169,8 +48091,7 @@ - globus pallidus (embryonic mouse) - EMAPA:35380 + globus pallidus (embryonic mouse) @@ -53189,8 +48110,7 @@ - gonad germinal epithelium (embryonic mouse) - EMAPA:35382 + gonad germinal epithelium (embryonic mouse) @@ -53209,8 +48129,7 @@ - muscularis mucosa (embryonic mouse) - EMAPA:35385 + muscularis mucosa (embryonic mouse) @@ -53229,8 +48148,7 @@ - habenula (embryonic mouse) - EMAPA:35386 + habenula (embryonic mouse) @@ -53249,8 +48167,7 @@ - cortex of hair (embryonic mouse) - EMAPA:35387 + cortex of hair (embryonic mouse) @@ -53269,8 +48186,7 @@ - cuticle of hair (embryonic mouse) - EMAPA:35388 + cuticle of hair (embryonic mouse) @@ -53289,8 +48205,7 @@ - hair medulla (embryonic mouse) - EMAPA:35389 + hair medulla (embryonic mouse) @@ -53309,8 +48224,7 @@ - hair root sheath matrix (embryonic mouse) - EMAPA:35390 + hair root sheath matrix (embryonic mouse) @@ -53329,8 +48243,7 @@ - manus bone (embryonic mouse) - EMAPA:35391 + manus bone (embryonic mouse) @@ -53349,8 +48262,7 @@ - manus connective tissue (embryonic mouse) - EMAPA:35392 + manus connective tissue (embryonic mouse) @@ -53369,8 +48281,7 @@ - distal phalanx of manus (embryonic mouse) - EMAPA:35393 + distal phalanx of manus (embryonic mouse) @@ -53389,8 +48300,7 @@ - Hassall's corpuscle (embryonic mouse) - EMAPA:35395 + Hassall's corpuscle (embryonic mouse) @@ -53409,8 +48319,7 @@ - heart blood vessel (embryonic mouse) - EMAPA:35397 + heart blood vessel (embryonic mouse) @@ -53429,8 +48338,7 @@ - cardiac septum (embryonic mouse) - EMAPA:35400 + cardiac septum (embryonic mouse) @@ -53449,8 +48357,7 @@ - hematopoietic system (embryonic mouse) - EMAPA:35402 + hematopoietic system (embryonic mouse) @@ -53469,8 +48376,7 @@ - hindlimb long bone (embryonic mouse) - EMAPA:35403 + hindlimb long bone (embryonic mouse) @@ -53489,8 +48395,7 @@ - hippocampal commissure (embryonic mouse) - EMAPA:35404 + hippocampal commissure (embryonic mouse) @@ -53509,8 +48414,7 @@ - hippocampal formation (embryonic mouse) - EMAPA:35405 + hippocampal formation (embryonic mouse) @@ -53529,8 +48433,7 @@ - hippocampus granule cell layer (embryonic mouse) - EMAPA:35406 + hippocampus granule cell layer (embryonic mouse) @@ -53549,8 +48452,7 @@ - layer of hippocampus (embryonic mouse) - EMAPA:35407 + layer of hippocampus (embryonic mouse) @@ -53569,8 +48471,7 @@ - hippocampus molecular layer (embryonic mouse) - EMAPA:35408 + hippocampus molecular layer (embryonic mouse) @@ -53589,8 +48490,7 @@ - hippocampus pyramidal layer (embryonic mouse) - EMAPA:35409 + hippocampus pyramidal layer (embryonic mouse) @@ -53609,8 +48509,7 @@ - hippocampus stratum lacunosum (embryonic mouse) - EMAPA:35410 + hippocampus stratum lacunosum (embryonic mouse) @@ -53629,8 +48528,7 @@ - hippocampus stratum lucidum (embryonic mouse) - EMAPA:35411 + hippocampus stratum lucidum (embryonic mouse) @@ -53649,8 +48547,7 @@ - hippocampus stratum oriens (embryonic mouse) - EMAPA:35412 + hippocampus stratum oriens (embryonic mouse) @@ -53669,8 +48566,7 @@ - hippocampus stratum radiatum (embryonic mouse) - EMAPA:35413 + hippocampus stratum radiatum (embryonic mouse) @@ -53689,8 +48585,7 @@ - hyaline cartilage tissue (embryonic mouse) - EMAPA:35414 + hyaline cartilage tissue (embryonic mouse) @@ -53709,8 +48604,7 @@ - hypertrophic cartilage zone (embryonic mouse) - EMAPA:35415 + hypertrophic cartilage zone (embryonic mouse) @@ -53729,8 +48623,7 @@ - hypoglossal nucleus (embryonic mouse) - EMAPA:35416 + hypoglossal nucleus (embryonic mouse) @@ -53749,8 +48642,7 @@ - hypothalamic nucleus (embryonic mouse) - EMAPA:35417 + hypothalamic nucleus (embryonic mouse) @@ -53769,8 +48661,7 @@ - lateral zone of hypothalamus (embryonic mouse) - EMAPA:35418 + lateral zone of hypothalamus (embryonic mouse) @@ -53789,8 +48680,7 @@ - medial zone of hypothalamus (embryonic mouse) - EMAPA:35419 + medial zone of hypothalamus (embryonic mouse) @@ -53809,8 +48699,7 @@ - tuber cinereum (embryonic mouse) - EMAPA:35420 + tuber cinereum (embryonic mouse) @@ -53829,8 +48718,7 @@ - periventricular zone of hypothalamus (embryonic mouse) - EMAPA:35421 + periventricular zone of hypothalamus (embryonic mouse) @@ -53849,8 +48737,7 @@ - ileal epithelium (embryonic mouse) - EMAPA:35423 + ileal epithelium (embryonic mouse) @@ -53869,8 +48756,7 @@ - ileal mucosa (embryonic mouse) - EMAPA:35424 + ileal mucosa (embryonic mouse) @@ -53889,8 +48775,7 @@ - right lung bronchiole (embryonic mouse) - EMAPA:35425 + right lung bronchiole (embryonic mouse) @@ -53909,8 +48794,7 @@ - conducting system of heart (embryonic mouse) - EMAPA:35428 + conducting system of heart (embryonic mouse) @@ -53929,8 +48813,7 @@ - incisor dental pulp (embryonic mouse) - EMAPA:35429 + incisor dental pulp (embryonic mouse) @@ -53949,8 +48832,7 @@ - induseum griseum (embryonic mouse) - EMAPA:35430 + induseum griseum (embryonic mouse) @@ -53969,8 +48851,7 @@ - inguinal lymph node (embryonic mouse) - EMAPA:35431 + inguinal lymph node (embryonic mouse) @@ -53989,8 +48870,7 @@ - insular cortex (embryonic mouse) - EMAPA:35432 + insular cortex (embryonic mouse) @@ -54009,8 +48889,7 @@ - interalveolar septum (embryonic mouse) - EMAPA:35433 + interalveolar septum (embryonic mouse) @@ -54029,8 +48908,7 @@ - intercalated amygdaloid nuclei (embryonic mouse) - EMAPA:35434 + intercalated amygdaloid nuclei (embryonic mouse) @@ -54049,8 +48927,7 @@ - intercerebral commissure (embryonic mouse) - EMAPA:35435 + intercerebral commissure (embryonic mouse) @@ -54069,8 +48946,7 @@ - internal capsule of telencephalon (embryonic mouse) - EMAPA:35437 + internal capsule of telencephalon (embryonic mouse) @@ -54089,8 +48965,7 @@ - inner spiral sulcus (embryonic mouse) - EMAPA:35438 + inner spiral sulcus (embryonic mouse) @@ -54109,8 +48984,7 @@ - interpeduncular nucleus (embryonic mouse) - EMAPA:35439 + interpeduncular nucleus (embryonic mouse) @@ -54129,8 +49003,7 @@ - intestinal mucosa (embryonic mouse) - EMAPA:35440 + intestinal mucosa (embryonic mouse) @@ -54149,8 +49022,7 @@ - intestine smooth muscle (embryonic mouse) - EMAPA:35441 + intestine smooth muscle (embryonic mouse) @@ -54169,8 +49041,7 @@ - muscularis mucosae of intestine (embryonic mouse) - EMAPA:35442 + muscularis mucosae of intestine (embryonic mouse) @@ -54189,8 +49060,7 @@ - intestine smooth muscle (embryonic mouse) - EMAPA:35443 + intestine smooth muscle (embryonic mouse) @@ -54209,8 +49079,7 @@ - wall of intestine (embryonic mouse) - EMAPA:35444 + wall of intestine (embryonic mouse) @@ -54229,8 +49098,7 @@ - intralaminar nuclear group (embryonic mouse) - EMAPA:35445 + intralaminar nuclear group (embryonic mouse) @@ -54249,8 +49117,7 @@ - enteric plexus (embryonic mouse) - EMAPA:35446 + enteric plexus (embryonic mouse) @@ -54269,30 +49136,7 @@ - iris epithelium (embryonic mouse) - EMAPA:35447 - - - - - - - - - - - - - - - - - - - - iris smooth muscle (embryonic mouse) - muscle of iris (embryonic mouse) - EMAPA:35448 + iris epithelium (embryonic mouse) @@ -54311,8 +49155,7 @@ - iris nerve (embryonic mouse) - EMAPA:35449 + iris nerve (embryonic mouse) @@ -54331,8 +49174,7 @@ - iris stroma (embryonic mouse) - EMAPA:35451 + iris stroma (embryonic mouse) @@ -54351,8 +49193,7 @@ - island of Calleja (embryonic mouse) - EMAPA:35452 + island of Calleja (embryonic mouse) @@ -54371,8 +49212,7 @@ - bone of jaw (embryonic mouse) - EMAPA:35453 + bone of jaw (embryonic mouse) @@ -54391,8 +49231,7 @@ - jaw mesenchyme (embryonic mouse) - EMAPA:35454 + jaw mesenchyme (embryonic mouse) @@ -54411,8 +49250,7 @@ - jaw skeleton (embryonic mouse) - EMAPA:35455 + jaw skeleton (embryonic mouse) @@ -54431,8 +49269,7 @@ - skeletal joint (embryonic mouse) - EMAPA:35456 + skeletal joint (embryonic mouse) @@ -54451,8 +49288,7 @@ - kidney epithelium (embryonic mouse) - EMAPA:35457 + kidney epithelium (embryonic mouse) @@ -54471,8 +49307,7 @@ - glomerular epithelium (embryonic mouse) - EMAPA:35458 + glomerular epithelium (embryonic mouse) @@ -54491,8 +49326,7 @@ - renal medulla collecting duct (embryonic mouse) - EMAPA:35459 + renal medulla collecting duct (embryonic mouse) @@ -54511,8 +49345,7 @@ - renal medulla loop of Henle (embryonic mouse) - EMAPA:35460 + renal medulla loop of Henle (embryonic mouse) @@ -54531,8 +49364,7 @@ - outer renal medulla peritubular capillary (embryonic mouse) - EMAPA:35461 + outer renal medulla peritubular capillary (embryonic mouse) @@ -54551,8 +49383,7 @@ - lacrimal apparatus (embryonic mouse) - EMAPA:35462 + lacrimal apparatus (embryonic mouse) @@ -54571,8 +49402,7 @@ - lacrimal gland (embryonic mouse) - EMAPA:35463 + lacrimal gland (embryonic mouse) @@ -54591,8 +49421,7 @@ - lacrimal gland bud (embryonic mouse) - EMAPA:35464 + lacrimal gland bud (embryonic mouse) @@ -54611,8 +49440,7 @@ - crypt of Lieberkuhn of large intestine (embryonic mouse) - EMAPA:35465 + crypt of Lieberkuhn of large intestine (embryonic mouse) @@ -54631,8 +49459,7 @@ - epithelium of large intestine (embryonic mouse) - EMAPA:35466 + epithelium of large intestine (embryonic mouse) @@ -54651,8 +49478,7 @@ - mucosa of large intestine (embryonic mouse) - EMAPA:35467 + mucosa of large intestine (embryonic mouse) @@ -54671,8 +49497,7 @@ - large intestine Peyer's patch (embryonic mouse) - EMAPA:35468 + large intestine Peyer's patch (embryonic mouse) @@ -54691,8 +49516,7 @@ - large intestine smooth muscle (embryonic mouse) - EMAPA:35469 + large intestine smooth muscle (embryonic mouse) @@ -54711,8 +49535,7 @@ - wall of large intestine (embryonic mouse) - EMAPA:35470 + wall of large intestine (embryonic mouse) @@ -54731,8 +49554,7 @@ - larynx connective tissue (embryonic mouse) - EMAPA:35471 + larynx connective tissue (embryonic mouse) @@ -54751,8 +49573,7 @@ - larynx epithelium (embryonic mouse) - EMAPA:35472 + larynx epithelium (embryonic mouse) @@ -54771,8 +49592,7 @@ - muscle of larynx (embryonic mouse) - EMAPA:35473 + muscle of larynx (embryonic mouse) @@ -54791,8 +49611,7 @@ - larynx submucosa (embryonic mouse) - EMAPA:35474 + larynx submucosa (embryonic mouse) @@ -54811,8 +49630,7 @@ - larynx submucosa gland (embryonic mouse) - EMAPA:35475 + larynx submucosa gland (embryonic mouse) @@ -54831,8 +49649,7 @@ - lateral amygdaloid nucleus (embryonic mouse) - EMAPA:35476 + lateral amygdaloid nucleus (embryonic mouse) @@ -54851,8 +49668,7 @@ - lateral entorhinal cortex (embryonic mouse) - EMAPA:35477 + lateral entorhinal cortex (embryonic mouse) @@ -54871,8 +49687,7 @@ - lateral geniculate body (embryonic mouse) - EMAPA:35478 + lateral geniculate body (embryonic mouse) @@ -54891,8 +49706,7 @@ - lateral habenular nucleus (embryonic mouse) - EMAPA:35479 + lateral habenular nucleus (embryonic mouse) @@ -54911,8 +49725,7 @@ - lateral hypothalamic area (embryonic mouse) - EMAPA:35480 + lateral hypothalamic area (embryonic mouse) @@ -54931,8 +49744,7 @@ - lateral mammillary nucleus (embryonic mouse) - EMAPA:35481 + lateral mammillary nucleus (embryonic mouse) @@ -54951,8 +49763,7 @@ - lateral preoptic nucleus (embryonic mouse) - EMAPA:35483 + lateral preoptic nucleus (embryonic mouse) @@ -54971,8 +49782,7 @@ - lateral reticular nucleus (embryonic mouse) - EMAPA:35484 + lateral reticular nucleus (embryonic mouse) @@ -54991,8 +49801,7 @@ - lateral septal complex (embryonic mouse) - EMAPA:35485 + lateral septal complex (embryonic mouse) @@ -55011,8 +49820,7 @@ - lateral septal nucleus (embryonic mouse) - EMAPA:35486 + lateral septal nucleus (embryonic mouse) @@ -55031,8 +49839,7 @@ - lateral nuclear group of thalamus (embryonic mouse) - EMAPA:35487 + lateral nuclear group of thalamus (embryonic mouse) @@ -55051,8 +49858,7 @@ - lateral ventricle ependyma (embryonic mouse) - EMAPA:35488 + lateral ventricle ependyma (embryonic mouse) @@ -55071,8 +49877,7 @@ - lateral ventricle subependymal layer (embryonic mouse) - EMAPA:35489 + lateral ventricle subependymal layer (embryonic mouse) @@ -55091,8 +49896,7 @@ - laterodorsal tegmental nucleus (embryonic mouse) - EMAPA:35490 + laterodorsal tegmental nucleus (embryonic mouse) @@ -55111,8 +49915,7 @@ - left common carotid artery plus branches (embryonic mouse) - EMAPA:35491 + left common carotid artery plus branches (embryonic mouse) @@ -55131,8 +49934,7 @@ - ligament (embryonic mouse) - EMAPA:35493 + ligament (embryonic mouse) @@ -55151,8 +49953,7 @@ - bone of appendage girdle complex (embryonic mouse) - EMAPA:35494 + bone of appendage girdle complex (embryonic mouse) @@ -55171,8 +49972,7 @@ - limb long bone (embryonic mouse) - EMAPA:35495 + limb long bone (embryonic mouse) @@ -55191,8 +49991,7 @@ - lamina of spiral limbus (embryonic mouse) - EMAPA:35496 + lamina of spiral limbus (embryonic mouse) @@ -55211,8 +50010,7 @@ - hepatic acinus (embryonic mouse) - EMAPA:35497 + hepatic acinus (embryonic mouse) @@ -55231,8 +50029,7 @@ - liver blood vessel (embryonic mouse) - EMAPA:35498 + liver blood vessel (embryonic mouse) @@ -55251,8 +50048,7 @@ - liver lobule (embryonic mouse) - EMAPA:35499 + liver lobule (embryonic mouse) @@ -55271,8 +50067,7 @@ - vasculature of liver (embryonic mouse) - EMAPA:35501 + vasculature of liver (embryonic mouse) @@ -55291,8 +50086,7 @@ - locus ceruleus (embryonic mouse) - EMAPA:35502 + locus ceruleus (embryonic mouse) @@ -55311,8 +50105,7 @@ - long bone (embryonic mouse) - EMAPA:35503 + long bone (embryonic mouse) @@ -55331,8 +50124,7 @@ - diaphysis (embryonic mouse) - EMAPA:35504 + diaphysis (embryonic mouse) @@ -55351,8 +50143,7 @@ - epiphyseal plate (embryonic mouse) - EMAPA:35505 + epiphyseal plate (embryonic mouse) @@ -55371,8 +50162,7 @@ - long bone epiphyseal plate hypertrophic zone (embryonic mouse) - EMAPA:35506 + long bone epiphyseal plate hypertrophic zone (embryonic mouse) @@ -55391,8 +50181,7 @@ - long bone epiphyseal plate proliferative zone (embryonic mouse) - EMAPA:35507 + long bone epiphyseal plate proliferative zone (embryonic mouse) @@ -55411,8 +50200,7 @@ - epiphysis (embryonic mouse) - EMAPA:35508 + epiphysis (embryonic mouse) @@ -55431,8 +50219,7 @@ - metaphysis (embryonic mouse) - EMAPA:35509 + metaphysis (embryonic mouse) @@ -55451,8 +50238,7 @@ - ascending limb of loop of Henle (embryonic mouse) - EMAPA:35510 + ascending limb of loop of Henle (embryonic mouse) @@ -55471,8 +50257,7 @@ - descending limb of loop of Henle (embryonic mouse) - EMAPA:35511 + descending limb of loop of Henle (embryonic mouse) @@ -55491,8 +50276,7 @@ - thick ascending limb of loop of Henle (embryonic mouse) - EMAPA:35512 + thick ascending limb of loop of Henle (embryonic mouse) @@ -55511,8 +50295,7 @@ - descending thin limb (embryonic mouse) - EMAPA:35514 + descending thin limb (embryonic mouse) @@ -55531,8 +50314,7 @@ - epithelium of lower jaw (embryonic mouse) - EMAPA:35516 + epithelium of lower jaw (embryonic mouse) @@ -55551,8 +50333,7 @@ - hindlimb zeugopod bone (embryonic mouse) - EMAPA:35519 + hindlimb zeugopod bone (embryonic mouse) @@ -55571,8 +50352,7 @@ - lower respiratory tract smooth muscle (embryonic mouse) - EMAPA:35520 + lower respiratory tract smooth muscle (embryonic mouse) @@ -55591,8 +50371,7 @@ - lung connective tissue (embryonic mouse) - EMAPA:35521 + lung connective tissue (embryonic mouse) @@ -55611,8 +50390,7 @@ - lung parenchyma (embryonic mouse) - EMAPA:35522 + lung parenchyma (embryonic mouse) @@ -55631,8 +50409,7 @@ - lymph node (embryonic mouse) - EMAPA:35523 + lymph node (embryonic mouse) @@ -55651,8 +50428,7 @@ - capsule of lymph node (embryonic mouse) - EMAPA:35524 + capsule of lymph node (embryonic mouse) @@ -55671,8 +50447,7 @@ - cortex of lymph node (embryonic mouse) - EMAPA:35525 + cortex of lymph node (embryonic mouse) @@ -55691,8 +50466,7 @@ - lymph node endothelium (embryonic mouse) - EMAPA:35526 + lymph node endothelium (embryonic mouse) @@ -55711,8 +50485,7 @@ - lymph node follicle (embryonic mouse) - EMAPA:35527 + lymph node follicle (embryonic mouse) @@ -55731,8 +50504,7 @@ - lymph node germinal center (embryonic mouse) - EMAPA:35528 + lymph node germinal center (embryonic mouse) @@ -55751,8 +50523,7 @@ - medulla of lymph node (embryonic mouse) - EMAPA:35529 + medulla of lymph node (embryonic mouse) @@ -55771,8 +50542,7 @@ - lymph node primary follicle (embryonic mouse) - EMAPA:35530 + lymph node primary follicle (embryonic mouse) @@ -55791,8 +50561,7 @@ - lymph node secondary follicle (embryonic mouse) - EMAPA:35531 + lymph node secondary follicle (embryonic mouse) @@ -55811,8 +50580,7 @@ - lymphatic vessel (embryonic mouse) - EMAPA:35532 + lymphatic vessel (embryonic mouse) @@ -55831,8 +50599,7 @@ - lymphatic vessel endothelium (embryonic mouse) - EMAPA:35533 + lymphatic vessel endothelium (embryonic mouse) @@ -55851,8 +50618,7 @@ - macula of saccule of membranous labyrinth (embryonic mouse) - EMAPA:35534 + macula of saccule of membranous labyrinth (embryonic mouse) @@ -55871,8 +50637,7 @@ - macula of utricle of membranous labyrinth (embryonic mouse) - EMAPA:35535 + macula of utricle of membranous labyrinth (embryonic mouse) @@ -55891,8 +50656,7 @@ - mammary bud (embryonic mouse) - EMAPA:35536 + mammary bud (embryonic mouse) @@ -55911,8 +50675,7 @@ - mammary gland connective tissue (embryonic mouse) - EMAPA:35537 + mammary gland connective tissue (embryonic mouse) @@ -55931,8 +50694,7 @@ - mammary duct (embryonic mouse) - EMAPA:35538 + mammary duct (embryonic mouse) @@ -55951,8 +50713,7 @@ - mammary gland fat (embryonic mouse) - EMAPA:35539 + mammary gland fat (embryonic mouse) @@ -55971,8 +50732,7 @@ - mammary placode (embryonic mouse) - EMAPA:35541 + mammary placode (embryonic mouse) @@ -55991,8 +50751,7 @@ - mammillary body (embryonic mouse) - EMAPA:35542 + mammillary body (embryonic mouse) @@ -56011,8 +50770,7 @@ - medial amygdaloid nucleus (embryonic mouse) - EMAPA:35543 + medial amygdaloid nucleus (embryonic mouse) @@ -56031,8 +50789,7 @@ - magnocellular part of medial dorsal nucleus (embryonic mouse) - EMAPA:35544 + magnocellular part of medial dorsal nucleus (embryonic mouse) @@ -56051,8 +50808,7 @@ - medial entorhinal cortex (embryonic mouse) - EMAPA:35545 + medial entorhinal cortex (embryonic mouse) @@ -56071,8 +50827,7 @@ - medial geniculate body (embryonic mouse) - EMAPA:35546 + medial geniculate body (embryonic mouse) @@ -56091,8 +50846,7 @@ - medial habenular nucleus (embryonic mouse) - EMAPA:35547 + medial habenular nucleus (embryonic mouse) @@ -56111,8 +50865,7 @@ - medial mammillary nucleus (embryonic mouse) - EMAPA:35548 + medial mammillary nucleus (embryonic mouse) @@ -56131,8 +50884,7 @@ - medial preoptic nucleus (embryonic mouse) - EMAPA:35549 + medial preoptic nucleus (embryonic mouse) @@ -56151,8 +50903,7 @@ - medial preoptic region (embryonic mouse) - EMAPA:35550 + medial preoptic region (embryonic mouse) @@ -56171,8 +50922,7 @@ - median raphe nucleus (embryonic mouse) - EMAPA:35551 + median raphe nucleus (embryonic mouse) @@ -56191,8 +50941,7 @@ - medial septal complex (embryonic mouse) - EMAPA:35552 + medial septal complex (embryonic mouse) @@ -56211,8 +50960,7 @@ - medial septal nucleus (embryonic mouse) - EMAPA:35553 + medial septal nucleus (embryonic mouse) @@ -56231,8 +50979,7 @@ - medial vestibular nucleus (embryonic mouse) - EMAPA:35554 + medial vestibular nucleus (embryonic mouse) @@ -56251,8 +50998,7 @@ - mediastinal lymph node (embryonic mouse) - EMAPA:35555 + mediastinal lymph node (embryonic mouse) @@ -56271,8 +51017,7 @@ - medullary reticular formation (embryonic mouse) - EMAPA:35556 + medullary reticular formation (embryonic mouse) @@ -56291,8 +51036,7 @@ - mesenteric lymph node (embryonic mouse) - EMAPA:35561 + mesenteric lymph node (embryonic mouse) @@ -56311,8 +51055,7 @@ - mesometrium (embryonic mouse) - EMAPA:35562 + mesometrium (embryonic mouse) @@ -56331,8 +51074,7 @@ - pedal digit metatarsal pre-cartilage condensation (embryonic mouse) - EMAPA:35568 + pedal digit metatarsal pre-cartilage condensation (embryonic mouse) @@ -56351,8 +51093,7 @@ - midbrain reticular formation (embryonic mouse) - EMAPA:35570 + midbrain reticular formation (embryonic mouse) @@ -56371,8 +51112,7 @@ - middle phalanx (embryonic mouse) - EMAPA:35572 + middle phalanx (embryonic mouse) @@ -56391,8 +51131,7 @@ - midline nuclear group (embryonic mouse) - EMAPA:35573 + midline nuclear group (embryonic mouse) @@ -56411,8 +51150,7 @@ - minor salivary gland (embryonic mouse) - EMAPA:35574 + minor salivary gland (embryonic mouse) @@ -56431,8 +51169,7 @@ - cochlear modiolus (embryonic mouse) - EMAPA:35575 + cochlear modiolus (embryonic mouse) @@ -56451,8 +51188,7 @@ - molar dental pulp (embryonic mouse) - EMAPA:35576 + molar dental pulp (embryonic mouse) @@ -56471,30 +51207,7 @@ - musculature (embryonic mouse) - EMAPA:35577 - - - - - - - - - - - - - - - - - - - - musculature of body (embryonic mouse) - skeletal musculature (embryonic mouse) - EMAPA:35578 + musculature (embryonic mouse) @@ -56513,8 +51226,7 @@ - nail (embryonic mouse) - EMAPA:35580 + nail (embryonic mouse) @@ -56533,8 +51245,7 @@ - nail bed (embryonic mouse) - EMAPA:35581 + nail bed (embryonic mouse) @@ -56553,8 +51264,7 @@ - nail matrix (embryonic mouse) - EMAPA:35582 + nail matrix (embryonic mouse) @@ -56573,8 +51283,7 @@ - nail plate (embryonic mouse) - EMAPA:35583 + nail plate (embryonic mouse) @@ -56593,8 +51302,7 @@ - neck (embryonic mouse) - EMAPA:35587 + neck (embryonic mouse) @@ -56613,8 +51321,7 @@ - layer of neocortex (embryonic mouse) - EMAPA:35588 + layer of neocortex (embryonic mouse) @@ -56633,8 +51340,7 @@ - neocortex (embryonic mouse) - EMAPA:35589 + neocortex (embryonic mouse) @@ -56653,8 +51359,7 @@ - nephron (embryonic mouse) - EMAPA:35592 + nephron (embryonic mouse) @@ -56673,8 +51378,7 @@ - neural plate (embryonic mouse) - EMAPA:35593 + neural plate (embryonic mouse) @@ -56693,8 +51397,7 @@ - neural groove (embryonic mouse) - EMAPA:35594 + neural groove (embryonic mouse) @@ -56713,8 +51416,7 @@ - neural lobe of neurohypophysis (embryonic mouse) - EMAPA:35595 + neural lobe of neurohypophysis (embryonic mouse) @@ -56733,8 +51435,7 @@ - nucleus ambiguus (embryonic mouse) - EMAPA:35596 + nucleus ambiguus (embryonic mouse) @@ -56753,8 +51454,7 @@ - ventral nucleus of posterior commissure (embryonic mouse) - EMAPA:35597 + ventral nucleus of posterior commissure (embryonic mouse) @@ -56773,8 +51473,7 @@ - nucleus of diagonal band (embryonic mouse) - EMAPA:35598 + nucleus of diagonal band (embryonic mouse) @@ -56793,8 +51492,7 @@ - nucleus of lateral olfactory tract (embryonic mouse) - EMAPA:35599 + nucleus of lateral olfactory tract (embryonic mouse) @@ -56813,8 +51511,7 @@ - nucleus of trapezoid body (embryonic mouse) - EMAPA:35600 + nucleus of trapezoid body (embryonic mouse) @@ -56833,8 +51530,7 @@ - reuniens nucleus (embryonic mouse) - EMAPA:35602 + reuniens nucleus (embryonic mouse) @@ -56853,8 +51549,7 @@ - abdominal oblique muscle (embryonic mouse) - EMAPA:35603 + abdominal oblique muscle (embryonic mouse) @@ -56873,8 +51568,7 @@ - occipital cortex (embryonic mouse) - EMAPA:35604 + occipital cortex (embryonic mouse) @@ -56893,8 +51587,7 @@ - oculomotor nuclear complex (embryonic mouse) - EMAPA:35605 + oculomotor nuclear complex (embryonic mouse) @@ -56913,8 +51606,7 @@ - olfactory bulb external plexiform layer (embryonic mouse) - EMAPA:35607 + olfactory bulb external plexiform layer (embryonic mouse) @@ -56933,8 +51625,7 @@ - olfactory bulb glomerular layer (embryonic mouse) - EMAPA:35608 + olfactory bulb glomerular layer (embryonic mouse) @@ -56953,8 +51644,7 @@ - olfactory bulb granule cell layer (embryonic mouse) - EMAPA:35609 + olfactory bulb granule cell layer (embryonic mouse) @@ -56973,8 +51663,7 @@ - olfactory bulb internal plexiform layer (embryonic mouse) - EMAPA:35610 + olfactory bulb internal plexiform layer (embryonic mouse) @@ -56993,8 +51682,7 @@ - olfactory bulb mitral cell layer (embryonic mouse) - EMAPA:35611 + olfactory bulb mitral cell layer (embryonic mouse) @@ -57013,8 +51701,7 @@ - olfactory bulb subependymal zone (embryonic mouse) - EMAPA:35612 + olfactory bulb subependymal zone (embryonic mouse) @@ -57033,8 +51720,7 @@ - olfactory gland (embryonic mouse) - EMAPA:35613 + olfactory gland (embryonic mouse) @@ -57053,8 +51739,7 @@ - olfactory bulb outer nerve layer (embryonic mouse) - EMAPA:35614 + olfactory bulb outer nerve layer (embryonic mouse) @@ -57073,8 +51758,7 @@ - olfactory tract (embryonic mouse) - EMAPA:35615 + olfactory tract (embryonic mouse) @@ -57093,8 +51777,7 @@ - olfactory tubercle (embryonic mouse) - EMAPA:35616 + olfactory tubercle (embryonic mouse) @@ -57113,8 +51796,7 @@ - optic tract (embryonic mouse) - EMAPA:35617 + optic tract (embryonic mouse) @@ -57133,8 +51815,7 @@ - orbicularis oculi muscle (embryonic mouse) - EMAPA:35619 + orbicularis oculi muscle (embryonic mouse) @@ -57153,8 +51834,7 @@ - osseus cochlea (embryonic mouse) - EMAPA:35620 + osseus cochlea (embryonic mouse) @@ -57173,8 +51853,7 @@ - osseus cochlear canal (embryonic mouse) - EMAPA:35621 + osseus cochlear canal (embryonic mouse) @@ -57193,8 +51872,7 @@ - osseus spiral lamina (embryonic mouse) - EMAPA:35622 + osseus spiral lamina (embryonic mouse) @@ -57213,8 +51891,7 @@ - outflow tract myocardium (embryonic mouse) - EMAPA:35623 + outflow tract myocardium (embryonic mouse) @@ -57233,8 +51910,7 @@ - capsule of ovary (embryonic mouse) - EMAPA:35626 + capsule of ovary (embryonic mouse) @@ -57253,8 +51929,7 @@ - ovarian follicle (embryonic mouse) - EMAPA:35627 + ovarian follicle (embryonic mouse) @@ -57273,8 +51948,7 @@ - ovary growing follicle (embryonic mouse) - EMAPA:35628 + ovary growing follicle (embryonic mouse) @@ -57293,8 +51967,7 @@ - primary ovarian follicle (embryonic mouse) - EMAPA:35631 + primary ovarian follicle (embryonic mouse) @@ -57313,8 +51986,7 @@ - secondary ovarian follicle (embryonic mouse) - EMAPA:35632 + secondary ovarian follicle (embryonic mouse) @@ -57333,8 +52005,7 @@ - granulosa cell layer (embryonic mouse) - EMAPA:35633 + granulosa cell layer (embryonic mouse) @@ -57353,8 +52024,7 @@ - theca cell layer (embryonic mouse) - EMAPA:35636 + theca cell layer (embryonic mouse) @@ -57373,8 +52043,7 @@ - transverse palatine fold (embryonic mouse) - EMAPA:35638 + transverse palatine fold (embryonic mouse) @@ -57393,8 +52062,7 @@ - palatine gland (embryonic mouse) - EMAPA:35643 + palatine gland (embryonic mouse) @@ -57413,8 +52081,7 @@ - palatine tonsil (embryonic mouse) - EMAPA:35644 + palatine tonsil (embryonic mouse) @@ -57433,8 +52100,7 @@ - pancreatic epithelial bud (embryonic mouse) - EMAPA:35645 + pancreatic epithelial bud (embryonic mouse) @@ -57453,8 +52119,7 @@ - pancreatic acinus (embryonic mouse) - EMAPA:35651 + pancreatic acinus (embryonic mouse) @@ -57473,8 +52138,7 @@ - papillary duct (embryonic mouse) - EMAPA:35655 + papillary duct (embryonic mouse) @@ -57493,8 +52157,7 @@ - parabigeminal nucleus (embryonic mouse) - EMAPA:35656 + parabigeminal nucleus (embryonic mouse) @@ -57513,8 +52176,7 @@ - parabrachial nucleus (embryonic mouse) - EMAPA:35657 + parabrachial nucleus (embryonic mouse) @@ -57533,8 +52195,7 @@ - paracentral nucleus (embryonic mouse) - EMAPA:35658 + paracentral nucleus (embryonic mouse) @@ -57553,8 +52214,7 @@ - parafascicular nucleus (embryonic mouse) - EMAPA:35659 + parafascicular nucleus (embryonic mouse) @@ -57573,8 +52233,7 @@ - fallopian tube (embryonic mouse) - EMAPA:35660 + fallopian tube (embryonic mouse) @@ -57593,8 +52252,7 @@ - male paramesonephric duct (embryonic mouse) - EMAPA:35661 + male paramesonephric duct (embryonic mouse) @@ -57613,8 +52271,7 @@ - paranasal sinus (embryonic mouse) - EMAPA:35662 + paranasal sinus (embryonic mouse) @@ -57633,8 +52290,7 @@ - capsule of parathyroid gland (embryonic mouse) - EMAPA:35663 + capsule of parathyroid gland (embryonic mouse) @@ -57653,8 +52309,7 @@ - parenchyma of parathyroid gland (embryonic mouse) - EMAPA:35664 + parenchyma of parathyroid gland (embryonic mouse) @@ -57673,8 +52328,7 @@ - paraventricular nucleus of hypothalamus (embryonic mouse) - EMAPA:35665 + paraventricular nucleus of hypothalamus (embryonic mouse) @@ -57693,8 +52347,7 @@ - paraventricular nucleus of thalamus (embryonic mouse) - EMAPA:35666 + paraventricular nucleus of thalamus (embryonic mouse) @@ -57713,8 +52366,7 @@ - parietal cortex (embryonic mouse) - EMAPA:35667 + parietal cortex (embryonic mouse) @@ -57733,8 +52385,7 @@ - patella (embryonic mouse) - EMAPA:35668 + patella (embryonic mouse) @@ -57753,8 +52404,7 @@ - pectoral girdle bone (embryonic mouse) - EMAPA:35669 + pectoral girdle bone (embryonic mouse) @@ -57773,8 +52423,7 @@ - pectoral muscle (embryonic mouse) - EMAPA:35670 + pectoral muscle (embryonic mouse) @@ -57793,8 +52442,7 @@ - pedunculopontine tegmental nucleus (embryonic mouse) - EMAPA:35672 + pedunculopontine tegmental nucleus (embryonic mouse) @@ -57813,8 +52461,7 @@ - middle ear epithelium (embryonic mouse) - EMAPA:35673 + middle ear epithelium (embryonic mouse) @@ -57833,8 +52480,7 @@ - penis epithelium (embryonic mouse) - EMAPA:35674 + penis epithelium (embryonic mouse) @@ -57853,8 +52499,7 @@ - skin of penis (embryonic mouse) - EMAPA:35675 + skin of penis (embryonic mouse) @@ -57873,8 +52518,7 @@ - perichondrium (embryonic mouse) - EMAPA:35676 + perichondrium (embryonic mouse) @@ -57893,8 +52537,7 @@ - perilymphatic channel (embryonic mouse) - EMAPA:35677 + perilymphatic channel (embryonic mouse) @@ -57913,8 +52556,7 @@ - perineural vascular plexus (embryonic mouse) - EMAPA:35678 + perineural vascular plexus (embryonic mouse) @@ -57933,8 +52575,7 @@ - periodontal ligament (embryonic mouse) - EMAPA:35679 + periodontal ligament (embryonic mouse) @@ -57953,8 +52594,7 @@ - periolivary nucleus (embryonic mouse) - EMAPA:35680 + periolivary nucleus (embryonic mouse) @@ -57973,8 +52613,7 @@ - periosteum (embryonic mouse) - EMAPA:35681 + periosteum (embryonic mouse) @@ -57993,8 +52632,7 @@ - perirhinal cortex (embryonic mouse) - EMAPA:35682 + perirhinal cortex (embryonic mouse) @@ -58013,8 +52651,7 @@ - peritoneal fluid (embryonic mouse) - EMAPA:35683 + peritoneal fluid (embryonic mouse) @@ -58033,8 +52670,7 @@ - Peyer's patch germinal center (embryonic mouse) - EMAPA:35684 + Peyer's patch germinal center (embryonic mouse) @@ -58053,8 +52689,7 @@ - photoreceptor layer of retina (embryonic mouse) - EMAPA:35686 + photoreceptor layer of retina (embryonic mouse) @@ -58073,8 +52708,7 @@ - photoreceptor inner segment layer (embryonic mouse) - EMAPA:35687 + photoreceptor inner segment layer (embryonic mouse) @@ -58093,8 +52727,7 @@ - photoreceptor outer segment layer (embryonic mouse) - EMAPA:35688 + photoreceptor outer segment layer (embryonic mouse) @@ -58113,8 +52746,7 @@ - placenta (embryonic mouse) - EMAPA:35689 + placenta (embryonic mouse) @@ -58133,8 +52765,7 @@ - blood plasma (embryonic mouse) - EMAPA:35690 + blood plasma (embryonic mouse) @@ -58153,8 +52784,7 @@ - pontine nuclear group (embryonic mouse) - EMAPA:35692 + pontine nuclear group (embryonic mouse) @@ -58173,8 +52803,7 @@ - pontine reticular formation (embryonic mouse) - EMAPA:35693 + pontine reticular formation (embryonic mouse) @@ -58193,8 +52822,7 @@ - posterior amygdaloid nucleus (embryonic mouse) - EMAPA:35694 + posterior amygdaloid nucleus (embryonic mouse) @@ -58213,8 +52841,7 @@ - posterior commissure (embryonic mouse) - EMAPA:35695 + posterior commissure (embryonic mouse) @@ -58233,8 +52860,7 @@ - posterior nuclear complex of thalamus (embryonic mouse) - EMAPA:35697 + posterior nuclear complex of thalamus (embryonic mouse) @@ -58253,8 +52879,7 @@ - posterior nuclear complex of thalamus (embryonic mouse) - EMAPA:35698 + posterior nuclear complex of thalamus (embryonic mouse) @@ -58273,8 +52898,7 @@ - posterolateral cortical amygdaloid nucleus (embryonic mouse) - EMAPA:35699 + posterolateral cortical amygdaloid nucleus (embryonic mouse) @@ -58293,8 +52917,7 @@ - posteromedial cortical amygdaloid nucleus (embryonic mouse) - EMAPA:35700 + posteromedial cortical amygdaloid nucleus (embryonic mouse) @@ -58313,8 +52936,7 @@ - preputial gland (embryonic mouse) - EMAPA:35701 + preputial gland (embryonic mouse) @@ -58333,8 +52955,7 @@ - preputial swelling (embryonic mouse) - EMAPA:35702 + preputial swelling (embryonic mouse) @@ -58353,8 +52974,7 @@ - presubiculum (embryonic mouse) - EMAPA:35703 + presubiculum (embryonic mouse) @@ -58373,8 +52993,7 @@ - primary motor cortex (embryonic mouse) - EMAPA:35704 + primary motor cortex (embryonic mouse) @@ -58393,8 +53012,7 @@ - primary somatosensory cortex (embryonic mouse) - EMAPA:35706 + primary somatosensory cortex (embryonic mouse) @@ -58413,8 +53031,7 @@ - primary visual cortex (embryonic mouse) - EMAPA:35708 + primary visual cortex (embryonic mouse) @@ -58433,8 +53050,7 @@ - prostate gland dorsolateral lobe (embryonic mouse) - EMAPA:35710 + prostate gland dorsolateral lobe (embryonic mouse) @@ -58453,8 +53069,7 @@ - prostate epithelium (embryonic mouse) - EMAPA:35711 + prostate epithelium (embryonic mouse) @@ -58473,8 +53088,7 @@ - lobe of prostate (embryonic mouse) - EMAPA:35712 + lobe of prostate (embryonic mouse) @@ -58493,8 +53107,7 @@ - prostate gland smooth muscle (embryonic mouse) - EMAPA:35713 + prostate gland smooth muscle (embryonic mouse) @@ -58513,8 +53126,7 @@ - prostate gland stroma (embryonic mouse) - EMAPA:35714 + prostate gland stroma (embryonic mouse) @@ -58533,8 +53145,7 @@ - proximal phalanx (embryonic mouse) - EMAPA:35716 + proximal phalanx (embryonic mouse) @@ -58553,8 +53164,7 @@ - right lung alveolar system (embryonic mouse) - EMAPA:35717 + right lung alveolar system (embryonic mouse) @@ -58573,8 +53183,7 @@ - cardiac Purkinje fiber (embryonic mouse) - EMAPA:35718 + cardiac Purkinje fiber (embryonic mouse) @@ -58593,8 +53202,7 @@ - putamen (embryonic mouse) - EMAPA:35719 + putamen (embryonic mouse) @@ -58613,30 +53221,7 @@ - nucleus raphe magnus (embryonic mouse) - EMAPA:35720 - - - - - - - - - - - - - - - - - - - - midbrain raphe nuclei (embryonic mouse) - raphe nuclei (embryonic mouse) - EMAPA:35721 + nucleus raphe magnus (embryonic mouse) @@ -58655,8 +53240,7 @@ - nucleus raphe pallidus (embryonic mouse) - EMAPA:35722 + nucleus raphe pallidus (embryonic mouse) @@ -58675,8 +53259,7 @@ - red nucleus (embryonic mouse) - EMAPA:35724 + red nucleus (embryonic mouse) @@ -58695,8 +53278,7 @@ - renal convoluted tubule (embryonic mouse) - EMAPA:35725 + renal convoluted tubule (embryonic mouse) @@ -58715,8 +53297,7 @@ - renal corpuscle (embryonic mouse) - EMAPA:35726 + renal corpuscle (embryonic mouse) @@ -58735,8 +53316,7 @@ - renal papilla (embryonic mouse) - EMAPA:35727 + renal papilla (embryonic mouse) @@ -58755,8 +53335,7 @@ - respiratory bronchiole (embryonic mouse) - EMAPA:35729 + respiratory bronchiole (embryonic mouse) @@ -58775,8 +53354,7 @@ - epithelium of respiratory bronchiole (embryonic mouse) - EMAPA:35730 + epithelium of respiratory bronchiole (embryonic mouse) @@ -58795,8 +53373,7 @@ - respiratory system blood vessel (embryonic mouse) - EMAPA:35731 + respiratory system blood vessel (embryonic mouse) @@ -58815,8 +53392,7 @@ - respiratory system blood vessel endothelium (embryonic mouse) - EMAPA:35732 + respiratory system blood vessel endothelium (embryonic mouse) @@ -58835,8 +53411,7 @@ - respiratory system muscle (embryonic mouse) - EMAPA:35733 + respiratory system muscle (embryonic mouse) @@ -58855,8 +53430,7 @@ - respiratory system smooth muscle (embryonic mouse) - EMAPA:35734 + respiratory system smooth muscle (embryonic mouse) @@ -58875,8 +53449,7 @@ - reticular membrane of spiral organ (embryonic mouse) - EMAPA:35735 + reticular membrane of spiral organ (embryonic mouse) @@ -58895,8 +53468,7 @@ - reticulotegmental nucleus (embryonic mouse) - EMAPA:35736 + reticulotegmental nucleus (embryonic mouse) @@ -58915,8 +53487,7 @@ - thalamic reticular nucleus (embryonic mouse) - EMAPA:35737 + thalamic reticular nucleus (embryonic mouse) @@ -58935,8 +53506,7 @@ - pigmented layer of retina (embryonic mouse) - EMAPA:35738 + pigmented layer of retina (embryonic mouse) @@ -58955,8 +53525,7 @@ - ganglionic layer of retina (embryonic mouse) - EMAPA:35739 + ganglionic layer of retina (embryonic mouse) @@ -58975,8 +53544,7 @@ - inner plexiform layer of retina (embryonic mouse) - EMAPA:35741 + inner plexiform layer of retina (embryonic mouse) @@ -58995,8 +53563,7 @@ - layer of retina (embryonic mouse) - EMAPA:35742 + layer of retina (embryonic mouse) @@ -59015,8 +53582,7 @@ - outer plexiform layer of retina (embryonic mouse) - EMAPA:35744 + outer plexiform layer of retina (embryonic mouse) @@ -59035,8 +53601,7 @@ - retrohippocampal region (embryonic mouse) - EMAPA:35745 + retrohippocampal region (embryonic mouse) @@ -59055,8 +53620,7 @@ - rhombencephalon neural crest (embryonic mouse) - EMAPA:35747 + rhombencephalon neural crest (embryonic mouse) @@ -59075,8 +53639,7 @@ - right common carotid artery plus branches (embryonic mouse) - EMAPA:35749 + right common carotid artery plus branches (embryonic mouse) @@ -59095,8 +53658,7 @@ - duct of salivary gland (embryonic mouse) - EMAPA:35750 + duct of salivary gland (embryonic mouse) @@ -59115,8 +53677,7 @@ - scala media (embryonic mouse) - EMAPA:35751 + scala media (embryonic mouse) @@ -59135,8 +53696,7 @@ - scala tympani (embryonic mouse) - EMAPA:35752 + scala tympani (embryonic mouse) @@ -59155,8 +53715,7 @@ - scala vestibuli (embryonic mouse) - EMAPA:35753 + scala vestibuli (embryonic mouse) @@ -59175,8 +53734,7 @@ - sebaceous gland (embryonic mouse) - EMAPA:35754 + sebaceous gland (embryonic mouse) @@ -59195,8 +53753,7 @@ - secondary somatosensory cortex (embryonic mouse) - EMAPA:35756 + secondary somatosensory cortex (embryonic mouse) @@ -59215,8 +53772,7 @@ - secondary visual cortex (embryonic mouse) - EMAPA:35758 + secondary visual cortex (embryonic mouse) @@ -59235,8 +53791,7 @@ - secretory circumventricular organ (embryonic mouse) - EMAPA:35759 + secretory circumventricular organ (embryonic mouse) @@ -59255,8 +53810,7 @@ - semi-lunar valve (embryonic mouse) - EMAPA:35760 + semi-lunar valve (embryonic mouse) @@ -59275,8 +53829,7 @@ - seminiferous tubule epithelium (embryonic mouse) - EMAPA:35761 + seminiferous tubule epithelium (embryonic mouse) @@ -59295,8 +53848,7 @@ - semitendinosus (embryonic mouse) - EMAPA:35762 + semitendinosus (embryonic mouse) @@ -59315,8 +53867,7 @@ - septal nuclear complex (embryonic mouse) - EMAPA:35763 + septal nuclear complex (embryonic mouse) @@ -59335,8 +53886,7 @@ - septal olfactory organ (embryonic mouse) - EMAPA:35764 + septal olfactory organ (embryonic mouse) @@ -59355,8 +53905,7 @@ - Grueneberg ganglion (embryonic mouse) - EMAPA:35765 + Grueneberg ganglion (embryonic mouse) @@ -59375,8 +53924,7 @@ - septal organ of Masera (embryonic mouse) - EMAPA:35766 + septal organ of Masera (embryonic mouse) @@ -59395,8 +53943,7 @@ - septofimbrial nucleus (embryonic mouse) - EMAPA:35767 + septofimbrial nucleus (embryonic mouse) @@ -59415,8 +53962,7 @@ - septohippocampal nucleus (embryonic mouse) - EMAPA:35768 + septohippocampal nucleus (embryonic mouse) @@ -59435,8 +53981,7 @@ - serratus muscle (embryonic mouse) - EMAPA:35769 + serratus muscle (embryonic mouse) @@ -59455,8 +54000,7 @@ - blood serum (embryonic mouse) - EMAPA:35770 + blood serum (embryonic mouse) @@ -59475,8 +54019,7 @@ - sesamoid bone of gastrocnemius (embryonic mouse) - EMAPA:35771 + sesamoid bone of gastrocnemius (embryonic mouse) @@ -59495,8 +54038,7 @@ - sinoatrial node (embryonic mouse) - EMAPA:35772 + sinoatrial node (embryonic mouse) @@ -59515,8 +54057,7 @@ - skeletal system (embryonic mouse) - EMAPA:35773 + skeletal system (embryonic mouse) @@ -59535,8 +54076,7 @@ - skin gland (embryonic mouse) - EMAPA:35774 + skin gland (embryonic mouse) @@ -59555,8 +54095,7 @@ - skin mucous gland (embryonic mouse) - EMAPA:35775 + skin mucous gland (embryonic mouse) @@ -59575,8 +54114,7 @@ - skin muscle (embryonic mouse) - EMAPA:35776 + skin muscle (embryonic mouse) @@ -59595,8 +54133,7 @@ - crypt of Lieberkuhn of small intestine (embryonic mouse) - EMAPA:35777 + crypt of Lieberkuhn of small intestine (embryonic mouse) @@ -59615,8 +54152,7 @@ - epithelium of small intestine (embryonic mouse) - EMAPA:35778 + epithelium of small intestine (embryonic mouse) @@ -59635,8 +54171,7 @@ - lamina propria of small intestine (embryonic mouse) - EMAPA:35779 + lamina propria of small intestine (embryonic mouse) @@ -59655,8 +54190,7 @@ - mucosa of small intestine (embryonic mouse) - EMAPA:35780 + mucosa of small intestine (embryonic mouse) @@ -59675,8 +54209,7 @@ - muscularis mucosae of small intestine (embryonic mouse) - EMAPA:35781 + muscularis mucosae of small intestine (embryonic mouse) @@ -59695,8 +54228,7 @@ - small intestine Peyer's patch (embryonic mouse) - EMAPA:35782 + small intestine Peyer's patch (embryonic mouse) @@ -59715,8 +54247,7 @@ - small intestine smooth muscle (embryonic mouse) - EMAPA:35783 + small intestine smooth muscle (embryonic mouse) @@ -59735,8 +54266,7 @@ - intestinal villus (embryonic mouse) - EMAPA:35784 + intestinal villus (embryonic mouse) @@ -59755,8 +54285,7 @@ - wall of small intestine (embryonic mouse) - EMAPA:35785 + wall of small intestine (embryonic mouse) @@ -59775,8 +54304,7 @@ - soleus muscle (embryonic mouse) - EMAPA:35786 + soleus muscle (embryonic mouse) @@ -59795,8 +54323,7 @@ - nucleus of solitary tract (embryonic mouse) - EMAPA:35787 + nucleus of solitary tract (embryonic mouse) @@ -59815,8 +54342,7 @@ - sphincter pupillae (embryonic mouse) - EMAPA:35788 + sphincter pupillae (embryonic mouse) @@ -59835,8 +54361,7 @@ - central canal of spinal cord (embryonic mouse) - EMAPA:35789 + central canal of spinal cord (embryonic mouse) @@ -59855,8 +54380,7 @@ - dorsal horn of spinal cord (embryonic mouse) - EMAPA:35790 + dorsal horn of spinal cord (embryonic mouse) @@ -59875,8 +54399,7 @@ - spinal cord ependyma (embryonic mouse) - EMAPA:35791 + spinal cord ependyma (embryonic mouse) @@ -59895,8 +54418,7 @@ - gray matter of spinal cord (embryonic mouse) - EMAPA:35792 + gray matter of spinal cord (embryonic mouse) @@ -59915,8 +54437,7 @@ - ventral horn of spinal cord (embryonic mouse) - EMAPA:35794 + ventral horn of spinal cord (embryonic mouse) @@ -59935,8 +54456,7 @@ - white matter of spinal cord (embryonic mouse) - EMAPA:35795 + white matter of spinal cord (embryonic mouse) @@ -59955,8 +54475,7 @@ - inferior vestibular nucleus (embryonic mouse) - EMAPA:35797 + inferior vestibular nucleus (embryonic mouse) @@ -59975,8 +54494,7 @@ - spiral ligament (embryonic mouse) - EMAPA:35798 + spiral ligament (embryonic mouse) @@ -59995,8 +54513,7 @@ - spiral prominence of cochlear duct (embryonic mouse) - EMAPA:35799 + spiral prominence of cochlear duct (embryonic mouse) @@ -60015,8 +54532,7 @@ - spiral sulcus (embryonic mouse) - EMAPA:35800 + spiral sulcus (embryonic mouse) @@ -60035,8 +54551,7 @@ - cochlear canal (embryonic mouse) - EMAPA:35801 + cochlear canal (embryonic mouse) @@ -60055,8 +54570,7 @@ - spleen capsule (embryonic mouse) - EMAPA:35802 + spleen capsule (embryonic mouse) @@ -60075,8 +54589,7 @@ - spleen germinal center (embryonic mouse) - EMAPA:35803 + spleen germinal center (embryonic mouse) @@ -60095,8 +54608,7 @@ - spleen lymphoid follicle (embryonic mouse) - EMAPA:35804 + spleen lymphoid follicle (embryonic mouse) @@ -60115,8 +54627,7 @@ - spleen pulp (embryonic mouse) - EMAPA:35805 + spleen pulp (embryonic mouse) @@ -60135,8 +54646,7 @@ - red pulp of spleen (embryonic mouse) - EMAPA:35806 + red pulp of spleen (embryonic mouse) @@ -60155,8 +54665,7 @@ - spleen smooth muscle (embryonic mouse) - EMAPA:35807 + spleen smooth muscle (embryonic mouse) @@ -60175,8 +54684,7 @@ - trabecula of spleen (embryonic mouse) - EMAPA:35808 + trabecula of spleen (embryonic mouse) @@ -60195,8 +54703,7 @@ - white pulp of spleen (embryonic mouse) - EMAPA:35809 + white pulp of spleen (embryonic mouse) @@ -60215,8 +54722,7 @@ - body of stomach (embryonic mouse) - EMAPA:35810 + body of stomach (embryonic mouse) @@ -60235,8 +54741,7 @@ - cardia of stomach (embryonic mouse) - EMAPA:35811 + cardia of stomach (embryonic mouse) @@ -60255,8 +54760,7 @@ - stomach glandular epithelium (embryonic mouse) - EMAPA:35814 + stomach glandular epithelium (embryonic mouse) @@ -60275,8 +54779,7 @@ - mucosa of stomach (embryonic mouse) - EMAPA:35817 + mucosa of stomach (embryonic mouse) @@ -60295,8 +54798,7 @@ - muscularis mucosae of stomach (embryonic mouse) - EMAPA:35818 + muscularis mucosae of stomach (embryonic mouse) @@ -60315,8 +54817,7 @@ - right lung alveolar duct (embryonic mouse) - EMAPA:35819 + right lung alveolar duct (embryonic mouse) @@ -60335,8 +54836,7 @@ - zone of stomach (embryonic mouse) - EMAPA:35821 + zone of stomach (embryonic mouse) @@ -60355,8 +54855,7 @@ - serosa of stomach (embryonic mouse) - EMAPA:35822 + serosa of stomach (embryonic mouse) @@ -60375,8 +54874,7 @@ - stomach smooth muscle (embryonic mouse) - EMAPA:35823 + stomach smooth muscle (embryonic mouse) @@ -60395,8 +54893,7 @@ - stomach squamous epithelium (embryonic mouse) - EMAPA:35824 + stomach squamous epithelium (embryonic mouse) @@ -60415,8 +54912,7 @@ - submucosa of stomach (embryonic mouse) - EMAPA:35825 + submucosa of stomach (embryonic mouse) @@ -60435,8 +54931,7 @@ - wall of stomach (embryonic mouse) - EMAPA:35826 + wall of stomach (embryonic mouse) @@ -60455,8 +54950,7 @@ - stria vascularis of cochlear duct (embryonic mouse) - EMAPA:35827 + stria vascularis of cochlear duct (embryonic mouse) @@ -60475,8 +54969,7 @@ - subcommissural organ (embryonic mouse) - EMAPA:35828 + subcommissural organ (embryonic mouse) @@ -60495,8 +54988,7 @@ - subcutaneous adipose tissue (embryonic mouse) - EMAPA:35829 + subcutaneous adipose tissue (embryonic mouse) @@ -60515,8 +55007,7 @@ - subfornical organ (embryonic mouse) - EMAPA:35830 + subfornical organ (embryonic mouse) @@ -60535,8 +55026,7 @@ - dentate gyrus subgranular zone (embryonic mouse) - EMAPA:35831 + dentate gyrus subgranular zone (embryonic mouse) @@ -60555,8 +55045,7 @@ - subiculum (embryonic mouse) - EMAPA:35832 + subiculum (embryonic mouse) @@ -60575,8 +55064,7 @@ - submandibular duct (embryonic mouse) - EMAPA:35833 + submandibular duct (embryonic mouse) @@ -60595,8 +55083,7 @@ - submucous nerve plexus (embryonic mouse) - EMAPA:35834 + submucous nerve plexus (embryonic mouse) @@ -60615,8 +55102,7 @@ - substantia nigra (embryonic mouse) - EMAPA:35835 + substantia nigra (embryonic mouse) @@ -60635,8 +55121,7 @@ - substantia nigra pars compacta (embryonic mouse) - EMAPA:35836 + substantia nigra pars compacta (embryonic mouse) @@ -60655,8 +55140,7 @@ - substantia nigra pars lateralis (embryonic mouse) - EMAPA:35837 + substantia nigra pars lateralis (embryonic mouse) @@ -60675,8 +55159,7 @@ - substantia nigra pars reticulata (embryonic mouse) - EMAPA:35838 + substantia nigra pars reticulata (embryonic mouse) @@ -60695,8 +55178,7 @@ - subthalamic nucleus (embryonic mouse) - EMAPA:35839 + subthalamic nucleus (embryonic mouse) @@ -60715,8 +55197,7 @@ - superior olivary complex (embryonic mouse) - EMAPA:35840 + superior olivary complex (embryonic mouse) @@ -60735,8 +55216,7 @@ - suprachiasmatic nucleus (embryonic mouse) - EMAPA:35841 + suprachiasmatic nucleus (embryonic mouse) @@ -60755,8 +55235,7 @@ - supramammillary nucleus (embryonic mouse) - EMAPA:35842 + supramammillary nucleus (embryonic mouse) @@ -60775,8 +55254,7 @@ - supraoptic nucleus (embryonic mouse) - EMAPA:35843 + supraoptic nucleus (embryonic mouse) @@ -60795,8 +55273,7 @@ - sweat gland (embryonic mouse) - EMAPA:35844 + sweat gland (embryonic mouse) @@ -60815,8 +55292,7 @@ - sympathetic nerve trunk (embryonic mouse) - EMAPA:35845 + sympathetic nerve trunk (embryonic mouse) @@ -60835,8 +55311,7 @@ - synchondrosis (embryonic mouse) - EMAPA:35846 + synchondrosis (embryonic mouse) @@ -60855,8 +55330,7 @@ - taenia tectum of brain (embryonic mouse) - EMAPA:35847 + taenia tectum of brain (embryonic mouse) @@ -60875,8 +55349,7 @@ - tail blood vessel (embryonic mouse) - EMAPA:35848 + tail blood vessel (embryonic mouse) @@ -60895,8 +55368,7 @@ - taste bud (embryonic mouse) - EMAPA:35850 + taste bud (embryonic mouse) @@ -60915,8 +55387,7 @@ - tectorial membrane of cochlea (embryonic mouse) - EMAPA:35851 + tectorial membrane of cochlea (embryonic mouse) @@ -60935,8 +55406,7 @@ - temporal cortex association area (embryonic mouse) - EMAPA:35852 + temporal cortex association area (embryonic mouse) @@ -60955,8 +55425,7 @@ - calcaneal tendon (embryonic mouse) - EMAPA:35853 + calcaneal tendon (embryonic mouse) @@ -60975,8 +55444,7 @@ - tendon (embryonic mouse) - EMAPA:35854 + tendon (embryonic mouse) @@ -60995,8 +55463,7 @@ - tensor fasciae latae muscle (embryonic mouse) - EMAPA:35855 + tensor fasciae latae muscle (embryonic mouse) @@ -61015,8 +55482,7 @@ - mesenchyme of testis (embryonic mouse) - EMAPA:35858 + mesenchyme of testis (embryonic mouse) @@ -61035,8 +55501,7 @@ - nucleus of thalamus (embryonic mouse) - EMAPA:35859 + nucleus of thalamus (embryonic mouse) @@ -61055,8 +55520,7 @@ - thoracic segment of trunk (embryonic mouse) - EMAPA:35862 + thoracic segment of trunk (embryonic mouse) @@ -61075,8 +55539,7 @@ - cortex of thymus (embryonic mouse) - EMAPA:35863 + cortex of thymus (embryonic mouse) @@ -61095,8 +55558,7 @@ - thymus epithelium (embryonic mouse) - EMAPA:35864 + thymus epithelium (embryonic mouse) @@ -61115,8 +55577,7 @@ - tibialis anterior (embryonic mouse) - EMAPA:35866 + tibialis anterior (embryonic mouse) @@ -61135,8 +55596,7 @@ - tibialis (embryonic mouse) - EMAPA:35867 + tibialis (embryonic mouse) @@ -61155,8 +55615,7 @@ - tissue (embryonic mouse) - EMAPA:35868 + tissue (embryonic mouse) @@ -61175,8 +55634,7 @@ - tongue papilla epithelium (embryonic mouse) - EMAPA:35869 + tongue papilla epithelium (embryonic mouse) @@ -61195,8 +55653,7 @@ - tonsil (embryonic mouse) - EMAPA:35871 + tonsil (embryonic mouse) @@ -61215,8 +55672,7 @@ - odontoid tissue (embryonic mouse) - EMAPA:35872 + odontoid tissue (embryonic mouse) @@ -61235,8 +55691,7 @@ - trabecular bone tissue (embryonic mouse) - EMAPA:35873 + trabecular bone tissue (embryonic mouse) @@ -61255,8 +55710,7 @@ - trachea blood vessel (embryonic mouse) - EMAPA:35874 + trachea blood vessel (embryonic mouse) @@ -61275,8 +55729,7 @@ - trachea cartilage (embryonic mouse) - EMAPA:35875 + trachea cartilage (embryonic mouse) @@ -61295,8 +55748,7 @@ - trachea connective tissue (embryonic mouse) - EMAPA:35876 + trachea connective tissue (embryonic mouse) @@ -61315,8 +55767,7 @@ - lamina propria of trachea (embryonic mouse) - EMAPA:35877 + lamina propria of trachea (embryonic mouse) @@ -61335,8 +55786,7 @@ - trachea non-cartilage connective tissue (embryonic mouse) - EMAPA:35878 + trachea non-cartilage connective tissue (embryonic mouse) @@ -61355,8 +55805,7 @@ - submucosa of trachea (embryonic mouse) - EMAPA:35879 + submucosa of trachea (embryonic mouse) @@ -61375,8 +55824,7 @@ - transverse colon (embryonic mouse) - EMAPA:35880 + transverse colon (embryonic mouse) @@ -61395,8 +55843,7 @@ - mesencephalic nucleus of trigeminal nerve (embryonic mouse) - EMAPA:35881 + mesencephalic nucleus of trigeminal nerve (embryonic mouse) @@ -61415,8 +55862,7 @@ - motor nucleus of trigeminal nerve (embryonic mouse) - EMAPA:35882 + motor nucleus of trigeminal nerve (embryonic mouse) @@ -61435,8 +55881,7 @@ - trigeminal nucleus (embryonic mouse) - EMAPA:35883 + trigeminal nucleus (embryonic mouse) @@ -61455,8 +55900,7 @@ - trigeminal sensory nucleus (embryonic mouse) - EMAPA:35884 + trigeminal sensory nucleus (embryonic mouse) @@ -61475,8 +55919,7 @@ - spinal nucleus of trigeminal nerve (embryonic mouse) - EMAPA:35885 + spinal nucleus of trigeminal nerve (embryonic mouse) @@ -61495,8 +55938,7 @@ - trochlear nucleus (embryonic mouse) - EMAPA:35886 + trochlear nucleus (embryonic mouse) @@ -61515,8 +55957,7 @@ - truncus arteriosus (embryonic mouse) - EMAPA:35887 + truncus arteriosus (embryonic mouse) @@ -61535,8 +55976,7 @@ - skeletal muscle of trunk (embryonic mouse) - EMAPA:35888 + skeletal muscle of trunk (embryonic mouse) @@ -61555,8 +55995,7 @@ - tuberomammillary nucleus (embryonic mouse) - EMAPA:35889 + tuberomammillary nucleus (embryonic mouse) @@ -61575,8 +56014,7 @@ - nasal concha cartilage (embryonic mouse) - EMAPA:35890 + nasal concha cartilage (embryonic mouse) @@ -61595,8 +56033,7 @@ - upper arm bone (embryonic mouse) - EMAPA:35892 + upper arm bone (embryonic mouse) @@ -61615,8 +56052,7 @@ - upper leg bone (embryonic mouse) - EMAPA:35893 + upper leg bone (embryonic mouse) @@ -61635,8 +56071,7 @@ - upper respiratory tract epithelium (embryonic mouse) - EMAPA:35894 + upper respiratory tract epithelium (embryonic mouse) @@ -61655,8 +56090,7 @@ - urethra urothelium (embryonic mouse) - EMAPA:35896 + urethra urothelium (embryonic mouse) @@ -61675,8 +56109,7 @@ - mucosa of urinary bladder (embryonic mouse) - EMAPA:35897 + mucosa of urinary bladder (embryonic mouse) @@ -61695,8 +56128,7 @@ - gonadal ridge (embryonic mouse) - EMAPA:35899 + gonadal ridge (embryonic mouse) @@ -61715,8 +56147,7 @@ - uvea (embryonic mouse) - EMAPA:35901 + uvea (embryonic mouse) @@ -61735,8 +56166,7 @@ - lamina propria of vagina (embryonic mouse) - EMAPA:35902 + lamina propria of vagina (embryonic mouse) @@ -61755,8 +56185,7 @@ - cardiac valve leaflet (embryonic mouse) - EMAPA:35903 + cardiac valve leaflet (embryonic mouse) @@ -61775,8 +56204,7 @@ - vascular plexus (embryonic mouse) - EMAPA:35904 + vascular plexus (embryonic mouse) @@ -61795,8 +56223,7 @@ - vascular system (embryonic mouse) - EMAPA:35905 + vascular system (embryonic mouse) @@ -61815,8 +56242,7 @@ - vein (embryonic mouse) - EMAPA:35906 + vein (embryonic mouse) @@ -61835,8 +56261,7 @@ - venous system endothelium (embryonic mouse) - EMAPA:35907 + venous system endothelium (embryonic mouse) @@ -61855,8 +56280,7 @@ - ventral lateral geniculate nucleus (embryonic mouse) - EMAPA:35908 + ventral lateral geniculate nucleus (embryonic mouse) @@ -61875,8 +56299,7 @@ - ventral posterolateral nucleus (embryonic mouse) - EMAPA:35910 + ventral posterolateral nucleus (embryonic mouse) @@ -61895,30 +56318,7 @@ - ventral posteromedial nucleus of thalamus (embryonic mouse) - EMAPA:35911 - - - - - - - - - - - - - - - - - - - - ventral posterior nucleus of thalamus (embryonic mouse) - ventral posteroinferior nucleus (embryonic mouse) - EMAPA:35912 + ventral posteromedial nucleus of thalamus (embryonic mouse) @@ -61937,8 +56337,7 @@ - ventral tegmental area (embryonic mouse) - EMAPA:35913 + ventral tegmental area (embryonic mouse) @@ -61957,8 +56356,7 @@ - ventral tegmental nucleus (embryonic mouse) - EMAPA:35914 + ventral tegmental nucleus (embryonic mouse) @@ -61977,8 +56375,7 @@ - ventral thalamus (embryonic mouse) - EMAPA:35915 + ventral thalamus (embryonic mouse) @@ -61997,8 +56394,7 @@ - ventromedial nucleus of hypothalamus (embryonic mouse) - EMAPA:35916 + ventromedial nucleus of hypothalamus (embryonic mouse) @@ -62017,8 +56413,7 @@ - venule (embryonic mouse) - EMAPA:35917 + venule (embryonic mouse) @@ -62037,8 +56432,7 @@ - postzygapophysis (embryonic mouse) - EMAPA:35918 + postzygapophysis (embryonic mouse) @@ -62057,8 +56451,7 @@ - vertebral column (embryonic mouse) - EMAPA:35919 + vertebral column (embryonic mouse) @@ -62077,8 +56470,7 @@ - vestibular epithelium (embryonic mouse) - EMAPA:35921 + vestibular epithelium (embryonic mouse) @@ -62097,8 +56489,7 @@ - vestibular membrane of cochlear duct (embryonic mouse) - EMAPA:35922 + vestibular membrane of cochlear duct (embryonic mouse) @@ -62117,8 +56508,7 @@ - vestibular nucleus (embryonic mouse) - EMAPA:35923 + vestibular nucleus (embryonic mouse) @@ -62137,8 +56527,7 @@ - facial bone (embryonic mouse) - EMAPA:35924 + facial bone (embryonic mouse) @@ -62157,8 +56546,7 @@ - mesenchyme of umbilical cord (embryonic mouse) - EMAPA:35925 + mesenchyme of umbilical cord (embryonic mouse) @@ -62177,8 +56565,7 @@ - white adipose tissue (embryonic mouse) - EMAPA:35926 + white adipose tissue (embryonic mouse) @@ -62197,8 +56584,7 @@ - white matter (embryonic mouse) - EMAPA:35927 + white matter (embryonic mouse) @@ -62217,8 +56603,7 @@ - zona incerta (embryonic mouse) - EMAPA:35930 + zona incerta (embryonic mouse) @@ -62237,8 +56622,7 @@ - pelvic region of trunk (embryonic mouse) - EMAPA:35931 + pelvic region of trunk (embryonic mouse) @@ -62257,8 +56641,7 @@ - venous blood vessel (embryonic mouse) - EMAPA:35932 + venous blood vessel (embryonic mouse) @@ -62277,8 +56660,7 @@ - bone of pectoral complex (embryonic mouse) - EMAPA:35933 + bone of pectoral complex (embryonic mouse) @@ -62297,8 +56679,7 @@ - bone of pelvic complex (embryonic mouse) - EMAPA:35934 + bone of pelvic complex (embryonic mouse) @@ -62317,8 +56698,7 @@ - corneal endothelium (embryonic mouse) - EMAPA:35935 + corneal endothelium (embryonic mouse) @@ -62337,8 +56717,7 @@ - limb bud (embryonic mouse) - EMAPA:35944 + limb bud (embryonic mouse) @@ -62357,8 +56736,7 @@ - gingiva (embryonic mouse) - EMAPA:35945 + gingiva (embryonic mouse) @@ -62377,8 +56755,7 @@ - organ (embryonic mouse) - EMAPA:35949 + organ (embryonic mouse) @@ -62397,8 +56774,7 @@ - sensory organ epithelium (embryonic mouse) - EMAPA:35952 + sensory organ epithelium (embryonic mouse) @@ -62417,8 +56793,7 @@ - sense organ (embryonic mouse) - EMAPA:35955 + sense organ (embryonic mouse) @@ -62437,8 +56812,7 @@ - outer ear epithelium (embryonic mouse) - EMAPA:35956 + outer ear epithelium (embryonic mouse) @@ -62457,8 +56831,7 @@ - eye epithelium (embryonic mouse) - EMAPA:35957 + eye epithelium (embryonic mouse) @@ -62477,8 +56850,7 @@ - nose epithelium (embryonic mouse) - EMAPA:35958 + nose epithelium (embryonic mouse) @@ -62497,8 +56869,7 @@ - naris epithelium (embryonic mouse) - EMAPA:35959 + naris epithelium (embryonic mouse) @@ -62517,8 +56888,7 @@ - urethral opening (embryonic mouse) - EMAPA:35965 + urethral opening (embryonic mouse) @@ -62537,8 +56907,7 @@ - respiratory system connective tissue (embryonic mouse) - EMAPA:35968 + respiratory system connective tissue (embryonic mouse) @@ -62557,8 +56926,7 @@ - glomerular parietal epithelium (embryonic mouse) - EMAPA:35969 + glomerular parietal epithelium (embryonic mouse) @@ -62577,8 +56945,7 @@ - respiratory system connective tissue (embryonic mouse) - EMAPA:35977 + respiratory system connective tissue (embryonic mouse) @@ -62597,8 +56964,7 @@ - auditory ossicle cartilage element (embryonic mouse) - EMAPA:35979 + auditory ossicle cartilage element (embryonic mouse) @@ -62617,8 +56983,7 @@ - auditory ossicle pre-cartilage element (embryonic mouse) - EMAPA:35982 + auditory ossicle pre-cartilage element (embryonic mouse) @@ -62637,8 +57002,7 @@ - skeletal muscle organ (embryonic mouse) - EMAPA:35988 + skeletal muscle organ (embryonic mouse) @@ -62657,8 +57021,7 @@ - abdominal lymph node (embryonic mouse) - EMAPA:35992 + abdominal lymph node (embryonic mouse) @@ -62677,8 +57040,7 @@ - blood vessel (embryonic mouse) - EMAPA:35993 + blood vessel (embryonic mouse) @@ -62697,8 +57059,7 @@ - respiratory system blood vessel (embryonic mouse) - EMAPA:35995 + respiratory system blood vessel (embryonic mouse) @@ -62717,8 +57078,7 @@ - head bone (embryonic mouse) - EMAPA:35996 + head bone (embryonic mouse) @@ -62737,8 +57097,7 @@ - right lung alveolus (embryonic mouse) - EMAPA:35997 + right lung alveolus (embryonic mouse) @@ -62757,8 +57116,7 @@ - pituitary gland (embryonic mouse) - EMAPA:35998 + pituitary gland (embryonic mouse) @@ -62777,8 +57135,7 @@ - endocrine gland (embryonic mouse) - EMAPA:35999 + endocrine gland (embryonic mouse) @@ -62797,30 +57154,7 @@ - mediastinum (embryonic mouse) - EMAPA:36001 - - - - - - - - - - - - - - - - - - - - auditory system (embryonic mouse) - vestibulo-auditory system (embryonic mouse) - EMAPA:36002 + mediastinum (embryonic mouse) @@ -62839,8 +57173,7 @@ - visual system (embryonic mouse) - EMAPA:36003 + visual system (embryonic mouse) @@ -62859,8 +57192,7 @@ - olfactory system (embryonic mouse) - EMAPA:36004 + olfactory system (embryonic mouse) @@ -62879,8 +57211,7 @@ - lung hilus (embryonic mouse) - EMAPA:36005 + lung hilus (embryonic mouse) @@ -62899,8 +57230,7 @@ - lung primordium (embryonic mouse) - EMAPA:36007 + lung primordium (embryonic mouse) @@ -62919,8 +57249,7 @@ - body of rib (embryonic mouse) - EMAPA:36014 + body of rib (embryonic mouse) @@ -62939,8 +57268,7 @@ - vitelline vein (embryonic mouse) - EMAPA:36021 + vitelline vein (embryonic mouse) @@ -62959,8 +57287,7 @@ - future telencephalon (embryonic mouse) - EMAPA:36024 + future telencephalon (embryonic mouse) @@ -62979,8 +57306,7 @@ - proepicardium (embryonic mouse) - EMAPA:36025 + proepicardium (embryonic mouse) @@ -62999,8 +57325,7 @@ - nasal cavity mucosa (embryonic mouse) - EMAPA:36026 + nasal cavity mucosa (embryonic mouse) @@ -63019,8 +57344,7 @@ - mucosa of nasal septum (embryonic mouse) - EMAPA:36028 + mucosa of nasal septum (embryonic mouse) @@ -63039,30 +57363,7 @@ - ultimobranchial body (embryonic mouse) - EMAPA:36030 - - - - - - - - - - - - - - - - - - - - body proper (embryonic mouse) - organism subdivision (embryonic mouse) - EMAPA:36031 + ultimobranchial body (embryonic mouse) @@ -63081,8 +57382,7 @@ - early embryo (embryonic mouse) - EMAPA:36032 + early embryo (embryonic mouse) @@ -63101,8 +57401,7 @@ - germ layer (embryonic mouse) - EMAPA:36033 + germ layer (embryonic mouse) @@ -63121,8 +57420,7 @@ - blastocyst (embryonic mouse) - EMAPA:36035 + blastocyst (embryonic mouse) @@ -63141,8 +57439,7 @@ - proamniotic cavity (embryonic mouse) - EMAPA:36038 + proamniotic cavity (embryonic mouse) @@ -63161,8 +57458,7 @@ - primary yolk sac cavity (embryonic mouse) - EMAPA:36039 + primary yolk sac cavity (embryonic mouse) @@ -63181,8 +57477,7 @@ - conceptus (embryonic mouse) - EMAPA:36040 + conceptus (embryonic mouse) @@ -63201,30 +57496,7 @@ - forelimb muscle (embryonic mouse) - EMAPA:36049 - - - - - - - - - - - - - - - - - - - - muscle of neck (embryonic mouse) - musculature of neck (embryonic mouse) - EMAPA:36050 + forelimb muscle (embryonic mouse) @@ -63243,8 +57515,7 @@ - amygdala (embryonic mouse) - EMAPA:36051 + amygdala (embryonic mouse) @@ -63263,8 +57534,7 @@ - anal sphincter (embryonic mouse) - EMAPA:36052 + anal sphincter (embryonic mouse) @@ -63283,8 +57553,7 @@ - muscle of arm (embryonic mouse) - EMAPA:36053 + muscle of arm (embryonic mouse) @@ -63303,8 +57572,7 @@ - atrium auricular region (embryonic mouse) - EMAPA:36055 + atrium auricular region (embryonic mouse) @@ -63323,8 +57591,7 @@ - cardiac muscle of auricular region (embryonic mouse) - EMAPA:36056 + cardiac muscle of auricular region (embryonic mouse) @@ -63343,8 +57610,7 @@ - interventricular foramen of CNS (embryonic mouse) - EMAPA:36067 + interventricular foramen of CNS (embryonic mouse) @@ -63363,8 +57629,7 @@ - anterior visceral endoderm (embryonic mouse) - EMAPA:36068 + anterior visceral endoderm (embryonic mouse) @@ -63383,8 +57648,7 @@ - cloacal epithelium (embryonic mouse) - EMAPA:36070 + cloacal epithelium (embryonic mouse) @@ -63403,8 +57667,7 @@ - neck of urinary bladder (embryonic mouse) - EMAPA:36078 + neck of urinary bladder (embryonic mouse) @@ -63423,8 +57686,7 @@ - egg cylinder (embryonic mouse) - EMAPA:36119 + egg cylinder (embryonic mouse) @@ -63443,8 +57705,7 @@ - paraurethral gland (embryonic mouse) - EMAPA:36133 + paraurethral gland (embryonic mouse) @@ -63463,8 +57724,7 @@ - paraurethral gland (embryonic mouse) - EMAPA:36134 + paraurethral gland (embryonic mouse) @@ -63483,8 +57743,7 @@ - prostate bud (embryonic mouse) - EMAPA:36141 + prostate bud (embryonic mouse) @@ -63503,8 +57762,7 @@ - muscle of shoulder (embryonic mouse) - EMAPA:36154 + muscle of shoulder (embryonic mouse) @@ -63523,8 +57781,7 @@ - teres muscle (embryonic mouse) - EMAPA:36155 + teres muscle (embryonic mouse) @@ -63543,8 +57800,7 @@ - teres minor muscle (embryonic mouse) - EMAPA:36156 + teres minor muscle (embryonic mouse) @@ -63563,30 +57819,7 @@ - psoas muscle (embryonic mouse) - EMAPA:36157 - - - - - - - - - - - - - - - - - - - - metacarpal bone (embryonic mouse) - metacarpus skeleton (embryonic mouse) - EMAPA:36158 + psoas muscle (embryonic mouse) @@ -63605,8 +57838,7 @@ - metatarsal bone (embryonic mouse) - EMAPA:36159 + metatarsal bone (embryonic mouse) @@ -63625,8 +57857,7 @@ - muscle of pes (embryonic mouse) - EMAPA:36160 + muscle of pes (embryonic mouse) @@ -63645,8 +57876,7 @@ - proximal carpal bone (embryonic mouse) - EMAPA:36164 + proximal carpal bone (embryonic mouse) @@ -63665,8 +57895,7 @@ - pisiform (embryonic mouse) - EMAPA:36165 + pisiform (embryonic mouse) @@ -63685,8 +57914,7 @@ - scapholunate (embryonic mouse) - EMAPA:36166 + scapholunate (embryonic mouse) @@ -63705,8 +57933,7 @@ - ulnare (embryonic mouse) - EMAPA:36167 + ulnare (embryonic mouse) @@ -63725,8 +57952,7 @@ - distal carpal bone (embryonic mouse) - EMAPA:36168 + distal carpal bone (embryonic mouse) @@ -63745,8 +57971,7 @@ - distal carpal bone 3 (embryonic mouse) - EMAPA:36169 + distal carpal bone 3 (embryonic mouse) @@ -63765,8 +57990,7 @@ - centrale (embryonic mouse) - EMAPA:36170 + centrale (embryonic mouse) @@ -63785,8 +58009,7 @@ - falciform carpal bone (embryonic mouse) - EMAPA:36171 + falciform carpal bone (embryonic mouse) @@ -63805,8 +58028,7 @@ - distal carpal bone 4 (embryonic mouse) - EMAPA:36172 + distal carpal bone 4 (embryonic mouse) @@ -63825,8 +58047,7 @@ - distal carpal bone 1 (embryonic mouse) - EMAPA:36173 + distal carpal bone 1 (embryonic mouse) @@ -63845,8 +58066,7 @@ - distal carpal bone 2 (embryonic mouse) - EMAPA:36174 + distal carpal bone 2 (embryonic mouse) @@ -63865,8 +58085,7 @@ - cuboid bone (embryonic mouse) - EMAPA:36175 + cuboid bone (embryonic mouse) @@ -63885,8 +58104,7 @@ - distal tarsal bone 1 (embryonic mouse) - EMAPA:36176 + distal tarsal bone 1 (embryonic mouse) @@ -63905,8 +58123,7 @@ - distal tarsal bone 2 (embryonic mouse) - EMAPA:36177 + distal tarsal bone 2 (embryonic mouse) @@ -63925,8 +58142,7 @@ - distal tarsal bone 3 (embryonic mouse) - EMAPA:36178 + distal tarsal bone 3 (embryonic mouse) @@ -63945,8 +58161,7 @@ - medial tibial tarsal bone (embryonic mouse) - EMAPA:36179 + medial tibial tarsal bone (embryonic mouse) @@ -63965,8 +58180,7 @@ - navicular bone of pes (embryonic mouse) - EMAPA:36180 + navicular bone of pes (embryonic mouse) @@ -63985,8 +58199,7 @@ - anconeus muscle (embryonic mouse) - EMAPA:36181 + anconeus muscle (embryonic mouse) @@ -64005,8 +58218,7 @@ - coracobrachialis muscle (embryonic mouse) - EMAPA:36182 + coracobrachialis muscle (embryonic mouse) @@ -64025,8 +58237,7 @@ - extensor carpi radialis muscle (embryonic mouse) - EMAPA:36187 + extensor carpi radialis muscle (embryonic mouse) @@ -64045,8 +58256,7 @@ - extensor carpi radialis brevis muscle (embryonic mouse) - EMAPA:36188 + extensor carpi radialis brevis muscle (embryonic mouse) @@ -64065,8 +58275,7 @@ - extensor carpi radialis longus muscle (embryonic mouse) - EMAPA:36189 + extensor carpi radialis longus muscle (embryonic mouse) @@ -64085,8 +58294,7 @@ - extensor carpi ulnaris muscle (embryonic mouse) - EMAPA:36190 + extensor carpi ulnaris muscle (embryonic mouse) @@ -64105,8 +58313,7 @@ - extensor digitorum communis (embryonic mouse) - EMAPA:36191 + extensor digitorum communis (embryonic mouse) @@ -64125,8 +58332,7 @@ - extensor digitorum lateralis muscle (embryonic mouse) - EMAPA:36192 + extensor digitorum lateralis muscle (embryonic mouse) @@ -64145,8 +58351,7 @@ - extensor pollicis brevis muscle (embryonic mouse) - EMAPA:36195 + extensor pollicis brevis muscle (embryonic mouse) @@ -64165,8 +58370,7 @@ - extensor pollicis longus muscle (embryonic mouse) - EMAPA:36196 + extensor pollicis longus muscle (embryonic mouse) @@ -64185,8 +58389,7 @@ - flexor carpi radialis muscle (embryonic mouse) - EMAPA:36197 + flexor carpi radialis muscle (embryonic mouse) @@ -64205,8 +58408,7 @@ - flexor carpi ulnaris muscle (embryonic mouse) - EMAPA:36198 + flexor carpi ulnaris muscle (embryonic mouse) @@ -64225,8 +58427,7 @@ - flexor digitorum superficialis (embryonic mouse) - EMAPA:36202 + flexor digitorum superficialis (embryonic mouse) @@ -64245,8 +58446,7 @@ - palmaris longus muscle (embryonic mouse) - EMAPA:36205 + palmaris longus muscle (embryonic mouse) @@ -64265,8 +58465,7 @@ - pronator teres (embryonic mouse) - EMAPA:36207 + pronator teres (embryonic mouse) @@ -64285,8 +58484,7 @@ - supinator muscle (embryonic mouse) - EMAPA:36208 + supinator muscle (embryonic mouse) @@ -64305,8 +58503,7 @@ - abductor pollicis longus (embryonic mouse) - EMAPA:36210 + abductor pollicis longus (embryonic mouse) @@ -64325,8 +58522,7 @@ - adductor pollicis muscle (embryonic mouse) - EMAPA:36213 + adductor pollicis muscle (embryonic mouse) @@ -64345,8 +58541,7 @@ - interosseous muscle of manus (embryonic mouse) - EMAPA:36216 + interosseous muscle of manus (embryonic mouse) @@ -64365,8 +58560,7 @@ - lumbrical muscle of manus (embryonic mouse) - EMAPA:36217 + lumbrical muscle of manus (embryonic mouse) @@ -64385,8 +58579,7 @@ - adductor brevis (embryonic mouse) - EMAPA:36219 + adductor brevis (embryonic mouse) @@ -64405,8 +58598,7 @@ - adductor longus (embryonic mouse) - EMAPA:36220 + adductor longus (embryonic mouse) @@ -64425,8 +58617,7 @@ - adductor magnus (embryonic mouse) - EMAPA:36221 + adductor magnus (embryonic mouse) @@ -64445,8 +58636,7 @@ - caudofemoralis (embryonic mouse) - EMAPA:36226 + caudofemoralis (embryonic mouse) @@ -64465,8 +58655,7 @@ - gemellus muscle (embryonic mouse) - EMAPA:36227 + gemellus muscle (embryonic mouse) @@ -64485,8 +58674,7 @@ - inferior gemellus muscle (embryonic mouse) - EMAPA:36228 + inferior gemellus muscle (embryonic mouse) @@ -64505,8 +58693,7 @@ - superior gemellus muscle (embryonic mouse) - EMAPA:36229 + superior gemellus muscle (embryonic mouse) @@ -64525,8 +58712,7 @@ - gluteus minimus (embryonic mouse) - EMAPA:36230 + gluteus minimus (embryonic mouse) @@ -64545,8 +58731,7 @@ - gracilis (embryonic mouse) - EMAPA:36231 + gracilis (embryonic mouse) @@ -64565,8 +58750,7 @@ - obturator muscle (embryonic mouse) - EMAPA:36235 + obturator muscle (embryonic mouse) @@ -64585,8 +58769,7 @@ - obturator externus (embryonic mouse) - EMAPA:36236 + obturator externus (embryonic mouse) @@ -64605,8 +58788,7 @@ - obturator internus (embryonic mouse) - EMAPA:36237 + obturator internus (embryonic mouse) @@ -64625,8 +58807,7 @@ - pectineus muscle (embryonic mouse) - EMAPA:36238 + pectineus muscle (embryonic mouse) @@ -64645,8 +58826,7 @@ - piriformis muscle (embryonic mouse) - EMAPA:36239 + piriformis muscle (embryonic mouse) @@ -64665,8 +58845,7 @@ - popliteus muscle (embryonic mouse) - EMAPA:36240 + popliteus muscle (embryonic mouse) @@ -64685,8 +58864,7 @@ - quadratus femoris (embryonic mouse) - EMAPA:36241 + quadratus femoris (embryonic mouse) @@ -64705,8 +58883,7 @@ - semimembranosus muscle (embryonic mouse) - EMAPA:36242 + semimembranosus muscle (embryonic mouse) @@ -64725,8 +58902,7 @@ - vastus intermedius (embryonic mouse) - EMAPA:36243 + vastus intermedius (embryonic mouse) @@ -64745,8 +58921,7 @@ - vastus lateralis (embryonic mouse) - EMAPA:36244 + vastus lateralis (embryonic mouse) @@ -64765,8 +58940,7 @@ - vastus medialis (embryonic mouse) - EMAPA:36245 + vastus medialis (embryonic mouse) @@ -64785,8 +58959,7 @@ - flexor digitorum brevis muscle (embryonic mouse) - EMAPA:36247 + flexor digitorum brevis muscle (embryonic mouse) @@ -64805,8 +58978,7 @@ - flexor digitorum longus (embryonic mouse) - EMAPA:36248 + flexor digitorum longus (embryonic mouse) @@ -64825,8 +58997,7 @@ - gastrocnemius lateralis (embryonic mouse) - EMAPA:36249 + gastrocnemius lateralis (embryonic mouse) @@ -64845,8 +59016,7 @@ - gastrocnemius medialis (embryonic mouse) - EMAPA:36250 + gastrocnemius medialis (embryonic mouse) @@ -64865,8 +59035,7 @@ - peroneus (embryonic mouse) - EMAPA:36251 + peroneus (embryonic mouse) @@ -64885,8 +59054,7 @@ - fibularis brevis (embryonic mouse) - EMAPA:36252 + fibularis brevis (embryonic mouse) @@ -64905,8 +59073,7 @@ - fibularis longus (embryonic mouse) - EMAPA:36253 + fibularis longus (embryonic mouse) @@ -64925,8 +59092,7 @@ - plantaris (embryonic mouse) - EMAPA:36254 + plantaris (embryonic mouse) @@ -64945,8 +59111,7 @@ - tibialis posterior (embryonic mouse) - EMAPA:36255 + tibialis posterior (embryonic mouse) @@ -64965,8 +59130,7 @@ - extensor digitorum brevis pes (embryonic mouse) - EMAPA:36258 + extensor digitorum brevis pes (embryonic mouse) @@ -64985,8 +59149,7 @@ - flexor hallucis brevis muscle (embryonic mouse) - EMAPA:36259 + flexor hallucis brevis muscle (embryonic mouse) @@ -65005,8 +59168,7 @@ - fibularis quartus (embryonic mouse) - EMAPA:36260 + fibularis quartus (embryonic mouse) @@ -65025,8 +59187,7 @@ - fibularis tertius (embryonic mouse) - EMAPA:36261 + fibularis tertius (embryonic mouse) @@ -65045,8 +59206,7 @@ - interosseous muscle of pes (embryonic mouse) - EMAPA:36262 + interosseous muscle of pes (embryonic mouse) @@ -65065,8 +59225,7 @@ - lumbrical muscle of pes (embryonic mouse) - EMAPA:36263 + lumbrical muscle of pes (embryonic mouse) @@ -65085,8 +59244,7 @@ - rectus femoris (embryonic mouse) - EMAPA:36266 + rectus femoris (embryonic mouse) @@ -65105,8 +59263,7 @@ - triceps surae (embryonic mouse) - EMAPA:36267 + triceps surae (embryonic mouse) @@ -65125,8 +59282,7 @@ - serratus dorsalis muscle (embryonic mouse) - EMAPA:36269 + serratus dorsalis muscle (embryonic mouse) @@ -65145,8 +59301,7 @@ - vertebral vein (embryonic mouse) - EMAPA:36271 + vertebral vein (embryonic mouse) @@ -65165,8 +59320,7 @@ - transverse foramen (embryonic mouse) - EMAPA:36272 + transverse foramen (embryonic mouse) @@ -65185,8 +59339,7 @@ - uterine lumen (embryonic mouse) - EMAPA:36273 + uterine lumen (embryonic mouse) @@ -65205,8 +59358,7 @@ - otic ganglion (embryonic mouse) - EMAPA:36274 + otic ganglion (embryonic mouse) @@ -65225,8 +59377,7 @@ - pterygopalatine ganglion (embryonic mouse) - EMAPA:36275 + pterygopalatine ganglion (embryonic mouse) @@ -65245,8 +59396,7 @@ - submandibular ganglion (embryonic mouse) - EMAPA:36276 + submandibular ganglion (embryonic mouse) @@ -65265,8 +59415,7 @@ - lobe of lung (embryonic mouse) - EMAPA:36281 + lobe of lung (embryonic mouse) @@ -65285,8 +59434,7 @@ - terminal bronchiole (embryonic mouse) - EMAPA:36282 + terminal bronchiole (embryonic mouse) @@ -65305,8 +59453,7 @@ - terminal bronchiole epithelium (embryonic mouse) - EMAPA:36283 + terminal bronchiole epithelium (embryonic mouse) @@ -65325,8 +59472,7 @@ - bronchial vein (embryonic mouse) - EMAPA:36284 + bronchial vein (embryonic mouse) @@ -65345,8 +59491,7 @@ - artery smooth muscle tissue (embryonic mouse) - EMAPA:36285 + artery smooth muscle tissue (embryonic mouse) @@ -65365,8 +59510,7 @@ - endothelium of arteriole (embryonic mouse) - EMAPA:36286 + endothelium of arteriole (embryonic mouse) @@ -65385,8 +59529,7 @@ - arteriole smooth muscle (embryonic mouse) - EMAPA:36287 + arteriole smooth muscle (embryonic mouse) @@ -65405,8 +59548,7 @@ - endothelium of vein (embryonic mouse) - EMAPA:36288 + endothelium of vein (embryonic mouse) @@ -65425,8 +59567,7 @@ - endothelium of venule (embryonic mouse) - EMAPA:36290 + endothelium of venule (embryonic mouse) @@ -65445,8 +59586,7 @@ - capillary bed (embryonic mouse) - EMAPA:36291 + capillary bed (embryonic mouse) @@ -65465,8 +59605,7 @@ - endothelium of capillary (embryonic mouse) - EMAPA:36292 + endothelium of capillary (embryonic mouse) @@ -65485,8 +59624,7 @@ - tunica intima of artery (embryonic mouse) - EMAPA:36293 + tunica intima of artery (embryonic mouse) @@ -65505,8 +59643,7 @@ - tunica media of artery (embryonic mouse) - EMAPA:36294 + tunica media of artery (embryonic mouse) @@ -65525,8 +59662,7 @@ - tunica adventitia of artery (embryonic mouse) - EMAPA:36295 + tunica adventitia of artery (embryonic mouse) @@ -65545,8 +59681,7 @@ - blood vessel layer (embryonic mouse) - EMAPA:36296 + blood vessel layer (embryonic mouse) @@ -65565,8 +59700,7 @@ - tunica intima (embryonic mouse) - EMAPA:36297 + tunica intima (embryonic mouse) @@ -65585,8 +59719,7 @@ - tunica media (embryonic mouse) - EMAPA:36298 + tunica media (embryonic mouse) @@ -65605,8 +59738,7 @@ - tunica adventitia of blood vessel (embryonic mouse) - EMAPA:36299 + tunica adventitia of blood vessel (embryonic mouse) @@ -65625,8 +59757,7 @@ - blood vessel elastic tissue (embryonic mouse) - EMAPA:36300 + blood vessel elastic tissue (embryonic mouse) @@ -65645,8 +59776,7 @@ - blood vessel internal elastic membrane (embryonic mouse) - EMAPA:36301 + blood vessel internal elastic membrane (embryonic mouse) @@ -65665,8 +59795,7 @@ - blood vessel external elastic membrane (embryonic mouse) - EMAPA:36302 + blood vessel external elastic membrane (embryonic mouse) @@ -65685,8 +59814,7 @@ - tunica intima of vein (embryonic mouse) - EMAPA:36308 + tunica intima of vein (embryonic mouse) @@ -65705,8 +59833,7 @@ - tunica media of vein (embryonic mouse) - EMAPA:36309 + tunica media of vein (embryonic mouse) @@ -65725,8 +59852,7 @@ - tunica adventitia of vein (embryonic mouse) - EMAPA:36310 + tunica adventitia of vein (embryonic mouse) @@ -65745,8 +59871,7 @@ - lymphatic vessel smooth muscle (embryonic mouse) - EMAPA:36313 + lymphatic vessel smooth muscle (embryonic mouse) @@ -65765,8 +59890,7 @@ - styloid process of temporal bone (embryonic mouse) - EMAPA:36320 + styloid process of temporal bone (embryonic mouse) @@ -65785,8 +59909,7 @@ - chorda tendineae (embryonic mouse) - EMAPA:36322 + chorda tendineae (embryonic mouse) @@ -65805,8 +59928,7 @@ - lingual artery (embryonic mouse) - EMAPA:36324 + lingual artery (embryonic mouse) @@ -65825,8 +59947,7 @@ - thymic vein (embryonic mouse) - EMAPA:36325 + thymic vein (embryonic mouse) @@ -65845,8 +59966,7 @@ - venous plexus (embryonic mouse) - EMAPA:36327 + venous plexus (embryonic mouse) @@ -65865,8 +59985,7 @@ - tailgut (embryonic mouse) - EMAPA:36331 + tailgut (embryonic mouse) @@ -65885,8 +60004,7 @@ - interphalangeal joint of manus (embryonic mouse) - EMAPA:36336 + interphalangeal joint of manus (embryonic mouse) @@ -65905,8 +60023,7 @@ - interphalangeal joint of pes (embryonic mouse) - EMAPA:36337 + interphalangeal joint of pes (embryonic mouse) @@ -65925,8 +60042,7 @@ - preputial space of male (embryonic mouse) - EMAPA:36342 + preputial space of male (embryonic mouse) @@ -65945,8 +60061,7 @@ - striated muscle tissue (embryonic mouse) - EMAPA:36390 + striated muscle tissue (embryonic mouse) @@ -65965,8 +60080,7 @@ - sigmoid colon (embryonic mouse) - EMAPA:36391 + sigmoid colon (embryonic mouse) @@ -65985,8 +60099,7 @@ - skin of back (embryonic mouse) - EMAPA:36392 + skin of back (embryonic mouse) @@ -66005,8 +60118,7 @@ - scrotum skin (embryonic mouse) - EMAPA:36411 + scrotum skin (embryonic mouse) @@ -66025,8 +60137,7 @@ - major vestibular gland (embryonic mouse) - EMAPA:36429 + major vestibular gland (embryonic mouse) @@ -66045,8 +60156,7 @@ - male urethral meatus (embryonic mouse) - EMAPA:36434 + male urethral meatus (embryonic mouse) @@ -66065,8 +60175,7 @@ - cardiac mesenchyme (embryonic mouse) - EMAPA:36438 + cardiac mesenchyme (embryonic mouse) @@ -66085,8 +60194,7 @@ - pre-dentine (embryonic mouse) - EMAPA:36439 + pre-dentine (embryonic mouse) @@ -66105,8 +60213,7 @@ - visual cortex (embryonic mouse) - EMAPA:36446 + visual cortex (embryonic mouse) @@ -66125,8 +60232,7 @@ - Brodmann (1909) area 32 (embryonic mouse) - EMAPA:36447 + Brodmann (1909) area 32 (embryonic mouse) @@ -66145,8 +60251,7 @@ - pyramidal layer of CA3 (embryonic mouse) - EMAPA:36448 + pyramidal layer of CA3 (embryonic mouse) @@ -66165,8 +60270,7 @@ - forebrain-midbrain boundary (embryonic mouse) - EMAPA:36449 + forebrain-midbrain boundary (embryonic mouse) @@ -66185,8 +60289,7 @@ - female urethral meatus (embryonic mouse) - EMAPA:36453 + female urethral meatus (embryonic mouse) @@ -66205,8 +60308,7 @@ - nail of pedal digit (embryonic mouse) - EMAPA:36457 + nail of pedal digit (embryonic mouse) @@ -66225,8 +60327,7 @@ - great vessel of heart (embryonic mouse) - EMAPA:36460 + great vessel of heart (embryonic mouse) @@ -66245,8 +60346,7 @@ - aortic sac (embryonic mouse) - EMAPA:36461 + aortic sac (embryonic mouse) @@ -66265,8 +60365,7 @@ - anterior cerebral vein (embryonic mouse) - EMAPA:36467 + anterior cerebral vein (embryonic mouse) @@ -66285,8 +60384,7 @@ - hippocampal sulcus (embryonic mouse) - EMAPA:36471 + hippocampal sulcus (embryonic mouse) @@ -66305,8 +60403,7 @@ - vibrissa inner root sheath (embryonic mouse) - EMAPA:36477 + vibrissa inner root sheath (embryonic mouse) @@ -66325,8 +60422,7 @@ - vibrissa outer root sheath (embryonic mouse) - EMAPA:36478 + vibrissa outer root sheath (embryonic mouse) @@ -66345,8 +60441,7 @@ - hair follicle placode (embryonic mouse) - EMAPA:36479 + hair follicle placode (embryonic mouse) @@ -66365,8 +60460,7 @@ - pyramidal layer of CA2 (embryonic mouse) - EMAPA:36480 + pyramidal layer of CA2 (embryonic mouse) @@ -66385,30 +60479,7 @@ - dermal papilla (embryonic mouse) - EMAPA:36484 - - - - - - - - - - - - - - - - - - - - coat of hair (embryonic mouse) - strand of pelage hair (embryonic mouse) - EMAPA:36485 + dermal papilla (embryonic mouse) @@ -66427,8 +60498,7 @@ - bulbus cordis myocardium (embryonic mouse) - EMAPA:36488 + bulbus cordis myocardium (embryonic mouse) @@ -66447,8 +60517,7 @@ - costochondral joint (embryonic mouse) - EMAPA:36490 + costochondral joint (embryonic mouse) @@ -66467,8 +60536,7 @@ - ventral ectodermal ridge (embryonic mouse) - EMAPA:36491 + ventral ectodermal ridge (embryonic mouse) @@ -66487,8 +60555,7 @@ - umbilical blood vessel (embryonic mouse) - EMAPA:36493 + umbilical blood vessel (embryonic mouse) @@ -66507,8 +60574,7 @@ - vitelline blood vessel (embryonic mouse) - EMAPA:36494 + vitelline blood vessel (embryonic mouse) @@ -66527,8 +60593,7 @@ - perirenal fat (embryonic mouse) - EMAPA:36495 + perirenal fat (embryonic mouse) @@ -66547,8 +60612,7 @@ - thoracic cavity (embryonic mouse) - EMAPA:36497 + thoracic cavity (embryonic mouse) @@ -66567,8 +60631,7 @@ - hair shaft (embryonic mouse) - EMAPA:36498 + hair shaft (embryonic mouse) @@ -66587,8 +60650,7 @@ - abdominal fat pad (embryonic mouse) - EMAPA:36499 + abdominal fat pad (embryonic mouse) @@ -66607,8 +60669,7 @@ - leg blood vessel (embryonic mouse) - EMAPA:36500 + leg blood vessel (embryonic mouse) @@ -66627,8 +60688,7 @@ - limb joint (embryonic mouse) - EMAPA:36501 + limb joint (embryonic mouse) @@ -66647,8 +60707,7 @@ - tail skin (embryonic mouse) - EMAPA:36502 + tail skin (embryonic mouse) @@ -66667,8 +60726,7 @@ - arterial system smooth muscle (embryonic mouse) - EMAPA:36503 + arterial system smooth muscle (embryonic mouse) @@ -66687,8 +60745,7 @@ - abdominal cavity (embryonic mouse) - EMAPA:36505 + abdominal cavity (embryonic mouse) @@ -66707,8 +60764,7 @@ - Peyer's patch epithelium (embryonic mouse) - EMAPA:36506 + Peyer's patch epithelium (embryonic mouse) @@ -66727,8 +60783,7 @@ - abdominal mammary gland (embryonic mouse) - EMAPA:36507 + abdominal mammary gland (embryonic mouse) @@ -66747,8 +60802,7 @@ - nipple (embryonic mouse) - EMAPA:36508 + nipple (embryonic mouse) @@ -66767,8 +60821,7 @@ - dermis connective tissue (embryonic mouse) - EMAPA:36509 + dermis connective tissue (embryonic mouse) @@ -66787,8 +60840,7 @@ - substantia gelatinosa (embryonic mouse) - EMAPA:36510 + substantia gelatinosa (embryonic mouse) @@ -66807,8 +60859,7 @@ - fibular nerve (embryonic mouse) - EMAPA:36511 + fibular nerve (embryonic mouse) @@ -66827,8 +60878,7 @@ - tibial nerve (embryonic mouse) - EMAPA:36512 + tibial nerve (embryonic mouse) @@ -66847,8 +60897,7 @@ - nerve innervating pinna (embryonic mouse) - EMAPA:36513 + nerve innervating pinna (embryonic mouse) @@ -66867,8 +60916,7 @@ - lacrimal gland epithelium (embryonic mouse) - EMAPA:36515 + lacrimal gland epithelium (embryonic mouse) @@ -66887,8 +60935,7 @@ - macula lutea (embryonic mouse) - EMAPA:36516 + macula lutea (embryonic mouse) @@ -66907,8 +60954,7 @@ - outer limiting layer of retina (embryonic mouse) - EMAPA:36518 + outer limiting layer of retina (embryonic mouse) @@ -66927,8 +60973,7 @@ - inner limiting layer of retina (embryonic mouse) - EMAPA:36519 + inner limiting layer of retina (embryonic mouse) @@ -66947,8 +60992,7 @@ - retina blood vessel (embryonic mouse) - EMAPA:36520 + retina blood vessel (embryonic mouse) @@ -66967,8 +61011,7 @@ - duodenal gland (embryonic mouse) - EMAPA:36522 + duodenal gland (embryonic mouse) @@ -66987,8 +61030,7 @@ - esophagus skeletal muscle (embryonic mouse) - EMAPA:36523 + esophagus skeletal muscle (embryonic mouse) @@ -67007,8 +61049,7 @@ - nephron tubule epithelium (embryonic mouse) - EMAPA:36524 + nephron tubule epithelium (embryonic mouse) @@ -67027,8 +61068,7 @@ - duct of epididymis (embryonic mouse) - EMAPA:36525 + duct of epididymis (embryonic mouse) @@ -67047,8 +61087,7 @@ - strand of auchene hair (embryonic mouse) - EMAPA:36527 + strand of auchene hair (embryonic mouse) @@ -67067,8 +61106,7 @@ - strand of guard hair (embryonic mouse) - EMAPA:36528 + strand of guard hair (embryonic mouse) @@ -67087,8 +61125,7 @@ - pancreaticoduodenal artery (embryonic mouse) - EMAPA:36529 + pancreaticoduodenal artery (embryonic mouse) @@ -67107,8 +61144,7 @@ - tibial artery (embryonic mouse) - EMAPA:36530 + tibial artery (embryonic mouse) @@ -67127,8 +61163,7 @@ - left coronary artery (embryonic mouse) - EMAPA:36531 + left coronary artery (embryonic mouse) @@ -67147,8 +61182,7 @@ - right coronary artery (embryonic mouse) - EMAPA:36532 + right coronary artery (embryonic mouse) @@ -67167,8 +61201,7 @@ - bile canaliculus (embryonic mouse) - EMAPA:36534 + bile canaliculus (embryonic mouse) @@ -67187,8 +61220,7 @@ - secretion of exocrine gland (embryonic mouse) - EMAPA:36535 + secretion of exocrine gland (embryonic mouse) @@ -67207,8 +61239,7 @@ - saliva (embryonic mouse) - EMAPA:36536 + saliva (embryonic mouse) @@ -67227,8 +61258,7 @@ - secretion of lacrimal gland (embryonic mouse) - EMAPA:36537 + secretion of lacrimal gland (embryonic mouse) @@ -67247,8 +61277,7 @@ - mammary gland fluid/secretion (embryonic mouse) - EMAPA:36538 + mammary gland fluid/secretion (embryonic mouse) @@ -67267,8 +61296,7 @@ - milk (embryonic mouse) - EMAPA:36540 + milk (embryonic mouse) @@ -67287,8 +61315,7 @@ - male reproductive gland secretion (embryonic mouse) - EMAPA:36541 + male reproductive gland secretion (embryonic mouse) @@ -67307,8 +61334,7 @@ - seminal fluid (embryonic mouse) - EMAPA:36543 + seminal fluid (embryonic mouse) @@ -67327,8 +61353,7 @@ - bulbourethral gland secretion (embryonic mouse) - EMAPA:36544 + bulbourethral gland secretion (embryonic mouse) @@ -67347,8 +61372,7 @@ - prostate gland secretion (embryonic mouse) - EMAPA:36545 + prostate gland secretion (embryonic mouse) @@ -67367,8 +61391,7 @@ - otolymph (embryonic mouse) - EMAPA:36547 + otolymph (embryonic mouse) @@ -67387,8 +61410,7 @@ - endolymph (embryonic mouse) - EMAPA:36548 + endolymph (embryonic mouse) @@ -67407,8 +61429,7 @@ - perilymph (embryonic mouse) - EMAPA:36549 + perilymph (embryonic mouse) @@ -67427,8 +61448,7 @@ - respiratory system fluid/secretion (embryonic mouse) - EMAPA:36550 + respiratory system fluid/secretion (embryonic mouse) @@ -67447,8 +61467,7 @@ - pulmonary surfactant (embryonic mouse) - EMAPA:36551 + pulmonary surfactant (embryonic mouse) @@ -67467,8 +61486,7 @@ - nasal mucus (embryonic mouse) - EMAPA:36552 + nasal mucus (embryonic mouse) @@ -67487,8 +61505,7 @@ - sputum (embryonic mouse) - EMAPA:36553 + sputum (embryonic mouse) @@ -67507,8 +61524,7 @@ - urine (embryonic mouse) - EMAPA:36554 + urine (embryonic mouse) @@ -67527,8 +61543,7 @@ - corpora quadrigemina (embryonic mouse) - EMAPA:36556 + corpora quadrigemina (embryonic mouse) @@ -67547,8 +61562,7 @@ - pre-Botzinger complex (embryonic mouse) - EMAPA:36557 + pre-Botzinger complex (embryonic mouse) @@ -67567,8 +61581,7 @@ - peritubular capillary (embryonic mouse) - EMAPA:36558 + peritubular capillary (embryonic mouse) @@ -67587,8 +61600,7 @@ - inner renal medulla vasa recta (embryonic mouse) - EMAPA:36559 + inner renal medulla vasa recta (embryonic mouse) @@ -67607,8 +61619,7 @@ - outer renal medulla vasa recta (embryonic mouse) - EMAPA:36560 + outer renal medulla vasa recta (embryonic mouse) @@ -67627,8 +61638,7 @@ - mesangium (embryonic mouse) - EMAPA:36561 + mesangium (embryonic mouse) @@ -67647,8 +61657,7 @@ - parotid main excretory duct (embryonic mouse) - EMAPA:36563 + parotid main excretory duct (embryonic mouse) @@ -67667,8 +61676,7 @@ - sublingual duct (embryonic mouse) - EMAPA:36564 + sublingual duct (embryonic mouse) @@ -67687,8 +61695,7 @@ - intermediolateral nucleus (embryonic mouse) - EMAPA:36565 + intermediolateral nucleus (embryonic mouse) @@ -67707,8 +61714,7 @@ - mammary gland alveolus (embryonic mouse) - EMAPA:36566 + mammary gland alveolus (embryonic mouse) @@ -67727,8 +61733,7 @@ - alisphenoid bone (embryonic mouse) - EMAPA:36567 + alisphenoid bone (embryonic mouse) @@ -67747,8 +61752,7 @@ - prostate duct (embryonic mouse) - EMAPA:36568 + prostate duct (embryonic mouse) @@ -67767,8 +61771,7 @@ - cochlear labyrinth (embryonic mouse) - EMAPA:36569 + cochlear labyrinth (embryonic mouse) @@ -67787,8 +61790,7 @@ - zygomatic arch (embryonic mouse) - EMAPA:36570 + zygomatic arch (embryonic mouse) @@ -67807,8 +61809,7 @@ - mandible condylar process (embryonic mouse) - EMAPA:36572 + mandible condylar process (embryonic mouse) @@ -67827,8 +61828,7 @@ - trabecula carnea cardiac muscle tissue (embryonic mouse) - EMAPA:36573 + trabecula carnea cardiac muscle tissue (embryonic mouse) @@ -67847,8 +61847,7 @@ - trachea gland (embryonic mouse) - EMAPA:36574 + trachea gland (embryonic mouse) @@ -67867,8 +61866,7 @@ - dorsal striatum (embryonic mouse) - EMAPA:36575 + dorsal striatum (embryonic mouse) @@ -67887,8 +61885,7 @@ - ventral striatum (embryonic mouse) - EMAPA:36576 + ventral striatum (embryonic mouse) @@ -67907,8 +61904,7 @@ - exorbital lacrimal gland (embryonic mouse) - EMAPA:36577 + exorbital lacrimal gland (embryonic mouse) @@ -67927,8 +61923,7 @@ - intraorbital lacrimal gland (embryonic mouse) - EMAPA:36578 + intraorbital lacrimal gland (embryonic mouse) @@ -67947,8 +61942,7 @@ - mesopodium bone (embryonic mouse) - EMAPA:36579 + mesopodium bone (embryonic mouse) @@ -67967,8 +61961,7 @@ - bony labyrinth (embryonic mouse) - EMAPA:36580 + bony labyrinth (embryonic mouse) @@ -67987,8 +61980,7 @@ - cartilaginous joint (embryonic mouse) - EMAPA:36581 + cartilaginous joint (embryonic mouse) @@ -68007,8 +61999,7 @@ - pilosebaceous unit (embryonic mouse) - EMAPA:36582 + pilosebaceous unit (embryonic mouse) @@ -68027,8 +62018,7 @@ - trunk bone (embryonic mouse) - EMAPA:36583 + trunk bone (embryonic mouse) @@ -68047,8 +62037,7 @@ - bony vertebral centrum (embryonic mouse) - EMAPA:36588 + bony vertebral centrum (embryonic mouse) @@ -68067,8 +62056,7 @@ - left kidney (embryonic mouse) - EMAPA:36589 + left kidney (embryonic mouse) @@ -68087,8 +62075,7 @@ - right kidney (embryonic mouse) - EMAPA:36590 + right kidney (embryonic mouse) @@ -68107,8 +62094,7 @@ - gastrointestinal system mucosa (embryonic mouse) - EMAPA:36591 + gastrointestinal system mucosa (embryonic mouse) @@ -68127,8 +62113,7 @@ - anterior segment of eyeball (embryonic mouse) - EMAPA:36594 + anterior segment of eyeball (embryonic mouse) @@ -68147,8 +62132,7 @@ - posterior segment of eyeball (embryonic mouse) - EMAPA:36595 + posterior segment of eyeball (embryonic mouse) @@ -68167,8 +62151,7 @@ - sensory ganglion (embryonic mouse) - EMAPA:36596 + sensory ganglion (embryonic mouse) @@ -68187,8 +62170,7 @@ - baroreceptor (embryonic mouse) - EMAPA:36597 + baroreceptor (embryonic mouse) @@ -68207,8 +62189,7 @@ - limb blood vessel (embryonic mouse) - EMAPA:36598 + limb blood vessel (embryonic mouse) @@ -68227,8 +62208,7 @@ - corticospinal tract (embryonic mouse) - EMAPA:36600 + corticospinal tract (embryonic mouse) @@ -68247,8 +62227,7 @@ - zona limitans intrathalamica (embryonic mouse) - EMAPA:36604 + zona limitans intrathalamica (embryonic mouse) @@ -68267,8 +62246,7 @@ - nerve fasciculus (embryonic mouse) - EMAPA:36605 + nerve fasciculus (embryonic mouse) @@ -68287,8 +62265,7 @@ - habenulo-interpeduncular tract (embryonic mouse) - EMAPA:36606 + habenulo-interpeduncular tract (embryonic mouse) @@ -68307,8 +62284,7 @@ - stria medullaris (embryonic mouse) - EMAPA:36607 + stria medullaris (embryonic mouse) @@ -68327,8 +62303,7 @@ - choroid plexus epithelium (embryonic mouse) - EMAPA:36608 + choroid plexus epithelium (embryonic mouse) @@ -68347,8 +62322,7 @@ - choroid plexus stroma (embryonic mouse) - EMAPA:36609 + choroid plexus stroma (embryonic mouse) @@ -68367,8 +62341,7 @@ - head blood vessel (embryonic mouse) - EMAPA:36610 + head blood vessel (embryonic mouse) @@ -68387,8 +62360,7 @@ - corneal blood vessel (embryonic mouse) - EMAPA:36611 + corneal blood vessel (embryonic mouse) @@ -68407,8 +62379,7 @@ - uterine spiral artery (embryonic mouse) - EMAPA:36612 + uterine spiral artery (embryonic mouse) @@ -68427,8 +62398,7 @@ - venous system smooth muscle (embryonic mouse) - EMAPA:36613 + venous system smooth muscle (embryonic mouse) @@ -68447,8 +62417,7 @@ - arch of centrum of vertebra (embryonic mouse) - EMAPA:36614 + arch of centrum of vertebra (embryonic mouse) @@ -68467,8 +62436,7 @@ - intramembranous bone (embryonic mouse) - EMAPA:36615 + intramembranous bone (embryonic mouse) @@ -68487,8 +62455,7 @@ - presphenoid bone (embryonic mouse) - EMAPA:36616 + presphenoid bone (embryonic mouse) @@ -68507,8 +62474,7 @@ - pterygoid bone (embryonic mouse) - EMAPA:36617 + pterygoid bone (embryonic mouse) @@ -68527,8 +62493,7 @@ - supraoccipital bone (embryonic mouse) - EMAPA:36618 + supraoccipital bone (embryonic mouse) @@ -68547,8 +62512,7 @@ - palatine bone (embryonic mouse) - EMAPA:36619 + palatine bone (embryonic mouse) @@ -68567,8 +62531,7 @@ - sesamoid bone (embryonic mouse) - EMAPA:36620 + sesamoid bone (embryonic mouse) @@ -68587,8 +62550,7 @@ - ulnar sesamoid bone (embryonic mouse) - EMAPA:36621 + ulnar sesamoid bone (embryonic mouse) @@ -68607,8 +62569,7 @@ - nucleus prepositus (embryonic mouse) - EMAPA:36622 + nucleus prepositus (embryonic mouse) @@ -68627,8 +62588,7 @@ - lower back (embryonic mouse) - EMAPA:36623 + lower back (embryonic mouse) @@ -68647,8 +62607,7 @@ - saphenous nerve (embryonic mouse) - EMAPA:36625 + saphenous nerve (embryonic mouse) @@ -68667,8 +62626,7 @@ - geniohyoid muscle (embryonic mouse) - EMAPA:36626 + geniohyoid muscle (embryonic mouse) @@ -68687,8 +62645,7 @@ - levator auris longus muscle (embryonic mouse) - EMAPA:36627 + levator auris longus muscle (embryonic mouse) @@ -68707,30 +62664,7 @@ - perineum (embryonic mouse) - EMAPA:36628 - - - - - - - - - - - - - - - - - - - - musculature of perineum (embryonic mouse) - perineal muscle (embryonic mouse) - EMAPA:36629 + perineum (embryonic mouse) @@ -68749,8 +62683,7 @@ - urethra smooth muscle layer (embryonic mouse) - EMAPA:36630 + urethra smooth muscle layer (embryonic mouse) @@ -68769,8 +62702,7 @@ - mammalian vulva (embryonic mouse) - EMAPA:36631 + mammalian vulva (embryonic mouse) @@ -68789,8 +62721,7 @@ - thoracic mammary gland (embryonic mouse) - EMAPA:36633 + thoracic mammary gland (embryonic mouse) @@ -68809,8 +62740,7 @@ - lobule of mammary gland (embryonic mouse) - EMAPA:36634 + lobule of mammary gland (embryonic mouse) @@ -68829,8 +62759,7 @@ - left lung respiratory bronchiole (embryonic mouse) - EMAPA:36635 + left lung respiratory bronchiole (embryonic mouse) @@ -68849,8 +62778,7 @@ - left lung terminal bronchiole (embryonic mouse) - EMAPA:36636 + left lung terminal bronchiole (embryonic mouse) @@ -68869,8 +62797,7 @@ - right lung respiratory bronchiole (embryonic mouse) - EMAPA:36637 + right lung respiratory bronchiole (embryonic mouse) @@ -68889,8 +62816,7 @@ - right lung terminal bronchiole (embryonic mouse) - EMAPA:36638 + right lung terminal bronchiole (embryonic mouse) @@ -68909,8 +62835,7 @@ - strand of awl hair (embryonic mouse) - EMAPA:36639 + strand of awl hair (embryonic mouse) @@ -68929,8 +62854,7 @@ - strand of zigzag hair (embryonic mouse) - EMAPA:36640 + strand of zigzag hair (embryonic mouse) @@ -68949,8 +62873,7 @@ - nucleus of pontine reticular formation (embryonic mouse) - EMAPA:36642 + nucleus of pontine reticular formation (embryonic mouse) @@ -68969,8 +62892,7 @@ - lateral vestibular nucleus (embryonic mouse) - EMAPA:36643 + lateral vestibular nucleus (embryonic mouse) @@ -68989,8 +62911,7 @@ - cardiac ganglion (embryonic mouse) - EMAPA:36644 + cardiac ganglion (embryonic mouse) @@ -69009,8 +62930,7 @@ - cardiac skeleton (embryonic mouse) - EMAPA:36645 + cardiac skeleton (embryonic mouse) @@ -69029,8 +62949,7 @@ - marginal zone of spleen (embryonic mouse) - EMAPA:36650 + marginal zone of spleen (embryonic mouse) @@ -69049,8 +62968,7 @@ - levator palpebrae superioris (embryonic mouse) - EMAPA:36652 + levator palpebrae superioris (embryonic mouse) @@ -69069,8 +62987,7 @@ - ventral lateral nucleus of thalamus (embryonic mouse) - EMAPA:36654 + ventral lateral nucleus of thalamus (embryonic mouse) @@ -69089,8 +63006,7 @@ - preoptic area (embryonic mouse) - EMAPA:36655 + preoptic area (embryonic mouse) @@ -69109,8 +63025,7 @@ - skin of face (embryonic mouse) - EMAPA:36657 + skin of face (embryonic mouse) @@ -69129,8 +63044,7 @@ - amniotic fluid (embryonic mouse) - EMAPA:36771 + amniotic fluid (embryonic mouse) @@ -69149,8 +63063,7 @@ - third ventricle choroid plexus epithelium (embryonic mouse) - EMAPA:37055 + third ventricle choroid plexus epithelium (embryonic mouse) @@ -69169,8 +63082,7 @@ - third ventricle choroid plexus stroma (embryonic mouse) - EMAPA:37056 + third ventricle choroid plexus stroma (embryonic mouse) @@ -69189,8 +63101,7 @@ - abdominal segment blood vessel (embryonic mouse) - EMAPA:37057 + abdominal segment blood vessel (embryonic mouse) @@ -69209,8 +63120,7 @@ - abdominal segment bone (embryonic mouse) - EMAPA:37058 + abdominal segment bone (embryonic mouse) @@ -69229,8 +63139,7 @@ - abdominal segment connective tissue (embryonic mouse) - EMAPA:37059 + abdominal segment connective tissue (embryonic mouse) @@ -69249,8 +63158,7 @@ - abdominal segment muscle (embryonic mouse) - EMAPA:37060 + abdominal segment muscle (embryonic mouse) @@ -69269,8 +63177,7 @@ - nerve of abdominal segment (embryonic mouse) - EMAPA:37061 + nerve of abdominal segment (embryonic mouse) @@ -69289,8 +63196,7 @@ - abdominal segment element (embryonic mouse) - EMAPA:37062 + abdominal segment element (embryonic mouse) @@ -69309,8 +63215,7 @@ - abdominal segment skin (embryonic mouse) - EMAPA:37063 + abdominal segment skin (embryonic mouse) @@ -69329,8 +63234,7 @@ - abdominal wall (embryonic mouse) - EMAPA:37064 + abdominal wall (embryonic mouse) @@ -69349,8 +63253,7 @@ - accessory hepatic vein (embryonic mouse) - EMAPA:37065 + accessory hepatic vein (embryonic mouse) @@ -69369,8 +63272,7 @@ - cranial nerve nucleus (embryonic mouse) - EMAPA:37066 + cranial nerve nucleus (embryonic mouse) @@ -69389,8 +63291,7 @@ - accessory XI nerve nucleus (embryonic mouse) - EMAPA:37067 + accessory XI nerve nucleus (embryonic mouse) @@ -69409,8 +63310,7 @@ - gastrointestinal system mesentery (embryonic mouse) - EMAPA:37068 + gastrointestinal system mesentery (embryonic mouse) @@ -69429,8 +63329,7 @@ - alveolar artery (embryonic mouse) - EMAPA:37069 + alveolar artery (embryonic mouse) @@ -69449,8 +63348,7 @@ - anterior inferior cerebellar artery (embryonic mouse) - EMAPA:37070 + anterior inferior cerebellar artery (embryonic mouse) @@ -69469,8 +63367,7 @@ - anterior tibial artery (embryonic mouse) - EMAPA:37071 + anterior tibial artery (embryonic mouse) @@ -69489,8 +63386,7 @@ - auricular artery (embryonic mouse) - EMAPA:37072 + auricular artery (embryonic mouse) @@ -69509,8 +63405,7 @@ - buccal artery (embryonic mouse) - EMAPA:37073 + buccal artery (embryonic mouse) @@ -69529,8 +63424,7 @@ - cerebellar artery (embryonic mouse) - EMAPA:37074 + cerebellar artery (embryonic mouse) @@ -69549,8 +63443,7 @@ - cervical artery (embryonic mouse) - EMAPA:37075 + cervical artery (embryonic mouse) @@ -69569,8 +63462,7 @@ - digital artery (embryonic mouse) - EMAPA:37076 + digital artery (embryonic mouse) @@ -69589,8 +63481,7 @@ - dorsalis pedis artery (embryonic mouse) - EMAPA:37077 + dorsalis pedis artery (embryonic mouse) @@ -69609,8 +63500,7 @@ - dorsal intercostal artery (embryonic mouse) - EMAPA:37078 + dorsal intercostal artery (embryonic mouse) @@ -69629,8 +63519,7 @@ - dorsal metacarpal artery (embryonic mouse) - EMAPA:37079 + dorsal metacarpal artery (embryonic mouse) @@ -69649,8 +63538,7 @@ - dorsal artery of penis (embryonic mouse) - EMAPA:37080 + dorsal artery of penis (embryonic mouse) @@ -69669,8 +63557,7 @@ - ethmoidal artery (embryonic mouse) - EMAPA:37081 + ethmoidal artery (embryonic mouse) @@ -69689,8 +63576,7 @@ - gastroepiploic artery (embryonic mouse) - EMAPA:37082 + gastroepiploic artery (embryonic mouse) @@ -69709,8 +63595,7 @@ - ileocolic artery (embryonic mouse) - EMAPA:37083 + ileocolic artery (embryonic mouse) @@ -69729,8 +63614,7 @@ - iliac circumflex artery (embryonic mouse) - EMAPA:37084 + iliac circumflex artery (embryonic mouse) @@ -69749,8 +63633,7 @@ - iliolumbar artery (embryonic mouse) - EMAPA:37085 + iliolumbar artery (embryonic mouse) @@ -69769,8 +63652,7 @@ - inferior pancreaticoduodenal artery (embryonic mouse) - EMAPA:37086 + inferior pancreaticoduodenal artery (embryonic mouse) @@ -69789,8 +63671,7 @@ - inferior rectal artery (embryonic mouse) - EMAPA:37087 + inferior rectal artery (embryonic mouse) @@ -69809,8 +63690,7 @@ - inferior suprarenal artery (embryonic mouse) - EMAPA:37088 + inferior suprarenal artery (embryonic mouse) @@ -69829,8 +63709,7 @@ - inferior vesical artery (embryonic mouse) - EMAPA:37089 + inferior vesical artery (embryonic mouse) @@ -69849,8 +63728,7 @@ - infraorbital artery (embryonic mouse) - EMAPA:37090 + infraorbital artery (embryonic mouse) @@ -69869,8 +63747,7 @@ - interlobar artery (embryonic mouse) - EMAPA:37091 + interlobar artery (embryonic mouse) @@ -69889,8 +63766,7 @@ - artery of lip (embryonic mouse) - EMAPA:37092 + artery of lip (embryonic mouse) @@ -69909,8 +63785,7 @@ - labyrinthine artery (embryonic mouse) - EMAPA:37093 + labyrinthine artery (embryonic mouse) @@ -69929,8 +63804,7 @@ - lacrimal artery (embryonic mouse) - EMAPA:37094 + lacrimal artery (embryonic mouse) @@ -69949,8 +63823,7 @@ - lateral thoracic artery (embryonic mouse) - EMAPA:37095 + lateral thoracic artery (embryonic mouse) @@ -69969,8 +63842,7 @@ - left hepatic artery (embryonic mouse) - EMAPA:37096 + left hepatic artery (embryonic mouse) @@ -69989,8 +63861,7 @@ - left pulmonary artery (embryonic mouse) - EMAPA:37097 + left pulmonary artery (embryonic mouse) @@ -70009,8 +63880,7 @@ - left renal artery (embryonic mouse) - EMAPA:37098 + left renal artery (embryonic mouse) @@ -70029,8 +63899,7 @@ - left testicular artery (embryonic mouse) - EMAPA:37099 + left testicular artery (embryonic mouse) @@ -70049,8 +63918,7 @@ - left subclavian artery (embryonic mouse) - EMAPA:37100 + left subclavian artery (embryonic mouse) @@ -70069,8 +63937,7 @@ - medial plantar artery (embryonic mouse) - EMAPA:37101 + medial plantar artery (embryonic mouse) @@ -70089,8 +63956,7 @@ - medial tarsal artery (embryonic mouse) - EMAPA:37102 + medial tarsal artery (embryonic mouse) @@ -70109,8 +63975,7 @@ - median artery (embryonic mouse) - EMAPA:37103 + median artery (embryonic mouse) @@ -70129,8 +63994,7 @@ - meningeal artery (embryonic mouse) - EMAPA:37104 + meningeal artery (embryonic mouse) @@ -70149,8 +64013,7 @@ - mental artery (embryonic mouse) - EMAPA:37105 + mental artery (embryonic mouse) @@ -70169,8 +64032,7 @@ - middle colic artery (embryonic mouse) - EMAPA:37106 + middle colic artery (embryonic mouse) @@ -70189,8 +64051,7 @@ - perineal artery (embryonic mouse) - EMAPA:37107 + perineal artery (embryonic mouse) @@ -70209,8 +64070,7 @@ - phrenic artery (embryonic mouse) - EMAPA:37108 + phrenic artery (embryonic mouse) @@ -70229,8 +64089,7 @@ - popliteal artery (embryonic mouse) - EMAPA:37109 + popliteal artery (embryonic mouse) @@ -70249,8 +64108,7 @@ - posterior tibial artery (embryonic mouse) - EMAPA:37110 + posterior tibial artery (embryonic mouse) @@ -70269,8 +64127,7 @@ - pudendal artery (embryonic mouse) - EMAPA:37111 + pudendal artery (embryonic mouse) @@ -70289,8 +64146,7 @@ - radial artery (embryonic mouse) - EMAPA:37112 + radial artery (embryonic mouse) @@ -70309,8 +64165,7 @@ - central retinal artery (embryonic mouse) - EMAPA:37113 + central retinal artery (embryonic mouse) @@ -70329,8 +64184,7 @@ - sublingual artery (embryonic mouse) - EMAPA:37115 + sublingual artery (embryonic mouse) @@ -70349,8 +64203,7 @@ - subscapular artery (embryonic mouse) - EMAPA:37116 + subscapular artery (embryonic mouse) @@ -70369,8 +64222,7 @@ - superficial cervical artery (embryonic mouse) - EMAPA:37117 + superficial cervical artery (embryonic mouse) @@ -70389,8 +64241,7 @@ - superficial temporal artery (embryonic mouse) - EMAPA:37118 + superficial temporal artery (embryonic mouse) @@ -70409,8 +64260,7 @@ - superior external pudendal artery (embryonic mouse) - EMAPA:37119 + superior external pudendal artery (embryonic mouse) @@ -70429,8 +64279,7 @@ - superior gluteal artery (embryonic mouse) - EMAPA:37120 + superior gluteal artery (embryonic mouse) @@ -70449,8 +64298,7 @@ - superior pancreaticoduodenal artery (embryonic mouse) - EMAPA:37121 + superior pancreaticoduodenal artery (embryonic mouse) @@ -70469,8 +64317,7 @@ - superior suprarenal artery (embryonic mouse) - EMAPA:37122 + superior suprarenal artery (embryonic mouse) @@ -70489,8 +64336,7 @@ - superior vesical artery (embryonic mouse) - EMAPA:37123 + superior vesical artery (embryonic mouse) @@ -70509,8 +64355,7 @@ - suprarenal artery (embryonic mouse) - EMAPA:37124 + suprarenal artery (embryonic mouse) @@ -70529,8 +64374,7 @@ - sural artery (embryonic mouse) - EMAPA:37125 + sural artery (embryonic mouse) @@ -70549,8 +64393,7 @@ - systemic artery (embryonic mouse) - EMAPA:37126 + systemic artery (embryonic mouse) @@ -70569,8 +64412,7 @@ - temporal artery (embryonic mouse) - EMAPA:37127 + temporal artery (embryonic mouse) @@ -70589,8 +64431,7 @@ - thoraco-acromial artery (embryonic mouse) - EMAPA:37128 + thoraco-acromial artery (embryonic mouse) @@ -70609,8 +64450,7 @@ - thoracodorsal artery (embryonic mouse) - EMAPA:37129 + thoracodorsal artery (embryonic mouse) @@ -70629,8 +64469,7 @@ - transverse facial artery (embryonic mouse) - EMAPA:37130 + transverse facial artery (embryonic mouse) @@ -70649,8 +64488,7 @@ - vesical artery (embryonic mouse) - EMAPA:37131 + vesical artery (embryonic mouse) @@ -70669,8 +64507,7 @@ - anterior auricular vein (embryonic mouse) - EMAPA:37132 + anterior auricular vein (embryonic mouse) @@ -70689,8 +64526,7 @@ - anterior facial vein (embryonic mouse) - EMAPA:37133 + anterior facial vein (embryonic mouse) @@ -70709,8 +64545,7 @@ - anterior jugular vein (embryonic mouse) - EMAPA:37134 + anterior jugular vein (embryonic mouse) @@ -70729,8 +64564,7 @@ - anterior tibial vein (embryonic mouse) - EMAPA:37135 + anterior tibial vein (embryonic mouse) @@ -70749,8 +64583,7 @@ - auricular vein (embryonic mouse) - EMAPA:37136 + auricular vein (embryonic mouse) @@ -70769,8 +64602,7 @@ - cardiac vein (embryonic mouse) - EMAPA:37137 + cardiac vein (embryonic mouse) @@ -70789,8 +64621,7 @@ - posterior auricular vein (embryonic mouse) - EMAPA:37138 + posterior auricular vein (embryonic mouse) @@ -70809,8 +64640,7 @@ - cerebellar vein (embryonic mouse) - EMAPA:37139 + cerebellar vein (embryonic mouse) @@ -70829,8 +64659,7 @@ - cerebral vein (embryonic mouse) - EMAPA:37140 + cerebral vein (embryonic mouse) @@ -70849,8 +64678,7 @@ - digital vein (embryonic mouse) - EMAPA:37141 + digital vein (embryonic mouse) @@ -70869,8 +64697,7 @@ - dorsal cerebral vein (embryonic mouse) - EMAPA:37142 + dorsal cerebral vein (embryonic mouse) @@ -70889,8 +64716,7 @@ - dorsal metatarsal vein (embryonic mouse) - EMAPA:37143 + dorsal metatarsal vein (embryonic mouse) @@ -70909,8 +64735,7 @@ - external iliac vein (embryonic mouse) - EMAPA:37144 + external iliac vein (embryonic mouse) @@ -70929,8 +64754,7 @@ - external thoracic vein (embryonic mouse) - EMAPA:37145 + external thoracic vein (embryonic mouse) @@ -70949,8 +64773,7 @@ - gastric vein (embryonic mouse) - EMAPA:37146 + gastric vein (embryonic mouse) @@ -70969,8 +64792,7 @@ - great saphenous vein (embryonic mouse) - EMAPA:37147 + great saphenous vein (embryonic mouse) @@ -70989,8 +64811,7 @@ - internal iliac vein (embryonic mouse) - EMAPA:37148 + internal iliac vein (embryonic mouse) @@ -71009,8 +64830,7 @@ - ileal vein (embryonic mouse) - EMAPA:37149 + ileal vein (embryonic mouse) @@ -71029,8 +64849,7 @@ - ileocolic vein (embryonic mouse) - EMAPA:37150 + ileocolic vein (embryonic mouse) @@ -71049,8 +64868,7 @@ - iliac vein (embryonic mouse) - EMAPA:37151 + iliac vein (embryonic mouse) @@ -71069,8 +64887,7 @@ - iliolumbar vein (embryonic mouse) - EMAPA:37152 + iliolumbar vein (embryonic mouse) @@ -71089,8 +64906,7 @@ - inferior cerebellar vein (embryonic mouse) - EMAPA:37153 + inferior cerebellar vein (embryonic mouse) @@ -71109,8 +64925,7 @@ - inferior cerebral vein (embryonic mouse) - EMAPA:37154 + inferior cerebral vein (embryonic mouse) @@ -71129,8 +64944,7 @@ - inferior external pudendal vein (embryonic mouse) - EMAPA:37155 + inferior external pudendal vein (embryonic mouse) @@ -71149,8 +64963,7 @@ - inferior palpebral vein (embryonic mouse) - EMAPA:37156 + inferior palpebral vein (embryonic mouse) @@ -71169,8 +64982,7 @@ - inferior phrenic vein (embryonic mouse) - EMAPA:37157 + inferior phrenic vein (embryonic mouse) @@ -71189,8 +65001,7 @@ - inferior vesical vein (embryonic mouse) - EMAPA:37158 + inferior vesical vein (embryonic mouse) @@ -71209,8 +65020,7 @@ - internal mammary vein (embryonic mouse) - EMAPA:37159 + internal mammary vein (embryonic mouse) @@ -71229,8 +65039,7 @@ - jejunal vein (embryonic mouse) - EMAPA:37160 + jejunal vein (embryonic mouse) @@ -71249,8 +65058,7 @@ - lateral marginal vein (embryonic mouse) - EMAPA:37161 + lateral marginal vein (embryonic mouse) @@ -71269,8 +65077,7 @@ - lateral saphenous vein (embryonic mouse) - EMAPA:37162 + lateral saphenous vein (embryonic mouse) @@ -71289,8 +65096,7 @@ - lateral thoracic vein (embryonic mouse) - EMAPA:37163 + lateral thoracic vein (embryonic mouse) @@ -71309,8 +65115,7 @@ - left hepatic vein (embryonic mouse) - EMAPA:37164 + left hepatic vein (embryonic mouse) @@ -71329,8 +65134,7 @@ - left pulmonary vein (embryonic mouse) - EMAPA:37165 + left pulmonary vein (embryonic mouse) @@ -71349,8 +65153,7 @@ - left renal vein (embryonic mouse) - EMAPA:37166 + left renal vein (embryonic mouse) @@ -71369,8 +65172,7 @@ - left testicular vein (embryonic mouse) - EMAPA:37167 + left testicular vein (embryonic mouse) @@ -71389,8 +65191,7 @@ - masseteric vein (embryonic mouse) - EMAPA:37168 + masseteric vein (embryonic mouse) @@ -71409,8 +65210,7 @@ - maxillary vein (embryonic mouse) - EMAPA:37169 + maxillary vein (embryonic mouse) @@ -71429,8 +65229,7 @@ - medial marginal vein (embryonic mouse) - EMAPA:37170 + medial marginal vein (embryonic mouse) @@ -71449,8 +65248,7 @@ - medial plantar digital vein (embryonic mouse) - EMAPA:37171 + medial plantar digital vein (embryonic mouse) @@ -71469,8 +65267,7 @@ - medial saphenous vein (embryonic mouse) - EMAPA:37172 + medial saphenous vein (embryonic mouse) @@ -71489,8 +65286,7 @@ - median basilic vein (embryonic mouse) - EMAPA:37173 + median basilic vein (embryonic mouse) @@ -71509,8 +65305,7 @@ - middle colic vein (embryonic mouse) - EMAPA:37174 + middle colic vein (embryonic mouse) @@ -71529,8 +65324,7 @@ - middle hepatic vein (embryonic mouse) - EMAPA:37175 + middle hepatic vein (embryonic mouse) @@ -71549,8 +65343,7 @@ - middle temporal vein (embryonic mouse) - EMAPA:37176 + middle temporal vein (embryonic mouse) @@ -71569,8 +65362,7 @@ - pancreaticoduodenal vein (embryonic mouse) - EMAPA:37177 + pancreaticoduodenal vein (embryonic mouse) @@ -71589,8 +65381,7 @@ - pericardiacophrenic vein (embryonic mouse) - EMAPA:37178 + pericardiacophrenic vein (embryonic mouse) @@ -71609,8 +65400,7 @@ - perineal vein (embryonic mouse) - EMAPA:37179 + perineal vein (embryonic mouse) @@ -71629,8 +65419,7 @@ - phrenic vein (embryonic mouse) - EMAPA:37180 + phrenic vein (embryonic mouse) @@ -71649,8 +65438,7 @@ - popliteal vein (embryonic mouse) - EMAPA:37181 + popliteal vein (embryonic mouse) @@ -71669,8 +65457,7 @@ - retromandibular vein (embryonic mouse) - EMAPA:37182 + retromandibular vein (embryonic mouse) @@ -71689,8 +65476,7 @@ - posterior tibial vein (embryonic mouse) - EMAPA:37183 + posterior tibial vein (embryonic mouse) @@ -71709,8 +65495,7 @@ - pudendal vein (embryonic mouse) - EMAPA:37184 + pudendal vein (embryonic mouse) @@ -71729,8 +65514,7 @@ - central retinal vein (embryonic mouse) - EMAPA:37185 + central retinal vein (embryonic mouse) @@ -71749,8 +65533,7 @@ - saphenous vein (embryonic mouse) - EMAPA:37186 + saphenous vein (embryonic mouse) @@ -71769,8 +65552,7 @@ - small saphenous vein (embryonic mouse) - EMAPA:37187 + small saphenous vein (embryonic mouse) @@ -71789,8 +65571,7 @@ - submental vein (embryonic mouse) - EMAPA:37188 + submental vein (embryonic mouse) @@ -71809,8 +65590,7 @@ - subcostal vein (embryonic mouse) - EMAPA:37189 + subcostal vein (embryonic mouse) @@ -71829,8 +65609,7 @@ - subscapular vein (embryonic mouse) - EMAPA:37190 + subscapular vein (embryonic mouse) @@ -71849,8 +65628,7 @@ - superior cerebellar vein (embryonic mouse) - EMAPA:37191 + superior cerebellar vein (embryonic mouse) @@ -71869,8 +65647,7 @@ - superior external pudendal vein (embryonic mouse) - EMAPA:37192 + superior external pudendal vein (embryonic mouse) @@ -71889,8 +65666,7 @@ - superior intercostal vein (embryonic mouse) - EMAPA:37193 + superior intercostal vein (embryonic mouse) @@ -71909,8 +65685,7 @@ - superior pancreaticoduodenal vein (embryonic mouse) - EMAPA:37194 + superior pancreaticoduodenal vein (embryonic mouse) @@ -71929,8 +65704,7 @@ - supraorbital vein (embryonic mouse) - EMAPA:37195 + supraorbital vein (embryonic mouse) @@ -71949,8 +65723,7 @@ - temporal vein (embryonic mouse) - EMAPA:37196 + temporal vein (embryonic mouse) @@ -71969,8 +65742,7 @@ - thoracic vein (embryonic mouse) - EMAPA:37197 + thoracic vein (embryonic mouse) @@ -71989,8 +65761,7 @@ - thoracodorsal vein (embryonic mouse) - EMAPA:37198 + thoracodorsal vein (embryonic mouse) @@ -72009,8 +65780,7 @@ - tibial vein (embryonic mouse) - EMAPA:37199 + tibial vein (embryonic mouse) @@ -72029,8 +65799,7 @@ - transverse facial vein (embryonic mouse) - EMAPA:37200 + transverse facial vein (embryonic mouse) @@ -72049,8 +65818,7 @@ - vein of clitoris (embryonic mouse) - EMAPA:37201 + vein of clitoris (embryonic mouse) @@ -72069,8 +65837,7 @@ - vein of lower lip (embryonic mouse) - EMAPA:37202 + vein of lower lip (embryonic mouse) @@ -72089,8 +65856,7 @@ - vein of trabecular bone (embryonic mouse) - EMAPA:37203 + vein of trabecular bone (embryonic mouse) @@ -72109,8 +65875,7 @@ - vein of upper lip (embryonic mouse) - EMAPA:37204 + vein of upper lip (embryonic mouse) @@ -72129,8 +65894,7 @@ - vesical vein (embryonic mouse) - EMAPA:37205 + vesical vein (embryonic mouse) @@ -72149,8 +65913,7 @@ - common hepatic artery (embryonic mouse) - EMAPA:37206 + common hepatic artery (embryonic mouse) @@ -72169,8 +65932,7 @@ - common palmar digital artery (embryonic mouse) - EMAPA:37207 + common palmar digital artery (embryonic mouse) @@ -72189,8 +65951,7 @@ - common plantar digital arteries (embryonic mouse) - EMAPA:37208 + common plantar digital arteries (embryonic mouse) @@ -72209,8 +65970,7 @@ - forelimb common dorsal digital arteries (embryonic mouse) - EMAPA:37209 + forelimb common dorsal digital arteries (embryonic mouse) @@ -72229,8 +65989,7 @@ - forelimb digital artery (embryonic mouse) - EMAPA:37210 + forelimb digital artery (embryonic mouse) @@ -72249,8 +66008,7 @@ - forelimb proper dorsal digital arteries (embryonic mouse) - EMAPA:37211 + forelimb proper dorsal digital arteries (embryonic mouse) @@ -72269,8 +66027,7 @@ - hindlimb proper dorsal digital arteries (embryonic mouse) - EMAPA:37212 + hindlimb proper dorsal digital arteries (embryonic mouse) @@ -72289,8 +66046,7 @@ - hindlimb common dorsal digital arteries (embryonic mouse) - EMAPA:37213 + hindlimb common dorsal digital arteries (embryonic mouse) @@ -72309,8 +66065,7 @@ - hindlimb digital artery (embryonic mouse) - EMAPA:37214 + hindlimb digital artery (embryonic mouse) @@ -72329,8 +66084,7 @@ - deep brachial artery (embryonic mouse) - EMAPA:37215 + deep brachial artery (embryonic mouse) @@ -72349,8 +66103,7 @@ - deep femoral artery (embryonic mouse) - EMAPA:37216 + deep femoral artery (embryonic mouse) @@ -72369,8 +66122,7 @@ - proper hepatic artery (embryonic mouse) - EMAPA:37217 + proper hepatic artery (embryonic mouse) @@ -72389,8 +66141,7 @@ - proper palmar digital artery (embryonic mouse) - EMAPA:37218 + proper palmar digital artery (embryonic mouse) @@ -72409,8 +66160,7 @@ - proper plantar digital artery (embryonic mouse) - EMAPA:37219 + proper plantar digital artery (embryonic mouse) @@ -72429,8 +66179,7 @@ - saphenous artery (embryonic mouse) - EMAPA:37220 + saphenous artery (embryonic mouse) @@ -72449,8 +66198,7 @@ - common plantar digital vein (embryonic mouse) - EMAPA:37221 + common plantar digital vein (embryonic mouse) @@ -72469,8 +66217,7 @@ - common palmar digital vein (embryonic mouse) - EMAPA:37222 + common palmar digital vein (embryonic mouse) @@ -72489,8 +66236,7 @@ - forelimb digital vein (embryonic mouse) - EMAPA:37223 + forelimb digital vein (embryonic mouse) @@ -72509,8 +66255,7 @@ - hindlimb digital vein (embryonic mouse) - EMAPA:37224 + hindlimb digital vein (embryonic mouse) @@ -72529,8 +66274,7 @@ - great vein of heart (embryonic mouse) - EMAPA:37225 + great vein of heart (embryonic mouse) @@ -72549,8 +66293,7 @@ - splenic vein (embryonic mouse) - EMAPA:37226 + splenic vein (embryonic mouse) @@ -72569,8 +66312,7 @@ - naso-frontal vein (embryonic mouse) - EMAPA:37227 + naso-frontal vein (embryonic mouse) @@ -72589,8 +66331,7 @@ - paraumbilical vein (embryonic mouse) - EMAPA:37228 + paraumbilical vein (embryonic mouse) @@ -72609,8 +66350,7 @@ - proper palmar digital vein (embryonic mouse) - EMAPA:37229 + proper palmar digital vein (embryonic mouse) @@ -72629,8 +66369,7 @@ - proper plantar digital vein (embryonic mouse) - EMAPA:37230 + proper plantar digital vein (embryonic mouse) @@ -72649,8 +66388,7 @@ - vein of hindlimb zeugopod (embryonic mouse) - EMAPA:37231 + vein of hindlimb zeugopod (embryonic mouse) @@ -72669,8 +66407,7 @@ - chest (embryonic mouse) - EMAPA:37232 + chest (embryonic mouse) @@ -72689,8 +66426,7 @@ - chest wall (embryonic mouse) - EMAPA:37233 + chest wall (embryonic mouse) @@ -72709,8 +66445,7 @@ - dorsal thoracic segment of trunk (embryonic mouse) - EMAPA:37234 + dorsal thoracic segment of trunk (embryonic mouse) @@ -72729,8 +66464,7 @@ - pelvic cavity (embryonic mouse) - EMAPA:37235 + pelvic cavity (embryonic mouse) @@ -72749,8 +66483,7 @@ - neck blood vessel (embryonic mouse) - EMAPA:37236 + neck blood vessel (embryonic mouse) @@ -72769,8 +66502,7 @@ - trunk blood vessel (embryonic mouse) - EMAPA:37237 + trunk blood vessel (embryonic mouse) @@ -72789,8 +66521,7 @@ - thoracic segment blood vessel (embryonic mouse) - EMAPA:37238 + thoracic segment blood vessel (embryonic mouse) @@ -72809,8 +66540,7 @@ - chest blood vessel (embryonic mouse) - EMAPA:37239 + chest blood vessel (embryonic mouse) @@ -72829,8 +66559,7 @@ - thoracic cavity blood vessel (embryonic mouse) - EMAPA:37240 + thoracic cavity blood vessel (embryonic mouse) @@ -72849,8 +66578,7 @@ - thoracic cavity artery (embryonic mouse) - EMAPA:37241 + thoracic cavity artery (embryonic mouse) @@ -72869,8 +66597,7 @@ - thoracic cavity vein (embryonic mouse) - EMAPA:37242 + thoracic cavity vein (embryonic mouse) @@ -72889,8 +66616,7 @@ - back blood vessel (embryonic mouse) - EMAPA:37243 + back blood vessel (embryonic mouse) @@ -72909,8 +66635,7 @@ - pelvis blood vessel (embryonic mouse) - EMAPA:37244 + pelvis blood vessel (embryonic mouse) @@ -72929,8 +66654,7 @@ - bone of craniocervical region (embryonic mouse) - EMAPA:37245 + bone of craniocervical region (embryonic mouse) @@ -72949,8 +66673,7 @@ - neck bone (embryonic mouse) - EMAPA:37246 + neck bone (embryonic mouse) @@ -72969,8 +66692,7 @@ - thoracic segment bone (embryonic mouse) - EMAPA:37247 + thoracic segment bone (embryonic mouse) @@ -72989,8 +66711,7 @@ - bone of dorsum (embryonic mouse) - EMAPA:37248 + bone of dorsum (embryonic mouse) @@ -73009,8 +66730,7 @@ - bone of pelvis (embryonic mouse) - EMAPA:37249 + bone of pelvis (embryonic mouse) @@ -73029,8 +66749,7 @@ - neck connective tissue (embryonic mouse) - EMAPA:37250 + neck connective tissue (embryonic mouse) @@ -73049,8 +66768,7 @@ - neck cartilage (embryonic mouse) - EMAPA:37251 + neck cartilage (embryonic mouse) @@ -73069,8 +66787,7 @@ - trunk connective tissue (embryonic mouse) - EMAPA:37252 + trunk connective tissue (embryonic mouse) @@ -73089,8 +66806,7 @@ - thoracic segment connective tissue (embryonic mouse) - EMAPA:37253 + thoracic segment connective tissue (embryonic mouse) @@ -73109,8 +66825,7 @@ - chest connective tissue (embryonic mouse) - EMAPA:37254 + chest connective tissue (embryonic mouse) @@ -73129,8 +66844,7 @@ - thoracic cavity connective tissue (embryonic mouse) - EMAPA:37255 + thoracic cavity connective tissue (embryonic mouse) @@ -73149,8 +66863,7 @@ - back connective tissue (embryonic mouse) - EMAPA:37256 + back connective tissue (embryonic mouse) @@ -73169,8 +66882,7 @@ - pelvis connective tissue (embryonic mouse) - EMAPA:37257 + pelvis connective tissue (embryonic mouse) @@ -73189,8 +66901,7 @@ - craniocervical region musculature (embryonic mouse) - EMAPA:37259 + craniocervical region musculature (embryonic mouse) @@ -73209,8 +66920,7 @@ - musculature of thorax (embryonic mouse) - EMAPA:37260 + musculature of thorax (embryonic mouse) @@ -73229,8 +66939,7 @@ - upper back muscle (embryonic mouse) - EMAPA:37261 + upper back muscle (embryonic mouse) @@ -73249,8 +66958,7 @@ - lower back muscle (embryonic mouse) - EMAPA:37262 + lower back muscle (embryonic mouse) @@ -73269,8 +66977,7 @@ - neck nerve (embryonic mouse) - EMAPA:37263 + neck nerve (embryonic mouse) @@ -73289,8 +66996,7 @@ - nerve of trunk region (embryonic mouse) - EMAPA:37264 + nerve of trunk region (embryonic mouse) @@ -73309,8 +67015,7 @@ - nerve of thoracic segment (embryonic mouse) - EMAPA:37265 + nerve of thoracic segment (embryonic mouse) @@ -73329,8 +67034,7 @@ - chest nerve (embryonic mouse) - EMAPA:37266 + chest nerve (embryonic mouse) @@ -73349,8 +67053,7 @@ - thoracic cavity nerve (embryonic mouse) - EMAPA:37267 + thoracic cavity nerve (embryonic mouse) @@ -73369,8 +67072,7 @@ - back nerve (embryonic mouse) - EMAPA:37268 + back nerve (embryonic mouse) @@ -73389,8 +67091,7 @@ - pelvis nerve (embryonic mouse) - EMAPA:37269 + pelvis nerve (embryonic mouse) @@ -73409,8 +67110,7 @@ - trunk region element (embryonic mouse) - EMAPA:37270 + trunk region element (embryonic mouse) @@ -73429,8 +67129,7 @@ - thoracic segment organ (embryonic mouse) - EMAPA:37271 + thoracic segment organ (embryonic mouse) @@ -73449,8 +67148,7 @@ - chest organ (embryonic mouse) - EMAPA:37272 + chest organ (embryonic mouse) @@ -73469,8 +67167,7 @@ - thoracic cavity element (embryonic mouse) - EMAPA:37273 + thoracic cavity element (embryonic mouse) @@ -73489,8 +67186,7 @@ - dorsal region element (embryonic mouse) - EMAPA:37274 + dorsal region element (embryonic mouse) @@ -73509,8 +67205,7 @@ - pelvic region element (embryonic mouse) - EMAPA:37275 + pelvic region element (embryonic mouse) @@ -73529,8 +67224,7 @@ - head or neck skin (embryonic mouse) - EMAPA:37276 + head or neck skin (embryonic mouse) @@ -73549,8 +67243,7 @@ - skin of neck (embryonic mouse) - EMAPA:37277 + skin of neck (embryonic mouse) @@ -73569,8 +67262,7 @@ - skin of trunk (embryonic mouse) - EMAPA:37278 + skin of trunk (embryonic mouse) @@ -73589,8 +67281,7 @@ - skin of chest (embryonic mouse) - EMAPA:37279 + skin of chest (embryonic mouse) @@ -73609,8 +67300,7 @@ - upper back skin (embryonic mouse) - EMAPA:37280 + upper back skin (embryonic mouse) @@ -73629,8 +67319,7 @@ - lower back skin (embryonic mouse) - EMAPA:37281 + lower back skin (embryonic mouse) @@ -73649,8 +67338,7 @@ - skin of pelvis (embryonic mouse) - EMAPA:37282 + skin of pelvis (embryonic mouse) @@ -73669,8 +67357,7 @@ - appendage (embryonic mouse) - EMAPA:37283 + appendage (embryonic mouse) @@ -73689,8 +67376,7 @@ - metapodium bone (embryonic mouse) - EMAPA:37284 + metapodium bone (embryonic mouse) @@ -73709,8 +67395,7 @@ - digit 1 (embryonic mouse) - EMAPA:37285 + digit 1 (embryonic mouse) @@ -73729,8 +67414,7 @@ - digit 2 (embryonic mouse) - EMAPA:37286 + digit 2 (embryonic mouse) @@ -73749,8 +67433,7 @@ - digit 3 (embryonic mouse) - EMAPA:37287 + digit 3 (embryonic mouse) @@ -73769,8 +67452,7 @@ - digit 4 (embryonic mouse) - EMAPA:37288 + digit 4 (embryonic mouse) @@ -73789,8 +67471,7 @@ - digit 5 (embryonic mouse) - EMAPA:37289 + digit 5 (embryonic mouse) @@ -73809,8 +67490,7 @@ - digit connective tissue (embryonic mouse) - EMAPA:37290 + digit connective tissue (embryonic mouse) @@ -73829,8 +67509,7 @@ - limb nerve (embryonic mouse) - EMAPA:37291 + limb nerve (embryonic mouse) @@ -73849,8 +67528,7 @@ - forelimb blood vessel (embryonic mouse) - EMAPA:37292 + forelimb blood vessel (embryonic mouse) @@ -73869,8 +67547,7 @@ - arm blood vessel (embryonic mouse) - EMAPA:37293 + arm blood vessel (embryonic mouse) @@ -73889,8 +67566,7 @@ - upper arm blood vessel (embryonic mouse) - EMAPA:37294 + upper arm blood vessel (embryonic mouse) @@ -73909,8 +67585,7 @@ - lower arm blood vessel (embryonic mouse) - EMAPA:37295 + lower arm blood vessel (embryonic mouse) @@ -73929,8 +67604,7 @@ - manus blood vessel (embryonic mouse) - EMAPA:37296 + manus blood vessel (embryonic mouse) @@ -73949,8 +67623,7 @@ - manual digit blood vessel (embryonic mouse) - EMAPA:37297 + manual digit blood vessel (embryonic mouse) @@ -73969,8 +67642,7 @@ - hindlimb blood vessel (embryonic mouse) - EMAPA:37298 + hindlimb blood vessel (embryonic mouse) @@ -73989,8 +67661,7 @@ - upper leg blood vessel (embryonic mouse) - EMAPA:37299 + upper leg blood vessel (embryonic mouse) @@ -74009,8 +67680,7 @@ - lower leg blood vessel (embryonic mouse) - EMAPA:37300 + lower leg blood vessel (embryonic mouse) @@ -74029,8 +67699,7 @@ - pes blood vessel (embryonic mouse) - EMAPA:37301 + pes blood vessel (embryonic mouse) @@ -74049,8 +67718,7 @@ - pedal digit blood vessel (embryonic mouse) - EMAPA:37302 + pedal digit blood vessel (embryonic mouse) @@ -74069,8 +67737,7 @@ - arm bone (embryonic mouse) - EMAPA:37303 + arm bone (embryonic mouse) @@ -74089,8 +67756,7 @@ - leg bone (embryonic mouse) - EMAPA:37304 + leg bone (embryonic mouse) @@ -74109,8 +67775,7 @@ - manual digit bone (embryonic mouse) - EMAPA:37305 + manual digit bone (embryonic mouse) @@ -74129,8 +67794,7 @@ - middle phalanx of manus (embryonic mouse) - EMAPA:37306 + middle phalanx of manus (embryonic mouse) @@ -74149,8 +67813,7 @@ - proximal phalanx of manus (embryonic mouse) - EMAPA:37307 + proximal phalanx of manus (embryonic mouse) @@ -74169,8 +67832,7 @@ - bone of hip region (embryonic mouse) - EMAPA:37308 + bone of hip region (embryonic mouse) @@ -74189,8 +67851,7 @@ - pedal digit bone (embryonic mouse) - EMAPA:37309 + pedal digit bone (embryonic mouse) @@ -74209,8 +67870,7 @@ - distal phalanx of pes (embryonic mouse) - EMAPA:37310 + distal phalanx of pes (embryonic mouse) @@ -74229,8 +67889,7 @@ - middle phalanx of pes (embryonic mouse) - EMAPA:37311 + middle phalanx of pes (embryonic mouse) @@ -74249,8 +67908,7 @@ - proximal phalanx of pes (embryonic mouse) - EMAPA:37312 + proximal phalanx of pes (embryonic mouse) @@ -74269,8 +67927,7 @@ - limb connective tissue (embryonic mouse) - EMAPA:37313 + limb connective tissue (embryonic mouse) @@ -74289,8 +67946,7 @@ - forelimb connective tissue (embryonic mouse) - EMAPA:37314 + forelimb connective tissue (embryonic mouse) @@ -74309,8 +67965,7 @@ - shoulder connective tissue (embryonic mouse) - EMAPA:37315 + shoulder connective tissue (embryonic mouse) @@ -74329,8 +67984,7 @@ - arm connective tissue (embryonic mouse) - EMAPA:37316 + arm connective tissue (embryonic mouse) @@ -74349,8 +68003,7 @@ - upper arm connective tissue (embryonic mouse) - EMAPA:37317 + upper arm connective tissue (embryonic mouse) @@ -74369,8 +68022,7 @@ - elbow connective tissue (embryonic mouse) - EMAPA:37318 + elbow connective tissue (embryonic mouse) @@ -74389,8 +68041,7 @@ - lower arm connective tissue (embryonic mouse) - EMAPA:37319 + lower arm connective tissue (embryonic mouse) @@ -74409,8 +68060,7 @@ - wrist connective tissue (embryonic mouse) - EMAPA:37320 + wrist connective tissue (embryonic mouse) @@ -74429,8 +68079,7 @@ - manual digit connective tissue (embryonic mouse) - EMAPA:37321 + manual digit connective tissue (embryonic mouse) @@ -74449,8 +68098,7 @@ - hindlimb connective tissue (embryonic mouse) - EMAPA:37322 + hindlimb connective tissue (embryonic mouse) @@ -74469,8 +68117,7 @@ - hip connective tissue (embryonic mouse) - EMAPA:37323 + hip connective tissue (embryonic mouse) @@ -74489,8 +68136,7 @@ - leg connective tissue (embryonic mouse) - EMAPA:37324 + leg connective tissue (embryonic mouse) @@ -74509,8 +68155,7 @@ - upper leg connective tissue (embryonic mouse) - EMAPA:37325 + upper leg connective tissue (embryonic mouse) @@ -74529,8 +68174,7 @@ - knee connective tissue (embryonic mouse) - EMAPA:37326 + knee connective tissue (embryonic mouse) @@ -74549,8 +68193,7 @@ - lower leg connective tissue (embryonic mouse) - EMAPA:37327 + lower leg connective tissue (embryonic mouse) @@ -74569,8 +68212,7 @@ - ankle connective tissue (embryonic mouse) - EMAPA:37328 + ankle connective tissue (embryonic mouse) @@ -74589,8 +68231,7 @@ - pes connective tissue (embryonic mouse) - EMAPA:37329 + pes connective tissue (embryonic mouse) @@ -74609,8 +68250,7 @@ - pedal digit connective tissue (embryonic mouse) - EMAPA:37330 + pedal digit connective tissue (embryonic mouse) @@ -74629,8 +68269,7 @@ - manual digit muscle (embryonic mouse) - EMAPA:37331 + manual digit muscle (embryonic mouse) @@ -74649,8 +68288,7 @@ - pedal digit muscle (embryonic mouse) - EMAPA:37333 + pedal digit muscle (embryonic mouse) @@ -74669,8 +68307,7 @@ - forelimb nerve (embryonic mouse) - EMAPA:37334 + forelimb nerve (embryonic mouse) @@ -74689,8 +68326,7 @@ - shoulder nerve (embryonic mouse) - EMAPA:37335 + shoulder nerve (embryonic mouse) @@ -74709,8 +68345,7 @@ - arm nerve (embryonic mouse) - EMAPA:37336 + arm nerve (embryonic mouse) @@ -74729,8 +68364,7 @@ - upper arm nerve (embryonic mouse) - EMAPA:37337 + upper arm nerve (embryonic mouse) @@ -74749,8 +68383,7 @@ - lower arm nerve (embryonic mouse) - EMAPA:37338 + lower arm nerve (embryonic mouse) @@ -74769,8 +68402,7 @@ - wrist nerve (embryonic mouse) - EMAPA:37339 + wrist nerve (embryonic mouse) @@ -74789,8 +68421,7 @@ - manus nerve (embryonic mouse) - EMAPA:37340 + manus nerve (embryonic mouse) @@ -74809,8 +68440,7 @@ - digit nerve of manus (embryonic mouse) - EMAPA:37341 + digit nerve of manus (embryonic mouse) @@ -74829,8 +68459,7 @@ - hindlimb nerve (embryonic mouse) - EMAPA:37342 + hindlimb nerve (embryonic mouse) @@ -74849,8 +68478,7 @@ - leg nerve (embryonic mouse) - EMAPA:37343 + leg nerve (embryonic mouse) @@ -74869,8 +68497,7 @@ - upper leg nerve (embryonic mouse) - EMAPA:37344 + upper leg nerve (embryonic mouse) @@ -74889,8 +68516,7 @@ - lower leg nerve (embryonic mouse) - EMAPA:37345 + lower leg nerve (embryonic mouse) @@ -74909,8 +68535,7 @@ - ankle nerve (embryonic mouse) - EMAPA:37346 + ankle nerve (embryonic mouse) @@ -74929,8 +68554,7 @@ - pes nerve (embryonic mouse) - EMAPA:37347 + pes nerve (embryonic mouse) @@ -74949,8 +68573,7 @@ - pedal digit nerve (embryonic mouse) - EMAPA:37348 + pedal digit nerve (embryonic mouse) @@ -74969,8 +68592,7 @@ - axilla skin (embryonic mouse) - EMAPA:37349 + axilla skin (embryonic mouse) @@ -74989,8 +68611,7 @@ - arm skin (embryonic mouse) - EMAPA:37350 + arm skin (embryonic mouse) @@ -75009,8 +68630,7 @@ - skin of wrist (embryonic mouse) - EMAPA:37351 + skin of wrist (embryonic mouse) @@ -75029,8 +68649,7 @@ - skin of leg (embryonic mouse) - EMAPA:37352 + skin of leg (embryonic mouse) @@ -75049,8 +68668,7 @@ - skin of ankle (embryonic mouse) - EMAPA:37353 + skin of ankle (embryonic mouse) @@ -75069,8 +68687,7 @@ - heel skin (embryonic mouse) - EMAPA:37354 + heel skin (embryonic mouse) @@ -75089,8 +68706,7 @@ - epidermis of metapodial pad (embryonic mouse) - EMAPA:37355 + epidermis of metapodial pad (embryonic mouse) @@ -75109,8 +68725,7 @@ - left adrenal gland (embryonic mouse) - EMAPA:37356 + left adrenal gland (embryonic mouse) @@ -75129,8 +68744,7 @@ - right adrenal gland (embryonic mouse) - EMAPA:37357 + right adrenal gland (embryonic mouse) @@ -75149,8 +68763,7 @@ - left bundle branch (embryonic mouse) - EMAPA:37358 + left bundle branch (embryonic mouse) @@ -75169,8 +68782,7 @@ - right bundle branch (embryonic mouse) - EMAPA:37359 + right bundle branch (embryonic mouse) @@ -75189,8 +68801,7 @@ - left external ear (embryonic mouse) - EMAPA:37360 + left external ear (embryonic mouse) @@ -75209,8 +68820,7 @@ - right external ear (embryonic mouse) - EMAPA:37361 + right external ear (embryonic mouse) @@ -75229,8 +68839,7 @@ - left eye (embryonic mouse) - EMAPA:37362 + left eye (embryonic mouse) @@ -75249,8 +68858,7 @@ - right eye (embryonic mouse) - EMAPA:37363 + right eye (embryonic mouse) @@ -75269,8 +68877,7 @@ - left main bronchus (embryonic mouse) - EMAPA:37364 + left main bronchus (embryonic mouse) @@ -75289,8 +68896,7 @@ - right main bronchus (embryonic mouse) - EMAPA:37365 + right main bronchus (embryonic mouse) @@ -75309,8 +68915,7 @@ - left ovary (embryonic mouse) - EMAPA:37366 + left ovary (embryonic mouse) @@ -75329,8 +68934,7 @@ - right ovary (embryonic mouse) - EMAPA:37367 + right ovary (embryonic mouse) @@ -75349,8 +68953,7 @@ - left uterine tube (embryonic mouse) - EMAPA:37368 + left uterine tube (embryonic mouse) @@ -75369,8 +68972,7 @@ - right uterine tube (embryonic mouse) - EMAPA:37369 + right uterine tube (embryonic mouse) @@ -75389,8 +68991,7 @@ - left testis (embryonic mouse) - EMAPA:37370 + left testis (embryonic mouse) @@ -75409,8 +69010,7 @@ - right testis (embryonic mouse) - EMAPA:37371 + right testis (embryonic mouse) @@ -75429,8 +69029,7 @@ - left ureter (embryonic mouse) - EMAPA:37372 + left ureter (embryonic mouse) @@ -75449,8 +69048,7 @@ - right ureter (embryonic mouse) - EMAPA:37373 + right ureter (embryonic mouse) @@ -75469,8 +69067,7 @@ - left uterine horn (embryonic mouse) - EMAPA:37374 + left uterine horn (embryonic mouse) @@ -75489,8 +69086,7 @@ - right uterine horn (embryonic mouse) - EMAPA:37375 + right uterine horn (embryonic mouse) @@ -75509,8 +69105,7 @@ - right hepatic artery (embryonic mouse) - EMAPA:37376 + right hepatic artery (embryonic mouse) @@ -75529,8 +69124,7 @@ - right hepatic vein (embryonic mouse) - EMAPA:37377 + right hepatic vein (embryonic mouse) @@ -75549,8 +69143,7 @@ - right pulmonary artery (embryonic mouse) - EMAPA:37378 + right pulmonary artery (embryonic mouse) @@ -75569,8 +69162,7 @@ - right pulmonary vein (embryonic mouse) - EMAPA:37379 + right pulmonary vein (embryonic mouse) @@ -75589,8 +69181,7 @@ - right renal artery (embryonic mouse) - EMAPA:37380 + right renal artery (embryonic mouse) @@ -75609,8 +69200,7 @@ - right renal vein (embryonic mouse) - EMAPA:37381 + right renal vein (embryonic mouse) @@ -75629,8 +69219,7 @@ - right testicular artery (embryonic mouse) - EMAPA:37382 + right testicular artery (embryonic mouse) @@ -75649,8 +69238,7 @@ - right testicular vein (embryonic mouse) - EMAPA:37383 + right testicular vein (embryonic mouse) @@ -75669,8 +69257,7 @@ - right subclavian artery (embryonic mouse) - EMAPA:37384 + right subclavian artery (embryonic mouse) @@ -75689,8 +69276,7 @@ - pampiniform plexus (embryonic mouse) - EMAPA:37385 + pampiniform plexus (embryonic mouse) @@ -75709,8 +69295,7 @@ - auricular blood vessel (embryonic mouse) - EMAPA:37386 + auricular blood vessel (embryonic mouse) @@ -75729,8 +69314,7 @@ - iris blood vessel (embryonic mouse) - EMAPA:37387 + iris blood vessel (embryonic mouse) @@ -75749,8 +69333,7 @@ - eyelid blood vessel (embryonic mouse) - EMAPA:37388 + eyelid blood vessel (embryonic mouse) @@ -75769,8 +69352,7 @@ - intersomitic vessel (embryonic mouse) - EMAPA:37389 + intersomitic vessel (embryonic mouse) @@ -75789,8 +69371,7 @@ - alveolar atrium (embryonic mouse) - EMAPA:37390 + alveolar atrium (embryonic mouse) @@ -75809,8 +69390,7 @@ - alveolar pore (embryonic mouse) - EMAPA:37391 + alveolar pore (embryonic mouse) @@ -75829,8 +69409,7 @@ - anal fold (embryonic mouse) - EMAPA:37392 + anal fold (embryonic mouse) @@ -75849,8 +69428,7 @@ - anal region skeletal muscle (embryonic mouse) - EMAPA:37393 + anal region skeletal muscle (embryonic mouse) @@ -75869,8 +69447,7 @@ - anal region smooth muscle (embryonic mouse) - EMAPA:37394 + anal region smooth muscle (embryonic mouse) @@ -75889,8 +69466,7 @@ - anal sac (embryonic mouse) - EMAPA:37395 + anal sac (embryonic mouse) @@ -75909,8 +69485,7 @@ - anococcygeus muscle (embryonic mouse) - EMAPA:37396 + anococcygeus muscle (embryonic mouse) @@ -75929,8 +69504,7 @@ - ansiform lobule (embryonic mouse) - EMAPA:37397 + ansiform lobule (embryonic mouse) @@ -75949,8 +69523,7 @@ - ansiform lobule crus I (embryonic mouse) - EMAPA:37398 + ansiform lobule crus I (embryonic mouse) @@ -75969,8 +69542,7 @@ - ansiform lobule crus II (embryonic mouse) - EMAPA:37399 + ansiform lobule crus II (embryonic mouse) @@ -75989,8 +69561,7 @@ - copula pyramidis (embryonic mouse) - EMAPA:37400 + copula pyramidis (embryonic mouse) @@ -76009,8 +69580,7 @@ - lobule simplex (embryonic mouse) - EMAPA:37401 + lobule simplex (embryonic mouse) @@ -76029,8 +69599,7 @@ - paraflocculus (embryonic mouse) - EMAPA:37402 + paraflocculus (embryonic mouse) @@ -76049,8 +69618,7 @@ - paramedian lobule (embryonic mouse) - EMAPA:37403 + paramedian lobule (embryonic mouse) @@ -76069,8 +69637,7 @@ - anterior commissure anterior part (embryonic mouse) - EMAPA:37404 + anterior commissure anterior part (embryonic mouse) @@ -76089,8 +69656,7 @@ - anterior digastric muscle (embryonic mouse) - EMAPA:37405 + anterior digastric muscle (embryonic mouse) @@ -76109,8 +69675,7 @@ - posterior digastric muscle (embryonic mouse) - EMAPA:37406 + posterior digastric muscle (embryonic mouse) @@ -76129,8 +69694,7 @@ - anterior division of bed nuclei of stria terminalis (embryonic mouse) - EMAPA:37407 + anterior division of bed nuclei of stria terminalis (embryonic mouse) @@ -76149,8 +69713,7 @@ - posterior division of bed nuclei of stria terminalis (embryonic mouse) - EMAPA:37408 + posterior division of bed nuclei of stria terminalis (embryonic mouse) @@ -76169,8 +69732,7 @@ - anterior nucleus of hypothalamus (embryonic mouse) - EMAPA:37409 + anterior nucleus of hypothalamus (embryonic mouse) @@ -76189,8 +69751,7 @@ - posterior part of anterior commissure (embryonic mouse) - EMAPA:37410 + posterior part of anterior commissure (embryonic mouse) @@ -76209,8 +69770,7 @@ - anterior semicircular duct (embryonic mouse) - EMAPA:37411 + anterior semicircular duct (embryonic mouse) @@ -76229,8 +69789,7 @@ - lateral semicircular duct (embryonic mouse) - EMAPA:37412 + lateral semicircular duct (embryonic mouse) @@ -76249,8 +69808,7 @@ - posterior semicircular duct (embryonic mouse) - EMAPA:37413 + posterior semicircular duct (embryonic mouse) @@ -76269,8 +69827,7 @@ - anterior stroma of cornea (embryonic mouse) - EMAPA:37414 + anterior stroma of cornea (embryonic mouse) @@ -76289,8 +69846,7 @@ - posterior stroma of cornea (embryonic mouse) - EMAPA:37415 + posterior stroma of cornea (embryonic mouse) @@ -76309,8 +69865,7 @@ - anterior tegmental nucleus (embryonic mouse) - EMAPA:37416 + anterior tegmental nucleus (embryonic mouse) @@ -76329,8 +69884,7 @@ - anterior uvea (embryonic mouse) - EMAPA:37417 + anterior uvea (embryonic mouse) @@ -76349,8 +69903,7 @@ - aortic valve anulus (embryonic mouse) - EMAPA:37418 + aortic valve anulus (embryonic mouse) @@ -76369,8 +69922,7 @@ - mitral valve anulus (embryonic mouse) - EMAPA:37419 + mitral valve anulus (embryonic mouse) @@ -76389,8 +69941,7 @@ - pulmonary valve anulus (embryonic mouse) - EMAPA:37420 + pulmonary valve anulus (embryonic mouse) @@ -76409,8 +69960,7 @@ - tricuspid valve anulus (embryonic mouse) - EMAPA:37421 + tricuspid valve anulus (embryonic mouse) @@ -76429,8 +69979,7 @@ - fibrous ring of heart (embryonic mouse) - EMAPA:37422 + fibrous ring of heart (embryonic mouse) @@ -76449,8 +69998,7 @@ - apex of arytenoid (embryonic mouse) - EMAPA:37423 + apex of arytenoid (embryonic mouse) @@ -76469,8 +70017,7 @@ - base of arytenoid (embryonic mouse) - EMAPA:37424 + base of arytenoid (embryonic mouse) @@ -76489,8 +70036,7 @@ - apical region of heart ventricle (embryonic mouse) - EMAPA:37425 + apical region of heart ventricle (embryonic mouse) @@ -76509,8 +70055,7 @@ - apocrine sweat gland (embryonic mouse) - EMAPA:37426 + apocrine sweat gland (embryonic mouse) @@ -76529,8 +70074,7 @@ - aqueous drainage system (embryonic mouse) - EMAPA:37427 + aqueous drainage system (embryonic mouse) @@ -76549,8 +70093,7 @@ - aqueous vein (embryonic mouse) - EMAPA:37428 + aqueous vein (embryonic mouse) @@ -76569,8 +70112,7 @@ - artery of lower lip (embryonic mouse) - EMAPA:37429 + artery of lower lip (embryonic mouse) @@ -76589,8 +70131,7 @@ - artery of upper lip (embryonic mouse) - EMAPA:37430 + artery of upper lip (embryonic mouse) @@ -76609,8 +70150,7 @@ - atrioventricular septum (embryonic mouse) - EMAPA:37431 + atrioventricular septum (embryonic mouse) @@ -76629,8 +70169,7 @@ - atrium myocardial trabecula (embryonic mouse) - EMAPA:37432 + atrium myocardial trabecula (embryonic mouse) @@ -76649,8 +70188,7 @@ - auditory bulla (embryonic mouse) - EMAPA:37433 + auditory bulla (embryonic mouse) @@ -76669,8 +70207,7 @@ - ligament of pinna (embryonic mouse) - EMAPA:37434 + ligament of pinna (embryonic mouse) @@ -76689,8 +70226,7 @@ - Bachmann's bundle (embryonic mouse) - EMAPA:37435 + Bachmann's bundle (embryonic mouse) @@ -76709,8 +70245,7 @@ - Barrington's nucleus (embryonic mouse) - EMAPA:37436 + Barrington's nucleus (embryonic mouse) @@ -76729,8 +70264,7 @@ - anterior part of tongue (embryonic mouse) - EMAPA:37437 + anterior part of tongue (embryonic mouse) @@ -76749,8 +70283,7 @@ - posterior part of tongue (embryonic mouse) - EMAPA:37438 + posterior part of tongue (embryonic mouse) @@ -76769,8 +70302,7 @@ - basilic vein (embryonic mouse) - EMAPA:37439 + basilic vein (embryonic mouse) @@ -76789,8 +70321,7 @@ - biliary ductule (embryonic mouse) - EMAPA:37440 + biliary ductule (embryonic mouse) @@ -76809,8 +70340,7 @@ - bodily fluid (embryonic mouse) - EMAPA:37441 + bodily fluid (embryonic mouse) @@ -76829,8 +70359,7 @@ - anatomical cavity (embryonic mouse) - EMAPA:37442 + anatomical cavity (embryonic mouse) @@ -76849,8 +70378,7 @@ - body of sternum (embryonic mouse) - EMAPA:37443 + body of sternum (embryonic mouse) @@ -76869,8 +70397,7 @@ - bony part of hard palate (embryonic mouse) - EMAPA:37444 + bony part of hard palate (embryonic mouse) @@ -76889,8 +70416,7 @@ - brachial vein (embryonic mouse) - EMAPA:37445 + brachial vein (embryonic mouse) @@ -76909,8 +70435,7 @@ - brain commissure (embryonic mouse) - EMAPA:37446 + brain commissure (embryonic mouse) @@ -76929,8 +70454,7 @@ - ventricular system of brain (embryonic mouse) - EMAPA:37447 + ventricular system of brain (embryonic mouse) @@ -76949,8 +70473,7 @@ - bronchoalveolar duct junction (embryonic mouse) - EMAPA:37448 + bronchoalveolar duct junction (embryonic mouse) @@ -76969,8 +70492,7 @@ - submucosa of bronchus (embryonic mouse) - EMAPA:37449 + submucosa of bronchus (embryonic mouse) @@ -76989,8 +70511,7 @@ - Bruch's membrane (embryonic mouse) - EMAPA:37450 + Bruch's membrane (embryonic mouse) @@ -77009,8 +70530,7 @@ - cheek (embryonic mouse) - EMAPA:37451 + cheek (embryonic mouse) @@ -77029,8 +70549,7 @@ - cheek pouch (embryonic mouse) - EMAPA:37452 + cheek pouch (embryonic mouse) @@ -77049,8 +70568,7 @@ - buccinator muscle (embryonic mouse) - EMAPA:37453 + buccinator muscle (embryonic mouse) @@ -77069,8 +70587,7 @@ - bulbospongiosus muscle (embryonic mouse) - EMAPA:37454 + bulbospongiosus muscle (embryonic mouse) @@ -77089,8 +70606,7 @@ - ischiocavernosus muscle (embryonic mouse) - EMAPA:37455 + ischiocavernosus muscle (embryonic mouse) @@ -77109,8 +70625,7 @@ - canal of Schlemm (embryonic mouse) - EMAPA:37456 + canal of Schlemm (embryonic mouse) @@ -77129,8 +70644,7 @@ - canthus (embryonic mouse) - EMAPA:37457 + canthus (embryonic mouse) @@ -77149,8 +70663,7 @@ - outer canthus (embryonic mouse) - EMAPA:37458 + outer canthus (embryonic mouse) @@ -77169,8 +70682,7 @@ - cardiac gastric gland (embryonic mouse) - EMAPA:37459 + cardiac gastric gland (embryonic mouse) @@ -77189,8 +70701,7 @@ - cardiac nerve plexus (embryonic mouse) - EMAPA:37460 + cardiac nerve plexus (embryonic mouse) @@ -77209,8 +70720,7 @@ - celiac nerve plexus (embryonic mouse) - EMAPA:37461 + celiac nerve plexus (embryonic mouse) @@ -77229,8 +70739,7 @@ - pulmonary nerve plexus (embryonic mouse) - EMAPA:37462 + pulmonary nerve plexus (embryonic mouse) @@ -77249,8 +70758,7 @@ - cartilaginous joint suture (embryonic mouse) - EMAPA:37463 + cartilaginous joint suture (embryonic mouse) @@ -77269,8 +70777,7 @@ - dento-alveolar joint (embryonic mouse) - EMAPA:37464 + dento-alveolar joint (embryonic mouse) @@ -77289,8 +70796,7 @@ - syndesmosis (embryonic mouse) - EMAPA:37465 + syndesmosis (embryonic mouse) @@ -77309,8 +70815,7 @@ - bony otic capsule (embryonic mouse) - EMAPA:37466 + bony otic capsule (embryonic mouse) @@ -77329,8 +70834,7 @@ - cartilaginous otic capsule (embryonic mouse) - EMAPA:37467 + cartilaginous otic capsule (embryonic mouse) @@ -77349,8 +70853,7 @@ - cauda equina (embryonic mouse) - EMAPA:37468 + cauda equina (embryonic mouse) @@ -77369,8 +70872,7 @@ - caudal ganglionic eminence (embryonic mouse) - EMAPA:37469 + caudal ganglionic eminence (embryonic mouse) @@ -77389,8 +70891,7 @@ - lateral ganglionic eminence (embryonic mouse) - EMAPA:37470 + lateral ganglionic eminence (embryonic mouse) @@ -77409,8 +70910,7 @@ - medial ganglionic eminence (embryonic mouse) - EMAPA:37471 + medial ganglionic eminence (embryonic mouse) @@ -77429,8 +70929,7 @@ - caudal humeral circumflex vein (embryonic mouse) - EMAPA:37472 + caudal humeral circumflex vein (embryonic mouse) @@ -77449,8 +70948,7 @@ - cellular cartilage (embryonic mouse) - EMAPA:37473 + cellular cartilage (embryonic mouse) @@ -77469,8 +70967,7 @@ - muscle organ (embryonic mouse) - EMAPA:37474 + muscle organ (embryonic mouse) @@ -77489,8 +70986,7 @@ - myocardial layer (embryonic mouse) - EMAPA:37475 + myocardial layer (embryonic mouse) @@ -77509,8 +71005,7 @@ - synovial membrane of synovial joint (embryonic mouse) - EMAPA:37476 + synovial membrane of synovial joint (embryonic mouse) @@ -77529,8 +71024,7 @@ - cerebral hemisphere gray matter (embryonic mouse) - EMAPA:37477 + cerebral hemisphere gray matter (embryonic mouse) @@ -77549,8 +71043,7 @@ - choledocho-duodenal junction (embryonic mouse) - EMAPA:37478 + choledocho-duodenal junction (embryonic mouse) @@ -77569,8 +71062,7 @@ - enteric nerve (embryonic mouse) - EMAPA:37479 + enteric nerve (embryonic mouse) @@ -77589,8 +71081,7 @@ - cholinergic enteric nerve (embryonic mouse) - EMAPA:37480 + cholinergic enteric nerve (embryonic mouse) @@ -77609,8 +71100,7 @@ - muscle of pelvis (embryonic mouse) - EMAPA:37481 + muscle of pelvis (embryonic mouse) @@ -77629,8 +71119,7 @@ - coccygeus muscle (embryonic mouse) - EMAPA:37482 + coccygeus muscle (embryonic mouse) @@ -77649,8 +71138,7 @@ - constrictor vulvae muscle (embryonic mouse) - EMAPA:37483 + constrictor vulvae muscle (embryonic mouse) @@ -77669,8 +71157,7 @@ - corniculate cartilage (embryonic mouse) - EMAPA:37484 + corniculate cartilage (embryonic mouse) @@ -77689,8 +71176,7 @@ - outer cortex of kidney (embryonic mouse) - EMAPA:37485 + outer cortex of kidney (embryonic mouse) @@ -77709,8 +71195,7 @@ - cortical arch of kidney (embryonic mouse) - EMAPA:37486 + cortical arch of kidney (embryonic mouse) @@ -77729,8 +71214,7 @@ - renal column (embryonic mouse) - EMAPA:37487 + renal column (embryonic mouse) @@ -77749,8 +71233,7 @@ - renal cortex peritubular capillary (embryonic mouse) - EMAPA:37488 + renal cortex peritubular capillary (embryonic mouse) @@ -77769,8 +71252,7 @@ - renal straight tubule (embryonic mouse) - EMAPA:37489 + renal straight tubule (embryonic mouse) @@ -77789,8 +71271,7 @@ - nephron tubule basement membrane (embryonic mouse) - EMAPA:37490 + nephron tubule basement membrane (embryonic mouse) @@ -77809,8 +71290,7 @@ - costal arch (embryonic mouse) - EMAPA:37491 + costal arch (embryonic mouse) @@ -77829,8 +71309,7 @@ - distal segment of rib (embryonic mouse) - EMAPA:37492 + distal segment of rib (embryonic mouse) @@ -77849,8 +71328,7 @@ - false rib (embryonic mouse) - EMAPA:37493 + false rib (embryonic mouse) @@ -77869,8 +71347,7 @@ - floating rib (embryonic mouse) - EMAPA:37494 + floating rib (embryonic mouse) @@ -77889,8 +71366,7 @@ - proximal segment of rib (embryonic mouse) - EMAPA:37495 + proximal segment of rib (embryonic mouse) @@ -77909,8 +71385,7 @@ - costo-cervical trunk (embryonic mouse) - EMAPA:37496 + costo-cervical trunk (embryonic mouse) @@ -77929,8 +71404,7 @@ - cranial cavity (embryonic mouse) - EMAPA:37497 + cranial cavity (embryonic mouse) @@ -77949,8 +71423,7 @@ - crico-arytenoid muscle (embryonic mouse) - EMAPA:37498 + crico-arytenoid muscle (embryonic mouse) @@ -77969,8 +71442,7 @@ - cerebral crus (embryonic mouse) - EMAPA:37499 + cerebral crus (embryonic mouse) @@ -77989,8 +71461,7 @@ - cutaneous muscle (embryonic mouse) - EMAPA:37500 + cutaneous muscle (embryonic mouse) @@ -78009,8 +71480,7 @@ - cutaneous trunci muscle (embryonic mouse) - EMAPA:37501 + cutaneous trunci muscle (embryonic mouse) @@ -78029,8 +71499,7 @@ - levator nasolabialis muscle (embryonic mouse) - EMAPA:37502 + levator nasolabialis muscle (embryonic mouse) @@ -78049,8 +71518,7 @@ - levator labii superioris (embryonic mouse) - EMAPA:37503 + levator labii superioris (embryonic mouse) @@ -78069,8 +71537,7 @@ - integument (embryonic mouse) - EMAPA:37504 + integument (embryonic mouse) @@ -78089,8 +71556,7 @@ - hypodermis (embryonic mouse) - EMAPA:37505 + hypodermis (embryonic mouse) @@ -78109,8 +71575,7 @@ - cutaneous vein (embryonic mouse) - EMAPA:37506 + cutaneous vein (embryonic mouse) @@ -78129,8 +71594,7 @@ - eponychium (embryonic mouse) - EMAPA:37507 + eponychium (embryonic mouse) @@ -78149,8 +71613,7 @@ - hyponychium (embryonic mouse) - EMAPA:37508 + hyponychium (embryonic mouse) @@ -78169,8 +71632,7 @@ - proximal nail bed (embryonic mouse) - EMAPA:37509 + proximal nail bed (embryonic mouse) @@ -78189,8 +71651,7 @@ - deep cervical lymph node (embryonic mouse) - EMAPA:37510 + deep cervical lymph node (embryonic mouse) @@ -78209,8 +71670,7 @@ - deep circumflex iliac vein (embryonic mouse) - EMAPA:37511 + deep circumflex iliac vein (embryonic mouse) @@ -78229,8 +71689,7 @@ - deep temporal vein (embryonic mouse) - EMAPA:37512 + deep temporal vein (embryonic mouse) @@ -78249,8 +71708,7 @@ - deferent duct artery (embryonic mouse) - EMAPA:37513 + deferent duct artery (embryonic mouse) @@ -78269,8 +71727,7 @@ - deferent duct vein (embryonic mouse) - EMAPA:37514 + deferent duct vein (embryonic mouse) @@ -78289,8 +71746,7 @@ - dentate gyrus pyramidal layer (embryonic mouse) - EMAPA:37515 + dentate gyrus pyramidal layer (embryonic mouse) @@ -78309,8 +71765,7 @@ - depressor labii inferioris (embryonic mouse) - EMAPA:37516 + depressor labii inferioris (embryonic mouse) @@ -78329,8 +71784,7 @@ - dorsal pes interosseous muscle (embryonic mouse) - EMAPA:37517 + dorsal pes interosseous muscle (embryonic mouse) @@ -78349,8 +71803,7 @@ - plantar interosseous muscle of pes (embryonic mouse) - EMAPA:37518 + plantar interosseous muscle of pes (embryonic mouse) @@ -78369,8 +71822,7 @@ - dorsal interosseous of manus (embryonic mouse) - EMAPA:37519 + dorsal interosseous of manus (embryonic mouse) @@ -78389,8 +71841,7 @@ - palmar interosseous muscle of manus (embryonic mouse) - EMAPA:37520 + palmar interosseous muscle of manus (embryonic mouse) @@ -78409,8 +71860,7 @@ - dorsal venous arch (embryonic mouse) - EMAPA:37521 + dorsal venous arch (embryonic mouse) @@ -78429,8 +71879,7 @@ - epiglottic cartilage (embryonic mouse) - EMAPA:37522 + epiglottic cartilage (embryonic mouse) @@ -78449,8 +71898,7 @@ - esophagus smooth muscle circular layer (embryonic mouse) - EMAPA:37523 + esophagus smooth muscle circular layer (embryonic mouse) @@ -78469,8 +71917,7 @@ - esophagus smooth muscle longitudinal layer (embryonic mouse) - EMAPA:37524 + esophagus smooth muscle longitudinal layer (embryonic mouse) @@ -78489,8 +71936,7 @@ - cartilaginous external acoustic tube (embryonic mouse) - EMAPA:37525 + cartilaginous external acoustic tube (embryonic mouse) @@ -78509,8 +71955,7 @@ - external acoustic meatus osseus part (embryonic mouse) - EMAPA:37526 + external acoustic meatus osseus part (embryonic mouse) @@ -78529,8 +71974,7 @@ - extrinsic auricular muscle (embryonic mouse) - EMAPA:37527 + extrinsic auricular muscle (embryonic mouse) @@ -78549,8 +71993,7 @@ - intrinsic auricular muscle (embryonic mouse) - EMAPA:37528 + intrinsic auricular muscle (embryonic mouse) @@ -78569,8 +72012,7 @@ - chamber of eyeball (embryonic mouse) - EMAPA:37529 + chamber of eyeball (embryonic mouse) @@ -78589,8 +72031,7 @@ - eye skin gland (embryonic mouse) - EMAPA:37530 + eye skin gland (embryonic mouse) @@ -78609,8 +72050,7 @@ - eye sebaceous gland (embryonic mouse) - EMAPA:37531 + eye sebaceous gland (embryonic mouse) @@ -78629,8 +72069,7 @@ - eyelid connective tissue (embryonic mouse) - EMAPA:37532 + eyelid connective tissue (embryonic mouse) @@ -78649,8 +72088,7 @@ - eyelid subcutaneous connective tissue (embryonic mouse) - EMAPA:37533 + eyelid subcutaneous connective tissue (embryonic mouse) @@ -78669,8 +72107,7 @@ - eyelid submuscular connective tissue (embryonic mouse) - EMAPA:37534 + eyelid submuscular connective tissue (embryonic mouse) @@ -78689,8 +72126,7 @@ - eyelid nerve (embryonic mouse) - EMAPA:37535 + eyelid nerve (embryonic mouse) @@ -78709,8 +72145,7 @@ - skin of eyelid (embryonic mouse) - EMAPA:37536 + skin of eyelid (embryonic mouse) @@ -78729,8 +72164,7 @@ - female membranous urethra (embryonic mouse) - EMAPA:37537 + female membranous urethra (embryonic mouse) @@ -78749,8 +72183,7 @@ - diaphysis of femur (embryonic mouse) - EMAPA:37538 + diaphysis of femur (embryonic mouse) @@ -78769,8 +72202,7 @@ - epiphysis of femur (embryonic mouse) - EMAPA:37539 + epiphysis of femur (embryonic mouse) @@ -78789,8 +72221,7 @@ - metaphysis of femur (embryonic mouse) - EMAPA:37540 + metaphysis of femur (embryonic mouse) @@ -78809,8 +72240,7 @@ - head of femur (embryonic mouse) - EMAPA:37541 + head of femur (embryonic mouse) @@ -78829,8 +72259,7 @@ - membranous urethra of male or female (embryonic mouse) - EMAPA:37542 + membranous urethra of male or female (embryonic mouse) @@ -78849,8 +72278,7 @@ - forebrain meninges (embryonic mouse) - EMAPA:37543 + forebrain meninges (embryonic mouse) @@ -78869,8 +72297,7 @@ - forebrain arachnoid mater (embryonic mouse) - EMAPA:37544 + forebrain arachnoid mater (embryonic mouse) @@ -78889,8 +72316,7 @@ - forebrain dura mater (embryonic mouse) - EMAPA:37545 + forebrain dura mater (embryonic mouse) @@ -78909,8 +72335,7 @@ - forebrain pia mater (embryonic mouse) - EMAPA:37546 + forebrain pia mater (embryonic mouse) @@ -78929,8 +72354,7 @@ - lower respiratory tract cartilage (embryonic mouse) - EMAPA:37547 + lower respiratory tract cartilage (embryonic mouse) @@ -78949,8 +72373,7 @@ - lower respiratory tract connective tissue (embryonic mouse) - EMAPA:37548 + lower respiratory tract connective tissue (embryonic mouse) @@ -78969,8 +72392,7 @@ - lower respiratory tract epithelium (embryonic mouse) - EMAPA:37549 + lower respiratory tract epithelium (embryonic mouse) @@ -78989,8 +72411,7 @@ - main bronchus connective tissue (embryonic mouse) - EMAPA:37550 + main bronchus connective tissue (embryonic mouse) @@ -79009,8 +72430,7 @@ - main bronchus smooth muscle (embryonic mouse) - EMAPA:37551 + main bronchus smooth muscle (embryonic mouse) @@ -79029,8 +72449,7 @@ - trachea basement membrane (embryonic mouse) - EMAPA:37552 + trachea basement membrane (embryonic mouse) @@ -79049,8 +72468,7 @@ - trachea basal lamina (embryonic mouse) - EMAPA:37553 + trachea basal lamina (embryonic mouse) @@ -79069,8 +72487,7 @@ - trachea reticular lamina (embryonic mouse) - EMAPA:37554 + trachea reticular lamina (embryonic mouse) @@ -79089,8 +72506,7 @@ - bifurcation of trachea (embryonic mouse) - EMAPA:37555 + bifurcation of trachea (embryonic mouse) @@ -79109,8 +72525,7 @@ - muscularis mucosae of large intestine (embryonic mouse) - EMAPA:37556 + muscularis mucosae of large intestine (embryonic mouse) @@ -79129,8 +72544,7 @@ - serosa of large intestine (embryonic mouse) - EMAPA:37557 + serosa of large intestine (embryonic mouse) @@ -79149,8 +72563,7 @@ - large intestine smooth muscle circular layer (embryonic mouse) - EMAPA:37558 + large intestine smooth muscle circular layer (embryonic mouse) @@ -79169,8 +72582,7 @@ - large intestine smooth muscle longitudinal layer (embryonic mouse) - EMAPA:37559 + large intestine smooth muscle longitudinal layer (embryonic mouse) @@ -79189,8 +72601,7 @@ - submucosa of large intestine (embryonic mouse) - EMAPA:37560 + submucosa of large intestine (embryonic mouse) @@ -79209,8 +72620,7 @@ - serosa of small intestine (embryonic mouse) - EMAPA:37561 + serosa of small intestine (embryonic mouse) @@ -79229,8 +72639,7 @@ - small intestine smooth muscle circular layer (embryonic mouse) - EMAPA:37562 + small intestine smooth muscle circular layer (embryonic mouse) @@ -79249,8 +72658,7 @@ - small intestine smooth muscle longitudinal layer (embryonic mouse) - EMAPA:37563 + small intestine smooth muscle longitudinal layer (embryonic mouse) @@ -79269,8 +72677,7 @@ - submucosa of small intestine (embryonic mouse) - EMAPA:37564 + submucosa of small intestine (embryonic mouse) @@ -79289,8 +72696,7 @@ - respiratory system arterial blood vessel (embryonic mouse) - EMAPA:37565 + respiratory system arterial blood vessel (embryonic mouse) @@ -79309,8 +72715,7 @@ - respiratory system arterial endothelium (embryonic mouse) - EMAPA:37566 + respiratory system arterial endothelium (embryonic mouse) @@ -79329,8 +72734,7 @@ - respiratory system arterial smooth muscle (embryonic mouse) - EMAPA:37567 + respiratory system arterial smooth muscle (embryonic mouse) @@ -79349,8 +72753,7 @@ - respiratory system arteriole (embryonic mouse) - EMAPA:37568 + respiratory system arteriole (embryonic mouse) @@ -79369,8 +72772,7 @@ - respiratory system artery (embryonic mouse) - EMAPA:37569 + respiratory system artery (embryonic mouse) @@ -79389,8 +72791,7 @@ - respiratory system basement membrane (embryonic mouse) - EMAPA:37570 + respiratory system basement membrane (embryonic mouse) @@ -79409,8 +72810,7 @@ - respiratory system basal lamina (embryonic mouse) - EMAPA:37571 + respiratory system basal lamina (embryonic mouse) @@ -79429,8 +72829,7 @@ - respiratory system reticular lamina (embryonic mouse) - EMAPA:37572 + respiratory system reticular lamina (embryonic mouse) @@ -79449,8 +72848,7 @@ - respiratory system blood vessel smooth muscle (embryonic mouse) - EMAPA:37573 + respiratory system blood vessel smooth muscle (embryonic mouse) @@ -79469,8 +72867,7 @@ - respiratory system capillary (embryonic mouse) - EMAPA:37574 + respiratory system capillary (embryonic mouse) @@ -79489,8 +72886,7 @@ - respiratory system capillary endothelium (embryonic mouse) - EMAPA:37575 + respiratory system capillary endothelium (embryonic mouse) @@ -79509,8 +72905,7 @@ - respiratory system lamina propria (embryonic mouse) - EMAPA:37576 + respiratory system lamina propria (embryonic mouse) @@ -79529,8 +72924,7 @@ - respiratory system mucosa (embryonic mouse) - EMAPA:37577 + respiratory system mucosa (embryonic mouse) @@ -79549,8 +72943,7 @@ - respiratory system submucosa (embryonic mouse) - EMAPA:37578 + respiratory system submucosa (embryonic mouse) @@ -79569,8 +72962,7 @@ - respiratory system elastic tissue (embryonic mouse) - EMAPA:37579 + respiratory system elastic tissue (embryonic mouse) @@ -79589,8 +72981,7 @@ - respiratory system lymphatic vessel (embryonic mouse) - EMAPA:37580 + respiratory system lymphatic vessel (embryonic mouse) @@ -79609,8 +73000,7 @@ - respiratory system lymphatic vessel endothelium (embryonic mouse) - EMAPA:37581 + respiratory system lymphatic vessel endothelium (embryonic mouse) @@ -79629,8 +73019,7 @@ - respiratory system lymphatic vessel smooth muscle (embryonic mouse) - EMAPA:37582 + respiratory system lymphatic vessel smooth muscle (embryonic mouse) @@ -79649,8 +73038,7 @@ - respiratory system skeletal muscle (embryonic mouse) - EMAPA:37583 + respiratory system skeletal muscle (embryonic mouse) @@ -79669,8 +73057,7 @@ - respiratory system venous blood vessel (embryonic mouse) - EMAPA:37584 + respiratory system venous blood vessel (embryonic mouse) @@ -79689,8 +73076,7 @@ - respiratory system venous endothelium (embryonic mouse) - EMAPA:37585 + respiratory system venous endothelium (embryonic mouse) @@ -79709,8 +73095,7 @@ - respiratory system venous smooth muscle (embryonic mouse) - EMAPA:37586 + respiratory system venous smooth muscle (embryonic mouse) @@ -79729,8 +73114,7 @@ - respiratory system venule (embryonic mouse) - EMAPA:37587 + respiratory system venule (embryonic mouse) @@ -79749,8 +73133,7 @@ - flexor hallucis longus (embryonic mouse) - EMAPA:37588 + flexor hallucis longus (embryonic mouse) @@ -79769,8 +73152,7 @@ - fovea centralis (embryonic mouse) - EMAPA:37589 + fovea centralis (embryonic mouse) @@ -79789,8 +73171,7 @@ - frontal artery (embryonic mouse) - EMAPA:37590 + frontal artery (embryonic mouse) @@ -79809,8 +73190,7 @@ - fusiform nucleus of stria terminalis (embryonic mouse) - EMAPA:37591 + fusiform nucleus of stria terminalis (embryonic mouse) @@ -79829,8 +73209,7 @@ - gastrointestinal system serosa (embryonic mouse) - EMAPA:37592 + gastrointestinal system serosa (embryonic mouse) @@ -79849,8 +73228,7 @@ - gracile nucleus (embryonic mouse) - EMAPA:37593 + gracile nucleus (embryonic mouse) @@ -79869,8 +73247,7 @@ - greater trochanter (embryonic mouse) - EMAPA:37594 + greater trochanter (embryonic mouse) @@ -79889,8 +73266,7 @@ - lesser trochanter (embryonic mouse) - EMAPA:37595 + lesser trochanter (embryonic mouse) @@ -79909,8 +73285,7 @@ - gray matter (embryonic mouse) - EMAPA:37596 + gray matter (embryonic mouse) @@ -79929,8 +73304,7 @@ - heart plus pericardium (embryonic mouse) - EMAPA:37597 + heart plus pericardium (embryonic mouse) @@ -79949,8 +73323,7 @@ - hepatic duct smooth muscle (embryonic mouse) - EMAPA:37598 + hepatic duct smooth muscle (embryonic mouse) @@ -79969,8 +73342,7 @@ - hilar portion of hepatic duct (embryonic mouse) - EMAPA:37599 + hilar portion of hepatic duct (embryonic mouse) @@ -79989,8 +73361,7 @@ - hyoid apparatus (embryonic mouse) - EMAPA:37600 + hyoid apparatus (embryonic mouse) @@ -80009,8 +73380,7 @@ - ileocecal junction (embryonic mouse) - EMAPA:37601 + ileocecal junction (embryonic mouse) @@ -80029,8 +73399,7 @@ - iliac crest (embryonic mouse) - EMAPA:37602 + iliac crest (embryonic mouse) @@ -80049,8 +73418,7 @@ - iliocostalis muscle (embryonic mouse) - EMAPA:37603 + iliocostalis muscle (embryonic mouse) @@ -80069,8 +73437,7 @@ - iliocostalis thoracis muscle (embryonic mouse) - EMAPA:37604 + iliocostalis thoracis muscle (embryonic mouse) @@ -80089,8 +73456,7 @@ - iliothoracic muscle (embryonic mouse) - EMAPA:37605 + iliothoracic muscle (embryonic mouse) @@ -80109,8 +73475,7 @@ - inferior eyelid tarsus (embryonic mouse) - EMAPA:37606 + inferior eyelid tarsus (embryonic mouse) @@ -80129,8 +73494,7 @@ - superior eyelid tarsus (embryonic mouse) - EMAPA:37607 + superior eyelid tarsus (embryonic mouse) @@ -80149,8 +73513,7 @@ - medial palpebral ligament (embryonic mouse) - EMAPA:37608 + medial palpebral ligament (embryonic mouse) @@ -80169,8 +73532,7 @@ - orbital septum (embryonic mouse) - EMAPA:37609 + orbital septum (embryonic mouse) @@ -80189,8 +73551,7 @@ - inferior olivary commissure (embryonic mouse) - EMAPA:37610 + inferior olivary commissure (embryonic mouse) @@ -80209,8 +73570,7 @@ - inferior olive, beta nucleus (embryonic mouse) - EMAPA:37611 + inferior olive, beta nucleus (embryonic mouse) @@ -80229,8 +73589,7 @@ - inferior olive dorsal accessory nucleus (embryonic mouse) - EMAPA:37612 + inferior olive dorsal accessory nucleus (embryonic mouse) @@ -80249,8 +73608,7 @@ - inferior olive medial accessory nucleus (embryonic mouse) - EMAPA:37613 + inferior olive medial accessory nucleus (embryonic mouse) @@ -80269,8 +73627,7 @@ - medial accessory inferior olivary nucleus (embryonic mouse) - EMAPA:37614 + medial accessory inferior olivary nucleus (embryonic mouse) @@ -80289,8 +73646,7 @@ - principal inferior olivary nucleus (embryonic mouse) - EMAPA:37615 + principal inferior olivary nucleus (embryonic mouse) @@ -80309,8 +73665,7 @@ - inferior pancreaticoduodenal vein (embryonic mouse) - EMAPA:37616 + inferior pancreaticoduodenal vein (embryonic mouse) @@ -80329,8 +73684,7 @@ - sympathetic nerve plexus (embryonic mouse) - EMAPA:37617 + sympathetic nerve plexus (embryonic mouse) @@ -80349,8 +73703,7 @@ - internal carotid nerve plexus (embryonic mouse) - EMAPA:37618 + internal carotid nerve plexus (embryonic mouse) @@ -80369,8 +73722,7 @@ - serosa of intestine (embryonic mouse) - EMAPA:37619 + serosa of intestine (embryonic mouse) @@ -80389,8 +73741,7 @@ - joint articular surface (embryonic mouse) - EMAPA:37620 + joint articular surface (embryonic mouse) @@ -80409,8 +73760,7 @@ - articular capsule (embryonic mouse) - EMAPA:37621 + articular capsule (embryonic mouse) @@ -80429,8 +73779,7 @@ - intervertebral joint (embryonic mouse) - EMAPA:37622 + intervertebral joint (embryonic mouse) @@ -80449,8 +73798,7 @@ - juxtamedullary cortex (embryonic mouse) - EMAPA:37623 + juxtamedullary cortex (embryonic mouse) @@ -80469,8 +73817,7 @@ - lacrimal canaliculus (embryonic mouse) - EMAPA:37624 + lacrimal canaliculus (embryonic mouse) @@ -80489,8 +73836,7 @@ - lamellar bone (embryonic mouse) - EMAPA:37625 + lamellar bone (embryonic mouse) @@ -80509,8 +73855,7 @@ - ligament of larynx (embryonic mouse) - EMAPA:37626 + ligament of larynx (embryonic mouse) @@ -80529,8 +73874,7 @@ - extrinsic ligament of larynx (embryonic mouse) - EMAPA:37627 + extrinsic ligament of larynx (embryonic mouse) @@ -80549,8 +73893,7 @@ - laryngeal intrinsic ligament (embryonic mouse) - EMAPA:37628 + laryngeal intrinsic ligament (embryonic mouse) @@ -80569,8 +73912,7 @@ - laryngeal extrinsic muscle (embryonic mouse) - EMAPA:37629 + laryngeal extrinsic muscle (embryonic mouse) @@ -80589,8 +73931,7 @@ - laryngeal intrinsic muscle (embryonic mouse) - EMAPA:37630 + laryngeal intrinsic muscle (embryonic mouse) @@ -80609,8 +73950,7 @@ - larynx mucous gland (embryonic mouse) - EMAPA:37631 + larynx mucous gland (embryonic mouse) @@ -80629,8 +73969,7 @@ - lamina VI of gray matter of spinal cord (embryonic mouse) - EMAPA:37632 + lamina VI of gray matter of spinal cord (embryonic mouse) @@ -80649,8 +73988,7 @@ - lateral cervical nucleus (embryonic mouse) - EMAPA:37633 + lateral cervical nucleus (embryonic mouse) @@ -80669,8 +74007,7 @@ - lateral spinal nucleus (embryonic mouse) - EMAPA:37634 + lateral spinal nucleus (embryonic mouse) @@ -80689,8 +74026,7 @@ - dorsal thoracic nucleus (embryonic mouse) - EMAPA:37635 + dorsal thoracic nucleus (embryonic mouse) @@ -80709,8 +74045,7 @@ - lateral dorsal digital artery for digit 5 (embryonic mouse) - EMAPA:37636 + lateral dorsal digital artery for digit 5 (embryonic mouse) @@ -80729,8 +74064,7 @@ - median dorsal digital artery for digit 1 (embryonic mouse) - EMAPA:37637 + median dorsal digital artery for digit 1 (embryonic mouse) @@ -80749,8 +74083,7 @@ - lateral globus pallidus (embryonic mouse) - EMAPA:37638 + lateral globus pallidus (embryonic mouse) @@ -80769,8 +74102,7 @@ - medial globus pallidus (embryonic mouse) - EMAPA:37639 + medial globus pallidus (embryonic mouse) @@ -80789,8 +74121,7 @@ - forestomach-glandular stomach junction (embryonic mouse) - EMAPA:37640 + forestomach-glandular stomach junction (embryonic mouse) @@ -80809,8 +74140,7 @@ - anterior lingual gland duct (embryonic mouse) - EMAPA:37641 + anterior lingual gland duct (embryonic mouse) @@ -80829,8 +74159,7 @@ - lip skeletal muscle (embryonic mouse) - EMAPA:37642 + lip skeletal muscle (embryonic mouse) @@ -80849,8 +74178,7 @@ - skin of lip (embryonic mouse) - EMAPA:37643 + skin of lip (embryonic mouse) @@ -80869,8 +74197,7 @@ - liver left lateral lobe (embryonic mouse) - EMAPA:37644 + liver left lateral lobe (embryonic mouse) @@ -80889,8 +74216,7 @@ - liver left medial lobe (embryonic mouse) - EMAPA:37645 + liver left medial lobe (embryonic mouse) @@ -80909,8 +74235,7 @@ - liver papillary process (embryonic mouse) - EMAPA:37646 + liver papillary process (embryonic mouse) @@ -80929,8 +74254,7 @@ - lobar bronchus connective tissue (embryonic mouse) - EMAPA:37647 + lobar bronchus connective tissue (embryonic mouse) @@ -80949,8 +74273,7 @@ - longissimus muscle (embryonic mouse) - EMAPA:37648 + longissimus muscle (embryonic mouse) @@ -80969,8 +74292,7 @@ - longissimus atlantis muscle (embryonic mouse) - EMAPA:37649 + longissimus atlantis muscle (embryonic mouse) @@ -80989,8 +74311,7 @@ - longissimus capitis (embryonic mouse) - EMAPA:37650 + longissimus capitis (embryonic mouse) @@ -81009,8 +74330,7 @@ - longissimus cervicis muscle (embryonic mouse) - EMAPA:37651 + longissimus cervicis muscle (embryonic mouse) @@ -81029,8 +74349,7 @@ - longissimus lumborum muscle (embryonic mouse) - EMAPA:37652 + longissimus lumborum muscle (embryonic mouse) @@ -81049,8 +74368,7 @@ - longissimus thoracis muscle (embryonic mouse) - EMAPA:37653 + longissimus thoracis muscle (embryonic mouse) @@ -81069,8 +74387,7 @@ - longus colli muscle (embryonic mouse) - EMAPA:37654 + longus colli muscle (embryonic mouse) @@ -81089,8 +74406,7 @@ - lumbar sympathetic nerve trunk (embryonic mouse) - EMAPA:37655 + lumbar sympathetic nerve trunk (embryonic mouse) @@ -81109,8 +74425,7 @@ - sacral sympathetic nerve trunk (embryonic mouse) - EMAPA:37656 + sacral sympathetic nerve trunk (embryonic mouse) @@ -81129,8 +74444,7 @@ - thoracic sympathetic nerve trunk (embryonic mouse) - EMAPA:37657 + thoracic sympathetic nerve trunk (embryonic mouse) @@ -81149,8 +74463,7 @@ - ventral lateral sacrocaudal muscle (embryonic mouse) - EMAPA:37658 + ventral lateral sacrocaudal muscle (embryonic mouse) @@ -81169,8 +74482,7 @@ - intermedium (embryonic mouse) - EMAPA:37659 + intermedium (embryonic mouse) @@ -81189,8 +74501,7 @@ - radiale (embryonic mouse) - EMAPA:37660 + radiale (embryonic mouse) @@ -81209,8 +74520,7 @@ - lymph node germinal center mantle zone (embryonic mouse) - EMAPA:37661 + lymph node germinal center mantle zone (embryonic mouse) @@ -81229,8 +74539,7 @@ - subcapsular sinus of lymph node (embryonic mouse) - EMAPA:37662 + subcapsular sinus of lymph node (embryonic mouse) @@ -81249,8 +74558,7 @@ - lymph node T cell domain (embryonic mouse) - EMAPA:37663 + lymph node T cell domain (embryonic mouse) @@ -81269,8 +74577,7 @@ - lymphoid system (embryonic mouse) - EMAPA:37664 + lymphoid system (embryonic mouse) @@ -81289,8 +74596,7 @@ - hemopoietic organ (embryonic mouse) - EMAPA:37665 + hemopoietic organ (embryonic mouse) @@ -81309,8 +74615,7 @@ - magnocellular nucleus of stria terminalis (embryonic mouse) - EMAPA:37666 + magnocellular nucleus of stria terminalis (embryonic mouse) @@ -81329,8 +74634,7 @@ - oval nucleus of stria terminalis (embryonic mouse) - EMAPA:37667 + oval nucleus of stria terminalis (embryonic mouse) @@ -81349,8 +74653,7 @@ - areolar gland (embryonic mouse) - EMAPA:37668 + areolar gland (embryonic mouse) @@ -81369,8 +74672,7 @@ - mammary gland smooth muscle (embryonic mouse) - EMAPA:37669 + mammary gland smooth muscle (embryonic mouse) @@ -81389,8 +74691,7 @@ - medial circumflex femoral artery (embryonic mouse) - EMAPA:37670 + medial circumflex femoral artery (embryonic mouse) @@ -81409,8 +74710,7 @@ - obturator artery (embryonic mouse) - EMAPA:37671 + obturator artery (embryonic mouse) @@ -81429,8 +74729,7 @@ - occipital artery (embryonic mouse) - EMAPA:37672 + occipital artery (embryonic mouse) @@ -81449,8 +74748,7 @@ - ocular angle artery (embryonic mouse) - EMAPA:37673 + ocular angle artery (embryonic mouse) @@ -81469,8 +74767,7 @@ - peroneal artery (embryonic mouse) - EMAPA:37674 + peroneal artery (embryonic mouse) @@ -81489,8 +74786,7 @@ - ulnar artery (embryonic mouse) - EMAPA:37675 + ulnar artery (embryonic mouse) @@ -81509,8 +74805,7 @@ - ureteric segment of renal artery (embryonic mouse) - EMAPA:37676 + ureteric segment of renal artery (embryonic mouse) @@ -81529,8 +74824,7 @@ - obturator vein (embryonic mouse) - EMAPA:37677 + obturator vein (embryonic mouse) @@ -81549,8 +74843,7 @@ - pancreatic tributary of splenic vein (embryonic mouse) - EMAPA:37678 + pancreatic tributary of splenic vein (embryonic mouse) @@ -81569,8 +74862,7 @@ - ureteric vein (embryonic mouse) - EMAPA:37679 + ureteric vein (embryonic mouse) @@ -81589,8 +74881,7 @@ - modified sebaceous gland (embryonic mouse) - EMAPA:37680 + modified sebaceous gland (embryonic mouse) @@ -81609,8 +74900,7 @@ - nasal cartilage (embryonic mouse) - EMAPA:37681 + nasal cartilage (embryonic mouse) @@ -81629,8 +74919,7 @@ - nasopharynx connective tissue (embryonic mouse) - EMAPA:37682 + nasopharynx connective tissue (embryonic mouse) @@ -81649,8 +74938,7 @@ - nerve plexus (embryonic mouse) - EMAPA:37683 + nerve plexus (embryonic mouse) @@ -81669,8 +74957,7 @@ - nose skin (embryonic mouse) - EMAPA:37684 + nose skin (embryonic mouse) @@ -81689,8 +74976,7 @@ - brachiocephalic muscle (embryonic mouse) - EMAPA:37685 + brachiocephalic muscle (embryonic mouse) @@ -81709,8 +74995,7 @@ - cleidobrachialis muscle (embryonic mouse) - EMAPA:37686 + cleidobrachialis muscle (embryonic mouse) @@ -81729,8 +75014,7 @@ - cleidocephalicus muscle (embryonic mouse) - EMAPA:37687 + cleidocephalicus muscle (embryonic mouse) @@ -81749,8 +75033,7 @@ - cleidooccipital muscle (embryonic mouse) - EMAPA:37688 + cleidooccipital muscle (embryonic mouse) @@ -81769,8 +75052,7 @@ - omohyoid muscle (embryonic mouse) - EMAPA:37689 + omohyoid muscle (embryonic mouse) @@ -81789,8 +75071,7 @@ - omotransversarius muscle (embryonic mouse) - EMAPA:37690 + omotransversarius muscle (embryonic mouse) @@ -81809,8 +75090,7 @@ - orbitalis muscle (embryonic mouse) - EMAPA:37691 + orbitalis muscle (embryonic mouse) @@ -81829,8 +75109,7 @@ - parotidoauricular muscle (embryonic mouse) - EMAPA:37692 + parotidoauricular muscle (embryonic mouse) @@ -81849,8 +75128,7 @@ - sartorius muscle (embryonic mouse) - EMAPA:37693 + sartorius muscle (embryonic mouse) @@ -81869,8 +75147,7 @@ - semispinalis capitis (embryonic mouse) - EMAPA:37694 + semispinalis capitis (embryonic mouse) @@ -81889,8 +75166,7 @@ - semispinalis cervicis (embryonic mouse) - EMAPA:37695 + semispinalis cervicis (embryonic mouse) @@ -81909,8 +75185,7 @@ - semispinalis thoracis (embryonic mouse) - EMAPA:37696 + semispinalis thoracis (embryonic mouse) @@ -81929,8 +75204,7 @@ - serratus dorsalis inferior muscle (embryonic mouse) - EMAPA:37697 + serratus dorsalis inferior muscle (embryonic mouse) @@ -81949,8 +75223,7 @@ - serratus dorsalis superior muscle (embryonic mouse) - EMAPA:37698 + serratus dorsalis superior muscle (embryonic mouse) @@ -81969,8 +75242,7 @@ - sphincter colli superficialis muscle (embryonic mouse) - EMAPA:37699 + sphincter colli superficialis muscle (embryonic mouse) @@ -81989,8 +75261,7 @@ - spinalis thoracis muscle (embryonic mouse) - EMAPA:37700 + spinalis thoracis muscle (embryonic mouse) @@ -82009,8 +75280,7 @@ - splenius (embryonic mouse) - EMAPA:37701 + splenius (embryonic mouse) @@ -82029,8 +75299,7 @@ - sternooccipital muscle (embryonic mouse) - EMAPA:37702 + sternooccipital muscle (embryonic mouse) @@ -82049,8 +75318,7 @@ - zygomaticus muscle (embryonic mouse) - EMAPA:37703 + zygomaticus muscle (embryonic mouse) @@ -82069,8 +75337,7 @@ - ophthalmic plexus (embryonic mouse) - EMAPA:37704 + ophthalmic plexus (embryonic mouse) @@ -82089,8 +75356,7 @@ - epithelium of oropharynx (embryonic mouse) - EMAPA:37705 + epithelium of oropharynx (embryonic mouse) @@ -82109,8 +75375,7 @@ - cartilage of external ear (embryonic mouse) - EMAPA:37706 + cartilage of external ear (embryonic mouse) @@ -82129,8 +75394,7 @@ - outflow tract pericardium (embryonic mouse) - EMAPA:37707 + outflow tract pericardium (embryonic mouse) @@ -82149,8 +75413,7 @@ - outflow tract smooth muscle (embryonic mouse) - EMAPA:37708 + outflow tract smooth muscle (embryonic mouse) @@ -82169,8 +75432,7 @@ - rectus thoracis muscle (embryonic mouse) - EMAPA:37709 + rectus thoracis muscle (embryonic mouse) @@ -82189,8 +75451,7 @@ - pancreatic lobule (embryonic mouse) - EMAPA:37710 + pancreatic lobule (embryonic mouse) @@ -82209,8 +75470,7 @@ - pancreas left lobe (embryonic mouse) - EMAPA:37711 + pancreas left lobe (embryonic mouse) @@ -82229,8 +75489,7 @@ - pancreas right lobe (embryonic mouse) - EMAPA:37712 + pancreas right lobe (embryonic mouse) @@ -82249,8 +75508,7 @@ - pararenal fat (embryonic mouse) - EMAPA:37713 + pararenal fat (embryonic mouse) @@ -82269,8 +75527,7 @@ - parietal mesothelium (embryonic mouse) - EMAPA:37714 + parietal mesothelium (embryonic mouse) @@ -82289,8 +75546,7 @@ - perianal skin (embryonic mouse) - EMAPA:37715 + perianal skin (embryonic mouse) @@ -82309,8 +75565,7 @@ - perifornical nucleus (embryonic mouse) - EMAPA:37716 + perifornical nucleus (embryonic mouse) @@ -82329,8 +75584,7 @@ - peripeduncular nucleus (embryonic mouse) - EMAPA:37717 + peripeduncular nucleus (embryonic mouse) @@ -82349,8 +75603,7 @@ - trunk of phrenic nerve (embryonic mouse) - EMAPA:37718 + trunk of phrenic nerve (embryonic mouse) @@ -82369,8 +75622,7 @@ - axillary nerve trunk (embryonic mouse) - EMAPA:37719 + axillary nerve trunk (embryonic mouse) @@ -82389,8 +75641,7 @@ - trunk of intercostal nerve (embryonic mouse) - EMAPA:37720 + trunk of intercostal nerve (embryonic mouse) @@ -82409,8 +75660,7 @@ - postcranial axial skeleton (embryonic mouse) - EMAPA:37721 + postcranial axial skeleton (embryonic mouse) @@ -82429,8 +75679,7 @@ - trunk or cervical vertebra (embryonic mouse) - EMAPA:37722 + trunk or cervical vertebra (embryonic mouse) @@ -82449,8 +75698,7 @@ - prescapular lymph node (embryonic mouse) - EMAPA:37723 + prescapular lymph node (embryonic mouse) @@ -82469,8 +75717,7 @@ - retropharyngeal lymph node (embryonic mouse) - EMAPA:37724 + retropharyngeal lymph node (embryonic mouse) @@ -82489,8 +75736,7 @@ - superficial cervical lymph node (embryonic mouse) - EMAPA:37725 + superficial cervical lymph node (embryonic mouse) @@ -82509,8 +75755,7 @@ - principal nucleus of stria terminalis (embryonic mouse) - EMAPA:37726 + principal nucleus of stria terminalis (embryonic mouse) @@ -82529,8 +75774,7 @@ - transverse nucleus of stria terminalis (embryonic mouse) - EMAPA:37727 + transverse nucleus of stria terminalis (embryonic mouse) @@ -82549,8 +75793,7 @@ - proximal sesamoid bone of pes (embryonic mouse) - EMAPA:37728 + proximal sesamoid bone of pes (embryonic mouse) @@ -82569,8 +75812,7 @@ - proximal sesamoid bone of manus (embryonic mouse) - EMAPA:37729 + proximal sesamoid bone of manus (embryonic mouse) @@ -82589,8 +75831,7 @@ - nucleus raphe obscurus (embryonic mouse) - EMAPA:37730 + nucleus raphe obscurus (embryonic mouse) @@ -82609,8 +75850,7 @@ - reproductive organ (embryonic mouse) - EMAPA:37731 + reproductive organ (embryonic mouse) @@ -82629,8 +75869,7 @@ - retrochiasmatic area (embryonic mouse) - EMAPA:37732 + retrochiasmatic area (embryonic mouse) @@ -82649,8 +75888,7 @@ - rhomboid (embryonic mouse) - EMAPA:37733 + rhomboid (embryonic mouse) @@ -82669,8 +75907,7 @@ - dorsal head of rib (embryonic mouse) - EMAPA:37734 + dorsal head of rib (embryonic mouse) @@ -82689,8 +75926,7 @@ - head of rib (embryonic mouse) - EMAPA:37735 + head of rib (embryonic mouse) @@ -82709,8 +75945,7 @@ - tubercle of rib (embryonic mouse) - EMAPA:37736 + tubercle of rib (embryonic mouse) @@ -82729,8 +75964,7 @@ - scalenus posterior (embryonic mouse) - EMAPA:37737 + scalenus posterior (embryonic mouse) @@ -82749,8 +75983,7 @@ - scalenus medius (embryonic mouse) - EMAPA:37738 + scalenus medius (embryonic mouse) @@ -82769,8 +76002,7 @@ - segmental bronchus (embryonic mouse) - EMAPA:37739 + segmental bronchus (embryonic mouse) @@ -82789,8 +76021,7 @@ - epithelium of segmental bronchus (embryonic mouse) - EMAPA:37740 + epithelium of segmental bronchus (embryonic mouse) @@ -82809,8 +76040,7 @@ - sensory circumventricular organ (embryonic mouse) - EMAPA:37741 + sensory circumventricular organ (embryonic mouse) @@ -82829,8 +76059,7 @@ - supraoptic crest (embryonic mouse) - EMAPA:37742 + supraoptic crest (embryonic mouse) @@ -82849,8 +76078,7 @@ - skeletal muscle connective tissue (embryonic mouse) - EMAPA:37743 + skeletal muscle connective tissue (embryonic mouse) @@ -82869,8 +76097,7 @@ - skeletal tissue (embryonic mouse) - EMAPA:37744 + skeletal tissue (embryonic mouse) @@ -82889,8 +76116,7 @@ - mesentery of small intestine (embryonic mouse) - EMAPA:37745 + mesentery of small intestine (embryonic mouse) @@ -82909,8 +76135,7 @@ - skin of snout (embryonic mouse) - EMAPA:37746 + skin of snout (embryonic mouse) @@ -82929,8 +76154,7 @@ - spinal cord gray commissure (embryonic mouse) - EMAPA:37747 + spinal cord gray commissure (embryonic mouse) @@ -82949,8 +76173,7 @@ - dorsal commissural nucleus of spinal cord (embryonic mouse) - EMAPA:37748 + dorsal commissural nucleus of spinal cord (embryonic mouse) @@ -82969,8 +76192,7 @@ - spinal cord reticular nucleus (embryonic mouse) - EMAPA:37749 + spinal cord reticular nucleus (embryonic mouse) @@ -82989,8 +76211,7 @@ - periarterial lymphatic sheath (embryonic mouse) - EMAPA:37750 + periarterial lymphatic sheath (embryonic mouse) @@ -83009,8 +76230,7 @@ - spleen venous sinus (embryonic mouse) - EMAPA:37751 + spleen venous sinus (embryonic mouse) @@ -83029,8 +76249,7 @@ - splenic cord (embryonic mouse) - EMAPA:37752 + splenic cord (embryonic mouse) @@ -83049,8 +76268,7 @@ - greater curvature of stomach (embryonic mouse) - EMAPA:37753 + greater curvature of stomach (embryonic mouse) @@ -83069,8 +76287,7 @@ - lesser curvature of stomach (embryonic mouse) - EMAPA:37754 + lesser curvature of stomach (embryonic mouse) @@ -83089,8 +76306,7 @@ - superficial palmar arch (embryonic mouse) - EMAPA:37755 + superficial palmar arch (embryonic mouse) @@ -83109,8 +76325,7 @@ - superior salivatory nucleus (embryonic mouse) - EMAPA:37756 + superior salivatory nucleus (embryonic mouse) @@ -83129,8 +76344,7 @@ - sural nerve (embryonic mouse) - EMAPA:37757 + sural nerve (embryonic mouse) @@ -83149,8 +76363,7 @@ - symphysis (embryonic mouse) - EMAPA:37758 + symphysis (embryonic mouse) @@ -83169,8 +76382,7 @@ - post-anal tail muscle (embryonic mouse) - EMAPA:37759 + post-anal tail muscle (embryonic mouse) @@ -83189,8 +76401,7 @@ - post-anal tail tip (embryonic mouse) - EMAPA:37760 + post-anal tail tip (embryonic mouse) @@ -83209,8 +76420,7 @@ - tail vein (embryonic mouse) - EMAPA:37761 + tail vein (embryonic mouse) @@ -83229,8 +76439,7 @@ - intertarsal joint (embryonic mouse) - EMAPA:37762 + intertarsal joint (embryonic mouse) @@ -83249,8 +76458,7 @@ - terminal bronchus (embryonic mouse) - EMAPA:37763 + terminal bronchus (embryonic mouse) @@ -83269,8 +76477,7 @@ - terminal bronchus epithelium (embryonic mouse) - EMAPA:37764 + terminal bronchus epithelium (embryonic mouse) @@ -83289,8 +76496,7 @@ - skin of thorax (embryonic mouse) - EMAPA:37765 + skin of thorax (embryonic mouse) @@ -83309,8 +76515,7 @@ - thymus lymphoid tissue (embryonic mouse) - EMAPA:37766 + thymus lymphoid tissue (embryonic mouse) @@ -83329,8 +76534,7 @@ - capsule of thyroid gland (embryonic mouse) - EMAPA:37767 + capsule of thyroid gland (embryonic mouse) @@ -83349,8 +76553,7 @@ - thyroid gland medulla (embryonic mouse) - EMAPA:37768 + thyroid gland medulla (embryonic mouse) @@ -83369,8 +76572,7 @@ - parenchyma of thyroid gland (embryonic mouse) - EMAPA:37769 + parenchyma of thyroid gland (embryonic mouse) @@ -83389,8 +76591,7 @@ - diaphysis of tibia (embryonic mouse) - EMAPA:37770 + diaphysis of tibia (embryonic mouse) @@ -83409,8 +76610,7 @@ - epiphysis of tibia (embryonic mouse) - EMAPA:37771 + epiphysis of tibia (embryonic mouse) @@ -83429,8 +76629,7 @@ - metaphysis of tibia (embryonic mouse) - EMAPA:37772 + metaphysis of tibia (embryonic mouse) @@ -83449,8 +76648,7 @@ - principal sensory nucleus of trigeminal nerve (embryonic mouse) - EMAPA:37773 + principal sensory nucleus of trigeminal nerve (embryonic mouse) @@ -83469,8 +76667,7 @@ - true rib (embryonic mouse) - EMAPA:37774 + true rib (embryonic mouse) @@ -83489,8 +76686,7 @@ - blood vessel of tympanic cavity (embryonic mouse) - EMAPA:37775 + blood vessel of tympanic cavity (embryonic mouse) @@ -83509,8 +76705,7 @@ - muscle of auditory ossicle (embryonic mouse) - EMAPA:37776 + muscle of auditory ossicle (embryonic mouse) @@ -83529,8 +76724,7 @@ - nerve of tympanic cavity (embryonic mouse) - EMAPA:37777 + nerve of tympanic cavity (embryonic mouse) @@ -83549,8 +76743,7 @@ - tympanic cavity (embryonic mouse) - EMAPA:37778 + tympanic cavity (embryonic mouse) @@ -83569,8 +76762,7 @@ - ureter luminal urothelium (embryonic mouse) - EMAPA:37779 + ureter luminal urothelium (embryonic mouse) @@ -83589,8 +76781,7 @@ - ureter subluminal urothelium (embryonic mouse) - EMAPA:37780 + ureter subluminal urothelium (embryonic mouse) @@ -83609,8 +76800,7 @@ - ureteral valve (embryonic mouse) - EMAPA:37781 + ureteral valve (embryonic mouse) @@ -83629,8 +76819,7 @@ - ureteropelvic junction (embryonic mouse) - EMAPA:37782 + ureteropelvic junction (embryonic mouse) @@ -83649,8 +76838,7 @@ - ureterovesical junction (embryonic mouse) - EMAPA:37783 + ureterovesical junction (embryonic mouse) @@ -83669,8 +76857,7 @@ - urethral gland (embryonic mouse) - EMAPA:37784 + urethral gland (embryonic mouse) @@ -83689,8 +76876,7 @@ - lamina propria of urethra (embryonic mouse) - EMAPA:37785 + lamina propria of urethra (embryonic mouse) @@ -83709,8 +76895,7 @@ - urethra mesenchymal layer (embryonic mouse) - EMAPA:37786 + urethra mesenchymal layer (embryonic mouse) @@ -83729,8 +76914,7 @@ - urethra muscle tissue (embryonic mouse) - EMAPA:37787 + urethra muscle tissue (embryonic mouse) @@ -83749,8 +76933,7 @@ - urethra skeletal muscle tissue (embryonic mouse) - EMAPA:37788 + urethra skeletal muscle tissue (embryonic mouse) @@ -83769,8 +76952,7 @@ - urethral sphincter (embryonic mouse) - EMAPA:37789 + urethral sphincter (embryonic mouse) @@ -83789,8 +76971,7 @@ - external urethral sphincter (embryonic mouse) - EMAPA:37790 + external urethral sphincter (embryonic mouse) @@ -83809,8 +76990,7 @@ - urinary bladder smooth muscle (embryonic mouse) - EMAPA:37791 + urinary bladder smooth muscle (embryonic mouse) @@ -83829,8 +77009,7 @@ - serosa of uterus (embryonic mouse) - EMAPA:37792 + serosa of uterus (embryonic mouse) @@ -83849,8 +77028,7 @@ - vagina sebaceous gland (embryonic mouse) - EMAPA:37793 + vagina sebaceous gland (embryonic mouse) @@ -83869,8 +77047,7 @@ - vagina squamous epithelium (embryonic mouse) - EMAPA:37794 + vagina squamous epithelium (embryonic mouse) @@ -83889,8 +77066,7 @@ - vaginal hymen (embryonic mouse) - EMAPA:37795 + vaginal hymen (embryonic mouse) @@ -83909,8 +77085,7 @@ - vaginal vein (embryonic mouse) - EMAPA:37796 + vaginal vein (embryonic mouse) @@ -83929,8 +77104,7 @@ - vagus nerve (embryonic mouse) - EMAPA:37797 + vagus nerve (embryonic mouse) @@ -83949,8 +77123,7 @@ - left vagus X nerve trunk (embryonic mouse) - EMAPA:37798 + left vagus X nerve trunk (embryonic mouse) @@ -83969,8 +77142,7 @@ - right vagus X nerve trunk (embryonic mouse) - EMAPA:37799 + right vagus X nerve trunk (embryonic mouse) @@ -83989,8 +77161,7 @@ - vena cava endothelium (embryonic mouse) - EMAPA:37800 + vena cava endothelium (embryonic mouse) @@ -84009,8 +77180,7 @@ - vaginal venous plexus (embryonic mouse) - EMAPA:37801 + vaginal venous plexus (embryonic mouse) @@ -84029,8 +77199,7 @@ - prezygapophysis (embryonic mouse) - EMAPA:37802 + prezygapophysis (embryonic mouse) @@ -84049,8 +77218,7 @@ - vertebral foramen (embryonic mouse) - EMAPA:37803 + vertebral foramen (embryonic mouse) @@ -84069,8 +77237,7 @@ - visceral mesothelium (embryonic mouse) - EMAPA:37804 + visceral mesothelium (embryonic mouse) @@ -84089,8 +77256,7 @@ - vitreous chamber of eyeball (embryonic mouse) - EMAPA:37805 + vitreous chamber of eyeball (embryonic mouse) @@ -84109,8 +77275,7 @@ - white fibrocartilage (embryonic mouse) - EMAPA:37806 + white fibrocartilage (embryonic mouse) @@ -84129,8 +77294,7 @@ - temporal process of zygomatic bone (embryonic mouse) - EMAPA:37807 + temporal process of zygomatic bone (embryonic mouse) @@ -84149,8 +77313,7 @@ - Zymbal's gland (embryonic mouse) - EMAPA:37808 + Zymbal's gland (embryonic mouse) @@ -84169,8 +77332,7 @@ - bronchus basement membrane (embryonic mouse) - EMAPA:37809 + bronchus basement membrane (embryonic mouse) @@ -84189,8 +77351,7 @@ - bronchus basal lamina (embryonic mouse) - EMAPA:37810 + bronchus basal lamina (embryonic mouse) @@ -84209,8 +77370,7 @@ - bronchus reticular lamina (embryonic mouse) - EMAPA:37811 + bronchus reticular lamina (embryonic mouse) @@ -84229,8 +77389,7 @@ - cerebellar glomerulus (embryonic mouse) - EMAPA:37812 + cerebellar glomerulus (embryonic mouse) @@ -84249,8 +77408,7 @@ - subarachnoid cistern (embryonic mouse) - EMAPA:37813 + subarachnoid cistern (embryonic mouse) @@ -84269,8 +77427,7 @@ - cerebellomedullary cistern (embryonic mouse) - EMAPA:37814 + cerebellomedullary cistern (embryonic mouse) @@ -84289,8 +77446,7 @@ - lateral cerebellomedullary cistern (embryonic mouse) - EMAPA:37815 + lateral cerebellomedullary cistern (embryonic mouse) @@ -84309,8 +77465,7 @@ - posterior cerebellomedullary cistern (embryonic mouse) - EMAPA:37816 + posterior cerebellomedullary cistern (embryonic mouse) @@ -84329,8 +77484,7 @@ - quadrigeminal cistern (embryonic mouse) - EMAPA:37817 + quadrigeminal cistern (embryonic mouse) @@ -84349,8 +77503,7 @@ - cerebellum fissure (embryonic mouse) - EMAPA:37818 + cerebellum fissure (embryonic mouse) @@ -84369,8 +77522,7 @@ - cerebellum interpositus nucleus (embryonic mouse) - EMAPA:37819 + cerebellum interpositus nucleus (embryonic mouse) @@ -84389,8 +77541,7 @@ - cerebellum globose nucleus (embryonic mouse) - EMAPA:37820 + cerebellum globose nucleus (embryonic mouse) @@ -84409,8 +77560,7 @@ - emboliform nucleus (embryonic mouse) - EMAPA:37821 + emboliform nucleus (embryonic mouse) @@ -84429,8 +77579,7 @@ - cerebellum intermediate zone (embryonic mouse) - EMAPA:37822 + cerebellum intermediate zone (embryonic mouse) @@ -84449,8 +77598,7 @@ - cerebellum vermis lobule VIIA (embryonic mouse) - EMAPA:37823 + cerebellum vermis lobule VIIA (embryonic mouse) @@ -84469,8 +77617,7 @@ - cerebellum vermis lobule VIIB (embryonic mouse) - EMAPA:37824 + cerebellum vermis lobule VIIB (embryonic mouse) @@ -84489,8 +77636,7 @@ - cervical rib (embryonic mouse) - EMAPA:37825 + cervical rib (embryonic mouse) @@ -84509,8 +77655,7 @@ - neck of rib (embryonic mouse) - EMAPA:37826 + neck of rib (embryonic mouse) @@ -84529,8 +77674,7 @@ - chin (embryonic mouse) - EMAPA:37827 + chin (embryonic mouse) @@ -84549,8 +77693,7 @@ - cingulum of brain (embryonic mouse) - EMAPA:37828 + cingulum of brain (embryonic mouse) @@ -84569,8 +77712,7 @@ - circle of Willis (embryonic mouse) - EMAPA:37829 + circle of Willis (embryonic mouse) @@ -84589,8 +77731,7 @@ - cochlear basement membrane (embryonic mouse) - EMAPA:37830 + cochlear basement membrane (embryonic mouse) @@ -84609,8 +77750,7 @@ - external nose (embryonic mouse) - EMAPA:37831 + external nose (embryonic mouse) @@ -84629,8 +77769,7 @@ - columella nasi (embryonic mouse) - EMAPA:37832 + columella nasi (embryonic mouse) @@ -84649,8 +77788,7 @@ - compact layer of ventricle (embryonic mouse) - EMAPA:37833 + compact layer of ventricle (embryonic mouse) @@ -84669,8 +77807,7 @@ - conjunctival fornix (embryonic mouse) - EMAPA:37834 + conjunctival fornix (embryonic mouse) @@ -84689,8 +77826,7 @@ - corneo-scleral junction (embryonic mouse) - EMAPA:37835 + corneo-scleral junction (embryonic mouse) @@ -84709,8 +77845,7 @@ - coronary sinus (embryonic mouse) - EMAPA:37836 + coronary sinus (embryonic mouse) @@ -84729,8 +77864,7 @@ - crista terminalis (embryonic mouse) - EMAPA:37837 + crista terminalis (embryonic mouse) @@ -84749,8 +77883,7 @@ - crypt of Lieberkuhn of duodenum (embryonic mouse) - EMAPA:37838 + crypt of Lieberkuhn of duodenum (embryonic mouse) @@ -84769,8 +77902,7 @@ - crypt of Lieberkuhn of ileum (embryonic mouse) - EMAPA:37839 + crypt of Lieberkuhn of ileum (embryonic mouse) @@ -84789,8 +77921,7 @@ - crypt of Lieberkuhn of jejunum (embryonic mouse) - EMAPA:37840 + crypt of Lieberkuhn of jejunum (embryonic mouse) @@ -84809,8 +77940,7 @@ - cutaneous elastic tissue (embryonic mouse) - EMAPA:37841 + cutaneous elastic tissue (embryonic mouse) @@ -84829,8 +77959,7 @@ - depressor anguli oris muscle (embryonic mouse) - EMAPA:37842 + depressor anguli oris muscle (embryonic mouse) @@ -84849,8 +77978,7 @@ - digestive system element (embryonic mouse) - EMAPA:37843 + digestive system element (embryonic mouse) @@ -84869,8 +77997,7 @@ - dorsal telencephalic commissure (embryonic mouse) - EMAPA:37844 + dorsal telencephalic commissure (embryonic mouse) @@ -84889,8 +78016,7 @@ - ventral commissure (embryonic mouse) - EMAPA:37845 + ventral commissure (embryonic mouse) @@ -84909,8 +78035,7 @@ - reticular tissue (embryonic mouse) - EMAPA:37846 + reticular tissue (embryonic mouse) @@ -84929,8 +78054,7 @@ - endoneurium (embryonic mouse) - EMAPA:37847 + endoneurium (embryonic mouse) @@ -84949,8 +78073,7 @@ - epineurium (embryonic mouse) - EMAPA:37848 + epineurium (embryonic mouse) @@ -84969,8 +78092,7 @@ - perineurium (embryonic mouse) - EMAPA:37849 + perineurium (embryonic mouse) @@ -84989,8 +78111,7 @@ - endoneurial fluid (embryonic mouse) - EMAPA:37850 + endoneurial fluid (embryonic mouse) @@ -85009,8 +78130,7 @@ - epaxial musculature (embryonic mouse) - EMAPA:37851 + epaxial musculature (embryonic mouse) @@ -85029,8 +78149,7 @@ - hypaxial musculature (embryonic mouse) - EMAPA:37852 + hypaxial musculature (embryonic mouse) @@ -85049,8 +78168,7 @@ - musculature of body wall (embryonic mouse) - EMAPA:37853 + musculature of body wall (embryonic mouse) @@ -85069,8 +78187,7 @@ - appendage girdle region (embryonic mouse) - EMAPA:37854 + appendage girdle region (embryonic mouse) @@ -85089,8 +78206,7 @@ - pectoral girdle region (embryonic mouse) - EMAPA:37856 + pectoral girdle region (embryonic mouse) @@ -85109,8 +78225,7 @@ - musculature of pectoral girdle (embryonic mouse) - EMAPA:37857 + musculature of pectoral girdle (embryonic mouse) @@ -85129,8 +78244,7 @@ - appendage girdle complex (embryonic mouse) - EMAPA:37858 + appendage girdle complex (embryonic mouse) @@ -85149,8 +78263,7 @@ - pectoral complex (embryonic mouse) - EMAPA:37860 + pectoral complex (embryonic mouse) @@ -85169,8 +78282,7 @@ - musculature of pectoral complex (embryonic mouse) - EMAPA:37861 + musculature of pectoral complex (embryonic mouse) @@ -85189,8 +78301,7 @@ - pelvic girdle region (embryonic mouse) - EMAPA:37862 + pelvic girdle region (embryonic mouse) @@ -85209,8 +78320,7 @@ - pelvic complex (embryonic mouse) - EMAPA:37863 + pelvic complex (embryonic mouse) @@ -85229,8 +78339,7 @@ - musculature of pelvic complex (embryonic mouse) - EMAPA:37864 + musculature of pelvic complex (embryonic mouse) @@ -85249,8 +78358,7 @@ - ependyma (embryonic mouse) - EMAPA:37865 + ependyma (embryonic mouse) @@ -85269,8 +78377,7 @@ - epidermal-dermal junction (embryonic mouse) - EMAPA:37866 + epidermal-dermal junction (embryonic mouse) @@ -85289,8 +78396,7 @@ - follicular antrum (embryonic mouse) - EMAPA:37867 + follicular antrum (embryonic mouse) @@ -85309,8 +78415,7 @@ - foramen magnum (embryonic mouse) - EMAPA:37868 + foramen magnum (embryonic mouse) @@ -85329,8 +78434,7 @@ - forehead (embryonic mouse) - EMAPA:37869 + forehead (embryonic mouse) @@ -85349,8 +78453,7 @@ - genu of facial nerve (embryonic mouse) - EMAPA:37870 + genu of facial nerve (embryonic mouse) @@ -85369,8 +78472,7 @@ - gland of nasal mucosa (embryonic mouse) - EMAPA:37871 + gland of nasal mucosa (embryonic mouse) @@ -85389,8 +78491,7 @@ - glymphatic system (embryonic mouse) - EMAPA:37872 + glymphatic system (embryonic mouse) @@ -85409,8 +78510,7 @@ - golgi tendon organ (embryonic mouse) - EMAPA:37873 + golgi tendon organ (embryonic mouse) @@ -85429,8 +78529,7 @@ - gonial bone (embryonic mouse) - EMAPA:37874 + gonial bone (embryonic mouse) @@ -85449,8 +78548,7 @@ - habenular commissure (embryonic mouse) - EMAPA:37875 + habenular commissure (embryonic mouse) @@ -85469,8 +78567,7 @@ - hair follicle bulge (embryonic mouse) - EMAPA:37876 + hair follicle bulge (embryonic mouse) @@ -85489,8 +78586,7 @@ - hair follicle isthmus (embryonic mouse) - EMAPA:37877 + hair follicle isthmus (embryonic mouse) @@ -85509,8 +78605,7 @@ - hair follicle matrix region (embryonic mouse) - EMAPA:37878 + hair follicle matrix region (embryonic mouse) @@ -85529,8 +78624,7 @@ - hemotrichorial placental membrane (embryonic mouse) - EMAPA:37879 + hemotrichorial placental membrane (embryonic mouse) @@ -85549,8 +78643,7 @@ - hepatic cord (embryonic mouse) - EMAPA:37880 + hepatic cord (embryonic mouse) @@ -85569,8 +78662,7 @@ - inguinal canal (embryonic mouse) - EMAPA:37881 + inguinal canal (embryonic mouse) @@ -85589,8 +78681,7 @@ - inner ear canal (embryonic mouse) - EMAPA:37882 + inner ear canal (embryonic mouse) @@ -85609,8 +78700,7 @@ - integumentary adnexa (embryonic mouse) - EMAPA:37883 + integumentary adnexa (embryonic mouse) @@ -85629,8 +78719,7 @@ - interphalangeal joint (embryonic mouse) - EMAPA:37884 + interphalangeal joint (embryonic mouse) @@ -85649,8 +78738,7 @@ - kidney collecting duct epithelium (embryonic mouse) - EMAPA:37885 + kidney collecting duct epithelium (embryonic mouse) @@ -85669,8 +78757,7 @@ - kidney corticomedullary boundary (embryonic mouse) - EMAPA:37886 + kidney corticomedullary boundary (embryonic mouse) @@ -85689,8 +78776,7 @@ - lateral corticospinal tract (embryonic mouse) - EMAPA:37888 + lateral corticospinal tract (embryonic mouse) @@ -85709,8 +78795,7 @@ - ventral corticospinal tract (embryonic mouse) - EMAPA:37889 + ventral corticospinal tract (embryonic mouse) @@ -85729,8 +78814,7 @@ - proximal epiphysis of fibula (embryonic mouse) - EMAPA:37890 + proximal epiphysis of fibula (embryonic mouse) @@ -85749,8 +78833,7 @@ - neck of fibula (embryonic mouse) - EMAPA:37891 + neck of fibula (embryonic mouse) @@ -85769,8 +78852,7 @@ - diaphysis of fibula (embryonic mouse) - EMAPA:37892 + diaphysis of fibula (embryonic mouse) @@ -85789,8 +78871,7 @@ - lateral malleolus of fibula (embryonic mouse) - EMAPA:37893 + lateral malleolus of fibula (embryonic mouse) @@ -85809,8 +78890,7 @@ - lateral nasal gland (embryonic mouse) - EMAPA:37894 + lateral nasal gland (embryonic mouse) @@ -85829,8 +78909,7 @@ - line of Schwalbe (embryonic mouse) - EMAPA:37895 + line of Schwalbe (embryonic mouse) @@ -85849,8 +78928,7 @@ - long bone epiphyseal ossification zone (embryonic mouse) - EMAPA:37896 + long bone epiphyseal ossification zone (embryonic mouse) @@ -85869,8 +78947,7 @@ - lymph node medullary cord (embryonic mouse) - EMAPA:37897 + lymph node medullary cord (embryonic mouse) @@ -85889,8 +78966,7 @@ - lymph node medullary sinus (embryonic mouse) - EMAPA:37898 + lymph node medullary sinus (embryonic mouse) @@ -85909,8 +78985,7 @@ - major sublingual duct (embryonic mouse) - EMAPA:37899 + major sublingual duct (embryonic mouse) @@ -85929,8 +79004,7 @@ - mammary duct terminal end bud (embryonic mouse) - EMAPA:37900 + mammary duct terminal end bud (embryonic mouse) @@ -85949,8 +79023,7 @@ - mammary fat pad (embryonic mouse) - EMAPA:37901 + mammary fat pad (embryonic mouse) @@ -85969,8 +79042,7 @@ - mammary gland luminal epithelium (embryonic mouse) - EMAPA:37902 + mammary gland luminal epithelium (embryonic mouse) @@ -85989,8 +79061,7 @@ - mammary gland myoepithelium (embryonic mouse) - EMAPA:37903 + mammary gland myoepithelium (embryonic mouse) @@ -86009,8 +79080,7 @@ - mammillothalamic tract of hypothalamus (embryonic mouse) - EMAPA:37904 + mammillothalamic tract of hypothalamus (embryonic mouse) @@ -86029,8 +79099,7 @@ - margin of eyelid (embryonic mouse) - EMAPA:37905 + margin of eyelid (embryonic mouse) @@ -86049,8 +79118,7 @@ - medullary ray (embryonic mouse) - EMAPA:37906 + medullary ray (embryonic mouse) @@ -86069,8 +79137,7 @@ - mesangial matrix (embryonic mouse) - EMAPA:37907 + mesangial matrix (embryonic mouse) @@ -86089,8 +79156,7 @@ - metoptic pillar (embryonic mouse) - EMAPA:37908 + metoptic pillar (embryonic mouse) @@ -86109,8 +79175,7 @@ - minor sublingual duct (embryonic mouse) - EMAPA:37909 + minor sublingual duct (embryonic mouse) @@ -86129,8 +79194,7 @@ - molar crown (embryonic mouse) - EMAPA:37910 + molar crown (embryonic mouse) @@ -86149,8 +79213,7 @@ - mouth floor (embryonic mouse) - EMAPA:37911 + mouth floor (embryonic mouse) @@ -86169,8 +79232,7 @@ - mucosa of urethra (embryonic mouse) - EMAPA:37912 + mucosa of urethra (embryonic mouse) @@ -86189,8 +79251,7 @@ - mucous gland (embryonic mouse) - EMAPA:37913 + mucous gland (embryonic mouse) @@ -86209,8 +79270,7 @@ - nasal concha of ethmoid bone (embryonic mouse) - EMAPA:37914 + nasal concha of ethmoid bone (embryonic mouse) @@ -86229,8 +79289,7 @@ - nose tip (embryonic mouse) - EMAPA:37915 + nose tip (embryonic mouse) @@ -86249,8 +79308,7 @@ - ocular fundus (embryonic mouse) - EMAPA:37916 + ocular fundus (embryonic mouse) @@ -86269,8 +79327,7 @@ - olfactory bulb layer (embryonic mouse) - EMAPA:37917 + olfactory bulb layer (embryonic mouse) @@ -86289,8 +79346,7 @@ - olfactory segment of nasal mucosa (embryonic mouse) - EMAPA:37918 + olfactory segment of nasal mucosa (embryonic mouse) @@ -86309,8 +79365,7 @@ - pretectal nucleus (embryonic mouse) - EMAPA:37919 + pretectal nucleus (embryonic mouse) @@ -86329,8 +79384,7 @@ - anterior pretectal nucleus (embryonic mouse) - EMAPA:37920 + anterior pretectal nucleus (embryonic mouse) @@ -86349,8 +79403,7 @@ - olivary pretectal nucleus (embryonic mouse) - EMAPA:37921 + olivary pretectal nucleus (embryonic mouse) @@ -86369,8 +79422,7 @@ - posterior pretectal nucleus (embryonic mouse) - EMAPA:37922 + posterior pretectal nucleus (embryonic mouse) @@ -86389,8 +79441,7 @@ - osteoid (embryonic mouse) - EMAPA:37923 + osteoid (embryonic mouse) @@ -86409,8 +79460,7 @@ - otolith (embryonic mouse) - EMAPA:37924 + otolith (embryonic mouse) @@ -86429,8 +79479,7 @@ - outflow part of left ventricle (embryonic mouse) - EMAPA:37925 + outflow part of left ventricle (embryonic mouse) @@ -86449,8 +79498,7 @@ - outflow part of right ventricle (embryonic mouse) - EMAPA:37926 + outflow part of right ventricle (embryonic mouse) @@ -86469,8 +79517,7 @@ - ovarian cortex (embryonic mouse) - EMAPA:37927 + ovarian cortex (embryonic mouse) @@ -86489,8 +79536,7 @@ - ovarian medulla (embryonic mouse) - EMAPA:37928 + ovarian medulla (embryonic mouse) @@ -86509,8 +79555,7 @@ - palatal muscle (embryonic mouse) - EMAPA:37929 + palatal muscle (embryonic mouse) @@ -86529,8 +79574,7 @@ - palate bone (embryonic mouse) - EMAPA:37930 + palate bone (embryonic mouse) @@ -86549,8 +79593,7 @@ - palatine bone horizontal plate (embryonic mouse) - EMAPA:37931 + palatine bone horizontal plate (embryonic mouse) @@ -86569,8 +79612,7 @@ - palatine process of maxilla (embryonic mouse) - EMAPA:37932 + palatine process of maxilla (embryonic mouse) @@ -86589,8 +79631,7 @@ - acinus of parotid gland (embryonic mouse) - EMAPA:37933 + acinus of parotid gland (embryonic mouse) @@ -86609,8 +79650,7 @@ - parotid gland myoepithelium (embryonic mouse) - EMAPA:37934 + parotid gland myoepithelium (embryonic mouse) @@ -86629,8 +79669,7 @@ - pectinate muscle (embryonic mouse) - EMAPA:37935 + pectinate muscle (embryonic mouse) @@ -86649,8 +79688,7 @@ - perianal sebaceous gland (embryonic mouse) - EMAPA:37936 + perianal sebaceous gland (embryonic mouse) @@ -86669,8 +79707,7 @@ - periorbital skin (embryonic mouse) - EMAPA:37937 + periorbital skin (embryonic mouse) @@ -86689,8 +79726,7 @@ - peripheral lymph node (embryonic mouse) - EMAPA:37938 + peripheral lymph node (embryonic mouse) @@ -86709,8 +79745,7 @@ - Peyer's patch T cell area (embryonic mouse) - EMAPA:37939 + Peyer's patch T cell area (embryonic mouse) @@ -86729,8 +79764,7 @@ - pubic symphysis (embryonic mouse) - EMAPA:37940 + pubic symphysis (embryonic mouse) @@ -86749,8 +79783,7 @@ - pulmonary acinus (embryonic mouse) - EMAPA:37941 + pulmonary acinus (embryonic mouse) @@ -86769,8 +79802,7 @@ - pulmonary alveolar parenchyma (embryonic mouse) - EMAPA:37942 + pulmonary alveolar parenchyma (embryonic mouse) @@ -86789,8 +79821,7 @@ - pulmonary neuroendocrine body (embryonic mouse) - EMAPA:37943 + pulmonary neuroendocrine body (embryonic mouse) @@ -86809,8 +79840,7 @@ - pyloric canal (embryonic mouse) - EMAPA:37944 + pyloric canal (embryonic mouse) @@ -86829,8 +79859,7 @@ - pyramidal decussation (embryonic mouse) - EMAPA:37945 + pyramidal decussation (embryonic mouse) @@ -86849,8 +79878,7 @@ - respiratory tube (embryonic mouse) - EMAPA:37946 + respiratory tube (embryonic mouse) @@ -86869,8 +79897,7 @@ - retrosplenial granular cortex (embryonic mouse) - EMAPA:37947 + retrosplenial granular cortex (embryonic mouse) @@ -86889,8 +79916,7 @@ - root of molar tooth (embryonic mouse) - EMAPA:37948 + root of molar tooth (embryonic mouse) @@ -86909,8 +79935,7 @@ - scalp (embryonic mouse) - EMAPA:37949 + scalp (embryonic mouse) @@ -86929,8 +79954,7 @@ - serous gland (embryonic mouse) - EMAPA:37950 + serous gland (embryonic mouse) @@ -86949,8 +79973,7 @@ - sinotubular junction (embryonic mouse) - EMAPA:37951 + sinotubular junction (embryonic mouse) @@ -86969,8 +79992,7 @@ - skin of forehead (embryonic mouse) - EMAPA:37952 + skin of forehead (embryonic mouse) @@ -86989,8 +80011,7 @@ - somatic motor system (embryonic mouse) - EMAPA:37953 + somatic motor system (embryonic mouse) @@ -87009,8 +80030,7 @@ - somatosensory system (embryonic mouse) - EMAPA:37954 + somatosensory system (embryonic mouse) @@ -87029,8 +80049,7 @@ - spinal cord commissure (embryonic mouse) - EMAPA:37955 + spinal cord commissure (embryonic mouse) @@ -87049,8 +80068,7 @@ - spinal cord ventral commissure (embryonic mouse) - EMAPA:37956 + spinal cord ventral commissure (embryonic mouse) @@ -87069,8 +80087,7 @@ - autonomic nerve (embryonic mouse) - EMAPA:37957 + autonomic nerve (embryonic mouse) @@ -87089,8 +80106,7 @@ - sympathetic nerve (embryonic mouse) - EMAPA:37958 + sympathetic nerve (embryonic mouse) @@ -87109,8 +80125,7 @@ - splanchnic nerve (embryonic mouse) - EMAPA:37959 + splanchnic nerve (embryonic mouse) @@ -87129,8 +80144,7 @@ - spleen primary B follicle (embryonic mouse) - EMAPA:37960 + spleen primary B follicle (embryonic mouse) @@ -87149,8 +80163,7 @@ - spleen secondary B follicle (embryonic mouse) - EMAPA:37961 + spleen secondary B follicle (embryonic mouse) @@ -87169,8 +80182,7 @@ - spleen B cell corona (embryonic mouse) - EMAPA:37962 + spleen B cell corona (embryonic mouse) @@ -87189,8 +80201,7 @@ - spleen follicular dendritic cell network (embryonic mouse) - EMAPA:37963 + spleen follicular dendritic cell network (embryonic mouse) @@ -87209,8 +80220,7 @@ - spleen marginal sinus (embryonic mouse) - EMAPA:37964 + spleen marginal sinus (embryonic mouse) @@ -87229,8 +80239,7 @@ - stomach smooth muscle inner oblique layer (embryonic mouse) - EMAPA:37965 + stomach smooth muscle inner oblique layer (embryonic mouse) @@ -87249,8 +80258,7 @@ - stomach smooth muscle outer longitudinal layer (embryonic mouse) - EMAPA:37966 + stomach smooth muscle outer longitudinal layer (embryonic mouse) @@ -87269,8 +80277,7 @@ - subarcuate fossa (embryonic mouse) - EMAPA:37967 + subarcuate fossa (embryonic mouse) @@ -87289,8 +80296,7 @@ - subendocardium layer (embryonic mouse) - EMAPA:37968 + subendocardium layer (embryonic mouse) @@ -87309,8 +80315,7 @@ - subglottis (embryonic mouse) - EMAPA:37969 + subglottis (embryonic mouse) @@ -87329,8 +80334,7 @@ - submucosal gland (embryonic mouse) - EMAPA:37970 + submucosal gland (embryonic mouse) @@ -87349,8 +80353,7 @@ - tail hair (embryonic mouse) - EMAPA:37971 + tail hair (embryonic mouse) @@ -87369,8 +80372,7 @@ - tarsal gland acinus (embryonic mouse) - EMAPA:37972 + tarsal gland acinus (embryonic mouse) @@ -87389,8 +80391,7 @@ - throat (embryonic mouse) - EMAPA:37973 + throat (embryonic mouse) @@ -87409,8 +80410,7 @@ - thymus corticomedullary boundary (embryonic mouse) - EMAPA:37974 + thymus corticomedullary boundary (embryonic mouse) @@ -87429,8 +80429,7 @@ - tooth root (embryonic mouse) - EMAPA:37975 + tooth root (embryonic mouse) @@ -87449,8 +80448,7 @@ - tunnel of Corti (embryonic mouse) - EMAPA:37976 + tunnel of Corti (embryonic mouse) @@ -87469,8 +80467,7 @@ - urethral meatus (embryonic mouse) - EMAPA:37977 + urethral meatus (embryonic mouse) @@ -87489,8 +80486,7 @@ - urothelium (embryonic mouse) - EMAPA:37978 + urothelium (embryonic mouse) @@ -87509,8 +80505,7 @@ - uterine fat pad (embryonic mouse) - EMAPA:37979 + uterine fat pad (embryonic mouse) @@ -87529,8 +80524,7 @@ - utriculosaccular duct (embryonic mouse) - EMAPA:37980 + utriculosaccular duct (embryonic mouse) @@ -87549,8 +80543,7 @@ - utricle duct (embryonic mouse) - EMAPA:37981 + utricle duct (embryonic mouse) @@ -87569,8 +80562,7 @@ - saccule duct (embryonic mouse) - EMAPA:37982 + saccule duct (embryonic mouse) @@ -87589,8 +80581,7 @@ - vagina orifice (embryonic mouse) - EMAPA:37983 + vagina orifice (embryonic mouse) @@ -87609,8 +80600,7 @@ - ventral body wall (embryonic mouse) - EMAPA:37984 + ventral body wall (embryonic mouse) @@ -87629,8 +80619,7 @@ - vestibulo-auditory system (embryonic mouse) - EMAPA:37985 + vestibulo-auditory system (embryonic mouse) @@ -87649,8 +80638,7 @@ - vestibular system (embryonic mouse) - EMAPA:37986 + vestibular system (embryonic mouse) @@ -87669,34 +80657,7 @@ - wall of blood vessel (embryonic mouse) - EMAPA:37987 - - - - - - - - - - - - - - - - - - - - - - - - - EMAPA:ENTITY - EMAPA entity + wall of blood vessel (embryonic mouse) @@ -87755,12 +80716,6 @@ - - - - - - @@ -87881,12 +80836,6 @@ - - - - - - @@ -87899,18 +80848,6 @@ - - - - - - - - - - - - @@ -87935,12 +80872,6 @@ - - - - - - @@ -88079,12 +81010,6 @@ - - - - - - @@ -88229,12 +81154,6 @@ - - - - - - @@ -88289,12 +81208,6 @@ - - - - - - @@ -88463,12 +81376,6 @@ - - - - - - @@ -88541,12 +81448,6 @@ - - - - - - @@ -88661,12 +81562,6 @@ - - - - - - @@ -88709,12 +81604,6 @@ - - - - - - @@ -88727,12 +81616,6 @@ - - - - - - @@ -88751,12 +81634,6 @@ - - - - - - @@ -88895,12 +81772,6 @@ - - - - - - @@ -89255,12 +82126,6 @@ - - - - - - @@ -90149,12 +83014,6 @@ - - - - - - @@ -90329,12 +83188,6 @@ - - - - - - @@ -90365,12 +83218,6 @@ - - - - - - @@ -90653,12 +83500,6 @@ - - - - - - @@ -90965,18 +83806,6 @@ - - - - - - - - - - - - @@ -91241,12 +84070,6 @@ - - - - - - @@ -91379,12 +84202,6 @@ - - - - - - @@ -91475,12 +84292,6 @@ - - - - - - @@ -91889,12 +84700,6 @@ - - - - - - @@ -92093,12 +84898,6 @@ - - - - - - @@ -92429,12 +85228,6 @@ - - - - - - @@ -92465,12 +85258,6 @@ - - - - - - @@ -92717,12 +85504,6 @@ - - - - - - @@ -92957,12 +85738,6 @@ - - - - - - @@ -92981,12 +85756,6 @@ - - - - - - @@ -93041,12 +85810,6 @@ - - - - - - @@ -93179,12 +85942,6 @@ - - - - - - @@ -93965,12 +86722,6 @@ - - - - - - @@ -94463,12 +87214,6 @@ - - - - - - @@ -94547,12 +87292,6 @@ - - - - - - @@ -94607,12 +87346,6 @@ - - - - - - @@ -95009,12 +87742,6 @@ - - - - - - @@ -95189,12 +87916,6 @@ - - - - - - @@ -95639,12 +88360,6 @@ - - - - - - @@ -95681,12 +88396,6 @@ - - - - - - @@ -95705,12 +88414,6 @@ - - - - - - @@ -95765,12 +88468,6 @@ - - - - - - @@ -95849,12 +88546,6 @@ - - - - - - @@ -95867,24 +88558,12 @@ - - - - - - - - - - - - @@ -95915,12 +88594,6 @@ - - - - - - @@ -96017,12 +88690,6 @@ - - - - - - @@ -96071,12 +88738,6 @@ - - - - - - @@ -96149,12 +88810,6 @@ - - - - - - @@ -96611,12 +89266,6 @@ - - - - - - @@ -96677,12 +89326,6 @@ - - - - - - @@ -96731,12 +89374,6 @@ - - - - - - @@ -96779,12 +89416,6 @@ - - - - - - @@ -97061,12 +89692,6 @@ - - - - - - @@ -97097,12 +89722,6 @@ - - - - - - @@ -97277,12 +89896,6 @@ - - - - - - @@ -97337,12 +89950,6 @@ - - - - - - @@ -97415,18 +90022,6 @@ - - - - - - - - - - - - @@ -97523,24 +90118,6 @@ - - - - - - - - - - - - - - - - - - @@ -97673,12 +90250,6 @@ - - - - - - @@ -97709,18 +90280,6 @@ - - - - - - - - - - - - @@ -97769,18 +90328,6 @@ - - - - - - - - - - - - @@ -97847,12 +90394,6 @@ - - - - - - @@ -97979,12 +90520,6 @@ - - - - - - @@ -98141,30 +90676,12 @@ - - - - - - - - - - - - - - - - - - @@ -98183,12 +90700,6 @@ - - - - - - @@ -98831,12 +91342,6 @@ - - - - - - @@ -99023,18 +91528,6 @@ - - - - - - - - - - - - @@ -99059,12 +91552,6 @@ - - - - - - @@ -99095,24 +91582,12 @@ - - - - - - - - - - - - @@ -99395,12 +91870,6 @@ - - - - - - @@ -99569,12 +92038,6 @@ - - - - - - @@ -99737,24 +92200,12 @@ - - - - - - - - - - - - @@ -100013,12 +92464,6 @@ - - - - - - @@ -100703,12 +93148,6 @@ - - - - - - @@ -101021,12 +93460,6 @@ - - - - - - @@ -101087,12 +93520,6 @@ - - - - - - @@ -101147,12 +93574,6 @@ - - - - - - @@ -101189,12 +93610,6 @@ - - - - - - @@ -101213,12 +93628,6 @@ - - - - - - @@ -101249,24 +93658,12 @@ - - - - - - - - - - - - @@ -101585,42 +93982,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -102131,12 +94498,6 @@ - - - - - - @@ -102245,18 +94606,6 @@ - - - - - - - - - - - - @@ -102659,12 +95008,6 @@ - - - - - - @@ -103025,12 +95368,6 @@ - - - - - - @@ -103055,18 +95392,6 @@ - - - - - - - - - - - - @@ -103079,12 +95404,6 @@ - - - - - - @@ -103223,12 +95542,6 @@ - - - - - - @@ -103289,12 +95602,6 @@ - - - - - - @@ -103379,12 +95686,6 @@ - - - - - - @@ -103427,12 +95728,6 @@ - - - - - - @@ -103847,12 +96142,6 @@ - - - - - - @@ -103913,12 +96202,6 @@ - - - - - - @@ -104351,48 +96634,24 @@ - - - - - - - - - - - - - - - - - - - - - - - - @@ -104735,12 +96994,6 @@ - - - - - - @@ -104753,12 +97006,6 @@ - - - - - - @@ -105053,12 +97300,6 @@ - - - - - - @@ -105167,12 +97408,6 @@ - - - - - - @@ -105215,12 +97450,6 @@ - - - - - - @@ -105545,12 +97774,6 @@ - - - - - - @@ -106043,12 +98266,6 @@ - - - - - - @@ -106211,18 +98428,6 @@ - - - - - - - - - - - - @@ -106289,12 +98494,6 @@ - - - - - - @@ -106403,12 +98602,6 @@ - - - - - - @@ -106427,12 +98620,6 @@ - - - - - - @@ -106457,12 +98644,6 @@ - - - - - - @@ -106583,12 +98764,6 @@ - - - - - - @@ -106607,18 +98782,6 @@ - - - - - - - - - - - - @@ -106685,12 +98848,6 @@ - - - - - - @@ -106727,12 +98884,6 @@ - - - - - - @@ -106751,12 +98902,6 @@ - - - - - - @@ -106787,12 +98932,6 @@ - - - - - - @@ -106907,12 +99046,6 @@ - - - - - - @@ -107003,12 +99136,6 @@ - - - - - - @@ -107195,12 +99322,6 @@ - - - - - - @@ -107411,12 +99532,6 @@ - - - - - - @@ -107651,30 +99766,12 @@ - - - - - - - - - - - - - - - - - - @@ -107759,12 +99856,6 @@ - - - - - - @@ -107885,12 +99976,6 @@ - - - - - - @@ -108029,12 +100114,6 @@ - - - - - - @@ -108209,12 +100288,6 @@ - - - - - - @@ -108245,24 +100318,6 @@ - - - - - - - - - - - - - - - - - - @@ -108317,12 +100372,6 @@ - - - - - - @@ -108467,12 +100516,6 @@ - - - - - - @@ -108527,12 +100570,6 @@ - - - - - - @@ -108551,12 +100588,6 @@ - - - - - - @@ -108923,12 +100954,6 @@ - - - - - - @@ -109475,12 +101500,6 @@ - - - - - - @@ -109595,12 +101614,6 @@ - - - - - - @@ -109625,12 +101638,6 @@ - - - - - - @@ -109793,18 +101800,6 @@ - - - - - - - - - - - - @@ -109835,18 +101830,6 @@ - - - - - - - - - - - - @@ -109895,12 +101878,6 @@ - - - - - - @@ -110111,12 +102088,6 @@ - - - - - - @@ -110159,12 +102130,6 @@ - - - - - - @@ -110561,12 +102526,6 @@ - - - - - - @@ -110849,12 +102808,6 @@ - - - - - - @@ -111275,12 +103228,6 @@ - - - - - - @@ -111353,18 +103300,6 @@ - - - - - - - - - - - - @@ -111383,12 +103318,6 @@ - - - - - - @@ -111551,12 +103480,6 @@ - - - - - - @@ -111803,12 +103726,6 @@ - - - - - - @@ -111929,12 +103846,6 @@ - - - - - - @@ -112049,12 +103960,6 @@ - - - - - - @@ -112619,12 +104524,6 @@ - - - - - - @@ -112835,24 +104734,12 @@ - - - - - - - - - - - - @@ -113105,12 +104992,6 @@ - - - - - - @@ -113406,5 +105287,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-fbbt.obo b/src/ontology/bridge/uberon-bridge-to-fbbt.obo deleted file mode 100644 index cf3c0e199a..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-fbbt.obo +++ /dev/null @@ -1,2323 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-fbbt -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to fbbt" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between the drosophila anatomy ontology and Uberon. Note that currently Uberon focuses on chordate anatomy so there are only a minimal set of equivalencies for high level classes. In future Uberon may bridge via the arthropod anatomy ontology" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "David Osumi-Sutherland" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fbbt.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: FBbt:00005157 ! -property_value: IAO:0000589 "chemosensory organ (drosophila)" xsd:string -intersection_of: UBERON:0000005 ! chemosensory organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005098 ! -property_value: IAO:0000589 "peripheral nervous system (drosophila)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004508 ! -property_value: IAO:0000589 "compound eye (drosophila)" xsd:string -intersection_of: UBERON:0000018 ! compound eye -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005155 ! -property_value: IAO:0000589 "sense organ (drosophila)" xsd:string -intersection_of: UBERON:0000020 ! sense organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007000 ! -property_value: IAO:0000589 "appendage (drosophila)" xsd:string -intersection_of: UBERON:0000026 ! appendage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000004 ! -property_value: IAO:0000589 "head (drosophila)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00100314 ! -property_value: IAO:0000589 "duct (drosophila)" xsd:string -intersection_of: UBERON:0000058 ! duct -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007001 ! -property_value: IAO:0000589 "anatomical structure (drosophila)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004927 ! -property_value: IAO:0000589 "male reproductive system (drosophila)" xsd:string -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005099 ! -property_value: IAO:0000589 "neuron projection bundle (drosophila)" xsd:string -intersection_of: UBERON:0000122 ! neuron projection bundle -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003126 ! -property_value: IAO:0000589 "mouth (drosophila)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004199 ! -property_value: IAO:0000589 "compound eye corneal lens (drosophila)" xsd:string -intersection_of: UBERON:0000207 ! compound eye corneal lens -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005333 ! -property_value: IAO:0000589 "late embryo (drosophila)" xsd:string -intersection_of: UBERON:0000323 ! late embryo -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007019 ! -property_value: IAO:0000589 "organism substance (drosophila)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007017 ! -property_value: IAO:0000589 "anatomical space (drosophila)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007016 ! -property_value: IAO:0000589 "material anatomical entity (drosophila)" xsd:string -intersection_of: UBERON:0000465 ! material anatomical entity -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007015 ! -property_value: IAO:0000589 "immaterial anatomical entity (drosophila)" xsd:string -intersection_of: UBERON:0000466 ! immaterial anatomical entity -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004856 ! -property_value: IAO:0000589 "anatomical system (drosophila)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000001 ! -property_value: IAO:0000589 "multicellular organism (drosophila)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004928 ! -property_value: IAO:0000589 "testis (drosophila)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004864 ! -property_value: IAO:0000589 "female reproductive system (drosophila)" xsd:string -intersection_of: UBERON:0000474 ! female reproductive system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007009 ! -property_value: IAO:0000589 "organism subdivision (drosophila)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007013 ! -property_value: IAO:0000589 "acellular anatomical structure (drosophila)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007277 ! -property_value: IAO:0000589 "anatomical cluster (drosophila)" xsd:string -intersection_of: UBERON:0000477 ! anatomical cluster -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005835 ! -property_value: IAO:0000589 "extraembryonic structure (drosophila)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007003 ! -property_value: IAO:0000589 "tissue (drosophila)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007010 ! -property_value: IAO:0000589 "multi-tissue structure (drosophila)" xsd:string -intersection_of: UBERON:0000481 ! multi-tissue structure -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007005 ! -property_value: IAO:0000589 "epithelium (drosophila)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007027 ! -property_value: IAO:0000589 "simple columnar epithelium (drosophila)" xsd:string -intersection_of: UBERON:0000485 ! simple columnar epithelium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000003 ! -property_value: IAO:0000589 "organismal segment (drosophila)" xsd:string -intersection_of: UBERON:0000914 ! organismal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000038 ! -property_value: IAO:0000589 "egg chorion (drosophila)" xsd:string -intersection_of: UBERON:0000920 ! egg chorion -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000052 ! -property_value: IAO:0000589 "embryo (drosophila)" xsd:string -intersection_of: UBERON:0000922 ! embryo -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000110 ! -property_value: IAO:0000589 "germ layer (drosophila)" xsd:string -intersection_of: UBERON:0000923 ! germ layer -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000111 ! -property_value: IAO:0000589 "ectoderm (drosophila)" xsd:string -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000125 ! -property_value: IAO:0000589 "endoderm (drosophila)" xsd:string -intersection_of: UBERON:0000925 ! endoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000126 ! -property_value: IAO:0000589 "mesoderm (drosophila)" xsd:string -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000136 ! -property_value: IAO:0000589 "mesectoderm (drosophila)" xsd:string -intersection_of: UBERON:0000927 ! mesectoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000439 ! -property_value: IAO:0000589 "stomodeum (drosophila)" xsd:string -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000123 ! -property_value: IAO:0000589 "proctodeum (drosophila)" xsd:string -intersection_of: UBERON:0000931 ! proctodeum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005097 ! -property_value: IAO:0000589 "ventral nerve cord (drosophila)" xsd:string -intersection_of: UBERON:0000934 ! ventral nerve cord -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001761 ! -property_value: IAO:0000589 "imaginal disc (drosophila)" xsd:string -intersection_of: UBERON:0000939 ! imaginal disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005068 ! -property_value: IAO:0000589 "endocrine system (drosophila)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005095 ! -property_value: IAO:0000589 "brain (drosophila)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004114 ! -property_value: IAO:0000589 "head sensillum (drosophila)" xsd:string -intersection_of: UBERON:0000963 ! head sensillum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005162 ! -property_value: IAO:0000589 "eye (drosophila)" xsd:string -intersection_of: UBERON:0000970 ! eye -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004510 ! -property_value: IAO:0000589 "ommatidium (drosophila)" xsd:string -intersection_of: UBERON:0000971 ! ommatidium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004511 ! -property_value: IAO:0000589 "antenna (drosophila)" xsd:string -intersection_of: UBERON:0000972 ! antenna -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004729 ! -property_value: IAO:0000589 "imaginal disc-derived wing (drosophila)" xsd:string -intersection_of: UBERON:0000984 ! imaginal disc-derived wing -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004783 ! -property_value: IAO:0000589 "haltere (drosophila)" xsd:string -intersection_of: UBERON:0000987 ! haltere -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004857 ! -property_value: IAO:0000589 "reproductive system (drosophila)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004858 ! -property_value: IAO:0000589 "gonad (drosophila)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004865 ! -property_value: IAO:0000589 "ovary (drosophila)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004921 ! -property_value: IAO:0000589 "spermathecum (drosophila)" xsd:string -intersection_of: UBERON:0000994 ! spermathecum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004970 ! -property_value: IAO:0000589 "chitin-based cuticle (drosophila)" xsd:string -intersection_of: UBERON:0001001 ! chitin-based cuticle -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005055 ! -property_value: IAO:0000589 "digestive system (drosophila)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005056 ! -property_value: IAO:0000589 "renal system (drosophila)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005061 ! -property_value: IAO:0000589 "hemolymph (drosophila)" xsd:string -intersection_of: UBERON:0001011 ! hemolymph -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005093 ! -property_value: IAO:0000589 "nervous system (drosophila)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005094 ! -property_value: IAO:0000589 "central nervous system (drosophila)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005100 ! -property_value: IAO:0000589 "axon tract (drosophila)" xsd:string -intersection_of: UBERON:0001018 ! axon tract -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005105 ! -property_value: IAO:0000589 "nerve (drosophila)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005136 ! -property_value: IAO:0000589 "sensory nerve (drosophila)" xsd:string -intersection_of: UBERON:0001027 ! sensory nerve -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007692 ! -property_value: IAO:0000589 "sensory system (drosophila)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005215 ! -property_value: IAO:0000589 "chordotonal organ (drosophila)" xsd:string -intersection_of: UBERON:0001038 ! chordotonal organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005379 ! -property_value: IAO:0000589 "foregut (drosophila)" xsd:string -intersection_of: UBERON:0001041 ! foregut -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005382 ! -property_value: IAO:0000589 "saliva-secreting gland (drosophila)" xsd:string -intersection_of: UBERON:0001044 ! saliva-secreting gland -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005383 ! -property_value: IAO:0000589 "midgut (drosophila)" xsd:string -intersection_of: UBERON:0001045 ! midgut -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005384 ! -property_value: IAO:0000589 "hindgut (drosophila)" xsd:string -intersection_of: UBERON:0001046 ! hindgut -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005386 ! -property_value: IAO:0000589 "neural glomerulus (drosophila)" xsd:string -intersection_of: UBERON:0001047 ! neural glomerulus -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005495 ! -property_value: IAO:0000589 "primordium (drosophila)" xsd:string -intersection_of: UBERON:0001048 ! primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005757 ! -property_value: IAO:0000589 "arthropod neurohemal organ (drosophila)" xsd:string -intersection_of: UBERON:0001053 ! arthropod neurohemal organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005786 ! -property_value: IAO:0000589 "Malpighian tubule (drosophila)" xsd:string -intersection_of: UBERON:0001054 ! Malpighian tubule -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005799 ! -property_value: IAO:0000589 "corpus cardiacum (drosophila)" xsd:string -intersection_of: UBERON:0001056 ! corpus cardiacum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005800 ! -property_value: IAO:0000589 "corpus allatum (drosophila)" xsd:string -intersection_of: UBERON:0001057 ! corpus allatum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005801 ! -property_value: IAO:0000589 "mushroom body (drosophila)" xsd:string -intersection_of: UBERON:0001058 ! mushroom body -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005802 ! -property_value: IAO:0000589 "pars intercerebralis (drosophila)" xsd:string -intersection_of: UBERON:0001059 ! pars intercerebralis -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:10000000 ! -property_value: IAO:0000589 "anatomical entity (drosophila)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00047153 ! -property_value: IAO:0000589 "anus (drosophila)" xsd:string -intersection_of: UBERON:0001245 ! anus -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003125 ! -property_value: IAO:0000589 "digestive tract (drosophila)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004208 ! -property_value: IAO:0000589 "embryonic structure (drosophila)" xsd:string -intersection_of: UBERON:0002050 ! embryonic structure -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005158 ! -property_value: IAO:0000589 "olfactory organ (drosophila)" xsd:string -intersection_of: UBERON:0002268 ! olfactory organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005060 ! -property_value: IAO:0000589 "coelemic cavity lumen (drosophila)" xsd:string -intersection_of: UBERON:0002323 ! coelemic cavity lumen -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001057 ! -property_value: IAO:0000589 "neurectoderm (drosophila)" xsd:string -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004969 ! -property_value: IAO:0000589 "integumental system (drosophila)" xsd:string -intersection_of: UBERON:0002416 ! integumental system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00100317 ! -property_value: IAO:0000589 "gland (drosophila)" xsd:string -intersection_of: UBERON:0002530 ! gland -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007152 ! -property_value: IAO:0000589 "arthropod sensillum (drosophila)" xsd:string -intersection_of: UBERON:0002536 ! arthropod sensillum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001727 ! -property_value: IAO:0000589 "larva (drosophila)" xsd:string -intersection_of: UBERON:0002548 ! larva -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005139 ! -property_value: IAO:0000589 "neuropil (drosophila)" xsd:string -intersection_of: UBERON:0002606 ! neuropil -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007011 ! -property_value: IAO:0000589 "female organism (drosophila)" xsd:string -intersection_of: UBERON:0003100 ! female organism -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007004 ! -property_value: IAO:0000589 "male organism (drosophila)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000042 ! -property_value: IAO:0000589 "vitelline membrane (drosophila)" xsd:string -intersection_of: UBERON:0003125 ! vitelline membrane -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004557 ! -property_value: IAO:0000589 "arthropod sternum (drosophila)" xsd:string -intersection_of: UBERON:0003130 ! arthropod sternum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004642 ! -property_value: IAO:0000589 "arthropod tibia (drosophila)" xsd:string -intersection_of: UBERON:0003131 ! arthropod tibia -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00002952 ! -property_value: IAO:0000589 "prepupa (drosophila)" xsd:string -intersection_of: UBERON:0003142 ! prepupa -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00002953 ! -property_value: IAO:0000589 "pupa (drosophila)" xsd:string -intersection_of: UBERON:0003143 ! pupa -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004482 ! -property_value: IAO:0000589 "insect head capsule (drosophila)" xsd:string -intersection_of: UBERON:0003153 ! insect head capsule -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004492 ! -property_value: IAO:0000589 "arthropod occiput (drosophila)" xsd:string -intersection_of: UBERON:0003155 ! arthropod occiput -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004505 ! -property_value: IAO:0000589 "dorsal ocellus (drosophila)" xsd:string -intersection_of: UBERON:0003161 ! dorsal ocellus -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004506 ! -property_value: IAO:0000589 "lateral ocellus (drosophila)" xsd:string -intersection_of: UBERON:0003162 ! lateral ocellus -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004751 ! -property_value: IAO:0000589 "imaginal disc-derived wing vein (drosophila)" xsd:string -intersection_of: UBERON:0003194 ! imaginal disc-derived wing vein -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004894 ! -property_value: IAO:0000589 "egg chamber (drosophila)" xsd:string -intersection_of: UBERON:0003199 ! egg chamber -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004973 ! -property_value: IAO:0000589 "exocuticle (drosophila)" xsd:string -intersection_of: UBERON:0003201 ! exocuticle -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004974 ! -property_value: IAO:0000589 "endocuticle (drosophila)" xsd:string -intersection_of: UBERON:0003202 ! endocuticle -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004507 ! -property_value: IAO:0000589 "median eye (drosophila)" xsd:string -intersection_of: UBERON:0003211 ! median eye -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005159 ! -property_value: IAO:0000589 "gustatory organ (drosophila)" xsd:string -intersection_of: UBERON:0003212 ! gustatory organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007474 ! -property_value: IAO:0000589 "epithelial tube (drosophila)" xsd:string -intersection_of: UBERON:0003914 ! epithelial tube -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005066 ! -property_value: IAO:0000589 "arthropod fat body (drosophila)" xsd:string -intersection_of: UBERON:0003917 ! arthropod fat body -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00047143 ! -property_value: IAO:0000589 "digestive tract epithelium (drosophila)" xsd:string -intersection_of: UBERON:0003929 ! digestive tract epithelium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005317 ! -property_value: IAO:0000589 "gastrula (drosophila)" xsd:string -intersection_of: UBERON:0004734 ! gastrula -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001956 ! -property_value: IAO:0000589 "neuron projection bundle connecting eye with brain (drosophila)" xsd:string -intersection_of: UBERON:0004904 ! neuron projection bundle connecting eye with brain -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005811 ! -property_value: IAO:0000589 "articulation (drosophila)" xsd:string -intersection_of: UBERON:0004905 ! articulation -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00100315 ! -property_value: IAO:0000589 "subdivision of digestive tract (drosophila)" xsd:string -intersection_of: UBERON:0004921 ! subdivision of digestive tract -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005024 ! -property_value: IAO:0000589 "open tracheal system (drosophila)" xsd:string -intersection_of: UBERON:0005155 ! open tracheal system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007060 ! -property_value: IAO:0000589 "multi cell part structure (drosophila)" xsd:string -intersection_of: UBERON:0005162 ! multi cell part structure -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004200 ! -property_value: IAO:0000589 "photoreceptor array (drosophila)" xsd:string -intersection_of: UBERON:0005388 ! photoreceptor array -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007006 ! -property_value: IAO:0000589 "developing anatomical structure (drosophila)" xsd:string -intersection_of: UBERON:0005423 ! developing anatomical structure -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004640 ! -property_value: IAO:0000589 "insect leg (drosophila)" xsd:string -intersection_of: UBERON:0005895 ! insect leg -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004522 ! -property_value: IAO:0000589 "insect labrum (drosophila)" xsd:string -intersection_of: UBERON:0005905 ! insect labrum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005380 ! -property_value: IAO:0000589 "pharynx (drosophila)" xsd:string -intersection_of: UBERON:0006562 ! pharynx -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003701 ! -property_value: IAO:0000589 "arthropod optic lobe (drosophila)" xsd:string -intersection_of: UBERON:0006795 ! arthropod optic lobe -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007410 ! -property_value: IAO:0000589 "lumen of open tracheal system trachea (drosophila)" xsd:string -intersection_of: UBERON:0006832 ! lumen of open tracheal system trachea -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005756 ! -property_value: IAO:0000589 "terminal part of digestive tract (drosophila)" xsd:string -intersection_of: UBERON:0006866 ! terminal part of digestive tract -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004958 ! -property_value: IAO:0000589 "seminal fluid secreting gland (drosophila)" xsd:string -intersection_of: UBERON:0006868 ! seminal fluid secreting gland -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003004 ! -property_value: IAO:0000589 "adult organism (drosophila)" xsd:string -intersection_of: UBERON:0007023 ! adult organism -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004993 ! -property_value: IAO:0000589 "outer epithelium (drosophila)" xsd:string -intersection_of: UBERON:0007376 ! outer epithelium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005426 ! -property_value: IAO:0000589 "anlage (drosophila)" xsd:string -intersection_of: UBERON:0007688 ! anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004850 ! -property_value: IAO:0000589 "intromittent organ (drosophila)" xsd:string -intersection_of: UBERON:0008811 ! intromittent organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000155 ! -property_value: IAO:0000589 "embryonic head (drosophila)" xsd:string -intersection_of: UBERON:0008816 ! embryonic head -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005057 ! -property_value: IAO:0000589 "open circulatory system (drosophila)" xsd:string -intersection_of: UBERON:0009054 ! open circulatory system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000093 ! -property_value: IAO:0000589 "ventral midline (drosophila)" xsd:string -intersection_of: UBERON:0009571 ! ventral midline -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00100316 ! -property_value: IAO:0000589 "digestive tract diverticulum (drosophila)" xsd:string -intersection_of: UBERON:0009854 ! digestive tract diverticulum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00100313 ! -property_value: IAO:0000589 "multicellular anatomical structure (drosophila)" xsd:string -intersection_of: UBERON:0010000 ! multicellular anatomical structure -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007229 ! -property_value: IAO:0000589 "cell cluster organ (drosophila)" xsd:string -intersection_of: UBERON:0010001 ! cell cluster organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000095 ! -property_value: IAO:0000589 "amnioserosa (drosophila)" xsd:string -intersection_of: UBERON:0010302 ! amnioserosa -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007018 ! -property_value: IAO:0000589 "subdivision of organism along appendicular axis (drosophila)" xsd:string -intersection_of: UBERON:0010758 ! subdivision of organism along appendicular axis -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007330 ! -property_value: IAO:0000589 "organ system subdivision (drosophila)" xsd:string -intersection_of: UBERON:0011216 ! organ system subdivision -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001718 ! -property_value: IAO:0000589 "retrocerebral complex (drosophila)" xsd:string -intersection_of: UBERON:0012325 ! retrocerebral complex -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007230 ! -property_value: IAO:0000589 "compound cell cluster organ (drosophila)" xsd:string -intersection_of: UBERON:0014732 ! compound cell cluster organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007278 ! -property_value: IAO:0000589 "non-connected functional system (drosophila)" xsd:string -intersection_of: UBERON:0015203 ! non-connected functional system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003154 ! -property_value: IAO:0000589 "dorsal vessel heart (drosophila)" xsd:string -intersection_of: UBERON:0015230 ! dorsal vessel heart -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00058291 ! -property_value: IAO:0000589 "circulatory system dorsal vessel (drosophila)" xsd:string -intersection_of: UBERON:0015231 ! circulatory system dorsal vessel -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005338 ! -property_value: IAO:0000589 "second instar larva (drosophila)" xsd:string -intersection_of: UBERON:0018382 ! second instar larva -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004987 ! -property_value: IAO:0000589 "puparium (drosophila)" xsd:string -intersection_of: UBERON:0018656 ! puparium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007276 ! -property_value: IAO:0000589 "disconnected anatomical group (drosophila)" xsd:string -intersection_of: UBERON:0034923 ! disconnected anatomical group -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00100152 ! -property_value: IAO:0000589 "anatomical row (drosophila)" xsd:string -intersection_of: UBERON:0034926 ! anatomical row -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000002 ! -property_value: IAO:0000589 "arthropod tagma (drosophila)" xsd:string -intersection_of: UBERON:6000002 ! arthropod tagma -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000004 ! -property_value: IAO:0000589 "panarthropod head (drosophila)" xsd:string -intersection_of: UBERON:6000004 ! panarthropod head -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000005 ! -property_value: IAO:0000589 "insect ocular segment (drosophila)" xsd:string -intersection_of: UBERON:6000005 ! insect ocular segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000006 ! -property_value: IAO:0000589 "insect head segment (drosophila)" xsd:string -intersection_of: UBERON:6000006 ! insect head segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000007 ! -property_value: IAO:0000589 "procephalic segment (drosophila)" xsd:string -intersection_of: UBERON:6000007 ! procephalic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000008 ! -property_value: IAO:0000589 "labral segment (drosophila)" xsd:string -intersection_of: UBERON:6000008 ! labral segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000009 ! -property_value: IAO:0000589 "antennal segment (drosophila)" xsd:string -intersection_of: UBERON:6000009 ! antennal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000011 ! -property_value: IAO:0000589 "insect gnathal segment (drosophila)" xsd:string -intersection_of: UBERON:6000011 ! insect gnathal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000014 ! -property_value: IAO:0000589 "insect labial segment (drosophila)" xsd:string -intersection_of: UBERON:6000014 ! insect labial segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000015 ! -property_value: IAO:0000589 "insect thorax (drosophila)" xsd:string -intersection_of: UBERON:6000015 ! insect thorax -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000016 ! -property_value: IAO:0000589 "insect thoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6000016 ! insect thoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000017 ! -property_value: IAO:0000589 "insect prothoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6000017 ! insect prothoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000018 ! -property_value: IAO:0000589 "insect mesothoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6000018 ! insect mesothoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000019 ! -property_value: IAO:0000589 "insect metathoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6000019 ! insect metathoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000020 ! -property_value: IAO:0000589 "insect abdomen (drosophila)" xsd:string -intersection_of: UBERON:6000020 ! insect abdomen -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000021 ! -property_value: IAO:0000589 "insect abdominal segment (drosophila)" xsd:string -intersection_of: UBERON:6000021 ! insect abdominal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000029 ! -property_value: IAO:0000589 "insect abdominal segment 8 (drosophila)" xsd:string -intersection_of: UBERON:6000029 ! insect abdominal segment 8 -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000030 ! -property_value: IAO:0000589 "insect abdominal segment 9 (drosophila)" xsd:string -intersection_of: UBERON:6000030 ! insect abdominal segment 9 -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000046 ! -property_value: IAO:0000589 "insect dorsal appendage (drosophila)" xsd:string -intersection_of: UBERON:6000046 ! insect dorsal appendage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000096 ! -property_value: IAO:0000589 "insect ventral furrow (drosophila)" xsd:string -intersection_of: UBERON:6000096 ! insect ventral furrow -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000097 ! -property_value: IAO:0000589 "insect cephalic furrow (drosophila)" xsd:string -intersection_of: UBERON:6000097 ! insect cephalic furrow -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000104 ! -property_value: IAO:0000589 "insect mesoderm anlage (drosophila)" xsd:string -intersection_of: UBERON:6000104 ! insect mesoderm anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000112 ! -property_value: IAO:0000589 "insect dorsal ectoderm (drosophila)" xsd:string -intersection_of: UBERON:6000112 ! insect dorsal ectoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000119 ! -property_value: IAO:0000589 "insect anterior ectoderm (drosophila)" xsd:string -intersection_of: UBERON:6000119 ! insect anterior ectoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000128 ! -property_value: IAO:0000589 "insect trunk mesoderm (drosophila)" xsd:string -intersection_of: UBERON:6000128 ! insect trunk mesoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000130 ! -property_value: IAO:0000589 "insect visceral mesoderm (drosophila)" xsd:string -intersection_of: UBERON:6000130 ! insect visceral mesoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000137 ! -property_value: IAO:0000589 "embryonic tagma (drosophila)" xsd:string -intersection_of: UBERON:6000137 ! embryonic tagma -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000154 ! -property_value: IAO:0000589 "insect embryonic segment (drosophila)" xsd:string -intersection_of: UBERON:6000154 ! insect embryonic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000157 ! -property_value: IAO:0000589 "insect embryonic head segment (drosophila)" xsd:string -intersection_of: UBERON:6000157 ! insect embryonic head segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000158 ! -property_value: IAO:0000589 "insect embryonic procephalic segment (drosophila)" xsd:string -intersection_of: UBERON:6000158 ! insect embryonic procephalic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000160 ! -property_value: IAO:0000589 "insect embryonic antennal segment (drosophila)" xsd:string -intersection_of: UBERON:6000160 ! insect embryonic antennal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000162 ! -property_value: IAO:0000589 "insect embryonic gnathal segment (drosophila)" xsd:string -intersection_of: UBERON:6000162 ! insect embryonic gnathal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000165 ! -property_value: IAO:0000589 "insect embryonic labial segment (drosophila)" xsd:string -intersection_of: UBERON:6000165 ! insect embryonic labial segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000166 ! -property_value: IAO:0000589 "insect embryonic thorax (drosophila)" xsd:string -intersection_of: UBERON:6000166 ! insect embryonic thorax -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000167 ! -property_value: IAO:0000589 "insect embryonic thoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6000167 ! insect embryonic thoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000168 ! -property_value: IAO:0000589 "insect embryonic prothoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6000168 ! insect embryonic prothoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000169 ! -property_value: IAO:0000589 "insect embryonic mesothoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6000169 ! insect embryonic mesothoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000170 ! -property_value: IAO:0000589 "insect embryonic metathoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6000170 ! insect embryonic metathoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000171 ! -property_value: IAO:0000589 "insect embryonic abdomen (drosophila)" xsd:string -intersection_of: UBERON:6000171 ! insect embryonic abdomen -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000172 ! -property_value: IAO:0000589 "insect embryonic abdominal segment (drosophila)" xsd:string -intersection_of: UBERON:6000172 ! insect embryonic abdominal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000180 ! -property_value: IAO:0000589 "insect embryonic abdominal segment 8 (drosophila)" xsd:string -intersection_of: UBERON:6000180 ! insect embryonic abdominal segment 8 -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000181 ! -property_value: IAO:0000589 "insect embryonic abdominal segment 9 (drosophila)" xsd:string -intersection_of: UBERON:6000181 ! insect embryonic abdominal segment 9 -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00000186 ! -property_value: IAO:0000589 "insect embryonic optic lobe primordium (drosophila)" xsd:string -intersection_of: UBERON:6000186 ! insect embryonic optic lobe primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001055 ! -property_value: IAO:0000589 "insect presumptive embryonic/larval nervous system (drosophila)" xsd:string -intersection_of: UBERON:6001055 ! insect presumptive embryonic/larval nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001056 ! -property_value: IAO:0000589 "insect presumptive embryonic/larval central nervous system (drosophila)" xsd:string -intersection_of: UBERON:6001056 ! insect presumptive embryonic/larval central nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001059 ! -property_value: IAO:0000589 "insect visual primordium (drosophila)" xsd:string -intersection_of: UBERON:6001059 ! insect visual primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001060 ! -property_value: IAO:0000589 "insect embryonic brain (drosophila)" xsd:string -intersection_of: UBERON:6001060 ! insect embryonic brain -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001135 ! -property_value: IAO:0000589 "insect proneural cluster (drosophila)" xsd:string -intersection_of: UBERON:6001135 ! insect proneural cluster -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001648 ! -property_value: IAO:0000589 "insect embryonic imaginal precursor (drosophila)" xsd:string -intersection_of: UBERON:6001648 ! insect embryonic imaginal precursor -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001649 ! -property_value: IAO:0000589 "insect imaginal disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001649 ! insect imaginal disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001650 ! -property_value: IAO:0000589 "insect labial disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001650 ! insect labial disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001652 ! -property_value: IAO:0000589 "insect eye-antennal disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001652 ! insect eye-antennal disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001653 ! -property_value: IAO:0000589 "insect dorsal thoracic disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001653 ! insect dorsal thoracic disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001655 ! -property_value: IAO:0000589 "insect dorsal mesothoracic disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001655 ! insect dorsal mesothoracic disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001656 ! -property_value: IAO:0000589 "insect dorsal metathoracic disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001656 ! insect dorsal metathoracic disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001657 ! -property_value: IAO:0000589 "insect ventral thoracic disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001657 ! insect ventral thoracic disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001658 ! -property_value: IAO:0000589 "insect ventral prothoracic disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001658 ! insect ventral prothoracic disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001661 ! -property_value: IAO:0000589 "insect genital disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001661 ! insect genital disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001662 ! -property_value: IAO:0000589 "insect male genital disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001662 ! insect male genital disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001663 ! -property_value: IAO:0000589 "insect female genital disc primordium (drosophila)" xsd:string -intersection_of: UBERON:6001663 ! insect female genital disc primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001664 ! -property_value: IAO:0000589 "insect embryonic/larval circulatory system (drosophila)" xsd:string -intersection_of: UBERON:6001664 ! insect embryonic/larval circulatory system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001668 ! -property_value: IAO:0000589 "insect embryonic/larval lymph gland (drosophila)" xsd:string -intersection_of: UBERON:6001668 ! insect embryonic/larval lymph gland -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001722 ! -property_value: IAO:0000589 "insect ring gland (drosophila)" xsd:string -intersection_of: UBERON:6001722 ! insect ring gland -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001728 ! -property_value: IAO:0000589 "insect larval tagma (drosophila)" xsd:string -intersection_of: UBERON:6001728 ! insect larval tagma -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001729 ! -property_value: IAO:0000589 "insect larval segment (drosophila)" xsd:string -intersection_of: UBERON:6001729 ! insect larval segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001730 ! -property_value: IAO:0000589 "insect larval head (drosophila)" xsd:string -intersection_of: UBERON:6001730 ! insect larval head -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001731 ! -property_value: IAO:0000589 "insect larval ocular segment (drosophila)" xsd:string -intersection_of: UBERON:6001731 ! insect larval ocular segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001732 ! -property_value: IAO:0000589 "insect larval head segment (drosophila)" xsd:string -intersection_of: UBERON:6001732 ! insect larval head segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001733 ! -property_value: IAO:0000589 "insect larval procephalic segment (drosophila)" xsd:string -intersection_of: UBERON:6001733 ! insect larval procephalic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001734 ! -property_value: IAO:0000589 "insect larval labral segment (drosophila)" xsd:string -intersection_of: UBERON:6001734 ! insect larval labral segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001735 ! -property_value: IAO:0000589 "insect larval antennal segment (drosophila)" xsd:string -intersection_of: UBERON:6001735 ! insect larval antennal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001737 ! -property_value: IAO:0000589 "insect larval gnathal segment (drosophila)" xsd:string -intersection_of: UBERON:6001737 ! insect larval gnathal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001740 ! -property_value: IAO:0000589 "insect larval labial segment (drosophila)" xsd:string -intersection_of: UBERON:6001740 ! insect larval labial segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001741 ! -property_value: IAO:0000589 "insect larval thorax (drosophila)" xsd:string -intersection_of: UBERON:6001741 ! insect larval thorax -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001742 ! -property_value: IAO:0000589 "insect larval thoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6001742 ! insect larval thoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001743 ! -property_value: IAO:0000589 "insect larval prothoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6001743 ! insect larval prothoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001744 ! -property_value: IAO:0000589 "insect larval mesothoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6001744 ! insect larval mesothoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001745 ! -property_value: IAO:0000589 "insect larval metathoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6001745 ! insect larval metathoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001746 ! -property_value: IAO:0000589 "insect larval abdomen (drosophila)" xsd:string -intersection_of: UBERON:6001746 ! insect larval abdomen -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001747 ! -property_value: IAO:0000589 "insect larval abdominal segment (drosophila)" xsd:string -intersection_of: UBERON:6001747 ! insect larval abdominal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001755 ! -property_value: IAO:0000589 "insect larval abdominal segment 8 (drosophila)" xsd:string -intersection_of: UBERON:6001755 ! insect larval abdominal segment 8 -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001756 ! -property_value: IAO:0000589 "insect larval abdominal segment 9 (drosophila)" xsd:string -intersection_of: UBERON:6001756 ! insect larval abdominal segment 9 -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001760 ! -property_value: IAO:0000589 "insect embryonic/larval imaginal precursor (drosophila)" xsd:string -intersection_of: UBERON:6001760 ! insect embryonic/larval imaginal precursor -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001764 ! -property_value: IAO:0000589 "insect labial disc (drosophila)" xsd:string -intersection_of: UBERON:6001764 ! insect labial disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001765 ! -property_value: IAO:0000589 "insect clypeo-labral disc (drosophila)" xsd:string -intersection_of: UBERON:6001765 ! insect clypeo-labral disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001766 ! -property_value: IAO:0000589 "insect eye-antennal disc (drosophila)" xsd:string -intersection_of: UBERON:6001766 ! insect eye-antennal disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001767 ! -property_value: IAO:0000589 "insect antennal disc (drosophila)" xsd:string -intersection_of: UBERON:6001767 ! insect antennal disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001776 ! -property_value: IAO:0000589 "insect dorsal thoracic disc (drosophila)" xsd:string -intersection_of: UBERON:6001776 ! insect dorsal thoracic disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001778 ! -property_value: IAO:0000589 "insect wing disc (drosophila)" xsd:string -intersection_of: UBERON:6001778 ! insect wing disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001779 ! -property_value: IAO:0000589 "insect haltere disc (drosophila)" xsd:string -intersection_of: UBERON:6001779 ! insect haltere disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001780 ! -property_value: IAO:0000589 "insect ventral thoracic disc (drosophila)" xsd:string -intersection_of: UBERON:6001780 ! insect ventral thoracic disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001781 ! -property_value: IAO:0000589 "insect prothoracic leg disc (drosophila)" xsd:string -intersection_of: UBERON:6001781 ! insect prothoracic leg disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001784 ! -property_value: IAO:0000589 "insect genital disc (drosophila)" xsd:string -intersection_of: UBERON:6001784 ! insect genital disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001785 ! -property_value: IAO:0000589 "insect male genital disc (drosophila)" xsd:string -intersection_of: UBERON:6001785 ! insect male genital disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001787 ! -property_value: IAO:0000589 "insect female genital disc (drosophila)" xsd:string -intersection_of: UBERON:6001787 ! insect female genital disc -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001790 ! -property_value: IAO:0000589 "insect histoblast nest (drosophila)" xsd:string -intersection_of: UBERON:6001790 ! insect histoblast nest -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001842 ! -property_value: IAO:0000589 "insect embryonic/larval digestive system (drosophila)" xsd:string -intersection_of: UBERON:6001842 ! insect embryonic/larval digestive system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001845 ! -property_value: IAO:0000589 "insect cephalopharyngeal skeleton (drosophila)" xsd:string -intersection_of: UBERON:6001845 ! insect cephalopharyngeal skeleton -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001848 ! -property_value: IAO:0000589 "insect epipharyngeal sclerite (drosophila)" xsd:string -intersection_of: UBERON:6001848 ! insect epipharyngeal sclerite -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001911 ! -property_value: IAO:0000589 "insect embryonic/larval nervous system (drosophila)" xsd:string -intersection_of: UBERON:6001911 ! insect embryonic/larval nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001919 ! -property_value: IAO:0000589 "insect embryonic/larval central nervous system (drosophila)" xsd:string -intersection_of: UBERON:6001919 ! insect embryonic/larval central nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001920 ! -property_value: IAO:0000589 "insect embryonic/larval brain (drosophila)" xsd:string -intersection_of: UBERON:6001920 ! insect embryonic/larval brain -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00001925 ! -property_value: IAO:0000589 "insect embryonic/larval protocerebrum (drosophila)" xsd:string -intersection_of: UBERON:6001925 ! insect embryonic/larval protocerebrum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00002639 ! -property_value: IAO:0000589 "insect larval sense organ (drosophila)" xsd:string -intersection_of: UBERON:6002639 ! insect larval sense organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00002642 ! -property_value: IAO:0000589 "insect embryonic/larval ocular segment sensillum (drosophila)" xsd:string -intersection_of: UBERON:6002642 ! insect embryonic/larval ocular segment sensillum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003005 ! -property_value: IAO:0000589 "insect adult tagma (drosophila)" xsd:string -intersection_of: UBERON:6003005 ! insect adult tagma -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003006 ! -property_value: IAO:0000589 "insect adult segment (drosophila)" xsd:string -intersection_of: UBERON:6003006 ! insect adult segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003007 ! -property_value: IAO:0000589 "insect adult head (drosophila)" xsd:string -intersection_of: UBERON:6003007 ! insect adult head -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003009 ! -property_value: IAO:0000589 "insect adult head segment (drosophila)" xsd:string -intersection_of: UBERON:6003009 ! insect adult head segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003010 ! -property_value: IAO:0000589 "insect adult procephalic segment (drosophila)" xsd:string -intersection_of: UBERON:6003010 ! insect adult procephalic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003011 ! -property_value: IAO:0000589 "insect adult labral segment (drosophila)" xsd:string -intersection_of: UBERON:6003011 ! insect adult labral segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003012 ! -property_value: IAO:0000589 "insect adult antennal segment (drosophila)" xsd:string -intersection_of: UBERON:6003012 ! insect adult antennal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003018 ! -property_value: IAO:0000589 "insect adult thorax (drosophila)" xsd:string -intersection_of: UBERON:6003018 ! insect adult thorax -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003019 ! -property_value: IAO:0000589 "insect adult thoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6003019 ! insect adult thoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003020 ! -property_value: IAO:0000589 "insect adult prothoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6003020 ! insect adult prothoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003021 ! -property_value: IAO:0000589 "insect adult mesothoracic segment (drosophila)" xsd:string -intersection_of: UBERON:6003021 ! insect adult mesothoracic segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003023 ! -property_value: IAO:0000589 "insect adult abdomen (drosophila)" xsd:string -intersection_of: UBERON:6003023 ! insect adult abdomen -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003024 ! -property_value: IAO:0000589 "insect adult abdominal segment (drosophila)" xsd:string -intersection_of: UBERON:6003024 ! insect adult abdominal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003039 ! -property_value: IAO:0000589 "dorsal trunk of insect trachea (drosophila)" xsd:string -intersection_of: UBERON:6003039 ! dorsal trunk of insect trachea -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003259 ! -property_value: IAO:0000589 "insect adult somatic muscle (drosophila)" xsd:string -intersection_of: UBERON:6003259 ! insect adult somatic muscle -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003559 ! -property_value: IAO:0000589 "insect adult nervous system (drosophila)" xsd:string -intersection_of: UBERON:6003559 ! insect adult nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003623 ! -property_value: IAO:0000589 "insect adult central nervous system (drosophila)" xsd:string -intersection_of: UBERON:6003623 ! insect adult central nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003624 ! -property_value: IAO:0000589 "insect adult brain (drosophila)" xsd:string -intersection_of: UBERON:6003624 ! insect adult brain -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003626 ! -property_value: IAO:0000589 "insect supraesophageal ganglion (drosophila)" xsd:string -intersection_of: UBERON:6003626 ! insect supraesophageal ganglion -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003627 ! -property_value: IAO:0000589 "insect protocerebrum (drosophila)" xsd:string -intersection_of: UBERON:6003627 ! insect protocerebrum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00003632 ! -property_value: IAO:0000589 "insect adult central complex (drosophila)" xsd:string -intersection_of: UBERON:6003632 ! insect adult central complex -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004203 ! -property_value: IAO:0000589 "insect adult clypeo-labral anlage (drosophila)" xsd:string -intersection_of: UBERON:6004203 ! insect adult clypeo-labral anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004296 ! -property_value: IAO:0000589 "insect sex comb (drosophila)" xsd:string -intersection_of: UBERON:6004296 ! insect sex comb -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004340 ! -property_value: IAO:0000589 "insect wing hair (drosophila)" xsd:string -intersection_of: UBERON:6004340 ! insect wing hair -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004475 ! -property_value: IAO:0000589 "insect sclerite (drosophila)" xsd:string -intersection_of: UBERON:6004475 ! insect sclerite -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004476 ! -property_value: IAO:0000589 "insect tergite (drosophila)" xsd:string -intersection_of: UBERON:6004476 ! insect tergite -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004477 ! -property_value: IAO:0000589 "insect sternite (drosophila)" xsd:string -intersection_of: UBERON:6004477 ! insect sternite -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004481 ! -property_value: IAO:0000589 "insect adult external head (drosophila)" xsd:string -intersection_of: UBERON:6004481 ! insect adult external head -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004519 ! -property_value: IAO:0000589 "insect arista (drosophila)" xsd:string -intersection_of: UBERON:6004519 ! insect arista -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004520 ! -property_value: IAO:0000589 "insect mouthpart (drosophila)" xsd:string -intersection_of: UBERON:6004520 ! insect mouthpart -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004521 ! -property_value: IAO:0000589 "insect clypeus (drosophila)" xsd:string -intersection_of: UBERON:6004521 ! insect clypeus -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004535 ! -property_value: IAO:0000589 "insect proboscis (drosophila)" xsd:string -intersection_of: UBERON:6004535 ! insect proboscis -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004540 ! -property_value: IAO:0000589 "insect basiproboscis (drosophila)" xsd:string -intersection_of: UBERON:6004540 ! insect basiproboscis -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004551 ! -property_value: IAO:0000589 "insect adult external thorax (drosophila)" xsd:string -intersection_of: UBERON:6004551 ! insect adult external thorax -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004552 ! -property_value: IAO:0000589 "insect tergum (drosophila)" xsd:string -intersection_of: UBERON:6004552 ! insect tergum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004578 ! -property_value: IAO:0000589 "insect adult external mesothorax (drosophila)" xsd:string -intersection_of: UBERON:6004578 ! insect adult external mesothorax -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004579 ! -property_value: IAO:0000589 "insect dorsal mesothorax (drosophila)" xsd:string -intersection_of: UBERON:6004579 ! insect dorsal mesothorax -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004580 ! -property_value: IAO:0000589 "insect mesothoracic tergum (drosophila)" xsd:string -intersection_of: UBERON:6004580 ! insect mesothoracic tergum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004646 ! -property_value: IAO:0000589 "insect tarsal segment (drosophila)" xsd:string -intersection_of: UBERON:6004646 ! insect tarsal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004648 ! -property_value: IAO:0000589 "insect metatarsus (drosophila)" xsd:string -intersection_of: UBERON:6004648 ! insect metatarsus -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004663 ! -property_value: IAO:0000589 "insect prothoracic leg (drosophila)" xsd:string -intersection_of: UBERON:6004663 ! insect prothoracic leg -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004668 ! -property_value: IAO:0000589 "insect prothoracic tarsal segment (drosophila)" xsd:string -intersection_of: UBERON:6004668 ! insect prothoracic tarsal segment -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004670 ! -property_value: IAO:0000589 "insect prothoracic metatarsus (drosophila)" xsd:string -intersection_of: UBERON:6004670 ! insect prothoracic metatarsus -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004788 ! -property_value: IAO:0000589 "insect adult external abdomen (drosophila)" xsd:string -intersection_of: UBERON:6004788 ! insect adult external abdomen -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004823 ! -property_value: IAO:0000589 "insect analia (drosophila)" xsd:string -intersection_of: UBERON:6004823 ! insect analia -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004824 ! -property_value: IAO:0000589 "insect female analia (drosophila)" xsd:string -intersection_of: UBERON:6004824 ! insect female analia -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004825 ! -property_value: IAO:0000589 "insect male analia (drosophila)" xsd:string -intersection_of: UBERON:6004825 ! insect male analia -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004979 ! -property_value: IAO:0000589 "insect trichome (drosophila)" xsd:string -intersection_of: UBERON:6004979 ! insect trichome -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004983 ! -property_value: IAO:0000589 "insect embryonic/larval cuticle (drosophila)" xsd:string -intersection_of: UBERON:6004983 ! insect embryonic/larval cuticle -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00004986 ! -property_value: IAO:0000589 "insect third instar larval cuticle (drosophila)" xsd:string -intersection_of: UBERON:6004986 ! insect third instar larval cuticle -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005023 ! -property_value: IAO:0000589 "insect imaginal precursor (drosophila)" xsd:string -intersection_of: UBERON:6005023 ! insect imaginal precursor -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005036 ! -property_value: IAO:0000589 "insect tracheal pit (drosophila)" xsd:string -intersection_of: UBERON:6005036 ! insect tracheal pit -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005037 ! -property_value: IAO:0000589 "insect tracheal primordium (drosophila)" xsd:string -intersection_of: UBERON:6005037 ! insect tracheal primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005043 ! -property_value: IAO:0000589 "insect trachea (drosophila)" xsd:string -intersection_of: UBERON:6005043 ! insect trachea -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005054 ! -property_value: IAO:0000589 "insect spiracle (drosophila)" xsd:string -intersection_of: UBERON:6005054 ! insect spiracle -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005096 ! -property_value: IAO:0000589 "insect stomatogastric nervous system (drosophila)" xsd:string -intersection_of: UBERON:6005096 ! insect stomatogastric nervous system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005168 ! -property_value: IAO:0000589 "insect external sensory organ (drosophila)" xsd:string -intersection_of: UBERON:6005168 ! insect external sensory organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005177 ! -property_value: IAO:0000589 "insect chaeta (drosophila)" xsd:string -intersection_of: UBERON:6005177 ! insect chaeta -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005378 ! -property_value: IAO:0000589 "insect wing margin (drosophila)" xsd:string -intersection_of: UBERON:6005378 ! insect wing margin -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005380 ! -property_value: IAO:0000589 "insect pharynx (drosophila)" xsd:string -intersection_of: UBERON:6005380 ! insect pharynx -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005393 ! -property_value: IAO:0000589 "insect embryonic/larval integumentary system (drosophila)" xsd:string -intersection_of: UBERON:6005393 ! insect embryonic/larval integumentary system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005396 ! -property_value: IAO:0000589 "insect adult integumentary system (drosophila)" xsd:string -intersection_of: UBERON:6005396 ! insect adult integumentary system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005413 ! -property_value: IAO:0000589 "insect anlage in statu nascendi (drosophila)" xsd:string -intersection_of: UBERON:6005413 ! insect anlage in statu nascendi -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005427 ! -property_value: IAO:0000589 "insect ectoderm anlage (drosophila)" xsd:string -intersection_of: UBERON:6005427 ! insect ectoderm anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005428 ! -property_value: IAO:0000589 "insect dorsal ectoderm anlage (drosophila)" xsd:string -intersection_of: UBERON:6005428 ! insect dorsal ectoderm anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005434 ! -property_value: IAO:0000589 "insect visual anlage (drosophila)" xsd:string -intersection_of: UBERON:6005434 ! insect visual anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005436 ! -property_value: IAO:0000589 "insect trunk mesoderm anlage (drosophila)" xsd:string -intersection_of: UBERON:6005436 ! insect trunk mesoderm anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005439 ! -property_value: IAO:0000589 "insect clypeo-labral anlage (drosophila)" xsd:string -intersection_of: UBERON:6005439 ! insect clypeo-labral anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005461 ! -property_value: IAO:0000589 "insect circulatory system primordium (drosophila)" xsd:string -intersection_of: UBERON:6005461 ! insect circulatory system primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005467 ! -property_value: IAO:0000589 "insect lymph gland primordium (drosophila)" xsd:string -intersection_of: UBERON:6005467 ! insect lymph gland primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005514 ! -property_value: IAO:0000589 "insect adult clypeo-labral primordium (drosophila)" xsd:string -intersection_of: UBERON:6005514 ! insect adult clypeo-labral primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005526 ! -property_value: IAO:0000589 "insect dorsal epidermis primordium (drosophila)" xsd:string -intersection_of: UBERON:6005526 ! insect dorsal epidermis primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005533 ! -property_value: IAO:0000589 "insect ventral epidermis primordium (drosophila)" xsd:string -intersection_of: UBERON:6005533 ! insect ventral epidermis primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005538 ! -property_value: IAO:0000589 "insect clypeo-labral primordium (drosophila)" xsd:string -intersection_of: UBERON:6005538 ! insect clypeo-labral primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005558 ! -property_value: IAO:0000589 "insect ventral ectoderm (drosophila)" xsd:string -intersection_of: UBERON:6005558 ! insect ventral ectoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005569 ! -property_value: IAO:0000589 "insect presumptive embryonic/larval tracheal system (drosophila)" xsd:string -intersection_of: UBERON:6005569 ! insect presumptive embryonic/larval tracheal system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005805 ! -property_value: IAO:0000589 "insect Bolwig organ (drosophila)" xsd:string -intersection_of: UBERON:6005805 ! insect Bolwig organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005830 ! -property_value: IAO:0000589 "insect Bolwig organ primordium (drosophila)" xsd:string -intersection_of: UBERON:6005830 ! insect Bolwig organ primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005831 ! -property_value: IAO:0000589 "insect dorsal imaginal precursor (drosophila)" xsd:string -intersection_of: UBERON:6005831 ! insect dorsal imaginal precursor -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00005913 ! -property_value: IAO:0000589 "insect arista lateral (drosophila)" xsd:string -intersection_of: UBERON:6005913 ! insect arista lateral -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00006011 ! -property_value: IAO:0000589 "insect pharate adult (drosophila)" xsd:string -intersection_of: UBERON:6006011 ! insect pharate adult -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00006032 ! -property_value: IAO:0000589 "insect mesothoracic tergum primordium (drosophila)" xsd:string -intersection_of: UBERON:6006032 ! insect mesothoracic tergum primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007020 ! -property_value: IAO:0000589 "insect metatarsus of male prothoracic leg (drosophila)" xsd:string -intersection_of: UBERON:6007020 ! insect metatarsus of male prothoracic leg -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007045 ! -property_value: IAO:0000589 "insect trunk ectoderm (drosophila)" xsd:string -intersection_of: UBERON:6007045 ! insect trunk ectoderm -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007046 ! -property_value: IAO:0000589 "insect dorsal ectoderm derivative (drosophila)" xsd:string -intersection_of: UBERON:6007046 ! insect dorsal ectoderm derivative -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007070 ! -property_value: IAO:0000589 "insect centro-posterior medial synaptic neuropil domain (drosophila)" xsd:string -intersection_of: UBERON:6007070 ! insect centro-posterior medial synaptic neuropil domain -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007116 ! -property_value: IAO:0000589 "insect presumptive embryonic/larval system (drosophila)" xsd:string -intersection_of: UBERON:6007116 ! insect presumptive embryonic/larval system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007145 ! -property_value: IAO:0000589 "insect adult protocerebrum (drosophila)" xsd:string -intersection_of: UBERON:6007145 ! insect adult protocerebrum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007149 ! -property_value: IAO:0000589 "segment of antenna (drosophila)" xsd:string -intersection_of: UBERON:6007149 ! segment of antenna -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007150 ! -property_value: IAO:0000589 "insect segment of leg (drosophila)" xsd:string -intersection_of: UBERON:6007150 ! insect segment of leg -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007231 ! -property_value: IAO:0000589 "insect external sensillum (drosophila)" xsd:string -intersection_of: UBERON:6007231 ! insect external sensillum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007232 ! -property_value: IAO:0000589 "insect eo-type sensillum (drosophila)" xsd:string -intersection_of: UBERON:6007232 ! insect eo-type sensillum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007233 ! -property_value: IAO:0000589 "insect internal sensillum (drosophila)" xsd:string -intersection_of: UBERON:6007233 ! insect internal sensillum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007240 ! -property_value: IAO:0000589 "insect embryonic/larval sensillum (drosophila)" xsd:string -intersection_of: UBERON:6007240 ! insect embryonic/larval sensillum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007242 ! -property_value: IAO:0000589 "insect embryonic/larval head sensillum (drosophila)" xsd:string -intersection_of: UBERON:6007242 ! insect embryonic/larval head sensillum -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007245 ! -property_value: IAO:0000589 "insect cuticular specialization (drosophila)" xsd:string -intersection_of: UBERON:6007245 ! insect cuticular specialization -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007248 ! -property_value: IAO:0000589 "insect chorionic specialization (drosophila)" xsd:string -intersection_of: UBERON:6007248 ! insect chorionic specialization -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007280 ! -property_value: IAO:0000589 "insect embryonic/larval head sense organ (drosophila)" xsd:string -intersection_of: UBERON:6007280 ! insect embryonic/larval head sense organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007284 ! -property_value: IAO:0000589 "insect region of integument (drosophila)" xsd:string -intersection_of: UBERON:6007284 ! insect region of integument -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007285 ! -property_value: IAO:0000589 "insect segmental subdivision of integument (drosophila)" xsd:string -intersection_of: UBERON:6007285 ! insect segmental subdivision of integument -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007288 ! -property_value: IAO:0000589 "insect integumentary specialisation (drosophila)" xsd:string -intersection_of: UBERON:6007288 ! insect integumentary specialisation -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007289 ! -property_value: IAO:0000589 "insect tagmatic subdivision of integument (drosophila)" xsd:string -intersection_of: UBERON:6007289 ! insect tagmatic subdivision of integument -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007331 ! -property_value: IAO:0000589 "insect segmental subdivision of organ system (drosophila)" xsd:string -intersection_of: UBERON:6007331 ! insect segmental subdivision of organ system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007373 ! -property_value: IAO:0000589 "insect internal sense organ (drosophila)" xsd:string -intersection_of: UBERON:6007373 ! insect internal sense organ -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00007424 ! -property_value: IAO:0000589 "insect epithelial furrow (drosophila)" xsd:string -intersection_of: UBERON:6007424 ! insect epithelial furrow -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00016022 ! -property_value: IAO:0000589 "insect abdominal histoblast primordium (drosophila)" xsd:string -intersection_of: UBERON:6016022 ! insect abdominal histoblast primordium -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00017021 ! -property_value: IAO:0000589 "insect abdominal histoblast anlage (drosophila)" xsd:string -intersection_of: UBERON:6017021 ! insect abdominal histoblast anlage -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00040003 ! -property_value: IAO:0000589 "insect non-connected developing system (drosophila)" xsd:string -intersection_of: UBERON:6040003 ! insect non-connected developing system -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00040005 ! -property_value: IAO:0000589 "insect synaptic neuropil (drosophila)" xsd:string -intersection_of: UBERON:6040005 ! insect synaptic neuropil -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00040007 ! -property_value: IAO:0000589 "insect synaptic neuropil domain (drosophila)" xsd:string -intersection_of: UBERON:6040007 ! insect synaptic neuropil domain -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00041000 ! -property_value: IAO:0000589 "insect synaptic neuropil block (drosophila)" xsd:string -intersection_of: UBERON:6041000 ! insect synaptic neuropil block -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00100153 ! -property_value: IAO:0000589 "insect sensilla row (drosophila)" xsd:string -intersection_of: UBERON:6100153 ! insect sensilla row -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00110636 ! -property_value: IAO:0000589 "insect adult cerebral ganglion (drosophila)" xsd:string -intersection_of: UBERON:6110636 ! insect adult cerebral ganglion -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00110746 ! -property_value: IAO:0000589 "insect presumptive prothoracic metatarsus (drosophila)" xsd:string -intersection_of: UBERON:6110746 ! insect presumptive prothoracic metatarsus -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:00110811 ! -property_value: IAO:0000589 "insect presumptive arista (drosophila)" xsd:string -intersection_of: UBERON:6110811 ! insect presumptive arista -intersection_of: part_of NCBITaxon:7227 - -[Term] -id: FBbt:ENTITY -name: FBbt entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7227 -relationship: only_in_taxon NCBITaxon:7227 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-fbbt.owl b/src/ontology/bridge/uberon-bridge-to-fbbt.owl index 8f952e5262..28e0afe03f 100644 --- a/src/ontology/bridge/uberon-bridge-to-fbbt.owl +++ b/src/ontology/bridge/uberon-bridge-to-fbbt.owl @@ -7,20 +7,13 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - David Osumi-Sutherland - Uberon editors - Taxonomic equivalence axioms between the drosophila anatomy ontology and Uberon. Note that currently Uberon focuses on chordate anatomy so there are only a minimal set of equivalencies for high level classes. In future Uberon may bridge via the arthropod anatomy ontology - Uberon bridge to fbbt - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + David Osumi-Sutherland + Uberon editors + Taxonomic equivalence axioms between the Drosophila Anatomy Ontology and Uberon. + Uberon bridge to FBbt @@ -36,18 +29,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -56,215 +37,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -281,42 +72,13 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -345,8 +107,7 @@ - multicellular organism (drosophila) - FBbt:00000001 + multicellular organism (drosophila) @@ -365,8 +126,7 @@ - arthropod tagma (drosophila) - FBbt:00000002 + arthropod tagma (drosophila) @@ -385,30 +145,7 @@ - organismal segment (drosophila) - FBbt:00000003 - - - - - - - - - - - - - - - - - - - - head (drosophila) - panarthropod head (drosophila) - FBbt:00000004 + organismal segment (drosophila) @@ -427,8 +164,7 @@ - insect ocular segment (drosophila) - FBbt:00000005 + insect ocular segment (drosophila) @@ -447,8 +183,7 @@ - insect head segment (drosophila) - FBbt:00000006 + insect head segment (drosophila) @@ -467,8 +202,7 @@ - procephalic segment (drosophila) - FBbt:00000007 + procephalic segment (drosophila) @@ -487,8 +221,7 @@ - labral segment (drosophila) - FBbt:00000008 + labral segment (drosophila) @@ -507,8 +240,7 @@ - antennal segment (drosophila) - FBbt:00000009 + antennal segment (drosophila) @@ -527,8 +259,7 @@ - insect gnathal segment (drosophila) - FBbt:00000011 + insect gnathal segment (drosophila) @@ -547,8 +278,7 @@ - insect labial segment (drosophila) - FBbt:00000014 + insect labial segment (drosophila) @@ -567,8 +297,7 @@ - insect thorax (drosophila) - FBbt:00000015 + insect thorax (drosophila) @@ -587,8 +316,7 @@ - insect thoracic segment (drosophila) - FBbt:00000016 + insect thoracic segment (drosophila) @@ -607,8 +335,7 @@ - insect prothoracic segment (drosophila) - FBbt:00000017 + insect prothoracic segment (drosophila) @@ -627,8 +354,7 @@ - insect mesothoracic segment (drosophila) - FBbt:00000018 + insect mesothoracic segment (drosophila) @@ -647,8 +373,7 @@ - insect metathoracic segment (drosophila) - FBbt:00000019 + insect metathoracic segment (drosophila) @@ -667,8 +392,7 @@ - insect abdomen (drosophila) - FBbt:00000020 + insect abdomen (drosophila) @@ -687,8 +411,7 @@ - insect abdominal segment (drosophila) - FBbt:00000021 + insect abdominal segment (drosophila) @@ -707,8 +430,7 @@ - insect abdominal segment 8 (drosophila) - FBbt:00000029 + insect abdominal segment 8 (drosophila) @@ -727,8 +449,7 @@ - insect abdominal segment 9 (drosophila) - FBbt:00000030 + insect abdominal segment 9 (drosophila) @@ -747,8 +468,7 @@ - egg chorion (drosophila) - FBbt:00000038 + egg chorion (drosophila) @@ -767,8 +487,7 @@ - vitelline membrane (drosophila) - FBbt:00000042 + vitelline membrane (drosophila) @@ -787,8 +506,7 @@ - insect dorsal appendage (drosophila) - FBbt:00000046 + insect dorsal appendage (drosophila) @@ -807,8 +525,7 @@ - embryo (drosophila) - FBbt:00000052 + embryo (drosophila) @@ -827,8 +544,7 @@ - ventral midline (drosophila) - FBbt:00000093 + ventral midline (drosophila) @@ -847,8 +563,7 @@ - amnioserosa (drosophila) - FBbt:00000095 + amnioserosa (drosophila) @@ -867,8 +582,7 @@ - insect ventral furrow (drosophila) - FBbt:00000096 + insect ventral furrow (drosophila) @@ -887,8 +601,7 @@ - insect cephalic furrow (drosophila) - FBbt:00000097 + insect cephalic furrow (drosophila) @@ -907,8 +620,7 @@ - insect mesoderm anlage (drosophila) - FBbt:00000104 + insect mesoderm anlage (drosophila) @@ -927,8 +639,7 @@ - germ layer (drosophila) - FBbt:00000110 + germ layer (drosophila) @@ -947,8 +658,7 @@ - ectoderm (drosophila) - FBbt:00000111 + ectoderm (drosophila) @@ -967,8 +677,7 @@ - insect dorsal ectoderm (drosophila) - FBbt:00000112 + insect dorsal ectoderm (drosophila) @@ -987,8 +696,7 @@ - insect anterior ectoderm (drosophila) - FBbt:00000119 + insect anterior ectoderm (drosophila) @@ -1007,8 +715,7 @@ - proctodeum (drosophila) - FBbt:00000123 + proctodeum (drosophila) @@ -1027,8 +734,7 @@ - endoderm (drosophila) - FBbt:00000125 + endoderm (drosophila) @@ -1047,8 +753,7 @@ - mesoderm (drosophila) - FBbt:00000126 + mesoderm (drosophila) @@ -1067,8 +772,7 @@ - insect trunk mesoderm (drosophila) - FBbt:00000128 + insect trunk mesoderm (drosophila) @@ -1087,8 +791,7 @@ - insect visceral mesoderm (drosophila) - FBbt:00000130 + insect visceral mesoderm (drosophila) @@ -1107,8 +810,7 @@ - mesectoderm (drosophila) - FBbt:00000136 + mesectoderm (drosophila) @@ -1127,8 +829,7 @@ - embryonic tagma (drosophila) - FBbt:00000137 + embryonic tagma (drosophila) @@ -1147,8 +848,7 @@ - insect embryonic segment (drosophila) - FBbt:00000154 + insect embryonic segment (drosophila) @@ -1167,8 +867,7 @@ - embryonic head (drosophila) - FBbt:00000155 + embryonic head (drosophila) @@ -1187,8 +886,7 @@ - insect embryonic head segment (drosophila) - FBbt:00000157 + insect embryonic head segment (drosophila) @@ -1207,8 +905,7 @@ - insect embryonic procephalic segment (drosophila) - FBbt:00000158 + insect embryonic procephalic segment (drosophila) @@ -1227,8 +924,7 @@ - insect embryonic antennal segment (drosophila) - FBbt:00000160 + insect embryonic antennal segment (drosophila) @@ -1247,8 +943,7 @@ - insect embryonic gnathal segment (drosophila) - FBbt:00000162 + insect embryonic gnathal segment (drosophila) @@ -1267,8 +962,7 @@ - insect embryonic labial segment (drosophila) - FBbt:00000165 + insect embryonic labial segment (drosophila) @@ -1287,8 +981,7 @@ - insect embryonic thorax (drosophila) - FBbt:00000166 + insect embryonic thorax (drosophila) @@ -1307,8 +1000,7 @@ - insect embryonic thoracic segment (drosophila) - FBbt:00000167 + insect embryonic thoracic segment (drosophila) @@ -1327,8 +1019,7 @@ - insect embryonic prothoracic segment (drosophila) - FBbt:00000168 + insect embryonic prothoracic segment (drosophila) @@ -1347,8 +1038,7 @@ - insect embryonic mesothoracic segment (drosophila) - FBbt:00000169 + insect embryonic mesothoracic segment (drosophila) @@ -1367,8 +1057,7 @@ - insect embryonic metathoracic segment (drosophila) - FBbt:00000170 + insect embryonic metathoracic segment (drosophila) @@ -1387,8 +1076,7 @@ - insect embryonic abdomen (drosophila) - FBbt:00000171 + insect embryonic abdomen (drosophila) @@ -1407,8 +1095,7 @@ - insect embryonic abdominal segment (drosophila) - FBbt:00000172 + insect embryonic abdominal segment (drosophila) @@ -1427,8 +1114,7 @@ - insect embryonic abdominal segment 8 (drosophila) - FBbt:00000180 + insect embryonic abdominal segment 8 (drosophila) @@ -1447,8 +1133,7 @@ - insect embryonic abdominal segment 9 (drosophila) - FBbt:00000181 + insect embryonic abdominal segment 9 (drosophila) @@ -1467,8 +1152,7 @@ - insect embryonic optic lobe primordium (drosophila) - FBbt:00000186 + insect embryonic optic lobe primordium (drosophila) @@ -1487,8 +1171,7 @@ - stomodeum (drosophila) - FBbt:00000439 + stomodeum (drosophila) @@ -1507,8 +1190,7 @@ - insect presumptive embryonic/larval nervous system (drosophila) - FBbt:00001055 + insect presumptive embryonic/larval nervous system (drosophila) @@ -1527,8 +1209,7 @@ - insect presumptive embryonic/larval central nervous system (drosophila) - FBbt:00001056 + insect presumptive embryonic/larval central nervous system (drosophila) @@ -1547,8 +1228,7 @@ - neurectoderm (drosophila) - FBbt:00001057 + neurectoderm (drosophila) @@ -1567,8 +1247,7 @@ - insect visual primordium (drosophila) - FBbt:00001059 + insect visual primordium (drosophila) @@ -1587,8 +1266,7 @@ - insect embryonic brain (drosophila) - FBbt:00001060 + insect embryonic brain (drosophila) @@ -1607,8 +1285,7 @@ - insect proneural cluster (drosophila) - FBbt:00001135 + insect proneural cluster (drosophila) @@ -1627,8 +1304,7 @@ - insect embryonic imaginal precursor (drosophila) - FBbt:00001648 + insect embryonic imaginal precursor (drosophila) @@ -1647,8 +1323,7 @@ - insect imaginal disc primordium (drosophila) - FBbt:00001649 + insect imaginal disc primordium (drosophila) @@ -1667,8 +1342,7 @@ - insect labial disc primordium (drosophila) - FBbt:00001650 + insect labial disc primordium (drosophila) @@ -1687,8 +1361,7 @@ - insect eye-antennal disc primordium (drosophila) - FBbt:00001652 + insect eye-antennal disc primordium (drosophila) @@ -1707,8 +1380,7 @@ - insect dorsal thoracic disc primordium (drosophila) - FBbt:00001653 + insect dorsal thoracic disc primordium (drosophila) @@ -1727,8 +1399,7 @@ - insect dorsal mesothoracic disc primordium (drosophila) - FBbt:00001655 + insect dorsal mesothoracic disc primordium (drosophila) @@ -1747,8 +1418,7 @@ - insect dorsal metathoracic disc primordium (drosophila) - FBbt:00001656 + insect dorsal metathoracic disc primordium (drosophila) @@ -1767,8 +1437,7 @@ - insect ventral thoracic disc primordium (drosophila) - FBbt:00001657 + insect ventral thoracic disc primordium (drosophila) @@ -1787,8 +1456,7 @@ - insect ventral prothoracic disc primordium (drosophila) - FBbt:00001658 + insect ventral prothoracic disc primordium (drosophila) @@ -1807,8 +1475,7 @@ - insect genital disc primordium (drosophila) - FBbt:00001661 + insect genital disc primordium (drosophila) @@ -1827,8 +1494,7 @@ - insect male genital disc primordium (drosophila) - FBbt:00001662 + insect male genital disc primordium (drosophila) @@ -1847,8 +1513,7 @@ - insect female genital disc primordium (drosophila) - FBbt:00001663 + insect female genital disc primordium (drosophila) @@ -1867,8 +1532,7 @@ - insect embryonic/larval circulatory system (drosophila) - FBbt:00001664 + insect embryonic/larval circulatory system (drosophila) @@ -1887,8 +1551,7 @@ - insect embryonic/larval lymph gland (drosophila) - FBbt:00001668 + insect embryonic/larval lymph gland (drosophila) @@ -1907,8 +1570,7 @@ - retrocerebral complex (drosophila) - FBbt:00001718 + retrocerebral complex (drosophila) @@ -1927,8 +1589,7 @@ - insect ring gland (drosophila) - FBbt:00001722 + insect ring gland (drosophila) @@ -1947,8 +1608,7 @@ - larva (drosophila) - FBbt:00001727 + larva (drosophila) @@ -1967,8 +1627,7 @@ - insect larval tagma (drosophila) - FBbt:00001728 + insect larval tagma (drosophila) @@ -1987,8 +1646,7 @@ - insect larval segment (drosophila) - FBbt:00001729 + insect larval segment (drosophila) @@ -2007,8 +1665,7 @@ - insect larval head (drosophila) - FBbt:00001730 + insect larval head (drosophila) @@ -2027,8 +1684,7 @@ - insect larval ocular segment (drosophila) - FBbt:00001731 + insect larval ocular segment (drosophila) @@ -2047,8 +1703,7 @@ - insect larval head segment (drosophila) - FBbt:00001732 + insect larval head segment (drosophila) @@ -2067,8 +1722,7 @@ - insect larval procephalic segment (drosophila) - FBbt:00001733 + insect larval procephalic segment (drosophila) @@ -2087,8 +1741,7 @@ - insect larval labral segment (drosophila) - FBbt:00001734 + insect larval labral segment (drosophila) @@ -2107,8 +1760,7 @@ - insect larval antennal segment (drosophila) - FBbt:00001735 + insect larval antennal segment (drosophila) @@ -2127,8 +1779,7 @@ - insect larval gnathal segment (drosophila) - FBbt:00001737 + insect larval gnathal segment (drosophila) @@ -2147,8 +1798,7 @@ - insect larval labial segment (drosophila) - FBbt:00001740 + insect larval labial segment (drosophila) @@ -2167,8 +1817,7 @@ - insect larval thorax (drosophila) - FBbt:00001741 + insect larval thorax (drosophila) @@ -2187,8 +1836,7 @@ - insect larval thoracic segment (drosophila) - FBbt:00001742 + insect larval thoracic segment (drosophila) @@ -2207,8 +1855,7 @@ - insect larval prothoracic segment (drosophila) - FBbt:00001743 + insect larval prothoracic segment (drosophila) @@ -2227,8 +1874,7 @@ - insect larval mesothoracic segment (drosophila) - FBbt:00001744 + insect larval mesothoracic segment (drosophila) @@ -2247,8 +1893,7 @@ - insect larval metathoracic segment (drosophila) - FBbt:00001745 + insect larval metathoracic segment (drosophila) @@ -2267,8 +1912,7 @@ - insect larval abdomen (drosophila) - FBbt:00001746 + insect larval abdomen (drosophila) @@ -2287,8 +1931,7 @@ - insect larval abdominal segment (drosophila) - FBbt:00001747 + insect larval abdominal segment (drosophila) @@ -2307,8 +1950,7 @@ - insect larval abdominal segment 8 (drosophila) - FBbt:00001755 + insect larval abdominal segment 8 (drosophila) @@ -2327,8 +1969,7 @@ - insect larval abdominal segment 9 (drosophila) - FBbt:00001756 + insect larval abdominal segment 9 (drosophila) @@ -2347,8 +1988,7 @@ - insect embryonic/larval imaginal precursor (drosophila) - FBbt:00001760 + insect embryonic/larval imaginal precursor (drosophila) @@ -2367,8 +2007,7 @@ - imaginal disc (drosophila) - FBbt:00001761 + imaginal disc (drosophila) @@ -2387,8 +2026,7 @@ - insect labial disc (drosophila) - FBbt:00001764 + insect labial disc (drosophila) @@ -2407,8 +2045,7 @@ - insect clypeo-labral disc (drosophila) - FBbt:00001765 + insect clypeo-labral disc (drosophila) @@ -2427,8 +2064,7 @@ - insect eye-antennal disc (drosophila) - FBbt:00001766 + insect eye-antennal disc (drosophila) @@ -2447,8 +2083,7 @@ - insect antennal disc (drosophila) - FBbt:00001767 + insect antennal disc (drosophila) @@ -2467,8 +2102,7 @@ - insect dorsal thoracic disc (drosophila) - FBbt:00001776 + insect dorsal thoracic disc (drosophila) @@ -2487,8 +2121,7 @@ - insect wing disc (drosophila) - FBbt:00001778 + insect wing disc (drosophila) @@ -2507,8 +2140,7 @@ - insect haltere disc (drosophila) - FBbt:00001779 + insect haltere disc (drosophila) @@ -2527,8 +2159,7 @@ - insect ventral thoracic disc (drosophila) - FBbt:00001780 + insect ventral thoracic disc (drosophila) @@ -2547,8 +2178,7 @@ - insect prothoracic leg disc (drosophila) - FBbt:00001781 + insect prothoracic leg disc (drosophila) @@ -2567,8 +2197,7 @@ - insect genital disc (drosophila) - FBbt:00001784 + insect genital disc (drosophila) @@ -2587,8 +2216,7 @@ - insect male genital disc (drosophila) - FBbt:00001785 + insect male genital disc (drosophila) @@ -2607,8 +2235,7 @@ - insect female genital disc (drosophila) - FBbt:00001787 + insect female genital disc (drosophila) @@ -2627,8 +2254,7 @@ - insect histoblast nest (drosophila) - FBbt:00001790 + insect histoblast nest (drosophila) @@ -2647,8 +2273,7 @@ - insect embryonic/larval digestive system (drosophila) - FBbt:00001842 + insect embryonic/larval digestive system (drosophila) @@ -2667,8 +2292,7 @@ - insect cephalopharyngeal skeleton (drosophila) - FBbt:00001845 + insect cephalopharyngeal skeleton (drosophila) @@ -2687,8 +2311,7 @@ - insect epipharyngeal sclerite (drosophila) - FBbt:00001848 + insect epipharyngeal sclerite (drosophila) @@ -2707,8 +2330,7 @@ - insect embryonic/larval nervous system (drosophila) - FBbt:00001911 + insect embryonic/larval nervous system (drosophila) @@ -2727,8 +2349,7 @@ - insect embryonic/larval central nervous system (drosophila) - FBbt:00001919 + insect embryonic/larval central nervous system (drosophila) @@ -2747,8 +2368,7 @@ - insect embryonic/larval brain (drosophila) - FBbt:00001920 + insect embryonic/larval brain (drosophila) @@ -2767,8 +2387,7 @@ - insect embryonic/larval protocerebrum (drosophila) - FBbt:00001925 + insect embryonic/larval protocerebrum (drosophila) @@ -2787,8 +2406,7 @@ - neuron projection bundle connecting eye with brain (drosophila) - FBbt:00001956 + neuron projection bundle connecting eye with brain (drosophila) @@ -2807,8 +2425,7 @@ - insect larval sense organ (drosophila) - FBbt:00002639 + insect larval sense organ (drosophila) @@ -2827,8 +2444,7 @@ - insect embryonic/larval ocular segment sensillum (drosophila) - FBbt:00002642 + insect embryonic/larval ocular segment sensillum (drosophila) @@ -2847,8 +2463,7 @@ - prepupa (drosophila) - FBbt:00002952 + prepupa (drosophila) @@ -2867,8 +2482,7 @@ - pupa (drosophila) - FBbt:00002953 + pupa (drosophila) @@ -2887,8 +2501,7 @@ - adult organism (drosophila) - FBbt:00003004 + adult organism (drosophila) @@ -2907,8 +2520,7 @@ - insect adult tagma (drosophila) - FBbt:00003005 + insect adult tagma (drosophila) @@ -2927,8 +2539,7 @@ - insect adult segment (drosophila) - FBbt:00003006 + insect adult segment (drosophila) @@ -2947,8 +2558,7 @@ - insect adult head (drosophila) - FBbt:00003007 + insect adult head (drosophila) @@ -2967,8 +2577,7 @@ - insect adult head segment (drosophila) - FBbt:00003009 + insect adult head segment (drosophila) @@ -2987,8 +2596,7 @@ - insect adult procephalic segment (drosophila) - FBbt:00003010 + insect adult procephalic segment (drosophila) @@ -3007,8 +2615,7 @@ - insect adult labral segment (drosophila) - FBbt:00003011 + insect adult labral segment (drosophila) @@ -3027,8 +2634,7 @@ - insect adult antennal segment (drosophila) - FBbt:00003012 + insect adult antennal segment (drosophila) @@ -3047,8 +2653,7 @@ - insect adult thorax (drosophila) - FBbt:00003018 + insect adult thorax (drosophila) @@ -3067,8 +2672,7 @@ - insect adult thoracic segment (drosophila) - FBbt:00003019 + insect adult thoracic segment (drosophila) @@ -3087,8 +2691,7 @@ - insect adult prothoracic segment (drosophila) - FBbt:00003020 + insect adult prothoracic segment (drosophila) @@ -3107,8 +2710,7 @@ - insect adult mesothoracic segment (drosophila) - FBbt:00003021 + insect adult mesothoracic segment (drosophila) @@ -3127,8 +2729,7 @@ - insect adult abdomen (drosophila) - FBbt:00003023 + insect adult abdomen (drosophila) @@ -3147,8 +2748,7 @@ - insect adult abdominal segment (drosophila) - FBbt:00003024 + insect adult abdominal segment (drosophila) @@ -3167,8 +2767,7 @@ - dorsal trunk of insect trachea (drosophila) - FBbt:00003039 + dorsal trunk of insect trachea (drosophila) @@ -3187,8 +2786,7 @@ - digestive tract (drosophila) - FBbt:00003125 + digestive tract (drosophila) @@ -3207,8 +2805,7 @@ - mouth (drosophila) - FBbt:00003126 + mouth (drosophila) @@ -3227,8 +2824,7 @@ - dorsal vessel heart (drosophila) - FBbt:00003154 + dorsal vessel heart (drosophila) @@ -3247,8 +2843,7 @@ - insect adult somatic muscle (drosophila) - FBbt:00003259 + insect adult somatic muscle (drosophila) @@ -3267,8 +2862,7 @@ - insect adult nervous system (drosophila) - FBbt:00003559 + insect adult nervous system (drosophila) @@ -3287,8 +2881,7 @@ - insect adult central nervous system (drosophila) - FBbt:00003623 + insect adult central nervous system (drosophila) @@ -3307,8 +2900,7 @@ - insect adult brain (drosophila) - FBbt:00003624 + insect adult brain (drosophila) @@ -3327,8 +2919,7 @@ - insect supraesophageal ganglion (drosophila) - FBbt:00003626 + insect supraesophageal ganglion (drosophila) @@ -3347,8 +2938,7 @@ - insect protocerebrum (drosophila) - FBbt:00003627 + insect protocerebrum (drosophila) @@ -3367,8 +2957,7 @@ - insect adult central complex (drosophila) - FBbt:00003632 + insect adult central complex (drosophila) @@ -3387,8 +2976,7 @@ - arthropod optic lobe (drosophila) - FBbt:00003701 + arthropod optic lobe (drosophila) @@ -3407,8 +2995,7 @@ - head sensillum (drosophila) - FBbt:00004114 + head sensillum (drosophila) @@ -3427,8 +3014,7 @@ - compound eye corneal lens (drosophila) - FBbt:00004199 + compound eye corneal lens (drosophila) @@ -3447,8 +3033,7 @@ - photoreceptor array (drosophila) - FBbt:00004200 + photoreceptor array (drosophila) @@ -3467,8 +3052,7 @@ - insect adult clypeo-labral anlage (drosophila) - FBbt:00004203 + insect adult clypeo-labral anlage (drosophila) @@ -3487,8 +3071,7 @@ - embryonic structure (drosophila) - FBbt:00004208 + embryonic structure (drosophila) @@ -3507,8 +3090,7 @@ - insect sex comb (drosophila) - FBbt:00004296 + insect sex comb (drosophila) @@ -3527,8 +3109,7 @@ - insect wing hair (drosophila) - FBbt:00004340 + insect wing hair (drosophila) @@ -3547,8 +3128,7 @@ - insect sclerite (drosophila) - FBbt:00004475 + insect sclerite (drosophila) @@ -3567,8 +3147,7 @@ - insect tergite (drosophila) - FBbt:00004476 + insect tergite (drosophila) @@ -3587,8 +3166,7 @@ - insect sternite (drosophila) - FBbt:00004477 + insect sternite (drosophila) @@ -3607,8 +3185,7 @@ - insect adult external head (drosophila) - FBbt:00004481 + insect adult external head (drosophila) @@ -3627,8 +3204,7 @@ - insect head capsule (drosophila) - FBbt:00004482 + insect head capsule (drosophila) @@ -3647,8 +3223,7 @@ - arthropod occiput (drosophila) - FBbt:00004492 + arthropod occiput (drosophila) @@ -3667,8 +3242,7 @@ - dorsal ocellus (drosophila) - FBbt:00004505 + dorsal ocellus (drosophila) @@ -3687,8 +3261,7 @@ - lateral ocellus (drosophila) - FBbt:00004506 + lateral ocellus (drosophila) @@ -3707,8 +3280,7 @@ - median eye (drosophila) - FBbt:00004507 + median eye (drosophila) @@ -3727,8 +3299,7 @@ - compound eye (drosophila) - FBbt:00004508 + compound eye (drosophila) @@ -3747,8 +3318,7 @@ - ommatidium (drosophila) - FBbt:00004510 + ommatidium (drosophila) @@ -3767,8 +3337,7 @@ - antenna (drosophila) - FBbt:00004511 + antenna (drosophila) @@ -3787,8 +3356,7 @@ - insect arista (drosophila) - FBbt:00004519 + insect arista (drosophila) @@ -3807,8 +3375,7 @@ - insect mouthpart (drosophila) - FBbt:00004520 + insect mouthpart (drosophila) @@ -3827,8 +3394,7 @@ - insect clypeus (drosophila) - FBbt:00004521 + insect clypeus (drosophila) @@ -3847,8 +3413,7 @@ - insect labrum (drosophila) - FBbt:00004522 + insect labrum (drosophila) @@ -3867,8 +3432,7 @@ - insect proboscis (drosophila) - FBbt:00004535 + insect proboscis (drosophila) @@ -3887,8 +3451,7 @@ - insect basiproboscis (drosophila) - FBbt:00004540 + insect basiproboscis (drosophila) @@ -3907,8 +3470,7 @@ - insect adult external thorax (drosophila) - FBbt:00004551 + insect adult external thorax (drosophila) @@ -3927,8 +3489,7 @@ - insect tergum (drosophila) - FBbt:00004552 + insect tergum (drosophila) @@ -3947,8 +3508,7 @@ - arthropod sternum (drosophila) - FBbt:00004557 + arthropod sternum (drosophila) @@ -3967,8 +3527,7 @@ - insect adult external mesothorax (drosophila) - FBbt:00004578 + insect adult external mesothorax (drosophila) @@ -3987,8 +3546,7 @@ - insect dorsal mesothorax (drosophila) - FBbt:00004579 + insect dorsal mesothorax (drosophila) @@ -4007,8 +3565,7 @@ - insect mesothoracic tergum (drosophila) - FBbt:00004580 + insect mesothoracic tergum (drosophila) @@ -4027,8 +3584,7 @@ - insect leg (drosophila) - FBbt:00004640 + insect leg (drosophila) @@ -4047,8 +3603,7 @@ - arthropod tibia (drosophila) - FBbt:00004642 + arthropod tibia (drosophila) @@ -4067,8 +3622,7 @@ - insect tarsal segment (drosophila) - FBbt:00004646 + insect tarsal segment (drosophila) @@ -4087,8 +3641,7 @@ - insect metatarsus (drosophila) - FBbt:00004648 + insect metatarsus (drosophila) @@ -4107,8 +3660,7 @@ - insect prothoracic leg (drosophila) - FBbt:00004663 + insect prothoracic leg (drosophila) @@ -4127,8 +3679,7 @@ - insect prothoracic tarsal segment (drosophila) - FBbt:00004668 + insect prothoracic tarsal segment (drosophila) @@ -4147,8 +3698,7 @@ - insect prothoracic metatarsus (drosophila) - FBbt:00004670 + insect prothoracic metatarsus (drosophila) @@ -4167,8 +3717,7 @@ - imaginal disc-derived wing (drosophila) - FBbt:00004729 + imaginal disc-derived wing (drosophila) @@ -4187,8 +3736,7 @@ - imaginal disc-derived wing vein (drosophila) - FBbt:00004751 + imaginal disc-derived wing vein (drosophila) @@ -4207,8 +3755,7 @@ - haltere (drosophila) - FBbt:00004783 + haltere (drosophila) @@ -4227,8 +3774,7 @@ - insect adult external abdomen (drosophila) - FBbt:00004788 + insect adult external abdomen (drosophila) @@ -4247,8 +3793,7 @@ - insect analia (drosophila) - FBbt:00004823 + insect analia (drosophila) @@ -4267,8 +3812,7 @@ - insect female analia (drosophila) - FBbt:00004824 + insect female analia (drosophila) @@ -4287,8 +3831,7 @@ - insect male analia (drosophila) - FBbt:00004825 + insect male analia (drosophila) @@ -4307,8 +3850,7 @@ - intromittent organ (drosophila) - FBbt:00004850 + intromittent organ (drosophila) @@ -4327,8 +3869,7 @@ - anatomical system (drosophila) - FBbt:00004856 + anatomical system (drosophila) @@ -4347,8 +3888,7 @@ - reproductive system (drosophila) - FBbt:00004857 + reproductive system (drosophila) @@ -4367,8 +3907,7 @@ - gonad (drosophila) - FBbt:00004858 + gonad (drosophila) @@ -4387,8 +3926,7 @@ - female reproductive system (drosophila) - FBbt:00004864 + female reproductive system (drosophila) @@ -4407,8 +3945,7 @@ - ovary (drosophila) - FBbt:00004865 + ovary (drosophila) @@ -4427,8 +3964,7 @@ - egg chamber (drosophila) - FBbt:00004894 + egg chamber (drosophila) @@ -4447,8 +3983,7 @@ - spermathecum (drosophila) - FBbt:00004921 + spermathecum (drosophila) @@ -4467,8 +4002,7 @@ - male reproductive system (drosophila) - FBbt:00004927 + male reproductive system (drosophila) @@ -4487,8 +4021,7 @@ - testis (drosophila) - FBbt:00004928 + testis (drosophila) @@ -4507,8 +4040,7 @@ - seminal fluid secreting gland (drosophila) - FBbt:00004958 + seminal fluid secreting gland (drosophila) @@ -4527,8 +4059,7 @@ - integumental system (drosophila) - FBbt:00004969 + integumental system (drosophila) @@ -4547,8 +4078,7 @@ - chitin-based cuticle (drosophila) - FBbt:00004970 + chitin-based cuticle (drosophila) @@ -4567,8 +4097,7 @@ - exocuticle (drosophila) - FBbt:00004973 + exocuticle (drosophila) @@ -4587,8 +4116,7 @@ - endocuticle (drosophila) - FBbt:00004974 + endocuticle (drosophila) @@ -4607,8 +4135,7 @@ - insect trichome (drosophila) - FBbt:00004979 + insect trichome (drosophila) @@ -4627,8 +4154,7 @@ - insect embryonic/larval cuticle (drosophila) - FBbt:00004983 + insect embryonic/larval cuticle (drosophila) @@ -4647,8 +4173,7 @@ - insect third instar larval cuticle (drosophila) - FBbt:00004986 + insect third instar larval cuticle (drosophila) @@ -4667,8 +4192,7 @@ - puparium (drosophila) - FBbt:00004987 + puparium (drosophila) @@ -4687,8 +4211,7 @@ - outer epithelium (drosophila) - FBbt:00004993 + outer epithelium (drosophila) @@ -4707,8 +4230,7 @@ - insect imaginal precursor (drosophila) - FBbt:00005023 + insect imaginal precursor (drosophila) @@ -4727,8 +4249,7 @@ - open tracheal system (drosophila) - FBbt:00005024 + open tracheal system (drosophila) @@ -4747,8 +4268,7 @@ - insect tracheal pit (drosophila) - FBbt:00005036 + insect tracheal pit (drosophila) @@ -4767,8 +4287,7 @@ - insect tracheal primordium (drosophila) - FBbt:00005037 + insect tracheal primordium (drosophila) @@ -4787,8 +4306,7 @@ - insect trachea (drosophila) - FBbt:00005043 + insect trachea (drosophila) @@ -4807,8 +4325,7 @@ - insect spiracle (drosophila) - FBbt:00005054 + insect spiracle (drosophila) @@ -4827,8 +4344,7 @@ - digestive system (drosophila) - FBbt:00005055 + digestive system (drosophila) @@ -4847,8 +4363,7 @@ - renal system (drosophila) - FBbt:00005056 + renal system (drosophila) @@ -4867,8 +4382,7 @@ - open circulatory system (drosophila) - FBbt:00005057 + open circulatory system (drosophila) @@ -4887,8 +4401,7 @@ - coelemic cavity lumen (drosophila) - FBbt:00005060 + coelemic cavity lumen (drosophila) @@ -4907,8 +4420,7 @@ - hemolymph (drosophila) - FBbt:00005061 + hemolymph (drosophila) @@ -4927,8 +4439,7 @@ - arthropod fat body (drosophila) - FBbt:00005066 + arthropod fat body (drosophila) @@ -4947,8 +4458,7 @@ - endocrine system (drosophila) - FBbt:00005068 + endocrine system (drosophila) @@ -4967,8 +4477,7 @@ - nervous system (drosophila) - FBbt:00005093 + nervous system (drosophila) @@ -4987,8 +4496,7 @@ - central nervous system (drosophila) - FBbt:00005094 + central nervous system (drosophila) @@ -5007,8 +4515,7 @@ - brain (drosophila) - FBbt:00005095 + brain (drosophila) @@ -5027,8 +4534,7 @@ - insect stomatogastric nervous system (drosophila) - FBbt:00005096 + insect stomatogastric nervous system (drosophila) @@ -5047,8 +4553,7 @@ - ventral nerve cord (drosophila) - FBbt:00005097 + ventral nerve cord (drosophila) @@ -5067,8 +4572,7 @@ - peripheral nervous system (drosophila) - FBbt:00005098 + peripheral nervous system (drosophila) @@ -5087,8 +4591,7 @@ - neuron projection bundle (drosophila) - FBbt:00005099 + neuron projection bundle (drosophila) @@ -5107,8 +4610,7 @@ - axon tract (drosophila) - FBbt:00005100 + axon tract (drosophila) @@ -5127,8 +4629,7 @@ - nerve (drosophila) - FBbt:00005105 + nerve (drosophila) @@ -5147,8 +4648,7 @@ - sensory nerve (drosophila) - FBbt:00005136 + sensory nerve (drosophila) @@ -5167,8 +4667,7 @@ - neuropil (drosophila) - FBbt:00005139 + neuropil (drosophila) @@ -5187,8 +4686,7 @@ - sense organ (drosophila) - FBbt:00005155 + sense organ (drosophila) @@ -5207,8 +4705,7 @@ - chemosensory organ (drosophila) - FBbt:00005157 + chemosensory organ (drosophila) @@ -5227,8 +4724,7 @@ - olfactory organ (drosophila) - FBbt:00005158 + olfactory organ (drosophila) @@ -5247,8 +4743,7 @@ - gustatory organ (drosophila) - FBbt:00005159 + gustatory organ (drosophila) @@ -5267,8 +4762,7 @@ - eye (drosophila) - FBbt:00005162 + eye (drosophila) @@ -5287,8 +4781,7 @@ - insect external sensory organ (drosophila) - FBbt:00005168 + insect external sensory organ (drosophila) @@ -5307,8 +4800,7 @@ - insect chaeta (drosophila) - FBbt:00005177 + insect chaeta (drosophila) @@ -5327,8 +4819,7 @@ - chordotonal organ (drosophila) - FBbt:00005215 + chordotonal organ (drosophila) @@ -5347,8 +4838,7 @@ - gastrula (drosophila) - FBbt:00005317 + gastrula (drosophila) @@ -5367,8 +4857,7 @@ - late embryo (drosophila) - FBbt:00005333 + late embryo (drosophila) @@ -5387,8 +4876,7 @@ - second instar larva (drosophila) - FBbt:00005338 + second instar larva (drosophila) @@ -5407,8 +4895,7 @@ - insect wing margin (drosophila) - FBbt:00005378 + insect wing margin (drosophila) @@ -5427,8 +4914,7 @@ - foregut (drosophila) - FBbt:00005379 + foregut (drosophila) @@ -5440,7 +4926,6 @@ - @@ -5448,9 +4933,7 @@ - insect pharynx (drosophila) - pharynx (drosophila) - FBbt:00005380 + pharynx (drosophila) @@ -5469,8 +4952,7 @@ - saliva-secreting gland (drosophila) - FBbt:00005382 + saliva-secreting gland (drosophila) @@ -5489,8 +4971,7 @@ - midgut (drosophila) - FBbt:00005383 + midgut (drosophila) @@ -5509,8 +4990,7 @@ - hindgut (drosophila) - FBbt:00005384 + hindgut (drosophila) @@ -5529,8 +5009,7 @@ - neural glomerulus (drosophila) - FBbt:00005386 + neural glomerulus (drosophila) @@ -5549,8 +5028,7 @@ - insect embryonic/larval integumentary system (drosophila) - FBbt:00005393 + insect embryonic/larval integumentary system (drosophila) @@ -5569,8 +5047,7 @@ - insect adult integumentary system (drosophila) - FBbt:00005396 + insect adult integumentary system (drosophila) @@ -5589,8 +5066,7 @@ - insect anlage in statu nascendi (drosophila) - FBbt:00005413 + insect anlage in statu nascendi (drosophila) @@ -5609,8 +5085,7 @@ - anlage (drosophila) - FBbt:00005426 + anlage (drosophila) @@ -5629,8 +5104,7 @@ - insect ectoderm anlage (drosophila) - FBbt:00005427 + insect ectoderm anlage (drosophila) @@ -5649,8 +5123,7 @@ - insect dorsal ectoderm anlage (drosophila) - FBbt:00005428 + insect dorsal ectoderm anlage (drosophila) @@ -5669,8 +5142,7 @@ - insect visual anlage (drosophila) - FBbt:00005434 + insect visual anlage (drosophila) @@ -5689,8 +5161,7 @@ - insect trunk mesoderm anlage (drosophila) - FBbt:00005436 + insect trunk mesoderm anlage (drosophila) @@ -5709,8 +5180,7 @@ - insect clypeo-labral anlage (drosophila) - FBbt:00005439 + insect clypeo-labral anlage (drosophila) @@ -5729,8 +5199,7 @@ - insect circulatory system primordium (drosophila) - FBbt:00005461 + insect circulatory system primordium (drosophila) @@ -5749,8 +5218,7 @@ - insect lymph gland primordium (drosophila) - FBbt:00005467 + insect lymph gland primordium (drosophila) @@ -5769,8 +5237,7 @@ - primordium (drosophila) - FBbt:00005495 + primordium (drosophila) @@ -5789,8 +5256,7 @@ - insect adult clypeo-labral primordium (drosophila) - FBbt:00005514 + insect adult clypeo-labral primordium (drosophila) @@ -5809,8 +5275,7 @@ - insect dorsal epidermis primordium (drosophila) - FBbt:00005526 + insect dorsal epidermis primordium (drosophila) @@ -5829,8 +5294,7 @@ - insect ventral epidermis primordium (drosophila) - FBbt:00005533 + insect ventral epidermis primordium (drosophila) @@ -5849,8 +5313,7 @@ - insect clypeo-labral primordium (drosophila) - FBbt:00005538 + insect clypeo-labral primordium (drosophila) @@ -5869,8 +5332,7 @@ - insect ventral ectoderm (drosophila) - FBbt:00005558 + insect ventral ectoderm (drosophila) @@ -5889,8 +5351,7 @@ - insect presumptive embryonic/larval tracheal system (drosophila) - FBbt:00005569 + insect presumptive embryonic/larval tracheal system (drosophila) @@ -5909,8 +5370,7 @@ - terminal part of digestive tract (drosophila) - FBbt:00005756 + terminal part of digestive tract (drosophila) @@ -5929,8 +5389,7 @@ - arthropod neurohemal organ (drosophila) - FBbt:00005757 + arthropod neurohemal organ (drosophila) @@ -5949,8 +5408,7 @@ - Malpighian tubule (drosophila) - FBbt:00005786 + Malpighian tubule (drosophila) @@ -5969,8 +5427,7 @@ - corpus cardiacum (drosophila) - FBbt:00005799 + corpus cardiacum (drosophila) @@ -5989,8 +5446,7 @@ - corpus allatum (drosophila) - FBbt:00005800 + corpus allatum (drosophila) @@ -6009,8 +5465,7 @@ - mushroom body (drosophila) - FBbt:00005801 + mushroom body (drosophila) @@ -6029,8 +5484,7 @@ - pars intercerebralis (drosophila) - FBbt:00005802 + pars intercerebralis (drosophila) @@ -6049,8 +5503,7 @@ - insect Bolwig organ (drosophila) - FBbt:00005805 + insect Bolwig organ (drosophila) @@ -6069,8 +5522,7 @@ - articulation (drosophila) - FBbt:00005811 + articulation (drosophila) @@ -6089,8 +5541,7 @@ - insect Bolwig organ primordium (drosophila) - FBbt:00005830 + insect Bolwig organ primordium (drosophila) @@ -6109,8 +5560,7 @@ - insect dorsal imaginal precursor (drosophila) - FBbt:00005831 + insect dorsal imaginal precursor (drosophila) @@ -6129,8 +5579,7 @@ - extraembryonic structure (drosophila) - FBbt:00005835 + extraembryonic structure (drosophila) @@ -6149,8 +5598,7 @@ - insect arista lateral (drosophila) - FBbt:00005913 + insect arista lateral (drosophila) @@ -6169,8 +5617,7 @@ - insect pharate adult (drosophila) - FBbt:00006011 + insect pharate adult (drosophila) @@ -6189,8 +5636,7 @@ - insect mesothoracic tergum primordium (drosophila) - FBbt:00006032 + insect mesothoracic tergum primordium (drosophila) @@ -6209,8 +5655,7 @@ - appendage (drosophila) - FBbt:00007000 + appendage (drosophila) @@ -6229,8 +5674,7 @@ - anatomical structure (drosophila) - FBbt:00007001 + anatomical structure (drosophila) @@ -6249,8 +5693,7 @@ - tissue (drosophila) - FBbt:00007003 + tissue (drosophila) @@ -6269,8 +5712,7 @@ - male organism (drosophila) - FBbt:00007004 + male organism (drosophila) @@ -6289,8 +5731,7 @@ - epithelium (drosophila) - FBbt:00007005 + epithelium (drosophila) @@ -6309,8 +5750,7 @@ - developing anatomical structure (drosophila) - FBbt:00007006 + developing anatomical structure (drosophila) @@ -6329,8 +5769,7 @@ - organism subdivision (drosophila) - FBbt:00007009 + organism subdivision (drosophila) @@ -6349,8 +5788,7 @@ - multi-tissue structure (drosophila) - FBbt:00007010 + multi-tissue structure (drosophila) @@ -6369,8 +5807,7 @@ - female organism (drosophila) - FBbt:00007011 + female organism (drosophila) @@ -6389,8 +5826,7 @@ - acellular anatomical structure (drosophila) - FBbt:00007013 + acellular anatomical structure (drosophila) @@ -6409,8 +5845,7 @@ - immaterial anatomical entity (drosophila) - FBbt:00007015 + immaterial anatomical entity (drosophila) @@ -6429,8 +5864,7 @@ - material anatomical entity (drosophila) - FBbt:00007016 + material anatomical entity (drosophila) @@ -6449,8 +5883,7 @@ - anatomical space (drosophila) - FBbt:00007017 + anatomical space (drosophila) @@ -6469,8 +5902,7 @@ - subdivision of organism along appendicular axis (drosophila) - FBbt:00007018 + subdivision of organism along appendicular axis (drosophila) @@ -6489,8 +5921,7 @@ - organism substance (drosophila) - FBbt:00007019 + organism substance (drosophila) @@ -6509,8 +5940,7 @@ - insect metatarsus of male prothoracic leg (drosophila) - FBbt:00007020 + insect metatarsus of male prothoracic leg (drosophila) @@ -6529,8 +5959,7 @@ - simple columnar epithelium (drosophila) - FBbt:00007027 + simple columnar epithelium (drosophila) @@ -6549,8 +5978,7 @@ - insect trunk ectoderm (drosophila) - FBbt:00007045 + insect trunk ectoderm (drosophila) @@ -6569,8 +5997,7 @@ - insect dorsal ectoderm derivative (drosophila) - FBbt:00007046 + insect dorsal ectoderm derivative (drosophila) @@ -6589,8 +6016,7 @@ - multi cell part structure (drosophila) - FBbt:00007060 + multi cell part structure (drosophila) @@ -6609,8 +6035,7 @@ - insect centro-posterior medial synaptic neuropil domain (drosophila) - FBbt:00007070 + insect centro-posterior medial synaptic neuropil domain (drosophila) @@ -6629,8 +6054,7 @@ - insect presumptive embryonic/larval system (drosophila) - FBbt:00007116 + insect presumptive embryonic/larval system (drosophila) @@ -6649,8 +6073,7 @@ - insect adult protocerebrum (drosophila) - FBbt:00007145 + insect adult protocerebrum (drosophila) @@ -6669,8 +6092,7 @@ - segment of antenna (drosophila) - FBbt:00007149 + segment of antenna (drosophila) @@ -6689,8 +6111,7 @@ - insect segment of leg (drosophila) - FBbt:00007150 + insect segment of leg (drosophila) @@ -6709,8 +6130,7 @@ - arthropod sensillum (drosophila) - FBbt:00007152 + arthropod sensillum (drosophila) @@ -6729,8 +6149,7 @@ - cell cluster organ (drosophila) - FBbt:00007229 + cell cluster organ (drosophila) @@ -6749,8 +6168,7 @@ - compound cell cluster organ (drosophila) - FBbt:00007230 + compound cell cluster organ (drosophila) @@ -6769,8 +6187,7 @@ - insect external sensillum (drosophila) - FBbt:00007231 + insect external sensillum (drosophila) @@ -6789,8 +6206,7 @@ - insect eo-type sensillum (drosophila) - FBbt:00007232 + insect eo-type sensillum (drosophila) @@ -6809,8 +6225,7 @@ - insect internal sensillum (drosophila) - FBbt:00007233 + insect internal sensillum (drosophila) @@ -6829,8 +6244,7 @@ - insect embryonic/larval sensillum (drosophila) - FBbt:00007240 + insect embryonic/larval sensillum (drosophila) @@ -6849,8 +6263,7 @@ - insect embryonic/larval head sensillum (drosophila) - FBbt:00007242 + insect embryonic/larval head sensillum (drosophila) @@ -6869,8 +6282,7 @@ - insect cuticular specialization (drosophila) - FBbt:00007245 + insect cuticular specialization (drosophila) @@ -6889,8 +6301,7 @@ - insect chorionic specialization (drosophila) - FBbt:00007248 + insect chorionic specialization (drosophila) @@ -6909,8 +6320,7 @@ - disconnected anatomical group (drosophila) - FBbt:00007276 + disconnected anatomical group (drosophila) @@ -6929,8 +6339,7 @@ - anatomical cluster (drosophila) - FBbt:00007277 + anatomical cluster (drosophila) @@ -6949,8 +6358,7 @@ - non-connected functional system (drosophila) - FBbt:00007278 + non-connected functional system (drosophila) @@ -6969,8 +6377,7 @@ - insect embryonic/larval head sense organ (drosophila) - FBbt:00007280 + insect embryonic/larval head sense organ (drosophila) @@ -6989,8 +6396,7 @@ - insect region of integument (drosophila) - FBbt:00007284 + insect region of integument (drosophila) @@ -7009,8 +6415,7 @@ - insect segmental subdivision of integument (drosophila) - FBbt:00007285 + insect segmental subdivision of integument (drosophila) @@ -7029,8 +6434,7 @@ - insect integumentary specialisation (drosophila) - FBbt:00007288 + insect integumentary specialisation (drosophila) @@ -7049,8 +6453,7 @@ - insect tagmatic subdivision of integument (drosophila) - FBbt:00007289 + insect tagmatic subdivision of integument (drosophila) @@ -7069,8 +6472,7 @@ - organ system subdivision (drosophila) - FBbt:00007330 + organ system subdivision (drosophila) @@ -7089,8 +6491,7 @@ - insect segmental subdivision of organ system (drosophila) - FBbt:00007331 + insect segmental subdivision of organ system (drosophila) @@ -7109,8 +6510,7 @@ - insect internal sense organ (drosophila) - FBbt:00007373 + insect internal sense organ (drosophila) @@ -7129,8 +6529,7 @@ - lumen of open tracheal system trachea (drosophila) - FBbt:00007410 + lumen of open tracheal system trachea (drosophila) @@ -7149,8 +6548,7 @@ - insect epithelial furrow (drosophila) - FBbt:00007424 + insect epithelial furrow (drosophila) @@ -7169,8 +6567,7 @@ - epithelial tube (drosophila) - FBbt:00007474 + epithelial tube (drosophila) @@ -7189,8 +6586,7 @@ - sensory system (drosophila) - FBbt:00007692 + sensory system (drosophila) @@ -7209,8 +6605,7 @@ - insect abdominal histoblast primordium (drosophila) - FBbt:00016022 + insect abdominal histoblast primordium (drosophila) @@ -7229,8 +6624,7 @@ - insect abdominal histoblast anlage (drosophila) - FBbt:00017021 + insect abdominal histoblast anlage (drosophila) @@ -7249,8 +6643,7 @@ - insect non-connected developing system (drosophila) - FBbt:00040003 + insect non-connected developing system (drosophila) @@ -7269,8 +6662,7 @@ - insect synaptic neuropil (drosophila) - FBbt:00040005 + insect synaptic neuropil (drosophila) @@ -7289,8 +6681,7 @@ - insect synaptic neuropil domain (drosophila) - FBbt:00040007 + insect synaptic neuropil domain (drosophila) @@ -7309,28 +6700,7 @@ - insect synaptic neuropil block (drosophila) - FBbt:00041000 - - - - - - - - - - - - - - - - - - - digestive tract epithelium (drosophila) - FBbt:00047143 + insect synaptic neuropil block (drosophila) @@ -7349,8 +6719,7 @@ - anus (drosophila) - FBbt:00047153 + anus (drosophila) @@ -7369,8 +6738,7 @@ - circulatory system dorsal vessel (drosophila) - FBbt:00058291 + circulatory system dorsal vessel (drosophila) @@ -7389,8 +6757,7 @@ - anatomical row (drosophila) - FBbt:00100152 + anatomical row (drosophila) @@ -7409,8 +6776,7 @@ - insect sensilla row (drosophila) - FBbt:00100153 + insect sensilla row (drosophila) @@ -7429,8 +6795,7 @@ - multicellular anatomical structure (drosophila) - FBbt:00100313 + multicellular anatomical structure (drosophila) @@ -7449,8 +6814,7 @@ - duct (drosophila) - FBbt:00100314 + duct (drosophila) @@ -7469,8 +6833,7 @@ - subdivision of digestive tract (drosophila) - FBbt:00100315 + subdivision of digestive tract (drosophila) @@ -7489,8 +6852,7 @@ - digestive tract diverticulum (drosophila) - FBbt:00100316 + digestive tract diverticulum (drosophila) @@ -7509,8 +6871,7 @@ - gland (drosophila) - FBbt:00100317 + gland (drosophila) @@ -7529,8 +6890,7 @@ - insect adult cerebral ganglion (drosophila) - FBbt:00110636 + insect adult cerebral ganglion (drosophila) @@ -7549,8 +6909,7 @@ - insect presumptive prothoracic metatarsus (drosophila) - FBbt:00110746 + insect presumptive prothoracic metatarsus (drosophila) @@ -7569,8 +6928,7 @@ - insect presumptive arista (drosophila) - FBbt:00110811 + insect presumptive arista (drosophila) @@ -7589,34 +6947,7 @@ - anatomical entity (drosophila) - FBbt:10000000 - - - - - - - - - - - - - - - - - - - - - - - - - FBbt:ENTITY - FBbt entity + anatomical entity (drosophila) @@ -7657,12 +6988,6 @@ - - - - - - @@ -8269,12 +7594,6 @@ - - - - - - @@ -8503,12 +7822,6 @@ - - - - - - @@ -9481,12 +8794,6 @@ - - - - - - @@ -9814,9 +9121,35 @@ + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/ontology/bridge/uberon-bridge-to-fbdv.obo b/src/ontology/bridge/uberon-bridge-to-fbdv.obo deleted file mode 100644 index 26d6955383..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-fbdv.obo +++ /dev/null @@ -1,193 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-fbdv -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: FBdv:00005369 ! -property_value: IAO:0000589 "fully formed stage (FBdv)" xsd:string -intersection_of: UBERON:0000066 ! fully formed stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00005289 ! -property_value: IAO:0000589 "embryo stage (FBdv)" xsd:string -intersection_of: UBERON:0000068 ! embryo stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00005336 ! -property_value: IAO:0000589 "larval stage (FBdv)" xsd:string -intersection_of: UBERON:0000069 ! larval stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00005349 ! -property_value: IAO:0000589 "pupal stage (FBdv)" xsd:string -intersection_of: UBERON:0000070 ! pupal stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00000000 ! -property_value: IAO:0000589 "life cycle (FBdv)" xsd:string -intersection_of: UBERON:0000104 ! life cycle -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00007012 ! -property_value: IAO:0000589 "life cycle stage (FBdv)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00005288 ! -property_value: IAO:0000589 "zygote stage (FBdv)" xsd:string -intersection_of: UBERON:0000106 ! zygote stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00000054 ! -property_value: IAO:0000589 "cleavage stage (FBdv)" xsd:string -intersection_of: UBERON:0000107 ! cleavage stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00005317 ! -property_value: IAO:0000589 "gastrula stage (FBdv)" xsd:string -intersection_of: UBERON:0000109 ! gastrula stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00005336 ! -property_value: IAO:0000589 "instar larval stage (FBdv)" xsd:string -intersection_of: UBERON:0004730 ! instar larval stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:00005333 ! -property_value: IAO:0000589 "late embryonic stage (FBdv)" xsd:string -intersection_of: UBERON:0007220 ! late embryonic stage -intersection_of: occurs_in NCBITaxon:7227 - -[Term] -id: FBdv:ENTITY -name: FBdv entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7227 -relationship: only_in_taxon NCBITaxon:7227 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-fbdv.owl b/src/ontology/bridge/uberon-bridge-to-fbdv.owl index 1ba67eb5c8..8fa5bc2e22 100644 --- a/src/ontology/bridge/uberon-bridge-to-fbdv.owl +++ b/src/ontology/bridge/uberon-bridge-to-fbdv.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -339,8 +72,7 @@ - life cycle (FBdv) - FBdv:00000000 + life cycle (drosophila) @@ -359,8 +91,7 @@ - cleavage stage (FBdv) - FBdv:00000054 + cleavage stage (drosophila) @@ -379,8 +110,7 @@ - zygote stage (FBdv) - FBdv:00005288 + zygote stage (drosophila) @@ -399,8 +129,7 @@ - embryo stage (FBdv) - FBdv:00005289 + embryo stage (drosophila) @@ -419,8 +148,7 @@ - gastrula stage (FBdv) - FBdv:00005317 + gastrula stage (drosophila) @@ -439,30 +167,7 @@ - late embryonic stage (FBdv) - FBdv:00005333 - - - - - - - - - - - - - - - - - - - - instar larval stage (FBdv) - larval stage (FBdv) - FBdv:00005336 + late embryonic stage (drosophila) @@ -481,8 +186,7 @@ - pupal stage (FBdv) - FBdv:00005349 + pupal stage (drosophila) @@ -501,8 +205,7 @@ - fully formed stage (FBdv) - FBdv:00005369 + fully formed stage (drosophila) @@ -521,34 +224,7 @@ - life cycle stage (FBdv) - FBdv:00007012 - - - - - - - - - - - - - - - - - - - - - - - - - FBdv:ENTITY - FBdv entity + life cycle stage (drosophila) @@ -571,12 +247,6 @@ - - - - - - @@ -613,18 +283,6 @@ - - - - - - - - - - - - @@ -632,5 +290,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-fma.obo b/src/ontology/bridge/uberon-bridge-to-fma.obo deleted file mode 100644 index ae41f0b91d..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-fma.obo +++ /dev/null @@ -1,36434 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-fma -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to fma" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between the FMA and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Onard Mejino" xsd:string -property_value: dc-contributor "Terry Hayamizu" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/fma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: FMA:17740 ! -property_value: IAO:0000589 "uterine cervix (post-embryonic human)" xsd:string -intersection_of: UBERON:0000002 ! uterine cervix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46472 ! -property_value: IAO:0000589 "nose (post-embryonic human)" xsd:string -intersection_of: UBERON:0000004 ! nose -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16016 ! -property_value: IAO:0000589 "islet of Langerhans (post-embryonic human)" xsd:string -intersection_of: UBERON:0000006 ! islet of Langerhans -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13889 ! -property_value: IAO:0000589 "pituitary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85391 ! -property_value: IAO:0000589 "submucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000009 ! submucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85392 ! -property_value: IAO:0000589 "submucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000009 ! submucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9903 ! -property_value: IAO:0000589 "peripheral nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9907 ! -property_value: IAO:0000589 "parasympathetic nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9904 ! -property_value: IAO:0000589 "somatic nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000012 ! somatic nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9906 ! -property_value: IAO:0000589 "sympathetic nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86166 ! -property_value: IAO:0000589 "zone of skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0000014 ! zone of skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50705 ! -property_value: IAO:0000589 "non-material anatomical boundary (post-embryonic human)" xsd:string -intersection_of: UBERON:0000015 ! non-material anatomical boundary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16018 ! -property_value: IAO:0000589 "endocrine pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0000016 ! endocrine pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16017 ! -property_value: IAO:0000589 "exocrine pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0000017 ! exocrine pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54448 ! -property_value: IAO:0000589 "camera-type eye (post-embryonic human)" xsd:string -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71012 ! -property_value: IAO:0000589 "cutaneous appendage (post-embryonic human)" xsd:string -intersection_of: UBERON:0000021 ! cutaneous appendage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5034 ! -property_value: IAO:0000589 "lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0000029 ! lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62517 ! -property_value: IAO:0000589 "lamina propria (post-embryonic human)" xsd:string -intersection_of: UBERON:0000030 ! lamina propria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265157 ! -property_value: IAO:0000589 "lamina propria of trachea (post-embryonic human)" xsd:string -intersection_of: UBERON:0000031 ! lamina propria of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7154 ! -property_value: IAO:0000589 "head (post-embryonic human)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18634 ! -property_value: IAO:0000589 "primary ovarian follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000035 ! primary ovarian follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18637 ! -property_value: IAO:0000589 "secondary ovarian follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000036 ! secondary ovarian follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18641 ! -property_value: IAO:0000589 "tertiary ovarian follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000037 ! tertiary ovarian follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18665 ! -property_value: IAO:0000589 "follicular fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0000038 ! follicular fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18675 ! -property_value: IAO:0000589 "follicular antrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0000039 ! follicular antrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9581 ! -property_value: IAO:0000589 "serous membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0000042 ! serous membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9721 ! -property_value: IAO:0000589 "tendon (post-embryonic human)" xsd:string -intersection_of: UBERON:0000043 ! tendon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5888 ! -property_value: IAO:0000589 "dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5884 ! -property_value: IAO:0000589 "ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19985 ! -property_value: IAO:0000589 "fornix of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0000051 ! fornix of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61965 ! {notes="inferred"} -property_value: IAO:0000589 "fornix of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0000052 ! fornix of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83865 ! -property_value: IAO:0000589 "fornix of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0000052 ! fornix of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58637 ! -property_value: IAO:0000589 "macula lutea (post-embryonic human)" xsd:string -intersection_of: UBERON:0000053 ! macula lutea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9704 ! -property_value: IAO:0000589 "ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0000056 ! ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19667 ! -property_value: IAO:0000589 "urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0000057 ! urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:30320 ! -property_value: IAO:0000589 "duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0000058 ! duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7201 ! -property_value: IAO:0000589 "large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0000059 ! large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82482 ! -property_value: IAO:0000589 "anatomical wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0000060 ! anatomical wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:305751 ! -property_value: IAO:0000589 "anatomical structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67135 ! -property_value: IAO:0000589 "anatomical structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67498 ! -property_value: IAO:0000589 "organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0000062 ! organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86140 ! -property_value: IAO:0000589 "organ subunit (post-embryonic human)" xsd:string -intersection_of: UBERON:0000063 ! organ subunit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82472 ! -property_value: IAO:0000589 "organ part (post-embryonic human)" xsd:string -intersection_of: UBERON:0000064 ! organ part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265130 ! -property_value: IAO:0000589 "respiratory tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0000065 ! respiratory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72652 ! -property_value: IAO:0000589 "embryo stage (post-embryonic human)" xsd:string -intersection_of: UBERON:0000068 ! embryo stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: FMA:45660 ! -property_value: IAO:0000589 "proximo-distal subdivision of respiratory tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0000072 ! proximo-distal subdivision of respiratory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15624 ! -property_value: IAO:0000589 "renal glomerulus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000074 ! renal glomerulus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85544 ! -property_value: IAO:0000589 "subdivision of skeletal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000075 ! subdivision of skeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87656 ! -property_value: IAO:0000589 "external ectoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0000076 ! external ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45664 ! -property_value: IAO:0000589 "male reproductive system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72171 ! -property_value: IAO:0000589 "mesonephros (post-embryonic human)" xsd:string -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72172 ! -property_value: IAO:0000589 "metanephros (post-embryonic human)" xsd:string -intersection_of: UBERON:0000081 ! metanephros -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7203 ! -property_value: IAO:0000589 "adult mammalian kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0000082 ! adult mammalian kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:292334 ! -property_value: IAO:0000589 "morula (post-embryonic human)" xsd:string -intersection_of: UBERON:0000085 ! morula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18674 ! -property_value: IAO:0000589 "zona pellucida (post-embryonic human)" xsd:string -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86557 ! -property_value: IAO:0000589 "inner cell mass (post-embryonic human)" xsd:string -intersection_of: UBERON:0000087 ! inner cell mass -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83029 ! -property_value: IAO:0000589 "trophoblast (post-embryonic human)" xsd:string -intersection_of: UBERON:0000088 ! trophoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293873 ! -property_value: IAO:0000589 "hypoblast (generic) (post-embryonic human)" xsd:string -intersection_of: UBERON:0000089 ! hypoblast (generic) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293131 ! -property_value: IAO:0000589 "blastocele (post-embryonic human)" xsd:string -intersection_of: UBERON:0000090 ! blastocele -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293863 ! -property_value: IAO:0000589 "bilaminar disc (post-embryonic human)" xsd:string -intersection_of: UBERON:0000091 ! bilaminar disc -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7145 ! -property_value: IAO:0000589 "membrane organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0000094 ! membrane organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7311 ! -property_value: IAO:0000589 "lobe of lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0000101 ! lobe of lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73750 ! -property_value: IAO:0000589 "lung vasculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0000102 ! lung vasculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24120 ! -property_value: IAO:0000589 "life cycle stage (post-embryonic human)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: FMA:27533 ! -property_value: IAO:0000589 "lung connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0000114 ! lung connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12224 ! -property_value: IAO:0000589 "respiratory tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0000117 ! respiratory tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52585 ! -property_value: IAO:0000589 "perineurium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000121 ! perineurium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52586 ! -property_value: IAO:0000589 "endoneurium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000123 ! endoneurium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12234 ! -property_value: IAO:0000589 "epineurium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000124 ! epineurium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83686 ! -property_value: IAO:0000589 "neural nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000125 ! neural nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54501 ! -property_value: IAO:0000589 "cranial nerve nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000126 ! cranial nerve nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54572 ! -property_value: IAO:0000589 "facial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000127 ! facial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23997 ! -property_value: IAO:0000589 "transverse foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0000130 ! transverse foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23370 ! -property_value: IAO:0000589 "trochlea of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000144 ! trochlea of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18656 ! -property_value: IAO:0000589 "theca cell layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0000155 ! theca cell layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18657 ! -property_value: IAO:0000589 "theca externa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000156 ! theca externa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18658 ! -property_value: IAO:0000589 "theca interna (post-embryonic human)" xsd:string -intersection_of: UBERON:0000157 ! theca interna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:30322 ! -property_value: IAO:0000589 "membranous layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0000158 ! membranous layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82500 ! -property_value: IAO:0000589 "membranous layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0000158 ! membranous layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15703 ! -property_value: IAO:0000589 "anal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0000159 ! anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7199 ! -property_value: IAO:0000589 "intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3724 ! -property_value: IAO:0000589 "orifice (post-embryonic human)" xsd:string -intersection_of: UBERON:0000161 ! orifice -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49184 ! -property_value: IAO:0000589 "mouth (post-embryonic human)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59806 ! -property_value: IAO:0000589 "oral opening (post-embryonic human)" xsd:string -intersection_of: UBERON:0000166 ! oral opening -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20292 ! -property_value: IAO:0000589 "oral cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:222905 ! -property_value: IAO:0000589 "proximal-distal subdivision of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0000168 ! proximal-distal subdivision of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68877 ! -property_value: IAO:0000589 "pair of lungs (post-embryonic human)" xsd:string -intersection_of: UBERON:0000170 ! pair of lungs -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:305905 ! -property_value: IAO:0000589 "amniotic fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0000173 ! amniotic fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9674 ! -property_value: IAO:0000589 "excreta (post-embryonic human)" xsd:string -intersection_of: UBERON:0000174 ! excreta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9670 ! -property_value: IAO:0000589 "blood (post-embryonic human)" xsd:string -intersection_of: UBERON:0000178 ! blood -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14603 ! -property_value: IAO:0000589 "lateral lumbar region of abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0000180 ! lateral lumbar region of abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23479 ! -property_value: IAO:0000589 "neck of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0000199 ! neck of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83874 ! -property_value: IAO:0000589 "gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000200 ! gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52734 ! -property_value: IAO:0000589 "tetrapod frontal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0000209 ! tetrapod frontal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9613 ! -property_value: IAO:0000589 "tetrapod parietal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0000210 ! tetrapod parietal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21496 ! -property_value: IAO:0000589 "ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0000211 ! ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:30319 ! -property_value: IAO:0000589 "ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0000211 ! ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24053 ! -property_value: IAO:0000589 "vertebral arch of axis (post-embryonic human)" xsd:string -intersection_of: UBERON:0000218 ! vertebral arch of axis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24293 ! -property_value: IAO:0000589 "vertebral foramen of atlas (post-embryonic human)" xsd:string -intersection_of: UBERON:0000219 ! vertebral foramen of atlas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24939 ! -property_value: IAO:0000589 "atlanto-occipital joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0000220 ! atlanto-occipital joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224222 ! -property_value: IAO:0000589 "supraauricular point (post-embryonic human)" xsd:string -intersection_of: UBERON:0000221 ! supraauricular point -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63941 ! -property_value: IAO:0000589 "amniotic cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0000301 ! amniotic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22441 ! -property_value: IAO:0000589 "adductor longus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000303 ! adductor longus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45087 ! -property_value: IAO:0000589 "tendon sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0000304 ! tendon sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76715 ! -property_value: IAO:0000589 "tendon sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0000304 ! tendon sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80223 ! -property_value: IAO:0000589 "amnion (post-embryonic human)" xsd:string -intersection_of: UBERON:0000305 ! amnion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10427 ! -property_value: IAO:0000589 "body wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0000309 ! body wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9601 ! -property_value: IAO:0000589 "breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0000310 ! breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75000 ! -property_value: IAO:0000589 "extensor muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000311 ! extensor muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234358 ! -property_value: IAO:0000589 "inner cambium layer of periosteum (post-embryonic human)" xsd:string -intersection_of: UBERON:0000312 ! inner cambium layer of periosteum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33923 ! -property_value: IAO:0000589 "portion of cartilage tissue in tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0000313 ! portion of cartilage tissue in tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14998 ! -property_value: IAO:0000589 "cecum mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000314 ! cecum mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83716 ! -property_value: IAO:0000589 "subarachnoid space (post-embryonic human)" xsd:string -intersection_of: UBERON:0000315 ! subarachnoid space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83689 ! -property_value: IAO:0000589 "cervical mucus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000316 ! cervical mucus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14984 ! -property_value: IAO:0000589 "colonic mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000317 ! colonic mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85388 ! -property_value: IAO:0000589 "colonic mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000317 ! colonic mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83039 ! -property_value: IAO:0000589 "cytotrophoblast (post-embryonic human)" xsd:string -intersection_of: UBERON:0000319 ! cytotrophoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14942 ! -property_value: IAO:0000589 "duodenal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000320 ! duodenal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63919 ! -property_value: IAO:0000589 "late embryo (post-embryonic human)" xsd:string -intersection_of: UBERON:0000323 ! late embryo -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14919 ! -property_value: IAO:0000589 "gastric gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000325 ! gastric gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62973 ! -property_value: IAO:0000589 "pancreatic juice (post-embryonic human)" xsd:string -intersection_of: UBERON:0000326 ! pancreatic juice -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45653 ! -property_value: IAO:0000589 "gut wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0000328 ! gut wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70730 ! -property_value: IAO:0000589 "hair root (post-embryonic human)" xsd:string -intersection_of: UBERON:0000329 ! hair root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14956 ! -property_value: IAO:0000589 "ileal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000331 ! ileal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74596 ! -property_value: IAO:0000589 "yellow bone marrow (post-embryonic human)" xsd:string -intersection_of: UBERON:0000332 ! yellow bone marrow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15052 ! -property_value: IAO:0000589 "intestinal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000333 ! intestinal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:228738 ! -property_value: IAO:0000589 "throat (post-embryonic human)" xsd:string -intersection_of: UBERON:0000341 ! throat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85355 ! -property_value: IAO:0000589 "mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000344 ! mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85358 ! -property_value: IAO:0000589 "mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000344 ! mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62977 ! -property_value: IAO:0000589 "myelin (post-embryonic human)" xsd:string -intersection_of: UBERON:0000345 ! myelin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62983 ! -property_value: IAO:0000589 "entire myelin sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0000347 ! entire myelin sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52621 ! -property_value: IAO:0000589 "ophthalmic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242000 ! -property_value: IAO:0000589 "limbic system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000349 ! limbic system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13427 ! -property_value: IAO:0000589 "nuchal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0000351 ! nuchal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45732 ! -property_value: IAO:0000589 "parenchyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0000353 ! parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55031 ! -property_value: IAO:0000589 "pharyngeal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000355 ! pharyngeal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83041 ! -property_value: IAO:0000589 "blastocyst (post-embryonic human)" xsd:string -intersection_of: UBERON:0000358 ! blastocyst -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74595 ! -property_value: IAO:0000589 "red bone marrow (post-embryonic human)" xsd:string -intersection_of: UBERON:0000361 ! red bone marrow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84189 ! -property_value: IAO:0000589 "reticuloendothelial system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000363 ! reticuloendothelial system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63914 ! -property_value: IAO:0000589 "urothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000365 ! urothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67695 ! -property_value: IAO:0000589 "urothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000365 ! urothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74559 ! -property_value: IAO:0000589 "flexor muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000366 ! flexor muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74999 ! -property_value: IAO:0000589 "flexor muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000366 ! flexor muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22442 ! -property_value: IAO:0000589 "adductor brevis (post-embryonic human)" xsd:string -intersection_of: UBERON:0000368 ! adductor brevis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77616 ! -property_value: IAO:0000589 "corpus striatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0000369 ! corpus striatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22443 ! -property_value: IAO:0000589 "adductor magnus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000370 ! adductor magnus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83040 ! -property_value: IAO:0000589 "syncytiotrophoblast (post-embryonic human)" xsd:string -intersection_of: UBERON:0000371 ! syncytiotrophoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51140 ! -property_value: IAO:0000589 "extensor digitorum brevis pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0000372 ! extensor digitorum brevis pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77208 ! -property_value: IAO:0000589 "tapetum of corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0000373 ! tapetum of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52996 ! -property_value: IAO:0000589 "mandibular nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0000375 ! mandibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24967 ! -property_value: IAO:0000589 "hindlimb stylopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52724 ! -property_value: IAO:0000589 "maxillary nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0000377 ! maxillary nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46689 ! -property_value: IAO:0000589 "tongue muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000378 ! tongue muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7471 ! -property_value: IAO:0000589 "tracheal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000379 ! tracheal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68018 ! -property_value: IAO:0000589 "urinary bladder detrusor smooth muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000381 ! urinary bladder detrusor smooth muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59155 ! -property_value: IAO:0000589 "apocrine sweat gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000382 ! apocrine sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72954 ! -property_value: IAO:0000589 "musculature of body (post-embryonic human)" xsd:string -intersection_of: UBERON:0000383 ! musculature of body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76690 ! -property_value: IAO:0000589 "meniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000387 ! meniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55130 ! -property_value: IAO:0000589 "epiglottis (post-embryonic human)" xsd:string -intersection_of: UBERON:0000388 ! epiglottis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58970 ! -property_value: IAO:0000589 "lens cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0000389 ! lens cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58971 ! -property_value: IAO:0000589 "lens nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000390 ! lens nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231515 ! -property_value: IAO:0000589 "leptomeninx (post-embryonic human)" xsd:string -intersection_of: UBERON:0000391 ! leptomeninx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77178 ! -property_value: IAO:0000589 "longissimus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000392 ! longissimus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53445 ! -property_value: IAO:0000589 "cochlear ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0000395 ! cochlear ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54822 ! -property_value: IAO:0000589 "vallate papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0000396 ! vallate papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17302 ! -property_value: IAO:0000589 "colonic epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000397 ! colonic epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32567 ! -property_value: IAO:0000589 "cartilage tissue of sternum (post-embryonic human)" xsd:string -intersection_of: UBERON:0000398 ! cartilage tissue of sternum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14949 ! -property_value: IAO:0000589 "jejunal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000399 ! jejunal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17232 ! -property_value: IAO:0000589 "jejunal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000400 ! jejunal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52828 ! -property_value: IAO:0000589 "mandibular ramus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000401 ! mandibular ramus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59644 ! -property_value: IAO:0000589 "nasal vestibule (post-embryonic human)" xsd:string -intersection_of: UBERON:0000402 ! nasal vestibule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46494 ! -property_value: IAO:0000589 "scalp (post-embryonic human)" xsd:string -intersection_of: UBERON:0000403 ! scalp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6258 ! -property_value: IAO:0000589 "sympathetic trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0000407 ! sympathetic trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6572 ! -property_value: IAO:0000589 "vertebral ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0000408 ! vertebral ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62889 ! -property_value: IAO:0000589 "serous gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000409 ! serous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62652 ! -property_value: IAO:0000589 "bronchial mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0000410 ! bronchial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242644 ! -property_value: IAO:0000589 "visual cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0000411 ! visual cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70737 ! -property_value: IAO:0000589 "dermal papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0000412 ! dermal papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62888 ! -property_value: IAO:0000589 "mucous gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000414 ! mucous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14155 ! -property_value: IAO:0000589 "artery wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0000415 ! artery wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83803 ! -property_value: IAO:0000589 "subdural space (post-embryonic human)" xsd:string -intersection_of: UBERON:0000416 ! subdural space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67805 ! -property_value: IAO:0000589 "myoepithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000420 ! myoepithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59154 ! -property_value: IAO:0000589 "eccrine sweat gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000423 ! eccrine sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62947 ! -property_value: IAO:0000589 "gastric pit (post-embryonic human)" xsd:string -intersection_of: UBERON:0000424 ! gastric pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86561 ! -property_value: IAO:0000589 "extravillous trophoblast (post-embryonic human)" xsd:string -intersection_of: UBERON:0000426 ! extravillous trophoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66812 ! -property_value: IAO:0000589 "prostate epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000428 ! prostate epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79643 ! -property_value: IAO:0000589 "prostate epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000428 ! prostate epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77597 ! -property_value: IAO:0000589 "enteric plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000429 ! enteric plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84347 ! -property_value: IAO:0000589 "ventral intermediate nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000430 ! ventral intermediate nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77795 ! -property_value: IAO:0000589 "ventral medial complex of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000431 ! ventral medial complex of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77691 ! -property_value: IAO:0000589 "endopeduncular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000432 ! endopeduncular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76961 ! -property_value: IAO:0000589 "posterior paraventricular nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000433 ! posterior paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76962 ! -property_value: IAO:0000589 "anterior paraventricular nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000434 ! anterior paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62336 ! -property_value: IAO:0000589 "lateral tuberal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000435 ! lateral tuberal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231559 ! -property_value: IAO:0000589 "arachnoid barrier layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0000437 ! arachnoid barrier layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83979 ! -property_value: IAO:0000589 "arachnoid trabecula (post-embryonic human)" xsd:string -intersection_of: UBERON:0000439 ! arachnoid trabecula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85273 ! -property_value: IAO:0000589 "trabecula (post-embryonic human)" xsd:string -intersection_of: UBERON:0000440 ! trabecula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14341 ! -property_value: IAO:0000589 "right testicular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0000442 ! right testicular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14345 ! -property_value: IAO:0000589 "left testicular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0000443 ! left testicular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55222 ! -property_value: IAO:0000589 "lymphoid follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000444 ! lymphoid follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74868 ! -property_value: IAO:0000589 "habenular trigone (post-embryonic human)" xsd:string -intersection_of: UBERON:0000445 ! habenular trigone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61842 ! -property_value: IAO:0000589 "septum of telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0000446 ! septum of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18620 ! -property_value: IAO:0000589 "corpus albicans (post-embryonic human)" xsd:string -intersection_of: UBERON:0000450 ! corpus albicans -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224850 ! -property_value: IAO:0000589 "prefrontal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0000451 ! prefrontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86477 ! -property_value: IAO:0000589 "decidua basalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0000453 ! decidua basalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242188 ! -property_value: IAO:0000589 "cerebral subcortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0000454 ! cerebral subcortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9675 ! -property_value: IAO:0000589 "secretion of exocrine gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000456 ! secretion of exocrine gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70527 ! -property_value: IAO:0000589 "cavernous artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0000457 ! cavernous artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86485 ! -property_value: IAO:0000589 "endocervix (post-embryonic human)" xsd:string -intersection_of: UBERON:0000458 ! endocervix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17560 ! -property_value: IAO:0000589 "uterine wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0000459 ! uterine wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9598 ! -property_value: IAO:0000589 "major vestibular gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000460 ! major vestibular gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20019 ! -property_value: IAO:0000589 "minor vestibular gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0000461 ! minor vestibular gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9669 ! -property_value: IAO:0000589 "organism substance (post-embryonic human)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5897 ! -property_value: IAO:0000589 "anatomical space (post-embryonic human)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67165 ! -property_value: IAO:0000589 "material anatomical entity (post-embryonic human)" xsd:string -intersection_of: UBERON:0000465 ! material anatomical entity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67112 ! -property_value: IAO:0000589 "immaterial anatomical entity (post-embryonic human)" xsd:string -intersection_of: UBERON:0000466 ! immaterial anatomical entity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7149 ! -property_value: IAO:0000589 "anatomical system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256135 ! -property_value: IAO:0000589 "multicellular organism (post-embryonic human)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7210 ! -property_value: IAO:0000589 "testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45663 ! -property_value: IAO:0000589 "female reproductive system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000474 ! female reproductive system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7153 ! -property_value: IAO:0000589 "organism subdivision (post-embryonic human)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63863 ! -property_value: IAO:0000589 "acellular anatomical structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85537 ! -property_value: IAO:0000589 "extraembryonic structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9637 ! -property_value: IAO:0000589 "tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62918 ! -property_value: IAO:0000589 "basal lamina of epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9639 ! -property_value: IAO:0000589 "epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45566 ! -property_value: IAO:0000589 "simple cuboidal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000484 ! simple cuboidal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45567 ! -property_value: IAO:0000589 "simple columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000485 ! simple columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45562 ! -property_value: IAO:0000589 "multilaminar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000486 ! multilaminar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45565 ! -property_value: IAO:0000589 "simple squamous epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000487 ! simple squamous epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61741 ! -property_value: IAO:0000589 "atypical epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000488 ! atypical epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55671 ! -property_value: IAO:0000589 "cavitated compound organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0000489 ! cavitated compound organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45561 ! -property_value: IAO:0000589 "unilaminar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0000490 ! unilaminar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55670 ! -property_value: IAO:0000589 "solid compound organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0000491 ! solid compound organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15973 ! -property_value: IAO:0000589 "ileocecal valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0000569 ! ileocecal valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20509 ! -property_value: IAO:0000589 "suspensory ligament of duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0000642 ! suspensory ligament of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22653 ! -property_value: IAO:0000589 "splenius capitis (post-embryonic human)" xsd:string -intersection_of: UBERON:0000711 ! splenius capitis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61970 ! -property_value: IAO:0000589 "hippocampal commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0000908 ! hippocampal commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62961 ! -property_value: IAO:0000589 "chyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0000910 ! chyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61403 ! -property_value: IAO:0000589 "chyle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000911 ! chyle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66938 ! -property_value: IAO:0000589 "mucus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000912 ! mucus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9673 ! -property_value: IAO:0000589 "interstitial fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0000913 ! interstitial fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:259209 ! -property_value: IAO:0000589 "thoracic segment of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0000915 ! thoracic segment of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9577 ! -property_value: IAO:0000589 "abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0000916 ! abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69068 ! -property_value: IAO:0000589 "embryo (post-embryonic human)" xsd:string -intersection_of: UBERON:0000922 ! embryo -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69069 ! -property_value: IAO:0000589 "germ layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0000923 ! germ layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69070 ! -property_value: IAO:0000589 "ectoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69071 ! -property_value: IAO:0000589 "endoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0000925 ! endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69072 ! -property_value: IAO:0000589 "mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6234 ! -property_value: IAO:0000589 "pharyngeal branch of vagus nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0000929 ! pharyngeal branch of vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295846 ! -property_value: IAO:0000589 "stomodeum (post-embryonic human)" xsd:string -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46619 ! -property_value: IAO:0000589 "chordate pharyngeal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000933 ! chordate pharyngeal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61961 ! -property_value: IAO:0000589 "anterior commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62072 ! -property_value: IAO:0000589 "posterior commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0000936 ! posterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50863 ! -property_value: IAO:0000589 "cranial nerve II (post-embryonic human)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52638 ! -property_value: IAO:0000589 "frontal nerve (branch of ophthalmic) (post-embryonic human)" xsd:string -intersection_of: UBERON:0000942 ! frontal nerve (branch of ophthalmic) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7148 ! -property_value: IAO:0000589 "stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0000945 ! stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7110 ! -property_value: IAO:0000589 "cardiac valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0000946 ! cardiac valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3734 ! -property_value: IAO:0000589 "aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0000947 ! aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7088 ! -property_value: IAO:0000589 "heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0000948 ! heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9668 ! -property_value: IAO:0000589 "endocrine system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43882 ! -property_value: IAO:0000589 "gracilis (post-embryonic human)" xsd:string -intersection_of: UBERON:0000950 ! gracilis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23081 ! -property_value: IAO:0000589 "rotator muscle of the vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0000951 ! rotator muscle of the vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50801 ! -property_value: IAO:0000589 "brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61830 ! -property_value: IAO:0000589 "cerebral cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61108 ! -property_value: IAO:0000589 "medulla of organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0000958 ! medulla of organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62045 ! -property_value: IAO:0000589 "optic chiasma (post-embryonic human)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6471 ! -property_value: IAO:0000589 "thoracic ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5859 ! -property_value: IAO:0000589 "nerve of cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0000962 ! nerve of cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58238 ! -property_value: IAO:0000589 "cornea (post-embryonic human)" xsd:string -intersection_of: UBERON:0000964 ! cornea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58241 ! -property_value: IAO:0000589 "lens of camera-type eye (post-embryonic human)" xsd:string -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58301 ! -property_value: IAO:0000589 "retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0000966 ! retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7155 ! -property_value: IAO:0000589 "neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0000974 ! neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7485 ! -property_value: IAO:0000589 "sternum (post-embryonic human)" xsd:string -intersection_of: UBERON:0000975 ! sternum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13303 ! -property_value: IAO:0000589 "humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000976 ! humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9583 ! -property_value: IAO:0000589 "pleura (post-embryonic human)" xsd:string -intersection_of: UBERON:0000977 ! pleura -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24476 ! -property_value: IAO:0000589 "tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0000979 ! tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82513 ! -property_value: IAO:0000589 "trochanter (post-embryonic human)" xsd:string -intersection_of: UBERON:0000980 ! trochanter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9611 ! -property_value: IAO:0000589 "femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0000981 ! femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7490 ! -property_value: IAO:0000589 "skeletal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0000982 ! skeletal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24997 ! -property_value: IAO:0000589 "metatarsus region (post-embryonic human)" xsd:string -intersection_of: UBERON:0000983 ! metatarsus region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13329 ! -property_value: IAO:0000589 "axillary vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0000985 ! axillary vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67943 ! -property_value: IAO:0000589 "pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0000988 ! pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9707 ! -property_value: IAO:0000589 "penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0000989 ! penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7160 ! -property_value: IAO:0000589 "reproductive system (post-embryonic human)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18250 ! -property_value: IAO:0000589 "gonad (post-embryonic human)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7209 ! -property_value: IAO:0000589 "ovary (post-embryonic human)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17558 ! -property_value: IAO:0000589 "uterus (post-embryonic human)" xsd:string -intersection_of: UBERON:0000995 ! uterus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19949 ! -property_value: IAO:0000589 "vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0000996 ! vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20462 ! -property_value: IAO:0000589 "mammalian vulva (post-embryonic human)" xsd:string -intersection_of: UBERON:0000997 ! mammalian vulva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19386 ! -property_value: IAO:0000589 "seminal vesicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0000998 ! seminal vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19325 ! -property_value: IAO:0000589 "ejaculatory duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0000999 ! ejaculatory duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19234 ! -property_value: IAO:0000589 "vas deferens (post-embryonic human)" xsd:string -intersection_of: UBERON:0001000 ! vas deferens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70596 ! -property_value: IAO:0000589 "skin epidermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001003 ! skin epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7158 ! -property_value: IAO:0000589 "respiratory system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265130 ! -property_value: IAO:0000589 "respiratory airway (post-embryonic human)" xsd:string -intersection_of: UBERON:0001005 ! respiratory airway -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7152 ! -property_value: IAO:0000589 "digestive system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7159 ! -property_value: IAO:0000589 "renal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33760 ! -property_value: IAO:0000589 "diaphysis of ulna (post-embryonic human)" xsd:string -intersection_of: UBERON:0001010 ! diaphysis of ulna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33773 ! -property_value: IAO:0000589 "head of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0001012 ! head of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20110 ! -property_value: IAO:0000589 "adipose tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001013 ! adipose tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32558 ! -property_value: IAO:0000589 "musculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0001015 ! musculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7157 ! -property_value: IAO:0000589 "nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55675 ! -property_value: IAO:0000589 "central nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83847 ! -property_value: IAO:0000589 "axon tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0001018 ! axon tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12235 ! -property_value: IAO:0000589 "nerve fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001019 ! nerve fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83906 ! -property_value: IAO:0000589 "nervous system commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0001020 ! nervous system commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65132 ! -property_value: IAO:0000589 "nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65239 ! -property_value: IAO:0000589 "nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5868 ! -property_value: IAO:0000589 "sensory nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001027 ! sensory nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33782 ! -property_value: IAO:0000589 "diaphysis of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0001028 ! diaphysis of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62976 ! -property_value: IAO:0000589 "sheath of Schwann (post-embryonic human)" xsd:string -intersection_of: UBERON:0001031 ! sheath of Schwann -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75259 ! -property_value: IAO:0000589 "sensory system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7194 ! -property_value: IAO:0000589 "gustatory system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001033 ! gustatory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7495 ! -property_value: IAO:0000589 "dento-alveolar joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001035 ! dento-alveolar joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53667 ! -property_value: IAO:0000589 "strand of hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0001037 ! strand of hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87180 ! -property_value: IAO:0000589 "yolk sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0001040 ! yolk sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45616 ! -property_value: IAO:0000589 "foregut (post-embryonic human)" xsd:string -intersection_of: UBERON:0001041 ! foregut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46688 ! -property_value: IAO:0000589 "chordate pharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7131 ! -property_value: IAO:0000589 "esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001043 ! esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9597 ! -property_value: IAO:0000589 "saliva-secreting gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001044 ! saliva-secreting gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45617 ! -property_value: IAO:0000589 "midgut (post-embryonic human)" xsd:string -intersection_of: UBERON:0001045 ! midgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45618 ! -property_value: IAO:0000589 "hindgut (post-embryonic human)" xsd:string -intersection_of: UBERON:0001046 ! hindgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86589 ! -property_value: IAO:0000589 "primordium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001048 ! primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293882 ! -property_value: IAO:0000589 "neural tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54880 ! -property_value: IAO:0000589 "hypopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001051 ! hypopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14544 ! -property_value: IAO:0000589 "rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001052 ! rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62955 ! -property_value: IAO:0000589 "anatomical entity (post-embryonic human)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83881 ! -property_value: IAO:0000589 "flocculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001063 ! flocculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16003 ! -property_value: IAO:0000589 "ventral pancreatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001064 ! ventral pancreatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10420 ! -property_value: IAO:0000589 "parotid main excretory duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001065 ! parotid main excretory duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10446 ! -property_value: IAO:0000589 "intervertebral disk (post-embryonic human)" xsd:string -intersection_of: UBERON:0001066 ! intervertebral disk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10447 ! -property_value: IAO:0000589 "vertebral arch joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001067 ! vertebral arch joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10462 ! -property_value: IAO:0000589 "skin of back (post-embryonic human)" xsd:string -intersection_of: UBERON:0001068 ! skin of back -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22985 ! -property_value: IAO:0000589 "skin of back (post-embryonic human)" xsd:string -intersection_of: UBERON:0001068 ! skin of back -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10468 ! -property_value: IAO:0000589 "head of pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10635 ! -property_value: IAO:0000589 "external carotid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10665 ! -property_value: IAO:0000589 "superficial cervical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001071 ! superficial cervical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10951 ! -property_value: IAO:0000589 "posterior vena cava (post-embryonic human)" xsd:string -intersection_of: UBERON:0001072 ! posterior vena cava -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11338 ! -property_value: IAO:0000589 "ileocecal junction (post-embryonic human)" xsd:string -intersection_of: UBERON:0001073 ! ileocecal junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11350 ! -property_value: IAO:0000589 "pericardial cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11945 ! -property_value: IAO:0000589 "bony vertebral centrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001075 ! bony vertebral centrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11948 ! -property_value: IAO:0000589 "neural spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001076 ! neural spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11949 ! -property_value: IAO:0000589 "transverse process of vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0001077 ! transverse process of vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11950 ! -property_value: IAO:0000589 "pedicle of vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0001078 ! pedicle of vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11953 ! -property_value: IAO:0000589 "prezygapophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001079 ! prezygapophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11954 ! -property_value: IAO:0000589 "postzygapophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001080 ! postzygapophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12148 ! -property_value: IAO:0000589 "endocardium of ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001081 ! endocardium of ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12150 ! -property_value: IAO:0000589 "epicardium of ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001082 ! epicardium of ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12151 ! -property_value: IAO:0000589 "myocardium of ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001083 ! myocardium of ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12166 ! -property_value: IAO:0000589 "skin of head (post-embryonic human)" xsd:string -intersection_of: UBERON:0001084 ! skin of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24756 ! -property_value: IAO:0000589 "skin of head (post-embryonic human)" xsd:string -intersection_of: UBERON:0001084 ! skin of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12167 ! -property_value: IAO:0000589 "skin of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0001085 ! skin of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23093 ! -property_value: IAO:0000589 "skin of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0001085 ! skin of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12273 ! -property_value: IAO:0000589 "pleural fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001087 ! pleural fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12274 ! -property_value: IAO:0000589 "urine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001088 ! urine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12275 ! -property_value: IAO:0000589 "sweat (post-embryonic human)" xsd:string -intersection_of: UBERON:0001089 ! sweat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12277 ! -property_value: IAO:0000589 "synovial fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001090 ! synovial fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12516 ! -property_value: IAO:0000589 "calcareous tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0001091 ! calcareous tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12519 ! -property_value: IAO:0000589 "vertebral bone 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001092 ! vertebral bone 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12520 ! -property_value: IAO:0000589 "vertebral bone 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001093 ! vertebral bone 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12526 ! -property_value: IAO:0000589 "sacral vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0001094 ! sacral vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12527 ! -property_value: IAO:0000589 "caudal vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12611 ! -property_value: IAO:0000589 "wall of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001096 ! wall of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276805 ! -property_value: IAO:0000589 "axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0001097 ! axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12823 ! -property_value: IAO:0000589 "incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0001098 ! incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12845 ! -property_value: IAO:0000589 "subcostal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001099 ! subcostal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13109 ! -property_value: IAO:0000589 "pectoralis minor (post-embryonic human)" xsd:string -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13110 ! -property_value: IAO:0000589 "external jugular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001101 ! external jugular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13117 ! -property_value: IAO:0000589 "cartilage of main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001102 ! cartilage of main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13295 ! -property_value: IAO:0000589 "diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13318 ! -property_value: IAO:0000589 "anterior jugular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001104 ! anterior jugular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13321 ! -property_value: IAO:0000589 "clavicle bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001105 ! clavicle bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13324 ! -property_value: IAO:0000589 "cephalic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001106 ! cephalic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13341 ! -property_value: IAO:0000589 "sternohyoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001107 ! sternohyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13342 ! -property_value: IAO:0000589 "omohyoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001108 ! omohyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13343 ! -property_value: IAO:0000589 "sternothyroid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001109 ! sternothyroid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13344 ! -property_value: IAO:0000589 "thyrohyoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001110 ! thyrohyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13354 ! -property_value: IAO:0000589 "intercostal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001111 ! intercostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13357 ! -property_value: IAO:0000589 "latissimus dorsi muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13361 ! -property_value: IAO:0000589 "lobe of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0001113 ! lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13362 ! -property_value: IAO:0000589 "right lobe of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13363 ! -property_value: IAO:0000589 "left lobe of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13364 ! -property_value: IAO:0000589 "quadrate lobe of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13365 ! -property_value: IAO:0000589 "caudate lobe of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13367 ! -property_value: IAO:0000589 "lobe of thyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13368 ! -property_value: IAO:0000589 "right lobe of thyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001119 ! right lobe of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13369 ! -property_value: IAO:0000589 "left lobe of thyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001120 ! left lobe of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13370 ! -property_value: IAO:0000589 "longus colli muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001121 ! longus colli muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13386 ! -property_value: IAO:0000589 "scalenus medius (post-embryonic human)" xsd:string -intersection_of: UBERON:0001122 ! scalenus medius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13387 ! -property_value: IAO:0000589 "scalenus posterior (post-embryonic human)" xsd:string -intersection_of: UBERON:0001123 ! scalenus posterior -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13397 ! -property_value: IAO:0000589 "serratus ventralis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001125 ! serratus ventralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13401 ! -property_value: IAO:0000589 "serratus dorsalis superior muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001126 ! serratus dorsalis superior muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13402 ! -property_value: IAO:0000589 "serratus dorsalis inferior muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001127 ! serratus dorsalis inferior muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13407 ! -property_value: IAO:0000589 "sternocleidomastoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001128 ! sternocleidomastoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13413 ! -property_value: IAO:0000589 "subscapularis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13478 ! -property_value: IAO:0000589 "vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13479 ! -property_value: IAO:0000589 "vertebral foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001131 ! vertebral foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13890 ! -property_value: IAO:0000589 "parathyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001132 ! parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14068 ! -property_value: IAO:0000589 "cardiac muscle tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001133 ! cardiac muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14069 ! -property_value: IAO:0000589 "skeletal muscle tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001134 ! skeletal muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14070 ! -property_value: IAO:0000589 "smooth muscle tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14074 ! -property_value: IAO:0000589 "mesothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001136 ! mesothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14181 ! -property_value: IAO:0000589 "dorsum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001137 ! dorsum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14332 ! -property_value: IAO:0000589 "superior mesenteric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001138 ! superior mesenteric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14333 ! -property_value: IAO:0000589 "common iliac vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14334 ! -property_value: IAO:0000589 "renal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001140 ! renal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14335 ! -property_value: IAO:0000589 "right renal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001141 ! right renal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14336 ! -property_value: IAO:0000589 "left renal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001142 ! left renal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14337 ! -property_value: IAO:0000589 "hepatic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14344 ! -property_value: IAO:0000589 "testicular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001144 ! testicular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14346 ! -property_value: IAO:0000589 "ovarian vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001145 ! ovarian vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14348 ! -property_value: IAO:0000589 "suprarenal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001146 ! suprarenal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14385 ! -property_value: IAO:0000589 "median nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001148 ! median nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14480 ! -property_value: IAO:0000589 "bare area of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14518 ! -property_value: IAO:0000589 "body of pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14519 ! -property_value: IAO:0000589 "tail of pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14539 ! -property_value: IAO:0000589 "cystic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14541 ! -property_value: IAO:0000589 "caecum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001153 ! caecum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14542 ! -property_value: IAO:0000589 "vermiform appendix (post-embryonic human)" xsd:string -intersection_of: UBERON:0001154 ! vermiform appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14543 ! -property_value: IAO:0000589 "colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001155 ! colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14545 ! -property_value: IAO:0000589 "ascending colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001156 ! ascending colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14546 ! -property_value: IAO:0000589 "transverse colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001157 ! transverse colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14547 ! -property_value: IAO:0000589 "descending colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001158 ! descending colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14548 ! -property_value: IAO:0000589 "sigmoid colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001159 ! sigmoid colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14559 ! -property_value: IAO:0000589 "fundus of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001160 ! fundus of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14560 ! -property_value: IAO:0000589 "body of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001161 ! body of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14561 ! -property_value: IAO:0000589 "cardia of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001162 ! cardia of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14572 ! -property_value: IAO:0000589 "lesser curvature of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001163 ! lesser curvature of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14574 ! -property_value: IAO:0000589 "greater curvature of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001164 ! greater curvature of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14579 ! -property_value: IAO:0000589 "pyloric antrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14581 ! -property_value: IAO:0000589 "pylorus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001166 ! pylorus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14582 ! -property_value: IAO:0000589 "wall of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001167 ! wall of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14615 ! -property_value: IAO:0000589 "wall of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001168 ! wall of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14619 ! -property_value: IAO:0000589 "wall of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001169 ! wall of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14643 ! -property_value: IAO:0000589 "mesentery of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001170 ! mesentery of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14653 ! -property_value: IAO:0000589 "portal lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001171 ! portal lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14654 ! -property_value: IAO:0000589 "hepatic acinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001172 ! hepatic acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14665 ! -property_value: IAO:0000589 "biliary tree (post-embryonic human)" xsd:string -intersection_of: UBERON:0001173 ! biliary tree -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14667 ! -property_value: IAO:0000589 "common bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14668 ! -property_value: IAO:0000589 "common hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001175 ! common hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14669 ! -property_value: IAO:0000589 "right hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14670 ! -property_value: IAO:0000589 "left hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14703 ! -property_value: IAO:0000589 "visceral peritoneum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001178 ! visceral peritoneum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14704 ! -property_value: IAO:0000589 "peritoneal cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0001179 ! peritoneal cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14708 ! -property_value: IAO:0000589 "superior recess of lesser sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0001180 ! superior recess of lesser sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14709 ! -property_value: IAO:0000589 "inferior recess of lesser sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0001181 ! inferior recess of lesser sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14749 ! -property_value: IAO:0000589 "superior mesenteric artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001182 ! superior mesenteric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14750 ! -property_value: IAO:0000589 "inferior mesenteric artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001183 ! inferior mesenteric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14751 ! -property_value: IAO:0000589 "renal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001184 ! renal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14752 ! -property_value: IAO:0000589 "right renal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001185 ! right renal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14753 ! -property_value: IAO:0000589 "left renal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001186 ! left renal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14758 ! -property_value: IAO:0000589 "testicular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001187 ! testicular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14759 ! -property_value: IAO:0000589 "right testicular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001188 ! right testicular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14760 ! -property_value: IAO:0000589 "left testicular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001189 ! left testicular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14761 ! -property_value: IAO:0000589 "ovarian artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001190 ! ovarian artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14764 ! -property_value: IAO:0000589 "common iliac artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14768 ! -property_value: IAO:0000589 "left gastric artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001192 ! left gastric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14769 ! -property_value: IAO:0000589 "hepatic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14773 ! -property_value: IAO:0000589 "splenic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001194 ! splenic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14805 ! -property_value: IAO:0000589 "inferior pancreaticoduodenal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001195 ! inferior pancreaticoduodenal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14810 ! -property_value: IAO:0000589 "middle colic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001196 ! middle colic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14815 ! -property_value: IAO:0000589 "ileocolic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001197 ! ileocolic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14863 ! -property_value: IAO:0000589 "superior suprarenal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001198 ! superior suprarenal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14907 ! -property_value: IAO:0000589 "mucosa of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001199 ! mucosa of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14908 ! -property_value: IAO:0000589 "submucosa of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001200 ! submucosa of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14914 ! -property_value: IAO:0000589 "serosa of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001201 ! serosa of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14916 ! -property_value: IAO:0000589 "pyloric sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0001202 ! pyloric sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14924 ! -property_value: IAO:0000589 "muscularis mucosae of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001203 ! muscularis mucosae of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14933 ! -property_value: IAO:0000589 "mucosa of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001204 ! mucosa of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14934 ! -property_value: IAO:0000589 "submucosa of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001205 ! submucosa of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14938 ! -property_value: IAO:0000589 "serosa of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001206 ! serosa of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14969 ! -property_value: IAO:0000589 "mucosa of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001207 ! mucosa of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14970 ! -property_value: IAO:0000589 "submucosa of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001208 ! submucosa of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14975 ! -property_value: IAO:0000589 "serosa of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001209 ! serosa of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15051 ! -property_value: IAO:0000589 "muscularis mucosae of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001210 ! muscularis mucosae of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15060 ! -property_value: IAO:0000589 "duodenal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001212 ! duodenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15072 ! -property_value: IAO:0000589 "intestinal villus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001213 ! intestinal villus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15388 ! -property_value: IAO:0000589 "pancreatic tributary of splenic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001214 ! pancreatic tributary of splenic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15391 ! -property_value: IAO:0000589 "inferior mesenteric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001215 ! inferior mesenteric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15402 ! -property_value: IAO:0000589 "jejunal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001216 ! jejunal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15405 ! -property_value: IAO:0000589 "ileal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001217 ! ileal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15406 ! -property_value: IAO:0000589 "middle colic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001218 ! middle colic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15408 ! -property_value: IAO:0000589 "ileocolic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001219 ! ileocolic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15569 ! -property_value: IAO:0000589 "quadratus lumborum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001220 ! quadratus lumborum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15570 ! -property_value: IAO:0000589 "transversus abdominis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15571 ! -property_value: IAO:0000589 "right ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0001222 ! right ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15572 ! -property_value: IAO:0000589 "left ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0001223 ! left ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15575 ! -property_value: IAO:0000589 "renal pelvis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15581 ! -property_value: IAO:0000589 "cortex of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15613 ! -property_value: IAO:0000589 "major calyx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001226 ! major calyx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15614 ! -property_value: IAO:0000589 "minor calyx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001227 ! minor calyx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15622 ! -property_value: IAO:0000589 "renal papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0001228 ! renal papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15625 ! -property_value: IAO:0000589 "renal corpuscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001229 ! renal corpuscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15626 ! -property_value: IAO:0000589 "glomerular capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15627 ! -property_value: IAO:0000589 "nephron tubule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001231 ! nephron tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15628 ! -property_value: IAO:0000589 "collecting duct of renal tubule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001232 ! collecting duct of renal tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15629 ! -property_value: IAO:0000589 "right adrenal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001233 ! right adrenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15630 ! -property_value: IAO:0000589 "left adrenal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001234 ! left adrenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15632 ! -property_value: IAO:0000589 "adrenal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15633 ! -property_value: IAO:0000589 "adrenal medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15647 ! -property_value: IAO:0000589 "paraaortic body (post-embryonic human)" xsd:string -intersection_of: UBERON:0001237 ! paraaortic body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15651 ! -property_value: IAO:0000589 "lamina propria of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001238 ! lamina propria of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15655 ! -property_value: IAO:0000589 "muscularis mucosae of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001239 ! muscularis mucosae of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15691 ! -property_value: IAO:0000589 "muscularis mucosae of intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001240 ! muscularis mucosae of intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15693 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001241 ! crypt of Lieberkuhn of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15695 ! -property_value: IAO:0000589 "intestinal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0001242 ! intestinal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15701 ! -property_value: IAO:0000589 "serosa of intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001243 ! serosa of intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15710 ! -property_value: IAO:0000589 "internal anal sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0001244 ! internal anal sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15711 ! -property_value: IAO:0000589 "anus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001245 ! anus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15767 ! -property_value: IAO:0000589 "interlobular bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001246 ! interlobular bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15823 ! -property_value: IAO:0000589 "falciform ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15841 ! -property_value: IAO:0000589 "hilum of spleen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001248 ! hilum of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15844 ! -property_value: IAO:0000589 "red pulp of spleen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001250 ! red pulp of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15852 ! -property_value: IAO:0000589 "marginal zone of spleen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001251 ! marginal zone of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15892 ! -property_value: IAO:0000589 "adventitia of ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0001252 ! adventitia of ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15896 ! -property_value: IAO:0000589 "lamina propria of ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0001253 ! lamina propria of ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15897 ! -property_value: IAO:0000589 "urothelium of ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0001254 ! urothelium of ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15900 ! -property_value: IAO:0000589 "urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15902 ! -property_value: IAO:0000589 "wall of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001256 ! wall of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15910 ! -property_value: IAO:0000589 "trigone of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001257 ! trigone of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15912 ! -property_value: IAO:0000589 "neck of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001258 ! neck of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15928 ! -property_value: IAO:0000589 "mucosa of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001259 ! mucosa of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15932 ! -property_value: IAO:0000589 "serosa of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001260 ! serosa of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15935 ! -property_value: IAO:0000589 "lamina propria of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001261 ! lamina propria of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15949 ! -property_value: IAO:0000589 "wall of intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001262 ! wall of intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16011 ! -property_value: IAO:0000589 "pancreatic acinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001263 ! pancreatic acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7198 ! -property_value: IAO:0000589 "pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0001264 ! pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16027 ! -property_value: IAO:0000589 "trabecula of spleen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001265 ! trabecula of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16031 ! -property_value: IAO:0000589 "splenic cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0001266 ! splenic cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16486 ! -property_value: IAO:0000589 "femoral nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001267 ! femoral nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16515 ! -property_value: IAO:0000589 "peritoneal fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001268 ! peritoneal fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16579 ! -property_value: IAO:0000589 "acetabular part of hip bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001269 ! acetabular part of hip bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16580 ! -property_value: IAO:0000589 "bony pelvis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001270 ! bony pelvis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16581 ! -property_value: IAO:0000589 "pelvic girdle region (post-embryonic human)" xsd:string -intersection_of: UBERON:0001271 ! pelvic girdle region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16585 ! -property_value: IAO:0000589 "innominate bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001272 ! innominate bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16589 ! -property_value: IAO:0000589 "ilium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001273 ! ilium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16592 ! -property_value: IAO:0000589 "ischium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001274 ! ischium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16595 ! -property_value: IAO:0000589 "pubis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001275 ! pubis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17091 ! -property_value: IAO:0000589 "epithelium of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0001276 ! epithelium of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17229 ! -property_value: IAO:0000589 "intestinal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001277 ! intestinal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17301 ! -property_value: IAO:0000589 "epithelium of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001278 ! epithelium of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17523 ! -property_value: IAO:0000589 "portal triad (post-embryonic human)" xsd:string -intersection_of: UBERON:0001279 ! portal triad -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17540 ! -property_value: IAO:0000589 "liver parenchyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17543 ! -property_value: IAO:0000589 "hepatic sinusoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17545 ! -property_value: IAO:0000589 "intralobular bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001282 ! intralobular bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17547 ! -property_value: IAO:0000589 "bile canaliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001283 ! bile canaliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17633 ! -property_value: IAO:0000589 "renal column (post-embryonic human)" xsd:string -intersection_of: UBERON:0001284 ! renal column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17640 ! -property_value: IAO:0000589 "nephron (post-embryonic human)" xsd:string -intersection_of: UBERON:0001285 ! nephron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17676 ! -property_value: IAO:0000589 "Bowman's space (post-embryonic human)" xsd:string -intersection_of: UBERON:0001286 ! Bowman's space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17693 ! -property_value: IAO:0000589 "proximal convoluted tubule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001287 ! proximal convoluted tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17698 ! -property_value: IAO:0000589 "loop of Henle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001288 ! loop of Henle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17705 ! -property_value: IAO:0000589 "descending limb of loop of Henle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001289 ! descending limb of loop of Henle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17716 ! -property_value: IAO:0000589 "proximal straight tubule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001290 ! proximal straight tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17722 ! -property_value: IAO:0000589 "thick ascending limb of loop of Henle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001291 ! thick ascending limb of loop of Henle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17721 ! -property_value: IAO:0000589 "distal convoluted tubule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001292 ! distal convoluted tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17733 ! -property_value: IAO:0000589 "outer medulla of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0001293 ! outer medulla of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17734 ! -property_value: IAO:0000589 "inner medulla of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0001294 ! inner medulla of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17742 ! -property_value: IAO:0000589 "endometrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001295 ! endometrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17743 ! -property_value: IAO:0000589 "myometrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001296 ! myometrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17744 ! -property_value: IAO:0000589 "serosa of uterus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001297 ! serosa of uterus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18060 ! -property_value: IAO:0000589 "psoas major muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001298 ! psoas major muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18247 ! -property_value: IAO:0000589 "glans penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001299 ! glans penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18252 ! -property_value: IAO:0000589 "scrotum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001300 ! scrotum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18255 ! -property_value: IAO:0000589 "epididymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001301 ! epididymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18483 ! -property_value: IAO:0000589 "right uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0001302 ! right uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18484 ! -property_value: IAO:0000589 "left uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0001303 ! left uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18629 ! -property_value: IAO:0000589 "germinal epithelium of ovary (post-embryonic human)" xsd:string -intersection_of: UBERON:0001304 ! germinal epithelium of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18640 ! -property_value: IAO:0000589 "ovarian follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001305 ! ovarian follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18659 ! -property_value: IAO:0000589 "cumulus oophorus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001306 ! cumulus oophorus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18662 ! -property_value: IAO:0000589 "capsule of ovary (post-embryonic human)" xsd:string -intersection_of: UBERON:0001307 ! capsule of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18805 ! -property_value: IAO:0000589 "external iliac artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18808 ! -property_value: IAO:0000589 "internal iliac artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18820 ! -property_value: IAO:0000589 "umbilical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18823 ! -property_value: IAO:0000589 "inferior vesical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001311 ! inferior vesical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18839 ! -property_value: IAO:0000589 "superior vesical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001312 ! superior vesical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18845 ! -property_value: IAO:0000589 "iliolumbar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001313 ! iliolumbar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18865 ! -property_value: IAO:0000589 "obturator artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001314 ! obturator artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18868 ! -property_value: IAO:0000589 "superior gluteal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001315 ! superior gluteal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18883 ! -property_value: IAO:0000589 "external iliac vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001316 ! external iliac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18884 ! -property_value: IAO:0000589 "internal iliac vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001317 ! internal iliac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18890 ! -property_value: IAO:0000589 "inferior vesical vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001318 ! inferior vesical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18899 ! -property_value: IAO:0000589 "vaginal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001319 ! vaginal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18902 ! -property_value: IAO:0000589 "iliolumbar vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001320 ! iliolumbar vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18914 ! -property_value: IAO:0000589 "obturator vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001321 ! obturator vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19034 ! -property_value: IAO:0000589 "sciatic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001322 ! sciatic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19035 ! -property_value: IAO:0000589 "tibial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001323 ! tibial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19039 ! -property_value: IAO:0000589 "common fibular nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001324 ! common fibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19086 ! -property_value: IAO:0000589 "muscle of pelvis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001325 ! muscle of pelvis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19087 ! -property_value: IAO:0000589 "levator ani muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001326 ! levator ani muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19088 ! -property_value: IAO:0000589 "coccygeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001327 ! coccygeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19570 ! -property_value: IAO:0000589 "lobe of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0001328 ! lobe of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19574 ! -property_value: IAO:0000589 "prostate gland anterior lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0001329 ! prostate gland anterior lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19607 ! -property_value: IAO:0000589 "pampiniform plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001330 ! pampiniform plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19638 ! -property_value: IAO:0000589 "skin of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001331 ! skin of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19639 ! -property_value: IAO:0000589 "prepuce of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001332 ! prepuce of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19668 ! -property_value: IAO:0000589 "male urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0001333 ! male urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19669 ! -property_value: IAO:0000589 "female urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0001334 ! female urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19673 ! -property_value: IAO:0000589 "prostatic urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0001335 ! prostatic urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19675 ! -property_value: IAO:0000589 "spongiose part of urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0001337 ! spongiose part of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19683 ! -property_value: IAO:0000589 "urethral gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001338 ! urethral gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19730 ! -property_value: IAO:0000589 "ischiocavernosus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001339 ! ischiocavernosus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19795 ! -property_value: IAO:0000589 "dorsal artery of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001340 ! dorsal artery of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19800 ! -property_value: IAO:0000589 "lesser sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19815 ! -property_value: IAO:0000589 "mesovarium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19825 ! -property_value: IAO:0000589 "seminiferous tubule of testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19978 ! -property_value: IAO:0000589 "epithelium of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001344 ! epithelium of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20005 ! -property_value: IAO:0000589 "vaginal hymen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001346 ! vaginal hymen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20117 ! -property_value: IAO:0000589 "white adipose tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001347 ! white adipose tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20118 ! -property_value: IAO:0000589 "brown adipose tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001348 ! brown adipose tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20192 ! -property_value: IAO:0000589 "externally connecting tube lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001349 ! externally connecting tube lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20229 ! -property_value: IAO:0000589 "coccyx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001350 ! coccyx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20289 ! -property_value: IAO:0000589 "lacrimal sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0001351 ! lacrimal sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61734 ! -property_value: IAO:0000589 "external acoustic meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20686 ! -property_value: IAO:0000589 "inferior epigastric artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001354 ! inferior epigastric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20741 ! -property_value: IAO:0000589 "deep femoral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001355 ! deep femoral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20799 ! -property_value: IAO:0000589 "medial circumflex femoral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001356 ! medial circumflex femoral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20824 ! -property_value: IAO:0000589 "inferior rectal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001357 ! inferior rectal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20836 ! -property_value: IAO:0000589 "perineal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001358 ! perineal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20935 ! -property_value: IAO:0000589 "cerebrospinal fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001359 ! cerebrospinal fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21182 ! -property_value: IAO:0000589 "deep circumflex iliac vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001360 ! deep circumflex iliac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21185 ! -property_value: IAO:0000589 "femoral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21246 ! -property_value: IAO:0000589 "perineal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001362 ! perineal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21376 ! -property_value: IAO:0000589 "great saphenous vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001363 ! great saphenous vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21440 ! -property_value: IAO:0000589 "sacro-iliac joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001365 ! sacro-iliac joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21451 ! -property_value: IAO:0000589 "parietal peritoneum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001366 ! parietal peritoneum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21930 ! -property_value: IAO:0000589 "external anal sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0001367 ! external anal sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22299 ! -property_value: IAO:0000589 "obturator externus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001368 ! obturator externus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22310 ! -property_value: IAO:0000589 "iliacus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001369 ! iliacus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22314 ! -property_value: IAO:0000589 "gluteus maximus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001370 ! gluteus maximus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22315 ! -property_value: IAO:0000589 "gluteus medius (post-embryonic human)" xsd:string -intersection_of: UBERON:0001371 ! gluteus medius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22350 ! -property_value: IAO:0000589 "psoas minor muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001372 ! psoas minor muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22353 ! -property_value: IAO:0000589 "sartorius muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001373 ! sartorius muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22356 ! -property_value: IAO:0000589 "biceps femoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0001374 ! biceps femoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22357 ! -property_value: IAO:0000589 "semitendinosus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001375 ! semitendinosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22423 ! -property_value: IAO:0000589 "tensor fasciae latae muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001376 ! tensor fasciae latae muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22428 ! -property_value: IAO:0000589 "quadriceps femoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0001377 ! quadriceps femoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22430 ! -property_value: IAO:0000589 "rectus femoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0001378 ! rectus femoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22431 ! -property_value: IAO:0000589 "vastus lateralis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001379 ! vastus lateralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22432 ! -property_value: IAO:0000589 "vastus medialis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001380 ! vastus medialis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22438 ! -property_value: IAO:0000589 "semimembranosus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001381 ! semimembranosus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22440 ! -property_value: IAO:0000589 "pectineus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001382 ! pectineus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224854 ! -property_value: IAO:0000589 "primary motor cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0001384 ! primary motor cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22532 ! -property_value: IAO:0000589 "tibialis anterior (post-embryonic human)" xsd:string -intersection_of: UBERON:0001385 ! tibialis anterior -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22534 ! -property_value: IAO:0000589 "extensor digitorum longus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001386 ! extensor digitorum longus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22539 ! -property_value: IAO:0000589 "fibularis longus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001387 ! fibularis longus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22541 ! -property_value: IAO:0000589 "gastrocnemius (post-embryonic human)" xsd:string -intersection_of: UBERON:0001388 ! gastrocnemius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22542 ! -property_value: IAO:0000589 "soleus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001389 ! soleus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22570 ! -property_value: IAO:0000589 "sural artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001390 ! sural artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22590 ! -property_value: IAO:0000589 "popliteus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001391 ! popliteus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22593 ! -property_value: IAO:0000589 "flexor hallucis longus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001392 ! flexor hallucis longus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:226221 ! -property_value: IAO:0000589 "auditory cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0001393 ! auditory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22654 ! -property_value: IAO:0000589 "axillary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001394 ! axillary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22671 ! -property_value: IAO:0000589 "thoraco-acromial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001395 ! thoraco-acromial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22674 ! -property_value: IAO:0000589 "lateral thoracic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001396 ! lateral thoracic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22677 ! -property_value: IAO:0000589 "subscapular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001397 ! subscapular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22689 ! -property_value: IAO:0000589 "brachial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001398 ! brachial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22695 ! -property_value: IAO:0000589 "deep brachial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001399 ! deep brachial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22703 ! -property_value: IAO:0000589 "iliocostalis thoracis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001400 ! iliocostalis thoracis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22709 ! -property_value: IAO:0000589 "longissimus thoracis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001401 ! longissimus thoracis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22711 ! -property_value: IAO:0000589 "longissimus cervicis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001402 ! longissimus cervicis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22714 ! -property_value: IAO:0000589 "longissimus capitis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001403 ! longissimus capitis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22730 ! -property_value: IAO:0000589 "radial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001404 ! radial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22765 ! -property_value: IAO:0000589 "spinalis thoracis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001405 ! spinalis thoracis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22796 ! -property_value: IAO:0000589 "ulnar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001406 ! ulnar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22828 ! -property_value: IAO:0000589 "semispinalis thoracis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001407 ! semispinalis thoracis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22829 ! -property_value: IAO:0000589 "semispinalis cervicis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001408 ! semispinalis cervicis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22830 ! -property_value: IAO:0000589 "semispinalis capitis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001409 ! semispinalis capitis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22852 ! -property_value: IAO:0000589 "common palmar digital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001410 ! common palmar digital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22908 ! -property_value: IAO:0000589 "basilic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001411 ! basilic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22923 ! -property_value: IAO:0000589 "common palmar digital vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001412 ! common palmar digital vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22934 ! -property_value: IAO:0000589 "brachial vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001413 ! brachial vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22963 ! -property_value: IAO:0000589 "median basilic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001414 ! median basilic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22984 ! -property_value: IAO:0000589 "skin of pelvis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001415 ! skin of pelvis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22988 ! -property_value: IAO:0000589 "skin of abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001416 ! skin of abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23000 ! -property_value: IAO:0000589 "skin of abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001416 ! skin of abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23021 ! -property_value: IAO:0000589 "skin of neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0001417 ! skin of neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23022 ! -property_value: IAO:0000589 "skin of neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0001417 ! skin of neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23028 ! -property_value: IAO:0000589 "skin of thorax (post-embryonic human)" xsd:string -intersection_of: UBERON:0001418 ! skin of thorax -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23029 ! -property_value: IAO:0000589 "skin of thorax (post-embryonic human)" xsd:string -intersection_of: UBERON:0001418 ! skin of thorax -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23100 ! -property_value: IAO:0000589 "skin of limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0001419 ! skin of limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23113 ! -property_value: IAO:0000589 "subscapular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001420 ! subscapular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23217 ! -property_value: IAO:0000589 "pectoral girdle region (post-embryonic human)" xsd:string -intersection_of: UBERON:0001421 ! pectoral girdle region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:233946 ! -property_value: IAO:0000589 "facial lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0001422 ! facial lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23463 ! -property_value: IAO:0000589 "radius bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001423 ! radius bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23466 ! -property_value: IAO:0000589 "ulna (post-embryonic human)" xsd:string -intersection_of: UBERON:0001424 ! ulna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234865 ! -property_value: IAO:0000589 "pectoral lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0001425 ! pectoral lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234908 ! -property_value: IAO:0000589 "jugular lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0001426 ! jugular lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23709 ! -property_value: IAO:0000589 "radiale (post-embryonic human)" xsd:string -intersection_of: UBERON:0001427 ! radiale -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23712 ! -property_value: IAO:0000589 "intermedium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001428 ! intermedium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23718 ! -property_value: IAO:0000589 "pisiform (post-embryonic human)" xsd:string -intersection_of: UBERON:0001429 ! pisiform -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23721 ! -property_value: IAO:0000589 "distal carpal bone 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001430 ! distal carpal bone 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23724 ! -property_value: IAO:0000589 "distal carpal bone 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001431 ! distal carpal bone 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23727 ! -property_value: IAO:0000589 "distal carpal bone 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001432 ! distal carpal bone 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23730 ! -property_value: IAO:0000589 "distal carpal bone 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001433 ! distal carpal bone 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23881 ! -property_value: IAO:0000589 "skeletal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001434 ! skeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23889 ! -property_value: IAO:0000589 "carpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001435 ! carpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23914 ! -property_value: IAO:0000589 "phalanx of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001436 ! phalanx of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24012 ! -property_value: IAO:0000589 "epiphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001437 ! epiphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24014 ! -property_value: IAO:0000589 "metaphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001438 ! metaphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24018 ! -property_value: IAO:0000589 "compact bone tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001439 ! compact bone tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24142 ! -property_value: IAO:0000589 "forelimb skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0001440 ! forelimb skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24144 ! -property_value: IAO:0000589 "hindlimb skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0001441 ! hindlimb skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24159 ! -property_value: IAO:0000589 "skeleton of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001442 ! skeleton of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9576 ! -property_value: IAO:0000589 "chest (post-embryonic human)" xsd:string -intersection_of: UBERON:0001443 ! chest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24218 ! -property_value: IAO:0000589 "subdivision of head (post-embryonic human)" xsd:string -intersection_of: UBERON:0001444 ! subdivision of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24222 ! -property_value: IAO:0000589 "skeleton of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0001445 ! skeleton of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24479 ! -property_value: IAO:0000589 "fibula (post-embryonic human)" xsd:string -intersection_of: UBERON:0001446 ! fibula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24491 ! -property_value: IAO:0000589 "tarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001447 ! tarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24492 ! -property_value: IAO:0000589 "metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001448 ! metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24493 ! -property_value: IAO:0000589 "phalanx of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0001449 ! phalanx of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24496 ! -property_value: IAO:0000589 "calcaneus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001450 ! calcaneus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24499 ! -property_value: IAO:0000589 "navicular bone of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0001451 ! navicular bone of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24518 ! -property_value: IAO:0000589 "distal tarsal bone 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001452 ! distal tarsal bone 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24519 ! -property_value: IAO:0000589 "distal tarsal bone 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001453 ! distal tarsal bone 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24520 ! -property_value: IAO:0000589 "distal tarsal bone 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001454 ! distal tarsal bone 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24527 ! -property_value: IAO:0000589 "cuboid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001455 ! cuboid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24728 ! -property_value: IAO:0000589 "face (post-embryonic human)" xsd:string -intersection_of: UBERON:0001456 ! face -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24760 ! -property_value: IAO:0000589 "skin of eyelid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001457 ! skin of eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24764 ! -property_value: IAO:0000589 "skin of lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0001458 ! skin of lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24775 ! -property_value: IAO:0000589 "skin of external ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0001459 ! skin of external ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24901 ! -property_value: IAO:0000589 "elbow (post-embryonic human)" xsd:string -intersection_of: UBERON:0001461 ! elbow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24938 ! -property_value: IAO:0000589 "manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24964 ! -property_value: IAO:0000589 "hip (post-embryonic human)" xsd:string -intersection_of: UBERON:0001464 ! hip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24974 ! -property_value: IAO:0000589 "knee (post-embryonic human)" xsd:string -intersection_of: UBERON:0001465 ! knee -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25046 ! -property_value: IAO:0000589 "pedal digit (post-embryonic human)" xsd:string -intersection_of: UBERON:0001466 ! pedal digit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25202 ! -property_value: IAO:0000589 "shoulder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001467 ! shoulder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25511 ! -property_value: IAO:0000589 "intervertebral joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001468 ! intervertebral joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25883 ! -property_value: IAO:0000589 "sternoclavicular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001469 ! sternoclavicular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25912 ! -property_value: IAO:0000589 "glenohumeral joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001470 ! glenohumeral joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:27648 ! -property_value: IAO:0000589 "skin of prepuce of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001471 ! skin of prepuce of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:29713 ! -property_value: IAO:0000589 "vaginal venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001472 ! vaginal venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:30315 ! -property_value: IAO:0000589 "lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0001473 ! lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:30317 ! -property_value: IAO:0000589 "bone element (post-embryonic human)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5018 ! -property_value: IAO:0000589 "bone element (post-embryonic human)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32521 ! -property_value: IAO:0000589 "deltoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001476 ! deltoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32546 ! -property_value: IAO:0000589 "infraspinatus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001477 ! infraspinatus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32549 ! -property_value: IAO:0000589 "teres major muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001478 ! teres major muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32672 ! -property_value: IAO:0000589 "sesamoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001479 ! sesamoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33302 ! -property_value: IAO:0000589 "proximal carpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001480 ! proximal carpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33303 ! -property_value: IAO:0000589 "distal carpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001481 ! distal carpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33531 ! -property_value: IAO:0000589 "muscle of shoulder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001482 ! muscle of shoulder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:34830 ! -property_value: IAO:0000589 "skin of shoulder (post-embryonic human)" xsd:string -intersection_of: UBERON:0001483 ! skin of shoulder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:34836 ! -property_value: IAO:0000589 "articular capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001484 ! articular capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35175 ! -property_value: IAO:0000589 "knee joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001485 ! knee joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35178 ! -property_value: IAO:0000589 "hip joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001486 ! hip joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35194 ! -property_value: IAO:0000589 "pes joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001487 ! pes joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35195 ! -property_value: IAO:0000589 "ankle joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001488 ! ankle joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35289 ! -property_value: IAO:0000589 "elbow joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001490 ! elbow joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321842 ! -property_value: IAO:0000589 "wrist joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001491 ! wrist joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37069 ! -property_value: IAO:0000589 "radial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37072 ! -property_value: IAO:0000589 "axillary nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001493 ! axillary nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37319 ! -property_value: IAO:0000589 "ulnar nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37349 ! -property_value: IAO:0000589 "pectoral muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001495 ! pectoral muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3736 ! -property_value: IAO:0000589 "ascending aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37367 ! -property_value: IAO:0000589 "muscle of pelvic girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001497 ! muscle of pelvic girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37369 ! -property_value: IAO:0000589 "muscle of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0001498 ! muscle of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37372 ! -property_value: IAO:0000589 "muscle of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001500 ! muscle of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37385 ! -property_value: IAO:0000589 "lumbrical muscle of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001501 ! lumbrical muscle of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37417 ! -property_value: IAO:0000589 "interosseous muscle of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001502 ! interosseous muscle of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37418 ! -property_value: IAO:0000589 "dorsal interosseous of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001503 ! dorsal interosseous of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37453 ! -property_value: IAO:0000589 "lumbrical muscle of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0001504 ! lumbrical muscle of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37664 ! -property_value: IAO:0000589 "coracobrachialis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001505 ! coracobrachialis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37667 ! -property_value: IAO:0000589 "brachialis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001506 ! brachialis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37670 ! -property_value: IAO:0000589 "biceps brachii (post-embryonic human)" xsd:string -intersection_of: UBERON:0001507 ! biceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3768 ! -property_value: IAO:0000589 "arch of aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37688 ! -property_value: IAO:0000589 "triceps brachii (post-embryonic human)" xsd:string -intersection_of: UBERON:0001509 ! triceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37800 ! -property_value: IAO:0000589 "skin of knee (post-embryonic human)" xsd:string -intersection_of: UBERON:0001510 ! skin of knee -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37828 ! -property_value: IAO:0000589 "skin of leg (post-embryonic human)" xsd:string -intersection_of: UBERON:0001511 ! skin of leg -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37831 ! -property_value: IAO:0000589 "skin of ankle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001512 ! skin of ankle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37834 ! -property_value: IAO:0000589 "skin of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0001513 ! skin of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3784 ! -property_value: IAO:0000589 "descending aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0001514 ! descending aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3786 ! -property_value: IAO:0000589 "thoracic aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0001515 ! thoracic aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3789 ! -property_value: IAO:0000589 "abdominal aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38250 ! -property_value: IAO:0000589 "skin of elbow (post-embryonic human)" xsd:string -intersection_of: UBERON:0001517 ! skin of elbow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38280 ! -property_value: IAO:0000589 "skin of wrist (post-embryonic human)" xsd:string -intersection_of: UBERON:0001518 ! skin of wrist -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38295 ! -property_value: IAO:0000589 "skin of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001519 ! skin of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38450 ! -property_value: IAO:0000589 "pronator teres (post-embryonic human)" xsd:string -intersection_of: UBERON:0001520 ! pronator teres -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38459 ! -property_value: IAO:0000589 "flexor carpi radialis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001521 ! flexor carpi radialis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38465 ! -property_value: IAO:0000589 "flexor carpi ulnaris muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001522 ! flexor carpi ulnaris muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38478 ! -property_value: IAO:0000589 "flexor digitorum profundus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001523 ! flexor digitorum profundus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38494 ! -property_value: IAO:0000589 "extensor carpi radialis longus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001524 ! extensor carpi radialis longus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38497 ! -property_value: IAO:0000589 "extensor carpi radialis brevis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001525 ! extensor carpi radialis brevis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38506 ! -property_value: IAO:0000589 "extensor carpi ulnaris muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001526 ! extensor carpi ulnaris muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38515 ! -property_value: IAO:0000589 "abductor pollicis longus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001527 ! abductor pollicis longus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38863 ! -property_value: IAO:0000589 "radio-ulnar joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001528 ! radio-ulnar joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3932 ! -property_value: IAO:0000589 "brachiocephalic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3939 ! -property_value: IAO:0000589 "common carotid artery plus branches (post-embryonic human)" xsd:string -intersection_of: UBERON:0001530 ! common carotid artery plus branches -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3941 ! -property_value: IAO:0000589 "right common carotid artery plus branches (post-embryonic human)" xsd:string -intersection_of: UBERON:0001531 ! right common carotid artery plus branches -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3947 ! -property_value: IAO:0000589 "internal carotid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3951 ! -property_value: IAO:0000589 "subclavian artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3953 ! -property_value: IAO:0000589 "right subclavian artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001534 ! right subclavian artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3956 ! -property_value: IAO:0000589 "vertebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4058 ! -property_value: IAO:0000589 "left common carotid artery plus branches (post-embryonic human)" xsd:string -intersection_of: UBERON:0001536 ! left common carotid artery plus branches -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43894 ! -property_value: IAO:0000589 "anterior tibial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001537 ! anterior tibial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43895 ! -property_value: IAO:0000589 "posterior tibial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001538 ! posterior tibial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43915 ! -property_value: IAO:0000589 "dorsalis pedis artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001539 ! dorsalis pedis artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43921 ! -property_value: IAO:0000589 "peroneal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001540 ! peroneal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43925 ! -property_value: IAO:0000589 "medial plantar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001541 ! medial plantar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44226 ! -property_value: IAO:0000589 "inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0001542 ! inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44227 ! -property_value: IAO:0000589 "popliteal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0001543 ! popliteal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44327 ! -property_value: IAO:0000589 "popliteal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001544 ! popliteal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44331 ! -property_value: IAO:0000589 "anterior tibial vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001545 ! anterior tibial vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44332 ! -property_value: IAO:0000589 "posterior tibial vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001546 ! posterior tibial vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44333 ! -property_value: IAO:0000589 "small saphenous vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001547 ! small saphenous vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44359 ! -property_value: IAO:0000589 "lateral marginal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001548 ! lateral marginal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44377 ! -property_value: IAO:0000589 "dorsal metatarsal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001549 ! dorsal metatarsal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44420 ! -property_value: IAO:0000589 "medial marginal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001550 ! medial marginal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44561 ! -property_value: IAO:0000589 "vein of hindlimb zeugopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0001551 ! vein of hindlimb zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70497 ! -property_value: IAO:0000589 "kidney arcuate artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001552 ! kidney arcuate artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44598 ! -property_value: IAO:0000589 "medial tarsal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001553 ! medial tarsal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45282 ! -property_value: IAO:0000589 "skin of hip (post-embryonic human)" xsd:string -intersection_of: UBERON:0001554 ! skin of hip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45615 ! -property_value: IAO:0000589 "digestive tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45659 ! -property_value: IAO:0000589 "lower urinary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0001556 ! lower urinary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45661 ! -property_value: IAO:0000589 "upper respiratory tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45662 ! -property_value: IAO:0000589 "lower respiratory tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45733 ! -property_value: IAO:0000589 "neck of organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0001560 ! neck of organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4613 ! -property_value: IAO:0000589 "subcostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001561 ! subcostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46291 ! -property_value: IAO:0000589 "digastric muscle group (post-embryonic human)" xsd:string -intersection_of: UBERON:0001562 ! digastric muscle group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46308 ! -property_value: IAO:0000589 "longus capitis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001563 ! longus capitis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46320 ! -property_value: IAO:0000589 "mylohyoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001564 ! mylohyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46325 ! -property_value: IAO:0000589 "geniohyoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001565 ! geniohyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46417 ! -property_value: IAO:0000589 "cricothyroid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001566 ! cricothyroid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46476 ! -property_value: IAO:0000589 "cheek (post-embryonic human)" xsd:string -intersection_of: UBERON:0001567 ! cheek -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46562 ! -property_value: IAO:0000589 "muscle of larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001568 ! muscle of larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46620 ! -property_value: IAO:0000589 "constrictor muscle of pharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001569 ! constrictor muscle of pharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46623 ! -property_value: IAO:0000589 "inferior pharyngeal constrictor (post-embryonic human)" xsd:string -intersection_of: UBERON:0001570 ! inferior pharyngeal constrictor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46690 ! -property_value: IAO:0000589 "genioglossus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001571 ! genioglossus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46691 ! -property_value: IAO:0000589 "hyoglossus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46692 ! -property_value: IAO:0000589 "styloglossus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001573 ! styloglossus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46697 ! -property_value: IAO:0000589 "palatoglossus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001574 ! palatoglossus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46699 ! -property_value: IAO:0000589 "extrinsic muscle of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46701 ! -property_value: IAO:0000589 "intrinsic muscle of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46751 ! -property_value: IAO:0000589 "facial muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001577 ! facial muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46779 ! -property_value: IAO:0000589 "orbicularis oculi muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001578 ! orbicularis oculi muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46787 ! -property_value: IAO:0000589 "olfactory nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46805 ! -property_value: IAO:0000589 "levator labii superioris (post-embryonic human)" xsd:string -intersection_of: UBERON:0001580 ! levator labii superioris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46816 ! -property_value: IAO:0000589 "depressor labii inferioris (post-embryonic human)" xsd:string -intersection_of: UBERON:0001581 ! depressor labii inferioris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46834 ! -property_value: IAO:0000589 "buccinator muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001582 ! buccinator muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46854 ! -property_value: IAO:0000589 "extrinsic auricular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001583 ! extrinsic auricular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4694 ! -property_value: IAO:0000589 "left subclavian artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001584 ! left subclavian artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4720 ! -property_value: IAO:0000589 "anterior vena cava (post-embryonic human)" xsd:string -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4724 ! -property_value: IAO:0000589 "internal jugular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4725 ! -property_value: IAO:0000589 "subclavian vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4727 ! -property_value: IAO:0000589 "vertebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001588 ! vertebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4729 ! -property_value: IAO:0000589 "internal thoracic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001589 ! internal thoracic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4742 ! -property_value: IAO:0000589 "pericardiacophrenic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001590 ! pericardiacophrenic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4747 ! -property_value: IAO:0000589 "thymic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001591 ! thymic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4749 ! -property_value: IAO:0000589 "bronchial vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001592 ! bronchial vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4767 ! -property_value: IAO:0000589 "venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001593 ! venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4838 ! -property_value: IAO:0000589 "azygos vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001594 ! azygos vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48966 ! -property_value: IAO:0000589 "auricular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001595 ! auricular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48967 ! -property_value: IAO:0000589 "intrinsic auricular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001596 ! intrinsic auricular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48996 ! -property_value: IAO:0000589 "masseter muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001597 ! masseter muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49006 ! -property_value: IAO:0000589 "temporalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001598 ! temporalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49027 ! -property_value: IAO:0000589 "stapedius muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001599 ! stapedius muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49028 ! -property_value: IAO:0000589 "tensor tympani (post-embryonic human)" xsd:string -intersection_of: UBERON:0001600 ! tensor tympani -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49033 ! -property_value: IAO:0000589 "extra-ocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49037 ! -property_value: IAO:0000589 "medial rectus extraocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001602 ! medial rectus extraocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49038 ! -property_value: IAO:0000589 "lateral rectus extra-ocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001603 ! lateral rectus extra-ocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49041 ! -property_value: IAO:0000589 "levator palpebrae superioris (post-embryonic human)" xsd:string -intersection_of: UBERON:0001604 ! levator palpebrae superioris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49151 ! -property_value: IAO:0000589 "ciliary muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001605 ! ciliary muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49154 ! -property_value: IAO:0000589 "muscle of iris (post-embryonic human)" xsd:string -intersection_of: UBERON:0001606 ! muscle of iris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49157 ! -property_value: IAO:0000589 "sphincter pupillae (post-embryonic human)" xsd:string -intersection_of: UBERON:0001607 ! sphincter pupillae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49158 ! -property_value: IAO:0000589 "dilatator pupillae (post-embryonic human)" xsd:string -intersection_of: UBERON:0001608 ! dilatator pupillae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49178 ! -property_value: IAO:0000589 "isthmus of thyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49526 ! -property_value: IAO:0000589 "lingual artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001610 ! lingual artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49543 ! -property_value: IAO:0000589 "sublingual artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001611 ! sublingual artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49549 ! -property_value: IAO:0000589 "facial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001612 ! facial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49586 ! -property_value: IAO:0000589 "occipital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001613 ! occipital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49650 ! -property_value: IAO:0000589 "superficial temporal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001614 ! superficial temporal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49657 ! -property_value: IAO:0000589 "transverse facial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001615 ! transverse facial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49675 ! -property_value: IAO:0000589 "maxillary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49701 ! -property_value: IAO:0000589 "mental artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001617 ! mental artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49754 ! -property_value: IAO:0000589 "buccal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001618 ! buccal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49868 ! -property_value: IAO:0000589 "ophthalmic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49879 ! -property_value: IAO:0000589 "central retinal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001620 ! central retinal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49893 ! -property_value: IAO:0000589 "coronary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001621 ! coronary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49927 ! -property_value: IAO:0000589 "lacrimal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001622 ! lacrimal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50000 ! -property_value: IAO:0000589 "dorsal nasal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001623 ! dorsal nasal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50028 ! -property_value: IAO:0000589 "anterior cerebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50039 ! -property_value: IAO:0000589 "right coronary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001625 ! right coronary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50040 ! -property_value: IAO:0000589 "left coronary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001626 ! left coronary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50079 ! -property_value: IAO:0000589 "middle cerebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50084 ! -property_value: IAO:0000589 "posterior communicating artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50095 ! -property_value: IAO:0000589 "carotid body (post-embryonic human)" xsd:string -intersection_of: UBERON:0001629 ! carotid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5022 ! -property_value: IAO:0000589 "muscle organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0001630 ! muscle organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5031 ! -property_value: IAO:0000589 "thoracic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001631 ! thoracic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50438 ! -property_value: IAO:0000589 "temporal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001632 ! temporal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50542 ! -property_value: IAO:0000589 "basilar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50570 ! -property_value: IAO:0000589 "mesencephalic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001634 ! mesencephalic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50573 ! -property_value: IAO:0000589 "superior cerebellar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001635 ! superior cerebellar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50583 ! -property_value: IAO:0000589 "posterior cerebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50720 ! -property_value: IAO:0000589 "artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50723 ! -property_value: IAO:0000589 "vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001638 ! vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50735 ! -property_value: IAO:0000589 "hepatic portal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001639 ! hepatic portal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50737 ! -property_value: IAO:0000589 "celiac artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001640 ! celiac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50763 ! -property_value: IAO:0000589 "transverse sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001641 ! transverse sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50767 ! -property_value: IAO:0000589 "superior sagittal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001642 ! superior sagittal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50864 ! -property_value: IAO:0000589 "oculomotor nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50865 ! -property_value: IAO:0000589 "trochlear nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50866 ! -property_value: IAO:0000589 "trigeminal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50867 ! -property_value: IAO:0000589 "abducens nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50868 ! -property_value: IAO:0000589 "facial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50869 ! -property_value: IAO:0000589 "vestibulocochlear nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50870 ! -property_value: IAO:0000589 "glossopharyngeal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50871 ! -property_value: IAO:0000589 "hypoglossal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50872 ! -property_value: IAO:0000589 "right pulmonary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001651 ! right pulmonary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50873 ! -property_value: IAO:0000589 "left pulmonary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001652 ! left pulmonary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50874 ! -property_value: IAO:0000589 "facial vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001653 ! facial vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50904 ! -property_value: IAO:0000589 "supraorbital vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001654 ! supraorbital vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50925 ! -property_value: IAO:0000589 "submental vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001655 ! submental vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50928 ! -property_value: IAO:0000589 "retromandibular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001656 ! retromandibular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50932 ! -property_value: IAO:0000589 "superficial temporal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001657 ! superficial temporal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50935 ! -property_value: IAO:0000589 "middle temporal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001658 ! middle temporal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50938 ! -property_value: IAO:0000589 "transverse facial vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001659 ! transverse facial vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50941 ! -property_value: IAO:0000589 "maxillary vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001660 ! maxillary vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50954 ! -property_value: IAO:0000589 "deep temporal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001661 ! deep temporal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50956 ! -property_value: IAO:0000589 "anterior auricular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001662 ! anterior auricular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50981 ! -property_value: IAO:0000589 "cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001663 ! cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50986 ! -property_value: IAO:0000589 "inferior cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001664 ! inferior cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51062 ! -property_value: IAO:0000589 "triceps surae (post-embryonic human)" xsd:string -intersection_of: UBERON:0001665 ! triceps surae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51071 ! -property_value: IAO:0000589 "flexor digitorum longus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001666 ! flexor digitorum longus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51099 ! -property_value: IAO:0000589 "tibialis posterior (post-embryonic human)" xsd:string -intersection_of: UBERON:0001667 ! tibialis posterior -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51227 ! -property_value: IAO:0000589 "cerebellar vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001668 ! cerebellar vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51232 ! -property_value: IAO:0000589 "superior cerebellar vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001669 ! superior cerebellar vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51233 ! -property_value: IAO:0000589 "inferior cerebellar vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001670 ! inferior cerebellar vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51302 ! -property_value: IAO:0000589 "temporal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001671 ! temporal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51306 ! -property_value: IAO:0000589 "anterior cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001672 ! anterior cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51799 ! -property_value: IAO:0000589 "central retinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001673 ! central retinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52519 ! -property_value: IAO:0000589 "masseteric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001674 ! masseteric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52618 ! -property_value: IAO:0000589 "trigeminal ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52735 ! -property_value: IAO:0000589 "occipital bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001676 ! occipital bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52736 ! -property_value: IAO:0000589 "sphenoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001677 ! sphenoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52737 ! -property_value: IAO:0000589 "temporal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52740 ! -property_value: IAO:0000589 "ethmoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001679 ! ethmoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52741 ! -property_value: IAO:0000589 "lacrimal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001680 ! lacrimal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52745 ! -property_value: IAO:0000589 "nasal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001681 ! nasal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52746 ! -property_value: IAO:0000589 "palatine bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001682 ! palatine bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52747 ! -property_value: IAO:0000589 "jugal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001683 ! jugal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52748 ! -property_value: IAO:0000589 "mandible (post-embryonic human)" xsd:string -intersection_of: UBERON:0001684 ! mandible -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52749 ! -property_value: IAO:0000589 "hyoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001685 ! hyoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52750 ! -property_value: IAO:0000589 "auditory ossicle bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001686 ! auditory ossicle bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52751 ! -property_value: IAO:0000589 "stapes bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001687 ! stapes bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52752 ! -property_value: IAO:0000589 "incus bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001688 ! incus bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52753 ! -property_value: IAO:0000589 "malleus bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001689 ! malleus bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52780 ! -property_value: IAO:0000589 "ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0001690 ! ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52781 ! -property_value: IAO:0000589 "external ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0001691 ! external ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52858 ! -property_value: IAO:0000589 "basioccipital bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52859 ! -property_value: IAO:0000589 "exoccipital bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52871 ! -property_value: IAO:0000589 "petrous part of temporal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52883 ! -property_value: IAO:0000589 "squamous part of temporal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53074 ! -property_value: IAO:0000589 "orbit of skull (post-embryonic human)" xsd:string -intersection_of: UBERON:0001697 ! orbit of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53155 ! -property_value: IAO:0000589 "foramen ovale of skull (post-embryonic human)" xsd:string -intersection_of: UBERON:0001698 ! foramen ovale of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53410 ! -property_value: IAO:0000589 "sensory root of facial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001699 ! sensory root of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53414 ! -property_value: IAO:0000589 "geniculate ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53471 ! -property_value: IAO:0000589 "glossopharyngeal ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53669 ! -property_value: IAO:0000589 "eyelash (post-embryonic human)" xsd:string -intersection_of: UBERON:0001702 ! eyelash -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53672 ! -property_value: IAO:0000589 "neurocranium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001703 ! neurocranium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54326 ! -property_value: IAO:0000589 "nail (post-embryonic human)" xsd:string -intersection_of: UBERON:0001705 ! nail -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54375 ! -property_value: IAO:0000589 "nasal septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54378 ! -property_value: IAO:0000589 "nasal cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54396 ! -property_value: IAO:0000589 "jaw skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0001708 ! jaw skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59399 ! -property_value: IAO:0000589 "upper jaw region (post-embryonic human)" xsd:string -intersection_of: UBERON:0001709 ! upper jaw region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59398 ! -property_value: IAO:0000589 "lower jaw region (post-embryonic human)" xsd:string -intersection_of: UBERON:0001710 ! lower jaw region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54437 ! -property_value: IAO:0000589 "eyelid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001711 ! eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54439 ! -property_value: IAO:0000589 "upper eyelid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54442 ! -property_value: IAO:0000589 "lower eyelid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54502 ! -property_value: IAO:0000589 "cranial ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54510 ! -property_value: IAO:0000589 "oculomotor nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54549 ! -property_value: IAO:0000589 "secondary palate (post-embryonic human)" xsd:string -intersection_of: UBERON:0001716 ! secondary palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54565 ! -property_value: IAO:0000589 "spinal nucleus of trigeminal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001717 ! spinal nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54568 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54588 ! -property_value: IAO:0000589 "nucleus ambiguus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001719 ! nucleus ambiguus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54603 ! -property_value: IAO:0000589 "cochlear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001720 ! cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54608 ! -property_value: IAO:0000589 "inferior vestibular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001721 ! inferior vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54611 ! -property_value: IAO:0000589 "medial vestibular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001722 ! medial vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54640 ! -property_value: IAO:0000589 "tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001723 ! tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54683 ! -property_value: IAO:0000589 "sphenoidal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001724 ! sphenoidal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54816 ! -property_value: IAO:0000589 "cranial synchondrosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001725 ! cranial synchondrosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54819 ! -property_value: IAO:0000589 "papilla of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001726 ! papilla of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54825 ! -property_value: IAO:0000589 "taste bud (post-embryonic human)" xsd:string -intersection_of: UBERON:0001727 ! taste bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54878 ! -property_value: IAO:0000589 "nasopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54879 ! -property_value: IAO:0000589 "oropharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001729 ! oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54921 ! -property_value: IAO:0000589 "extrinsic ligament of larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001730 ! extrinsic ligament of larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54935 ! -property_value: IAO:0000589 "cavity of pharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54970 ! -property_value: IAO:0000589 "pharyngeal tonsil (post-embryonic human)" xsd:string -intersection_of: UBERON:0001732 ! pharyngeal tonsil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55021 ! -property_value: IAO:0000589 "soft palate (post-embryonic human)" xsd:string -intersection_of: UBERON:0001733 ! soft palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55022 ! -property_value: IAO:0000589 "palatine uvula (post-embryonic human)" xsd:string -intersection_of: UBERON:0001734 ! palatine uvula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55070 ! -property_value: IAO:0000589 "tonsillar ring (post-embryonic human)" xsd:string -intersection_of: UBERON:0001735 ! tonsillar ring -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55093 ! -property_value: IAO:0000589 "submandibular gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001736 ! submandibular gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55097 ! -property_value: IAO:0000589 "larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001737 ! larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55099 ! -property_value: IAO:0000589 "thyroid cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0001738 ! thyroid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55108 ! -property_value: IAO:0000589 "laryngeal cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0001739 ! laryngeal cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55109 ! -property_value: IAO:0000589 "arytenoid cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55110 ! -property_value: IAO:0000589 "corniculate cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0001741 ! corniculate cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55112 ! -property_value: IAO:0000589 "epiglottic cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0001742 ! epiglottic cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55131 ! -property_value: IAO:0000589 "ligament of larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001743 ! ligament of larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55220 ! -property_value: IAO:0000589 "lymphoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001744 ! lymphoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55224 ! -property_value: IAO:0000589 "secondary nodular lymphoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001745 ! secondary nodular lymphoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55513 ! -property_value: IAO:0000589 "capsule of thyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001746 ! capsule of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55515 ! -property_value: IAO:0000589 "parenchyma of thyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001747 ! parenchyma of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55566 ! -property_value: IAO:0000589 "capsule of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001748 ! capsule of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55569 ! -property_value: IAO:0000589 "parenchyma of parathyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001749 ! parenchyma of parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55605 ! -property_value: IAO:0000589 "lacrimal apparatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001750 ! lacrimal apparatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55628 ! -property_value: IAO:0000589 "dentine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001751 ! dentine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55629 ! -property_value: IAO:0000589 "enamel (post-embryonic human)" xsd:string -intersection_of: UBERON:0001752 ! enamel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55630 ! -property_value: IAO:0000589 "cementum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001753 ! cementum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55631 ! -property_value: IAO:0000589 "dental pulp (post-embryonic human)" xsd:string -intersection_of: UBERON:0001754 ! dental pulp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56472 ! -property_value: IAO:0000589 "distal part of styloid process of temporal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0001755 ! distal part of styloid process of temporal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56513 ! -property_value: IAO:0000589 "middle ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0001756 ! middle ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56580 ! -property_value: IAO:0000589 "pinna (post-embryonic human)" xsd:string -intersection_of: UBERON:0001757 ! pinna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5731 ! -property_value: IAO:0000589 "vagus nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001759 ! vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57417 ! -property_value: IAO:0000589 "frontal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001760 ! frontal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57662 ! -property_value: IAO:0000589 "odontogenic papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0001763 ! odontogenic papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57715 ! -property_value: IAO:0000589 "maxillary sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001764 ! maxillary sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58006 ! -property_value: IAO:0000589 "mammary duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001765 ! mammary duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58078 ! -property_value: IAO:0000589 "anterior chamber of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58080 ! -property_value: IAO:0000589 "posterior chamber of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0001767 ! posterior chamber of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58103 ! -property_value: IAO:0000589 "uvea (post-embryonic human)" xsd:string -intersection_of: UBERON:0001768 ! uvea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58235 ! -property_value: IAO:0000589 "iris (post-embryonic human)" xsd:string -intersection_of: UBERON:0001769 ! iris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58245 ! -property_value: IAO:0000589 "lacrimal canaliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001770 ! lacrimal canaliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58252 ! -property_value: IAO:0000589 "pupil (post-embryonic human)" xsd:string -intersection_of: UBERON:0001771 ! pupil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58263 ! -property_value: IAO:0000589 "corneal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58269 ! -property_value: IAO:0000589 "sclera (post-embryonic human)" xsd:string -intersection_of: UBERON:0001773 ! sclera -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58274 ! -property_value: IAO:0000589 "skeletal muscle of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0001774 ! skeletal muscle of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58295 ! -property_value: IAO:0000589 "ciliary body (post-embryonic human)" xsd:string -intersection_of: UBERON:0001775 ! ciliary body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58298 ! -property_value: IAO:0000589 "optic choroid (post-embryonic human)" xsd:string -intersection_of: UBERON:0001776 ! optic choroid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58306 ! -property_value: IAO:0000589 "substantia propria of cornea (post-embryonic human)" xsd:string -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58464 ! -property_value: IAO:0000589 "ciliary epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001778 ! ciliary epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58526 ! -property_value: IAO:0000589 "iris stroma (post-embryonic human)" xsd:string -intersection_of: UBERON:0001779 ! iris stroma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5858 ! -property_value: IAO:0000589 "spinal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58617 ! -property_value: IAO:0000589 "layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001781 ! layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58627 ! -property_value: IAO:0000589 "pigmented layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58634 ! -property_value: IAO:0000589 "optic disc (post-embryonic human)" xsd:string -intersection_of: UBERON:0001783 ! optic disc -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5865 ! -property_value: IAO:0000589 "cranial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58658 ! -property_value: IAO:0000589 "fovea centralis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001786 ! fovea centralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58680 ! -property_value: IAO:0000589 "photoreceptor layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001787 ! photoreceptor layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58683 ! -property_value: IAO:0000589 "outer limiting layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001788 ! outer limiting layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58684 ! -property_value: IAO:0000589 "outer nuclear layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001789 ! outer nuclear layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58685 ! -property_value: IAO:0000589 "outer plexiform layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001790 ! outer plexiform layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58686 ! -property_value: IAO:0000589 "inner nuclear layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001791 ! inner nuclear layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58687 ! -property_value: IAO:0000589 "ganglionic layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001792 ! ganglionic layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58688 ! -property_value: IAO:0000589 "nerve fiber layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58689 ! -property_value: IAO:0000589 "inner limiting layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001794 ! inner limiting layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58704 ! -property_value: IAO:0000589 "inner plexiform layer of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0001795 ! inner plexiform layer of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58819 ! -property_value: IAO:0000589 "aqueous humor of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58822 ! -property_value: IAO:0000589 "vitreous humor (post-embryonic human)" xsd:string -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58827 ! -property_value: IAO:0000589 "vitreous body (post-embryonic human)" xsd:string -intersection_of: UBERON:0001798 ! vitreous body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58848 ! -property_value: IAO:0000589 "vitreous chamber of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0001799 ! vitreous chamber of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5885 ! -property_value: IAO:0000589 "sensory ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001800 ! sensory ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58865 ! -property_value: IAO:0000589 "anterior segment of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0001801 ! anterior segment of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58868 ! -property_value: IAO:0000589 "posterior segment of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0001802 ! posterior segment of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58871 ! -property_value: IAO:0000589 "epithelium of lens (post-embryonic human)" xsd:string -intersection_of: UBERON:0001803 ! epithelium of lens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58881 ! -property_value: IAO:0000589 "capsule of lens (post-embryonic human)" xsd:string -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5889 ! -property_value: IAO:0000589 "autonomic ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5890 ! -property_value: IAO:0000589 "sympathetic ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001806 ! sympathetic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5891 ! -property_value: IAO:0000589 "paravertebral ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001807 ! paravertebral ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5894 ! -property_value: IAO:0000589 "parasympathetic ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001808 ! parasympathetic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5896 ! -property_value: IAO:0000589 "enteric ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001809 ! enteric ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5901 ! -property_value: IAO:0000589 "nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001810 ! nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59011 ! -property_value: IAO:0000589 "conjunctiva (post-embryonic human)" xsd:string -intersection_of: UBERON:0001811 ! conjunctiva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59025 ! -property_value: IAO:0000589 "palpebral conjunctiva (post-embryonic human)" xsd:string -intersection_of: UBERON:0001812 ! palpebral conjunctiva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5903 ! -property_value: IAO:0000589 "spinal nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001813 ! spinal nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5906 ! -property_value: IAO:0000589 "brachial nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5907 ! -property_value: IAO:0000589 "lumbosacral nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5910 ! -property_value: IAO:0000589 "autonomic nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001816 ! autonomic nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59101 ! -property_value: IAO:0000589 "lacrimal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001817 ! lacrimal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59104 ! -property_value: IAO:0000589 "tarsal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001818 ! tarsal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59110 ! -property_value: IAO:0000589 "palpebral fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0001819 ! palpebral fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59152 ! -property_value: IAO:0000589 "sweat gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001820 ! sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59160 ! -property_value: IAO:0000589 "sebaceous gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001821 ! sebaceous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59328 ! -property_value: IAO:0000589 "orbital septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001822 ! orbital septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59502 ! -property_value: IAO:0000589 "nasal cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0001823 ! nasal cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59662 ! -property_value: IAO:0000589 "mucosa of larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001824 ! mucosa of larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59679 ! -property_value: IAO:0000589 "paranasal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001825 ! paranasal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59684 ! -property_value: IAO:0000589 "nasal cavity mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0001826 ! nasal cavity mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59756 ! -property_value: IAO:0000589 "secretion of lacrimal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001827 ! secretion of lacrimal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59762 ! -property_value: IAO:0000589 "gingiva (post-embryonic human)" xsd:string -intersection_of: UBERON:0001828 ! gingiva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59788 ! -property_value: IAO:0000589 "major salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001829 ! major salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59789 ! -property_value: IAO:0000589 "minor salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001830 ! minor salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59790 ! -property_value: IAO:0000589 "parotid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001831 ! parotid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59791 ! -property_value: IAO:0000589 "sublingual gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001832 ! sublingual gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59816 ! -property_value: IAO:0000589 "lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0001833 ! lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59817 ! -property_value: IAO:0000589 "upper lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0001834 ! upper lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59818 ! -property_value: IAO:0000589 "lower lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0001835 ! lower lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59862 ! -property_value: IAO:0000589 "saliva (post-embryonic human)" xsd:string -intersection_of: UBERON:0001836 ! saliva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59908 ! -property_value: IAO:0000589 "duct of salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001837 ! duct of salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59983 ! -property_value: IAO:0000589 "sublingual duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001838 ! sublingual duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60179 ! -property_value: IAO:0000589 "bony labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0001839 ! bony labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60186 ! -property_value: IAO:0000589 "semicircular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0001840 ! semicircular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60187 ! -property_value: IAO:0000589 "anterior semicircular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60190 ! -property_value: IAO:0000589 "posterior semicircular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60193 ! -property_value: IAO:0000589 "lateral semicircular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60201 ! -property_value: IAO:0000589 "cochlea (post-embryonic human)" xsd:string -intersection_of: UBERON:0001844 ! cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60908 ! -property_value: IAO:0000589 "perilymph (post-embryonic human)" xsd:string -intersection_of: UBERON:0001845 ! perilymph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60909 ! -property_value: IAO:0000589 "internal ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0001846 ! internal ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60984 ! -property_value: IAO:0000589 "lobule of pinna (post-embryonic human)" xsd:string -intersection_of: UBERON:0001847 ! lobule of pinna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61013 ! -property_value: IAO:0000589 "auricular cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0001848 ! auricular cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61022 ! -property_value: IAO:0000589 "membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61063 ! -property_value: IAO:0000589 "lacrimal drainage system (post-embryonic human)" xsd:string -intersection_of: UBERON:0001850 ! lacrimal drainage system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61109 ! -property_value: IAO:0000589 "cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0001851 ! cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61112 ! -property_value: IAO:0000589 "endolymph (post-embryonic human)" xsd:string -intersection_of: UBERON:0001852 ! endolymph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61113 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61116 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61119 ! -property_value: IAO:0000589 "cochlear duct of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61122 ! -property_value: IAO:0000589 "semicircular duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001856 ! semicircular duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61123 ! -property_value: IAO:0000589 "anterior semicircular duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001857 ! anterior semicircular duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61126 ! -property_value: IAO:0000589 "posterior semicircular duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001858 ! posterior semicircular duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61129 ! -property_value: IAO:0000589 "lateral semicircular duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001859 ! lateral semicircular duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61246 ! -property_value: IAO:0000589 "endolymphatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61252 ! -property_value: IAO:0000589 "ductus reuniens (post-embryonic human)" xsd:string -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61255 ! -property_value: IAO:0000589 "vestibular labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61269 ! -property_value: IAO:0000589 "scala vestibuli (post-embryonic human)" xsd:string -intersection_of: UBERON:0001863 ! scala vestibuli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61272 ! -property_value: IAO:0000589 "scala tympani (post-embryonic human)" xsd:string -intersection_of: UBERON:0001864 ! scala tympani -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61289 ! -property_value: IAO:0000589 "cartilaginous external acoustic tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0001865 ! cartilaginous external acoustic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61304 ! -property_value: IAO:0000589 "sebum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001866 ! sebum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61339 ! -property_value: IAO:0000589 "cartilage of external ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0001867 ! cartilage of external ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61416 ! -property_value: IAO:0000589 "skin of chest (post-embryonic human)" xsd:string -intersection_of: UBERON:0001868 ! skin of chest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61817 ! -property_value: IAO:0000589 "cerebral hemisphere (post-embryonic human)" xsd:string -intersection_of: UBERON:0001869 ! cerebral hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242199 ! -property_value: IAO:0000589 "frontal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0001870 ! frontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61825 ! -property_value: IAO:0000589 "temporal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0001871 ! temporal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61826 ! -property_value: IAO:0000589 "parietal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0001872 ! parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61833 ! -property_value: IAO:0000589 "caudate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61834 ! -property_value: IAO:0000589 "putamen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001874 ! putamen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61835 ! -property_value: IAO:0000589 "globus pallidus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001875 ! globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61841 ! -property_value: IAO:0000589 "amygdala (post-embryonic human)" xsd:string -intersection_of: UBERON:0001876 ! amygdala -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61879 ! -property_value: IAO:0000589 "medial septal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001877 ! medial septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61881 ! -property_value: IAO:0000589 "septofimbrial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001878 ! septofimbrial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61882 ! -property_value: IAO:0000589 "nucleus of diagonal band (post-embryonic human)" xsd:string -intersection_of: UBERON:0001879 ! nucleus of diagonal band -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61884 ! -property_value: IAO:0000589 "bed nucleus of stria terminalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001880 ! bed nucleus of stria terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61888 ! -property_value: IAO:0000589 "island of Calleja (post-embryonic human)" xsd:string -intersection_of: UBERON:0001881 ! island of Calleja -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61889 ! -property_value: IAO:0000589 "nucleus accumbens (post-embryonic human)" xsd:string -intersection_of: UBERON:0001882 ! nucleus accumbens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6191 ! -property_value: IAO:0000589 "phrenic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001884 ! phrenic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61922 ! -property_value: IAO:0000589 "dentate gyrus of hippocampal formation (post-embryonic human)" xsd:string -intersection_of: UBERON:0001885 ! dentate gyrus of hippocampal formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61934 ! -property_value: IAO:0000589 "choroid plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001886 ! choroid plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61950 ! -property_value: IAO:0000589 "internal capsule of telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001887 ! internal capsule of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61971 ! -property_value: IAO:0000589 "lateral olfactory stria (post-embryonic human)" xsd:string -intersection_of: UBERON:0001888 ! lateral olfactory stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6198 ! -property_value: IAO:0000589 "trunk of phrenic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001889 ! trunk of phrenic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61992 ! -property_value: IAO:0000589 "forebrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61993 ! -property_value: IAO:0000589 "midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295666 ! -property_value: IAO:0000589 "rhombomere (post-embryonic human)" xsd:string -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62000 ! -property_value: IAO:0000589 "telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62001 ! -property_value: IAO:0000589 "diencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62003 ! -property_value: IAO:0000589 "metencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62004 ! -property_value: IAO:0000589 "medulla oblongata (post-embryonic human)" xsd:string -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62008 ! -property_value: IAO:0000589 "hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62009 ! -property_value: IAO:0000589 "epithalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62010 ! -property_value: IAO:0000589 "ventral thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001900 ! ventral thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62015 ! -property_value: IAO:0000589 "epithelium of trachea (post-embryonic human)" xsd:string -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62017 ! -property_value: IAO:0000589 "epithelium of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001902 ! epithelium of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62026 ! -property_value: IAO:0000589 "thalamic reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001903 ! thalamic reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62032 ! -property_value: IAO:0000589 "habenula (post-embryonic human)" xsd:string -intersection_of: UBERON:0001904 ! habenula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62033 ! -property_value: IAO:0000589 "pineal body (post-embryonic human)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62035 ! -property_value: IAO:0000589 "subthalamic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001906 ! subthalamic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62038 ! -property_value: IAO:0000589 "zona incerta (post-embryonic human)" xsd:string -intersection_of: UBERON:0001907 ! zona incerta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62046 ! -property_value: IAO:0000589 "optic tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62048 ! -property_value: IAO:0000589 "habenular commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0001909 ! habenular commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62064 ! -property_value: IAO:0000589 "medial forebrain bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0001910 ! medial forebrain bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:286452 ! -property_value: IAO:0000589 "mammary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62090 ! -property_value: IAO:0000589 "lobule of mammary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0001912 ! lobule of mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62100 ! -property_value: IAO:0000589 "milk (post-embryonic human)" xsd:string -intersection_of: UBERON:0001913 ! milk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62101 ! -property_value: IAO:0000589 "colostrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001914 ! colostrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62114 ! -property_value: IAO:0000589 "endothelium of capillary (post-embryonic human)" xsd:string -intersection_of: UBERON:0001915 ! endothelium of capillary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62115 ! -property_value: IAO:0000589 "endothelium of arteriole (post-embryonic human)" xsd:string -intersection_of: UBERON:0001916 ! endothelium of arteriole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62116 ! -property_value: IAO:0000589 "endothelium of artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0001917 ! endothelium of artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62117 ! -property_value: IAO:0000589 "endothelium of venule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001918 ! endothelium of venule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62118 ! -property_value: IAO:0000589 "endothelium of vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0001919 ! endothelium of vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62152 ! -property_value: IAO:0000589 "paraventricular nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001920 ! paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62153 ! -property_value: IAO:0000589 "reuniens nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001921 ! reuniens nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62166 ! -property_value: IAO:0000589 "parafascicular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001922 ! parafascicular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62171 ! -property_value: IAO:0000589 "central medial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001923 ! central medial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62172 ! -property_value: IAO:0000589 "paracentral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001924 ! paracentral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62186 ! -property_value: IAO:0000589 "ventral lateral nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001925 ! ventral lateral nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62209 ! -property_value: IAO:0000589 "lateral geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0001926 ! lateral geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62211 ! -property_value: IAO:0000589 "medial geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0001927 ! medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62313 ! -property_value: IAO:0000589 "preoptic area (post-embryonic human)" xsd:string -intersection_of: UBERON:0001928 ! preoptic area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62317 ! -property_value: IAO:0000589 "supraoptic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001929 ! supraoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62320 ! -property_value: IAO:0000589 "paraventricular nucleus of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001930 ! paraventricular nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62326 ! -property_value: IAO:0000589 "lateral preoptic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001931 ! lateral preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62329 ! -property_value: IAO:0000589 "arcuate nucleus of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001932 ! arcuate nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62330 ! -property_value: IAO:0000589 "retrochiasmatic area (post-embryonic human)" xsd:string -intersection_of: UBERON:0001933 ! retrochiasmatic area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62331 ! -property_value: IAO:0000589 "dorsomedial nucleus of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001934 ! dorsomedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62332 ! -property_value: IAO:0000589 "ventromedial nucleus of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001935 ! ventromedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62335 ! -property_value: IAO:0000589 "tuberomammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001936 ! tuberomammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62337 ! -property_value: IAO:0000589 "lateral hypothalamic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001937 ! lateral hypothalamic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62341 ! -property_value: IAO:0000589 "lateral mammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001938 ! lateral mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62342 ! -property_value: IAO:0000589 "medial mammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001939 ! medial mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62347 ! -property_value: IAO:0000589 "supramammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001940 ! supramammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62372 ! -property_value: IAO:0000589 "lateral habenular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001941 ! lateral habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62373 ! -property_value: IAO:0000589 "medial habenular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001942 ! medial habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62393 ! -property_value: IAO:0000589 "midbrain tegmentum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62402 ! -property_value: IAO:0000589 "pretectal region (post-embryonic human)" xsd:string -intersection_of: UBERON:0001944 ! pretectal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62403 ! -property_value: IAO:0000589 "superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62404 ! -property_value: IAO:0000589 "inferior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001946 ! inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62407 ! -property_value: IAO:0000589 "red nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001947 ! red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62423 ! -property_value: IAO:0000589 "gingival epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001949 ! gingival epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62429 ! -property_value: IAO:0000589 "neocortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0001950 ! neocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62452 ! -property_value: IAO:0000589 "epithelium of nasopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62453 ! -property_value: IAO:0000589 "epithelium of oropharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0001952 ! epithelium of oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62486 ! -property_value: IAO:0000589 "presubiculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001953 ! presubiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62493 ! -property_value: IAO:0000589 "Ammon's horn (post-embryonic human)" xsd:string -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62498 ! -property_value: IAO:0000589 "epithelium of respiratory bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0001955 ! epithelium of respiratory bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62649 ! -property_value: IAO:0000589 "cartilage of bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001956 ! cartilage of bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62653 ! -property_value: IAO:0000589 "submucosa of bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001957 ! submucosa of bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62794 ! -property_value: IAO:0000589 "terminal bronchiole epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001958 ! terminal bronchiole epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62805 ! -property_value: IAO:0000589 "white pulp of spleen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001959 ! white pulp of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62810 ! -property_value: IAO:0000589 "periarterial lymphatic sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0001960 ! periarterial lymphatic sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62819 ! -property_value: IAO:0000589 "mucosa-associated lymphoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001961 ! mucosa-associated lymphoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62820 ! -property_value: IAO:0000589 "gut-associated lymphoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001962 ! gut-associated lymphoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62821 ! -property_value: IAO:0000589 "bronchial-associated lymphoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001963 ! bronchial-associated lymphoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6283 ! -property_value: IAO:0000589 "least splanchnic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0001964 ! least splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62907 ! -property_value: IAO:0000589 "substantia nigra pars compacta (post-embryonic human)" xsd:string -intersection_of: UBERON:0001965 ! substantia nigra pars compacta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62908 ! -property_value: IAO:0000589 "substantia nigra pars reticulata (post-embryonic human)" xsd:string -intersection_of: UBERON:0001966 ! substantia nigra pars reticulata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62924 ! -property_value: IAO:0000589 "reticular lamina of epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001967 ! reticular lamina of epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62966 ! -property_value: IAO:0000589 "semen (post-embryonic human)" xsd:string -intersection_of: UBERON:0001968 ! semen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62970 ! -property_value: IAO:0000589 "blood plasma (post-embryonic human)" xsd:string -intersection_of: UBERON:0001969 ! blood plasma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62971 ! -property_value: IAO:0000589 "bile (post-embryonic human)" xsd:string -intersection_of: UBERON:0001970 ! bile -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62972 ! -property_value: IAO:0000589 "gastric juice (post-embryonic human)" xsd:string -intersection_of: UBERON:0001971 ! gastric juice -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62997 ! -property_value: IAO:0000589 "submucosa of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001972 ! submucosa of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63050 ! -property_value: IAO:0000589 "lamina propria of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001974 ! lamina propria of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63057 ! -property_value: IAO:0000589 "serosa of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001975 ! serosa of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63063 ! -property_value: IAO:0000589 "epithelium of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63083 ! -property_value: IAO:0000589 "blood serum (post-embryonic human)" xsd:string -intersection_of: UBERON:0001977 ! blood serum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63120 ! -property_value: IAO:0000589 "parenchyma of pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0001978 ! parenchyma of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63130 ! -property_value: IAO:0000589 "venule (post-embryonic human)" xsd:string -intersection_of: UBERON:0001979 ! venule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63182 ! -property_value: IAO:0000589 "arteriole (post-embryonic human)" xsd:string -intersection_of: UBERON:0001980 ! arteriole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50722 ! -property_value: IAO:0000589 "blood vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63183 ! -property_value: IAO:0000589 "blood vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63194 ! -property_value: IAO:0000589 "capillary (post-embryonic human)" xsd:string -intersection_of: UBERON:0001982 ! capillary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63621 ! -property_value: IAO:0000589 "crypt of Lieberkuhn (post-embryonic human)" xsd:string -intersection_of: UBERON:0001983 ! crypt of Lieberkuhn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63622 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0001984 ! crypt of Lieberkuhn of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63882 ! -property_value: IAO:0000589 "corneal endothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001985 ! corneal endothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63916 ! -property_value: IAO:0000589 "endothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001986 ! endothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63934 ! -property_value: IAO:0000589 "placenta (post-embryonic human)" xsd:string -intersection_of: UBERON:0001987 ! placenta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64183 ! -property_value: IAO:0000589 "feces (post-embryonic human)" xsd:string -intersection_of: UBERON:0001988 ! feces -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6467 ! -property_value: IAO:0000589 "superior cervical ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6468 ! -property_value: IAO:0000589 "middle cervical ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6470 ! -property_value: IAO:0000589 "cervical ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64776 ! -property_value: IAO:0000589 "papillary layer of dermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001992 ! papillary layer of dermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64778 ! -property_value: IAO:0000589 "reticular layer of dermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0001993 ! reticular layer of dermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64783 ! -property_value: IAO:0000589 "hyaline cartilage tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001994 ! hyaline cartilage tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64784 ! -property_value: IAO:0000589 "fibrocartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0001995 ! fibrocartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64785 ! -property_value: IAO:0000589 "elastic cartilage tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0001996 ! elastic cartilage tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64803 ! -property_value: IAO:0000589 "olfactory epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7954 ! -property_value: IAO:0000589 "sternocostal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0001998 ! sternocostal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64918 ! -property_value: IAO:0000589 "iliopsoas (post-embryonic human)" xsd:string -intersection_of: UBERON:0001999 ! iliopsoas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64922 ! -property_value: IAO:0000589 "gluteal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002000 ! gluteal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10425 ! -property_value: IAO:0000589 "interchondral joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0002002 ! interchondral joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65507 ! -property_value: IAO:0000589 "trunk of sciatic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002004 ! trunk of sciatic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66070 ! -property_value: IAO:0000589 "enteric nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002005 ! enteric nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66253 ! -property_value: IAO:0000589 "cortex of lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002006 ! cortex of lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66254 ! -property_value: IAO:0000589 "medulla of lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002007 ! medulla of lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6628 ! -property_value: IAO:0000589 "cardiac nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002008 ! cardiac nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6629 ! -property_value: IAO:0000589 "pulmonary nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002009 ! pulmonary nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6630 ! -property_value: IAO:0000589 "celiac nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002010 ! celiac nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66320 ! -property_value: IAO:0000589 "thoracodorsal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002011 ! thoracodorsal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66326 ! -property_value: IAO:0000589 "pulmonary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6642 ! -property_value: IAO:0000589 "superior hypogastric nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002013 ! superior hypogastric nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6643 ! -property_value: IAO:0000589 "inferior hypogastric nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002014 ! inferior hypogastric nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66610 ! -property_value: IAO:0000589 "kidney capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0002015 ! kidney capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66643 ! -property_value: IAO:0000589 "pulmonary vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66645 ! -property_value: IAO:0000589 "portal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002017 ! portal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9865 ! -property_value: IAO:0000589 "synovial membrane of synovial joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0002018 ! synovial membrane of synovial joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6720 ! -property_value: IAO:0000589 "accessory XI nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80284 ! -property_value: IAO:0000589 "accessory XI nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67242 ! -property_value: IAO:0000589 "gray matter (post-embryonic human)" xsd:string -intersection_of: UBERON:0002020 ! gray matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67325 ! -property_value: IAO:0000589 "occipital lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002021 ! occipital lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67329 ! -property_value: IAO:0000589 "insula (post-embryonic human)" xsd:string -intersection_of: UBERON:0002022 ! insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67440 ! -property_value: IAO:0000589 "claustrum of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002023 ! claustrum of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67533 ! -property_value: IAO:0000589 "internal carotid nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002024 ! internal carotid nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67540 ! -property_value: IAO:0000589 "stratum basale of epidermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002025 ! stratum basale of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67542 ! -property_value: IAO:0000589 "stratum spinosum of epidermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002026 ! stratum spinosum of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67545 ! -property_value: IAO:0000589 "stratum corneum of epidermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002027 ! stratum corneum of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67687 ! -property_value: IAO:0000589 "hindbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67711 ! -property_value: IAO:0000589 "epithelium of gall bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0002029 ! epithelium of gall bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67771 ! -property_value: IAO:0000589 "nipple (post-embryonic human)" xsd:string -intersection_of: UBERON:0002030 ! nipple -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67782 ! -property_value: IAO:0000589 "epithelium of bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002031 ! epithelium of bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67796 ! -property_value: IAO:0000589 "areola (post-embryonic human)" xsd:string -intersection_of: UBERON:0002032 ! areola -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67821 ! -property_value: IAO:0000589 "arrector muscle of hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0002033 ! arrector muscle of hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67883 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002034 ! suprachiasmatic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67890 ! -property_value: IAO:0000589 "medial preoptic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002035 ! medial preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67905 ! -property_value: IAO:0000589 "striated muscle tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002036 ! striated muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67944 ! -property_value: IAO:0000589 "cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67947 ! -property_value: IAO:0000589 "substantia nigra (post-embryonic human)" xsd:string -intersection_of: UBERON:0002038 ! substantia nigra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68068 ! -property_value: IAO:0000589 "inferior phrenic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002039 ! inferior phrenic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68109 ! -property_value: IAO:0000589 "bronchial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002040 ! bronchial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68416 ! -property_value: IAO:0000589 "terminal bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002041 ! terminal bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68444 ! -property_value: IAO:0000589 "lymphatic vessel endothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002042 ! lymphatic vessel endothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68462 ! -property_value: IAO:0000589 "dorsal raphe nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002043 ! dorsal raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68464 ! -property_value: IAO:0000589 "ventral nucleus of posterior commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002044 ! ventral nucleus of posterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68465 ! -property_value: IAO:0000589 "cuneate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002045 ! cuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9603 ! -property_value: IAO:0000589 "thyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68875 ! -property_value: IAO:0000589 "pontine raphe nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002047 ! pontine raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7195 ! -property_value: IAO:0000589 "lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0002048 ! lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69050 ! -property_value: IAO:0000589 "vasculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0002049 ! vasculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69067 ! -property_value: IAO:0000589 "embryonic structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002050 ! embryonic structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69077 ! -property_value: IAO:0000589 "epithelium of bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0002051 ! epithelium of bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69087 ! -property_value: IAO:0000589 "adrenal gland capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0002052 ! adrenal gland capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69225 ! -property_value: IAO:0000589 "zona glomerulosa of adrenal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002053 ! zona glomerulosa of adrenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69234 ! -property_value: IAO:0000589 "zona fasciculata of adrenal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002054 ! zona fasciculata of adrenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69236 ! -property_value: IAO:0000589 "zona reticularis of adrenal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002055 ! zona reticularis of adrenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69264 ! -property_value: IAO:0000589 "inferior suprarenal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002056 ! inferior suprarenal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69330 ! -property_value: IAO:0000589 "phrenic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002057 ! phrenic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6964 ! -property_value: IAO:0000589 "main ciliary ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002058 ! main ciliary ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6966 ! -property_value: IAO:0000589 "submandibular ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002059 ! submandibular ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70248 ! -property_value: IAO:0000589 "femoral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002060 ! femoral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70301 ! -property_value: IAO:0000589 "truncus arteriosus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002061 ! truncus arteriosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70302 ! -property_value: IAO:0000589 "endocardial cushion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70303 ! -property_value: IAO:0000589 "sinus venosus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70308 ! -property_value: IAO:0000589 "common cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70314 ! -property_value: IAO:0000589 "posterior cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70317 ! -property_value: IAO:0000589 "umbilical vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70323 ! -property_value: IAO:0000589 "dermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002067 ! dermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70343 ! -property_value: IAO:0000589 "urachus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002068 ! urachus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70344 ! -property_value: IAO:0000589 "stratum granulosum of epidermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002069 ! stratum granulosum of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70437 ! -property_value: IAO:0000589 "superior pancreaticoduodenal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002070 ! superior pancreaticoduodenal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70540 ! -property_value: IAO:0000589 "stratum lucidum of epidermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002071 ! stratum lucidum of epidermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70544 ! -property_value: IAO:0000589 "hypodermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002072 ! hypodermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70660 ! -property_value: IAO:0000589 "hair follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002073 ! hair follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70728 ! -property_value: IAO:0000589 "hair shaft (post-embryonic human)" xsd:string -intersection_of: UBERON:0002074 ! hair shaft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7085 ! -property_value: IAO:0000589 "viscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002075 ! viscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70933 ! -property_value: IAO:0000589 "cuticle of hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0002076 ! cuticle of hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70934 ! -property_value: IAO:0000589 "cortex of hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0002077 ! cortex of hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7096 ! -property_value: IAO:0000589 "right cardiac atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002078 ! right cardiac atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7097 ! -property_value: IAO:0000589 "left cardiac atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002079 ! left cardiac atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7098 ! -property_value: IAO:0000589 "heart right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7099 ! -property_value: IAO:0000589 "cardiac atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7100 ! -property_value: IAO:0000589 "cardiac ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71007 ! -property_value: IAO:0000589 "ductus venosus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7101 ! -property_value: IAO:0000589 "heart left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7108 ! -property_value: IAO:0000589 "interatrial septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71120 ! -property_value: IAO:0000589 "sinoatrial valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002086 ! sinoatrial valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71121 ! -property_value: IAO:0000589 "atrioventricular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71210 ! -property_value: IAO:0000589 "lateral thoracic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002088 ! lateral thoracic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71213 ! -property_value: IAO:0000589 "thoracodorsal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002089 ! thoracodorsal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71221 ! -property_value: IAO:0000589 "postcranial axial skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71222 ! -property_value: IAO:0000589 "appendicular skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0002091 ! appendicular skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71236 ! -property_value: IAO:0000589 "brain dura mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0002092 ! brain dura mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71237 ! -property_value: IAO:0000589 "spinal dura mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7133 ! -property_value: IAO:0000589 "interventricular septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7144 ! -property_value: IAO:0000589 "mesentery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002095 ! mesentery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7163 ! -property_value: IAO:0000589 "skin of body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002097 ! skin of body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7164 ! -property_value: IAO:0000589 "apex of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0002098 ! apex of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7180 ! -property_value: IAO:0000589 "cardiac septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002099 ! cardiac septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7181 ! -property_value: IAO:0000589 "trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002100 ! trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24875 ! -property_value: IAO:0000589 "limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0002101 ! limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24878 ! -property_value: IAO:0000589 "forelimb (post-embryonic human)" xsd:string -intersection_of: UBERON:0002102 ! forelimb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24879 ! -property_value: IAO:0000589 "hindlimb (post-embryonic human)" xsd:string -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7191 ! -property_value: IAO:0000589 "visual system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002104 ! visual system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78500 ! -property_value: IAO:0000589 "vestibulo-auditory system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002105 ! vestibulo-auditory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7196 ! -property_value: IAO:0000589 "spleen (post-embryonic human)" xsd:string -intersection_of: UBERON:0002106 ! spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7197 ! -property_value: IAO:0000589 "liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0002107 ! liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7200 ! -property_value: IAO:0000589 "small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0002108 ! small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72005 ! -property_value: IAO:0000589 "pair of nares (post-embryonic human)" xsd:string -intersection_of: UBERON:0002109 ! pair of nares -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7202 ! -property_value: IAO:0000589 "gallbladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72024 ! -property_value: IAO:0000589 "artery smooth muscle tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002111 ! artery smooth muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72025 ! -property_value: IAO:0000589 "smooth muscle of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002112 ! smooth muscle of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7203 ! -property_value: IAO:0000589 "kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0002113 ! kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7206 ! -property_value: IAO:0000589 "duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002114 ! duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7207 ! -property_value: IAO:0000589 "jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002115 ! jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7208 ! -property_value: IAO:0000589 "ileum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002116 ! ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7213 ! -property_value: IAO:0000589 "right ovary (post-embryonic human)" xsd:string -intersection_of: UBERON:0002118 ! right ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7214 ! -property_value: IAO:0000589 "left ovary (post-embryonic human)" xsd:string -intersection_of: UBERON:0002119 ! left ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72170 ! -property_value: IAO:0000589 "pronephros (post-embryonic human)" xsd:string -intersection_of: UBERON:0002120 ! pronephros -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72204 ! -property_value: IAO:0000589 "capsule of thymus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002122 ! capsule of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72205 ! -property_value: IAO:0000589 "cortex of thymus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002123 ! cortex of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72206 ! -property_value: IAO:0000589 "medulla of thymus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002124 ! medulla of thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72215 ! -property_value: IAO:0000589 "thymus lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0002125 ! thymus lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72242 ! -property_value: IAO:0000589 "solitary tract nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002126 ! solitary tract nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72243 ! -property_value: IAO:0000589 "inferior olivary complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002127 ! inferior olivary complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72247 ! -property_value: IAO:0000589 "superior olivary complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002128 ! superior olivary complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72248 ! -property_value: IAO:0000589 "cerebellar cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002129 ! cerebellar cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72249 ! -property_value: IAO:0000589 "cerebellar nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002130 ! cerebellar nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72251 ! -property_value: IAO:0000589 "anterior lobe of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002131 ! anterior lobe of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72260 ! -property_value: IAO:0000589 "dentate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002132 ! dentate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7233 ! -property_value: IAO:0000589 "atrioventricular valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002133 ! atrioventricular valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7234 ! -property_value: IAO:0000589 "tricuspid valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7235 ! -property_value: IAO:0000589 "mitral valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72358 ! -property_value: IAO:0000589 "hilus of dentate gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002136 ! hilus of dentate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7236 ! -property_value: IAO:0000589 "aortic valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72400 ! -property_value: IAO:0000589 "habenulo-interpeduncular tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002138 ! habenulo-interpeduncular tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72414 ! -property_value: IAO:0000589 "subcommissural organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0002139 ! subcommissural organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72415 ! -property_value: IAO:0000589 "parabigeminal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002140 ! parabigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72424 ! -property_value: IAO:0000589 "parvocellular oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002141 ! parvocellular oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72429 ! -property_value: IAO:0000589 "pedunculopontine tegmental nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002142 ! pedunculopontine tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72434 ! -property_value: IAO:0000589 "dorsal tegmental nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002143 ! dorsal tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72437 ! -property_value: IAO:0000589 "peripeduncular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002144 ! peripeduncular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72439 ! -property_value: IAO:0000589 "interpeduncular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002145 ! interpeduncular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7246 ! -property_value: IAO:0000589 "pulmonary valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72471 ! -property_value: IAO:0000589 "reticulotegmental nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002147 ! reticulotegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72478 ! -property_value: IAO:0000589 "locus ceruleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002148 ! locus ceruleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72482 ! -property_value: IAO:0000589 "superior salivatory nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002149 ! superior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72512 ! -property_value: IAO:0000589 "pontine nuclear group (post-embryonic human)" xsd:string -intersection_of: UBERON:0002151 ! pontine nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72515 ! -property_value: IAO:0000589 "middle cerebellar peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002152 ! middle cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72537 ! -property_value: IAO:0000589 "fastigial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002153 ! fastigial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72574 ! -property_value: IAO:0000589 "lateral reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002154 ! lateral reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72576 ! -property_value: IAO:0000589 "gigantocellular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002155 ! gigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72584 ! -property_value: IAO:0000589 "nucleus raphe magnus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002156 ! nucleus raphe magnus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72586 ! -property_value: IAO:0000589 "nucleus raphe pallidus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002157 ! nucleus raphe pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72592 ! -property_value: IAO:0000589 "principal inferior olivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002158 ! principal inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72594 ! -property_value: IAO:0000589 "medial accessory inferior olivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002159 ! medial accessory inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72596 ! -property_value: IAO:0000589 "nucleus prepositus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002160 ! nucleus prepositus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72602 ! -property_value: IAO:0000589 "gracile nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002161 ! gracile nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72607 ! -property_value: IAO:0000589 "area postrema (post-embryonic human)" xsd:string -intersection_of: UBERON:0002162 ! area postrema -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72615 ! -property_value: IAO:0000589 "inferior cerebellar peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002163 ! inferior cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72645 ! -property_value: IAO:0000589 "tectobulbar tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002164 ! tectobulbar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7280 ! -property_value: IAO:0000589 "endocardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7284 ! -property_value: IAO:0000589 "endocardium of atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002166 ! endocardium of atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7309 ! -property_value: IAO:0000589 "right lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0002167 ! right lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7310 ! -property_value: IAO:0000589 "left lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0002168 ! left lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7317 ! -property_value: IAO:0000589 "alveolar sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0002169 ! alveolar sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7333 ! -property_value: IAO:0000589 "upper lobe of right lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7337 ! -property_value: IAO:0000589 "lower lobe of right lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7340 ! -property_value: IAO:0000589 "alveolar atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002172 ! alveolar atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7341 ! -property_value: IAO:0000589 "pulmonary alveolar duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002173 ! pulmonary alveolar duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7383 ! -property_value: IAO:0000589 "middle lobe of right lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73915 ! -property_value: IAO:0000589 "intermediolateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002175 ! intermediolateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73921 ! -property_value: IAO:0000589 "lateral cervical nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002176 ! lateral cervical nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7395 ! -property_value: IAO:0000589 "right main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002177 ! right main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7396 ! -property_value: IAO:0000589 "left main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002178 ! left main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74000 ! -property_value: IAO:0000589 "lateral funiculus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002179 ! lateral funiculus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74003 ! -property_value: IAO:0000589 "ventral funiculus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002180 ! ventral funiculus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68863 ! -property_value: IAO:0000589 "substantia gelatinosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0002181 ! substantia gelatinosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74019 ! -property_value: IAO:0000589 "substantia gelatinosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0002181 ! substantia gelatinosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7405 ! -property_value: IAO:0000589 "main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7406 ! -property_value: IAO:0000589 "lobar bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7407 ! -property_value: IAO:0000589 "segmental bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002184 ! segmental bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7409 ! -property_value: IAO:0000589 "bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002185 ! bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7410 ! -property_value: IAO:0000589 "bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0002186 ! bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7411 ! -property_value: IAO:0000589 "terminal bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0002187 ! terminal bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7412 ! -property_value: IAO:0000589 "respiratory bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0002188 ! respiratory bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74285 ! -property_value: IAO:0000589 "outer cortex of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0002189 ! outer cortex of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74315 ! -property_value: IAO:0000589 "subcutaneous adipose tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002190 ! subcutaneous adipose tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74414 ! -property_value: IAO:0000589 "subiculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002191 ! subiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74512 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83715 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74562 ! -property_value: IAO:0000589 "hemolymphoid system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002193 ! hemolymphoid system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74604 ! -property_value: IAO:0000589 "capsule of lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002194 ! capsule of lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74605 ! -property_value: IAO:0000589 "trabecula of lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002195 ! trabecula of lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74627 ! -property_value: IAO:0000589 "adenohypophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74634 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74628 ! -property_value: IAO:0000589 "neurohypophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74657 ! -property_value: IAO:0000589 "integument (post-embryonic human)" xsd:string -intersection_of: UBERON:0002199 ! integument -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74710 ! -property_value: IAO:0000589 "vasculature of head (post-embryonic human)" xsd:string -intersection_of: UBERON:0002200 ! vasculature of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74712 ! -property_value: IAO:0000589 "vasculature of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002201 ! vasculature of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7472 ! -property_value: IAO:0000589 "submucosa of trachea (post-embryonic human)" xsd:string -intersection_of: UBERON:0002202 ! submucosa of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74743 ! -property_value: IAO:0000589 "vasculature of eye (post-embryonic human)" xsd:string -intersection_of: UBERON:0002203 ! vasculature of eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7482 ! -property_value: IAO:0000589 "musculoskeletal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002204 ! musculoskeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7486 ! -property_value: IAO:0000589 "manubrium of sternum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002205 ! manubrium of sternum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74877 ! -property_value: IAO:0000589 "mammillary body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002206 ! mammillary body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7488 ! -property_value: IAO:0000589 "xiphoid process (post-embryonic human)" xsd:string -intersection_of: UBERON:0002207 ! xiphoid process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7489 ! -property_value: IAO:0000589 "sternebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0002208 ! sternebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7492 ! -property_value: IAO:0000589 "fibrous joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0002209 ! fibrous joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7494 ! -property_value: IAO:0000589 "syndesmosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002210 ! syndesmosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5981 ! -property_value: IAO:0000589 "nerve root (post-embryonic human)" xsd:string -intersection_of: UBERON:0002211 ! nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82524 ! -property_value: IAO:0000589 "nerve root (post-embryonic human)" xsd:string -intersection_of: UBERON:0002211 ! nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74944 ! -property_value: IAO:0000589 "macula of saccule of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0002212 ! macula of saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7496 ! -property_value: IAO:0000589 "cartilaginous joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0002213 ! cartilaginous joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74960 ! -property_value: IAO:0000589 "macula of utricle of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0002214 ! macula of utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7497 ! -property_value: IAO:0000589 "synchondrosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002215 ! synchondrosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7498 ! -property_value: IAO:0000589 "symphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002216 ! symphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7501 ! -property_value: IAO:0000589 "synovial joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0002217 ! synovial joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75260 ! -property_value: IAO:0000589 "subfornical organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0002219 ! subfornical organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75438 ! -property_value: IAO:0000589 "fontanelle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002221 ! fontanelle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75446 ! -property_value: IAO:0000589 "perichondrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002222 ! perichondrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75639 ! -property_value: IAO:0000589 "endolymphatic sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0002223 ! endolymphatic sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7565 ! -property_value: IAO:0000589 "thoracic cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0002224 ! thoracic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7569 ! -property_value: IAO:0000589 "costal arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0002225 ! costal arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7570 ! -property_value: IAO:0000589 "costal arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0002225 ! costal arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75706 ! -property_value: IAO:0000589 "basilar membrane of cochlea (post-embryonic human)" xsd:string -intersection_of: UBERON:0002226 ! basilar membrane of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75715 ! -property_value: IAO:0000589 "spiral organ of cochlea (post-embryonic human)" xsd:string -intersection_of: UBERON:0002227 ! spiral organ of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7574 ! -property_value: IAO:0000589 "rib (post-embryonic human)" xsd:string -intersection_of: UBERON:0002228 ! rib -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75748 ! -property_value: IAO:0000589 "interparietal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0002229 ! interparietal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7575 ! -property_value: IAO:0000589 "head of rib (post-embryonic human)" xsd:string -intersection_of: UBERON:0002230 ! head of rib -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7577 ! -property_value: IAO:0000589 "body of rib (post-embryonic human)" xsd:string -intersection_of: UBERON:0002231 ! body of rib -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75801 ! -property_value: IAO:0000589 "olfactory gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002232 ! olfactory gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75805 ! -property_value: IAO:0000589 "tectorial membrane of cochlea (post-embryonic human)" xsd:string -intersection_of: UBERON:0002233 ! tectorial membrane of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75816 ! -property_value: IAO:0000589 "proximal phalanx of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002234 ! proximal phalanx of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7583 ! -property_value: IAO:0000589 "tubercle of rib (post-embryonic human)" xsd:string -intersection_of: UBERON:0002235 ! tubercle of rib -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7591 ! -property_value: IAO:0000589 "costal cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0002236 ! costal cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7592 ! -property_value: IAO:0000589 "true rib (post-embryonic human)" xsd:string -intersection_of: UBERON:0002237 ! true rib -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7594 ! -property_value: IAO:0000589 "false rib (post-embryonic human)" xsd:string -intersection_of: UBERON:0002238 ! false rib -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7595 ! -property_value: IAO:0000589 "floating rib (post-embryonic human)" xsd:string -intersection_of: UBERON:0002239 ! floating rib -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7647 ! -property_value: IAO:0000589 "spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13550 ! -property_value: IAO:0000589 "nucleus pulposus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002242 ! nucleus pulposus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76703 ! -property_value: IAO:0000589 "nucleus pulposus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002242 ! nucleus pulposus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76720 ! -property_value: IAO:0000589 "cutaneous vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002243 ! cutaneous vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76869 ! -property_value: IAO:0000589 "premaxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77231 ! -property_value: IAO:0000589 "premaxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76925 ! -property_value: IAO:0000589 "cerebellar hemisphere (post-embryonic human)" xsd:string -intersection_of: UBERON:0002245 ! cerebellar hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73912 ! -property_value: IAO:0000589 "dorsal thoracic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002246 ! dorsal thoracic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77023 ! -property_value: IAO:0000589 "dorsal thoracic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002246 ! dorsal thoracic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77053 ! -property_value: IAO:0000589 "uterine horn (post-embryonic human)" xsd:string -intersection_of: UBERON:0002247 ! uterine horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77132 ! -property_value: IAO:0000589 "transverse pericardial sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77142 ! -property_value: IAO:0000589 "median artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002249 ! median artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77155 ! -property_value: IAO:0000589 "popliteal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002250 ! popliteal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77177 ! -property_value: IAO:0000589 "iliocostalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002251 ! iliocostalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77180 ! -property_value: IAO:0000589 "splenius (post-embryonic human)" xsd:string -intersection_of: UBERON:0002252 ! splenius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77274 ! -property_value: IAO:0000589 "thyroglossal duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77280 ! -property_value: IAO:0000589 "vomeronasal organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256530 ! -property_value: IAO:0000589 "dorsal horn of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256541 ! -property_value: IAO:0000589 "ventral horn of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77461 ! -property_value: IAO:0000589 "dorsal funiculus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002258 ! dorsal funiculus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242157 ! -property_value: IAO:0000589 "corpora quadrigemina (post-embryonic human)" xsd:string -intersection_of: UBERON:0002259 ! corpora quadrigemina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5979 ! -property_value: IAO:0000589 "ventral root of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002260 ! ventral root of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77516 ! -property_value: IAO:0000589 "ventral root of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002260 ! ventral root of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5980 ! -property_value: IAO:0000589 "dorsal root of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002261 ! dorsal root of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77570 ! -property_value: IAO:0000589 "celiac ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002262 ! celiac ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77615 ! -property_value: IAO:0000589 "lentiform nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77624 ! -property_value: IAO:0000589 "olfactory bulb (post-embryonic human)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77626 ! -property_value: IAO:0000589 "olfactory tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002265 ! olfactory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77628 ! -property_value: IAO:0000589 "anterior olfactory nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002266 ! anterior olfactory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77654 ! -property_value: IAO:0000589 "laterodorsal tegmental nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002267 ! laterodorsal tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77659 ! -property_value: IAO:0000589 "olfactory organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0002268 ! olfactory organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77663 ! -property_value: IAO:0000589 "pupillary membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0002269 ! pupillary membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77670 ! -property_value: IAO:0000589 "hyaloid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002270 ! hyaloid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77682 ! -property_value: IAO:0000589 "periventricular zone of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002271 ! periventricular zone of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77683 ! -property_value: IAO:0000589 "medial zone of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002272 ! medial zone of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77684 ! -property_value: IAO:0000589 "lateral zone of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002273 ! lateral zone of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77688 ! -property_value: IAO:0000589 "perifornical nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002274 ! perifornical nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77719 ! -property_value: IAO:0000589 "reticular formation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002275 ! reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77721 ! -property_value: IAO:0000589 "lamina of spiral limbus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002276 ! lamina of spiral limbus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77744 ! -property_value: IAO:0000589 "spiral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002277 ! spiral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77745 ! -property_value: IAO:0000589 "perilymphatic space (post-embryonic human)" xsd:string -intersection_of: UBERON:0002278 ! perilymphatic space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77821 ! -property_value: IAO:0000589 "vestibular aqueduct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002279 ! vestibular aqueduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77826 ! -property_value: IAO:0000589 "otolith (post-embryonic human)" xsd:string -intersection_of: UBERON:0002280 ! otolith -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77829 ! -property_value: IAO:0000589 "vestibular membrane of cochlear duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002281 ! vestibular membrane of cochlear duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77832 ! -property_value: IAO:0000589 "stria vascularis of cochlear duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002282 ! stria vascularis of cochlear duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77856 ! -property_value: IAO:0000589 "nail matrix (post-embryonic human)" xsd:string -intersection_of: UBERON:0002283 ! nail matrix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77860 ! -property_value: IAO:0000589 "hyponychium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002284 ! hyponychium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78448 ! -property_value: IAO:0000589 "telencephalic ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002285 ! telencephalic ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78454 ! -property_value: IAO:0000589 "third ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78455 ! -property_value: IAO:0000589 "optic recess of third ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78462 ! -property_value: IAO:0000589 "choroid plexus of third ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002288 ! choroid plexus of third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78467 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78492 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002290 ! choroid plexus of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78497 ! -property_value: IAO:0000589 "central canal of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002291 ! central canal of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10382 ! -property_value: IAO:0000589 "costovertebral joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0002292 ! costovertebral joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7956 ! -property_value: IAO:0000589 "costochondral joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0002293 ! costochondral joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79646 ! -property_value: IAO:0000589 "biliary system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002294 ! biliary system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79789 ! -property_value: IAO:0000589 "scala media (post-embryonic human)" xsd:string -intersection_of: UBERON:0002295 ! scala media -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79795 ! -property_value: IAO:0000589 "dorsal mesentery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002296 ! dorsal mesentery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79869 ! -property_value: IAO:0000589 "cerumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0002297 ! cerumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79876 ! -property_value: IAO:0000589 "brainstem (post-embryonic human)" xsd:string -intersection_of: UBERON:0002298 ! brainstem -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7318 ! -property_value: IAO:0000589 "alveolus of lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0002299 ! alveolus of lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83138 ! -property_value: IAO:0000589 "layer of neocortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002301 ! layer of neocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83509 ! -property_value: IAO:0000589 "myocardium of atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002302 ! myocardium of atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83599 ! -property_value: IAO:0000589 "juxtaglomerular apparatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002303 ! juxtaglomerular apparatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83678 ! -property_value: IAO:0000589 "layer of dentate gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002304 ! layer of dentate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277842 ! -property_value: IAO:0000589 "layer of hippocampus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002305 ! layer of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83679 ! -property_value: IAO:0000589 "layer of hippocampus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002305 ! layer of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83688 ! -property_value: IAO:0000589 "nasal mucus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002306 ! nasal mucus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83711 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002307 ! choroid plexus of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83840 ! -property_value: IAO:0000589 "nucleus of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002308 ! nucleus of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83846 ! -property_value: IAO:0000589 "medial longitudinal fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002309 ! medial longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83866 ! -property_value: IAO:0000589 "hippocampus fimbria (post-embryonic human)" xsd:string -intersection_of: UBERON:0002310 ! hippocampus fimbria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83895 ! -property_value: IAO:0000589 "hippocampus pyramidal layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0002313 ! hippocampus pyramidal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83902 ! -property_value: IAO:0000589 "midbrain tectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256580 ! -property_value: IAO:0000589 "gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002315 ! gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83929 ! -property_value: IAO:0000589 "white matter (post-embryonic human)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83943 ! -property_value: IAO:0000589 "white matter of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002317 ! white matter of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83945 ! -property_value: IAO:0000589 "white matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002318 ! white matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84139 ! -property_value: IAO:0000589 "mesangium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002319 ! mesangium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84140 ! -property_value: IAO:0000589 "glomerular mesangium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002320 ! glomerular mesangium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84141 ! -property_value: IAO:0000589 "extraglomerular mesangium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002321 ! extraglomerular mesangium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84354 ! -property_value: IAO:0000589 "periventricular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002322 ! periventricular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85006 ! -property_value: IAO:0000589 "coelemic cavity lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0002323 ! coelemic cavity lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85216 ! -property_value: IAO:0000589 "muscle of back (post-embryonic human)" xsd:string -intersection_of: UBERON:0002324 ! muscle of back -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85275 ! -property_value: IAO:0000589 "epithelium of urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0002325 ! epithelium of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85276 ! -property_value: IAO:0000589 "lamina propria of urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0002326 ! lamina propria of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85315 ! -property_value: IAO:0000589 "trunk of intercostal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002327 ! trunk of intercostal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85521 ! -property_value: IAO:0000589 "notochord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002328 ! notochord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85522 ! -property_value: IAO:0000589 "somite (post-embryonic human)" xsd:string -intersection_of: UBERON:0002329 ! somite -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85539 ! -property_value: IAO:0000589 "exocrine system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002330 ! exocrine system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85541 ! -property_value: IAO:0000589 "umbilical cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002331 ! umbilical cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:8612 ! -property_value: IAO:0000589 "pulmonary trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86266 ! -property_value: IAO:0000589 "submandibular duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002334 ! submandibular duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86333 ! -property_value: IAO:0000589 "macula densa (post-embryonic human)" xsd:string -intersection_of: UBERON:0002335 ! macula densa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86464 ! -property_value: IAO:0000589 "corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002336 ! corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86487 ! -property_value: IAO:0000589 "endometrial stroma (post-embryonic human)" xsd:string -intersection_of: UBERON:0002337 ! endometrial stroma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86619 ! -property_value: IAO:0000589 "lamina propria of bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002338 ! lamina propria of bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86624 ! -property_value: IAO:0000589 "epithelium of lobar bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86625 ! -property_value: IAO:0000589 "epithelium of main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86626 ! -property_value: IAO:0000589 "epithelium of segmental bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002341 ! epithelium of segmental bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86666 ! -property_value: IAO:0000589 "neural crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0002342 ! neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71294 ! -property_value: IAO:0000589 "abdomen musculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0002343 ! abdomen musculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86917 ! -property_value: IAO:0000589 "abdomen musculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0002343 ! abdomen musculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87217 ! -property_value: IAO:0000589 "descending thoracic aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0002345 ! descending thoracic aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87657 ! -property_value: IAO:0000589 "neurectoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9139 ! -property_value: IAO:0000589 "thoracic vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0002347 ! thoracic vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9461 ! -property_value: IAO:0000589 "epicardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002348 ! epicardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9462 ! -property_value: IAO:0000589 "myocardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002349 ! myocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9476 ! -property_value: IAO:0000589 "conducting system of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0002350 ! conducting system of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9477 ! -property_value: IAO:0000589 "sinoatrial node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002351 ! sinoatrial node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9478 ! -property_value: IAO:0000589 "atrioventricular node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002352 ! atrioventricular node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9484 ! -property_value: IAO:0000589 "bundle of His (post-embryonic human)" xsd:string -intersection_of: UBERON:0002353 ! bundle of His -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9492 ! -property_value: IAO:0000589 "cardiac Purkinje fiber (post-embryonic human)" xsd:string -intersection_of: UBERON:0002354 ! cardiac Purkinje fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9578 ! -property_value: IAO:0000589 "pelvic region of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002355 ! pelvic region of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9579 ! -property_value: IAO:0000589 "perineum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002356 ! perineum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9582 ! -property_value: IAO:0000589 "serous pericardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002357 ! serous pericardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9584 ! -property_value: IAO:0000589 "peritoneum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002358 ! peritoneum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9586 ! -property_value: IAO:0000589 "fibrous pericardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002359 ! fibrous pericardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9589 ! -property_value: IAO:0000589 "meninx (post-embryonic human)" xsd:string -intersection_of: UBERON:0002360 ! meninx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9590 ! -property_value: IAO:0000589 "pia mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0002361 ! pia mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9591 ! -property_value: IAO:0000589 "arachnoid mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0002362 ! arachnoid mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9592 ! -property_value: IAO:0000589 "dura mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0002363 ! dura mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9595 ! -property_value: IAO:0000589 "tympanic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0002364 ! tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9596 ! -property_value: IAO:0000589 "exocrine gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002365 ! exocrine gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9599 ! -property_value: IAO:0000589 "bulbo-urethral gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002366 ! bulbo-urethral gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9600 ! -property_value: IAO:0000589 "prostate gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002367 ! prostate gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9602 ! -property_value: IAO:0000589 "endocrine gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002368 ! endocrine gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9604 ! -property_value: IAO:0000589 "adrenal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9607 ! -property_value: IAO:0000589 "thymus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002370 ! thymus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9608 ! -property_value: IAO:0000589 "bone marrow (post-embryonic human)" xsd:string -intersection_of: UBERON:0002371 ! bone marrow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9609 ! -property_value: IAO:0000589 "tonsil (post-embryonic human)" xsd:string -intersection_of: UBERON:0002372 ! tonsil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9610 ! -property_value: IAO:0000589 "palatine tonsil (post-embryonic human)" xsd:string -intersection_of: UBERON:0002373 ! palatine tonsil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9612 ! -property_value: IAO:0000589 "metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0002374 ! metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9615 ! -property_value: IAO:0000589 "cricoid cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9616 ! -property_value: IAO:0000589 "cranial muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002376 ! cranial muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9617 ! -property_value: IAO:0000589 "muscle of neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0002377 ! muscle of neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9620 ! -property_value: IAO:0000589 "muscle of abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0002378 ! muscle of abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9623 ! -property_value: IAO:0000589 "perineal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002379 ! perineal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9626 ! -property_value: IAO:0000589 "trapezius muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002380 ! trapezius muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9627 ! -property_value: IAO:0000589 "pectoralis major (post-embryonic human)" xsd:string -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9628 ! -property_value: IAO:0000589 "rectus abdominis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9629 ! -property_value: IAO:0000589 "supraspinatus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9640 ! -property_value: IAO:0000589 "connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002384 ! connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9641 ! -property_value: IAO:0000589 "muscle tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002385 ! muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9663 ! -property_value: IAO:0000589 "forelimb zeugopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9664 ! -property_value: IAO:0000589 "pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0002387 ! pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9666 ! -property_value: IAO:0000589 "manual digit (post-embryonic human)" xsd:string -intersection_of: UBERON:0002389 ! manual digit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9667 ! -property_value: IAO:0000589 "hematopoietic system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002390 ! hematopoietic system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9671 ! -property_value: IAO:0000589 "lymph (post-embryonic human)" xsd:string -intersection_of: UBERON:0002391 ! lymph -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9703 ! -property_value: IAO:0000589 "nasolacrimal duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9705 ! -property_value: IAO:0000589 "pharyngotympanic tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9706 ! -property_value: IAO:0000589 "bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002394 ! bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9708 ! -property_value: IAO:0000589 "talus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002395 ! talus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9710 ! -property_value: IAO:0000589 "vomer (post-embryonic human)" xsd:string -intersection_of: UBERON:0002396 ! vomer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9711 ! -property_value: IAO:0000589 "maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002397 ! maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9712 ! -property_value: IAO:0000589 "manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002398 ! manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9715 ! -property_value: IAO:0000589 "lesser omentum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9733 ! -property_value: IAO:0000589 "parietal pleura (post-embryonic human)" xsd:string -intersection_of: UBERON:0002400 ! parietal pleura -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9734 ! -property_value: IAO:0000589 "visceral pleura (post-embryonic human)" xsd:string -intersection_of: UBERON:0002401 ! visceral pleura -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9740 ! -property_value: IAO:0000589 "pleural cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9757 ! -property_value: IAO:0000589 "internal intercostal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002403 ! internal intercostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9760 ! -property_value: IAO:0000589 "transversus thoracis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002404 ! transversus thoracis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9825 ! -property_value: IAO:0000589 "immune system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002405 ! immune system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9868 ! -property_value: IAO:0000589 "pericardial sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0002406 ! pericardial sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9869 ! -property_value: IAO:0000589 "pericardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002407 ! pericardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9870 ! -property_value: IAO:0000589 "parietal serous pericardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9887 ! -property_value: IAO:0000589 "pericardial fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0002409 ! pericardial fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65553 ! -property_value: IAO:0000589 "autonomic nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002410 ! autonomic nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9909 ! -property_value: IAO:0000589 "clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0002411 ! clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9914 ! -property_value: IAO:0000589 "vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0002412 ! vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9915 ! -property_value: IAO:0000589 "cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9921 ! -property_value: IAO:0000589 "lumbar vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0002414 ! lumbar vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72979 ! -property_value: IAO:0000589 "integumental system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002416 ! integumental system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:259211 ! -property_value: IAO:0000589 "abdominal segment of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002417 ! abdominal segment of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37377 ! -property_value: IAO:0000589 "cartilage tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002418 ! cartilage tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71878 ! -property_value: IAO:0000589 "skin gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002419 ! skin gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62514 ! -property_value: IAO:0000589 "basal ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002420 ! basal ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74038 ! -property_value: IAO:0000589 "hippocampal formation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002421 ! hippocampal formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78469 ! -property_value: IAO:0000589 "fourth ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265152 ! -property_value: IAO:0000589 "oral epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84882 ! -property_value: IAO:0000589 "visceral serous pericardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9619 ! -property_value: IAO:0000589 "chest muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002426 ! chest muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61213 ! -property_value: IAO:0000589 "cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002429 ! cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62030 ! -property_value: IAO:0000589 "lateral hypothalamic area (post-embryonic human)" xsd:string -intersection_of: UBERON:0002430 ! lateral hypothalamic area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74632 ! -property_value: IAO:0000589 "pars intermedia of adenohypophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74631 ! -property_value: IAO:0000589 "pars tuberalis of adenohypophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74635 ! -property_value: IAO:0000589 "pituitary stalk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77618 ! -property_value: IAO:0000589 "striatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002435 ! striatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83683 ! -property_value: IAO:0000589 "striatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002435 ! striatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:236871 ! -property_value: IAO:0000589 "primary visual cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002436 ! primary visual cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68614 ! -property_value: IAO:0000589 "primary visual cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002436 ! primary visual cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:241998 ! -property_value: IAO:0000589 "cerebral hemisphere white matter (post-embryonic human)" xsd:string -intersection_of: UBERON:0002437 ! cerebral hemisphere white matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256174 ! -property_value: IAO:0000589 "cerebral hemisphere white matter (post-embryonic human)" xsd:string -intersection_of: UBERON:0002437 ! cerebral hemisphere white matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61822 ! -property_value: IAO:0000589 "cerebral hemisphere white matter (post-embryonic human)" xsd:string -intersection_of: UBERON:0002437 ! cerebral hemisphere white matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72435 ! -property_value: IAO:0000589 "ventral tegmental nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002438 ! ventral tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63252 ! -property_value: IAO:0000589 "myenteric nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002439 ! myenteric nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6961 ! -property_value: IAO:0000589 "inferior cervical ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6469 ! -property_value: IAO:0000589 "cervicothoracic ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002441 ! cervicothoracic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65265 ! -property_value: IAO:0000589 "axillary nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002442 ! axillary nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76550 ! -property_value: IAO:0000589 "choroidal blood vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76827 ! -property_value: IAO:0000589 "lens fiber (post-embryonic human)" xsd:string -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23715 ! -property_value: IAO:0000589 "ulnare (post-embryonic human)" xsd:string -intersection_of: UBERON:0002445 ! ulnare -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24485 ! -property_value: IAO:0000589 "patella (post-embryonic human)" xsd:string -intersection_of: UBERON:0002446 ! patella -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59795 ! -property_value: IAO:0000589 "palatine gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002447 ! palatine gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54821 ! -property_value: IAO:0000589 "fungiform papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002448 ! fungiform papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85538 ! -property_value: IAO:0000589 "decidua (post-embryonic human)" xsd:string -intersection_of: UBERON:0002450 ! decidua -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84115 ! -property_value: IAO:0000589 "ethmoid sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002453 ! ethmoid sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70800 ! -property_value: IAO:0000589 "dorsal metacarpal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002454 ! dorsal metacarpal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70821 ! -property_value: IAO:0000589 "common plantar digital arteries (post-embryonic human)" xsd:string -intersection_of: UBERON:0002455 ! common plantar digital arteries -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3960 ! -property_value: IAO:0000589 "internal thoracic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50913 ! -property_value: IAO:0000589 "inferior palpebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0002459 ! inferior palpebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20278 ! -property_value: IAO:0000589 "anterior abdominal wall muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002461 ! anterior abdominal wall muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71302 ! -property_value: IAO:0000589 "erector spinae muscle group (post-embryonic human)" xsd:string -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22427 ! -property_value: IAO:0000589 "muscle of posterior compartment of hindlimb stylopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0002463 ! muscle of posterior compartment of hindlimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:81022 ! -property_value: IAO:0000589 "muscle of posterior compartment of hindlimb stylopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0002463 ! muscle of posterior compartment of hindlimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14383 ! -property_value: IAO:0000589 "nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002464 ! nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5913 ! -property_value: IAO:0000589 "nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0002464 ! nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74594 ! -property_value: IAO:0000589 "lymphoid system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002465 ! lymphoid system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62974 ! -property_value: IAO:0000589 "intestine secretion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002466 ! intestine secretion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54820 ! -property_value: IAO:0000589 "filiform papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002467 ! filiform papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54823 ! -property_value: IAO:0000589 "foliate papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002468 ! foliate papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62996 ! -property_value: IAO:0000589 "esophagus mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0002469 ! esophagus mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83015 ! -property_value: IAO:0000589 "autopod region (post-embryonic human)" xsd:string -intersection_of: UBERON:0002470 ! autopod region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83016 ! -property_value: IAO:0000589 "zeugopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0002471 ! zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83014 ! -property_value: IAO:0000589 "stylopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0002472 ! stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67930 ! -property_value: IAO:0000589 "intercerebral commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002473 ! intercerebral commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77791 ! -property_value: IAO:0000589 "cerebellar peduncular complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002474 ! cerebellar peduncular complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45262 ! -property_value: IAO:0000589 "saphenous nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002475 ! saphenous nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61839 ! -property_value: IAO:0000589 "lateral globus pallidus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002476 ! lateral globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61840 ! -property_value: IAO:0000589 "medial globus pallidus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002477 ! medial globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52869 ! -property_value: IAO:0000589 "orbitosphenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62214 ! -property_value: IAO:0000589 "dorsal lateral geniculate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002479 ! dorsal lateral geniculate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62215 ! -property_value: IAO:0000589 "ventral lateral geniculate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002480 ! ventral lateral geniculate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224804 ! -property_value: IAO:0000589 "bone tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002481 ! bone tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224806 ! -property_value: IAO:0000589 "lamellar bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0002482 ! lamellar bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24019 ! -property_value: IAO:0000589 "trabecular bone tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002483 ! trabecular bone tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75147 ! -property_value: IAO:0000589 "bone marrow cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0002484 ! bone marrow cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83698 ! -property_value: IAO:0000589 "bone marrow cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0002484 ! bone marrow cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19580 ! -property_value: IAO:0000589 "prostate duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0002485 ! prostate duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55414 ! -property_value: IAO:0000589 "glottis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002486 ! glottis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55660 ! -property_value: IAO:0000589 "tooth cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0002487 ! tooth cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60992 ! -property_value: IAO:0000589 "helix of outer ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0002488 ! helix of outer ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52928 ! -property_value: IAO:0000589 "coronal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0002489 ! coronal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52989 ! -property_value: IAO:0000589 "frontal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0002490 ! frontal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52933 ! -property_value: IAO:0000589 "lambdoid suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0002491 ! lambdoid suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52929 ! -property_value: IAO:0000589 "sagittal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0002492 ! sagittal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18829 ! -property_value: IAO:0000589 "uterine artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002493 ! uterine artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12154 ! -property_value: IAO:0000589 "papillary muscle of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0002494 ! papillary muscle of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7474 ! -property_value: IAO:0000589 "long bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0002495 ! long bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52769 ! -property_value: IAO:0000589 "stapes base (post-embryonic human)" xsd:string -intersection_of: UBERON:0002496 ! stapes base -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23260 ! -property_value: IAO:0000589 "acromion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002497 ! acromion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23418 ! -property_value: IAO:0000589 "deltopectoral crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0002498 ! deltopectoral crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61259 ! -property_value: IAO:0000589 "cochlear labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0002499 ! cochlear labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53120 ! -property_value: IAO:0000589 "zygomatic arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0002500 ! zygomatic arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56913 ! -property_value: IAO:0000589 "oval window (post-embryonic human)" xsd:string -intersection_of: UBERON:0002501 ! oval window -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56932 ! -property_value: IAO:0000589 "round window of inner ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0002502 ! round window of inner ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32852 ! -property_value: IAO:0000589 "greater trochanter (post-embryonic human)" xsd:string -intersection_of: UBERON:0002503 ! greater trochanter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32853 ! -property_value: IAO:0000589 "lesser trochanter (post-embryonic human)" xsd:string -intersection_of: UBERON:0002504 ! lesser trochanter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52312 ! -property_value: IAO:0000589 "spiral modiolar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0002505 ! spiral modiolar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58517 ! -property_value: IAO:0000589 "iris epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002506 ! iris epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12787 ! -property_value: IAO:0000589 "abdominal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002507 ! abdominal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12792 ! -property_value: IAO:0000589 "celiac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002508 ! celiac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12795 ! -property_value: IAO:0000589 "mesenteric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002509 ! mesenteric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75439 ! -property_value: IAO:0000589 "anterior fontanel (post-embryonic human)" xsd:string -intersection_of: UBERON:0002510 ! anterior fontanel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7269 ! -property_value: IAO:0000589 "trabecula carnea (post-embryonic human)" xsd:string -intersection_of: UBERON:0002511 ! trabecula carnea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18619 ! -property_value: IAO:0000589 "corpus luteum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002512 ! corpus luteum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24321 ! -property_value: IAO:0000589 "endochondral bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0002513 ! endochondral bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24041 ! -property_value: IAO:0000589 "periosteum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002515 ! periosteum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75427 ! -property_value: IAO:0000589 "epiphyseal plate (post-embryonic human)" xsd:string -intersection_of: UBERON:0002516 ! epiphyseal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52801 ! -property_value: IAO:0000589 "basicranium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002517 ! basicranium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75573 ! -property_value: IAO:0000589 "otolithic part of statoconial membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0002519 ! otolithic part of statoconial membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61224 ! -property_value: IAO:0000589 "submandibular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002520 ! submandibular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20113 ! -property_value: IAO:0000589 "elastic tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0002521 ! elastic tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55590 ! -property_value: IAO:0000589 "tunica media (post-embryonic human)" xsd:string -intersection_of: UBERON:0002522 ! tunica media -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55589 ! -property_value: IAO:0000589 "tunica intima (post-embryonic human)" xsd:string -intersection_of: UBERON:0002523 ! tunica intima -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12774 ! -property_value: IAO:0000589 "mediastinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002524 ! mediastinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44314 ! -property_value: IAO:0000589 "brachial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002525 ! brachial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84599 ! -property_value: IAO:0000589 "lumbar lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002526 ! lumbar lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16626 ! -property_value: IAO:0000589 "pancreatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002527 ! pancreatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16655 ! -property_value: IAO:0000589 "sacral lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0002528 ! sacral lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:241863 ! -property_value: IAO:0000589 "limb segment (post-embryonic human)" xsd:string -intersection_of: UBERON:0002529 ! limb segment -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7146 ! -property_value: IAO:0000589 "gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002530 ! gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86294 ! -property_value: IAO:0000589 "gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0002530 ! gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296704 ! -property_value: IAO:0000589 "epiblast (generic) (post-embryonic human)" xsd:string -intersection_of: UBERON:0002532 ! epiblast (generic) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293015 ! -property_value: IAO:0000589 "pharyngeal arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85518 ! {notes="GAT"} -property_value: IAO:0000589 "digit (post-embryonic human)" xsd:string -intersection_of: UBERON:0002544 ! digit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293966 ! -property_value: IAO:0000589 "cranial placode (post-embryonic human)" xsd:string -intersection_of: UBERON:0002546 ! cranial placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72506 ! -property_value: IAO:0000589 "ventral trigeminal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002549 ! ventral trigeminal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62027 ! -property_value: IAO:0000589 "anterior hypothalamic region (post-embryonic human)" xsd:string -intersection_of: UBERON:0002550 ! anterior hypothalamic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72432 ! -property_value: IAO:0000589 "interstitial nucleus of Cajal (post-embryonic human)" xsd:string -intersection_of: UBERON:0002551 ! interstitial nucleus of Cajal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72508 ! -property_value: IAO:0000589 "vestibulocerebellar tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002552 ! vestibulocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67552 ! -property_value: IAO:0000589 "anatomical cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0002553 ! anatomical cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62028 ! -property_value: IAO:0000589 "intermediate hypothalamic region (post-embryonic human)" xsd:string -intersection_of: UBERON:0002555 ! intermediate hypothalamic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72419 ! -property_value: IAO:0000589 "corticotectal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002556 ! corticotectal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72436 ! -property_value: IAO:0000589 "linear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002557 ! linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12237 ! -property_value: IAO:0000589 "organ cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0002558 ! organ cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72241 ! -property_value: IAO:0000589 "medullary reticular formation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002559 ! medullary reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74891 ! -property_value: IAO:0000589 "temporal operculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002560 ! temporal operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75007 ! -property_value: IAO:0000589 "lumen of central nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0002561 ! lumen of central nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83755 ! -property_value: IAO:0000589 "superior frontal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002562 ! superior frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72413 ! -property_value: IAO:0000589 "central nucleus of inferior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002563 ! central nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62418 ! -property_value: IAO:0000589 "lateral orbital gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002564 ! lateral orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72405 ! -property_value: IAO:0000589 "olivary pretectal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002565 ! olivary pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83763 ! -property_value: IAO:0000589 "superior precentral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002566 ! superior precentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72244 ! -property_value: IAO:0000589 "basal part of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0002567 ! basal part of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72546 ! -property_value: IAO:0000589 "amiculum of dentate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002568 ! amiculum of dentate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83782 ! -property_value: IAO:0000589 "transverse temporal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002569 ! transverse temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62419 ! -property_value: IAO:0000589 "medial orbital gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002570 ! medial orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72412 ! -property_value: IAO:0000589 "external nucleus of inferior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002571 ! external nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72402 ! -property_value: IAO:0000589 "principal pretectal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002572 ! principal pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68876 ! -property_value: IAO:0000589 "pontine reticular formation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002573 ! pontine reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80184 ! -property_value: IAO:0000589 "posterior orbital gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002575 ! posterior orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74890 ! -property_value: IAO:0000589 "temporal pole (post-embryonic human)" xsd:string -intersection_of: UBERON:0002576 ! temporal pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72411 ! -property_value: IAO:0000589 "pericentral nucleus of inferior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002577 ! pericentral nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72404 ! -property_value: IAO:0000589 "sublentiform nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002578 ! sublentiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72417 ! -property_value: IAO:0000589 "brachium of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002580 ! brachium of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61896 ! -property_value: IAO:0000589 "postcentral gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002581 ! postcentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83750 ! -property_value: IAO:0000589 "anterior calcarine sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002582 ! anterior calcarine sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72418 ! -property_value: IAO:0000589 "commissure of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002583 ! commissure of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72456 ! -property_value: IAO:0000589 "central tegmental tract of midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002585 ! central tegmental tract of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83749 ! -property_value: IAO:0000589 "calcarine sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002586 ! calcarine sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72479 ! -property_value: IAO:0000589 "nucleus subceruleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002587 ! nucleus subceruleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72455 ! -property_value: IAO:0000589 "decussation of superior cerebellar peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002588 ! decussation of superior cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72635 ! -property_value: IAO:0000589 "lateral corticospinal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002589 ! lateral corticospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62484 ! -property_value: IAO:0000589 "prepyriform area (post-embryonic human)" xsd:string -intersection_of: UBERON:0002590 ! prepyriform area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:235322 ! -property_value: IAO:0000589 "oral part of spinal trigeminal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002591 ! oral part of spinal trigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72613 ! -property_value: IAO:0000589 "juxtarestiform body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002592 ! juxtarestiform body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74887 ! -property_value: IAO:0000589 "orbital operculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002593 ! orbital operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72462 ! -property_value: IAO:0000589 "dentatothalamic tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002594 ! dentatothalamic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83770 ! -property_value: IAO:0000589 "orbital sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002595 ! orbital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62187 ! -property_value: IAO:0000589 "ventral posterior nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002596 ! ventral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54533 ! -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83762 ! -property_value: IAO:0000589 "paracentral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002598 ! paracentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74509 ! -property_value: IAO:0000589 "medial olfactory gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002599 ! medial olfactory gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72719 ! -property_value: IAO:0000589 "limbic lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002600 ! limbic lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61921 ! -property_value: IAO:0000589 "fasciolar gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002601 ! fasciolar gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72538 ! -property_value: IAO:0000589 "emboliform nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002602 ! emboliform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61919 ! -property_value: IAO:0000589 "paraterminal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002603 ! paraterminal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72484 ! -property_value: IAO:0000589 "ventral nucleus of lateral lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002604 ! ventral nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74888 ! -property_value: IAO:0000589 "precentral operculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002605 ! precentral operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261269 ! -property_value: IAO:0000589 "neuropil (post-embryonic human)" xsd:string -intersection_of: UBERON:0002606 ! neuropil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83766 ! -property_value: IAO:0000589 "superior rostral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002607 ! superior rostral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62194 ! -property_value: IAO:0000589 "caudal part of ventral lateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002608 ! caudal part of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72463 ! -property_value: IAO:0000589 "spinothalamic tract of midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002609 ! spinothalamic tract of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72240 ! -property_value: IAO:0000589 "cochlear nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002610 ! cochlear nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83771 ! -property_value: IAO:0000589 "transverse orbital sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002612 ! transverse orbital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72536 ! -property_value: IAO:0000589 "cerebellum globose nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002613 ! cerebellum globose nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62195 ! -property_value: IAO:0000589 "medial part of ventral lateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002614 ! medial part of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72452 ! -property_value: IAO:0000589 "ventral tegmental decussation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002615 ! ventral tegmental decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55676 ! -property_value: IAO:0000589 "regional part of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002616 ! regional part of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62196 ! -property_value: IAO:0000589 "pars postrema of ventral lateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002617 ! pars postrema of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71116 ! -property_value: IAO:0000589 "root of trochlear nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002618 ! root of trochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62327 ! -property_value: IAO:0000589 "tuber cinereum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002620 ! tuber cinereum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62324 ! -property_value: IAO:0000589 "preoptic periventricular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002622 ! preoptic periventricular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62394 ! -property_value: IAO:0000589 "cerebral peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002623 ! cerebral peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61982 ! -property_value: IAO:0000589 "orbital part of inferior frontal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002624 ! orbital part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62323 ! -property_value: IAO:0000589 "median preoptic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002625 ! median preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61852 ! -property_value: IAO:0000589 "head of caudate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002626 ! head of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62049 ! -property_value: IAO:0000589 "capsule of medial geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002627 ! capsule of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61854 ! -property_value: IAO:0000589 "tail of caudate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002628 ! tail of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61980 ! -property_value: IAO:0000589 "triangular part of inferior frontal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002629 ! triangular part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61853 ! -property_value: IAO:0000589 "body of caudate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002630 ! body of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72464 ! -property_value: IAO:0000589 "cerebral crus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002631 ! cerebral crus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62345 ! -property_value: IAO:0000589 "medial part of medial mammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002632 ! medial part of medial mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54562 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002633 ! motor nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62319 ! -property_value: IAO:0000589 "anterior nucleus of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002634 ! anterior nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62181 ! -property_value: IAO:0000589 "lateral pulvinar nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002636 ! lateral pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62184 ! -property_value: IAO:0000589 "ventral anterior nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002637 ! ventral anterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62182 ! -property_value: IAO:0000589 "medial pulvinar nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002638 ! medial pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62406 ! -property_value: IAO:0000589 "midbrain reticular formation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002639 ! midbrain reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72637 ! -property_value: IAO:0000589 "cuneocerebellar tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002640 ! cuneocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62180 ! -property_value: IAO:0000589 "oral pulvinar nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002641 ! oral pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72623 ! -property_value: IAO:0000589 "cuneate fasciculus of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002642 ! cuneate fasciculus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72622 ! -property_value: IAO:0000589 "decussation of medial lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002643 ! decussation of medial lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80183 ! -property_value: IAO:0000589 "intermediate orbital gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002644 ! intermediate orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62163 ! -property_value: IAO:0000589 "densocellular part of medial dorsal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002645 ! densocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72617 ! -property_value: IAO:0000589 "dorsal longitudinal fasciculus of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002646 ! dorsal longitudinal fasciculus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62161 ! -property_value: IAO:0000589 "magnocellular part of medial dorsal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002647 ! magnocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74870 ! -property_value: IAO:0000589 "anterior median eminence (post-embryonic human)" xsd:string -intersection_of: UBERON:0002648 ! anterior median eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72616 ! -property_value: IAO:0000589 "dorsolateral fasciculus of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002649 ! dorsolateral fasciculus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62160 ! -property_value: IAO:0000589 "paralaminar part of medial dorsal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002650 ! paralaminar part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74520 ! -property_value: IAO:0000589 "anterior horn of lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002651 ! anterior horn of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74875 ! -property_value: IAO:0000589 "posterior median eminence (post-embryonic human)" xsd:string -intersection_of: UBERON:0002652 ! posterior median eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72624 ! -property_value: IAO:0000589 "gracile fasciculus of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002653 ! gracile fasciculus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62162 ! -property_value: IAO:0000589 "parvocellular part of medial dorsal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002654 ! parvocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83703 ! -property_value: IAO:0000589 "body of lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002655 ! body of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62485 ! -property_value: IAO:0000589 "periamygdaloid area (post-embryonic human)" xsd:string -intersection_of: UBERON:0002656 ! periamygdaloid area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67966 ! -property_value: IAO:0000589 "posterior parahippocampal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002657 ! posterior parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72461 ! -property_value: IAO:0000589 "medial lemniscus of midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002658 ! medial lemniscus of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74508 ! -property_value: IAO:0000589 "superior medullary velum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002659 ! superior medullary velum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72454 ! -property_value: IAO:0000589 "medial longitudinal fasciculus of midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002660 ! medial longitudinal fasciculus of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61857 ! -property_value: IAO:0000589 "superior frontal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002661 ! superior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72460 ! -property_value: IAO:0000589 "medial pes lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002662 ! medial pes lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61845 ! -property_value: IAO:0000589 "septal nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002663 ! septal nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62346 ! -property_value: IAO:0000589 "lateral part of medial mammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002664 ! lateral part of medial mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61920 ! -property_value: IAO:0000589 "supracallosal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002665 ! supracallosal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72489 ! -property_value: IAO:0000589 "mesencephalic tract of trigeminal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002666 ! mesencephalic tract of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61878 ! -property_value: IAO:0000589 "lateral septal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002667 ! lateral septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72457 ! -property_value: IAO:0000589 "oculomotor nerve root (post-embryonic human)" xsd:string -intersection_of: UBERON:0002668 ! oculomotor nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83760 ! -property_value: IAO:0000589 "anterior horizontal limb of lateral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002669 ! anterior horizontal limb of lateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83759 ! -property_value: IAO:0000589 "anterior ascending limb of lateral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002670 ! anterior ascending limb of lateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72458 ! -property_value: IAO:0000589 "pallidotegmental fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002671 ! pallidotegmental fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83765 ! -property_value: IAO:0000589 "anterior subcentral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002672 ! anterior subcentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72239 ! -property_value: IAO:0000589 "vestibular nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002673 ! vestibular nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83758 ! -property_value: IAO:0000589 "diagonal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002675 ! diagonal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62052 ! -property_value: IAO:0000589 "ventral supraoptic decussation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002676 ! ventral supraoptic decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62141 ! -property_value: IAO:0000589 "anterodorsal nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002679 ! anterodorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62142 ! -property_value: IAO:0000589 "anteromedial nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002681 ! anteromedial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54504 ! -property_value: IAO:0000589 "abducens nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002682 ! abducens nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83746 ! -property_value: IAO:0000589 "rhinal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002683 ! rhinal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72585 ! -property_value: IAO:0000589 "nucleus raphe obscurus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002684 ! nucleus raphe obscurus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62143 ! -property_value: IAO:0000589 "anteroventral nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002685 ! anteroventral nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61898 ! -property_value: IAO:0000589 "angular gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002686 ! angular gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62198 ! -property_value: IAO:0000589 "area X of ventral lateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002687 ! area X of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61897 ! -property_value: IAO:0000589 "supramarginal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002688 ! supramarginal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62315 ! -property_value: IAO:0000589 "supraoptic crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0002689 ! supraoptic crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62314 ! -property_value: IAO:0000589 "anteroventral periventricular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002690 ! anteroventral periventricular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72438 ! -property_value: IAO:0000589 "ventral tegmental area (post-embryonic human)" xsd:string -intersection_of: UBERON:0002691 ! ventral tegmental area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68874 ! -property_value: IAO:0000589 "medullary raphe nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002692 ! medullary raphe nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74518 ! -property_value: IAO:0000589 "occipitotemporal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002693 ! occipitotemporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62053 ! -property_value: IAO:0000589 "anterior hypothalamic commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002694 ! anterior hypothalamic commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83754 ! -property_value: IAO:0000589 "parieto-occipital sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002695 ! parieto-occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231327 ! -property_value: IAO:0000589 "cuneiform nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002696 ! cuneiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72427 ! -property_value: IAO:0000589 "cuneiform nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002696 ! cuneiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62051 ! -property_value: IAO:0000589 "dorsal supraoptic decussation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002697 ! dorsal supraoptic decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83739 ! -property_value: IAO:0000589 "preoccipital notch (post-embryonic human)" xsd:string -intersection_of: UBERON:0002698 ! preoccipital notch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62054 ! -property_value: IAO:0000589 "supraopticohypophysial tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002699 ! supraopticohypophysial tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72428 ! -property_value: IAO:0000589 "subcuneiform nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002700 ! subcuneiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54524 ! -property_value: IAO:0000589 "anterior median oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002701 ! anterior median oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72423 ! -property_value: IAO:0000589 "anterior median oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002701 ! anterior median oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61859 ! -property_value: IAO:0000589 "middle frontal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002702 ! middle frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61894 ! -property_value: IAO:0000589 "precentral gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002703 ! precentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62023 ! -property_value: IAO:0000589 "metathalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002704 ! metathalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62020 ! -property_value: IAO:0000589 "midline nuclear group (post-embryonic human)" xsd:string -intersection_of: UBERON:0002705 ! midline nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62350 ! -property_value: IAO:0000589 "posterior nucleus of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002706 ! posterior nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72634 ! -property_value: IAO:0000589 "corticospinal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002707 ! corticospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62349 ! -property_value: IAO:0000589 "posterior periventricular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002708 ! posterior periventricular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62024 ! -property_value: IAO:0000589 "posterior nuclear complex of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002709 ! posterior nuclear complex of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83748 ! -property_value: IAO:0000589 "cingulate sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002710 ! cingulate sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68463 ! -property_value: IAO:0000589 "nucleus of posterior commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002711 ! nucleus of posterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62348 ! -property_value: IAO:0000589 "premammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002712 ! premammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83753 ! -property_value: IAO:0000589 "circular sulcus of insula (post-embryonic human)" xsd:string -intersection_of: UBERON:0002713 ! circular sulcus of insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72640 ! -property_value: IAO:0000589 "rubrospinal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002714 ! rubrospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72625 ! -property_value: IAO:0000589 "spinal trigeminal tract of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002715 ! spinal trigeminal tract of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83751 ! -property_value: IAO:0000589 "collateral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002716 ! collateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72433 ! -property_value: IAO:0000589 "rostral interstitial nucleus of medial longitudinal fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002717 ! rostral interstitial nucleus of medial longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72619 ! -property_value: IAO:0000589 "solitary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002718 ! solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72643 ! -property_value: IAO:0000589 "spino-olivary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002719 ! spino-olivary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62061 ! -property_value: IAO:0000589 "mammillary peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002720 ! mammillary peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77801 ! -property_value: IAO:0000589 "lateral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002721 ! lateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54518 ! -property_value: IAO:0000589 "trochlear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002722 ! trochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62057 ! -property_value: IAO:0000589 "mammillary princeps fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002723 ! mammillary princeps fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75266 ! -property_value: IAO:0000589 "limen of insula (post-embryonic human)" xsd:string -intersection_of: UBERON:0002724 ! limen of insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71166 ! -property_value: IAO:0000589 "cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002726 ! cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62470 ! -property_value: IAO:0000589 "medial medullary lamina of globus pallidus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002727 ! medial medullary lamina of globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72356 ! -property_value: IAO:0000589 "entorhinal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002728 ! entorhinal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61869 ! -property_value: IAO:0000589 "claustral amygdaloid area (post-embryonic human)" xsd:string -intersection_of: UBERON:0002729 ! claustral amygdaloid area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72499 ! -property_value: IAO:0000589 "vestibulocochlear nerve root (post-embryonic human)" xsd:string -intersection_of: UBERON:0002731 ! vestibulocochlear nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72513 ! -property_value: IAO:0000589 "longitudinal pontine fibers (post-embryonic human)" xsd:string -intersection_of: UBERON:0002732 ! longitudinal pontine fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62021 ! -property_value: IAO:0000589 "intralaminar nuclear group (post-embryonic human)" xsd:string -intersection_of: UBERON:0002733 ! intralaminar nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83783 ! -property_value: IAO:0000589 "superior temporal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002734 ! superior temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72514 ! -property_value: IAO:0000589 "transverse pontine fibers (post-embryonic human)" xsd:string -intersection_of: UBERON:0002735 ! transverse pontine fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62174 ! -property_value: IAO:0000589 "lateral nuclear group of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002736 ! lateral nuclear group of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74523 ! -property_value: IAO:0000589 "lateral inferior limiting sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002737 ! lateral inferior limiting sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62502 ! -property_value: IAO:0000589 "isthmus of cingulate gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002738 ! isthmus of cingulate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62156 ! -property_value: IAO:0000589 "medial dorsal nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002739 ! medial dorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61924 ! -property_value: IAO:0000589 "posterior cingulate gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002740 ! posterior cingulate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61973 ! -property_value: IAO:0000589 "diagonal band of Broca (post-embryonic human)" xsd:string -intersection_of: UBERON:0002741 ! diagonal band of Broca -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62472 ! -property_value: IAO:0000589 "lamina of septum pellucidum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002742 ! lamina of septum pellucidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77700 ! -property_value: IAO:0000589 "basal forebrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0002743 ! basal forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72548 ! -property_value: IAO:0000589 "hilum of dentate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002744 ! hilum of dentate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61977 ! -property_value: IAO:0000589 "ventral amygdalofugal projection (post-embryonic human)" xsd:string -intersection_of: UBERON:0002745 ! ventral amygdalofugal projection -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62328 ! -property_value: IAO:0000589 "intermediate periventricular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002746 ! intermediate periventricular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72539 ! -property_value: IAO:0000589 "neodentate part of dentate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002747 ! neodentate part of dentate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72621 ! -property_value: IAO:0000589 "medial lemniscus of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002748 ! medial lemniscus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76924 ! -property_value: IAO:0000589 "regional part of cerebellar cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002749 ! regional part of cerebellar cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72618 ! -property_value: IAO:0000589 "medial longitudinal fasciculus of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002750 ! medial longitudinal fasciculus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61907 ! -property_value: IAO:0000589 "inferior temporal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002751 ! inferior temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72638 ! -property_value: IAO:0000589 "olivocerebellar tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002752 ! olivocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72641 ! -property_value: IAO:0000589 "posterior spinocerebellar tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002753 ! posterior spinocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72614 ! -property_value: IAO:0000589 "predorsal bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002754 ! predorsal bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72633 ! -property_value: IAO:0000589 "pyramidal decussation (post-embryonic human)" xsd:string -intersection_of: UBERON:0002755 ! pyramidal decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61916 ! -property_value: IAO:0000589 "anterior cingulate gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002756 ! anterior cingulate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62216 ! -property_value: IAO:0000589 "dorsal nucleus of medial geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002758 ! dorsal nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62218 ! -property_value: IAO:0000589 "magnocellular nucleus of medial geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002759 ! magnocellular nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72636 ! -property_value: IAO:0000589 "ventral corticospinal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002760 ! ventral corticospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83757 ! -property_value: IAO:0000589 "inferior frontal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002761 ! inferior frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62079 ! -property_value: IAO:0000589 "internal medullary lamina of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002762 ! internal medullary lamina of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62471 ! -property_value: IAO:0000589 "accessory medullary lamina of globus pallidus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002763 ! accessory medullary lamina of globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83764 ! -property_value: IAO:0000589 "inferior precentral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002764 ! inferior precentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62469 ! -property_value: IAO:0000589 "lateral medullary lamina of globus pallidus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002765 ! lateral medullary lamina of globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61908 ! -property_value: IAO:0000589 "fusiform gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002766 ! fusiform gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83767 ! -property_value: IAO:0000589 "inferior rostral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002767 ! inferior rostral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72646 ! -property_value: IAO:0000589 "vestibulospinal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002768 ! vestibulospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61905 ! -property_value: IAO:0000589 "superior temporal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002769 ! superior temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62029 ! -property_value: IAO:0000589 "posterior hypothalamic region (post-embryonic human)" xsd:string -intersection_of: UBERON:0002770 ! posterior hypothalamic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61906 ! -property_value: IAO:0000589 "middle temporal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002771 ! middle temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83769 ! -property_value: IAO:0000589 "olfactory sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002772 ! olfactory sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61909 ! -property_value: IAO:0000589 "anterior transverse temporal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002773 ! anterior transverse temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71029 ! -property_value: IAO:0000589 "anterior transverse temporal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002773 ! anterior transverse temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61910 ! -property_value: IAO:0000589 "posterior transverse temporal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002774 ! posterior transverse temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72485 ! -property_value: IAO:0000589 "olivocochlear bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002775 ! olivocochlear bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62022 ! -property_value: IAO:0000589 "ventral nuclear group (post-embryonic human)" xsd:string -intersection_of: UBERON:0002776 ! ventral nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77613 ! -property_value: IAO:0000589 "ventral pallidum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002778 ! ventral pallidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72472 ! -property_value: IAO:0000589 "lateral superior olivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002779 ! lateral superior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62206 ! -property_value: IAO:0000589 "caudal part of ventral posterolateral nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002781 ! caudal part of ventral posterolateral nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:226223 ! -property_value: IAO:0000589 "medial superior olivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002782 ! medial superior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72473 ! -property_value: IAO:0000589 "medial superior olivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002782 ! medial superior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72494 ! -property_value: IAO:0000589 "central tegmental tract of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0002783 ! central tegmental tract of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72491 ! -property_value: IAO:0000589 "root of abducens nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002786 ! root of abducens nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72488 ! -property_value: IAO:0000589 "decussation of trochlear nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002787 ! decussation of trochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62019 ! -property_value: IAO:0000589 "anterior nuclear group (post-embryonic human)" xsd:string -intersection_of: UBERON:0002788 ! anterior nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72496 ! -property_value: IAO:0000589 "dorsal acoustic stria (post-embryonic human)" xsd:string -intersection_of: UBERON:0002790 ! dorsal acoustic stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71168 ! -property_value: IAO:0000589 "lumbar spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0002792 ! lumbar spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72492 ! -property_value: IAO:0000589 "dorsal longitudinal fasciculus of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0002793 ! dorsal longitudinal fasciculus of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72493 ! -property_value: IAO:0000589 "medial longitudinal fasciculus of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0002794 ! medial longitudinal fasciculus of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74885 ! -property_value: IAO:0000589 "frontal pole (post-embryonic human)" xsd:string -intersection_of: UBERON:0002795 ! frontal pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52612 ! -property_value: IAO:0000589 "motor root of trigeminal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002796 ! motor root of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72500 ! -property_value: IAO:0000589 "dorsal trigeminal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002797 ! dorsal trigeminal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72504 ! -property_value: IAO:0000589 "spinothalamic tract of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0002798 ! spinothalamic tract of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83768 ! -property_value: IAO:0000589 "fronto-orbital sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002799 ! fronto-orbital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72507 ! -property_value: IAO:0000589 "spinal trigeminal tract of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0002800 ! spinal trigeminal tract of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83905 ! -property_value: IAO:0000589 "stratum zonale of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002801 ! stratum zonale of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72974 ! -property_value: IAO:0000589 "left parietal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002802 ! left parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72973 ! -property_value: IAO:0000589 "right parietal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002803 ! right parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72981 ! -property_value: IAO:0000589 "left limbic lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002804 ! left limbic lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72980 ! -property_value: IAO:0000589 "right limbic lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002805 ! right limbic lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72976 ! -property_value: IAO:0000589 "left occipital lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002806 ! left occipital lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72975 ! -property_value: IAO:0000589 "right occipital lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002807 ! right occipital lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72972 ! -property_value: IAO:0000589 "left temporal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002808 ! left temporal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72971 ! -property_value: IAO:0000589 "right temporal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002809 ! right temporal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72969 ! -property_value: IAO:0000589 "right frontal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002810 ! right frontal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72970 ! -property_value: IAO:0000589 "left frontal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002811 ! left frontal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61819 ! -property_value: IAO:0000589 "left cerebral hemisphere (post-embryonic human)" xsd:string -intersection_of: UBERON:0002812 ! left cerebral hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67292 ! -property_value: IAO:0000589 "right cerebral hemisphere (post-embryonic human)" xsd:string -intersection_of: UBERON:0002813 ! right cerebral hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83733 ! -property_value: IAO:0000589 "posterior superior fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002814 ! posterior superior fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75135 ! -property_value: IAO:0000589 "horizontal fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002815 ! horizontal fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75138 ! -property_value: IAO:0000589 "prepyramidal fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002816 ! prepyramidal fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84043 ! -property_value: IAO:0000589 "secondary fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002817 ! secondary fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83730 ! -property_value: IAO:0000589 "posterolateral fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002818 ! posterolateral fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75641 ! -property_value: IAO:0000589 "apex of cochlea (post-embryonic human)" xsd:string -intersection_of: UBERON:0002819 ! apex of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75709 ! -property_value: IAO:0000589 "zona arcuata of basilar membrane of cochlea (post-embryonic human)" xsd:string -intersection_of: UBERON:0002820 ! zona arcuata of basilar membrane of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58671 ! -property_value: IAO:0000589 "macula lutea proper (post-embryonic human)" xsd:string -intersection_of: UBERON:0002822 ! macula lutea proper -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58674 ! -property_value: IAO:0000589 "clivus of fovea centralis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002823 ! clivus of fovea centralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53435 ! -property_value: IAO:0000589 "vestibular ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77531 ! -property_value: IAO:0000589 "superior part of vestibular ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002825 ! superior part of vestibular ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77532 ! -property_value: IAO:0000589 "inferior part of vestibular ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002826 ! inferior part of vestibular ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54621 ! -property_value: IAO:0000589 "ventral cochlear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002828 ! ventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54624 ! -property_value: IAO:0000589 "dorsal cochlear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002829 ! dorsal cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72571 ! -property_value: IAO:0000589 "anteroventral cochlear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002830 ! anteroventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72572 ! -property_value: IAO:0000589 "posteroventral cochlear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002831 ! posteroventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72477 ! -property_value: IAO:0000589 "ventral nucleus of trapezoid body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002832 ! ventral nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75732 ! -property_value: IAO:0000589 "medial nucleus of trapezoid body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002833 ! medial nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6005 ! -property_value: IAO:0000589 "cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002834 ! cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6006 ! -property_value: IAO:0000589 "thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002835 ! thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6007 ! -property_value: IAO:0000589 "lumbar dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002836 ! lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6008 ! -property_value: IAO:0000589 "sacral dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002837 ! sacral dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6010 ! -property_value: IAO:0000589 "first cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002838 ! first cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6315 ! -property_value: IAO:0000589 "second cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002839 ! second cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6316 ! -property_value: IAO:0000589 "third cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002840 ! third cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6317 ! -property_value: IAO:0000589 "fourth cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002841 ! fourth cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6318 ! -property_value: IAO:0000589 "fifth cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002842 ! fifth cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6360 ! -property_value: IAO:0000589 "seventh cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002843 ! seventh cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6361 ! -property_value: IAO:0000589 "eighth cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002844 ! eighth cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6321 ! -property_value: IAO:0000589 "first thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002845 ! first thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6322 ! -property_value: IAO:0000589 "second thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002846 ! second thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6323 ! -property_value: IAO:0000589 "third thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002847 ! third thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6325 ! -property_value: IAO:0000589 "fifth thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002848 ! fifth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6326 ! -property_value: IAO:0000589 "sixth thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002849 ! sixth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6327 ! -property_value: IAO:0000589 "seventh thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002850 ! seventh thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6328 ! -property_value: IAO:0000589 "eighth thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002851 ! eighth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6329 ! -property_value: IAO:0000589 "ninth thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002852 ! ninth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6330 ! -property_value: IAO:0000589 "tenth thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002853 ! tenth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6331 ! -property_value: IAO:0000589 "eleventh thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002854 ! eleventh thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6332 ! -property_value: IAO:0000589 "twelfth thoracic dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002855 ! twelfth thoracic dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6336 ! -property_value: IAO:0000589 "second lumbar dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002856 ! second lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6335 ! -property_value: IAO:0000589 "first lumbar dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002857 ! first lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6337 ! -property_value: IAO:0000589 "third lumbar dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002858 ! third lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6339 ! -property_value: IAO:0000589 "fifth lumbar dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002859 ! fifth lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6342 ! -property_value: IAO:0000589 "first sacral dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002860 ! first sacral dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6343 ! -property_value: IAO:0000589 "second sacral dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002861 ! second sacral dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6344 ! -property_value: IAO:0000589 "third sacral dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002862 ! third sacral dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6346 ! -property_value: IAO:0000589 "fifth sacral dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0002863 ! fifth sacral dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72603 ! -property_value: IAO:0000589 "accessory cuneate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002864 ! accessory cuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72609 ! -property_value: IAO:0000589 "arcuate nucleus of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002865 ! arcuate nucleus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72606 ! -property_value: IAO:0000589 "caudal part of spinal trigeminal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002866 ! caudal part of spinal trigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72595 ! -property_value: IAO:0000589 "central gray substance of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002867 ! central gray substance of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54597 ! -property_value: IAO:0000589 "commissural nucleus of vagus nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002868 ! commissural nucleus of vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72598 ! -property_value: IAO:0000589 "diffuse reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002869 ! diffuse reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77220 ! -property_value: IAO:0000589 "diffuse reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002869 ! diffuse reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54592 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0002870 ! dorsal motor nucleus of vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54505 ! -property_value: IAO:0000589 "hypoglossal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002871 ! hypoglossal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72601 ! -property_value: IAO:0000589 "inferior salivatory nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002872 ! inferior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:235324 ! -property_value: IAO:0000589 "interpolar part of spinal trigeminal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002873 ! interpolar part of spinal trigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72604 ! -property_value: IAO:0000589 "lateral pericuneate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002874 ! lateral pericuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72605 ! -property_value: IAO:0000589 "medial pericuneate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002875 ! medial pericuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72597 ! -property_value: IAO:0000589 "nucleus intercalatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002876 ! nucleus intercalatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77091 ! -property_value: IAO:0000589 "parasolitary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002877 ! parasolitary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72600 ! -property_value: IAO:0000589 "peritrigeminal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002879 ! peritrigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72608 ! -property_value: IAO:0000589 "pontobulbar nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002880 ! pontobulbar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68574 ! -property_value: IAO:0000589 "sublingual nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002881 ! sublingual nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74507 ! -property_value: IAO:0000589 "supraspinal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002882 ! supraspinal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74047 ! -property_value: IAO:0000589 "central amygdaloid nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002883 ! central amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61868 ! -property_value: IAO:0000589 "intercalated amygdaloid nuclei (post-embryonic human)" xsd:string -intersection_of: UBERON:0002884 ! intercalated amygdaloid nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61867 ! -property_value: IAO:0000589 "accessory basal amygdaloid nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002885 ! accessory basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61866 ! -property_value: IAO:0000589 "lateral amygdaloid nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002886 ! lateral amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68855 ! -property_value: IAO:0000589 "basal amygdaloid nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002887 ! basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68857 ! -property_value: IAO:0000589 "lateral part of basal amygdaloid nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002888 ! lateral part of basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68858 ! -property_value: IAO:0000589 "medial part of basal amygdaloid nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002889 ! medial part of basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61861 ! -property_value: IAO:0000589 "anterior amygdaloid area (post-embryonic human)" xsd:string -intersection_of: UBERON:0002890 ! anterior amygdaloid area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61862 ! -property_value: IAO:0000589 "cortical amygdaloid nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002891 ! cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74046 ! -property_value: IAO:0000589 "medial amygdaloid nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002892 ! medial amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61865 ! -property_value: IAO:0000589 "nucleus of lateral olfactory tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002893 ! nucleus of lateral olfactory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276600 ! -property_value: IAO:0000589 "olfactory cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83726 ! -property_value: IAO:0000589 "telodiencephalic fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002896 ! telodiencephalic fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74516 ! -property_value: IAO:0000589 "cistern of lamina terminalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002897 ! cistern of lamina terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74515 ! -property_value: IAO:0000589 "chiasmatic cistern (post-embryonic human)" xsd:string -intersection_of: UBERON:0002898 ! chiasmatic cistern -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83747 ! -property_value: IAO:0000589 "hippocampal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002899 ! hippocampal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83786 ! -property_value: IAO:0000589 "transverse occipital sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002900 ! transverse occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83787 ! -property_value: IAO:0000589 "posterior calcarine sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002901 ! posterior calcarine sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74892 ! -property_value: IAO:0000589 "occipital pole (post-embryonic human)" xsd:string -intersection_of: UBERON:0002902 ! occipital pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83788 ! -property_value: IAO:0000589 "lunate sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002903 ! lunate sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83785 ! -property_value: IAO:0000589 "lateral occipital sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002904 ! lateral occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83789 ! -property_value: IAO:0000589 "intralingual sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002905 ! intralingual sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75758 ! -property_value: IAO:0000589 "anterior occipital sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002906 ! anterior occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83775 ! -property_value: IAO:0000589 "superior postcentral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002907 ! superior postcentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83777 ! -property_value: IAO:0000589 "subparietal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002908 ! subparietal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83778 ! -property_value: IAO:0000589 "posterior subcentral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002909 ! posterior subcentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83761 ! -property_value: IAO:0000589 "posterior ascending limb of lateral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002910 ! posterior ascending limb of lateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74889 ! -property_value: IAO:0000589 "parietal operculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002911 ! parietal operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83773 ! -property_value: IAO:0000589 "marginal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002912 ! marginal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83772 ! -property_value: IAO:0000589 "intraparietal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002913 ! intraparietal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83776 ! -property_value: IAO:0000589 "inferior postcentral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002914 ! inferior postcentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83774 ! -property_value: IAO:0000589 "postcentral sulcus of parietal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0002915 ! postcentral sulcus of parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83752 ! -property_value: IAO:0000589 "central sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002916 ! central sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72480 ! -property_value: IAO:0000589 "medial parabrachial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002918 ! medial parabrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83744 ! -property_value: IAO:0000589 "anterior parolfactory sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002919 ! anterior parolfactory sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83743 ! -property_value: IAO:0000589 "callosal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002920 ! callosal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83727 ! -property_value: IAO:0000589 "longitudinal fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002921 ! longitudinal fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74883 ! -property_value: IAO:0000589 "olfactory trigone (post-embryonic human)" xsd:string -intersection_of: UBERON:0002922 ! olfactory trigone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83745 ! -property_value: IAO:0000589 "posterior parolfactory sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002923 ! posterior parolfactory sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71247 ! -property_value: IAO:0000589 "trigeminal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002925 ! trigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62412 ! -property_value: IAO:0000589 "gustatory epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0002926 ! gustatory epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72505 ! -property_value: IAO:0000589 "tectopontine tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002930 ! tectopontine tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61877 ! -property_value: IAO:0000589 "dorsal septal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002931 ! dorsal septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72487 ! -property_value: IAO:0000589 "trapezoid body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002932 ! trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61883 ! -property_value: IAO:0000589 "nucleus of anterior commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002933 ! nucleus of anterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72422 ! -property_value: IAO:0000589 "ventral oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002934 ! ventral oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62192 ! -property_value: IAO:0000589 "magnocellular part of ventral anterior nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002935 ! magnocellular part of ventral anterior nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72431 ! -property_value: IAO:0000589 "magnocellular part of red nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002936 ! magnocellular part of red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62191 ! -property_value: IAO:0000589 "parvocellular part of ventral anterior nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002937 ! parvocellular part of ventral anterior nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72430 ! -property_value: IAO:0000589 "parvocellular part of red nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002938 ! parvocellular part of red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62199 ! -property_value: IAO:0000589 "ventral posteroinferior nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002939 ! ventral posteroinferior nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61966 ! -property_value: IAO:0000589 "anterior column of fornix (post-embryonic human)" xsd:string -intersection_of: UBERON:0002940 ! anterior column of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72450 ! -property_value: IAO:0000589 "capsule of red nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002941 ! capsule of red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62200 ! -property_value: IAO:0000589 "ventral posterolateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002942 ! ventral posterolateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61904 ! -property_value: IAO:0000589 "lingual gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002943 ! lingual gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72644 ! -property_value: IAO:0000589 "spinothalamic tract of medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0002944 ! spinothalamic tract of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62202 ! -property_value: IAO:0000589 "ventral posteromedial nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002945 ! ventral posteromedial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74886 ! -property_value: IAO:0000589 "frontal operculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0002947 ! frontal operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61901 ! -property_value: IAO:0000589 "superior occipital gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002948 ! superior occipital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72620 ! -property_value: IAO:0000589 "tectospinal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002949 ! tectospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72497 ! -property_value: IAO:0000589 "intermediate acoustic stria (post-embryonic human)" xsd:string -intersection_of: UBERON:0002952 ! intermediate acoustic stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72502 ! -property_value: IAO:0000589 "lateral lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002953 ! lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62339 ! -property_value: IAO:0000589 "dorsal hypothalamic area (post-embryonic human)" xsd:string -intersection_of: UBERON:0002954 ! dorsal hypothalamic area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62154 ! -property_value: IAO:0000589 "rhomboidal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002955 ! rhomboidal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83140 ! -property_value: IAO:0000589 "granular layer of cerebellar cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002956 ! granular layer of cerebellar cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72426 ! -property_value: IAO:0000589 "caudal central oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002957 ! caudal central oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72503 ! -property_value: IAO:0000589 "medial lemniscus of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0002958 ! medial lemniscus of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62155 ! -property_value: IAO:0000589 "subfascicular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002959 ! subfascicular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72425 ! -property_value: IAO:0000589 "central oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002960 ! central oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62424 ! -property_value: IAO:0000589 "archicortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002961 ! archicortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37380 ! -property_value: IAO:0000589 "adductor pollicis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002962 ! adductor pollicis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72469 ! -property_value: IAO:0000589 "caudal pontine reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002963 ! caudal pontine reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62442 ! -property_value: IAO:0000589 "dorsal oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002964 ! dorsal oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62164 ! -property_value: IAO:0000589 "rostral intralaminar nuclear group (post-embryonic human)" xsd:string -intersection_of: UBERON:0002965 ! rostral intralaminar nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62434 ! -property_value: IAO:0000589 "cingulate gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002967 ! cingulate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72470 ! -property_value: IAO:0000589 "central gray substance of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0002968 ! central gray substance of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83784 ! -property_value: IAO:0000589 "inferior temporal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002969 ! inferior temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72420 ! -property_value: IAO:0000589 "intermediate oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002970 ! intermediate oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62165 ! -property_value: IAO:0000589 "centromedian nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002972 ! centromedian nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61918 ! -property_value: IAO:0000589 "parahippocampal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002973 ! parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83897 ! -property_value: IAO:0000589 "molecular layer of cerebellar cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002974 ! molecular layer of cerebellar cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72421 ! -property_value: IAO:0000589 "medial oculomotor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002975 ! medial oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72474 ! -property_value: IAO:0000589 "preolivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002976 ! preolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61880 ! -property_value: IAO:0000589 "triangular septal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002977 ! triangular septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62193 ! -property_value: IAO:0000589 "oral part of ventral lateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002978 ! oral part of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83896 ! -property_value: IAO:0000589 "Purkinje cell layer of cerebellar cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0002979 ! Purkinje cell layer of cerebellar cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61981 ! -property_value: IAO:0000589 "opercular part of inferior frontal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002980 ! opercular part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62178 ! -property_value: IAO:0000589 "pulvinar nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002981 ! pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62183 ! -property_value: IAO:0000589 "inferior pulvinar nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002982 ! inferior pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62177 ! -property_value: IAO:0000589 "lateral posterior nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002983 ! lateral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62176 ! -property_value: IAO:0000589 "lateral dorsal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002984 ! lateral dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62217 ! -property_value: IAO:0000589 "ventral nucleus of medial geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0002985 ! ventral nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72642 ! -property_value: IAO:0000589 "anterior spinocerebellar tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002987 ! anterior spinocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37424 ! -property_value: IAO:0000589 "first dorsal interosseous of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002988 ! first dorsal interosseous of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37704 ! -property_value: IAO:0000589 "anconeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0002989 ! anconeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62059 ! -property_value: IAO:0000589 "mammillothalamic tract of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002990 ! mammillothalamic tract of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62056 ! -property_value: IAO:0000589 "supramammillary commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0002991 ! supramammillary commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62151 ! -property_value: IAO:0000589 "paratenial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002992 ! paratenial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72466 ! -property_value: IAO:0000589 "inferior central nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002993 ! inferior central nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76844 ! -property_value: IAO:0000589 "substantia nigra pars lateralis (post-embryonic human)" xsd:string -intersection_of: UBERON:0002995 ! substantia nigra pars lateralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72403 ! -property_value: IAO:0000589 "nucleus of optic tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0002996 ! nucleus of optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72467 ! -property_value: IAO:0000589 "nucleus of medial eminence (post-embryonic human)" xsd:string -intersection_of: UBERON:0002997 ! nucleus of medial eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61860 ! -property_value: IAO:0000589 "inferior frontal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002998 ! inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72468 ! -property_value: IAO:0000589 "oral pontine reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0002999 ! oral pontine reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83676 ! -property_value: IAO:0000589 "nervous system lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003001 ! nervous system lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83675 ! -property_value: IAO:0000589 "medial lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003002 ! medial lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72465 ! -property_value: IAO:0000589 "median raphe nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003004 ! median raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72453 ! -property_value: IAO:0000589 "dorsal longitudinal fasciculus of midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0003005 ! dorsal longitudinal fasciculus of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72483 ! -property_value: IAO:0000589 "dorsal nucleus of lateral lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003006 ! dorsal nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72481 ! -property_value: IAO:0000589 "lateral parabrachial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003007 ! lateral parabrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62063 ! -property_value: IAO:0000589 "dorsal longitudinal fasciculus of hypothalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003008 ! dorsal longitudinal fasciculus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72451 ! -property_value: IAO:0000589 "dorsal tegmental decussation (post-embryonic human)" xsd:string -intersection_of: UBERON:0003009 ! dorsal tegmental decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72459 ! -property_value: IAO:0000589 "lateral pes lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003010 ! lateral pes lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54582 ! -property_value: IAO:0000589 "facial motor nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003011 ! facial motor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72253 ! -property_value: IAO:0000589 "flocculonodular lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0003012 ! flocculonodular lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72517 ! -property_value: IAO:0000589 "alar central lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0003013 ! alar central lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72516 ! -property_value: IAO:0000589 "anterior quadrangular lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0003015 ! anterior quadrangular lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62062 ! -property_value: IAO:0000589 "postcommissural fornix of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0003016 ! postcommissural fornix of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61885 ! -property_value: IAO:0000589 "substantia innominata (post-embryonic human)" xsd:string -intersection_of: UBERON:0003017 ! substantia innominata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62207 ! -property_value: IAO:0000589 "parvocellular part of ventral posteromedial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003018 ! parvocellular part of ventral posteromedial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62205 ! -property_value: IAO:0000589 "oral part of ventral posterolateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003019 ! oral part of ventral posterolateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61890 ! -property_value: IAO:0000589 "subcallosal area (post-embryonic human)" xsd:string -intersection_of: UBERON:0003020 ! subcallosal area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72519 ! -property_value: IAO:0000589 "central lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0003021 ! central lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71108 ! -property_value: IAO:0000589 "pontine tegmentum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003023 ! pontine tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62208 ! -property_value: IAO:0000589 "principal part of ventral posteromedial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003024 ! principal part of ventral posteromedial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71114 ! -property_value: IAO:0000589 "brachium of inferior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003025 ! brachium of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62220 ! -property_value: IAO:0000589 "limitans nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003026 ! limitans nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71115 ! -property_value: IAO:0000589 "commissure of inferior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003028 ! commissure of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61974 ! -property_value: IAO:0000589 "stria terminalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0003029 ! stria terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62221 ! -property_value: IAO:0000589 "posterior nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003030 ! posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62223 ! -property_value: IAO:0000589 "submedial nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003031 ! submedial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62222 ! -property_value: IAO:0000589 "suprageniculate nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003033 ! suprageniculate nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62169 ! -property_value: IAO:0000589 "central dorsal nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003034 ! central dorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62170 ! -property_value: IAO:0000589 "central lateral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003036 ! central lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86461 ! -property_value: IAO:0000589 "septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003037 ! septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71167 ! -property_value: IAO:0000589 "thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0003038 ! thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61963 ! -property_value: IAO:0000589 "anterior commissure anterior part (post-embryonic human)" xsd:string -intersection_of: UBERON:0003039 ! anterior commissure anterior part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74510 ! -property_value: IAO:0000589 "central gray substance of midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0003040 ! central gray substance of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72501 ! -property_value: IAO:0000589 "trigeminal nerve fibers (post-embryonic human)" xsd:string -intersection_of: UBERON:0003041 ! trigeminal nerve fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61964 ! -property_value: IAO:0000589 "posterior part of anterior commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0003043 ! posterior part of anterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77636 ! -property_value: IAO:0000589 "uncinate fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003044 ! uncinate fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83845 ! -property_value: IAO:0000589 "dorsal longitudinal fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003045 ! dorsal longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72498 ! -property_value: IAO:0000589 "ventral acoustic stria (post-embryonic human)" xsd:string -intersection_of: UBERON:0003046 ! ventral acoustic stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293971 ! -property_value: IAO:0000589 "olfactory placode (post-embryonic human)" xsd:string -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:302920 ! -property_value: IAO:0000589 "ear vesicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295662 ! -property_value: IAO:0000589 "periderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0003055 ! periderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293116 ! -property_value: IAO:0000589 "primitive knot (post-embryonic human)" xsd:string -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295532 ! -property_value: IAO:0000589 "prechordal plate (post-embryonic human)" xsd:string -intersection_of: UBERON:0003063 ! prechordal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293147 ! -property_value: IAO:0000589 "intermediate mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293017 ! -property_value: IAO:0000589 "pharyngeal arch 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293973 ! -property_value: IAO:0000589 "otic placode (post-embryonic human)" xsd:string -intersection_of: UBERON:0003069 ! otic placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296767 ! -property_value: IAO:0000589 "lens placode (post-embryonic human)" xsd:string -intersection_of: UBERON:0003073 ! lens placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293879 ! -property_value: IAO:0000589 "neural plate (post-embryonic human)" xsd:string -intersection_of: UBERON:0003075 ! neural plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293145 ! -property_value: IAO:0000589 "paraxial mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293968 ! -property_value: IAO:0000589 "epibranchial placode (post-embryonic human)" xsd:string -intersection_of: UBERON:0003078 ! epibranchial placode -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293149 ! -property_value: IAO:0000589 "lateral plate mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295658 ! -property_value: IAO:0000589 "myotome (post-embryonic human)" xsd:string -intersection_of: UBERON:0003082 ! myotome -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70309 ! -property_value: IAO:0000589 "anterior cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295652 ! -property_value: IAO:0000589 "sclerotome (post-embryonic human)" xsd:string -intersection_of: UBERON:0003089 ! sclerotome -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67812 ! -property_value: IAO:0000589 "female organism (post-embryonic human)" xsd:string -intersection_of: UBERON:0003100 ! female organism -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67811 ! -property_value: IAO:0000589 "male organism (post-embryonic human)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295784 ! -property_value: IAO:0000589 "Meckel's cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293029 ! -property_value: IAO:0000589 "pharyngeal arch 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293035 ! -property_value: IAO:0000589 "pharyngeal arch 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293045 ! -property_value: IAO:0000589 "pharyngeal arch 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003116 ! pharyngeal arch 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293047 ! -property_value: IAO:0000589 "pharyngeal arch 6 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003117 ! pharyngeal arch 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80224 ! -property_value: IAO:0000589 "chorion membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0003124 ! chorion membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7394 ! -property_value: IAO:0000589 "trachea (post-embryonic human)" xsd:string -intersection_of: UBERON:0003126 ! trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71325 ! -property_value: IAO:0000589 "cranium (post-embryonic human)" xsd:string -intersection_of: UBERON:0003128 ! cranium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46565 ! -property_value: IAO:0000589 "skull (post-embryonic human)" xsd:string -intersection_of: UBERON:0003129 ! skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77853 ! -property_value: IAO:0000589 "gustatory organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0003212 ! gustatory organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73285 ! -property_value: IAO:0000589 "mammary gland alveolus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003214 ! mammary gland alveolus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82493 ! -property_value: IAO:0000589 "alveolus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003215 ! alveolus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55023 ! -property_value: IAO:0000589 "hard palate (post-embryonic human)" xsd:string -intersection_of: UBERON:0003216 ! hard palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74636 ! -property_value: IAO:0000589 "neural lobe of neurohypophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0003217 ! neural lobe of neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321661 ! -property_value: IAO:0000589 "phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003221 ! phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38469 ! -property_value: IAO:0000589 "flexor digitorum superficialis (post-embryonic human)" xsd:string -intersection_of: UBERON:0003222 ! flexor digitorum superficialis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38512 ! -property_value: IAO:0000589 "supinator muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003228 ! supinator muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75002 ! -property_value: IAO:0000589 "supinator muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003228 ! supinator muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38521 ! -property_value: IAO:0000589 "extensor pollicis longus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003234 ! extensor pollicis longus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75604 ! -property_value: IAO:0000589 "epithelium of utricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75605 ! -property_value: IAO:0000589 "epithelium of saccule (post-embryonic human)" xsd:string -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74445 ! -property_value: IAO:0000589 "epithelium of mammary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46316 ! -property_value: IAO:0000589 "rectus capitis lateralis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003250 ! rectus capitis lateralis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63867 ! -property_value: IAO:0000589 "temporal part of head (post-embryonic human)" xsd:string -intersection_of: UBERON:0003251 ! temporal part of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7480 ! -property_value: IAO:0000589 "thoracic rib cage (post-embryonic human)" xsd:string -intersection_of: UBERON:0003252 ! thoracic rib cage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7576 ! -property_value: IAO:0000589 "neck of rib (post-embryonic human)" xsd:string -intersection_of: UBERON:0003253 ! neck of rib -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321647 ! -property_value: IAO:0000589 "tooth of lower jaw (post-embryonic human)" xsd:string -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54397 ! -property_value: IAO:0000589 "skeleton of upper jaw (post-embryonic human)" xsd:string -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54398 ! -property_value: IAO:0000589 "skeleton of lower jaw (post-embryonic human)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55075 ! -property_value: IAO:0000589 "pharyngeal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0003295 ! pharyngeal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85399 ! -property_value: IAO:0000589 "submucosa of anal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0003329 ! submucosa of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15034 ! -property_value: IAO:0000589 "submucosa of rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003330 ! submucosa of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14985 ! -property_value: IAO:0000589 "submucosa of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0003331 ! submucosa of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14943 ! -property_value: IAO:0000589 "submucosa of duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003332 ! submucosa of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14950 ! -property_value: IAO:0000589 "submucosa of jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003333 ! submucosa of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15039 ! -property_value: IAO:0000589 "serosa of rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003334 ! serosa of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14990 ! -property_value: IAO:0000589 "serosa of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0003335 ! serosa of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14948 ! -property_value: IAO:0000589 "serosa of duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003336 ! serosa of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14955 ! -property_value: IAO:0000589 "serosa of jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003337 ! serosa of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83843 ! -property_value: IAO:0000589 "ganglion of central nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0003339 ! ganglion of central nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74654 ! -property_value: IAO:0000589 "mucosa of anal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0003342 ! mucosa of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15033 ! -property_value: IAO:0000589 "mucosa of rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003346 ! mucosa of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17510 ! -property_value: IAO:0000589 "epithelium of rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003354 ! epithelium of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:284658 ! -property_value: IAO:0000589 "epithelium of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:301283 ! -property_value: IAO:0000589 "epithelium of vomeronasal organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9246 ! -property_value: IAO:0000589 "fossa ovalis of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0003369 ! fossa ovalis of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84279 ! -property_value: IAO:0000589 "cardiac muscle of auricular region (post-embryonic human)" xsd:string -intersection_of: UBERON:0003378 ! cardiac muscle of auricular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7282 ! -property_value: IAO:0000589 "cardiac muscle of right atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0003379 ! cardiac muscle of right atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7285 ! -property_value: IAO:0000589 "cardiac muscle of left atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0003380 ! cardiac muscle of left atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83452 ! -property_value: IAO:0000589 "cardiac muscle of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003381 ! cardiac muscle of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83453 ! -property_value: IAO:0000589 "cardiac muscle of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003382 ! cardiac muscle of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84084 ! -property_value: IAO:0000589 "cardiac muscle tissue of interventricular septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003383 ! cardiac muscle tissue of interventricular septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:262010 ! -property_value: IAO:0000589 "smooth muscle of trachea (post-embryonic human)" xsd:string -intersection_of: UBERON:0003387 ! smooth muscle of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18148 ! -property_value: IAO:0000589 "mesothelium of pleural cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0003390 ! mesothelium of pleural cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14645 ! -property_value: IAO:0000589 "mesentery of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0003396 ! mesentery of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14651 ! -property_value: IAO:0000589 "mesentery of jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003398 ! mesentery of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38265 ! -property_value: IAO:0000589 "skin of forearm (post-embryonic human)" xsd:string -intersection_of: UBERON:0003403 ! skin of forearm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59503 ! -property_value: IAO:0000589 "cartilage of nasal septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003407 ! cartilage of nasal septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312700 ! -property_value: IAO:0000589 "mesenchyme of nasal septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003415 ! mesenchyme of nasal septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276799 ! -property_value: IAO:0000589 "renal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0003425 ! renal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321754 ! -property_value: IAO:0000589 "upper jaw incisor (post-embryonic human)" xsd:string -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84428 ! -property_value: IAO:0000589 "trabecula carnea cardiac muscle tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0003452 ! trabecula carnea cardiac muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15658 ! -property_value: IAO:0000589 "large intestine Peyer's patch (post-embryonic human)" xsd:string -intersection_of: UBERON:0003453 ! large intestine Peyer's patch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15054 ! -property_value: IAO:0000589 "small intestine Peyer's patch (post-embryonic human)" xsd:string -intersection_of: UBERON:0003454 ! small intestine Peyer's patch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:281591 ! -property_value: IAO:0000589 "sesamoid bone of gastrocnemius (post-embryonic human)" xsd:string -intersection_of: UBERON:0003467 ! sesamoid bone of gastrocnemius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70491 ! -property_value: IAO:0000589 "ureteric segment of renal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0003468 ! ureteric segment of renal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49570 ! -property_value: IAO:0000589 "artery of upper lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0003470 ! artery of upper lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49567 ! -property_value: IAO:0000589 "artery of lower lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0003471 ! artery of lower lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52538 ! -property_value: IAO:0000589 "vein of upper lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0003477 ! vein of upper lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52541 ! -property_value: IAO:0000589 "vein of lower lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0003478 ! vein of lower lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37852 ! -property_value: IAO:0000589 "pedal digit skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0003530 ! pedal digit skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23101 ! -property_value: IAO:0000589 "forelimb skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0003531 ! forelimb skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23102 ! -property_value: IAO:0000589 "hindlimb skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0003532 ! hindlimb skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38304 ! -property_value: IAO:0000589 "manual digit skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0003533 ! manual digit skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6221 ! -property_value: IAO:0000589 "vagus X nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0003535 ! vagus X nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74479 ! -property_value: IAO:0000589 "mammary gland connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0003584 ! mammary gland connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74483 ! -property_value: IAO:0000589 "mammary gland connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0003584 ! mammary gland connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7434 ! -property_value: IAO:0000589 "trachea cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0003604 ! trachea cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74433 ! -property_value: IAO:0000589 "aorta tunica media (post-embryonic human)" xsd:string -intersection_of: UBERON:0003618 ! aorta tunica media -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74419 ! -property_value: IAO:0000589 "aorta tunica intima (post-embryonic human)" xsd:string -intersection_of: UBERON:0003619 ! aorta tunica intima -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35477 ! -property_value: IAO:0000589 "manual digit 1 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003620 ! manual digit 1 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24946 ! -property_value: IAO:0000589 "manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24947 ! -property_value: IAO:0000589 "manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24948 ! -property_value: IAO:0000589 "manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24949 ! -property_value: IAO:0000589 "manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25047 ! -property_value: IAO:0000589 "pedal digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25048 ! -property_value: IAO:0000589 "pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25051 ! -property_value: IAO:0000589 "pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25052 ! -property_value: IAO:0000589 "pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25053 ! -property_value: IAO:0000589 "pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35480 ! -property_value: IAO:0000589 "manual digit 2 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003636 ! manual digit 2 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35483 ! -property_value: IAO:0000589 "manual digit 3 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003637 ! manual digit 3 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35486 ! -property_value: IAO:0000589 "manual digit 4 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003638 ! manual digit 4 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35489 ! -property_value: IAO:0000589 "manual digit 5 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003639 ! manual digit 5 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32884 ! -property_value: IAO:0000589 "pedal digit 1 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003640 ! pedal digit 1 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32899 ! -property_value: IAO:0000589 "pedal digit 2 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003641 ! pedal digit 2 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32900 ! -property_value: IAO:0000589 "pedal digit 3 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003642 ! pedal digit 3 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23899 ! -property_value: IAO:0000589 "metacarpal bone of digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003645 ! metacarpal bone of digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23900 ! -property_value: IAO:0000589 "metacarpal bone of digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003646 ! metacarpal bone of digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23901 ! -property_value: IAO:0000589 "metacarpal bone of digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003647 ! metacarpal bone of digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23902 ! -property_value: IAO:0000589 "metacarpal bone of digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003648 ! metacarpal bone of digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23903 ! -property_value: IAO:0000589 "metacarpal bone of digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003649 ! metacarpal bone of digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24502 ! -property_value: IAO:0000589 "metatarsal bone of digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003650 ! metatarsal bone of digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24503 ! -property_value: IAO:0000589 "metatarsal bone of digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003651 ! metatarsal bone of digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24504 ! -property_value: IAO:0000589 "metatarsal bone of digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003652 ! metatarsal bone of digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24505 ! -property_value: IAO:0000589 "metatarsal bone of digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003653 ! metatarsal bone of digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24506 ! -property_value: IAO:0000589 "metatarsal bone of digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0003654 ! metatarsal bone of digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55638 ! -property_value: IAO:0000589 "molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0003655 ! molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321558 ! -property_value: IAO:0000589 "limb joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003657 ! limb joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37348 ! -property_value: IAO:0000589 "forelimb muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003662 ! forelimb muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37368 ! -property_value: IAO:0000589 "hindlimb muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003663 ! hindlimb muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55720 ! -property_value: IAO:0000589 "upper jaw molar (post-embryonic human)" xsd:string -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:290267 ! -property_value: IAO:0000589 "lower jaw molar (post-embryonic human)" xsd:string -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9692 ! -property_value: IAO:0000589 "synovial bursa (post-embryonic human)" xsd:string -intersection_of: UBERON:0003668 ! synovial bursa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13902 ! -property_value: IAO:0000589 "fascia lata (post-embryonic human)" xsd:string -intersection_of: UBERON:0003669 ! fascia lata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19656 ! -property_value: IAO:0000589 "smegma (post-embryonic human)" xsd:string -intersection_of: UBERON:0003670 ! smegma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44614 ! -property_value: IAO:0000589 "anterior cruciate ligament of knee joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003671 ! anterior cruciate ligament of knee joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75150 ! -property_value: IAO:0000589 "dentition (post-embryonic human)" xsd:string -intersection_of: UBERON:0003672 ! dentition -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13423 ! -property_value: IAO:0000589 "ligamentum flavum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003673 ! ligamentum flavum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55636 ! -property_value: IAO:0000589 "cuspid (post-embryonic human)" xsd:string -intersection_of: UBERON:0003674 ! cuspid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55623 ! -property_value: IAO:0000589 "tooth crown (post-embryonic human)" xsd:string -intersection_of: UBERON:0003675 ! tooth crown -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44581 ! -property_value: IAO:0000589 "patellar ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0003676 ! patellar ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55624 ! -property_value: IAO:0000589 "tooth root (post-embryonic human)" xsd:string -intersection_of: UBERON:0003677 ! tooth root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63000 ! -property_value: IAO:0000589 "tooth apex (post-embryonic human)" xsd:string -intersection_of: UBERON:0003678 ! tooth apex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86592 ! -property_value: IAO:0000589 "mouth floor (post-embryonic human)" xsd:string -intersection_of: UBERON:0003679 ! mouth floor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44617 ! -property_value: IAO:0000589 "posterior cruciate ligament of knee joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003680 ! posterior cruciate ligament of knee joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74060 ! -property_value: IAO:0000589 "masticatory muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003681 ! masticatory muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46726 ! -property_value: IAO:0000589 "palatal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003682 ! palatal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37018 ! -property_value: IAO:0000589 "rotator cuff (post-embryonic human)" xsd:string -intersection_of: UBERON:0003683 ! rotator cuff -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12266 ! -property_value: IAO:0000589 "abdominal cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0003684 ! abdominal cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7493 ! -property_value: IAO:0000589 "cranial suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0003685 ! cranial suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57490 ! -property_value: IAO:0000589 "tooth socket (post-embryonic human)" xsd:string -intersection_of: UBERON:0003686 ! tooth socket -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75306 ! -property_value: IAO:0000589 "foramen magnum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003687 ! foramen magnum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14650 ! -property_value: IAO:0000589 "omentum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003688 ! omentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54709 ! -property_value: IAO:0000589 "sella turcica (post-embryonic human)" xsd:string -intersection_of: UBERON:0003689 ! sella turcica -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16202 ! -property_value: IAO:0000589 "fused sacrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003690 ! fused sacrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71228 ! -property_value: IAO:0000589 "epidural space (post-embryonic human)" xsd:string -intersection_of: UBERON:0003691 ! epidural space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25898 ! -property_value: IAO:0000589 "acromioclavicular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003692 ! acromioclavicular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15080 ! -property_value: IAO:0000589 "retroperitoneal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0003693 ! retroperitoneal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25524 ! -property_value: IAO:0000589 "atlanto-axial joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003694 ! atlanto-axial joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35246 ! -property_value: IAO:0000589 "metacarpophalangeal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003695 ! metacarpophalangeal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35222 ! -property_value: IAO:0000589 "metatarsophalangeal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003696 ! metatarsophalangeal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10429 ! -property_value: IAO:0000589 "abdominal wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0003697 ! abdominal wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:259054 ! -property_value: IAO:0000589 "abdominal wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0003697 ! abdominal wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35198 ! -property_value: IAO:0000589 "subtalar joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003698 ! subtalar joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16950 ! -property_value: IAO:0000589 "pubic symphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0003699 ! pubic symphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54832 ! -property_value: IAO:0000589 "temporomandibular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0003700 ! temporomandibular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51061 ! -property_value: IAO:0000589 "calcaneal tendon (post-embryonic human)" xsd:string -intersection_of: UBERON:0003701 ! calcaneal tendon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19928 ! -property_value: IAO:0000589 "inguinal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0003702 ! inguinal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14678 ! -property_value: IAO:0000589 "extrahepatic bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0003703 ! extrahepatic bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15766 ! -property_value: IAO:0000589 "intrahepatic bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0003704 ! intrahepatic bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14967 ! -property_value: IAO:0000589 "Meckel's diverticulum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003705 ! Meckel's diverticulum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55457 ! -property_value: IAO:0000589 "laryngeal vocal fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0003706 ! laryngeal vocal fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3745 ! -property_value: IAO:0000589 "sinus of Valsalva (post-embryonic human)" xsd:string -intersection_of: UBERON:0003707 ! sinus of Valsalva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50094 ! -property_value: IAO:0000589 "carotid sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003708 ! carotid sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50454 ! -property_value: IAO:0000589 "circle of Willis (post-embryonic human)" xsd:string -intersection_of: UBERON:0003709 ! circle of Willis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77433 ! -property_value: IAO:0000589 "vasa vasorum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003710 ! vasa vasorum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4723 ! -property_value: IAO:0000589 "brachiocephalic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0003711 ! brachiocephalic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50772 ! -property_value: IAO:0000589 "cavernous sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003712 ! cavernous sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14331 ! -property_value: IAO:0000589 "splenic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0003713 ! splenic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9642 ! -property_value: IAO:0000589 "neural tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0003714 ! neural tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5883 ! -property_value: IAO:0000589 "splanchnic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0003715 ! splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6246 ! -property_value: IAO:0000589 "recurrent laryngeal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0003716 ! recurrent laryngeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83607 ! -property_value: IAO:0000589 "muscle spindle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003718 ! muscle spindle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83604 ! -property_value: IAO:0000589 "Pacinian corpuscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003719 ! Pacinian corpuscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83609 ! -property_value: IAO:0000589 "Pacinian corpuscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0003719 ! Pacinian corpuscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9682 ! -property_value: IAO:0000589 "anterior cranial fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0003720 ! anterior cranial fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53218 ! -property_value: IAO:0000589 "lingual nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0003721 ! lingual nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54369 ! -property_value: IAO:0000589 "middle cranial fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0003722 ! middle cranial fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53401 ! -property_value: IAO:0000589 "vestibular nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0003723 ! vestibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37064 ! -property_value: IAO:0000589 "musculocutaneous nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0003724 ! musculocutaneous nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5904 ! -property_value: IAO:0000589 "cervical nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003725 ! cervical nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5860 ! -property_value: IAO:0000589 "thoracic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0003726 ! thoracic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6028 ! -property_value: IAO:0000589 "intercostal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0003727 ! intercostal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9826 ! -property_value: IAO:0000589 "mediastinum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003728 ! mediastinum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59660 ! -property_value: IAO:0000589 "mouth mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0003729 ! mouth mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24890 ! -property_value: IAO:0000589 "forelimb stylopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24979 ! -property_value: IAO:0000589 "hindlimb zeugopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264898 ! -property_value: IAO:0000589 "abdominal segment skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0003836 ! abdominal segment skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312957 ! -property_value: IAO:0000589 "spinal cord neural plate (post-embryonic human)" xsd:string -intersection_of: UBERON:0003854 ! spinal cord neural plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11946 ! -property_value: IAO:0000589 "neural arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0003861 ! neural arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32901 ! -property_value: IAO:0000589 "pedal digit 4 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003862 ! pedal digit 4 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32902 ! -property_value: IAO:0000589 "pedal digit 5 phalanx (post-embryonic human)" xsd:string -intersection_of: UBERON:0003863 ! pedal digit 5 phalanx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75817 ! -property_value: IAO:0000589 "middle phalanx of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003864 ! middle phalanx of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75818 ! -property_value: IAO:0000589 "distal phalanx of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003865 ! distal phalanx of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75829 ! -property_value: IAO:0000589 "middle phalanx of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0003866 ! middle phalanx of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75830 ! -property_value: IAO:0000589 "distal phalanx of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0003867 ! distal phalanx of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75828 ! -property_value: IAO:0000589 "proximal phalanx of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0003868 ! proximal phalanx of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74041 ! -property_value: IAO:0000589 "hippocampal field (post-embryonic human)" xsd:string -intersection_of: UBERON:0003876 ! hippocampal field -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74042 ! -property_value: IAO:0000589 "CA1 field of hippocampus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003881 ! CA1 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74044 ! -property_value: IAO:0000589 "CA2 field of hippocampus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003882 ! CA2 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74045 ! -property_value: IAO:0000589 "CA3 field of hippocampus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003883 ! CA3 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75741 ! -property_value: IAO:0000589 "CA4 field of hippocampus (post-embryonic human)" xsd:string -intersection_of: UBERON:0003884 ! CA4 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19816 ! -property_value: IAO:0000589 "mesometrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0003885 ! mesometrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63943 ! -property_value: IAO:0000589 "extraembryonic coelomic cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0003888 ! extraembryonic coelomic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18245 ! -property_value: IAO:0000589 "fallopian tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0003889 ! fallopian tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:81494 ! -property_value: IAO:0000589 "stroma (post-embryonic human)" xsd:string -intersection_of: UBERON:0003891 ! stroma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85272 ! -property_value: IAO:0000589 "capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0003893 ! capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58628 ! -property_value: IAO:0000589 "retinal neural layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71123 ! -property_value: IAO:0000589 "left atrioventricular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0003907 ! left atrioventricular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71122 ! -property_value: IAO:0000589 "right atrioventricular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0003908 ! right atrioventricular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63131 ! -property_value: IAO:0000589 "sinusoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0003909 ! sinusoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63199 ! -property_value: IAO:0000589 "splenic sinusoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0003910 ! splenic sinusoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242811 ! -property_value: IAO:0000589 "choroid plexus epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0003911 ! choroid plexus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58616 ! -property_value: IAO:0000589 "fat pad (post-embryonic human)" xsd:string -intersection_of: UBERON:0003916 ! fat pad -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86188 ! -property_value: IAO:0000589 "venous blood vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0003920 ! venous blood vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79792 ! -property_value: IAO:0000589 "pancreas primordium (post-embryonic human)" xsd:string -intersection_of: UBERON:0003921 ! pancreas primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83931 ! -property_value: IAO:0000589 "diencephalic white matter (post-embryonic human)" xsd:string -intersection_of: UBERON:0003931 ! diencephalic white matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:273671 ! -property_value: IAO:0000589 "transverse gyrus of Heschl (post-embryonic human)" xsd:string -intersection_of: UBERON:0003939 ! transverse gyrus of Heschl -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72255 ! -property_value: IAO:0000589 "cerebellum anterior vermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0003941 ! cerebellum anterior vermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6338 ! -property_value: IAO:0000589 "fourth lumbar dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0003943 ! fourth lumbar dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54975 ! -property_value: IAO:0000589 "tubal tonsil (post-embryonic human)" xsd:string -intersection_of: UBERON:0003949 ! tubal tonsil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52946 ! -property_value: IAO:0000589 "squamoparietal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0003954 ! squamoparietal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85301 ! -property_value: IAO:0000589 "molar crown (post-embryonic human)" xsd:string -intersection_of: UBERON:0003955 ! molar crown -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58438 ! -property_value: IAO:0000589 "Bruch's membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0003957 ! Bruch's membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19834 ! -property_value: IAO:0000589 "rete testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0003959 ! rete testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52877 ! -property_value: IAO:0000589 "styloid process of temporal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0003960 ! styloid process of temporal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:260761 ! -property_value: IAO:0000589 "cingulum of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0003961 ! cingulum of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83869 ! -property_value: IAO:0000589 "cingulum of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0003961 ! cingulum of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6965 ! -property_value: IAO:0000589 "pterygopalatine ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0003962 ! pterygopalatine ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6967 ! -property_value: IAO:0000589 "otic ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0003963 ! otic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5892 ! -property_value: IAO:0000589 "prevertebral ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0003964 ! prevertebral ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57456 ! -property_value: IAO:0000589 "nasal concha of ethmoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0003973 ! nasal concha of ethmoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:27974 ! -property_value: IAO:0000589 "upper part of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0003974 ! upper part of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45654 ! -property_value: IAO:0000589 "internal female genitalia (post-embryonic human)" xsd:string -intersection_of: UBERON:0003975 ! internal female genitalia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77825 ! -property_value: IAO:0000589 "saccule duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0003976 ! saccule duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77824 ! -property_value: IAO:0000589 "utricle duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0003977 ! utricle duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67611 ! -property_value: IAO:0000589 "valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0003978 ! valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321547 ! -property_value: IAO:0000589 "cerebellum fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0003980 ! cerebellum fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18307 ! -property_value: IAO:0000589 "uterine tube infundibulum (post-embryonic human)" xsd:string -intersection_of: UBERON:0003984 ! uterine tube infundibulum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59986 ! -property_value: IAO:0000589 "major sublingual duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0003985 ! major sublingual duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59987 ! -property_value: IAO:0000589 "minor sublingual duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0003986 ! minor sublingual duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83734 ! -property_value: IAO:0000589 "medulla oblongata anterior median fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0003989 ! medulla oblongata anterior median fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75015 ! -property_value: IAO:0000589 "fourth ventricle median aperture (post-embryonic human)" xsd:string -intersection_of: UBERON:0003991 ! fourth ventricle median aperture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78473 ! -property_value: IAO:0000589 "fourth ventricle lateral aperture (post-embryonic human)" xsd:string -intersection_of: UBERON:0003992 ! fourth ventricle lateral aperture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75351 ! -property_value: IAO:0000589 "interventricular foramen of CNS (post-embryonic human)" xsd:string -intersection_of: UBERON:0003993 ! interventricular foramen of CNS -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56418 ! -property_value: IAO:0000589 "subarcuate fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0003995 ! subarcuate fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23976 ! -property_value: IAO:0000589 "cervical vertebra 1 arcus anterior (post-embryonic human)" xsd:string -intersection_of: UBERON:0003996 ! cervical vertebra 1 arcus anterior -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59496 ! -property_value: IAO:0000589 "hyoid bone greater horn (post-embryonic human)" xsd:string -intersection_of: UBERON:0003997 ! hyoid bone greater horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59499 ! -property_value: IAO:0000589 "hyoid bone lesser horn (post-embryonic human)" xsd:string -intersection_of: UBERON:0003998 ! hyoid bone lesser horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59495 ! -property_value: IAO:0000589 "hyoid bone body (post-embryonic human)" xsd:string -intersection_of: UBERON:0003999 ! hyoid bone body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72252 ! -property_value: IAO:0000589 "posterior lobe of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004002 ! posterior lobe of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83880 ! -property_value: IAO:0000589 "cerebellum hemisphere lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0004003 ! cerebellum hemisphere lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72259 ! -property_value: IAO:0000589 "cerebellum posterior vermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004009 ! cerebellum posterior vermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83608 ! -property_value: IAO:0000589 "golgi tendon organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0004012 ! golgi tendon organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20374 ! -property_value: IAO:0000589 "labium minora (post-embryonic human)" xsd:string -intersection_of: UBERON:0004014 ! labium minora -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295656 ! -property_value: IAO:0000589 "dermatome (post-embryonic human)" xsd:string -intersection_of: UBERON:0004016 ! dermatome -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85601 ! -property_value: IAO:0000589 "baroreceptor (post-embryonic human)" xsd:string -intersection_of: UBERON:0004019 ! baroreceptor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51873 ! -property_value: IAO:0000589 "canal of Schlemm (post-embryonic human)" xsd:string -intersection_of: UBERON:0004029 ! canal of Schlemm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:318119 ! -property_value: IAO:0000589 "head ectomesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0004031 ! head ectomesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15843 ! -property_value: IAO:0000589 "spleen primary B follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004041 ! spleen primary B follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83718 ! -property_value: IAO:0000589 "basal cistern (post-embryonic human)" xsd:string -intersection_of: UBERON:0004047 ! basal cistern -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83719 ! -property_value: IAO:0000589 "pontine cistern (post-embryonic human)" xsd:string -intersection_of: UBERON:0004048 ! pontine cistern -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74517 ! -property_value: IAO:0000589 "cerebellomedullary cistern (post-embryonic human)" xsd:string -intersection_of: UBERON:0004049 ! cerebellomedullary cistern -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83717 ! -property_value: IAO:0000589 "subarachnoid cistern (post-embryonic human)" xsd:string -intersection_of: UBERON:0004050 ! subarachnoid cistern -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83722 ! -property_value: IAO:0000589 "lateral cerebellomedullary cistern (post-embryonic human)" xsd:string -intersection_of: UBERON:0004051 ! lateral cerebellomedullary cistern -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74511 ! -property_value: IAO:0000589 "quadrigeminal cistern (post-embryonic human)" xsd:string -intersection_of: UBERON:0004052 ! quadrigeminal cistern -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45642 ! -property_value: IAO:0000589 "external male genitalia (post-embryonic human)" xsd:string -intersection_of: UBERON:0004053 ! external male genitalia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45655 ! -property_value: IAO:0000589 "internal male genitalia (post-embryonic human)" xsd:string -intersection_of: UBERON:0004054 ! internal male genitalia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293120 ! -property_value: IAO:0000589 "primitive pit (post-embryonic human)" xsd:string -intersection_of: UBERON:0004055 ! primitive pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293118 ! -property_value: IAO:0000589 "primitive groove (post-embryonic human)" xsd:string -intersection_of: UBERON:0004056 ! primitive groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293101 ! -property_value: IAO:0000589 "frontonasal prominence (post-embryonic human)" xsd:string -intersection_of: UBERON:0004066 ! frontonasal prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295864 ! -property_value: IAO:0000589 "lateral nasal prominence (post-embryonic human)" xsd:string -intersection_of: UBERON:0004067 ! lateral nasal prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295858 ! -property_value: IAO:0000589 "medial nasal prominence (post-embryonic human)" xsd:string -intersection_of: UBERON:0004068 ! medial nasal prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278629 ! -property_value: IAO:0000589 "cerebellum vermis lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0004070 ! cerebellum vermis lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83884 ! -property_value: IAO:0000589 "cerebellum vermis lobule I (post-embryonic human)" xsd:string -intersection_of: UBERON:0004074 ! cerebellum vermis lobule I -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278635 ! -property_value: IAO:0000589 "cerebellum vermis lobule II (post-embryonic human)" xsd:string -intersection_of: UBERON:0004075 ! cerebellum vermis lobule II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278639 ! -property_value: IAO:0000589 "cerebellum vermis lobule III (post-embryonic human)" xsd:string -intersection_of: UBERON:0004076 ! cerebellum vermis lobule III -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83883 ! -property_value: IAO:0000589 "cerebellum vermis lobule IX (post-embryonic human)" xsd:string -intersection_of: UBERON:0004078 ! cerebellum vermis lobule IX -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83887 ! -property_value: IAO:0000589 "cerebellum vermis lobule VI (post-embryonic human)" xsd:string -intersection_of: UBERON:0004080 ! cerebellum vermis lobule VI -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278651 ! -property_value: IAO:0000589 "cerebellum vermis lobule VII (post-embryonic human)" xsd:string -intersection_of: UBERON:0004081 ! cerebellum vermis lobule VII -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83888 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIII (post-embryonic human)" xsd:string -intersection_of: UBERON:0004082 ! cerebellum vermis lobule VIII -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83882 ! -property_value: IAO:0000589 "cerebellum vermis lobule X (post-embryonic human)" xsd:string -intersection_of: UBERON:0004083 ! cerebellum vermis lobule X -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321903 ! -property_value: IAO:0000589 "genital labium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004084 ! genital labium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20367 ! -property_value: IAO:0000589 "labium majora (post-embryonic human)" xsd:string -intersection_of: UBERON:0004085 ! labium majora -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78447 ! -property_value: IAO:0000589 "brain ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004086 ! brain ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321896 ! -property_value: IAO:0000589 "vena cava (post-embryonic human)" xsd:string -intersection_of: UBERON:0004087 ! vena cava -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:260119 ! -property_value: IAO:0000589 "orbital region (post-embryonic human)" xsd:string -intersection_of: UBERON:0004088 ! orbital region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:285406 ! -property_value: IAO:0000589 "midface (post-embryonic human)" xsd:string -intersection_of: UBERON:0004089 ! midface -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59351 ! -property_value: IAO:0000589 "periorbital region (post-embryonic human)" xsd:string -intersection_of: UBERON:0004090 ! periorbital region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24043 ! -property_value: IAO:0000589 "odontoid process of cervical vertebra 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004096 ! odontoid process of cervical vertebra 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38911 ! -property_value: IAO:0000589 "joint space of elbow (post-embryonic human)" xsd:string -intersection_of: UBERON:0004099 ! joint space of elbow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265239 ! -property_value: IAO:0000589 "renal collecting system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004100 ! renal collecting system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:313923 ! -property_value: IAO:0000589 "alveolar ridge (post-embryonic human)" xsd:string -intersection_of: UBERON:0004103 ! alveolar ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:285412 ! -property_value: IAO:0000589 "hairline (post-embryonic human)" xsd:string -intersection_of: UBERON:0004104 ! hairline -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61024 ! -property_value: IAO:0000589 "crus of ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0004106 ! crus of ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75747 ! -property_value: IAO:0000589 "clivus of occipital bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004108 ! clivus of occipital bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:31542 ! -property_value: IAO:0000589 "cortex of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004109 ! cortex of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59675 ! -property_value: IAO:0000589 "midnasal cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0004110 ! midnasal cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242873 ! -property_value: IAO:0000589 "anatomical conduit (post-embryonic human)" xsd:string -intersection_of: UBERON:0004111 ! anatomical conduit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49026 ! -property_value: IAO:0000589 "muscle of auditory ossicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004113 ! muscle of auditory ossicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56461 ! -property_value: IAO:0000589 "tympanic cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0004114 ! tympanic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293063 ! -property_value: IAO:0000589 "pharyngeal pouch (post-embryonic human)" xsd:string -intersection_of: UBERON:0004117 ! pharyngeal pouch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:280610 ! -property_value: IAO:0000589 "genitourinary system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83511 ! -property_value: IAO:0000589 "trabecular layer of ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004126 ! trabecular layer of ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293357 ! -property_value: IAO:0000589 "optic vesicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83141 ! -property_value: IAO:0000589 "cerebellar layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0004130 ! cerebellar layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17718 ! -property_value: IAO:0000589 "intermediate tubule (post-embryonic human)" xsd:string -intersection_of: UBERON:0004136 ! intermediate tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12846 ! -property_value: IAO:0000589 "cardiac vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0004148 ! cardiac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9242 ! -property_value: IAO:0000589 "coronary sinus valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0004150 ! coronary sinus valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7095 ! -property_value: IAO:0000589 "cardiac chamber (post-embryonic human)" xsd:string -intersection_of: UBERON:0004151 ! cardiac chamber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63909 ! -property_value: IAO:0000589 "atrial septum primum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004154 ! atrial septum primum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63910 ! -property_value: IAO:0000589 "atrial septum secundum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004155 ! atrial septum secundum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295593 ! -property_value: IAO:0000589 "septum transversum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004161 ! septum transversum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242003 ! -property_value: IAO:0000589 "orbitofrontal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0004167 ! orbitofrontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77035 ! -property_value: IAO:0000589 "spinal cord ventral commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0004170 ! spinal cord ventral commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83852 ! -property_value: IAO:0000589 "trigeminothalamic tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0004171 ! trigeminothalamic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73989 ! -property_value: IAO:0000589 "medulla reticulospinal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0004173 ! medulla reticulospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45652 ! -property_value: IAO:0000589 "internal genitalia (post-embryonic human)" xsd:string -intersection_of: UBERON:0004175 ! internal genitalia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45643 ! -property_value: IAO:0000589 "external genitalia (post-embryonic human)" xsd:string -intersection_of: UBERON:0004176 ! external genitalia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7143 ! -property_value: IAO:0000589 "hemopoietic organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0004177 ! hemopoietic organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66808 ! -property_value: IAO:0000589 "prostate glandular acinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004179 ! prostate glandular acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45719 ! -property_value: IAO:0000589 "prostate gland stroma (post-embryonic human)" xsd:string -intersection_of: UBERON:0004184 ! prostate gland stroma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17720 ! -property_value: IAO:0000589 "loop of Henle ascending limb thin segment (post-embryonic human)" xsd:string -intersection_of: UBERON:0004193 ! loop of Henle ascending limb thin segment -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272054 ! -property_value: IAO:0000589 "long nephron (post-embryonic human)" xsd:string -intersection_of: UBERON:0004194 ! long nephron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272051 ! -property_value: IAO:0000589 "short nephron (post-embryonic human)" xsd:string -intersection_of: UBERON:0004195 ! short nephron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258870 ! -property_value: IAO:0000589 "kidney pyramid (post-embryonic human)" xsd:string -intersection_of: UBERON:0004200 ! kidney pyramid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76663 ! -property_value: IAO:0000589 "kidney outer medulla inner stripe (post-embryonic human)" xsd:string -intersection_of: UBERON:0004201 ! kidney outer medulla inner stripe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76662 ! -property_value: IAO:0000589 "kidney outer medulla outer stripe (post-embryonic human)" xsd:string -intersection_of: UBERON:0004202 ! kidney outer medulla outer stripe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:274259 ! -property_value: IAO:0000589 "glomerular capillary (post-embryonic human)" xsd:string -intersection_of: UBERON:0004212 ! glomerular capillary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76909 ! -property_value: IAO:0000589 "urethra smooth muscle layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0004219 ! urethra smooth muscle layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19239 ! -property_value: IAO:0000589 "muscular coat of vas deferens (post-embryonic human)" xsd:string -intersection_of: UBERON:0004224 ! muscular coat of vas deferens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:262022 ! -property_value: IAO:0000589 "kidney pelvis smooth muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004227 ! kidney pelvis smooth muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67990 ! -property_value: IAO:0000589 "urinary bladder neck smooth muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004230 ! urinary bladder neck smooth muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:262026 ! -property_value: IAO:0000589 "lymphatic vessel smooth muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004232 ! lymphatic vessel smooth muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312338 ! -property_value: IAO:0000589 "iris smooth muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004234 ! iris smooth muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312251 ! -property_value: IAO:0000589 "arteriole smooth muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004236 ! arteriole smooth muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74245 ! -property_value: IAO:0000589 "prostate gland smooth muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004243 ! prostate gland smooth muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22470 ! -property_value: IAO:0000589 "hindlimb stylopod muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004252 ! hindlimb stylopod muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37371 ! -property_value: IAO:0000589 "forelimb zeugopod muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004254 ! forelimb zeugopod muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37370 ! -property_value: IAO:0000589 "forelimb stylopod muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004255 ! forelimb stylopod muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22471 ! -property_value: IAO:0000589 "hindlimb zeugopod muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004256 ! hindlimb zeugopod muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37790 ! -property_value: IAO:0000589 "upper leg skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0004262 ! upper leg skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37721 ! -property_value: IAO:0000589 "upper arm skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0004263 ! upper arm skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242815 ! -property_value: IAO:0000589 "lateral ventricle choroid plexus epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004274 ! lateral ventricle choroid plexus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242821 ! -property_value: IAO:0000589 "third ventricle choroid plexus epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004275 ! third ventricle choroid plexus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242823 ! -property_value: IAO:0000589 "fourth ventricle choroid plexus epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004276 ! fourth ventricle choroid plexus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23875 ! -property_value: IAO:0000589 "skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0004288 ! skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295654 ! -property_value: IAO:0000589 "dermomyotome (post-embryonic human)" xsd:string -intersection_of: UBERON:0004290 ! dermomyotome -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9496 ! -property_value: IAO:0000589 "cardiac skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0004292 ! cardiac skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23946 ! -property_value: IAO:0000589 "distal phalanx of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004311 ! distal phalanx of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23947 ! -property_value: IAO:0000589 "distal phalanx of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004312 ! distal phalanx of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23948 ! -property_value: IAO:0000589 "distal phalanx of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004313 ! distal phalanx of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23949 ! -property_value: IAO:0000589 "distal phalanx of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004314 ! distal phalanx of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32627 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004315 ! distal phalanx of pedal digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32628 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004316 ! distal phalanx of pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32629 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004317 ! distal phalanx of pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32630 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004318 ! distal phalanx of pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32631 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004319 ! distal phalanx of pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23933 ! -property_value: IAO:0000589 "middle phalanx of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004320 ! middle phalanx of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23934 ! -property_value: IAO:0000589 "middle phalanx of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004321 ! middle phalanx of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23935 ! -property_value: IAO:0000589 "middle phalanx of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004322 ! middle phalanx of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23936 ! -property_value: IAO:0000589 "middle phalanx of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004323 ! middle phalanx of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32623 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004324 ! middle phalanx of pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32624 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004325 ! middle phalanx of pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32625 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004326 ! middle phalanx of pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:230984 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004327 ! middle phalanx of pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23919 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004328 ! proximal phalanx of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23920 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004329 ! proximal phalanx of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23921 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004330 ! proximal phalanx of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23922 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004331 ! proximal phalanx of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43252 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004332 ! proximal phalanx of pedal digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32618 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004333 ! proximal phalanx of pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32619 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004334 ! proximal phalanx of pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32620 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004335 ! proximal phalanx of pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32621 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004336 ! proximal phalanx of pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23945 ! -property_value: IAO:0000589 "distal phalanx of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004337 ! distal phalanx of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23918 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004338 ! proximal phalanx of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52800 ! -property_value: IAO:0000589 "vault of skull (post-embryonic human)" xsd:string -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293110 ! -property_value: IAO:0000589 "primitive streak (post-embryonic human)" xsd:string -intersection_of: UBERON:0004341 ! primitive streak -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296780 ! -property_value: IAO:0000589 "limb bud (post-embryonic human)" xsd:string -intersection_of: UBERON:0004347 ! limb bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18259 ! -property_value: IAO:0000589 "caput epididymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004358 ! caput epididymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18260 ! -property_value: IAO:0000589 "corpus epididymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004359 ! corpus epididymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18261 ! -property_value: IAO:0000589 "cauda epididymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004360 ! cauda epididymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72308 ! -property_value: IAO:0000589 "stylohyoid ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0004361 ! stylohyoid ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293019 ! -property_value: IAO:0000589 "pharyngeal arch 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58309 ! -property_value: IAO:0000589 "Descemet's membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0004367 ! Descemet's membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295800 ! -property_value: IAO:0000589 "Reichert's cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0004368 ! Reichert's cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276826 ! -property_value: IAO:0000589 "Reichert's membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0004369 ! Reichert's membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58273 ! -property_value: IAO:0000589 "anterior limiting lamina of cornea (post-embryonic human)" xsd:string -intersection_of: UBERON:0004370 ! anterior limiting lamina of cornea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32824 ! -property_value: IAO:0000589 "distal metaphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004377 ! distal metaphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32823 ! -property_value: IAO:0000589 "proximal metaphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004378 ! proximal metaphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32822 ! -property_value: IAO:0000589 "distal epiphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004379 ! distal epiphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32821 ! -property_value: IAO:0000589 "proximal epiphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004380 ! proximal epiphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32825 ! -property_value: IAO:0000589 "epiphysis of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004382 ! epiphysis of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33112 ! -property_value: IAO:0000589 "epiphysis of tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0004383 ! epiphysis of tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32838 ! -property_value: IAO:0000589 "epiphysis of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0004384 ! epiphysis of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33770 ! -property_value: IAO:0000589 "epiphysis of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0004385 ! epiphysis of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33748 ! -property_value: IAO:0000589 "epiphysis of ulna (post-embryonic human)" xsd:string -intersection_of: UBERON:0004386 ! epiphysis of ulna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:240707 ! -property_value: IAO:0000589 "epiphysis of phalanx of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004387 ! epiphysis of phalanx of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33726 ! -property_value: IAO:0000589 "epiphysis of fibula (post-embryonic human)" xsd:string -intersection_of: UBERON:0004388 ! epiphysis of fibula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33814 ! -property_value: IAO:0000589 "epiphysis of metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004389 ! epiphysis of metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33792 ! -property_value: IAO:0000589 "epiphysis of metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004390 ! epiphysis of metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33793 ! -property_value: IAO:0000589 "epiphysis of first metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004391 ! epiphysis of first metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33794 ! -property_value: IAO:0000589 "epiphysis of second metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004392 ! epiphysis of second metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86328 ! -property_value: IAO:0000589 "epiphysis of third metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004393 ! epiphysis of third metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86329 ! -property_value: IAO:0000589 "epiphysis of fourth metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004394 ! epiphysis of fourth metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33815 ! -property_value: IAO:0000589 "epiphysis of first metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004395 ! epiphysis of first metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33816 ! -property_value: IAO:0000589 "epiphysis of second metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004396 ! epiphysis of second metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86313 ! -property_value: IAO:0000589 "epiphysis of third metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004397 ! epiphysis of third metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86314 ! -property_value: IAO:0000589 "epiphysis of fourth metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004398 ! epiphysis of fourth metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86315 ! -property_value: IAO:0000589 "epiphysis of fifth metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004399 ! epiphysis of fifth metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:241364 ! -property_value: IAO:0000589 "bone tissue of epiphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004400 ! bone tissue of epiphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:241374 ! -property_value: IAO:0000589 "bone tissue of distal epiphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004401 ! bone tissue of distal epiphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:241372 ! -property_value: IAO:0000589 "bone tissue of proximal epiphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004402 ! bone tissue of proximal epiphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32687 ! -property_value: IAO:0000589 "periosteum of epiphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004403 ! periosteum of epiphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32826 ! -property_value: IAO:0000589 "distal epiphysis of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004404 ! distal epiphysis of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33116 ! -property_value: IAO:0000589 "distal epiphysis of tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0004405 ! distal epiphysis of tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32844 ! -property_value: IAO:0000589 "distal epiphysis of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0004406 ! distal epiphysis of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33776 ! -property_value: IAO:0000589 "distal epiphysis of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0004407 ! distal epiphysis of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33754 ! -property_value: IAO:0000589 "distal epiphysis of ulna (post-embryonic human)" xsd:string -intersection_of: UBERON:0004408 ! distal epiphysis of ulna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:226577 ! -property_value: IAO:0000589 "distal epiphysis of phalanx of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004409 ! distal epiphysis of phalanx of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33732 ! -property_value: IAO:0000589 "distal epiphysis of fibula (post-embryonic human)" xsd:string -intersection_of: UBERON:0004410 ! distal epiphysis of fibula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23362 ! -property_value: IAO:0000589 "proximal epiphysis of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004411 ! proximal epiphysis of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32841 ! -property_value: IAO:0000589 "proximal epiphysis of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0004412 ! proximal epiphysis of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:39780 ! -property_value: IAO:0000589 "proximal epiphysis of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0004413 ! proximal epiphysis of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:226482 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004414 ! proximal epiphysis of phalanx of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33817 ! -property_value: IAO:0000589 "proximal epiphysis of metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004415 ! proximal epiphysis of metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33795 ! -property_value: IAO:0000589 "proximal epiphysis of metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004416 ! proximal epiphysis of metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37489 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004417 ! proximal epiphysis of phalanx of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37498 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004418 ! proximal epiphysis of phalanx of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37510 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004419 ! proximal epiphysis of phalanx of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37522 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004420 ! proximal epiphysis of phalanx of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37534 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004421 ! proximal epiphysis of phalanx of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42788 ! -property_value: IAO:0000589 "proximal epiphysis of first metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004422 ! proximal epiphysis of first metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42791 ! -property_value: IAO:0000589 "proximal epiphysis of second metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004423 ! proximal epiphysis of second metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42794 ! -property_value: IAO:0000589 "proximal epiphysis of third metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004424 ! proximal epiphysis of third metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42797 ! -property_value: IAO:0000589 "proximal epiphysis of fourth metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004425 ! proximal epiphysis of fourth metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42800 ! -property_value: IAO:0000589 "proximal epiphysis of fifth metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004426 ! proximal epiphysis of fifth metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42963 ! -property_value: IAO:0000589 "proximal epiphysis of first metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004427 ! proximal epiphysis of first metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42964 ! -property_value: IAO:0000589 "proximal epiphysis of second metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004428 ! proximal epiphysis of second metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42965 ! -property_value: IAO:0000589 "proximal epiphysis of third metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004429 ! proximal epiphysis of third metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42966 ! -property_value: IAO:0000589 "proximal epiphysis of fourth metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004430 ! proximal epiphysis of fourth metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42967 ! -property_value: IAO:0000589 "proximal epiphysis of fifth metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004431 ! proximal epiphysis of fifth metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37505 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004432 ! proximal epiphysis of distal phalanx of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37517 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004433 ! proximal epiphysis of distal phalanx of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37529 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004434 ! proximal epiphysis of distal phalanx of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37541 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004435 ! proximal epiphysis of distal phalanx of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37502 ! -property_value: IAO:0000589 "proximal epiphysis of middle phalanx of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004436 ! proximal epiphysis of middle phalanx of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37514 ! -property_value: IAO:0000589 "proximal epiphysis of middle phalanx of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004437 ! proximal epiphysis of middle phalanx of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37526 ! -property_value: IAO:0000589 "proximal epiphysis of middle phalanx of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004438 ! proximal epiphysis of middle phalanx of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37538 ! -property_value: IAO:0000589 "proximal epiphysis of middle phalanx of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004439 ! proximal epiphysis of middle phalanx of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37499 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004440 ! proximal epiphysis of proximal phalanx of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37511 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004441 ! proximal epiphysis of proximal phalanx of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37523 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004442 ! proximal epiphysis of proximal phalanx of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37535 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004443 ! proximal epiphysis of proximal phalanx of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37493 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004444 ! proximal epiphysis of distal phalanx of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37490 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004445 ! proximal epiphysis of proximal phalanx of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24922 ! -property_value: IAO:0000589 "carpal region (post-embryonic human)" xsd:string -intersection_of: UBERON:0004452 ! carpal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24925 ! -property_value: IAO:0000589 "metacarpus region (post-embryonic human)" xsd:string -intersection_of: UBERON:0004453 ! metacarpus region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9665 ! -property_value: IAO:0000589 "tarsal region (post-embryonic human)" xsd:string -intersection_of: UBERON:0004454 ! tarsal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78499 ! -property_value: IAO:0000589 "entire sense organ system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004456 ! entire sense organ system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71287 ! -property_value: IAO:0000589 "skeletal musculature of head (post-embryonic human)" xsd:string -intersection_of: UBERON:0004461 ! skeletal musculature of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86931 ! -property_value: IAO:0000589 "musculature of body wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0004462 ! musculature of body wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50208 ! -property_value: IAO:0000589 "musculature of hindlimb stylopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0004463 ! musculature of hindlimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71293 ! -property_value: IAO:0000589 "musculature of thorax (post-embryonic human)" xsd:string -intersection_of: UBERON:0004464 ! musculature of thorax -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71290 ! -property_value: IAO:0000589 "musculature of neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0004465 ! musculature of neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264609 ! -property_value: IAO:0000589 "musculature of pharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0004467 ! musculature of pharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33061 ! -property_value: IAO:0000589 "set of muscles of vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0004468 ! set of muscles of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71291 ! -property_value: IAO:0000589 "musculature of back (post-embryonic human)" xsd:string -intersection_of: UBERON:0004469 ! musculature of back -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50205 ! -property_value: IAO:0000589 "musculature of pelvic girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004470 ! musculature of pelvic girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50248 ! -property_value: IAO:0000589 "musculature of pelvic girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004470 ! musculature of pelvic girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33519 ! -property_value: IAO:0000589 "musculature of pectoral girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004471 ! musculature of pectoral girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71288 ! -property_value: IAO:0000589 "musculature of face (post-embryonic human)" xsd:string -intersection_of: UBERON:0004473 ! musculature of face -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50227 ! -property_value: IAO:0000589 "musculature of hip (post-embryonic human)" xsd:string -intersection_of: UBERON:0004475 ! musculature of hip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50220 ! -property_value: IAO:0000589 "musculature of shoulder (post-embryonic human)" xsd:string -intersection_of: UBERON:0004476 ! musculature of shoulder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264611 ! -property_value: IAO:0000589 "musculature of larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0004478 ! musculature of larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46616 ! -property_value: IAO:0000589 "musculature of larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0004478 ! musculature of larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50187 ! -property_value: IAO:0000589 "musculature of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0004479 ! musculature of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50188 ! -property_value: IAO:0000589 "musculature of limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0004480 ! musculature of limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50396 ! -property_value: IAO:0000589 "musculature of upper limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0004481 ! musculature of upper limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50399 ! -property_value: IAO:0000589 "musculature of lower limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0004482 ! musculature of lower limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71295 ! -property_value: IAO:0000589 "musculature of perineum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004486 ! musculature of perineum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:39089 ! -property_value: IAO:0000589 "musculature of forelimb zeugopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0004487 ! musculature of forelimb zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50214 ! -property_value: IAO:0000589 "musculature of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0004488 ! musculature of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42368 ! -property_value: IAO:0000589 "musculature of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004489 ! musculature of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7283 ! -property_value: IAO:0000589 "cardiac muscle tissue of atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004490 ! cardiac muscle tissue of atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84083 ! -property_value: IAO:0000589 "cardiac muscle tissue of interatrial septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004491 ! cardiac muscle tissue of interatrial septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:226279 ! -property_value: IAO:0000589 "cardiac muscle tissue of cardiac septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004492 ! cardiac muscle tissue of cardiac septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261726 ! -property_value: IAO:0000589 "cardiac muscle tissue of myocardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004493 ! cardiac muscle tissue of myocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84425 ! -property_value: IAO:0000589 "cardiac muscle tissue of papillary muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004494 ! cardiac muscle tissue of papillary muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261898 ! -property_value: IAO:0000589 "skeletal muscle tissue of diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0004495 ! skeletal muscle tissue of diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261992 ! -property_value: IAO:0000589 "skeletal muscle tissue of iliacus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004496 ! skeletal muscle tissue of iliacus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261980 ! -property_value: IAO:0000589 "skeletal muscle tissue of gluteus maximus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004497 ! skeletal muscle tissue of gluteus maximus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261998 ! -property_value: IAO:0000589 "skeletal muscle tissue of quadriceps femoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0004498 ! skeletal muscle tissue of quadriceps femoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:262004 ! -property_value: IAO:0000589 "skeletal muscle tissue of tibialis anterior (post-embryonic human)" xsd:string -intersection_of: UBERON:0004499 ! skeletal muscle tissue of tibialis anterior -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261732 ! -property_value: IAO:0000589 "skeletal muscle tissue of deltoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0004500 ! skeletal muscle tissue of deltoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261962 ! -property_value: IAO:0000589 "skeletal muscle tissue of teres major (post-embryonic human)" xsd:string -intersection_of: UBERON:0004501 ! skeletal muscle tissue of teres major -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261974 ! -property_value: IAO:0000589 "skeletal muscle tissue of biceps brachii (post-embryonic human)" xsd:string -intersection_of: UBERON:0004502 ! skeletal muscle tissue of biceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261872 ! -property_value: IAO:0000589 "skeletal muscle tissue of digastric (post-embryonic human)" xsd:string -intersection_of: UBERON:0004503 ! skeletal muscle tissue of digastric -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261878 ! -property_value: IAO:0000589 "skeletal muscle tissue of mylohyoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0004504 ! skeletal muscle tissue of mylohyoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261812 ! -property_value: IAO:0000589 "skeletal muscle tissue of orbicularis oculi (post-embryonic human)" xsd:string -intersection_of: UBERON:0004505 ! skeletal muscle tissue of orbicularis oculi -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261824 ! -property_value: IAO:0000589 "skeletal muscle tissue of masseter (post-embryonic human)" xsd:string -intersection_of: UBERON:0004506 ! skeletal muscle tissue of masseter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261740 ! -property_value: IAO:0000589 "skeletal muscle tissue of temporalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004507 ! skeletal muscle tissue of temporalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261782 ! -property_value: IAO:0000589 "skeletal muscle tissue of levator palpebrae superioris (post-embryonic human)" xsd:string -intersection_of: UBERON:0004508 ! skeletal muscle tissue of levator palpebrae superioris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261938 ! -property_value: IAO:0000589 "skeletal muscle tissue of trapezius (post-embryonic human)" xsd:string -intersection_of: UBERON:0004509 ! skeletal muscle tissue of trapezius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261968 ! -property_value: IAO:0000589 "skeletal muscle tissue of pectoralis major (post-embryonic human)" xsd:string -intersection_of: UBERON:0004510 ! skeletal muscle tissue of pectoralis major -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261924 ! -property_value: IAO:0000589 "skeletal muscle tissue of rectus abdominis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004511 ! skeletal muscle tissue of rectus abdominis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261956 ! -property_value: IAO:0000589 "skeletal muscle tissue of supraspinatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004512 ! skeletal muscle tissue of supraspinatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261888 ! -property_value: IAO:0000589 "skeletal muscle tissue of internal intercostal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004513 ! skeletal muscle tissue of internal intercostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261892 ! -property_value: IAO:0000589 "skeletal muscle tissue of transversus thoracis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004514 ! skeletal muscle tissue of transversus thoracis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261045 ! -property_value: IAO:0000589 "smooth muscle tissue of bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0004515 ! smooth muscle tissue of bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261051 ! -property_value: IAO:0000589 "smooth muscle tissue of terminal bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0004516 ! smooth muscle tissue of terminal bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261055 ! -property_value: IAO:0000589 "smooth muscle tissue of respiratory bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0004517 ! smooth muscle tissue of respiratory bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22594 ! -property_value: IAO:0000589 "muscle of vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0004518 ! muscle of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77304 ! -property_value: IAO:0000589 "muscle of anal triangle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004519 ! muscle of anal triangle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45716 ! -property_value: IAO:0000589 "striated muscle tissue of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0004520 ! striated muscle tissue of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87123 ! -property_value: IAO:0000589 "vasculature of muscle organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0004521 ! vasculature of muscle organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:239607 ! -property_value: IAO:0000589 "vasculature of musculoskeletal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004522 ! vasculature of musculoskeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7259 ! -property_value: IAO:0000589 "papillary muscle of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004523 ! papillary muscle of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9352 ! -property_value: IAO:0000589 "papillary muscle of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004524 ! papillary muscle of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84429 ! -property_value: IAO:0000589 "cardiac muscle tissue of trabecula carnea of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004525 ! cardiac muscle tissue of trabecula carnea of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84430 ! -property_value: IAO:0000589 "cardiac muscle tissue of trabecula carnea of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004526 ! cardiac muscle tissue of trabecula carnea of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52897 ! -property_value: IAO:0000589 "alveolar process of maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0004527 ! alveolar process of maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52832 ! -property_value: IAO:0000589 "alveolar ridge of mandible (post-embryonic human)" xsd:string -intersection_of: UBERON:0004528 ! alveolar ridge of mandible -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67601 ! -property_value: IAO:0000589 "anatomical projection (post-embryonic human)" xsd:string -intersection_of: UBERON:0004529 ! anatomical projection -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75433 ! -property_value: IAO:0000589 "bony projection (post-embryonic human)" xsd:string -intersection_of: UBERON:0004530 ! bony projection -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7212 ! -property_value: IAO:0000589 "left testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004533 ! left testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7211 ! -property_value: IAO:0000589 "right testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004534 ! right testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7161 ! -property_value: IAO:0000589 "cardiovascular system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63815 ! -property_value: IAO:0000589 "lymph vasculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0004536 ! lymph vasculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7205 ! -property_value: IAO:0000589 "left kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0004538 ! left kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7204 ! -property_value: IAO:0000589 "right kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0004539 ! right kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71564 ! -property_value: IAO:0000589 "proper plantar digital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0004540 ! proper plantar digital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19153 ! -property_value: IAO:0000589 "epididymis epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004544 ! epididymis epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61959 ! -property_value: IAO:0000589 "external capsule of telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004545 ! external capsule of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52890 ! -property_value: IAO:0000589 "cribriform plate (post-embryonic human)" xsd:string -intersection_of: UBERON:0004546 ! cribriform plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86478 ! -property_value: IAO:0000589 "decidua capsularis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004547 ! decidua capsularis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12515 ! -property_value: IAO:0000589 "left eye (post-embryonic human)" xsd:string -intersection_of: UBERON:0004548 ! left eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12514 ! -property_value: IAO:0000589 "right eye (post-embryonic human)" xsd:string -intersection_of: UBERON:0004549 ! right eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14915 ! -property_value: IAO:0000589 "gastroesophageal sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0004550 ! gastroesophageal sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69713 ! -property_value: IAO:0000589 "hindlimb digital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0004554 ! hindlimb digital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22926 ! -property_value: IAO:0000589 "proper palmar digital vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0004561 ! proper palmar digital vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45623 ! -property_value: IAO:0000589 "systemic arterial system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004571 ! systemic arterial system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66464 ! -property_value: IAO:0000589 "systemic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0004573 ! systemic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45626 ! -property_value: IAO:0000589 "systemic venous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004581 ! systemic venous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75004 ! -property_value: IAO:0000589 "sphincter muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004590 ! sphincter muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7597 ! -property_value: IAO:0000589 "rib 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004601 ! rib 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7620 ! -property_value: IAO:0000589 "rib 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004602 ! rib 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7638 ! -property_value: IAO:0000589 "rib 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004603 ! rib 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7749 ! -property_value: IAO:0000589 "rib 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004604 ! rib 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7776 ! -property_value: IAO:0000589 "rib 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004605 ! rib 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:8147 ! -property_value: IAO:0000589 "rib 6 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004606 ! rib 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7830 ! -property_value: IAO:0000589 "rib 7 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004607 ! rib 7 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:8337 ! -property_value: IAO:0000589 "rib 9 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004608 ! rib 9 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:8418 ! -property_value: IAO:0000589 "rib 10 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004609 ! rib 10 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:8499 ! -property_value: IAO:0000589 "rib 11 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004610 ! rib 11 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:8515 ! -property_value: IAO:0000589 "rib 12 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004611 ! rib 12 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12521 ! -property_value: IAO:0000589 "mammalian cervical vertebra 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004612 ! mammalian cervical vertebra 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12522 ! -property_value: IAO:0000589 "mammalian cervical vertebra 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004613 ! mammalian cervical vertebra 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12523 ! -property_value: IAO:0000589 "mammalian cervical vertebra 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004614 ! mammalian cervical vertebra 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12524 ! -property_value: IAO:0000589 "mammalian cervical vertebra 6 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004615 ! mammalian cervical vertebra 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12525 ! -property_value: IAO:0000589 "mammalian cervical vertebra 7 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004616 ! mammalian cervical vertebra 7 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13072 ! -property_value: IAO:0000589 "lumbar vertebra 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004617 ! lumbar vertebra 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13073 ! -property_value: IAO:0000589 "lumbar vertebra 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004618 ! lumbar vertebra 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13074 ! -property_value: IAO:0000589 "lumbar vertebra 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004619 ! lumbar vertebra 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13075 ! -property_value: IAO:0000589 "lumbar vertebra 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004620 ! lumbar vertebra 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13076 ! -property_value: IAO:0000589 "lumbar vertebra 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004621 ! lumbar vertebra 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13077 ! -property_value: IAO:0000589 "sacral vertebra 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004622 ! sacral vertebra 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13078 ! -property_value: IAO:0000589 "sacral vertebra 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004623 ! sacral vertebra 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13079 ! -property_value: IAO:0000589 "sacral vertebra 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004624 ! sacral vertebra 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13080 ! -property_value: IAO:0000589 "sacral vertebra 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004625 ! sacral vertebra 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9165 ! -property_value: IAO:0000589 "thoracic vertebra 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004626 ! thoracic vertebra 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9187 ! -property_value: IAO:0000589 "thoracic vertebra 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004627 ! thoracic vertebra 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9209 ! -property_value: IAO:0000589 "thoracic vertebra 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004628 ! thoracic vertebra 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9248 ! -property_value: IAO:0000589 "thoracic vertebra 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004629 ! thoracic vertebra 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9922 ! -property_value: IAO:0000589 "thoracic vertebra 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004630 ! thoracic vertebra 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9945 ! -property_value: IAO:0000589 "thoracic vertebra 6 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004631 ! thoracic vertebra 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9968 ! -property_value: IAO:0000589 "thoracic vertebra 7 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004632 ! thoracic vertebra 7 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10014 ! -property_value: IAO:0000589 "thoracic vertebra 9 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004633 ! thoracic vertebra 9 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10037 ! -property_value: IAO:0000589 "thoracic vertebra 10 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004634 ! thoracic vertebra 10 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10059 ! -property_value: IAO:0000589 "thoracic vertebra 11 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004635 ! thoracic vertebra 11 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10081 ! -property_value: IAO:0000589 "thoracic vertebra 12 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004636 ! thoracic vertebra 12 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77042 ! -property_value: IAO:0000589 "renal afferent arteriole (post-embryonic human)" xsd:string -intersection_of: UBERON:0004639 ! renal afferent arteriole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77043 ! -property_value: IAO:0000589 "renal efferent arteriole (post-embryonic human)" xsd:string -intersection_of: UBERON:0004640 ! renal efferent arteriole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15849 ! -property_value: IAO:0000589 "spleen capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0004641 ! spleen capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242833 ! -property_value: IAO:0000589 "third ventricle ependyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0004642 ! third ventricle ependyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242825 ! -property_value: IAO:0000589 "lateral ventricle ependyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0004643 ! lateral ventricle ependyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242835 ! -property_value: IAO:0000589 "fourth ventricle ependyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0004644 ! fourth ventricle ependyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15936 ! -property_value: IAO:0000589 "urinary bladder urothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004645 ! urinary bladder urothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49767 ! -property_value: IAO:0000589 "infraorbital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0004646 ! infraorbital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14471 ! -property_value: IAO:0000589 "liver lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0004647 ! liver lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63059 ! -property_value: IAO:0000589 "esophagus muscularis mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0004648 ! esophagus muscularis mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54682 ! -property_value: IAO:0000589 "sphenoid bone pterygoid process (post-embryonic human)" xsd:string -intersection_of: UBERON:0004649 ! sphenoid bone pterygoid process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74865 ! -property_value: IAO:0000589 "tongue keratinized epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004650 ! tongue keratinized epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13453 ! -property_value: IAO:0000589 "scapula spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0004651 ! scapula spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13305 ! -property_value: IAO:0000589 "humerus diaphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004652 ! humerus diaphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52904 ! -property_value: IAO:0000589 "temporal process of zygomatic bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004654 ! temporal process of zygomatic bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52886 ! -property_value: IAO:0000589 "zygomatic process of temporal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0004655 ! zygomatic process of temporal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52836 ! -property_value: IAO:0000589 "mandible condylar process (post-embryonic human)" xsd:string -intersection_of: UBERON:0004657 ! mandible condylar process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59331 ! -property_value: IAO:0000589 "mandible head (post-embryonic human)" xsd:string -intersection_of: UBERON:0004658 ! mandible head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59332 ! -property_value: IAO:0000589 "mandible neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0004659 ! mandible neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52833 ! -property_value: IAO:0000589 "mandible coronoid process (post-embryonic human)" xsd:string -intersection_of: UBERON:0004660 ! mandible coronoid process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59484 ! -property_value: IAO:0000589 "mandible temporal crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0004661 ! mandible temporal crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11951 ! -property_value: IAO:0000589 "vertebra lamina (post-embryonic human)" xsd:string -intersection_of: UBERON:0004662 ! vertebra lamina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14156 ! -property_value: IAO:0000589 "aorta wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0004663 ! aorta wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14283 ! -property_value: IAO:0000589 "aorta tunica adventitia (post-embryonic human)" xsd:string -intersection_of: UBERON:0004664 ! aorta tunica adventitia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19404 ! -property_value: IAO:0000589 "muscular coat of seminal vesicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004665 ! muscular coat of seminal vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7135 ! -property_value: IAO:0000589 "interventricular septum membranous part (post-embryonic human)" xsd:string -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7134 ! -property_value: IAO:0000589 "interventricular septum muscular part (post-embryonic human)" xsd:string -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242766 ! -property_value: IAO:0000589 "fourth ventricle aperture (post-embryonic human)" xsd:string -intersection_of: UBERON:0004668 ! fourth ventricle aperture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242791 ! -property_value: IAO:0000589 "ependyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0004670 ! ependyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61893 ! -property_value: IAO:0000589 "gyrus rectus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004671 ! gyrus rectus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83700 ! -property_value: IAO:0000589 "posterior horn lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004672 ! posterior horn lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52610 ! -property_value: IAO:0000589 "trigeminal nerve root (post-embryonic human)" xsd:string -intersection_of: UBERON:0004673 ! trigeminal nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53418 ! -property_value: IAO:0000589 "facial nerve root (post-embryonic human)" xsd:string -intersection_of: UBERON:0004674 ! facial nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72632 ! -property_value: IAO:0000589 "hypoglossal nerve root (post-embryonic human)" xsd:string -intersection_of: UBERON:0004675 ! hypoglossal nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256536 ! -property_value: IAO:0000589 "spinal cord lateral horn (post-embryonic human)" xsd:string -intersection_of: UBERON:0004676 ! spinal cord lateral horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68871 ! -property_value: IAO:0000589 "spinal cord gray commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0004677 ! spinal cord gray commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77036 ! -property_value: IAO:0000589 "spinal cord gray commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0004677 ! spinal cord gray commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256700 ! -property_value: IAO:0000589 "apex of spinal cord dorsal horn (post-embryonic human)" xsd:string -intersection_of: UBERON:0004678 ! apex of spinal cord dorsal horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83677 ! -property_value: IAO:0000589 "dentate gyrus molecular layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0004679 ! dentate gyrus molecular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61968 ! -property_value: IAO:0000589 "body of fornix (post-embryonic human)" xsd:string -intersection_of: UBERON:0004680 ! body of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7193 ! -property_value: IAO:0000589 "vestibular system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004681 ! vestibular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18661 ! -property_value: IAO:0000589 "corona radiata of neuraxis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004682 ! corona radiata of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77604 ! -property_value: IAO:0000589 "parasubiculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004683 ! parasubiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84017 ! -property_value: IAO:0000589 "raphe nuclei (post-embryonic human)" xsd:string -intersection_of: UBERON:0004684 ! raphe nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16517 ! -property_value: IAO:0000589 "gastro-splenic ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16522 ! -property_value: IAO:0000589 "lieno-renal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10636 ! -property_value: IAO:0000589 "costo-cervical trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0004688 ! costo-cervical trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51729 ! -property_value: IAO:0000589 "naso-frontal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0004689 ! naso-frontal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15398 ! -property_value: IAO:0000589 "pancreaticoduodenal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0004690 ! pancreaticoduodenal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62968 ! -property_value: IAO:0000589 "bulbourethral gland secretion (post-embryonic human)" xsd:string -intersection_of: UBERON:0004691 ! bulbourethral gland secretion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62007 ! -property_value: IAO:0000589 "dorsal thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45791 ! -property_value: IAO:0000589 "bone fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0004704 ! bone fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70300 ! -property_value: IAO:0000589 "bulbus cordis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004706 ! bulbus cordis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19618 ! -property_value: IAO:0000589 "corpus cavernosum penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004713 ! corpus cavernosum penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61844 ! -property_value: IAO:0000589 "septum pellucidum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004714 ! septum pellucidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13551 ! -property_value: IAO:0000589 "annulus fibrosus disci intervertebralis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004715 ! annulus fibrosus disci intervertebralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68626 ! -property_value: IAO:0000589 "Brodmann (1909) area 29 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004717 ! Brodmann (1909) area 29 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68623 ! -property_value: IAO:0000589 "Brodmann (1909) area 26 (post-embryonic human)" xsd:string -intersection_of: UBERON:0004718 ! Brodmann (1909) area 26 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272193 ! -property_value: IAO:0000589 "kidney arcuate vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0004719 ! kidney arcuate vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321527 ! -property_value: IAO:0000589 "kidney arcuate vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0004719 ! kidney arcuate vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76928 ! -property_value: IAO:0000589 "cerebellar vermis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004720 ! cerebellar vermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77714 ! -property_value: IAO:0000589 "crista ampullaris (post-embryonic human)" xsd:string -intersection_of: UBERON:0004721 ! crista ampullaris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70498 ! -property_value: IAO:0000589 "interlobular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0004723 ! interlobular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72006 ! -property_value: IAO:0000589 "vasa recta (post-embryonic human)" xsd:string -intersection_of: UBERON:0004726 ! vasa recta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53431 ! -property_value: IAO:0000589 "cochlear nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0004727 ! cochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61998 ! -property_value: IAO:0000589 "segmental subdivision of hindbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0004733 ! segmental subdivision of hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293108 ! -property_value: IAO:0000589 "gastrula (post-embryonic human)" xsd:string -intersection_of: UBERON:0004734 ! gastrula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86043 ! -property_value: IAO:0000589 "foramen ovale of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15720 ! -property_value: IAO:0000589 "gland of anal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0004760 ! gland of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15724 ! -property_value: IAO:0000589 "gland of anal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0004760 ! gland of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76621 ! -property_value: IAO:0000589 "cartilaginous neurocranium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004761 ! cartilaginous neurocranium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24013 ! -property_value: IAO:0000589 "diaphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004769 ! diaphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23878 ! -property_value: IAO:0000589 "articular system (post-embryonic human)" xsd:string -intersection_of: UBERON:0004770 ! articular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53143 ! -property_value: IAO:0000589 "posterior nasal aperture (post-embryonic human)" xsd:string -intersection_of: UBERON:0004771 ! posterior nasal aperture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59086 ! -property_value: IAO:0000589 "eyelid tarsus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004772 ! eyelid tarsus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59087 ! -property_value: IAO:0000589 "superior eyelid tarsus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004773 ! superior eyelid tarsus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59088 ! -property_value: IAO:0000589 "inferior eyelid tarsus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004774 ! inferior eyelid tarsus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321584 ! -property_value: IAO:0000589 "larynx submucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0004778 ! larynx submucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278594 ! -property_value: IAO:0000589 "gallbladder lamina propria (post-embryonic human)" xsd:string -intersection_of: UBERON:0004781 ! gallbladder lamina propria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14659 ! -property_value: IAO:0000589 "gallbladder serosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0004783 ! gallbladder serosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13884 ! -property_value: IAO:0000589 "heart ventricle wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0004784 ! heart ventricle wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:302092 ! -property_value: IAO:0000589 "respiratory system mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0004785 ! respiratory system mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263264 ! -property_value: IAO:0000589 "kidney pelvis urothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004788 ! kidney pelvis urothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79662 ! -property_value: IAO:0000589 "esophagus secretion (post-embryonic human)" xsd:string -intersection_of: UBERON:0004794 ! esophagus secretion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66884 ! -property_value: IAO:0000589 "prostate gland secretion (post-embryonic human)" xsd:string -intersection_of: UBERON:0004796 ! prostate gland secretion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:225317 ! -property_value: IAO:0000589 "vas deferens epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004806 ! vas deferens epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19885 ! -property_value: IAO:0000589 "seminiferous tubule epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004813 ! seminiferous tubule epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63915 ! -property_value: IAO:0000589 "pulmonary alveolus epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004821 ! pulmonary alveolus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:306004 ! -property_value: IAO:0000589 "dental lamina (post-embryonic human)" xsd:string -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6262 ! -property_value: IAO:0000589 "thoracic sympathetic nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0004863 ! thoracic sympathetic nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76552 ! -property_value: IAO:0000589 "vasculature of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0004864 ! vasculature of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84961 ! -property_value: IAO:0000589 "orbital cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0004867 ! orbital cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295570 ! -property_value: IAO:0000589 "somatic layer of lateral plate mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0004871 ! somatic layer of lateral plate mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295568 ! -property_value: IAO:0000589 "splanchnic layer of lateral plate mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0004872 ! splanchnic layer of lateral plate mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295564 ! -property_value: IAO:0000589 "splanchnopleure (post-embryonic human)" xsd:string -intersection_of: UBERON:0004873 ! splanchnopleure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295566 ! -property_value: IAO:0000589 "somatopleure (post-embryonic human)" xsd:string -intersection_of: UBERON:0004874 ! somatopleure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72168 ! -property_value: IAO:0000589 "nephrogenic cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0004875 ! nephrogenic cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321919 ! -property_value: IAO:0000589 "urogenital fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0004876 ! urogenital fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77859 ! -property_value: IAO:0000589 "eponychium (post-embryonic human)" xsd:string -intersection_of: UBERON:0004882 ! eponychium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57836 ! -property_value: IAO:0000589 "hilum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004885 ! hilum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7330 ! -property_value: IAO:0000589 "lung hilus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004886 ! lung hilus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9751 ! -property_value: IAO:0000589 "left lung hilus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7456 ! -property_value: IAO:0000589 "right lung hilus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14117 ! -property_value: IAO:0000589 "alveolar wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0004894 ! alveolar wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49179 ! -property_value: IAO:0000589 "lower digestive tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0004907 ! lower digestive tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49177 ! -property_value: IAO:0000589 "upper digestive tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0004908 ! upper digestive tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15076 ! -property_value: IAO:0000589 "hepatopancreatic ampulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0004913 ! hepatopancreatic ampulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15953 ! -property_value: IAO:0000589 "duodenal papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0004914 ! duodenal papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15077 ! -property_value: IAO:0000589 "sphincter of hepatopancreatic ampulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0004915 ! sphincter of hepatopancreatic ampulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45769 ! -property_value: IAO:0000589 "internal urethral sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0004918 ! internal urethral sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85274 ! -property_value: IAO:0000589 "external urethral sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0004919 ! external urethral sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71131 ! -property_value: IAO:0000589 "subdivision of digestive tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0004921 ! subdivision of digestive tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82485 ! -property_value: IAO:0000589 "organ component layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0004923 ! organ component layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75144 ! -property_value: IAO:0000589 "submucosa of pharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0004924 ! submucosa of pharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55072 ! -property_value: IAO:0000589 "submucosa of laryngopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0004925 ! submucosa of laryngopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18013 ! -property_value: IAO:0000589 "submucosa of cystic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0004926 ! submucosa of cystic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14999 ! -property_value: IAO:0000589 "submucosa of cecum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004927 ! submucosa of cecum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14992 ! -property_value: IAO:0000589 "submucosa of appendix (post-embryonic human)" xsd:string -intersection_of: UBERON:0004928 ! submucosa of appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15006 ! -property_value: IAO:0000589 "submucosa of ascending colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004929 ! submucosa of ascending colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15013 ! -property_value: IAO:0000589 "submucosa of transverse colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004930 ! submucosa of transverse colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15020 ! -property_value: IAO:0000589 "submucosa of descending colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004931 ! submucosa of descending colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15027 ! -property_value: IAO:0000589 "submucosa of sigmoid colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004932 ! submucosa of sigmoid colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17058 ! -property_value: IAO:0000589 "submucosa of fundus of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0004933 ! submucosa of fundus of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17059 ! -property_value: IAO:0000589 "submucosa of body of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0004934 ! submucosa of body of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17457 ! -property_value: IAO:0000589 "submucosa of cardia of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0004935 ! submucosa of cardia of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17060 ! -property_value: IAO:0000589 "submucosa of pyloric antrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004936 ! submucosa of pyloric antrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17462 ! -property_value: IAO:0000589 "submucosa of pylorus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004937 ! submucosa of pylorus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18009 ! -property_value: IAO:0000589 "submucosa of biliary tree (post-embryonic human)" xsd:string -intersection_of: UBERON:0004938 ! submucosa of biliary tree -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18011 ! -property_value: IAO:0000589 "submucosa of common bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0004939 ! submucosa of common bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18014 ! -property_value: IAO:0000589 "submucosa of common hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0004940 ! submucosa of common hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18015 ! -property_value: IAO:0000589 "submucosa of right hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0004941 ! submucosa of right hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18017 ! -property_value: IAO:0000589 "submucosa of left hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0004942 ! submucosa of left hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15929 ! -property_value: IAO:0000589 "submucosa of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0004943 ! submucosa of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17852 ! -property_value: IAO:0000589 "submucosa of trigone of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0004944 ! submucosa of trigone of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17851 ! -property_value: IAO:0000589 "submucosa of neck of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0004945 ! submucosa of neck of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14957 ! -property_value: IAO:0000589 "submucosa of ileum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004946 ! submucosa of ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13139 ! -property_value: IAO:0000589 "submucosa of right main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004947 ! submucosa of right main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13140 ! -property_value: IAO:0000589 "submucosa of left main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004948 ! submucosa of left main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13118 ! -property_value: IAO:0000589 "submucosa of main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004949 ! submucosa of main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62669 ! -property_value: IAO:0000589 "submucosa of lobar bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004950 ! submucosa of lobar bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62670 ! -property_value: IAO:0000589 "submucosa of segmental bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004951 ! submucosa of segmental bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62775 ! -property_value: IAO:0000589 "submucosa of bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0004952 ! submucosa of bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15894 ! -property_value: IAO:0000589 "mucosa of ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0004980 ! mucosa of ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64015 ! -property_value: IAO:0000589 "mucosa of epiglottis (post-embryonic human)" xsd:string -intersection_of: UBERON:0004982 ! mucosa of epiglottis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19975 ! -property_value: IAO:0000589 "mucosa of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0004983 ! mucosa of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19405 ! -property_value: IAO:0000589 "mucosa of seminal vesicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0004984 ! mucosa of seminal vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19373 ! -property_value: IAO:0000589 "mucosa of ejaculatory duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0004985 ! mucosa of ejaculatory duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19240 ! -property_value: IAO:0000589 "mucosa of deferent duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0004986 ! mucosa of deferent duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55030 ! -property_value: IAO:0000589 "mucosa of laryngopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0004987 ! mucosa of laryngopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14690 ! -property_value: IAO:0000589 "mucosa of cystic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0004988 ! mucosa of cystic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14991 ! -property_value: IAO:0000589 "mucosa of appendix (post-embryonic human)" xsd:string -intersection_of: UBERON:0004989 ! mucosa of appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15005 ! -property_value: IAO:0000589 "mucosa of ascending colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004990 ! mucosa of ascending colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15012 ! -property_value: IAO:0000589 "mucosa of transverse colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004991 ! mucosa of transverse colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15019 ! -property_value: IAO:0000589 "mucosa of descending colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004992 ! mucosa of descending colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15026 ! -property_value: IAO:0000589 "mucosa of sigmoid colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0004993 ! mucosa of sigmoid colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17053 ! -property_value: IAO:0000589 "mucosa of fundus of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0004994 ! mucosa of fundus of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17054 ! -property_value: IAO:0000589 "mucosa of body of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0004995 ! mucosa of body of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17456 ! -property_value: IAO:0000589 "mucosa of cardia of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0004996 ! mucosa of cardia of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17055 ! -property_value: IAO:0000589 "mucosa of pyloric antrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0004997 ! mucosa of pyloric antrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17461 ! -property_value: IAO:0000589 "mucosa of pylorus (post-embryonic human)" xsd:string -intersection_of: UBERON:0004998 ! mucosa of pylorus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14695 ! -property_value: IAO:0000589 "mucosa of biliary tree (post-embryonic human)" xsd:string -intersection_of: UBERON:0004999 ! mucosa of biliary tree -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14688 ! -property_value: IAO:0000589 "mucosa of common bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0005000 ! mucosa of common bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14691 ! -property_value: IAO:0000589 "mucosa of common hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0005001 ! mucosa of common hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14692 ! -property_value: IAO:0000589 "mucosa of right hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0005002 ! mucosa of right hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14693 ! -property_value: IAO:0000589 "mucosa of left hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0005003 ! mucosa of left hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17806 ! -property_value: IAO:0000589 "mucosa of right ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0005004 ! mucosa of right ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17807 ! -property_value: IAO:0000589 "mucosa of left ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0005005 ! mucosa of left ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17931 ! -property_value: IAO:0000589 "mucosa of renal pelvis (post-embryonic human)" xsd:string -intersection_of: UBERON:0005006 ! mucosa of renal pelvis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17934 ! -property_value: IAO:0000589 "mucosa of major calyx (post-embryonic human)" xsd:string -intersection_of: UBERON:0005007 ! mucosa of major calyx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17937 ! -property_value: IAO:0000589 "mucosa of minor calyx (post-embryonic human)" xsd:string -intersection_of: UBERON:0005008 ! mucosa of minor calyx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17847 ! -property_value: IAO:0000589 "mucosa of trigone of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0005009 ! mucosa of trigone of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17846 ! -property_value: IAO:0000589 "mucosa of neck of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0005010 ! mucosa of neck of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18452 ! -property_value: IAO:0000589 "mucosa of right uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0005011 ! mucosa of right uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18453 ! -property_value: IAO:0000589 "mucosa of left uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0005012 ! mucosa of left uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:239937 ! -property_value: IAO:0000589 "mucosa of male urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0005013 ! mucosa of male urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:239940 ! -property_value: IAO:0000589 "mucosa of female urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0005014 ! mucosa of female urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77079 ! -property_value: IAO:0000589 "mucosa of prostatic urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0005015 ! mucosa of prostatic urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77085 ! -property_value: IAO:0000589 "mucosa of intermediate urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0005016 ! mucosa of intermediate urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72061 ! -property_value: IAO:0000589 "mucosa of lacrimal sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0005017 ! mucosa of lacrimal sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60113 ! -property_value: IAO:0000589 "mucosa of nasal septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0005018 ! mucosa of nasal septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59765 ! -property_value: IAO:0000589 "mucosa of palate (post-embryonic human)" xsd:string -intersection_of: UBERON:0005019 ! mucosa of palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54807 ! -property_value: IAO:0000589 "mucosa of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0005020 ! mucosa of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59775 ! -property_value: IAO:0000589 "mucosa of sphenoidal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005021 ! mucosa of sphenoidal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54971 ! -property_value: IAO:0000589 "mucosa of nasopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0005022 ! mucosa of nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54933 ! -property_value: IAO:0000589 "mucosa of oropharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0005023 ! mucosa of oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59784 ! -property_value: IAO:0000589 "mucosa of soft palate (post-embryonic human)" xsd:string -intersection_of: UBERON:0005024 ! mucosa of soft palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60030 ! -property_value: IAO:0000589 "mucosa of uvula (post-embryonic human)" xsd:string -intersection_of: UBERON:0005025 ! mucosa of uvula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59663 ! -property_value: IAO:0000589 "mucosa of middle ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0005026 ! mucosa of middle ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59774 ! -property_value: IAO:0000589 "mucosa of frontal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005027 ! mucosa of frontal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59773 ! -property_value: IAO:0000589 "mucosa of maxillary sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005028 ! mucosa of maxillary sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85366 ! -property_value: IAO:0000589 "mucosa of lacrimal canaliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005029 ! mucosa of lacrimal canaliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59772 ! -property_value: IAO:0000589 "mucosa of paranasal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005030 ! mucosa of paranasal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59832 ! -property_value: IAO:0000589 "mucosa of upper lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0005031 ! mucosa of upper lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59833 ! -property_value: IAO:0000589 "mucosa of lower lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0005032 ! mucosa of lower lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14662 ! -property_value: IAO:0000589 "mucosa of gallbladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0005033 ! mucosa of gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13137 ! -property_value: IAO:0000589 "mucosa of right main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005034 ! mucosa of right main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13138 ! -property_value: IAO:0000589 "mucosa of left main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005035 ! mucosa of left main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13115 ! -property_value: IAO:0000589 "mucosa of main bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005036 ! mucosa of main bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62668 ! -property_value: IAO:0000589 "mucosa of lobar bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005037 ! mucosa of lobar bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62666 ! -property_value: IAO:0000589 "mucosa of segmental bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005038 ! mucosa of segmental bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62774 ! -property_value: IAO:0000589 "mucosa of bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0005039 ! mucosa of bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263232 ! -property_value: IAO:0000589 "mucosa of terminal bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0005040 ! mucosa of terminal bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263238 ! -property_value: IAO:0000589 "mucosa of respiratory bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0005041 ! mucosa of respiratory bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56844 ! -property_value: IAO:0000589 "inner epithelial layer of tympanic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0005042 ! inner epithelial layer of tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59664 ! -property_value: IAO:0000589 "mucosa of nasolacrimal duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0005043 ! mucosa of nasolacrimal duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60109 ! -property_value: IAO:0000589 "mucosa of pharyngotympanic tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0005044 ! mucosa of pharyngotympanic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59776 ! -property_value: IAO:0000589 "mucosa of ethmoidal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005045 ! mucosa of ethmoidal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59783 ! -property_value: IAO:0000589 "mucosa of hard palate (post-embryonic human)" xsd:string -intersection_of: UBERON:0005046 ! mucosa of hard palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64017 ! -property_value: IAO:0000589 "mucosa of vocal fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0005047 ! mucosa of vocal fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18319 ! -property_value: IAO:0000589 "mucosa of uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0005048 ! mucosa of uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18357 ! -property_value: IAO:0000589 "mucosa of infundibulum of uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0005049 ! mucosa of infundibulum of uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14506 ! -property_value: IAO:0000589 "liver papillary process (post-embryonic human)" xsd:string -intersection_of: UBERON:0005050 ! liver papillary process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19812 ! -property_value: IAO:0000589 "mediastinum testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0005051 ! mediastinum testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24008 ! -property_value: IAO:0000589 "zone of long bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0005055 ! zone of long bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45649 ! -property_value: IAO:0000589 "external female genitalia (post-embryonic human)" xsd:string -intersection_of: UBERON:0005056 ! external female genitalia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295624 ! -property_value: IAO:0000589 "neural groove (post-embryonic human)" xsd:string -intersection_of: UBERON:0005061 ! neural groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295618 ! -property_value: IAO:0000589 "neural fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0005062 ! neural fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:30316 ! -property_value: IAO:0000589 "muscle structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0005090 ! muscle structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70321 ! -property_value: IAO:0000589 "left horn of sinus venosus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005091 ! left horn of sinus venosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70318 ! -property_value: IAO:0000589 "right horn of sinus venosus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005092 ! right horn of sinus venosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17719 ! -property_value: IAO:0000589 "descending thin limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0005096 ! descending thin limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75254 ! -property_value: IAO:0000589 "pyramid of medulla oblongata (post-embryonic human)" xsd:string -intersection_of: UBERON:0005159 ! pyramid of medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83115 ! -property_value: IAO:0000589 "multi cell part structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0005162 ! multi cell part structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17717 ! -property_value: IAO:0000589 "ascending limb of loop of Henle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005164 ! ascending limb of loop of Henle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71634 ! -property_value: IAO:0000589 "renal interlobular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0005168 ! renal interlobular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86301 ! -property_value: IAO:0000589 "interstitial tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0005169 ! interstitial tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18660 ! -property_value: IAO:0000589 "granulosa cell layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0005170 ! granulosa cell layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71891 ! -property_value: IAO:0000589 "hepatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312389 ! -property_value: IAO:0000589 "tooth enamel organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0005176 ! tooth enamel organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18930 ! -property_value: IAO:0000589 "deferent duct artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005192 ! deferent duct artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62088 ! -property_value: IAO:0000589 "thoracic mammary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0005200 ! thoracic mammary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7473 ! -property_value: IAO:0000589 "trachea gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0005203 ! trachea gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19979 ! -property_value: IAO:0000589 "lamina propria of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0005205 ! lamina propria of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:294647 ! -property_value: IAO:0000589 "tonsil capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0005207 ! tonsil capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70983 ! -property_value: IAO:0000589 "kidney interstitium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005215 ! kidney interstitium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71657 ! -property_value: IAO:0000589 "liver right lobe parenchyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0005221 ! liver right lobe parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71658 ! -property_value: IAO:0000589 "liver left lobe parenchyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0005222 ! liver left lobe parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312675 ! -property_value: IAO:0000589 "medial-nasal process ectoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0005233 ! medial-nasal process ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60183 ! -property_value: IAO:0000589 "osseus labyrinth vestibule (post-embryonic human)" xsd:string -intersection_of: UBERON:0005236 ! osseus labyrinth vestibule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83584 ! -property_value: IAO:0000589 "interventricular septum endocardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005243 ! interventricular septum endocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7397 ! -property_value: IAO:0000589 "lobar bronchus of right lung cranial lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0005244 ! lobar bronchus of right lung cranial lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63942 ! -property_value: IAO:0000589 "yolk sac cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0005251 ! yolk sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9702 ! -property_value: IAO:0000589 "lesser sac cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0005252 ! lesser sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76622 ! -property_value: IAO:0000589 "head mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74288 ! -property_value: IAO:0000589 "juxtamedullary cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0005271 ! juxtamedullary cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38320 ! -property_value: IAO:0000589 "dorsal skin of finger (post-embryonic human)" xsd:string -intersection_of: UBERON:0005276 ! dorsal skin of finger -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60346 ! -property_value: IAO:0000589 "dorsal skin of finger (post-embryonic human)" xsd:string -intersection_of: UBERON:0005276 ! dorsal skin of finger -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37868 ! -property_value: IAO:0000589 "dorsal skin of toe (post-embryonic human)" xsd:string -intersection_of: UBERON:0005277 ! dorsal skin of toe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60523 ! -property_value: IAO:0000589 "dorsal skin of toe (post-embryonic human)" xsd:string -intersection_of: UBERON:0005277 ! dorsal skin of toe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60348 ! -property_value: IAO:0000589 "nail bed of finger (post-embryonic human)" xsd:string -intersection_of: UBERON:0005278 ! nail bed of finger -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60529 ! -property_value: IAO:0000589 "nail bed of toe (post-embryonic human)" xsd:string -intersection_of: UBERON:0005279 ! nail bed of toe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242675 ! -property_value: IAO:0000589 "ventricular system of central nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0005281 ! ventricular system of central nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242787 ! -property_value: IAO:0000589 "ventricular system of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0005282 ! ventricular system of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242849 ! -property_value: IAO:0000589 "tela choroidea (post-embryonic human)" xsd:string -intersection_of: UBERON:0005283 ! tela choroidea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78493 ! -property_value: IAO:0000589 "tela choroidea of fourth ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005287 ! tela choroidea of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78463 ! -property_value: IAO:0000589 "tela choroidea of third ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005288 ! tela choroidea of third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83712 ! -property_value: IAO:0000589 "tela choroidea of telencephalic ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005289 ! tela choroidea of telencephalic ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242392 ! -property_value: IAO:0000589 "cerebellum lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0005293 ! cerebellum lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321917 ! -property_value: IAO:0000589 "gonadal ridge (post-embryonic human)" xsd:string -intersection_of: UBERON:0005294 ! gonadal ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20168 ! -property_value: IAO:0000589 "skin of clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0005298 ! skin of clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20169 ! -property_value: IAO:0000589 "prepuce of clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0005299 ! prepuce of clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77596 ! -property_value: IAO:0000589 "hypogastric nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0005303 ! hypogastric nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21542 ! -property_value: IAO:0000589 "submucous nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005304 ! submucous nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68805 ! -property_value: IAO:0000589 "thyroid follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005305 ! thyroid follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83596 ! -property_value: IAO:0000589 "endocardial endothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005316 ! endocardial endothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58437 ! -property_value: IAO:0000589 "capillary layer of choroid (post-embryonic human)" xsd:string -intersection_of: UBERON:0005336 ! capillary layer of choroid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13225 ! -property_value: IAO:0000589 "outflow tract of ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005337 ! outflow tract of ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52761 ! -property_value: IAO:0000589 "malleus head (post-embryonic human)" xsd:string -intersection_of: UBERON:0005342 ! malleus head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83889 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIA (post-embryonic human)" xsd:string -intersection_of: UBERON:0005345 ! cerebellum vermis lobule VIIA -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83890 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIB (post-embryonic human)" xsd:string -intersection_of: UBERON:0005346 ! cerebellum vermis lobule VIIB -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72257 ! -property_value: IAO:0000589 "ansiform lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0005348 ! ansiform lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72523 ! -property_value: IAO:0000589 "paramedian lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0005349 ! paramedian lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72522 ! -property_value: IAO:0000589 "lobule simplex (post-embryonic human)" xsd:string -intersection_of: UBERON:0005350 ! lobule simplex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278790 ! -property_value: IAO:0000589 "paraflocculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005351 ! paraflocculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83885 ! -property_value: IAO:0000589 "paraflocculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005351 ! paraflocculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19937 ! -property_value: IAO:0000589 "spermatic cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0005352 ! spermatic cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52762 ! -property_value: IAO:0000589 "malleus neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0005355 ! malleus neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:302929 ! -property_value: IAO:0000589 "Rathke's pouch (post-embryonic human)" xsd:string -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242837 ! -property_value: IAO:0000589 "brain ependyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0005357 ! brain ependyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242770 ! -property_value: IAO:0000589 "ventricle of nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0005358 ! ventricle of nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242839 ! -property_value: IAO:0000589 "spinal cord ependyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53475 ! -property_value: IAO:0000589 "inferior glossopharyngeal IX ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0005360 ! inferior glossopharyngeal IX ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53474 ! -property_value: IAO:0000589 "superior glossopharyngeal IX ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0005361 ! superior glossopharyngeal IX ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53472 ! -property_value: IAO:0000589 "vagus X ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6230 ! -property_value: IAO:0000589 "inferior vagus X ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6229 ! -property_value: IAO:0000589 "superior vagus X ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83893 ! -property_value: IAO:0000589 "hippocampus stratum oriens (post-embryonic human)" xsd:string -intersection_of: UBERON:0005371 ! hippocampus stratum oriens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83894 ! -property_value: IAO:0000589 "hippocampus stratum radiatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0005372 ! hippocampus stratum radiatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83146 ! -property_value: IAO:0000589 "dentate gyrus granule cell layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0005381 ! dentate gyrus granule cell layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77620 ! -property_value: IAO:0000589 "dorsal striatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0005382 ! dorsal striatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63140 ! -property_value: IAO:0000589 "nasal cavity epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77199 ! -property_value: IAO:0000589 "olfactory segment of nasal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0005386 ! olfactory segment of nasal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83900 ! -property_value: IAO:0000589 "cortical layer I (post-embryonic human)" xsd:string -intersection_of: UBERON:0005390 ! cortical layer I -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77804 ! -property_value: IAO:0000589 "cortical layer II (post-embryonic human)" xsd:string -intersection_of: UBERON:0005391 ! cortical layer II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77810 ! -property_value: IAO:0000589 "cortical layer III (post-embryonic human)" xsd:string -intersection_of: UBERON:0005392 ! cortical layer III -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77811 ! -property_value: IAO:0000589 "cortical layer IV (post-embryonic human)" xsd:string -intersection_of: UBERON:0005393 ! cortical layer IV -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77812 ! -property_value: IAO:0000589 "cortical layer V (post-embryonic human)" xsd:string -intersection_of: UBERON:0005394 ! cortical layer V -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77805 ! -property_value: IAO:0000589 "cortical layer VI (post-embryonic human)" xsd:string -intersection_of: UBERON:0005395 ! cortical layer VI -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70504 ! -property_value: IAO:0000589 "carotid artery segment (post-embryonic human)" xsd:string -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83981 ! -property_value: IAO:0000589 "brain arachnoid mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0005397 ! brain arachnoid mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61821 ! -property_value: IAO:0000589 "cerebral hemisphere gray matter (post-embryonic human)" xsd:string -intersection_of: UBERON:0005401 ! cerebral hemisphere gray matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59819 ! -property_value: IAO:0000589 "philtrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0005402 ! philtrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77614 ! -property_value: IAO:0000589 "ventral striatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0005403 ! ventral striatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52948 ! -property_value: IAO:0000589 "frontonasal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0005404 ! frontonasal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20503 ! -property_value: IAO:0000589 "pararenal fat (post-embryonic human)" xsd:string -intersection_of: UBERON:0005405 ! pararenal fat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74280 ! -property_value: IAO:0000589 "pararenal fat (post-embryonic human)" xsd:string -intersection_of: UBERON:0005405 ! pararenal fat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15876 ! -property_value: IAO:0000589 "perirenal fat (post-embryonic human)" xsd:string -intersection_of: UBERON:0005406 ! perirenal fat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20502 ! -property_value: IAO:0000589 "perirenal fat (post-embryonic human)" xsd:string -intersection_of: UBERON:0005406 ! perirenal fat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77591 ! -property_value: IAO:0000589 "sublingual ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0005407 ! sublingual ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84081 ! -property_value: IAO:0000589 "circumventricular organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0005408 ! circumventricular organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71132 ! -property_value: IAO:0000589 "alimentary part of gastrointestinal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0005409 ! alimentary part of gastrointestinal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296782 ! -property_value: IAO:0000589 "forelimb bud (post-embryonic human)" xsd:string -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:292313 ! -property_value: IAO:0000589 "developing anatomical structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0005423 ! developing anatomical structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14534 ! -property_value: IAO:0000589 "dorsal pancreatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55142 ! -property_value: IAO:0000589 "ansa cervicalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0005430 ! ansa cervicalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50531 ! -property_value: IAO:0000589 "anterior spinal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005431 ! anterior spinal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71008 ! -property_value: IAO:0000589 "aortic sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0005432 ! aortic sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24219 ! -property_value: IAO:0000589 "cervical region (post-embryonic human)" xsd:string -intersection_of: UBERON:0005434 ! cervical region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5835 ! -property_value: IAO:0000589 "upper part of cisterna chyli (post-embryonic human)" xsd:string -intersection_of: UBERON:0005435 ! upper part of cisterna chyli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14771 ! -property_value: IAO:0000589 "common hepatic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005436 ! common hepatic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74897 ! -property_value: IAO:0000589 "conus medullaris (post-embryonic human)" xsd:string -intersection_of: UBERON:0005437 ! conus medullaris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4706 ! -property_value: IAO:0000589 "coronary sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005438 ! coronary sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85519 ! -property_value: IAO:0000589 "definitive endoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0005439 ! definitive endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79871 ! -property_value: IAO:0000589 "ductus arteriosus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9756 ! -property_value: IAO:0000589 "external intercostal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005441 ! external intercostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13335 ! -property_value: IAO:0000589 "abdominal external oblique muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005442 ! abdominal external oblique muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83977 ! -property_value: IAO:0000589 "filum terminale (post-embryonic human)" xsd:string -intersection_of: UBERON:0005443 ! filum terminale -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24993 ! -property_value: IAO:0000589 "segment of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0005445 ! segment of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53154 ! -property_value: IAO:0000589 "foramen rotundum (post-embryonic human)" xsd:string -intersection_of: UBERON:0005446 ! foramen rotundum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9580 ! -property_value: IAO:0000589 "greater omentum (post-embryonic human)" xsd:string -intersection_of: UBERON:0005448 ! greater omentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19799 ! -property_value: IAO:0000589 "greater sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0005449 ! greater sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9691 ! -property_value: IAO:0000589 "greater sac cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0005450 ! greater sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24945 ! -property_value: IAO:0000589 "segment of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005451 ! segment of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14655 ! -property_value: IAO:0000589 "hepatic cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0005452 ! hepatic cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77590 ! -property_value: IAO:0000589 "inferior mesenteric ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0005453 ! inferior mesenteric ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13891 ! -property_value: IAO:0000589 "abdominal internal oblique muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005454 ! abdominal internal oblique muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7223 ! -property_value: IAO:0000589 "interventricular groove (post-embryonic human)" xsd:string -intersection_of: UBERON:0005455 ! interventricular groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56432 ! -property_value: IAO:0000589 "jugular foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0005456 ! jugular foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71195 ! -property_value: IAO:0000589 "left thymus lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0005457 ! left thymus lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18822 ! -property_value: IAO:0000589 "left umbilical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005458 ! left umbilical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70320 ! -property_value: IAO:0000589 "left umbilical vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0005459 ! left umbilical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70307 ! -property_value: IAO:0000589 "left vitelline vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0005460 ! left vitelline vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32519 ! -property_value: IAO:0000589 "levator scapulae muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005461 ! levator scapulae muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61681 ! -property_value: IAO:0000589 "lower back (post-embryonic human)" xsd:string -intersection_of: UBERON:0005462 ! lower back -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312355 ! -property_value: IAO:0000589 "subcapsular sinus of lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0005463 ! subcapsular sinus of lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14757 ! -property_value: IAO:0000589 "median sacral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005464 ! median sacral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16487 ! -property_value: IAO:0000589 "obturator nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0005465 ! obturator nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45738 ! -property_value: IAO:0000589 "platysma (post-embryonic human)" xsd:string -intersection_of: UBERON:0005467 ! platysma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71194 ! -property_value: IAO:0000589 "right thymus lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0005469 ! right thymus lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18821 ! -property_value: IAO:0000589 "right umbilical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005470 ! right umbilical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70319 ! -property_value: IAO:0000589 "right umbilical vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0005471 ! right umbilical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70306 ! -property_value: IAO:0000589 "right vitelline vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0005472 ! right vitelline vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24228 ! -property_value: IAO:0000589 "sacral region (post-embryonic human)" xsd:string -intersection_of: UBERON:0005473 ! sacral region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50782 ! -property_value: IAO:0000589 "sigmoid sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005475 ! sigmoid sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5929 ! -property_value: IAO:0000589 "spinal nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0005476 ! spinal nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17277 ! -property_value: IAO:0000589 "stomach fundus epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005477 ! stomach fundus epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77589 ! -property_value: IAO:0000589 "superior mesenteric ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0005479 ! superior mesenteric ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54799 ! -property_value: IAO:0000589 "superior orbital fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0005480 ! superior orbital fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50769 ! -property_value: IAO:0000589 "tentorial sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005481 ! tentorial sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71193 ! -property_value: IAO:0000589 "thymus lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0005483 ! thymus lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7237 ! -property_value: IAO:0000589 "tricuspid valve leaflet (post-embryonic human)" xsd:string -intersection_of: UBERON:0005484 ! tricuspid valve leaflet -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9240 ! -property_value: IAO:0000589 "valve of inferior vena cava (post-embryonic human)" xsd:string -intersection_of: UBERON:0005485 ! valve of inferior vena cava -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50762 ! -property_value: IAO:0000589 "venous dural sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005486 ! venous dural sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70305 ! -property_value: IAO:0000589 "vitelline vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6639 ! -property_value: IAO:0000589 "superior mesenteric plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005488 ! superior mesenteric plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7177 ! -property_value: IAO:0000589 "anterior interventricular sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005489 ! anterior interventricular sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7178 ! -property_value: IAO:0000589 "posterior interventricular sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005490 ! posterior interventricular sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321916 ! -property_value: IAO:0000589 "primitive heart tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0005498 ! primitive heart tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295790 ! -property_value: IAO:0000589 "rhombomere 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295794 ! -property_value: IAO:0000589 "rhombomere 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295796 ! -property_value: IAO:0000589 "rhombomere 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295834 ! -property_value: IAO:0000589 "rhombomere 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295836 ! -property_value: IAO:0000589 "rhombomere 6 (post-embryonic human)" xsd:string -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295838 ! -property_value: IAO:0000589 "rhombomere 7 (post-embryonic human)" xsd:string -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295792 ! -property_value: IAO:0000589 "rhombomere 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312291 ! -property_value: IAO:0000589 "hyaloid cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312298 ! -property_value: IAO:0000589 "hyaloid vascular plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49474 ! -property_value: IAO:0000589 "hyoid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59316 ! -property_value: IAO:0000589 "inner canthus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70612 ! -property_value: IAO:0000589 "lens anterior epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295948 ! -property_value: IAO:0000589 "secondary palatal shelf (post-embryonic human)" xsd:string -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295874 ! -property_value: IAO:0000589 "primary palate (post-embryonic human)" xsd:string -intersection_of: UBERON:0005620 ! primary palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14809 ! -property_value: IAO:0000589 "ileal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005628 ! ileal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5900 ! -property_value: IAO:0000589 "vascular plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005629 ! vascular plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:305915 ! -property_value: IAO:0000589 "extraembryonic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0005631 ! extraembryonic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312465 ! -property_value: IAO:0000589 "secondary palatal shelf epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005658 ! secondary palatal shelf epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:313406 ! -property_value: IAO:0000589 "primary palate epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005659 ! primary palate epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18147 ! -property_value: IAO:0000589 "peritoneal cavity mesothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005669 ! peritoneal cavity mesothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295698 ! -property_value: IAO:0000589 "2nd arch mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0005689 ! 2nd arch mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295700 ! -property_value: IAO:0000589 "3rd arch mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0005690 ! 3rd arch mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295702 ! -property_value: IAO:0000589 "4th arch mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0005691 ! 4th arch mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7190 ! -property_value: IAO:0000589 "olfactory system (post-embryonic human)" xsd:string -intersection_of: UBERON:0005725 ! olfactory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296719 ! -property_value: IAO:0000589 "extraembryonic mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0005728 ! extraembryonic mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14272 ! -property_value: IAO:0000589 "tunica intima of artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0005740 ! tunica intima of artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45635 ! -property_value: IAO:0000589 "adventitia (post-embryonic human)" xsd:string -intersection_of: UBERON:0005742 ! adventitia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54774 ! -property_value: IAO:0000589 "optic foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0005745 ! optic foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74272 ! -property_value: IAO:0000589 "glomerular parietal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005750 ! glomerular parietal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74273 ! -property_value: IAO:0000589 "glomerular visceral epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005751 ! glomerular visceral epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63871 ! -property_value: IAO:0000589 "acellular membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0005764 ! acellular membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63872 ! -property_value: IAO:0000589 "basement membrane of epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005769 ! basement membrane of epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74274 ! -property_value: IAO:0000589 "glomerular basement membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0005777 ! glomerular basement membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74276 ! -property_value: IAO:0000589 "lamina densa of glomerular basement membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0005787 ! lamina densa of glomerular basement membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74277 ! -property_value: IAO:0000589 "lamina rara interna (post-embryonic human)" xsd:string -intersection_of: UBERON:0005788 ! lamina rara interna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74275 ! -property_value: IAO:0000589 "lamina rara externa (post-embryonic human)" xsd:string -intersection_of: UBERON:0005789 ! lamina rara externa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72173 ! -property_value: IAO:0000589 "embryonic uterus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005795 ! embryonic uterus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13087 ! -property_value: IAO:0000589 "section of aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0005800 ! section of aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45628 ! -property_value: IAO:0000589 "portal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0005806 ! portal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83117 ! -property_value: IAO:0000589 "bone tissue of long bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0005808 ! bone tissue of long bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23991 ! -property_value: IAO:0000589 "cervical vertebra 1 anterior tubercle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005810 ! cervical vertebra 1 anterior tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75429 ! -property_value: IAO:0000589 "tubercle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005813 ! tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23975 ! -property_value: IAO:0000589 "arch of atlas (post-embryonic human)" xsd:string -intersection_of: UBERON:0005814 ! arch of atlas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24126 ! -property_value: IAO:0000589 "anterior tubercle of transverse process of cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0005815 ! anterior tubercle of transverse process of cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24128 ! -property_value: IAO:0000589 "posterior tubercle of transverse process of cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0005816 ! posterior tubercle of transverse process of cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258416 ! -property_value: IAO:0000589 "gracile fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005821 ! gracile fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73938 ! -property_value: IAO:0000589 "gracile fasciculus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0005826 ! gracile fasciculus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73941 ! -property_value: IAO:0000589 "cuneate fasciculus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0005835 ! cuneate fasciculus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75799 ! -property_value: IAO:0000589 "fasciculus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0005837 ! fasciculus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83844 ! -property_value: IAO:0000589 "fasciculus of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0005838 ! fasciculus of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258178 ! -property_value: IAO:0000589 "thoracic spinal cord dorsal column (post-embryonic human)" xsd:string -intersection_of: UBERON:0005839 ! thoracic spinal cord dorsal column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258198 ! -property_value: IAO:0000589 "sacral spinal cord dorsal column (post-embryonic human)" xsd:string -intersection_of: UBERON:0005840 ! sacral spinal cord dorsal column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258176 ! -property_value: IAO:0000589 "cervical spinal cord dorsal column (post-embryonic human)" xsd:string -intersection_of: UBERON:0005841 ! cervical spinal cord dorsal column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258180 ! -property_value: IAO:0000589 "lumbar spinal cord dorsal column (post-embryonic human)" xsd:string -intersection_of: UBERON:0005842 ! lumbar spinal cord dorsal column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256623 ! -property_value: IAO:0000589 "sacral spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0005843 ! sacral spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62420 ! -property_value: IAO:0000589 "spinal cord segment (post-embryonic human)" xsd:string -intersection_of: UBERON:0005844 ! spinal cord segment -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256635 ! -property_value: IAO:0000589 "caudal segment of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0005845 ! caudal segment of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293051 ! -property_value: IAO:0000589 "mandibular prominence (post-embryonic human)" xsd:string -intersection_of: UBERON:0005867 ! mandibular prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293049 ! -property_value: IAO:0000589 "maxillary prominence (post-embryonic human)" xsd:string -intersection_of: UBERON:0005868 ! maxillary prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54741 ! -property_value: IAO:0000589 "maxillary process of inferior nasal concha (post-embryonic human)" xsd:string -intersection_of: UBERON:0005869 ! maxillary process of inferior nasal concha -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295840 ! -property_value: IAO:0000589 "olfactory pit (post-embryonic human)" xsd:string -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52896 ! -property_value: IAO:0000589 "palatine process of maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0005871 ! palatine process of maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:302888 ! -property_value: IAO:0000589 "undifferentiated genital tubercle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005876 ! undifferentiated genital tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295672 ! -property_value: IAO:0000589 "pharyngeal cleft (post-embryonic human)" xsd:string -intersection_of: UBERON:0005879 ! pharyngeal cleft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49187 ! -property_value: IAO:0000589 "occipital region (post-embryonic human)" xsd:string -intersection_of: UBERON:0005902 ! occipital region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19473 ! -property_value: IAO:0000589 "duct of seminal vesicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005903 ! duct of seminal vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9689 ! -property_value: IAO:0000589 "serous sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0005906 ! serous sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20291 ! -property_value: IAO:0000589 "conjunctival sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0005908 ! conjunctival sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69065 ! -property_value: IAO:0000589 "endo-epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005911 ! endo-epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263266 ! -property_value: IAO:0000589 "transitional epithelium of major calyx (post-embryonic human)" xsd:string -intersection_of: UBERON:0005912 ! transitional epithelium of major calyx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10483 ! -property_value: IAO:0000589 "zone of bone organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0005913 ! zone of bone organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57457 ! -property_value: IAO:0000589 "supreme nasal concha (post-embryonic human)" xsd:string -intersection_of: UBERON:0005919 ! supreme nasal concha -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57458 ! -property_value: IAO:0000589 "superior nasal concha (post-embryonic human)" xsd:string -intersection_of: UBERON:0005920 ! superior nasal concha -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57459 ! -property_value: IAO:0000589 "middle nasal concha (post-embryonic human)" xsd:string -intersection_of: UBERON:0005921 ! middle nasal concha -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54736 ! -property_value: IAO:0000589 "inferior nasal concha (post-embryonic human)" xsd:string -intersection_of: UBERON:0005922 ! inferior nasal concha -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54742 ! -property_value: IAO:0000589 "ethmoidal process of inferior nasal concha (post-embryonic human)" xsd:string -intersection_of: UBERON:0005925 ! ethmoidal process of inferior nasal concha -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59645 ! -property_value: IAO:0000589 "external naris (post-embryonic human)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295944 ! -property_value: IAO:0000589 "primary choana (post-embryonic human)" xsd:string -intersection_of: UBERON:0005931 ! primary choana -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70666 ! -property_value: IAO:0000589 "bulb of hair follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005932 ! bulb of hair follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:294628 ! -property_value: IAO:0000589 "hair root sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0005933 ! hair root sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70935 ! -property_value: IAO:0000589 "hair inner root sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0005941 ! hair inner root sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70943 ! -property_value: IAO:0000589 "hair outer root sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0005942 ! hair outer root sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:294634 ! -property_value: IAO:0000589 "hair root sheath matrix (post-embryonic human)" xsd:string -intersection_of: UBERON:0005943 ! hair root sheath matrix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14141 ! -property_value: IAO:0000589 "outflow tract of atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005946 ! outflow tract of atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7216 ! -property_value: IAO:0000589 "outflow part of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005953 ! outflow part of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9473 ! -property_value: IAO:0000589 "outflow part of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005956 ! outflow part of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9550 ! -property_value: IAO:0000589 "outflow part of right atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005965 ! outflow part of right atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9551 ! -property_value: IAO:0000589 "outflow part of left atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0005966 ! outflow part of left atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70722 ! -property_value: IAO:0000589 "infundibulum of hair follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005968 ! infundibulum of hair follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77660 ! -property_value: IAO:0000589 "eye trabecular meshwork (post-embryonic human)" xsd:string -intersection_of: UBERON:0005969 ! eye trabecular meshwork -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83721 ! -property_value: IAO:0000589 "posterior cerebellomedullary cistern (post-embryonic human)" xsd:string -intersection_of: UBERON:0005974 ! posterior cerebellomedullary cistern -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70735 ! -property_value: IAO:0000589 "hair follicle bulge (post-embryonic human)" xsd:string -intersection_of: UBERON:0005975 ! hair follicle bulge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72524 ! -property_value: IAO:0000589 "ansiform lobule crus I (post-embryonic human)" xsd:string -intersection_of: UBERON:0005976 ! ansiform lobule crus I -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72525 ! -property_value: IAO:0000589 "ansiform lobule crus II (post-embryonic human)" xsd:string -intersection_of: UBERON:0005977 ! ansiform lobule crus II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9236 ! -property_value: IAO:0000589 "crista terminalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0005979 ! crista terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12226 ! -property_value: IAO:0000589 "pectinate muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005980 ! pectinate muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13246 ! -property_value: IAO:0000589 "vena cava sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005981 ! vena cava sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83180 ! -property_value: IAO:0000589 "Bachmann's bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0005982 ! Bachmann's bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9487 ! -property_value: IAO:0000589 "left bundle branch (post-embryonic human)" xsd:string -intersection_of: UBERON:0005986 ! left bundle branch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9486 ! -property_value: IAO:0000589 "right bundle branch (post-embryonic human)" xsd:string -intersection_of: UBERON:0005987 ! right bundle branch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7136 ! -property_value: IAO:0000589 "atrioventricular septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0005989 ! atrioventricular septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7251 ! -property_value: IAO:0000589 "aortic valve cusp (post-embryonic human)" xsd:string -intersection_of: UBERON:0005990 ! aortic valve cusp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9502 ! -property_value: IAO:0000589 "aortic valve anulus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005991 ! aortic valve anulus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7248 ! -property_value: IAO:0000589 "pulmonary valve cusp (post-embryonic human)" xsd:string -intersection_of: UBERON:0005992 ! pulmonary valve cusp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9503 ! -property_value: IAO:0000589 "pulmonary valve anulus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005993 ! pulmonary valve anulus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12225 ! -property_value: IAO:0000589 "chorda tendineae (post-embryonic human)" xsd:string -intersection_of: UBERON:0005994 ! chorda tendineae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9498 ! -property_value: IAO:0000589 "mitral valve anulus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005995 ! mitral valve anulus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9500 ! -property_value: IAO:0000589 "tricuspid valve anulus (post-embryonic human)" xsd:string -intersection_of: UBERON:0005997 ! tricuspid valve anulus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7240 ! -property_value: IAO:0000589 "tricuspid valve cusp (post-embryonic human)" xsd:string -intersection_of: UBERON:0005998 ! tricuspid valve cusp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70772 ! -property_value: IAO:0000589 "hair follicle matrix region (post-embryonic human)" xsd:string -intersection_of: UBERON:0006004 ! hair follicle matrix region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70723 ! -property_value: IAO:0000589 "hair follicle isthmus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006005 ! hair follicle isthmus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9497 ! -property_value: IAO:0000589 "fibrous ring of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0006008 ! fibrous ring of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7232 ! -property_value: IAO:0000589 "cusp of cardiac valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0006009 ! cusp of cardiac valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58837 ! -property_value: IAO:0000589 "hyaloid canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006010 ! hyaloid canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46479 ! -property_value: IAO:0000589 "surface of occiput (post-embryonic human)" xsd:string -intersection_of: UBERON:0006054 ! surface of occiput -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83967 ! -property_value: IAO:0000589 "falx cerebri (post-embryonic human)" xsd:string -intersection_of: UBERON:0006059 ! falx cerebri -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24530 ! -property_value: IAO:0000589 "process of vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0006061 ! process of vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11952 ! -property_value: IAO:0000589 "zygapophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006062 ! zygapophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50211 ! -property_value: IAO:0000589 "musculature of hindlimb zeugopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0006067 ! musculature of hindlimb zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24138 ! -property_value: IAO:0000589 "cervical region of vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9140 ! -property_value: IAO:0000589 "thoracic region of vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16203 ! -property_value: IAO:0000589 "lumbar region of vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16201 ! -property_value: IAO:0000589 "subdivision of vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0006077 ! subdivision of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258190 ! -property_value: IAO:0000589 "subdivision of spinal cord dorsal column (post-embryonic human)" xsd:string -intersection_of: UBERON:0006079 ! subdivision of spinal cord dorsal column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14536 ! -property_value: IAO:0000589 "fundus of gallbladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0006081 ! fundus of gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15908 ! -property_value: IAO:0000589 "fundus of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62080 ! -property_value: IAO:0000589 "stria medullaris (post-embryonic human)" xsd:string -intersection_of: UBERON:0006086 ! stria medullaris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72629 ! -property_value: IAO:0000589 "internal arcuate fiber bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006087 ! internal arcuate fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77536 ! -property_value: IAO:0000589 "inferior parietal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0006088 ! inferior parietal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72630 ! -property_value: IAO:0000589 "dorsal external arcuate fiber bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006089 ! dorsal external arcuate fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72627 ! -property_value: IAO:0000589 "glossopharyngeal nerve fiber bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006090 ! glossopharyngeal nerve fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83701 ! -property_value: IAO:0000589 "inferior horn of the lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006091 ! inferior horn of the lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61903 ! -property_value: IAO:0000589 "cuneus cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0006092 ! cuneus cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61900 ! -property_value: IAO:0000589 "precuneus cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0006093 ! precuneus cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61899 ! -property_value: IAO:0000589 "superior parietal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0006094 ! superior parietal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68638 ! -property_value: IAO:0000589 "anterior transverse temporal area 41 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006095 ! anterior transverse temporal area 41 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:236867 ! -property_value: IAO:0000589 "posterior transverse temporal area 42 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006096 ! posterior transverse temporal area 42 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68639 ! -property_value: IAO:0000589 "posterior transverse temporal area 42 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006096 ! posterior transverse temporal area 42 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72631 ! -property_value: IAO:0000589 "ventral external arcuate fiber bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006097 ! ventral external arcuate fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68597 ! -property_value: IAO:0000589 "Brodmann (1909) area 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006099 ! Brodmann (1909) area 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68599 ! -property_value: IAO:0000589 "Brodmann (1909) area 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006100 ! Brodmann (1909) area 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68621 ! -property_value: IAO:0000589 "Brodmann (1909) area 24 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006101 ! Brodmann (1909) area 24 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68632 ! -property_value: IAO:0000589 "Brodmann (1909) area 35 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006102 ! Brodmann (1909) area 35 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68633 ! -property_value: IAO:0000589 "Brodmann (1909) area 36 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006104 ! Brodmann (1909) area 36 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75371 ! -property_value: IAO:0000589 "cochlear canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006106 ! cochlear canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84609 ! -property_value: IAO:0000589 "basolateral amygdaloid nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0006107 ! basolateral amygdaloid nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84015 ! -property_value: IAO:0000589 "corticomedial nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0006108 ! corticomedial nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61902 ! -property_value: IAO:0000589 "lateral occipital cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0006114 ! lateral occipital cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61969 ! -property_value: IAO:0000589 "posterior column of fornix (post-embryonic human)" xsd:string -intersection_of: UBERON:0006115 ! posterior column of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72628 ! -property_value: IAO:0000589 "vagal nerve fiber bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006116 ! vagal nerve fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72626 ! -property_value: IAO:0000589 "accessory nerve fiber bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006117 ! accessory nerve fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68862 ! -property_value: IAO:0000589 "lamina I of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006118 ! lamina I of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77494 ! -property_value: IAO:0000589 "subbrachial nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006119 ! subbrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72407 ! -property_value: IAO:0000589 "superior colliculus superficial gray layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0006120 ! superior colliculus superficial gray layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72526 ! -property_value: IAO:0000589 "hemispheric lobule VIII (post-embryonic human)" xsd:string -intersection_of: UBERON:0006121 ! hemispheric lobule VIII -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77611 ! -property_value: IAO:0000589 "horizontal limb of the diagonal band (post-embryonic human)" xsd:string -intersection_of: UBERON:0006123 ! horizontal limb of the diagonal band -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77612 ! -property_value: IAO:0000589 "vertical limb of the diagonal band (post-embryonic human)" xsd:string -intersection_of: UBERON:0006124 ! vertical limb of the diagonal band -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77610 ! -property_value: IAO:0000589 "subdivision of diagonal band (post-embryonic human)" xsd:string -intersection_of: UBERON:0006125 ! subdivision of diagonal band -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77460 ! -property_value: IAO:0000589 "funiculus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006127 ! funiculus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76738 ! -property_value: IAO:0000589 "funiculus of neuraxis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006133 ! funiculus of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5914 ! -property_value: IAO:0000589 "nerve fiber (post-embryonic human)" xsd:string -intersection_of: UBERON:0006134 ! nerve fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5915 ! -property_value: IAO:0000589 "myelinated nerve fiber (post-embryonic human)" xsd:string -intersection_of: UBERON:0006135 ! myelinated nerve fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5916 ! -property_value: IAO:0000589 "unmyelinated nerve fiber (post-embryonic human)" xsd:string -intersection_of: UBERON:0006136 ! unmyelinated nerve fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70804 ! -property_value: IAO:0000589 "proper palmar digital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006137 ! proper palmar digital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43971 ! -property_value: IAO:0000589 "plantar digital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006138 ! plantar digital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44517 ! -property_value: IAO:0000589 "plantar digital vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006139 ! plantar digital vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70895 ! -property_value: IAO:0000589 "palmar digital vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006140 ! palmar digital vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44660 ! -property_value: IAO:0000589 "dorsal digital artery of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0006145 ! dorsal digital artery of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70801 ! -property_value: IAO:0000589 "dorsal digital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006163 ! dorsal digital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15611 ! -property_value: IAO:0000589 "renal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006171 ! renal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17621 ! -property_value: IAO:0000589 "renal sinus of right kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0006194 ! renal sinus of right kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17622 ! -property_value: IAO:0000589 "renal sinus of left kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0006195 ! renal sinus of left kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76998 ! -property_value: IAO:0000589 "dorsal intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006198 ! dorsal intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50851 ! -property_value: IAO:0000589 "posterior auricular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006199 ! posterior auricular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71216 ! -property_value: IAO:0000589 "caudal humeral circumflex vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006200 ! caudal humeral circumflex vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61006 ! -property_value: IAO:0000589 "conchal part of pinna (post-embryonic human)" xsd:string -intersection_of: UBERON:0006203 ! conchal part of pinna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19855 ! -property_value: IAO:0000589 "inguinal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0006204 ! inguinal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20188 ! -property_value: IAO:0000589 "pectineal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0006205 ! pectineal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58577 ! -property_value: IAO:0000589 "iridocorneal angle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006206 ! iridocorneal angle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:313607 ! -property_value: IAO:0000589 "buccopharyngeal membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0006211 ! buccopharyngeal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295525 ! -property_value: IAO:0000589 "cloacal membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0006217 ! cloacal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312597 ! -property_value: IAO:0000589 "ethmoid bone primordium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006227 ! ethmoid bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312589 ! -property_value: IAO:0000589 "tetrapod frontal bone primordium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006236 ! tetrapod frontal bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312967 ! -property_value: IAO:0000589 "future brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0006238 ! future brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78456 ! -property_value: IAO:0000589 "infundibular recess of 3rd ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006250 ! infundibular recess of 3rd ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:300055 ! -property_value: IAO:0000589 "nasolacrimal groove (post-embryonic human)" xsd:string -intersection_of: UBERON:0006266 ! nasolacrimal groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293135 ! -property_value: IAO:0000589 "notochordal process (post-embryonic human)" xsd:string -intersection_of: UBERON:0006268 ! notochordal process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:302911 ! -property_value: IAO:0000589 "otic pit (post-embryonic human)" xsd:string -intersection_of: UBERON:0006273 ! otic pit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312593 ! -property_value: IAO:0000589 "tetrapod parietal bone primordium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006274 ! tetrapod parietal bone primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71006 ! -property_value: IAO:0000589 "future cardiac ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006283 ! future cardiac ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321625 ! -property_value: IAO:0000589 "tunica vasculosa lentis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006305 ! tunica vasculosa lentis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58071 ! -property_value: IAO:0000589 "chamber of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0006311 ! chamber of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:280556 ! -property_value: IAO:0000589 "bodily fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0006314 ! bodily fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49034 ! -property_value: IAO:0000589 "orbitalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006318 ! orbitalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73909 ! -property_value: IAO:0000589 "spinal cord reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006319 ! spinal cord reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49040 ! -property_value: IAO:0000589 "inferior oblique extraocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006320 ! inferior oblique extraocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49039 ! -property_value: IAO:0000589 "superior oblique extraocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006321 ! superior oblique extraocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49036 ! -property_value: IAO:0000589 "inferior rectus extraocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006322 ! inferior rectus extraocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49035 ! -property_value: IAO:0000589 "superior rectus extraocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006323 ! superior rectus extraocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72058 ! -property_value: IAO:0000589 "laryngeal intrinsic ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0006325 ! laryngeal intrinsic ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55349 ! -property_value: IAO:0000589 "base of arytenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0006326 ! base of arytenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55225 ! -property_value: IAO:0000589 "laryngeal extrinsic muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006327 ! laryngeal extrinsic muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55226 ! -property_value: IAO:0000589 "laryngeal intrinsic muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006328 ! laryngeal intrinsic muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46621 ! -property_value: IAO:0000589 "superior pharyngeal constrictor (post-embryonic human)" xsd:string -intersection_of: UBERON:0006329 ! superior pharyngeal constrictor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59796 ! -property_value: IAO:0000589 "anterior lingual gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0006330 ! anterior lingual gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:320527 ! -property_value: IAO:0000589 "nasal capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20677 ! -property_value: IAO:0000589 "left subhepatic recess (post-embryonic human)" xsd:string -intersection_of: UBERON:0006342 ! left subhepatic recess -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14715 ! -property_value: IAO:0000589 "right subhepatic recess (post-embryonic human)" xsd:string -intersection_of: UBERON:0006343 ! right subhepatic recess -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79390 ! -property_value: IAO:0000589 "stapedial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312395 ! -property_value: IAO:0000589 "vasa hyaloidea propria (post-embryonic human)" xsd:string -intersection_of: UBERON:0006358 ! vasa hyaloidea propria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321630 ! -property_value: IAO:0000589 "basisphenoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32574 ! -property_value: IAO:0000589 "xiphoid cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0006430 ! xiphoid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32577 ! -property_value: IAO:0000589 "xiphoid process bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0006431 ! xiphoid process bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20676 ! -property_value: IAO:0000589 "subhepatic recess (post-embryonic human)" xsd:string -intersection_of: UBERON:0006442 ! subhepatic recess -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76704 ! -property_value: IAO:0000589 "annulus fibrosus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006444 ! annulus fibrosus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70688 ! -property_value: IAO:0000589 "caudal middle frontal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006445 ! caudal middle frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70687 ! -property_value: IAO:0000589 "rostral middle frontal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006446 ! rostral middle frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71191 ! -property_value: IAO:0000589 "L5 segment of lumbar spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006447 ! L5 segment of lumbar spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71187 ! -property_value: IAO:0000589 "L1 segment of lumbar spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006448 ! L1 segment of lumbar spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71189 ! -property_value: IAO:0000589 "L3 segment of lumbar spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006449 ! L3 segment of lumbar spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71188 ! -property_value: IAO:0000589 "L2 segment of lumbar spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006450 ! L2 segment of lumbar spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71190 ! -property_value: IAO:0000589 "L4 segment of lumbar spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006451 ! L4 segment of lumbar spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71170 ! -property_value: IAO:0000589 "T4 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006452 ! T4 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71171 ! -property_value: IAO:0000589 "T5 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006453 ! T5 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71172 ! -property_value: IAO:0000589 "T6 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006454 ! T6 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71173 ! -property_value: IAO:0000589 "T7 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006455 ! T7 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71174 ! -property_value: IAO:0000589 "T8 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006456 ! T8 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62421 ! -property_value: IAO:0000589 "T1 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006457 ! T1 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62422 ! -property_value: IAO:0000589 "T2 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006458 ! T2 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71169 ! -property_value: IAO:0000589 "T3 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006459 ! T3 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256625 ! -property_value: IAO:0000589 "S1 segment of sacral spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006460 ! S1 segment of sacral spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256627 ! -property_value: IAO:0000589 "S2 segment of sacral spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006461 ! S2 segment of sacral spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256629 ! -property_value: IAO:0000589 "S3 segment of sacral spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006462 ! S3 segment of sacral spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256631 ! -property_value: IAO:0000589 "S4 segment of sacral spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006463 ! S4 segment of sacral spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256633 ! -property_value: IAO:0000589 "S5 segment of sacral spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006464 ! S5 segment of sacral spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71175 ! -property_value: IAO:0000589 "T9 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006465 ! T9 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71176 ! -property_value: IAO:0000589 "T10 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006466 ! T10 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71177 ! -property_value: IAO:0000589 "T11 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006467 ! T11 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71178 ! -property_value: IAO:0000589 "T12 segment of thoracic spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006468 ! T12 segment of thoracic spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71179 ! -property_value: IAO:0000589 "C1 segment of cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006469 ! C1 segment of cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71186 ! -property_value: IAO:0000589 "C8 segment of cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006470 ! C8 segment of cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68601 ! -property_value: IAO:0000589 "Brodmann (1909) area 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006471 ! Brodmann (1909) area 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68602 ! -property_value: IAO:0000589 "Brodmann (1909) area 6 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006472 ! Brodmann (1909) area 6 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68615 ! -property_value: IAO:0000589 "Brodmann (1909) area 18 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006473 ! Brodmann (1909) area 18 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68627 ! -property_value: IAO:0000589 "Brodmann (1909) area 30 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006474 ! Brodmann (1909) area 30 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68628 ! -property_value: IAO:0000589 "Brodmann (1909) area 31 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006475 ! Brodmann (1909) area 31 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68630 ! -property_value: IAO:0000589 "Brodmann (1909) area 33 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006476 ! Brodmann (1909) area 33 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68631 ! -property_value: IAO:0000589 "Brodmann (1909) area 34 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006477 ! Brodmann (1909) area 34 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68634 ! -property_value: IAO:0000589 "Brodmann (1909) area 37 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006478 ! Brodmann (1909) area 37 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68635 ! -property_value: IAO:0000589 "Brodmann (1909) area 38 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006479 ! Brodmann (1909) area 38 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68636 ! -property_value: IAO:0000589 "Brodmann (1909) area 39 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006480 ! Brodmann (1909) area 39 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68641 ! -property_value: IAO:0000589 "Brodmann (1909) area 44 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006481 ! Brodmann (1909) area 44 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68642 ! -property_value: IAO:0000589 "Brodmann (1909) area 45 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006482 ! Brodmann (1909) area 45 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68643 ! -property_value: IAO:0000589 "Brodmann (1909) area 46 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006483 ! Brodmann (1909) area 46 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68644 ! -property_value: IAO:0000589 "Brodmann (1909) area 47 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006484 ! Brodmann (1909) area 47 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:81151 ! -property_value: IAO:0000589 "Brodmann (1909) area 48 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006485 ! Brodmann (1909) area 48 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:81153 ! -property_value: IAO:0000589 "Brodmann (1909) area 52 (post-embryonic human)" xsd:string -intersection_of: UBERON:0006486 ! Brodmann (1909) area 52 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71181 ! -property_value: IAO:0000589 "C3 segment of cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006488 ! C3 segment of cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71180 ! -property_value: IAO:0000589 "C2 segment of cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006489 ! C2 segment of cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71182 ! -property_value: IAO:0000589 "C4 segment of cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006490 ! C4 segment of cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71183 ! -property_value: IAO:0000589 "C5 segment of cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006491 ! C5 segment of cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71184 ! -property_value: IAO:0000589 "C6 segment of cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006492 ! C6 segment of cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71185 ! -property_value: IAO:0000589 "C7 segment of cervical spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0006493 ! C7 segment of cervical spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55348 ! -property_value: IAO:0000589 "apex of arytenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0006494 ! apex of arytenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75666 ! -property_value: IAO:0000589 "osseus cochlear canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006495 ! osseus cochlear canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61290 ! -property_value: IAO:0000589 "external acoustic meatus osseus part (post-embryonic human)" xsd:string -intersection_of: UBERON:0006496 ! external acoustic meatus osseus part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37456 ! -property_value: IAO:0000589 "interosseous muscle of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0006497 ! interosseous muscle of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37457 ! -property_value: IAO:0000589 "dorsal pes interosseous muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006499 ! dorsal pes interosseous muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37458 ! -property_value: IAO:0000589 "plantar interosseous muscle of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0006502 ! plantar interosseous muscle of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37419 ! -property_value: IAO:0000589 "palmar interosseous muscle of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006505 ! palmar interosseous muscle of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83684 ! -property_value: IAO:0000589 "pallidum (post-embryonic human)" xsd:string -intersection_of: UBERON:0006514 ! pallidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77619 ! -property_value: IAO:0000589 "dorsal pallidum (post-embryonic human)" xsd:string -intersection_of: UBERON:0006516 ! dorsal pallidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:284558 ! -property_value: IAO:0000589 "kidney calyx (post-embryonic human)" xsd:string -intersection_of: UBERON:0006517 ! kidney calyx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62967 ! -property_value: IAO:0000589 "seminal fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0006530 ! seminal fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312383 ! -property_value: IAO:0000589 "oblique extraocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006532 ! oblique extraocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312408 ! -property_value: IAO:0000589 "rectus extraocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006533 ! rectus extraocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7162 ! -property_value: IAO:0000589 "lymphatic part of lymphoid system (post-embryonic human)" xsd:string -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74623 ! -property_value: IAO:0000589 "non-lymphatic part of lymphoid system (post-embryonic human)" xsd:string -intersection_of: UBERON:0006561 ! non-lymphatic part of lymphoid system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85030 ! -property_value: IAO:0000589 "tunica media of pulmonary trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0006563 ! tunica media of pulmonary trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22834 ! -property_value: IAO:0000589 "superficial palmar arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0006564 ! superficial palmar arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85266 ! -property_value: IAO:0000589 "female urethral meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006565 ! female urethral meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9558 ! -property_value: IAO:0000589 "left ventricle myocardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006566 ! left ventricle myocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9535 ! -property_value: IAO:0000589 "right ventricle myocardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006567 ! right ventricle myocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258762 ! -property_value: IAO:0000589 "hypothalamic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006568 ! hypothalamic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7270 ! -property_value: IAO:0000589 "trabecula carnea of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006570 ! trabecula carnea of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7271 ! -property_value: IAO:0000589 "trabecula carnea of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006571 ! trabecula carnea of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75383 ! -property_value: IAO:0000589 "pectinate line (post-embryonic human)" xsd:string -intersection_of: UBERON:0006574 ! pectinate line -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14080 ! -property_value: IAO:0000589 "ligamentum venosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0006587 ! ligamentum venosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14079 ! -property_value: IAO:0000589 "round ligament of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0006588 ! round ligament of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20420 ! -property_value: IAO:0000589 "round ligament of uterus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006589 ! round ligament of uterus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16558 ! -property_value: IAO:0000589 "remnant of embryonic structure (post-embryonic human)" xsd:string -intersection_of: UBERON:0006590 ! remnant of embryonic structure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14076 ! -property_value: IAO:0000589 "transformed artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006591 ! transformed artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14078 ! -property_value: IAO:0000589 "transformed vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006592 ! transformed vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75779 ! -property_value: IAO:0000589 "mandibular symphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006606 ! mandibular symphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14077 ! -property_value: IAO:0000589 "medial umbilical ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0006607 ! medial umbilical ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20172 ! -property_value: IAO:0000589 "corpus cavernosum clitoridis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006608 ! corpus cavernosum clitoridis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321004 ! -property_value: IAO:0000589 "corpus cavernosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0006609 ! corpus cavernosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19631 ! -property_value: IAO:0000589 "tunica albuginea (post-embryonic human)" xsd:string -intersection_of: UBERON:0006610 ! tunica albuginea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9722 ! -property_value: IAO:0000589 "aponeurosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006614 ! aponeurosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53643 ! -property_value: IAO:0000589 "right external ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0006616 ! right external ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53644 ! -property_value: IAO:0000589 "left external ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0006617 ! left external ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77110 ! -property_value: IAO:0000589 "atrium auricular region (post-embryonic human)" xsd:string -intersection_of: UBERON:0006618 ! atrium auricular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7219 ! -property_value: IAO:0000589 "left atrium auricular region (post-embryonic human)" xsd:string -intersection_of: UBERON:0006630 ! left atrium auricular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7218 ! -property_value: IAO:0000589 "right atrium auricular region (post-embryonic human)" xsd:string -intersection_of: UBERON:0006631 ! right atrium auricular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10645 ! -property_value: IAO:0000589 "musculo-phrenic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006632 ! musculo-phrenic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13455 ! -property_value: IAO:0000589 "coracoid process of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0006633 ! coracoid process of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14326 ! -property_value: IAO:0000589 "lingual vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006634 ! lingual vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14627 ! -property_value: IAO:0000589 "anterior abdominal wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0006635 ! anterior abdominal wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14735 ! -property_value: IAO:0000589 "lumbar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006636 ! lumbar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14812 ! -property_value: IAO:0000589 "celiac trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0006637 ! celiac trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16568 ! -property_value: IAO:0000589 "remnant of urachus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006638 ! remnant of urachus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18248 ! -property_value: IAO:0000589 "crus of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006639 ! crus of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20175 ! -property_value: IAO:0000589 "crus of clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0006640 ! crus of clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18268 ! -property_value: IAO:0000589 "appendix epididymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006641 ! appendix epididymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18318 ! -property_value: IAO:0000589 "muscle layer of oviduct (post-embryonic human)" xsd:string -intersection_of: UBERON:0006642 ! muscle layer of oviduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19843 ! -property_value: IAO:0000589 "tunica albuginea of testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006643 ! tunica albuginea of testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18630 ! -property_value: IAO:0000589 "tunica albuginea of ovary (post-embryonic human)" xsd:string -intersection_of: UBERON:0006644 ! tunica albuginea of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19136 ! -property_value: IAO:0000589 "adventitia of epididymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006645 ! adventitia of epididymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19149 ! -property_value: IAO:0000589 "muscle layer of epididymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006646 ! muscle layer of epididymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19238 ! -property_value: IAO:0000589 "adventitia of ductus deferens (post-embryonic human)" xsd:string -intersection_of: UBERON:0006647 ! adventitia of ductus deferens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19403 ! -property_value: IAO:0000589 "adventitia of seminal vesicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006648 ! adventitia of seminal vesicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19822 ! -property_value: IAO:0000589 "suspensory ligament of ovary (post-embryonic human)" xsd:string -intersection_of: UBERON:0006649 ! suspensory ligament of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15863 ! -property_value: IAO:0000589 "tunica vaginalis testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006650 ! tunica vaginalis testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19844 ! -property_value: IAO:0000589 "tunica vaginalis testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006650 ! tunica vaginalis testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19846 ! -property_value: IAO:0000589 "appendix testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006651 ! appendix testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19976 ! -property_value: IAO:0000589 "muscular layer of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0006652 ! muscular layer of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19999 ! -property_value: IAO:0000589 "glans clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0006653 ! glans clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20274 ! -property_value: IAO:0000589 "perineal body (post-embryonic human)" xsd:string -intersection_of: UBERON:0006654 ! perineal body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20729 ! -property_value: IAO:0000589 "septum of scrotum (post-embryonic human)" xsd:string -intersection_of: UBERON:0006655 ! septum of scrotum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21354 ! -property_value: IAO:0000589 "deep dorsal vein of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006656 ! deep dorsal vein of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23275 ! -property_value: IAO:0000589 "glenoid fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0006657 ! glenoid fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42765 ! -property_value: IAO:0000589 "interphalangeal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0006658 ! interphalangeal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44611 ! -property_value: IAO:0000589 "cruciate ligament of knee (post-embryonic human)" xsd:string -intersection_of: UBERON:0006659 ! cruciate ligament of knee -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46768 ! -property_value: IAO:0000589 "epicranial aponeurosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006661 ! epicranial aponeurosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4732 ! -property_value: IAO:0000589 "musculo-phrenic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006662 ! musculo-phrenic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4944 ! -property_value: IAO:0000589 "hemiazygos vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006663 ! hemiazygos vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49795 ! -property_value: IAO:0000589 "greater palatine artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006664 ! greater palatine artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5011 ! -property_value: IAO:0000589 "accessory hemiazygos vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006665 ! accessory hemiazygos vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50993 ! -property_value: IAO:0000589 "great cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006666 ! great cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54721 ! -property_value: IAO:0000589 "pituitary fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0006667 ! pituitary fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55805 ! -property_value: IAO:0000589 "carotid canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006668 ! carotid canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57743 ! -property_value: IAO:0000589 "alveolar canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006669 ! alveolar canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58279 ! -property_value: IAO:0000589 "central tendon of diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0006670 ! central tendon of diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59005 ! -property_value: IAO:0000589 "orbital fat pad (post-embryonic human)" xsd:string -intersection_of: UBERON:0006671 ! orbital fat pad -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59107 ! -property_value: IAO:0000589 "incisive canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006672 ! incisive canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59473 ! -property_value: IAO:0000589 "mandibular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006673 ! mandibular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65075 ! -property_value: IAO:0000589 "inguinal ring (post-embryonic human)" xsd:string -intersection_of: UBERON:0006674 ! inguinal ring -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68095 ! -property_value: IAO:0000589 "venous valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0006675 ! venous valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68413 ! -property_value: IAO:0000589 "muscularis mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0006676 ! muscularis mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70997 ! -property_value: IAO:0000589 "surface of epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006677 ! surface of epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71105 ! -property_value: IAO:0000589 "foramen secundum (post-embryonic human)" xsd:string -intersection_of: UBERON:0006678 ! foramen secundum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7465 ! -property_value: IAO:0000589 "carina of trachea (post-embryonic human)" xsd:string -intersection_of: UBERON:0006679 ! carina of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7466 ! -property_value: IAO:0000589 "trachealis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006680 ! trachealis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74869 ! -property_value: IAO:0000589 "interthalamic adhesion (post-embryonic human)" xsd:string -intersection_of: UBERON:0006681 ! interthalamic adhesion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75370 ! -property_value: IAO:0000589 "hypoglossal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006682 ! hypoglossal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75440 ! -property_value: IAO:0000589 "posterior fontanelle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006683 ! posterior fontanelle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75441 ! -property_value: IAO:0000589 "sphenoidal fontanelle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006684 ! sphenoidal fontanelle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75746 ! -property_value: IAO:0000589 "pharyngeal tubercle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006685 ! pharyngeal tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76735 ! -property_value: IAO:0000589 "spinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006686 ! spinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77168 ! -property_value: IAO:0000589 "median sacral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0006687 ! median sacral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77273 ! -property_value: IAO:0000589 "sublingual caruncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006688 ! sublingual caruncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54659 ! -property_value: IAO:0000589 "frenulum of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0006689 ! frenulum of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77504 ! -property_value: IAO:0000589 "deep dorsal vein of clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0006690 ! deep dorsal vein of clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83966 ! -property_value: IAO:0000589 "tentorium cerebelli (post-embryonic human)" xsd:string -intersection_of: UBERON:0006691 ! tentorium cerebelli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9680 ! -property_value: IAO:0000589 "vertebral canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0006692 ! vertebral canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:268519 ! -property_value: IAO:0000589 "cerebellum vasculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0006694 ! cerebellum vasculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83849 ! -property_value: IAO:0000589 "mammillothalamic axonal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0006696 ! mammillothalamic axonal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62058 ! -property_value: IAO:0000589 "mammillotegmental axonal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0006698 ! mammillotegmental axonal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54828 ! -property_value: IAO:0000589 "foramen cecum of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0006699 ! foramen cecum of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57443 ! -property_value: IAO:0000589 "foramen cecum of frontal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0006713 ! foramen cecum of frontal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49011 ! -property_value: IAO:0000589 "medial pterygoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006718 ! medial pterygoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49015 ! -property_value: IAO:0000589 "lateral pterygoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006719 ! lateral pterygoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52868 ! -property_value: IAO:0000589 "alisphenoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0006721 ! alisphenoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52760 ! -property_value: IAO:0000589 "manubrium of malleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006722 ! manubrium of malleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61278 ! -property_value: IAO:0000589 "cochlear modiolus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006723 ! cochlear modiolus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77710 ! -property_value: IAO:0000589 "osseus spiral lamina (post-embryonic human)" xsd:string -intersection_of: UBERON:0006724 ! osseus spiral lamina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77834 ! -property_value: IAO:0000589 "spiral ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0006725 ! spiral ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59315 ! -property_value: IAO:0000589 "outer canthus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006726 ! outer canthus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14501 ! -property_value: IAO:0000589 "liver left lateral lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0006727 ! liver left lateral lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14500 ! -property_value: IAO:0000589 "liver left medial lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0006728 ! liver left medial lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63162 ! -property_value: IAO:0000589 "liver perisinusoidal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0006729 ! liver perisinusoidal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59222 ! -property_value: IAO:0000589 "canthus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006742 ! canthus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72540 ! -property_value: IAO:0000589 "paleodentate of dentate nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006743 ! paleodentate of dentate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55558 ! -property_value: IAO:0000589 "superior parathyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0006749 ! superior parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55559 ! -property_value: IAO:0000589 "inferior parathyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0006755 ! inferior parathyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312476 ! -property_value: IAO:0000589 "median lingual swelling (post-embryonic human)" xsd:string -intersection_of: UBERON:0006756 ! median lingual swelling -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:313628 ! -property_value: IAO:0000589 "lateral lingual swelling (post-embryonic human)" xsd:string -intersection_of: UBERON:0006757 ! lateral lingual swelling -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58342 ! -property_value: IAO:0000589 "corneo-scleral junction (post-embryonic human)" xsd:string -intersection_of: UBERON:0006761 ! corneo-scleral junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58838 ! -property_value: IAO:0000589 "suspensory ligament of lens (post-embryonic human)" xsd:string -intersection_of: UBERON:0006762 ! suspensory ligament of lens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62131 ! -property_value: IAO:0000589 "epithelium of conjunctiva (post-embryonic human)" xsd:string -intersection_of: UBERON:0006763 ! epithelium of conjunctiva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50169 ! -property_value: IAO:0000589 "anterior communicating artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0006764 ! anterior communicating artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4720 ! -property_value: IAO:0000589 "right anterior vena cava (post-embryonic human)" xsd:string -intersection_of: UBERON:0006766 ! right anterior vena cava -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32851 ! -property_value: IAO:0000589 "head of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0006767 ! head of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9918 ! -property_value: IAO:0000589 "epiphyseal line (post-embryonic human)" xsd:string -intersection_of: UBERON:0006768 ! epiphyseal line -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75428 ! -property_value: IAO:0000589 "apophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006770 ! apophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75792 ! -property_value: IAO:0000589 "annular epiphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006776 ! annular epiphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77488 ! -property_value: IAO:0000589 "tectal plate (post-embryonic human)" xsd:string -intersection_of: UBERON:0006777 ! tectal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71112 ! -property_value: IAO:0000589 "superficial white layer of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006779 ! superficial white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72406 ! -property_value: IAO:0000589 "zonal layer of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006780 ! zonal layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72408 ! -property_value: IAO:0000589 "stratum lemnisci of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006782 ! stratum lemnisci of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77870 ! -property_value: IAO:0000589 "gray matter layer of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006785 ! gray matter layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83899 ! -property_value: IAO:0000589 "white matter of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006786 ! white matter of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71113 ! -property_value: IAO:0000589 "middle white layer of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006787 ! middle white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72409 ! -property_value: IAO:0000589 "middle gray layer of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006788 ! middle gray layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72410 ! -property_value: IAO:0000589 "deep gray layer of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006789 ! deep gray layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72416 ! -property_value: IAO:0000589 "deep white layer of superior colliculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006790 ! deep white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5867 ! -property_value: IAO:0000589 "efferent nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0006798 ! efferent nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9657 ! -property_value: IAO:0000589 "anatomical line (post-embryonic human)" xsd:string -intersection_of: UBERON:0006800 ! anatomical line -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13304 ! -property_value: IAO:0000589 "proximal head of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006801 ! proximal head of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16941 ! -property_value: IAO:0000589 "acetabular rim (post-embryonic human)" xsd:string -intersection_of: UBERON:0006802 ! acetabular rim -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16999 ! -property_value: IAO:0000589 "obturator foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0006803 ! obturator foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20116 ! -property_value: IAO:0000589 "reticular tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0006804 ! reticular tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23297 ! -property_value: IAO:0000589 "sternal end of clavicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006805 ! sternal end of clavicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23441 ! -property_value: IAO:0000589 "entepicondyle of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006806 ! entepicondyle of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23442 ! -property_value: IAO:0000589 "ectepicondyle of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006807 ! ectepicondyle of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:39795 ! -property_value: IAO:0000589 "olecranon (post-embryonic human)" xsd:string -intersection_of: UBERON:0006810 ! olecranon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52861 ! -property_value: IAO:0000589 "occipital condyle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006811 ! occipital condyle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53171 ! -property_value: IAO:0000589 "mental foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0006812 ! mental foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60116 ! -property_value: IAO:0000589 "nasal skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0006813 ! nasal skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63897 ! -property_value: IAO:0000589 "areolar connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0006815 ! areolar connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7487 ! -property_value: IAO:0000589 "body of sternum (post-embryonic human)" xsd:string -intersection_of: UBERON:0006820 ! body of sternum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74996 ! -property_value: IAO:0000589 "cutaneous muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006821 ! cutaneous muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33751 ! -property_value: IAO:0000589 "proximal epiphysis of ulna (post-embryonic human)" xsd:string -intersection_of: UBERON:0006822 ! proximal epiphysis of ulna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7469 ! -property_value: IAO:0000589 "lumen of trachea (post-embryonic human)" xsd:string -intersection_of: UBERON:0006833 ! lumen of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56002 ! -property_value: IAO:0000589 "tegmen tympani (post-embryonic human)" xsd:string -intersection_of: UBERON:0006837 ! tegmen tympani -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5982 ! -property_value: IAO:0000589 "ventral ramus of spinal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0006838 ! ventral ramus of spinal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5983 ! -property_value: IAO:0000589 "dorsal ramus of spinal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0006839 ! dorsal ramus of spinal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84025 ! -property_value: IAO:0000589 "nucleus of lateral lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006840 ! nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17544 ! -property_value: IAO:0000589 "central vein of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0006841 ! central vein of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5028 ! -property_value: IAO:0000589 "lymphatic capillary (post-embryonic human)" xsd:string -intersection_of: UBERON:0006842 ! lymphatic capillary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52609 ! -property_value: IAO:0000589 "root of cranial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0006843 ! root of cranial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56481 ! -property_value: IAO:0000589 "cusp of tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0006844 ! cusp of tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74997 ! -property_value: IAO:0000589 "abductor muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0006845 ! abductor muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77522 ! -property_value: IAO:0000589 "cerebellar commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0006847 ! cerebellar commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84355 ! -property_value: IAO:0000589 "posterior pretectal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0006848 ! posterior pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13394 ! -property_value: IAO:0000589 "scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0006849 ! scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15893 ! -property_value: IAO:0000589 "muscular coat of ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0006855 ! muscular coat of ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32688 ! -property_value: IAO:0000589 "diaphysis proper (post-embryonic human)" xsd:string -intersection_of: UBERON:0006861 ! diaphysis proper -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32847 ! -property_value: IAO:0000589 "diaphysis of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0006862 ! diaphysis of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32878 ! -property_value: IAO:0000589 "proximal metaphysis of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0006863 ! proximal metaphysis of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32881 ! -property_value: IAO:0000589 "distal metaphysis of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0006864 ! distal metaphysis of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32875 ! -property_value: IAO:0000589 "metaphysis of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0006865 ! metaphysis of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20347 ! -property_value: IAO:0000589 "anal part of perineum (post-embryonic human)" xsd:string -intersection_of: UBERON:0006867 ! anal part of perineum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296800 ! -property_value: IAO:0000589 "embryonic footplate (post-embryonic human)" xsd:string -intersection_of: UBERON:0006871 ! embryonic footplate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296794 ! -property_value: IAO:0000589 "embryonic handplate (post-embryonic human)" xsd:string -intersection_of: UBERON:0006875 ! embryonic handplate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74612 ! -property_value: IAO:0000589 "vasculature of organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0006876 ! vasculature of organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73748 ! -property_value: IAO:0000589 "vasculature of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0006877 ! vasculature of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86479 ! -property_value: IAO:0000589 "decidua parietalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006878 ! decidua parietalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293859 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59519 ! -property_value: IAO:0000589 "ala of nose (post-embryonic human)" xsd:string -intersection_of: UBERON:0006906 ! ala of nose -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45677 ! -property_value: IAO:0000589 "lumen of digestive tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0006909 ! lumen of digestive tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45563 ! -property_value: IAO:0000589 "stratified squamous epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006915 ! stratified squamous epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62130 ! -property_value: IAO:0000589 "non-keratinized epithelium of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0006916 ! non-keratinized epithelium of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74908 ! -property_value: IAO:0000589 "parakeratinized epithelium of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0006918 ! parakeratinized epithelium of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63458 ! -property_value: IAO:0000589 "stomach glandular epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006924 ! stomach glandular epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64800 ! -property_value: IAO:0000589 "glandular columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006929 ! glandular columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66809 ! -property_value: IAO:0000589 "glandular cuboidal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006930 ! glandular cuboidal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75606 ! -property_value: IAO:0000589 "vestibular epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006932 ! vestibular epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62410 ! -property_value: IAO:0000589 "sensory epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006934 ! sensory epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75636 ! -property_value: IAO:0000589 "crista ampullaris neuroepithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006935 ! crista ampullaris neuroepithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19081 ! -property_value: IAO:0000589 "efferent duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0006946 ! efferent duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55678 ! -property_value: IAO:0000589 "male genital duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0006947 ! male genital duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19195 ! -property_value: IAO:0000589 "efferent duct epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006948 ! efferent duct epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67798 ! -property_value: IAO:0000589 "mammary gland myoepithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0006954 ! mammary gland myoepithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59785 ! -property_value: IAO:0000589 "buccal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0006956 ! buccal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4707 ! -property_value: IAO:0000589 "great vein of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0006958 ! great vein of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:294636 ! -property_value: IAO:0000589 "mandible angular process (post-embryonic human)" xsd:string -intersection_of: UBERON:0006959 ! mandible angular process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18626 ! -property_value: IAO:0000589 "ovary stroma (post-embryonic human)" xsd:string -intersection_of: UBERON:0006960 ! ovary stroma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74630 ! -property_value: IAO:0000589 "pars distalis of adenohypophysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9658 ! -property_value: IAO:0000589 "anatomical point (post-embryonic human)" xsd:string -intersection_of: UBERON:0006983 ! anatomical point -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24137 ! -property_value: IAO:0000589 "anatomical surface (post-embryonic human)" xsd:string -intersection_of: UBERON:0006984 ! anatomical surface -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293143 ! -property_value: IAO:0000589 "cardiogenic splanchnic mesoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0007005 ! cardiogenic splanchnic mesoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14728 ! -property_value: IAO:0000589 "Douglas' pouch (post-embryonic human)" xsd:string -intersection_of: UBERON:0007111 ! Douglas' pouch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55655 ! -property_value: IAO:0000589 "deciduous tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0007115 ! deciduous tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75151 ! -property_value: IAO:0000589 "primary dentition (post-embryonic human)" xsd:string -intersection_of: UBERON:0007116 ! primary dentition -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61584 ! -property_value: IAO:0000589 "umbilicus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007118 ! umbilicus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42385 ! -property_value: IAO:0000589 "neck of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0007119 ! neck of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55637 ! -property_value: IAO:0000589 "premolar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0007120 ! premolar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80301 ! -property_value: IAO:0000589 "skin nerve field (post-embryonic human)" xsd:string -intersection_of: UBERON:0007121 ! skin nerve field -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295668 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295676 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295682 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295688 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16533 ! -property_value: IAO:0000589 "rectouterine fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0007136 ! rectouterine fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4062 ! -property_value: IAO:0000589 "left internal carotid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007142 ! left internal carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3949 ! -property_value: IAO:0000589 "right internal carotid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007143 ! right internal carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85540 ! -property_value: IAO:0000589 "embryonic post-anal tail (post-embryonic human)" xsd:string -intersection_of: UBERON:0007144 ! embryonic post-anal tail -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13332 ! -property_value: IAO:0000589 "dome of diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0007145 ! dome of diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50522 ! -property_value: IAO:0000589 "posterior spinal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007146 ! posterior spinal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54366 ! -property_value: IAO:0000589 "lumen of midgut (post-embryonic human)" xsd:string -intersection_of: UBERON:0007147 ! lumen of midgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54367 ! -property_value: IAO:0000589 "lumen of hindgut (post-embryonic human)" xsd:string -intersection_of: UBERON:0007148 ! lumen of hindgut -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10662 ! -property_value: IAO:0000589 "inferior thyroid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007149 ! inferior thyroid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49472 ! -property_value: IAO:0000589 "superior thyroid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007150 ! superior thyroid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7241 ! -property_value: IAO:0000589 "mitral valve leaflet (post-embryonic human)" xsd:string -intersection_of: UBERON:0007151 ! mitral valve leaflet -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50768 ! -property_value: IAO:0000589 "inferior sagittal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007152 ! inferior sagittal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10646 ! -property_value: IAO:0000589 "superior epigastric artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007153 ! superior epigastric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21162 ! -property_value: IAO:0000589 "inferior epigastric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007154 ! inferior epigastric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4731 ! -property_value: IAO:0000589 "superior epigastric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007155 ! superior epigastric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4728 ! -property_value: IAO:0000589 "inferior thyroid vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007156 ! inferior thyroid vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14323 ! -property_value: IAO:0000589 "superior thyroid vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007157 ! superior thyroid vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17357 ! -property_value: IAO:0000589 "lumen of anal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0007158 ! lumen of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18374 ! -property_value: IAO:0000589 "lumen of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0007159 ! lumen of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50770 ! -property_value: IAO:0000589 "inferior petrosal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007160 ! inferior petrosal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58282 ! -property_value: IAO:0000589 "medial arcuate ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0007161 ! medial arcuate ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58283 ! -property_value: IAO:0000589 "lateral arcuate ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0007162 ! lateral arcuate ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53138 ! -property_value: IAO:0000589 "superior nasal meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007163 ! superior nasal meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57480 ! -property_value: IAO:0000589 "superior nasal meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007163 ! superior nasal meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35290 ! -property_value: IAO:0000589 "distal radio-ulnar joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0007164 ! distal radio-ulnar joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38860 ! -property_value: IAO:0000589 "proximal radio-ulnar joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0007165 ! proximal radio-ulnar joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13334 ! -property_value: IAO:0000589 "left dome of diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0007166 ! left dome of diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13333 ! -property_value: IAO:0000589 "right dome of diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0007167 ! right dome of diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37683 ! -property_value: IAO:0000589 "long head of biceps brachii (post-embryonic human)" xsd:string -intersection_of: UBERON:0007168 ! long head of biceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37682 ! -property_value: IAO:0000589 "short head of biceps brachii (post-embryonic human)" xsd:string -intersection_of: UBERON:0007169 ! short head of biceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52860 ! -property_value: IAO:0000589 "squamous part of occipital bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0007170 ! squamous part of occipital bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23797 ! -property_value: IAO:0000589 "border of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0007171 ! border of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23800 ! -property_value: IAO:0000589 "angle of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0007172 ! angle of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23239 ! -property_value: IAO:0000589 "lateral border of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0007173 ! lateral border of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23242 ! -property_value: IAO:0000589 "medial border of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0007174 ! medial border of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13315 ! -property_value: IAO:0000589 "inferior angle of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0007175 ! inferior angle of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23248 ! -property_value: IAO:0000589 "superior angle of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0007176 ! superior angle of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15657 ! -property_value: IAO:0000589 "lamina propria of mucosa of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0007177 ! lamina propria of mucosa of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15656 ! -property_value: IAO:0000589 "muscularis mucosae of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0007178 ! muscularis mucosae of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84154 ! -property_value: IAO:0000589 "basal cell layer of urothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007179 ! basal cell layer of urothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18697 ! -property_value: IAO:0000589 "atretic follicle of ovary (post-embryonic human)" xsd:string -intersection_of: UBERON:0007180 ! atretic follicle of ovary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18324 ! -property_value: IAO:0000589 "serosa of infundibulum of uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0007181 ! serosa of infundibulum of uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18336 ! -property_value: IAO:0000589 "muscle layer of infundibulum of uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0007182 ! muscle layer of infundibulum of uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19741 ! -property_value: IAO:0000589 "pericardial visceral mesothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007186 ! pericardial visceral mesothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19742 ! -property_value: IAO:0000589 "pericardial parietal mesothelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007187 ! pericardial parietal mesothelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18149 ! -property_value: IAO:0000589 "mesothelium of serous pericardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007188 ! mesothelium of serous pericardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77537 ! -property_value: IAO:0000589 "paracentral gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007190 ! paracentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77537 ! -property_value: IAO:0000589 "anterior paracentral gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007191 ! anterior paracentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77538 ! -property_value: IAO:0000589 "posterior paracentral gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007192 ! posterior paracentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256194 ! -property_value: IAO:0000589 "orbital gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007193 ! orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21426 ! -property_value: IAO:0000589 "stroma of bone marrow (post-embryonic human)" xsd:string -intersection_of: UBERON:0007195 ! stroma of bone marrow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7393 ! -property_value: IAO:0000589 "tracheobronchial tree (post-embryonic human)" xsd:string -intersection_of: UBERON:0007196 ! tracheobronchial tree -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63631 ! -property_value: IAO:0000589 "late embryonic stage (post-embryonic human)" xsd:string -intersection_of: UBERON:0007220 ! late embryonic stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: FMA:54617 ! -property_value: IAO:0000589 "superior vestibular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007227 ! superior vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54602 ! -property_value: IAO:0000589 "vestibular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007228 ! vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54614 ! -property_value: IAO:0000589 "lateral vestibular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007230 ! lateral vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14273 ! -property_value: IAO:0000589 "tunica media of artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007239 ! tunica media of artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14274 ! -property_value: IAO:0000589 "tunica adventitia of artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007240 ! tunica adventitia of artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14355 ! -property_value: IAO:0000589 "tunica adventitia of vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007241 ! tunica adventitia of vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14353 ! -property_value: IAO:0000589 "tunica intima of vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007242 ! tunica intima of vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14354 ! -property_value: IAO:0000589 "tunica media of vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007243 ! tunica media of vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256381 ! -property_value: IAO:0000589 "nuclear complex of neuraxis (post-embryonic human)" xsd:string -intersection_of: UBERON:0007245 ! nuclear complex of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84059 ! -property_value: IAO:0000589 "nuclear complex of neuraxis (post-embryonic human)" xsd:string -intersection_of: UBERON:0007245 ! nuclear complex of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72246 ! -property_value: IAO:0000589 "nucleus of superior olivary complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0007247 ! nucleus of superior olivary complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72593 ! -property_value: IAO:0000589 "dorsal accessory inferior olivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007249 ! dorsal accessory inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54836 ! -property_value: IAO:0000589 "lingual tonsil (post-embryonic human)" xsd:string -intersection_of: UBERON:0007250 ! lingual tonsil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13895 ! -property_value: IAO:0000589 "intervertebral disk of cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007252 ! intervertebral disk of cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10455 ! -property_value: IAO:0000589 "intervertebral disk of thoracic vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007254 ! intervertebral disk of thoracic vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13894 ! -property_value: IAO:0000589 "intervertebral disk of lumbar vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007255 ! intervertebral disk of lumbar vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:268676 ! -property_value: IAO:0000589 "intervertebral disk of sacral vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007257 ! intervertebral disk of sacral vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13896 ! -property_value: IAO:0000589 "intervertebral disk of third cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007260 ! intervertebral disk of third cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13897 ! -property_value: IAO:0000589 "intervertebral disk of fourth cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13898 ! -property_value: IAO:0000589 "intervertebral disk of fifth cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13899 ! -property_value: IAO:0000589 "intervertebral disk of sixth cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007263 ! intervertebral disk of sixth cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13900 ! -property_value: IAO:0000589 "intervertebral disk of seventh cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0007264 ! intervertebral disk of seventh cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25058 ! -property_value: IAO:0000589 "intervertebral disk of axis (post-embryonic human)" xsd:string -intersection_of: UBERON:0007265 ! intervertebral disk of axis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265203 ! -property_value: IAO:0000589 "upper esophageal sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0007268 ! upper esophageal sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75610 ! -property_value: IAO:0000589 "crista of ampulla of anterior semicircular duct of membranous laybrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0007274 ! crista of ampulla of anterior semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75611 ! -property_value: IAO:0000589 "crista of ampulla of posterior semicircular duct of membranous laybrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0007275 ! crista of ampulla of posterior semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75612 ! -property_value: IAO:0000589 "crista of ampulla of lateral semicircular duct of membranous laybrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0007276 ! crista of ampulla of lateral semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295640 ! -property_value: IAO:0000589 "presumptive hindbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0007277 ! presumptive hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312401 ! -property_value: IAO:0000589 "sputum (post-embryonic human)" xsd:string -intersection_of: UBERON:0007311 ! sputum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18835 ! -property_value: IAO:0000589 "internal pudendal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007315 ! internal pudendal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20739 ! -property_value: IAO:0000589 "deep external pudendal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007316 ! deep external pudendal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20738 ! -property_value: IAO:0000589 "superficial external pudendal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007317 ! superficial external pudendal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44322 ! -property_value: IAO:0000589 "medial saphenous vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007319 ! medial saphenous vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44321 ! -property_value: IAO:0000589 "lateral saphenous vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0007321 ! lateral saphenous vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16012 ! -property_value: IAO:0000589 "pancreatic lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0007324 ! pancreatic lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10419 ! -property_value: IAO:0000589 "pancreatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0007329 ! pancreatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60096 ! -property_value: IAO:0000589 "cartilage of pharyngotympanic tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0007354 ! cartilage of pharyngotympanic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60057 ! -property_value: IAO:0000589 "bony part of pharyngotympanic tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0007355 ! bony part of pharyngotympanic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54647 ! -property_value: IAO:0000589 "surface of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0007367 ! surface of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54646 ! -property_value: IAO:0000589 "superior surface of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0007371 ! superior surface of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54648 ! -property_value: IAO:0000589 "inferior surface of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0007373 ! inferior surface of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77787 ! -property_value: IAO:0000589 "midbrain raphe nuclei (post-embryonic human)" xsd:string -intersection_of: UBERON:0007412 ! midbrain raphe nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72245 ! -property_value: IAO:0000589 "nucleus of pontine reticular formation (post-embryonic human)" xsd:string -intersection_of: UBERON:0007413 ! nucleus of pontine reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258768 ! -property_value: IAO:0000589 "nucleus of midbrain tegmentum (post-embryonic human)" xsd:string -intersection_of: UBERON:0007414 ! nucleus of midbrain tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62443 ! -property_value: IAO:0000589 "nucleus of midbrain reticular formation (post-embryonic human)" xsd:string -intersection_of: UBERON:0007415 ! nucleus of midbrain reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272298 ! -property_value: IAO:0000589 "cerebellar peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0007416 ! cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83860 ! -property_value: IAO:0000589 "peduncle of neuraxis (post-embryonic human)" xsd:string -intersection_of: UBERON:0007417 ! peduncle of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83858 ! -property_value: IAO:0000589 "neural decussation (post-embryonic human)" xsd:string -intersection_of: UBERON:0007418 ! neural decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62446 ! -property_value: IAO:0000589 "decussation of diencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0007425 ! decussation of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62016 ! -property_value: IAO:0000589 "ciliated columnar oviduct epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007589 ! ciliated columnar oviduct epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64798 ! -property_value: IAO:0000589 "ciliated columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007592 ! ciliated columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45564 ! -property_value: IAO:0000589 "stratified columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007602 ! stratified columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63912 ! -property_value: IAO:0000589 "stratified cuboidal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007603 ! stratified cuboidal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67521 ! -property_value: IAO:0000589 "ciliated stratified columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0007606 ! ciliated stratified columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38500 ! -property_value: IAO:0000589 "extensor digitorum communis (post-embryonic human)" xsd:string -intersection_of: UBERON:0007612 ! extensor digitorum communis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38503 ! -property_value: IAO:0000589 "extensor digiti minimi muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0007614 ! extensor digiti minimi muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66762 ! -property_value: IAO:0000589 "layer of synovial tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0007616 ! layer of synovial tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11356 ! -property_value: IAO:0000589 "synovial cavity of joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0007617 ! synovial cavity of joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9701 ! -property_value: IAO:0000589 "synovial cavity of hip joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0007618 ! synovial cavity of hip joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84023 ! -property_value: IAO:0000589 "nucleus of trapezoid body (post-embryonic human)" xsd:string -intersection_of: UBERON:0007633 ! nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258772 ! -property_value: IAO:0000589 "nucleus of medulla oblongata (post-embryonic human)" xsd:string -intersection_of: UBERON:0007635 ! nucleus of medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83867 ! -property_value: IAO:0000589 "hippocampus alveus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007639 ! hippocampus alveus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83149 ! -property_value: IAO:0000589 "hippocampus stratum lacunosum moleculare (post-embryonic human)" xsd:string -intersection_of: UBERON:0007640 ! hippocampus stratum lacunosum moleculare -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71248 ! -property_value: IAO:0000589 "trigeminal nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0007641 ! trigeminal nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13421 ! -property_value: IAO:0000589 "ligamentum arteriosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0007642 ! ligamentum arteriosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74033 ! -property_value: IAO:0000589 "node of ligamentum arteriosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0007643 ! node of ligamentum arteriosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12772 ! -property_value: IAO:0000589 "thoracic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0007644 ! thoracic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9434 ! -property_value: IAO:0000589 "esophagogastric junction (post-embryonic human)" xsd:string -intersection_of: UBERON:0007650 ! esophagogastric junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5898 ! -property_value: IAO:0000589 "anatomical junction (post-embryonic human)" xsd:string -intersection_of: UBERON:0007651 ! anatomical junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78470 ! -property_value: IAO:0000589 "lateral recess of fourth ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0007656 ! lateral recess of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38872 ! -property_value: IAO:0000589 "anular ligament of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0007657 ! anular ligament of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17691 ! -property_value: IAO:0000589 "uriniferous tubule (post-embryonic human)" xsd:string -intersection_of: UBERON:0007684 ! uriniferous tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17692 ! -property_value: IAO:0000589 "region of nephron tubule (post-embryonic human)" xsd:string -intersection_of: UBERON:0007685 ! region of nephron tubule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293087 ! -property_value: IAO:0000589 "early pharyngeal endoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0007690 ! early pharyngeal endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63589 ! -property_value: IAO:0000589 "gustatory pore (post-embryonic human)" xsd:string -intersection_of: UBERON:0007691 ! gustatory pore -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256693 ! -property_value: IAO:0000589 "nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007692 ! nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49828 ! -property_value: IAO:0000589 "caroticotympanic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007693 ! caroticotympanic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75683 ! -property_value: IAO:0000589 "tract of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0007699 ! tract of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83848 ! -property_value: IAO:0000589 "tract of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0007702 ! tract of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72495 ! -property_value: IAO:0000589 "superior cerebellar peduncle of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0007709 ! superior cerebellar peduncle of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77485 ! -property_value: IAO:0000589 "intermediate nucleus of lateral lemniscus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007710 ! intermediate nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6319 ! -property_value: IAO:0000589 "sixth cervical dorsal root ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0007711 ! sixth cervical dorsal root ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6324 ! -property_value: IAO:0000589 "fourth thoracic spinal ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0007712 ! fourth thoracic spinal ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6345 ! -property_value: IAO:0000589 "fourth sacral spinal ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0007713 ! fourth sacral spinal ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256653 ! -property_value: IAO:0000589 "cervical subsegment of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0007714 ! cervical subsegment of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256655 ! -property_value: IAO:0000589 "thoracic subsegment of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0007715 ! thoracic subsegment of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256657 ! -property_value: IAO:0000589 "lumbar subsegment of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0007716 ! lumbar subsegment of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256659 ! -property_value: IAO:0000589 "sacral subsegment of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0007717 ! sacral subsegment of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35225 ! -property_value: IAO:0000589 "interphalangeal joint of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0007721 ! interphalangeal joint of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35285 ! -property_value: IAO:0000589 "interphalangeal joint of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007722 ! interphalangeal joint of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35312 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007723 ! interphalangeal joint of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35353 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007724 ! interphalangeal joint of pedal digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35356 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007725 ! interphalangeal joint of pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35359 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007726 ! interphalangeal joint of pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35362 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007727 ! interphalangeal joint of pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35365 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007728 ! interphalangeal joint of pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35397 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007729 ! interphalangeal joint of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35400 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007730 ! interphalangeal joint of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35403 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007731 ! interphalangeal joint of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35407 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007732 ! interphalangeal joint of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35249 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007735 ! metacarpophalangeal joint of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35252 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007738 ! metacarpophalangeal joint of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35255 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007741 ! metacarpophalangeal joint of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35258 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007744 ! metacarpophalangeal joint of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35261 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007747 ! metacarpophalangeal joint of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35228 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007750 ! metatarsophalangeal joint of pedal digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35231 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007753 ! metatarsophalangeal joint of pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35234 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007756 ! metatarsophalangeal joint of pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35237 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007759 ! metatarsophalangeal joint of pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35240 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0007762 ! metatarsophalangeal joint of pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83886 ! -property_value: IAO:0000589 "cerebellum vermis culmen (post-embryonic human)" xsd:string -intersection_of: UBERON:0007763 ! cerebellum vermis culmen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72583 ! -property_value: IAO:0000589 "paramedian reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007764 ! paramedian reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77006 ! -property_value: IAO:0000589 "dorsal premammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007767 ! dorsal premammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77007 ! -property_value: IAO:0000589 "ventral premammillary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007768 ! ventral premammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59153 ! -property_value: IAO:0000589 "epidermis gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0007771 ! epidermis gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73266 ! -property_value: IAO:0000589 "scrotal sweat (post-embryonic human)" xsd:string -intersection_of: UBERON:0007772 ! scrotal sweat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75152 ! -property_value: IAO:0000589 "secondary dentition (post-embryonic human)" xsd:string -intersection_of: UBERON:0007774 ! secondary dentition -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55654 ! -property_value: IAO:0000589 "secondary tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0007775 ! secondary tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12276 ! -property_value: IAO:0000589 "transudate (post-embryonic human)" xsd:string -intersection_of: UBERON:0007779 ! transudate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19922 ! -property_value: IAO:0000589 "fascia of Camper (post-embryonic human)" xsd:string -intersection_of: UBERON:0007809 ! fascia of Camper -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:280881 ! -property_value: IAO:0000589 "craniocervical region (post-embryonic human)" xsd:string -intersection_of: UBERON:0007811 ! craniocervical region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59504 ! -property_value: IAO:0000589 "major alar cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0007818 ! major alar cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59507 ! -property_value: IAO:0000589 "minor alar cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0007819 ! minor alar cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59510 ! -property_value: IAO:0000589 "accessory nasal cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0007820 ! accessory nasal cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59511 ! -property_value: IAO:0000589 "lateral nasal cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0007821 ! lateral nasal cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59514 ! -property_value: IAO:0000589 "vomeronasal cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0007822 ! vomeronasal cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24874 ! -property_value: IAO:0000589 "appendage girdle region (post-embryonic human)" xsd:string -intersection_of: UBERON:0007823 ! appendage girdle region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77849 ! -property_value: IAO:0000589 "reticular membrane of spiral organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0007825 ! reticular membrane of spiral organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20570 ! -property_value: IAO:0000589 "peritoneal mesentery (post-embryonic human)" xsd:string -intersection_of: UBERON:0007826 ! peritoneal mesentery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59515 ! -property_value: IAO:0000589 "external nose (post-embryonic human)" xsd:string -intersection_of: UBERON:0007827 ! external nose -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24141 ! -property_value: IAO:0000589 "pectoral girdle skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0007831 ! pectoral girdle skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87592 ! -property_value: IAO:0000589 "pelvic girdle skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0007832 ! pelvic girdle skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77033 ! -property_value: IAO:0000589 "spinal cord white commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0007838 ! spinal cord white commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77034 ! -property_value: IAO:0000589 "spinal cord dorsal white commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0007840 ! spinal cord dorsal white commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55107 ! -property_value: IAO:0000589 "cartilage element (post-embryonic human)" xsd:string -intersection_of: UBERON:0007844 ! cartilage element -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20103 ! -property_value: IAO:0000589 "regular connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0007845 ! regular connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64781 ! -property_value: IAO:0000589 "dense regular connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0007846 ! dense regular connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321692 ! -property_value: IAO:0000589 "central carpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0007958 ! central carpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42353 ! -property_value: IAO:0000589 "sesamoid bone of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0007997 ! sesamoid bone of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45096 ! -property_value: IAO:0000589 "sesamoid bone of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0008000 ! sesamoid bone of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7477 ! -property_value: IAO:0000589 "irregular bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0008001 ! irregular bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76668 ! -property_value: IAO:0000589 "surface of cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0008115 ! surface of cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38152 ! -property_value: IAO:0000589 "tendon of biceps brachii (post-embryonic human)" xsd:string -intersection_of: UBERON:0008188 ! tendon of biceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38380 ! -property_value: IAO:0000589 "tendon of triceps brachii (post-embryonic human)" xsd:string -intersection_of: UBERON:0008192 ! tendon of triceps brachii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7478 ! -property_value: IAO:0000589 "pneumatized bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0008193 ! pneumatized bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37347 ! -property_value: IAO:0000589 "muscle of pectoral girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008196 ! muscle of pectoral girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46495 ! -property_value: IAO:0000589 "chin (post-embryonic human)" xsd:string -intersection_of: UBERON:0008199 ! chin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63864 ! -property_value: IAO:0000589 "forehead (post-embryonic human)" xsd:string -intersection_of: UBERON:0008200 ! forehead -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42854 ! -property_value: IAO:0000589 "bone of hip region (post-embryonic human)" xsd:string -intersection_of: UBERON:0008202 ! bone of hip region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9738 ! -property_value: IAO:0000589 "pelvic cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0008203 ! pelvic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24217 ! -property_value: IAO:0000589 "dorsal thoracic segment of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0008231 ! dorsal thoracic segment of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74993 ! -property_value: IAO:0000589 "pennate muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008245 ! pennate muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13322 ! -property_value: IAO:0000589 "right clavicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008255 ! right clavicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13323 ! -property_value: IAO:0000589 "left clavicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008256 ! left clavicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56665 ! -property_value: IAO:0000589 "periodontal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0008266 ! periodontal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:306006 ! -property_value: IAO:0000589 "tooth bud (post-embryonic human)" xsd:string -intersection_of: UBERON:0008281 ! tooth bud -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55076 ! -property_value: IAO:0000589 "nasopharyngeal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0008310 ! nasopharyngeal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20864 ! -property_value: IAO:0000589 "penile bulb artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0008311 ! penile bulb artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66318 ! -property_value: IAO:0000589 "common penile artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0008320 ! common penile artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19794 ! -property_value: IAO:0000589 "deep artery of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0008321 ! deep artery of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20870 ! -property_value: IAO:0000589 "deep artery of clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0008322 ! deep artery of clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20867 ! -property_value: IAO:0000589 "dorsal artery of clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0008323 ! dorsal artery of clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19970 ! -property_value: IAO:0000589 "vestibule of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0008330 ! vestibule of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83871 ! -property_value: IAO:0000589 "hilum of neuraxis (post-embryonic human)" xsd:string -intersection_of: UBERON:0008332 ! hilum of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72612 ! -property_value: IAO:0000589 "hilum of inferior olivary complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0008333 ! hilum of inferior olivary complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75759 ! -property_value: IAO:0000589 "subarachnoid sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008334 ! subarachnoid sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83797 ! -property_value: IAO:0000589 "ventrolateral sulcus of medulla oblongata (post-embryonic human)" xsd:string -intersection_of: UBERON:0008335 ! ventrolateral sulcus of medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24040 ! -property_value: IAO:0000589 "inguinal part of abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0008337 ! inguinal part of abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25000 ! -property_value: IAO:0000589 "plantar part of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0008338 ! plantar part of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59725 ! -property_value: IAO:0000589 "columella nasi (post-embryonic human)" xsd:string -intersection_of: UBERON:0008341 ! columella nasi -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63300 ! -property_value: IAO:0000589 "intestinal villus of duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0008342 ! intestinal villus of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63301 ! -property_value: IAO:0000589 "intestinal villus of jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0008343 ! intestinal villus of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63302 ! -property_value: IAO:0000589 "intestinal villus of ileum (post-embryonic human)" xsd:string -intersection_of: UBERON:0008344 ! intestinal villus of ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17233 ! -property_value: IAO:0000589 "ileal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0008345 ! ileal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17231 ! -property_value: IAO:0000589 "duodenal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0008346 ! duodenal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64808 ! -property_value: IAO:0000589 "proximal tubular epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0008404 ! proximal tubular epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23998 ! -property_value: IAO:0000589 "transverse foramen of atlas (post-embryonic human)" xsd:string -intersection_of: UBERON:0008426 ! transverse foramen of atlas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23999 ! -property_value: IAO:0000589 "transverse foramen of axis (post-embryonic human)" xsd:string -intersection_of: UBERON:0008427 ! transverse foramen of axis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46720 ! -property_value: IAO:0000589 "ceratoglossus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008428 ! ceratoglossus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13480 ! -property_value: IAO:0000589 "cervical vertebral foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0008429 ! cervical vertebral foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24826 ! -property_value: IAO:0000589 "lumbar vertebral foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0008430 ! lumbar vertebral foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:31749 ! -property_value: IAO:0000589 "sacral foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0008431 ! sacral foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9143 ! -property_value: IAO:0000589 "thoracic vertebral foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0008432 ! thoracic vertebral foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16076 ! -property_value: IAO:0000589 "lumbar vertebral arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0008433 ! lumbar vertebral arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23893 ! -property_value: IAO:0000589 "cervical vertebral arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0008434 ! cervical vertebral arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32401 ! -property_value: IAO:0000589 "vertebral arch of sacral segment (post-embryonic human)" xsd:string -intersection_of: UBERON:0008435 ! vertebral arch of sacral segment -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9151 ! -property_value: IAO:0000589 "thoracic vertebral arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0008436 ! thoracic vertebral arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23977 ! -property_value: IAO:0000589 "posterior arch of atlas (post-embryonic human)" xsd:string -intersection_of: UBERON:0008437 ! posterior arch of atlas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38481 ! -property_value: IAO:0000589 "flexor pollicis longus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008446 ! flexor pollicis longus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44281 ! -property_value: IAO:0000589 "intertarsal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0008447 ! intertarsal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23619 ! -property_value: IAO:0000589 "trochlear notch (post-embryonic human)" xsd:string -intersection_of: UBERON:0008449 ! trochlear notch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46312 ! -property_value: IAO:0000589 "rectus capitis anterior (post-embryonic human)" xsd:string -intersection_of: UBERON:0008453 ! rectus capitis anterior -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32525 ! -property_value: IAO:0000589 "rectus capitis posterior major (post-embryonic human)" xsd:string -intersection_of: UBERON:0008454 ! rectus capitis posterior major -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32526 ! -property_value: IAO:0000589 "rectus capitis posterior minor (post-embryonic human)" xsd:string -intersection_of: UBERON:0008455 ! rectus capitis posterior minor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16126 ! -property_value: IAO:0000589 "prezygapophysis of lumbar vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0008456 ! prezygapophysis of lumbar vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16215 ! -property_value: IAO:0000589 "prezygapophysis of sacral vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0008457 ! prezygapophysis of sacral vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23969 ! -property_value: IAO:0000589 "prezygapophysis of cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0008459 ! prezygapophysis of cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9155 ! -property_value: IAO:0000589 "prezygapophysis of thoracic vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0008460 ! prezygapophysis of thoracic vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16127 ! -property_value: IAO:0000589 "postzygapophysis of lumbar vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0008461 ! postzygapophysis of lumbar vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23970 ! -property_value: IAO:0000589 "postzygapophysis of cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0008462 ! postzygapophysis of cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9156 ! -property_value: IAO:0000589 "postzygapophysis of thoracic vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0008463 ! postzygapophysis of thoracic vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37448 ! -property_value: IAO:0000589 "abductor hallucis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008464 ! abductor hallucis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37373 ! -property_value: IAO:0000589 "abductor pollicis brevis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008465 ! abductor pollicis brevis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21531 ! -property_value: IAO:0000589 "cremaster muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008488 ! cremaster muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22317 ! -property_value: IAO:0000589 "gluteus minimus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008521 ! gluteus minimus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73758 ! -property_value: IAO:0000589 "nasal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008522 ! nasal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13338 ! -property_value: IAO:0000589 "infrahyoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008523 ! infrahyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19082 ! -property_value: IAO:0000589 "piriformis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008529 ! piriformis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22321 ! -property_value: IAO:0000589 "quadratus femoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0008537 ! quadratus femoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22681 ! -property_value: IAO:0000589 "splenius cervicis (post-embryonic human)" xsd:string -intersection_of: UBERON:0008544 ! splenius cervicis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22704 ! -property_value: IAO:0000589 "iliocostalis cervicis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008546 ! iliocostalis cervicis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32514 ! -property_value: IAO:0000589 "prevertebral muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008549 ! prevertebral muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46290 ! -property_value: IAO:0000589 "suprahyoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008571 ! suprahyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46576 ! -property_value: IAO:0000589 "posterior crico-arytenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0008572 ! posterior crico-arytenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46579 ! -property_value: IAO:0000589 "lateral crico-arytenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0008573 ! lateral crico-arytenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46582 ! -property_value: IAO:0000589 "transverse arytenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0008574 ! transverse arytenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46583 ! -property_value: IAO:0000589 "oblique arytenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0008575 ! oblique arytenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46588 ! -property_value: IAO:0000589 "thyro-arytenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0008576 ! thyro-arytenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46591 ! -property_value: IAO:0000589 "vocalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008577 ! vocalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46693 ! -property_value: IAO:0000589 "superior longitudinal muscle of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0008582 ! superior longitudinal muscle of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46695 ! -property_value: IAO:0000589 "transverse muscle of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0008583 ! transverse muscle of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46696 ! -property_value: IAO:0000589 "vertical muscle of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0008584 ! vertical muscle of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46727 ! -property_value: IAO:0000589 "levator veli palatini (post-embryonic human)" xsd:string -intersection_of: UBERON:0008585 ! levator veli palatini -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46730 ! -property_value: IAO:0000589 "tensor veli palatini (post-embryonic human)" xsd:string -intersection_of: UBERON:0008586 ! tensor veli palatini -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46769 ! -property_value: IAO:0000589 "procerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008588 ! procerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46777 ! -property_value: IAO:0000589 "depressor septi nasi (post-embryonic human)" xsd:string -intersection_of: UBERON:0008589 ! depressor septi nasi -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46798 ! -property_value: IAO:0000589 "depressor supercilii (post-embryonic human)" xsd:string -intersection_of: UBERON:0008591 ! depressor supercilii -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46802 ! -property_value: IAO:0000589 "levator labii superioris alaeque nasi (post-embryonic human)" xsd:string -intersection_of: UBERON:0008592 ! levator labii superioris alaeque nasi -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46810 ! -property_value: IAO:0000589 "zygomaticus major muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008593 ! zygomaticus major muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46811 ! -property_value: IAO:0000589 "zygomaticus minor muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008594 ! zygomaticus minor muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46822 ! -property_value: IAO:0000589 "levator anguli oris (post-embryonic human)" xsd:string -intersection_of: UBERON:0008595 ! levator anguli oris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46825 ! -property_value: IAO:0000589 "mentalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008596 ! mentalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46828 ! -property_value: IAO:0000589 "depressor anguli oris muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008597 ! depressor anguli oris muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46838 ! -property_value: IAO:0000589 "risorius muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008598 ! risorius muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48968 ! -property_value: IAO:0000589 "helicis major (post-embryonic human)" xsd:string -intersection_of: UBERON:0008603 ! helicis major -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48971 ! -property_value: IAO:0000589 "helicis minor (post-embryonic human)" xsd:string -intersection_of: UBERON:0008604 ! helicis minor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48974 ! -property_value: IAO:0000589 "tragicus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008605 ! tragicus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48980 ! -property_value: IAO:0000589 "antitragicus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008606 ! antitragicus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48983 ! -property_value: IAO:0000589 "transverse muscle of auricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008607 ! transverse muscle of auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:48986 ! -property_value: IAO:0000589 "oblique muscle of auricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008608 ! oblique muscle of auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49080 ! -property_value: IAO:0000589 "transversus menti muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008609 ! transversus menti muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64829 ! -property_value: IAO:0000589 "scalene muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008611 ! scalene muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64856 ! -property_value: IAO:0000589 "muscle of pelvic diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0008612 ! muscle of pelvic diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9758 ! -property_value: IAO:0000589 "innermost intercostal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008617 ! innermost intercostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9759 ! -property_value: IAO:0000589 "subcostal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008618 ! subcostal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13385 ! -property_value: IAO:0000589 "scalenus anterior (post-embryonic human)" xsd:string -intersection_of: UBERON:0008622 ! scalenus anterior -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9625 ! -property_value: IAO:0000589 "stylohyoid muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008712 ! stylohyoid muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15610 ! -property_value: IAO:0000589 "hilum of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0008716 ! hilum of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33113 ! -property_value: IAO:0000589 "proximal epiphysis of tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0008772 ! proximal epiphysis of tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33729 ! -property_value: IAO:0000589 "proximal epiphysis of fibula (post-embryonic human)" xsd:string -intersection_of: UBERON:0008775 ! proximal epiphysis of fibula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85520 ! -property_value: IAO:0000589 "inner cell mass derived hypoblast (post-embryonic human)" xsd:string -intersection_of: UBERON:0008776 ! inner cell mass derived hypoblast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13410 ! -property_value: IAO:0000589 "subclavius (post-embryonic human)" xsd:string -intersection_of: UBERON:0008779 ! subclavius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44356 ! -property_value: IAO:0000589 "dorsal venous arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0008783 ! dorsal venous arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24877 ! -property_value: IAO:0000589 "lower limb segment (post-embryonic human)" xsd:string -intersection_of: UBERON:0008784 ! lower limb segment -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24876 ! -property_value: IAO:0000589 "upper limb segment (post-embryonic human)" xsd:string -intersection_of: UBERON:0008785 ! upper limb segment -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75824 ! -property_value: IAO:0000589 "third trochanter (post-embryonic human)" xsd:string -intersection_of: UBERON:0008786 ! third trochanter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54368 ! -property_value: IAO:0000589 "posterior cranial fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0008788 ! posterior cranial fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321144 ! -property_value: IAO:0000589 "cranial fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0008789 ! cranial fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15106 ! -property_value: IAO:0000589 "rugal fold of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0008791 ! rugal fold of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19991 ! -property_value: IAO:0000589 "rugal fold of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0008798 ! rugal fold of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75652 ! -property_value: IAO:0000589 "transverse palatine fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0008799 ! transverse palatine fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24759 ! -property_value: IAO:0000589 "skin of cheek (post-embryonic human)" xsd:string -intersection_of: UBERON:0008803 ! skin of cheek -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46664 ! -property_value: IAO:0000589 "stylopharyngeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0008804 ! stylopharyngeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74580 ! -property_value: IAO:0000589 "gingival groove (post-embryonic human)" xsd:string -intersection_of: UBERON:0008805 ! gingival groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52797 ! -property_value: IAO:0000589 "nasopalatine nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0008810 ! nasopalatine nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61275 ! -property_value: IAO:0000589 "helicotrema (post-embryonic human)" xsd:string -intersection_of: UBERON:0008813 ! helicotrema -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293041 ! -property_value: IAO:0000589 "pharyngeal arch system (post-embryonic human)" xsd:string -intersection_of: UBERON:0008814 ! pharyngeal arch system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293011 ! -property_value: IAO:0000589 "embryonic head (post-embryonic human)" xsd:string -intersection_of: UBERON:0008816 ! embryonic head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9827 ! -property_value: IAO:0000589 "superior mediastinum (post-embryonic human)" xsd:string -intersection_of: UBERON:0008818 ! superior mediastinum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9828 ! -property_value: IAO:0000589 "inferior mediastinum (post-embryonic human)" xsd:string -intersection_of: UBERON:0008819 ! inferior mediastinum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9838 ! -property_value: IAO:0000589 "anterior mediastinum (post-embryonic human)" xsd:string -intersection_of: UBERON:0008820 ! anterior mediastinum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9839 ! -property_value: IAO:0000589 "middle mediastinum (post-embryonic human)" xsd:string -intersection_of: UBERON:0008821 ! middle mediastinum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9840 ! -property_value: IAO:0000589 "posterior mediastinum (post-embryonic human)" xsd:string -intersection_of: UBERON:0008822 ! posterior mediastinum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18297 ! -property_value: IAO:0000589 "duct of epididymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0008824 ! duct of epididymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62780 ! -property_value: IAO:0000589 "pulmonary surfactant (post-embryonic human)" xsd:string -intersection_of: UBERON:0008826 ! pulmonary surfactant -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321632 ! -property_value: IAO:0000589 "presphenoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0008828 ! presphenoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77850 ! -property_value: IAO:0000589 "inner spiral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008831 ! inner spiral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77851 ! -property_value: IAO:0000589 "outer spiral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008832 ! outer spiral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6872 ! -property_value: IAO:0000589 "great auricular nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0008833 ! great auricular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20421 ! -property_value: IAO:0000589 "gubernaculum testis (post-embryonic human)" xsd:string -intersection_of: UBERON:0008843 ! gubernaculum testis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25625 ! -property_value: IAO:0000589 "nonskeletal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0008845 ! nonskeletal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25624 ! -property_value: IAO:0000589 "skeletal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0008846 ! skeletal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55422 ! -property_value: IAO:0000589 "ovarian ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0008847 ! ovarian ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296715 ! -property_value: IAO:0000589 "visceral yolk sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0008852 ! visceral yolk sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:296713 ! -property_value: IAO:0000589 "parietal yolk sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0008853 ! parietal yolk sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85302 ! -property_value: IAO:0000589 "root of molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0008854 ! root of molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14909 ! -property_value: IAO:0000589 "stomach muscularis externa (post-embryonic human)" xsd:string -intersection_of: UBERON:0008856 ! stomach muscularis externa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14911 ! -property_value: IAO:0000589 "stomach smooth muscle circular layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0008857 ! stomach smooth muscle circular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14580 ! -property_value: IAO:0000589 "pyloric canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0008858 ! pyloric canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14920 ! -property_value: IAO:0000589 "cardiac gastric gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0008859 ! cardiac gastric gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14922 ! -property_value: IAO:0000589 "pyloric gastric gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0008861 ! pyloric gastric gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14912 ! -property_value: IAO:0000589 "stomach smooth muscle inner oblique layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0008862 ! stomach smooth muscle inner oblique layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14910 ! -property_value: IAO:0000589 "stomach smooth muscle outer longitudinal layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0008863 ! stomach smooth muscle outer longitudinal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7313 ! -property_value: IAO:0000589 "pulmonary acinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008874 ! pulmonary acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70963 ! -property_value: IAO:0000589 "epidermal-dermal junction (post-embryonic human)" xsd:string -intersection_of: UBERON:0008877 ! epidermal-dermal junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24920 ! -property_value: IAO:0000589 "palmar part of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008878 ! palmar part of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61035 ! -property_value: IAO:0000589 "ligament of pinna (post-embryonic human)" xsd:string -intersection_of: UBERON:0008879 ! ligament of pinna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66830 ! -property_value: IAO:0000589 "osteoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0008883 ! osteoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72829 ! -property_value: IAO:0000589 "left putamen (post-embryonic human)" xsd:string -intersection_of: UBERON:0008884 ! left putamen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72828 ! -property_value: IAO:0000589 "right putamen (post-embryonic human)" xsd:string -intersection_of: UBERON:0008885 ! right putamen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45621 ! -property_value: IAO:0000589 "pulmonary vascular system (post-embryonic human)" xsd:string -intersection_of: UBERON:0008886 ! pulmonary vascular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18933 ! -property_value: IAO:0000589 "rectal venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008887 ! rectal venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18934 ! -property_value: IAO:0000589 "vesical venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008888 ! vesical venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:29712 ! -property_value: IAO:0000589 "uterine venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0008889 ! uterine venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242642 ! -property_value: IAO:0000589 "somatosensory cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0008930 ! somatosensory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:27360 ! -property_value: IAO:0000589 "lung parenchyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0008946 ! lung parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7334 ! -property_value: IAO:0000589 "upper lobe of lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0008948 ! upper lobe of lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7335 ! -property_value: IAO:0000589 "lower lobe of lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0008949 ! lower lobe of lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7370 ! -property_value: IAO:0000589 "upper lobe of left lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0008952 ! upper lobe of left lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7371 ! -property_value: IAO:0000589 "lower lobe of left lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0008953 ! lower lobe of left lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7433 ! -property_value: IAO:0000589 "lingula of left lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0008954 ! lingula of left lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61939 ! -property_value: IAO:0000589 "centrum semiovale (post-embryonic human)" xsd:string -intersection_of: UBERON:0008967 ! centrum semiovale -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:311256 ! -property_value: IAO:0000589 "pes anserinus of tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0008977 ! pes anserinus of tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:30318 ! -property_value: IAO:0000589 "fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0008982 ! fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15574 ! -property_value: IAO:0000589 "renal parenchyma (post-embryonic human)" xsd:string -intersection_of: UBERON:0008987 ! renal parenchyma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9404 ! -property_value: IAO:0000589 "submucosal esophageal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0008989 ! submucosal esophageal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321695 ! -property_value: IAO:0000589 "nucleus of cerebellar nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0008995 ! nucleus of cerebellar nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242007 ! -property_value: IAO:0000589 "vasculature of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0008998 ! vasculature of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61935 ! -property_value: IAO:0000589 "vasculature of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0008998 ! vasculature of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17028 ! -property_value: IAO:0000589 "ischial spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0009000 ! ischial spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43571 ! -property_value: IAO:0000589 "femorotibial joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0009005 ! femorotibial joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44225 ! -property_value: IAO:0000589 "deep inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0009006 ! deep inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5036 ! -property_value: IAO:0000589 "superficial inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0009007 ! superficial inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53488 ! -property_value: IAO:0000589 "carotid sinus nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009009 ! carotid sinus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312260 ! -property_value: IAO:0000589 "ciliary stroma (post-embryonic human)" xsd:string -intersection_of: UBERON:0009016 ! ciliary stroma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74584 ! -property_value: IAO:0000589 "sulcus ampullaris (post-embryonic human)" xsd:string -intersection_of: UBERON:0009038 ! sulcus ampullaris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20687 ! -property_value: IAO:0000589 "deep circumflex iliac artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0009040 ! deep circumflex iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20737 ! -property_value: IAO:0000589 "superficial circumflex iliac artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0009041 ! superficial circumflex iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:29711 ! -property_value: IAO:0000589 "prostatic venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0009042 ! prostatic venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44488 ! -property_value: IAO:0000589 "deep external pudendal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009048 ! deep external pudendal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21377 ! -property_value: IAO:0000589 "superficial external pudendal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009049 ! superficial external pudendal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256691 ! -property_value: IAO:0000589 "nucleus of solitary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0009050 ! nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77463 ! -property_value: IAO:0000589 "gelatinous nucleus of solitary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0009051 ! gelatinous nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:229585 ! -property_value: IAO:0000589 "medial nucleus of solitary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0009052 ! medial nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7281 ! -property_value: IAO:0000589 "right atrium endocardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0009129 ! right atrium endocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70310 ! -property_value: IAO:0000589 "right common cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009138 ! right common cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70315 ! -property_value: IAO:0000589 "right posterior cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009139 ! right posterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52959 ! -property_value: IAO:0000589 "internasal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0009203 ! internasal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312659 ! -property_value: IAO:0000589 "medial nasal process mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0009204 ! medial nasal process mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312665 ! -property_value: IAO:0000589 "lateral nasal process mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0009205 ! lateral nasal process mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295758 ! -property_value: IAO:0000589 "pharyngeal membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0009210 ! pharyngeal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293971 ! -property_value: IAO:0000589 "embryonic nasal process (post-embryonic human)" xsd:string -intersection_of: UBERON:0009292 ! embryonic nasal process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:313738 ! -property_value: IAO:0000589 "embryonic frontal process (post-embryonic human)" xsd:string -intersection_of: UBERON:0009293 ! embryonic frontal process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321631 ! -property_value: IAO:0000589 "basiotic bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0009468 ! basiotic bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321633 ! -property_value: IAO:0000589 "postsphenoidal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0009470 ! postsphenoidal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54651 ! -property_value: IAO:0000589 "dorsum of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0009471 ! dorsum of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24864 ! -property_value: IAO:0000589 "axilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0009472 ! axilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295694 ! -property_value: IAO:0000589 "pharyngeal arch mesenchymal region (post-embryonic human)" xsd:string -intersection_of: UBERON:0009494 ! pharyngeal arch mesenchymal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295821 ! -property_value: IAO:0000589 "mesenchyme of fronto-nasal process (post-embryonic human)" xsd:string -intersection_of: UBERON:0009501 ! mesenchyme of fronto-nasal process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:313717 ! -property_value: IAO:0000589 "lateral lingual swelling epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0009522 ! lateral lingual swelling epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312691 ! -property_value: IAO:0000589 "maxillary process mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0009526 ! maxillary process mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54327 ! -property_value: IAO:0000589 "nail of manual digit (post-embryonic human)" xsd:string -intersection_of: UBERON:0009565 ! nail of manual digit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15696 ! -property_value: IAO:0000589 "intestinal submucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0009566 ! intestinal submucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54328 ! -property_value: IAO:0000589 "nail of pedal digit (post-embryonic human)" xsd:string -intersection_of: UBERON:0009567 ! nail of pedal digit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72066 ! -property_value: IAO:0000589 "trunk region of vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0009568 ! trunk region of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25054 ! -property_value: IAO:0000589 "subdivision of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0009569 ! subdivision of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242845 ! -property_value: IAO:0000589 "lumen of central canal of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0009572 ! lumen of central canal of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78496 ! -property_value: IAO:0000589 "sulcus limitans of fourth ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0009573 ! sulcus limitans of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14060 ! -property_value: IAO:0000589 "spinal nerve root (post-embryonic human)" xsd:string -intersection_of: UBERON:0009623 ! spinal nerve root -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5861 ! -property_value: IAO:0000589 "lumbar nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009624 ! lumbar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5862 ! -property_value: IAO:0000589 "sacral nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009625 ! sacral nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5863 ! -property_value: IAO:0000589 "coccygeal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009629 ! coccygeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14064 ! -property_value: IAO:0000589 "root of thoracic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009630 ! root of thoracic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16421 ! -property_value: IAO:0000589 "root of lumbar spinal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009631 ! root of lumbar spinal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16422 ! -property_value: IAO:0000589 "root of cervical nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009632 ! root of cervical nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18028 ! -property_value: IAO:0000589 "root of sacral nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009633 ! root of sacral nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18131 ! -property_value: IAO:0000589 "root of coccygeal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009634 ! root of coccygeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52867 ! -property_value: IAO:0000589 "body of sphenoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0009639 ! body of sphenoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62070 ! -property_value: IAO:0000589 "ansa lenticularis (post-embryonic human)" xsd:string -intersection_of: UBERON:0009641 ! ansa lenticularis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83850 ! -property_value: IAO:0000589 "central tegmental tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0009643 ! central tegmental tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6263 ! -property_value: IAO:0000589 "lumbar sympathetic nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0009646 ! lumbar sympathetic nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63975 ! -property_value: IAO:0000589 "eyelid subcutaneous connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0009648 ! eyelid subcutaneous connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17876 ! -property_value: IAO:0000589 "cortical arch of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0009650 ! cortical arch of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14598 ! -property_value: IAO:0000589 "rectal lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0009670 ! rectal lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295940 ! -property_value: IAO:0000589 "nasal fin (post-embryonic human)" xsd:string -intersection_of: UBERON:0009671 ! nasal fin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295942 ! -property_value: IAO:0000589 "oronasal membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0009672 ! oronasal membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53228 ! -property_value: IAO:0000589 "chorda tympani branch of facial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009675 ! chorda tympani branch of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59415 ! -property_value: IAO:0000589 "tooth row (post-embryonic human)" xsd:string -intersection_of: UBERON:0009678 ! tooth row -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55635 ! -property_value: IAO:0000589 "set of lower jaw teeth (post-embryonic human)" xsd:string -intersection_of: UBERON:0009679 ! set of lower jaw teeth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55634 ! -property_value: IAO:0000589 "set of upper jaw teeth (post-embryonic human)" xsd:string -intersection_of: UBERON:0009680 ! set of upper jaw teeth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4713 ! -property_value: IAO:0000589 "middle cardiac vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009687 ! middle cardiac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50518 ! -property_value: IAO:0000589 "posterior inferior cerebellar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0009688 ! posterior inferior cerebellar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50544 ! -property_value: IAO:0000589 "anterior inferior cerebellar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0009689 ! anterior inferior cerebellar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60079 ! -property_value: IAO:0000589 "lumen of pharyngotympanic tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0009692 ! lumen of pharyngotympanic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62454 ! -property_value: IAO:0000589 "epithelium of laryngopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0009695 ! epithelium of laryngopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63581 ! -property_value: IAO:0000589 "epithelium of appendix (post-embryonic human)" xsd:string -intersection_of: UBERON:0009697 ! epithelium of appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9536 ! -property_value: IAO:0000589 "endocardium of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0009712 ! endocardium of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9559 ! -property_value: IAO:0000589 "endocardium of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0009713 ! endocardium of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295872 ! -property_value: IAO:0000589 "intermaxillary process (post-embryonic human)" xsd:string -intersection_of: UBERON:0009714 ! intermaxillary process -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293087 ! -property_value: IAO:0000589 "entire pharyngeal arch endoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0009722 ! entire pharyngeal arch endoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312359 ! -property_value: IAO:0000589 "lymph node medullary sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0009744 ! lymph node medullary sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295585 ! -property_value: IAO:0000589 "head fold of embryonic disc (post-embryonic human)" xsd:string -intersection_of: UBERON:0009746 ! head fold of embryonic disc -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295589 ! -property_value: IAO:0000589 "tail fold of embryonic disc (post-embryonic human)" xsd:string -intersection_of: UBERON:0009747 ! tail fold of embryonic disc -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69086 ! -property_value: IAO:0000589 "adrenal gland cortex zone (post-embryonic human)" xsd:string -intersection_of: UBERON:0009753 ! adrenal gland cortex zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65022 ! -property_value: IAO:0000589 "proximal interphalangeal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0009767 ! proximal interphalangeal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65024 ! -property_value: IAO:0000589 "distal interphalangeal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0009768 ! distal interphalangeal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70311 ! -property_value: IAO:0000589 "left common cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009769 ! left common cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70313 ! -property_value: IAO:0000589 "left anterior cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009771 ! left anterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70312 ! -property_value: IAO:0000589 "right anterior cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009772 ! right anterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72573 ! -property_value: IAO:0000589 "lateral medullary reticular complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0009775 ! lateral medullary reticular complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84336 ! -property_value: IAO:0000589 "intermediate reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0009777 ! intermediate reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9690 ! -property_value: IAO:0000589 "pleural sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0009778 ! pleural sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84280 ! -property_value: IAO:0000589 "cardiac muscle tissue of right auricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0009779 ! cardiac muscle tissue of right auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84281 ! -property_value: IAO:0000589 "cardiac muscle tissue of left auricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0009780 ! cardiac muscle tissue of left auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276189 ! -property_value: IAO:0000589 "dorsolateral prefrontal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0009834 ! dorsolateral prefrontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:271599 ! -property_value: IAO:0000589 "anterior cingulate cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0009835 ! anterior cingulate cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55588 ! -property_value: IAO:0000589 "glandular acinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0009842 ! glandular acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17739 ! -property_value: IAO:0000589 "body of uterus (post-embryonic human)" xsd:string -intersection_of: UBERON:0009853 ! body of uterus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61874 ! -property_value: IAO:0000589 "cavum septum pellucidum (post-embryonic human)" xsd:string -intersection_of: UBERON:0009857 ! cavum septum pellucidum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234354 ! -property_value: IAO:0000589 "outer fibrous layer of periosteum (post-embryonic human)" xsd:string -intersection_of: UBERON:0009858 ! outer fibrous layer of periosteum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32692 ! -property_value: IAO:0000589 "endosteum (post-embryonic human)" xsd:string -intersection_of: UBERON:0009859 ! endosteum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14558 ! -property_value: IAO:0000589 "zone of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0009870 ! zone of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71339 ! -property_value: IAO:0000589 "tarsal skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0009879 ! tarsal skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71335 ! -property_value: IAO:0000589 "carpal skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0009880 ! carpal skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15713 ! -property_value: IAO:0000589 "anal column (post-embryonic human)" xsd:string -intersection_of: UBERON:0009882 ! anal column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74299 ! -property_value: IAO:0000589 "medullary ray (post-embryonic human)" xsd:string -intersection_of: UBERON:0009883 ! medullary ray -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71637 ! -property_value: IAO:0000589 "interlobar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0009885 ! interlobar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71631 ! -property_value: IAO:0000589 "interlobar vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0009887 ! interlobar vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:302884 ! -property_value: IAO:0000589 "facial mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0009891 ! facial mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242654 ! -property_value: IAO:0000589 "right auditory cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0009897 ! right auditory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242656 ! -property_value: IAO:0000589 "left auditory cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0009898 ! left auditory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84573 ! -property_value: IAO:0000589 "root of optic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009906 ! root of optic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52611 ! -property_value: IAO:0000589 "sensory root of trigeminal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0009907 ! sensory root of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45737 ! -property_value: IAO:0000589 "lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0009911 ! lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45728 ! -property_value: IAO:0000589 "anatomical lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0009912 ! anatomical lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17881 ! -property_value: IAO:0000589 "renal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0009913 ! renal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17670 ! -property_value: IAO:0000589 "renal lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0009914 ! renal lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15888 ! -property_value: IAO:0000589 "wall of ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0009916 ! wall of ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15924 ! -property_value: IAO:0000589 "bladder lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0009958 ! bladder lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55095 ! -property_value: IAO:0000589 "lumen of oropharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0009959 ! lumen of oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67605 ! -property_value: IAO:0000589 "esophagus smooth muscle circular layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0009960 ! esophagus smooth muscle circular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63573 ! -property_value: IAO:0000589 "esophagus smooth muscle longitudinal layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0009961 ! esophagus smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9479 ! -property_value: IAO:0000589 "internodal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0009966 ! internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62815 ! -property_value: IAO:0000589 "spleen venous sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0009967 ! spleen venous sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64804 ! -property_value: IAO:0000589 "statoacoustic epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0009969 ! statoacoustic epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67681 ! -property_value: IAO:0000589 "epithelium of pancreatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0009970 ! epithelium of pancreatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14921 ! -property_value: IAO:0000589 "principal gastric gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0009971 ! principal gastric gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14923 ! -property_value: IAO:0000589 "principal gastric gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0009971 ! principal gastric gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15898 ! -property_value: IAO:0000589 "ureteropelvic junction (post-embryonic human)" xsd:string -intersection_of: UBERON:0009972 ! ureteropelvic junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15899 ! -property_value: IAO:0000589 "ureterovesical junction (post-embryonic human)" xsd:string -intersection_of: UBERON:0009973 ! ureterovesical junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70860 ! -property_value: IAO:0000589 "hypothalamo-hypophyseal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0009976 ! hypothalamo-hypophyseal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75435 ! -property_value: IAO:0000589 "epicondyle (post-embryonic human)" xsd:string -intersection_of: UBERON:0009978 ! epicondyle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75434 ! -property_value: IAO:0000589 "condyle (post-embryonic human)" xsd:string -intersection_of: UBERON:0009979 ! condyle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32855 ! -property_value: IAO:0000589 "condyle of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0009980 ! condyle of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32858 ! -property_value: IAO:0000589 "medial condyle of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0009984 ! medial condyle of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32859 ! -property_value: IAO:0000589 "lateral condyle of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0009985 ! lateral condyle of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32867 ! -property_value: IAO:0000589 "lateral epicondyle of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0009986 ! lateral epicondyle of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32864 ! -property_value: IAO:0000589 "medial epicondyle of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0009987 ! medial epicondyle of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23377 ! -property_value: IAO:0000589 "condyle of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0009988 ! condyle of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35445 ! -property_value: IAO:0000589 "medial condyle of tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0009990 ! medial condyle of tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35448 ! -property_value: IAO:0000589 "lateral condyle of tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0009991 ! lateral condyle of tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5887 ! -property_value: IAO:0000589 "cranial sensory ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0009992 ! cranial sensory ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256381 ! -property_value: IAO:0000589 "aggregate regional part of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0010009 ! aggregate regional part of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61887 ! -property_value: IAO:0000589 "basal nucleus of telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0010010 ! basal nucleus of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84013 ! -property_value: IAO:0000589 "collection of basal ganglia (post-embryonic human)" xsd:string -intersection_of: UBERON:0010011 ! collection of basal ganglia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15855 ! -property_value: IAO:0000589 "spiral valve of cystic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0010017 ! spiral valve of cystic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:318209 ! -property_value: IAO:0000589 "6th arch mesenchyme (post-embryonic human)" xsd:string -intersection_of: UBERON:0010031 ! 6th arch mesenchyme -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:229084 ! -property_value: IAO:0000589 "anterior part of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0010032 ! anterior part of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54645 ! -property_value: IAO:0000589 "posterior part of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0010033 ! posterior part of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74871 ! -property_value: IAO:0000589 "mucosa of dorsum of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0010052 ! mucosa of dorsum of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54979 ! -property_value: IAO:0000589 "pharyngeal opening of pharyngotympanic tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0010060 ! pharyngeal opening of pharyngotympanic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55094 ! -property_value: IAO:0000589 "lumen of nasopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0010061 ! lumen of nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:285217 ! -property_value: IAO:0000589 "pharyngotympanic tube epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010062 ! pharyngotympanic tube epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52880 ! -property_value: IAO:0000589 "tympanic plate (post-embryonic human)" xsd:string -intersection_of: UBERON:0010066 ! tympanic plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56819 ! -property_value: IAO:0000589 "outer epithelial layer of tympanic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0010069 ! outer epithelial layer of tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56830 ! -property_value: IAO:0000589 "intermediate layer of tympanic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0010070 ! intermediate layer of tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56732 ! -property_value: IAO:0000589 "layer of tympanic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0010071 ! layer of tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79645 ! -property_value: IAO:0000589 "chromaffin system (post-embryonic human)" xsd:string -intersection_of: UBERON:0010074 ! chromaffin system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:259332 ! -property_value: IAO:0000589 "network of trabecular spaces in bone tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0010076 ! network of trabecular spaces in bone tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83378 ! -property_value: IAO:0000589 "conducting tissue of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0010131 ! conducting tissue of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14775 ! -property_value: IAO:0000589 "gastroduodenal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0010132 ! gastroduodenal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62969 ! -property_value: IAO:0000589 "seminal vesicle fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0010143 ! seminal vesicle fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20083 ! -property_value: IAO:0000589 "paraurethral gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0010145 ! paraurethral gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21445 ! -property_value: IAO:0000589 "paraurethral duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0010146 ! paraurethral duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21860 ! -property_value: IAO:0000589 "paraurethral duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0010146 ! paraurethral duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20088 ! -property_value: IAO:0000589 "duct of major vestibular gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0010150 ! duct of major vestibular gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20091 ! -property_value: IAO:0000589 "duct of bulbourethral gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0010151 ! duct of bulbourethral gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52947 ! -property_value: IAO:0000589 "parietomastoid suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0010155 ! parietomastoid suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52938 ! -property_value: IAO:0000589 "sphenofrontal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0010156 ! sphenofrontal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52945 ! -property_value: IAO:0000589 "sphenoparietal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0010157 ! sphenoparietal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52956 ! -property_value: IAO:0000589 "sphenozygomatic suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0010158 ! sphenozygomatic suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52934 ! -property_value: IAO:0000589 "occipitomastoid suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0010159 ! occipitomastoid suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59681 ! -property_value: IAO:0000589 "lumen of lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0010160 ! lumen of lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312610 ! -property_value: IAO:0000589 "lumen of blood vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0010161 ! lumen of blood vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54237 ! -property_value: IAO:0000589 "eyebrow (post-embryonic human)" xsd:string -intersection_of: UBERON:0010163 ! eyebrow -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70752 ! -property_value: IAO:0000589 "collection of hairs (post-embryonic human)" xsd:string -intersection_of: UBERON:0010164 ! collection of hairs -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70741 ! -property_value: IAO:0000589 "collection of hair on face (post-embryonic human)" xsd:string -intersection_of: UBERON:0010165 ! collection of hair on face -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54240 ! -property_value: IAO:0000589 "beard (post-embryonic human)" xsd:string -intersection_of: UBERON:0010167 ! beard -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70742 ! -property_value: IAO:0000589 "collection of eyelashes (post-embryonic human)" xsd:string -intersection_of: UBERON:0010168 ! collection of eyelashes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59652 ! -property_value: IAO:0000589 "moustache (post-embryonic human)" xsd:string -intersection_of: UBERON:0010169 ! moustache -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54360 ! -property_value: IAO:0000589 "strand of hair of face (post-embryonic human)" xsd:string -intersection_of: UBERON:0010171 ! strand of hair of face -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3740 ! -property_value: IAO:0000589 "bulb of aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0010172 ! bulb of aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50780 ! -property_value: IAO:0000589 "nutrient foramen vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0010175 ! nutrient foramen vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50779 ! -property_value: IAO:0000589 "nutrient foramen artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0010176 ! nutrient foramen artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72007 ! -property_value: IAO:0000589 "straight venules of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0010181 ! straight venules of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21443 ! -property_value: IAO:0000589 "male urethral gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0010186 ! male urethral gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21444 ! -property_value: IAO:0000589 "female urethral gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0010187 ! female urethral gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82506 ! -property_value: IAO:0000589 "protuberance (post-embryonic human)" xsd:string -intersection_of: UBERON:0010188 ! protuberance -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69323 ! -property_value: IAO:0000589 "trunk of common carotid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0010197 ! trunk of common carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59045 ! -property_value: IAO:0000589 "plica semilunaris of conjunctiva (post-embryonic human)" xsd:string -intersection_of: UBERON:0010209 ! plica semilunaris of conjunctiva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58254 ! -property_value: IAO:0000589 "left pupil (post-embryonic human)" xsd:string -intersection_of: UBERON:0010223 ! left pupil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58253 ! -property_value: IAO:0000589 "right pupil (post-embryonic human)" xsd:string -intersection_of: UBERON:0010224 ! right pupil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258745 ! -property_value: IAO:0000589 "thalamic complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0010225 ! thalamic complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71005 ! -property_value: IAO:0000589 "future cardiac atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010227 ! future cardiac atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12513 ! -property_value: IAO:0000589 "eyeball of camera-type eye (post-embryonic human)" xsd:string -intersection_of: UBERON:0010230 ! eyeball of camera-type eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293966 ! -property_value: IAO:0000589 "placodal ectoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0010232 ! placodal ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86304 ! -property_value: IAO:0000589 "stroma of thyroid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0010233 ! stroma of thyroid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46666 ! -property_value: IAO:0000589 "palatopharyngeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010234 ! palatopharyngeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46733 ! -property_value: IAO:0000589 "uvular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010235 ! uvular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59794 ! -property_value: IAO:0000589 "molar gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0010241 ! molar gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49503 ! -property_value: IAO:0000589 "posterior meningeal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0010249 ! posterior meningeal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49711 ! -property_value: IAO:0000589 "middle meningeal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0010250 ! middle meningeal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49993 ! -property_value: IAO:0000589 "anterior meningeal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0010251 ! anterior meningeal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256524 ! -property_value: IAO:0000589 "filum terminale internum (post-embryonic human)" xsd:string -intersection_of: UBERON:0010269 ! filum terminale internum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256526 ! -property_value: IAO:0000589 "filum terminale externum (post-embryonic human)" xsd:string -intersection_of: UBERON:0010270 ! filum terminale externum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59494 ! -property_value: IAO:0000589 "zone of hyoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0010273 ! zone of hyoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77133 ! -property_value: IAO:0000589 "oblique pericardial sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0010283 ! oblique pericardial sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59365 ! -property_value: IAO:0000589 "lacrimal punctum (post-embryonic human)" xsd:string -intersection_of: UBERON:0010284 ! lacrimal punctum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53419 ! -property_value: IAO:0000589 "motor root of facial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0010287 ! motor root of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58362 ! -property_value: IAO:0000589 "episcleral layer of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0010292 ! episcleral layer of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58368 ! -property_value: IAO:0000589 "suprachoroid lamina (post-embryonic human)" xsd:string -intersection_of: UBERON:0010293 ! suprachoroid lamina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58365 ! -property_value: IAO:0000589 "substantia propria of sclera (post-embryonic human)" xsd:string -intersection_of: UBERON:0010295 ! substantia propria of sclera -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45569 ! -property_value: IAO:0000589 "non-keratinized stratified squamous epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010304 ! non-keratinized stratified squamous epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59023 ! -property_value: IAO:0000589 "subdivision of conjunctiva (post-embryonic human)" xsd:string -intersection_of: UBERON:0010305 ! subdivision of conjunctiva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59024 ! -property_value: IAO:0000589 "bulbar conjunctiva (post-embryonic human)" xsd:string -intersection_of: UBERON:0010306 ! bulbar conjunctiva -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59016 ! -property_value: IAO:0000589 "conjunctival fornix (post-embryonic human)" xsd:string -intersection_of: UBERON:0010307 ! conjunctival fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75436 ! -property_value: IAO:0000589 "ossification center (post-embryonic human)" xsd:string -intersection_of: UBERON:0010355 ! ossification center -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75447 ! -property_value: IAO:0000589 "primary ossification center (post-embryonic human)" xsd:string -intersection_of: UBERON:0010356 ! primary ossification center -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75448 ! -property_value: IAO:0000589 "secondary ossification center (post-embryonic human)" xsd:string -intersection_of: UBERON:0010357 ! secondary ossification center -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11946 ! -property_value: IAO:0000589 "arch of centrum of vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0010358 ! arch of centrum of vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7499 ! -property_value: IAO:0000589 "synostosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0010361 ! synostosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63001 ! -property_value: IAO:0000589 "odontoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0010365 ! odontoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70887 ! -property_value: IAO:0000589 "conjunctival vasculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0010366 ! conjunctival vasculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70887 ! -property_value: IAO:0000589 "conjunctival vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0010367 ! conjunctival vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75739 ! -property_value: IAO:0000589 "pulmonary lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0010368 ! pulmonary lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7414 ! -property_value: IAO:0000589 "secondary pulmonary lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0010369 ! secondary pulmonary lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69064 ! -property_value: IAO:0000589 "ecto-epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010371 ! ecto-epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57455 ! -property_value: IAO:0000589 "uncinate process of ethmoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0010372 ! uncinate process of ethmoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15857 ! -property_value: IAO:0000589 "uncinate process of pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0010373 ! uncinate process of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79793 ! -property_value: IAO:0000589 "pancreas dorsal primordium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010375 ! pancreas dorsal primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79794 ! -property_value: IAO:0000589 "pancreas ventral primordium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010376 ! pancreas ventral primordium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49058 ! -property_value: IAO:0000589 "superior tarsal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010379 ! superior tarsal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55096 ! -property_value: IAO:0000589 "lumen of laryngopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0010384 ! lumen of laryngopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54687 ! -property_value: IAO:0000589 "pterygoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0010389 ! pterygoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19709 ! -property_value: IAO:0000589 "lumen of urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0010390 ! lumen of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77061 ! -property_value: IAO:0000589 "parametrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010391 ! parametrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312350 ! -property_value: IAO:0000589 "lymph node primary follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010395 ! lymph node primary follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49583 ! -property_value: IAO:0000589 "ocular angle artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0010408 ! ocular angle artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55223 ! -property_value: IAO:0000589 "primary nodular lymphoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0010422 ! primary nodular lymphoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86018 ! -property_value: IAO:0000589 "primary lymphoid nodule of tonsil (post-embryonic human)" xsd:string -intersection_of: UBERON:0010423 ! primary lymphoid nodule of tonsil -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76551 ! -property_value: IAO:0000589 "ciliary processes (post-embryonic human)" xsd:string -intersection_of: UBERON:0010427 ! ciliary processes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7476 ! -property_value: IAO:0000589 "flat bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0010428 ! flat bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32550 ! -property_value: IAO:0000589 "teres minor muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010496 ! teres minor muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45572 ! -property_value: IAO:0000589 "pseudostratified columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010498 ! pseudostratified columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13146 ! -property_value: IAO:0000589 "pseudostratified ciliated columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010499 ! pseudostratified ciliated columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72059 ! -property_value: IAO:0000589 "pseudostratified smooth columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010501 ! pseudostratified smooth columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231547 ! -property_value: IAO:0000589 "periosteal dura mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0010505 ! periosteal dura mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231549 ! -property_value: IAO:0000589 "meningeal dura mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0010506 ! meningeal dura mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231545 ! -property_value: IAO:0000589 "layer of dura mater (post-embryonic human)" xsd:string -intersection_of: UBERON:0010507 ! layer of dura mater -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22538 ! -property_value: IAO:0000589 "fibularis tertius (post-embryonic human)" xsd:string -intersection_of: UBERON:0010524 ! fibularis tertius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22540 ! -property_value: IAO:0000589 "fibularis brevis (post-embryonic human)" xsd:string -intersection_of: UBERON:0010526 ! fibularis brevis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24021 ! -property_value: IAO:0000589 "cavity of bone organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0010527 ! cavity of bone organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24028 ! -property_value: IAO:0000589 "pneumatic cavity of bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0010528 ! pneumatic cavity of bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231315 ! -property_value: IAO:0000589 "acropodial skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0010543 ! acropodial skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71336 ! -property_value: IAO:0000589 "metacarpus skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0010544 ! metacarpus skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71340 ! -property_value: IAO:0000589 "metatarsus skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0010545 ! metatarsus skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71337 ! -property_value: IAO:0000589 "skeleton of manual acropodium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010688 ! skeleton of manual acropodium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78512 ! -property_value: IAO:0000589 "skeleton of pedal acropodium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010696 ! skeleton of pedal acropodium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71199 ! -property_value: IAO:0000589 "forelimb zeugopod skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0010703 ! forelimb zeugopod skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71676 ! -property_value: IAO:0000589 "parenchyma of quadrate lobe of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0010704 ! parenchyma of quadrate lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71659 ! -property_value: IAO:0000589 "parenchyma of caudate lobe of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0010706 ! parenchyma of caudate lobe of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7182 ! -property_value: IAO:0000589 "appendage girdle complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0010707 ! appendage girdle complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7183 ! -property_value: IAO:0000589 "pectoral complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0010708 ! pectoral complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7184 ! -property_value: IAO:0000589 "pelvic complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0010709 ! pelvic complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24517 ! -property_value: IAO:0000589 "distal tarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0010721 ! distal tarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33655 ! -property_value: IAO:0000589 "lateral tubercle of talus (post-embryonic human)" xsd:string -intersection_of: UBERON:0010724 ! lateral tubercle of talus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59327 ! -property_value: IAO:0000589 "sutural bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0010727 ! sutural bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231572 ! -property_value: IAO:0000589 "meningeal cluster (post-embryonic human)" xsd:string -intersection_of: UBERON:0010743 ! meningeal cluster -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42826 ! -property_value: IAO:0000589 "iliac blade (post-embryonic human)" xsd:string -intersection_of: UBERON:0010746 ! iliac blade -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42825 ! -property_value: IAO:0000589 "body of ilium (post-embryonic human)" xsd:string -intersection_of: UBERON:0010747 ! body of ilium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46622 ! -property_value: IAO:0000589 "middle pharyngeal constrictor (post-embryonic human)" xsd:string -intersection_of: UBERON:0010749 ! middle pharyngeal constrictor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312352 ! -property_value: IAO:0000589 "lymph node secondary follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010753 ! lymph node secondary follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:8120 ! -property_value: IAO:0000589 "rib 8 (post-embryonic human)" xsd:string -intersection_of: UBERON:0010757 ! rib 8 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23263 ! -property_value: IAO:0000589 "supraglenoid tubercle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010760 ! supraglenoid tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23373 ! -property_value: IAO:0000589 "capitulum of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0010853 ! capitulum of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23023 ! -property_value: IAO:0000589 "skin of front of neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0010854 ! skin of front of neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60998 ! -property_value: IAO:0000589 "tragus (post-embryonic human)" xsd:string -intersection_of: UBERON:0010887 ! tragus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9622 ! -property_value: IAO:0000589 "pelvic complex muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010890 ! pelvic complex muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9621 ! -property_value: IAO:0000589 "pectoral complex muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010891 ! pectoral complex muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23879 ! -property_value: IAO:0000589 "subdivision of skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0010912 ! subdivision of skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55135 ! -property_value: IAO:0000589 "thyrohyoid ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0010921 ! thyrohyoid ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55138 ! -property_value: IAO:0000589 "median thyrohyoid ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0010925 ! median thyrohyoid ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55139 ! -property_value: IAO:0000589 "lateral thyrohyoid ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0010926 ! lateral thyrohyoid ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46594 ! -property_value: IAO:0000589 "thyroepiglotticus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010927 ! thyroepiglotticus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46661 ! -property_value: IAO:0000589 "cricopharyngeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010928 ! cricopharyngeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46841 ! -property_value: IAO:0000589 "orbicularis oris muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010933 ! orbicularis oris muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46658 ! -property_value: IAO:0000589 "thyropharyngeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010936 ! thyropharyngeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46665 ! -property_value: IAO:0000589 "salpingopharyngeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010937 ! salpingopharyngeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9719 ! -property_value: IAO:0000589 "muscle belly (post-embryonic human)" xsd:string -intersection_of: UBERON:0010938 ! muscle belly -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46297 ! -property_value: IAO:0000589 "muscle of digastric group (post-embryonic human)" xsd:string -intersection_of: UBERON:0010940 ! muscle of digastric group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46302 ! -property_value: IAO:0000589 "anterior digastric muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010943 ! anterior digastric muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46303 ! -property_value: IAO:0000589 "posterior digastric muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010944 ! posterior digastric muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9624 ! -property_value: IAO:0000589 "occipitofrontalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010946 ! occipitofrontalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46758 ! -property_value: IAO:0000589 "occipitalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0010947 ! occipitalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46757 ! -property_value: IAO:0000589 "frontalis muscle belly (post-embryonic human)" xsd:string -intersection_of: UBERON:0010952 ! frontalis muscle belly -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46770 ! -property_value: IAO:0000589 "nasalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010953 ! nasalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46638 ! -property_value: IAO:0000589 "pterygopharyngeal part of superior pharyngeal constrictor (post-embryonic human)" xsd:string -intersection_of: UBERON:0010956 ! pterygopharyngeal part of superior pharyngeal constrictor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71304 ! -property_value: IAO:0000589 "transversospinales muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010990 ! transversospinales muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23616 ! -property_value: IAO:0000589 "coronoid process of ulna (post-embryonic human)" xsd:string -intersection_of: UBERON:0010994 ! coronoid process of ulna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49003 ! -property_value: IAO:0000589 "deep part of masseter muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0010995 ! deep part of masseter muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12264 ! -property_value: IAO:0000589 "articular cartilage of joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0010996 ! articular cartilage of joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13234 ! -property_value: IAO:0000589 "endocardium of auricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011005 ! endocardium of auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13236 ! -property_value: IAO:0000589 "endocardium of left auricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011006 ! endocardium of left auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13235 ! -property_value: IAO:0000589 "endocardium of right auricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011007 ! endocardium of right auricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38485 ! -property_value: IAO:0000589 "brachioradialis (post-embryonic human)" xsd:string -intersection_of: UBERON:0011011 ! brachioradialis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37378 ! -property_value: IAO:0000589 "flexor pollicis brevis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011012 ! flexor pollicis brevis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77179 ! -property_value: IAO:0000589 "spinalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011013 ! spinalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22775 ! -property_value: IAO:0000589 "spinalis capitis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011014 ! spinalis capitis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75316 ! -property_value: IAO:0000589 "iliac fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0011015 ! iliac fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15568 ! -property_value: IAO:0000589 "pyramidalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0011016 ! pyramidalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22823 ! -property_value: IAO:0000589 "semispinalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011017 ! semispinalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37449 ! -property_value: IAO:0000589 "flexor hallucis brevis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011022 ! flexor hallucis brevis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46602 ! -property_value: IAO:0000589 "aryepiglotticus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011025 ! aryepiglotticus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19083 ! -property_value: IAO:0000589 "obturator muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011043 ! obturator muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22298 ! -property_value: IAO:0000589 "obturator internus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011048 ! obturator internus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14729 ! -property_value: IAO:0000589 "uterovesical pouch (post-embryonic human)" xsd:string -intersection_of: UBERON:0011049 ! uterovesical pouch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9991 ! -property_value: IAO:0000589 "thoracic vertebra 8 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011050 ! thoracic vertebra 8 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77822 ! -property_value: IAO:0000589 "perilymphatic channel (post-embryonic human)" xsd:string -intersection_of: UBERON:0011060 ! perilymphatic channel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77823 ! -property_value: IAO:0000589 "endolymphatic space (post-embryonic human)" xsd:string -intersection_of: UBERON:0011078 ! endolymphatic space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44580 ! -property_value: IAO:0000589 "ligament of knee joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011088 ! ligament of knee joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87593 ! -property_value: IAO:0000589 "skeleton of right pelvic girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011090 ! skeleton of right pelvic girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87594 ! -property_value: IAO:0000589 "skeleton of left pelvic girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011091 ! skeleton of left pelvic girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16582 ! -property_value: IAO:0000589 "right pelvic girdle region (post-embryonic human)" xsd:string -intersection_of: UBERON:0011092 ! right pelvic girdle region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16583 ! -property_value: IAO:0000589 "left pelvic girdle region (post-embryonic human)" xsd:string -intersection_of: UBERON:0011093 ! left pelvic girdle region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52628 ! -property_value: IAO:0000589 "lacrimal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011096 ! lacrimal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86330 ! -property_value: IAO:0000589 "epiphysis of fifth metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0011104 ! epiphysis of fifth metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25018 ! -property_value: IAO:0000589 "cruciate ligament of atlas (post-embryonic human)" xsd:string -intersection_of: UBERON:0011106 ! cruciate ligament of atlas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35173 ! -property_value: IAO:0000589 "synovial joint of pelvic girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011107 ! synovial joint of pelvic girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35243 ! -property_value: IAO:0000589 "synovial joint of pectoral girdle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011108 ! synovial joint of pectoral girdle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38854 ! -property_value: IAO:0000589 "humeroulnar joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011110 ! humeroulnar joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38855 ! -property_value: IAO:0000589 "humeroradial joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011111 ! humeroradial joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35181 ! -property_value: IAO:0000589 "tibiofibular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011112 ! tibiofibular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10465 ! -property_value: IAO:0000589 "inferior tibiofibular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011113 ! inferior tibiofibular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35184 ! -property_value: IAO:0000589 "superior tibiofibular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011117 ! superior tibiofibular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35216 ! -property_value: IAO:0000589 "tarsometatarsal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011118 ! tarsometatarsal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35287 ! -property_value: IAO:0000589 "carpometacarpal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011119 ! carpometacarpal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55100 ! -property_value: IAO:0000589 "laryngeal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011120 ! laryngeal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55101 ! -property_value: IAO:0000589 "cricothyroid joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011121 ! cricothyroid joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55102 ! -property_value: IAO:0000589 "cricoarytenoid joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011122 ! cricoarytenoid joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7503 ! -property_value: IAO:0000589 "xiphisternal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011124 ! xiphisternal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35288 ! -property_value: IAO:0000589 "intermetacarpal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011131 ! intermetacarpal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35292 ! -property_value: IAO:0000589 "intercarpal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011132 ! intercarpal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35219 ! -property_value: IAO:0000589 "intermetatarsal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011133 ! intermetatarsal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7491 ! -property_value: IAO:0000589 "nonsynovial joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011134 ! nonsynovial joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:31892 ! -property_value: IAO:0000589 "ligament of vertebral column (post-embryonic human)" xsd:string -intersection_of: UBERON:0011136 ! ligament of vertebral column -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7483 ! -property_value: IAO:0000589 "axial skeletal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0011137 ! axial skeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:302077 ! -property_value: IAO:0000589 "postcranial axial skeletal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0011138 ! postcranial axial skeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258776 ! -property_value: IAO:0000589 "synovial limb joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011139 ! synovial limb joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49000 ! -property_value: IAO:0000589 "superficial part of masseter muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011140 ! superficial part of masseter muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45658 ! -property_value: IAO:0000589 "upper urinary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0011143 ! upper urinary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74998 ! -property_value: IAO:0000589 "adductor muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011145 ! adductor muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53673 ! -property_value: IAO:0000589 "facial skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55111 ! -property_value: IAO:0000589 "cuneiform cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0011157 ! cuneiform cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54964 ! -property_value: IAO:0000589 "primary subdivision of skull (post-embryonic human)" xsd:string -intersection_of: UBERON:0011158 ! primary subdivision of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54818 ! -property_value: IAO:0000589 "spheno-occipital synchondrosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0011161 ! spheno-occipital synchondrosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76887 ! -property_value: IAO:0000589 "crico-esophageal tendon (post-embryonic human)" xsd:string -intersection_of: UBERON:0011165 ! crico-esophageal tendon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43574 ! -property_value: IAO:0000589 "patellofemoral joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011166 ! patellofemoral joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19617 ! -property_value: IAO:0000589 "corpus spongiosum of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0011183 ! corpus spongiosum of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59056 ! -property_value: IAO:0000589 "Krause's gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011186 ! Krause's gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23390 ! -property_value: IAO:0000589 "ventral tubercle of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011187 ! ventral tubercle of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23393 ! -property_value: IAO:0000589 "lesser tubercle of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011188 ! lesser tubercle of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15654 ! -property_value: IAO:0000589 "lamina propria of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0011189 ! lamina propria of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77858 ! -property_value: IAO:0000589 "lunule of nail (post-embryonic human)" xsd:string -intersection_of: UBERON:0011190 ! lunule of nail -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51246 ! -property_value: IAO:0000589 "superior ophthalmic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0011192 ! superior ophthalmic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51247 ! -property_value: IAO:0000589 "inferior ophthalmic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0011193 ! inferior ophthalmic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312377 ! -property_value: IAO:0000589 "ophthalmic plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011194 ! ophthalmic plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14971 ! -property_value: IAO:0000589 "muscle layer of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0011198 ! muscle layer of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19702 ! -property_value: IAO:0000589 "prostatic utricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011199 ! prostatic utricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16210 ! -property_value: IAO:0000589 "sacrococcygeal symphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0011200 ! sacrococcygeal symphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14932 ! -property_value: IAO:0000589 "muscle layer of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0011201 ! muscle layer of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14727 ! -property_value: IAO:0000589 "rectovesical pouch (post-embryonic human)" xsd:string -intersection_of: UBERON:0011204 ! rectovesical pouch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75296 ! -property_value: IAO:0000589 "hinge joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011206 ! hinge joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22702 ! -property_value: IAO:0000589 "iliocostalis lumborum (post-embryonic human)" xsd:string -intersection_of: UBERON:0011207 ! iliocostalis lumborum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6213 ! -property_value: IAO:0000589 "root of vagus nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011213 ! root of vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258766 ! -property_value: IAO:0000589 "nucleus of midbrain tectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0011214 ! nucleus of midbrain tectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83143 ! -property_value: IAO:0000589 "central nervous system cell part cluster (post-embryonic human)" xsd:string -intersection_of: UBERON:0011215 ! central nervous system cell part cluster -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67509 ! -property_value: IAO:0000589 "organ system subdivision (post-embryonic human)" xsd:string -intersection_of: UBERON:0011216 ! organ system subdivision -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13400 ! -property_value: IAO:0000589 "serratus dorsalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011217 ! serratus dorsalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22770 ! -property_value: IAO:0000589 "spinalis cervicis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011218 ! spinalis cervicis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52872 ! -property_value: IAO:0000589 "mastoid process of temporal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0011220 ! mastoid process of temporal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58600 ! -property_value: IAO:0000589 "ora serrata of retina (post-embryonic human)" xsd:string -intersection_of: UBERON:0011221 ! ora serrata of retina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49150 ! -property_value: IAO:0000589 "intra-ocular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011222 ! intra-ocular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:40878 ! -property_value: IAO:0000589 "synovial membrane of synovial tendon sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0011233 ! synovial membrane of synovial tendon sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:40877 ! -property_value: IAO:0000589 "fibrous membrane of synovial tendon sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0011234 ! fibrous membrane of synovial tendon sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:27935 ! -property_value: IAO:0000589 "deep fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0011236 ! deep fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76754 ! -property_value: IAO:0000589 "visceral fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0011237 ! visceral fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52891 ! -property_value: IAO:0000589 "perpendicular plate of ethmoid (post-embryonic human)" xsd:string -intersection_of: UBERON:0011244 ! perpendicular plate of ethmoid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59048 ! -property_value: IAO:0000589 "infra-orbital canal of maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0011245 ! infra-orbital canal of maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7484 ! -property_value: IAO:0000589 "appendicular skeletal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0011249 ! appendicular skeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35421 ! -property_value: IAO:0000589 "carpometacarpal joint of digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011265 ! carpometacarpal joint of digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25056 ! -property_value: IAO:0000589 "dorsal trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0011270 ! dorsal trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54329 ! -property_value: IAO:0000589 "nail of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011273 ! nail of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54332 ! -property_value: IAO:0000589 "nail of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011274 ! nail of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54335 ! -property_value: IAO:0000589 "nail of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011275 ! nail of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54338 ! -property_value: IAO:0000589 "nail of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011276 ! nail of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54341 ! -property_value: IAO:0000589 "nail of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011277 ! nail of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54344 ! -property_value: IAO:0000589 "nail of pedal digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011278 ! nail of pedal digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54347 ! -property_value: IAO:0000589 "nail of pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011279 ! nail of pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54350 ! -property_value: IAO:0000589 "nail of pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011280 ! nail of pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54353 ! -property_value: IAO:0000589 "nail of pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011281 ! nail of pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54356 ! -property_value: IAO:0000589 "nail of pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0011282 ! nail of pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18691 ! -property_value: IAO:0000589 "epoophoron (post-embryonic human)" xsd:string -intersection_of: UBERON:0011283 ! epoophoron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55074 ! -property_value: IAO:0000589 "pharyngobasilar fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0011289 ! pharyngobasilar fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83930 ! -property_value: IAO:0000589 "white matter of telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0011299 ! white matter of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83911 ! -property_value: IAO:0000589 "gray matter of telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0011300 ! gray matter of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52827 ! -property_value: IAO:0000589 "body of mandible (post-embryonic human)" xsd:string -intersection_of: UBERON:0011309 ! body of mandible -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55227 ! -property_value: IAO:0000589 "hyoepiglottic ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0011311 ! hyoepiglottic ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53288 ! -property_value: IAO:0000589 "digastric branch of facial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011315 ! digastric branch of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53298 ! -property_value: IAO:0000589 "nerve to stylohyoid from facial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011316 ! nerve to stylohyoid from facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53487 ! -property_value: IAO:0000589 "nerve to stylopharyngeus from glossopharyngeal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011317 ! nerve to stylopharyngeus from glossopharyngeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57050 ! -property_value: IAO:0000589 "capsule of temporomandibular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011318 ! capsule of temporomandibular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57059 ! -property_value: IAO:0000589 "disk of temporomandibular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011319 ! disk of temporomandibular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57070 ! -property_value: IAO:0000589 "ligament of temporomandibular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011320 ! ligament of temporomandibular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53103 ! -property_value: IAO:0000589 "masseteric nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011321 ! masseteric nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53247 ! -property_value: IAO:0000589 "mylohyoid nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011322 ! mylohyoid nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82453 ! -property_value: IAO:0000589 "pharyngeal nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011325 ! pharyngeal nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6239 ! -property_value: IAO:0000589 "superior laryngeal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011326 ! superior laryngeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53187 ! -property_value: IAO:0000589 "deep temporal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011327 ! deep temporal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57558 ! -property_value: IAO:0000589 "surface of mandible (post-embryonic human)" xsd:string -intersection_of: UBERON:0011342 ! surface of mandible -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59464 ! -property_value: IAO:0000589 "medial surface of mandible (post-embryonic human)" xsd:string -intersection_of: UBERON:0011343 ! medial surface of mandible -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59463 ! -property_value: IAO:0000589 "lateral surface of mandible (post-embryonic human)" xsd:string -intersection_of: UBERON:0011344 ! lateral surface of mandible -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55077 ! -property_value: IAO:0000589 "pharyngeal raphe (post-embryonic human)" xsd:string -intersection_of: UBERON:0011345 ! pharyngeal raphe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75111 ! -property_value: IAO:0000589 "palatine raphe (post-embryonic human)" xsd:string -intersection_of: UBERON:0011346 ! palatine raphe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55618 ! -property_value: IAO:0000589 "pterygomandibular raphe (post-embryonic human)" xsd:string -intersection_of: UBERON:0011349 ! pterygomandibular raphe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224562 ! -property_value: IAO:0000589 "cranial lymph vasculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0011363 ! cranial lymph vasculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23981 ! -property_value: IAO:0000589 "transverse process of atlas (post-embryonic human)" xsd:string -intersection_of: UBERON:0011370 ! transverse process of atlas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:27886 ! -property_value: IAO:0000589 "skin of prepuce of clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0011375 ! skin of prepuce of clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19733 ! -property_value: IAO:0000589 "male external urethral sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0011379 ! male external urethral sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19778 ! -property_value: IAO:0000589 "female external urethral sphincter (post-embryonic human)" xsd:string -intersection_of: UBERON:0011380 ! female external urethral sphincter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46837 ! -property_value: IAO:0000589 "facial modiolus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011386 ! facial modiolus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19729 ! -property_value: IAO:0000589 "bulbospongiosus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011389 ! bulbospongiosus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19037 ! -property_value: IAO:0000589 "pudendal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011390 ! pudendal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21866 ! -property_value: IAO:0000589 "perineal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011391 ! perineal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68205 ! -property_value: IAO:0000589 "blood vessel internal elastic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0011392 ! blood vessel internal elastic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19092 ! -property_value: IAO:0000589 "iliococcygeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011511 ! iliococcygeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19091 ! -property_value: IAO:0000589 "puborectalis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011512 ! puborectalis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19090 ! -property_value: IAO:0000589 "pubococcygeus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011528 ! pubococcygeus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46700 ! -property_value: IAO:0000589 "chondroglossus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011535 ! chondroglossus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54364 ! -property_value: IAO:0000589 "lumen of gastrointestinal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0011565 ! lumen of gastrointestinal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9398 ! -property_value: IAO:0000589 "lumen of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011566 ! lumen of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23628 ! -property_value: IAO:0000589 "styloid process of ulna (post-embryonic human)" xsd:string -intersection_of: UBERON:0011575 ! styloid process of ulna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:317104 ! -property_value: IAO:0000589 "supraorbital ridge (post-embryonic human)" xsd:string -intersection_of: UBERON:0011576 ! supraorbital ridge -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62445 ! -property_value: IAO:0000589 "commissure of diencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0011590 ! commissure of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62447 ! -property_value: IAO:0000589 "tract of diencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0011591 ! tract of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321646 ! -property_value: IAO:0000589 "maxillary tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0011593 ! maxillary tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321647 ! -property_value: IAO:0000589 "dentary tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0011594 ! dentary tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52775 ! -property_value: IAO:0000589 "lenticular process of incus bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0011599 ! lenticular process of incus bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59763 ! -property_value: IAO:0000589 "gingiva of upper jaw (post-embryonic human)" xsd:string -intersection_of: UBERON:0011601 ! gingiva of upper jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59764 ! -property_value: IAO:0000589 "gingiva of lower jaw (post-embryonic human)" xsd:string -intersection_of: UBERON:0011602 ! gingiva of lower jaw -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55300 ! -property_value: IAO:0000589 "horn of thyroid cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0011623 ! horn of thyroid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55294 ! -property_value: IAO:0000589 "superior horn of thyroid cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0011624 ! superior horn of thyroid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55297 ! -property_value: IAO:0000589 "inferior horn of thyroid cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0011625 ! inferior horn of thyroid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52849 ! -property_value: IAO:0000589 "orbital part of frontal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0011627 ! orbital part of frontal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55024 ! -property_value: IAO:0000589 "palatoglossal arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0011640 ! palatoglossal arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:305965 ! -property_value: IAO:0000589 "embryonic cardiovascular system (post-embryonic human)" xsd:string -intersection_of: UBERON:0011695 ! embryonic cardiovascular system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14469 ! -property_value: IAO:0000589 "left recurrent laryngeal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011766 ! left recurrent laryngeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14468 ! -property_value: IAO:0000589 "right recurrent laryngeal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0011767 ! right recurrent laryngeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:284626 ! -property_value: IAO:0000589 "cartilaginous projection (post-embryonic human)" xsd:string -intersection_of: UBERON:0011769 ! cartilaginous projection -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61243 ! -property_value: IAO:0000589 "utriculosaccular duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0011774 ! utriculosaccular duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54573 ! -property_value: IAO:0000589 "vagus nerve nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011775 ! vagus nerve nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77011 ! -property_value: IAO:0000589 "nucleus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0011777 ! nucleus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9630 ! -property_value: IAO:0000589 "superficial fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0011818 ! superficial fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85125 ! -property_value: IAO:0000589 "atrioventricular region (post-embryonic human)" xsd:string -intersection_of: UBERON:0011820 ! atrioventricular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20107 ! -property_value: IAO:0000589 "irregular connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0011821 ! irregular connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20109 ! -property_value: IAO:0000589 "dense irregular connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0011822 ! dense irregular connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75634 ! -property_value: IAO:0000589 "fibrous connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0011824 ! fibrous connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19783 ! -property_value: IAO:0000589 "loose connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0011825 ! loose connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20020 ! -property_value: IAO:0000589 "vestibular gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011826 ! vestibular gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58090 ! -property_value: IAO:0000589 "areolar gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011827 ! areolar gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58091 ! -property_value: IAO:0000589 "areolar tubercle (post-embryonic human)" xsd:string -intersection_of: UBERON:0011828 ! areolar tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20094 ! -property_value: IAO:0000589 "duct of lesser vestibular gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011830 ! duct of lesser vestibular gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20097 ! -property_value: IAO:0000589 "duct of vestibular gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011831 ! duct of vestibular gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67744 ! -property_value: IAO:0000589 "duct of areolar gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011844 ! duct of areolar gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70947 ! -property_value: IAO:0000589 "duct of sebaceous gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011845 ! duct of sebaceous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59657 ! -property_value: IAO:0000589 "acinus of sebaceous gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011846 ! acinus of sebaceous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59863 ! -property_value: IAO:0000589 "acinus of parotid gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011847 ! acinus of parotid gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59870 ! -property_value: IAO:0000589 "acinus of salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011850 ! acinus of salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62081 ! -property_value: IAO:0000589 "acinus of areolar gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011854 ! acinus of areolar gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74438 ! -property_value: IAO:0000589 "acinus of lactiferous gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011856 ! acinus of lactiferous gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85250 ! -property_value: IAO:0000589 "acinus of lacrimal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0011857 ! acinus of lacrimal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53163 ! -property_value: IAO:0000589 "internal acoustic meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011859 ! internal acoustic meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63212 ! -property_value: IAO:0000589 "collection of collagen fibrils (post-embryonic human)" xsd:string -intersection_of: UBERON:0011860 ! collection of collagen fibrils -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75300 ! -property_value: IAO:0000589 "condylar joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011866 ! condylar joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35293 ! -property_value: IAO:0000589 "midcarpal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011868 ! midcarpal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73126 ! -property_value: IAO:0000589 "pisiform joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011869 ! pisiform joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42318 ! -property_value: IAO:0000589 "pisotriquetral joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011870 ! pisotriquetral joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52960 ! -property_value: IAO:0000589 "nasomaxillary suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0011871 ! nasomaxillary suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76693 ! -property_value: IAO:0000589 "amphiarthrosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0011874 ! amphiarthrosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63980 ! -property_value: IAO:0000589 "ligament of sternoclavicular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011875 ! ligament of sternoclavicular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54641 ! -property_value: IAO:0000589 "body of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0011876 ! body of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54650 ! -property_value: IAO:0000589 "margin of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0011877 ! margin of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62998 ! -property_value: IAO:0000589 "muscle layer of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011878 ! muscle layer of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19982 ! -property_value: IAO:0000589 "lumen of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0011894 ! lumen of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9729 ! -property_value: IAO:0000589 "endomysium (post-embryonic human)" xsd:string -intersection_of: UBERON:0011895 ! endomysium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:260651 ! -property_value: IAO:0000589 "smooth muscle endomysium (post-embryonic human)" xsd:string -intersection_of: UBERON:0011896 ! smooth muscle endomysium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83112 ! -property_value: IAO:0000589 "cardiac endomysium (post-embryonic human)" xsd:string -intersection_of: UBERON:0011897 ! cardiac endomysium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86022 ! -property_value: IAO:0000589 "skeletal muscle endomysium (post-embryonic human)" xsd:string -intersection_of: UBERON:0011898 ! skeletal muscle endomysium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9726 ! -property_value: IAO:0000589 "epimysium (post-embryonic human)" xsd:string -intersection_of: UBERON:0011899 ! epimysium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9728 ! -property_value: IAO:0000589 "perimysium (post-embryonic human)" xsd:string -intersection_of: UBERON:0011900 ! perimysium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70945 ! -property_value: IAO:0000589 "hair matrix (post-embryonic human)" xsd:string -intersection_of: UBERON:0011901 ! hair matrix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22543 ! -property_value: IAO:0000589 "plantaris (post-embryonic human)" xsd:string -intersection_of: UBERON:0011905 ! plantaris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85453 ! -property_value: IAO:0000589 "muscle head (post-embryonic human)" xsd:string -intersection_of: UBERON:0011906 ! muscle head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45956 ! -property_value: IAO:0000589 "gastrocnemius medialis (post-embryonic human)" xsd:string -intersection_of: UBERON:0011907 ! gastrocnemius medialis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45959 ! -property_value: IAO:0000589 "gastrocnemius lateralis (post-embryonic human)" xsd:string -intersection_of: UBERON:0011908 ! gastrocnemius lateralis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58422 ! -property_value: IAO:0000589 "line of Schwalbe (post-embryonic human)" xsd:string -intersection_of: UBERON:0011918 ! line of Schwalbe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5924 ! -property_value: IAO:0000589 "postganglionic autonomic fiber (post-embryonic human)" xsd:string -intersection_of: UBERON:0011924 ! postganglionic autonomic fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5923 ! -property_value: IAO:0000589 "preganglionic autonomic fiber (post-embryonic human)" xsd:string -intersection_of: UBERON:0011925 ! preganglionic autonomic fiber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53670 ! -property_value: IAO:0000589 "nasal hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0011931 ! nasal hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70661 ! -property_value: IAO:0000589 "pilosebaceous unit (post-embryonic human)" xsd:string -intersection_of: UBERON:0011932 ! pilosebaceous unit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23249 ! -property_value: IAO:0000589 "lateral angle of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0011941 ! lateral angle of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74458 ! -property_value: IAO:0000589 "mammary gland luminal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0011950 ! mammary gland luminal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74262 ! -property_value: IAO:0000589 "prostate luminal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0011951 ! prostate luminal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14339 ! -property_value: IAO:0000589 "left hepatic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0011955 ! left hepatic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14338 ! -property_value: IAO:0000589 "right hepatic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0011956 ! right hepatic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14340 ! -property_value: IAO:0000589 "middle hepatic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0011957 ! middle hepatic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43521 ! -property_value: IAO:0000589 "acetabular labrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0011958 ! acetabular labrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23290 ! -property_value: IAO:0000589 "glenoid labrum of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0011959 ! glenoid labrum of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:34944 ! -property_value: IAO:0000589 "articular capsule of glenohumeral joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011960 ! articular capsule of glenohumeral joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42821 ! -property_value: IAO:0000589 "articular capsule of hip joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011961 ! articular capsule of hip joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35201 ! -property_value: IAO:0000589 "transverse tarsal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011962 ! transverse tarsal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35204 ! -property_value: IAO:0000589 "talocalcaneonavicular joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011963 ! talocalcaneonavicular joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35207 ! -property_value: IAO:0000589 "calcaneocuboid joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011964 ! calcaneocuboid joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75298 ! -property_value: IAO:0000589 "saddle joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011965 ! saddle joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7502 ! -property_value: IAO:0000589 "manubriosternal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011966 ! manubriosternal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7952 ! -property_value: IAO:0000589 "costotransverse joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011967 ! costotransverse joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35291 ! -property_value: IAO:0000589 "radio-carpal joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011968 ! radio-carpal joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44080 ! -property_value: IAO:0000589 "talofibular ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0011970 ! talofibular ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44089 ! -property_value: IAO:0000589 "calcaneofibular ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0011971 ! calcaneofibular ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44055 ! -property_value: IAO:0000589 "medial ligament of ankle joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0011972 ! medial ligament of ankle joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321561 ! -property_value: IAO:0000589 "epiphysis of distal phalanx of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0011979 ! epiphysis of distal phalanx of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7401 ! -property_value: IAO:0000589 "lobar bronchus of right lung middle lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0012063 ! lobar bronchus of right lung middle lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7423 ! -property_value: IAO:0000589 "lobar bronchus of left lung upper lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0012065 ! lobar bronchus of left lung upper lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7432 ! -property_value: IAO:0000589 "lobar bronchus of left lung lower lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0012066 ! lobar bronchus of left lung lower lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62510 ! -property_value: IAO:0000589 "primary bronchiole (post-embryonic human)" xsd:string -intersection_of: UBERON:0012067 ! primary bronchiole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62811 ! -property_value: IAO:0000589 "epithelium-associated lymphoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0012069 ! epithelium-associated lymphoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59857 ! -property_value: IAO:0000589 "bony part of hard palate (post-embryonic human)" xsd:string -intersection_of: UBERON:0012074 ! bony part of hard palate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43700 ! -property_value: IAO:0000589 "fovea capitis of femur (post-embryonic human)" xsd:string -intersection_of: UBERON:0012078 ! fovea capitis of femur -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62646 ! -property_value: IAO:0000589 "bronchial lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0012082 ! bronchial lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13116 ! -property_value: IAO:0000589 "lumen of primary bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0012083 ! lumen of primary bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62520 ! -property_value: IAO:0000589 "lumen of secondary bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0012084 ! lumen of secondary bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62593 ! -property_value: IAO:0000589 "lumen of tertiary bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0012085 ! lumen of tertiary bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59793 ! -property_value: IAO:0000589 "buccal salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0012102 ! buccal salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58040 ! -property_value: IAO:0000589 "suspensory ligament of breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0012103 ! suspensory ligament of breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54389 ! -property_value: IAO:0000589 "zygomatic process of frontal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0012109 ! zygomatic process of frontal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52907 ! -property_value: IAO:0000589 "frontal process of zygomatic bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0012110 ! frontal process of zygomatic bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77271 ! -property_value: IAO:0000589 "diastema (post-embryonic human)" xsd:string -intersection_of: UBERON:0012111 ! diastema -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62964 ! -property_value: IAO:0000589 "ingested food (post-embryonic human)" xsd:string -intersection_of: UBERON:0012112 ! ingested food -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78441 ! -property_value: IAO:0000589 "bolus of food (post-embryonic human)" xsd:string -intersection_of: UBERON:0012113 ! bolus of food -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75304 ! -property_value: IAO:0000589 "lumen of nutrient foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0012117 ! lumen of nutrient foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37076 ! -property_value: IAO:0000589 "infraspinatus tendon (post-embryonic human)" xsd:string -intersection_of: UBERON:0012118 ! infraspinatus tendon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42604 ! -property_value: IAO:0000589 "vinculum of tendon (post-embryonic human)" xsd:string -intersection_of: UBERON:0012120 ! vinculum of tendon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59518 ! -property_value: IAO:0000589 "nose tip (post-embryonic human)" xsd:string -intersection_of: UBERON:0012128 ! nose tip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23450 ! -property_value: IAO:0000589 "olecranon fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0012130 ! olecranon fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77232 ! -property_value: IAO:0000589 "centrale (post-embryonic human)" xsd:string -intersection_of: UBERON:0012131 ! centrale -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35213 ! -property_value: IAO:0000589 "intercuneiform joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0012132 ! intercuneiform joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73223 ! -property_value: IAO:0000589 "lateral-intermediate intercuneiform joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0012133 ! lateral-intermediate intercuneiform joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73222 ! -property_value: IAO:0000589 "medial-intermediate intercuneiform joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0012134 ! medial-intermediate intercuneiform joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59799 ! -property_value: IAO:0000589 "buccal fat pad (post-embryonic human)" xsd:string -intersection_of: UBERON:0012167 ! buccal fat pad -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77383 ! -property_value: IAO:0000589 "core of nucleus accumbens (post-embryonic human)" xsd:string -intersection_of: UBERON:0012170 ! core of nucleus accumbens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77387 ! -property_value: IAO:0000589 "shell of nucleus accumbens (post-embryonic human)" xsd:string -intersection_of: UBERON:0012171 ! shell of nucleus accumbens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14754 ! -property_value: IAO:0000589 "middle suprarenal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0012173 ! middle suprarenal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55044 ! -property_value: IAO:0000589 "tonsil crypt (post-embryonic human)" xsd:string -intersection_of: UBERON:0012181 ! tonsil crypt -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50025 ! -property_value: IAO:0000589 "frontal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0012187 ! frontal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4797 ! -property_value: IAO:0000589 "left superior intercostal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0012195 ! left superior intercostal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4877 ! -property_value: IAO:0000589 "right superior intercostal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0012196 ! right superior intercostal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12243 ! -property_value: IAO:0000589 "intercostal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0012198 ! intercostal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4858 ! -property_value: IAO:0000589 "posterior intercostal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0012199 ! posterior intercostal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12831 ! -property_value: IAO:0000589 "anterior intercostal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0012200 ! anterior intercostal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5932 ! -property_value: IAO:0000589 "intercostal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0012236 ! intercostal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78121 ! -property_value: IAO:0000589 "superior phrenic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0012237 ! superior phrenic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19650 ! -property_value: IAO:0000589 "urethral meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0012240 ! urethral meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85265 ! -property_value: IAO:0000589 "male urethral meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0012241 ! male urethral meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85263 ! -property_value: IAO:0000589 "internal urethral orifice (post-embryonic human)" xsd:string -intersection_of: UBERON:0012242 ! internal urethral orifice -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68829 ! -property_value: IAO:0000589 "thyroid follicular lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0012246 ! thyroid follicular lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77056 ! -property_value: IAO:0000589 "ectocervix (post-embryonic human)" xsd:string -intersection_of: UBERON:0012249 ! ectocervix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86484 ! -property_value: IAO:0000589 "ectocervix (post-embryonic human)" xsd:string -intersection_of: UBERON:0012249 ! ectocervix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14734 ! -property_value: IAO:0000589 "inferior phrenic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0012255 ! inferior phrenic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15074 ! -property_value: IAO:0000589 "major duodenal papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0012271 ! major duodenal papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15075 ! -property_value: IAO:0000589 "minor duodenal papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0012272 ! minor duodenal papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86452 ! -property_value: IAO:0000589 "meso-epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0012275 ! meso-epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86488 ! -property_value: IAO:0000589 "endometrium glandular epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0012276 ! endometrium glandular epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321518 ! -property_value: IAO:0000589 "gland of nasal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0012278 ! gland of nasal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293351 ! -property_value: IAO:0000589 "hemisphere of embryo (post-embryonic human)" xsd:string -intersection_of: UBERON:0012286 ! hemisphere of embryo -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35502 ! -property_value: IAO:0000589 "lateral malleolus of fibula (post-embryonic human)" xsd:string -intersection_of: UBERON:0012291 ! lateral malleolus of fibula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19722 ! -property_value: IAO:0000589 "navicular fossa of spongiose part of urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0012294 ! navicular fossa of spongiose part of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19781 ! -property_value: IAO:0000589 "Guérin's valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0012295 ! Guérin's valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19718 ! -property_value: IAO:0000589 "urethral crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0012296 ! urethral crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85270 ! -property_value: IAO:0000589 "male urethral crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0012297 ! male urethral crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85271 ! -property_value: IAO:0000589 "female urethral crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0012298 ! female urethral crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76904 ! -property_value: IAO:0000589 "mucosa of urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0012299 ! mucosa of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19674 ! -property_value: IAO:0000589 "male membranous urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0012302 ! male membranous urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77047 ! -property_value: IAO:0000589 "ureteral orifice (post-embryonic human)" xsd:string -intersection_of: UBERON:0012303 ! ureteral orifice -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61232 ! -property_value: IAO:0000589 "lateral cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0012306 ! lateral cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61230 ! -property_value: IAO:0000589 "anterior cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0012307 ! anterior cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12769 ! -property_value: IAO:0000589 "superficial lateral cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0012308 ! superficial lateral cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12776 ! -property_value: IAO:0000589 "superficial anterior cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0012309 ! superficial anterior cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12770 ! -property_value: IAO:0000589 "deep lateral cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0012310 ! deep lateral cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12779 ! -property_value: IAO:0000589 "deep anterior cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0012311 ! deep anterior cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:312685 ! -property_value: IAO:0000589 "maxillary process ectoderm (post-embryonic human)" xsd:string -intersection_of: UBERON:0012312 ! maxillary process ectoderm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293103 ! -property_value: IAO:0000589 "embryonic facial prominence (post-embryonic human)" xsd:string -intersection_of: UBERON:0012314 ! embryonic facial prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75305 ! -property_value: IAO:0000589 "incisive foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0012315 ! incisive foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19984 ! -property_value: IAO:0000589 "vagina orifice (post-embryonic human)" xsd:string -intersection_of: UBERON:0012317 ! vagina orifice -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49986 ! -property_value: IAO:0000589 "anterior ethmoidal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0012318 ! anterior ethmoidal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49989 ! -property_value: IAO:0000589 "posterior ethmoidal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0012319 ! posterior ethmoidal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10659 ! -property_value: IAO:0000589 "deep cervical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0012321 ! deep cervical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52489 ! -property_value: IAO:0000589 "ascending cervical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0012322 ! ascending cervical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10664 ! -property_value: IAO:0000589 "transverse cervical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0012324 ! transverse cervical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19653 ! -property_value: IAO:0000589 "pearly penile papule (post-embryonic human)" xsd:string -intersection_of: UBERON:0012327 ! pearly penile papule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45568 ! -property_value: IAO:0000589 "keratinized stratified squamous epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0012329 ! keratinized stratified squamous epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79771 ! -property_value: IAO:0000589 "nasal-associated lymphoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0012330 ! nasal-associated lymphoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19808 ! -property_value: IAO:0000589 "mesosalpinx (post-embryonic human)" xsd:string -intersection_of: UBERON:0012331 ! mesosalpinx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16516 ! -property_value: IAO:0000589 "broad ligament of uterus (post-embryonic human)" xsd:string -intersection_of: UBERON:0012332 ! broad ligament of uterus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:29350 ! -property_value: IAO:0000589 "perianal skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0012336 ! perianal skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52590 ! -property_value: IAO:0000589 "cauda equina (post-embryonic human)" xsd:string -intersection_of: UBERON:0012337 ! cauda equina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75592 ! -property_value: IAO:0000589 "manual acropodium region (post-embryonic human)" xsd:string -intersection_of: UBERON:0012355 ! manual acropodium region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70664 ! -property_value: IAO:0000589 "pedal acropodium region (post-embryonic human)" xsd:string -intersection_of: UBERON:0012356 ! pedal acropodium region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68783 ! -property_value: IAO:0000589 "thyroid follicle epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0012363 ! thyroid follicle epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68831 ! -property_value: IAO:0000589 "colloid of thyroid follicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0012364 ! colloid of thyroid follicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15697 ! -property_value: IAO:0000589 "muscle layer of intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0012367 ! muscle layer of intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62899 ! -property_value: IAO:0000589 "circular muscle layer of muscular coat (post-embryonic human)" xsd:string -intersection_of: UBERON:0012368 ! circular muscle layer of muscular coat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62900 ! -property_value: IAO:0000589 "longitudinal muscle layer of muscular coat (post-embryonic human)" xsd:string -intersection_of: UBERON:0012369 ! longitudinal muscle layer of muscular coat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77598 ! -property_value: IAO:0000589 "subserosal plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0012374 ! subserosal plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45636 ! -property_value: IAO:0000589 "subserosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0012375 ! subserosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75784 ! -property_value: IAO:0000589 "retromolar triangle (post-embryonic human)" xsd:string -intersection_of: UBERON:0012376 ! retromolar triangle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14951 ! -property_value: IAO:0000589 "muscle layer of jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0012377 ! muscle layer of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15930 ! -property_value: IAO:0000589 "muscle layer of urinary bladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0012378 ! muscle layer of urinary bladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:81160 ! -property_value: IAO:0000589 "large intestine smooth muscle circular layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0012398 ! large intestine smooth muscle circular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63637 ! -property_value: IAO:0000589 "large intestine smooth muscle longitudinal layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0012399 ! large intestine smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14935 ! -property_value: IAO:0000589 "small intestine smooth muscle circular layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0012401 ! small intestine smooth muscle circular layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14936 ! -property_value: IAO:0000589 "small intestine smooth muscle longitudinal layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0012402 ! small intestine smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15041 ! -property_value: IAO:0000589 "taenia coli (post-embryonic human)" xsd:string -intersection_of: UBERON:0012419 ! taenia coli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67296 ! -property_value: IAO:0000589 "layer of microvilli (post-embryonic human)" xsd:string -intersection_of: UBERON:0012423 ! layer of microvilli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70977 ! -property_value: IAO:0000589 "brush border layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0012424 ! brush border layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70978 ! -property_value: IAO:0000589 "striated border microvillus layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0012425 ! striated border microvillus layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70979 ! -property_value: IAO:0000589 "short microvillus layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0012426 ! short microvillus layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14073 ! -property_value: IAO:0000589 "hematopoietic tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0012429 ! hematopoietic tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58102 ! -property_value: IAO:0000589 "tunica fibrosa of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0012430 ! tunica fibrosa of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14711 ! -property_value: IAO:0000589 "epiploic foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0012442 ! epiploic foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86587 ! -property_value: IAO:0000589 "mechanoreceptor (post-embryonic human)" xsd:string -intersection_of: UBERON:0012449 ! mechanoreceptor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83605 ! -property_value: IAO:0000589 "Meissner's corpuscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0012450 ! Meissner's corpuscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84650 ! -property_value: IAO:0000589 "sensory receptor (post-embryonic human)" xsd:string -intersection_of: UBERON:0012451 ! sensory receptor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83606 ! -property_value: IAO:0000589 "Merkel nerve ending (post-embryonic human)" xsd:string -intersection_of: UBERON:0012456 ! Merkel nerve ending -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83602 ! -property_value: IAO:0000589 "Ruffini nerve ending (post-embryonic human)" xsd:string -intersection_of: UBERON:0012457 ! Ruffini nerve ending -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84004 ! -property_value: IAO:0000589 "Ruffini nerve ending (post-embryonic human)" xsd:string -intersection_of: UBERON:0012457 ! Ruffini nerve ending -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16520 ! -property_value: IAO:0000589 "hepatogastric ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0012471 ! hepatogastric ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16521 ! -property_value: IAO:0000589 "hepatoduodenal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0012472 ! hepatoduodenal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24139 ! -property_value: IAO:0000589 "skeleton of pectoral complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0012475 ! skeleton of pectoral complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24140 ! -property_value: IAO:0000589 "skeleton of pelvic complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0012476 ! skeleton of pelvic complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24189 ! -property_value: IAO:0000589 "dorsal part of neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0012477 ! dorsal part of neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14944 ! -property_value: IAO:0000589 "muscle layer of duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0012488 ! muscle layer of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14986 ! -property_value: IAO:0000589 "muscle layer of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0012489 ! muscle layer of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15708 ! -property_value: IAO:0000589 "muscle layer of anal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0012490 ! muscle layer of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15059 ! -property_value: IAO:0000589 "muscularis mucosae of duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0012494 ! muscularis mucosae of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15687 ! -property_value: IAO:0000589 "muscularis mucosae of rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0012497 ! muscularis mucosae of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14997 ! -property_value: IAO:0000589 "serosa of appendix (post-embryonic human)" xsd:string -intersection_of: UBERON:0012498 ! serosa of appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18316 ! -property_value: IAO:0000589 "serosa of uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0012499 ! serosa of uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17073 ! -property_value: IAO:0000589 "serosa of fundus of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0012503 ! serosa of fundus of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63006 ! -property_value: IAO:0000589 "adventitia of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0012504 ! adventitia of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18305 ! -property_value: IAO:0000589 "ampulla of uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0012648 ! ampulla of uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17046 ! -property_value: IAO:0000589 "gastroduodenal junction (post-embryonic human)" xsd:string -intersection_of: UBERON:0012650 ! gastroduodenal junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59201 ! -property_value: IAO:0000589 "palatine torus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013068 ! palatine torus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22525 ! -property_value: IAO:0000589 "popliteal area (post-embryonic human)" xsd:string -intersection_of: UBERON:0013069 ! popliteal area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32888 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0013121 ! proximal epiphysis of phalanx of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32890 ! -property_value: IAO:0000589 "distal epiphysis of phalanx of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0013122 ! distal epiphysis of phalanx of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70316 ! -property_value: IAO:0000589 "left posterior cardinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0013124 ! left posterior cardinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19614 ! -property_value: IAO:0000589 "bulb of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0013128 ! bulb of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20199 ! -property_value: IAO:0000589 "bulb of vestibule (post-embryonic human)" xsd:string -intersection_of: UBERON:0013129 ! bulb of vestibule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16038 ! -property_value: IAO:0000589 "penicillar arteriole (post-embryonic human)" xsd:string -intersection_of: UBERON:0013132 ! penicillar arteriole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4163 ! -property_value: IAO:0000589 "superior phrenic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0013133 ! superior phrenic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15822 ! -property_value: IAO:0000589 "coronary ligament of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0013138 ! coronary ligament of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15820 ! -property_value: IAO:0000589 "ligament of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0013139 ! ligament of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66644 ! -property_value: IAO:0000589 "systemic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0013140 ! systemic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45632 ! -property_value: IAO:0000589 "capillary bed (post-embryonic human)" xsd:string -intersection_of: UBERON:0013141 ! capillary bed -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44559 ! -property_value: IAO:0000589 "vein of genicular venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013144 ! vein of genicular venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44320 ! -property_value: IAO:0000589 "accessory saphenous vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0013145 ! accessory saphenous vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83980 ! -property_value: IAO:0000589 "arachnoid villus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013153 ! arachnoid villus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78450 ! -property_value: IAO:0000589 "left lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0013161 ! left lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78449 ! -property_value: IAO:0000589 "right lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0013162 ! right lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55037 ! -property_value: IAO:0000589 "epiglottic vallecula (post-embryonic human)" xsd:string -intersection_of: UBERON:0013165 ! epiglottic vallecula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75267 ! -property_value: IAO:0000589 "vallecula of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0013166 ! vallecula of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55260 ! -property_value: IAO:0000589 "cricopharyngeal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0013167 ! cricopharyngeal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55230 ! -property_value: IAO:0000589 "thyroepiglottic ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0013168 ! thyroepiglottic ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64147 ! -property_value: IAO:0000589 "vestibular ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0013169 ! vestibular ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55261 ! -property_value: IAO:0000589 "cricoarytenoid ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0013170 ! cricoarytenoid ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55233 ! -property_value: IAO:0000589 "cricothyroid ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0013171 ! cricothyroid ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55259 ! -property_value: IAO:0000589 "cricotracheal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0013172 ! cricotracheal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56478 ! -property_value: IAO:0000589 "anterior part of tympanic bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0013173 ! anterior part of tympanic bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18613 ! -property_value: IAO:0000589 "ovarian cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0013191 ! ovarian cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18616 ! -property_value: IAO:0000589 "ovarian medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0013192 ! ovarian medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83854 ! -property_value: IAO:0000589 "stria of neuraxis (post-embryonic human)" xsd:string -intersection_of: UBERON:0013199 ! stria of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14602 ! -property_value: IAO:0000589 "hypogastrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0013203 ! hypogastrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76728 ! -property_value: IAO:0000589 "rete mirabile (post-embryonic human)" xsd:string -intersection_of: UBERON:0013218 ! rete mirabile -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:320425 ! -property_value: IAO:0000589 "accessory lacrimal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0013226 ! accessory lacrimal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59159 ! -property_value: IAO:0000589 "sweat gland of eyelid (post-embryonic human)" xsd:string -intersection_of: UBERON:0013228 ! sweat gland of eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86279 ! -property_value: IAO:0000589 "serous acinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013232 ! serous acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:259204 ! -property_value: IAO:0000589 "ventrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0013235 ! ventrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25055 ! -property_value: IAO:0000589 "ventral trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0013236 ! ventral trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74055 ! -property_value: IAO:0000589 "paradidymis (post-embryonic human)" xsd:string -intersection_of: UBERON:0013248 ! paradidymis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18692 ! -property_value: IAO:0000589 "paroophoron (post-embryonic human)" xsd:string -intersection_of: UBERON:0013249 ! paroophoron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18696 ! -property_value: IAO:0000589 "vesicular appendage of epoophoron (post-embryonic human)" xsd:string -intersection_of: UBERON:0013250 ! vesicular appendage of epoophoron -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76609 ! -property_value: IAO:0000589 "remnnant of ductus deferens (post-embryonic human)" xsd:string -intersection_of: UBERON:0013262 ! remnnant of ductus deferens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77300 ! -property_value: IAO:0000589 "remnant of processus vaginalis (post-embryonic human)" xsd:string -intersection_of: UBERON:0013277 ! remnant of processus vaginalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33738 ! -property_value: IAO:0000589 "diaphysis of fibula (post-embryonic human)" xsd:string -intersection_of: UBERON:0013279 ! diaphysis of fibula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33125 ! -property_value: IAO:0000589 "diaphysis of tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0013280 ! diaphysis of tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58435 ! -property_value: IAO:0000589 "blood vessel layer of choroid (post-embryonic human)" xsd:string -intersection_of: UBERON:0013399 ! blood vessel layer of choroid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76625 ! -property_value: IAO:0000589 "asterion of skull (post-embryonic human)" xsd:string -intersection_of: UBERON:0013403 ! asterion of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264776 ! -property_value: IAO:0000589 "bregma (post-embryonic human)" xsd:string -intersection_of: UBERON:0013406 ! bregma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9644 ! -property_value: IAO:0000589 "cranial cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0013411 ! cranial cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57122 ! -property_value: IAO:0000589 "groove for sigmoid sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013420 ! groove for sigmoid sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75308 ! -property_value: IAO:0000589 "infratemporal fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0013422 ! infratemporal fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264773 ! -property_value: IAO:0000589 "anatomical point connecting sagittal and lambdoidal sutures (post-embryonic human)" xsd:string -intersection_of: UBERON:0013424 ! anatomical point connecting sagittal and lambdoidal sutures -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264774 ! -property_value: IAO:0000589 "obelion (post-embryonic human)" xsd:string -intersection_of: UBERON:0013426 ! obelion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:284930 ! -property_value: IAO:0000589 "ophryon (post-embryonic human)" xsd:string -intersection_of: UBERON:0013428 ! ophryon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264711 ! -property_value: IAO:0000589 "porion (post-embryonic human)" xsd:string -intersection_of: UBERON:0013436 ! porion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76627 ! -property_value: IAO:0000589 "pterygomaxillary fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0013445 ! pterygomaxillary fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75038 ! -property_value: IAO:0000589 "spheno-petrosal fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0013455 ! spheno-petrosal fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264723 ! -property_value: IAO:0000589 "stephanion (post-embryonic human)" xsd:string -intersection_of: UBERON:0013459 ! stephanion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49458 ! -property_value: IAO:0000589 "sylvian point (post-embryonic human)" xsd:string -intersection_of: UBERON:0013462 ! sylvian point -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75307 ! -property_value: IAO:0000589 "temporal fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0013463 ! temporal fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75752 ! -property_value: IAO:0000589 "external occipital protuberance (post-embryonic human)" xsd:string -intersection_of: UBERON:0013469 ! external occipital protuberance -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293448 ! -property_value: IAO:0000589 "gustatory gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0013475 ! gustatory gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:269061 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of ileum (post-embryonic human)" xsd:string -intersection_of: UBERON:0013481 ! crypt of Lieberkuhn of ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:269063 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0013482 ! crypt of Lieberkuhn of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:269065 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0013483 ! crypt of Lieberkuhn of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57805 ! -property_value: IAO:0000589 "superficial cervical fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0013489 ! superficial cervical fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21791 ! -property_value: IAO:0000589 "deep cervical fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0013490 ! deep cervical fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76866 ! -property_value: IAO:0000589 "cervical fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0013491 ! cervical fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46560 ! -property_value: IAO:0000589 "prevertebral cervical fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0013492 ! prevertebral cervical fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19841 ! -property_value: IAO:0000589 "abdominal fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0013493 ! abdominal fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18302 ! -property_value: IAO:0000589 "subdivision of oviduct (post-embryonic human)" xsd:string -intersection_of: UBERON:0013515 ! subdivision of oviduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14585 ! -property_value: IAO:0000589 "stomach lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0013525 ! stomach lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68608 ! -property_value: IAO:0000589 "Brodmann (1909) area 11 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013528 ! Brodmann (1909) area 11 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68596 ! -property_value: IAO:0000589 "Brodmann area (post-embryonic human)" xsd:string -intersection_of: UBERON:0013529 ! Brodmann area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68598 ! -property_value: IAO:0000589 "Brodmann (1909) area 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013533 ! Brodmann (1909) area 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68600 ! -property_value: IAO:0000589 "Brodmann (1909) area 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013535 ! Brodmann (1909) area 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68604 ! -property_value: IAO:0000589 "Brodmann (1909) area 7 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013538 ! Brodmann (1909) area 7 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68605 ! -property_value: IAO:0000589 "Brodmann (1909) area 8 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013539 ! Brodmann (1909) area 8 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68606 ! -property_value: IAO:0000589 "Brodmann (1909) area 9 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013540 ! Brodmann (1909) area 9 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68607 ! -property_value: IAO:0000589 "Brodmann (1909) area 10 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013541 ! Brodmann (1909) area 10 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68609 ! -property_value: IAO:0000589 "Brodmann (1909) area 12 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013543 ! Brodmann (1909) area 12 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68610 ! -property_value: IAO:0000589 "Brodmann (1909) area 13 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013544 ! Brodmann (1909) area 13 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68611 ! -property_value: IAO:0000589 "Brodmann (1909) area 14 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013545 ! Brodmann (1909) area 14 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68612 ! -property_value: IAO:0000589 "Brodmann (1909) area 15 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013546 ! Brodmann (1909) area 15 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68613 ! -property_value: IAO:0000589 "Brodmann (1909) area 16 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013547 ! Brodmann (1909) area 16 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68616 ! -property_value: IAO:0000589 "Brodmann (1909) area 19 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013550 ! Brodmann (1909) area 19 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68617 ! -property_value: IAO:0000589 "Brodmann (1909) area 20 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013551 ! Brodmann (1909) area 20 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68618 ! -property_value: IAO:0000589 "Brodmann (1909) area 21 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013552 ! Brodmann (1909) area 21 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68619 ! -property_value: IAO:0000589 "Brodmann (1909) area 22 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013553 ! Brodmann (1909) area 22 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68620 ! -property_value: IAO:0000589 "Brodmann (1909) area 23 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013554 ! Brodmann (1909) area 23 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68622 ! -property_value: IAO:0000589 "Brodmann (1909) area 25 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013556 ! Brodmann (1909) area 25 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68624 ! -property_value: IAO:0000589 "Brodmann (1909) area 27 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013558 ! Brodmann (1909) area 27 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68625 ! -property_value: IAO:0000589 "Brodmann (1909) area 28 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013559 ! Brodmann (1909) area 28 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68629 ! -property_value: IAO:0000589 "Brodmann (1909) area 32 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013560 ! Brodmann (1909) area 32 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68640 ! -property_value: IAO:0000589 "Brodmann (1909) area 43 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013561 ! Brodmann (1909) area 43 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68637 ! -property_value: IAO:0000589 "Brodmann (1909) area 40 (post-embryonic human)" xsd:string -intersection_of: UBERON:0013573 ! Brodmann (1909) area 40 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256154 ! -property_value: IAO:0000589 "accessory nucleus of optic tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0013598 ! accessory nucleus of optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77651 ! -property_value: IAO:0000589 "dorsal accessory nucleus of optic tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0013599 ! dorsal accessory nucleus of optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77652 ! -property_value: IAO:0000589 "lateral accessory nucleus of optic tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0013600 ! lateral accessory nucleus of optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77653 ! -property_value: IAO:0000589 "medial accessory nucleus of optic tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0013601 ! medial accessory nucleus of optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76989 ! -property_value: IAO:0000589 "magnocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0013606 ! magnocellular layer of dorsal nucleus of lateral geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76992 ! -property_value: IAO:0000589 "parvocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0013607 ! parvocellular layer of dorsal nucleus of lateral geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76988 ! -property_value: IAO:0000589 "koniocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human)" xsd:string -intersection_of: UBERON:0013615 ! koniocellular layer of dorsal nucleus of lateral geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84206 ! -property_value: IAO:0000589 "primary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0013616 ! primary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84210 ! -property_value: IAO:0000589 "upper primary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0013617 ! upper primary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84207 ! -property_value: IAO:0000589 "secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0013618 ! secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55720 ! -property_value: IAO:0000589 "upper secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0013619 ! upper secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84213 ! -property_value: IAO:0000589 "lower primary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0013620 ! lower primary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55721 ! -property_value: IAO:0000589 "lower secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0013621 ! lower secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7475 ! -property_value: IAO:0000589 "short bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0013630 ! short bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55379 ! -property_value: IAO:0000589 "sesamoid cartilage (post-embryonic human)" xsd:string -intersection_of: UBERON:0013632 ! sesamoid cartilage -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75100 ! -property_value: IAO:0000589 "intertrochanteric crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0013633 ! intertrochanteric crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74587 ! -property_value: IAO:0000589 "intertrochanteric line (post-embryonic human)" xsd:string -intersection_of: UBERON:0013634 ! intertrochanteric line -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63587 ! -property_value: IAO:0000589 "epithelium of intestinal villus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013636 ! epithelium of intestinal villus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19577 ! -property_value: IAO:0000589 "prostate gland lateral lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0013637 ! prostate gland lateral lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14927 ! -property_value: IAO:0000589 "duodenal ampulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0013644 ! duodenal ampulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53066 ! -property_value: IAO:0000589 "buccal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0013646 ! buccal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53107 ! -property_value: IAO:0000589 "lateral pterygoid nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0013647 ! lateral pterygoid nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49739 ! -property_value: IAO:0000589 "masseteric artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0013648 ! masseteric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:284806 ! -property_value: IAO:0000589 "anatomical line between inner canthi (post-embryonic human)" xsd:string -intersection_of: UBERON:0013678 ! anatomical line between inner canthi -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59319 ! -property_value: IAO:0000589 "inner canthus of right eye (post-embryonic human)" xsd:string -intersection_of: UBERON:0013679 ! inner canthus of right eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59320 ! -property_value: IAO:0000589 "inner canthus of left eye (post-embryonic human)" xsd:string -intersection_of: UBERON:0013680 ! inner canthus of left eye -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258716 ! -property_value: IAO:0000589 "left dorsal thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013683 ! left dorsal thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:258714 ! -property_value: IAO:0000589 "right dorsal thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013684 ! right dorsal thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53165 ! -property_value: IAO:0000589 "foramen of skull (post-embryonic human)" xsd:string -intersection_of: UBERON:0013685 ! foramen of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9338 ! -property_value: IAO:0000589 "anatomical conduit space (post-embryonic human)" xsd:string -intersection_of: UBERON:0013686 ! anatomical conduit space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76623 ! -property_value: IAO:0000589 "pericranium (post-embryonic human)" xsd:string -intersection_of: UBERON:0013687 ! pericranium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:25245 ! -property_value: IAO:0000589 "buttock (post-embryonic human)" xsd:string -intersection_of: UBERON:0013691 ! buttock -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62109 ! -property_value: IAO:0000589 "inframammary fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0013692 ! inframammary fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54319 ! -property_value: IAO:0000589 "strand of pubic hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0013698 ! strand of pubic hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54253 ! -property_value: IAO:0000589 "strand of axillary hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0013699 ! strand of axillary hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231424 ! -property_value: IAO:0000589 "body proper (post-embryonic human)" xsd:string -intersection_of: UBERON:0013702 ! body proper -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293127 ! -property_value: IAO:0000589 "notochordal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0013704 ! notochordal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19923 ! -property_value: IAO:0000589 "fascia of Scarpa (post-embryonic human)" xsd:string -intersection_of: UBERON:0013705 ! fascia of Scarpa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82508 ! -property_value: IAO:0000589 "bone spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0013706 ! bone spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:82509 ! -property_value: IAO:0000589 "iliac spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0013707 ! iliac spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49465 ! -property_value: IAO:0000589 "anterior superior iliac spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0013708 ! anterior superior iliac spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63614 ! -property_value: IAO:0000589 "anterior inferior iliac spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0013709 ! anterior inferior iliac spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49468 ! -property_value: IAO:0000589 "posterior superior iliac spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0013710 ! posterior superior iliac spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63615 ! -property_value: IAO:0000589 "posterior inferior iliac spine (post-embryonic human)" xsd:string -intersection_of: UBERON:0013711 ! posterior inferior iliac spine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19926 ! -property_value: IAO:0000589 "superficial inguinal ring (post-embryonic human)" xsd:string -intersection_of: UBERON:0013717 ! superficial inguinal ring -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18088 ! -property_value: IAO:0000589 "dartos muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0013718 ! dartos muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:27647 ! -property_value: IAO:0000589 "dartos muscle of scrotum (post-embryonic human)" xsd:string -intersection_of: UBERON:0013719 ! dartos muscle of scrotum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19927 ! -property_value: IAO:0000589 "deep inguinal ring (post-embryonic human)" xsd:string -intersection_of: UBERON:0013721 ! deep inguinal ring -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44083 ! -property_value: IAO:0000589 "anterior talofibular ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0013725 ! anterior talofibular ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44084 ! -property_value: IAO:0000589 "posterior talofibular ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0013726 ! posterior talofibular ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231003 ! -property_value: IAO:0000589 "caudal linear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013733 ! caudal linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77503 ! -property_value: IAO:0000589 "interfascicular linear nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013736 ! interfascicular linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77497 ! -property_value: IAO:0000589 "paranigral nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013737 ! paranigral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77496 ! -property_value: IAO:0000589 "parabrachial pigmental nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013738 ! parabrachial pigmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33767 ! -property_value: IAO:0000589 "ulnar metaphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0013748 ! ulnar metaphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32830 ! -property_value: IAO:0000589 "metaphysis of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013749 ! metaphysis of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33135 ! -property_value: IAO:0000589 "metaphysis of tibia (post-embryonic human)" xsd:string -intersection_of: UBERON:0013750 ! metaphysis of tibia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33789 ! -property_value: IAO:0000589 "metaphysis of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0013751 ! metaphysis of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33804 ! -property_value: IAO:0000589 "diaphysis of metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0013752 ! diaphysis of metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33798 ! -property_value: IAO:0000589 "distal epiphysis of metacarpal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0013753 ! distal epiphysis of metacarpal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83066 ! -property_value: IAO:0000589 "arterial blood (post-embryonic human)" xsd:string -intersection_of: UBERON:0013755 ! arterial blood -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83067 ! -property_value: IAO:0000589 "venous blood (post-embryonic human)" xsd:string -intersection_of: UBERON:0013756 ! venous blood -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:263901 ! -property_value: IAO:0000589 "capillary blood (post-embryonic human)" xsd:string -intersection_of: UBERON:0013757 ! capillary blood -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20422 ! -property_value: IAO:0000589 "cervical os (post-embryonic human)" xsd:string -intersection_of: UBERON:0013758 ! cervical os -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17747 ! -property_value: IAO:0000589 "internal cervical os (post-embryonic human)" xsd:string -intersection_of: UBERON:0013759 ! internal cervical os -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76836 ! -property_value: IAO:0000589 "external cervical os (post-embryonic human)" xsd:string -intersection_of: UBERON:0013760 ! external cervical os -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17746 ! -property_value: IAO:0000589 "cervical cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0013761 ! cervical cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71881 ! -property_value: IAO:0000589 "common crus of semicircular duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0013764 ! common crus of semicircular duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59370 ! -property_value: IAO:0000589 "epicanthal fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0013766 ! epicanthal fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52894 ! -property_value: IAO:0000589 "frontal process of maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0013767 ! frontal process of maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17745 ! -property_value: IAO:0000589 "uterine lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0013769 ! uterine lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55264 ! -property_value: IAO:0000589 "intermammary cleft (post-embryonic human)" xsd:string -intersection_of: UBERON:0013770 ! intermammary cleft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223695 ! -property_value: IAO:0000589 "left nipple (post-embryonic human)" xsd:string -intersection_of: UBERON:0013772 ! left nipple -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223693 ! -property_value: IAO:0000589 "right nipple (post-embryonic human)" xsd:string -intersection_of: UBERON:0013773 ! right nipple -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33826 ! -property_value: IAO:0000589 "diaphysis of metatarsal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0013774 ! diaphysis of metatarsal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38301 ! -property_value: IAO:0000589 "skin of palm of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0013777 ! skin of palm of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37849 ! -property_value: IAO:0000589 "skin of sole of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0013778 ! skin of sole of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55239 ! -property_value: IAO:0000589 "fibroelastic membrane of larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0014372 ! fibroelastic membrane of larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42380 ! -property_value: IAO:0000589 "intrinsic muscle of manus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014375 ! intrinsic muscle of manus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64916 ! -property_value: IAO:0000589 "thenar muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0014376 ! thenar muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64917 ! -property_value: IAO:0000589 "hypothenar muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0014377 ! hypothenar muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65020 ! -property_value: IAO:0000589 "intrinsic muscle of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0014378 ! intrinsic muscle of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37454 ! -property_value: IAO:0000589 "adductor hallucis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0014379 ! adductor hallucis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37450 ! -property_value: IAO:0000589 "flexor digitorum brevis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0014380 ! flexor digitorum brevis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55448 ! -property_value: IAO:0000589 "aryepiglottic fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0014385 ! aryepiglottic fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293500 ! -property_value: IAO:0000589 "vertebral endplate (post-embryonic human)" xsd:string -intersection_of: UBERON:0014386 ! vertebral endplate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293883 ! -property_value: IAO:0000589 "mesenchyme derived from neural crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0014387 ! mesenchyme derived from neural crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54822 ! -property_value: IAO:0000589 "gustatory papilla of tongue (post-embryonic human)" xsd:string -intersection_of: UBERON:0014389 ! gustatory papilla of tongue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14958 ! -property_value: IAO:0000589 "muscle layer of ileum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014390 ! muscle layer of ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63084 ! -property_value: IAO:0000589 "sweat of palm (post-embryonic human)" xsd:string -intersection_of: UBERON:0014392 ! sweat of palm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63085 ! -property_value: IAO:0000589 "sweat of axilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0014393 ! sweat of axilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52770 ! -property_value: IAO:0000589 "lateral process of malleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014397 ! lateral process of malleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63133 ! -property_value: IAO:0000589 "sinusoidal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0014399 ! sinusoidal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:262090 ! -property_value: IAO:0000589 "hepatic sinusoidal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0014400 ! hepatic sinusoidal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16902 ! -property_value: IAO:0000589 "greater sciatic notch (post-embryonic human)" xsd:string -intersection_of: UBERON:0014411 ! greater sciatic notch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16911 ! -property_value: IAO:0000589 "lesser sciatic notch (post-embryonic human)" xsd:string -intersection_of: UBERON:0014436 ! lesser sciatic notch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16914 ! -property_value: IAO:0000589 "iliac crest (post-embryonic human)" xsd:string -intersection_of: UBERON:0014437 ! iliac crest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16988 ! -property_value: IAO:0000589 "superior pubic ramus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014438 ! superior pubic ramus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16989 ! -property_value: IAO:0000589 "inferior pubic ramus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014439 ! inferior pubic ramus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43533 ! -property_value: IAO:0000589 "ischiopubic ramus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014440 ! ischiopubic ramus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17007 ! -property_value: IAO:0000589 "ischial ramus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014441 ! ischial ramus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:304318 ! -property_value: IAO:0000589 "superior ischial ramus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014442 ! superior ischial ramus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17269 ! -property_value: IAO:0000589 "acetabular fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0014445 ! acetabular fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16944 ! -property_value: IAO:0000589 "acetabular notch (post-embryonic human)" xsd:string -intersection_of: UBERON:0014446 ! acetabular notch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72401 ! -property_value: IAO:0000589 "pretectal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014450 ! pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14730 ! -property_value: IAO:0000589 "extraperitoneal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0014456 ! extraperitoneal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77582 ! -property_value: IAO:0000589 "cardiac ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0014463 ! cardiac ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75136 ! -property_value: IAO:0000589 "subarachnoid fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0014466 ! subarachnoid fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75137 ! -property_value: IAO:0000589 "ansoparamedian fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014468 ! ansoparamedian fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83729 ! -property_value: IAO:0000589 "primary fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014471 ! primary fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83731 ! -property_value: IAO:0000589 "precentral fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014473 ! precentral fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83732 ! -property_value: IAO:0000589 "postcentral fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014474 ! postcentral fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77169 ! -property_value: IAO:0000589 "thoracic skeleton (post-embryonic human)" xsd:string -intersection_of: UBERON:0014477 ! thoracic skeleton -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265719 ! -property_value: IAO:0000589 "rib skeletal system (post-embryonic human)" xsd:string -intersection_of: UBERON:0014478 ! rib skeletal system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35375 ! -property_value: IAO:0000589 "distal interphalangeal joint of pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014507 ! distal interphalangeal joint of pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35337 ! -property_value: IAO:0000589 "distal interphalangeal joint of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014508 ! distal interphalangeal joint of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61951 ! -property_value: IAO:0000589 "limb of internal capsule of telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0014525 ! limb of internal capsule of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61952 ! -property_value: IAO:0000589 "anterior limb of internal capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0014526 ! anterior limb of internal capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61954 ! -property_value: IAO:0000589 "posterior limb of internal capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0014527 ! posterior limb of internal capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61960 ! -property_value: IAO:0000589 "extreme capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0014528 ! extreme capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61976 ! -property_value: IAO:0000589 "lenticular fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014529 ! lenticular fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62067 ! -property_value: IAO:0000589 "lenticular fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014529 ! lenticular fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83856 ! -property_value: IAO:0000589 "white matter lamina of neuraxis (post-embryonic human)" xsd:string -intersection_of: UBERON:0014530 ! white matter lamina of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62449 ! -property_value: IAO:0000589 "white matter lamina of diencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0014531 ! white matter lamina of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67951 ! -property_value: IAO:0000589 "white matter lamina of cerebral hemisphere (post-embryonic human)" xsd:string -intersection_of: UBERON:0014532 ! white matter lamina of cerebral hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62078 ! -property_value: IAO:0000589 "external medullary lamina of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014534 ! external medullary lamina of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61967 ! -property_value: IAO:0000589 "precommissural fornix of forebrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0014539 ! precommissural fornix of forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321588 ! -property_value: IAO:0000589 "thoracic division of spinal cord central canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0014541 ! thoracic division of spinal cord central canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321590 ! -property_value: IAO:0000589 "cervical division of cord spinal central canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0014542 ! cervical division of cord spinal central canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321589 ! -property_value: IAO:0000589 "lumbar division of spinal cord central canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0014543 ! lumbar division of spinal cord central canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321696 ! -property_value: IAO:0000589 "sacral division of spinal cord central canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0014547 ! sacral division of spinal cord central canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277868 ! -property_value: IAO:0000589 "pyramidal layer of CA1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014548 ! pyramidal layer of CA1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277870 ! -property_value: IAO:0000589 "pyramidal layer of CA2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014549 ! pyramidal layer of CA2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277872 ! -property_value: IAO:0000589 "pyramidal layer of CA3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014550 ! pyramidal layer of CA3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277858 ! -property_value: IAO:0000589 "CA2 stratum oriens (post-embryonic human)" xsd:string -intersection_of: UBERON:0014551 ! CA2 stratum oriens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277856 ! -property_value: IAO:0000589 "CA1 stratum oriens (post-embryonic human)" xsd:string -intersection_of: UBERON:0014552 ! CA1 stratum oriens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277860 ! -property_value: IAO:0000589 "CA3 stratum oriens (post-embryonic human)" xsd:string -intersection_of: UBERON:0014553 ! CA3 stratum oriens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277862 ! -property_value: IAO:0000589 "CA1 stratum radiatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014554 ! CA1 stratum radiatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277864 ! -property_value: IAO:0000589 "CA2 stratum radiatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014555 ! CA2 stratum radiatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277866 ! -property_value: IAO:0000589 "CA3 stratum radiatum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014556 ! CA3 stratum radiatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277850 ! -property_value: IAO:0000589 "CA1 stratum lacunosum moleculare (post-embryonic human)" xsd:string -intersection_of: UBERON:0014557 ! CA1 stratum lacunosum moleculare -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277852 ! -property_value: IAO:0000589 "CA2 stratum lacunosum moleculare (post-embryonic human)" xsd:string -intersection_of: UBERON:0014558 ! CA2 stratum lacunosum moleculare -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277854 ! -property_value: IAO:0000589 "CA3 stratum lacunosum moleculare (post-embryonic human)" xsd:string -intersection_of: UBERON:0014559 ! CA3 stratum lacunosum moleculare -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277874 ! -property_value: IAO:0000589 "CA1 alveus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014570 ! CA1 alveus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277878 ! -property_value: IAO:0000589 "CA3 alveus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014571 ! CA3 alveus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:273129 ! -property_value: IAO:0000589 "inferior occipital gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014608 ! inferior occipital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75640 ! -property_value: IAO:0000589 "basis modioli (post-embryonic human)" xsd:string -intersection_of: UBERON:0014624 ! basis modioli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77038 ! -property_value: IAO:0000589 "ventral gray commissure of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0014630 ! ventral gray commissure of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77037 ! -property_value: IAO:0000589 "dorsal gray commissure of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0014631 ! dorsal gray commissure of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72254 ! -property_value: IAO:0000589 "hemisphere part of cerebellar anterior lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0014647 ! hemisphere part of cerebellar anterior lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72256 ! -property_value: IAO:0000589 "hemisphere part of cerebellar posterior lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0014648 ! hemisphere part of cerebellar posterior lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83944 ! -property_value: IAO:0000589 "white matter of medulla oblongata (post-embryonic human)" xsd:string -intersection_of: UBERON:0014649 ! white matter of medulla oblongata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77685 ! -property_value: IAO:0000589 "dorsal hypothalamic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014650 ! dorsal hypothalamic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35334 ! -property_value: IAO:0000589 "distal interphalangeal joint of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014668 ! distal interphalangeal joint of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35340 ! -property_value: IAO:0000589 "distal interphalangeal joint of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014670 ! distal interphalangeal joint of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35343 ! -property_value: IAO:0000589 "distal interphalangeal joint of manural digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014671 ! distal interphalangeal joint of manural digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35369 ! -property_value: IAO:0000589 "distal interphalangeal joint of pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014672 ! distal interphalangeal joint of pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35387 ! -property_value: IAO:0000589 "distal interphalangeal joint of pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014674 ! distal interphalangeal joint of pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35393 ! -property_value: IAO:0000589 "distal interphalangeal joint of pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014675 ! distal interphalangeal joint of pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50944 ! -property_value: IAO:0000589 "pterygoid plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014685 ! pterygoid plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50893 ! -property_value: IAO:0000589 "angular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0014686 ! angular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15399 ! -property_value: IAO:0000589 "left gastric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0014690 ! left gastric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15400 ! -property_value: IAO:0000589 "right gastric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0014691 ! right gastric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44318 ! -property_value: IAO:0000589 "superficial epigastric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0014692 ! superficial epigastric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49695 ! -property_value: IAO:0000589 "inferior alveolar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0014693 ! inferior alveolar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49624 ! -property_value: IAO:0000589 "posterior auricular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0014694 ! posterior auricular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49689 ! -property_value: IAO:0000589 "deep auricular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0014695 ! deep auricular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50087 ! -property_value: IAO:0000589 "anterior choroidal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0014696 ! anterior choroidal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50657 ! -property_value: IAO:0000589 "posterior choroidal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0014697 ! posterior choroidal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77672 ! -property_value: IAO:0000589 "lacrimal caruncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0014698 ! lacrimal caruncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86278 ! -property_value: IAO:0000589 "mucous acinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0014717 ! mucous acinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16013 ! -property_value: IAO:0000589 "intercalated duct of pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0014726 ! intercalated duct of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60050 ! -property_value: IAO:0000589 "intercalated duct of salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0014727 ! intercalated duct of salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60051 ! -property_value: IAO:0000589 "striated duct of salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0014729 ! striated duct of salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32693 ! -property_value: IAO:0000589 "osteon (post-embryonic human)" xsd:string -intersection_of: UBERON:0014730 ! osteon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224787 ! -property_value: IAO:0000589 "haversian canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0014731 ! haversian canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83687 ! -property_value: IAO:0000589 "allocortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0014734 ! allocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62430 ! -property_value: IAO:0000589 "paleocortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0014735 ! paleocortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75700 ! -property_value: IAO:0000589 "spinal trigeminal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0014761 ! spinal trigeminal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83851 ! -property_value: IAO:0000589 "spinal trigeminal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0014761 ! spinal trigeminal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75037 ! -property_value: IAO:0000589 "anatomical line along groove (post-embryonic human)" xsd:string -intersection_of: UBERON:0014764 ! anatomical line along groove -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58286 ! -property_value: IAO:0000589 "right crus of diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0014766 ! right crus of diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58287 ! -property_value: IAO:0000589 "left crus of diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0014767 ! left crus of diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50907 ! -property_value: IAO:0000589 "superior palpebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0014768 ! superior palpebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51997 ! -property_value: IAO:0000589 "palpebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0014769 ! palpebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49940 ! -property_value: IAO:0000589 "lateral palpebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0014772 ! lateral palpebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50012 ! -property_value: IAO:0000589 "medial palpebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0014773 ! medial palpebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61996 ! -property_value: IAO:0000589 "prosomere (post-embryonic human)" xsd:string -intersection_of: UBERON:0014775 ! prosomere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61997 ! -property_value: IAO:0000589 "midbrain neuromere (post-embryonic human)" xsd:string -intersection_of: UBERON:0014776 ! midbrain neuromere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49429 ! -property_value: IAO:0000589 "palatine aponeurosis (post-embryonic human)" xsd:string -intersection_of: UBERON:0014780 ! palatine aponeurosis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54813 ! -property_value: IAO:0000589 "lingual septum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014790 ! lingual septum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50202 ! -property_value: IAO:0000589 "musculature of forelimb stylopod (post-embryonic human)" xsd:string -intersection_of: UBERON:0014791 ! musculature of forelimb stylopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71297 ! -property_value: IAO:0000589 "musculature of pelvic complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0014792 ! musculature of pelvic complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71296 ! -property_value: IAO:0000589 "musculature of pectoral complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0014793 ! musculature of pectoral complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49071 ! -property_value: IAO:0000589 "common tendinous ring (post-embryonic human)" xsd:string -intersection_of: UBERON:0014796 ! common tendinous ring -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53106 ! -property_value: IAO:0000589 "highest nuchal line attachment site (post-embryonic human)" xsd:string -intersection_of: UBERON:0014802 ! highest nuchal line attachment site -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53108 ! -property_value: IAO:0000589 "superior nuchal line attachment site (post-embryonic human)" xsd:string -intersection_of: UBERON:0014803 ! superior nuchal line attachment site -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53111 ! -property_value: IAO:0000589 "median nuchal line attachment site (post-embryonic human)" xsd:string -intersection_of: UBERON:0014804 ! median nuchal line attachment site -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53111 ! -property_value: IAO:0000589 "inferior nuchal line attachment site (post-embryonic human)" xsd:string -intersection_of: UBERON:0014805 ! inferior nuchal line attachment site -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22433 ! -property_value: IAO:0000589 "vastus intermedius (post-embryonic human)" xsd:string -intersection_of: UBERON:0014847 ! vastus intermedius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46900 ! -property_value: IAO:0000589 "tendon of quadriceps femoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0014848 ! tendon of quadriceps femoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9349 ! -property_value: IAO:0000589 "chorda tendinea of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0014851 ! chorda tendinea of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9300 ! -property_value: IAO:0000589 "chorda tendinea of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0014852 ! chorda tendinea of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223086 ! -property_value: IAO:0000589 "commissural leaflet of mitral valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0014853 ! commissural leaflet of mitral valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7242 ! -property_value: IAO:0000589 "anterior leaflet of mitral valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0014854 ! anterior leaflet of mitral valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7243 ! -property_value: IAO:0000589 "posterior leaflet of mitral valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0014855 ! posterior leaflet of mitral valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54802 ! -property_value: IAO:0000589 "inferior orbital fissure (post-embryonic human)" xsd:string -intersection_of: UBERON:0014870 ! inferior orbital fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33036 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of pedal digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014871 ! distal epiphysis of distal phalanx of pedal digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33045 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of pedal digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014872 ! distal epiphysis of distal phalanx of pedal digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33054 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of pedal digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014873 ! distal epiphysis of distal phalanx of pedal digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33091 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of pedal digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014874 ! distal epiphysis of distal phalanx of pedal digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33106 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of pedal digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014875 ! distal epiphysis of distal phalanx of pedal digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37609 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014881 ! distal epiphysis of distal phalanx of manual digit 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37621 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014882 ! distal epiphysis of distal phalanx of manual digit 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37633 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014883 ! distal epiphysis of distal phalanx of manual digit 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37645 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 4 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014884 ! distal epiphysis of distal phalanx of manual digit 4 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37657 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 5 (post-embryonic human)" xsd:string -intersection_of: UBERON:0014885 ! distal epiphysis of distal phalanx of manual digit 5 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83877 ! -property_value: IAO:0000589 "left hemisphere of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014889 ! left hemisphere of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83876 ! -property_value: IAO:0000589 "right hemisphere of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0014890 ! right hemisphere of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:282112 ! -property_value: IAO:0000589 "brainstem white matter (post-embryonic human)" xsd:string -intersection_of: UBERON:0014891 ! brainstem white matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76965 ! -property_value: IAO:0000589 "intersegmental pulmonary vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0014904 ! intersegmental pulmonary vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84358 ! -property_value: IAO:0000589 "cerebellopontine angle (post-embryonic human)" xsd:string -intersection_of: UBERON:0014908 ! cerebellopontine angle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:295507 ! -property_value: IAO:0000589 "thalamic eminence (post-embryonic human)" xsd:string -intersection_of: UBERON:0014912 ! thalamic eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72510 ! -property_value: IAO:0000589 "genu of facial nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0014915 ! genu of facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61975 ! -property_value: IAO:0000589 "lamina terminalis of cerebral hemisphere (post-embryonic human)" xsd:string -intersection_of: UBERON:0015117 ! lamina terminalis of cerebral hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59317 ! -property_value: IAO:0000589 "right outer canthus (post-embryonic human)" xsd:string -intersection_of: UBERON:0015120 ! right outer canthus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59318 ! -property_value: IAO:0000589 "left outer canthus (post-embryonic human)" xsd:string -intersection_of: UBERON:0015121 ! left outer canthus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9480 ! -property_value: IAO:0000589 "anterior internodal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0015125 ! anterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9482 ! -property_value: IAO:0000589 "middle internodal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0015126 ! middle internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9483 ! -property_value: IAO:0000589 "posterior internodal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0015127 ! posterior internodal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83105 ! -property_value: IAO:0000589 "subepicardial layer of epicardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0015128 ! subepicardial layer of epicardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9871 ! -property_value: IAO:0000589 "epicardial fat (post-embryonic human)" xsd:string -intersection_of: UBERON:0015129 ! epicardial fat -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74165 ! -property_value: IAO:0000589 "connective tissue of prostate gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0015130 ! connective tissue of prostate gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74189 ! -property_value: IAO:0000589 "subepithelial connective tissue of prostatic gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0015131 ! subepithelial connective tissue of prostatic gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58069 ! -property_value: IAO:0000589 "extralobar lactiferous duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0015132 ! extralobar lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58260 ! -property_value: IAO:0000589 "terminal lactiferous duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0015133 ! terminal lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62102 ! -property_value: IAO:0000589 "main lactiferous duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0015134 ! main lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74428 ! -property_value: IAO:0000589 "primary lactiferous duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0015135 ! primary lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74430 ! -property_value: IAO:0000589 "secondary lactiferous duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0015136 ! secondary lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74431 ! -property_value: IAO:0000589 "tertiary lactiferous duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0015137 ! tertiary lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74432 ! -property_value: IAO:0000589 "quarternary lactiferous duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0015138 ! quarternary lactiferous duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76652 ! -property_value: IAO:0000589 "infundibulum of gallbladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0015139 ! infundibulum of gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54320 ! -property_value: IAO:0000589 "dorsal hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0015150 ! dorsal hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59083 ! -property_value: IAO:0000589 "conjunctival space (post-embryonic human)" xsd:string -intersection_of: UBERON:0015155 ! conjunctival space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51956 ! -property_value: IAO:0000589 "terminal branch of ophthalmic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0015156 ! terminal branch of ophthalmic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49663 ! -property_value: IAO:0000589 "zygomatico-orbital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0015157 ! zygomatico-orbital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49973 ! -property_value: IAO:0000589 "supraorbital artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0015160 ! supraorbital artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52573 ! -property_value: IAO:0000589 "inferior branch of oculomotor nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0015161 ! inferior branch of oculomotor nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52572 ! -property_value: IAO:0000589 "superior branch of oculomotor nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0015162 ! superior branch of oculomotor nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21101 ! -property_value: IAO:0000589 "helicine branch of uterine artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0015173 ! helicine branch of uterine artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19796 ! -property_value: IAO:0000589 "helicine artery of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0015174 ! helicine artery of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33636 ! -property_value: IAO:0000589 "neck of talus (post-embryonic human)" xsd:string -intersection_of: UBERON:0015180 ! neck of talus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55627 ! -property_value: IAO:0000589 "neck of tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0015181 ! neck of tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58280 ! -property_value: IAO:0000589 "arcuate ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0015214 ! arcuate ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58281 ! -property_value: IAO:0000589 "median arcuate ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0015215 ! median arcuate ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53146 ! -property_value: IAO:0000589 "nasal meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0015216 ! nasal meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53139 ! -property_value: IAO:0000589 "middle nasal meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0015219 ! middle nasal meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53140 ! -property_value: IAO:0000589 "inferior nasal meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0015220 ! inferior nasal meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53141 ! -property_value: IAO:0000589 "common nasal meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0015221 ! common nasal meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:27975 ! -property_value: IAO:0000589 "lower part of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0015243 ! lower part of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7464 ! -property_value: IAO:0000589 "bifurcation of trachea (post-embryonic human)" xsd:string -intersection_of: UBERON:0015247 ! bifurcation of trachea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22510 ! -property_value: IAO:0000589 "saphenous artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0015350 ! saphenous artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68206 ! -property_value: IAO:0000589 "blood vessel external elastic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0015433 ! blood vessel external elastic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66187 ! -property_value: IAO:0000589 "splenic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015469 ! splenic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5950 ! -property_value: IAO:0000589 "tracheobronchial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015472 ! tracheobronchial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37322 ! -property_value: IAO:0000589 "axilla skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0015474 ! axilla skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24763 ! -property_value: IAO:0000589 "nose skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0015476 ! nose skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20432 ! -property_value: IAO:0000589 "scrotum skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0015479 ! scrotum skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14772 ! -property_value: IAO:0000589 "proper hepatic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0015480 ! proper hepatic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14779 ! -property_value: IAO:0000589 "left hepatic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0015481 ! left hepatic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14778 ! -property_value: IAO:0000589 "right hepatic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0015482 ! right hepatic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44688 ! -property_value: IAO:0000589 "sural nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0015488 ! sural nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61947 ! -property_value: IAO:0000589 "body of corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0015510 ! body of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61946 ! -property_value: IAO:0000589 "genu of corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0015599 ! genu of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61945 ! -property_value: IAO:0000589 "rostrum of corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0015703 ! rostrum of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61948 ! -property_value: IAO:0000589 "splenium of the corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0015708 ! splenium of the corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17511 ! -property_value: IAO:0000589 "anal canal epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0015716 ! anal canal epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19372 ! -property_value: IAO:0000589 "smooth muscle tissue layer of ejaculatory duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0015717 ! smooth muscle tissue layer of ejaculatory duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49059 ! -property_value: IAO:0000589 "inferior tarsal muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0015751 ! inferior tarsal muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62798 ! -property_value: IAO:0000589 "heterogeneous tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0015757 ! heterogeneous tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63913 ! -property_value: IAO:0000589 "mixed stratified cuboidal and columnar epithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0015760 ! mixed stratified cuboidal and columnar epithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64782 ! -property_value: IAO:0000589 "dense regular elastic tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0015764 ! dense regular elastic tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67682 ! -property_value: IAO:0000589 "epithelium of duct of salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0015766 ! epithelium of duct of salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74267 ! -property_value: IAO:0000589 "transitional epithelium of prostatic urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0015777 ! transitional epithelium of prostatic urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77862 ! -property_value: IAO:0000589 "smooth muscle layer in fatty layer of subcutaneous tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0015783 ! smooth muscle layer in fatty layer of subcutaneous tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77198 ! -property_value: IAO:0000589 "respiratory segment of nasal mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0015786 ! respiratory segment of nasal mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265132 ! -property_value: IAO:0000589 "upper respiratory conduit (post-embryonic human)" xsd:string -intersection_of: UBERON:0015787 ! upper respiratory conduit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265136 ! -property_value: IAO:0000589 "olfactory apparatus chamber (post-embryonic human)" xsd:string -intersection_of: UBERON:0015788 ! olfactory apparatus chamber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62488 ! -property_value: IAO:0000589 "induseum griseum (post-embryonic human)" xsd:string -intersection_of: UBERON:0015793 ! induseum griseum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15972 ! -property_value: IAO:0000589 "duodenum lamina propria (post-embryonic human)" xsd:string -intersection_of: UBERON:0015834 ! duodenum lamina propria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:294459 ! -property_value: IAO:0000589 "incisor dental pulp (post-embryonic human)" xsd:string -intersection_of: UBERON:0015837 ! incisor dental pulp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:294469 ! -property_value: IAO:0000589 "molar dental pulp (post-embryonic human)" xsd:string -intersection_of: UBERON:0015838 ! molar dental pulp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61216 ! -property_value: IAO:0000589 "parotid lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015857 ! parotid lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12798 ! -property_value: IAO:0000589 "hepatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015859 ! hepatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66178 ! -property_value: IAO:0000589 "visceral abdominal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015860 ! visceral abdominal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12796 ! -property_value: IAO:0000589 "gastric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015863 ! gastric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12799 ! -property_value: IAO:0000589 "pancreaticosplenic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015865 ! pancreaticosplenic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12802 ! -property_value: IAO:0000589 "pyloric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015866 ! pyloric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12804 ! -property_value: IAO:0000589 "cystic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015867 ! cystic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12805 ! -property_value: IAO:0000589 "lymph node of epiploic foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0015868 ! lymph node of epiploic foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61237 ! -property_value: IAO:0000589 "retropharyngeal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015869 ! retropharyngeal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61212 ! -property_value: IAO:0000589 "lymph node of head (post-embryonic human)" xsd:string -intersection_of: UBERON:0015870 ! lymph node of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61222 ! -property_value: IAO:0000589 "facial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015871 ! facial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61227 ! -property_value: IAO:0000589 "mandibular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015872 ! mandibular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24994 ! -property_value: IAO:0000589 "heel (post-embryonic human)" xsd:string -intersection_of: UBERON:0015875 ! heel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12800 ! -property_value: IAO:0000589 "pelvic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015876 ! pelvic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66193 ! -property_value: IAO:0000589 "parietal pelvic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015877 ! parietal pelvic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12806 ! -property_value: IAO:0000589 "common iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015878 ! common iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16646 ! -property_value: IAO:0000589 "external iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015880 ! external iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16654 ! -property_value: IAO:0000589 "internal iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015881 ! internal iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16657 ! -property_value: IAO:0000589 "gluteal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015883 ! gluteal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16667 ! -property_value: IAO:0000589 "presymphysial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015884 ! presymphysial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61082 ! -property_value: IAO:0000589 "cymba conchae of pinna (post-embryonic human)" xsd:string -intersection_of: UBERON:0015885 ! cymba conchae of pinna -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60128 ! -property_value: IAO:0000589 "root of nail (post-embryonic human)" xsd:string -intersection_of: UBERON:0015886 ! root of nail -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44303 ! -property_value: IAO:0000589 "proximal deep inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015895 ! proximal deep inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12767 ! -property_value: IAO:0000589 "superficial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015917 ! superficial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12768 ! -property_value: IAO:0000589 "deep lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015918 ! deep lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61217 ! -property_value: IAO:0000589 "superficial parotid lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0015923 ! superficial parotid lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16611 ! -property_value: IAO:0000589 "ileocolic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016378 ! ileocolic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16604 ! -property_value: IAO:0000589 "paraaortic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016386 ! paraaortic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61215 ! -property_value: IAO:0000589 "mastoid lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016392 ! mastoid lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61218 ! -property_value: IAO:0000589 "deep parotid lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016393 ! deep parotid lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61219 ! -property_value: IAO:0000589 "anterior auricular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016394 ! anterior auricular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61220 ! -property_value: IAO:0000589 "infra-auricular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016395 ! infra-auricular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61221 ! -property_value: IAO:0000589 "intraglandular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016396 ! intraglandular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61229 ! -property_value: IAO:0000589 "submental lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016397 ! submental lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44310 ! -property_value: IAO:0000589 "lymph node of lower limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0016398 ! lymph node of lower limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44311 ! -property_value: IAO:0000589 "lymph node of upper limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0016399 ! lymph node of upper limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58772 ! -property_value: IAO:0000589 "infrapatellar fat pad (post-embryonic human)" xsd:string -intersection_of: UBERON:0016400 ! infrapatellar fat pad -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16623 ! -property_value: IAO:0000589 "pancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016401 ! pancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:300965 ! -property_value: IAO:0000589 "mesocolic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0016402 ! mesocolic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10428 ! -property_value: IAO:0000589 "thoracic wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0016403 ! thoracic wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13668 ! -property_value: IAO:0000589 "cervical vertebral arch joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0016404 ! cervical vertebral arch joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14121 ! -property_value: IAO:0000589 "pulmonary capillary (post-embryonic human)" xsd:string -intersection_of: UBERON:0016405 ! pulmonary capillary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19627 ! -property_value: IAO:0000589 "corona of glans penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0016408 ! corona of glans penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19649 ! -property_value: IAO:0000589 "base of glans penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0016409 ! base of glans penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19901 ! -property_value: IAO:0000589 "male breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0016410 ! male breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24003 ! -property_value: IAO:0000589 "central part of body of bony vertebral centrum (post-embryonic human)" xsd:string -intersection_of: UBERON:0016412 ! central part of body of bony vertebral centrum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24023 ! -property_value: IAO:0000589 "medullary cavity of long bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0016413 ! medullary cavity of long bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24816 ! -property_value: IAO:0000589 "anterior chest (post-embryonic human)" xsd:string -intersection_of: UBERON:0016416 ! anterior chest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264779 ! -property_value: IAO:0000589 "nasion (post-embryonic human)" xsd:string -intersection_of: UBERON:0016418 ! nasion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:29741 ! -property_value: IAO:0000589 "bony part of vertebral arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0016419 ! bony part of vertebral arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32674 ! -property_value: IAO:0000589 "compact bone of long bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0016422 ! compact bone of long bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32678 ! -property_value: IAO:0000589 "compact bone of diaphysis (post-embryonic human)" xsd:string -intersection_of: UBERON:0016423 ! compact bone of diaphysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:34354 ! -property_value: IAO:0000589 "epiphyseal plate of radius (post-embryonic human)" xsd:string -intersection_of: UBERON:0016425 ! epiphyseal plate of radius -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35324 ! -property_value: IAO:0000589 "proximal interphalangeal joint of little finger (post-embryonic human)" xsd:string -intersection_of: UBERON:0016426 ! proximal interphalangeal joint of little finger -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44836 ! -property_value: IAO:0000589 "palmar branch of median nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0016430 ! palmar branch of median nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50060 ! -property_value: IAO:0000589 "chest wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0016435 ! chest wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52851 ! -property_value: IAO:0000589 "glabella region of bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0016440 ! glabella region of bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57136 ! -property_value: IAO:0000589 "glabella region of bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0016440 ! glabella region of bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52966 ! -property_value: IAO:0000589 "median palatine suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0016442 ! median palatine suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54241 ! -property_value: IAO:0000589 "hair of head (post-embryonic human)" xsd:string -intersection_of: UBERON:0016446 ! hair of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54250 ! -property_value: IAO:0000589 "hair of trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0016447 ! hair of trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55716 ! -property_value: IAO:0000589 "upper secondary premolar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016452 ! upper secondary premolar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55717 ! -property_value: IAO:0000589 "lower secondary premolar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016453 ! lower secondary premolar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55722 ! -property_value: IAO:0000589 "upper central secondary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016454 ! upper central secondary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55724 ! -property_value: IAO:0000589 "upper lateral secondary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016455 ! upper lateral secondary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58289 ! -property_value: IAO:0000589 "esophageal hiatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016458 ! esophageal hiatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58898 ! -property_value: IAO:0000589 "posterior pole of lens (post-embryonic human)" xsd:string -intersection_of: UBERON:0016459 ! posterior pole of lens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59350 ! -property_value: IAO:0000589 "periorbital skin (post-embryonic human)" xsd:string -intersection_of: UBERON:0016462 ! periorbital skin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59517 ! -property_value: IAO:0000589 "dorsum of nose (post-embryonic human)" xsd:string -intersection_of: UBERON:0016464 ! dorsum of nose -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60995 ! -property_value: IAO:0000589 "antihelix (post-embryonic human)" xsd:string -intersection_of: UBERON:0016466 ! antihelix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61001 ! -property_value: IAO:0000589 "antitragus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016467 ! antitragus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63883 ! -property_value: IAO:0000589 "skin of forehead (post-embryonic human)" xsd:string -intersection_of: UBERON:0016475 ! skin of forehead -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84200 ! -property_value: IAO:0000589 "primary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016476 ! primary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52895 ! -property_value: IAO:0000589 "zygomatic process of maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0016477 ! zygomatic process of maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17553 ! -property_value: IAO:0000589 "liver stroma (post-embryonic human)" xsd:string -intersection_of: UBERON:0016478 ! liver stroma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15813 ! -property_value: IAO:0000589 "capsule of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0016479 ! capsule of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17525 ! -property_value: IAO:0000589 "interlobular stroma of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0016480 ! interlobular stroma of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19987 ! -property_value: IAO:0000589 "posterior fornix of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0016486 ! posterior fornix of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19986 ! -property_value: IAO:0000589 "anterior fornix of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0016487 ! anterior fornix of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7192 ! -property_value: IAO:0000589 "auditory system (post-embryonic human)" xsd:string -intersection_of: UBERON:0016490 ! auditory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53156 ! -property_value: IAO:0000589 "foramen spinosum of sphenoid bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0016492 ! foramen spinosum of sphenoid bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38462 ! -property_value: IAO:0000589 "palmaris longus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0016493 ! palmaris longus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38594 ! -property_value: IAO:0000589 "tendon of palmaris longus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016496 ! tendon of palmaris longus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321693 ! -property_value: IAO:0000589 "epicondyle of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016497 ! epicondyle of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17278 ! -property_value: IAO:0000589 "muscularis mucosae of fundus of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0016501 ! muscularis mucosae of fundus of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17077 ! -property_value: IAO:0000589 "stomach fundus lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0016502 ! stomach fundus lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19930 ! -property_value: IAO:0000589 "umbilical ring (post-embryonic human)" xsd:string -intersection_of: UBERON:0016504 ! umbilical ring -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72175 ! -property_value: IAO:0000589 "Mullerian tubercle (post-embryonic human)" xsd:string -intersection_of: UBERON:0016505 ! Mullerian tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80131 ! -property_value: IAO:0000589 "pelvic ganglion (post-embryonic human)" xsd:string -intersection_of: UBERON:0016508 ! pelvic ganglion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9291 ! -property_value: IAO:0000589 "cavity of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0016509 ! cavity of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19684 ! -property_value: IAO:0000589 "epithelium of male urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0016510 ! epithelium of male urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17500 ! -property_value: IAO:0000589 "lamina propria of fundus of stomach (post-embryonic human)" xsd:string -intersection_of: UBERON:0016511 ! lamina propria of fundus of stomach -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14589 ! -property_value: IAO:0000589 "lumen of duodenum (post-embryonic human)" xsd:string -intersection_of: UBERON:0016512 ! lumen of duodenum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9465 ! -property_value: IAO:0000589 "cavity of left atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0016513 ! cavity of left atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9466 ! -property_value: IAO:0000589 "cavity of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0016514 ! cavity of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19699 ! -property_value: IAO:0000589 "muscular layer of prostatic urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0016515 ! muscular layer of prostatic urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19693 ! -property_value: IAO:0000589 "lamina propria of prostatic urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0016516 ! lamina propria of prostatic urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14590 ! -property_value: IAO:0000589 "lumen of jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0016517 ! lumen of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15063 ! -property_value: IAO:0000589 "muscularis mucosae of jejunum (post-embryonic human)" xsd:string -intersection_of: UBERON:0016519 ! muscularis mucosae of jejunum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19774 ! -property_value: IAO:0000589 "epithelium of female urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0016520 ! epithelium of female urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11359 ! -property_value: IAO:0000589 "cavity of right atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0016522 ! cavity of right atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19701 ! -property_value: IAO:0000589 "muscle layer of spongiose part of urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0016524 ! muscle layer of spongiose part of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61824 ! -property_value: IAO:0000589 "frontal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0016525 ! frontal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61823 ! -property_value: IAO:0000589 "lobe of cerebral hemisphere (post-embryonic human)" xsd:string -intersection_of: UBERON:0016526 ! lobe of cerebral hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256176 ! -property_value: IAO:0000589 "white matter of cerebral lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0016527 ! white matter of cerebral lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256178 ! -property_value: IAO:0000589 "white matter of frontal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0016528 ! white matter of frontal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242197 ! -property_value: IAO:0000589 "cortex of cerebral lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0016529 ! cortex of cerebral lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242203 ! -property_value: IAO:0000589 "parietal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0016530 ! parietal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256184 ! -property_value: IAO:0000589 "white matter of parietal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0016531 ! white matter of parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256186 ! -property_value: IAO:0000589 "white matter of temporal lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0016534 ! white matter of temporal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256188 ! -property_value: IAO:0000589 "white matter of occipital lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0016535 ! white matter of occipital lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:261091 ! -property_value: IAO:0000589 "white matter of limbic lobe (post-embryonic human)" xsd:string -intersection_of: UBERON:0016536 ! white matter of limbic lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242201 ! -property_value: IAO:0000589 "temporal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0016538 ! temporal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242205 ! -property_value: IAO:0000589 "occipital cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0016540 ! occipital cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242234 ! -property_value: IAO:0000589 "limbic cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0016542 ! limbic cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83142 ! -property_value: IAO:0000589 "central nervous system gray matter layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0016548 ! central nervous system gray matter layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83898 ! -property_value: IAO:0000589 "central nervous system white matter layer (post-embryonic human)" xsd:string -intersection_of: UBERON:0016549 ! central nervous system white matter layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83936 ! -property_value: IAO:0000589 "white matter of midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0016554 ! white matter of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67950 ! -property_value: IAO:0000589 "stria of telencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0016555 ! stria of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50982 ! -property_value: IAO:0000589 "superficial cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0016559 ! superficial cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50989 ! -property_value: IAO:0000589 "deep cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0016564 ! deep cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75570 ! -property_value: IAO:0000589 "statoconial membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0016567 ! statoconial membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75588 ! -property_value: IAO:0000589 "gelatinous layer of statoconial membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0016568 ! gelatinous layer of statoconial membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68861 ! -property_value: IAO:0000589 "lamina of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016570 ! lamina of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68864 ! -property_value: IAO:0000589 "lamina III of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016574 ! lamina III of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68865 ! -property_value: IAO:0000589 "lamina IV of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016575 ! lamina IV of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68866 ! -property_value: IAO:0000589 "lamina V of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016576 ! lamina V of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68867 ! -property_value: IAO:0000589 "lamina VI of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016577 ! lamina VI of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68868 ! -property_value: IAO:0000589 "lamina VII of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016578 ! lamina VII of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68869 ! -property_value: IAO:0000589 "lamina VIII of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016579 ! lamina VIII of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68870 ! -property_value: IAO:0000589 "lamina IX of gray matter of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016580 ! lamina IX of gray matter of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73906 ! -property_value: IAO:0000589 "nucleus proprius of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0016610 ! nucleus proprius of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32419 ! -property_value: IAO:0000589 "neurovascular bundle (post-embryonic human)" xsd:string -intersection_of: UBERON:0016630 ! neurovascular bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18306 ! -property_value: IAO:0000589 "isthmus of fallopian tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0016632 ! isthmus of fallopian tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72575 ! -property_value: IAO:0000589 "parvocellular reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016633 ! parvocellular reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224852 ! -property_value: IAO:0000589 "premotor cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0016634 ! premotor cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224858 ! -property_value: IAO:0000589 "supplemental motor cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0016636 ! supplemental motor cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:226217 ! -property_value: IAO:0000589 "lateral periolivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016637 ! lateral periolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:226239 ! -property_value: IAO:0000589 "subparafascicular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016641 ! subparafascicular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72577 ! -property_value: IAO:0000589 "lateral paragigantocellular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016824 ! lateral paragigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72578 ! -property_value: IAO:0000589 "dorsal paragigantocellular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016825 ! dorsal paragigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72580 ! -property_value: IAO:0000589 "paramedian medullary reticular complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0016826 ! paramedian medullary reticular complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72581 ! -property_value: IAO:0000589 "dorsal paramedian reticular nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016827 ! dorsal paramedian reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72599 ! -property_value: IAO:0000589 "paratrigeminal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016832 ! paratrigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75730 ! -property_value: IAO:0000589 "lateral nucleus of trapezoid body (post-embryonic human)" xsd:string -intersection_of: UBERON:0016843 ! lateral nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77096 ! -property_value: IAO:0000589 "retroambiguus nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0016848 ! retroambiguus nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77458 ! -property_value: IAO:0000589 "nucleus of phrenic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0016850 ! nucleus of phrenic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18104 ! -property_value: IAO:0000589 "renal fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0016851 ! renal fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21030 ! -property_value: IAO:0000589 "ovarian fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0016883 ! ovarian fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15417 ! -property_value: IAO:0000589 "intrahepatic branch of portal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0016890 ! intrahepatic branch of portal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32677 ! -property_value: IAO:0000589 "periosteum of long bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0016896 ! periosteum of long bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59820 ! -property_value: IAO:0000589 "frenulum of lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0016910 ! frenulum of lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59821 ! -property_value: IAO:0000589 "frenulum of upper lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0016912 ! frenulum of upper lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59822 ! -property_value: IAO:0000589 "frenulum of lower lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0016913 ! frenulum of lower lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62921 ! -property_value: IAO:0000589 "lamina lucida (post-embryonic human)" xsd:string -intersection_of: UBERON:0016914 ! lamina lucida -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59824 ! -property_value: IAO:0000589 "vermilion (post-embryonic human)" xsd:string -intersection_of: UBERON:0016915 ! vermilion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59827 ! -property_value: IAO:0000589 "upper vermilion (post-embryonic human)" xsd:string -intersection_of: UBERON:0016918 ! upper vermilion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59828 ! -property_value: IAO:0000589 "lower vermilion (post-embryonic human)" xsd:string -intersection_of: UBERON:0016919 ! lower vermilion -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13082 ! -property_value: IAO:0000589 "descending trunk of arch of aorta (post-embryonic human)" xsd:string -intersection_of: UBERON:0016920 ! descending trunk of arch of aorta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3774 ! -property_value: IAO:0000589 "preductal region of aortic arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0016923 ! preductal region of aortic arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3776 ! -property_value: IAO:0000589 "postductal region of aortic arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0016924 ! postductal region of aortic arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3771 ! -property_value: IAO:0000589 "juxtaductal region of aortic arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0016925 ! juxtaductal region of aortic arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3778 ! -property_value: IAO:0000589 "juxtaductal region of aortic arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0016925 ! juxtaductal region of aortic arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:33745 ! -property_value: IAO:0000589 "metaphysis of fibula (post-embryonic human)" xsd:string -intersection_of: UBERON:0016928 ! metaphysis of fibula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56490 ! -property_value: IAO:0000589 "lingual cusp of tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016929 ! lingual cusp of tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56658 ! -property_value: IAO:0000589 "transverse ridge of tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016931 ! transverse ridge of tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56659 ! -property_value: IAO:0000589 "triangular ridge of tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016932 ! triangular ridge of tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56660 ! -property_value: IAO:0000589 "oblique ridge of tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016933 ! oblique ridge of tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56758 ! -property_value: IAO:0000589 "marginal ridge of tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0016934 ! marginal ridge of tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56731 ! -property_value: IAO:0000589 "cingulum of tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0017295 ! cingulum of tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56733 ! -property_value: IAO:0000589 "cingulum of incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0017296 ! cingulum of incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56734 ! -property_value: IAO:0000589 "cingulum of canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0017297 ! cingulum of canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56736 ! -property_value: IAO:0000589 "cingulum of upper incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0017298 ! cingulum of upper incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56737 ! -property_value: IAO:0000589 "cingulum of lower incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0017299 ! cingulum of lower incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56752 ! -property_value: IAO:0000589 "cingulum of upper canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0017312 ! cingulum of upper canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56753 ! -property_value: IAO:0000589 "cingulum of lower canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0017313 ! cingulum of lower canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:38518 ! -property_value: IAO:0000589 "extensor pollicis brevis muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0017618 ! extensor pollicis brevis muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75657 ! -property_value: IAO:0000589 "transverse folds of rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0017626 ! transverse folds of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52568 ! -property_value: IAO:0000589 "paired venous dural sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0017635 ! paired venous dural sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50766 ! -property_value: IAO:0000589 "marginal venous sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0017637 ! marginal venous sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52569 ! -property_value: IAO:0000589 "unpaired venous dural sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0017640 ! unpaired venous dural sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5988 ! -property_value: IAO:0000589 "meningeal branch of spinal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0017641 ! meningeal branch of spinal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5874 ! -property_value: IAO:0000589 "communicating branch of spinal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0017642 ! communicating branch of spinal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86934 ! -property_value: IAO:0000589 "ventral body wall (post-embryonic human)" xsd:string -intersection_of: UBERON:0017648 ! ventral body wall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19624 ! -property_value: IAO:0000589 "ventral surface of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0017659 ! ventral surface of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:29794 ! -property_value: IAO:0000589 "bony part of cervical vertebral arch (post-embryonic human)" xsd:string -intersection_of: UBERON:0017670 ! bony part of cervical vertebral arch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32395 ! -property_value: IAO:0000589 "bony part of vertebral arch of first sacral vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0017671 ! bony part of vertebral arch of first sacral vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:32413 ! -property_value: IAO:0000589 "abdominal viscera (post-embryonic human)" xsd:string -intersection_of: UBERON:0017672 ! abdominal viscera -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67355 ! -property_value: IAO:0000589 "abdominal viscera (post-embryonic human)" xsd:string -intersection_of: UBERON:0017672 ! abdominal viscera -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52856 ! -property_value: IAO:0000589 "internal surface of frontal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0017690 ! internal surface of frontal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53128 ! -property_value: IAO:0000589 "internal surface of cranial base (post-embryonic human)" xsd:string -intersection_of: UBERON:0017692 ! internal surface of cranial base -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61520 ! -property_value: IAO:0000589 "thenar eminence (post-embryonic human)" xsd:string -intersection_of: UBERON:0017716 ! thenar eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61523 ! -property_value: IAO:0000589 "hypothenar eminence (post-embryonic human)" xsd:string -intersection_of: UBERON:0017717 ! hypothenar eminence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75130 ! -property_value: IAO:0000589 "raphe of scrotum (post-embryonic human)" xsd:string -intersection_of: UBERON:0017732 ! raphe of scrotum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84215 ! -property_value: IAO:0000589 "lower primary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0017748 ! lower primary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46684 ! -property_value: IAO:0000589 "posterior fascicle of palatopharyngeus (post-embryonic human)" xsd:string -intersection_of: UBERON:0018103 ! posterior fascicle of palatopharyngeus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46855 ! -property_value: IAO:0000589 "superior auricular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0018108 ! superior auricular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46856 ! -property_value: IAO:0000589 "anterior auricular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0018109 ! anterior auricular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46857 ! -property_value: IAO:0000589 "posterior auricular muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0018110 ! posterior auricular muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15035 ! -property_value: IAO:0000589 "muscle layer of rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0018111 ! muscle layer of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74271 ! -property_value: IAO:0000589 "left kidney interstitium (post-embryonic human)" xsd:string -intersection_of: UBERON:0018113 ! left kidney interstitium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74270 ! -property_value: IAO:0000589 "right kidney interstitium (post-embryonic human)" xsd:string -intersection_of: UBERON:0018114 ! right kidney interstitium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15579 ! -property_value: IAO:0000589 "left renal pelvis (post-embryonic human)" xsd:string -intersection_of: UBERON:0018115 ! left renal pelvis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15578 ! -property_value: IAO:0000589 "right renal pelvis (post-embryonic human)" xsd:string -intersection_of: UBERON:0018116 ! right renal pelvis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83521 ! -property_value: IAO:0000589 "fibrocollagenous connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0018135 ! fibrocollagenous connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61891 ! -property_value: IAO:0000589 "anterior perforated substance (post-embryonic human)" xsd:string -intersection_of: UBERON:0018141 ! anterior perforated substance -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23894 ! -property_value: IAO:0000589 "transverse process of cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0018143 ! transverse process of cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9913 ! -property_value: IAO:0000589 "transverse process of cervical vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0018143 ! transverse process of cervical vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16080 ! -property_value: IAO:0000589 "transverse process of lumbar vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0018146 ! transverse process of lumbar vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:65469 ! -property_value: IAO:0000589 "transverse process of lumbar vertebra (post-embryonic human)" xsd:string -intersection_of: UBERON:0018146 ! transverse process of lumbar vertebra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77269 ! -property_value: IAO:0000589 "angle of oral opening (post-embryonic human)" xsd:string -intersection_of: UBERON:0018149 ! angle of oral opening -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24767 ! -property_value: IAO:0000589 "skin of lower lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0018150 ! skin of lower lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24765 ! -property_value: IAO:0000589 "skin of upper lip (post-embryonic human)" xsd:string -intersection_of: UBERON:0018151 ! skin of upper lip -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56721 ! -property_value: IAO:0000589 "pars flaccida of tympanic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0018152 ! pars flaccida of tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56722 ! -property_value: IAO:0000589 "pars tensa of tympanic membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0018153 ! pars tensa of tympanic membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52771 ! -property_value: IAO:0000589 "anterior process of malleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0018160 ! anterior process of malleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60884 ! -property_value: IAO:0000589 "annular ligament of stapes (post-embryonic human)" xsd:string -intersection_of: UBERON:0018161 ! annular ligament of stapes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67999 ! -property_value: IAO:0000589 "pulmonary part of lymphatic system (post-embryonic human)" xsd:string -intersection_of: UBERON:0018226 ! pulmonary part of lymphatic system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234006 ! -property_value: IAO:0000589 "pulmonary lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0018227 ! pulmonary lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15418 ! -property_value: IAO:0000589 "extrahepatic branch of portal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0018228 ! extrahepatic branch of portal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74787 ! -property_value: IAO:0000589 "renin-angiotensin system (post-embryonic human)" xsd:string -intersection_of: UBERON:0018229 ! renin-angiotensin system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22405 ! -property_value: IAO:0000589 "femoral canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0018230 ! femoral canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50548 ! -property_value: IAO:0000589 "labyrinthine artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0018231 ! labyrinthine artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59191 ! -property_value: IAO:0000589 "gland of Zeis (post-embryonic human)" xsd:string -intersection_of: UBERON:0018233 ! gland of Zeis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63121 ! -property_value: IAO:0000589 "stroma of pancreas (post-embryonic human)" xsd:string -intersection_of: UBERON:0018234 ! stroma of pancreas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52901 ! -property_value: IAO:0000589 "palatine bone horizontal plate (post-embryonic human)" xsd:string -intersection_of: UBERON:0018242 ! palatine bone horizontal plate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10647 ! -property_value: IAO:0000589 "thymic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0018243 ! thymic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50839 ! -property_value: IAO:0000589 "meningeal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0018251 ! meningeal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18917 ! -property_value: IAO:0000589 "internal pudendal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0018252 ! internal pudendal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:0329308 ! -property_value: IAO:0000589 "external pudendal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0018253 ! external pudendal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14808 ! -property_value: IAO:0000589 "jejunal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0018255 ! jejunal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51779 ! -property_value: IAO:0000589 "lacrimal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0018256 ! lacrimal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45634 ! -property_value: IAO:0000589 "layer of muscle tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0018260 ! layer of muscle tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18537 ! -property_value: IAO:0000589 "oviduct mucosal fold (post-embryonic human)" xsd:string -intersection_of: UBERON:0018343 ! oviduct mucosal fold -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54756 ! -property_value: IAO:0000589 "vidian canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0018373 ! vidian canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321614 ! -property_value: IAO:0000589 "molar tooth 1 (post-embryonic human)" xsd:string -intersection_of: UBERON:0018376 ! molar tooth 1 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321612 ! -property_value: IAO:0000589 "molar tooth 3 (post-embryonic human)" xsd:string -intersection_of: UBERON:0018377 ! molar tooth 3 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84656 ! -property_value: IAO:0000589 "interoceptor (post-embryonic human)" xsd:string -intersection_of: UBERON:0018389 ! interoceptor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85604 ! -property_value: IAO:0000589 "chemoreceptor (post-embryonic human)" xsd:string -intersection_of: UBERON:0018391 ! chemoreceptor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49757 ! -property_value: IAO:0000589 "posterior superior alveolar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0018397 ! posterior superior alveolar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52930 ! -property_value: IAO:0000589 "superior alveolar nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018398 ! superior alveolar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52931 ! -property_value: IAO:0000589 "posterior superior alveolar nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018401 ! posterior superior alveolar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53243 ! -property_value: IAO:0000589 "inferior alveolar nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018405 ! inferior alveolar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53250 ! -property_value: IAO:0000589 "mental nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018406 ! mental nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57718 ! -property_value: IAO:0000589 "infra-orbital foramen of maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0018407 ! infra-orbital foramen of maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52978 ! -property_value: IAO:0000589 "infra-orbital nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018408 ! infra-orbital nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57746 ! -property_value: IAO:0000589 "infra-orbital groove of maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0018409 ! infra-orbital groove of maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68443 ! -property_value: IAO:0000589 "lacteal (post-embryonic human)" xsd:string -intersection_of: UBERON:0018410 ! lacteal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42868 ! -property_value: IAO:0000589 "ligament of hip joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0018411 ! ligament of hip joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67584 ! -property_value: IAO:0000589 "vidian nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018412 ! vidian nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54952 ! -property_value: IAO:0000589 "facial nerve canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0018413 ! facial nerve canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53158 ! -property_value: IAO:0000589 "petrosal foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0018424 ! petrosal foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57653 ! -property_value: IAO:0000589 "foramen of nasal bone (post-embryonic human)" xsd:string -intersection_of: UBERON:0018508 ! foramen of nasal bone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14586 ! -property_value: IAO:0000589 "lumen of intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0018543 ! lumen of intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84201 ! -property_value: IAO:0000589 "secondary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018550 ! secondary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55714 ! -property_value: IAO:0000589 "upper secondary canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018561 ! upper secondary canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55715 ! -property_value: IAO:0000589 "lower secondary canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018562 ! lower secondary canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55723 ! -property_value: IAO:0000589 "lower central secondary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018568 ! lower central secondary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55725 ! -property_value: IAO:0000589 "lower lateral secondary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018570 ! lower lateral secondary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55801 ! -property_value: IAO:0000589 "upper first secondary premolar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018571 ! upper first secondary premolar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55802 ! -property_value: IAO:0000589 "upper second secondary premolar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018572 ! upper second secondary premolar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55803 ! -property_value: IAO:0000589 "lower first secondary premolar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018573 ! lower first secondary premolar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55804 ! -property_value: IAO:0000589 "lower second secondary premolar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018574 ! lower second secondary premolar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55811 ! -property_value: IAO:0000589 "upper first secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018575 ! upper first secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55812 ! -property_value: IAO:0000589 "upper second secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018576 ! upper second secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55813 ! -property_value: IAO:0000589 "upper third secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018577 ! upper third secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55814 ! -property_value: IAO:0000589 "lower first secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018578 ! lower first secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55815 ! -property_value: IAO:0000589 "lower second secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018579 ! lower second secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55817 ! -property_value: IAO:0000589 "lower third secondary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018580 ! lower third secondary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84202 ! -property_value: IAO:0000589 "primary canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018583 ! primary canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84203 ! -property_value: IAO:0000589 "secondary canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018584 ! secondary canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84211 ! -property_value: IAO:0000589 "upper first primary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018588 ! upper first primary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84212 ! -property_value: IAO:0000589 "lower first primary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018589 ! lower first primary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84214 ! -property_value: IAO:0000589 "upper primary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018591 ! upper primary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84216 ! -property_value: IAO:0000589 "upper central primary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018593 ! upper central primary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84217 ! -property_value: IAO:0000589 "upper lateral primary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018594 ! upper lateral primary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84218 ! -property_value: IAO:0000589 "lower central primary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018595 ! lower central primary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84219 ! -property_value: IAO:0000589 "lower lateral primary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018596 ! lower lateral primary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84228 ! -property_value: IAO:0000589 "upper primary canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018597 ! upper primary canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84229 ! -property_value: IAO:0000589 "lower primary canine tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018598 ! lower primary canine tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84236 ! -property_value: IAO:0000589 "upper second primary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018599 ! upper second primary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84237 ! -property_value: IAO:0000589 "lower second primary molar tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018600 ! lower second primary molar tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:290182 ! -property_value: IAO:0000589 "lower central incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018601 ! lower central incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:290197 ! -property_value: IAO:0000589 "lower lateral incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018602 ! lower lateral incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:290180 ! -property_value: IAO:0000589 "upper central incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018603 ! upper central incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:290194 ! -property_value: IAO:0000589 "upper lateral incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018604 ! upper lateral incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321613 ! -property_value: IAO:0000589 "molar tooth 2 (post-embryonic human)" xsd:string -intersection_of: UBERON:0018606 ! molar tooth 2 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55713 ! -property_value: IAO:0000589 "lower secondary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0018623 ! lower secondary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83450 ! -property_value: IAO:0000589 "cardiac muscle tissue of ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0018649 ! cardiac muscle tissue of ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54809 ! -property_value: IAO:0000589 "foramen lacerum (post-embryonic human)" xsd:string -intersection_of: UBERON:0018651 ! foramen lacerum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53135 ! -property_value: IAO:0000589 "anterior ethmoidal foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0018653 ! anterior ethmoidal foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53136 ! -property_value: IAO:0000589 "posterior ethmoidal foramen (post-embryonic human)" xsd:string -intersection_of: UBERON:0018654 ! posterior ethmoidal foramen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23254 ! -property_value: IAO:0000589 "neck of scapula (post-embryonic human)" xsd:string -intersection_of: UBERON:0018667 ! neck of scapula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:35508 ! -property_value: IAO:0000589 "neck of fibula (post-embryonic human)" xsd:string -intersection_of: UBERON:0018673 ! neck of fibula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73747 ! -property_value: IAO:0000589 "heart vasculature (post-embryonic human)" xsd:string -intersection_of: UBERON:0018674 ! heart vasculature -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16901 ! -property_value: IAO:0000589 "pelvic splanchnic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018675 ! pelvic splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6636 ! -property_value: IAO:0000589 "renal nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0018676 ! renal nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6280 ! -property_value: IAO:0000589 "thoracic splanchnic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018679 ! thoracic splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6281 ! -property_value: IAO:0000589 "greater splanchnic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018680 ! greater splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6282 ! -property_value: IAO:0000589 "lesser splanchnic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018681 ! lesser splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6287 ! -property_value: IAO:0000589 "lumbar splanchnic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018683 ! lumbar splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6288 ! -property_value: IAO:0000589 "sacral splanchnic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0018684 ! sacral splanchnic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13119 ! -property_value: IAO:0000589 "mucous gland of lung (post-embryonic human)" xsd:string -intersection_of: UBERON:0019190 ! mucous gland of lung -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21869 ! -property_value: IAO:0000589 "dorsal nerve of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0019197 ! dorsal nerve of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21870 ! -property_value: IAO:0000589 "dorsal nerve of clitoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0019198 ! dorsal nerve of clitoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10461 ! -property_value: IAO:0000589 "skin of anterior chest (post-embryonic human)" xsd:string -intersection_of: UBERON:0019200 ! skin of anterior chest -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22319 ! -property_value: IAO:0000589 "gemellus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0019201 ! gemellus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22320 ! -property_value: IAO:0000589 "inferior gemellus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0019202 ! inferior gemellus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22318 ! -property_value: IAO:0000589 "superior gemellus muscle (post-embryonic human)" xsd:string -intersection_of: UBERON:0019203 ! superior gemellus muscle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58897 ! -property_value: IAO:0000589 "anterior pole of lens (post-embryonic human)" xsd:string -intersection_of: UBERON:0019208 ! anterior pole of lens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58067 ! -property_value: IAO:0000589 "pole of lens (post-embryonic human)" xsd:string -intersection_of: UBERON:0019210 ! pole of lens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55712 ! -property_value: IAO:0000589 "upper secondary incisor tooth (post-embryonic human)" xsd:string -intersection_of: UBERON:0019253 ! upper secondary incisor tooth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59408 ! -property_value: IAO:0000589 "upper eyelash (post-embryonic human)" xsd:string -intersection_of: UBERON:0019254 ! upper eyelash -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59409 ! -property_value: IAO:0000589 "lower eyelash (post-embryonic human)" xsd:string -intersection_of: UBERON:0019255 ! lower eyelash -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:268636 ! -property_value: IAO:0000589 "white matter of hindbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0019258 ! white matter of hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:268634 ! -property_value: IAO:0000589 "white matter of forebrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0019261 ! white matter of forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:268630 ! -property_value: IAO:0000589 "gray matter of hindbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0019263 ! gray matter of hindbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:268608 ! -property_value: IAO:0000589 "gray matter of forebrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0019264 ! gray matter of forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83913 ! -property_value: IAO:0000589 "gray matter of midbrain (post-embryonic human)" xsd:string -intersection_of: UBERON:0019267 ! gray matter of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83912 ! -property_value: IAO:0000589 "gray matter of diencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0019269 ! gray matter of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62439 ! -property_value: IAO:0000589 "lateral longitudinal stria (post-embryonic human)" xsd:string -intersection_of: UBERON:0019283 ! lateral longitudinal stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83939 ! -property_value: IAO:0000589 "white matter of metencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0019291 ! white matter of metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83940 ! -property_value: IAO:0000589 "white matter of pons (post-embryonic human)" xsd:string -intersection_of: UBERON:0019292 ! white matter of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83942 ! -property_value: IAO:0000589 "white matter of pontine tegmentum (post-embryonic human)" xsd:string -intersection_of: UBERON:0019293 ! white matter of pontine tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63143 ! -property_value: IAO:0000589 "epithelium of external nose (post-embryonic human)" xsd:string -intersection_of: UBERON:0019307 ! epithelium of external nose -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:229583 ! -property_value: IAO:0000589 "ventrolateral nucleus of solitary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0019312 ! ventrolateral nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12824 ! -property_value: IAO:0000589 "precordial region (post-embryonic human)" xsd:string -intersection_of: UBERON:0019320 ! precordial region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59381 ! -property_value: IAO:0000589 "lobe of lacrimal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0019326 ! lobe of lacrimal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59383 ! -property_value: IAO:0000589 "orbital lobe of lacrimal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0019327 ! orbital lobe of lacrimal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59384 ! -property_value: IAO:0000589 "palpebral lobe of lacrimal gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0019328 ! palpebral lobe of lacrimal gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83965 ! -property_value: IAO:0000589 "accessory XI nerve nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0020358 ! accessory XI nerve nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67956 ! -property_value: IAO:0000589 "medial longitudinal stria (post-embryonic human)" xsd:string -intersection_of: UBERON:0022234 ! medial longitudinal stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62444 ! -property_value: IAO:0000589 "peduncle of diencephalon (post-embryonic human)" xsd:string -intersection_of: UBERON:0022235 ! peduncle of diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62074 ! -property_value: IAO:0000589 "anterior thalamic peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0022237 ! anterior thalamic peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62075 ! -property_value: IAO:0000589 "superior thalamic peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0022241 ! superior thalamic peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62076 ! -property_value: IAO:0000589 "inferior thalamic peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0022242 ! inferior thalamic peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62077 ! -property_value: IAO:0000589 "posterior thalamic peduncle (post-embryonic human)" xsd:string -intersection_of: UBERON:0022243 ! posterior thalamic peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:256196 ! -property_value: IAO:0000589 "anterior orbital gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022244 ! anterior orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77631 ! -property_value: IAO:0000589 "superior longitudinal fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022246 ! superior longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:260712 ! -property_value: IAO:0000589 "cerebral nerve fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022248 ! cerebral nerve fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77634 ! -property_value: IAO:0000589 "subcallosal fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022250 ! subcallosal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77637 ! -property_value: IAO:0000589 "subcallosal fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022250 ! subcallosal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83800 ! -property_value: IAO:0000589 "precentral sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022252 ! precentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62065 ! -property_value: IAO:0000589 "ventral thalamic fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022254 ! ventral thalamic fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77525 ! -property_value: IAO:0000589 "subthalamic fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022256 ! subthalamic fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77099 ! -property_value: IAO:0000589 "endolemniscal nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022258 ! endolemniscal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83859 ! -property_value: IAO:0000589 "white matter radiation (post-embryonic human)" xsd:string -intersection_of: UBERON:0022259 ! white matter radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61940 ! -property_value: IAO:0000589 "radiation of cerebral hemisphere (post-embryonic human)" xsd:string -intersection_of: UBERON:0022260 ! radiation of cerebral hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62413 ! -property_value: IAO:0000589 "auditory radiation (post-embryonic human)" xsd:string -intersection_of: UBERON:0022262 ! auditory radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61941 ! -property_value: IAO:0000589 "optic radiation (post-embryonic human)" xsd:string -intersection_of: UBERON:0022264 ! optic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75190 ! -property_value: IAO:0000589 "corticopontine fibers (post-embryonic human)" xsd:string -intersection_of: UBERON:0022271 ! corticopontine fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:275544 ! -property_value: IAO:0000589 "corticobulbar tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0022272 ! corticobulbar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59402 ! -property_value: IAO:0000589 "lacrimal lake (post-embryonic human)" xsd:string -intersection_of: UBERON:0022273 ! lacrimal lake -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59407 ! -property_value: IAO:0000589 "lacrimal papilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0022274 ! lacrimal papilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14555 ! -property_value: IAO:0000589 "colic flexure (post-embryonic human)" xsd:string -intersection_of: UBERON:0022275 ! colic flexure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14551 ! -property_value: IAO:0000589 "splenic flexure of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0022276 ! splenic flexure of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14550 ! -property_value: IAO:0000589 "hepatic flexure of colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0022277 ! hepatic flexure of colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:257031 ! -property_value: IAO:0000589 "nucleus of pudendal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0022278 ! nucleus of pudendal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77024 ! -property_value: IAO:0000589 "nucleus of pudendal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0022278 ! nucleus of pudendal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53671 ! -property_value: IAO:0000589 "strand of hair on external ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0022279 ! strand of hair on external ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63243 ! -property_value: IAO:0000589 "epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0022280 ! epithelium of crypt of Lieberkuhn of small intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63628 ! -property_value: IAO:0000589 "epithelium of crypt of Lieberkuhn of large intestine (post-embryonic human)" xsd:string -intersection_of: UBERON:0022281 ! epithelium of crypt of Lieberkuhn of large intestine -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78458 ! -property_value: IAO:0000589 "pineal recess of third ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0022283 ! pineal recess of third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58315 ! -property_value: IAO:0000589 "surface of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0022288 ! surface of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52983 ! -property_value: IAO:0000589 "inferior palpebral branch of infra-orbital nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0022296 ! inferior palpebral branch of infra-orbital nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52668 ! -property_value: IAO:0000589 "nasociliary nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0022300 ! nasociliary nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52691 ! -property_value: IAO:0000589 "long ciliary nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0022301 ! long ciliary nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7041 ! -property_value: IAO:0000589 "short ciliary nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0022302 ! short ciliary nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277810 ! -property_value: IAO:0000589 "dentate gyrus molecular layer middle (post-embryonic human)" xsd:string -intersection_of: UBERON:0022346 ! dentate gyrus molecular layer middle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277812 ! -property_value: IAO:0000589 "dentate gyrus molecular layer inner (post-embryonic human)" xsd:string -intersection_of: UBERON:0022347 ! dentate gyrus molecular layer inner -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15860 ! -property_value: IAO:0000589 "visceral serous membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0022350 ! visceral serous membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15859 ! -property_value: IAO:0000589 "parietal serous membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0022351 ! parietal serous membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:273320 ! -property_value: IAO:0000589 "medial orbital frontal cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0022352 ! medial orbital frontal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:271593 ! -property_value: IAO:0000589 "posterior cingulate cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0022353 ! posterior cingulate cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86492 ! -property_value: IAO:0000589 "basal layer of endometrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0022355 ! basal layer of endometrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:86493 ! -property_value: IAO:0000589 "outer layer of endometrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0022356 ! outer layer of endometrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14652 ! -property_value: IAO:0000589 "mesentery of ileum (post-embryonic human)" xsd:string -intersection_of: UBERON:0022357 ! mesentery of ileum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71033 ! -property_value: IAO:0000589 "occipital fusiform gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022364 ! occipital fusiform gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71034 ! -property_value: IAO:0000589 "inferior lateral occipital cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0022367 ! inferior lateral occipital cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71035 ! -property_value: IAO:0000589 "superior lateral occipital cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0022368 ! superior lateral occipital cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71039 ! -property_value: IAO:0000589 "anterior parahippocampal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022383 ! anterior parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71037 ! -property_value: IAO:0000589 "paracingulate gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022398 ! paracingulate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77492 ! -property_value: IAO:0000589 "sagulum nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022423 ! sagulum nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72475 ! -property_value: IAO:0000589 "dorsal periolivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0022437 ! dorsal periolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:271599 ! -property_value: IAO:0000589 "rostral anterior cingulate cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0022438 ! rostral anterior cingulate cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72610 ! -property_value: IAO:0000589 "medullary anterior horn (post-embryonic human)" xsd:string -intersection_of: UBERON:0023378 ! medullary anterior horn -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:275157 ! -property_value: IAO:0000589 "subicular complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0023787 ! subicular complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278665 ! -property_value: IAO:0000589 "cerebellum hemispheric lobule II (post-embryonic human)" xsd:string -intersection_of: UBERON:0023998 ! cerebellum hemispheric lobule II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278672 ! -property_value: IAO:0000589 "cerebellum hemispheric lobule III (post-embryonic human)" xsd:string -intersection_of: UBERON:0023999 ! cerebellum hemispheric lobule III -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272300 ! -property_value: IAO:0000589 "cerebellum hemispheric lobule IV (post-embryonic human)" xsd:string -intersection_of: UBERON:0024000 ! cerebellum hemispheric lobule IV -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278683 ! -property_value: IAO:0000589 "cerebellum hemispheric lobule IV (post-embryonic human)" xsd:string -intersection_of: UBERON:0024000 ! cerebellum hemispheric lobule IV -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278723 ! -property_value: IAO:0000589 "cerebellum hemispheric lobule V (post-embryonic human)" xsd:string -intersection_of: UBERON:0024001 ! cerebellum hemispheric lobule V -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:274414 ! -property_value: IAO:0000589 "inferior transverse frontopolar gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0024183 ! inferior transverse frontopolar gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:274408 ! -property_value: IAO:0000589 "superior transverse frontopolar gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0024201 ! superior transverse frontopolar gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56460 ! -property_value: IAO:0000589 "tympanic canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0026584 ! tympanic canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:56451 ! -property_value: IAO:0000589 "vestibular canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0026586 ! vestibular canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77833 ! -property_value: IAO:0000589 "spiral prominence of cochlear duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0028194 ! spiral prominence of cochlear duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78478 ! -property_value: IAO:0000589 "lateral eminence of fourth ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0034672 ! lateral eminence of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77607 ! -property_value: IAO:0000589 "amygdalohippocampal area (post-embryonic human)" xsd:string -intersection_of: UBERON:0034673 ! amygdalohippocampal area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61949 ! -property_value: IAO:0000589 "forceps major of corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0034676 ! forceps major of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61944 ! -property_value: IAO:0000589 "forceps minor of corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0034678 ! forceps minor of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55304 ! -property_value: IAO:0000589 "laryngeal prominence (post-embryonic human)" xsd:string -intersection_of: UBERON:0034680 ! laryngeal prominence -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69248 ! -property_value: IAO:0000589 "external spermatic fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0034690 ! external spermatic fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77299 ! -property_value: IAO:0000589 "internal spermatic fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0034691 ! internal spermatic fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70192 ! -property_value: IAO:0000589 "cremasteric artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0034693 ! cremasteric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20610 ! -property_value: IAO:0000589 "fold of peritoneum (post-embryonic human)" xsd:string -intersection_of: UBERON:0034696 ! fold of peritoneum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14057 ! -property_value: IAO:0000589 "inflow tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0034697 ! inflow tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13224 ! -property_value: IAO:0000589 "inflow tract of ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0034698 ! inflow tract of ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14140 ! -property_value: IAO:0000589 "inflow tract of atrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0034699 ! inflow tract of atrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9552 ! -property_value: IAO:0000589 "inflow tract of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0034703 ! inflow tract of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9564 ! -property_value: IAO:0000589 "inflow tract of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0034704 ! inflow tract of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64807 ! -property_value: IAO:0000589 "developing neuroepithelium (post-embryonic human)" xsd:string -intersection_of: UBERON:0034705 ! developing neuroepithelium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77600 ! -property_value: IAO:0000589 "pineal tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0034715 ! pineal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52731 ! -property_value: IAO:0000589 "pterygopalatine nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0034725 ! pterygopalatine nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20900 ! -property_value: IAO:0000589 "vestibular bulb artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0034727 ! vestibular bulb artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5866 ! -property_value: IAO:0000589 "autonomic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0034728 ! autonomic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77627 ! -property_value: IAO:0000589 "medial olfactory stria (post-embryonic human)" xsd:string -intersection_of: UBERON:0034734 ! medial olfactory stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:26029 ! -property_value: IAO:0000589 "coracoclavicular ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0034736 ! coracoclavicular ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77632 ! -property_value: IAO:0000589 "inferior longitudinal fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0034743 ! inferior longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76975 ! -property_value: IAO:0000589 "radiation of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0034745 ! radiation of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76976 ! -property_value: IAO:0000589 "anterior thalamic radiation (post-embryonic human)" xsd:string -intersection_of: UBERON:0034746 ! anterior thalamic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76982 ! -property_value: IAO:0000589 "posterior thalamic radiation (post-embryonic human)" xsd:string -intersection_of: UBERON:0034747 ! posterior thalamic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61957 ! -property_value: IAO:0000589 "retrolenticular part of internal capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0034749 ! retrolenticular part of internal capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272953 ! -property_value: IAO:0000589 "primary auditory cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0034751 ! primary auditory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272944 ! -property_value: IAO:0000589 "secondary auditory cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0034752 ! secondary auditory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77633 ! -property_value: IAO:0000589 "inferior occipitofrontal fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0034753 ! inferior occipitofrontal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62149 ! -property_value: IAO:0000589 "areolar sweat gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0034762 ! areolar sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14153 ! -property_value: IAO:0000589 "remnant of cardiac valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0034764 ! remnant of cardiac valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:289320 ! -property_value: IAO:0000589 "buccal vestibule (post-embryonic human)" xsd:string -intersection_of: UBERON:0034767 ! buccal vestibule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79770 ! -property_value: IAO:0000589 "lymphomyeloid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0034769 ! lymphomyeloid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:73900 ! -property_value: IAO:0000589 "ventral commissural nucleus of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0034771 ! ventral commissural nucleus of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59356 ! -property_value: IAO:0000589 "margin of eyelid (post-embryonic human)" xsd:string -intersection_of: UBERON:0034772 ! margin of eyelid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:74884 ! -property_value: IAO:0000589 "uncus of parahippocampal gyrus (post-embryonic human)" xsd:string -intersection_of: UBERON:0034773 ! uncus of parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84580 ! -property_value: IAO:0000589 "bodily gas (post-embryonic human)" xsd:string -intersection_of: UBERON:0034873 ! bodily gas -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84581 ! -property_value: IAO:0000589 "air in respiratory system (post-embryonic human)" xsd:string -intersection_of: UBERON:0034874 ! air in respiratory system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:59658 ! -property_value: IAO:0000589 "viscerocranial mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0034885 ! viscerocranial mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242223 ! -property_value: IAO:0000589 "insular cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0034891 ! insular cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62071 ! -property_value: IAO:0000589 "ansa peduncularis (post-embryonic human)" xsd:string -intersection_of: UBERON:0034896 ! ansa peduncularis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6261 ! -property_value: IAO:0000589 "cervical sympathetic nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0034901 ! cervical sympathetic nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6264 ! -property_value: IAO:0000589 "sacral sympathetic nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0034902 ! sacral sympathetic nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7286 ! -property_value: IAO:0000589 "left atrium endocardium (post-embryonic human)" xsd:string -intersection_of: UBERON:0034903 ! left atrium endocardium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52963 ! -property_value: IAO:0000589 "intermaxillary suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0034909 ! intermaxillary suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62807 ! -property_value: IAO:0000589 "cell cluster (post-embryonic human)" xsd:string -intersection_of: UBERON:0034922 ! cell cluster -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44594 ! -property_value: IAO:0000589 "arcuate artery of foot (post-embryonic human)" xsd:string -intersection_of: UBERON:0034927 ! arcuate artery of foot -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19623 ! -property_value: IAO:0000589 "dorsal surface of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0034928 ! dorsal surface of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58431 ! -property_value: IAO:0000589 "pars plicata of ciliary body (post-embryonic human)" xsd:string -intersection_of: UBERON:0034935 ! pars plicata of ciliary body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58480 ! -property_value: IAO:0000589 "pars plana of ciliary body (post-embryonic human)" xsd:string -intersection_of: UBERON:0034936 ! pars plana of ciliary body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55268 ! -property_value: IAO:0000589 "zone of organ (post-embryonic human)" xsd:string -intersection_of: UBERON:0034944 ! zone of organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78440 ! -property_value: IAO:0000589 "gas excreted from digestive tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0034946 ! gas excreted from digestive tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68454 ! -property_value: IAO:0000589 "lymphatic valve (post-embryonic human)" xsd:string -intersection_of: UBERON:0034949 ! lymphatic valve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19988 ! -property_value: IAO:0000589 "lateral fornix of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0034963 ! lateral fornix of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20734 ! -property_value: IAO:0000589 "superficial epigastric artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0034964 ! superficial epigastric artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50823 ! -property_value: IAO:0000589 "middle thyroid vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0034965 ! middle thyroid vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50848 ! -property_value: IAO:0000589 "jugular body (post-embryonic human)" xsd:string -intersection_of: UBERON:0034972 ! jugular body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15648 ! -property_value: IAO:0000589 "paraganglion (generic) (post-embryonic human)" xsd:string -intersection_of: UBERON:0034978 ! paraganglion (generic) -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50805 ! -property_value: IAO:0000589 "superior bulb of internal jugular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0034981 ! superior bulb of internal jugular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50807 ! -property_value: IAO:0000589 "inferior bulb of internal jugular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0034982 ! inferior bulb of internal jugular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:17010 ! -property_value: IAO:0000589 "ischial tuberosity (post-embryonic human)" xsd:string -intersection_of: UBERON:0034983 ! ischial tuberosity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78705 ! -property_value: IAO:0000589 "nerve to quadratus femoris (post-embryonic human)" xsd:string -intersection_of: UBERON:0034984 ! nerve to quadratus femoris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5909 ! -property_value: IAO:0000589 "sacral nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0034986 ! sacral nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5908 ! -property_value: IAO:0000589 "lumbar nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0034987 ! lumbar nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22300 ! -property_value: IAO:0000589 "tendon of obturator internus (post-embryonic human)" xsd:string -intersection_of: UBERON:0034988 ! tendon of obturator internus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77608 ! -property_value: IAO:0000589 "amygdalopiriform transition area (post-embryonic human)" xsd:string -intersection_of: UBERON:0034989 ! amygdalopiriform transition area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84344 ! -property_value: IAO:0000589 "basal ventral medial nucleus of thalamus (post-embryonic human)" xsd:string -intersection_of: UBERON:0034993 ! basal ventral medial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83134 ! -property_value: IAO:0000589 "central gray substance (post-embryonic human)" xsd:string -intersection_of: UBERON:0035011 ! central gray substance -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85595 ! -property_value: IAO:0000589 "tactile mechanoreceptor (post-embryonic human)" xsd:string -intersection_of: UBERON:0035016 ! tactile mechanoreceptor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18157 ! -property_value: IAO:0000589 "left vagus X nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0035020 ! left vagus X nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18151 ! -property_value: IAO:0000589 "right vagus X nerve trunk (post-embryonic human)" xsd:string -intersection_of: UBERON:0035021 ! right vagus X nerve trunk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:42352 ! -property_value: IAO:0000589 "carpal tunnel (post-embryonic human)" xsd:string -intersection_of: UBERON:0035038 ! carpal tunnel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14832 ! -property_value: IAO:0000589 "superior rectal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035040 ! superior rectal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49742 ! -property_value: IAO:0000589 "deep temporal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035041 ! deep temporal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49666 ! -property_value: IAO:0000589 "middle temporal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035042 ! middle temporal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60052 ! -property_value: IAO:0000589 "excretory duct of salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0035049 ! excretory duct of salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60053 ! -property_value: IAO:0000589 "interlobular duct of salivary gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0035053 ! interlobular duct of salivary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70617 ! -property_value: IAO:0000589 "duct of eccrine sweat gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0035073 ! duct of eccrine sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70643 ! -property_value: IAO:0000589 "duct of apocrine sweat gland (post-embryonic human)" xsd:string -intersection_of: UBERON:0035074 ! duct of apocrine sweat gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71193 ! -property_value: IAO:0000589 "thymus subunit (post-embryonic human)" xsd:string -intersection_of: UBERON:0035075 ! thymus subunit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242982 ! -property_value: IAO:0000589 "anatomical plane (post-embryonic human)" xsd:string -intersection_of: UBERON:0035085 ! anatomical plane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19646 ! -property_value: IAO:0000589 "raphe of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0035104 ! raphe of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18251 ! -property_value: IAO:0000589 "sac of scrotum (post-embryonic human)" xsd:string -intersection_of: UBERON:0035105 ! sac of scrotum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20244 ! -property_value: IAO:0000589 "raphe of perineum (post-embryonic human)" xsd:string -intersection_of: UBERON:0035106 ! raphe of perineum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53996 ! -property_value: IAO:0000589 "temporalis fascia (post-embryonic human)" xsd:string -intersection_of: UBERON:0035108 ! temporalis fascia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44724 ! -property_value: IAO:0000589 "lateral plantar nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0035110 ! lateral plantar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44716 ! -property_value: IAO:0000589 "medial plantar nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0035111 ! medial plantar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55019 ! -property_value: IAO:0000589 "fauces (post-embryonic human)" xsd:string -intersection_of: UBERON:0035120 ! fauces -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75777 ! -property_value: IAO:0000589 "interincisive suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035122 ! interincisive suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52964 ! -property_value: IAO:0000589 "palatomaxillary suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035123 ! palatomaxillary suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52965 ! -property_value: IAO:0000589 "palatoethmoidal suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035124 ! palatoethmoidal suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52971 ! -property_value: IAO:0000589 "transverse palatine suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035126 ! transverse palatine suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75030 ! -property_value: IAO:0000589 "longitudinal arch of pes (post-embryonic human)" xsd:string -intersection_of: UBERON:0035133 ! longitudinal arch of pes -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75770 ! -property_value: IAO:0000589 "anterior nasal spine of maxilla (post-embryonic human)" xsd:string -intersection_of: UBERON:0035139 ! anterior nasal spine of maxilla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:28606 ! -property_value: IAO:0000589 "preputial space (post-embryonic human)" xsd:string -intersection_of: UBERON:0035144 ! preputial space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50978 ! -property_value: IAO:0000589 "superior cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035150 ! superior cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51003 ! -property_value: IAO:0000589 "internal cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035152 ! internal cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61695 ! -property_value: IAO:0000589 "entire surface of organism (post-embryonic human)" xsd:string -intersection_of: UBERON:0035159 ! entire surface of organism -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14193 ! -property_value: IAO:0000589 "infraclavicular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035162 ! infraclavicular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19592 ! -property_value: IAO:0000589 "posterior surface of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0035165 ! posterior surface of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61479 ! -property_value: IAO:0000589 "infraclavicular region (post-embryonic human)" xsd:string -intersection_of: UBERON:0035168 ! infraclavicular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16656 ! -property_value: IAO:0000589 "obturator lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035171 ! obturator lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53641 ! -property_value: IAO:0000589 "right ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0035174 ! right ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9397 ! -property_value: IAO:0000589 "abdominal part of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035177 ! abdominal part of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14830 ! -property_value: IAO:0000589 "sigmoid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035180 ! sigmoid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50655 ! -property_value: IAO:0000589 "calcarine artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035183 ! calcarine artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75348 ! -property_value: IAO:0000589 "valve of foramen ovale (post-embryonic human)" xsd:string -intersection_of: UBERON:0035186 ! valve of foramen ovale -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:43956 ! -property_value: IAO:0000589 "plantar metatarsal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035195 ! plantar metatarsal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52011 ! -property_value: IAO:0000589 "superficial lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0035198 ! superficial lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16552 ! -property_value: IAO:0000589 "gastrocolic ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0035201 ! gastrocolic ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61214 ! -property_value: IAO:0000589 "occipital lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035204 ! occipital lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44771 ! -property_value: IAO:0000589 "deep fibular nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0035207 ! deep fibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14719 ! -property_value: IAO:0000589 "paracolic gutter (post-embryonic human)" xsd:string -intersection_of: UBERON:0035210 ! paracolic gutter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223286 ! -property_value: IAO:0000589 "basal zone of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0035213 ! basal zone of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9396 ! -property_value: IAO:0000589 "thoracic part of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035216 ! thoracic part of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5849 ! -property_value: IAO:0000589 "parasternal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035219 ! parasternal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50488 ! -property_value: IAO:0000589 "posterior parietal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035222 ! posterior parietal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50382 ! -property_value: IAO:0000589 "anterior temporal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035225 ! anterior temporal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55041 ! -property_value: IAO:0000589 "tonsillar fossa (post-embryonic human)" xsd:string -intersection_of: UBERON:0035228 ! tonsillar fossa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50983 ! -property_value: IAO:0000589 "superficial middle cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035231 ! superficial middle cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44325 ! -property_value: IAO:0000589 "medial circumflex femoral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035234 ! medial circumflex femoral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70506 ! -property_value: IAO:0000589 "branch of internal carotid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035237 ! branch of internal carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55032 ! -property_value: IAO:0000589 "posterior wall of oropharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0035240 ! posterior wall of oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15717 ! -property_value: IAO:0000589 "anal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035243 ! anal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:31894 ! -property_value: IAO:0000589 "posterior longitudinal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0035246 ! posterior longitudinal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14318 ! -property_value: IAO:0000589 "posterior external jugular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035249 ! posterior external jugular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4951 ! -property_value: IAO:0000589 "left subcostal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035252 ! left subcostal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20218 ! -property_value: IAO:0000589 "mons pubis (post-embryonic human)" xsd:string -intersection_of: UBERON:0035258 ! mons pubis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50458 ! -property_value: IAO:0000589 "posterior temporal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035261 ! posterior temporal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14538 ! -property_value: IAO:0000589 "neck of gallbladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0035267 ! neck of gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54906 ! -property_value: IAO:0000589 "roof of nasopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0035270 ! roof of nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22668 ! -property_value: IAO:0000589 "superior thoracic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035273 ! superior thoracic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20389 ! -property_value: IAO:0000589 "epigastrium (post-embryonic human)" xsd:string -intersection_of: UBERON:0035276 ! epigastrium -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14192 ! -property_value: IAO:0000589 "supraclavicular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035279 ! supraclavicular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55008 ! -property_value: IAO:0000589 "lateral wall of oropharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0035286 ! lateral wall of oropharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58072 ! -property_value: IAO:0000589 "axillary tail of breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0035289 ! axillary tail of breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69784 ! -property_value: IAO:0000589 "branch of posterior tibial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035292 ! branch of posterior tibial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53642 ! -property_value: IAO:0000589 "left ear (post-embryonic human)" xsd:string -intersection_of: UBERON:0035295 ! left ear -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54719 ! -property_value: IAO:0000589 "tuberculum sellae (post-embryonic human)" xsd:string -intersection_of: UBERON:0035298 ! tuberculum sellae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22799 ! -property_value: IAO:0000589 "branch of ulnar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035304 ! branch of ulnar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76259 ! -property_value: IAO:0000589 "branch of vertebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035307 ! branch of vertebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19596 ! -property_value: IAO:0000589 "inferolateral surface of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0035310 ! inferolateral surface of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55063 ! -property_value: IAO:0000589 "posterior wall of laryngopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0035313 ! posterior wall of laryngopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19583 ! -property_value: IAO:0000589 "prostatic capsule (post-embryonic human)" xsd:string -intersection_of: UBERON:0035316 ! prostatic capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83735 ! -property_value: IAO:0000589 "anterior median fissure of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0035319 ! anterior median fissure of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14765 ! -property_value: IAO:0000589 "right common iliac artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035322 ! right common iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61380 ! -property_value: IAO:0000589 "upper outer quadrant of breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0035328 ! upper outer quadrant of breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19595 ! -property_value: IAO:0000589 "base of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0035331 ! base of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50776 ! -property_value: IAO:0000589 "sphenoparietal sinus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035338 ! sphenoparietal sinus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19575 ! -property_value: IAO:0000589 "posterior lobe of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0035341 ! posterior lobe of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50081 ! -property_value: IAO:0000589 "branch of middle cerebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035350 ! branch of middle cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22693 ! -property_value: IAO:0000589 "branch of brachial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035359 ! branch of brachial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61376 ! -property_value: IAO:0000589 "lower outer quadrant of breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0035365 ! lower outer quadrant of breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15589 ! -property_value: IAO:0000589 "anterior surface of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0035368 ! anterior surface of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16694 ! -property_value: IAO:0000589 "retroperitoneal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035371 ! retroperitoneal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4714 ! -property_value: IAO:0000589 "small cardiac vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035374 ! small cardiac vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15722 ! -property_value: IAO:0000589 "transverse fold of rectum (post-embryonic human)" xsd:string -intersection_of: UBERON:0035377 ! transverse fold of rectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50031 ! -property_value: IAO:0000589 "branch of anterior cerebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035380 ! branch of anterior cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54908 ! -property_value: IAO:0000589 "lateral wall of nasopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0035383 ! lateral wall of nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70118 ! -property_value: IAO:0000589 "space of Mall (post-embryonic human)" xsd:string -intersection_of: UBERON:0035386 ! space of Mall -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15403 ! -property_value: IAO:0000589 "cystic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035392 ! cystic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66328 ! -property_value: IAO:0000589 "branch of left coronary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035395 ! branch of left coronary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70505 ! -property_value: IAO:0000589 "branch of external carotid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035398 ! branch of external carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54907 ! -property_value: IAO:0000589 "posterior wall of nasopharynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0035401 ! posterior wall of nasopharynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49849 ! -property_value: IAO:0000589 "superior hypophysial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035404 ! superior hypophysial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24037 ! -property_value: IAO:0000589 "left inguinal part of abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0035410 ! left inguinal part of abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78540 ! -property_value: IAO:0000589 "diaphragma sellae (post-embryonic human)" xsd:string -intersection_of: UBERON:0035416 ! diaphragma sellae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:31893 ! -property_value: IAO:0000589 "anterior longitudinal ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0035419 ! anterior longitudinal ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:3895 ! -property_value: IAO:0000589 "circumflex branch of left coronary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035422 ! circumflex branch of left coronary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83974 ! -property_value: IAO:0000589 "falx cerebelli (post-embryonic human)" xsd:string -intersection_of: UBERON:0035425 ! falx cerebelli -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63191 ! -property_value: IAO:0000589 "postcapillary venule (post-embryonic human)" xsd:string -intersection_of: UBERON:0035428 ! postcapillary venule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9736 ! -property_value: IAO:0000589 "mediastinal pleura (post-embryonic human)" xsd:string -intersection_of: UBERON:0035431 ! mediastinal pleura -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14343 ! -property_value: IAO:0000589 "right suprarenal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035435 ! right suprarenal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20111 ! -property_value: IAO:0000589 "mucoid tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0035438 ! mucoid tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19594 ! -property_value: IAO:0000589 "apex of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0035441 ! apex of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15821 ! -property_value: IAO:0000589 "triangular ligament of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0035444 ! triangular ligament of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19734 ! -property_value: IAO:0000589 "urogenital diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0035445 ! urogenital diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9395 ! -property_value: IAO:0000589 "cervical part of esophagus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035450 ! cervical part of esophagus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:64171 ! -property_value: IAO:0000589 "laryngeal ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0035453 ! laryngeal ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50485 ! -property_value: IAO:0000589 "anterior parietal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035462 ! anterior parietal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18076 ! -property_value: IAO:0000589 "endometrial cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0035465 ! endometrial cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:11355 ! -property_value: IAO:0000589 "costodiaphragmatic recess (post-embryonic human)" xsd:string -intersection_of: UBERON:0035468 ! costodiaphragmatic recess -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15590 ! -property_value: IAO:0000589 "posterior surface of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0035471 ! posterior surface of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4844 ! -property_value: IAO:0000589 "right subcostal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035474 ! right subcostal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61377 ! -property_value: IAO:0000589 "lower inner quadrant of breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0035477 ! lower inner quadrant of breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19590 ! -property_value: IAO:0000589 "surface of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0035480 ! surface of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14349 ! -property_value: IAO:0000589 "left suprarenal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035483 ! left suprarenal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76269 ! -property_value: IAO:0000589 "branch of basilar artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035489 ! branch of basilar artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:49846 ! -property_value: IAO:0000589 "inferior hypophysial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035492 ! inferior hypophysial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:62842 ! -property_value: IAO:0000589 "hilum of lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035495 ! hilum of lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16518 ! -property_value: IAO:0000589 "gastrophrenic ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0035498 ! gastrophrenic ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84005 ! -property_value: IAO:0000589 "unencapsulated tactile receptor (post-embryonic human)" xsd:string -intersection_of: UBERON:0035501 ! unencapsulated tactile receptor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24036 ! -property_value: IAO:0000589 "right inguinal part of abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0035505 ! right inguinal part of abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50586 ! -property_value: IAO:0000589 "branch of posterior cerebral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035508 ! branch of posterior cerebral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7189 ! -property_value: IAO:0000589 "special sense organ system (post-embryonic human)" xsd:string -intersection_of: UBERON:0035514 ! special sense organ system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12775 ! -property_value: IAO:0000589 "anterior mediastinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035520 ! anterior mediastinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19591 ! -property_value: IAO:0000589 "anterior surface of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0035523 ! anterior surface of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44699 ! -property_value: IAO:0000589 "superficial fibular nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0035526 ! superficial fibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14766 ! -property_value: IAO:0000589 "left common iliac artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035529 ! left common iliac artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50990 ! -property_value: IAO:0000589 "basal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035530 ! basal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51309 ! -property_value: IAO:0000589 "deep middle cerebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035532 ! deep middle cerebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14537 ! -property_value: IAO:0000589 "body of gallbladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0035536 ! body of gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:4149 ! -property_value: IAO:0000589 "esophageal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035539 ! esophageal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61375 ! -property_value: IAO:0000589 "upper inner quadrant of breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0035542 ! upper inner quadrant of breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52012 ! -property_value: IAO:0000589 "deep lymphatic vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0035545 ! deep lymphatic vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51797 ! -property_value: IAO:0000589 "uveal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035546 ! uveal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51796 ! -property_value: IAO:0000589 "posterior ciliary vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035547 ! posterior ciliary vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:225275 ! -property_value: IAO:0000589 "vasculature of integument (post-embryonic human)" xsd:string -intersection_of: UBERON:0035549 ! vasculature of integument -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76719 ! -property_value: IAO:0000589 "superficial vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035550 ! superficial vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76718 ! -property_value: IAO:0000589 "deep vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035552 ! deep vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7166 ! -property_value: IAO:0000589 "left cardiac chamber (post-embryonic human)" xsd:string -intersection_of: UBERON:0035553 ! left cardiac chamber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7165 ! -property_value: IAO:0000589 "right cardiac chamber (post-embryonic human)" xsd:string -intersection_of: UBERON:0035554 ! right cardiac chamber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77466 ! -property_value: IAO:0000589 "paracommissural nucleus of solitary tract (post-embryonic human)" xsd:string -intersection_of: UBERON:0035575 ! paracommissural nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61298 ! -property_value: IAO:0000589 "cartilage of external acoustic meatus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035606 ! cartilage of external acoustic meatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84964 ! -property_value: IAO:0000589 "peripharyngeal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0035617 ! peripharyngeal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55081 ! -property_value: IAO:0000589 "parapharyngeal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0035618 ! parapharyngeal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84965 ! -property_value: IAO:0000589 "retropharyngeal space (post-embryonic human)" xsd:string -intersection_of: UBERON:0035619 ! retropharyngeal space -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61373 ! -property_value: IAO:0000589 "quadrant of breast (post-embryonic human)" xsd:string -intersection_of: UBERON:0035634 ! quadrant of breast -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76554 ! -property_value: IAO:0000589 "ocular adnexa (post-embryonic human)" xsd:string -intersection_of: UBERON:0035639 ! ocular adnexa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52935 ! -property_value: IAO:0000589 "anterior superior alveolar nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0035646 ! anterior superior alveolar nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53278 ! -property_value: IAO:0000589 "posterior auricular nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0035647 ! posterior auricular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71591 ! -property_value: IAO:0000589 "paraumbilical vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035655 ! paraumbilical vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50916 ! -property_value: IAO:0000589 "deep facial vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035659 ! deep facial vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:50919 ! -property_value: IAO:0000589 "parotid vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0035662 ! parotid vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:305890 ! -property_value: IAO:0000589 "secondary yolk sac cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0035676 ! secondary yolk sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:305888 ! -property_value: IAO:0000589 "primary yolk sac cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0035677 ! primary yolk sac cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45633 ! -property_value: IAO:0000589 "capillary plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035753 ! capillary plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264928 ! -property_value: IAO:0000589 "pulmonary capillary plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035754 ! pulmonary capillary plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:264934 ! -property_value: IAO:0000589 "systemic capillary plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035755 ! systemic capillary plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:280884 ! -property_value: IAO:0000589 "capillary network of liver (post-embryonic human)" xsd:string -intersection_of: UBERON:0035756 ! capillary network of liver -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272218 ! -property_value: IAO:0000589 "peritubular capillary plexus of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0035758 ! peritubular capillary plexus of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:280922 ! -property_value: IAO:0000589 "capillary network of kidney (post-embryonic human)" xsd:string -intersection_of: UBERON:0035762 ! capillary network of kidney -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9464 ! -property_value: IAO:0000589 "cavity of cardiac chamber (post-embryonic human)" xsd:string -intersection_of: UBERON:0035763 ! cavity of cardiac chamber -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5968 ! -property_value: IAO:0000589 "pulmonary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035764 ! pulmonary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276861 ! -property_value: IAO:0000589 "subsegmental lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0035765 ! subsegmental lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45701 ! -property_value: IAO:0000589 "median lobe of prostate (post-embryonic human)" xsd:string -intersection_of: UBERON:0035766 ! median lobe of prostate -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:223208 ! -property_value: IAO:0000589 "intrapulmonary bronchus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035767 ! intrapulmonary bronchus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:45356 ! -property_value: IAO:0000589 "coccygeal nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035768 ! coccygeal nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6641 ! -property_value: IAO:0000589 "inferior mesenteric nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035770 ! inferior mesenteric nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:80133 ! -property_value: IAO:0000589 "aortic plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035772 ! aortic plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:6640 ! -property_value: IAO:0000589 "abdominal nerve plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035773 ! abdominal nerve plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77574 ! -property_value: IAO:0000589 "thoracic aortic plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035774 ! thoracic aortic plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:57779 ! -property_value: IAO:0000589 "submandibular region (post-embryonic human)" xsd:string -intersection_of: UBERON:0035775 ! submandibular region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277844 ! -property_value: IAO:0000589 "layer of CA1 field (post-embryonic human)" xsd:string -intersection_of: UBERON:0035786 ! layer of CA1 field -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277846 ! -property_value: IAO:0000589 "layer of CA2 field (post-embryonic human)" xsd:string -intersection_of: UBERON:0035787 ! layer of CA2 field -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277848 ! -property_value: IAO:0000589 "layer of CA3 field (post-embryonic human)" xsd:string -intersection_of: UBERON:0035788 ! layer of CA3 field -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277876 ! -property_value: IAO:0000589 "alveus of CA2 field (post-embryonic human)" xsd:string -intersection_of: UBERON:0035802 ! alveus of CA2 field -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:293105 ! -property_value: IAO:0000589 "future mouth (post-embryonic human)" xsd:string -intersection_of: UBERON:0035804 ! future mouth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15028 ! -property_value: IAO:0000589 "muscle layer of sigmoid colon (post-embryonic human)" xsd:string -intersection_of: UBERON:0035805 ! muscle layer of sigmoid colon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12241 ! -property_value: IAO:0000589 "serous cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0035809 ! serous cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12267 ! -property_value: IAO:0000589 "abdominopelvic cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0035819 ! abdominopelvic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9908 ! -property_value: IAO:0000589 "peritoneal sac (post-embryonic human)" xsd:string -intersection_of: UBERON:0035820 ! peritoneal sac -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69089 ! -property_value: IAO:0000589 "left adrenal gland cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0035825 ! left adrenal gland cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69092 ! -property_value: IAO:0000589 "left adrenal gland medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0035826 ! left adrenal gland medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69088 ! -property_value: IAO:0000589 "right adrenal gland cortex (post-embryonic human)" xsd:string -intersection_of: UBERON:0035827 ! right adrenal gland cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:69091 ! -property_value: IAO:0000589 "right adrenal gland medulla (post-embryonic human)" xsd:string -intersection_of: UBERON:0035828 ! right adrenal gland medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14781 ! -property_value: IAO:0000589 "right gastroepiploic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035829 ! right gastroepiploic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14796 ! -property_value: IAO:0000589 "left gastroepiploic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0035830 ! left gastroepiploic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58277 ! -property_value: IAO:0000589 "costal diaphragm (post-embryonic human)" xsd:string -intersection_of: UBERON:0035831 ! costal diaphragm -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:225374 ! -property_value: IAO:0000589 "apical region of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0035835 ! apical region of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:230605 ! -property_value: IAO:0000589 "apical region of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0035836 ! apical region of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53177 ! -property_value: IAO:0000589 "infraorbital margin (post-embryonic human)" xsd:string -intersection_of: UBERON:0035848 ! infraorbital margin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53176 ! -property_value: IAO:0000589 "orbital margin (post-embryonic human)" xsd:string -intersection_of: UBERON:0035849 ! orbital margin -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52950 ! -property_value: IAO:0000589 "frontomaxillary suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035879 ! frontomaxillary suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52953 ! -property_value: IAO:0000589 "zygomaticomaxillary suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035880 ! zygomaticomaxillary suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52954 ! -property_value: IAO:0000589 "ethmoidomaxillary suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035881 ! ethmoidomaxillary suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52957 ! -property_value: IAO:0000589 "sphenomaxillary suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035882 ! sphenomaxillary suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52961 ! -property_value: IAO:0000589 "lacrimomaxillary suture (post-embryonic human)" xsd:string -intersection_of: UBERON:0035883 ! lacrimomaxillary suture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83737 ! -property_value: IAO:0000589 "intraculminate fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0035922 ! intraculminate fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77693 ! -property_value: IAO:0000589 "radiation of corpus callosum (post-embryonic human)" xsd:string -intersection_of: UBERON:0035924 ! radiation of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83779 ! -property_value: IAO:0000589 "central sulcus of insula (post-embryonic human)" xsd:string -intersection_of: UBERON:0035925 ! central sulcus of insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83736 ! -property_value: IAO:0000589 "preculminate fissure of cerebellum (post-embryonic human)" xsd:string -intersection_of: UBERON:0035926 ! preculminate fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:76770 ! -property_value: IAO:0000589 "dorsolateral part of supraoptic nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035928 ! dorsolateral part of supraoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72476 ! -property_value: IAO:0000589 "retro-olivary nucleus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035930 ! retro-olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277107 ! -property_value: IAO:0000589 "sagittal stratum (post-embryonic human)" xsd:string -intersection_of: UBERON:0035931 ! sagittal stratum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:273508 ! -property_value: IAO:0000589 "anterior segment of paracentral lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0035932 ! anterior segment of paracentral lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77534 ! -property_value: IAO:0000589 "paracentral lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0035933 ! paracentral lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:273511 ! -property_value: IAO:0000589 "posterior segment of paracentral lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0035934 ! posterior segment of paracentral lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:280849 ! -property_value: IAO:0000589 "Meyer's loop of optic radiation (post-embryonic human)" xsd:string -intersection_of: UBERON:0035935 ! Meyer's loop of optic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276650 ! -property_value: IAO:0000589 "arcuate fasciculus (post-embryonic human)" xsd:string -intersection_of: UBERON:0035937 ! arcuate fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:72611 ! -property_value: IAO:0000589 "amiculum of inferior olive (post-embryonic human)" xsd:string -intersection_of: UBERON:0035938 ! amiculum of inferior olive -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83870 ! -property_value: IAO:0000589 "amiculum (post-embryonic human)" xsd:string -intersection_of: UBERON:0035939 ! amiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70663 ! -property_value: IAO:0000589 "central medullary reticular nuclear complex (post-embryonic human)" xsd:string -intersection_of: UBERON:0035940 ! central medullary reticular nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18274 ! -property_value: IAO:0000589 "epididymal lumen (post-embryonic human)" xsd:string -intersection_of: UBERON:0035956 ! epididymal lumen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77055 ! -property_value: IAO:0000589 "supravaginal part of cervix (post-embryonic human)" xsd:string -intersection_of: UBERON:0035962 ! supravaginal part of cervix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276456 ! -property_value: IAO:0000589 "epithelial lining fluid (post-embryonic human)" xsd:string -intersection_of: UBERON:0035963 ! epithelial lining fluid -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77694 ! -property_value: IAO:0000589 "promontory of tympanic cavity (post-embryonic human)" xsd:string -intersection_of: UBERON:0035964 ! promontory of tympanic cavity -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:67473 ! -property_value: IAO:0000589 "wall of blood vessel (post-embryonic human)" xsd:string -intersection_of: UBERON:0035965 ! wall of blood vessel -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58371 ! -property_value: IAO:0000589 "scleral lamina cribrosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0035966 ! scleral lamina cribrosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:289360 ! -property_value: IAO:0000589 "alveolar mucosa (post-embryonic human)" xsd:string -intersection_of: UBERON:0035967 ! alveolar mucosa -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83995 ! -property_value: IAO:0000589 "encapsulated tactile receptor (post-embryonic human)" xsd:string -intersection_of: UBERON:0035969 ! encapsulated tactile receptor -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83707 ! -property_value: IAO:0000589 "calcar avis of the lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0035970 ! calcar avis of the lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20234 ! -property_value: IAO:0000589 "intergluteal cleft (post-embryonic human)" xsd:string -intersection_of: UBERON:0036013 ! intergluteal cleft -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20233 ! -property_value: IAO:0000589 "gluteal sulcus (post-embryonic human)" xsd:string -intersection_of: UBERON:0036014 ! gluteal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:272300 ! -property_value: IAO:0000589 "quadrangular lobule (post-embryonic human)" xsd:string -intersection_of: UBERON:0036063 ! quadrangular lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55477 ! -property_value: IAO:0000589 "subglottis (post-embryonic human)" xsd:string -intersection_of: UBERON:0036068 ! subglottis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52367 ! -property_value: IAO:0000589 "vein of vestibular aqueduct (post-embryonic human)" xsd:string -intersection_of: UBERON:0036074 ! vein of vestibular aqueduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53047 ! -property_value: IAO:0000589 "meningeal branch of mandibular nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0036143 ! meningeal branch of mandibular nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:77282 ! -property_value: IAO:0000589 "incisive duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0036144 ! incisive duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37381 ! -property_value: IAO:0000589 "palmaris brevis (post-embryonic human)" xsd:string -intersection_of: UBERON:0036172 ! palmaris brevis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37382 ! -property_value: IAO:0000589 "abductor digiti minimi of hand (post-embryonic human)" xsd:string -intersection_of: UBERON:0036173 ! abductor digiti minimi of hand -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37383 ! -property_value: IAO:0000589 "flexor digiti minimi brevis of hand (post-embryonic human)" xsd:string -intersection_of: UBERON:0036174 ! flexor digiti minimi brevis of hand -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37384 ! -property_value: IAO:0000589 "opponens digiti minimi of hand (post-embryonic human)" xsd:string -intersection_of: UBERON:0036176 ! opponens digiti minimi of hand -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:83520 ! -property_value: IAO:0000589 "fibroelastic connective tissue (post-embryonic human)" xsd:string -intersection_of: UBERON:0036186 ! fibroelastic connective tissue -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61175 ! -property_value: IAO:0000589 "intertragic incisure (post-embryonic human)" xsd:string -intersection_of: UBERON:0036212 ! intertragic incisure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53480 ! -property_value: IAO:0000589 "tympanic nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0036216 ! tympanic nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20932 ! -property_value: IAO:0000589 "secretion of serous membrane (post-embryonic human)" xsd:string -intersection_of: UBERON:0036244 ! secretion of serous membrane -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60065 ! -property_value: IAO:0000589 "incudostapedial joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0036246 ! incudostapedial joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60064 ! -property_value: IAO:0000589 "incudomallear joint (post-embryonic human)" xsd:string -intersection_of: UBERON:0036247 ! incudomallear joint -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60063 ! -property_value: IAO:0000589 "joint of auditory ossicle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036248 ! joint of auditory ossicle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:75710 ! -property_value: IAO:0000589 "zona pectinata of basilar membrane of cochlea (post-embryonic human)" xsd:string -intersection_of: UBERON:0036249 ! zona pectinata of basilar membrane of cochlea -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53133 ! -property_value: IAO:0000589 "orifice of skull (post-embryonic human)" xsd:string -intersection_of: UBERON:0036253 ! orifice of skull -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:53137 ! -property_value: IAO:0000589 "piriform aperture (post-embryonic human)" xsd:string -intersection_of: UBERON:0036254 ! piriform aperture -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:55476 ! -property_value: IAO:0000589 "supraglottic part of larynx (post-embryonic human)" xsd:string -intersection_of: UBERON:0036263 ! supraglottic part of larynx -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:52972 ! -property_value: IAO:0000589 "zygomaticotemporal nerve (post-embryonic human)" xsd:string -intersection_of: UBERON:0036264 ! zygomaticotemporal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9556 ! -property_value: IAO:0000589 "wall of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036285 ! wall of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9533 ! -property_value: IAO:0000589 "wall of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036286 ! wall of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9560 ! -property_value: IAO:0000589 "anterior wall of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036288 ! anterior wall of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:9553 ! -property_value: IAO:0000589 "anterior wall of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036289 ! anterior wall of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:87177 ! -property_value: IAO:0000589 "myocardium of anterior wall of left ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036290 ! myocardium of anterior wall of left ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:260877 ! -property_value: IAO:0000589 "myocardium of anterior wall of right ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036291 ! myocardium of anterior wall of right ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265256 ! -property_value: IAO:0000589 "adnexa of uterus (post-embryonic human)" xsd:string -intersection_of: UBERON:0036292 ! adnexa of uterus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:51892 ! -property_value: IAO:0000589 "tributary of central retinal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0036300 ! tributary of central retinal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:225251 ! -property_value: IAO:0000589 "vasculature of spleen (post-embryonic human)" xsd:string -intersection_of: UBERON:0036301 ! vasculature of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:259905 ! -property_value: IAO:0000589 "vasculature of central nervous system (post-embryonic human)" xsd:string -intersection_of: UBERON:0036303 ! vasculature of central nervous system -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14179 ! -property_value: IAO:0000589 "wall of coronary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0036328 ! wall of coronary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14621 ! -property_value: IAO:0000589 "wall of appendix (post-embryonic human)" xsd:string -intersection_of: UBERON:0036337 ! wall of appendix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14657 ! -property_value: IAO:0000589 "wall of gallbladder (post-embryonic human)" xsd:string -intersection_of: UBERON:0036343 ! wall of gallbladder -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15089 ! -property_value: IAO:0000589 "wall of brachiocephalic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0036351 ! wall of brachiocephalic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15090 ! -property_value: IAO:0000589 "wall of subclavian artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0036352 ! wall of subclavian artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15704 ! -property_value: IAO:0000589 "wall of anal canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0036362 ! wall of anal canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15889 ! -property_value: IAO:0000589 "wall of right ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0036375 ! wall of right ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15890 ! -property_value: IAO:0000589 "wall of left ureter (post-embryonic human)" xsd:string -intersection_of: UBERON:0036376 ! wall of left ureter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18211 ! -property_value: IAO:0000589 "wall of pulmonary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0036422 ! wall of pulmonary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18303 ! -property_value: IAO:0000589 "wall of uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0036441 ! wall of uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19779 ! -property_value: IAO:0000589 "wall of urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0036521 ! wall of urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19971 ! -property_value: IAO:0000589 "wall of vagina (post-embryonic human)" xsd:string -intersection_of: UBERON:0036523 ! wall of vagina -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:231590 ! -property_value: IAO:0000589 "wall of synovial tendon sheath (post-embryonic human)" xsd:string -intersection_of: UBERON:0036553 ! wall of synovial tendon sheath -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242772 ! -property_value: IAO:0000589 "wall of lateral ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036654 ! wall of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242774 ! -property_value: IAO:0000589 "wall of cerebral aqueduct (post-embryonic human)" xsd:string -intersection_of: UBERON:0036655 ! wall of cerebral aqueduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242776 ! -property_value: IAO:0000589 "wall of third ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036656 ! wall of third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242778 ! -property_value: IAO:0000589 "wall of fourth ventricle (post-embryonic human)" xsd:string -intersection_of: UBERON:0036657 ! wall of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242780 ! -property_value: IAO:0000589 "wall of central canal of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0036658 ! wall of central canal of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:242841 ! -property_value: IAO:0000589 "wall of ventricular system of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0036661 ! wall of ventricular system of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:58098 ! -property_value: IAO:0000589 "wall of eyeball (post-embryonic human)" xsd:string -intersection_of: UBERON:0036925 ! wall of eyeball -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:60069 ! -property_value: IAO:0000589 "wall of pharyngotympanic tube (post-embryonic human)" xsd:string -intersection_of: UBERON:0036990 ! wall of pharyngotympanic tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63144 ! -property_value: IAO:0000589 "wall of orbit (post-embryonic human)" xsd:string -intersection_of: UBERON:0037089 ! wall of orbit -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66284 ! -property_value: IAO:0000589 "wall of common carotid artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0037094 ! wall of common carotid artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7274 ! -property_value: IAO:0000589 "wall of heart (post-embryonic human)" xsd:string -intersection_of: UBERON:0037144 ! wall of heart -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:79837 ! -property_value: IAO:0000589 "wall of membranous labyrinth (post-embryonic human)" xsd:string -intersection_of: UBERON:0037191 ! wall of membranous labyrinth -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:85375 ! -property_value: IAO:0000589 "wall of lacrimal duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0037237 ! wall of lacrimal duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19676 ! -property_value: IAO:0000589 "wall of male urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0037447 ! wall of male urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19780 ! -property_value: IAO:0000589 "wall of female urethra (post-embryonic human)" xsd:string -intersection_of: UBERON:0037455 ! wall of female urethra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54242 ! -property_value: IAO:0000589 "hair of neck (post-embryonic human)" xsd:string -intersection_of: UBERON:0037458 ! hair of neck -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:54243 ! -property_value: IAO:0000589 "hair of limb (post-embryonic human)" xsd:string -intersection_of: UBERON:0037459 ! hair of limb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70667 ! -property_value: IAO:0000589 "primary hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0037461 ! primary hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70668 ! -property_value: IAO:0000589 "vellus hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0037462 ! vellus hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70669 ! -property_value: IAO:0000589 "terminal hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0037463 ! terminal hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70717 ! -property_value: IAO:0000589 "catagen hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0037465 ! catagen hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70718 ! -property_value: IAO:0000589 "telogen hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0037466 ! telogen hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70716 ! -property_value: IAO:0000589 "anagen hair (post-embryonic human)" xsd:string -intersection_of: UBERON:0037467 ! anagen hair -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:228775 ! -property_value: IAO:0000589 "waist (post-embryonic human)" xsd:string -intersection_of: UBERON:0037468 ! waist -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12785 ! -property_value: IAO:0000589 "supramammary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037480 ! supramammary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12803 ! -property_value: IAO:0000589 "paracardial gastric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037494 ! paracardial gastric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14187 ! -property_value: IAO:0000589 "subscapular axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037500 ! subscapular axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14188 ! -property_value: IAO:0000589 "pectoral axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037501 ! pectoral axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14189 ! -property_value: IAO:0000589 "central axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037502 ! central axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14190 ! -property_value: IAO:0000589 "apical axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037503 ! apical axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16609 ! -property_value: IAO:0000589 "intermediate mesenteric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037514 ! intermediate mesenteric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16610 ! -property_value: IAO:0000589 "juxta-arterial mesenteric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037515 ! juxta-arterial mesenteric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16613 ! -property_value: IAO:0000589 "epicolic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037518 ! epicolic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16616 ! -property_value: IAO:0000589 "preterminal colic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037521 ! preterminal colic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16617 ! -property_value: IAO:0000589 "ileal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037522 ! ileal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16624 ! -property_value: IAO:0000589 "superior pancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037527 ! superior pancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16625 ! -property_value: IAO:0000589 "inferior pancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037528 ! inferior pancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16628 ! -property_value: IAO:0000589 "inferior pancreatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037530 ! inferior pancreatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16629 ! -property_value: IAO:0000589 "intestinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037531 ! intestinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16641 ! -property_value: IAO:0000589 "medial common iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037532 ! medial common iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16642 ! -property_value: IAO:0000589 "intermediate common iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037533 ! intermediate common iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16643 ! -property_value: IAO:0000589 "lateral common iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037534 ! lateral common iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16644 ! -property_value: IAO:0000589 "subaortic common iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037535 ! subaortic common iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16645 ! -property_value: IAO:0000589 "promontory lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037536 ! promontory lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16647 ! -property_value: IAO:0000589 "medial external iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037538 ! medial external iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16648 ! -property_value: IAO:0000589 "intermediate external iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037539 ! intermediate external iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16649 ! -property_value: IAO:0000589 "lateral external iliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037540 ! lateral external iliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16651 ! -property_value: IAO:0000589 "interiliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037541 ! interiliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16658 ! -property_value: IAO:0000589 "superior gluteal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037548 ! superior gluteal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16659 ! -property_value: IAO:0000589 "inferior gluteal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037549 ! inferior gluteal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16669 ! -property_value: IAO:0000589 "anorectal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037559 ! anorectal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12771 ! -property_value: IAO:0000589 "superficial axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037560 ! superficial axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12773 ! -property_value: IAO:0000589 "diaphragmatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037566 ! diaphragmatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12797 ! -property_value: IAO:0000589 "left gastric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037580 ! left gastric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14186 ! -property_value: IAO:0000589 "lateral axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037590 ! lateral axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16602 ! -property_value: IAO:0000589 "left parietal lumbar lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037601 ! left parietal lumbar lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16620 ! -property_value: IAO:0000589 "appendicular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037614 ! appendicular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16621 ! -property_value: IAO:0000589 "pararectal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037615 ! pararectal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224626 ! -property_value: IAO:0000589 "right retropharyngeal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037722 ! right retropharyngeal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:224628 ! -property_value: IAO:0000589 "left retropharyngeal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037723 ! left retropharyngeal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232351 ! -property_value: IAO:0000589 "lateral superior deep cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037763 ! lateral superior deep cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232355 ! -property_value: IAO:0000589 "anterior superior deep cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037764 ! anterior superior deep cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232358 ! -property_value: IAO:0000589 "lateral inferior deep cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037765 ! lateral inferior deep cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232361 ! -property_value: IAO:0000589 "anterior inferior deep cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037766 ! anterior inferior deep cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232552 ! -property_value: IAO:0000589 "right occipital lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037787 ! right occipital lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232554 ! -property_value: IAO:0000589 "left occipital lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037788 ! left occipital lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232558 ! -property_value: IAO:0000589 "right apical axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037789 ! right apical axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232560 ! -property_value: IAO:0000589 "left apical axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037790 ! left apical axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232566 ! -property_value: IAO:0000589 "right subscapular axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037793 ! right subscapular axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232568 ! -property_value: IAO:0000589 "left subscapular axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037794 ! left subscapular axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232570 ! -property_value: IAO:0000589 "right pectoral axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037795 ! right pectoral axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232572 ! -property_value: IAO:0000589 "left pectoral axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037796 ! left pectoral axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232574 ! -property_value: IAO:0000589 "right central axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037797 ! right central axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232576 ! -property_value: IAO:0000589 "left central axillary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037798 ! left central axillary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:232854 ! -property_value: IAO:0000589 "jugular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037865 ! jugular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234376 ! -property_value: IAO:0000589 "supramandibular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037995 ! supramandibular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234382 ! -property_value: IAO:0000589 "external jugular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0037998 ! external jugular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234388 ! -property_value: IAO:0000589 "sternal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038001 ! sternal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234390 ! -property_value: IAO:0000589 "upper intercostal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038002 ! upper intercostal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234392 ! -property_value: IAO:0000589 "lower intercostal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038003 ! lower intercostal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234498 ! -property_value: IAO:0000589 "subclavian lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038037 ! subclavian lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:234527 ! -property_value: IAO:0000589 "antebrachial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038048 ! antebrachial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265353 ! -property_value: IAO:0000589 "cardiophrenic angle lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038053 ! cardiophrenic angle lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265356 ! -property_value: IAO:0000589 "retrocrural lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038054 ! retrocrural lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276784 ! -property_value: IAO:0000589 "jejunal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038093 ! jejunal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276796 ! -property_value: IAO:0000589 "inferior rectal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038094 ! inferior rectal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12807 ! -property_value: IAO:0000589 "medial diaphragmatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038124 ! medial diaphragmatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16603 ! -property_value: IAO:0000589 "parietal pre-aortic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038137 ! parietal pre-aortic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16607 ! -property_value: IAO:0000589 "retro-aortic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038139 ! retro-aortic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:265350 ! -property_value: IAO:0000589 "paracardiac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038587 ! paracardiac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276807 ! -property_value: IAO:0000589 "pericardial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038632 ! pericardial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276813 ! -property_value: IAO:0000589 "aortopulmonary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038633 ! aortopulmonary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276820 ! -property_value: IAO:0000589 "para-aortic thoracic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038634 ! para-aortic thoracic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276828 ! -property_value: IAO:0000589 "interlobar lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038635 ! interlobar lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276849 ! -property_value: IAO:0000589 "lobar lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038638 ! lobar lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276855 ! -property_value: IAO:0000589 "segmental lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038641 ! segmental lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276867 ! -property_value: IAO:0000589 "lymph node of inferior pulmonary ligament (post-embryonic human)" xsd:string -intersection_of: UBERON:0038647 ! lymph node of inferior pulmonary ligament -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:276903 ! -property_value: IAO:0000589 "superior mediastinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038651 ! superior mediastinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277061 ! -property_value: IAO:0000589 "superior left gastric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038684 ! superior left gastric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277064 ! -property_value: IAO:0000589 "inferior left gastric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038685 ! inferior left gastric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277227 ! -property_value: IAO:0000589 "visceral lymph node of abdomen (post-embryonic human)" xsd:string -intersection_of: UBERON:0038687 ! visceral lymph node of abdomen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277259 ! -property_value: IAO:0000589 "common hepatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038691 ! common hepatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277271 ! -property_value: IAO:0000589 "hepatoportal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038694 ! hepatoportal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277295 ! -property_value: IAO:0000589 "proximal superior pancreatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038695 ! proximal superior pancreatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277298 ! -property_value: IAO:0000589 "distal superior pancreatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038696 ! distal superior pancreatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277305 ! -property_value: IAO:0000589 "anterior superior pancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038697 ! anterior superior pancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277310 ! -property_value: IAO:0000589 "posterior superior pancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038698 ! posterior superior pancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277315 ! -property_value: IAO:0000589 "anterior inferior pancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038699 ! anterior inferior pancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277317 ! -property_value: IAO:0000589 "posterior inferior pancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038700 ! posterior inferior pancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277368 ! -property_value: IAO:0000589 "anterior pancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038707 ! anterior pancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277581 ! -property_value: IAO:0000589 "juxta-intestinal mesenteric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038727 ! juxta-intestinal mesenteric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277610 ! -property_value: IAO:0000589 "visceral pre-aortic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038734 ! visceral pre-aortic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277614 ! -property_value: IAO:0000589 "juxta-arterial jejunal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038735 ! juxta-arterial jejunal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277616 ! -property_value: IAO:0000589 "juxta-arterial ileal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038736 ! juxta-arterial ileal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277618 ! -property_value: IAO:0000589 "intermediate jejunal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038737 ! intermediate jejunal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277620 ! -property_value: IAO:0000589 "intermediate ileal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038738 ! intermediate ileal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277652 ! -property_value: IAO:0000589 "gastro-epiploic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038746 ! gastro-epiploic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278181 ! -property_value: IAO:0000589 "pararectal lymph node of pelvis (post-embryonic human)" xsd:string -intersection_of: UBERON:0038784 ! pararectal lymph node of pelvis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:278188 ! -property_value: IAO:0000589 "superior ileocolic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038787 ! superior ileocolic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:281309 ! -property_value: IAO:0000589 "lymph node along bile duct (post-embryonic human)" xsd:string -intersection_of: UBERON:0038796 ! lymph node along bile duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:304577 ! -property_value: IAO:0000589 "posterior ancreaticoduodenal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038818 ! posterior ancreaticoduodenal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:321555 ! -property_value: IAO:0000589 "craniocervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038849 ! craniocervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44231 ! -property_value: IAO:0000589 "superficial popliteal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038853 ! superficial popliteal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44232 ! -property_value: IAO:0000589 "deep popliteal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038854 ! deep popliteal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44297 ! -property_value: IAO:0000589 "superior medial inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038855 ! superior medial inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44301 ! -property_value: IAO:0000589 "superior lateral inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038856 ! superior lateral inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44302 ! -property_value: IAO:0000589 "inferior inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038857 ! inferior inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44304 ! -property_value: IAO:0000589 "intermediate deep inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038859 ! intermediate deep inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44305 ! -property_value: IAO:0000589 "distal deep inguinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038860 ! distal deep inguinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44306 ! -property_value: IAO:0000589 "tibial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038861 ! tibial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44309 ! -property_value: IAO:0000589 "fibular lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038864 ! fibular lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44312 ! -property_value: IAO:0000589 "interpectoral lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038867 ! interpectoral lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44313 ! -property_value: IAO:0000589 "paramammary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038868 ! paramammary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44315 ! -property_value: IAO:0000589 "cubital lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038870 ! cubital lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:44316 ! -property_value: IAO:0000589 "supratrochlear lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038871 ! supratrochlear lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5935 ! -property_value: IAO:0000589 "lateral diaphragmatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038878 ! lateral diaphragmatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5936 ! -property_value: IAO:0000589 "anterior diaphragmatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038879 ! anterior diaphragmatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5941 ! -property_value: IAO:0000589 "posterior diaphragmatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038882 ! posterior diaphragmatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5944 ! -property_value: IAO:0000589 "brachiocephalic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038885 ! brachiocephalic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5947 ! -property_value: IAO:0000589 "posterior mediastinal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038888 ! posterior mediastinal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5953 ! -property_value: IAO:0000589 "paratracheal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038894 ! paratracheal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5959 ! -property_value: IAO:0000589 "superior tracheobronchial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038897 ! superior tracheobronchial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5962 ! -property_value: IAO:0000589 "inferior tracheobronchial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038900 ! inferior tracheobronchial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61223 ! -property_value: IAO:0000589 "buccinator lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038920 ! buccinator lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61225 ! -property_value: IAO:0000589 "nasolabial lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038922 ! nasolabial lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61226 ! -property_value: IAO:0000589 "malar lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038923 ! malar lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61228 ! -property_value: IAO:0000589 "lingual lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038925 ! lingual lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61233 ! -property_value: IAO:0000589 "infrahyoid lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038929 ! infrahyoid lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61234 ! -property_value: IAO:0000589 "prelaryngeal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038930 ! prelaryngeal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61235 ! -property_value: IAO:0000589 "thyroid lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038931 ! thyroid lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61236 ! -property_value: IAO:0000589 "pretracheal lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038932 ! pretracheal lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61238 ! -property_value: IAO:0000589 "superior deep lateral cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038934 ! superior deep lateral cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61239 ! -property_value: IAO:0000589 "inferior deep lateral cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038935 ! inferior deep lateral cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61240 ! -property_value: IAO:0000589 "jugulodigastric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038936 ! jugulodigastric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:61242 ! -property_value: IAO:0000589 "accessory cervical lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038938 ! accessory cervical lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66167 ! -property_value: IAO:0000589 "superior diaphragmatic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038943 ! superior diaphragmatic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66183 ! -property_value: IAO:0000589 "suprapyloric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038951 ! suprapyloric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66184 ! -property_value: IAO:0000589 "subpyloric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038952 ! subpyloric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:66185 ! -property_value: IAO:0000589 "retropyloric lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0038953 ! retropyloric lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:78731 ! -property_value: IAO:0000589 "inferior ileocolic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0039162 ! inferior ileocolic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84597 ! -property_value: IAO:0000589 "lateral sacral lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0039163 ! lateral sacral lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:84598 ! -property_value: IAO:0000589 "medial sacral lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0039164 ! medial sacral lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5965 ! -property_value: IAO:0000589 "bronchopulmonary lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0039167 ! bronchopulmonary lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16612 ! -property_value: IAO:0000589 "colic lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:0039168 ! colic lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10641 ! -property_value: IAO:0000589 "anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039169 ! anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10648 ! -property_value: IAO:0000589 "mammary branch of internal thoracic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039170 ! mammary branch of internal thoracic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:322073 ! -property_value: IAO:0000589 "subarachnoid space of brain (post-embryonic human)" xsd:string -intersection_of: UBERON:0039175 ! subarachnoid space of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:322074 ! -property_value: IAO:0000589 "subarachnoid space of spinal cord (post-embryonic human)" xsd:string -intersection_of: UBERON:0039176 ! subarachnoid space of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14290 ! -property_value: IAO:0000589 "accessory vertebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039185 ! accessory vertebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14296 ! -property_value: IAO:0000589 "anterior vertebral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039186 ! anterior vertebral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14319 ! -property_value: IAO:0000589 "suprascapular vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039187 ! suprascapular vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14324 ! -property_value: IAO:0000589 "superior laryngeal vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039188 ! superior laryngeal vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14818 ! -property_value: IAO:0000589 "appendicular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039215 ! appendicular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14835 ! -property_value: IAO:0000589 "cystic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039222 ! cystic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15395 ! -property_value: IAO:0000589 "sigmoid vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039228 ! sigmoid vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15404 ! -property_value: IAO:0000589 "prepyloric vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039230 ! prepyloric vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15736 ! -property_value: IAO:0000589 "conus artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039232 ! conus artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21200 ! -property_value: IAO:0000589 "pubic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039256 ! pubic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12851 ! -property_value: IAO:0000589 "external vertebral venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0039258 ! external vertebral venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18935 ! -property_value: IAO:0000589 "vertebral venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0039259 ! vertebral venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70346 ! -property_value: IAO:0000589 "thyrocervical artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039260 ! thyrocervical artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:70471 ! -property_value: IAO:0000589 "pancreatic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039261 ! pancreatic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:8755 ! -property_value: IAO:0000589 "segmental pulmonary artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039262 ! segmental pulmonary artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:19995 ! -property_value: IAO:0000589 "rima vulvae (post-embryonic human)" xsd:string -intersection_of: UBERON:0039288 ! rima vulvae -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20886 ! -property_value: IAO:0000589 "posterior labial artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039351 ! posterior labial artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:20903 ! -property_value: IAO:0000589 "urethral artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039355 ! urethral artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21267 ! -property_value: IAO:0000589 "penile bulb vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039376 ! penile bulb vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21270 ! -property_value: IAO:0000589 "urethral vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039377 ! urethral vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21273 ! -property_value: IAO:0000589 "vestibular bulb vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039379 ! vestibular bulb vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:22071 ! -property_value: IAO:0000589 "Alcock's canal (post-embryonic human)" xsd:string -intersection_of: UBERON:0039418 ! Alcock's canal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:21384 ! -property_value: IAO:0000589 "superficial dorsal vein of penis (post-embryonic human)" xsd:string -intersection_of: UBERON:0039421 ! superficial dorsal vein of penis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10649 ! -property_value: IAO:0000589 "seventh anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039838 ! seventh anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10650 ! -property_value: IAO:0000589 "eighth anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039839 ! eighth anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10651 ! -property_value: IAO:0000589 "ninth anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039840 ! ninth anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10652 ! -property_value: IAO:0000589 "first anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039841 ! first anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10653 ! -property_value: IAO:0000589 "second anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039842 ! second anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10654 ! -property_value: IAO:0000589 "third anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039843 ! third anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10655 ! -property_value: IAO:0000589 "fourth anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039844 ! fourth anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10656 ! -property_value: IAO:0000589 "fifth anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039845 ! fifth anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10657 ! -property_value: IAO:0000589 "sixth anterior intercostal artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039846 ! sixth anterior intercostal artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10663 ! -property_value: IAO:0000589 "suprascapular artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039847 ! suprascapular artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:10787 ! -property_value: IAO:0000589 "anterior external vertebral venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0039848 ! anterior external vertebral venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:12852 ! -property_value: IAO:0000589 "posterior external vertebral venous plexus (post-embryonic human)" xsd:string -intersection_of: UBERON:0039849 ! posterior external vertebral venous plexus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13279 ! -property_value: IAO:0000589 "left anterior segmental artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039850 ! left anterior segmental artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:13281 ! -property_value: IAO:0000589 "apicoposterior segmental artery (post-embryonic human)" xsd:string -intersection_of: UBERON:0039851 ! apicoposterior segmental artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14342 ! -property_value: IAO:0000589 "right ovarian vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039856 ! right ovarian vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14347 ! -property_value: IAO:0000589 "left ovarian vein (post-embryonic human)" xsd:string -intersection_of: UBERON:0039857 ! left ovarian vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:277716 ! -property_value: IAO:0000589 "labial commissure (post-embryonic human)" xsd:string -intersection_of: UBERON:1000011 ! labial commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:46484 ! -property_value: IAO:0000589 "top of head (post-embryonic human)" xsd:string -intersection_of: UBERON:1000019 ! top of head -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24758 ! -property_value: IAO:0000589 "skin of face (post-embryonic human)" xsd:string -intersection_of: UBERON:1000021 ! skin of face -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15845 ! -property_value: IAO:0000589 "spleen pulp (post-embryonic human)" xsd:string -intersection_of: UBERON:1000023 ! spleen pulp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:16029 ! -property_value: IAO:0000589 "parenchyma of spleen (post-embryonic human)" xsd:string -intersection_of: UBERON:1000024 ! parenchyma of spleen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63195 ! -property_value: IAO:0000589 "continuous capillary (post-embryonic human)" xsd:string -intersection_of: UBERON:2005259 ! continuous capillary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:63196 ! -property_value: IAO:0000589 "fenestrated capillary (post-embryonic human)" xsd:string -intersection_of: UBERON:2005260 ! fenestrated capillary -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:23356 ! -property_value: IAO:0000589 "neck of humerus (post-embryonic human)" xsd:string -intersection_of: UBERON:4200172 ! neck of humerus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24757 ! -property_value: IAO:0000589 "skin of scalp (post-embryonic human)" xsd:string -intersection_of: UBERON:8300000 ! skin of scalp -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7185 ! -property_value: IAO:0000589 "right forelimb (post-embryonic human)" xsd:string -intersection_of: UBERON:8300001 ! right forelimb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7186 ! -property_value: IAO:0000589 "left forelimb (post-embryonic human)" xsd:string -intersection_of: UBERON:8300002 ! left forelimb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7187 ! -property_value: IAO:0000589 "right hindlimb (post-embryonic human)" xsd:string -intersection_of: UBERON:8300003 ! right hindlimb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:7188 ! -property_value: IAO:0000589 "left hindlimb (post-embryonic human)" xsd:string -intersection_of: UBERON:8300004 ! left hindlimb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15957 ! -property_value: IAO:0000589 "duodeno-jejunal junction (post-embryonic human)" xsd:string -intersection_of: UBERON:8410000 ! duodeno-jejunal junction -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:18308 ! -property_value: IAO:0000589 "fimbria of uterine tube (post-embryonic human)" xsd:string -intersection_of: UBERON:8410010 ! fimbria of uterine tube -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15394 ! -property_value: IAO:0000589 "left colic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:8410017 ! left colic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:15407 ! -property_value: IAO:0000589 "right colic vein (post-embryonic human)" xsd:string -intersection_of: UBERON:8410018 ! right colic vein -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14826 ! -property_value: IAO:0000589 "left colic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:8410022 ! left colic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:14811 ! -property_value: IAO:0000589 "right colic artery (post-embryonic human)" xsd:string -intersection_of: UBERON:8410023 ! right colic artery -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:71312 ! -property_value: IAO:0000589 "levator costarum (post-embryonic human)" xsd:string -intersection_of: UBERON:8410070 ! levator costarum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:5832 ! -property_value: IAO:0000589 "right lymphatic duct (post-embryonic human)" xsd:string -intersection_of: UBERON:8410078 ! right lymphatic duct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:68614 ! -property_value: IAO:0000589 "Brodmann (1909) area 17 (post-embryonic human)" xsd:string -intersection_of: UBERON:8440010 ! Brodmann (1909) area 17 -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:323407 ! -property_value: IAO:0000589 "subiliac lymph node (post-embryonic human)" xsd:string -intersection_of: UBERON:8480045 ! subiliac lymph node -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24984 ! -property_value: IAO:0000589 "calf (post-embryonic human)" xsd:string -intersection_of: UBERON:8480048 ! calf -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:24985 ! -property_value: IAO:0000589 "front hindlimb zeugopod (post-embryonic human)" xsd:string -intersection_of: UBERON:8480049 ! front hindlimb zeugopod -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:37840 ! -property_value: IAO:0000589 "skin of calf (post-embryonic human)" xsd:string -intersection_of: UBERON:8480050 ! skin of calf -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: FMA:ENTITY -name: FMA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-fma.owl b/src/ontology/bridge/uberon-bridge-to-fma.owl index 89f9aa1458..57356232ef 100644 --- a/src/ontology/bridge/uberon-bridge-to-fma.owl +++ b/src/ontology/bridge/uberon-bridge-to-fma.owl @@ -7,21 +7,14 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Onard Mejino - Terry Hayamizu - Uberon editors - Taxonomic equivalence axioms between the FMA and Uberon - Uberon bridge to fma - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Onard Mejino + Terry Hayamizu + Uberon editors + Taxonomic equivalence axioms between the FMA and Uberon. + Uberon bridge to fma @@ -37,18 +30,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -57,215 +38,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -282,42 +73,19 @@ - - - BFO:0000050 - part_of - part_of - + - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -346,8 +114,7 @@ - external pudendal vein (post-embryonic human) - FMA:0329308 + external pudendal vein (post-embryonic human) @@ -366,8 +133,7 @@ - thoracic vertebra 9 (post-embryonic human) - FMA:10014 + thoracic vertebra 9 (post-embryonic human) @@ -386,8 +152,7 @@ - thoracic vertebra 10 (post-embryonic human) - FMA:10037 + thoracic vertebra 10 (post-embryonic human) @@ -406,8 +171,7 @@ - thoracic vertebra 11 (post-embryonic human) - FMA:10059 + thoracic vertebra 11 (post-embryonic human) @@ -426,8 +190,7 @@ - thoracic vertebra 12 (post-embryonic human) - FMA:10081 + thoracic vertebra 12 (post-embryonic human) @@ -446,8 +209,7 @@ - costovertebral joint (post-embryonic human) - FMA:10382 + costovertebral joint (post-embryonic human) @@ -466,8 +228,7 @@ - pancreatic duct (post-embryonic human) - FMA:10419 + pancreatic duct (post-embryonic human) @@ -486,8 +247,7 @@ - parotid main excretory duct (post-embryonic human) - FMA:10420 + parotid main excretory duct (post-embryonic human) @@ -506,8 +266,7 @@ - interchondral joint (post-embryonic human) - FMA:10425 + interchondral joint (post-embryonic human) @@ -526,8 +285,7 @@ - body wall (post-embryonic human) - FMA:10427 + body wall (post-embryonic human) @@ -546,8 +304,7 @@ - thoracic wall (post-embryonic human) - FMA:10428 + thoracic wall (post-embryonic human) @@ -566,8 +323,7 @@ - abdominal wall (post-embryonic human) - FMA:10429 + abdominal wall (post-embryonic human) @@ -586,8 +342,7 @@ - intervertebral disk (post-embryonic human) - FMA:10446 + intervertebral disk (post-embryonic human) @@ -606,8 +361,7 @@ - vertebral arch joint (post-embryonic human) - FMA:10447 + vertebral arch joint (post-embryonic human) @@ -626,8 +380,7 @@ - intervertebral disk of thoracic vertebra (post-embryonic human) - FMA:10455 + intervertebral disk of thoracic vertebra (post-embryonic human) @@ -646,8 +399,7 @@ - skin of anterior chest (post-embryonic human) - FMA:10461 + skin of anterior chest (post-embryonic human) @@ -666,8 +418,7 @@ - skin of back (post-embryonic human) - FMA:10462 + skin of back (post-embryonic human) @@ -686,8 +437,7 @@ - inferior tibiofibular joint (post-embryonic human) - FMA:10465 + inferior tibiofibular joint (post-embryonic human) @@ -706,8 +456,7 @@ - head of pancreas (post-embryonic human) - FMA:10468 + head of pancreas (post-embryonic human) @@ -726,8 +475,7 @@ - zone of bone organ (post-embryonic human) - FMA:10483 + zone of bone organ (post-embryonic human) @@ -746,8 +494,7 @@ - external carotid artery (post-embryonic human) - FMA:10635 + external carotid artery (post-embryonic human) @@ -766,8 +513,7 @@ - costo-cervical trunk (post-embryonic human) - FMA:10636 + costo-cervical trunk (post-embryonic human) @@ -786,8 +532,7 @@ - anterior intercostal artery (post-embryonic human) - FMA:10641 + anterior intercostal artery (post-embryonic human) @@ -806,8 +551,7 @@ - musculo-phrenic artery (post-embryonic human) - FMA:10645 + musculo-phrenic artery (post-embryonic human) @@ -826,8 +570,7 @@ - superior epigastric artery (post-embryonic human) - FMA:10646 + superior epigastric artery (post-embryonic human) @@ -846,8 +589,7 @@ - thymic artery (post-embryonic human) - FMA:10647 + thymic artery (post-embryonic human) @@ -866,8 +608,7 @@ - mammary branch of internal thoracic artery (post-embryonic human) - FMA:10648 + mammary branch of internal thoracic artery (post-embryonic human) @@ -886,8 +627,7 @@ - seventh anterior intercostal artery (post-embryonic human) - FMA:10649 + seventh anterior intercostal artery (post-embryonic human) @@ -906,8 +646,7 @@ - eighth anterior intercostal artery (post-embryonic human) - FMA:10650 + eighth anterior intercostal artery (post-embryonic human) @@ -926,8 +665,7 @@ - ninth anterior intercostal artery (post-embryonic human) - FMA:10651 + ninth anterior intercostal artery (post-embryonic human) @@ -946,8 +684,7 @@ - first anterior intercostal artery (post-embryonic human) - FMA:10652 + first anterior intercostal artery (post-embryonic human) @@ -966,8 +703,7 @@ - second anterior intercostal artery (post-embryonic human) - FMA:10653 + second anterior intercostal artery (post-embryonic human) @@ -986,8 +722,7 @@ - third anterior intercostal artery (post-embryonic human) - FMA:10654 + third anterior intercostal artery (post-embryonic human) @@ -1006,8 +741,7 @@ - fourth anterior intercostal artery (post-embryonic human) - FMA:10655 + fourth anterior intercostal artery (post-embryonic human) @@ -1026,8 +760,7 @@ - fifth anterior intercostal artery (post-embryonic human) - FMA:10656 + fifth anterior intercostal artery (post-embryonic human) @@ -1046,8 +779,7 @@ - sixth anterior intercostal artery (post-embryonic human) - FMA:10657 + sixth anterior intercostal artery (post-embryonic human) @@ -1066,8 +798,7 @@ - deep cervical artery (post-embryonic human) - FMA:10659 + deep cervical artery (post-embryonic human) @@ -1086,8 +817,7 @@ - inferior thyroid artery (post-embryonic human) - FMA:10662 + inferior thyroid artery (post-embryonic human) @@ -1106,8 +836,7 @@ - suprascapular artery (post-embryonic human) - FMA:10663 + suprascapular artery (post-embryonic human) @@ -1126,8 +855,7 @@ - transverse cervical artery (post-embryonic human) - FMA:10664 + transverse cervical artery (post-embryonic human) @@ -1146,8 +874,7 @@ - superficial cervical artery (post-embryonic human) - FMA:10665 + superficial cervical artery (post-embryonic human) @@ -1166,8 +893,7 @@ - anterior external vertebral venous plexus (post-embryonic human) - FMA:10787 + anterior external vertebral venous plexus (post-embryonic human) @@ -1186,8 +912,7 @@ - posterior vena cava (post-embryonic human) - FMA:10951 + posterior vena cava (post-embryonic human) @@ -1206,8 +931,7 @@ - ileocecal junction (post-embryonic human) - FMA:11338 + ileocecal junction (post-embryonic human) @@ -1226,8 +950,7 @@ - pericardial cavity (post-embryonic human) - FMA:11350 + pericardial cavity (post-embryonic human) @@ -1246,8 +969,7 @@ - costodiaphragmatic recess (post-embryonic human) - FMA:11355 + costodiaphragmatic recess (post-embryonic human) @@ -1266,8 +988,7 @@ - synovial cavity of joint (post-embryonic human) - FMA:11356 + synovial cavity of joint (post-embryonic human) @@ -1286,8 +1007,7 @@ - cavity of right atrium (post-embryonic human) - FMA:11359 + cavity of right atrium (post-embryonic human) @@ -1306,30 +1026,7 @@ - bony vertebral centrum (post-embryonic human) - FMA:11945 - - - - - - - - - - - - - - - - - - - - arch of centrum of vertebra (post-embryonic human) - neural arch (post-embryonic human) - FMA:11946 + bony vertebral centrum (post-embryonic human) @@ -1348,8 +1045,7 @@ - neural spine (post-embryonic human) - FMA:11948 + neural spine (post-embryonic human) @@ -1368,8 +1064,7 @@ - transverse process of vertebra (post-embryonic human) - FMA:11949 + transverse process of vertebra (post-embryonic human) @@ -1388,8 +1083,7 @@ - pedicle of vertebra (post-embryonic human) - FMA:11950 + pedicle of vertebra (post-embryonic human) @@ -1408,8 +1102,7 @@ - vertebra lamina (post-embryonic human) - FMA:11951 + vertebra lamina (post-embryonic human) @@ -1428,8 +1121,7 @@ - zygapophysis (post-embryonic human) - FMA:11952 + zygapophysis (post-embryonic human) @@ -1448,8 +1140,7 @@ - prezygapophysis (post-embryonic human) - FMA:11953 + prezygapophysis (post-embryonic human) @@ -1468,8 +1159,7 @@ - postzygapophysis (post-embryonic human) - FMA:11954 + postzygapophysis (post-embryonic human) @@ -1488,8 +1178,7 @@ - endocardium of ventricle (post-embryonic human) - FMA:12148 + endocardium of ventricle (post-embryonic human) @@ -1508,8 +1197,7 @@ - epicardium of ventricle (post-embryonic human) - FMA:12150 + epicardium of ventricle (post-embryonic human) @@ -1528,8 +1216,7 @@ - myocardium of ventricle (post-embryonic human) - FMA:12151 + myocardium of ventricle (post-embryonic human) @@ -1548,8 +1235,7 @@ - papillary muscle of heart (post-embryonic human) - FMA:12154 + papillary muscle of heart (post-embryonic human) @@ -1568,8 +1254,7 @@ - skin of head (post-embryonic human) - FMA:12166 + skin of head (post-embryonic human) @@ -1588,8 +1273,7 @@ - skin of trunk (post-embryonic human) - FMA:12167 + skin of trunk (post-embryonic human) @@ -1608,8 +1292,7 @@ - respiratory tube (post-embryonic human) - FMA:12224 + respiratory tube (post-embryonic human) @@ -1628,8 +1311,7 @@ - chorda tendineae (post-embryonic human) - FMA:12225 + chorda tendineae (post-embryonic human) @@ -1648,8 +1330,7 @@ - pectinate muscle (post-embryonic human) - FMA:12226 + pectinate muscle (post-embryonic human) @@ -1668,8 +1349,7 @@ - epineurium (post-embryonic human) - FMA:12234 + epineurium (post-embryonic human) @@ -1688,8 +1368,7 @@ - nerve fasciculus (post-embryonic human) - FMA:12235 + nerve fasciculus (post-embryonic human) @@ -1708,8 +1387,7 @@ - organ cavity (post-embryonic human) - FMA:12237 + organ cavity (post-embryonic human) @@ -1728,8 +1406,7 @@ - serous cavity (post-embryonic human) - FMA:12241 + serous cavity (post-embryonic human) @@ -1748,8 +1425,7 @@ - intercostal space (post-embryonic human) - FMA:12243 + intercostal space (post-embryonic human) @@ -1768,8 +1444,7 @@ - articular cartilage of joint (post-embryonic human) - FMA:12264 + articular cartilage of joint (post-embryonic human) @@ -1788,8 +1463,7 @@ - abdominal cavity (post-embryonic human) - FMA:12266 + abdominal cavity (post-embryonic human) @@ -1808,8 +1482,7 @@ - abdominopelvic cavity (post-embryonic human) - FMA:12267 + abdominopelvic cavity (post-embryonic human) @@ -1828,8 +1501,7 @@ - pleural fluid (post-embryonic human) - FMA:12273 + pleural fluid (post-embryonic human) @@ -1848,8 +1520,7 @@ - urine (post-embryonic human) - FMA:12274 + urine (post-embryonic human) @@ -1868,8 +1539,7 @@ - sweat (post-embryonic human) - FMA:12275 + sweat (post-embryonic human) @@ -1888,8 +1558,7 @@ - transudate (post-embryonic human) - FMA:12276 + transudate (post-embryonic human) @@ -1908,8 +1577,7 @@ - synovial fluid (post-embryonic human) - FMA:12277 + synovial fluid (post-embryonic human) @@ -1928,8 +1596,7 @@ - eyeball of camera-type eye (post-embryonic human) - FMA:12513 + eyeball of camera-type eye (post-embryonic human) @@ -1948,8 +1615,7 @@ - right eye (post-embryonic human) - FMA:12514 + right eye (post-embryonic human) @@ -1968,8 +1634,7 @@ - left eye (post-embryonic human) - FMA:12515 + left eye (post-embryonic human) @@ -1988,8 +1653,7 @@ - calcareous tooth (post-embryonic human) - FMA:12516 + calcareous tooth (post-embryonic human) @@ -2008,8 +1672,7 @@ - vertebral bone 1 (post-embryonic human) - FMA:12519 + vertebral bone 1 (post-embryonic human) @@ -2028,8 +1691,7 @@ - vertebral bone 2 (post-embryonic human) - FMA:12520 + vertebral bone 2 (post-embryonic human) @@ -2048,8 +1710,7 @@ - mammalian cervical vertebra 3 (post-embryonic human) - FMA:12521 + mammalian cervical vertebra 3 (post-embryonic human) @@ -2068,8 +1729,7 @@ - mammalian cervical vertebra 4 (post-embryonic human) - FMA:12522 + mammalian cervical vertebra 4 (post-embryonic human) @@ -2088,8 +1748,7 @@ - mammalian cervical vertebra 5 (post-embryonic human) - FMA:12523 + mammalian cervical vertebra 5 (post-embryonic human) @@ -2108,8 +1767,7 @@ - mammalian cervical vertebra 6 (post-embryonic human) - FMA:12524 + mammalian cervical vertebra 6 (post-embryonic human) @@ -2128,8 +1786,7 @@ - mammalian cervical vertebra 7 (post-embryonic human) - FMA:12525 + mammalian cervical vertebra 7 (post-embryonic human) @@ -2148,8 +1805,7 @@ - sacral vertebra (post-embryonic human) - FMA:12526 + sacral vertebra (post-embryonic human) @@ -2168,8 +1824,7 @@ - caudal vertebra (post-embryonic human) - FMA:12527 + caudal vertebra (post-embryonic human) @@ -2188,8 +1843,7 @@ - wall of esophagus (post-embryonic human) - FMA:12611 + wall of esophagus (post-embryonic human) @@ -2208,8 +1862,7 @@ - superficial lymph node (post-embryonic human) - FMA:12767 + superficial lymph node (post-embryonic human) @@ -2228,8 +1881,7 @@ - deep lymph node (post-embryonic human) - FMA:12768 + deep lymph node (post-embryonic human) @@ -2248,8 +1900,7 @@ - superficial lateral cervical lymph node (post-embryonic human) - FMA:12769 + superficial lateral cervical lymph node (post-embryonic human) @@ -2268,8 +1919,7 @@ - deep lateral cervical lymph node (post-embryonic human) - FMA:12770 + deep lateral cervical lymph node (post-embryonic human) @@ -2288,8 +1938,7 @@ - superficial axillary lymph node (post-embryonic human) - FMA:12771 + superficial axillary lymph node (post-embryonic human) @@ -2308,8 +1957,7 @@ - thoracic lymph node (post-embryonic human) - FMA:12772 + thoracic lymph node (post-embryonic human) @@ -2328,8 +1976,7 @@ - diaphragmatic lymph node (post-embryonic human) - FMA:12773 + diaphragmatic lymph node (post-embryonic human) @@ -2348,8 +1995,7 @@ - mediastinal lymph node (post-embryonic human) - FMA:12774 + mediastinal lymph node (post-embryonic human) @@ -2368,8 +2014,7 @@ - anterior mediastinal lymph node (post-embryonic human) - FMA:12775 + anterior mediastinal lymph node (post-embryonic human) @@ -2388,8 +2033,7 @@ - superficial anterior cervical lymph node (post-embryonic human) - FMA:12776 + superficial anterior cervical lymph node (post-embryonic human) @@ -2408,8 +2052,7 @@ - deep anterior cervical lymph node (post-embryonic human) - FMA:12779 + deep anterior cervical lymph node (post-embryonic human) @@ -2428,8 +2071,7 @@ - supramammary lymph node (post-embryonic human) - FMA:12785 + supramammary lymph node (post-embryonic human) @@ -2448,8 +2090,7 @@ - abdominal lymph node (post-embryonic human) - FMA:12787 + abdominal lymph node (post-embryonic human) @@ -2468,8 +2109,7 @@ - celiac lymph node (post-embryonic human) - FMA:12792 + celiac lymph node (post-embryonic human) @@ -2488,8 +2128,7 @@ - mesenteric lymph node (post-embryonic human) - FMA:12795 + mesenteric lymph node (post-embryonic human) @@ -2508,8 +2147,7 @@ - gastric lymph node (post-embryonic human) - FMA:12796 + gastric lymph node (post-embryonic human) @@ -2528,8 +2166,7 @@ - left gastric lymph node (post-embryonic human) - FMA:12797 + left gastric lymph node (post-embryonic human) @@ -2548,8 +2185,7 @@ - hepatic lymph node (post-embryonic human) - FMA:12798 + hepatic lymph node (post-embryonic human) @@ -2568,8 +2204,7 @@ - pancreaticosplenic lymph node (post-embryonic human) - FMA:12799 + pancreaticosplenic lymph node (post-embryonic human) @@ -2588,8 +2223,7 @@ - pelvic lymph node (post-embryonic human) - FMA:12800 + pelvic lymph node (post-embryonic human) @@ -2608,8 +2242,7 @@ - pyloric lymph node (post-embryonic human) - FMA:12802 + pyloric lymph node (post-embryonic human) @@ -2628,8 +2261,7 @@ - paracardial gastric lymph node (post-embryonic human) - FMA:12803 + paracardial gastric lymph node (post-embryonic human) @@ -2648,8 +2280,7 @@ - cystic lymph node (post-embryonic human) - FMA:12804 + cystic lymph node (post-embryonic human) @@ -2668,8 +2299,7 @@ - lymph node of epiploic foramen (post-embryonic human) - FMA:12805 + lymph node of epiploic foramen (post-embryonic human) @@ -2688,8 +2318,7 @@ - common iliac lymph node (post-embryonic human) - FMA:12806 + common iliac lymph node (post-embryonic human) @@ -2708,8 +2337,7 @@ - medial diaphragmatic lymph node (post-embryonic human) - FMA:12807 + medial diaphragmatic lymph node (post-embryonic human) @@ -2728,8 +2356,7 @@ - incisor tooth (post-embryonic human) - FMA:12823 + incisor tooth (post-embryonic human) @@ -2748,8 +2375,7 @@ - precordial region (post-embryonic human) - FMA:12824 + precordial region (post-embryonic human) @@ -2768,8 +2394,7 @@ - anterior intercostal vein (post-embryonic human) - FMA:12831 + anterior intercostal vein (post-embryonic human) @@ -2788,8 +2413,7 @@ - subcostal vein (post-embryonic human) - FMA:12845 + subcostal vein (post-embryonic human) @@ -2808,8 +2432,7 @@ - cardiac vein (post-embryonic human) - FMA:12846 + cardiac vein (post-embryonic human) @@ -2828,8 +2451,7 @@ - external vertebral venous plexus (post-embryonic human) - FMA:12851 + external vertebral venous plexus (post-embryonic human) @@ -2848,8 +2470,7 @@ - posterior external vertebral venous plexus (post-embryonic human) - FMA:12852 + posterior external vertebral venous plexus (post-embryonic human) @@ -2868,8 +2489,7 @@ - lumbar vertebra 1 (post-embryonic human) - FMA:13072 + lumbar vertebra 1 (post-embryonic human) @@ -2888,8 +2508,7 @@ - lumbar vertebra 2 (post-embryonic human) - FMA:13073 + lumbar vertebra 2 (post-embryonic human) @@ -2908,8 +2527,7 @@ - lumbar vertebra 3 (post-embryonic human) - FMA:13074 + lumbar vertebra 3 (post-embryonic human) @@ -2928,8 +2546,7 @@ - lumbar vertebra 4 (post-embryonic human) - FMA:13075 + lumbar vertebra 4 (post-embryonic human) @@ -2948,8 +2565,7 @@ - lumbar vertebra 5 (post-embryonic human) - FMA:13076 + lumbar vertebra 5 (post-embryonic human) @@ -2968,8 +2584,7 @@ - sacral vertebra 1 (post-embryonic human) - FMA:13077 + sacral vertebra 1 (post-embryonic human) @@ -2988,8 +2603,7 @@ - sacral vertebra 2 (post-embryonic human) - FMA:13078 + sacral vertebra 2 (post-embryonic human) @@ -3008,8 +2622,7 @@ - sacral vertebra 3 (post-embryonic human) - FMA:13079 + sacral vertebra 3 (post-embryonic human) @@ -3028,8 +2641,7 @@ - sacral vertebra 4 (post-embryonic human) - FMA:13080 + sacral vertebra 4 (post-embryonic human) @@ -3048,8 +2660,7 @@ - descending trunk of arch of aorta (post-embryonic human) - FMA:13082 + descending trunk of arch of aorta (post-embryonic human) @@ -3068,8 +2679,7 @@ - section of aorta (post-embryonic human) - FMA:13087 + section of aorta (post-embryonic human) @@ -3088,8 +2698,7 @@ - pectoralis minor (post-embryonic human) - FMA:13109 + pectoralis minor (post-embryonic human) @@ -3108,8 +2717,7 @@ - external jugular vein (post-embryonic human) - FMA:13110 + external jugular vein (post-embryonic human) @@ -3128,8 +2736,7 @@ - mucosa of main bronchus (post-embryonic human) - FMA:13115 + mucosa of main bronchus (post-embryonic human) @@ -3148,8 +2755,7 @@ - lumen of primary bronchus (post-embryonic human) - FMA:13116 + lumen of primary bronchus (post-embryonic human) @@ -3168,8 +2774,7 @@ - cartilage of main bronchus (post-embryonic human) - FMA:13117 + cartilage of main bronchus (post-embryonic human) @@ -3188,8 +2793,7 @@ - submucosa of main bronchus (post-embryonic human) - FMA:13118 + submucosa of main bronchus (post-embryonic human) @@ -3208,8 +2812,7 @@ - mucous gland of lung (post-embryonic human) - FMA:13119 + mucous gland of lung (post-embryonic human) @@ -3228,8 +2831,7 @@ - mucosa of right main bronchus (post-embryonic human) - FMA:13137 + mucosa of right main bronchus (post-embryonic human) @@ -3248,8 +2850,7 @@ - mucosa of left main bronchus (post-embryonic human) - FMA:13138 + mucosa of left main bronchus (post-embryonic human) @@ -3268,8 +2869,7 @@ - submucosa of right main bronchus (post-embryonic human) - FMA:13139 + submucosa of right main bronchus (post-embryonic human) @@ -3288,8 +2888,7 @@ - submucosa of left main bronchus (post-embryonic human) - FMA:13140 + submucosa of left main bronchus (post-embryonic human) @@ -3308,8 +2907,7 @@ - pseudostratified ciliated columnar epithelium (post-embryonic human) - FMA:13146 + pseudostratified ciliated columnar epithelium (post-embryonic human) @@ -3328,8 +2926,7 @@ - inflow tract of ventricle (post-embryonic human) - FMA:13224 + inflow tract of ventricle (post-embryonic human) @@ -3348,8 +2945,7 @@ - outflow tract of ventricle (post-embryonic human) - FMA:13225 + outflow tract of ventricle (post-embryonic human) @@ -3368,8 +2964,7 @@ - endocardium of auricle (post-embryonic human) - FMA:13234 + endocardium of auricle (post-embryonic human) @@ -3388,8 +2983,7 @@ - endocardium of right auricle (post-embryonic human) - FMA:13235 + endocardium of right auricle (post-embryonic human) @@ -3408,8 +3002,7 @@ - endocardium of left auricle (post-embryonic human) - FMA:13236 + endocardium of left auricle (post-embryonic human) @@ -3428,8 +3021,7 @@ - vena cava sinus (post-embryonic human) - FMA:13246 + vena cava sinus (post-embryonic human) @@ -3448,8 +3040,7 @@ - left anterior segmental artery (post-embryonic human) - FMA:13279 + left anterior segmental artery (post-embryonic human) @@ -3468,8 +3059,7 @@ - apicoposterior segmental artery (post-embryonic human) - FMA:13281 + apicoposterior segmental artery (post-embryonic human) @@ -3488,8 +3078,7 @@ - diaphragm (post-embryonic human) - FMA:13295 + diaphragm (post-embryonic human) @@ -3508,8 +3097,7 @@ - humerus (post-embryonic human) - FMA:13303 + humerus (post-embryonic human) @@ -3528,8 +3116,7 @@ - proximal head of humerus (post-embryonic human) - FMA:13304 + proximal head of humerus (post-embryonic human) @@ -3548,8 +3135,7 @@ - humerus diaphysis (post-embryonic human) - FMA:13305 + humerus diaphysis (post-embryonic human) @@ -3568,8 +3154,7 @@ - inferior angle of scapula (post-embryonic human) - FMA:13315 + inferior angle of scapula (post-embryonic human) @@ -3588,8 +3173,7 @@ - anterior jugular vein (post-embryonic human) - FMA:13318 + anterior jugular vein (post-embryonic human) @@ -3608,8 +3192,7 @@ - clavicle bone (post-embryonic human) - FMA:13321 + clavicle bone (post-embryonic human) @@ -3628,8 +3211,7 @@ - right clavicle (post-embryonic human) - FMA:13322 + right clavicle (post-embryonic human) @@ -3648,8 +3230,7 @@ - left clavicle (post-embryonic human) - FMA:13323 + left clavicle (post-embryonic human) @@ -3668,8 +3249,7 @@ - cephalic vein (post-embryonic human) - FMA:13324 + cephalic vein (post-embryonic human) @@ -3688,8 +3268,7 @@ - axillary vein (post-embryonic human) - FMA:13329 + axillary vein (post-embryonic human) @@ -3708,8 +3287,7 @@ - dome of diaphragm (post-embryonic human) - FMA:13332 + dome of diaphragm (post-embryonic human) @@ -3728,8 +3306,7 @@ - right dome of diaphragm (post-embryonic human) - FMA:13333 + right dome of diaphragm (post-embryonic human) @@ -3748,8 +3325,7 @@ - left dome of diaphragm (post-embryonic human) - FMA:13334 + left dome of diaphragm (post-embryonic human) @@ -3768,8 +3344,7 @@ - abdominal external oblique muscle (post-embryonic human) - FMA:13335 + abdominal external oblique muscle (post-embryonic human) @@ -3788,8 +3363,7 @@ - infrahyoid muscle (post-embryonic human) - FMA:13338 + infrahyoid muscle (post-embryonic human) @@ -3808,8 +3382,7 @@ - sternohyoid muscle (post-embryonic human) - FMA:13341 + sternohyoid muscle (post-embryonic human) @@ -3828,8 +3401,7 @@ - omohyoid muscle (post-embryonic human) - FMA:13342 + omohyoid muscle (post-embryonic human) @@ -3848,8 +3420,7 @@ - sternothyroid muscle (post-embryonic human) - FMA:13343 + sternothyroid muscle (post-embryonic human) @@ -3868,8 +3439,7 @@ - thyrohyoid muscle (post-embryonic human) - FMA:13344 + thyrohyoid muscle (post-embryonic human) @@ -3888,8 +3458,7 @@ - intercostal muscle (post-embryonic human) - FMA:13354 + intercostal muscle (post-embryonic human) @@ -3908,8 +3477,7 @@ - latissimus dorsi muscle (post-embryonic human) - FMA:13357 + latissimus dorsi muscle (post-embryonic human) @@ -3928,8 +3496,7 @@ - lobe of liver (post-embryonic human) - FMA:13361 + lobe of liver (post-embryonic human) @@ -3948,8 +3515,7 @@ - right lobe of liver (post-embryonic human) - FMA:13362 + right lobe of liver (post-embryonic human) @@ -3968,8 +3534,7 @@ - left lobe of liver (post-embryonic human) - FMA:13363 + left lobe of liver (post-embryonic human) @@ -3988,8 +3553,7 @@ - quadrate lobe of liver (post-embryonic human) - FMA:13364 + quadrate lobe of liver (post-embryonic human) @@ -4008,8 +3572,7 @@ - caudate lobe of liver (post-embryonic human) - FMA:13365 + caudate lobe of liver (post-embryonic human) @@ -4028,8 +3591,7 @@ - lobe of thyroid gland (post-embryonic human) - FMA:13367 + lobe of thyroid gland (post-embryonic human) @@ -4048,8 +3610,7 @@ - right lobe of thyroid gland (post-embryonic human) - FMA:13368 + right lobe of thyroid gland (post-embryonic human) @@ -4068,8 +3629,7 @@ - left lobe of thyroid gland (post-embryonic human) - FMA:13369 + left lobe of thyroid gland (post-embryonic human) @@ -4088,8 +3648,7 @@ - longus colli muscle (post-embryonic human) - FMA:13370 + longus colli muscle (post-embryonic human) @@ -4108,8 +3667,7 @@ - scalenus anterior (post-embryonic human) - FMA:13385 + scalenus anterior (post-embryonic human) @@ -4128,8 +3686,7 @@ - scalenus medius (post-embryonic human) - FMA:13386 + scalenus medius (post-embryonic human) @@ -4148,8 +3705,7 @@ - scalenus posterior (post-embryonic human) - FMA:13387 + scalenus posterior (post-embryonic human) @@ -4168,8 +3724,7 @@ - scapula (post-embryonic human) - FMA:13394 + scapula (post-embryonic human) @@ -4188,8 +3743,7 @@ - serratus ventralis (post-embryonic human) - FMA:13397 + serratus ventralis (post-embryonic human) @@ -4208,8 +3762,7 @@ - serratus dorsalis muscle (post-embryonic human) - FMA:13400 + serratus dorsalis muscle (post-embryonic human) @@ -4228,8 +3781,7 @@ - serratus dorsalis superior muscle (post-embryonic human) - FMA:13401 + serratus dorsalis superior muscle (post-embryonic human) @@ -4248,8 +3800,7 @@ - serratus dorsalis inferior muscle (post-embryonic human) - FMA:13402 + serratus dorsalis inferior muscle (post-embryonic human) @@ -4268,8 +3819,7 @@ - sternocleidomastoid (post-embryonic human) - FMA:13407 + sternocleidomastoid (post-embryonic human) @@ -4288,8 +3838,7 @@ - subclavius (post-embryonic human) - FMA:13410 + subclavius (post-embryonic human) @@ -4308,8 +3857,7 @@ - subscapularis muscle (post-embryonic human) - FMA:13413 + subscapularis muscle (post-embryonic human) @@ -4328,8 +3876,7 @@ - ligamentum arteriosum (post-embryonic human) - FMA:13421 + ligamentum arteriosum (post-embryonic human) @@ -4348,8 +3895,7 @@ - ligamentum flavum (post-embryonic human) - FMA:13423 + ligamentum flavum (post-embryonic human) @@ -4368,8 +3914,7 @@ - nuchal ligament (post-embryonic human) - FMA:13427 + nuchal ligament (post-embryonic human) @@ -4388,8 +3933,7 @@ - scapula spine (post-embryonic human) - FMA:13453 + scapula spine (post-embryonic human) @@ -4408,8 +3952,7 @@ - coracoid process of scapula (post-embryonic human) - FMA:13455 + coracoid process of scapula (post-embryonic human) @@ -4428,8 +3971,7 @@ - vertebral column (post-embryonic human) - FMA:13478 + vertebral column (post-embryonic human) @@ -4448,8 +3990,7 @@ - vertebral foramen (post-embryonic human) - FMA:13479 + vertebral foramen (post-embryonic human) @@ -4468,8 +4009,7 @@ - cervical vertebral foramen (post-embryonic human) - FMA:13480 + cervical vertebral foramen (post-embryonic human) @@ -4488,8 +4028,7 @@ - nucleus pulposus (post-embryonic human) - FMA:13550 + nucleus pulposus (post-embryonic human) @@ -4508,8 +4047,7 @@ - annulus fibrosus disci intervertebralis (post-embryonic human) - FMA:13551 + annulus fibrosus disci intervertebralis (post-embryonic human) @@ -4528,8 +4066,7 @@ - cervical vertebral arch joint (post-embryonic human) - FMA:13668 + cervical vertebral arch joint (post-embryonic human) @@ -4548,8 +4085,7 @@ - heart ventricle wall (post-embryonic human) - FMA:13884 + heart ventricle wall (post-embryonic human) @@ -4568,8 +4104,7 @@ - pituitary gland (post-embryonic human) - FMA:13889 + pituitary gland (post-embryonic human) @@ -4588,8 +4123,7 @@ - parathyroid gland (post-embryonic human) - FMA:13890 + parathyroid gland (post-embryonic human) @@ -4608,8 +4142,7 @@ - abdominal internal oblique muscle (post-embryonic human) - FMA:13891 + abdominal internal oblique muscle (post-embryonic human) @@ -4628,8 +4161,7 @@ - intervertebral disk of lumbar vertebra (post-embryonic human) - FMA:13894 + intervertebral disk of lumbar vertebra (post-embryonic human) @@ -4648,8 +4180,7 @@ - intervertebral disk of cervical vertebra (post-embryonic human) - FMA:13895 + intervertebral disk of cervical vertebra (post-embryonic human) @@ -4668,8 +4199,7 @@ - intervertebral disk of third cervical vertebra (post-embryonic human) - FMA:13896 + intervertebral disk of third cervical vertebra (post-embryonic human) @@ -4688,8 +4218,7 @@ - intervertebral disk of fourth cervical vertebra (post-embryonic human) - FMA:13897 + intervertebral disk of fourth cervical vertebra (post-embryonic human) @@ -4708,8 +4237,7 @@ - intervertebral disk of fifth cervical vertebra (post-embryonic human) - FMA:13898 + intervertebral disk of fifth cervical vertebra (post-embryonic human) @@ -4728,8 +4256,7 @@ - intervertebral disk of sixth cervical vertebra (post-embryonic human) - FMA:13899 + intervertebral disk of sixth cervical vertebra (post-embryonic human) @@ -4748,8 +4275,7 @@ - intervertebral disk of seventh cervical vertebra (post-embryonic human) - FMA:13900 + intervertebral disk of seventh cervical vertebra (post-embryonic human) @@ -4768,8 +4294,7 @@ - fascia lata (post-embryonic human) - FMA:13902 + fascia lata (post-embryonic human) @@ -4788,8 +4313,7 @@ - inflow tract (post-embryonic human) - FMA:14057 + inflow tract (post-embryonic human) @@ -4808,8 +4332,7 @@ - spinal nerve root (post-embryonic human) - FMA:14060 + spinal nerve root (post-embryonic human) @@ -4828,8 +4351,7 @@ - root of thoracic nerve (post-embryonic human) - FMA:14064 + root of thoracic nerve (post-embryonic human) @@ -4848,8 +4370,7 @@ - cardiac muscle tissue (post-embryonic human) - FMA:14068 + cardiac muscle tissue (post-embryonic human) @@ -4868,8 +4389,7 @@ - skeletal muscle tissue (post-embryonic human) - FMA:14069 + skeletal muscle tissue (post-embryonic human) @@ -4888,8 +4408,7 @@ - smooth muscle tissue (post-embryonic human) - FMA:14070 + smooth muscle tissue (post-embryonic human) @@ -4908,8 +4427,7 @@ - hematopoietic tissue (post-embryonic human) - FMA:14073 + hematopoietic tissue (post-embryonic human) @@ -4928,8 +4446,7 @@ - mesothelium (post-embryonic human) - FMA:14074 + mesothelium (post-embryonic human) @@ -4948,8 +4465,7 @@ - transformed artery (post-embryonic human) - FMA:14076 + transformed artery (post-embryonic human) @@ -4968,8 +4484,7 @@ - medial umbilical ligament (post-embryonic human) - FMA:14077 + medial umbilical ligament (post-embryonic human) @@ -4988,8 +4503,7 @@ - transformed vein (post-embryonic human) - FMA:14078 + transformed vein (post-embryonic human) @@ -5008,8 +4522,7 @@ - round ligament of liver (post-embryonic human) - FMA:14079 + round ligament of liver (post-embryonic human) @@ -5028,8 +4541,7 @@ - ligamentum venosum (post-embryonic human) - FMA:14080 + ligamentum venosum (post-embryonic human) @@ -5048,8 +4560,7 @@ - alveolar wall (post-embryonic human) - FMA:14117 + alveolar wall (post-embryonic human) @@ -5068,8 +4579,7 @@ - pulmonary capillary (post-embryonic human) - FMA:14121 + pulmonary capillary (post-embryonic human) @@ -5088,8 +4598,7 @@ - inflow tract of atrium (post-embryonic human) - FMA:14140 + inflow tract of atrium (post-embryonic human) @@ -5108,8 +4617,7 @@ - outflow tract of atrium (post-embryonic human) - FMA:14141 + outflow tract of atrium (post-embryonic human) @@ -5128,8 +4636,7 @@ - remnant of cardiac valve (post-embryonic human) - FMA:14153 + remnant of cardiac valve (post-embryonic human) @@ -5148,8 +4655,7 @@ - artery wall (post-embryonic human) - FMA:14155 + artery wall (post-embryonic human) @@ -5168,8 +4674,7 @@ - aorta wall (post-embryonic human) - FMA:14156 + aorta wall (post-embryonic human) @@ -5188,8 +4693,7 @@ - wall of coronary artery (post-embryonic human) - FMA:14179 + wall of coronary artery (post-embryonic human) @@ -5208,8 +4712,7 @@ - dorsum (post-embryonic human) - FMA:14181 + dorsum (post-embryonic human) @@ -5228,8 +4731,7 @@ - lateral axillary lymph node (post-embryonic human) - FMA:14186 + lateral axillary lymph node (post-embryonic human) @@ -5248,8 +4750,7 @@ - subscapular axillary lymph node (post-embryonic human) - FMA:14187 + subscapular axillary lymph node (post-embryonic human) @@ -5268,8 +4769,7 @@ - pectoral axillary lymph node (post-embryonic human) - FMA:14188 + pectoral axillary lymph node (post-embryonic human) @@ -5288,8 +4788,7 @@ - central axillary lymph node (post-embryonic human) - FMA:14189 + central axillary lymph node (post-embryonic human) @@ -5308,8 +4807,7 @@ - apical axillary lymph node (post-embryonic human) - FMA:14190 + apical axillary lymph node (post-embryonic human) @@ -5328,8 +4826,7 @@ - supraclavicular lymph node (post-embryonic human) - FMA:14192 + supraclavicular lymph node (post-embryonic human) @@ -5348,8 +4845,7 @@ - infraclavicular lymph node (post-embryonic human) - FMA:14193 + infraclavicular lymph node (post-embryonic human) @@ -5368,8 +4864,7 @@ - tunica intima of artery (post-embryonic human) - FMA:14272 + tunica intima of artery (post-embryonic human) @@ -5388,8 +4883,7 @@ - tunica media of artery (post-embryonic human) - FMA:14273 + tunica media of artery (post-embryonic human) @@ -5408,8 +4902,7 @@ - tunica adventitia of artery (post-embryonic human) - FMA:14274 + tunica adventitia of artery (post-embryonic human) @@ -5428,8 +4921,7 @@ - aorta tunica adventitia (post-embryonic human) - FMA:14283 + aorta tunica adventitia (post-embryonic human) @@ -5448,8 +4940,7 @@ - accessory vertebral vein (post-embryonic human) - FMA:14290 + accessory vertebral vein (post-embryonic human) @@ -5468,8 +4959,7 @@ - anterior vertebral vein (post-embryonic human) - FMA:14296 + anterior vertebral vein (post-embryonic human) @@ -5488,8 +4978,7 @@ - posterior external jugular vein (post-embryonic human) - FMA:14318 + posterior external jugular vein (post-embryonic human) @@ -5508,8 +4997,7 @@ - suprascapular vein (post-embryonic human) - FMA:14319 + suprascapular vein (post-embryonic human) @@ -5528,8 +5016,7 @@ - superior thyroid vein (post-embryonic human) - FMA:14323 + superior thyroid vein (post-embryonic human) @@ -5548,8 +5035,7 @@ - superior laryngeal vein (post-embryonic human) - FMA:14324 + superior laryngeal vein (post-embryonic human) @@ -5568,8 +5054,7 @@ - lingual vein (post-embryonic human) - FMA:14326 + lingual vein (post-embryonic human) @@ -5588,8 +5073,7 @@ - splenic vein (post-embryonic human) - FMA:14331 + splenic vein (post-embryonic human) @@ -5608,8 +5092,7 @@ - superior mesenteric vein (post-embryonic human) - FMA:14332 + superior mesenteric vein (post-embryonic human) @@ -5628,8 +5111,7 @@ - common iliac vein (post-embryonic human) - FMA:14333 + common iliac vein (post-embryonic human) @@ -5648,8 +5130,7 @@ - renal vein (post-embryonic human) - FMA:14334 + renal vein (post-embryonic human) @@ -5668,8 +5149,7 @@ - right renal vein (post-embryonic human) - FMA:14335 + right renal vein (post-embryonic human) @@ -5688,8 +5168,7 @@ - left renal vein (post-embryonic human) - FMA:14336 + left renal vein (post-embryonic human) @@ -5708,8 +5187,7 @@ - hepatic vein (post-embryonic human) - FMA:14337 + hepatic vein (post-embryonic human) @@ -5728,8 +5206,7 @@ - right hepatic vein (post-embryonic human) - FMA:14338 + right hepatic vein (post-embryonic human) @@ -5748,8 +5225,7 @@ - left hepatic vein (post-embryonic human) - FMA:14339 + left hepatic vein (post-embryonic human) @@ -5768,8 +5244,7 @@ - middle hepatic vein (post-embryonic human) - FMA:14340 + middle hepatic vein (post-embryonic human) @@ -5788,8 +5263,7 @@ - right testicular vein (post-embryonic human) - FMA:14341 + right testicular vein (post-embryonic human) @@ -5808,8 +5282,7 @@ - right ovarian vein (post-embryonic human) - FMA:14342 + right ovarian vein (post-embryonic human) @@ -5828,8 +5301,7 @@ - right suprarenal vein (post-embryonic human) - FMA:14343 + right suprarenal vein (post-embryonic human) @@ -5848,8 +5320,7 @@ - testicular vein (post-embryonic human) - FMA:14344 + testicular vein (post-embryonic human) @@ -5868,8 +5339,7 @@ - left testicular vein (post-embryonic human) - FMA:14345 + left testicular vein (post-embryonic human) @@ -5888,8 +5358,7 @@ - ovarian vein (post-embryonic human) - FMA:14346 + ovarian vein (post-embryonic human) @@ -5908,8 +5377,7 @@ - left ovarian vein (post-embryonic human) - FMA:14347 + left ovarian vein (post-embryonic human) @@ -5928,8 +5396,7 @@ - suprarenal vein (post-embryonic human) - FMA:14348 + suprarenal vein (post-embryonic human) @@ -5948,8 +5415,7 @@ - left suprarenal vein (post-embryonic human) - FMA:14349 + left suprarenal vein (post-embryonic human) @@ -5968,8 +5434,7 @@ - tunica intima of vein (post-embryonic human) - FMA:14353 + tunica intima of vein (post-embryonic human) @@ -5988,8 +5453,7 @@ - tunica media of vein (post-embryonic human) - FMA:14354 + tunica media of vein (post-embryonic human) @@ -6008,8 +5472,7 @@ - tunica adventitia of vein (post-embryonic human) - FMA:14355 + tunica adventitia of vein (post-embryonic human) @@ -6028,8 +5491,7 @@ - nerve trunk (post-embryonic human) - FMA:14383 + nerve trunk (post-embryonic human) @@ -6048,8 +5510,7 @@ - median nerve (post-embryonic human) - FMA:14385 + median nerve (post-embryonic human) @@ -6068,8 +5529,7 @@ - right recurrent laryngeal nerve (post-embryonic human) - FMA:14468 + right recurrent laryngeal nerve (post-embryonic human) @@ -6088,8 +5548,7 @@ - left recurrent laryngeal nerve (post-embryonic human) - FMA:14469 + left recurrent laryngeal nerve (post-embryonic human) @@ -6108,8 +5567,7 @@ - liver lobule (post-embryonic human) - FMA:14471 + liver lobule (post-embryonic human) @@ -6128,8 +5586,7 @@ - bare area of liver (post-embryonic human) - FMA:14480 + bare area of liver (post-embryonic human) @@ -6148,8 +5605,7 @@ - liver left medial lobe (post-embryonic human) - FMA:14500 + liver left medial lobe (post-embryonic human) @@ -6168,8 +5624,7 @@ - liver left lateral lobe (post-embryonic human) - FMA:14501 + liver left lateral lobe (post-embryonic human) @@ -6188,8 +5643,7 @@ - liver papillary process (post-embryonic human) - FMA:14506 + liver papillary process (post-embryonic human) @@ -6208,8 +5662,7 @@ - body of pancreas (post-embryonic human) - FMA:14518 + body of pancreas (post-embryonic human) @@ -6228,8 +5681,7 @@ - tail of pancreas (post-embryonic human) - FMA:14519 + tail of pancreas (post-embryonic human) @@ -6248,8 +5700,7 @@ - dorsal pancreatic duct (post-embryonic human) - FMA:14534 + dorsal pancreatic duct (post-embryonic human) @@ -6268,8 +5719,7 @@ - fundus of gallbladder (post-embryonic human) - FMA:14536 + fundus of gallbladder (post-embryonic human) @@ -6288,8 +5738,7 @@ - body of gallbladder (post-embryonic human) - FMA:14537 + body of gallbladder (post-embryonic human) @@ -6308,8 +5757,7 @@ - neck of gallbladder (post-embryonic human) - FMA:14538 + neck of gallbladder (post-embryonic human) @@ -6328,8 +5776,7 @@ - cystic duct (post-embryonic human) - FMA:14539 + cystic duct (post-embryonic human) @@ -6348,8 +5795,7 @@ - caecum (post-embryonic human) - FMA:14541 + caecum (post-embryonic human) @@ -6368,8 +5814,7 @@ - vermiform appendix (post-embryonic human) - FMA:14542 + vermiform appendix (post-embryonic human) @@ -6388,8 +5833,7 @@ - colon (post-embryonic human) - FMA:14543 + colon (post-embryonic human) @@ -6408,8 +5852,7 @@ - rectum (post-embryonic human) - FMA:14544 + rectum (post-embryonic human) @@ -6428,8 +5871,7 @@ - ascending colon (post-embryonic human) - FMA:14545 + ascending colon (post-embryonic human) @@ -6448,8 +5890,7 @@ - transverse colon (post-embryonic human) - FMA:14546 + transverse colon (post-embryonic human) @@ -6468,8 +5909,7 @@ - descending colon (post-embryonic human) - FMA:14547 + descending colon (post-embryonic human) @@ -6488,8 +5928,7 @@ - sigmoid colon (post-embryonic human) - FMA:14548 + sigmoid colon (post-embryonic human) @@ -6508,8 +5947,7 @@ - hepatic flexure of colon (post-embryonic human) - FMA:14550 + hepatic flexure of colon (post-embryonic human) @@ -6528,8 +5966,7 @@ - splenic flexure of colon (post-embryonic human) - FMA:14551 + splenic flexure of colon (post-embryonic human) @@ -6548,8 +5985,7 @@ - colic flexure (post-embryonic human) - FMA:14555 + colic flexure (post-embryonic human) @@ -6568,8 +6004,7 @@ - zone of stomach (post-embryonic human) - FMA:14558 + zone of stomach (post-embryonic human) @@ -6588,8 +6023,7 @@ - fundus of stomach (post-embryonic human) - FMA:14559 + fundus of stomach (post-embryonic human) @@ -6608,8 +6042,7 @@ - body of stomach (post-embryonic human) - FMA:14560 + body of stomach (post-embryonic human) @@ -6628,8 +6061,7 @@ - cardia of stomach (post-embryonic human) - FMA:14561 + cardia of stomach (post-embryonic human) @@ -6648,8 +6080,7 @@ - lesser curvature of stomach (post-embryonic human) - FMA:14572 + lesser curvature of stomach (post-embryonic human) @@ -6668,8 +6099,7 @@ - greater curvature of stomach (post-embryonic human) - FMA:14574 + greater curvature of stomach (post-embryonic human) @@ -6688,8 +6118,7 @@ - pyloric antrum (post-embryonic human) - FMA:14579 + pyloric antrum (post-embryonic human) @@ -6708,8 +6137,7 @@ - pyloric canal (post-embryonic human) - FMA:14580 + pyloric canal (post-embryonic human) @@ -6728,8 +6156,7 @@ - pylorus (post-embryonic human) - FMA:14581 + pylorus (post-embryonic human) @@ -6748,8 +6175,7 @@ - wall of stomach (post-embryonic human) - FMA:14582 + wall of stomach (post-embryonic human) @@ -6768,8 +6194,7 @@ - stomach lumen (post-embryonic human) - FMA:14585 + stomach lumen (post-embryonic human) @@ -6788,8 +6213,7 @@ - lumen of intestine (post-embryonic human) - FMA:14586 + lumen of intestine (post-embryonic human) @@ -6808,8 +6232,7 @@ - lumen of duodenum (post-embryonic human) - FMA:14589 + lumen of duodenum (post-embryonic human) @@ -6828,8 +6251,7 @@ - lumen of jejunum (post-embryonic human) - FMA:14590 + lumen of jejunum (post-embryonic human) @@ -6848,8 +6270,7 @@ - rectal lumen (post-embryonic human) - FMA:14598 + rectal lumen (post-embryonic human) @@ -6868,8 +6289,7 @@ - hypogastrium (post-embryonic human) - FMA:14602 + hypogastrium (post-embryonic human) @@ -6888,8 +6308,7 @@ - lateral lumbar region of abdomen (post-embryonic human) - FMA:14603 + lateral lumbar region of abdomen (post-embryonic human) @@ -6908,8 +6327,7 @@ - wall of small intestine (post-embryonic human) - FMA:14615 + wall of small intestine (post-embryonic human) @@ -6928,8 +6346,7 @@ - wall of large intestine (post-embryonic human) - FMA:14619 + wall of large intestine (post-embryonic human) @@ -6948,8 +6365,7 @@ - wall of appendix (post-embryonic human) - FMA:14621 + wall of appendix (post-embryonic human) @@ -6968,8 +6384,7 @@ - anterior abdominal wall (post-embryonic human) - FMA:14627 + anterior abdominal wall (post-embryonic human) @@ -6988,8 +6403,7 @@ - mesentery of small intestine (post-embryonic human) - FMA:14643 + mesentery of small intestine (post-embryonic human) @@ -7008,8 +6422,7 @@ - mesentery of colon (post-embryonic human) - FMA:14645 + mesentery of colon (post-embryonic human) @@ -7028,8 +6441,7 @@ - omentum (post-embryonic human) - FMA:14650 + omentum (post-embryonic human) @@ -7048,8 +6460,7 @@ - mesentery of jejunum (post-embryonic human) - FMA:14651 + mesentery of jejunum (post-embryonic human) @@ -7068,8 +6479,7 @@ - mesentery of ileum (post-embryonic human) - FMA:14652 + mesentery of ileum (post-embryonic human) @@ -7088,8 +6498,7 @@ - portal lobule (post-embryonic human) - FMA:14653 + portal lobule (post-embryonic human) @@ -7108,8 +6517,7 @@ - hepatic acinus (post-embryonic human) - FMA:14654 + hepatic acinus (post-embryonic human) @@ -7128,8 +6536,7 @@ - hepatic cord (post-embryonic human) - FMA:14655 + hepatic cord (post-embryonic human) @@ -7148,8 +6555,7 @@ - wall of gallbladder (post-embryonic human) - FMA:14657 + wall of gallbladder (post-embryonic human) @@ -7168,8 +6574,7 @@ - gallbladder serosa (post-embryonic human) - FMA:14659 + gallbladder serosa (post-embryonic human) @@ -7188,8 +6593,7 @@ - mucosa of gallbladder (post-embryonic human) - FMA:14662 + mucosa of gallbladder (post-embryonic human) @@ -7208,8 +6612,7 @@ - biliary tree (post-embryonic human) - FMA:14665 + biliary tree (post-embryonic human) @@ -7228,8 +6631,7 @@ - common bile duct (post-embryonic human) - FMA:14667 + common bile duct (post-embryonic human) @@ -7248,8 +6650,7 @@ - common hepatic duct (post-embryonic human) - FMA:14668 + common hepatic duct (post-embryonic human) @@ -7268,8 +6669,7 @@ - right hepatic duct (post-embryonic human) - FMA:14669 + right hepatic duct (post-embryonic human) @@ -7288,8 +6688,7 @@ - left hepatic duct (post-embryonic human) - FMA:14670 + left hepatic duct (post-embryonic human) @@ -7308,8 +6707,7 @@ - extrahepatic bile duct (post-embryonic human) - FMA:14678 + extrahepatic bile duct (post-embryonic human) @@ -7328,8 +6726,7 @@ - mucosa of common bile duct (post-embryonic human) - FMA:14688 + mucosa of common bile duct (post-embryonic human) @@ -7348,8 +6745,7 @@ - mucosa of cystic duct (post-embryonic human) - FMA:14690 + mucosa of cystic duct (post-embryonic human) @@ -7368,8 +6764,7 @@ - mucosa of common hepatic duct (post-embryonic human) - FMA:14691 + mucosa of common hepatic duct (post-embryonic human) @@ -7388,8 +6783,7 @@ - mucosa of right hepatic duct (post-embryonic human) - FMA:14692 + mucosa of right hepatic duct (post-embryonic human) @@ -7408,8 +6802,7 @@ - mucosa of left hepatic duct (post-embryonic human) - FMA:14693 + mucosa of left hepatic duct (post-embryonic human) @@ -7428,8 +6821,7 @@ - mucosa of biliary tree (post-embryonic human) - FMA:14695 + mucosa of biliary tree (post-embryonic human) @@ -7448,8 +6840,7 @@ - visceral peritoneum (post-embryonic human) - FMA:14703 + visceral peritoneum (post-embryonic human) @@ -7468,8 +6859,7 @@ - peritoneal cavity (post-embryonic human) - FMA:14704 + peritoneal cavity (post-embryonic human) @@ -7488,8 +6878,7 @@ - superior recess of lesser sac (post-embryonic human) - FMA:14708 + superior recess of lesser sac (post-embryonic human) @@ -7508,8 +6897,7 @@ - inferior recess of lesser sac (post-embryonic human) - FMA:14709 + inferior recess of lesser sac (post-embryonic human) @@ -7528,8 +6916,7 @@ - epiploic foramen (post-embryonic human) - FMA:14711 + epiploic foramen (post-embryonic human) @@ -7548,8 +6935,7 @@ - right subhepatic recess (post-embryonic human) - FMA:14715 + right subhepatic recess (post-embryonic human) @@ -7568,8 +6954,7 @@ - paracolic gutter (post-embryonic human) - FMA:14719 + paracolic gutter (post-embryonic human) @@ -7588,8 +6973,7 @@ - rectovesical pouch (post-embryonic human) - FMA:14727 + rectovesical pouch (post-embryonic human) @@ -7608,8 +6992,7 @@ - Douglas' pouch (post-embryonic human) - FMA:14728 + Douglas' pouch (post-embryonic human) @@ -7628,8 +7011,7 @@ - uterovesical pouch (post-embryonic human) - FMA:14729 + uterovesical pouch (post-embryonic human) @@ -7648,8 +7030,7 @@ - extraperitoneal space (post-embryonic human) - FMA:14730 + extraperitoneal space (post-embryonic human) @@ -7668,8 +7049,7 @@ - inferior phrenic artery (post-embryonic human) - FMA:14734 + inferior phrenic artery (post-embryonic human) @@ -7688,8 +7068,7 @@ - lumbar artery (post-embryonic human) - FMA:14735 + lumbar artery (post-embryonic human) @@ -7708,8 +7087,7 @@ - superior mesenteric artery (post-embryonic human) - FMA:14749 + superior mesenteric artery (post-embryonic human) @@ -7728,8 +7106,7 @@ - inferior mesenteric artery (post-embryonic human) - FMA:14750 + inferior mesenteric artery (post-embryonic human) @@ -7748,8 +7125,7 @@ - renal artery (post-embryonic human) - FMA:14751 + renal artery (post-embryonic human) @@ -7768,8 +7144,7 @@ - right renal artery (post-embryonic human) - FMA:14752 + right renal artery (post-embryonic human) @@ -7788,8 +7163,7 @@ - left renal artery (post-embryonic human) - FMA:14753 + left renal artery (post-embryonic human) @@ -7808,8 +7182,7 @@ - middle suprarenal artery (post-embryonic human) - FMA:14754 + middle suprarenal artery (post-embryonic human) @@ -7828,8 +7201,7 @@ - median sacral artery (post-embryonic human) - FMA:14757 + median sacral artery (post-embryonic human) @@ -7848,8 +7220,7 @@ - testicular artery (post-embryonic human) - FMA:14758 + testicular artery (post-embryonic human) @@ -7868,8 +7239,7 @@ - right testicular artery (post-embryonic human) - FMA:14759 + right testicular artery (post-embryonic human) @@ -7888,8 +7258,7 @@ - left testicular artery (post-embryonic human) - FMA:14760 + left testicular artery (post-embryonic human) @@ -7908,8 +7277,7 @@ - ovarian artery (post-embryonic human) - FMA:14761 + ovarian artery (post-embryonic human) @@ -7928,8 +7296,7 @@ - common iliac artery (post-embryonic human) - FMA:14764 + common iliac artery (post-embryonic human) @@ -7948,8 +7315,7 @@ - right common iliac artery (post-embryonic human) - FMA:14765 + right common iliac artery (post-embryonic human) @@ -7968,8 +7334,7 @@ - left common iliac artery (post-embryonic human) - FMA:14766 + left common iliac artery (post-embryonic human) @@ -7988,8 +7353,7 @@ - left gastric artery (post-embryonic human) - FMA:14768 + left gastric artery (post-embryonic human) @@ -8008,8 +7372,7 @@ - hepatic artery (post-embryonic human) - FMA:14769 + hepatic artery (post-embryonic human) @@ -8028,8 +7391,7 @@ - common hepatic artery (post-embryonic human) - FMA:14771 + common hepatic artery (post-embryonic human) @@ -8048,8 +7410,7 @@ - proper hepatic artery (post-embryonic human) - FMA:14772 + proper hepatic artery (post-embryonic human) @@ -8068,8 +7429,7 @@ - splenic artery (post-embryonic human) - FMA:14773 + splenic artery (post-embryonic human) @@ -8088,8 +7448,7 @@ - gastroduodenal artery (post-embryonic human) - FMA:14775 + gastroduodenal artery (post-embryonic human) @@ -8108,8 +7467,7 @@ - right hepatic artery (post-embryonic human) - FMA:14778 + right hepatic artery (post-embryonic human) @@ -8128,8 +7486,7 @@ - left hepatic artery (post-embryonic human) - FMA:14779 + left hepatic artery (post-embryonic human) @@ -8148,8 +7505,7 @@ - right gastroepiploic artery (post-embryonic human) - FMA:14781 + right gastroepiploic artery (post-embryonic human) @@ -8168,8 +7524,7 @@ - left gastroepiploic artery (post-embryonic human) - FMA:14796 + left gastroepiploic artery (post-embryonic human) @@ -8188,8 +7543,7 @@ - inferior pancreaticoduodenal artery (post-embryonic human) - FMA:14805 + inferior pancreaticoduodenal artery (post-embryonic human) @@ -8208,8 +7562,7 @@ - jejunal artery (post-embryonic human) - FMA:14808 + jejunal artery (post-embryonic human) @@ -8228,8 +7581,7 @@ - ileal artery (post-embryonic human) - FMA:14809 + ileal artery (post-embryonic human) @@ -8248,8 +7600,7 @@ - middle colic artery (post-embryonic human) - FMA:14810 + middle colic artery (post-embryonic human) @@ -8268,8 +7619,7 @@ - right colic artery (post-embryonic human) - FMA:14811 + right colic artery (post-embryonic human) @@ -8288,8 +7638,7 @@ - celiac trunk (post-embryonic human) - FMA:14812 + celiac trunk (post-embryonic human) @@ -8308,8 +7657,7 @@ - ileocolic artery (post-embryonic human) - FMA:14815 + ileocolic artery (post-embryonic human) @@ -8328,8 +7676,7 @@ - appendicular artery (post-embryonic human) - FMA:14818 + appendicular artery (post-embryonic human) @@ -8348,8 +7695,7 @@ - left colic artery (post-embryonic human) - FMA:14826 + left colic artery (post-embryonic human) @@ -8368,8 +7714,7 @@ - sigmoid artery (post-embryonic human) - FMA:14830 + sigmoid artery (post-embryonic human) @@ -8388,8 +7733,7 @@ - superior rectal artery (post-embryonic human) - FMA:14832 + superior rectal artery (post-embryonic human) @@ -8408,8 +7752,7 @@ - cystic artery (post-embryonic human) - FMA:14835 + cystic artery (post-embryonic human) @@ -8428,8 +7771,7 @@ - superior suprarenal artery (post-embryonic human) - FMA:14863 + superior suprarenal artery (post-embryonic human) @@ -8448,8 +7790,7 @@ - mucosa of stomach (post-embryonic human) - FMA:14907 + mucosa of stomach (post-embryonic human) @@ -8468,8 +7809,7 @@ - submucosa of stomach (post-embryonic human) - FMA:14908 + submucosa of stomach (post-embryonic human) @@ -8488,8 +7828,7 @@ - stomach muscularis externa (post-embryonic human) - FMA:14909 + stomach muscularis externa (post-embryonic human) @@ -8508,8 +7847,7 @@ - stomach smooth muscle outer longitudinal layer (post-embryonic human) - FMA:14910 + stomach smooth muscle outer longitudinal layer (post-embryonic human) @@ -8528,8 +7866,7 @@ - stomach smooth muscle circular layer (post-embryonic human) - FMA:14911 + stomach smooth muscle circular layer (post-embryonic human) @@ -8548,8 +7885,7 @@ - stomach smooth muscle inner oblique layer (post-embryonic human) - FMA:14912 + stomach smooth muscle inner oblique layer (post-embryonic human) @@ -8568,8 +7904,7 @@ - serosa of stomach (post-embryonic human) - FMA:14914 + serosa of stomach (post-embryonic human) @@ -8588,8 +7923,7 @@ - gastroesophageal sphincter (post-embryonic human) - FMA:14915 + gastroesophageal sphincter (post-embryonic human) @@ -8608,8 +7942,7 @@ - pyloric sphincter (post-embryonic human) - FMA:14916 + pyloric sphincter (post-embryonic human) @@ -8628,8 +7961,7 @@ - gastric gland (post-embryonic human) - FMA:14919 + gastric gland (post-embryonic human) @@ -8648,8 +7980,7 @@ - cardiac gastric gland (post-embryonic human) - FMA:14920 + cardiac gastric gland (post-embryonic human) @@ -8668,8 +7999,7 @@ - principal gastric gland (post-embryonic human) - FMA:14921 + principal gastric gland (post-embryonic human) @@ -8688,8 +8018,7 @@ - pyloric gastric gland (post-embryonic human) - FMA:14922 + pyloric gastric gland (post-embryonic human) @@ -8708,8 +8037,7 @@ - principal gastric gland (post-embryonic human) - FMA:14923 + principal gastric gland (post-embryonic human) @@ -8728,8 +8056,7 @@ - muscularis mucosae of stomach (post-embryonic human) - FMA:14924 + muscularis mucosae of stomach (post-embryonic human) @@ -8748,8 +8075,7 @@ - duodenal ampulla (post-embryonic human) - FMA:14927 + duodenal ampulla (post-embryonic human) @@ -8768,8 +8094,7 @@ - muscle layer of small intestine (post-embryonic human) - FMA:14932 + muscle layer of small intestine (post-embryonic human) @@ -8788,8 +8113,7 @@ - mucosa of small intestine (post-embryonic human) - FMA:14933 + mucosa of small intestine (post-embryonic human) @@ -8808,8 +8132,7 @@ - submucosa of small intestine (post-embryonic human) - FMA:14934 + submucosa of small intestine (post-embryonic human) @@ -8828,8 +8151,7 @@ - small intestine smooth muscle circular layer (post-embryonic human) - FMA:14935 + small intestine smooth muscle circular layer (post-embryonic human) @@ -8848,8 +8170,7 @@ - small intestine smooth muscle longitudinal layer (post-embryonic human) - FMA:14936 + small intestine smooth muscle longitudinal layer (post-embryonic human) @@ -8868,8 +8189,7 @@ - serosa of small intestine (post-embryonic human) - FMA:14938 + serosa of small intestine (post-embryonic human) @@ -8888,8 +8208,7 @@ - duodenal mucosa (post-embryonic human) - FMA:14942 + duodenal mucosa (post-embryonic human) @@ -8908,8 +8227,7 @@ - submucosa of duodenum (post-embryonic human) - FMA:14943 + submucosa of duodenum (post-embryonic human) @@ -8928,8 +8246,7 @@ - muscle layer of duodenum (post-embryonic human) - FMA:14944 + muscle layer of duodenum (post-embryonic human) @@ -8948,8 +8265,7 @@ - serosa of duodenum (post-embryonic human) - FMA:14948 + serosa of duodenum (post-embryonic human) @@ -8968,8 +8284,7 @@ - jejunal mucosa (post-embryonic human) - FMA:14949 + jejunal mucosa (post-embryonic human) @@ -8988,8 +8303,7 @@ - submucosa of jejunum (post-embryonic human) - FMA:14950 + submucosa of jejunum (post-embryonic human) @@ -9008,8 +8322,7 @@ - muscle layer of jejunum (post-embryonic human) - FMA:14951 + muscle layer of jejunum (post-embryonic human) @@ -9028,8 +8341,7 @@ - serosa of jejunum (post-embryonic human) - FMA:14955 + serosa of jejunum (post-embryonic human) @@ -9048,8 +8360,7 @@ - ileal mucosa (post-embryonic human) - FMA:14956 + ileal mucosa (post-embryonic human) @@ -9068,8 +8379,7 @@ - submucosa of ileum (post-embryonic human) - FMA:14957 + submucosa of ileum (post-embryonic human) @@ -9088,8 +8398,7 @@ - muscle layer of ileum (post-embryonic human) - FMA:14958 + muscle layer of ileum (post-embryonic human) @@ -9108,8 +8417,7 @@ - Meckel's diverticulum (post-embryonic human) - FMA:14967 + Meckel's diverticulum (post-embryonic human) @@ -9128,8 +8436,7 @@ - mucosa of large intestine (post-embryonic human) - FMA:14969 + mucosa of large intestine (post-embryonic human) @@ -9148,8 +8455,7 @@ - submucosa of large intestine (post-embryonic human) - FMA:14970 + submucosa of large intestine (post-embryonic human) @@ -9168,8 +8474,7 @@ - muscle layer of large intestine (post-embryonic human) - FMA:14971 + muscle layer of large intestine (post-embryonic human) @@ -9188,8 +8493,7 @@ - serosa of large intestine (post-embryonic human) - FMA:14975 + serosa of large intestine (post-embryonic human) @@ -9208,8 +8512,7 @@ - colonic mucosa (post-embryonic human) - FMA:14984 + colonic mucosa (post-embryonic human) @@ -9228,8 +8531,7 @@ - submucosa of colon (post-embryonic human) - FMA:14985 + submucosa of colon (post-embryonic human) @@ -9248,8 +8550,7 @@ - muscle layer of colon (post-embryonic human) - FMA:14986 + muscle layer of colon (post-embryonic human) @@ -9268,8 +8569,7 @@ - serosa of colon (post-embryonic human) - FMA:14990 + serosa of colon (post-embryonic human) @@ -9288,8 +8588,7 @@ - mucosa of appendix (post-embryonic human) - FMA:14991 + mucosa of appendix (post-embryonic human) @@ -9308,8 +8607,7 @@ - submucosa of appendix (post-embryonic human) - FMA:14992 + submucosa of appendix (post-embryonic human) @@ -9328,8 +8626,7 @@ - serosa of appendix (post-embryonic human) - FMA:14997 + serosa of appendix (post-embryonic human) @@ -9348,8 +8645,7 @@ - cecum mucosa (post-embryonic human) - FMA:14998 + cecum mucosa (post-embryonic human) @@ -9368,8 +8664,7 @@ - submucosa of cecum (post-embryonic human) - FMA:14999 + submucosa of cecum (post-embryonic human) @@ -9388,8 +8683,7 @@ - mucosa of ascending colon (post-embryonic human) - FMA:15005 + mucosa of ascending colon (post-embryonic human) @@ -9408,8 +8702,7 @@ - submucosa of ascending colon (post-embryonic human) - FMA:15006 + submucosa of ascending colon (post-embryonic human) @@ -9428,8 +8721,7 @@ - mucosa of transverse colon (post-embryonic human) - FMA:15012 + mucosa of transverse colon (post-embryonic human) @@ -9448,8 +8740,7 @@ - submucosa of transverse colon (post-embryonic human) - FMA:15013 + submucosa of transverse colon (post-embryonic human) @@ -9468,8 +8759,7 @@ - mucosa of descending colon (post-embryonic human) - FMA:15019 + mucosa of descending colon (post-embryonic human) @@ -9488,8 +8778,7 @@ - submucosa of descending colon (post-embryonic human) - FMA:15020 + submucosa of descending colon (post-embryonic human) @@ -9508,8 +8797,7 @@ - mucosa of sigmoid colon (post-embryonic human) - FMA:15026 + mucosa of sigmoid colon (post-embryonic human) @@ -9528,8 +8816,7 @@ - submucosa of sigmoid colon (post-embryonic human) - FMA:15027 + submucosa of sigmoid colon (post-embryonic human) @@ -9548,8 +8835,7 @@ - muscle layer of sigmoid colon (post-embryonic human) - FMA:15028 + muscle layer of sigmoid colon (post-embryonic human) @@ -9568,8 +8854,7 @@ - mucosa of rectum (post-embryonic human) - FMA:15033 + mucosa of rectum (post-embryonic human) @@ -9588,8 +8873,7 @@ - submucosa of rectum (post-embryonic human) - FMA:15034 + submucosa of rectum (post-embryonic human) @@ -9608,8 +8892,7 @@ - muscle layer of rectum (post-embryonic human) - FMA:15035 + muscle layer of rectum (post-embryonic human) @@ -9628,8 +8911,7 @@ - serosa of rectum (post-embryonic human) - FMA:15039 + serosa of rectum (post-embryonic human) @@ -9648,8 +8930,7 @@ - taenia coli (post-embryonic human) - FMA:15041 + taenia coli (post-embryonic human) @@ -9668,8 +8949,7 @@ - muscularis mucosae of small intestine (post-embryonic human) - FMA:15051 + muscularis mucosae of small intestine (post-embryonic human) @@ -9688,8 +8968,7 @@ - intestinal gland (post-embryonic human) - FMA:15052 + intestinal gland (post-embryonic human) @@ -9708,8 +8987,7 @@ - small intestine Peyer's patch (post-embryonic human) - FMA:15054 + small intestine Peyer's patch (post-embryonic human) @@ -9728,8 +9006,7 @@ - muscularis mucosae of duodenum (post-embryonic human) - FMA:15059 + muscularis mucosae of duodenum (post-embryonic human) @@ -9748,8 +9025,7 @@ - duodenal gland (post-embryonic human) - FMA:15060 + duodenal gland (post-embryonic human) @@ -9768,8 +9044,7 @@ - muscularis mucosae of jejunum (post-embryonic human) - FMA:15063 + muscularis mucosae of jejunum (post-embryonic human) @@ -9788,8 +9063,7 @@ - intestinal villus (post-embryonic human) - FMA:15072 + intestinal villus (post-embryonic human) @@ -9808,8 +9082,7 @@ - major duodenal papilla (post-embryonic human) - FMA:15074 + major duodenal papilla (post-embryonic human) @@ -9828,8 +9101,7 @@ - minor duodenal papilla (post-embryonic human) - FMA:15075 + minor duodenal papilla (post-embryonic human) @@ -9848,8 +9120,7 @@ - hepatopancreatic ampulla (post-embryonic human) - FMA:15076 + hepatopancreatic ampulla (post-embryonic human) @@ -9868,8 +9139,7 @@ - sphincter of hepatopancreatic ampulla (post-embryonic human) - FMA:15077 + sphincter of hepatopancreatic ampulla (post-embryonic human) @@ -9888,8 +9158,7 @@ - retroperitoneal space (post-embryonic human) - FMA:15080 + retroperitoneal space (post-embryonic human) @@ -9908,8 +9177,7 @@ - wall of brachiocephalic artery (post-embryonic human) - FMA:15089 + wall of brachiocephalic artery (post-embryonic human) @@ -9928,8 +9196,7 @@ - wall of subclavian artery (post-embryonic human) - FMA:15090 + wall of subclavian artery (post-embryonic human) @@ -9948,8 +9215,7 @@ - rugal fold of stomach (post-embryonic human) - FMA:15106 + rugal fold of stomach (post-embryonic human) @@ -9968,8 +9234,7 @@ - pancreatic tributary of splenic vein (post-embryonic human) - FMA:15388 + pancreatic tributary of splenic vein (post-embryonic human) @@ -9988,8 +9253,7 @@ - inferior mesenteric vein (post-embryonic human) - FMA:15391 + inferior mesenteric vein (post-embryonic human) @@ -10008,8 +9272,7 @@ - left colic vein (post-embryonic human) - FMA:15394 + left colic vein (post-embryonic human) @@ -10028,8 +9291,7 @@ - sigmoid vein (post-embryonic human) - FMA:15395 + sigmoid vein (post-embryonic human) @@ -10048,8 +9310,7 @@ - pancreaticoduodenal vein (post-embryonic human) - FMA:15398 + pancreaticoduodenal vein (post-embryonic human) @@ -10068,8 +9329,7 @@ - left gastric vein (post-embryonic human) - FMA:15399 + left gastric vein (post-embryonic human) @@ -10088,8 +9348,7 @@ - right gastric vein (post-embryonic human) - FMA:15400 + right gastric vein (post-embryonic human) @@ -10108,8 +9367,7 @@ - jejunal vein (post-embryonic human) - FMA:15402 + jejunal vein (post-embryonic human) @@ -10128,8 +9386,7 @@ - cystic vein (post-embryonic human) - FMA:15403 + cystic vein (post-embryonic human) @@ -10148,8 +9405,7 @@ - prepyloric vein (post-embryonic human) - FMA:15404 + prepyloric vein (post-embryonic human) @@ -10168,8 +9424,7 @@ - ileal vein (post-embryonic human) - FMA:15405 + ileal vein (post-embryonic human) @@ -10188,8 +9443,7 @@ - middle colic vein (post-embryonic human) - FMA:15406 + middle colic vein (post-embryonic human) @@ -10208,8 +9462,7 @@ - right colic vein (post-embryonic human) - FMA:15407 + right colic vein (post-embryonic human) @@ -10228,8 +9481,7 @@ - ileocolic vein (post-embryonic human) - FMA:15408 + ileocolic vein (post-embryonic human) @@ -10248,8 +9500,7 @@ - intrahepatic branch of portal vein (post-embryonic human) - FMA:15417 + intrahepatic branch of portal vein (post-embryonic human) @@ -10268,8 +9519,7 @@ - extrahepatic branch of portal vein (post-embryonic human) - FMA:15418 + extrahepatic branch of portal vein (post-embryonic human) @@ -10288,8 +9538,7 @@ - pyramidalis (post-embryonic human) - FMA:15568 + pyramidalis (post-embryonic human) @@ -10308,8 +9557,7 @@ - quadratus lumborum (post-embryonic human) - FMA:15569 + quadratus lumborum (post-embryonic human) @@ -10328,8 +9576,7 @@ - transversus abdominis muscle (post-embryonic human) - FMA:15570 + transversus abdominis muscle (post-embryonic human) @@ -10348,8 +9595,7 @@ - right ureter (post-embryonic human) - FMA:15571 + right ureter (post-embryonic human) @@ -10368,8 +9614,7 @@ - left ureter (post-embryonic human) - FMA:15572 + left ureter (post-embryonic human) @@ -10388,8 +9633,7 @@ - renal parenchyma (post-embryonic human) - FMA:15574 + renal parenchyma (post-embryonic human) @@ -10408,8 +9652,7 @@ - renal pelvis (post-embryonic human) - FMA:15575 + renal pelvis (post-embryonic human) @@ -10428,8 +9671,7 @@ - right renal pelvis (post-embryonic human) - FMA:15578 + right renal pelvis (post-embryonic human) @@ -10448,8 +9690,7 @@ - left renal pelvis (post-embryonic human) - FMA:15579 + left renal pelvis (post-embryonic human) @@ -10468,8 +9709,7 @@ - cortex of kidney (post-embryonic human) - FMA:15581 + cortex of kidney (post-embryonic human) @@ -10488,8 +9728,7 @@ - anterior surface of kidney (post-embryonic human) - FMA:15589 + anterior surface of kidney (post-embryonic human) @@ -10508,8 +9747,7 @@ - posterior surface of kidney (post-embryonic human) - FMA:15590 + posterior surface of kidney (post-embryonic human) @@ -10528,8 +9766,7 @@ - hilum of kidney (post-embryonic human) - FMA:15610 + hilum of kidney (post-embryonic human) @@ -10548,8 +9785,7 @@ - renal sinus (post-embryonic human) - FMA:15611 + renal sinus (post-embryonic human) @@ -10568,8 +9804,7 @@ - major calyx (post-embryonic human) - FMA:15613 + major calyx (post-embryonic human) @@ -10588,8 +9823,7 @@ - minor calyx (post-embryonic human) - FMA:15614 + minor calyx (post-embryonic human) @@ -10608,8 +9842,7 @@ - renal papilla (post-embryonic human) - FMA:15622 + renal papilla (post-embryonic human) @@ -10628,8 +9861,7 @@ - renal glomerulus (post-embryonic human) - FMA:15624 + renal glomerulus (post-embryonic human) @@ -10648,8 +9880,7 @@ - renal corpuscle (post-embryonic human) - FMA:15625 + renal corpuscle (post-embryonic human) @@ -10668,8 +9899,7 @@ - glomerular capsule (post-embryonic human) - FMA:15626 + glomerular capsule (post-embryonic human) @@ -10688,8 +9918,7 @@ - nephron tubule (post-embryonic human) - FMA:15627 + nephron tubule (post-embryonic human) @@ -10708,8 +9937,7 @@ - collecting duct of renal tubule (post-embryonic human) - FMA:15628 + collecting duct of renal tubule (post-embryonic human) @@ -10728,8 +9956,7 @@ - right adrenal gland (post-embryonic human) - FMA:15629 + right adrenal gland (post-embryonic human) @@ -10748,8 +9975,7 @@ - left adrenal gland (post-embryonic human) - FMA:15630 + left adrenal gland (post-embryonic human) @@ -10768,8 +9994,7 @@ - adrenal cortex (post-embryonic human) - FMA:15632 + adrenal cortex (post-embryonic human) @@ -10788,8 +10013,7 @@ - adrenal medulla (post-embryonic human) - FMA:15633 + adrenal medulla (post-embryonic human) @@ -10808,8 +10032,7 @@ - paraaortic body (post-embryonic human) - FMA:15647 + paraaortic body (post-embryonic human) @@ -10828,8 +10051,7 @@ - paraganglion (generic) (post-embryonic human) - FMA:15648 + paraganglion (generic) (post-embryonic human) @@ -10848,8 +10070,7 @@ - lamina propria of small intestine (post-embryonic human) - FMA:15651 + lamina propria of small intestine (post-embryonic human) @@ -10868,8 +10089,7 @@ - lamina propria of large intestine (post-embryonic human) - FMA:15654 + lamina propria of large intestine (post-embryonic human) @@ -10888,8 +10108,7 @@ - muscularis mucosae of large intestine (post-embryonic human) - FMA:15655 + muscularis mucosae of large intestine (post-embryonic human) @@ -10908,8 +10127,7 @@ - muscularis mucosae of colon (post-embryonic human) - FMA:15656 + muscularis mucosae of colon (post-embryonic human) @@ -10928,8 +10146,7 @@ - lamina propria of mucosa of colon (post-embryonic human) - FMA:15657 + lamina propria of mucosa of colon (post-embryonic human) @@ -10948,8 +10165,7 @@ - large intestine Peyer's patch (post-embryonic human) - FMA:15658 + large intestine Peyer's patch (post-embryonic human) @@ -10968,8 +10184,7 @@ - muscularis mucosae of rectum (post-embryonic human) - FMA:15687 + muscularis mucosae of rectum (post-embryonic human) @@ -10988,8 +10203,7 @@ - muscularis mucosae of intestine (post-embryonic human) - FMA:15691 + muscularis mucosae of intestine (post-embryonic human) @@ -11008,8 +10222,7 @@ - crypt of Lieberkuhn of small intestine (post-embryonic human) - FMA:15693 + crypt of Lieberkuhn of small intestine (post-embryonic human) @@ -11028,8 +10241,7 @@ - intestinal mucosa (post-embryonic human) - FMA:15695 + intestinal mucosa (post-embryonic human) @@ -11048,8 +10260,7 @@ - intestinal submucosa (post-embryonic human) - FMA:15696 + intestinal submucosa (post-embryonic human) @@ -11068,8 +10279,7 @@ - muscle layer of intestine (post-embryonic human) - FMA:15697 + muscle layer of intestine (post-embryonic human) @@ -11088,8 +10298,7 @@ - serosa of intestine (post-embryonic human) - FMA:15701 + serosa of intestine (post-embryonic human) @@ -11108,8 +10317,7 @@ - anal canal (post-embryonic human) - FMA:15703 + anal canal (post-embryonic human) @@ -11128,8 +10336,7 @@ - wall of anal canal (post-embryonic human) - FMA:15704 + wall of anal canal (post-embryonic human) @@ -11148,8 +10355,7 @@ - muscle layer of anal canal (post-embryonic human) - FMA:15708 + muscle layer of anal canal (post-embryonic human) @@ -11168,8 +10374,7 @@ - internal anal sphincter (post-embryonic human) - FMA:15710 + internal anal sphincter (post-embryonic human) @@ -11188,8 +10393,7 @@ - anus (post-embryonic human) - FMA:15711 + anus (post-embryonic human) @@ -11208,8 +10412,7 @@ - anal column (post-embryonic human) - FMA:15713 + anal column (post-embryonic human) @@ -11228,8 +10431,7 @@ - anal sinus (post-embryonic human) - FMA:15717 + anal sinus (post-embryonic human) @@ -11248,8 +10450,7 @@ - gland of anal canal (post-embryonic human) - FMA:15720 + gland of anal canal (post-embryonic human) @@ -11268,8 +10469,7 @@ - transverse fold of rectum (post-embryonic human) - FMA:15722 + transverse fold of rectum (post-embryonic human) @@ -11288,8 +10488,7 @@ - gland of anal canal (post-embryonic human) - FMA:15724 + gland of anal canal (post-embryonic human) @@ -11308,8 +10507,7 @@ - conus artery (post-embryonic human) - FMA:15736 + conus artery (post-embryonic human) @@ -11328,8 +10526,7 @@ - intrahepatic bile duct (post-embryonic human) - FMA:15766 + intrahepatic bile duct (post-embryonic human) @@ -11348,8 +10545,7 @@ - interlobular bile duct (post-embryonic human) - FMA:15767 + interlobular bile duct (post-embryonic human) @@ -11368,8 +10564,7 @@ - capsule of liver (post-embryonic human) - FMA:15813 + capsule of liver (post-embryonic human) @@ -11388,8 +10583,7 @@ - ligament of liver (post-embryonic human) - FMA:15820 + ligament of liver (post-embryonic human) @@ -11408,8 +10602,7 @@ - triangular ligament of liver (post-embryonic human) - FMA:15821 + triangular ligament of liver (post-embryonic human) @@ -11428,8 +10621,7 @@ - coronary ligament of liver (post-embryonic human) - FMA:15822 + coronary ligament of liver (post-embryonic human) @@ -11448,8 +10640,7 @@ - falciform ligament (post-embryonic human) - FMA:15823 + falciform ligament (post-embryonic human) @@ -11468,8 +10659,7 @@ - hilum of spleen (post-embryonic human) - FMA:15841 + hilum of spleen (post-embryonic human) @@ -11488,8 +10678,7 @@ - spleen primary B follicle (post-embryonic human) - FMA:15843 + spleen primary B follicle (post-embryonic human) @@ -11508,8 +10697,7 @@ - red pulp of spleen (post-embryonic human) - FMA:15844 + red pulp of spleen (post-embryonic human) @@ -11528,8 +10716,7 @@ - spleen pulp (post-embryonic human) - FMA:15845 + spleen pulp (post-embryonic human) @@ -11548,8 +10735,7 @@ - spleen capsule (post-embryonic human) - FMA:15849 + spleen capsule (post-embryonic human) @@ -11568,8 +10754,7 @@ - marginal zone of spleen (post-embryonic human) - FMA:15852 + marginal zone of spleen (post-embryonic human) @@ -11588,8 +10773,7 @@ - spiral valve of cystic duct (post-embryonic human) - FMA:15855 + spiral valve of cystic duct (post-embryonic human) @@ -11608,8 +10792,7 @@ - uncinate process of pancreas (post-embryonic human) - FMA:15857 + uncinate process of pancreas (post-embryonic human) @@ -11628,8 +10811,7 @@ - parietal serous membrane (post-embryonic human) - FMA:15859 + parietal serous membrane (post-embryonic human) @@ -11648,8 +10830,7 @@ - visceral serous membrane (post-embryonic human) - FMA:15860 + visceral serous membrane (post-embryonic human) @@ -11668,8 +10849,7 @@ - tunica vaginalis testis (post-embryonic human) - FMA:15863 + tunica vaginalis testis (post-embryonic human) @@ -11688,8 +10868,7 @@ - perirenal fat (post-embryonic human) - FMA:15876 + perirenal fat (post-embryonic human) @@ -11708,8 +10887,7 @@ - wall of ureter (post-embryonic human) - FMA:15888 + wall of ureter (post-embryonic human) @@ -11728,8 +10906,7 @@ - wall of right ureter (post-embryonic human) - FMA:15889 + wall of right ureter (post-embryonic human) @@ -11748,8 +10925,7 @@ - wall of left ureter (post-embryonic human) - FMA:15890 + wall of left ureter (post-embryonic human) @@ -11768,8 +10944,7 @@ - adventitia of ureter (post-embryonic human) - FMA:15892 + adventitia of ureter (post-embryonic human) @@ -11788,8 +10963,7 @@ - muscular coat of ureter (post-embryonic human) - FMA:15893 + muscular coat of ureter (post-embryonic human) @@ -11808,8 +10982,7 @@ - mucosa of ureter (post-embryonic human) - FMA:15894 + mucosa of ureter (post-embryonic human) @@ -11828,8 +11001,7 @@ - lamina propria of ureter (post-embryonic human) - FMA:15896 + lamina propria of ureter (post-embryonic human) @@ -11848,8 +11020,7 @@ - urothelium of ureter (post-embryonic human) - FMA:15897 + urothelium of ureter (post-embryonic human) @@ -11868,8 +11039,7 @@ - ureteropelvic junction (post-embryonic human) - FMA:15898 + ureteropelvic junction (post-embryonic human) @@ -11888,8 +11058,7 @@ - ureterovesical junction (post-embryonic human) - FMA:15899 + ureterovesical junction (post-embryonic human) @@ -11908,8 +11077,7 @@ - urinary bladder (post-embryonic human) - FMA:15900 + urinary bladder (post-embryonic human) @@ -11928,8 +11096,7 @@ - wall of urinary bladder (post-embryonic human) - FMA:15902 + wall of urinary bladder (post-embryonic human) @@ -11948,8 +11115,7 @@ - fundus of urinary bladder (post-embryonic human) - FMA:15908 + fundus of urinary bladder (post-embryonic human) @@ -11968,8 +11134,7 @@ - trigone of urinary bladder (post-embryonic human) - FMA:15910 + trigone of urinary bladder (post-embryonic human) @@ -11988,8 +11153,7 @@ - neck of urinary bladder (post-embryonic human) - FMA:15912 + neck of urinary bladder (post-embryonic human) @@ -12008,8 +11172,7 @@ - bladder lumen (post-embryonic human) - FMA:15924 + bladder lumen (post-embryonic human) @@ -12028,8 +11191,7 @@ - mucosa of urinary bladder (post-embryonic human) - FMA:15928 + mucosa of urinary bladder (post-embryonic human) @@ -12048,8 +11210,7 @@ - submucosa of urinary bladder (post-embryonic human) - FMA:15929 + submucosa of urinary bladder (post-embryonic human) @@ -12068,8 +11229,7 @@ - muscle layer of urinary bladder (post-embryonic human) - FMA:15930 + muscle layer of urinary bladder (post-embryonic human) @@ -12088,8 +11248,7 @@ - serosa of urinary bladder (post-embryonic human) - FMA:15932 + serosa of urinary bladder (post-embryonic human) @@ -12108,8 +11267,7 @@ - lamina propria of urinary bladder (post-embryonic human) - FMA:15935 + lamina propria of urinary bladder (post-embryonic human) @@ -12128,8 +11286,7 @@ - urinary bladder urothelium (post-embryonic human) - FMA:15936 + urinary bladder urothelium (post-embryonic human) @@ -12148,8 +11305,7 @@ - wall of intestine (post-embryonic human) - FMA:15949 + wall of intestine (post-embryonic human) @@ -12168,8 +11324,7 @@ - duodenal papilla (post-embryonic human) - FMA:15953 + duodenal papilla (post-embryonic human) @@ -12188,8 +11343,7 @@ - duodeno-jejunal junction (post-embryonic human) - FMA:15957 + duodeno-jejunal junction (post-embryonic human) @@ -12208,8 +11362,7 @@ - duodenum lamina propria (post-embryonic human) - FMA:15972 + duodenum lamina propria (post-embryonic human) @@ -12228,8 +11381,7 @@ - ileocecal valve (post-embryonic human) - FMA:15973 + ileocecal valve (post-embryonic human) @@ -12248,8 +11400,7 @@ - ventral pancreatic duct (post-embryonic human) - FMA:16003 + ventral pancreatic duct (post-embryonic human) @@ -12268,8 +11419,7 @@ - pancreatic acinus (post-embryonic human) - FMA:16011 + pancreatic acinus (post-embryonic human) @@ -12288,8 +11438,7 @@ - pancreatic lobule (post-embryonic human) - FMA:16012 + pancreatic lobule (post-embryonic human) @@ -12308,8 +11457,7 @@ - intercalated duct of pancreas (post-embryonic human) - FMA:16013 + intercalated duct of pancreas (post-embryonic human) @@ -12328,8 +11476,7 @@ - islet of Langerhans (post-embryonic human) - FMA:16016 + islet of Langerhans (post-embryonic human) @@ -12348,8 +11495,7 @@ - exocrine pancreas (post-embryonic human) - FMA:16017 + exocrine pancreas (post-embryonic human) @@ -12368,8 +11514,7 @@ - endocrine pancreas (post-embryonic human) - FMA:16018 + endocrine pancreas (post-embryonic human) @@ -12388,8 +11533,7 @@ - trabecula of spleen (post-embryonic human) - FMA:16027 + trabecula of spleen (post-embryonic human) @@ -12408,8 +11552,7 @@ - parenchyma of spleen (post-embryonic human) - FMA:16029 + parenchyma of spleen (post-embryonic human) @@ -12428,8 +11571,7 @@ - splenic cord (post-embryonic human) - FMA:16031 + splenic cord (post-embryonic human) @@ -12448,8 +11590,7 @@ - penicillar arteriole (post-embryonic human) - FMA:16038 + penicillar arteriole (post-embryonic human) @@ -12468,8 +11609,7 @@ - lumbar vertebral arch (post-embryonic human) - FMA:16076 + lumbar vertebral arch (post-embryonic human) @@ -12488,8 +11628,7 @@ - transverse process of lumbar vertebra (post-embryonic human) - FMA:16080 + transverse process of lumbar vertebra (post-embryonic human) @@ -12508,8 +11647,7 @@ - prezygapophysis of lumbar vertebra (post-embryonic human) - FMA:16126 + prezygapophysis of lumbar vertebra (post-embryonic human) @@ -12528,8 +11666,7 @@ - postzygapophysis of lumbar vertebra (post-embryonic human) - FMA:16127 + postzygapophysis of lumbar vertebra (post-embryonic human) @@ -12548,8 +11685,7 @@ - subdivision of vertebral column (post-embryonic human) - FMA:16201 + subdivision of vertebral column (post-embryonic human) @@ -12568,8 +11704,7 @@ - fused sacrum (post-embryonic human) - FMA:16202 + fused sacrum (post-embryonic human) @@ -12588,8 +11723,7 @@ - lumbar region of vertebral column (post-embryonic human) - FMA:16203 + lumbar region of vertebral column (post-embryonic human) @@ -12608,8 +11742,7 @@ - sacrococcygeal symphysis (post-embryonic human) - FMA:16210 + sacrococcygeal symphysis (post-embryonic human) @@ -12628,8 +11761,7 @@ - prezygapophysis of sacral vertebra (post-embryonic human) - FMA:16215 + prezygapophysis of sacral vertebra (post-embryonic human) @@ -12648,8 +11780,7 @@ - root of lumbar spinal nerve (post-embryonic human) - FMA:16421 + root of lumbar spinal nerve (post-embryonic human) @@ -12668,8 +11799,7 @@ - root of cervical nerve (post-embryonic human) - FMA:16422 + root of cervical nerve (post-embryonic human) @@ -12688,8 +11818,7 @@ - femoral nerve (post-embryonic human) - FMA:16486 + femoral nerve (post-embryonic human) @@ -12708,8 +11837,7 @@ - obturator nerve (post-embryonic human) - FMA:16487 + obturator nerve (post-embryonic human) @@ -12728,8 +11856,7 @@ - peritoneal fluid (post-embryonic human) - FMA:16515 + peritoneal fluid (post-embryonic human) @@ -12748,8 +11875,7 @@ - broad ligament of uterus (post-embryonic human) - FMA:16516 + broad ligament of uterus (post-embryonic human) @@ -12768,8 +11894,7 @@ - gastro-splenic ligament (post-embryonic human) - FMA:16517 + gastro-splenic ligament (post-embryonic human) @@ -12788,8 +11913,7 @@ - gastrophrenic ligament (post-embryonic human) - FMA:16518 + gastrophrenic ligament (post-embryonic human) @@ -12808,8 +11932,7 @@ - hepatogastric ligament (post-embryonic human) - FMA:16520 + hepatogastric ligament (post-embryonic human) @@ -12828,8 +11951,7 @@ - hepatoduodenal ligament (post-embryonic human) - FMA:16521 + hepatoduodenal ligament (post-embryonic human) @@ -12848,8 +11970,7 @@ - lieno-renal ligament (post-embryonic human) - FMA:16522 + lieno-renal ligament (post-embryonic human) @@ -12868,8 +11989,7 @@ - rectouterine fold (post-embryonic human) - FMA:16533 + rectouterine fold (post-embryonic human) @@ -12888,8 +12008,7 @@ - gastrocolic ligament (post-embryonic human) - FMA:16552 + gastrocolic ligament (post-embryonic human) @@ -12908,8 +12027,7 @@ - remnant of embryonic structure (post-embryonic human) - FMA:16558 + remnant of embryonic structure (post-embryonic human) @@ -12928,8 +12046,7 @@ - remnant of urachus (post-embryonic human) - FMA:16568 + remnant of urachus (post-embryonic human) @@ -12948,8 +12065,7 @@ - acetabular part of hip bone (post-embryonic human) - FMA:16579 + acetabular part of hip bone (post-embryonic human) @@ -12968,8 +12084,7 @@ - bony pelvis (post-embryonic human) - FMA:16580 + bony pelvis (post-embryonic human) @@ -12988,8 +12103,7 @@ - pelvic girdle region (post-embryonic human) - FMA:16581 + pelvic girdle region (post-embryonic human) @@ -13008,8 +12122,7 @@ - right pelvic girdle region (post-embryonic human) - FMA:16582 + right pelvic girdle region (post-embryonic human) @@ -13028,8 +12141,7 @@ - left pelvic girdle region (post-embryonic human) - FMA:16583 + left pelvic girdle region (post-embryonic human) @@ -13048,8 +12160,7 @@ - innominate bone (post-embryonic human) - FMA:16585 + innominate bone (post-embryonic human) @@ -13068,8 +12179,7 @@ - ilium (post-embryonic human) - FMA:16589 + ilium (post-embryonic human) @@ -13088,8 +12198,7 @@ - ischium (post-embryonic human) - FMA:16592 + ischium (post-embryonic human) @@ -13108,8 +12217,7 @@ - pubis (post-embryonic human) - FMA:16595 + pubis (post-embryonic human) @@ -13128,8 +12236,7 @@ - left parietal lumbar lymph node (post-embryonic human) - FMA:16602 + left parietal lumbar lymph node (post-embryonic human) @@ -13148,8 +12255,7 @@ - parietal pre-aortic lymph node (post-embryonic human) - FMA:16603 + parietal pre-aortic lymph node (post-embryonic human) @@ -13168,8 +12274,7 @@ - paraaortic lymph node (post-embryonic human) - FMA:16604 + paraaortic lymph node (post-embryonic human) @@ -13188,8 +12293,7 @@ - retro-aortic lymph node (post-embryonic human) - FMA:16607 + retro-aortic lymph node (post-embryonic human) @@ -13208,8 +12312,7 @@ - intermediate mesenteric lymph node (post-embryonic human) - FMA:16609 + intermediate mesenteric lymph node (post-embryonic human) @@ -13228,8 +12331,7 @@ - juxta-arterial mesenteric lymph node (post-embryonic human) - FMA:16610 + juxta-arterial mesenteric lymph node (post-embryonic human) @@ -13248,8 +12350,7 @@ - ileocolic lymph node (post-embryonic human) - FMA:16611 + ileocolic lymph node (post-embryonic human) @@ -13268,8 +12369,7 @@ - colic lymph node (post-embryonic human) - FMA:16612 + colic lymph node (post-embryonic human) @@ -13288,8 +12388,7 @@ - epicolic lymph node (post-embryonic human) - FMA:16613 + epicolic lymph node (post-embryonic human) @@ -13308,8 +12407,7 @@ - preterminal colic lymph node (post-embryonic human) - FMA:16616 + preterminal colic lymph node (post-embryonic human) @@ -13328,8 +12426,7 @@ - ileal lymph node (post-embryonic human) - FMA:16617 + ileal lymph node (post-embryonic human) @@ -13348,8 +12445,7 @@ - appendicular lymph node (post-embryonic human) - FMA:16620 + appendicular lymph node (post-embryonic human) @@ -13368,8 +12464,7 @@ - pararectal lymph node (post-embryonic human) - FMA:16621 + pararectal lymph node (post-embryonic human) @@ -13388,8 +12483,7 @@ - pancreaticoduodenal lymph node (post-embryonic human) - FMA:16623 + pancreaticoduodenal lymph node (post-embryonic human) @@ -13408,8 +12502,7 @@ - superior pancreaticoduodenal lymph node (post-embryonic human) - FMA:16624 + superior pancreaticoduodenal lymph node (post-embryonic human) @@ -13428,8 +12521,7 @@ - inferior pancreaticoduodenal lymph node (post-embryonic human) - FMA:16625 + inferior pancreaticoduodenal lymph node (post-embryonic human) @@ -13448,8 +12540,7 @@ - pancreatic lymph node (post-embryonic human) - FMA:16626 + pancreatic lymph node (post-embryonic human) @@ -13468,8 +12559,7 @@ - inferior pancreatic lymph node (post-embryonic human) - FMA:16628 + inferior pancreatic lymph node (post-embryonic human) @@ -13488,8 +12578,7 @@ - intestinal lymph node (post-embryonic human) - FMA:16629 + intestinal lymph node (post-embryonic human) @@ -13508,8 +12597,7 @@ - medial common iliac lymph node (post-embryonic human) - FMA:16641 + medial common iliac lymph node (post-embryonic human) @@ -13528,8 +12616,7 @@ - intermediate common iliac lymph node (post-embryonic human) - FMA:16642 + intermediate common iliac lymph node (post-embryonic human) @@ -13548,8 +12635,7 @@ - lateral common iliac lymph node (post-embryonic human) - FMA:16643 + lateral common iliac lymph node (post-embryonic human) @@ -13568,8 +12654,7 @@ - subaortic common iliac lymph node (post-embryonic human) - FMA:16644 + subaortic common iliac lymph node (post-embryonic human) @@ -13588,8 +12673,7 @@ - promontory lymph node (post-embryonic human) - FMA:16645 + promontory lymph node (post-embryonic human) @@ -13608,8 +12692,7 @@ - external iliac lymph node (post-embryonic human) - FMA:16646 + external iliac lymph node (post-embryonic human) @@ -13628,8 +12711,7 @@ - medial external iliac lymph node (post-embryonic human) - FMA:16647 + medial external iliac lymph node (post-embryonic human) @@ -13648,8 +12730,7 @@ - intermediate external iliac lymph node (post-embryonic human) - FMA:16648 + intermediate external iliac lymph node (post-embryonic human) @@ -13668,8 +12749,7 @@ - lateral external iliac lymph node (post-embryonic human) - FMA:16649 + lateral external iliac lymph node (post-embryonic human) @@ -13688,8 +12768,7 @@ - interiliac lymph node (post-embryonic human) - FMA:16651 + interiliac lymph node (post-embryonic human) @@ -13708,8 +12787,7 @@ - internal iliac lymph node (post-embryonic human) - FMA:16654 + internal iliac lymph node (post-embryonic human) @@ -13728,8 +12806,7 @@ - sacral lymph node (post-embryonic human) - FMA:16655 + sacral lymph node (post-embryonic human) @@ -13748,8 +12825,7 @@ - obturator lymph node (post-embryonic human) - FMA:16656 + obturator lymph node (post-embryonic human) @@ -13768,8 +12844,7 @@ - gluteal lymph node (post-embryonic human) - FMA:16657 + gluteal lymph node (post-embryonic human) @@ -13788,8 +12863,7 @@ - superior gluteal lymph node (post-embryonic human) - FMA:16658 + superior gluteal lymph node (post-embryonic human) @@ -13808,8 +12882,7 @@ - inferior gluteal lymph node (post-embryonic human) - FMA:16659 + inferior gluteal lymph node (post-embryonic human) @@ -13828,8 +12901,7 @@ - presymphysial lymph node (post-embryonic human) - FMA:16667 + presymphysial lymph node (post-embryonic human) @@ -13848,8 +12920,7 @@ - anorectal lymph node (post-embryonic human) - FMA:16669 + anorectal lymph node (post-embryonic human) @@ -13868,8 +12939,7 @@ - retroperitoneal lymph node (post-embryonic human) - FMA:16694 + retroperitoneal lymph node (post-embryonic human) @@ -13888,8 +12958,7 @@ - pelvic splanchnic nerve (post-embryonic human) - FMA:16901 + pelvic splanchnic nerve (post-embryonic human) @@ -13908,8 +12977,7 @@ - greater sciatic notch (post-embryonic human) - FMA:16902 + greater sciatic notch (post-embryonic human) @@ -13928,8 +12996,7 @@ - lesser sciatic notch (post-embryonic human) - FMA:16911 + lesser sciatic notch (post-embryonic human) @@ -13948,8 +13015,7 @@ - iliac crest (post-embryonic human) - FMA:16914 + iliac crest (post-embryonic human) @@ -13968,8 +13034,7 @@ - acetabular rim (post-embryonic human) - FMA:16941 + acetabular rim (post-embryonic human) @@ -13988,8 +13053,7 @@ - acetabular notch (post-embryonic human) - FMA:16944 + acetabular notch (post-embryonic human) @@ -14008,8 +13072,7 @@ - pubic symphysis (post-embryonic human) - FMA:16950 + pubic symphysis (post-embryonic human) @@ -14028,8 +13091,7 @@ - superior pubic ramus (post-embryonic human) - FMA:16988 + superior pubic ramus (post-embryonic human) @@ -14048,8 +13110,7 @@ - inferior pubic ramus (post-embryonic human) - FMA:16989 + inferior pubic ramus (post-embryonic human) @@ -14068,8 +13129,7 @@ - obturator foramen (post-embryonic human) - FMA:16999 + obturator foramen (post-embryonic human) @@ -14088,8 +13148,7 @@ - ischial ramus (post-embryonic human) - FMA:17007 + ischial ramus (post-embryonic human) @@ -14108,8 +13167,7 @@ - ischial tuberosity (post-embryonic human) - FMA:17010 + ischial tuberosity (post-embryonic human) @@ -14128,8 +13186,7 @@ - ischial spine (post-embryonic human) - FMA:17028 + ischial spine (post-embryonic human) @@ -14148,8 +13205,7 @@ - gastroduodenal junction (post-embryonic human) - FMA:17046 + gastroduodenal junction (post-embryonic human) @@ -14168,8 +13224,7 @@ - mucosa of fundus of stomach (post-embryonic human) - FMA:17053 + mucosa of fundus of stomach (post-embryonic human) @@ -14188,8 +13243,7 @@ - mucosa of body of stomach (post-embryonic human) - FMA:17054 + mucosa of body of stomach (post-embryonic human) @@ -14208,8 +13262,7 @@ - mucosa of pyloric antrum (post-embryonic human) - FMA:17055 + mucosa of pyloric antrum (post-embryonic human) @@ -14228,8 +13281,7 @@ - submucosa of fundus of stomach (post-embryonic human) - FMA:17058 + submucosa of fundus of stomach (post-embryonic human) @@ -14248,8 +13300,7 @@ - submucosa of body of stomach (post-embryonic human) - FMA:17059 + submucosa of body of stomach (post-embryonic human) @@ -14268,8 +13319,7 @@ - submucosa of pyloric antrum (post-embryonic human) - FMA:17060 + submucosa of pyloric antrum (post-embryonic human) @@ -14288,8 +13338,7 @@ - serosa of fundus of stomach (post-embryonic human) - FMA:17073 + serosa of fundus of stomach (post-embryonic human) @@ -14308,8 +13357,7 @@ - stomach fundus lumen (post-embryonic human) - FMA:17077 + stomach fundus lumen (post-embryonic human) @@ -14328,8 +13376,7 @@ - epithelium of stomach (post-embryonic human) - FMA:17091 + epithelium of stomach (post-embryonic human) @@ -14348,8 +13395,7 @@ - intestinal epithelium (post-embryonic human) - FMA:17229 + intestinal epithelium (post-embryonic human) @@ -14368,8 +13414,7 @@ - duodenal epithelium (post-embryonic human) - FMA:17231 + duodenal epithelium (post-embryonic human) @@ -14388,8 +13433,7 @@ - jejunal epithelium (post-embryonic human) - FMA:17232 + jejunal epithelium (post-embryonic human) @@ -14408,8 +13452,7 @@ - ileal epithelium (post-embryonic human) - FMA:17233 + ileal epithelium (post-embryonic human) @@ -14428,8 +13471,7 @@ - acetabular fossa (post-embryonic human) - FMA:17269 + acetabular fossa (post-embryonic human) @@ -14448,8 +13490,7 @@ - stomach fundus epithelium (post-embryonic human) - FMA:17277 + stomach fundus epithelium (post-embryonic human) @@ -14468,8 +13509,7 @@ - muscularis mucosae of fundus of stomach (post-embryonic human) - FMA:17278 + muscularis mucosae of fundus of stomach (post-embryonic human) @@ -14488,8 +13528,7 @@ - epithelium of large intestine (post-embryonic human) - FMA:17301 + epithelium of large intestine (post-embryonic human) @@ -14508,8 +13547,7 @@ - colonic epithelium (post-embryonic human) - FMA:17302 + colonic epithelium (post-embryonic human) @@ -14528,8 +13566,7 @@ - lumen of anal canal (post-embryonic human) - FMA:17357 + lumen of anal canal (post-embryonic human) @@ -14548,8 +13585,7 @@ - mucosa of cardia of stomach (post-embryonic human) - FMA:17456 + mucosa of cardia of stomach (post-embryonic human) @@ -14568,8 +13604,7 @@ - submucosa of cardia of stomach (post-embryonic human) - FMA:17457 + submucosa of cardia of stomach (post-embryonic human) @@ -14588,8 +13623,7 @@ - mucosa of pylorus (post-embryonic human) - FMA:17461 + mucosa of pylorus (post-embryonic human) @@ -14608,8 +13642,7 @@ - submucosa of pylorus (post-embryonic human) - FMA:17462 + submucosa of pylorus (post-embryonic human) @@ -14628,8 +13661,7 @@ - lamina propria of fundus of stomach (post-embryonic human) - FMA:17500 + lamina propria of fundus of stomach (post-embryonic human) @@ -14648,8 +13680,7 @@ - epithelium of rectum (post-embryonic human) - FMA:17510 + epithelium of rectum (post-embryonic human) @@ -14668,8 +13699,7 @@ - anal canal epithelium (post-embryonic human) - FMA:17511 + anal canal epithelium (post-embryonic human) @@ -14688,8 +13718,7 @@ - portal triad (post-embryonic human) - FMA:17523 + portal triad (post-embryonic human) @@ -14708,8 +13737,7 @@ - interlobular stroma of liver (post-embryonic human) - FMA:17525 + interlobular stroma of liver (post-embryonic human) @@ -14728,8 +13756,7 @@ - liver parenchyma (post-embryonic human) - FMA:17540 + liver parenchyma (post-embryonic human) @@ -14748,8 +13775,7 @@ - hepatic sinusoid (post-embryonic human) - FMA:17543 + hepatic sinusoid (post-embryonic human) @@ -14768,8 +13794,7 @@ - central vein of liver (post-embryonic human) - FMA:17544 + central vein of liver (post-embryonic human) @@ -14788,8 +13813,7 @@ - intralobular bile duct (post-embryonic human) - FMA:17545 + intralobular bile duct (post-embryonic human) @@ -14808,8 +13832,7 @@ - bile canaliculus (post-embryonic human) - FMA:17547 + bile canaliculus (post-embryonic human) @@ -14828,8 +13851,7 @@ - liver stroma (post-embryonic human) - FMA:17553 + liver stroma (post-embryonic human) @@ -14848,8 +13870,7 @@ - uterus (post-embryonic human) - FMA:17558 + uterus (post-embryonic human) @@ -14868,8 +13889,7 @@ - uterine wall (post-embryonic human) - FMA:17560 + uterine wall (post-embryonic human) @@ -14888,8 +13908,7 @@ - renal sinus of right kidney (post-embryonic human) - FMA:17621 + renal sinus of right kidney (post-embryonic human) @@ -14908,8 +13927,7 @@ - renal sinus of left kidney (post-embryonic human) - FMA:17622 + renal sinus of left kidney (post-embryonic human) @@ -14928,8 +13946,7 @@ - renal column (post-embryonic human) - FMA:17633 + renal column (post-embryonic human) @@ -14948,8 +13965,7 @@ - nephron (post-embryonic human) - FMA:17640 + nephron (post-embryonic human) @@ -14968,8 +13984,7 @@ - renal lobule (post-embryonic human) - FMA:17670 + renal lobule (post-embryonic human) @@ -14988,8 +14003,7 @@ - Bowman's space (post-embryonic human) - FMA:17676 + Bowman's space (post-embryonic human) @@ -15008,8 +14022,7 @@ - uriniferous tubule (post-embryonic human) - FMA:17691 + uriniferous tubule (post-embryonic human) @@ -15028,8 +14041,7 @@ - region of nephron tubule (post-embryonic human) - FMA:17692 + region of nephron tubule (post-embryonic human) @@ -15048,8 +14060,7 @@ - proximal convoluted tubule (post-embryonic human) - FMA:17693 + proximal convoluted tubule (post-embryonic human) @@ -15068,8 +14079,7 @@ - loop of Henle (post-embryonic human) - FMA:17698 + loop of Henle (post-embryonic human) @@ -15088,8 +14098,7 @@ - descending limb of loop of Henle (post-embryonic human) - FMA:17705 + descending limb of loop of Henle (post-embryonic human) @@ -15108,8 +14117,7 @@ - proximal straight tubule (post-embryonic human) - FMA:17716 + proximal straight tubule (post-embryonic human) @@ -15128,8 +14136,7 @@ - ascending limb of loop of Henle (post-embryonic human) - FMA:17717 + ascending limb of loop of Henle (post-embryonic human) @@ -15148,8 +14155,7 @@ - intermediate tubule (post-embryonic human) - FMA:17718 + intermediate tubule (post-embryonic human) @@ -15168,8 +14174,7 @@ - descending thin limb (post-embryonic human) - FMA:17719 + descending thin limb (post-embryonic human) @@ -15188,8 +14193,7 @@ - loop of Henle ascending limb thin segment (post-embryonic human) - FMA:17720 + loop of Henle ascending limb thin segment (post-embryonic human) @@ -15208,8 +14212,7 @@ - distal convoluted tubule (post-embryonic human) - FMA:17721 + distal convoluted tubule (post-embryonic human) @@ -15228,8 +14231,7 @@ - thick ascending limb of loop of Henle (post-embryonic human) - FMA:17722 + thick ascending limb of loop of Henle (post-embryonic human) @@ -15248,8 +14250,7 @@ - outer medulla of kidney (post-embryonic human) - FMA:17733 + outer medulla of kidney (post-embryonic human) @@ -15268,8 +14269,7 @@ - inner medulla of kidney (post-embryonic human) - FMA:17734 + inner medulla of kidney (post-embryonic human) @@ -15288,8 +14288,7 @@ - body of uterus (post-embryonic human) - FMA:17739 + body of uterus (post-embryonic human) @@ -15308,8 +14307,7 @@ - uterine cervix (post-embryonic human) - FMA:17740 + uterine cervix (post-embryonic human) @@ -15328,8 +14326,7 @@ - endometrium (post-embryonic human) - FMA:17742 + endometrium (post-embryonic human) @@ -15348,8 +14345,7 @@ - myometrium (post-embryonic human) - FMA:17743 + myometrium (post-embryonic human) @@ -15368,8 +14364,7 @@ - serosa of uterus (post-embryonic human) - FMA:17744 + serosa of uterus (post-embryonic human) @@ -15388,8 +14383,7 @@ - uterine lumen (post-embryonic human) - FMA:17745 + uterine lumen (post-embryonic human) @@ -15408,8 +14402,7 @@ - cervical cavity (post-embryonic human) - FMA:17746 + cervical cavity (post-embryonic human) @@ -15428,8 +14421,7 @@ - internal cervical os (post-embryonic human) - FMA:17747 + internal cervical os (post-embryonic human) @@ -15448,8 +14440,7 @@ - mucosa of right ureter (post-embryonic human) - FMA:17806 + mucosa of right ureter (post-embryonic human) @@ -15468,8 +14459,7 @@ - mucosa of left ureter (post-embryonic human) - FMA:17807 + mucosa of left ureter (post-embryonic human) @@ -15488,8 +14478,7 @@ - mucosa of neck of urinary bladder (post-embryonic human) - FMA:17846 + mucosa of neck of urinary bladder (post-embryonic human) @@ -15508,8 +14497,7 @@ - mucosa of trigone of urinary bladder (post-embryonic human) - FMA:17847 + mucosa of trigone of urinary bladder (post-embryonic human) @@ -15528,8 +14516,7 @@ - submucosa of neck of urinary bladder (post-embryonic human) - FMA:17851 + submucosa of neck of urinary bladder (post-embryonic human) @@ -15548,8 +14535,7 @@ - submucosa of trigone of urinary bladder (post-embryonic human) - FMA:17852 + submucosa of trigone of urinary bladder (post-embryonic human) @@ -15568,8 +14554,7 @@ - cortical arch of kidney (post-embryonic human) - FMA:17876 + cortical arch of kidney (post-embryonic human) @@ -15588,8 +14573,7 @@ - renal lobe (post-embryonic human) - FMA:17881 + renal lobe (post-embryonic human) @@ -15608,8 +14592,7 @@ - mucosa of renal pelvis (post-embryonic human) - FMA:17931 + mucosa of renal pelvis (post-embryonic human) @@ -15628,8 +14611,7 @@ - mucosa of major calyx (post-embryonic human) - FMA:17934 + mucosa of major calyx (post-embryonic human) @@ -15648,8 +14630,7 @@ - mucosa of minor calyx (post-embryonic human) - FMA:17937 + mucosa of minor calyx (post-embryonic human) @@ -15668,8 +14649,7 @@ - submucosa of biliary tree (post-embryonic human) - FMA:18009 + submucosa of biliary tree (post-embryonic human) @@ -15688,8 +14668,7 @@ - submucosa of common bile duct (post-embryonic human) - FMA:18011 + submucosa of common bile duct (post-embryonic human) @@ -15708,8 +14687,7 @@ - submucosa of cystic duct (post-embryonic human) - FMA:18013 + submucosa of cystic duct (post-embryonic human) @@ -15728,8 +14706,7 @@ - submucosa of common hepatic duct (post-embryonic human) - FMA:18014 + submucosa of common hepatic duct (post-embryonic human) @@ -15748,8 +14725,7 @@ - submucosa of right hepatic duct (post-embryonic human) - FMA:18015 + submucosa of right hepatic duct (post-embryonic human) @@ -15768,8 +14744,7 @@ - submucosa of left hepatic duct (post-embryonic human) - FMA:18017 + submucosa of left hepatic duct (post-embryonic human) @@ -15788,8 +14763,7 @@ - root of sacral nerve (post-embryonic human) - FMA:18028 + root of sacral nerve (post-embryonic human) @@ -15808,8 +14782,7 @@ - psoas major muscle (post-embryonic human) - FMA:18060 + psoas major muscle (post-embryonic human) @@ -15828,8 +14801,7 @@ - endometrial cavity (post-embryonic human) - FMA:18076 + endometrial cavity (post-embryonic human) @@ -15848,8 +14820,7 @@ - dartos muscle (post-embryonic human) - FMA:18088 + dartos muscle (post-embryonic human) @@ -15868,8 +14839,7 @@ - renal fascia (post-embryonic human) - FMA:18104 + renal fascia (post-embryonic human) @@ -15888,8 +14858,7 @@ - root of coccygeal nerve (post-embryonic human) - FMA:18131 + root of coccygeal nerve (post-embryonic human) @@ -15908,8 +14877,7 @@ - peritoneal cavity mesothelium (post-embryonic human) - FMA:18147 + peritoneal cavity mesothelium (post-embryonic human) @@ -15928,8 +14896,7 @@ - mesothelium of pleural cavity (post-embryonic human) - FMA:18148 + mesothelium of pleural cavity (post-embryonic human) @@ -15948,8 +14915,7 @@ - mesothelium of serous pericardium (post-embryonic human) - FMA:18149 + mesothelium of serous pericardium (post-embryonic human) @@ -15968,8 +14934,7 @@ - right vagus X nerve trunk (post-embryonic human) - FMA:18151 + right vagus X nerve trunk (post-embryonic human) @@ -15988,8 +14953,7 @@ - left vagus X nerve trunk (post-embryonic human) - FMA:18157 + left vagus X nerve trunk (post-embryonic human) @@ -16008,8 +14972,7 @@ - wall of pulmonary artery (post-embryonic human) - FMA:18211 + wall of pulmonary artery (post-embryonic human) @@ -16028,8 +14991,7 @@ - fallopian tube (post-embryonic human) - FMA:18245 + fallopian tube (post-embryonic human) @@ -16048,8 +15010,7 @@ - glans penis (post-embryonic human) - FMA:18247 + glans penis (post-embryonic human) @@ -16068,8 +15029,7 @@ - crus of penis (post-embryonic human) - FMA:18248 + crus of penis (post-embryonic human) @@ -16088,8 +15048,7 @@ - gonad (post-embryonic human) - FMA:18250 + gonad (post-embryonic human) @@ -16108,8 +15067,7 @@ - sac of scrotum (post-embryonic human) - FMA:18251 + sac of scrotum (post-embryonic human) @@ -16128,8 +15086,7 @@ - scrotum (post-embryonic human) - FMA:18252 + scrotum (post-embryonic human) @@ -16148,8 +15105,7 @@ - epididymis (post-embryonic human) - FMA:18255 + epididymis (post-embryonic human) @@ -16168,8 +15124,7 @@ - caput epididymis (post-embryonic human) - FMA:18259 + caput epididymis (post-embryonic human) @@ -16188,8 +15143,7 @@ - corpus epididymis (post-embryonic human) - FMA:18260 + corpus epididymis (post-embryonic human) @@ -16208,8 +15162,7 @@ - cauda epididymis (post-embryonic human) - FMA:18261 + cauda epididymis (post-embryonic human) @@ -16228,8 +15181,7 @@ - appendix epididymis (post-embryonic human) - FMA:18268 + appendix epididymis (post-embryonic human) @@ -16248,8 +15200,7 @@ - epididymal lumen (post-embryonic human) - FMA:18274 + epididymal lumen (post-embryonic human) @@ -16268,8 +15219,7 @@ - duct of epididymis (post-embryonic human) - FMA:18297 + duct of epididymis (post-embryonic human) @@ -16288,8 +15238,7 @@ - subdivision of oviduct (post-embryonic human) - FMA:18302 + subdivision of oviduct (post-embryonic human) @@ -16308,8 +15257,7 @@ - wall of uterine tube (post-embryonic human) - FMA:18303 + wall of uterine tube (post-embryonic human) @@ -16328,8 +15276,7 @@ - ampulla of uterine tube (post-embryonic human) - FMA:18305 + ampulla of uterine tube (post-embryonic human) @@ -16348,8 +15295,7 @@ - isthmus of fallopian tube (post-embryonic human) - FMA:18306 + isthmus of fallopian tube (post-embryonic human) @@ -16368,8 +15314,7 @@ - uterine tube infundibulum (post-embryonic human) - FMA:18307 + uterine tube infundibulum (post-embryonic human) @@ -16388,8 +15333,7 @@ - fimbria of uterine tube (post-embryonic human) - FMA:18308 + fimbria of uterine tube (post-embryonic human) @@ -16408,8 +15352,7 @@ - serosa of uterine tube (post-embryonic human) - FMA:18316 + serosa of uterine tube (post-embryonic human) @@ -16428,8 +15371,7 @@ - muscle layer of oviduct (post-embryonic human) - FMA:18318 + muscle layer of oviduct (post-embryonic human) @@ -16448,8 +15390,7 @@ - mucosa of uterine tube (post-embryonic human) - FMA:18319 + mucosa of uterine tube (post-embryonic human) @@ -16468,8 +15409,7 @@ - serosa of infundibulum of uterine tube (post-embryonic human) - FMA:18324 + serosa of infundibulum of uterine tube (post-embryonic human) @@ -16488,8 +15428,7 @@ - muscle layer of infundibulum of uterine tube (post-embryonic human) - FMA:18336 + muscle layer of infundibulum of uterine tube (post-embryonic human) @@ -16508,8 +15447,7 @@ - mucosa of infundibulum of uterine tube (post-embryonic human) - FMA:18357 + mucosa of infundibulum of uterine tube (post-embryonic human) @@ -16528,8 +15466,7 @@ - lumen of colon (post-embryonic human) - FMA:18374 + lumen of colon (post-embryonic human) @@ -16548,8 +15485,7 @@ - mucosa of right uterine tube (post-embryonic human) - FMA:18452 + mucosa of right uterine tube (post-embryonic human) @@ -16568,8 +15504,7 @@ - mucosa of left uterine tube (post-embryonic human) - FMA:18453 + mucosa of left uterine tube (post-embryonic human) @@ -16588,8 +15523,7 @@ - right uterine tube (post-embryonic human) - FMA:18483 + right uterine tube (post-embryonic human) @@ -16608,8 +15542,7 @@ - left uterine tube (post-embryonic human) - FMA:18484 + left uterine tube (post-embryonic human) @@ -16628,8 +15561,7 @@ - oviduct mucosal fold (post-embryonic human) - FMA:18537 + oviduct mucosal fold (post-embryonic human) @@ -16648,8 +15580,7 @@ - ovarian cortex (post-embryonic human) - FMA:18613 + ovarian cortex (post-embryonic human) @@ -16668,8 +15599,7 @@ - ovarian medulla (post-embryonic human) - FMA:18616 + ovarian medulla (post-embryonic human) @@ -16688,8 +15618,7 @@ - corpus luteum (post-embryonic human) - FMA:18619 + corpus luteum (post-embryonic human) @@ -16708,8 +15637,7 @@ - corpus albicans (post-embryonic human) - FMA:18620 + corpus albicans (post-embryonic human) @@ -16728,8 +15656,7 @@ - ovary stroma (post-embryonic human) - FMA:18626 + ovary stroma (post-embryonic human) @@ -16748,8 +15675,7 @@ - germinal epithelium of ovary (post-embryonic human) - FMA:18629 + germinal epithelium of ovary (post-embryonic human) @@ -16768,8 +15694,7 @@ - tunica albuginea of ovary (post-embryonic human) - FMA:18630 + tunica albuginea of ovary (post-embryonic human) @@ -16788,8 +15713,7 @@ - primary ovarian follicle (post-embryonic human) - FMA:18634 + primary ovarian follicle (post-embryonic human) @@ -16808,8 +15732,7 @@ - secondary ovarian follicle (post-embryonic human) - FMA:18637 + secondary ovarian follicle (post-embryonic human) @@ -16828,8 +15751,7 @@ - ovarian follicle (post-embryonic human) - FMA:18640 + ovarian follicle (post-embryonic human) @@ -16848,8 +15770,7 @@ - tertiary ovarian follicle (post-embryonic human) - FMA:18641 + tertiary ovarian follicle (post-embryonic human) @@ -16868,8 +15789,7 @@ - theca cell layer (post-embryonic human) - FMA:18656 + theca cell layer (post-embryonic human) @@ -16888,8 +15808,7 @@ - theca externa (post-embryonic human) - FMA:18657 + theca externa (post-embryonic human) @@ -16908,8 +15827,7 @@ - theca interna (post-embryonic human) - FMA:18658 + theca interna (post-embryonic human) @@ -16928,8 +15846,7 @@ - cumulus oophorus (post-embryonic human) - FMA:18659 + cumulus oophorus (post-embryonic human) @@ -16948,8 +15865,7 @@ - granulosa cell layer (post-embryonic human) - FMA:18660 + granulosa cell layer (post-embryonic human) @@ -16968,8 +15884,7 @@ - corona radiata of neuraxis (post-embryonic human) - FMA:18661 + corona radiata of neuraxis (post-embryonic human) @@ -16988,8 +15903,7 @@ - capsule of ovary (post-embryonic human) - FMA:18662 + capsule of ovary (post-embryonic human) @@ -17008,8 +15922,7 @@ - follicular fluid (post-embryonic human) - FMA:18665 + follicular fluid (post-embryonic human) @@ -17028,8 +15941,7 @@ - zona pellucida (post-embryonic human) - FMA:18674 + zona pellucida (post-embryonic human) @@ -17048,8 +15960,7 @@ - follicular antrum (post-embryonic human) - FMA:18675 + follicular antrum (post-embryonic human) @@ -17068,8 +15979,7 @@ - epoophoron (post-embryonic human) - FMA:18691 + epoophoron (post-embryonic human) @@ -17088,8 +15998,7 @@ - paroophoron (post-embryonic human) - FMA:18692 + paroophoron (post-embryonic human) @@ -17108,8 +16017,7 @@ - vesicular appendage of epoophoron (post-embryonic human) - FMA:18696 + vesicular appendage of epoophoron (post-embryonic human) @@ -17128,8 +16036,7 @@ - atretic follicle of ovary (post-embryonic human) - FMA:18697 + atretic follicle of ovary (post-embryonic human) @@ -17148,8 +16055,7 @@ - external iliac artery (post-embryonic human) - FMA:18805 + external iliac artery (post-embryonic human) @@ -17168,8 +16074,7 @@ - internal iliac artery (post-embryonic human) - FMA:18808 + internal iliac artery (post-embryonic human) @@ -17188,8 +16093,7 @@ - umbilical artery (post-embryonic human) - FMA:18820 + umbilical artery (post-embryonic human) @@ -17208,8 +16112,7 @@ - right umbilical artery (post-embryonic human) - FMA:18821 + right umbilical artery (post-embryonic human) @@ -17228,8 +16131,7 @@ - left umbilical artery (post-embryonic human) - FMA:18822 + left umbilical artery (post-embryonic human) @@ -17248,8 +16150,7 @@ - inferior vesical artery (post-embryonic human) - FMA:18823 + inferior vesical artery (post-embryonic human) @@ -17268,8 +16169,7 @@ - uterine artery (post-embryonic human) - FMA:18829 + uterine artery (post-embryonic human) @@ -17288,8 +16188,7 @@ - internal pudendal artery (post-embryonic human) - FMA:18835 + internal pudendal artery (post-embryonic human) @@ -17308,8 +16207,7 @@ - superior vesical artery (post-embryonic human) - FMA:18839 + superior vesical artery (post-embryonic human) @@ -17328,8 +16226,7 @@ - iliolumbar artery (post-embryonic human) - FMA:18845 + iliolumbar artery (post-embryonic human) @@ -17348,8 +16245,7 @@ - obturator artery (post-embryonic human) - FMA:18865 + obturator artery (post-embryonic human) @@ -17368,8 +16264,7 @@ - superior gluteal artery (post-embryonic human) - FMA:18868 + superior gluteal artery (post-embryonic human) @@ -17388,8 +16283,7 @@ - external iliac vein (post-embryonic human) - FMA:18883 + external iliac vein (post-embryonic human) @@ -17408,8 +16302,7 @@ - internal iliac vein (post-embryonic human) - FMA:18884 + internal iliac vein (post-embryonic human) @@ -17428,8 +16321,7 @@ - inferior vesical vein (post-embryonic human) - FMA:18890 + inferior vesical vein (post-embryonic human) @@ -17448,8 +16340,7 @@ - vaginal vein (post-embryonic human) - FMA:18899 + vaginal vein (post-embryonic human) @@ -17468,8 +16359,7 @@ - iliolumbar vein (post-embryonic human) - FMA:18902 + iliolumbar vein (post-embryonic human) @@ -17488,8 +16378,7 @@ - obturator vein (post-embryonic human) - FMA:18914 + obturator vein (post-embryonic human) @@ -17508,8 +16397,7 @@ - internal pudendal vein (post-embryonic human) - FMA:18917 + internal pudendal vein (post-embryonic human) @@ -17528,8 +16416,7 @@ - deferent duct artery (post-embryonic human) - FMA:18930 + deferent duct artery (post-embryonic human) @@ -17548,8 +16435,7 @@ - rectal venous plexus (post-embryonic human) - FMA:18933 + rectal venous plexus (post-embryonic human) @@ -17568,8 +16454,7 @@ - vesical venous plexus (post-embryonic human) - FMA:18934 + vesical venous plexus (post-embryonic human) @@ -17588,8 +16473,7 @@ - vertebral venous plexus (post-embryonic human) - FMA:18935 + vertebral venous plexus (post-embryonic human) @@ -17608,8 +16492,7 @@ - sciatic nerve (post-embryonic human) - FMA:19034 + sciatic nerve (post-embryonic human) @@ -17628,8 +16511,7 @@ - tibial nerve (post-embryonic human) - FMA:19035 + tibial nerve (post-embryonic human) @@ -17648,8 +16530,7 @@ - pudendal nerve (post-embryonic human) - FMA:19037 + pudendal nerve (post-embryonic human) @@ -17668,8 +16549,7 @@ - common fibular nerve (post-embryonic human) - FMA:19039 + common fibular nerve (post-embryonic human) @@ -17688,8 +16568,7 @@ - efferent duct (post-embryonic human) - FMA:19081 + efferent duct (post-embryonic human) @@ -17708,8 +16587,7 @@ - piriformis muscle (post-embryonic human) - FMA:19082 + piriformis muscle (post-embryonic human) @@ -17728,8 +16606,7 @@ - obturator muscle (post-embryonic human) - FMA:19083 + obturator muscle (post-embryonic human) @@ -17748,8 +16625,7 @@ - muscle of pelvis (post-embryonic human) - FMA:19086 + muscle of pelvis (post-embryonic human) @@ -17768,8 +16644,7 @@ - levator ani muscle (post-embryonic human) - FMA:19087 + levator ani muscle (post-embryonic human) @@ -17788,8 +16663,7 @@ - coccygeus muscle (post-embryonic human) - FMA:19088 + coccygeus muscle (post-embryonic human) @@ -17808,8 +16682,7 @@ - pubococcygeus muscle (post-embryonic human) - FMA:19090 + pubococcygeus muscle (post-embryonic human) @@ -17828,8 +16701,7 @@ - puborectalis muscle (post-embryonic human) - FMA:19091 + puborectalis muscle (post-embryonic human) @@ -17848,8 +16720,7 @@ - iliococcygeus muscle (post-embryonic human) - FMA:19092 + iliococcygeus muscle (post-embryonic human) @@ -17868,8 +16739,7 @@ - adventitia of epididymis (post-embryonic human) - FMA:19136 + adventitia of epididymis (post-embryonic human) @@ -17888,8 +16758,7 @@ - muscle layer of epididymis (post-embryonic human) - FMA:19149 + muscle layer of epididymis (post-embryonic human) @@ -17908,8 +16777,7 @@ - epididymis epithelium (post-embryonic human) - FMA:19153 + epididymis epithelium (post-embryonic human) @@ -17928,8 +16796,7 @@ - efferent duct epithelium (post-embryonic human) - FMA:19195 + efferent duct epithelium (post-embryonic human) @@ -17948,8 +16815,7 @@ - vas deferens (post-embryonic human) - FMA:19234 + vas deferens (post-embryonic human) @@ -17968,8 +16834,7 @@ - adventitia of ductus deferens (post-embryonic human) - FMA:19238 + adventitia of ductus deferens (post-embryonic human) @@ -17988,8 +16853,7 @@ - muscular coat of vas deferens (post-embryonic human) - FMA:19239 + muscular coat of vas deferens (post-embryonic human) @@ -18008,8 +16872,7 @@ - mucosa of deferent duct (post-embryonic human) - FMA:19240 + mucosa of deferent duct (post-embryonic human) @@ -18028,8 +16891,7 @@ - ejaculatory duct (post-embryonic human) - FMA:19325 + ejaculatory duct (post-embryonic human) @@ -18048,8 +16910,7 @@ - smooth muscle tissue layer of ejaculatory duct (post-embryonic human) - FMA:19372 + smooth muscle tissue layer of ejaculatory duct (post-embryonic human) @@ -18068,8 +16929,7 @@ - mucosa of ejaculatory duct (post-embryonic human) - FMA:19373 + mucosa of ejaculatory duct (post-embryonic human) @@ -18088,8 +16948,7 @@ - seminal vesicle (post-embryonic human) - FMA:19386 + seminal vesicle (post-embryonic human) @@ -18108,8 +16967,7 @@ - adventitia of seminal vesicle (post-embryonic human) - FMA:19403 + adventitia of seminal vesicle (post-embryonic human) @@ -18128,8 +16986,7 @@ - muscular coat of seminal vesicle (post-embryonic human) - FMA:19404 + muscular coat of seminal vesicle (post-embryonic human) @@ -18148,8 +17005,7 @@ - mucosa of seminal vesicle (post-embryonic human) - FMA:19405 + mucosa of seminal vesicle (post-embryonic human) @@ -18168,8 +17024,7 @@ - duct of seminal vesicle (post-embryonic human) - FMA:19473 + duct of seminal vesicle (post-embryonic human) @@ -18188,8 +17043,7 @@ - lobe of prostate (post-embryonic human) - FMA:19570 + lobe of prostate (post-embryonic human) @@ -18208,8 +17062,7 @@ - prostate gland anterior lobe (post-embryonic human) - FMA:19574 + prostate gland anterior lobe (post-embryonic human) @@ -18228,8 +17081,7 @@ - posterior lobe of prostate (post-embryonic human) - FMA:19575 + posterior lobe of prostate (post-embryonic human) @@ -18248,8 +17100,7 @@ - prostate gland lateral lobe (post-embryonic human) - FMA:19577 + prostate gland lateral lobe (post-embryonic human) @@ -18268,8 +17119,7 @@ - prostate duct (post-embryonic human) - FMA:19580 + prostate duct (post-embryonic human) @@ -18288,8 +17138,7 @@ - prostatic capsule (post-embryonic human) - FMA:19583 + prostatic capsule (post-embryonic human) @@ -18308,8 +17157,7 @@ - surface of prostate (post-embryonic human) - FMA:19590 + surface of prostate (post-embryonic human) @@ -18328,8 +17176,7 @@ - anterior surface of prostate (post-embryonic human) - FMA:19591 + anterior surface of prostate (post-embryonic human) @@ -18348,8 +17195,7 @@ - posterior surface of prostate (post-embryonic human) - FMA:19592 + posterior surface of prostate (post-embryonic human) @@ -18368,8 +17214,7 @@ - apex of prostate (post-embryonic human) - FMA:19594 + apex of prostate (post-embryonic human) @@ -18388,8 +17233,7 @@ - base of prostate (post-embryonic human) - FMA:19595 + base of prostate (post-embryonic human) @@ -18408,8 +17252,7 @@ - inferolateral surface of prostate (post-embryonic human) - FMA:19596 + inferolateral surface of prostate (post-embryonic human) @@ -18428,8 +17271,7 @@ - pampiniform plexus (post-embryonic human) - FMA:19607 + pampiniform plexus (post-embryonic human) @@ -18448,8 +17290,7 @@ - bulb of penis (post-embryonic human) - FMA:19614 + bulb of penis (post-embryonic human) @@ -18468,8 +17309,7 @@ - corpus spongiosum of penis (post-embryonic human) - FMA:19617 + corpus spongiosum of penis (post-embryonic human) @@ -18488,8 +17328,7 @@ - corpus cavernosum penis (post-embryonic human) - FMA:19618 + corpus cavernosum penis (post-embryonic human) @@ -18508,8 +17347,7 @@ - dorsal surface of penis (post-embryonic human) - FMA:19623 + dorsal surface of penis (post-embryonic human) @@ -18528,8 +17366,7 @@ - ventral surface of penis (post-embryonic human) - FMA:19624 + ventral surface of penis (post-embryonic human) @@ -18548,8 +17385,7 @@ - corona of glans penis (post-embryonic human) - FMA:19627 + corona of glans penis (post-embryonic human) @@ -18568,8 +17404,7 @@ - tunica albuginea (post-embryonic human) - FMA:19631 + tunica albuginea (post-embryonic human) @@ -18588,8 +17423,7 @@ - skin of penis (post-embryonic human) - FMA:19638 + skin of penis (post-embryonic human) @@ -18608,8 +17442,7 @@ - prepuce of penis (post-embryonic human) - FMA:19639 + prepuce of penis (post-embryonic human) @@ -18628,8 +17461,7 @@ - raphe of penis (post-embryonic human) - FMA:19646 + raphe of penis (post-embryonic human) @@ -18648,8 +17480,7 @@ - base of glans penis (post-embryonic human) - FMA:19649 + base of glans penis (post-embryonic human) @@ -18668,8 +17499,7 @@ - urethral meatus (post-embryonic human) - FMA:19650 + urethral meatus (post-embryonic human) @@ -18688,8 +17518,7 @@ - pearly penile papule (post-embryonic human) - FMA:19653 + pearly penile papule (post-embryonic human) @@ -18708,8 +17537,7 @@ - smegma (post-embryonic human) - FMA:19656 + smegma (post-embryonic human) @@ -18728,8 +17556,7 @@ - urethra (post-embryonic human) - FMA:19667 + urethra (post-embryonic human) @@ -18748,8 +17575,7 @@ - male urethra (post-embryonic human) - FMA:19668 + male urethra (post-embryonic human) @@ -18768,8 +17594,7 @@ - female urethra (post-embryonic human) - FMA:19669 + female urethra (post-embryonic human) @@ -18788,8 +17613,7 @@ - prostatic urethra (post-embryonic human) - FMA:19673 + prostatic urethra (post-embryonic human) @@ -18808,8 +17632,7 @@ - male membranous urethra (post-embryonic human) - FMA:19674 + male membranous urethra (post-embryonic human) @@ -18828,8 +17651,7 @@ - spongiose part of urethra (post-embryonic human) - FMA:19675 + spongiose part of urethra (post-embryonic human) @@ -18848,8 +17670,7 @@ - wall of male urethra (post-embryonic human) - FMA:19676 + wall of male urethra (post-embryonic human) @@ -18868,8 +17689,7 @@ - urethral gland (post-embryonic human) - FMA:19683 + urethral gland (post-embryonic human) @@ -18888,8 +17708,7 @@ - epithelium of male urethra (post-embryonic human) - FMA:19684 + epithelium of male urethra (post-embryonic human) @@ -18908,8 +17727,7 @@ - lamina propria of prostatic urethra (post-embryonic human) - FMA:19693 + lamina propria of prostatic urethra (post-embryonic human) @@ -18928,8 +17746,7 @@ - muscular layer of prostatic urethra (post-embryonic human) - FMA:19699 + muscular layer of prostatic urethra (post-embryonic human) @@ -18948,8 +17765,7 @@ - muscle layer of spongiose part of urethra (post-embryonic human) - FMA:19701 + muscle layer of spongiose part of urethra (post-embryonic human) @@ -18968,8 +17784,7 @@ - prostatic utricle (post-embryonic human) - FMA:19702 + prostatic utricle (post-embryonic human) @@ -18988,8 +17803,7 @@ - lumen of urethra (post-embryonic human) - FMA:19709 + lumen of urethra (post-embryonic human) @@ -19008,8 +17822,7 @@ - urethral crest (post-embryonic human) - FMA:19718 + urethral crest (post-embryonic human) @@ -19028,8 +17841,7 @@ - navicular fossa of spongiose part of urethra (post-embryonic human) - FMA:19722 + navicular fossa of spongiose part of urethra (post-embryonic human) @@ -19048,8 +17860,7 @@ - bulbospongiosus muscle (post-embryonic human) - FMA:19729 + bulbospongiosus muscle (post-embryonic human) @@ -19068,8 +17879,7 @@ - ischiocavernosus muscle (post-embryonic human) - FMA:19730 + ischiocavernosus muscle (post-embryonic human) @@ -19088,8 +17898,7 @@ - male external urethral sphincter (post-embryonic human) - FMA:19733 + male external urethral sphincter (post-embryonic human) @@ -19108,8 +17917,7 @@ - urogenital diaphragm (post-embryonic human) - FMA:19734 + urogenital diaphragm (post-embryonic human) @@ -19128,8 +17936,7 @@ - pericardial visceral mesothelium (post-embryonic human) - FMA:19741 + pericardial visceral mesothelium (post-embryonic human) @@ -19148,8 +17955,7 @@ - pericardial parietal mesothelium (post-embryonic human) - FMA:19742 + pericardial parietal mesothelium (post-embryonic human) @@ -19168,8 +17974,7 @@ - epithelium of female urethra (post-embryonic human) - FMA:19774 + epithelium of female urethra (post-embryonic human) @@ -19188,8 +17993,7 @@ - female external urethral sphincter (post-embryonic human) - FMA:19778 + female external urethral sphincter (post-embryonic human) @@ -19208,8 +18012,7 @@ - wall of urethra (post-embryonic human) - FMA:19779 + wall of urethra (post-embryonic human) @@ -19228,8 +18031,7 @@ - wall of female urethra (post-embryonic human) - FMA:19780 + wall of female urethra (post-embryonic human) @@ -19248,8 +18050,7 @@ - Guérin's valve (post-embryonic human) - FMA:19781 + Guérin's valve (post-embryonic human) @@ -19268,8 +18069,7 @@ - loose connective tissue (post-embryonic human) - FMA:19783 + loose connective tissue (post-embryonic human) @@ -19288,8 +18088,7 @@ - deep artery of penis (post-embryonic human) - FMA:19794 + deep artery of penis (post-embryonic human) @@ -19308,8 +18107,7 @@ - dorsal artery of penis (post-embryonic human) - FMA:19795 + dorsal artery of penis (post-embryonic human) @@ -19328,8 +18126,7 @@ - helicine artery of penis (post-embryonic human) - FMA:19796 + helicine artery of penis (post-embryonic human) @@ -19348,8 +18145,7 @@ - greater sac (post-embryonic human) - FMA:19799 + greater sac (post-embryonic human) @@ -19368,8 +18164,7 @@ - lesser sac (post-embryonic human) - FMA:19800 + lesser sac (post-embryonic human) @@ -19388,8 +18183,7 @@ - mesosalpinx (post-embryonic human) - FMA:19808 + mesosalpinx (post-embryonic human) @@ -19408,8 +18202,7 @@ - mediastinum testis (post-embryonic human) - FMA:19812 + mediastinum testis (post-embryonic human) @@ -19428,8 +18221,7 @@ - mesovarium (post-embryonic human) - FMA:19815 + mesovarium (post-embryonic human) @@ -19448,8 +18240,7 @@ - mesometrium (post-embryonic human) - FMA:19816 + mesometrium (post-embryonic human) @@ -19468,8 +18259,7 @@ - suspensory ligament of ovary (post-embryonic human) - FMA:19822 + suspensory ligament of ovary (post-embryonic human) @@ -19488,8 +18278,7 @@ - seminiferous tubule of testis (post-embryonic human) - FMA:19825 + seminiferous tubule of testis (post-embryonic human) @@ -19508,8 +18297,7 @@ - rete testis (post-embryonic human) - FMA:19834 + rete testis (post-embryonic human) @@ -19528,8 +18316,7 @@ - abdominal fascia (post-embryonic human) - FMA:19841 + abdominal fascia (post-embryonic human) @@ -19548,8 +18335,7 @@ - tunica albuginea of testis (post-embryonic human) - FMA:19843 + tunica albuginea of testis (post-embryonic human) @@ -19568,8 +18354,7 @@ - tunica vaginalis testis (post-embryonic human) - FMA:19844 + tunica vaginalis testis (post-embryonic human) @@ -19588,8 +18373,7 @@ - appendix testis (post-embryonic human) - FMA:19846 + appendix testis (post-embryonic human) @@ -19608,8 +18392,7 @@ - inguinal ligament (post-embryonic human) - FMA:19855 + inguinal ligament (post-embryonic human) @@ -19628,8 +18411,7 @@ - seminiferous tubule epithelium (post-embryonic human) - FMA:19885 + seminiferous tubule epithelium (post-embryonic human) @@ -19648,8 +18430,7 @@ - male breast (post-embryonic human) - FMA:19901 + male breast (post-embryonic human) @@ -19668,8 +18449,7 @@ - fascia of Camper (post-embryonic human) - FMA:19922 + fascia of Camper (post-embryonic human) @@ -19688,8 +18468,7 @@ - fascia of Scarpa (post-embryonic human) - FMA:19923 + fascia of Scarpa (post-embryonic human) @@ -19708,8 +18487,7 @@ - superficial inguinal ring (post-embryonic human) - FMA:19926 + superficial inguinal ring (post-embryonic human) @@ -19728,8 +18506,7 @@ - deep inguinal ring (post-embryonic human) - FMA:19927 + deep inguinal ring (post-embryonic human) @@ -19748,8 +18525,7 @@ - inguinal canal (post-embryonic human) - FMA:19928 + inguinal canal (post-embryonic human) @@ -19768,8 +18544,7 @@ - umbilical ring (post-embryonic human) - FMA:19930 + umbilical ring (post-embryonic human) @@ -19788,8 +18563,7 @@ - spermatic cord (post-embryonic human) - FMA:19937 + spermatic cord (post-embryonic human) @@ -19808,8 +18582,7 @@ - vagina (post-embryonic human) - FMA:19949 + vagina (post-embryonic human) @@ -19828,8 +18601,7 @@ - vestibule of vagina (post-embryonic human) - FMA:19970 + vestibule of vagina (post-embryonic human) @@ -19848,8 +18620,7 @@ - wall of vagina (post-embryonic human) - FMA:19971 + wall of vagina (post-embryonic human) @@ -19868,8 +18639,7 @@ - mucosa of vagina (post-embryonic human) - FMA:19975 + mucosa of vagina (post-embryonic human) @@ -19888,8 +18658,7 @@ - muscular layer of vagina (post-embryonic human) - FMA:19976 + muscular layer of vagina (post-embryonic human) @@ -19908,8 +18677,7 @@ - epithelium of vagina (post-embryonic human) - FMA:19978 + epithelium of vagina (post-embryonic human) @@ -19928,8 +18696,7 @@ - lamina propria of vagina (post-embryonic human) - FMA:19979 + lamina propria of vagina (post-embryonic human) @@ -19948,8 +18715,7 @@ - lumen of vagina (post-embryonic human) - FMA:19982 + lumen of vagina (post-embryonic human) @@ -19968,8 +18734,7 @@ - vagina orifice (post-embryonic human) - FMA:19984 + vagina orifice (post-embryonic human) @@ -19988,8 +18753,7 @@ - fornix of vagina (post-embryonic human) - FMA:19985 + fornix of vagina (post-embryonic human) @@ -20008,8 +18772,7 @@ - anterior fornix of vagina (post-embryonic human) - FMA:19986 + anterior fornix of vagina (post-embryonic human) @@ -20028,8 +18791,7 @@ - posterior fornix of vagina (post-embryonic human) - FMA:19987 + posterior fornix of vagina (post-embryonic human) @@ -20048,8 +18810,7 @@ - lateral fornix of vagina (post-embryonic human) - FMA:19988 + lateral fornix of vagina (post-embryonic human) @@ -20068,8 +18829,7 @@ - rugal fold of vagina (post-embryonic human) - FMA:19991 + rugal fold of vagina (post-embryonic human) @@ -20088,8 +18848,7 @@ - rima vulvae (post-embryonic human) - FMA:19995 + rima vulvae (post-embryonic human) @@ -20108,8 +18867,7 @@ - glans clitoris (post-embryonic human) - FMA:19999 + glans clitoris (post-embryonic human) @@ -20128,8 +18886,7 @@ - vaginal hymen (post-embryonic human) - FMA:20005 + vaginal hymen (post-embryonic human) @@ -20148,8 +18905,7 @@ - minor vestibular gland (post-embryonic human) - FMA:20019 + minor vestibular gland (post-embryonic human) @@ -20168,8 +18924,7 @@ - vestibular gland (post-embryonic human) - FMA:20020 + vestibular gland (post-embryonic human) @@ -20188,8 +18943,7 @@ - paraurethral gland (post-embryonic human) - FMA:20083 + paraurethral gland (post-embryonic human) @@ -20208,8 +18962,7 @@ - duct of major vestibular gland (post-embryonic human) - FMA:20088 + duct of major vestibular gland (post-embryonic human) @@ -20228,8 +18981,7 @@ - duct of bulbourethral gland (post-embryonic human) - FMA:20091 + duct of bulbourethral gland (post-embryonic human) @@ -20248,8 +19000,7 @@ - duct of lesser vestibular gland (post-embryonic human) - FMA:20094 + duct of lesser vestibular gland (post-embryonic human) @@ -20268,8 +19019,7 @@ - duct of vestibular gland (post-embryonic human) - FMA:20097 + duct of vestibular gland (post-embryonic human) @@ -20288,8 +19038,7 @@ - regular connective tissue (post-embryonic human) - FMA:20103 + regular connective tissue (post-embryonic human) @@ -20308,8 +19057,7 @@ - irregular connective tissue (post-embryonic human) - FMA:20107 + irregular connective tissue (post-embryonic human) @@ -20328,8 +19076,7 @@ - dense irregular connective tissue (post-embryonic human) - FMA:20109 + dense irregular connective tissue (post-embryonic human) @@ -20348,8 +19095,7 @@ - adipose tissue (post-embryonic human) - FMA:20110 + adipose tissue (post-embryonic human) @@ -20368,8 +19114,7 @@ - mucoid tissue (post-embryonic human) - FMA:20111 + mucoid tissue (post-embryonic human) @@ -20388,8 +19133,7 @@ - elastic tissue (post-embryonic human) - FMA:20113 + elastic tissue (post-embryonic human) @@ -20408,8 +19152,7 @@ - reticular tissue (post-embryonic human) - FMA:20116 + reticular tissue (post-embryonic human) @@ -20428,8 +19171,7 @@ - white adipose tissue (post-embryonic human) - FMA:20117 + white adipose tissue (post-embryonic human) @@ -20448,8 +19190,7 @@ - brown adipose tissue (post-embryonic human) - FMA:20118 + brown adipose tissue (post-embryonic human) @@ -20468,8 +19209,7 @@ - skin of clitoris (post-embryonic human) - FMA:20168 + skin of clitoris (post-embryonic human) @@ -20488,8 +19228,7 @@ - prepuce of clitoris (post-embryonic human) - FMA:20169 + prepuce of clitoris (post-embryonic human) @@ -20508,8 +19247,7 @@ - corpus cavernosum clitoridis (post-embryonic human) - FMA:20172 + corpus cavernosum clitoridis (post-embryonic human) @@ -20528,8 +19266,7 @@ - crus of clitoris (post-embryonic human) - FMA:20175 + crus of clitoris (post-embryonic human) @@ -20548,8 +19285,7 @@ - pectineal ligament (post-embryonic human) - FMA:20188 + pectineal ligament (post-embryonic human) @@ -20568,8 +19304,7 @@ - externally connecting tube lumen (post-embryonic human) - FMA:20192 + externally connecting tube lumen (post-embryonic human) @@ -20588,8 +19323,7 @@ - bulb of vestibule (post-embryonic human) - FMA:20199 + bulb of vestibule (post-embryonic human) @@ -20608,8 +19342,7 @@ - mons pubis (post-embryonic human) - FMA:20218 + mons pubis (post-embryonic human) @@ -20628,8 +19361,7 @@ - coccyx (post-embryonic human) - FMA:20229 + coccyx (post-embryonic human) @@ -20648,8 +19380,7 @@ - gluteal sulcus (post-embryonic human) - FMA:20233 + gluteal sulcus (post-embryonic human) @@ -20668,8 +19399,7 @@ - intergluteal cleft (post-embryonic human) - FMA:20234 + intergluteal cleft (post-embryonic human) @@ -20688,8 +19418,7 @@ - raphe of perineum (post-embryonic human) - FMA:20244 + raphe of perineum (post-embryonic human) @@ -20708,8 +19437,7 @@ - perineal body (post-embryonic human) - FMA:20274 + perineal body (post-embryonic human) @@ -20728,8 +19456,7 @@ - anterior abdominal wall muscle (post-embryonic human) - FMA:20278 + anterior abdominal wall muscle (post-embryonic human) @@ -20748,8 +19475,7 @@ - lacrimal sac (post-embryonic human) - FMA:20289 + lacrimal sac (post-embryonic human) @@ -20768,8 +19494,7 @@ - conjunctival sac (post-embryonic human) - FMA:20291 + conjunctival sac (post-embryonic human) @@ -20788,8 +19513,7 @@ - oral cavity (post-embryonic human) - FMA:20292 + oral cavity (post-embryonic human) @@ -20808,8 +19532,7 @@ - anal part of perineum (post-embryonic human) - FMA:20347 + anal part of perineum (post-embryonic human) @@ -20828,8 +19551,7 @@ - labium majora (post-embryonic human) - FMA:20367 + labium majora (post-embryonic human) @@ -20848,8 +19570,7 @@ - labium minora (post-embryonic human) - FMA:20374 + labium minora (post-embryonic human) @@ -20868,8 +19589,7 @@ - epigastrium (post-embryonic human) - FMA:20389 + epigastrium (post-embryonic human) @@ -20888,8 +19608,7 @@ - round ligament of uterus (post-embryonic human) - FMA:20420 + round ligament of uterus (post-embryonic human) @@ -20908,8 +19627,7 @@ - gubernaculum testis (post-embryonic human) - FMA:20421 + gubernaculum testis (post-embryonic human) @@ -20928,8 +19646,7 @@ - cervical os (post-embryonic human) - FMA:20422 + cervical os (post-embryonic human) @@ -20948,8 +19665,7 @@ - scrotum skin (post-embryonic human) - FMA:20432 + scrotum skin (post-embryonic human) @@ -20968,8 +19684,7 @@ - mammalian vulva (post-embryonic human) - FMA:20462 + mammalian vulva (post-embryonic human) @@ -20988,8 +19703,7 @@ - perirenal fat (post-embryonic human) - FMA:20502 + perirenal fat (post-embryonic human) @@ -21008,8 +19722,7 @@ - pararenal fat (post-embryonic human) - FMA:20503 + pararenal fat (post-embryonic human) @@ -21028,8 +19741,7 @@ - suspensory ligament of duodenum (post-embryonic human) - FMA:20509 + suspensory ligament of duodenum (post-embryonic human) @@ -21048,8 +19760,7 @@ - peritoneal mesentery (post-embryonic human) - FMA:20570 + peritoneal mesentery (post-embryonic human) @@ -21068,8 +19779,7 @@ - fold of peritoneum (post-embryonic human) - FMA:20610 + fold of peritoneum (post-embryonic human) @@ -21088,8 +19798,7 @@ - subhepatic recess (post-embryonic human) - FMA:20676 + subhepatic recess (post-embryonic human) @@ -21108,8 +19817,7 @@ - left subhepatic recess (post-embryonic human) - FMA:20677 + left subhepatic recess (post-embryonic human) @@ -21128,8 +19836,7 @@ - inferior epigastric artery (post-embryonic human) - FMA:20686 + inferior epigastric artery (post-embryonic human) @@ -21148,8 +19855,7 @@ - deep circumflex iliac artery (post-embryonic human) - FMA:20687 + deep circumflex iliac artery (post-embryonic human) @@ -21168,8 +19874,7 @@ - septum of scrotum (post-embryonic human) - FMA:20729 + septum of scrotum (post-embryonic human) @@ -21188,8 +19893,7 @@ - superficial epigastric artery (post-embryonic human) - FMA:20734 + superficial epigastric artery (post-embryonic human) @@ -21208,8 +19912,7 @@ - superficial circumflex iliac artery (post-embryonic human) - FMA:20737 + superficial circumflex iliac artery (post-embryonic human) @@ -21228,8 +19931,7 @@ - superficial external pudendal artery (post-embryonic human) - FMA:20738 + superficial external pudendal artery (post-embryonic human) @@ -21248,8 +19950,7 @@ - deep external pudendal artery (post-embryonic human) - FMA:20739 + deep external pudendal artery (post-embryonic human) @@ -21268,8 +19969,7 @@ - deep femoral artery (post-embryonic human) - FMA:20741 + deep femoral artery (post-embryonic human) @@ -21288,8 +19988,7 @@ - medial circumflex femoral artery (post-embryonic human) - FMA:20799 + medial circumflex femoral artery (post-embryonic human) @@ -21308,8 +20007,7 @@ - inferior rectal artery (post-embryonic human) - FMA:20824 + inferior rectal artery (post-embryonic human) @@ -21328,8 +20026,7 @@ - perineal artery (post-embryonic human) - FMA:20836 + perineal artery (post-embryonic human) @@ -21348,8 +20045,7 @@ - penile bulb artery (post-embryonic human) - FMA:20864 + penile bulb artery (post-embryonic human) @@ -21368,8 +20064,7 @@ - dorsal artery of clitoris (post-embryonic human) - FMA:20867 + dorsal artery of clitoris (post-embryonic human) @@ -21388,8 +20083,7 @@ - deep artery of clitoris (post-embryonic human) - FMA:20870 + deep artery of clitoris (post-embryonic human) @@ -21408,8 +20102,7 @@ - posterior labial artery (post-embryonic human) - FMA:20886 + posterior labial artery (post-embryonic human) @@ -21428,8 +20121,7 @@ - vestibular bulb artery (post-embryonic human) - FMA:20900 + vestibular bulb artery (post-embryonic human) @@ -21448,8 +20140,7 @@ - urethral artery (post-embryonic human) - FMA:20903 + urethral artery (post-embryonic human) @@ -21468,8 +20159,7 @@ - secretion of serous membrane (post-embryonic human) - FMA:20932 + secretion of serous membrane (post-embryonic human) @@ -21488,8 +20178,7 @@ - cerebrospinal fluid (post-embryonic human) - FMA:20935 + cerebrospinal fluid (post-embryonic human) @@ -21508,8 +20197,7 @@ - ovarian fossa (post-embryonic human) - FMA:21030 + ovarian fossa (post-embryonic human) @@ -21528,8 +20216,7 @@ - helicine branch of uterine artery (post-embryonic human) - FMA:21101 + helicine branch of uterine artery (post-embryonic human) @@ -21548,8 +20235,7 @@ - inferior epigastric vein (post-embryonic human) - FMA:21162 + inferior epigastric vein (post-embryonic human) @@ -21568,8 +20254,7 @@ - deep circumflex iliac vein (post-embryonic human) - FMA:21182 + deep circumflex iliac vein (post-embryonic human) @@ -21588,8 +20273,7 @@ - femoral vein (post-embryonic human) - FMA:21185 + femoral vein (post-embryonic human) @@ -21608,8 +20292,7 @@ - pubic vein (post-embryonic human) - FMA:21200 + pubic vein (post-embryonic human) @@ -21628,8 +20311,7 @@ - perineal vein (post-embryonic human) - FMA:21246 + perineal vein (post-embryonic human) @@ -21648,8 +20330,7 @@ - penile bulb vein (post-embryonic human) - FMA:21267 + penile bulb vein (post-embryonic human) @@ -21668,8 +20349,7 @@ - urethral vein (post-embryonic human) - FMA:21270 + urethral vein (post-embryonic human) @@ -21688,8 +20368,7 @@ - vestibular bulb vein (post-embryonic human) - FMA:21273 + vestibular bulb vein (post-embryonic human) @@ -21708,8 +20387,7 @@ - deep dorsal vein of penis (post-embryonic human) - FMA:21354 + deep dorsal vein of penis (post-embryonic human) @@ -21728,8 +20406,7 @@ - great saphenous vein (post-embryonic human) - FMA:21376 + great saphenous vein (post-embryonic human) @@ -21748,8 +20425,7 @@ - superficial external pudendal vein (post-embryonic human) - FMA:21377 + superficial external pudendal vein (post-embryonic human) @@ -21768,8 +20444,7 @@ - superficial dorsal vein of penis (post-embryonic human) - FMA:21384 + superficial dorsal vein of penis (post-embryonic human) @@ -21788,8 +20463,7 @@ - stroma of bone marrow (post-embryonic human) - FMA:21426 + stroma of bone marrow (post-embryonic human) @@ -21808,8 +20482,7 @@ - sacro-iliac joint (post-embryonic human) - FMA:21440 + sacro-iliac joint (post-embryonic human) @@ -21828,8 +20501,7 @@ - male urethral gland (post-embryonic human) - FMA:21443 + male urethral gland (post-embryonic human) @@ -21848,8 +20520,7 @@ - female urethral gland (post-embryonic human) - FMA:21444 + female urethral gland (post-embryonic human) @@ -21868,8 +20539,7 @@ - paraurethral duct (post-embryonic human) - FMA:21445 + paraurethral duct (post-embryonic human) @@ -21888,8 +20558,7 @@ - parietal peritoneum (post-embryonic human) - FMA:21451 + parietal peritoneum (post-embryonic human) @@ -21908,8 +20577,7 @@ - ligament (post-embryonic human) - FMA:21496 + ligament (post-embryonic human) @@ -21928,8 +20596,7 @@ - cremaster muscle (post-embryonic human) - FMA:21531 + cremaster muscle (post-embryonic human) @@ -21948,8 +20615,7 @@ - submucous nerve plexus (post-embryonic human) - FMA:21542 + submucous nerve plexus (post-embryonic human) @@ -21968,8 +20634,7 @@ - deep cervical fascia (post-embryonic human) - FMA:21791 + deep cervical fascia (post-embryonic human) @@ -21988,8 +20653,7 @@ - paraurethral duct (post-embryonic human) - FMA:21860 + paraurethral duct (post-embryonic human) @@ -22008,8 +20672,7 @@ - perineal nerve (post-embryonic human) - FMA:21866 + perineal nerve (post-embryonic human) @@ -22028,8 +20691,7 @@ - dorsal nerve of penis (post-embryonic human) - FMA:21869 + dorsal nerve of penis (post-embryonic human) @@ -22048,8 +20710,7 @@ - dorsal nerve of clitoris (post-embryonic human) - FMA:21870 + dorsal nerve of clitoris (post-embryonic human) @@ -22068,8 +20729,7 @@ - external anal sphincter (post-embryonic human) - FMA:21930 + external anal sphincter (post-embryonic human) @@ -22088,8 +20748,7 @@ - Alcock's canal (post-embryonic human) - FMA:22071 + Alcock's canal (post-embryonic human) @@ -22108,8 +20767,7 @@ - proximal-distal subdivision of colon (post-embryonic human) - FMA:222905 + proximal-distal subdivision of colon (post-embryonic human) @@ -22128,8 +20786,7 @@ - obturator internus (post-embryonic human) - FMA:22298 + obturator internus (post-embryonic human) @@ -22148,8 +20805,7 @@ - obturator externus (post-embryonic human) - FMA:22299 + obturator externus (post-embryonic human) @@ -22168,8 +20824,7 @@ - tendon of obturator internus (post-embryonic human) - FMA:22300 + tendon of obturator internus (post-embryonic human) @@ -22188,8 +20843,7 @@ - commissural leaflet of mitral valve (post-embryonic human) - FMA:223086 + commissural leaflet of mitral valve (post-embryonic human) @@ -22208,8 +20862,7 @@ - iliacus muscle (post-embryonic human) - FMA:22310 + iliacus muscle (post-embryonic human) @@ -22228,8 +20881,7 @@ - gluteus maximus (post-embryonic human) - FMA:22314 + gluteus maximus (post-embryonic human) @@ -22248,8 +20900,7 @@ - gluteus medius (post-embryonic human) - FMA:22315 + gluteus medius (post-embryonic human) @@ -22268,8 +20919,7 @@ - gluteus minimus (post-embryonic human) - FMA:22317 + gluteus minimus (post-embryonic human) @@ -22288,8 +20938,7 @@ - superior gemellus muscle (post-embryonic human) - FMA:22318 + superior gemellus muscle (post-embryonic human) @@ -22308,8 +20957,7 @@ - gemellus muscle (post-embryonic human) - FMA:22319 + gemellus muscle (post-embryonic human) @@ -22328,8 +20976,7 @@ - inferior gemellus muscle (post-embryonic human) - FMA:22320 + inferior gemellus muscle (post-embryonic human) @@ -22348,8 +20995,7 @@ - intrapulmonary bronchus (post-embryonic human) - FMA:223208 + intrapulmonary bronchus (post-embryonic human) @@ -22368,8 +21014,7 @@ - quadratus femoris (post-embryonic human) - FMA:22321 + quadratus femoris (post-embryonic human) @@ -22388,8 +21033,7 @@ - basal zone of heart (post-embryonic human) - FMA:223286 + basal zone of heart (post-embryonic human) @@ -22408,8 +21052,7 @@ - psoas minor muscle (post-embryonic human) - FMA:22350 + psoas minor muscle (post-embryonic human) @@ -22428,8 +21071,7 @@ - sartorius muscle (post-embryonic human) - FMA:22353 + sartorius muscle (post-embryonic human) @@ -22448,8 +21090,7 @@ - biceps femoris (post-embryonic human) - FMA:22356 + biceps femoris (post-embryonic human) @@ -22468,8 +21109,7 @@ - semitendinosus (post-embryonic human) - FMA:22357 + semitendinosus (post-embryonic human) @@ -22488,8 +21128,7 @@ - right nipple (post-embryonic human) - FMA:223693 + right nipple (post-embryonic human) @@ -22508,8 +21147,7 @@ - left nipple (post-embryonic human) - FMA:223695 + left nipple (post-embryonic human) @@ -22528,8 +21166,7 @@ - femoral canal (post-embryonic human) - FMA:22405 + femoral canal (post-embryonic human) @@ -22548,8 +21185,7 @@ - supraauricular point (post-embryonic human) - FMA:224222 + supraauricular point (post-embryonic human) @@ -22568,8 +21204,7 @@ - tensor fasciae latae muscle (post-embryonic human) - FMA:22423 + tensor fasciae latae muscle (post-embryonic human) @@ -22588,8 +21223,7 @@ - muscle of posterior compartment of hindlimb stylopod (post-embryonic human) - FMA:22427 + muscle of posterior compartment of hindlimb stylopod (post-embryonic human) @@ -22608,8 +21242,7 @@ - quadriceps femoris (post-embryonic human) - FMA:22428 + quadriceps femoris (post-embryonic human) @@ -22628,8 +21261,7 @@ - rectus femoris (post-embryonic human) - FMA:22430 + rectus femoris (post-embryonic human) @@ -22648,8 +21280,7 @@ - vastus lateralis (post-embryonic human) - FMA:22431 + vastus lateralis (post-embryonic human) @@ -22668,8 +21299,7 @@ - vastus medialis (post-embryonic human) - FMA:22432 + vastus medialis (post-embryonic human) @@ -22688,8 +21318,7 @@ - vastus intermedius (post-embryonic human) - FMA:22433 + vastus intermedius (post-embryonic human) @@ -22708,8 +21337,7 @@ - semimembranosus muscle (post-embryonic human) - FMA:22438 + semimembranosus muscle (post-embryonic human) @@ -22728,8 +21356,7 @@ - pectineus muscle (post-embryonic human) - FMA:22440 + pectineus muscle (post-embryonic human) @@ -22748,8 +21375,7 @@ - adductor longus (post-embryonic human) - FMA:22441 + adductor longus (post-embryonic human) @@ -22768,8 +21394,7 @@ - adductor brevis (post-embryonic human) - FMA:22442 + adductor brevis (post-embryonic human) @@ -22788,8 +21413,7 @@ - adductor magnus (post-embryonic human) - FMA:22443 + adductor magnus (post-embryonic human) @@ -22808,8 +21432,7 @@ - cranial lymph vasculature (post-embryonic human) - FMA:224562 + cranial lymph vasculature (post-embryonic human) @@ -22828,8 +21451,7 @@ - right retropharyngeal lymph node (post-embryonic human) - FMA:224626 + right retropharyngeal lymph node (post-embryonic human) @@ -22848,8 +21470,7 @@ - left retropharyngeal lymph node (post-embryonic human) - FMA:224628 + left retropharyngeal lymph node (post-embryonic human) @@ -22868,8 +21489,7 @@ - hindlimb stylopod muscle (post-embryonic human) - FMA:22470 + hindlimb stylopod muscle (post-embryonic human) @@ -22888,8 +21508,7 @@ - hindlimb zeugopod muscle (post-embryonic human) - FMA:22471 + hindlimb zeugopod muscle (post-embryonic human) @@ -22908,8 +21527,7 @@ - haversian canal (post-embryonic human) - FMA:224787 + haversian canal (post-embryonic human) @@ -22928,8 +21546,7 @@ - bone tissue (post-embryonic human) - FMA:224804 + bone tissue (post-embryonic human) @@ -22948,8 +21565,7 @@ - lamellar bone (post-embryonic human) - FMA:224806 + lamellar bone (post-embryonic human) @@ -22968,8 +21584,7 @@ - prefrontal cortex (post-embryonic human) - FMA:224850 + prefrontal cortex (post-embryonic human) @@ -22988,8 +21603,7 @@ - premotor cortex (post-embryonic human) - FMA:224852 + premotor cortex (post-embryonic human) @@ -23008,8 +21622,7 @@ - primary motor cortex (post-embryonic human) - FMA:224854 + primary motor cortex (post-embryonic human) @@ -23028,8 +21641,7 @@ - supplemental motor cortex (post-embryonic human) - FMA:224858 + supplemental motor cortex (post-embryonic human) @@ -23048,8 +21660,7 @@ - saphenous artery (post-embryonic human) - FMA:22510 + saphenous artery (post-embryonic human) @@ -23068,8 +21679,7 @@ - popliteal area (post-embryonic human) - FMA:22525 + popliteal area (post-embryonic human) @@ -23088,8 +21698,7 @@ - vasculature of spleen (post-embryonic human) - FMA:225251 + vasculature of spleen (post-embryonic human) @@ -23108,8 +21717,7 @@ - vasculature of integument (post-embryonic human) - FMA:225275 + vasculature of integument (post-embryonic human) @@ -23128,8 +21736,7 @@ - vas deferens epithelium (post-embryonic human) - FMA:225317 + vas deferens epithelium (post-embryonic human) @@ -23148,8 +21755,7 @@ - tibialis anterior (post-embryonic human) - FMA:22532 + tibialis anterior (post-embryonic human) @@ -23168,8 +21774,7 @@ - extensor digitorum longus (post-embryonic human) - FMA:22534 + extensor digitorum longus (post-embryonic human) @@ -23188,8 +21793,7 @@ - apical region of left ventricle (post-embryonic human) - FMA:225374 + apical region of left ventricle (post-embryonic human) @@ -23208,8 +21812,7 @@ - fibularis tertius (post-embryonic human) - FMA:22538 + fibularis tertius (post-embryonic human) @@ -23228,8 +21831,7 @@ - fibularis longus (post-embryonic human) - FMA:22539 + fibularis longus (post-embryonic human) @@ -23248,8 +21850,7 @@ - fibularis brevis (post-embryonic human) - FMA:22540 + fibularis brevis (post-embryonic human) @@ -23268,8 +21869,7 @@ - gastrocnemius (post-embryonic human) - FMA:22541 + gastrocnemius (post-embryonic human) @@ -23288,8 +21888,7 @@ - soleus muscle (post-embryonic human) - FMA:22542 + soleus muscle (post-embryonic human) @@ -23308,8 +21907,7 @@ - plantaris (post-embryonic human) - FMA:22543 + plantaris (post-embryonic human) @@ -23328,8 +21926,7 @@ - sural artery (post-embryonic human) - FMA:22570 + sural artery (post-embryonic human) @@ -23348,8 +21945,7 @@ - popliteus muscle (post-embryonic human) - FMA:22590 + popliteus muscle (post-embryonic human) @@ -23368,8 +21964,7 @@ - flexor hallucis longus (post-embryonic human) - FMA:22593 + flexor hallucis longus (post-embryonic human) @@ -23388,8 +21983,7 @@ - muscle of vertebral column (post-embryonic human) - FMA:22594 + muscle of vertebral column (post-embryonic human) @@ -23408,8 +22002,7 @@ - lateral periolivary nucleus (post-embryonic human) - FMA:226217 + lateral periolivary nucleus (post-embryonic human) @@ -23428,8 +22021,7 @@ - auditory cortex (post-embryonic human) - FMA:226221 + auditory cortex (post-embryonic human) @@ -23448,8 +22040,7 @@ - medial superior olivary nucleus (post-embryonic human) - FMA:226223 + medial superior olivary nucleus (post-embryonic human) @@ -23468,8 +22059,7 @@ - subparafascicular nucleus (post-embryonic human) - FMA:226239 + subparafascicular nucleus (post-embryonic human) @@ -23488,8 +22078,7 @@ - cardiac muscle tissue of cardiac septum (post-embryonic human) - FMA:226279 + cardiac muscle tissue of cardiac septum (post-embryonic human) @@ -23508,8 +22097,7 @@ - proximal epiphysis of phalanx of manus (post-embryonic human) - FMA:226482 + proximal epiphysis of phalanx of manus (post-embryonic human) @@ -23528,8 +22116,7 @@ - splenius capitis (post-embryonic human) - FMA:22653 + splenius capitis (post-embryonic human) @@ -23548,8 +22135,7 @@ - axillary artery (post-embryonic human) - FMA:22654 + axillary artery (post-embryonic human) @@ -23568,8 +22154,7 @@ - distal epiphysis of phalanx of manus (post-embryonic human) - FMA:226577 + distal epiphysis of phalanx of manus (post-embryonic human) @@ -23588,8 +22173,7 @@ - superior thoracic artery (post-embryonic human) - FMA:22668 + superior thoracic artery (post-embryonic human) @@ -23608,8 +22192,7 @@ - thoraco-acromial artery (post-embryonic human) - FMA:22671 + thoraco-acromial artery (post-embryonic human) @@ -23628,8 +22211,7 @@ - lateral thoracic artery (post-embryonic human) - FMA:22674 + lateral thoracic artery (post-embryonic human) @@ -23648,8 +22230,7 @@ - subscapular artery (post-embryonic human) - FMA:22677 + subscapular artery (post-embryonic human) @@ -23668,8 +22249,7 @@ - splenius cervicis (post-embryonic human) - FMA:22681 + splenius cervicis (post-embryonic human) @@ -23688,8 +22268,7 @@ - brachial artery (post-embryonic human) - FMA:22689 + brachial artery (post-embryonic human) @@ -23708,8 +22287,7 @@ - branch of brachial artery (post-embryonic human) - FMA:22693 + branch of brachial artery (post-embryonic human) @@ -23728,8 +22306,7 @@ - deep brachial artery (post-embryonic human) - FMA:22695 + deep brachial artery (post-embryonic human) @@ -23748,8 +22325,7 @@ - iliocostalis lumborum (post-embryonic human) - FMA:22702 + iliocostalis lumborum (post-embryonic human) @@ -23768,8 +22344,7 @@ - iliocostalis thoracis muscle (post-embryonic human) - FMA:22703 + iliocostalis thoracis muscle (post-embryonic human) @@ -23788,8 +22363,7 @@ - iliocostalis cervicis muscle (post-embryonic human) - FMA:22704 + iliocostalis cervicis muscle (post-embryonic human) @@ -23808,8 +22382,7 @@ - longissimus thoracis muscle (post-embryonic human) - FMA:22709 + longissimus thoracis muscle (post-embryonic human) @@ -23828,8 +22401,7 @@ - longissimus cervicis muscle (post-embryonic human) - FMA:22711 + longissimus cervicis muscle (post-embryonic human) @@ -23848,8 +22420,7 @@ - longissimus capitis (post-embryonic human) - FMA:22714 + longissimus capitis (post-embryonic human) @@ -23868,8 +22439,7 @@ - radial artery (post-embryonic human) - FMA:22730 + radial artery (post-embryonic human) @@ -23888,8 +22458,7 @@ - spinalis thoracis muscle (post-embryonic human) - FMA:22765 + spinalis thoracis muscle (post-embryonic human) @@ -23908,8 +22477,7 @@ - spinalis cervicis muscle (post-embryonic human) - FMA:22770 + spinalis cervicis muscle (post-embryonic human) @@ -23928,8 +22496,7 @@ - spinalis capitis muscle (post-embryonic human) - FMA:22775 + spinalis capitis muscle (post-embryonic human) @@ -23948,8 +22515,7 @@ - ulnar artery (post-embryonic human) - FMA:22796 + ulnar artery (post-embryonic human) @@ -23968,8 +22534,7 @@ - branch of ulnar artery (post-embryonic human) - FMA:22799 + branch of ulnar artery (post-embryonic human) @@ -23988,8 +22553,7 @@ - semispinalis muscle (post-embryonic human) - FMA:22823 + semispinalis muscle (post-embryonic human) @@ -24008,8 +22572,7 @@ - semispinalis thoracis (post-embryonic human) - FMA:22828 + semispinalis thoracis (post-embryonic human) @@ -24028,8 +22591,7 @@ - semispinalis cervicis (post-embryonic human) - FMA:22829 + semispinalis cervicis (post-embryonic human) @@ -24048,8 +22610,7 @@ - semispinalis capitis (post-embryonic human) - FMA:22830 + semispinalis capitis (post-embryonic human) @@ -24068,8 +22629,7 @@ - superficial palmar arch (post-embryonic human) - FMA:22834 + superficial palmar arch (post-embryonic human) @@ -24088,8 +22648,7 @@ - common palmar digital artery (post-embryonic human) - FMA:22852 + common palmar digital artery (post-embryonic human) @@ -24108,8 +22667,7 @@ - throat (post-embryonic human) - FMA:228738 + throat (post-embryonic human) @@ -24128,8 +22686,7 @@ - waist (post-embryonic human) - FMA:228775 + waist (post-embryonic human) @@ -24148,8 +22705,7 @@ - basilic vein (post-embryonic human) - FMA:22908 + basilic vein (post-embryonic human) @@ -24168,8 +22724,7 @@ - anterior part of tongue (post-embryonic human) - FMA:229084 + anterior part of tongue (post-embryonic human) @@ -24188,8 +22743,7 @@ - common palmar digital vein (post-embryonic human) - FMA:22923 + common palmar digital vein (post-embryonic human) @@ -24208,8 +22762,7 @@ - proper palmar digital vein (post-embryonic human) - FMA:22926 + proper palmar digital vein (post-embryonic human) @@ -24228,8 +22781,7 @@ - brachial vein (post-embryonic human) - FMA:22934 + brachial vein (post-embryonic human) @@ -24248,8 +22800,7 @@ - ventrolateral nucleus of solitary tract (post-embryonic human) - FMA:229583 + ventrolateral nucleus of solitary tract (post-embryonic human) @@ -24268,8 +22819,7 @@ - medial nucleus of solitary tract (post-embryonic human) - FMA:229585 + medial nucleus of solitary tract (post-embryonic human) @@ -24288,8 +22838,7 @@ - median basilic vein (post-embryonic human) - FMA:22963 + median basilic vein (post-embryonic human) @@ -24308,8 +22857,7 @@ - skin of pelvis (post-embryonic human) - FMA:22984 + skin of pelvis (post-embryonic human) @@ -24328,8 +22876,7 @@ - skin of back (post-embryonic human) - FMA:22985 + skin of back (post-embryonic human) @@ -24348,8 +22895,7 @@ - skin of abdomen (post-embryonic human) - FMA:22988 + skin of abdomen (post-embryonic human) @@ -24368,8 +22914,7 @@ - skin of abdomen (post-embryonic human) - FMA:23000 + skin of abdomen (post-embryonic human) @@ -24388,8 +22933,7 @@ - skin of neck (post-embryonic human) - FMA:23021 + skin of neck (post-embryonic human) @@ -24408,8 +22952,7 @@ - skin of neck (post-embryonic human) - FMA:23022 + skin of neck (post-embryonic human) @@ -24428,8 +22971,7 @@ - skin of front of neck (post-embryonic human) - FMA:23023 + skin of front of neck (post-embryonic human) @@ -24448,8 +22990,7 @@ - skin of thorax (post-embryonic human) - FMA:23028 + skin of thorax (post-embryonic human) @@ -24468,8 +23009,7 @@ - skin of thorax (post-embryonic human) - FMA:23029 + skin of thorax (post-embryonic human) @@ -24488,8 +23028,7 @@ - apical region of right ventricle (post-embryonic human) - FMA:230605 + apical region of right ventricle (post-embryonic human) @@ -24508,8 +23047,7 @@ - rotator muscle of the vertebral column (post-embryonic human) - FMA:23081 + rotator muscle of the vertebral column (post-embryonic human) @@ -24528,8 +23066,7 @@ - skin of trunk (post-embryonic human) - FMA:23093 + skin of trunk (post-embryonic human) @@ -24548,8 +23085,7 @@ - middle phalanx of pedal digit 5 (post-embryonic human) - FMA:230984 + middle phalanx of pedal digit 5 (post-embryonic human) @@ -24568,8 +23104,7 @@ - skin of limb (post-embryonic human) - FMA:23100 + skin of limb (post-embryonic human) @@ -24588,8 +23123,7 @@ - caudal linear nucleus (post-embryonic human) - FMA:231003 + caudal linear nucleus (post-embryonic human) @@ -24608,8 +23142,7 @@ - forelimb skin (post-embryonic human) - FMA:23101 + forelimb skin (post-embryonic human) @@ -24628,8 +23161,7 @@ - hindlimb skin (post-embryonic human) - FMA:23102 + hindlimb skin (post-embryonic human) @@ -24648,8 +23180,7 @@ - subscapular vein (post-embryonic human) - FMA:23113 + subscapular vein (post-embryonic human) @@ -24668,8 +23199,7 @@ - acropodial skeleton (post-embryonic human) - FMA:231315 + acropodial skeleton (post-embryonic human) @@ -24688,8 +23218,7 @@ - cuneiform nucleus (post-embryonic human) - FMA:231327 + cuneiform nucleus (post-embryonic human) @@ -24708,8 +23237,7 @@ - body proper (post-embryonic human) - FMA:231424 + body proper (post-embryonic human) @@ -24728,8 +23256,7 @@ - leptomeninx (post-embryonic human) - FMA:231515 + leptomeninx (post-embryonic human) @@ -24748,8 +23275,7 @@ - layer of dura mater (post-embryonic human) - FMA:231545 + layer of dura mater (post-embryonic human) @@ -24768,8 +23294,7 @@ - periosteal dura mater (post-embryonic human) - FMA:231547 + periosteal dura mater (post-embryonic human) @@ -24788,8 +23313,7 @@ - meningeal dura mater (post-embryonic human) - FMA:231549 + meningeal dura mater (post-embryonic human) @@ -24808,8 +23332,7 @@ - arachnoid barrier layer (post-embryonic human) - FMA:231559 + arachnoid barrier layer (post-embryonic human) @@ -24828,8 +23351,7 @@ - meningeal cluster (post-embryonic human) - FMA:231572 + meningeal cluster (post-embryonic human) @@ -24848,8 +23370,7 @@ - wall of synovial tendon sheath (post-embryonic human) - FMA:231590 + wall of synovial tendon sheath (post-embryonic human) @@ -24868,8 +23389,7 @@ - pectoral girdle region (post-embryonic human) - FMA:23217 + pectoral girdle region (post-embryonic human) @@ -24888,8 +23408,7 @@ - lateral superior deep cervical lymph node (post-embryonic human) - FMA:232351 + lateral superior deep cervical lymph node (post-embryonic human) @@ -24908,8 +23427,7 @@ - anterior superior deep cervical lymph node (post-embryonic human) - FMA:232355 + anterior superior deep cervical lymph node (post-embryonic human) @@ -24928,8 +23446,7 @@ - lateral inferior deep cervical lymph node (post-embryonic human) - FMA:232358 + lateral inferior deep cervical lymph node (post-embryonic human) @@ -24948,8 +23465,7 @@ - anterior inferior deep cervical lymph node (post-embryonic human) - FMA:232361 + anterior inferior deep cervical lymph node (post-embryonic human) @@ -24968,8 +23484,7 @@ - lateral border of scapula (post-embryonic human) - FMA:23239 + lateral border of scapula (post-embryonic human) @@ -24988,8 +23503,7 @@ - medial border of scapula (post-embryonic human) - FMA:23242 + medial border of scapula (post-embryonic human) @@ -25008,8 +23522,7 @@ - superior angle of scapula (post-embryonic human) - FMA:23248 + superior angle of scapula (post-embryonic human) @@ -25028,8 +23541,7 @@ - lateral angle of scapula (post-embryonic human) - FMA:23249 + lateral angle of scapula (post-embryonic human) @@ -25048,8 +23560,7 @@ - neck of scapula (post-embryonic human) - FMA:23254 + neck of scapula (post-embryonic human) @@ -25068,8 +23579,7 @@ - right occipital lymph node (post-embryonic human) - FMA:232552 + right occipital lymph node (post-embryonic human) @@ -25088,8 +23598,7 @@ - left occipital lymph node (post-embryonic human) - FMA:232554 + left occipital lymph node (post-embryonic human) @@ -25108,8 +23617,7 @@ - right apical axillary lymph node (post-embryonic human) - FMA:232558 + right apical axillary lymph node (post-embryonic human) @@ -25128,8 +23636,7 @@ - left apical axillary lymph node (post-embryonic human) - FMA:232560 + left apical axillary lymph node (post-embryonic human) @@ -25148,8 +23655,7 @@ - right subscapular axillary lymph node (post-embryonic human) - FMA:232566 + right subscapular axillary lymph node (post-embryonic human) @@ -25168,8 +23674,7 @@ - left subscapular axillary lymph node (post-embryonic human) - FMA:232568 + left subscapular axillary lymph node (post-embryonic human) @@ -25188,8 +23693,7 @@ - right pectoral axillary lymph node (post-embryonic human) - FMA:232570 + right pectoral axillary lymph node (post-embryonic human) @@ -25208,8 +23712,7 @@ - left pectoral axillary lymph node (post-embryonic human) - FMA:232572 + left pectoral axillary lymph node (post-embryonic human) @@ -25228,8 +23731,7 @@ - right central axillary lymph node (post-embryonic human) - FMA:232574 + right central axillary lymph node (post-embryonic human) @@ -25248,8 +23750,7 @@ - left central axillary lymph node (post-embryonic human) - FMA:232576 + left central axillary lymph node (post-embryonic human) @@ -25268,8 +23769,7 @@ - acromion (post-embryonic human) - FMA:23260 + acromion (post-embryonic human) @@ -25288,8 +23788,7 @@ - supraglenoid tubercle (post-embryonic human) - FMA:23263 + supraglenoid tubercle (post-embryonic human) @@ -25308,8 +23807,7 @@ - glenoid fossa (post-embryonic human) - FMA:23275 + glenoid fossa (post-embryonic human) @@ -25328,8 +23826,7 @@ - jugular lymph node (post-embryonic human) - FMA:232854 + jugular lymph node (post-embryonic human) @@ -25348,8 +23845,7 @@ - glenoid labrum of scapula (post-embryonic human) - FMA:23290 + glenoid labrum of scapula (post-embryonic human) @@ -25368,8 +23864,7 @@ - sternal end of clavicle (post-embryonic human) - FMA:23297 + sternal end of clavicle (post-embryonic human) @@ -25388,8 +23883,7 @@ - neck of humerus (post-embryonic human) - FMA:23356 + neck of humerus (post-embryonic human) @@ -25408,8 +23902,7 @@ - proximal epiphysis of humerus (post-embryonic human) - FMA:23362 + proximal epiphysis of humerus (post-embryonic human) @@ -25428,8 +23921,7 @@ - trochlea of humerus (post-embryonic human) - FMA:23370 + trochlea of humerus (post-embryonic human) @@ -25448,8 +23940,7 @@ - capitulum of humerus (post-embryonic human) - FMA:23373 + capitulum of humerus (post-embryonic human) @@ -25468,8 +23959,7 @@ - condyle of humerus (post-embryonic human) - FMA:23377 + condyle of humerus (post-embryonic human) @@ -25488,8 +23978,7 @@ - ventral tubercle of humerus (post-embryonic human) - FMA:23390 + ventral tubercle of humerus (post-embryonic human) @@ -25508,8 +23997,7 @@ - lesser tubercle of humerus (post-embryonic human) - FMA:23393 + lesser tubercle of humerus (post-embryonic human) @@ -25528,8 +24016,7 @@ - facial lymphatic vessel (post-embryonic human) - FMA:233946 + facial lymphatic vessel (post-embryonic human) @@ -25548,8 +24035,7 @@ - pulmonary lymphatic vessel (post-embryonic human) - FMA:234006 + pulmonary lymphatic vessel (post-embryonic human) @@ -25568,8 +24054,7 @@ - deltopectoral crest (post-embryonic human) - FMA:23418 + deltopectoral crest (post-embryonic human) @@ -25588,8 +24073,7 @@ - outer fibrous layer of periosteum (post-embryonic human) - FMA:234354 + outer fibrous layer of periosteum (post-embryonic human) @@ -25608,8 +24092,7 @@ - inner cambium layer of periosteum (post-embryonic human) - FMA:234358 + inner cambium layer of periosteum (post-embryonic human) @@ -25628,8 +24111,7 @@ - supramandibular lymph node (post-embryonic human) - FMA:234376 + supramandibular lymph node (post-embryonic human) @@ -25648,8 +24130,7 @@ - external jugular lymph node (post-embryonic human) - FMA:234382 + external jugular lymph node (post-embryonic human) @@ -25668,8 +24149,7 @@ - sternal lymph node (post-embryonic human) - FMA:234388 + sternal lymph node (post-embryonic human) @@ -25688,8 +24168,7 @@ - upper intercostal lymph node (post-embryonic human) - FMA:234390 + upper intercostal lymph node (post-embryonic human) @@ -25708,8 +24187,7 @@ - lower intercostal lymph node (post-embryonic human) - FMA:234392 + lower intercostal lymph node (post-embryonic human) @@ -25728,8 +24206,7 @@ - entepicondyle of humerus (post-embryonic human) - FMA:23441 + entepicondyle of humerus (post-embryonic human) @@ -25748,8 +24225,7 @@ - ectepicondyle of humerus (post-embryonic human) - FMA:23442 + ectepicondyle of humerus (post-embryonic human) @@ -25768,8 +24244,7 @@ - subclavian lymph node (post-embryonic human) - FMA:234498 + subclavian lymph node (post-embryonic human) @@ -25788,8 +24263,7 @@ - olecranon fossa (post-embryonic human) - FMA:23450 + olecranon fossa (post-embryonic human) @@ -25808,8 +24282,7 @@ - antebrachial lymph node (post-embryonic human) - FMA:234527 + antebrachial lymph node (post-embryonic human) @@ -25828,8 +24301,7 @@ - radius bone (post-embryonic human) - FMA:23463 + radius bone (post-embryonic human) @@ -25848,8 +24320,7 @@ - ulna (post-embryonic human) - FMA:23466 + ulna (post-embryonic human) @@ -25868,8 +24339,7 @@ - neck of radius (post-embryonic human) - FMA:23479 + neck of radius (post-embryonic human) @@ -25888,8 +24358,7 @@ - pectoral lymphatic vessel (post-embryonic human) - FMA:234865 + pectoral lymphatic vessel (post-embryonic human) @@ -25908,8 +24377,7 @@ - jugular lymphatic vessel (post-embryonic human) - FMA:234908 + jugular lymphatic vessel (post-embryonic human) @@ -25928,8 +24396,7 @@ - oral part of spinal trigeminal nucleus (post-embryonic human) - FMA:235322 + oral part of spinal trigeminal nucleus (post-embryonic human) @@ -25948,8 +24415,7 @@ - interpolar part of spinal trigeminal nucleus (post-embryonic human) - FMA:235324 + interpolar part of spinal trigeminal nucleus (post-embryonic human) @@ -25968,8 +24434,7 @@ - coronoid process of ulna (post-embryonic human) - FMA:23616 + coronoid process of ulna (post-embryonic human) @@ -25988,8 +24453,7 @@ - trochlear notch (post-embryonic human) - FMA:23619 + trochlear notch (post-embryonic human) @@ -26008,8 +24472,7 @@ - styloid process of ulna (post-embryonic human) - FMA:23628 + styloid process of ulna (post-embryonic human) @@ -26028,8 +24491,7 @@ - posterior transverse temporal area 42 (post-embryonic human) - FMA:236867 + posterior transverse temporal area 42 (post-embryonic human) @@ -26048,8 +24510,7 @@ - primary visual cortex (post-embryonic human) - FMA:236871 + primary visual cortex (post-embryonic human) @@ -26068,8 +24529,7 @@ - radiale (post-embryonic human) - FMA:23709 + radiale (post-embryonic human) @@ -26088,8 +24548,7 @@ - intermedium (post-embryonic human) - FMA:23712 + intermedium (post-embryonic human) @@ -26108,8 +24567,7 @@ - ulnare (post-embryonic human) - FMA:23715 + ulnare (post-embryonic human) @@ -26128,8 +24586,7 @@ - pisiform (post-embryonic human) - FMA:23718 + pisiform (post-embryonic human) @@ -26148,8 +24605,7 @@ - distal carpal bone 1 (post-embryonic human) - FMA:23721 + distal carpal bone 1 (post-embryonic human) @@ -26168,8 +24624,7 @@ - distal carpal bone 2 (post-embryonic human) - FMA:23724 + distal carpal bone 2 (post-embryonic human) @@ -26188,8 +24643,7 @@ - distal carpal bone 3 (post-embryonic human) - FMA:23727 + distal carpal bone 3 (post-embryonic human) @@ -26208,8 +24662,7 @@ - distal carpal bone 4 (post-embryonic human) - FMA:23730 + distal carpal bone 4 (post-embryonic human) @@ -26228,8 +24681,7 @@ - border of scapula (post-embryonic human) - FMA:23797 + border of scapula (post-embryonic human) @@ -26248,8 +24700,7 @@ - angle of scapula (post-embryonic human) - FMA:23800 + angle of scapula (post-embryonic human) @@ -26268,8 +24719,7 @@ - skeleton (post-embryonic human) - FMA:23875 + skeleton (post-embryonic human) @@ -26288,8 +24738,7 @@ - articular system (post-embryonic human) - FMA:23878 + articular system (post-embryonic human) @@ -26308,8 +24757,7 @@ - subdivision of skeleton (post-embryonic human) - FMA:23879 + subdivision of skeleton (post-embryonic human) @@ -26328,8 +24776,7 @@ - skeletal system (post-embryonic human) - FMA:23881 + skeletal system (post-embryonic human) @@ -26348,8 +24795,7 @@ - carpal bone (post-embryonic human) - FMA:23889 + carpal bone (post-embryonic human) @@ -26368,8 +24814,7 @@ - cervical vertebral arch (post-embryonic human) - FMA:23893 + cervical vertebral arch (post-embryonic human) @@ -26388,8 +24833,7 @@ - transverse process of cervical vertebra (post-embryonic human) - FMA:23894 + transverse process of cervical vertebra (post-embryonic human) @@ -26408,8 +24852,7 @@ - metacarpal bone of digit 1 (post-embryonic human) - FMA:23899 + metacarpal bone of digit 1 (post-embryonic human) @@ -26428,8 +24871,7 @@ - metacarpal bone of digit 2 (post-embryonic human) - FMA:23900 + metacarpal bone of digit 2 (post-embryonic human) @@ -26448,8 +24890,7 @@ - metacarpal bone of digit 3 (post-embryonic human) - FMA:23901 + metacarpal bone of digit 3 (post-embryonic human) @@ -26468,8 +24909,7 @@ - metacarpal bone of digit 4 (post-embryonic human) - FMA:23902 + metacarpal bone of digit 4 (post-embryonic human) @@ -26488,8 +24928,7 @@ - metacarpal bone of digit 5 (post-embryonic human) - FMA:23903 + metacarpal bone of digit 5 (post-embryonic human) @@ -26508,8 +24947,7 @@ - phalanx of manus (post-embryonic human) - FMA:23914 + phalanx of manus (post-embryonic human) @@ -26528,8 +24966,7 @@ - proximal phalanx of manual digit 1 (post-embryonic human) - FMA:23918 + proximal phalanx of manual digit 1 (post-embryonic human) @@ -26548,8 +24985,7 @@ - proximal phalanx of manual digit 2 (post-embryonic human) - FMA:23919 + proximal phalanx of manual digit 2 (post-embryonic human) @@ -26568,8 +25004,7 @@ - proximal phalanx of manual digit 3 (post-embryonic human) - FMA:23920 + proximal phalanx of manual digit 3 (post-embryonic human) @@ -26588,8 +25023,7 @@ - proximal phalanx of manual digit 4 (post-embryonic human) - FMA:23921 + proximal phalanx of manual digit 4 (post-embryonic human) @@ -26608,8 +25042,7 @@ - proximal phalanx of manual digit 5 (post-embryonic human) - FMA:23922 + proximal phalanx of manual digit 5 (post-embryonic human) @@ -26628,8 +25061,7 @@ - middle phalanx of manual digit 2 (post-embryonic human) - FMA:23933 + middle phalanx of manual digit 2 (post-embryonic human) @@ -26648,8 +25080,7 @@ - middle phalanx of manual digit 3 (post-embryonic human) - FMA:23934 + middle phalanx of manual digit 3 (post-embryonic human) @@ -26668,8 +25099,7 @@ - middle phalanx of manual digit 4 (post-embryonic human) - FMA:23935 + middle phalanx of manual digit 4 (post-embryonic human) @@ -26688,8 +25118,7 @@ - middle phalanx of manual digit 5 (post-embryonic human) - FMA:23936 + middle phalanx of manual digit 5 (post-embryonic human) @@ -26708,8 +25137,7 @@ - distal phalanx of manual digit 1 (post-embryonic human) - FMA:23945 + distal phalanx of manual digit 1 (post-embryonic human) @@ -26728,8 +25156,7 @@ - distal phalanx of manual digit 2 (post-embryonic human) - FMA:23946 + distal phalanx of manual digit 2 (post-embryonic human) @@ -26748,8 +25175,7 @@ - distal phalanx of manual digit 3 (post-embryonic human) - FMA:23947 + distal phalanx of manual digit 3 (post-embryonic human) @@ -26768,8 +25194,7 @@ - distal phalanx of manual digit 4 (post-embryonic human) - FMA:23948 + distal phalanx of manual digit 4 (post-embryonic human) @@ -26788,8 +25213,7 @@ - distal phalanx of manual digit 5 (post-embryonic human) - FMA:23949 + distal phalanx of manual digit 5 (post-embryonic human) @@ -26808,8 +25232,7 @@ - vasculature of musculoskeletal system (post-embryonic human) - FMA:239607 + vasculature of musculoskeletal system (post-embryonic human) @@ -26828,8 +25251,7 @@ - prezygapophysis of cervical vertebra (post-embryonic human) - FMA:23969 + prezygapophysis of cervical vertebra (post-embryonic human) @@ -26848,8 +25270,7 @@ - postzygapophysis of cervical vertebra (post-embryonic human) - FMA:23970 + postzygapophysis of cervical vertebra (post-embryonic human) @@ -26868,8 +25289,7 @@ - arch of atlas (post-embryonic human) - FMA:23975 + arch of atlas (post-embryonic human) @@ -26888,8 +25308,7 @@ - cervical vertebra 1 arcus anterior (post-embryonic human) - FMA:23976 + cervical vertebra 1 arcus anterior (post-embryonic human) @@ -26908,8 +25327,7 @@ - posterior arch of atlas (post-embryonic human) - FMA:23977 + posterior arch of atlas (post-embryonic human) @@ -26928,8 +25346,7 @@ - transverse process of atlas (post-embryonic human) - FMA:23981 + transverse process of atlas (post-embryonic human) @@ -26948,8 +25365,7 @@ - cervical vertebra 1 anterior tubercle (post-embryonic human) - FMA:23991 + cervical vertebra 1 anterior tubercle (post-embryonic human) @@ -26968,8 +25384,7 @@ - mucosa of male urethra (post-embryonic human) - FMA:239937 + mucosa of male urethra (post-embryonic human) @@ -26988,8 +25403,7 @@ - mucosa of female urethra (post-embryonic human) - FMA:239940 + mucosa of female urethra (post-embryonic human) @@ -27008,8 +25422,7 @@ - transverse foramen (post-embryonic human) - FMA:23997 + transverse foramen (post-embryonic human) @@ -27028,8 +25441,7 @@ - transverse foramen of atlas (post-embryonic human) - FMA:23998 + transverse foramen of atlas (post-embryonic human) @@ -27048,8 +25460,7 @@ - transverse foramen of axis (post-embryonic human) - FMA:23999 + transverse foramen of axis (post-embryonic human) @@ -27068,8 +25479,7 @@ - central part of body of bony vertebral centrum (post-embryonic human) - FMA:24003 + central part of body of bony vertebral centrum (post-embryonic human) @@ -27088,8 +25498,7 @@ - zone of long bone (post-embryonic human) - FMA:24008 + zone of long bone (post-embryonic human) @@ -27108,8 +25517,7 @@ - epiphysis (post-embryonic human) - FMA:24012 + epiphysis (post-embryonic human) @@ -27128,8 +25536,7 @@ - diaphysis (post-embryonic human) - FMA:24013 + diaphysis (post-embryonic human) @@ -27148,8 +25555,7 @@ - metaphysis (post-embryonic human) - FMA:24014 + metaphysis (post-embryonic human) @@ -27168,8 +25574,7 @@ - compact bone tissue (post-embryonic human) - FMA:24018 + compact bone tissue (post-embryonic human) @@ -27188,8 +25593,7 @@ - trabecular bone tissue (post-embryonic human) - FMA:24019 + trabecular bone tissue (post-embryonic human) @@ -27208,8 +25612,7 @@ - cavity of bone organ (post-embryonic human) - FMA:24021 + cavity of bone organ (post-embryonic human) @@ -27228,8 +25631,7 @@ - medullary cavity of long bone (post-embryonic human) - FMA:24023 + medullary cavity of long bone (post-embryonic human) @@ -27248,8 +25650,7 @@ - pneumatic cavity of bone (post-embryonic human) - FMA:24028 + pneumatic cavity of bone (post-embryonic human) @@ -27268,8 +25669,7 @@ - right inguinal part of abdomen (post-embryonic human) - FMA:24036 + right inguinal part of abdomen (post-embryonic human) @@ -27288,8 +25688,7 @@ - left inguinal part of abdomen (post-embryonic human) - FMA:24037 + left inguinal part of abdomen (post-embryonic human) @@ -27308,8 +25707,7 @@ - inguinal part of abdomen (post-embryonic human) - FMA:24040 + inguinal part of abdomen (post-embryonic human) @@ -27328,8 +25726,7 @@ - periosteum (post-embryonic human) - FMA:24041 + periosteum (post-embryonic human) @@ -27348,8 +25745,7 @@ - odontoid process of cervical vertebra 2 (post-embryonic human) - FMA:24043 + odontoid process of cervical vertebra 2 (post-embryonic human) @@ -27368,8 +25764,7 @@ - vertebral arch of axis (post-embryonic human) - FMA:24053 + vertebral arch of axis (post-embryonic human) @@ -27388,8 +25783,7 @@ - epiphysis of phalanx of manus (post-embryonic human) - FMA:240707 + epiphysis of phalanx of manus (post-embryonic human) @@ -27408,8 +25802,7 @@ - life cycle stage (post-embryonic human) - FMA:24120 + life cycle stage (post-embryonic human) @@ -27428,8 +25821,7 @@ - anterior tubercle of transverse process of cervical vertebra (post-embryonic human) - FMA:24126 + anterior tubercle of transverse process of cervical vertebra (post-embryonic human) @@ -27448,8 +25840,7 @@ - posterior tubercle of transverse process of cervical vertebra (post-embryonic human) - FMA:24128 + posterior tubercle of transverse process of cervical vertebra (post-embryonic human) @@ -27468,8 +25859,7 @@ - bone tissue of epiphysis (post-embryonic human) - FMA:241364 + bone tissue of epiphysis (post-embryonic human) @@ -27488,8 +25878,7 @@ - anatomical surface (post-embryonic human) - FMA:24137 + anatomical surface (post-embryonic human) @@ -27508,8 +25897,7 @@ - bone tissue of proximal epiphysis (post-embryonic human) - FMA:241372 + bone tissue of proximal epiphysis (post-embryonic human) @@ -27528,8 +25916,7 @@ - bone tissue of distal epiphysis (post-embryonic human) - FMA:241374 + bone tissue of distal epiphysis (post-embryonic human) @@ -27548,8 +25935,7 @@ - cervical region of vertebral column (post-embryonic human) - FMA:24138 + cervical region of vertebral column (post-embryonic human) @@ -27568,8 +25954,7 @@ - skeleton of pectoral complex (post-embryonic human) - FMA:24139 + skeleton of pectoral complex (post-embryonic human) @@ -27588,8 +25973,7 @@ - skeleton of pelvic complex (post-embryonic human) - FMA:24140 + skeleton of pelvic complex (post-embryonic human) @@ -27608,8 +25992,7 @@ - pectoral girdle skeleton (post-embryonic human) - FMA:24141 + pectoral girdle skeleton (post-embryonic human) @@ -27628,8 +26011,7 @@ - forelimb skeleton (post-embryonic human) - FMA:24142 + forelimb skeleton (post-embryonic human) @@ -27648,8 +26030,7 @@ - hindlimb skeleton (post-embryonic human) - FMA:24144 + hindlimb skeleton (post-embryonic human) @@ -27668,8 +26049,7 @@ - skeleton of manus (post-embryonic human) - FMA:24159 + skeleton of manus (post-embryonic human) @@ -27688,8 +26068,7 @@ - limb segment (post-embryonic human) - FMA:241863 + limb segment (post-embryonic human) @@ -27708,8 +26087,7 @@ - dorsal part of neck (post-embryonic human) - FMA:24189 + dorsal part of neck (post-embryonic human) @@ -27728,8 +26106,7 @@ - cerebral hemisphere white matter (post-embryonic human) - FMA:241998 + cerebral hemisphere white matter (post-embryonic human) @@ -27748,8 +26125,7 @@ - limbic system (post-embryonic human) - FMA:242000 + limbic system (post-embryonic human) @@ -27768,8 +26144,7 @@ - orbitofrontal cortex (post-embryonic human) - FMA:242003 + orbitofrontal cortex (post-embryonic human) @@ -27788,8 +26163,7 @@ - vasculature of brain (post-embryonic human) - FMA:242007 + vasculature of brain (post-embryonic human) @@ -27808,8 +26182,7 @@ - corpora quadrigemina (post-embryonic human) - FMA:242157 + corpora quadrigemina (post-embryonic human) @@ -27828,8 +26201,7 @@ - dorsal thoracic segment of trunk (post-embryonic human) - FMA:24217 + dorsal thoracic segment of trunk (post-embryonic human) @@ -27848,8 +26220,7 @@ - subdivision of head (post-embryonic human) - FMA:24218 + subdivision of head (post-embryonic human) @@ -27868,8 +26239,7 @@ - cerebral subcortex (post-embryonic human) - FMA:242188 + cerebral subcortex (post-embryonic human) @@ -27888,8 +26258,7 @@ - cervical region (post-embryonic human) - FMA:24219 + cervical region (post-embryonic human) @@ -27908,8 +26277,7 @@ - cortex of cerebral lobe (post-embryonic human) - FMA:242197 + cortex of cerebral lobe (post-embryonic human) @@ -27928,8 +26296,7 @@ - frontal cortex (post-embryonic human) - FMA:242199 + frontal cortex (post-embryonic human) @@ -27948,8 +26315,7 @@ - temporal cortex (post-embryonic human) - FMA:242201 + temporal cortex (post-embryonic human) @@ -27968,8 +26334,7 @@ - parietal cortex (post-embryonic human) - FMA:242203 + parietal cortex (post-embryonic human) @@ -27988,8 +26353,7 @@ - occipital cortex (post-embryonic human) - FMA:242205 + occipital cortex (post-embryonic human) @@ -28008,8 +26372,7 @@ - skeleton of pes (post-embryonic human) - FMA:24222 + skeleton of pes (post-embryonic human) @@ -28028,8 +26391,7 @@ - insular cortex (post-embryonic human) - FMA:242223 + insular cortex (post-embryonic human) @@ -28048,8 +26410,7 @@ - limbic cortex (post-embryonic human) - FMA:242234 + limbic cortex (post-embryonic human) @@ -28068,8 +26429,7 @@ - sacral region (post-embryonic human) - FMA:24228 + sacral region (post-embryonic human) @@ -28088,8 +26448,7 @@ - cerebellum lobe (post-embryonic human) - FMA:242392 + cerebellum lobe (post-embryonic human) @@ -28108,8 +26467,7 @@ - somatosensory cortex (post-embryonic human) - FMA:242642 + somatosensory cortex (post-embryonic human) @@ -28128,8 +26486,7 @@ - visual cortex (post-embryonic human) - FMA:242644 + visual cortex (post-embryonic human) @@ -28148,8 +26505,7 @@ - right auditory cortex (post-embryonic human) - FMA:242654 + right auditory cortex (post-embryonic human) @@ -28168,8 +26524,7 @@ - left auditory cortex (post-embryonic human) - FMA:242656 + left auditory cortex (post-embryonic human) @@ -28188,8 +26543,7 @@ - ventricular system of central nervous system (post-embryonic human) - FMA:242675 + ventricular system of central nervous system (post-embryonic human) @@ -28208,8 +26562,7 @@ - fourth ventricle aperture (post-embryonic human) - FMA:242766 + fourth ventricle aperture (post-embryonic human) @@ -28228,8 +26581,7 @@ - ventricle of nervous system (post-embryonic human) - FMA:242770 + ventricle of nervous system (post-embryonic human) @@ -28248,8 +26600,7 @@ - wall of lateral ventricle (post-embryonic human) - FMA:242772 + wall of lateral ventricle (post-embryonic human) @@ -28268,8 +26619,7 @@ - wall of cerebral aqueduct (post-embryonic human) - FMA:242774 + wall of cerebral aqueduct (post-embryonic human) @@ -28288,8 +26638,7 @@ - wall of third ventricle (post-embryonic human) - FMA:242776 + wall of third ventricle (post-embryonic human) @@ -28308,8 +26657,7 @@ - wall of fourth ventricle (post-embryonic human) - FMA:242778 + wall of fourth ventricle (post-embryonic human) @@ -28328,8 +26676,7 @@ - wall of central canal of spinal cord (post-embryonic human) - FMA:242780 + wall of central canal of spinal cord (post-embryonic human) @@ -28348,8 +26695,7 @@ - ventricular system of brain (post-embryonic human) - FMA:242787 + ventricular system of brain (post-embryonic human) @@ -28368,8 +26714,7 @@ - ependyma (post-embryonic human) - FMA:242791 + ependyma (post-embryonic human) @@ -28388,8 +26733,7 @@ - choroid plexus epithelium (post-embryonic human) - FMA:242811 + choroid plexus epithelium (post-embryonic human) @@ -28408,8 +26752,7 @@ - lateral ventricle choroid plexus epithelium (post-embryonic human) - FMA:242815 + lateral ventricle choroid plexus epithelium (post-embryonic human) @@ -28428,8 +26771,7 @@ - third ventricle choroid plexus epithelium (post-embryonic human) - FMA:242821 + third ventricle choroid plexus epithelium (post-embryonic human) @@ -28448,8 +26790,7 @@ - fourth ventricle choroid plexus epithelium (post-embryonic human) - FMA:242823 + fourth ventricle choroid plexus epithelium (post-embryonic human) @@ -28468,8 +26809,7 @@ - lateral ventricle ependyma (post-embryonic human) - FMA:242825 + lateral ventricle ependyma (post-embryonic human) @@ -28488,8 +26828,7 @@ - third ventricle ependyma (post-embryonic human) - FMA:242833 + third ventricle ependyma (post-embryonic human) @@ -28508,8 +26847,7 @@ - fourth ventricle ependyma (post-embryonic human) - FMA:242835 + fourth ventricle ependyma (post-embryonic human) @@ -28528,8 +26866,7 @@ - brain ependyma (post-embryonic human) - FMA:242837 + brain ependyma (post-embryonic human) @@ -28548,8 +26885,7 @@ - spinal cord ependyma (post-embryonic human) - FMA:242839 + spinal cord ependyma (post-embryonic human) @@ -28568,8 +26904,7 @@ - wall of ventricular system of brain (post-embryonic human) - FMA:242841 + wall of ventricular system of brain (post-embryonic human) @@ -28588,8 +26923,7 @@ - lumen of central canal of spinal cord (post-embryonic human) - FMA:242845 + lumen of central canal of spinal cord (post-embryonic human) @@ -28608,8 +26942,7 @@ - tela choroidea (post-embryonic human) - FMA:242849 + tela choroidea (post-embryonic human) @@ -28628,8 +26961,7 @@ - anatomical conduit (post-embryonic human) - FMA:242873 + anatomical conduit (post-embryonic human) @@ -28648,8 +26980,7 @@ - vertebral foramen of atlas (post-embryonic human) - FMA:24293 + vertebral foramen of atlas (post-embryonic human) @@ -28668,8 +26999,7 @@ - anatomical plane (post-embryonic human) - FMA:242982 + anatomical plane (post-embryonic human) @@ -28688,8 +27018,7 @@ - endochondral bone (post-embryonic human) - FMA:24321 + endochondral bone (post-embryonic human) @@ -28708,8 +27037,7 @@ - tibia (post-embryonic human) - FMA:24476 + tibia (post-embryonic human) @@ -28728,8 +27056,7 @@ - fibula (post-embryonic human) - FMA:24479 + fibula (post-embryonic human) @@ -28748,8 +27075,7 @@ - patella (post-embryonic human) - FMA:24485 + patella (post-embryonic human) @@ -28768,8 +27094,7 @@ - tarsal bone (post-embryonic human) - FMA:24491 + tarsal bone (post-embryonic human) @@ -28788,8 +27113,7 @@ - metatarsal bone (post-embryonic human) - FMA:24492 + metatarsal bone (post-embryonic human) @@ -28808,8 +27132,7 @@ - phalanx of pes (post-embryonic human) - FMA:24493 + phalanx of pes (post-embryonic human) @@ -28828,8 +27151,7 @@ - calcaneus (post-embryonic human) - FMA:24496 + calcaneus (post-embryonic human) @@ -28848,8 +27170,7 @@ - navicular bone of pes (post-embryonic human) - FMA:24499 + navicular bone of pes (post-embryonic human) @@ -28868,8 +27189,7 @@ - metatarsal bone of digit 1 (post-embryonic human) - FMA:24502 + metatarsal bone of digit 1 (post-embryonic human) @@ -28888,8 +27208,7 @@ - metatarsal bone of digit 2 (post-embryonic human) - FMA:24503 + metatarsal bone of digit 2 (post-embryonic human) @@ -28908,8 +27227,7 @@ - metatarsal bone of digit 3 (post-embryonic human) - FMA:24504 + metatarsal bone of digit 3 (post-embryonic human) @@ -28928,8 +27246,7 @@ - metatarsal bone of digit 4 (post-embryonic human) - FMA:24505 + metatarsal bone of digit 4 (post-embryonic human) @@ -28948,8 +27265,7 @@ - metatarsal bone of digit 5 (post-embryonic human) - FMA:24506 + metatarsal bone of digit 5 (post-embryonic human) @@ -28968,8 +27284,7 @@ - distal tarsal bone (post-embryonic human) - FMA:24517 + distal tarsal bone (post-embryonic human) @@ -28988,8 +27303,7 @@ - distal tarsal bone 1 (post-embryonic human) - FMA:24518 + distal tarsal bone 1 (post-embryonic human) @@ -29008,8 +27322,7 @@ - distal tarsal bone 2 (post-embryonic human) - FMA:24519 + distal tarsal bone 2 (post-embryonic human) @@ -29028,8 +27341,7 @@ - distal tarsal bone 3 (post-embryonic human) - FMA:24520 + distal tarsal bone 3 (post-embryonic human) @@ -29048,8 +27360,7 @@ - cuboid bone (post-embryonic human) - FMA:24527 + cuboid bone (post-embryonic human) @@ -29068,8 +27379,7 @@ - process of vertebra (post-embryonic human) - FMA:24530 + process of vertebra (post-embryonic human) @@ -29088,8 +27398,7 @@ - face (post-embryonic human) - FMA:24728 + face (post-embryonic human) @@ -29108,8 +27417,7 @@ - skin of head (post-embryonic human) - FMA:24756 + skin of head (post-embryonic human) @@ -29128,8 +27436,7 @@ - skin of scalp (post-embryonic human) - FMA:24757 + skin of scalp (post-embryonic human) @@ -29148,8 +27455,7 @@ - skin of face (post-embryonic human) - FMA:24758 + skin of face (post-embryonic human) @@ -29168,8 +27474,7 @@ - skin of cheek (post-embryonic human) - FMA:24759 + skin of cheek (post-embryonic human) @@ -29188,8 +27493,7 @@ - skin of eyelid (post-embryonic human) - FMA:24760 + skin of eyelid (post-embryonic human) @@ -29208,8 +27512,7 @@ - nose skin (post-embryonic human) - FMA:24763 + nose skin (post-embryonic human) @@ -29228,8 +27531,7 @@ - skin of lip (post-embryonic human) - FMA:24764 + skin of lip (post-embryonic human) @@ -29248,8 +27550,7 @@ - skin of upper lip (post-embryonic human) - FMA:24765 + skin of upper lip (post-embryonic human) @@ -29268,8 +27569,7 @@ - skin of lower lip (post-embryonic human) - FMA:24767 + skin of lower lip (post-embryonic human) @@ -29288,8 +27588,7 @@ - skin of external ear (post-embryonic human) - FMA:24775 + skin of external ear (post-embryonic human) @@ -29308,8 +27607,7 @@ - anterior chest (post-embryonic human) - FMA:24816 + anterior chest (post-embryonic human) @@ -29328,8 +27626,7 @@ - lumbar vertebral foramen (post-embryonic human) - FMA:24826 + lumbar vertebral foramen (post-embryonic human) @@ -29348,8 +27645,7 @@ - axilla (post-embryonic human) - FMA:24864 + axilla (post-embryonic human) @@ -29368,8 +27664,7 @@ - appendage girdle region (post-embryonic human) - FMA:24874 + appendage girdle region (post-embryonic human) @@ -29388,8 +27683,7 @@ - limb (post-embryonic human) - FMA:24875 + limb (post-embryonic human) @@ -29408,8 +27702,7 @@ - upper limb segment (post-embryonic human) - FMA:24876 + upper limb segment (post-embryonic human) @@ -29428,8 +27721,7 @@ - lower limb segment (post-embryonic human) - FMA:24877 + lower limb segment (post-embryonic human) @@ -29448,8 +27740,7 @@ - forelimb (post-embryonic human) - FMA:24878 + forelimb (post-embryonic human) @@ -29468,8 +27759,7 @@ - hindlimb (post-embryonic human) - FMA:24879 + hindlimb (post-embryonic human) @@ -29488,8 +27778,7 @@ - forelimb stylopod (post-embryonic human) - FMA:24890 + forelimb stylopod (post-embryonic human) @@ -29508,8 +27797,7 @@ - elbow (post-embryonic human) - FMA:24901 + elbow (post-embryonic human) @@ -29528,8 +27816,7 @@ - palmar part of manus (post-embryonic human) - FMA:24920 + palmar part of manus (post-embryonic human) @@ -29548,8 +27835,7 @@ - carpal region (post-embryonic human) - FMA:24922 + carpal region (post-embryonic human) @@ -29568,8 +27854,7 @@ - metacarpus region (post-embryonic human) - FMA:24925 + metacarpus region (post-embryonic human) @@ -29588,8 +27873,7 @@ - manual digit 1 (post-embryonic human) - FMA:24938 + manual digit 1 (post-embryonic human) @@ -29608,8 +27892,7 @@ - atlanto-occipital joint (post-embryonic human) - FMA:24939 + atlanto-occipital joint (post-embryonic human) @@ -29628,8 +27911,7 @@ - segment of manus (post-embryonic human) - FMA:24945 + segment of manus (post-embryonic human) @@ -29648,8 +27930,7 @@ - manual digit 2 (post-embryonic human) - FMA:24946 + manual digit 2 (post-embryonic human) @@ -29668,8 +27949,7 @@ - manual digit 3 (post-embryonic human) - FMA:24947 + manual digit 3 (post-embryonic human) @@ -29688,8 +27968,7 @@ - manual digit 4 (post-embryonic human) - FMA:24948 + manual digit 4 (post-embryonic human) @@ -29708,8 +27987,7 @@ - manual digit 5 (post-embryonic human) - FMA:24949 + manual digit 5 (post-embryonic human) @@ -29728,8 +28006,7 @@ - hip (post-embryonic human) - FMA:24964 + hip (post-embryonic human) @@ -29748,8 +28025,7 @@ - hindlimb stylopod (post-embryonic human) - FMA:24967 + hindlimb stylopod (post-embryonic human) @@ -29768,8 +28044,7 @@ - knee (post-embryonic human) - FMA:24974 + knee (post-embryonic human) @@ -29788,8 +28063,7 @@ - hindlimb zeugopod (post-embryonic human) - FMA:24979 + hindlimb zeugopod (post-embryonic human) @@ -29808,8 +28082,7 @@ - calf (post-embryonic human) - FMA:24984 + calf (post-embryonic human) @@ -29828,8 +28101,7 @@ - front hindlimb zeugopod (post-embryonic human) - FMA:24985 + front hindlimb zeugopod (post-embryonic human) @@ -29848,8 +28120,7 @@ - segment of pes (post-embryonic human) - FMA:24993 + segment of pes (post-embryonic human) @@ -29868,8 +28139,7 @@ - heel (post-embryonic human) - FMA:24994 + heel (post-embryonic human) @@ -29888,8 +28158,7 @@ - metatarsus region (post-embryonic human) - FMA:24997 + metatarsus region (post-embryonic human) @@ -29908,8 +28177,7 @@ - plantar part of pes (post-embryonic human) - FMA:25000 + plantar part of pes (post-embryonic human) @@ -29928,8 +28196,7 @@ - cruciate ligament of atlas (post-embryonic human) - FMA:25018 + cruciate ligament of atlas (post-embryonic human) @@ -29948,8 +28215,7 @@ - pedal digit (post-embryonic human) - FMA:25046 + pedal digit (post-embryonic human) @@ -29968,8 +28234,7 @@ - pedal digit 1 (post-embryonic human) - FMA:25047 + pedal digit 1 (post-embryonic human) @@ -29988,8 +28253,7 @@ - pedal digit 2 (post-embryonic human) - FMA:25048 + pedal digit 2 (post-embryonic human) @@ -30008,8 +28272,7 @@ - pedal digit 3 (post-embryonic human) - FMA:25051 + pedal digit 3 (post-embryonic human) @@ -30028,8 +28291,7 @@ - pedal digit 4 (post-embryonic human) - FMA:25052 + pedal digit 4 (post-embryonic human) @@ -30048,8 +28310,7 @@ - pedal digit 5 (post-embryonic human) - FMA:25053 + pedal digit 5 (post-embryonic human) @@ -30068,8 +28329,7 @@ - subdivision of trunk (post-embryonic human) - FMA:25054 + subdivision of trunk (post-embryonic human) @@ -30088,8 +28348,7 @@ - ventral trunk (post-embryonic human) - FMA:25055 + ventral trunk (post-embryonic human) @@ -30108,8 +28367,7 @@ - dorsal trunk (post-embryonic human) - FMA:25056 + dorsal trunk (post-embryonic human) @@ -30128,8 +28386,7 @@ - intervertebral disk of axis (post-embryonic human) - FMA:25058 + intervertebral disk of axis (post-embryonic human) @@ -30148,8 +28405,7 @@ - shoulder (post-embryonic human) - FMA:25202 + shoulder (post-embryonic human) @@ -30168,8 +28424,7 @@ - buttock (post-embryonic human) - FMA:25245 + buttock (post-embryonic human) @@ -30188,8 +28443,7 @@ - intervertebral joint (post-embryonic human) - FMA:25511 + intervertebral joint (post-embryonic human) @@ -30208,8 +28462,7 @@ - atlanto-axial joint (post-embryonic human) - FMA:25524 + atlanto-axial joint (post-embryonic human) @@ -30228,8 +28481,7 @@ - multicellular organism (post-embryonic human) - FMA:256135 + multicellular organism (post-embryonic human) @@ -30248,8 +28500,7 @@ - accessory nucleus of optic tract (post-embryonic human) - FMA:256154 + accessory nucleus of optic tract (post-embryonic human) @@ -30268,8 +28519,7 @@ - cerebral hemisphere white matter (post-embryonic human) - FMA:256174 + cerebral hemisphere white matter (post-embryonic human) @@ -30288,8 +28538,7 @@ - white matter of cerebral lobe (post-embryonic human) - FMA:256176 + white matter of cerebral lobe (post-embryonic human) @@ -30308,8 +28557,7 @@ - white matter of frontal lobe (post-embryonic human) - FMA:256178 + white matter of frontal lobe (post-embryonic human) @@ -30328,8 +28576,7 @@ - white matter of parietal lobe (post-embryonic human) - FMA:256184 + white matter of parietal lobe (post-embryonic human) @@ -30348,8 +28595,7 @@ - white matter of temporal lobe (post-embryonic human) - FMA:256186 + white matter of temporal lobe (post-embryonic human) @@ -30368,8 +28614,7 @@ - white matter of occipital lobe (post-embryonic human) - FMA:256188 + white matter of occipital lobe (post-embryonic human) @@ -30388,8 +28633,7 @@ - orbital gyrus (post-embryonic human) - FMA:256194 + orbital gyrus (post-embryonic human) @@ -30408,8 +28652,7 @@ - anterior orbital gyrus (post-embryonic human) - FMA:256196 + anterior orbital gyrus (post-embryonic human) @@ -30428,8 +28671,7 @@ - skeletal ligament (post-embryonic human) - FMA:25624 + skeletal ligament (post-embryonic human) @@ -30448,30 +28690,7 @@ - nonskeletal ligament (post-embryonic human) - FMA:25625 - - - - - - - - - - - - - - - - - - - - aggregate regional part of brain (post-embryonic human) - nuclear complex of neuraxis (post-embryonic human) - FMA:256381 + nonskeletal ligament (post-embryonic human) @@ -30490,8 +28709,7 @@ - filum terminale internum (post-embryonic human) - FMA:256524 + filum terminale internum (post-embryonic human) @@ -30510,8 +28728,7 @@ - filum terminale externum (post-embryonic human) - FMA:256526 + filum terminale externum (post-embryonic human) @@ -30530,8 +28747,7 @@ - dorsal horn of spinal cord (post-embryonic human) - FMA:256530 + dorsal horn of spinal cord (post-embryonic human) @@ -30550,8 +28766,7 @@ - spinal cord lateral horn (post-embryonic human) - FMA:256536 + spinal cord lateral horn (post-embryonic human) @@ -30570,8 +28785,7 @@ - ventral horn of spinal cord (post-embryonic human) - FMA:256541 + ventral horn of spinal cord (post-embryonic human) @@ -30590,8 +28804,7 @@ - gray matter of spinal cord (post-embryonic human) - FMA:256580 + gray matter of spinal cord (post-embryonic human) @@ -30610,8 +28823,7 @@ - sacral spinal cord (post-embryonic human) - FMA:256623 + sacral spinal cord (post-embryonic human) @@ -30630,8 +28842,7 @@ - S1 segment of sacral spinal cord (post-embryonic human) - FMA:256625 + S1 segment of sacral spinal cord (post-embryonic human) @@ -30650,8 +28861,7 @@ - S2 segment of sacral spinal cord (post-embryonic human) - FMA:256627 + S2 segment of sacral spinal cord (post-embryonic human) @@ -30670,8 +28880,7 @@ - S3 segment of sacral spinal cord (post-embryonic human) - FMA:256629 + S3 segment of sacral spinal cord (post-embryonic human) @@ -30690,8 +28899,7 @@ - S4 segment of sacral spinal cord (post-embryonic human) - FMA:256631 + S4 segment of sacral spinal cord (post-embryonic human) @@ -30710,8 +28918,7 @@ - S5 segment of sacral spinal cord (post-embryonic human) - FMA:256633 + S5 segment of sacral spinal cord (post-embryonic human) @@ -30730,8 +28937,7 @@ - caudal segment of spinal cord (post-embryonic human) - FMA:256635 + caudal segment of spinal cord (post-embryonic human) @@ -30750,8 +28956,7 @@ - cervical subsegment of spinal cord (post-embryonic human) - FMA:256653 + cervical subsegment of spinal cord (post-embryonic human) @@ -30770,8 +28975,7 @@ - thoracic subsegment of spinal cord (post-embryonic human) - FMA:256655 + thoracic subsegment of spinal cord (post-embryonic human) @@ -30790,8 +28994,7 @@ - lumbar subsegment of spinal cord (post-embryonic human) - FMA:256657 + lumbar subsegment of spinal cord (post-embryonic human) @@ -30810,8 +29013,7 @@ - sacral subsegment of spinal cord (post-embryonic human) - FMA:256659 + sacral subsegment of spinal cord (post-embryonic human) @@ -30830,8 +29032,7 @@ - nucleus of solitary tract (post-embryonic human) - FMA:256691 + nucleus of solitary tract (post-embryonic human) @@ -30850,8 +29051,7 @@ - nucleus of thalamus (post-embryonic human) - FMA:256693 + nucleus of thalamus (post-embryonic human) @@ -30870,8 +29070,7 @@ - apex of spinal cord dorsal horn (post-embryonic human) - FMA:256700 + apex of spinal cord dorsal horn (post-embryonic human) @@ -30890,8 +29089,7 @@ - nucleus of pudendal nerve (post-embryonic human) - FMA:257031 + nucleus of pudendal nerve (post-embryonic human) @@ -30910,8 +29108,7 @@ - cervical spinal cord dorsal column (post-embryonic human) - FMA:258176 + cervical spinal cord dorsal column (post-embryonic human) @@ -30930,8 +29127,7 @@ - thoracic spinal cord dorsal column (post-embryonic human) - FMA:258178 + thoracic spinal cord dorsal column (post-embryonic human) @@ -30950,8 +29146,7 @@ - lumbar spinal cord dorsal column (post-embryonic human) - FMA:258180 + lumbar spinal cord dorsal column (post-embryonic human) @@ -30970,8 +29165,7 @@ - subdivision of spinal cord dorsal column (post-embryonic human) - FMA:258190 + subdivision of spinal cord dorsal column (post-embryonic human) @@ -30990,8 +29184,7 @@ - sacral spinal cord dorsal column (post-embryonic human) - FMA:258198 + sacral spinal cord dorsal column (post-embryonic human) @@ -31010,8 +29203,7 @@ - gracile fasciculus (post-embryonic human) - FMA:258416 + gracile fasciculus (post-embryonic human) @@ -31030,8 +29222,7 @@ - right dorsal thalamus (post-embryonic human) - FMA:258714 + right dorsal thalamus (post-embryonic human) @@ -31050,8 +29241,7 @@ - left dorsal thalamus (post-embryonic human) - FMA:258716 + left dorsal thalamus (post-embryonic human) @@ -31070,8 +29260,7 @@ - thalamic complex (post-embryonic human) - FMA:258745 + thalamic complex (post-embryonic human) @@ -31090,8 +29279,7 @@ - hypothalamic nucleus (post-embryonic human) - FMA:258762 + hypothalamic nucleus (post-embryonic human) @@ -31110,8 +29298,7 @@ - nucleus of midbrain tectum (post-embryonic human) - FMA:258766 + nucleus of midbrain tectum (post-embryonic human) @@ -31130,8 +29317,7 @@ - nucleus of midbrain tegmentum (post-embryonic human) - FMA:258768 + nucleus of midbrain tegmentum (post-embryonic human) @@ -31150,8 +29336,7 @@ - nucleus of medulla oblongata (post-embryonic human) - FMA:258772 + nucleus of medulla oblongata (post-embryonic human) @@ -31170,8 +29355,7 @@ - synovial limb joint (post-embryonic human) - FMA:258776 + synovial limb joint (post-embryonic human) @@ -31190,8 +29374,7 @@ - sternoclavicular joint (post-embryonic human) - FMA:25883 + sternoclavicular joint (post-embryonic human) @@ -31210,8 +29393,7 @@ - kidney pyramid (post-embryonic human) - FMA:258870 + kidney pyramid (post-embryonic human) @@ -31230,8 +29412,7 @@ - acromioclavicular joint (post-embryonic human) - FMA:25898 + acromioclavicular joint (post-embryonic human) @@ -31250,8 +29431,7 @@ - abdominal wall (post-embryonic human) - FMA:259054 + abdominal wall (post-embryonic human) @@ -31270,8 +29450,7 @@ - glenohumeral joint (post-embryonic human) - FMA:25912 + glenohumeral joint (post-embryonic human) @@ -31290,8 +29469,7 @@ - ventrum (post-embryonic human) - FMA:259204 + ventrum (post-embryonic human) @@ -31310,8 +29488,7 @@ - thoracic segment of trunk (post-embryonic human) - FMA:259209 + thoracic segment of trunk (post-embryonic human) @@ -31330,8 +29507,7 @@ - abdominal segment of trunk (post-embryonic human) - FMA:259211 + abdominal segment of trunk (post-embryonic human) @@ -31350,8 +29526,7 @@ - network of trabecular spaces in bone tissue (post-embryonic human) - FMA:259332 + network of trabecular spaces in bone tissue (post-embryonic human) @@ -31370,8 +29545,7 @@ - vasculature of central nervous system (post-embryonic human) - FMA:259905 + vasculature of central nervous system (post-embryonic human) @@ -31390,8 +29564,7 @@ - orbital region (post-embryonic human) - FMA:260119 + orbital region (post-embryonic human) @@ -31410,8 +29583,7 @@ - coracoclavicular ligament (post-embryonic human) - FMA:26029 + coracoclavicular ligament (post-embryonic human) @@ -31430,8 +29602,7 @@ - smooth muscle endomysium (post-embryonic human) - FMA:260651 + smooth muscle endomysium (post-embryonic human) @@ -31450,8 +29621,7 @@ - cerebral nerve fasciculus (post-embryonic human) - FMA:260712 + cerebral nerve fasciculus (post-embryonic human) @@ -31470,8 +29640,7 @@ - cingulum of brain (post-embryonic human) - FMA:260761 + cingulum of brain (post-embryonic human) @@ -31490,8 +29659,7 @@ - myocardium of anterior wall of right ventricle (post-embryonic human) - FMA:260877 + myocardium of anterior wall of right ventricle (post-embryonic human) @@ -31510,8 +29678,7 @@ - smooth muscle tissue of bronchiole (post-embryonic human) - FMA:261045 + smooth muscle tissue of bronchiole (post-embryonic human) @@ -31530,8 +29697,7 @@ - smooth muscle tissue of terminal bronchiole (post-embryonic human) - FMA:261051 + smooth muscle tissue of terminal bronchiole (post-embryonic human) @@ -31550,8 +29716,7 @@ - smooth muscle tissue of respiratory bronchiole (post-embryonic human) - FMA:261055 + smooth muscle tissue of respiratory bronchiole (post-embryonic human) @@ -31570,8 +29735,7 @@ - white matter of limbic lobe (post-embryonic human) - FMA:261091 + white matter of limbic lobe (post-embryonic human) @@ -31590,8 +29754,7 @@ - neuropil (post-embryonic human) - FMA:261269 + neuropil (post-embryonic human) @@ -31610,8 +29773,7 @@ - cardiac muscle tissue of myocardium (post-embryonic human) - FMA:261726 + cardiac muscle tissue of myocardium (post-embryonic human) @@ -31630,8 +29792,7 @@ - skeletal muscle tissue of deltoid (post-embryonic human) - FMA:261732 + skeletal muscle tissue of deltoid (post-embryonic human) @@ -31650,8 +29811,7 @@ - skeletal muscle tissue of temporalis (post-embryonic human) - FMA:261740 + skeletal muscle tissue of temporalis (post-embryonic human) @@ -31670,8 +29830,7 @@ - skeletal muscle tissue of levator palpebrae superioris (post-embryonic human) - FMA:261782 + skeletal muscle tissue of levator palpebrae superioris (post-embryonic human) @@ -31690,8 +29849,7 @@ - skeletal muscle tissue of orbicularis oculi (post-embryonic human) - FMA:261812 + skeletal muscle tissue of orbicularis oculi (post-embryonic human) @@ -31710,8 +29868,7 @@ - skeletal muscle tissue of masseter (post-embryonic human) - FMA:261824 + skeletal muscle tissue of masseter (post-embryonic human) @@ -31730,8 +29887,7 @@ - skeletal muscle tissue of digastric (post-embryonic human) - FMA:261872 + skeletal muscle tissue of digastric (post-embryonic human) @@ -31750,8 +29906,7 @@ - skeletal muscle tissue of mylohyoid (post-embryonic human) - FMA:261878 + skeletal muscle tissue of mylohyoid (post-embryonic human) @@ -31770,8 +29925,7 @@ - skeletal muscle tissue of internal intercostal muscle (post-embryonic human) - FMA:261888 + skeletal muscle tissue of internal intercostal muscle (post-embryonic human) @@ -31790,8 +29944,7 @@ - skeletal muscle tissue of transversus thoracis (post-embryonic human) - FMA:261892 + skeletal muscle tissue of transversus thoracis (post-embryonic human) @@ -31810,8 +29963,7 @@ - skeletal muscle tissue of diaphragm (post-embryonic human) - FMA:261898 + skeletal muscle tissue of diaphragm (post-embryonic human) @@ -31830,8 +29982,7 @@ - skeletal muscle tissue of rectus abdominis (post-embryonic human) - FMA:261924 + skeletal muscle tissue of rectus abdominis (post-embryonic human) @@ -31850,8 +30001,7 @@ - skeletal muscle tissue of trapezius (post-embryonic human) - FMA:261938 + skeletal muscle tissue of trapezius (post-embryonic human) @@ -31870,8 +30020,7 @@ - skeletal muscle tissue of supraspinatus (post-embryonic human) - FMA:261956 + skeletal muscle tissue of supraspinatus (post-embryonic human) @@ -31890,8 +30039,7 @@ - skeletal muscle tissue of teres major (post-embryonic human) - FMA:261962 + skeletal muscle tissue of teres major (post-embryonic human) @@ -31910,8 +30058,7 @@ - skeletal muscle tissue of pectoralis major (post-embryonic human) - FMA:261968 + skeletal muscle tissue of pectoralis major (post-embryonic human) @@ -31930,8 +30077,7 @@ - skeletal muscle tissue of biceps brachii (post-embryonic human) - FMA:261974 + skeletal muscle tissue of biceps brachii (post-embryonic human) @@ -31950,8 +30096,7 @@ - skeletal muscle tissue of gluteus maximus (post-embryonic human) - FMA:261980 + skeletal muscle tissue of gluteus maximus (post-embryonic human) @@ -31970,8 +30115,7 @@ - skeletal muscle tissue of iliacus (post-embryonic human) - FMA:261992 + skeletal muscle tissue of iliacus (post-embryonic human) @@ -31990,8 +30134,7 @@ - skeletal muscle tissue of quadriceps femoris (post-embryonic human) - FMA:261998 + skeletal muscle tissue of quadriceps femoris (post-embryonic human) @@ -32010,8 +30153,7 @@ - skeletal muscle tissue of tibialis anterior (post-embryonic human) - FMA:262004 + skeletal muscle tissue of tibialis anterior (post-embryonic human) @@ -32030,8 +30172,7 @@ - smooth muscle of trachea (post-embryonic human) - FMA:262010 + smooth muscle of trachea (post-embryonic human) @@ -32050,8 +30191,7 @@ - kidney pelvis smooth muscle (post-embryonic human) - FMA:262022 + kidney pelvis smooth muscle (post-embryonic human) @@ -32070,8 +30210,7 @@ - lymphatic vessel smooth muscle (post-embryonic human) - FMA:262026 + lymphatic vessel smooth muscle (post-embryonic human) @@ -32090,8 +30229,7 @@ - hepatic sinusoidal space (post-embryonic human) - FMA:262090 + hepatic sinusoidal space (post-embryonic human) @@ -32110,8 +30248,7 @@ - mucosa of terminal bronchiole (post-embryonic human) - FMA:263232 + mucosa of terminal bronchiole (post-embryonic human) @@ -32130,8 +30267,7 @@ - mucosa of respiratory bronchiole (post-embryonic human) - FMA:263238 + mucosa of respiratory bronchiole (post-embryonic human) @@ -32150,8 +30286,7 @@ - kidney pelvis urothelium (post-embryonic human) - FMA:263264 + kidney pelvis urothelium (post-embryonic human) @@ -32170,8 +30305,7 @@ - transitional epithelium of major calyx (post-embryonic human) - FMA:263266 + transitional epithelium of major calyx (post-embryonic human) @@ -32190,8 +30324,7 @@ - capillary blood (post-embryonic human) - FMA:263901 + capillary blood (post-embryonic human) @@ -32210,8 +30343,7 @@ - musculature of pharynx (post-embryonic human) - FMA:264609 + musculature of pharynx (post-embryonic human) @@ -32230,8 +30362,7 @@ - musculature of larynx (post-embryonic human) - FMA:264611 + musculature of larynx (post-embryonic human) @@ -32250,8 +30381,7 @@ - porion (post-embryonic human) - FMA:264711 + porion (post-embryonic human) @@ -32270,8 +30400,7 @@ - stephanion (post-embryonic human) - FMA:264723 + stephanion (post-embryonic human) @@ -32290,8 +30419,7 @@ - anatomical point connecting sagittal and lambdoidal sutures (post-embryonic human) - FMA:264773 + anatomical point connecting sagittal and lambdoidal sutures (post-embryonic human) @@ -32310,8 +30438,7 @@ - obelion (post-embryonic human) - FMA:264774 + obelion (post-embryonic human) @@ -32330,8 +30457,7 @@ - bregma (post-embryonic human) - FMA:264776 + bregma (post-embryonic human) @@ -32350,8 +30476,7 @@ - nasion (post-embryonic human) - FMA:264779 + nasion (post-embryonic human) @@ -32370,8 +30495,7 @@ - abdominal segment skin (post-embryonic human) - FMA:264898 + abdominal segment skin (post-embryonic human) @@ -32390,8 +30514,7 @@ - pulmonary capillary plexus (post-embryonic human) - FMA:264928 + pulmonary capillary plexus (post-embryonic human) @@ -32410,30 +30533,7 @@ - systemic capillary plexus (post-embryonic human) - FMA:264934 - - - - - - - - - - - - - - - - - - - - respiratory airway (post-embryonic human) - respiratory tract (post-embryonic human) - FMA:265130 + systemic capillary plexus (post-embryonic human) @@ -32452,8 +30552,7 @@ - upper respiratory conduit (post-embryonic human) - FMA:265132 + upper respiratory conduit (post-embryonic human) @@ -32472,8 +30571,7 @@ - olfactory apparatus chamber (post-embryonic human) - FMA:265136 + olfactory apparatus chamber (post-embryonic human) @@ -32492,8 +30590,7 @@ - oral epithelium (post-embryonic human) - FMA:265152 + oral epithelium (post-embryonic human) @@ -32512,8 +30609,7 @@ - lamina propria of trachea (post-embryonic human) - FMA:265157 + lamina propria of trachea (post-embryonic human) @@ -32532,8 +30628,7 @@ - upper esophageal sphincter (post-embryonic human) - FMA:265203 + upper esophageal sphincter (post-embryonic human) @@ -32552,8 +30647,7 @@ - renal collecting system (post-embryonic human) - FMA:265239 + renal collecting system (post-embryonic human) @@ -32572,8 +30666,7 @@ - adnexa of uterus (post-embryonic human) - FMA:265256 + adnexa of uterus (post-embryonic human) @@ -32592,8 +30685,7 @@ - paracardiac lymph node (post-embryonic human) - FMA:265350 + paracardiac lymph node (post-embryonic human) @@ -32612,8 +30704,7 @@ - cardiophrenic angle lymph node (post-embryonic human) - FMA:265353 + cardiophrenic angle lymph node (post-embryonic human) @@ -32632,8 +30723,7 @@ - retrocrural lymph node (post-embryonic human) - FMA:265356 + retrocrural lymph node (post-embryonic human) @@ -32652,8 +30742,7 @@ - rib skeletal system (post-embryonic human) - FMA:265719 + rib skeletal system (post-embryonic human) @@ -32672,8 +30761,7 @@ - cerebellum vasculature (post-embryonic human) - FMA:268519 + cerebellum vasculature (post-embryonic human) @@ -32692,8 +30780,7 @@ - gray matter of forebrain (post-embryonic human) - FMA:268608 + gray matter of forebrain (post-embryonic human) @@ -32712,8 +30799,7 @@ - gray matter of hindbrain (post-embryonic human) - FMA:268630 + gray matter of hindbrain (post-embryonic human) @@ -32732,8 +30818,7 @@ - white matter of forebrain (post-embryonic human) - FMA:268634 + white matter of forebrain (post-embryonic human) @@ -32752,8 +30837,7 @@ - white matter of hindbrain (post-embryonic human) - FMA:268636 + white matter of hindbrain (post-embryonic human) @@ -32772,8 +30856,7 @@ - intervertebral disk of sacral vertebra (post-embryonic human) - FMA:268676 + intervertebral disk of sacral vertebra (post-embryonic human) @@ -32792,8 +30875,7 @@ - crypt of Lieberkuhn of ileum (post-embryonic human) - FMA:269061 + crypt of Lieberkuhn of ileum (post-embryonic human) @@ -32812,8 +30894,7 @@ - crypt of Lieberkuhn of duodenum (post-embryonic human) - FMA:269063 + crypt of Lieberkuhn of duodenum (post-embryonic human) @@ -32832,8 +30913,7 @@ - crypt of Lieberkuhn of jejunum (post-embryonic human) - FMA:269065 + crypt of Lieberkuhn of jejunum (post-embryonic human) @@ -32852,30 +30932,7 @@ - posterior cingulate cortex (post-embryonic human) - FMA:271593 - - - - - - - - - - - - - - - - - - - - anterior cingulate cortex (post-embryonic human) - rostral anterior cingulate cortex (post-embryonic human) - FMA:271599 + posterior cingulate cortex (post-embryonic human) @@ -32894,8 +30951,7 @@ - short nephron (post-embryonic human) - FMA:272051 + short nephron (post-embryonic human) @@ -32914,8 +30970,7 @@ - long nephron (post-embryonic human) - FMA:272054 + long nephron (post-embryonic human) @@ -32934,8 +30989,7 @@ - kidney arcuate vein (post-embryonic human) - FMA:272193 + kidney arcuate vein (post-embryonic human) @@ -32954,8 +31008,7 @@ - peritubular capillary plexus of kidney (post-embryonic human) - FMA:272218 + peritubular capillary plexus of kidney (post-embryonic human) @@ -32974,30 +31027,7 @@ - cerebellar peduncle (post-embryonic human) - FMA:272298 - - - - - - - - - - - - - - - - - - - - cerebellum hemispheric lobule IV (post-embryonic human) - quadrangular lobule (post-embryonic human) - FMA:272300 + cerebellar peduncle (post-embryonic human) @@ -33016,8 +31046,7 @@ - secondary auditory cortex (post-embryonic human) - FMA:272944 + secondary auditory cortex (post-embryonic human) @@ -33036,8 +31065,7 @@ - primary auditory cortex (post-embryonic human) - FMA:272953 + primary auditory cortex (post-embryonic human) @@ -33056,8 +31084,7 @@ - inferior occipital gyrus (post-embryonic human) - FMA:273129 + inferior occipital gyrus (post-embryonic human) @@ -33076,8 +31103,7 @@ - medial orbital frontal cortex (post-embryonic human) - FMA:273320 + medial orbital frontal cortex (post-embryonic human) @@ -33096,8 +31122,7 @@ - anterior segment of paracentral lobule (post-embryonic human) - FMA:273508 + anterior segment of paracentral lobule (post-embryonic human) @@ -33116,8 +31141,7 @@ - posterior segment of paracentral lobule (post-embryonic human) - FMA:273511 + posterior segment of paracentral lobule (post-embryonic human) @@ -33136,8 +31160,7 @@ - lung parenchyma (post-embryonic human) - FMA:27360 + lung parenchyma (post-embryonic human) @@ -33156,8 +31179,7 @@ - transverse gyrus of Heschl (post-embryonic human) - FMA:273671 + transverse gyrus of Heschl (post-embryonic human) @@ -33176,8 +31198,7 @@ - glomerular capillary (post-embryonic human) - FMA:274259 + glomerular capillary (post-embryonic human) @@ -33196,8 +31217,7 @@ - superior transverse frontopolar gyrus (post-embryonic human) - FMA:274408 + superior transverse frontopolar gyrus (post-embryonic human) @@ -33216,8 +31236,7 @@ - inferior transverse frontopolar gyrus (post-embryonic human) - FMA:274414 + inferior transverse frontopolar gyrus (post-embryonic human) @@ -33236,8 +31255,7 @@ - subicular complex (post-embryonic human) - FMA:275157 + subicular complex (post-embryonic human) @@ -33256,8 +31274,7 @@ - lung connective tissue (post-embryonic human) - FMA:27533 + lung connective tissue (post-embryonic human) @@ -33276,8 +31293,7 @@ - corticobulbar tract (post-embryonic human) - FMA:275544 + corticobulbar tract (post-embryonic human) @@ -33296,8 +31312,7 @@ - dorsolateral prefrontal cortex (post-embryonic human) - FMA:276189 + dorsolateral prefrontal cortex (post-embryonic human) @@ -33316,8 +31331,7 @@ - epithelial lining fluid (post-embryonic human) - FMA:276456 + epithelial lining fluid (post-embryonic human) @@ -33336,8 +31350,7 @@ - dartos muscle of scrotum (post-embryonic human) - FMA:27647 + dartos muscle of scrotum (post-embryonic human) @@ -33356,8 +31369,7 @@ - skin of prepuce of penis (post-embryonic human) - FMA:27648 + skin of prepuce of penis (post-embryonic human) @@ -33376,8 +31388,7 @@ - olfactory cortex (post-embryonic human) - FMA:276600 + olfactory cortex (post-embryonic human) @@ -33396,8 +31407,7 @@ - arcuate fasciculus (post-embryonic human) - FMA:276650 + arcuate fasciculus (post-embryonic human) @@ -33416,8 +31426,7 @@ - jejunal lymph node (post-embryonic human) - FMA:276784 + jejunal lymph node (post-embryonic human) @@ -33436,8 +31445,7 @@ - inferior rectal lymph node (post-embryonic human) - FMA:276796 + inferior rectal lymph node (post-embryonic human) @@ -33456,8 +31464,7 @@ - renal lymph node (post-embryonic human) - FMA:276799 + renal lymph node (post-embryonic human) @@ -33476,8 +31483,7 @@ - axillary lymph node (post-embryonic human) - FMA:276805 + axillary lymph node (post-embryonic human) @@ -33496,8 +31502,7 @@ - pericardial lymph node (post-embryonic human) - FMA:276807 + pericardial lymph node (post-embryonic human) @@ -33516,8 +31521,7 @@ - aortopulmonary lymph node (post-embryonic human) - FMA:276813 + aortopulmonary lymph node (post-embryonic human) @@ -33536,8 +31540,7 @@ - para-aortic thoracic lymph node (post-embryonic human) - FMA:276820 + para-aortic thoracic lymph node (post-embryonic human) @@ -33556,8 +31559,7 @@ - Reichert's membrane (post-embryonic human) - FMA:276826 + Reichert's membrane (post-embryonic human) @@ -33576,8 +31578,7 @@ - interlobar lymph node (post-embryonic human) - FMA:276828 + interlobar lymph node (post-embryonic human) @@ -33596,8 +31597,7 @@ - lobar lymph node (post-embryonic human) - FMA:276849 + lobar lymph node (post-embryonic human) @@ -33616,8 +31616,7 @@ - segmental lymph node (post-embryonic human) - FMA:276855 + segmental lymph node (post-embryonic human) @@ -33636,8 +31635,7 @@ - subsegmental lymph node (post-embryonic human) - FMA:276861 + subsegmental lymph node (post-embryonic human) @@ -33656,8 +31654,7 @@ - lymph node of inferior pulmonary ligament (post-embryonic human) - FMA:276867 + lymph node of inferior pulmonary ligament (post-embryonic human) @@ -33676,8 +31673,7 @@ - superior mediastinal lymph node (post-embryonic human) - FMA:276903 + superior mediastinal lymph node (post-embryonic human) @@ -33696,8 +31692,7 @@ - superior left gastric lymph node (post-embryonic human) - FMA:277061 + superior left gastric lymph node (post-embryonic human) @@ -33716,8 +31711,7 @@ - inferior left gastric lymph node (post-embryonic human) - FMA:277064 + inferior left gastric lymph node (post-embryonic human) @@ -33736,8 +31730,7 @@ - sagittal stratum (post-embryonic human) - FMA:277107 + sagittal stratum (post-embryonic human) @@ -33756,8 +31749,7 @@ - visceral lymph node of abdomen (post-embryonic human) - FMA:277227 + visceral lymph node of abdomen (post-embryonic human) @@ -33776,8 +31768,7 @@ - common hepatic lymph node (post-embryonic human) - FMA:277259 + common hepatic lymph node (post-embryonic human) @@ -33796,8 +31787,7 @@ - hepatoportal lymph node (post-embryonic human) - FMA:277271 + hepatoportal lymph node (post-embryonic human) @@ -33816,8 +31806,7 @@ - proximal superior pancreatic lymph node (post-embryonic human) - FMA:277295 + proximal superior pancreatic lymph node (post-embryonic human) @@ -33836,8 +31825,7 @@ - distal superior pancreatic lymph node (post-embryonic human) - FMA:277298 + distal superior pancreatic lymph node (post-embryonic human) @@ -33856,8 +31844,7 @@ - anterior superior pancreaticoduodenal lymph node (post-embryonic human) - FMA:277305 + anterior superior pancreaticoduodenal lymph node (post-embryonic human) @@ -33876,8 +31863,7 @@ - posterior superior pancreaticoduodenal lymph node (post-embryonic human) - FMA:277310 + posterior superior pancreaticoduodenal lymph node (post-embryonic human) @@ -33896,8 +31882,7 @@ - anterior inferior pancreaticoduodenal lymph node (post-embryonic human) - FMA:277315 + anterior inferior pancreaticoduodenal lymph node (post-embryonic human) @@ -33916,8 +31901,7 @@ - posterior inferior pancreaticoduodenal lymph node (post-embryonic human) - FMA:277317 + posterior inferior pancreaticoduodenal lymph node (post-embryonic human) @@ -33936,8 +31920,7 @@ - anterior pancreaticoduodenal lymph node (post-embryonic human) - FMA:277368 + anterior pancreaticoduodenal lymph node (post-embryonic human) @@ -33956,8 +31939,7 @@ - juxta-intestinal mesenteric lymph node (post-embryonic human) - FMA:277581 + juxta-intestinal mesenteric lymph node (post-embryonic human) @@ -33976,8 +31958,7 @@ - visceral pre-aortic lymph node (post-embryonic human) - FMA:277610 + visceral pre-aortic lymph node (post-embryonic human) @@ -33996,8 +31977,7 @@ - juxta-arterial jejunal lymph node (post-embryonic human) - FMA:277614 + juxta-arterial jejunal lymph node (post-embryonic human) @@ -34016,8 +31996,7 @@ - juxta-arterial ileal lymph node (post-embryonic human) - FMA:277616 + juxta-arterial ileal lymph node (post-embryonic human) @@ -34036,8 +32015,7 @@ - intermediate jejunal lymph node (post-embryonic human) - FMA:277618 + intermediate jejunal lymph node (post-embryonic human) @@ -34056,8 +32034,7 @@ - intermediate ileal lymph node (post-embryonic human) - FMA:277620 + intermediate ileal lymph node (post-embryonic human) @@ -34076,8 +32053,7 @@ - gastro-epiploic lymph node (post-embryonic human) - FMA:277652 + gastro-epiploic lymph node (post-embryonic human) @@ -34096,8 +32072,7 @@ - labial commissure (post-embryonic human) - FMA:277716 + labial commissure (post-embryonic human) @@ -34116,8 +32091,7 @@ - dentate gyrus molecular layer middle (post-embryonic human) - FMA:277810 + dentate gyrus molecular layer middle (post-embryonic human) @@ -34136,8 +32110,7 @@ - dentate gyrus molecular layer inner (post-embryonic human) - FMA:277812 + dentate gyrus molecular layer inner (post-embryonic human) @@ -34156,8 +32129,7 @@ - layer of hippocampus (post-embryonic human) - FMA:277842 + layer of hippocampus (post-embryonic human) @@ -34176,8 +32148,7 @@ - layer of CA1 field (post-embryonic human) - FMA:277844 + layer of CA1 field (post-embryonic human) @@ -34196,8 +32167,7 @@ - layer of CA2 field (post-embryonic human) - FMA:277846 + layer of CA2 field (post-embryonic human) @@ -34216,8 +32186,7 @@ - layer of CA3 field (post-embryonic human) - FMA:277848 + layer of CA3 field (post-embryonic human) @@ -34236,8 +32205,7 @@ - CA1 stratum lacunosum moleculare (post-embryonic human) - FMA:277850 + CA1 stratum lacunosum moleculare (post-embryonic human) @@ -34256,8 +32224,7 @@ - CA2 stratum lacunosum moleculare (post-embryonic human) - FMA:277852 + CA2 stratum lacunosum moleculare (post-embryonic human) @@ -34276,8 +32243,7 @@ - CA3 stratum lacunosum moleculare (post-embryonic human) - FMA:277854 + CA3 stratum lacunosum moleculare (post-embryonic human) @@ -34296,8 +32262,7 @@ - CA1 stratum oriens (post-embryonic human) - FMA:277856 + CA1 stratum oriens (post-embryonic human) @@ -34316,8 +32281,7 @@ - CA2 stratum oriens (post-embryonic human) - FMA:277858 + CA2 stratum oriens (post-embryonic human) @@ -34336,8 +32300,7 @@ - CA3 stratum oriens (post-embryonic human) - FMA:277860 + CA3 stratum oriens (post-embryonic human) @@ -34356,8 +32319,7 @@ - CA1 stratum radiatum (post-embryonic human) - FMA:277862 + CA1 stratum radiatum (post-embryonic human) @@ -34376,8 +32338,7 @@ - CA2 stratum radiatum (post-embryonic human) - FMA:277864 + CA2 stratum radiatum (post-embryonic human) @@ -34396,8 +32357,7 @@ - CA3 stratum radiatum (post-embryonic human) - FMA:277866 + CA3 stratum radiatum (post-embryonic human) @@ -34416,8 +32376,7 @@ - pyramidal layer of CA1 (post-embryonic human) - FMA:277868 + pyramidal layer of CA1 (post-embryonic human) @@ -34436,8 +32395,7 @@ - pyramidal layer of CA2 (post-embryonic human) - FMA:277870 + pyramidal layer of CA2 (post-embryonic human) @@ -34456,8 +32414,7 @@ - pyramidal layer of CA3 (post-embryonic human) - FMA:277872 + pyramidal layer of CA3 (post-embryonic human) @@ -34476,8 +32433,7 @@ - CA1 alveus (post-embryonic human) - FMA:277874 + CA1 alveus (post-embryonic human) @@ -34496,8 +32452,7 @@ - alveus of CA2 field (post-embryonic human) - FMA:277876 + alveus of CA2 field (post-embryonic human) @@ -34516,8 +32471,7 @@ - CA3 alveus (post-embryonic human) - FMA:277878 + CA3 alveus (post-embryonic human) @@ -34536,8 +32490,7 @@ - pararectal lymph node of pelvis (post-embryonic human) - FMA:278181 + pararectal lymph node of pelvis (post-embryonic human) @@ -34556,8 +32509,7 @@ - superior ileocolic lymph node (post-embryonic human) - FMA:278188 + superior ileocolic lymph node (post-embryonic human) @@ -34576,8 +32528,7 @@ - gallbladder lamina propria (post-embryonic human) - FMA:278594 + gallbladder lamina propria (post-embryonic human) @@ -34596,8 +32547,7 @@ - cerebellum vermis lobule (post-embryonic human) - FMA:278629 + cerebellum vermis lobule (post-embryonic human) @@ -34616,8 +32566,7 @@ - cerebellum vermis lobule II (post-embryonic human) - FMA:278635 + cerebellum vermis lobule II (post-embryonic human) @@ -34636,8 +32585,7 @@ - cerebellum vermis lobule III (post-embryonic human) - FMA:278639 + cerebellum vermis lobule III (post-embryonic human) @@ -34656,8 +32604,7 @@ - cerebellum vermis lobule VII (post-embryonic human) - FMA:278651 + cerebellum vermis lobule VII (post-embryonic human) @@ -34676,8 +32623,7 @@ - cerebellum hemispheric lobule II (post-embryonic human) - FMA:278665 + cerebellum hemispheric lobule II (post-embryonic human) @@ -34696,8 +32642,7 @@ - cerebellum hemispheric lobule III (post-embryonic human) - FMA:278672 + cerebellum hemispheric lobule III (post-embryonic human) @@ -34716,8 +32661,7 @@ - cerebellum hemispheric lobule IV (post-embryonic human) - FMA:278683 + cerebellum hemispheric lobule IV (post-embryonic human) @@ -34736,8 +32680,7 @@ - cerebellum hemispheric lobule V (post-embryonic human) - FMA:278723 + cerebellum hemispheric lobule V (post-embryonic human) @@ -34756,8 +32699,7 @@ - paraflocculus (post-embryonic human) - FMA:278790 + paraflocculus (post-embryonic human) @@ -34776,8 +32718,7 @@ - skin of prepuce of clitoris (post-embryonic human) - FMA:27886 + skin of prepuce of clitoris (post-embryonic human) @@ -34796,8 +32737,7 @@ - deep fascia (post-embryonic human) - FMA:27935 + deep fascia (post-embryonic human) @@ -34816,8 +32756,7 @@ - upper part of vagina (post-embryonic human) - FMA:27974 + upper part of vagina (post-embryonic human) @@ -34836,8 +32775,7 @@ - lower part of vagina (post-embryonic human) - FMA:27975 + lower part of vagina (post-embryonic human) @@ -34856,8 +32794,7 @@ - bodily fluid (post-embryonic human) - FMA:280556 + bodily fluid (post-embryonic human) @@ -34876,8 +32813,7 @@ - genitourinary system (post-embryonic human) - FMA:280610 + genitourinary system (post-embryonic human) @@ -34896,8 +32832,7 @@ - Meyer's loop of optic radiation (post-embryonic human) - FMA:280849 + Meyer's loop of optic radiation (post-embryonic human) @@ -34916,8 +32851,7 @@ - craniocervical region (post-embryonic human) - FMA:280881 + craniocervical region (post-embryonic human) @@ -34936,8 +32870,7 @@ - capillary network of liver (post-embryonic human) - FMA:280884 + capillary network of liver (post-embryonic human) @@ -34956,8 +32889,7 @@ - capillary network of kidney (post-embryonic human) - FMA:280922 + capillary network of kidney (post-embryonic human) @@ -34976,8 +32908,7 @@ - lymph node along bile duct (post-embryonic human) - FMA:281309 + lymph node along bile duct (post-embryonic human) @@ -34996,8 +32927,7 @@ - sesamoid bone of gastrocnemius (post-embryonic human) - FMA:281591 + sesamoid bone of gastrocnemius (post-embryonic human) @@ -35016,8 +32946,7 @@ - brainstem white matter (post-embryonic human) - FMA:282112 + brainstem white matter (post-embryonic human) @@ -35036,8 +32965,7 @@ - kidney calyx (post-embryonic human) - FMA:284558 + kidney calyx (post-embryonic human) @@ -35056,8 +32984,7 @@ - cartilaginous projection (post-embryonic human) - FMA:284626 + cartilaginous projection (post-embryonic human) @@ -35076,8 +33003,7 @@ - epithelium of tongue (post-embryonic human) - FMA:284658 + epithelium of tongue (post-embryonic human) @@ -35096,8 +33022,7 @@ - anatomical line between inner canthi (post-embryonic human) - FMA:284806 + anatomical line between inner canthi (post-embryonic human) @@ -35116,8 +33041,7 @@ - ophryon (post-embryonic human) - FMA:284930 + ophryon (post-embryonic human) @@ -35136,8 +33060,7 @@ - pharyngotympanic tube epithelium (post-embryonic human) - FMA:285217 + pharyngotympanic tube epithelium (post-embryonic human) @@ -35156,8 +33079,7 @@ - midface (post-embryonic human) - FMA:285406 + midface (post-embryonic human) @@ -35176,8 +33098,7 @@ - hairline (post-embryonic human) - FMA:285412 + hairline (post-embryonic human) @@ -35196,8 +33117,7 @@ - preputial space (post-embryonic human) - FMA:28606 + preputial space (post-embryonic human) @@ -35216,8 +33136,7 @@ - mammary gland (post-embryonic human) - FMA:286452 + mammary gland (post-embryonic human) @@ -35236,8 +33155,7 @@ - buccal vestibule (post-embryonic human) - FMA:289320 + buccal vestibule (post-embryonic human) @@ -35256,8 +33174,7 @@ - alveolar mucosa (post-embryonic human) - FMA:289360 + alveolar mucosa (post-embryonic human) @@ -35276,8 +33193,7 @@ - upper central incisor tooth (post-embryonic human) - FMA:290180 + upper central incisor tooth (post-embryonic human) @@ -35296,8 +33212,7 @@ - lower central incisor tooth (post-embryonic human) - FMA:290182 + lower central incisor tooth (post-embryonic human) @@ -35316,8 +33231,7 @@ - upper lateral incisor tooth (post-embryonic human) - FMA:290194 + upper lateral incisor tooth (post-embryonic human) @@ -35336,8 +33250,7 @@ - lower lateral incisor tooth (post-embryonic human) - FMA:290197 + lower lateral incisor tooth (post-embryonic human) @@ -35356,8 +33269,7 @@ - lower jaw molar (post-embryonic human) - FMA:290267 + lower jaw molar (post-embryonic human) @@ -35376,8 +33288,7 @@ - developing anatomical structure (post-embryonic human) - FMA:292313 + developing anatomical structure (post-embryonic human) @@ -35396,8 +33307,7 @@ - morula (post-embryonic human) - FMA:292334 + morula (post-embryonic human) @@ -35416,8 +33326,7 @@ - embryonic head (post-embryonic human) - FMA:293011 + embryonic head (post-embryonic human) @@ -35436,8 +33345,7 @@ - pharyngeal arch (post-embryonic human) - FMA:293015 + pharyngeal arch (post-embryonic human) @@ -35456,8 +33364,7 @@ - pharyngeal arch 2 (post-embryonic human) - FMA:293017 + pharyngeal arch 2 (post-embryonic human) @@ -35476,8 +33383,7 @@ - pharyngeal arch 1 (post-embryonic human) - FMA:293019 + pharyngeal arch 1 (post-embryonic human) @@ -35496,8 +33402,7 @@ - pharyngeal arch 3 (post-embryonic human) - FMA:293029 + pharyngeal arch 3 (post-embryonic human) @@ -35516,8 +33421,7 @@ - pharyngeal arch 4 (post-embryonic human) - FMA:293035 + pharyngeal arch 4 (post-embryonic human) @@ -35536,8 +33440,7 @@ - pharyngeal arch system (post-embryonic human) - FMA:293041 + pharyngeal arch system (post-embryonic human) @@ -35556,8 +33459,7 @@ - pharyngeal arch 5 (post-embryonic human) - FMA:293045 + pharyngeal arch 5 (post-embryonic human) @@ -35576,8 +33478,7 @@ - pharyngeal arch 6 (post-embryonic human) - FMA:293047 + pharyngeal arch 6 (post-embryonic human) @@ -35596,8 +33497,7 @@ - maxillary prominence (post-embryonic human) - FMA:293049 + maxillary prominence (post-embryonic human) @@ -35616,8 +33516,7 @@ - mandibular prominence (post-embryonic human) - FMA:293051 + mandibular prominence (post-embryonic human) @@ -35636,30 +33535,7 @@ - pharyngeal pouch (post-embryonic human) - FMA:293063 - - - - - - - - - - - - - - - - - - - - early pharyngeal endoderm (post-embryonic human) - entire pharyngeal arch endoderm (post-embryonic human) - FMA:293087 + pharyngeal pouch (post-embryonic human) @@ -35678,8 +33554,7 @@ - frontonasal prominence (post-embryonic human) - FMA:293101 + frontonasal prominence (post-embryonic human) @@ -35698,8 +33573,7 @@ - embryonic facial prominence (post-embryonic human) - FMA:293103 + embryonic facial prominence (post-embryonic human) @@ -35718,8 +33592,7 @@ - future mouth (post-embryonic human) - FMA:293105 + future mouth (post-embryonic human) @@ -35738,8 +33611,7 @@ - gastrula (post-embryonic human) - FMA:293108 + gastrula (post-embryonic human) @@ -35758,8 +33630,7 @@ - primitive streak (post-embryonic human) - FMA:293110 + primitive streak (post-embryonic human) @@ -35778,8 +33649,7 @@ - primitive knot (post-embryonic human) - FMA:293116 + primitive knot (post-embryonic human) @@ -35798,8 +33668,7 @@ - primitive groove (post-embryonic human) - FMA:293118 + primitive groove (post-embryonic human) @@ -35818,8 +33687,7 @@ - primitive pit (post-embryonic human) - FMA:293120 + primitive pit (post-embryonic human) @@ -35838,8 +33706,7 @@ - notochordal canal (post-embryonic human) - FMA:293127 + notochordal canal (post-embryonic human) @@ -35858,8 +33725,7 @@ - blastocele (post-embryonic human) - FMA:293131 + blastocele (post-embryonic human) @@ -35878,8 +33744,7 @@ - notochordal process (post-embryonic human) - FMA:293135 + notochordal process (post-embryonic human) @@ -35898,8 +33763,7 @@ - cardiogenic splanchnic mesoderm (post-embryonic human) - FMA:293143 + cardiogenic splanchnic mesoderm (post-embryonic human) @@ -35918,8 +33782,7 @@ - paraxial mesoderm (post-embryonic human) - FMA:293145 + paraxial mesoderm (post-embryonic human) @@ -35938,8 +33801,7 @@ - intermediate mesoderm (post-embryonic human) - FMA:293147 + intermediate mesoderm (post-embryonic human) @@ -35958,8 +33820,7 @@ - lateral plate mesoderm (post-embryonic human) - FMA:293149 + lateral plate mesoderm (post-embryonic human) @@ -35978,8 +33839,7 @@ - hemisphere of embryo (post-embryonic human) - FMA:293351 + hemisphere of embryo (post-embryonic human) @@ -35998,8 +33858,7 @@ - optic vesicle (post-embryonic human) - FMA:293357 + optic vesicle (post-embryonic human) @@ -36018,8 +33877,7 @@ - gustatory gland (post-embryonic human) - FMA:293448 + gustatory gland (post-embryonic human) @@ -36038,8 +33896,7 @@ - perianal skin (post-embryonic human) - FMA:29350 + perianal skin (post-embryonic human) @@ -36058,8 +33915,7 @@ - vertebral endplate (post-embryonic human) - FMA:293500 + vertebral endplate (post-embryonic human) @@ -36078,8 +33934,7 @@ - head mesenchyme from mesoderm (post-embryonic human) - FMA:293859 + head mesenchyme from mesoderm (post-embryonic human) @@ -36098,8 +33953,7 @@ - bilaminar disc (post-embryonic human) - FMA:293863 + bilaminar disc (post-embryonic human) @@ -36118,8 +33972,7 @@ - hypoblast (generic) (post-embryonic human) - FMA:293873 + hypoblast (generic) (post-embryonic human) @@ -36138,8 +33991,7 @@ - neural plate (post-embryonic human) - FMA:293879 + neural plate (post-embryonic human) @@ -36158,8 +34010,7 @@ - neural tube (post-embryonic human) - FMA:293882 + neural tube (post-embryonic human) @@ -36178,30 +34029,7 @@ - mesenchyme derived from neural crest (post-embryonic human) - FMA:293883 - - - - - - - - - - - - - - - - - - - - cranial placode (post-embryonic human) - placodal ectoderm (post-embryonic human) - FMA:293966 + mesenchyme derived from neural crest (post-embryonic human) @@ -36220,30 +34048,7 @@ - epibranchial placode (post-embryonic human) - FMA:293968 - - - - - - - - - - - - - - - - - - - - embryonic nasal process (post-embryonic human) - olfactory placode (post-embryonic human) - FMA:293971 + epibranchial placode (post-embryonic human) @@ -36262,8 +34067,7 @@ - otic placode (post-embryonic human) - FMA:293973 + otic placode (post-embryonic human) @@ -36282,8 +34086,7 @@ - incisor dental pulp (post-embryonic human) - FMA:294459 + incisor dental pulp (post-embryonic human) @@ -36302,8 +34105,7 @@ - molar dental pulp (post-embryonic human) - FMA:294469 + molar dental pulp (post-embryonic human) @@ -36322,8 +34124,7 @@ - hair root sheath (post-embryonic human) - FMA:294628 + hair root sheath (post-embryonic human) @@ -36342,8 +34143,7 @@ - hair root sheath matrix (post-embryonic human) - FMA:294634 + hair root sheath matrix (post-embryonic human) @@ -36362,8 +34162,7 @@ - mandible angular process (post-embryonic human) - FMA:294636 + mandible angular process (post-embryonic human) @@ -36382,8 +34181,7 @@ - tonsil capsule (post-embryonic human) - FMA:294647 + tonsil capsule (post-embryonic human) @@ -36402,8 +34200,7 @@ - thalamic eminence (post-embryonic human) - FMA:295507 + thalamic eminence (post-embryonic human) @@ -36422,8 +34219,7 @@ - cloacal membrane (post-embryonic human) - FMA:295525 + cloacal membrane (post-embryonic human) @@ -36442,8 +34238,7 @@ - prechordal plate (post-embryonic human) - FMA:295532 + prechordal plate (post-embryonic human) @@ -36462,8 +34257,7 @@ - splanchnopleure (post-embryonic human) - FMA:295564 + splanchnopleure (post-embryonic human) @@ -36482,8 +34276,7 @@ - somatopleure (post-embryonic human) - FMA:295566 + somatopleure (post-embryonic human) @@ -36502,8 +34295,7 @@ - splanchnic layer of lateral plate mesoderm (post-embryonic human) - FMA:295568 + splanchnic layer of lateral plate mesoderm (post-embryonic human) @@ -36522,8 +34314,7 @@ - somatic layer of lateral plate mesoderm (post-embryonic human) - FMA:295570 + somatic layer of lateral plate mesoderm (post-embryonic human) @@ -36542,8 +34333,7 @@ - head fold of embryonic disc (post-embryonic human) - FMA:295585 + head fold of embryonic disc (post-embryonic human) @@ -36562,8 +34352,7 @@ - tail fold of embryonic disc (post-embryonic human) - FMA:295589 + tail fold of embryonic disc (post-embryonic human) @@ -36582,8 +34371,7 @@ - septum transversum (post-embryonic human) - FMA:295593 + septum transversum (post-embryonic human) @@ -36602,8 +34390,7 @@ - neural fold (post-embryonic human) - FMA:295618 + neural fold (post-embryonic human) @@ -36622,8 +34409,7 @@ - neural groove (post-embryonic human) - FMA:295624 + neural groove (post-embryonic human) @@ -36642,8 +34428,7 @@ - presumptive hindbrain (post-embryonic human) - FMA:295640 + presumptive hindbrain (post-embryonic human) @@ -36662,8 +34447,7 @@ - sclerotome (post-embryonic human) - FMA:295652 + sclerotome (post-embryonic human) @@ -36682,8 +34466,7 @@ - dermomyotome (post-embryonic human) - FMA:295654 + dermomyotome (post-embryonic human) @@ -36702,8 +34485,7 @@ - dermatome (post-embryonic human) - FMA:295656 + dermatome (post-embryonic human) @@ -36722,8 +34504,7 @@ - myotome (post-embryonic human) - FMA:295658 + myotome (post-embryonic human) @@ -36742,8 +34523,7 @@ - periderm (post-embryonic human) - FMA:295662 + periderm (post-embryonic human) @@ -36762,8 +34542,7 @@ - rhombomere (post-embryonic human) - FMA:295666 + rhombomere (post-embryonic human) @@ -36782,8 +34561,7 @@ - pharyngeal pouch 1 (post-embryonic human) - FMA:295668 + pharyngeal pouch 1 (post-embryonic human) @@ -36802,8 +34580,7 @@ - pharyngeal cleft (post-embryonic human) - FMA:295672 + pharyngeal cleft (post-embryonic human) @@ -36822,8 +34599,7 @@ - pharyngeal pouch 2 (post-embryonic human) - FMA:295676 + pharyngeal pouch 2 (post-embryonic human) @@ -36842,8 +34618,7 @@ - pharyngeal pouch 3 (post-embryonic human) - FMA:295682 + pharyngeal pouch 3 (post-embryonic human) @@ -36862,8 +34637,7 @@ - pharyngeal pouch 4 (post-embryonic human) - FMA:295688 + pharyngeal pouch 4 (post-embryonic human) @@ -36882,8 +34656,7 @@ - pharyngeal arch mesenchymal region (post-embryonic human) - FMA:295694 + pharyngeal arch mesenchymal region (post-embryonic human) @@ -36902,8 +34675,7 @@ - 2nd arch mesenchyme (post-embryonic human) - FMA:295698 + 2nd arch mesenchyme (post-embryonic human) @@ -36922,8 +34694,7 @@ - 3rd arch mesenchyme (post-embryonic human) - FMA:295700 + 3rd arch mesenchyme (post-embryonic human) @@ -36942,8 +34713,7 @@ - 4th arch mesenchyme (post-embryonic human) - FMA:295702 + 4th arch mesenchyme (post-embryonic human) @@ -36962,8 +34732,7 @@ - pharyngeal membrane (post-embryonic human) - FMA:295758 + pharyngeal membrane (post-embryonic human) @@ -36982,8 +34751,7 @@ - Meckel's cartilage (post-embryonic human) - FMA:295784 + Meckel's cartilage (post-embryonic human) @@ -37002,8 +34770,7 @@ - rhombomere 1 (post-embryonic human) - FMA:295790 + rhombomere 1 (post-embryonic human) @@ -37022,8 +34789,7 @@ - rhombomere 2 (post-embryonic human) - FMA:295792 + rhombomere 2 (post-embryonic human) @@ -37042,8 +34808,7 @@ - rhombomere 3 (post-embryonic human) - FMA:295794 + rhombomere 3 (post-embryonic human) @@ -37062,8 +34827,7 @@ - rhombomere 4 (post-embryonic human) - FMA:295796 + rhombomere 4 (post-embryonic human) @@ -37082,8 +34846,7 @@ - Reichert's cartilage (post-embryonic human) - FMA:295800 + Reichert's cartilage (post-embryonic human) @@ -37102,8 +34865,7 @@ - mesenchyme of fronto-nasal process (post-embryonic human) - FMA:295821 + mesenchyme of fronto-nasal process (post-embryonic human) @@ -37122,8 +34884,7 @@ - rhombomere 5 (post-embryonic human) - FMA:295834 + rhombomere 5 (post-embryonic human) @@ -37142,8 +34903,7 @@ - rhombomere 6 (post-embryonic human) - FMA:295836 + rhombomere 6 (post-embryonic human) @@ -37162,8 +34922,7 @@ - rhombomere 7 (post-embryonic human) - FMA:295838 + rhombomere 7 (post-embryonic human) @@ -37182,8 +34941,7 @@ - olfactory pit (post-embryonic human) - FMA:295840 + olfactory pit (post-embryonic human) @@ -37202,8 +34960,7 @@ - stomodeum (post-embryonic human) - FMA:295846 + stomodeum (post-embryonic human) @@ -37222,8 +34979,7 @@ - medial nasal prominence (post-embryonic human) - FMA:295858 + medial nasal prominence (post-embryonic human) @@ -37242,8 +34998,7 @@ - lateral nasal prominence (post-embryonic human) - FMA:295864 + lateral nasal prominence (post-embryonic human) @@ -37262,8 +35017,7 @@ - intermaxillary process (post-embryonic human) - FMA:295872 + intermaxillary process (post-embryonic human) @@ -37282,8 +35036,7 @@ - primary palate (post-embryonic human) - FMA:295874 + primary palate (post-embryonic human) @@ -37302,8 +35055,7 @@ - nasal fin (post-embryonic human) - FMA:295940 + nasal fin (post-embryonic human) @@ -37322,8 +35074,7 @@ - oronasal membrane (post-embryonic human) - FMA:295942 + oronasal membrane (post-embryonic human) @@ -37342,8 +35093,7 @@ - primary choana (post-embryonic human) - FMA:295944 + primary choana (post-embryonic human) @@ -37362,8 +35112,7 @@ - secondary palatal shelf (post-embryonic human) - FMA:295948 + secondary palatal shelf (post-embryonic human) @@ -37382,8 +35131,7 @@ - epiblast (generic) (post-embryonic human) - FMA:296704 + epiblast (generic) (post-embryonic human) @@ -37402,8 +35150,7 @@ - parietal yolk sac (post-embryonic human) - FMA:296713 + parietal yolk sac (post-embryonic human) @@ -37422,8 +35169,7 @@ - visceral yolk sac (post-embryonic human) - FMA:296715 + visceral yolk sac (post-embryonic human) @@ -37442,8 +35188,7 @@ - extraembryonic mesoderm (post-embryonic human) - FMA:296719 + extraembryonic mesoderm (post-embryonic human) @@ -37462,8 +35207,7 @@ - lens placode (post-embryonic human) - FMA:296767 + lens placode (post-embryonic human) @@ -37482,8 +35226,7 @@ - limb bud (post-embryonic human) - FMA:296780 + limb bud (post-embryonic human) @@ -37502,8 +35245,7 @@ - forelimb bud (post-embryonic human) - FMA:296782 + forelimb bud (post-embryonic human) @@ -37522,8 +35264,7 @@ - embryonic handplate (post-embryonic human) - FMA:296794 + embryonic handplate (post-embryonic human) @@ -37542,8 +35283,7 @@ - embryonic footplate (post-embryonic human) - FMA:296800 + embryonic footplate (post-embryonic human) @@ -37562,8 +35302,7 @@ - prostatic venous plexus (post-embryonic human) - FMA:29711 + prostatic venous plexus (post-embryonic human) @@ -37582,8 +35321,7 @@ - uterine venous plexus (post-embryonic human) - FMA:29712 + uterine venous plexus (post-embryonic human) @@ -37602,8 +35340,7 @@ - vaginal venous plexus (post-embryonic human) - FMA:29713 + vaginal venous plexus (post-embryonic human) @@ -37622,8 +35359,7 @@ - bony part of vertebral arch (post-embryonic human) - FMA:29741 + bony part of vertebral arch (post-embryonic human) @@ -37642,8 +35378,7 @@ - bony part of cervical vertebral arch (post-embryonic human) - FMA:29794 + bony part of cervical vertebral arch (post-embryonic human) @@ -37662,8 +35397,7 @@ - nasolacrimal groove (post-embryonic human) - FMA:300055 + nasolacrimal groove (post-embryonic human) @@ -37682,8 +35416,7 @@ - mesocolic lymph node (post-embryonic human) - FMA:300965 + mesocolic lymph node (post-embryonic human) @@ -37702,8 +35435,7 @@ - epithelium of vomeronasal organ (post-embryonic human) - FMA:301283 + epithelium of vomeronasal organ (post-embryonic human) @@ -37722,8 +35454,7 @@ - postcranial axial skeletal system (post-embryonic human) - FMA:302077 + postcranial axial skeletal system (post-embryonic human) @@ -37742,8 +35473,7 @@ - respiratory system mucosa (post-embryonic human) - FMA:302092 + respiratory system mucosa (post-embryonic human) @@ -37762,8 +35492,7 @@ - facial mesenchyme (post-embryonic human) - FMA:302884 + facial mesenchyme (post-embryonic human) @@ -37782,8 +35511,7 @@ - undifferentiated genital tubercle (post-embryonic human) - FMA:302888 + undifferentiated genital tubercle (post-embryonic human) @@ -37802,8 +35530,7 @@ - otic pit (post-embryonic human) - FMA:302911 + otic pit (post-embryonic human) @@ -37822,8 +35549,7 @@ - ear vesicle (post-embryonic human) - FMA:302920 + ear vesicle (post-embryonic human) @@ -37842,8 +35568,7 @@ - Rathke's pouch (post-embryonic human) - FMA:302929 + Rathke's pouch (post-embryonic human) @@ -37862,8 +35587,7 @@ - lymphatic vessel (post-embryonic human) - FMA:30315 + lymphatic vessel (post-embryonic human) @@ -37882,8 +35606,7 @@ - muscle structure (post-embryonic human) - FMA:30316 + muscle structure (post-embryonic human) @@ -37902,8 +35625,7 @@ - bone element (post-embryonic human) - FMA:30317 + bone element (post-embryonic human) @@ -37922,8 +35644,7 @@ - fascia (post-embryonic human) - FMA:30318 + fascia (post-embryonic human) @@ -37942,8 +35663,7 @@ - ligament (post-embryonic human) - FMA:30319 + ligament (post-embryonic human) @@ -37962,8 +35682,7 @@ - duct (post-embryonic human) - FMA:30320 + duct (post-embryonic human) @@ -37982,8 +35701,7 @@ - membranous layer (post-embryonic human) - FMA:30322 + membranous layer (post-embryonic human) @@ -38002,8 +35720,7 @@ - superior ischial ramus (post-embryonic human) - FMA:304318 + superior ischial ramus (post-embryonic human) @@ -38022,8 +35739,7 @@ - posterior ancreaticoduodenal lymph node (post-embryonic human) - FMA:304577 + posterior ancreaticoduodenal lymph node (post-embryonic human) @@ -38042,8 +35758,7 @@ - anatomical structure (post-embryonic human) - FMA:305751 + anatomical structure (post-embryonic human) @@ -38062,8 +35777,7 @@ - primary yolk sac cavity (post-embryonic human) - FMA:305888 + primary yolk sac cavity (post-embryonic human) @@ -38082,8 +35796,7 @@ - secondary yolk sac cavity (post-embryonic human) - FMA:305890 + secondary yolk sac cavity (post-embryonic human) @@ -38102,8 +35815,7 @@ - amniotic fluid (post-embryonic human) - FMA:305905 + amniotic fluid (post-embryonic human) @@ -38122,8 +35834,7 @@ - extraembryonic membrane (post-embryonic human) - FMA:305915 + extraembryonic membrane (post-embryonic human) @@ -38142,8 +35853,7 @@ - embryonic cardiovascular system (post-embryonic human) - FMA:305965 + embryonic cardiovascular system (post-embryonic human) @@ -38162,8 +35872,7 @@ - dental lamina (post-embryonic human) - FMA:306004 + dental lamina (post-embryonic human) @@ -38182,8 +35891,7 @@ - tooth bud (post-embryonic human) - FMA:306006 + tooth bud (post-embryonic human) @@ -38202,8 +35910,7 @@ - pes anserinus of tibia (post-embryonic human) - FMA:311256 + pes anserinus of tibia (post-embryonic human) @@ -38222,8 +35929,7 @@ - arteriole smooth muscle (post-embryonic human) - FMA:312251 + arteriole smooth muscle (post-embryonic human) @@ -38242,8 +35948,7 @@ - ciliary stroma (post-embryonic human) - FMA:312260 + ciliary stroma (post-embryonic human) @@ -38262,8 +35967,7 @@ - hyaloid cavity (post-embryonic human) - FMA:312291 + hyaloid cavity (post-embryonic human) @@ -38282,8 +35986,7 @@ - hyaloid vascular plexus (post-embryonic human) - FMA:312298 + hyaloid vascular plexus (post-embryonic human) @@ -38302,8 +36005,7 @@ - iris smooth muscle (post-embryonic human) - FMA:312338 + iris smooth muscle (post-embryonic human) @@ -38322,8 +36024,7 @@ - lymph node primary follicle (post-embryonic human) - FMA:312350 + lymph node primary follicle (post-embryonic human) @@ -38342,8 +36043,7 @@ - lymph node secondary follicle (post-embryonic human) - FMA:312352 + lymph node secondary follicle (post-embryonic human) @@ -38362,8 +36062,7 @@ - subcapsular sinus of lymph node (post-embryonic human) - FMA:312355 + subcapsular sinus of lymph node (post-embryonic human) @@ -38382,8 +36081,7 @@ - lymph node medullary sinus (post-embryonic human) - FMA:312359 + lymph node medullary sinus (post-embryonic human) @@ -38402,8 +36100,7 @@ - ophthalmic plexus (post-embryonic human) - FMA:312377 + ophthalmic plexus (post-embryonic human) @@ -38422,8 +36119,7 @@ - oblique extraocular muscle (post-embryonic human) - FMA:312383 + oblique extraocular muscle (post-embryonic human) @@ -38442,8 +36138,7 @@ - tooth enamel organ (post-embryonic human) - FMA:312389 + tooth enamel organ (post-embryonic human) @@ -38462,8 +36157,7 @@ - vasa hyaloidea propria (post-embryonic human) - FMA:312395 + vasa hyaloidea propria (post-embryonic human) @@ -38482,8 +36176,7 @@ - sputum (post-embryonic human) - FMA:312401 + sputum (post-embryonic human) @@ -38502,8 +36195,7 @@ - rectus extraocular muscle (post-embryonic human) - FMA:312408 + rectus extraocular muscle (post-embryonic human) @@ -38522,8 +36214,7 @@ - secondary palatal shelf epithelium (post-embryonic human) - FMA:312465 + secondary palatal shelf epithelium (post-embryonic human) @@ -38542,8 +36233,7 @@ - median lingual swelling (post-embryonic human) - FMA:312476 + median lingual swelling (post-embryonic human) @@ -38562,8 +36252,7 @@ - tetrapod frontal bone primordium (post-embryonic human) - FMA:312589 + tetrapod frontal bone primordium (post-embryonic human) @@ -38582,8 +36271,7 @@ - tetrapod parietal bone primordium (post-embryonic human) - FMA:312593 + tetrapod parietal bone primordium (post-embryonic human) @@ -38602,8 +36290,7 @@ - ethmoid bone primordium (post-embryonic human) - FMA:312597 + ethmoid bone primordium (post-embryonic human) @@ -38622,8 +36309,7 @@ - lumen of blood vessel (post-embryonic human) - FMA:312610 + lumen of blood vessel (post-embryonic human) @@ -38642,8 +36328,7 @@ - medial nasal process mesenchyme (post-embryonic human) - FMA:312659 + medial nasal process mesenchyme (post-embryonic human) @@ -38662,8 +36347,7 @@ - lateral nasal process mesenchyme (post-embryonic human) - FMA:312665 + lateral nasal process mesenchyme (post-embryonic human) @@ -38682,8 +36366,7 @@ - medial-nasal process ectoderm (post-embryonic human) - FMA:312675 + medial-nasal process ectoderm (post-embryonic human) @@ -38702,8 +36385,7 @@ - maxillary process ectoderm (post-embryonic human) - FMA:312685 + maxillary process ectoderm (post-embryonic human) @@ -38722,8 +36404,7 @@ - maxillary process mesenchyme (post-embryonic human) - FMA:312691 + maxillary process mesenchyme (post-embryonic human) @@ -38742,8 +36423,7 @@ - mesenchyme of nasal septum (post-embryonic human) - FMA:312700 + mesenchyme of nasal septum (post-embryonic human) @@ -38762,8 +36442,7 @@ - spinal cord neural plate (post-embryonic human) - FMA:312957 + spinal cord neural plate (post-embryonic human) @@ -38782,8 +36461,7 @@ - future brain (post-embryonic human) - FMA:312967 + future brain (post-embryonic human) @@ -38802,8 +36480,7 @@ - primary palate epithelium (post-embryonic human) - FMA:313406 + primary palate epithelium (post-embryonic human) @@ -38822,8 +36499,7 @@ - buccopharyngeal membrane (post-embryonic human) - FMA:313607 + buccopharyngeal membrane (post-embryonic human) @@ -38842,8 +36518,7 @@ - lateral lingual swelling (post-embryonic human) - FMA:313628 + lateral lingual swelling (post-embryonic human) @@ -38862,8 +36537,7 @@ - lateral lingual swelling epithelium (post-embryonic human) - FMA:313717 + lateral lingual swelling epithelium (post-embryonic human) @@ -38882,8 +36556,7 @@ - embryonic frontal process (post-embryonic human) - FMA:313738 + embryonic frontal process (post-embryonic human) @@ -38902,8 +36575,7 @@ - alveolar ridge (post-embryonic human) - FMA:313923 + alveolar ridge (post-embryonic human) @@ -38922,8 +36594,7 @@ - cortex of humerus (post-embryonic human) - FMA:31542 + cortex of humerus (post-embryonic human) @@ -38942,8 +36613,7 @@ - supraorbital ridge (post-embryonic human) - FMA:317104 + supraorbital ridge (post-embryonic human) @@ -38962,8 +36632,7 @@ - sacral foramen (post-embryonic human) - FMA:31749 + sacral foramen (post-embryonic human) @@ -38982,8 +36651,7 @@ - head ectomesenchyme (post-embryonic human) - FMA:318119 + head ectomesenchyme (post-embryonic human) @@ -39002,8 +36670,7 @@ - 6th arch mesenchyme (post-embryonic human) - FMA:318209 + 6th arch mesenchyme (post-embryonic human) @@ -39022,8 +36689,7 @@ - ligament of vertebral column (post-embryonic human) - FMA:31892 + ligament of vertebral column (post-embryonic human) @@ -39042,8 +36708,7 @@ - anterior longitudinal ligament (post-embryonic human) - FMA:31893 + anterior longitudinal ligament (post-embryonic human) @@ -39062,8 +36727,7 @@ - posterior longitudinal ligament (post-embryonic human) - FMA:31894 + posterior longitudinal ligament (post-embryonic human) @@ -39082,8 +36746,7 @@ - accessory lacrimal gland (post-embryonic human) - FMA:320425 + accessory lacrimal gland (post-embryonic human) @@ -39102,8 +36765,7 @@ - nasal capsule (post-embryonic human) - FMA:320527 + nasal capsule (post-embryonic human) @@ -39122,8 +36784,7 @@ - corpus cavernosum (post-embryonic human) - FMA:321004 + corpus cavernosum (post-embryonic human) @@ -39142,8 +36803,7 @@ - cranial fossa (post-embryonic human) - FMA:321144 + cranial fossa (post-embryonic human) @@ -39162,8 +36822,7 @@ - gland of nasal mucosa (post-embryonic human) - FMA:321518 + gland of nasal mucosa (post-embryonic human) @@ -39182,8 +36841,7 @@ - kidney arcuate vein (post-embryonic human) - FMA:321527 + kidney arcuate vein (post-embryonic human) @@ -39202,8 +36860,7 @@ - cerebellum fissure (post-embryonic human) - FMA:321547 + cerebellum fissure (post-embryonic human) @@ -39222,8 +36879,7 @@ - craniocervical lymph node (post-embryonic human) - FMA:321555 + craniocervical lymph node (post-embryonic human) @@ -39242,8 +36898,7 @@ - limb joint (post-embryonic human) - FMA:321558 + limb joint (post-embryonic human) @@ -39262,8 +36917,7 @@ - epiphysis of distal phalanx of manus (post-embryonic human) - FMA:321561 + epiphysis of distal phalanx of manus (post-embryonic human) @@ -39282,8 +36936,7 @@ - larynx submucosa (post-embryonic human) - FMA:321584 + larynx submucosa (post-embryonic human) @@ -39302,8 +36955,7 @@ - thoracic division of spinal cord central canal (post-embryonic human) - FMA:321588 + thoracic division of spinal cord central canal (post-embryonic human) @@ -39322,8 +36974,7 @@ - lumbar division of spinal cord central canal (post-embryonic human) - FMA:321589 + lumbar division of spinal cord central canal (post-embryonic human) @@ -39342,8 +36993,7 @@ - cervical division of cord spinal central canal (post-embryonic human) - FMA:321590 + cervical division of cord spinal central canal (post-embryonic human) @@ -39362,8 +37012,7 @@ - molar tooth 3 (post-embryonic human) - FMA:321612 + molar tooth 3 (post-embryonic human) @@ -39382,8 +37031,7 @@ - molar tooth 2 (post-embryonic human) - FMA:321613 + molar tooth 2 (post-embryonic human) @@ -39402,8 +37050,7 @@ - molar tooth 1 (post-embryonic human) - FMA:321614 + molar tooth 1 (post-embryonic human) @@ -39422,8 +37069,7 @@ - tunica vasculosa lentis (post-embryonic human) - FMA:321625 + tunica vasculosa lentis (post-embryonic human) @@ -39442,8 +37088,7 @@ - basisphenoid bone (post-embryonic human) - FMA:321630 + basisphenoid bone (post-embryonic human) @@ -39462,8 +37107,7 @@ - basiotic bone (post-embryonic human) - FMA:321631 + basiotic bone (post-embryonic human) @@ -39482,8 +37126,7 @@ - presphenoid bone (post-embryonic human) - FMA:321632 + presphenoid bone (post-embryonic human) @@ -39502,8 +37145,7 @@ - postsphenoidal bone (post-embryonic human) - FMA:321633 + postsphenoidal bone (post-embryonic human) @@ -39522,30 +37164,7 @@ - maxillary tooth (post-embryonic human) - FMA:321646 - - - - - - - - - - - - - - - - - - - - dentary tooth (post-embryonic human) - tooth of lower jaw (post-embryonic human) - FMA:321647 + maxillary tooth (post-embryonic human) @@ -39564,8 +37183,7 @@ - phalanx (post-embryonic human) - FMA:321661 + phalanx (post-embryonic human) @@ -39584,8 +37202,7 @@ - central carpal bone (post-embryonic human) - FMA:321692 + central carpal bone (post-embryonic human) @@ -39604,8 +37221,7 @@ - epicondyle of humerus (post-embryonic human) - FMA:321693 + epicondyle of humerus (post-embryonic human) @@ -39624,8 +37240,7 @@ - nucleus of cerebellar nuclear complex (post-embryonic human) - FMA:321695 + nucleus of cerebellar nuclear complex (post-embryonic human) @@ -39644,8 +37259,7 @@ - sacral division of spinal cord central canal (post-embryonic human) - FMA:321696 + sacral division of spinal cord central canal (post-embryonic human) @@ -39664,8 +37278,7 @@ - upper jaw incisor (post-embryonic human) - FMA:321754 + upper jaw incisor (post-embryonic human) @@ -39684,8 +37297,7 @@ - wrist joint (post-embryonic human) - FMA:321842 + wrist joint (post-embryonic human) @@ -39704,8 +37316,7 @@ - vena cava (post-embryonic human) - FMA:321896 + vena cava (post-embryonic human) @@ -39724,8 +37335,7 @@ - genital labium (post-embryonic human) - FMA:321903 + genital labium (post-embryonic human) @@ -39744,8 +37354,7 @@ - primitive heart tube (post-embryonic human) - FMA:321916 + primitive heart tube (post-embryonic human) @@ -39764,8 +37373,7 @@ - gonadal ridge (post-embryonic human) - FMA:321917 + gonadal ridge (post-embryonic human) @@ -39784,8 +37392,7 @@ - urogenital fold (post-embryonic human) - FMA:321919 + urogenital fold (post-embryonic human) @@ -39804,8 +37411,7 @@ - subarachnoid space of brain (post-embryonic human) - FMA:322073 + subarachnoid space of brain (post-embryonic human) @@ -39824,8 +37430,7 @@ - subarachnoid space of spinal cord (post-embryonic human) - FMA:322074 + subarachnoid space of spinal cord (post-embryonic human) @@ -39844,8 +37449,7 @@ - subiliac lymph node (post-embryonic human) - FMA:323407 + subiliac lymph node (post-embryonic human) @@ -39864,8 +37468,7 @@ - bony part of vertebral arch of first sacral vertebra (post-embryonic human) - FMA:32395 + bony part of vertebral arch of first sacral vertebra (post-embryonic human) @@ -39884,8 +37487,7 @@ - vertebral arch of sacral segment (post-embryonic human) - FMA:32401 + vertebral arch of sacral segment (post-embryonic human) @@ -39904,8 +37506,7 @@ - abdominal viscera (post-embryonic human) - FMA:32413 + abdominal viscera (post-embryonic human) @@ -39924,8 +37525,7 @@ - neurovascular bundle (post-embryonic human) - FMA:32419 + neurovascular bundle (post-embryonic human) @@ -39944,8 +37544,7 @@ - prevertebral muscle (post-embryonic human) - FMA:32514 + prevertebral muscle (post-embryonic human) @@ -39964,8 +37563,7 @@ - levator scapulae muscle (post-embryonic human) - FMA:32519 + levator scapulae muscle (post-embryonic human) @@ -39984,8 +37582,7 @@ - deltoid (post-embryonic human) - FMA:32521 + deltoid (post-embryonic human) @@ -40004,8 +37601,7 @@ - rectus capitis posterior major (post-embryonic human) - FMA:32525 + rectus capitis posterior major (post-embryonic human) @@ -40024,8 +37620,7 @@ - rectus capitis posterior minor (post-embryonic human) - FMA:32526 + rectus capitis posterior minor (post-embryonic human) @@ -40044,8 +37639,7 @@ - infraspinatus muscle (post-embryonic human) - FMA:32546 + infraspinatus muscle (post-embryonic human) @@ -40064,8 +37658,7 @@ - teres major muscle (post-embryonic human) - FMA:32549 + teres major muscle (post-embryonic human) @@ -40084,8 +37677,7 @@ - teres minor muscle (post-embryonic human) - FMA:32550 + teres minor muscle (post-embryonic human) @@ -40104,8 +37696,7 @@ - musculature (post-embryonic human) - FMA:32558 + musculature (post-embryonic human) @@ -40124,8 +37715,7 @@ - cartilage tissue of sternum (post-embryonic human) - FMA:32567 + cartilage tissue of sternum (post-embryonic human) @@ -40144,8 +37734,7 @@ - xiphoid cartilage (post-embryonic human) - FMA:32574 + xiphoid cartilage (post-embryonic human) @@ -40164,8 +37753,7 @@ - xiphoid process bone (post-embryonic human) - FMA:32577 + xiphoid process bone (post-embryonic human) @@ -40184,8 +37772,7 @@ - proximal phalanx of pedal digit 2 (post-embryonic human) - FMA:32618 + proximal phalanx of pedal digit 2 (post-embryonic human) @@ -40204,8 +37791,7 @@ - proximal phalanx of pedal digit 3 (post-embryonic human) - FMA:32619 + proximal phalanx of pedal digit 3 (post-embryonic human) @@ -40224,8 +37810,7 @@ - proximal phalanx of pedal digit 4 (post-embryonic human) - FMA:32620 + proximal phalanx of pedal digit 4 (post-embryonic human) @@ -40244,8 +37829,7 @@ - proximal phalanx of pedal digit 5 (post-embryonic human) - FMA:32621 + proximal phalanx of pedal digit 5 (post-embryonic human) @@ -40264,8 +37848,7 @@ - middle phalanx of pedal digit 2 (post-embryonic human) - FMA:32623 + middle phalanx of pedal digit 2 (post-embryonic human) @@ -40284,8 +37867,7 @@ - middle phalanx of pedal digit 3 (post-embryonic human) - FMA:32624 + middle phalanx of pedal digit 3 (post-embryonic human) @@ -40304,8 +37886,7 @@ - middle phalanx of pedal digit 4 (post-embryonic human) - FMA:32625 + middle phalanx of pedal digit 4 (post-embryonic human) @@ -40324,8 +37905,7 @@ - distal phalanx of pedal digit 1 (post-embryonic human) - FMA:32627 + distal phalanx of pedal digit 1 (post-embryonic human) @@ -40344,8 +37924,7 @@ - distal phalanx of pedal digit 2 (post-embryonic human) - FMA:32628 + distal phalanx of pedal digit 2 (post-embryonic human) @@ -40364,8 +37943,7 @@ - distal phalanx of pedal digit 3 (post-embryonic human) - FMA:32629 + distal phalanx of pedal digit 3 (post-embryonic human) @@ -40384,8 +37962,7 @@ - distal phalanx of pedal digit 4 (post-embryonic human) - FMA:32630 + distal phalanx of pedal digit 4 (post-embryonic human) @@ -40404,8 +37981,7 @@ - distal phalanx of pedal digit 5 (post-embryonic human) - FMA:32631 + distal phalanx of pedal digit 5 (post-embryonic human) @@ -40424,8 +38000,7 @@ - sesamoid bone (post-embryonic human) - FMA:32672 + sesamoid bone (post-embryonic human) @@ -40444,8 +38019,7 @@ - compact bone of long bone (post-embryonic human) - FMA:32674 + compact bone of long bone (post-embryonic human) @@ -40464,8 +38038,7 @@ - periosteum of long bone (post-embryonic human) - FMA:32677 + periosteum of long bone (post-embryonic human) @@ -40484,8 +38057,7 @@ - compact bone of diaphysis (post-embryonic human) - FMA:32678 + compact bone of diaphysis (post-embryonic human) @@ -40504,8 +38076,7 @@ - periosteum of epiphysis (post-embryonic human) - FMA:32687 + periosteum of epiphysis (post-embryonic human) @@ -40524,8 +38095,7 @@ - diaphysis proper (post-embryonic human) - FMA:32688 + diaphysis proper (post-embryonic human) @@ -40544,8 +38114,7 @@ - endosteum (post-embryonic human) - FMA:32692 + endosteum (post-embryonic human) @@ -40564,8 +38133,7 @@ - osteon (post-embryonic human) - FMA:32693 + osteon (post-embryonic human) @@ -40584,8 +38152,7 @@ - proximal epiphysis (post-embryonic human) - FMA:32821 + proximal epiphysis (post-embryonic human) @@ -40604,8 +38171,7 @@ - distal epiphysis (post-embryonic human) - FMA:32822 + distal epiphysis (post-embryonic human) @@ -40624,8 +38190,7 @@ - proximal metaphysis (post-embryonic human) - FMA:32823 + proximal metaphysis (post-embryonic human) @@ -40644,8 +38209,7 @@ - distal metaphysis (post-embryonic human) - FMA:32824 + distal metaphysis (post-embryonic human) @@ -40664,8 +38228,7 @@ - epiphysis of humerus (post-embryonic human) - FMA:32825 + epiphysis of humerus (post-embryonic human) @@ -40684,8 +38247,7 @@ - distal epiphysis of humerus (post-embryonic human) - FMA:32826 + distal epiphysis of humerus (post-embryonic human) @@ -40704,8 +38266,7 @@ - metaphysis of humerus (post-embryonic human) - FMA:32830 + metaphysis of humerus (post-embryonic human) @@ -40724,8 +38285,7 @@ - epiphysis of femur (post-embryonic human) - FMA:32838 + epiphysis of femur (post-embryonic human) @@ -40744,8 +38304,7 @@ - proximal epiphysis of femur (post-embryonic human) - FMA:32841 + proximal epiphysis of femur (post-embryonic human) @@ -40764,8 +38323,7 @@ - distal epiphysis of femur (post-embryonic human) - FMA:32844 + distal epiphysis of femur (post-embryonic human) @@ -40784,8 +38342,7 @@ - diaphysis of femur (post-embryonic human) - FMA:32847 + diaphysis of femur (post-embryonic human) @@ -40804,8 +38361,7 @@ - head of femur (post-embryonic human) - FMA:32851 + head of femur (post-embryonic human) @@ -40824,8 +38380,7 @@ - greater trochanter (post-embryonic human) - FMA:32852 + greater trochanter (post-embryonic human) @@ -40844,8 +38399,7 @@ - lesser trochanter (post-embryonic human) - FMA:32853 + lesser trochanter (post-embryonic human) @@ -40864,8 +38418,7 @@ - condyle of femur (post-embryonic human) - FMA:32855 + condyle of femur (post-embryonic human) @@ -40884,8 +38437,7 @@ - medial condyle of femur (post-embryonic human) - FMA:32858 + medial condyle of femur (post-embryonic human) @@ -40904,8 +38456,7 @@ - lateral condyle of femur (post-embryonic human) - FMA:32859 + lateral condyle of femur (post-embryonic human) @@ -40924,8 +38475,7 @@ - medial epicondyle of femur (post-embryonic human) - FMA:32864 + medial epicondyle of femur (post-embryonic human) @@ -40944,8 +38494,7 @@ - lateral epicondyle of femur (post-embryonic human) - FMA:32867 + lateral epicondyle of femur (post-embryonic human) @@ -40964,8 +38513,7 @@ - metaphysis of femur (post-embryonic human) - FMA:32875 + metaphysis of femur (post-embryonic human) @@ -40984,8 +38532,7 @@ - proximal metaphysis of femur (post-embryonic human) - FMA:32878 + proximal metaphysis of femur (post-embryonic human) @@ -41004,8 +38551,7 @@ - distal metaphysis of femur (post-embryonic human) - FMA:32881 + distal metaphysis of femur (post-embryonic human) @@ -41024,8 +38570,7 @@ - pedal digit 1 phalanx (post-embryonic human) - FMA:32884 + pedal digit 1 phalanx (post-embryonic human) @@ -41044,8 +38589,7 @@ - proximal epiphysis of phalanx of pes (post-embryonic human) - FMA:32888 + proximal epiphysis of phalanx of pes (post-embryonic human) @@ -41064,8 +38608,7 @@ - distal epiphysis of phalanx of pes (post-embryonic human) - FMA:32890 + distal epiphysis of phalanx of pes (post-embryonic human) @@ -41084,8 +38627,7 @@ - pedal digit 2 phalanx (post-embryonic human) - FMA:32899 + pedal digit 2 phalanx (post-embryonic human) @@ -41104,8 +38646,7 @@ - pedal digit 3 phalanx (post-embryonic human) - FMA:32900 + pedal digit 3 phalanx (post-embryonic human) @@ -41124,8 +38665,7 @@ - pedal digit 4 phalanx (post-embryonic human) - FMA:32901 + pedal digit 4 phalanx (post-embryonic human) @@ -41144,8 +38684,7 @@ - pedal digit 5 phalanx (post-embryonic human) - FMA:32902 + pedal digit 5 phalanx (post-embryonic human) @@ -41164,8 +38703,7 @@ - distal epiphysis of distal phalanx of pedal digit 1 (post-embryonic human) - FMA:33036 + distal epiphysis of distal phalanx of pedal digit 1 (post-embryonic human) @@ -41184,8 +38722,7 @@ - distal epiphysis of distal phalanx of pedal digit 2 (post-embryonic human) - FMA:33045 + distal epiphysis of distal phalanx of pedal digit 2 (post-embryonic human) @@ -41204,8 +38741,7 @@ - distal epiphysis of distal phalanx of pedal digit 3 (post-embryonic human) - FMA:33054 + distal epiphysis of distal phalanx of pedal digit 3 (post-embryonic human) @@ -41224,8 +38760,7 @@ - set of muscles of vertebral column (post-embryonic human) - FMA:33061 + set of muscles of vertebral column (post-embryonic human) @@ -41244,8 +38779,7 @@ - distal epiphysis of distal phalanx of pedal digit 4 (post-embryonic human) - FMA:33091 + distal epiphysis of distal phalanx of pedal digit 4 (post-embryonic human) @@ -41264,8 +38798,7 @@ - distal epiphysis of distal phalanx of pedal digit 5 (post-embryonic human) - FMA:33106 + distal epiphysis of distal phalanx of pedal digit 5 (post-embryonic human) @@ -41284,8 +38817,7 @@ - epiphysis of tibia (post-embryonic human) - FMA:33112 + epiphysis of tibia (post-embryonic human) @@ -41304,8 +38836,7 @@ - proximal epiphysis of tibia (post-embryonic human) - FMA:33113 + proximal epiphysis of tibia (post-embryonic human) @@ -41324,8 +38855,7 @@ - distal epiphysis of tibia (post-embryonic human) - FMA:33116 + distal epiphysis of tibia (post-embryonic human) @@ -41344,8 +38874,7 @@ - diaphysis of tibia (post-embryonic human) - FMA:33125 + diaphysis of tibia (post-embryonic human) @@ -41364,8 +38893,7 @@ - metaphysis of tibia (post-embryonic human) - FMA:33135 + metaphysis of tibia (post-embryonic human) @@ -41384,8 +38912,7 @@ - proximal carpal bone (post-embryonic human) - FMA:33302 + proximal carpal bone (post-embryonic human) @@ -41404,8 +38931,7 @@ - distal carpal bone (post-embryonic human) - FMA:33303 + distal carpal bone (post-embryonic human) @@ -41424,8 +38950,7 @@ - musculature of pectoral girdle (post-embryonic human) - FMA:33519 + musculature of pectoral girdle (post-embryonic human) @@ -41444,8 +38969,7 @@ - muscle of shoulder (post-embryonic human) - FMA:33531 + muscle of shoulder (post-embryonic human) @@ -41464,8 +38988,7 @@ - neck of talus (post-embryonic human) - FMA:33636 + neck of talus (post-embryonic human) @@ -41484,8 +39007,7 @@ - lateral tubercle of talus (post-embryonic human) - FMA:33655 + lateral tubercle of talus (post-embryonic human) @@ -41504,8 +39026,7 @@ - epiphysis of fibula (post-embryonic human) - FMA:33726 + epiphysis of fibula (post-embryonic human) @@ -41524,8 +39045,7 @@ - proximal epiphysis of fibula (post-embryonic human) - FMA:33729 + proximal epiphysis of fibula (post-embryonic human) @@ -41544,8 +39064,7 @@ - distal epiphysis of fibula (post-embryonic human) - FMA:33732 + distal epiphysis of fibula (post-embryonic human) @@ -41564,8 +39083,7 @@ - diaphysis of fibula (post-embryonic human) - FMA:33738 + diaphysis of fibula (post-embryonic human) @@ -41584,8 +39102,7 @@ - metaphysis of fibula (post-embryonic human) - FMA:33745 + metaphysis of fibula (post-embryonic human) @@ -41604,8 +39121,7 @@ - epiphysis of ulna (post-embryonic human) - FMA:33748 + epiphysis of ulna (post-embryonic human) @@ -41624,8 +39140,7 @@ - proximal epiphysis of ulna (post-embryonic human) - FMA:33751 + proximal epiphysis of ulna (post-embryonic human) @@ -41644,8 +39159,7 @@ - distal epiphysis of ulna (post-embryonic human) - FMA:33754 + distal epiphysis of ulna (post-embryonic human) @@ -41664,8 +39178,7 @@ - diaphysis of ulna (post-embryonic human) - FMA:33760 + diaphysis of ulna (post-embryonic human) @@ -41684,8 +39197,7 @@ - ulnar metaphysis (post-embryonic human) - FMA:33767 + ulnar metaphysis (post-embryonic human) @@ -41704,8 +39216,7 @@ - epiphysis of radius (post-embryonic human) - FMA:33770 + epiphysis of radius (post-embryonic human) @@ -41724,8 +39235,7 @@ - head of radius (post-embryonic human) - FMA:33773 + head of radius (post-embryonic human) @@ -41744,8 +39254,7 @@ - distal epiphysis of radius (post-embryonic human) - FMA:33776 + distal epiphysis of radius (post-embryonic human) @@ -41764,8 +39273,7 @@ - diaphysis of radius (post-embryonic human) - FMA:33782 + diaphysis of radius (post-embryonic human) @@ -41784,8 +39292,7 @@ - metaphysis of radius (post-embryonic human) - FMA:33789 + metaphysis of radius (post-embryonic human) @@ -41804,8 +39311,7 @@ - epiphysis of metacarpal bone (post-embryonic human) - FMA:33792 + epiphysis of metacarpal bone (post-embryonic human) @@ -41824,8 +39330,7 @@ - epiphysis of first metacarpal bone (post-embryonic human) - FMA:33793 + epiphysis of first metacarpal bone (post-embryonic human) @@ -41844,8 +39349,7 @@ - epiphysis of second metacarpal bone (post-embryonic human) - FMA:33794 + epiphysis of second metacarpal bone (post-embryonic human) @@ -41864,8 +39368,7 @@ - proximal epiphysis of metacarpal bone (post-embryonic human) - FMA:33795 + proximal epiphysis of metacarpal bone (post-embryonic human) @@ -41884,8 +39387,7 @@ - distal epiphysis of metacarpal bone (post-embryonic human) - FMA:33798 + distal epiphysis of metacarpal bone (post-embryonic human) @@ -41904,8 +39406,7 @@ - diaphysis of metacarpal bone (post-embryonic human) - FMA:33804 + diaphysis of metacarpal bone (post-embryonic human) @@ -41924,8 +39425,7 @@ - epiphysis of metatarsal bone (post-embryonic human) - FMA:33814 + epiphysis of metatarsal bone (post-embryonic human) @@ -41944,8 +39444,7 @@ - epiphysis of first metatarsal bone (post-embryonic human) - FMA:33815 + epiphysis of first metatarsal bone (post-embryonic human) @@ -41964,8 +39463,7 @@ - epiphysis of second metatarsal bone (post-embryonic human) - FMA:33816 + epiphysis of second metatarsal bone (post-embryonic human) @@ -41984,8 +39482,7 @@ - proximal epiphysis of metatarsal bone (post-embryonic human) - FMA:33817 + proximal epiphysis of metatarsal bone (post-embryonic human) @@ -42004,8 +39501,7 @@ - diaphysis of metatarsal bone (post-embryonic human) - FMA:33826 + diaphysis of metatarsal bone (post-embryonic human) @@ -42024,8 +39520,7 @@ - portion of cartilage tissue in tibia (post-embryonic human) - FMA:33923 + portion of cartilage tissue in tibia (post-embryonic human) @@ -42044,8 +39539,7 @@ - epiphyseal plate of radius (post-embryonic human) - FMA:34354 + epiphyseal plate of radius (post-embryonic human) @@ -42064,8 +39558,7 @@ - skin of shoulder (post-embryonic human) - FMA:34830 + skin of shoulder (post-embryonic human) @@ -42084,8 +39577,7 @@ - articular capsule (post-embryonic human) - FMA:34836 + articular capsule (post-embryonic human) @@ -42104,8 +39596,7 @@ - articular capsule of glenohumeral joint (post-embryonic human) - FMA:34944 + articular capsule of glenohumeral joint (post-embryonic human) @@ -42124,8 +39615,7 @@ - synovial joint of pelvic girdle (post-embryonic human) - FMA:35173 + synovial joint of pelvic girdle (post-embryonic human) @@ -42144,8 +39634,7 @@ - knee joint (post-embryonic human) - FMA:35175 + knee joint (post-embryonic human) @@ -42164,8 +39653,7 @@ - hip joint (post-embryonic human) - FMA:35178 + hip joint (post-embryonic human) @@ -42184,8 +39672,7 @@ - tibiofibular joint (post-embryonic human) - FMA:35181 + tibiofibular joint (post-embryonic human) @@ -42204,8 +39691,7 @@ - superior tibiofibular joint (post-embryonic human) - FMA:35184 + superior tibiofibular joint (post-embryonic human) @@ -42224,8 +39710,7 @@ - pes joint (post-embryonic human) - FMA:35194 + pes joint (post-embryonic human) @@ -42244,8 +39729,7 @@ - ankle joint (post-embryonic human) - FMA:35195 + ankle joint (post-embryonic human) @@ -42264,8 +39748,7 @@ - subtalar joint (post-embryonic human) - FMA:35198 + subtalar joint (post-embryonic human) @@ -42284,8 +39767,7 @@ - transverse tarsal joint (post-embryonic human) - FMA:35201 + transverse tarsal joint (post-embryonic human) @@ -42304,8 +39786,7 @@ - talocalcaneonavicular joint (post-embryonic human) - FMA:35204 + talocalcaneonavicular joint (post-embryonic human) @@ -42324,8 +39805,7 @@ - calcaneocuboid joint (post-embryonic human) - FMA:35207 + calcaneocuboid joint (post-embryonic human) @@ -42344,8 +39824,7 @@ - intercuneiform joint (post-embryonic human) - FMA:35213 + intercuneiform joint (post-embryonic human) @@ -42364,8 +39843,7 @@ - tarsometatarsal joint (post-embryonic human) - FMA:35216 + tarsometatarsal joint (post-embryonic human) @@ -42384,8 +39862,7 @@ - intermetatarsal joint (post-embryonic human) - FMA:35219 + intermetatarsal joint (post-embryonic human) @@ -42404,8 +39881,7 @@ - metatarsophalangeal joint (post-embryonic human) - FMA:35222 + metatarsophalangeal joint (post-embryonic human) @@ -42424,8 +39900,7 @@ - interphalangeal joint of pes (post-embryonic human) - FMA:35225 + interphalangeal joint of pes (post-embryonic human) @@ -42444,8 +39919,7 @@ - metatarsophalangeal joint of pedal digit 1 (post-embryonic human) - FMA:35228 + metatarsophalangeal joint of pedal digit 1 (post-embryonic human) @@ -42464,8 +39938,7 @@ - metatarsophalangeal joint of pedal digit 2 (post-embryonic human) - FMA:35231 + metatarsophalangeal joint of pedal digit 2 (post-embryonic human) @@ -42484,8 +39957,7 @@ - metatarsophalangeal joint of pedal digit 3 (post-embryonic human) - FMA:35234 + metatarsophalangeal joint of pedal digit 3 (post-embryonic human) @@ -42504,8 +39976,7 @@ - metatarsophalangeal joint of pedal digit 4 (post-embryonic human) - FMA:35237 + metatarsophalangeal joint of pedal digit 4 (post-embryonic human) @@ -42524,8 +39995,7 @@ - metatarsophalangeal joint of pedal digit 5 (post-embryonic human) - FMA:35240 + metatarsophalangeal joint of pedal digit 5 (post-embryonic human) @@ -42544,8 +40014,7 @@ - synovial joint of pectoral girdle (post-embryonic human) - FMA:35243 + synovial joint of pectoral girdle (post-embryonic human) @@ -42564,8 +40033,7 @@ - metacarpophalangeal joint (post-embryonic human) - FMA:35246 + metacarpophalangeal joint (post-embryonic human) @@ -42584,8 +40052,7 @@ - metacarpophalangeal joint of manual digit 1 (post-embryonic human) - FMA:35249 + metacarpophalangeal joint of manual digit 1 (post-embryonic human) @@ -42604,8 +40071,7 @@ - metacarpophalangeal joint of manual digit 2 (post-embryonic human) - FMA:35252 + metacarpophalangeal joint of manual digit 2 (post-embryonic human) @@ -42624,8 +40090,7 @@ - metacarpophalangeal joint of manual digit 3 (post-embryonic human) - FMA:35255 + metacarpophalangeal joint of manual digit 3 (post-embryonic human) @@ -42644,8 +40109,7 @@ - metacarpophalangeal joint of manual digit 4 (post-embryonic human) - FMA:35258 + metacarpophalangeal joint of manual digit 4 (post-embryonic human) @@ -42664,8 +40128,7 @@ - metacarpophalangeal joint of manual digit 5 (post-embryonic human) - FMA:35261 + metacarpophalangeal joint of manual digit 5 (post-embryonic human) @@ -42684,8 +40147,7 @@ - interphalangeal joint of manus (post-embryonic human) - FMA:35285 + interphalangeal joint of manus (post-embryonic human) @@ -42704,8 +40166,7 @@ - carpometacarpal joint (post-embryonic human) - FMA:35287 + carpometacarpal joint (post-embryonic human) @@ -42724,8 +40185,7 @@ - intermetacarpal joint (post-embryonic human) - FMA:35288 + intermetacarpal joint (post-embryonic human) @@ -42744,8 +40204,7 @@ - elbow joint (post-embryonic human) - FMA:35289 + elbow joint (post-embryonic human) @@ -42764,8 +40223,7 @@ - distal radio-ulnar joint (post-embryonic human) - FMA:35290 + distal radio-ulnar joint (post-embryonic human) @@ -42784,8 +40242,7 @@ - radio-carpal joint (post-embryonic human) - FMA:35291 + radio-carpal joint (post-embryonic human) @@ -42804,8 +40261,7 @@ - intercarpal joint (post-embryonic human) - FMA:35292 + intercarpal joint (post-embryonic human) @@ -42824,8 +40280,7 @@ - midcarpal joint (post-embryonic human) - FMA:35293 + midcarpal joint (post-embryonic human) @@ -42844,8 +40299,7 @@ - interphalangeal joint of manual digit 1 (post-embryonic human) - FMA:35312 + interphalangeal joint of manual digit 1 (post-embryonic human) @@ -42864,8 +40318,7 @@ - proximal interphalangeal joint of little finger (post-embryonic human) - FMA:35324 + proximal interphalangeal joint of little finger (post-embryonic human) @@ -42884,8 +40337,7 @@ - distal interphalangeal joint of manual digit 2 (post-embryonic human) - FMA:35334 + distal interphalangeal joint of manual digit 2 (post-embryonic human) @@ -42904,8 +40356,7 @@ - distal interphalangeal joint of manual digit 3 (post-embryonic human) - FMA:35337 + distal interphalangeal joint of manual digit 3 (post-embryonic human) @@ -42924,8 +40375,7 @@ - distal interphalangeal joint of manual digit 4 (post-embryonic human) - FMA:35340 + distal interphalangeal joint of manual digit 4 (post-embryonic human) @@ -42944,8 +40394,7 @@ - distal interphalangeal joint of manural digit 5 (post-embryonic human) - FMA:35343 + distal interphalangeal joint of manural digit 5 (post-embryonic human) @@ -42964,8 +40413,7 @@ - interphalangeal joint of pedal digit 1 (post-embryonic human) - FMA:35353 + interphalangeal joint of pedal digit 1 (post-embryonic human) @@ -42984,8 +40432,7 @@ - interphalangeal joint of pedal digit 2 (post-embryonic human) - FMA:35356 + interphalangeal joint of pedal digit 2 (post-embryonic human) @@ -43004,8 +40451,7 @@ - interphalangeal joint of pedal digit 3 (post-embryonic human) - FMA:35359 + interphalangeal joint of pedal digit 3 (post-embryonic human) @@ -43024,8 +40470,7 @@ - interphalangeal joint of pedal digit 4 (post-embryonic human) - FMA:35362 + interphalangeal joint of pedal digit 4 (post-embryonic human) @@ -43044,8 +40489,7 @@ - interphalangeal joint of pedal digit 5 (post-embryonic human) - FMA:35365 + interphalangeal joint of pedal digit 5 (post-embryonic human) @@ -43064,8 +40508,7 @@ - distal interphalangeal joint of pedal digit 2 (post-embryonic human) - FMA:35369 + distal interphalangeal joint of pedal digit 2 (post-embryonic human) @@ -43084,8 +40527,7 @@ - distal interphalangeal joint of pedal digit 3 (post-embryonic human) - FMA:35375 + distal interphalangeal joint of pedal digit 3 (post-embryonic human) @@ -43104,8 +40546,7 @@ - distal interphalangeal joint of pedal digit 4 (post-embryonic human) - FMA:35387 + distal interphalangeal joint of pedal digit 4 (post-embryonic human) @@ -43124,8 +40565,7 @@ - distal interphalangeal joint of pedal digit 5 (post-embryonic human) - FMA:35393 + distal interphalangeal joint of pedal digit 5 (post-embryonic human) @@ -43144,8 +40584,7 @@ - interphalangeal joint of manual digit 2 (post-embryonic human) - FMA:35397 + interphalangeal joint of manual digit 2 (post-embryonic human) @@ -43164,8 +40603,7 @@ - interphalangeal joint of manual digit 3 (post-embryonic human) - FMA:35400 + interphalangeal joint of manual digit 3 (post-embryonic human) @@ -43184,8 +40622,7 @@ - interphalangeal joint of manual digit 4 (post-embryonic human) - FMA:35403 + interphalangeal joint of manual digit 4 (post-embryonic human) @@ -43204,8 +40641,7 @@ - interphalangeal joint of manual digit 5 (post-embryonic human) - FMA:35407 + interphalangeal joint of manual digit 5 (post-embryonic human) @@ -43224,8 +40660,7 @@ - carpometacarpal joint of digit 1 (post-embryonic human) - FMA:35421 + carpometacarpal joint of digit 1 (post-embryonic human) @@ -43244,8 +40679,7 @@ - medial condyle of tibia (post-embryonic human) - FMA:35445 + medial condyle of tibia (post-embryonic human) @@ -43264,8 +40698,7 @@ - lateral condyle of tibia (post-embryonic human) - FMA:35448 + lateral condyle of tibia (post-embryonic human) @@ -43284,8 +40717,7 @@ - manual digit 1 phalanx (post-embryonic human) - FMA:35477 + manual digit 1 phalanx (post-embryonic human) @@ -43304,8 +40736,7 @@ - manual digit 2 phalanx (post-embryonic human) - FMA:35480 + manual digit 2 phalanx (post-embryonic human) @@ -43324,8 +40755,7 @@ - manual digit 3 phalanx (post-embryonic human) - FMA:35483 + manual digit 3 phalanx (post-embryonic human) @@ -43344,8 +40774,7 @@ - manual digit 4 phalanx (post-embryonic human) - FMA:35486 + manual digit 4 phalanx (post-embryonic human) @@ -43364,8 +40793,7 @@ - manual digit 5 phalanx (post-embryonic human) - FMA:35489 + manual digit 5 phalanx (post-embryonic human) @@ -43384,8 +40812,7 @@ - lateral malleolus of fibula (post-embryonic human) - FMA:35502 + lateral malleolus of fibula (post-embryonic human) @@ -43404,8 +40831,7 @@ - neck of fibula (post-embryonic human) - FMA:35508 + neck of fibula (post-embryonic human) @@ -43424,8 +40850,7 @@ - rotator cuff (post-embryonic human) - FMA:37018 + rotator cuff (post-embryonic human) @@ -43444,8 +40869,7 @@ - musculocutaneous nerve (post-embryonic human) - FMA:37064 + musculocutaneous nerve (post-embryonic human) @@ -43464,8 +40888,7 @@ - radial nerve (post-embryonic human) - FMA:37069 + radial nerve (post-embryonic human) @@ -43484,8 +40907,7 @@ - axillary nerve (post-embryonic human) - FMA:37072 + axillary nerve (post-embryonic human) @@ -43504,8 +40926,7 @@ - infraspinatus tendon (post-embryonic human) - FMA:37076 + infraspinatus tendon (post-embryonic human) @@ -43524,8 +40945,7 @@ - orifice (post-embryonic human) - FMA:3724 + orifice (post-embryonic human) @@ -43544,8 +40964,7 @@ - ulnar nerve (post-embryonic human) - FMA:37319 + ulnar nerve (post-embryonic human) @@ -43564,8 +40983,7 @@ - axilla skin (post-embryonic human) - FMA:37322 + axilla skin (post-embryonic human) @@ -43584,8 +41002,7 @@ - aorta (post-embryonic human) - FMA:3734 + aorta (post-embryonic human) @@ -43604,8 +41021,7 @@ - muscle of pectoral girdle (post-embryonic human) - FMA:37347 + muscle of pectoral girdle (post-embryonic human) @@ -43624,8 +41040,7 @@ - forelimb muscle (post-embryonic human) - FMA:37348 + forelimb muscle (post-embryonic human) @@ -43644,8 +41059,7 @@ - pectoral muscle (post-embryonic human) - FMA:37349 + pectoral muscle (post-embryonic human) @@ -43664,8 +41078,7 @@ - ascending aorta (post-embryonic human) - FMA:3736 + ascending aorta (post-embryonic human) @@ -43684,8 +41097,7 @@ - muscle of pelvic girdle (post-embryonic human) - FMA:37367 + muscle of pelvic girdle (post-embryonic human) @@ -43704,8 +41116,7 @@ - hindlimb muscle (post-embryonic human) - FMA:37368 + hindlimb muscle (post-embryonic human) @@ -43724,8 +41135,7 @@ - muscle of pes (post-embryonic human) - FMA:37369 + muscle of pes (post-embryonic human) @@ -43744,8 +41154,7 @@ - forelimb stylopod muscle (post-embryonic human) - FMA:37370 + forelimb stylopod muscle (post-embryonic human) @@ -43764,8 +41173,7 @@ - forelimb zeugopod muscle (post-embryonic human) - FMA:37371 + forelimb zeugopod muscle (post-embryonic human) @@ -43784,8 +41192,7 @@ - muscle of manus (post-embryonic human) - FMA:37372 + muscle of manus (post-embryonic human) @@ -43804,8 +41211,7 @@ - abductor pollicis brevis muscle (post-embryonic human) - FMA:37373 + abductor pollicis brevis muscle (post-embryonic human) @@ -43824,8 +41230,7 @@ - cartilage tissue (post-embryonic human) - FMA:37377 + cartilage tissue (post-embryonic human) @@ -43844,8 +41249,7 @@ - flexor pollicis brevis muscle (post-embryonic human) - FMA:37378 + flexor pollicis brevis muscle (post-embryonic human) @@ -43864,8 +41268,7 @@ - adductor pollicis muscle (post-embryonic human) - FMA:37380 + adductor pollicis muscle (post-embryonic human) @@ -43884,8 +41287,7 @@ - palmaris brevis (post-embryonic human) - FMA:37381 + palmaris brevis (post-embryonic human) @@ -43904,8 +41306,7 @@ - abductor digiti minimi of hand (post-embryonic human) - FMA:37382 + abductor digiti minimi of hand (post-embryonic human) @@ -43924,8 +41325,7 @@ - flexor digiti minimi brevis of hand (post-embryonic human) - FMA:37383 + flexor digiti minimi brevis of hand (post-embryonic human) @@ -43944,8 +41344,7 @@ - opponens digiti minimi of hand (post-embryonic human) - FMA:37384 + opponens digiti minimi of hand (post-embryonic human) @@ -43964,8 +41363,7 @@ - lumbrical muscle of manus (post-embryonic human) - FMA:37385 + lumbrical muscle of manus (post-embryonic human) @@ -43984,8 +41382,7 @@ - bulb of aorta (post-embryonic human) - FMA:3740 + bulb of aorta (post-embryonic human) @@ -44004,8 +41401,7 @@ - interosseous muscle of manus (post-embryonic human) - FMA:37417 + interosseous muscle of manus (post-embryonic human) @@ -44024,8 +41420,7 @@ - dorsal interosseous of manus (post-embryonic human) - FMA:37418 + dorsal interosseous of manus (post-embryonic human) @@ -44044,8 +41439,7 @@ - palmar interosseous muscle of manus (post-embryonic human) - FMA:37419 + palmar interosseous muscle of manus (post-embryonic human) @@ -44064,8 +41458,7 @@ - first dorsal interosseous of manus (post-embryonic human) - FMA:37424 + first dorsal interosseous of manus (post-embryonic human) @@ -44084,8 +41477,7 @@ - abductor hallucis muscle (post-embryonic human) - FMA:37448 + abductor hallucis muscle (post-embryonic human) @@ -44104,8 +41496,7 @@ - flexor hallucis brevis muscle (post-embryonic human) - FMA:37449 + flexor hallucis brevis muscle (post-embryonic human) @@ -44124,8 +41515,7 @@ - sinus of Valsalva (post-embryonic human) - FMA:3745 + sinus of Valsalva (post-embryonic human) @@ -44144,8 +41534,7 @@ - flexor digitorum brevis muscle (post-embryonic human) - FMA:37450 + flexor digitorum brevis muscle (post-embryonic human) @@ -44164,8 +41553,7 @@ - lumbrical muscle of pes (post-embryonic human) - FMA:37453 + lumbrical muscle of pes (post-embryonic human) @@ -44184,8 +41572,7 @@ - adductor hallucis muscle (post-embryonic human) - FMA:37454 + adductor hallucis muscle (post-embryonic human) @@ -44204,8 +41591,7 @@ - interosseous muscle of pes (post-embryonic human) - FMA:37456 + interosseous muscle of pes (post-embryonic human) @@ -44224,8 +41610,7 @@ - dorsal pes interosseous muscle (post-embryonic human) - FMA:37457 + dorsal pes interosseous muscle (post-embryonic human) @@ -44244,8 +41629,7 @@ - plantar interosseous muscle of pes (post-embryonic human) - FMA:37458 + plantar interosseous muscle of pes (post-embryonic human) @@ -44264,8 +41648,7 @@ - proximal epiphysis of phalanx of manual digit 1 (post-embryonic human) - FMA:37489 + proximal epiphysis of phalanx of manual digit 1 (post-embryonic human) @@ -44284,8 +41667,7 @@ - proximal epiphysis of proximal phalanx of manual digit 1 (post-embryonic human) - FMA:37490 + proximal epiphysis of proximal phalanx of manual digit 1 (post-embryonic human) @@ -44304,8 +41686,7 @@ - proximal epiphysis of distal phalanx of manual digit 1 (post-embryonic human) - FMA:37493 + proximal epiphysis of distal phalanx of manual digit 1 (post-embryonic human) @@ -44324,8 +41705,7 @@ - proximal epiphysis of phalanx of manual digit 2 (post-embryonic human) - FMA:37498 + proximal epiphysis of phalanx of manual digit 2 (post-embryonic human) @@ -44344,8 +41724,7 @@ - proximal epiphysis of proximal phalanx of manual digit 2 (post-embryonic human) - FMA:37499 + proximal epiphysis of proximal phalanx of manual digit 2 (post-embryonic human) @@ -44364,8 +41743,7 @@ - proximal epiphysis of middle phalanx of manual digit 2 (post-embryonic human) - FMA:37502 + proximal epiphysis of middle phalanx of manual digit 2 (post-embryonic human) @@ -44384,8 +41762,7 @@ - proximal epiphysis of distal phalanx of manual digit 2 (post-embryonic human) - FMA:37505 + proximal epiphysis of distal phalanx of manual digit 2 (post-embryonic human) @@ -44404,8 +41781,7 @@ - proximal epiphysis of phalanx of manual digit 3 (post-embryonic human) - FMA:37510 + proximal epiphysis of phalanx of manual digit 3 (post-embryonic human) @@ -44424,8 +41800,7 @@ - proximal epiphysis of proximal phalanx of manual digit 3 (post-embryonic human) - FMA:37511 + proximal epiphysis of proximal phalanx of manual digit 3 (post-embryonic human) @@ -44444,8 +41819,7 @@ - proximal epiphysis of middle phalanx of manual digit 3 (post-embryonic human) - FMA:37514 + proximal epiphysis of middle phalanx of manual digit 3 (post-embryonic human) @@ -44464,8 +41838,7 @@ - proximal epiphysis of distal phalanx of manual digit 3 (post-embryonic human) - FMA:37517 + proximal epiphysis of distal phalanx of manual digit 3 (post-embryonic human) @@ -44484,8 +41857,7 @@ - proximal epiphysis of phalanx of manual digit 4 (post-embryonic human) - FMA:37522 + proximal epiphysis of phalanx of manual digit 4 (post-embryonic human) @@ -44504,8 +41876,7 @@ - proximal epiphysis of proximal phalanx of manual digit 4 (post-embryonic human) - FMA:37523 + proximal epiphysis of proximal phalanx of manual digit 4 (post-embryonic human) @@ -44524,8 +41895,7 @@ - proximal epiphysis of middle phalanx of manual digit 4 (post-embryonic human) - FMA:37526 + proximal epiphysis of middle phalanx of manual digit 4 (post-embryonic human) @@ -44544,8 +41914,7 @@ - proximal epiphysis of distal phalanx of manual digit 4 (post-embryonic human) - FMA:37529 + proximal epiphysis of distal phalanx of manual digit 4 (post-embryonic human) @@ -44564,8 +41933,7 @@ - proximal epiphysis of phalanx of manual digit 5 (post-embryonic human) - FMA:37534 + proximal epiphysis of phalanx of manual digit 5 (post-embryonic human) @@ -44584,8 +41952,7 @@ - proximal epiphysis of proximal phalanx of manual digit 5 (post-embryonic human) - FMA:37535 + proximal epiphysis of proximal phalanx of manual digit 5 (post-embryonic human) @@ -44604,8 +41971,7 @@ - proximal epiphysis of middle phalanx of manual digit 5 (post-embryonic human) - FMA:37538 + proximal epiphysis of middle phalanx of manual digit 5 (post-embryonic human) @@ -44624,8 +41990,7 @@ - proximal epiphysis of distal phalanx of manual digit 5 (post-embryonic human) - FMA:37541 + proximal epiphysis of distal phalanx of manual digit 5 (post-embryonic human) @@ -44644,8 +42009,7 @@ - distal epiphysis of distal phalanx of manual digit 1 (post-embryonic human) - FMA:37609 + distal epiphysis of distal phalanx of manual digit 1 (post-embryonic human) @@ -44664,8 +42028,7 @@ - distal epiphysis of distal phalanx of manual digit 2 (post-embryonic human) - FMA:37621 + distal epiphysis of distal phalanx of manual digit 2 (post-embryonic human) @@ -44684,8 +42047,7 @@ - distal epiphysis of distal phalanx of manual digit 3 (post-embryonic human) - FMA:37633 + distal epiphysis of distal phalanx of manual digit 3 (post-embryonic human) @@ -44704,8 +42066,7 @@ - distal epiphysis of distal phalanx of manual digit 4 (post-embryonic human) - FMA:37645 + distal epiphysis of distal phalanx of manual digit 4 (post-embryonic human) @@ -44724,8 +42085,7 @@ - distal epiphysis of distal phalanx of manual digit 5 (post-embryonic human) - FMA:37657 + distal epiphysis of distal phalanx of manual digit 5 (post-embryonic human) @@ -44744,8 +42104,7 @@ - coracobrachialis muscle (post-embryonic human) - FMA:37664 + coracobrachialis muscle (post-embryonic human) @@ -44764,8 +42123,7 @@ - brachialis muscle (post-embryonic human) - FMA:37667 + brachialis muscle (post-embryonic human) @@ -44784,8 +42142,7 @@ - biceps brachii (post-embryonic human) - FMA:37670 + biceps brachii (post-embryonic human) @@ -44804,8 +42161,7 @@ - arch of aorta (post-embryonic human) - FMA:3768 + arch of aorta (post-embryonic human) @@ -44824,8 +42180,7 @@ - short head of biceps brachii (post-embryonic human) - FMA:37682 + short head of biceps brachii (post-embryonic human) @@ -44844,8 +42199,7 @@ - long head of biceps brachii (post-embryonic human) - FMA:37683 + long head of biceps brachii (post-embryonic human) @@ -44864,8 +42218,7 @@ - triceps brachii (post-embryonic human) - FMA:37688 + triceps brachii (post-embryonic human) @@ -44884,8 +42237,7 @@ - anconeus muscle (post-embryonic human) - FMA:37704 + anconeus muscle (post-embryonic human) @@ -44904,8 +42256,7 @@ - juxtaductal region of aortic arch (post-embryonic human) - FMA:3771 + juxtaductal region of aortic arch (post-embryonic human) @@ -44924,8 +42275,7 @@ - upper arm skin (post-embryonic human) - FMA:37721 + upper arm skin (post-embryonic human) @@ -44944,8 +42294,7 @@ - preductal region of aortic arch (post-embryonic human) - FMA:3774 + preductal region of aortic arch (post-embryonic human) @@ -44964,8 +42313,7 @@ - postductal region of aortic arch (post-embryonic human) - FMA:3776 + postductal region of aortic arch (post-embryonic human) @@ -44984,8 +42332,7 @@ - juxtaductal region of aortic arch (post-embryonic human) - FMA:3778 + juxtaductal region of aortic arch (post-embryonic human) @@ -45004,8 +42351,7 @@ - upper leg skin (post-embryonic human) - FMA:37790 + upper leg skin (post-embryonic human) @@ -45024,8 +42370,7 @@ - skin of knee (post-embryonic human) - FMA:37800 + skin of knee (post-embryonic human) @@ -45044,8 +42389,7 @@ - skin of leg (post-embryonic human) - FMA:37828 + skin of leg (post-embryonic human) @@ -45064,8 +42408,7 @@ - skin of ankle (post-embryonic human) - FMA:37831 + skin of ankle (post-embryonic human) @@ -45084,8 +42427,7 @@ - skin of pes (post-embryonic human) - FMA:37834 + skin of pes (post-embryonic human) @@ -45104,8 +42446,7 @@ - descending aorta (post-embryonic human) - FMA:3784 + descending aorta (post-embryonic human) @@ -45124,8 +42465,7 @@ - skin of calf (post-embryonic human) - FMA:37840 + skin of calf (post-embryonic human) @@ -45144,8 +42484,7 @@ - skin of sole of pes (post-embryonic human) - FMA:37849 + skin of sole of pes (post-embryonic human) @@ -45164,8 +42503,7 @@ - pedal digit skin (post-embryonic human) - FMA:37852 + pedal digit skin (post-embryonic human) @@ -45184,8 +42522,7 @@ - thoracic aorta (post-embryonic human) - FMA:3786 + thoracic aorta (post-embryonic human) @@ -45204,8 +42541,7 @@ - dorsal skin of toe (post-embryonic human) - FMA:37868 + dorsal skin of toe (post-embryonic human) @@ -45224,8 +42560,7 @@ - abdominal aorta (post-embryonic human) - FMA:3789 + abdominal aorta (post-embryonic human) @@ -45244,8 +42579,7 @@ - tendon of biceps brachii (post-embryonic human) - FMA:38152 + tendon of biceps brachii (post-embryonic human) @@ -45264,8 +42598,7 @@ - skin of elbow (post-embryonic human) - FMA:38250 + skin of elbow (post-embryonic human) @@ -45284,8 +42617,7 @@ - skin of forearm (post-embryonic human) - FMA:38265 + skin of forearm (post-embryonic human) @@ -45304,8 +42636,7 @@ - skin of wrist (post-embryonic human) - FMA:38280 + skin of wrist (post-embryonic human) @@ -45324,8 +42655,7 @@ - skin of manus (post-embryonic human) - FMA:38295 + skin of manus (post-embryonic human) @@ -45344,8 +42674,7 @@ - skin of palm of manus (post-embryonic human) - FMA:38301 + skin of palm of manus (post-embryonic human) @@ -45364,8 +42693,7 @@ - manual digit skin (post-embryonic human) - FMA:38304 + manual digit skin (post-embryonic human) @@ -45384,8 +42712,7 @@ - dorsal skin of finger (post-embryonic human) - FMA:38320 + dorsal skin of finger (post-embryonic human) @@ -45404,8 +42731,7 @@ - tendon of triceps brachii (post-embryonic human) - FMA:38380 + tendon of triceps brachii (post-embryonic human) @@ -45424,8 +42750,7 @@ - pronator teres (post-embryonic human) - FMA:38450 + pronator teres (post-embryonic human) @@ -45444,8 +42769,7 @@ - flexor carpi radialis muscle (post-embryonic human) - FMA:38459 + flexor carpi radialis muscle (post-embryonic human) @@ -45464,8 +42788,7 @@ - palmaris longus muscle (post-embryonic human) - FMA:38462 + palmaris longus muscle (post-embryonic human) @@ -45484,8 +42807,7 @@ - flexor carpi ulnaris muscle (post-embryonic human) - FMA:38465 + flexor carpi ulnaris muscle (post-embryonic human) @@ -45504,8 +42826,7 @@ - flexor digitorum superficialis (post-embryonic human) - FMA:38469 + flexor digitorum superficialis (post-embryonic human) @@ -45524,8 +42845,7 @@ - flexor digitorum profundus (post-embryonic human) - FMA:38478 + flexor digitorum profundus (post-embryonic human) @@ -45544,8 +42864,7 @@ - flexor pollicis longus muscle (post-embryonic human) - FMA:38481 + flexor pollicis longus muscle (post-embryonic human) @@ -45564,8 +42883,7 @@ - brachioradialis (post-embryonic human) - FMA:38485 + brachioradialis (post-embryonic human) @@ -45584,8 +42902,7 @@ - extensor carpi radialis longus muscle (post-embryonic human) - FMA:38494 + extensor carpi radialis longus muscle (post-embryonic human) @@ -45604,8 +42921,7 @@ - extensor carpi radialis brevis muscle (post-embryonic human) - FMA:38497 + extensor carpi radialis brevis muscle (post-embryonic human) @@ -45624,8 +42940,7 @@ - extensor digitorum communis (post-embryonic human) - FMA:38500 + extensor digitorum communis (post-embryonic human) @@ -45644,8 +42959,7 @@ - extensor digiti minimi muscle (post-embryonic human) - FMA:38503 + extensor digiti minimi muscle (post-embryonic human) @@ -45664,8 +42978,7 @@ - extensor carpi ulnaris muscle (post-embryonic human) - FMA:38506 + extensor carpi ulnaris muscle (post-embryonic human) @@ -45684,8 +42997,7 @@ - supinator muscle (post-embryonic human) - FMA:38512 + supinator muscle (post-embryonic human) @@ -45704,8 +43016,7 @@ - abductor pollicis longus (post-embryonic human) - FMA:38515 + abductor pollicis longus (post-embryonic human) @@ -45724,8 +43035,7 @@ - extensor pollicis brevis muscle (post-embryonic human) - FMA:38518 + extensor pollicis brevis muscle (post-embryonic human) @@ -45744,8 +43054,7 @@ - extensor pollicis longus muscle (post-embryonic human) - FMA:38521 + extensor pollicis longus muscle (post-embryonic human) @@ -45764,8 +43073,7 @@ - tendon of palmaris longus (post-embryonic human) - FMA:38594 + tendon of palmaris longus (post-embryonic human) @@ -45784,8 +43092,7 @@ - humeroulnar joint (post-embryonic human) - FMA:38854 + humeroulnar joint (post-embryonic human) @@ -45804,8 +43111,7 @@ - humeroradial joint (post-embryonic human) - FMA:38855 + humeroradial joint (post-embryonic human) @@ -45824,8 +43130,7 @@ - proximal radio-ulnar joint (post-embryonic human) - FMA:38860 + proximal radio-ulnar joint (post-embryonic human) @@ -45844,8 +43149,7 @@ - radio-ulnar joint (post-embryonic human) - FMA:38863 + radio-ulnar joint (post-embryonic human) @@ -45864,8 +43168,7 @@ - anular ligament of radius (post-embryonic human) - FMA:38872 + anular ligament of radius (post-embryonic human) @@ -45884,8 +43187,7 @@ - joint space of elbow (post-embryonic human) - FMA:38911 + joint space of elbow (post-embryonic human) @@ -45904,8 +43206,7 @@ - circumflex branch of left coronary artery (post-embryonic human) - FMA:3895 + circumflex branch of left coronary artery (post-embryonic human) @@ -45924,8 +43225,7 @@ - musculature of forelimb zeugopod (post-embryonic human) - FMA:39089 + musculature of forelimb zeugopod (post-embryonic human) @@ -45944,8 +43244,7 @@ - brachiocephalic artery (post-embryonic human) - FMA:3932 + brachiocephalic artery (post-embryonic human) @@ -45964,8 +43263,7 @@ - common carotid artery plus branches (post-embryonic human) - FMA:3939 + common carotid artery plus branches (post-embryonic human) @@ -45984,8 +43282,7 @@ - right common carotid artery plus branches (post-embryonic human) - FMA:3941 + right common carotid artery plus branches (post-embryonic human) @@ -46004,8 +43301,7 @@ - internal carotid artery (post-embryonic human) - FMA:3947 + internal carotid artery (post-embryonic human) @@ -46024,8 +43320,7 @@ - right internal carotid artery (post-embryonic human) - FMA:3949 + right internal carotid artery (post-embryonic human) @@ -46044,8 +43339,7 @@ - subclavian artery (post-embryonic human) - FMA:3951 + subclavian artery (post-embryonic human) @@ -46064,8 +43358,7 @@ - right subclavian artery (post-embryonic human) - FMA:3953 + right subclavian artery (post-embryonic human) @@ -46084,8 +43377,7 @@ - vertebral artery (post-embryonic human) - FMA:3956 + vertebral artery (post-embryonic human) @@ -46104,8 +43396,7 @@ - internal thoracic artery (post-embryonic human) - FMA:3960 + internal thoracic artery (post-embryonic human) @@ -46124,8 +43415,7 @@ - proximal epiphysis of radius (post-embryonic human) - FMA:39780 + proximal epiphysis of radius (post-embryonic human) @@ -46144,8 +43434,7 @@ - olecranon (post-embryonic human) - FMA:39795 + olecranon (post-embryonic human) @@ -46164,8 +43453,7 @@ - left common carotid artery plus branches (post-embryonic human) - FMA:4058 + left common carotid artery plus branches (post-embryonic human) @@ -46184,8 +43472,7 @@ - left internal carotid artery (post-embryonic human) - FMA:4062 + left internal carotid artery (post-embryonic human) @@ -46204,8 +43491,7 @@ - fibrous membrane of synovial tendon sheath (post-embryonic human) - FMA:40877 + fibrous membrane of synovial tendon sheath (post-embryonic human) @@ -46224,8 +43510,7 @@ - synovial membrane of synovial tendon sheath (post-embryonic human) - FMA:40878 + synovial membrane of synovial tendon sheath (post-embryonic human) @@ -46244,8 +43529,7 @@ - esophageal artery (post-embryonic human) - FMA:4149 + esophageal artery (post-embryonic human) @@ -46264,8 +43548,7 @@ - superior phrenic artery (post-embryonic human) - FMA:4163 + superior phrenic artery (post-embryonic human) @@ -46284,8 +43567,7 @@ - pisotriquetral joint (post-embryonic human) - FMA:42318 + pisotriquetral joint (post-embryonic human) @@ -46304,8 +43586,7 @@ - carpal tunnel (post-embryonic human) - FMA:42352 + carpal tunnel (post-embryonic human) @@ -46324,8 +43605,7 @@ - sesamoid bone of manus (post-embryonic human) - FMA:42353 + sesamoid bone of manus (post-embryonic human) @@ -46344,8 +43624,7 @@ - musculature of manus (post-embryonic human) - FMA:42368 + musculature of manus (post-embryonic human) @@ -46364,8 +43643,7 @@ - intrinsic muscle of manus (post-embryonic human) - FMA:42380 + intrinsic muscle of manus (post-embryonic human) @@ -46384,8 +43662,7 @@ - neck of femur (post-embryonic human) - FMA:42385 + neck of femur (post-embryonic human) @@ -46404,8 +43681,7 @@ - vinculum of tendon (post-embryonic human) - FMA:42604 + vinculum of tendon (post-embryonic human) @@ -46424,8 +43700,7 @@ - interphalangeal joint (post-embryonic human) - FMA:42765 + interphalangeal joint (post-embryonic human) @@ -46444,8 +43719,7 @@ - proximal epiphysis of first metacarpal bone (post-embryonic human) - FMA:42788 + proximal epiphysis of first metacarpal bone (post-embryonic human) @@ -46464,8 +43738,7 @@ - proximal epiphysis of second metacarpal bone (post-embryonic human) - FMA:42791 + proximal epiphysis of second metacarpal bone (post-embryonic human) @@ -46484,8 +43757,7 @@ - proximal epiphysis of third metacarpal bone (post-embryonic human) - FMA:42794 + proximal epiphysis of third metacarpal bone (post-embryonic human) @@ -46504,8 +43776,7 @@ - proximal epiphysis of fourth metacarpal bone (post-embryonic human) - FMA:42797 + proximal epiphysis of fourth metacarpal bone (post-embryonic human) @@ -46524,8 +43795,7 @@ - proximal epiphysis of fifth metacarpal bone (post-embryonic human) - FMA:42800 + proximal epiphysis of fifth metacarpal bone (post-embryonic human) @@ -46544,8 +43814,7 @@ - articular capsule of hip joint (post-embryonic human) - FMA:42821 + articular capsule of hip joint (post-embryonic human) @@ -46564,8 +43833,7 @@ - body of ilium (post-embryonic human) - FMA:42825 + body of ilium (post-embryonic human) @@ -46584,8 +43852,7 @@ - iliac blade (post-embryonic human) - FMA:42826 + iliac blade (post-embryonic human) @@ -46604,8 +43871,7 @@ - bone of hip region (post-embryonic human) - FMA:42854 + bone of hip region (post-embryonic human) @@ -46624,8 +43890,7 @@ - ligament of hip joint (post-embryonic human) - FMA:42868 + ligament of hip joint (post-embryonic human) @@ -46644,8 +43909,7 @@ - proximal epiphysis of first metatarsal bone (post-embryonic human) - FMA:42963 + proximal epiphysis of first metatarsal bone (post-embryonic human) @@ -46664,8 +43928,7 @@ - proximal epiphysis of second metatarsal bone (post-embryonic human) - FMA:42964 + proximal epiphysis of second metatarsal bone (post-embryonic human) @@ -46684,8 +43947,7 @@ - proximal epiphysis of third metatarsal bone (post-embryonic human) - FMA:42965 + proximal epiphysis of third metatarsal bone (post-embryonic human) @@ -46704,8 +43966,7 @@ - proximal epiphysis of fourth metatarsal bone (post-embryonic human) - FMA:42966 + proximal epiphysis of fourth metatarsal bone (post-embryonic human) @@ -46724,8 +43985,7 @@ - proximal epiphysis of fifth metatarsal bone (post-embryonic human) - FMA:42967 + proximal epiphysis of fifth metatarsal bone (post-embryonic human) @@ -46744,8 +44004,7 @@ - proximal phalanx of pedal digit 1 (post-embryonic human) - FMA:43252 + proximal phalanx of pedal digit 1 (post-embryonic human) @@ -46764,8 +44023,7 @@ - acetabular labrum (post-embryonic human) - FMA:43521 + acetabular labrum (post-embryonic human) @@ -46784,8 +44042,7 @@ - ischiopubic ramus (post-embryonic human) - FMA:43533 + ischiopubic ramus (post-embryonic human) @@ -46804,8 +44061,7 @@ - femorotibial joint (post-embryonic human) - FMA:43571 + femorotibial joint (post-embryonic human) @@ -46824,8 +44080,7 @@ - patellofemoral joint (post-embryonic human) - FMA:43574 + patellofemoral joint (post-embryonic human) @@ -46844,8 +44099,7 @@ - fovea capitis of femur (post-embryonic human) - FMA:43700 + fovea capitis of femur (post-embryonic human) @@ -46864,8 +44118,7 @@ - gracilis (post-embryonic human) - FMA:43882 + gracilis (post-embryonic human) @@ -46884,8 +44137,7 @@ - anterior tibial artery (post-embryonic human) - FMA:43894 + anterior tibial artery (post-embryonic human) @@ -46904,8 +44156,7 @@ - posterior tibial artery (post-embryonic human) - FMA:43895 + posterior tibial artery (post-embryonic human) @@ -46924,8 +44175,7 @@ - dorsalis pedis artery (post-embryonic human) - FMA:43915 + dorsalis pedis artery (post-embryonic human) @@ -46944,8 +44194,7 @@ - peroneal artery (post-embryonic human) - FMA:43921 + peroneal artery (post-embryonic human) @@ -46964,8 +44213,7 @@ - medial plantar artery (post-embryonic human) - FMA:43925 + medial plantar artery (post-embryonic human) @@ -46984,8 +44232,7 @@ - plantar metatarsal artery (post-embryonic human) - FMA:43956 + plantar metatarsal artery (post-embryonic human) @@ -47004,8 +44251,7 @@ - plantar digital artery (post-embryonic human) - FMA:43971 + plantar digital artery (post-embryonic human) @@ -47024,8 +44270,7 @@ - medial ligament of ankle joint (post-embryonic human) - FMA:44055 + medial ligament of ankle joint (post-embryonic human) @@ -47044,8 +44289,7 @@ - talofibular ligament (post-embryonic human) - FMA:44080 + talofibular ligament (post-embryonic human) @@ -47064,8 +44308,7 @@ - anterior talofibular ligament (post-embryonic human) - FMA:44083 + anterior talofibular ligament (post-embryonic human) @@ -47084,8 +44327,7 @@ - posterior talofibular ligament (post-embryonic human) - FMA:44084 + posterior talofibular ligament (post-embryonic human) @@ -47104,8 +44346,7 @@ - calcaneofibular ligament (post-embryonic human) - FMA:44089 + calcaneofibular ligament (post-embryonic human) @@ -47124,8 +44365,7 @@ - deep inguinal lymph node (post-embryonic human) - FMA:44225 + deep inguinal lymph node (post-embryonic human) @@ -47144,8 +44384,7 @@ - inguinal lymph node (post-embryonic human) - FMA:44226 + inguinal lymph node (post-embryonic human) @@ -47164,8 +44403,7 @@ - popliteal lymph node (post-embryonic human) - FMA:44227 + popliteal lymph node (post-embryonic human) @@ -47184,8 +44422,7 @@ - superficial popliteal lymph node (post-embryonic human) - FMA:44231 + superficial popliteal lymph node (post-embryonic human) @@ -47204,8 +44441,7 @@ - deep popliteal lymph node (post-embryonic human) - FMA:44232 + deep popliteal lymph node (post-embryonic human) @@ -47224,8 +44460,7 @@ - intertarsal joint (post-embryonic human) - FMA:44281 + intertarsal joint (post-embryonic human) @@ -47244,8 +44479,7 @@ - superior medial inguinal lymph node (post-embryonic human) - FMA:44297 + superior medial inguinal lymph node (post-embryonic human) @@ -47264,8 +44498,7 @@ - superior lateral inguinal lymph node (post-embryonic human) - FMA:44301 + superior lateral inguinal lymph node (post-embryonic human) @@ -47284,8 +44517,7 @@ - inferior inguinal lymph node (post-embryonic human) - FMA:44302 + inferior inguinal lymph node (post-embryonic human) @@ -47304,8 +44536,7 @@ - proximal deep inguinal lymph node (post-embryonic human) - FMA:44303 + proximal deep inguinal lymph node (post-embryonic human) @@ -47324,8 +44555,7 @@ - intermediate deep inguinal lymph node (post-embryonic human) - FMA:44304 + intermediate deep inguinal lymph node (post-embryonic human) @@ -47344,8 +44574,7 @@ - distal deep inguinal lymph node (post-embryonic human) - FMA:44305 + distal deep inguinal lymph node (post-embryonic human) @@ -47364,8 +44593,7 @@ - tibial lymph node (post-embryonic human) - FMA:44306 + tibial lymph node (post-embryonic human) @@ -47384,8 +44612,7 @@ - fibular lymph node (post-embryonic human) - FMA:44309 + fibular lymph node (post-embryonic human) @@ -47404,8 +44631,7 @@ - lymph node of lower limb (post-embryonic human) - FMA:44310 + lymph node of lower limb (post-embryonic human) @@ -47424,8 +44650,7 @@ - lymph node of upper limb (post-embryonic human) - FMA:44311 + lymph node of upper limb (post-embryonic human) @@ -47444,8 +44669,7 @@ - interpectoral lymph node (post-embryonic human) - FMA:44312 + interpectoral lymph node (post-embryonic human) @@ -47464,8 +44688,7 @@ - paramammary lymph node (post-embryonic human) - FMA:44313 + paramammary lymph node (post-embryonic human) @@ -47484,8 +44707,7 @@ - brachial lymph node (post-embryonic human) - FMA:44314 + brachial lymph node (post-embryonic human) @@ -47504,8 +44726,7 @@ - cubital lymph node (post-embryonic human) - FMA:44315 + cubital lymph node (post-embryonic human) @@ -47524,8 +44745,7 @@ - supratrochlear lymph node (post-embryonic human) - FMA:44316 + supratrochlear lymph node (post-embryonic human) @@ -47544,8 +44764,7 @@ - superficial epigastric vein (post-embryonic human) - FMA:44318 + superficial epigastric vein (post-embryonic human) @@ -47564,8 +44783,7 @@ - accessory saphenous vein (post-embryonic human) - FMA:44320 + accessory saphenous vein (post-embryonic human) @@ -47584,8 +44802,7 @@ - lateral saphenous vein (post-embryonic human) - FMA:44321 + lateral saphenous vein (post-embryonic human) @@ -47604,8 +44821,7 @@ - medial saphenous vein (post-embryonic human) - FMA:44322 + medial saphenous vein (post-embryonic human) @@ -47624,8 +44840,7 @@ - medial circumflex femoral vein (post-embryonic human) - FMA:44325 + medial circumflex femoral vein (post-embryonic human) @@ -47644,8 +44859,7 @@ - popliteal vein (post-embryonic human) - FMA:44327 + popliteal vein (post-embryonic human) @@ -47664,8 +44878,7 @@ - anterior tibial vein (post-embryonic human) - FMA:44331 + anterior tibial vein (post-embryonic human) @@ -47684,8 +44897,7 @@ - posterior tibial vein (post-embryonic human) - FMA:44332 + posterior tibial vein (post-embryonic human) @@ -47704,8 +44916,7 @@ - small saphenous vein (post-embryonic human) - FMA:44333 + small saphenous vein (post-embryonic human) @@ -47724,8 +44935,7 @@ - dorsal venous arch (post-embryonic human) - FMA:44356 + dorsal venous arch (post-embryonic human) @@ -47744,8 +44954,7 @@ - lateral marginal vein (post-embryonic human) - FMA:44359 + lateral marginal vein (post-embryonic human) @@ -47764,8 +44973,7 @@ - dorsal metatarsal vein (post-embryonic human) - FMA:44377 + dorsal metatarsal vein (post-embryonic human) @@ -47784,8 +44992,7 @@ - medial marginal vein (post-embryonic human) - FMA:44420 + medial marginal vein (post-embryonic human) @@ -47804,8 +45011,7 @@ - deep external pudendal vein (post-embryonic human) - FMA:44488 + deep external pudendal vein (post-embryonic human) @@ -47824,8 +45030,7 @@ - plantar digital vein (post-embryonic human) - FMA:44517 + plantar digital vein (post-embryonic human) @@ -47844,8 +45049,7 @@ - vein of genicular venous plexus (post-embryonic human) - FMA:44559 + vein of genicular venous plexus (post-embryonic human) @@ -47864,8 +45068,7 @@ - vein of hindlimb zeugopod (post-embryonic human) - FMA:44561 + vein of hindlimb zeugopod (post-embryonic human) @@ -47884,8 +45087,7 @@ - ligament of knee joint (post-embryonic human) - FMA:44580 + ligament of knee joint (post-embryonic human) @@ -47904,8 +45106,7 @@ - patellar ligament (post-embryonic human) - FMA:44581 + patellar ligament (post-embryonic human) @@ -47924,8 +45125,7 @@ - arcuate artery of foot (post-embryonic human) - FMA:44594 + arcuate artery of foot (post-embryonic human) @@ -47944,8 +45144,7 @@ - medial tarsal artery (post-embryonic human) - FMA:44598 + medial tarsal artery (post-embryonic human) @@ -47964,8 +45163,7 @@ - cruciate ligament of knee (post-embryonic human) - FMA:44611 + cruciate ligament of knee (post-embryonic human) @@ -47984,8 +45182,7 @@ - anterior cruciate ligament of knee joint (post-embryonic human) - FMA:44614 + anterior cruciate ligament of knee joint (post-embryonic human) @@ -48004,8 +45201,7 @@ - posterior cruciate ligament of knee joint (post-embryonic human) - FMA:44617 + posterior cruciate ligament of knee joint (post-embryonic human) @@ -48024,8 +45220,7 @@ - dorsal digital artery of pes (post-embryonic human) - FMA:44660 + dorsal digital artery of pes (post-embryonic human) @@ -48044,8 +45239,7 @@ - sural nerve (post-embryonic human) - FMA:44688 + sural nerve (post-embryonic human) @@ -48064,8 +45258,7 @@ - superficial fibular nerve (post-embryonic human) - FMA:44699 + superficial fibular nerve (post-embryonic human) @@ -48084,8 +45277,7 @@ - medial plantar nerve (post-embryonic human) - FMA:44716 + medial plantar nerve (post-embryonic human) @@ -48104,8 +45296,7 @@ - lateral plantar nerve (post-embryonic human) - FMA:44724 + lateral plantar nerve (post-embryonic human) @@ -48124,8 +45315,7 @@ - deep fibular nerve (post-embryonic human) - FMA:44771 + deep fibular nerve (post-embryonic human) @@ -48144,8 +45334,7 @@ - palmar branch of median nerve (post-embryonic human) - FMA:44836 + palmar branch of median nerve (post-embryonic human) @@ -48164,8 +45353,7 @@ - tendon sheath (post-embryonic human) - FMA:45087 + tendon sheath (post-embryonic human) @@ -48184,8 +45372,7 @@ - sesamoid bone of pes (post-embryonic human) - FMA:45096 + sesamoid bone of pes (post-embryonic human) @@ -48204,8 +45391,7 @@ - saphenous nerve (post-embryonic human) - FMA:45262 + saphenous nerve (post-embryonic human) @@ -48224,8 +45410,7 @@ - skin of hip (post-embryonic human) - FMA:45282 + skin of hip (post-embryonic human) @@ -48244,8 +45429,7 @@ - coccygeal nerve plexus (post-embryonic human) - FMA:45356 + coccygeal nerve plexus (post-embryonic human) @@ -48264,8 +45448,7 @@ - unilaminar epithelium (post-embryonic human) - FMA:45561 + unilaminar epithelium (post-embryonic human) @@ -48284,8 +45467,7 @@ - multilaminar epithelium (post-embryonic human) - FMA:45562 + multilaminar epithelium (post-embryonic human) @@ -48304,8 +45486,7 @@ - stratified squamous epithelium (post-embryonic human) - FMA:45563 + stratified squamous epithelium (post-embryonic human) @@ -48324,8 +45505,7 @@ - stratified columnar epithelium (post-embryonic human) - FMA:45564 + stratified columnar epithelium (post-embryonic human) @@ -48344,8 +45524,7 @@ - simple squamous epithelium (post-embryonic human) - FMA:45565 + simple squamous epithelium (post-embryonic human) @@ -48364,8 +45543,7 @@ - simple cuboidal epithelium (post-embryonic human) - FMA:45566 + simple cuboidal epithelium (post-embryonic human) @@ -48384,8 +45562,7 @@ - simple columnar epithelium (post-embryonic human) - FMA:45567 + simple columnar epithelium (post-embryonic human) @@ -48404,8 +45581,7 @@ - keratinized stratified squamous epithelium (post-embryonic human) - FMA:45568 + keratinized stratified squamous epithelium (post-embryonic human) @@ -48424,8 +45600,7 @@ - non-keratinized stratified squamous epithelium (post-embryonic human) - FMA:45569 + non-keratinized stratified squamous epithelium (post-embryonic human) @@ -48444,8 +45619,7 @@ - pseudostratified columnar epithelium (post-embryonic human) - FMA:45572 + pseudostratified columnar epithelium (post-embryonic human) @@ -48464,8 +45638,7 @@ - digestive tract (post-embryonic human) - FMA:45615 + digestive tract (post-embryonic human) @@ -48484,8 +45657,7 @@ - foregut (post-embryonic human) - FMA:45616 + foregut (post-embryonic human) @@ -48504,8 +45676,7 @@ - midgut (post-embryonic human) - FMA:45617 + midgut (post-embryonic human) @@ -48524,8 +45695,7 @@ - hindgut (post-embryonic human) - FMA:45618 + hindgut (post-embryonic human) @@ -48544,8 +45714,7 @@ - pulmonary vascular system (post-embryonic human) - FMA:45621 + pulmonary vascular system (post-embryonic human) @@ -48564,8 +45733,7 @@ - systemic arterial system (post-embryonic human) - FMA:45623 + systemic arterial system (post-embryonic human) @@ -48584,8 +45752,7 @@ - systemic venous system (post-embryonic human) - FMA:45626 + systemic venous system (post-embryonic human) @@ -48604,8 +45771,7 @@ - portal system (post-embryonic human) - FMA:45628 + portal system (post-embryonic human) @@ -48624,8 +45790,7 @@ - capillary bed (post-embryonic human) - FMA:45632 + capillary bed (post-embryonic human) @@ -48644,8 +45809,7 @@ - capillary plexus (post-embryonic human) - FMA:45633 + capillary plexus (post-embryonic human) @@ -48664,8 +45828,7 @@ - layer of muscle tissue (post-embryonic human) - FMA:45634 + layer of muscle tissue (post-embryonic human) @@ -48684,8 +45847,7 @@ - adventitia (post-embryonic human) - FMA:45635 + adventitia (post-embryonic human) @@ -48704,8 +45866,7 @@ - subserosa (post-embryonic human) - FMA:45636 + subserosa (post-embryonic human) @@ -48724,8 +45885,7 @@ - external male genitalia (post-embryonic human) - FMA:45642 + external male genitalia (post-embryonic human) @@ -48744,8 +45904,7 @@ - external genitalia (post-embryonic human) - FMA:45643 + external genitalia (post-embryonic human) @@ -48764,8 +45923,7 @@ - external female genitalia (post-embryonic human) - FMA:45649 + external female genitalia (post-embryonic human) @@ -48784,8 +45942,7 @@ - internal genitalia (post-embryonic human) - FMA:45652 + internal genitalia (post-embryonic human) @@ -48804,8 +45961,7 @@ - gut wall (post-embryonic human) - FMA:45653 + gut wall (post-embryonic human) @@ -48824,8 +45980,7 @@ - internal female genitalia (post-embryonic human) - FMA:45654 + internal female genitalia (post-embryonic human) @@ -48844,8 +45999,7 @@ - internal male genitalia (post-embryonic human) - FMA:45655 + internal male genitalia (post-embryonic human) @@ -48864,8 +46018,7 @@ - upper urinary tract (post-embryonic human) - FMA:45658 + upper urinary tract (post-embryonic human) @@ -48884,8 +46037,7 @@ - lower urinary tract (post-embryonic human) - FMA:45659 + lower urinary tract (post-embryonic human) @@ -48904,8 +46056,7 @@ - proximo-distal subdivision of respiratory tract (post-embryonic human) - FMA:45660 + proximo-distal subdivision of respiratory tract (post-embryonic human) @@ -48924,8 +46075,7 @@ - upper respiratory tract (post-embryonic human) - FMA:45661 + upper respiratory tract (post-embryonic human) @@ -48944,8 +46094,7 @@ - lower respiratory tract (post-embryonic human) - FMA:45662 + lower respiratory tract (post-embryonic human) @@ -48964,8 +46113,7 @@ - female reproductive system (post-embryonic human) - FMA:45663 + female reproductive system (post-embryonic human) @@ -48984,8 +46132,7 @@ - male reproductive system (post-embryonic human) - FMA:45664 + male reproductive system (post-embryonic human) @@ -49004,8 +46151,7 @@ - lumen of digestive tract (post-embryonic human) - FMA:45677 + lumen of digestive tract (post-embryonic human) @@ -49024,8 +46170,7 @@ - median lobe of prostate (post-embryonic human) - FMA:45701 + median lobe of prostate (post-embryonic human) @@ -49044,8 +46189,7 @@ - striated muscle tissue of prostate (post-embryonic human) - FMA:45716 + striated muscle tissue of prostate (post-embryonic human) @@ -49064,8 +46208,7 @@ - prostate gland stroma (post-embryonic human) - FMA:45719 + prostate gland stroma (post-embryonic human) @@ -49084,8 +46227,7 @@ - anatomical lobe (post-embryonic human) - FMA:45728 + anatomical lobe (post-embryonic human) @@ -49104,8 +46246,7 @@ - parenchyma (post-embryonic human) - FMA:45732 + parenchyma (post-embryonic human) @@ -49124,8 +46265,7 @@ - neck of organ (post-embryonic human) - FMA:45733 + neck of organ (post-embryonic human) @@ -49144,8 +46284,7 @@ - lobule (post-embryonic human) - FMA:45737 + lobule (post-embryonic human) @@ -49164,8 +46303,7 @@ - platysma (post-embryonic human) - FMA:45738 + platysma (post-embryonic human) @@ -49184,8 +46322,7 @@ - internal urethral sphincter (post-embryonic human) - FMA:45769 + internal urethral sphincter (post-embryonic human) @@ -49204,8 +46341,7 @@ - bone fossa (post-embryonic human) - FMA:45791 + bone fossa (post-embryonic human) @@ -49224,8 +46360,7 @@ - gastrocnemius medialis (post-embryonic human) - FMA:45956 + gastrocnemius medialis (post-embryonic human) @@ -49244,8 +46379,7 @@ - gastrocnemius lateralis (post-embryonic human) - FMA:45959 + gastrocnemius lateralis (post-embryonic human) @@ -49264,8 +46398,7 @@ - subcostal artery (post-embryonic human) - FMA:4613 + subcostal artery (post-embryonic human) @@ -49284,8 +46417,7 @@ - suprahyoid muscle (post-embryonic human) - FMA:46290 + suprahyoid muscle (post-embryonic human) @@ -49304,8 +46436,7 @@ - digastric muscle group (post-embryonic human) - FMA:46291 + digastric muscle group (post-embryonic human) @@ -49324,8 +46455,7 @@ - muscle of digastric group (post-embryonic human) - FMA:46297 + muscle of digastric group (post-embryonic human) @@ -49344,8 +46474,7 @@ - anterior digastric muscle (post-embryonic human) - FMA:46302 + anterior digastric muscle (post-embryonic human) @@ -49364,8 +46493,7 @@ - posterior digastric muscle (post-embryonic human) - FMA:46303 + posterior digastric muscle (post-embryonic human) @@ -49384,8 +46512,7 @@ - longus capitis muscle (post-embryonic human) - FMA:46308 + longus capitis muscle (post-embryonic human) @@ -49404,8 +46531,7 @@ - rectus capitis anterior (post-embryonic human) - FMA:46312 + rectus capitis anterior (post-embryonic human) @@ -49424,8 +46550,7 @@ - rectus capitis lateralis muscle (post-embryonic human) - FMA:46316 + rectus capitis lateralis muscle (post-embryonic human) @@ -49444,8 +46569,7 @@ - mylohyoid muscle (post-embryonic human) - FMA:46320 + mylohyoid muscle (post-embryonic human) @@ -49464,8 +46588,7 @@ - geniohyoid muscle (post-embryonic human) - FMA:46325 + geniohyoid muscle (post-embryonic human) @@ -49484,8 +46607,7 @@ - cricothyroid muscle (post-embryonic human) - FMA:46417 + cricothyroid muscle (post-embryonic human) @@ -49504,8 +46626,7 @@ - nose (post-embryonic human) - FMA:46472 + nose (post-embryonic human) @@ -49524,8 +46645,7 @@ - cheek (post-embryonic human) - FMA:46476 + cheek (post-embryonic human) @@ -49544,8 +46664,7 @@ - surface of occiput (post-embryonic human) - FMA:46479 + surface of occiput (post-embryonic human) @@ -49564,8 +46683,7 @@ - top of head (post-embryonic human) - FMA:46484 + top of head (post-embryonic human) @@ -49584,8 +46702,7 @@ - scalp (post-embryonic human) - FMA:46494 + scalp (post-embryonic human) @@ -49604,8 +46721,7 @@ - chin (post-embryonic human) - FMA:46495 + chin (post-embryonic human) @@ -49624,8 +46740,7 @@ - prevertebral cervical fascia (post-embryonic human) - FMA:46560 + prevertebral cervical fascia (post-embryonic human) @@ -49644,8 +46759,7 @@ - muscle of larynx (post-embryonic human) - FMA:46562 + muscle of larynx (post-embryonic human) @@ -49664,8 +46778,7 @@ - skull (post-embryonic human) - FMA:46565 + skull (post-embryonic human) @@ -49684,8 +46797,7 @@ - posterior crico-arytenoid (post-embryonic human) - FMA:46576 + posterior crico-arytenoid (post-embryonic human) @@ -49704,8 +46816,7 @@ - lateral crico-arytenoid (post-embryonic human) - FMA:46579 + lateral crico-arytenoid (post-embryonic human) @@ -49724,8 +46835,7 @@ - transverse arytenoid (post-embryonic human) - FMA:46582 + transverse arytenoid (post-embryonic human) @@ -49744,8 +46854,7 @@ - oblique arytenoid (post-embryonic human) - FMA:46583 + oblique arytenoid (post-embryonic human) @@ -49764,8 +46873,7 @@ - thyro-arytenoid (post-embryonic human) - FMA:46588 + thyro-arytenoid (post-embryonic human) @@ -49784,8 +46892,7 @@ - vocalis muscle (post-embryonic human) - FMA:46591 + vocalis muscle (post-embryonic human) @@ -49804,8 +46911,7 @@ - thyroepiglotticus muscle (post-embryonic human) - FMA:46594 + thyroepiglotticus muscle (post-embryonic human) @@ -49824,8 +46930,7 @@ - aryepiglotticus muscle (post-embryonic human) - FMA:46602 + aryepiglotticus muscle (post-embryonic human) @@ -49844,8 +46949,7 @@ - musculature of larynx (post-embryonic human) - FMA:46616 + musculature of larynx (post-embryonic human) @@ -49864,8 +46968,7 @@ - chordate pharyngeal muscle (post-embryonic human) - FMA:46619 + chordate pharyngeal muscle (post-embryonic human) @@ -49884,8 +46987,7 @@ - constrictor muscle of pharynx (post-embryonic human) - FMA:46620 + constrictor muscle of pharynx (post-embryonic human) @@ -49904,8 +47006,7 @@ - superior pharyngeal constrictor (post-embryonic human) - FMA:46621 + superior pharyngeal constrictor (post-embryonic human) @@ -49924,8 +47025,7 @@ - middle pharyngeal constrictor (post-embryonic human) - FMA:46622 + middle pharyngeal constrictor (post-embryonic human) @@ -49944,8 +47044,7 @@ - inferior pharyngeal constrictor (post-embryonic human) - FMA:46623 + inferior pharyngeal constrictor (post-embryonic human) @@ -49964,8 +47063,7 @@ - pterygopharyngeal part of superior pharyngeal constrictor (post-embryonic human) - FMA:46638 + pterygopharyngeal part of superior pharyngeal constrictor (post-embryonic human) @@ -49984,8 +47082,7 @@ - thyropharyngeus muscle (post-embryonic human) - FMA:46658 + thyropharyngeus muscle (post-embryonic human) @@ -50004,8 +47101,7 @@ - cricopharyngeus muscle (post-embryonic human) - FMA:46661 + cricopharyngeus muscle (post-embryonic human) @@ -50024,8 +47120,7 @@ - stylopharyngeus muscle (post-embryonic human) - FMA:46664 + stylopharyngeus muscle (post-embryonic human) @@ -50044,8 +47139,7 @@ - salpingopharyngeus muscle (post-embryonic human) - FMA:46665 + salpingopharyngeus muscle (post-embryonic human) @@ -50064,8 +47158,7 @@ - palatopharyngeus muscle (post-embryonic human) - FMA:46666 + palatopharyngeus muscle (post-embryonic human) @@ -50084,8 +47177,7 @@ - posterior fascicle of palatopharyngeus (post-embryonic human) - FMA:46684 + posterior fascicle of palatopharyngeus (post-embryonic human) @@ -50104,8 +47196,7 @@ - chordate pharynx (post-embryonic human) - FMA:46688 + chordate pharynx (post-embryonic human) @@ -50124,8 +47215,7 @@ - tongue muscle (post-embryonic human) - FMA:46689 + tongue muscle (post-embryonic human) @@ -50144,8 +47234,7 @@ - genioglossus muscle (post-embryonic human) - FMA:46690 + genioglossus muscle (post-embryonic human) @@ -50164,8 +47253,7 @@ - hyoglossus muscle (post-embryonic human) - FMA:46691 + hyoglossus muscle (post-embryonic human) @@ -50184,8 +47272,7 @@ - styloglossus (post-embryonic human) - FMA:46692 + styloglossus (post-embryonic human) @@ -50204,8 +47291,7 @@ - superior longitudinal muscle of tongue (post-embryonic human) - FMA:46693 + superior longitudinal muscle of tongue (post-embryonic human) @@ -50224,8 +47310,7 @@ - transverse muscle of tongue (post-embryonic human) - FMA:46695 + transverse muscle of tongue (post-embryonic human) @@ -50244,8 +47329,7 @@ - vertical muscle of tongue (post-embryonic human) - FMA:46696 + vertical muscle of tongue (post-embryonic human) @@ -50264,8 +47348,7 @@ - palatoglossus muscle (post-embryonic human) - FMA:46697 + palatoglossus muscle (post-embryonic human) @@ -50284,8 +47367,7 @@ - extrinsic muscle of tongue (post-embryonic human) - FMA:46699 + extrinsic muscle of tongue (post-embryonic human) @@ -50304,8 +47386,7 @@ - chondroglossus muscle (post-embryonic human) - FMA:46700 + chondroglossus muscle (post-embryonic human) @@ -50324,8 +47405,7 @@ - intrinsic muscle of tongue (post-embryonic human) - FMA:46701 + intrinsic muscle of tongue (post-embryonic human) @@ -50344,8 +47424,7 @@ - ceratoglossus (post-embryonic human) - FMA:46720 + ceratoglossus (post-embryonic human) @@ -50364,8 +47443,7 @@ - palatal muscle (post-embryonic human) - FMA:46726 + palatal muscle (post-embryonic human) @@ -50384,8 +47462,7 @@ - levator veli palatini (post-embryonic human) - FMA:46727 + levator veli palatini (post-embryonic human) @@ -50404,8 +47481,7 @@ - tensor veli palatini (post-embryonic human) - FMA:46730 + tensor veli palatini (post-embryonic human) @@ -50424,8 +47500,7 @@ - uvular muscle (post-embryonic human) - FMA:46733 + uvular muscle (post-embryonic human) @@ -50444,8 +47519,7 @@ - facial muscle (post-embryonic human) - FMA:46751 + facial muscle (post-embryonic human) @@ -50464,8 +47538,7 @@ - frontalis muscle belly (post-embryonic human) - FMA:46757 + frontalis muscle belly (post-embryonic human) @@ -50484,8 +47557,7 @@ - occipitalis (post-embryonic human) - FMA:46758 + occipitalis (post-embryonic human) @@ -50504,8 +47576,7 @@ - epicranial aponeurosis (post-embryonic human) - FMA:46768 + epicranial aponeurosis (post-embryonic human) @@ -50524,8 +47595,7 @@ - procerus (post-embryonic human) - FMA:46769 + procerus (post-embryonic human) @@ -50544,8 +47614,7 @@ - nasalis muscle (post-embryonic human) - FMA:46770 + nasalis muscle (post-embryonic human) @@ -50564,8 +47633,7 @@ - depressor septi nasi (post-embryonic human) - FMA:46777 + depressor septi nasi (post-embryonic human) @@ -50584,8 +47652,7 @@ - orbicularis oculi muscle (post-embryonic human) - FMA:46779 + orbicularis oculi muscle (post-embryonic human) @@ -50604,8 +47671,7 @@ - olfactory nerve (post-embryonic human) - FMA:46787 + olfactory nerve (post-embryonic human) @@ -50624,8 +47690,7 @@ - depressor supercilii (post-embryonic human) - FMA:46798 + depressor supercilii (post-embryonic human) @@ -50644,8 +47709,7 @@ - levator labii superioris alaeque nasi (post-embryonic human) - FMA:46802 + levator labii superioris alaeque nasi (post-embryonic human) @@ -50664,8 +47728,7 @@ - levator labii superioris (post-embryonic human) - FMA:46805 + levator labii superioris (post-embryonic human) @@ -50684,8 +47747,7 @@ - zygomaticus major muscle (post-embryonic human) - FMA:46810 + zygomaticus major muscle (post-embryonic human) @@ -50704,8 +47766,7 @@ - zygomaticus minor muscle (post-embryonic human) - FMA:46811 + zygomaticus minor muscle (post-embryonic human) @@ -50724,8 +47785,7 @@ - depressor labii inferioris (post-embryonic human) - FMA:46816 + depressor labii inferioris (post-embryonic human) @@ -50744,8 +47804,7 @@ - levator anguli oris (post-embryonic human) - FMA:46822 + levator anguli oris (post-embryonic human) @@ -50764,8 +47823,7 @@ - mentalis muscle (post-embryonic human) - FMA:46825 + mentalis muscle (post-embryonic human) @@ -50784,8 +47842,7 @@ - depressor anguli oris muscle (post-embryonic human) - FMA:46828 + depressor anguli oris muscle (post-embryonic human) @@ -50804,8 +47861,7 @@ - buccinator muscle (post-embryonic human) - FMA:46834 + buccinator muscle (post-embryonic human) @@ -50824,8 +47880,7 @@ - facial modiolus (post-embryonic human) - FMA:46837 + facial modiolus (post-embryonic human) @@ -50844,8 +47899,7 @@ - risorius muscle (post-embryonic human) - FMA:46838 + risorius muscle (post-embryonic human) @@ -50864,8 +47918,7 @@ - orbicularis oris muscle (post-embryonic human) - FMA:46841 + orbicularis oris muscle (post-embryonic human) @@ -50884,8 +47937,7 @@ - extrinsic auricular muscle (post-embryonic human) - FMA:46854 + extrinsic auricular muscle (post-embryonic human) @@ -50904,8 +47956,7 @@ - superior auricular muscle (post-embryonic human) - FMA:46855 + superior auricular muscle (post-embryonic human) @@ -50924,8 +47975,7 @@ - anterior auricular muscle (post-embryonic human) - FMA:46856 + anterior auricular muscle (post-embryonic human) @@ -50944,8 +47994,7 @@ - posterior auricular muscle (post-embryonic human) - FMA:46857 + posterior auricular muscle (post-embryonic human) @@ -50964,8 +48013,7 @@ - tendon of quadriceps femoris (post-embryonic human) - FMA:46900 + tendon of quadriceps femoris (post-embryonic human) @@ -50984,8 +48032,7 @@ - left subclavian artery (post-embryonic human) - FMA:4694 + left subclavian artery (post-embryonic human) @@ -51004,8 +48051,7 @@ - coronary sinus (post-embryonic human) - FMA:4706 + coronary sinus (post-embryonic human) @@ -51024,8 +48070,7 @@ - great vein of heart (post-embryonic human) - FMA:4707 + great vein of heart (post-embryonic human) @@ -51044,8 +48089,7 @@ - middle cardiac vein (post-embryonic human) - FMA:4713 + middle cardiac vein (post-embryonic human) @@ -51064,30 +48108,7 @@ - small cardiac vein (post-embryonic human) - FMA:4714 - - - - - - - - - - - - - - - - - - - - anterior vena cava (post-embryonic human) - right anterior vena cava (post-embryonic human) - FMA:4720 + small cardiac vein (post-embryonic human) @@ -51106,8 +48127,7 @@ - brachiocephalic vein (post-embryonic human) - FMA:4723 + brachiocephalic vein (post-embryonic human) @@ -51126,8 +48146,7 @@ - internal jugular vein (post-embryonic human) - FMA:4724 + internal jugular vein (post-embryonic human) @@ -51146,8 +48165,7 @@ - subclavian vein (post-embryonic human) - FMA:4725 + subclavian vein (post-embryonic human) @@ -51166,8 +48184,7 @@ - vertebral vein (post-embryonic human) - FMA:4727 + vertebral vein (post-embryonic human) @@ -51186,8 +48203,7 @@ - inferior thyroid vein (post-embryonic human) - FMA:4728 + inferior thyroid vein (post-embryonic human) @@ -51206,8 +48222,7 @@ - internal thoracic vein (post-embryonic human) - FMA:4729 + internal thoracic vein (post-embryonic human) @@ -51226,8 +48241,7 @@ - superior epigastric vein (post-embryonic human) - FMA:4731 + superior epigastric vein (post-embryonic human) @@ -51246,8 +48260,7 @@ - musculo-phrenic vein (post-embryonic human) - FMA:4732 + musculo-phrenic vein (post-embryonic human) @@ -51266,8 +48279,7 @@ - pericardiacophrenic vein (post-embryonic human) - FMA:4742 + pericardiacophrenic vein (post-embryonic human) @@ -51286,8 +48298,7 @@ - thymic vein (post-embryonic human) - FMA:4747 + thymic vein (post-embryonic human) @@ -51306,8 +48317,7 @@ - bronchial vein (post-embryonic human) - FMA:4749 + bronchial vein (post-embryonic human) @@ -51326,8 +48336,7 @@ - venous plexus (post-embryonic human) - FMA:4767 + venous plexus (post-embryonic human) @@ -51346,8 +48355,7 @@ - left superior intercostal vein (post-embryonic human) - FMA:4797 + left superior intercostal vein (post-embryonic human) @@ -51366,8 +48374,7 @@ - azygos vein (post-embryonic human) - FMA:4838 + azygos vein (post-embryonic human) @@ -51386,8 +48393,7 @@ - right subcostal vein (post-embryonic human) - FMA:4844 + right subcostal vein (post-embryonic human) @@ -51406,8 +48412,7 @@ - posterior intercostal vein (post-embryonic human) - FMA:4858 + posterior intercostal vein (post-embryonic human) @@ -51426,8 +48431,7 @@ - right superior intercostal vein (post-embryonic human) - FMA:4877 + right superior intercostal vein (post-embryonic human) @@ -51446,8 +48450,7 @@ - auricular muscle (post-embryonic human) - FMA:48966 + auricular muscle (post-embryonic human) @@ -51466,8 +48469,7 @@ - intrinsic auricular muscle (post-embryonic human) - FMA:48967 + intrinsic auricular muscle (post-embryonic human) @@ -51486,8 +48488,7 @@ - helicis major (post-embryonic human) - FMA:48968 + helicis major (post-embryonic human) @@ -51506,8 +48507,7 @@ - helicis minor (post-embryonic human) - FMA:48971 + helicis minor (post-embryonic human) @@ -51526,8 +48526,7 @@ - tragicus muscle (post-embryonic human) - FMA:48974 + tragicus muscle (post-embryonic human) @@ -51546,8 +48545,7 @@ - antitragicus muscle (post-embryonic human) - FMA:48980 + antitragicus muscle (post-embryonic human) @@ -51566,8 +48564,7 @@ - transverse muscle of auricle (post-embryonic human) - FMA:48983 + transverse muscle of auricle (post-embryonic human) @@ -51586,8 +48583,7 @@ - oblique muscle of auricle (post-embryonic human) - FMA:48986 + oblique muscle of auricle (post-embryonic human) @@ -51606,8 +48602,7 @@ - masseter muscle (post-embryonic human) - FMA:48996 + masseter muscle (post-embryonic human) @@ -51626,8 +48621,7 @@ - superficial part of masseter muscle (post-embryonic human) - FMA:49000 + superficial part of masseter muscle (post-embryonic human) @@ -51646,8 +48640,7 @@ - deep part of masseter muscle (post-embryonic human) - FMA:49003 + deep part of masseter muscle (post-embryonic human) @@ -51666,8 +48659,7 @@ - temporalis muscle (post-embryonic human) - FMA:49006 + temporalis muscle (post-embryonic human) @@ -51686,8 +48678,7 @@ - medial pterygoid muscle (post-embryonic human) - FMA:49011 + medial pterygoid muscle (post-embryonic human) @@ -51706,8 +48697,7 @@ - lateral pterygoid muscle (post-embryonic human) - FMA:49015 + lateral pterygoid muscle (post-embryonic human) @@ -51726,8 +48716,7 @@ - muscle of auditory ossicle (post-embryonic human) - FMA:49026 + muscle of auditory ossicle (post-embryonic human) @@ -51746,8 +48735,7 @@ - stapedius muscle (post-embryonic human) - FMA:49027 + stapedius muscle (post-embryonic human) @@ -51766,8 +48754,7 @@ - tensor tympani (post-embryonic human) - FMA:49028 + tensor tympani (post-embryonic human) @@ -51786,8 +48773,7 @@ - extra-ocular muscle (post-embryonic human) - FMA:49033 + extra-ocular muscle (post-embryonic human) @@ -51806,8 +48792,7 @@ - orbitalis muscle (post-embryonic human) - FMA:49034 + orbitalis muscle (post-embryonic human) @@ -51826,8 +48811,7 @@ - superior rectus extraocular muscle (post-embryonic human) - FMA:49035 + superior rectus extraocular muscle (post-embryonic human) @@ -51846,8 +48830,7 @@ - inferior rectus extraocular muscle (post-embryonic human) - FMA:49036 + inferior rectus extraocular muscle (post-embryonic human) @@ -51866,8 +48849,7 @@ - medial rectus extraocular muscle (post-embryonic human) - FMA:49037 + medial rectus extraocular muscle (post-embryonic human) @@ -51886,8 +48868,7 @@ - lateral rectus extra-ocular muscle (post-embryonic human) - FMA:49038 + lateral rectus extra-ocular muscle (post-embryonic human) @@ -51906,8 +48887,7 @@ - superior oblique extraocular muscle (post-embryonic human) - FMA:49039 + superior oblique extraocular muscle (post-embryonic human) @@ -51926,8 +48906,7 @@ - inferior oblique extraocular muscle (post-embryonic human) - FMA:49040 + inferior oblique extraocular muscle (post-embryonic human) @@ -51946,8 +48925,7 @@ - levator palpebrae superioris (post-embryonic human) - FMA:49041 + levator palpebrae superioris (post-embryonic human) @@ -51966,8 +48944,7 @@ - superior tarsal muscle (post-embryonic human) - FMA:49058 + superior tarsal muscle (post-embryonic human) @@ -51986,8 +48963,7 @@ - inferior tarsal muscle (post-embryonic human) - FMA:49059 + inferior tarsal muscle (post-embryonic human) @@ -52006,8 +48982,7 @@ - common tendinous ring (post-embryonic human) - FMA:49071 + common tendinous ring (post-embryonic human) @@ -52026,8 +49001,7 @@ - transversus menti muscle (post-embryonic human) - FMA:49080 + transversus menti muscle (post-embryonic human) @@ -52046,8 +49020,7 @@ - intra-ocular muscle (post-embryonic human) - FMA:49150 + intra-ocular muscle (post-embryonic human) @@ -52066,8 +49039,7 @@ - ciliary muscle (post-embryonic human) - FMA:49151 + ciliary muscle (post-embryonic human) @@ -52086,8 +49058,7 @@ - muscle of iris (post-embryonic human) - FMA:49154 + muscle of iris (post-embryonic human) @@ -52106,8 +49077,7 @@ - sphincter pupillae (post-embryonic human) - FMA:49157 + sphincter pupillae (post-embryonic human) @@ -52126,8 +49096,7 @@ - dilatator pupillae (post-embryonic human) - FMA:49158 + dilatator pupillae (post-embryonic human) @@ -52146,8 +49115,7 @@ - upper digestive tract (post-embryonic human) - FMA:49177 + upper digestive tract (post-embryonic human) @@ -52166,8 +49134,7 @@ - isthmus of thyroid gland (post-embryonic human) - FMA:49178 + isthmus of thyroid gland (post-embryonic human) @@ -52186,8 +49153,7 @@ - lower digestive tract (post-embryonic human) - FMA:49179 + lower digestive tract (post-embryonic human) @@ -52206,8 +49172,7 @@ - mouth (post-embryonic human) - FMA:49184 + mouth (post-embryonic human) @@ -52226,8 +49191,7 @@ - occipital region (post-embryonic human) - FMA:49187 + occipital region (post-embryonic human) @@ -52246,8 +49210,7 @@ - palatine aponeurosis (post-embryonic human) - FMA:49429 + palatine aponeurosis (post-embryonic human) @@ -52266,8 +49229,7 @@ - hemiazygos vein (post-embryonic human) - FMA:4944 + hemiazygos vein (post-embryonic human) @@ -52286,8 +49248,7 @@ - sylvian point (post-embryonic human) - FMA:49458 + sylvian point (post-embryonic human) @@ -52306,8 +49267,7 @@ - anterior superior iliac spine (post-embryonic human) - FMA:49465 + anterior superior iliac spine (post-embryonic human) @@ -52326,8 +49286,7 @@ - posterior superior iliac spine (post-embryonic human) - FMA:49468 + posterior superior iliac spine (post-embryonic human) @@ -52346,8 +49305,7 @@ - superior thyroid artery (post-embryonic human) - FMA:49472 + superior thyroid artery (post-embryonic human) @@ -52366,8 +49324,7 @@ - hyoid artery (post-embryonic human) - FMA:49474 + hyoid artery (post-embryonic human) @@ -52386,8 +49343,7 @@ - posterior meningeal artery (post-embryonic human) - FMA:49503 + posterior meningeal artery (post-embryonic human) @@ -52406,8 +49362,7 @@ - left subcostal vein (post-embryonic human) - FMA:4951 + left subcostal vein (post-embryonic human) @@ -52426,8 +49381,7 @@ - lingual artery (post-embryonic human) - FMA:49526 + lingual artery (post-embryonic human) @@ -52446,8 +49400,7 @@ - sublingual artery (post-embryonic human) - FMA:49543 + sublingual artery (post-embryonic human) @@ -52466,8 +49419,7 @@ - facial artery (post-embryonic human) - FMA:49549 + facial artery (post-embryonic human) @@ -52486,8 +49438,7 @@ - artery of lower lip (post-embryonic human) - FMA:49567 + artery of lower lip (post-embryonic human) @@ -52506,8 +49457,7 @@ - artery of upper lip (post-embryonic human) - FMA:49570 + artery of upper lip (post-embryonic human) @@ -52526,8 +49476,7 @@ - ocular angle artery (post-embryonic human) - FMA:49583 + ocular angle artery (post-embryonic human) @@ -52546,8 +49495,7 @@ - occipital artery (post-embryonic human) - FMA:49586 + occipital artery (post-embryonic human) @@ -52566,8 +49514,7 @@ - posterior auricular artery (post-embryonic human) - FMA:49624 + posterior auricular artery (post-embryonic human) @@ -52586,8 +49533,7 @@ - superficial temporal artery (post-embryonic human) - FMA:49650 + superficial temporal artery (post-embryonic human) @@ -52606,8 +49552,7 @@ - transverse facial artery (post-embryonic human) - FMA:49657 + transverse facial artery (post-embryonic human) @@ -52626,8 +49571,7 @@ - zygomatico-orbital artery (post-embryonic human) - FMA:49663 + zygomatico-orbital artery (post-embryonic human) @@ -52646,8 +49590,7 @@ - middle temporal artery (post-embryonic human) - FMA:49666 + middle temporal artery (post-embryonic human) @@ -52666,8 +49609,7 @@ - maxillary artery (post-embryonic human) - FMA:49675 + maxillary artery (post-embryonic human) @@ -52686,8 +49628,7 @@ - deep auricular artery (post-embryonic human) - FMA:49689 + deep auricular artery (post-embryonic human) @@ -52706,8 +49647,7 @@ - inferior alveolar artery (post-embryonic human) - FMA:49695 + inferior alveolar artery (post-embryonic human) @@ -52726,8 +49666,7 @@ - mental artery (post-embryonic human) - FMA:49701 + mental artery (post-embryonic human) @@ -52746,8 +49685,7 @@ - middle meningeal artery (post-embryonic human) - FMA:49711 + middle meningeal artery (post-embryonic human) @@ -52766,8 +49704,7 @@ - masseteric artery (post-embryonic human) - FMA:49739 + masseteric artery (post-embryonic human) @@ -52786,8 +49723,7 @@ - deep temporal artery (post-embryonic human) - FMA:49742 + deep temporal artery (post-embryonic human) @@ -52806,8 +49742,7 @@ - buccal artery (post-embryonic human) - FMA:49754 + buccal artery (post-embryonic human) @@ -52826,8 +49761,7 @@ - posterior superior alveolar artery (post-embryonic human) - FMA:49757 + posterior superior alveolar artery (post-embryonic human) @@ -52846,8 +49780,7 @@ - infraorbital artery (post-embryonic human) - FMA:49767 + infraorbital artery (post-embryonic human) @@ -52866,8 +49799,7 @@ - greater palatine artery (post-embryonic human) - FMA:49795 + greater palatine artery (post-embryonic human) @@ -52886,8 +49818,7 @@ - caroticotympanic artery (post-embryonic human) - FMA:49828 + caroticotympanic artery (post-embryonic human) @@ -52906,8 +49837,7 @@ - inferior hypophysial artery (post-embryonic human) - FMA:49846 + inferior hypophysial artery (post-embryonic human) @@ -52926,8 +49856,7 @@ - superior hypophysial artery (post-embryonic human) - FMA:49849 + superior hypophysial artery (post-embryonic human) @@ -52946,8 +49875,7 @@ - ophthalmic artery (post-embryonic human) - FMA:49868 + ophthalmic artery (post-embryonic human) @@ -52966,8 +49894,7 @@ - central retinal artery (post-embryonic human) - FMA:49879 + central retinal artery (post-embryonic human) @@ -52986,8 +49913,7 @@ - coronary artery (post-embryonic human) - FMA:49893 + coronary artery (post-embryonic human) @@ -53006,8 +49932,7 @@ - lacrimal artery (post-embryonic human) - FMA:49927 + lacrimal artery (post-embryonic human) @@ -53026,8 +49951,7 @@ - lateral palpebral artery (post-embryonic human) - FMA:49940 + lateral palpebral artery (post-embryonic human) @@ -53046,8 +49970,7 @@ - supraorbital artery (post-embryonic human) - FMA:49973 + supraorbital artery (post-embryonic human) @@ -53066,8 +49989,7 @@ - anterior ethmoidal artery (post-embryonic human) - FMA:49986 + anterior ethmoidal artery (post-embryonic human) @@ -53086,8 +50008,7 @@ - posterior ethmoidal artery (post-embryonic human) - FMA:49989 + posterior ethmoidal artery (post-embryonic human) @@ -53106,8 +50027,7 @@ - anterior meningeal artery (post-embryonic human) - FMA:49993 + anterior meningeal artery (post-embryonic human) @@ -53126,8 +50046,7 @@ - dorsal nasal artery (post-embryonic human) - FMA:50000 + dorsal nasal artery (post-embryonic human) @@ -53146,8 +50065,7 @@ - medial palpebral artery (post-embryonic human) - FMA:50012 + medial palpebral artery (post-embryonic human) @@ -53166,8 +50084,7 @@ - frontal artery (post-embryonic human) - FMA:50025 + frontal artery (post-embryonic human) @@ -53186,8 +50103,7 @@ - anterior cerebral artery (post-embryonic human) - FMA:50028 + anterior cerebral artery (post-embryonic human) @@ -53206,8 +50122,7 @@ - branch of anterior cerebral artery (post-embryonic human) - FMA:50031 + branch of anterior cerebral artery (post-embryonic human) @@ -53226,8 +50141,7 @@ - right coronary artery (post-embryonic human) - FMA:50039 + right coronary artery (post-embryonic human) @@ -53246,8 +50160,7 @@ - left coronary artery (post-embryonic human) - FMA:50040 + left coronary artery (post-embryonic human) @@ -53266,8 +50179,7 @@ - chest wall (post-embryonic human) - FMA:50060 + chest wall (post-embryonic human) @@ -53286,8 +50198,7 @@ - middle cerebral artery (post-embryonic human) - FMA:50079 + middle cerebral artery (post-embryonic human) @@ -53306,8 +50217,7 @@ - branch of middle cerebral artery (post-embryonic human) - FMA:50081 + branch of middle cerebral artery (post-embryonic human) @@ -53326,8 +50236,7 @@ - posterior communicating artery (post-embryonic human) - FMA:50084 + posterior communicating artery (post-embryonic human) @@ -53346,8 +50255,7 @@ - anterior choroidal artery (post-embryonic human) - FMA:50087 + anterior choroidal artery (post-embryonic human) @@ -53366,8 +50274,7 @@ - carotid sinus (post-embryonic human) - FMA:50094 + carotid sinus (post-embryonic human) @@ -53386,8 +50293,7 @@ - carotid body (post-embryonic human) - FMA:50095 + carotid body (post-embryonic human) @@ -53406,8 +50312,7 @@ - accessory hemiazygos vein (post-embryonic human) - FMA:5011 + accessory hemiazygos vein (post-embryonic human) @@ -53426,8 +50331,7 @@ - anterior communicating artery (post-embryonic human) - FMA:50169 + anterior communicating artery (post-embryonic human) @@ -53446,8 +50350,7 @@ - bone element (post-embryonic human) - FMA:5018 + bone element (post-embryonic human) @@ -53466,8 +50369,7 @@ - musculature of trunk (post-embryonic human) - FMA:50187 + musculature of trunk (post-embryonic human) @@ -53486,8 +50388,7 @@ - musculature of limb (post-embryonic human) - FMA:50188 + musculature of limb (post-embryonic human) @@ -53506,8 +50407,7 @@ - musculature of forelimb stylopod (post-embryonic human) - FMA:50202 + musculature of forelimb stylopod (post-embryonic human) @@ -53526,8 +50426,7 @@ - musculature of pelvic girdle (post-embryonic human) - FMA:50205 + musculature of pelvic girdle (post-embryonic human) @@ -53546,8 +50445,7 @@ - musculature of hindlimb stylopod (post-embryonic human) - FMA:50208 + musculature of hindlimb stylopod (post-embryonic human) @@ -53566,8 +50464,7 @@ - musculature of hindlimb zeugopod (post-embryonic human) - FMA:50211 + musculature of hindlimb zeugopod (post-embryonic human) @@ -53586,8 +50483,7 @@ - musculature of pes (post-embryonic human) - FMA:50214 + musculature of pes (post-embryonic human) @@ -53606,8 +50502,7 @@ - muscle organ (post-embryonic human) - FMA:5022 + muscle organ (post-embryonic human) @@ -53626,8 +50521,7 @@ - musculature of shoulder (post-embryonic human) - FMA:50220 + musculature of shoulder (post-embryonic human) @@ -53646,8 +50540,7 @@ - musculature of hip (post-embryonic human) - FMA:50227 + musculature of hip (post-embryonic human) @@ -53666,8 +50559,7 @@ - musculature of pelvic girdle (post-embryonic human) - FMA:50248 + musculature of pelvic girdle (post-embryonic human) @@ -53686,8 +50578,7 @@ - lymphatic capillary (post-embryonic human) - FMA:5028 + lymphatic capillary (post-embryonic human) @@ -53706,8 +50597,7 @@ - thoracic duct (post-embryonic human) - FMA:5031 + thoracic duct (post-embryonic human) @@ -53726,8 +50616,7 @@ - lymph node (post-embryonic human) - FMA:5034 + lymph node (post-embryonic human) @@ -53746,8 +50635,7 @@ - superficial inguinal lymph node (post-embryonic human) - FMA:5036 + superficial inguinal lymph node (post-embryonic human) @@ -53766,8 +50654,7 @@ - anterior temporal artery (post-embryonic human) - FMA:50382 + anterior temporal artery (post-embryonic human) @@ -53786,8 +50673,7 @@ - musculature of upper limb (post-embryonic human) - FMA:50396 + musculature of upper limb (post-embryonic human) @@ -53806,8 +50692,7 @@ - musculature of lower limb (post-embryonic human) - FMA:50399 + musculature of lower limb (post-embryonic human) @@ -53826,8 +50711,7 @@ - temporal artery (post-embryonic human) - FMA:50438 + temporal artery (post-embryonic human) @@ -53846,8 +50730,7 @@ - circle of Willis (post-embryonic human) - FMA:50454 + circle of Willis (post-embryonic human) @@ -53866,8 +50749,7 @@ - posterior temporal artery (post-embryonic human) - FMA:50458 + posterior temporal artery (post-embryonic human) @@ -53886,8 +50768,7 @@ - anterior parietal artery (post-embryonic human) - FMA:50485 + anterior parietal artery (post-embryonic human) @@ -53906,8 +50787,7 @@ - posterior parietal artery (post-embryonic human) - FMA:50488 + posterior parietal artery (post-embryonic human) @@ -53926,8 +50806,7 @@ - posterior inferior cerebellar artery (post-embryonic human) - FMA:50518 + posterior inferior cerebellar artery (post-embryonic human) @@ -53946,8 +50825,7 @@ - posterior spinal artery (post-embryonic human) - FMA:50522 + posterior spinal artery (post-embryonic human) @@ -53966,8 +50844,7 @@ - anterior spinal artery (post-embryonic human) - FMA:50531 + anterior spinal artery (post-embryonic human) @@ -53986,8 +50863,7 @@ - basilar artery (post-embryonic human) - FMA:50542 + basilar artery (post-embryonic human) @@ -54006,8 +50882,7 @@ - anterior inferior cerebellar artery (post-embryonic human) - FMA:50544 + anterior inferior cerebellar artery (post-embryonic human) @@ -54026,8 +50901,7 @@ - labyrinthine artery (post-embryonic human) - FMA:50548 + labyrinthine artery (post-embryonic human) @@ -54046,8 +50920,7 @@ - mesencephalic artery (post-embryonic human) - FMA:50570 + mesencephalic artery (post-embryonic human) @@ -54066,8 +50939,7 @@ - superior cerebellar artery (post-embryonic human) - FMA:50573 + superior cerebellar artery (post-embryonic human) @@ -54086,8 +50958,7 @@ - posterior cerebral artery (post-embryonic human) - FMA:50583 + posterior cerebral artery (post-embryonic human) @@ -54106,8 +50977,7 @@ - branch of posterior cerebral artery (post-embryonic human) - FMA:50586 + branch of posterior cerebral artery (post-embryonic human) @@ -54126,8 +50996,7 @@ - calcarine artery (post-embryonic human) - FMA:50655 + calcarine artery (post-embryonic human) @@ -54146,8 +51015,7 @@ - posterior choroidal artery (post-embryonic human) - FMA:50657 + posterior choroidal artery (post-embryonic human) @@ -54166,8 +51034,7 @@ - non-material anatomical boundary (post-embryonic human) - FMA:50705 + non-material anatomical boundary (post-embryonic human) @@ -54186,8 +51053,7 @@ - artery (post-embryonic human) - FMA:50720 + artery (post-embryonic human) @@ -54206,8 +51072,7 @@ - blood vessel (post-embryonic human) - FMA:50722 + blood vessel (post-embryonic human) @@ -54226,8 +51091,7 @@ - vein (post-embryonic human) - FMA:50723 + vein (post-embryonic human) @@ -54246,8 +51110,7 @@ - hepatic portal vein (post-embryonic human) - FMA:50735 + hepatic portal vein (post-embryonic human) @@ -54266,8 +51129,7 @@ - celiac artery (post-embryonic human) - FMA:50737 + celiac artery (post-embryonic human) @@ -54286,8 +51148,7 @@ - venous dural sinus (post-embryonic human) - FMA:50762 + venous dural sinus (post-embryonic human) @@ -54306,8 +51167,7 @@ - transverse sinus (post-embryonic human) - FMA:50763 + transverse sinus (post-embryonic human) @@ -54326,8 +51186,7 @@ - marginal venous sinus (post-embryonic human) - FMA:50766 + marginal venous sinus (post-embryonic human) @@ -54346,8 +51205,7 @@ - superior sagittal sinus (post-embryonic human) - FMA:50767 + superior sagittal sinus (post-embryonic human) @@ -54366,8 +51224,7 @@ - inferior sagittal sinus (post-embryonic human) - FMA:50768 + inferior sagittal sinus (post-embryonic human) @@ -54386,8 +51243,7 @@ - tentorial sinus (post-embryonic human) - FMA:50769 + tentorial sinus (post-embryonic human) @@ -54406,8 +51262,7 @@ - inferior petrosal sinus (post-embryonic human) - FMA:50770 + inferior petrosal sinus (post-embryonic human) @@ -54426,8 +51281,7 @@ - cavernous sinus (post-embryonic human) - FMA:50772 + cavernous sinus (post-embryonic human) @@ -54446,8 +51300,7 @@ - sphenoparietal sinus (post-embryonic human) - FMA:50776 + sphenoparietal sinus (post-embryonic human) @@ -54466,8 +51319,7 @@ - nutrient foramen artery (post-embryonic human) - FMA:50779 + nutrient foramen artery (post-embryonic human) @@ -54486,8 +51338,7 @@ - nutrient foramen vein (post-embryonic human) - FMA:50780 + nutrient foramen vein (post-embryonic human) @@ -54506,8 +51357,7 @@ - sigmoid sinus (post-embryonic human) - FMA:50782 + sigmoid sinus (post-embryonic human) @@ -54526,8 +51376,7 @@ - brain (post-embryonic human) - FMA:50801 + brain (post-embryonic human) @@ -54546,8 +51395,7 @@ - superior bulb of internal jugular vein (post-embryonic human) - FMA:50805 + superior bulb of internal jugular vein (post-embryonic human) @@ -54566,8 +51414,7 @@ - inferior bulb of internal jugular vein (post-embryonic human) - FMA:50807 + inferior bulb of internal jugular vein (post-embryonic human) @@ -54586,8 +51433,7 @@ - middle thyroid vein (post-embryonic human) - FMA:50823 + middle thyroid vein (post-embryonic human) @@ -54606,8 +51452,7 @@ - meningeal vein (post-embryonic human) - FMA:50839 + meningeal vein (post-embryonic human) @@ -54626,8 +51471,7 @@ - jugular body (post-embryonic human) - FMA:50848 + jugular body (post-embryonic human) @@ -54646,8 +51490,7 @@ - posterior auricular vein (post-embryonic human) - FMA:50851 + posterior auricular vein (post-embryonic human) @@ -54666,8 +51509,7 @@ - cranial nerve II (post-embryonic human) - FMA:50863 + cranial nerve II (post-embryonic human) @@ -54686,8 +51528,7 @@ - oculomotor nerve (post-embryonic human) - FMA:50864 + oculomotor nerve (post-embryonic human) @@ -54706,8 +51547,7 @@ - trochlear nerve (post-embryonic human) - FMA:50865 + trochlear nerve (post-embryonic human) @@ -54726,8 +51566,7 @@ - trigeminal nerve (post-embryonic human) - FMA:50866 + trigeminal nerve (post-embryonic human) @@ -54746,8 +51585,7 @@ - abducens nerve (post-embryonic human) - FMA:50867 + abducens nerve (post-embryonic human) @@ -54766,8 +51604,7 @@ - facial nerve (post-embryonic human) - FMA:50868 + facial nerve (post-embryonic human) @@ -54786,8 +51623,7 @@ - vestibulocochlear nerve (post-embryonic human) - FMA:50869 + vestibulocochlear nerve (post-embryonic human) @@ -54806,8 +51642,7 @@ - glossopharyngeal nerve (post-embryonic human) - FMA:50870 + glossopharyngeal nerve (post-embryonic human) @@ -54826,8 +51661,7 @@ - hypoglossal nerve (post-embryonic human) - FMA:50871 + hypoglossal nerve (post-embryonic human) @@ -54846,8 +51680,7 @@ - right pulmonary artery (post-embryonic human) - FMA:50872 + right pulmonary artery (post-embryonic human) @@ -54866,8 +51699,7 @@ - left pulmonary artery (post-embryonic human) - FMA:50873 + left pulmonary artery (post-embryonic human) @@ -54886,8 +51718,7 @@ - facial vein (post-embryonic human) - FMA:50874 + facial vein (post-embryonic human) @@ -54906,8 +51737,7 @@ - angular vein (post-embryonic human) - FMA:50893 + angular vein (post-embryonic human) @@ -54926,8 +51756,7 @@ - supraorbital vein (post-embryonic human) - FMA:50904 + supraorbital vein (post-embryonic human) @@ -54946,8 +51775,7 @@ - superior palpebral vein (post-embryonic human) - FMA:50907 + superior palpebral vein (post-embryonic human) @@ -54966,8 +51794,7 @@ - inferior palpebral vein (post-embryonic human) - FMA:50913 + inferior palpebral vein (post-embryonic human) @@ -54986,8 +51813,7 @@ - deep facial vein (post-embryonic human) - FMA:50916 + deep facial vein (post-embryonic human) @@ -55006,8 +51832,7 @@ - parotid vein (post-embryonic human) - FMA:50919 + parotid vein (post-embryonic human) @@ -55026,8 +51851,7 @@ - submental vein (post-embryonic human) - FMA:50925 + submental vein (post-embryonic human) @@ -55046,8 +51870,7 @@ - retromandibular vein (post-embryonic human) - FMA:50928 + retromandibular vein (post-embryonic human) @@ -55066,8 +51889,7 @@ - superficial temporal vein (post-embryonic human) - FMA:50932 + superficial temporal vein (post-embryonic human) @@ -55086,8 +51908,7 @@ - middle temporal vein (post-embryonic human) - FMA:50935 + middle temporal vein (post-embryonic human) @@ -55106,8 +51927,7 @@ - transverse facial vein (post-embryonic human) - FMA:50938 + transverse facial vein (post-embryonic human) @@ -55126,8 +51946,7 @@ - maxillary vein (post-embryonic human) - FMA:50941 + maxillary vein (post-embryonic human) @@ -55146,8 +51965,7 @@ - pterygoid plexus (post-embryonic human) - FMA:50944 + pterygoid plexus (post-embryonic human) @@ -55166,8 +51984,7 @@ - deep temporal vein (post-embryonic human) - FMA:50954 + deep temporal vein (post-embryonic human) @@ -55186,8 +52003,7 @@ - anterior auricular vein (post-embryonic human) - FMA:50956 + anterior auricular vein (post-embryonic human) @@ -55206,8 +52022,7 @@ - superior cerebral vein (post-embryonic human) - FMA:50978 + superior cerebral vein (post-embryonic human) @@ -55226,8 +52041,7 @@ - cerebral vein (post-embryonic human) - FMA:50981 + cerebral vein (post-embryonic human) @@ -55246,8 +52060,7 @@ - superficial cerebral vein (post-embryonic human) - FMA:50982 + superficial cerebral vein (post-embryonic human) @@ -55266,8 +52079,7 @@ - superficial middle cerebral vein (post-embryonic human) - FMA:50983 + superficial middle cerebral vein (post-embryonic human) @@ -55286,8 +52098,7 @@ - inferior cerebral vein (post-embryonic human) - FMA:50986 + inferior cerebral vein (post-embryonic human) @@ -55306,8 +52117,7 @@ - deep cerebral vein (post-embryonic human) - FMA:50989 + deep cerebral vein (post-embryonic human) @@ -55326,8 +52136,7 @@ - basal vein (post-embryonic human) - FMA:50990 + basal vein (post-embryonic human) @@ -55346,8 +52155,7 @@ - great cerebral vein (post-embryonic human) - FMA:50993 + great cerebral vein (post-embryonic human) @@ -55366,8 +52174,7 @@ - internal cerebral vein (post-embryonic human) - FMA:51003 + internal cerebral vein (post-embryonic human) @@ -55386,8 +52193,7 @@ - calcaneal tendon (post-embryonic human) - FMA:51061 + calcaneal tendon (post-embryonic human) @@ -55406,8 +52212,7 @@ - triceps surae (post-embryonic human) - FMA:51062 + triceps surae (post-embryonic human) @@ -55426,8 +52231,7 @@ - flexor digitorum longus (post-embryonic human) - FMA:51071 + flexor digitorum longus (post-embryonic human) @@ -55446,8 +52250,7 @@ - tibialis posterior (post-embryonic human) - FMA:51099 + tibialis posterior (post-embryonic human) @@ -55466,8 +52269,7 @@ - extensor digitorum brevis pes (post-embryonic human) - FMA:51140 + extensor digitorum brevis pes (post-embryonic human) @@ -55486,8 +52288,7 @@ - cerebellar vein (post-embryonic human) - FMA:51227 + cerebellar vein (post-embryonic human) @@ -55506,8 +52307,7 @@ - superior cerebellar vein (post-embryonic human) - FMA:51232 + superior cerebellar vein (post-embryonic human) @@ -55526,8 +52326,7 @@ - inferior cerebellar vein (post-embryonic human) - FMA:51233 + inferior cerebellar vein (post-embryonic human) @@ -55546,8 +52345,7 @@ - superior ophthalmic vein (post-embryonic human) - FMA:51246 + superior ophthalmic vein (post-embryonic human) @@ -55566,8 +52364,7 @@ - inferior ophthalmic vein (post-embryonic human) - FMA:51247 + inferior ophthalmic vein (post-embryonic human) @@ -55586,8 +52383,7 @@ - temporal vein (post-embryonic human) - FMA:51302 + temporal vein (post-embryonic human) @@ -55606,8 +52402,7 @@ - anterior cerebral vein (post-embryonic human) - FMA:51306 + anterior cerebral vein (post-embryonic human) @@ -55626,8 +52421,7 @@ - deep middle cerebral vein (post-embryonic human) - FMA:51309 + deep middle cerebral vein (post-embryonic human) @@ -55646,8 +52440,7 @@ - naso-frontal vein (post-embryonic human) - FMA:51729 + naso-frontal vein (post-embryonic human) @@ -55666,8 +52459,7 @@ - lacrimal vein (post-embryonic human) - FMA:51779 + lacrimal vein (post-embryonic human) @@ -55686,8 +52478,7 @@ - posterior ciliary vein (post-embryonic human) - FMA:51796 + posterior ciliary vein (post-embryonic human) @@ -55706,8 +52497,7 @@ - uveal vein (post-embryonic human) - FMA:51797 + uveal vein (post-embryonic human) @@ -55726,8 +52516,7 @@ - central retinal vein (post-embryonic human) - FMA:51799 + central retinal vein (post-embryonic human) @@ -55746,8 +52535,7 @@ - canal of Schlemm (post-embryonic human) - FMA:51873 + canal of Schlemm (post-embryonic human) @@ -55766,8 +52554,7 @@ - tributary of central retinal vein (post-embryonic human) - FMA:51892 + tributary of central retinal vein (post-embryonic human) @@ -55786,8 +52573,7 @@ - terminal branch of ophthalmic artery (post-embryonic human) - FMA:51956 + terminal branch of ophthalmic artery (post-embryonic human) @@ -55806,8 +52592,7 @@ - palpebral vein (post-embryonic human) - FMA:51997 + palpebral vein (post-embryonic human) @@ -55826,8 +52611,7 @@ - superficial lymphatic vessel (post-embryonic human) - FMA:52011 + superficial lymphatic vessel (post-embryonic human) @@ -55846,8 +52630,7 @@ - deep lymphatic vessel (post-embryonic human) - FMA:52012 + deep lymphatic vessel (post-embryonic human) @@ -55866,8 +52649,7 @@ - spiral modiolar artery (post-embryonic human) - FMA:52312 + spiral modiolar artery (post-embryonic human) @@ -55886,8 +52668,7 @@ - vein of vestibular aqueduct (post-embryonic human) - FMA:52367 + vein of vestibular aqueduct (post-embryonic human) @@ -55906,8 +52687,7 @@ - ascending cervical artery (post-embryonic human) - FMA:52489 + ascending cervical artery (post-embryonic human) @@ -55926,8 +52706,7 @@ - masseteric vein (post-embryonic human) - FMA:52519 + masseteric vein (post-embryonic human) @@ -55946,8 +52725,7 @@ - vein of upper lip (post-embryonic human) - FMA:52538 + vein of upper lip (post-embryonic human) @@ -55966,8 +52744,7 @@ - vein of lower lip (post-embryonic human) - FMA:52541 + vein of lower lip (post-embryonic human) @@ -55986,8 +52763,7 @@ - paired venous dural sinus (post-embryonic human) - FMA:52568 + paired venous dural sinus (post-embryonic human) @@ -56006,8 +52782,7 @@ - unpaired venous dural sinus (post-embryonic human) - FMA:52569 + unpaired venous dural sinus (post-embryonic human) @@ -56026,8 +52801,7 @@ - superior branch of oculomotor nerve (post-embryonic human) - FMA:52572 + superior branch of oculomotor nerve (post-embryonic human) @@ -56046,8 +52820,7 @@ - inferior branch of oculomotor nerve (post-embryonic human) - FMA:52573 + inferior branch of oculomotor nerve (post-embryonic human) @@ -56066,8 +52839,7 @@ - perineurium (post-embryonic human) - FMA:52585 + perineurium (post-embryonic human) @@ -56086,8 +52858,7 @@ - endoneurium (post-embryonic human) - FMA:52586 + endoneurium (post-embryonic human) @@ -56106,8 +52877,7 @@ - cauda equina (post-embryonic human) - FMA:52590 + cauda equina (post-embryonic human) @@ -56126,8 +52896,7 @@ - root of cranial nerve (post-embryonic human) - FMA:52609 + root of cranial nerve (post-embryonic human) @@ -56146,8 +52915,7 @@ - trigeminal nerve root (post-embryonic human) - FMA:52610 + trigeminal nerve root (post-embryonic human) @@ -56166,8 +52934,7 @@ - sensory root of trigeminal nerve (post-embryonic human) - FMA:52611 + sensory root of trigeminal nerve (post-embryonic human) @@ -56186,8 +52953,7 @@ - motor root of trigeminal nerve (post-embryonic human) - FMA:52612 + motor root of trigeminal nerve (post-embryonic human) @@ -56206,8 +52972,7 @@ - trigeminal ganglion (post-embryonic human) - FMA:52618 + trigeminal ganglion (post-embryonic human) @@ -56226,8 +52991,7 @@ - ophthalmic nerve (post-embryonic human) - FMA:52621 + ophthalmic nerve (post-embryonic human) @@ -56246,8 +53010,7 @@ - lacrimal nerve (post-embryonic human) - FMA:52628 + lacrimal nerve (post-embryonic human) @@ -56266,8 +53029,7 @@ - frontal nerve (branch of ophthalmic) (post-embryonic human) - FMA:52638 + frontal nerve (branch of ophthalmic) (post-embryonic human) @@ -56286,8 +53048,7 @@ - nasociliary nerve (post-embryonic human) - FMA:52668 + nasociliary nerve (post-embryonic human) @@ -56306,8 +53067,7 @@ - long ciliary nerve (post-embryonic human) - FMA:52691 + long ciliary nerve (post-embryonic human) @@ -56326,8 +53086,7 @@ - maxillary nerve (post-embryonic human) - FMA:52724 + maxillary nerve (post-embryonic human) @@ -56346,8 +53105,7 @@ - pterygopalatine nerve (post-embryonic human) - FMA:52731 + pterygopalatine nerve (post-embryonic human) @@ -56366,8 +53124,7 @@ - tetrapod frontal bone (post-embryonic human) - FMA:52734 + tetrapod frontal bone (post-embryonic human) @@ -56386,8 +53143,7 @@ - occipital bone (post-embryonic human) - FMA:52735 + occipital bone (post-embryonic human) @@ -56406,8 +53162,7 @@ - sphenoid bone (post-embryonic human) - FMA:52736 + sphenoid bone (post-embryonic human) @@ -56426,8 +53181,7 @@ - temporal bone (post-embryonic human) - FMA:52737 + temporal bone (post-embryonic human) @@ -56446,8 +53200,7 @@ - ethmoid bone (post-embryonic human) - FMA:52740 + ethmoid bone (post-embryonic human) @@ -56466,8 +53219,7 @@ - lacrimal bone (post-embryonic human) - FMA:52741 + lacrimal bone (post-embryonic human) @@ -56486,8 +53238,7 @@ - nasal bone (post-embryonic human) - FMA:52745 + nasal bone (post-embryonic human) @@ -56506,8 +53257,7 @@ - palatine bone (post-embryonic human) - FMA:52746 + palatine bone (post-embryonic human) @@ -56526,8 +53276,7 @@ - jugal bone (post-embryonic human) - FMA:52747 + jugal bone (post-embryonic human) @@ -56546,8 +53295,7 @@ - mandible (post-embryonic human) - FMA:52748 + mandible (post-embryonic human) @@ -56566,8 +53314,7 @@ - hyoid bone (post-embryonic human) - FMA:52749 + hyoid bone (post-embryonic human) @@ -56586,8 +53333,7 @@ - auditory ossicle bone (post-embryonic human) - FMA:52750 + auditory ossicle bone (post-embryonic human) @@ -56606,8 +53352,7 @@ - stapes bone (post-embryonic human) - FMA:52751 + stapes bone (post-embryonic human) @@ -56626,8 +53371,7 @@ - incus bone (post-embryonic human) - FMA:52752 + incus bone (post-embryonic human) @@ -56646,8 +53390,7 @@ - malleus bone (post-embryonic human) - FMA:52753 + malleus bone (post-embryonic human) @@ -56666,8 +53409,7 @@ - manubrium of malleus (post-embryonic human) - FMA:52760 + manubrium of malleus (post-embryonic human) @@ -56686,8 +53428,7 @@ - malleus head (post-embryonic human) - FMA:52761 + malleus head (post-embryonic human) @@ -56706,8 +53447,7 @@ - malleus neck (post-embryonic human) - FMA:52762 + malleus neck (post-embryonic human) @@ -56726,8 +53466,7 @@ - stapes base (post-embryonic human) - FMA:52769 + stapes base (post-embryonic human) @@ -56746,8 +53485,7 @@ - lateral process of malleus (post-embryonic human) - FMA:52770 + lateral process of malleus (post-embryonic human) @@ -56766,8 +53504,7 @@ - anterior process of malleus (post-embryonic human) - FMA:52771 + anterior process of malleus (post-embryonic human) @@ -56786,8 +53523,7 @@ - lenticular process of incus bone (post-embryonic human) - FMA:52775 + lenticular process of incus bone (post-embryonic human) @@ -56806,8 +53542,7 @@ - ear (post-embryonic human) - FMA:52780 + ear (post-embryonic human) @@ -56826,8 +53561,7 @@ - external ear (post-embryonic human) - FMA:52781 + external ear (post-embryonic human) @@ -56846,8 +53580,7 @@ - nasopalatine nerve (post-embryonic human) - FMA:52797 + nasopalatine nerve (post-embryonic human) @@ -56866,8 +53599,7 @@ - vault of skull (post-embryonic human) - FMA:52800 + vault of skull (post-embryonic human) @@ -56886,8 +53618,7 @@ - basicranium (post-embryonic human) - FMA:52801 + basicranium (post-embryonic human) @@ -56906,8 +53637,7 @@ - body of mandible (post-embryonic human) - FMA:52827 + body of mandible (post-embryonic human) @@ -56926,8 +53656,7 @@ - mandibular ramus (post-embryonic human) - FMA:52828 + mandibular ramus (post-embryonic human) @@ -56946,8 +53675,7 @@ - alveolar ridge of mandible (post-embryonic human) - FMA:52832 + alveolar ridge of mandible (post-embryonic human) @@ -56966,8 +53694,7 @@ - mandible coronoid process (post-embryonic human) - FMA:52833 + mandible coronoid process (post-embryonic human) @@ -56986,8 +53713,7 @@ - mandible condylar process (post-embryonic human) - FMA:52836 + mandible condylar process (post-embryonic human) @@ -57006,8 +53732,7 @@ - orbital part of frontal bone (post-embryonic human) - FMA:52849 + orbital part of frontal bone (post-embryonic human) @@ -57026,8 +53751,7 @@ - glabella region of bone (post-embryonic human) - FMA:52851 + glabella region of bone (post-embryonic human) @@ -57046,8 +53770,7 @@ - internal surface of frontal bone (post-embryonic human) - FMA:52856 + internal surface of frontal bone (post-embryonic human) @@ -57066,8 +53789,7 @@ - basioccipital bone (post-embryonic human) - FMA:52858 + basioccipital bone (post-embryonic human) @@ -57086,8 +53808,7 @@ - exoccipital bone (post-embryonic human) - FMA:52859 + exoccipital bone (post-embryonic human) @@ -57106,8 +53827,7 @@ - squamous part of occipital bone (post-embryonic human) - FMA:52860 + squamous part of occipital bone (post-embryonic human) @@ -57126,8 +53846,7 @@ - occipital condyle (post-embryonic human) - FMA:52861 + occipital condyle (post-embryonic human) @@ -57146,8 +53865,7 @@ - body of sphenoid (post-embryonic human) - FMA:52867 + body of sphenoid (post-embryonic human) @@ -57166,8 +53884,7 @@ - alisphenoid bone (post-embryonic human) - FMA:52868 + alisphenoid bone (post-embryonic human) @@ -57186,8 +53903,7 @@ - orbitosphenoid (post-embryonic human) - FMA:52869 + orbitosphenoid (post-embryonic human) @@ -57206,8 +53922,7 @@ - petrous part of temporal bone (post-embryonic human) - FMA:52871 + petrous part of temporal bone (post-embryonic human) @@ -57226,8 +53941,7 @@ - mastoid process of temporal bone (post-embryonic human) - FMA:52872 + mastoid process of temporal bone (post-embryonic human) @@ -57246,8 +53960,7 @@ - styloid process of temporal bone (post-embryonic human) - FMA:52877 + styloid process of temporal bone (post-embryonic human) @@ -57266,8 +53979,7 @@ - tympanic plate (post-embryonic human) - FMA:52880 + tympanic plate (post-embryonic human) @@ -57286,8 +53998,7 @@ - squamous part of temporal bone (post-embryonic human) - FMA:52883 + squamous part of temporal bone (post-embryonic human) @@ -57306,8 +54017,7 @@ - zygomatic process of temporal bone (post-embryonic human) - FMA:52886 + zygomatic process of temporal bone (post-embryonic human) @@ -57326,8 +54036,7 @@ - cribriform plate (post-embryonic human) - FMA:52890 + cribriform plate (post-embryonic human) @@ -57346,8 +54055,7 @@ - perpendicular plate of ethmoid (post-embryonic human) - FMA:52891 + perpendicular plate of ethmoid (post-embryonic human) @@ -57366,8 +54074,7 @@ - frontal process of maxilla (post-embryonic human) - FMA:52894 + frontal process of maxilla (post-embryonic human) @@ -57386,8 +54093,7 @@ - zygomatic process of maxilla (post-embryonic human) - FMA:52895 + zygomatic process of maxilla (post-embryonic human) @@ -57406,8 +54112,7 @@ - palatine process of maxilla (post-embryonic human) - FMA:52896 + palatine process of maxilla (post-embryonic human) @@ -57426,8 +54131,7 @@ - alveolar process of maxilla (post-embryonic human) - FMA:52897 + alveolar process of maxilla (post-embryonic human) @@ -57446,8 +54150,7 @@ - palatine bone horizontal plate (post-embryonic human) - FMA:52901 + palatine bone horizontal plate (post-embryonic human) @@ -57466,8 +54169,7 @@ - temporal process of zygomatic bone (post-embryonic human) - FMA:52904 + temporal process of zygomatic bone (post-embryonic human) @@ -57486,8 +54188,7 @@ - frontal process of zygomatic bone (post-embryonic human) - FMA:52907 + frontal process of zygomatic bone (post-embryonic human) @@ -57506,8 +54207,7 @@ - coronal suture (post-embryonic human) - FMA:52928 + coronal suture (post-embryonic human) @@ -57526,8 +54226,7 @@ - sagittal suture (post-embryonic human) - FMA:52929 + sagittal suture (post-embryonic human) @@ -57546,8 +54245,7 @@ - superior alveolar nerve (post-embryonic human) - FMA:52930 + superior alveolar nerve (post-embryonic human) @@ -57566,8 +54264,7 @@ - posterior superior alveolar nerve (post-embryonic human) - FMA:52931 + posterior superior alveolar nerve (post-embryonic human) @@ -57586,8 +54283,7 @@ - lambdoid suture (post-embryonic human) - FMA:52933 + lambdoid suture (post-embryonic human) @@ -57606,8 +54302,7 @@ - occipitomastoid suture (post-embryonic human) - FMA:52934 + occipitomastoid suture (post-embryonic human) @@ -57626,8 +54321,7 @@ - anterior superior alveolar nerve (post-embryonic human) - FMA:52935 + anterior superior alveolar nerve (post-embryonic human) @@ -57646,8 +54340,7 @@ - sphenofrontal suture (post-embryonic human) - FMA:52938 + sphenofrontal suture (post-embryonic human) @@ -57666,8 +54359,7 @@ - sphenoparietal suture (post-embryonic human) - FMA:52945 + sphenoparietal suture (post-embryonic human) @@ -57686,8 +54378,7 @@ - squamoparietal suture (post-embryonic human) - FMA:52946 + squamoparietal suture (post-embryonic human) @@ -57706,8 +54397,7 @@ - parietomastoid suture (post-embryonic human) - FMA:52947 + parietomastoid suture (post-embryonic human) @@ -57726,8 +54416,7 @@ - frontonasal suture (post-embryonic human) - FMA:52948 + frontonasal suture (post-embryonic human) @@ -57746,8 +54435,7 @@ - frontomaxillary suture (post-embryonic human) - FMA:52950 + frontomaxillary suture (post-embryonic human) @@ -57766,8 +54454,7 @@ - zygomaticomaxillary suture (post-embryonic human) - FMA:52953 + zygomaticomaxillary suture (post-embryonic human) @@ -57786,8 +54473,7 @@ - ethmoidomaxillary suture (post-embryonic human) - FMA:52954 + ethmoidomaxillary suture (post-embryonic human) @@ -57806,8 +54492,7 @@ - sphenozygomatic suture (post-embryonic human) - FMA:52956 + sphenozygomatic suture (post-embryonic human) @@ -57826,8 +54511,7 @@ - sphenomaxillary suture (post-embryonic human) - FMA:52957 + sphenomaxillary suture (post-embryonic human) @@ -57846,8 +54530,7 @@ - internasal suture (post-embryonic human) - FMA:52959 + internasal suture (post-embryonic human) @@ -57866,8 +54549,7 @@ - nasomaxillary suture (post-embryonic human) - FMA:52960 + nasomaxillary suture (post-embryonic human) @@ -57886,8 +54568,7 @@ - lacrimomaxillary suture (post-embryonic human) - FMA:52961 + lacrimomaxillary suture (post-embryonic human) @@ -57906,8 +54587,7 @@ - intermaxillary suture (post-embryonic human) - FMA:52963 + intermaxillary suture (post-embryonic human) @@ -57926,8 +54606,7 @@ - palatomaxillary suture (post-embryonic human) - FMA:52964 + palatomaxillary suture (post-embryonic human) @@ -57946,8 +54625,7 @@ - palatoethmoidal suture (post-embryonic human) - FMA:52965 + palatoethmoidal suture (post-embryonic human) @@ -57966,8 +54644,7 @@ - median palatine suture (post-embryonic human) - FMA:52966 + median palatine suture (post-embryonic human) @@ -57986,8 +54663,7 @@ - transverse palatine suture (post-embryonic human) - FMA:52971 + transverse palatine suture (post-embryonic human) @@ -58006,8 +54682,7 @@ - zygomaticotemporal nerve (post-embryonic human) - FMA:52972 + zygomaticotemporal nerve (post-embryonic human) @@ -58026,8 +54701,7 @@ - infra-orbital nerve (post-embryonic human) - FMA:52978 + infra-orbital nerve (post-embryonic human) @@ -58046,8 +54720,7 @@ - inferior palpebral branch of infra-orbital nerve (post-embryonic human) - FMA:52983 + inferior palpebral branch of infra-orbital nerve (post-embryonic human) @@ -58066,8 +54739,7 @@ - frontal suture (post-embryonic human) - FMA:52989 + frontal suture (post-embryonic human) @@ -58086,8 +54758,7 @@ - mandibular nerve (post-embryonic human) - FMA:52996 + mandibular nerve (post-embryonic human) @@ -58106,8 +54777,7 @@ - meningeal branch of mandibular nerve (post-embryonic human) - FMA:53047 + meningeal branch of mandibular nerve (post-embryonic human) @@ -58126,8 +54796,7 @@ - buccal nerve (post-embryonic human) - FMA:53066 + buccal nerve (post-embryonic human) @@ -58146,8 +54815,7 @@ - orbit of skull (post-embryonic human) - FMA:53074 + orbit of skull (post-embryonic human) @@ -58166,8 +54834,7 @@ - masseteric nerve (post-embryonic human) - FMA:53103 + masseteric nerve (post-embryonic human) @@ -58186,8 +54853,7 @@ - highest nuchal line attachment site (post-embryonic human) - FMA:53106 + highest nuchal line attachment site (post-embryonic human) @@ -58206,8 +54872,7 @@ - lateral pterygoid nerve (post-embryonic human) - FMA:53107 + lateral pterygoid nerve (post-embryonic human) @@ -58226,30 +54891,7 @@ - superior nuchal line attachment site (post-embryonic human) - FMA:53108 - - - - - - - - - - - - - - - - - - - - inferior nuchal line attachment site (post-embryonic human) - median nuchal line attachment site (post-embryonic human) - FMA:53111 + superior nuchal line attachment site (post-embryonic human) @@ -58268,8 +54910,7 @@ - zygomatic arch (post-embryonic human) - FMA:53120 + zygomatic arch (post-embryonic human) @@ -58288,8 +54929,7 @@ - internal surface of cranial base (post-embryonic human) - FMA:53128 + internal surface of cranial base (post-embryonic human) @@ -58308,8 +54948,7 @@ - orifice of skull (post-embryonic human) - FMA:53133 + orifice of skull (post-embryonic human) @@ -58328,8 +54967,7 @@ - anterior ethmoidal foramen (post-embryonic human) - FMA:53135 + anterior ethmoidal foramen (post-embryonic human) @@ -58348,8 +54986,7 @@ - posterior ethmoidal foramen (post-embryonic human) - FMA:53136 + posterior ethmoidal foramen (post-embryonic human) @@ -58368,8 +55005,7 @@ - piriform aperture (post-embryonic human) - FMA:53137 + piriform aperture (post-embryonic human) @@ -58388,8 +55024,7 @@ - superior nasal meatus (post-embryonic human) - FMA:53138 + superior nasal meatus (post-embryonic human) @@ -58408,8 +55043,7 @@ - middle nasal meatus (post-embryonic human) - FMA:53139 + middle nasal meatus (post-embryonic human) @@ -58428,8 +55062,7 @@ - inferior nasal meatus (post-embryonic human) - FMA:53140 + inferior nasal meatus (post-embryonic human) @@ -58448,8 +55081,7 @@ - common nasal meatus (post-embryonic human) - FMA:53141 + common nasal meatus (post-embryonic human) @@ -58468,8 +55100,7 @@ - posterior nasal aperture (post-embryonic human) - FMA:53143 + posterior nasal aperture (post-embryonic human) @@ -58488,8 +55119,7 @@ - nasal meatus (post-embryonic human) - FMA:53146 + nasal meatus (post-embryonic human) @@ -58508,8 +55138,7 @@ - foramen rotundum (post-embryonic human) - FMA:53154 + foramen rotundum (post-embryonic human) @@ -58528,8 +55157,7 @@ - foramen ovale of skull (post-embryonic human) - FMA:53155 + foramen ovale of skull (post-embryonic human) @@ -58548,8 +55176,7 @@ - foramen spinosum of sphenoid bone (post-embryonic human) - FMA:53156 + foramen spinosum of sphenoid bone (post-embryonic human) @@ -58568,8 +55195,7 @@ - petrosal foramen (post-embryonic human) - FMA:53158 + petrosal foramen (post-embryonic human) @@ -58588,8 +55214,7 @@ - internal acoustic meatus (post-embryonic human) - FMA:53163 + internal acoustic meatus (post-embryonic human) @@ -58608,8 +55233,7 @@ - foramen of skull (post-embryonic human) - FMA:53165 + foramen of skull (post-embryonic human) @@ -58628,8 +55252,7 @@ - mental foramen (post-embryonic human) - FMA:53171 + mental foramen (post-embryonic human) @@ -58648,8 +55271,7 @@ - orbital margin (post-embryonic human) - FMA:53176 + orbital margin (post-embryonic human) @@ -58668,8 +55290,7 @@ - infraorbital margin (post-embryonic human) - FMA:53177 + infraorbital margin (post-embryonic human) @@ -58688,8 +55309,7 @@ - deep temporal nerve (post-embryonic human) - FMA:53187 + deep temporal nerve (post-embryonic human) @@ -58708,8 +55328,7 @@ - lingual nerve (post-embryonic human) - FMA:53218 + lingual nerve (post-embryonic human) @@ -58728,8 +55347,7 @@ - chorda tympani branch of facial nerve (post-embryonic human) - FMA:53228 + chorda tympani branch of facial nerve (post-embryonic human) @@ -58748,8 +55366,7 @@ - inferior alveolar nerve (post-embryonic human) - FMA:53243 + inferior alveolar nerve (post-embryonic human) @@ -58768,8 +55385,7 @@ - mylohyoid nerve (post-embryonic human) - FMA:53247 + mylohyoid nerve (post-embryonic human) @@ -58788,8 +55404,7 @@ - mental nerve (post-embryonic human) - FMA:53250 + mental nerve (post-embryonic human) @@ -58808,8 +55423,7 @@ - posterior auricular nerve (post-embryonic human) - FMA:53278 + posterior auricular nerve (post-embryonic human) @@ -58828,8 +55442,7 @@ - digastric branch of facial nerve (post-embryonic human) - FMA:53288 + digastric branch of facial nerve (post-embryonic human) @@ -58848,8 +55461,7 @@ - nerve to stylohyoid from facial nerve (post-embryonic human) - FMA:53298 + nerve to stylohyoid from facial nerve (post-embryonic human) @@ -58868,8 +55480,7 @@ - vestibular nerve (post-embryonic human) - FMA:53401 + vestibular nerve (post-embryonic human) @@ -58888,8 +55499,7 @@ - sensory root of facial nerve (post-embryonic human) - FMA:53410 + sensory root of facial nerve (post-embryonic human) @@ -58908,8 +55518,7 @@ - geniculate ganglion (post-embryonic human) - FMA:53414 + geniculate ganglion (post-embryonic human) @@ -58928,8 +55537,7 @@ - facial nerve root (post-embryonic human) - FMA:53418 + facial nerve root (post-embryonic human) @@ -58948,8 +55556,7 @@ - motor root of facial nerve (post-embryonic human) - FMA:53419 + motor root of facial nerve (post-embryonic human) @@ -58968,8 +55575,7 @@ - cochlear nerve (post-embryonic human) - FMA:53431 + cochlear nerve (post-embryonic human) @@ -58988,8 +55594,7 @@ - vestibular ganglion (post-embryonic human) - FMA:53435 + vestibular ganglion (post-embryonic human) @@ -59008,8 +55613,7 @@ - cochlear ganglion (post-embryonic human) - FMA:53445 + cochlear ganglion (post-embryonic human) @@ -59028,8 +55632,7 @@ - glossopharyngeal ganglion (post-embryonic human) - FMA:53471 + glossopharyngeal ganglion (post-embryonic human) @@ -59048,8 +55651,7 @@ - vagus X ganglion (post-embryonic human) - FMA:53472 + vagus X ganglion (post-embryonic human) @@ -59068,8 +55670,7 @@ - superior glossopharyngeal IX ganglion (post-embryonic human) - FMA:53474 + superior glossopharyngeal IX ganglion (post-embryonic human) @@ -59088,8 +55689,7 @@ - inferior glossopharyngeal IX ganglion (post-embryonic human) - FMA:53475 + inferior glossopharyngeal IX ganglion (post-embryonic human) @@ -59108,8 +55708,7 @@ - tympanic nerve (post-embryonic human) - FMA:53480 + tympanic nerve (post-embryonic human) @@ -59128,8 +55727,7 @@ - nerve to stylopharyngeus from glossopharyngeal nerve (post-embryonic human) - FMA:53487 + nerve to stylopharyngeus from glossopharyngeal nerve (post-embryonic human) @@ -59148,8 +55746,7 @@ - carotid sinus nerve (post-embryonic human) - FMA:53488 + carotid sinus nerve (post-embryonic human) @@ -59168,8 +55765,7 @@ - right ear (post-embryonic human) - FMA:53641 + right ear (post-embryonic human) @@ -59188,8 +55784,7 @@ - left ear (post-embryonic human) - FMA:53642 + left ear (post-embryonic human) @@ -59208,8 +55803,7 @@ - right external ear (post-embryonic human) - FMA:53643 + right external ear (post-embryonic human) @@ -59228,8 +55822,7 @@ - left external ear (post-embryonic human) - FMA:53644 + left external ear (post-embryonic human) @@ -59248,8 +55841,7 @@ - strand of hair (post-embryonic human) - FMA:53667 + strand of hair (post-embryonic human) @@ -59268,8 +55860,7 @@ - eyelash (post-embryonic human) - FMA:53669 + eyelash (post-embryonic human) @@ -59288,8 +55879,7 @@ - nasal hair (post-embryonic human) - FMA:53670 + nasal hair (post-embryonic human) @@ -59308,8 +55898,7 @@ - strand of hair on external ear (post-embryonic human) - FMA:53671 + strand of hair on external ear (post-embryonic human) @@ -59328,8 +55917,7 @@ - neurocranium (post-embryonic human) - FMA:53672 + neurocranium (post-embryonic human) @@ -59348,8 +55936,7 @@ - facial skeleton (post-embryonic human) - FMA:53673 + facial skeleton (post-embryonic human) @@ -59368,8 +55955,7 @@ - temporalis fascia (post-embryonic human) - FMA:53996 + temporalis fascia (post-embryonic human) @@ -59388,8 +55974,7 @@ - eyebrow (post-embryonic human) - FMA:54237 + eyebrow (post-embryonic human) @@ -59408,8 +55993,7 @@ - beard (post-embryonic human) - FMA:54240 + beard (post-embryonic human) @@ -59428,8 +56012,7 @@ - hair of head (post-embryonic human) - FMA:54241 + hair of head (post-embryonic human) @@ -59448,8 +56031,7 @@ - hair of neck (post-embryonic human) - FMA:54242 + hair of neck (post-embryonic human) @@ -59468,8 +56050,7 @@ - hair of limb (post-embryonic human) - FMA:54243 + hair of limb (post-embryonic human) @@ -59488,8 +56069,7 @@ - hair of trunk (post-embryonic human) - FMA:54250 + hair of trunk (post-embryonic human) @@ -59508,8 +56088,7 @@ - strand of axillary hair (post-embryonic human) - FMA:54253 + strand of axillary hair (post-embryonic human) @@ -59528,8 +56107,7 @@ - strand of pubic hair (post-embryonic human) - FMA:54319 + strand of pubic hair (post-embryonic human) @@ -59548,8 +56126,7 @@ - dorsal hair (post-embryonic human) - FMA:54320 + dorsal hair (post-embryonic human) @@ -59568,8 +56145,7 @@ - nail (post-embryonic human) - FMA:54326 + nail (post-embryonic human) @@ -59588,8 +56164,7 @@ - nail of manual digit (post-embryonic human) - FMA:54327 + nail of manual digit (post-embryonic human) @@ -59608,8 +56183,7 @@ - nail of pedal digit (post-embryonic human) - FMA:54328 + nail of pedal digit (post-embryonic human) @@ -59628,8 +56202,7 @@ - nail of manual digit 1 (post-embryonic human) - FMA:54329 + nail of manual digit 1 (post-embryonic human) @@ -59648,8 +56221,7 @@ - nail of manual digit 2 (post-embryonic human) - FMA:54332 + nail of manual digit 2 (post-embryonic human) @@ -59668,8 +56240,7 @@ - nail of manual digit 3 (post-embryonic human) - FMA:54335 + nail of manual digit 3 (post-embryonic human) @@ -59688,8 +56259,7 @@ - nail of manual digit 4 (post-embryonic human) - FMA:54338 + nail of manual digit 4 (post-embryonic human) @@ -59708,8 +56278,7 @@ - nail of manual digit 5 (post-embryonic human) - FMA:54341 + nail of manual digit 5 (post-embryonic human) @@ -59728,8 +56297,7 @@ - nail of pedal digit 1 (post-embryonic human) - FMA:54344 + nail of pedal digit 1 (post-embryonic human) @@ -59748,8 +56316,7 @@ - nail of pedal digit 2 (post-embryonic human) - FMA:54347 + nail of pedal digit 2 (post-embryonic human) @@ -59768,8 +56335,7 @@ - nail of pedal digit 3 (post-embryonic human) - FMA:54350 + nail of pedal digit 3 (post-embryonic human) @@ -59788,8 +56354,7 @@ - nail of pedal digit 4 (post-embryonic human) - FMA:54353 + nail of pedal digit 4 (post-embryonic human) @@ -59808,8 +56373,7 @@ - nail of pedal digit 5 (post-embryonic human) - FMA:54356 + nail of pedal digit 5 (post-embryonic human) @@ -59828,8 +56392,7 @@ - strand of hair of face (post-embryonic human) - FMA:54360 + strand of hair of face (post-embryonic human) @@ -59848,8 +56411,7 @@ - lumen of gastrointestinal system (post-embryonic human) - FMA:54364 + lumen of gastrointestinal system (post-embryonic human) @@ -59868,8 +56430,7 @@ - lumen of midgut (post-embryonic human) - FMA:54366 + lumen of midgut (post-embryonic human) @@ -59888,8 +56449,7 @@ - lumen of hindgut (post-embryonic human) - FMA:54367 + lumen of hindgut (post-embryonic human) @@ -59908,8 +56468,7 @@ - posterior cranial fossa (post-embryonic human) - FMA:54368 + posterior cranial fossa (post-embryonic human) @@ -59928,8 +56487,7 @@ - middle cranial fossa (post-embryonic human) - FMA:54369 + middle cranial fossa (post-embryonic human) @@ -59948,8 +56506,7 @@ - nasal septum (post-embryonic human) - FMA:54375 + nasal septum (post-embryonic human) @@ -59968,8 +56525,7 @@ - nasal cavity (post-embryonic human) - FMA:54378 + nasal cavity (post-embryonic human) @@ -59988,8 +56544,7 @@ - zygomatic process of frontal bone (post-embryonic human) - FMA:54389 + zygomatic process of frontal bone (post-embryonic human) @@ -60008,8 +56563,7 @@ - jaw skeleton (post-embryonic human) - FMA:54396 + jaw skeleton (post-embryonic human) @@ -60028,8 +56582,7 @@ - skeleton of upper jaw (post-embryonic human) - FMA:54397 + skeleton of upper jaw (post-embryonic human) @@ -60048,8 +56601,7 @@ - skeleton of lower jaw (post-embryonic human) - FMA:54398 + skeleton of lower jaw (post-embryonic human) @@ -60068,8 +56620,7 @@ - eyelid (post-embryonic human) - FMA:54437 + eyelid (post-embryonic human) @@ -60088,8 +56639,7 @@ - upper eyelid (post-embryonic human) - FMA:54439 + upper eyelid (post-embryonic human) @@ -60108,8 +56658,7 @@ - lower eyelid (post-embryonic human) - FMA:54442 + lower eyelid (post-embryonic human) @@ -60128,8 +56677,7 @@ - camera-type eye (post-embryonic human) - FMA:54448 + camera-type eye (post-embryonic human) @@ -60148,8 +56696,7 @@ - cranial nerve nucleus (post-embryonic human) - FMA:54501 + cranial nerve nucleus (post-embryonic human) @@ -60168,8 +56715,7 @@ - cranial ganglion (post-embryonic human) - FMA:54502 + cranial ganglion (post-embryonic human) @@ -60188,8 +56734,7 @@ - abducens nucleus (post-embryonic human) - FMA:54504 + abducens nucleus (post-embryonic human) @@ -60208,8 +56753,7 @@ - hypoglossal nucleus (post-embryonic human) - FMA:54505 + hypoglossal nucleus (post-embryonic human) @@ -60228,8 +56772,7 @@ - oculomotor nuclear complex (post-embryonic human) - FMA:54510 + oculomotor nuclear complex (post-embryonic human) @@ -60248,8 +56791,7 @@ - trochlear nucleus (post-embryonic human) - FMA:54518 + trochlear nucleus (post-embryonic human) @@ -60268,8 +56810,7 @@ - anterior median oculomotor nucleus (post-embryonic human) - FMA:54524 + anterior median oculomotor nucleus (post-embryonic human) @@ -60288,8 +56829,7 @@ - principal sensory nucleus of trigeminal nerve (post-embryonic human) - FMA:54533 + principal sensory nucleus of trigeminal nerve (post-embryonic human) @@ -60308,8 +56848,7 @@ - secondary palate (post-embryonic human) - FMA:54549 + secondary palate (post-embryonic human) @@ -60328,8 +56867,7 @@ - motor nucleus of trigeminal nerve (post-embryonic human) - FMA:54562 + motor nucleus of trigeminal nerve (post-embryonic human) @@ -60348,8 +56886,7 @@ - spinal nucleus of trigeminal nerve (post-embryonic human) - FMA:54565 + spinal nucleus of trigeminal nerve (post-embryonic human) @@ -60368,8 +56905,7 @@ - mesencephalic nucleus of trigeminal nerve (post-embryonic human) - FMA:54568 + mesencephalic nucleus of trigeminal nerve (post-embryonic human) @@ -60388,8 +56924,7 @@ - facial nucleus (post-embryonic human) - FMA:54572 + facial nucleus (post-embryonic human) @@ -60408,8 +56943,7 @@ - vagus nerve nucleus (post-embryonic human) - FMA:54573 + vagus nerve nucleus (post-embryonic human) @@ -60428,8 +56962,7 @@ - facial motor nucleus (post-embryonic human) - FMA:54582 + facial motor nucleus (post-embryonic human) @@ -60448,8 +56981,7 @@ - nucleus ambiguus (post-embryonic human) - FMA:54588 + nucleus ambiguus (post-embryonic human) @@ -60468,8 +57000,7 @@ - dorsal motor nucleus of vagus nerve (post-embryonic human) - FMA:54592 + dorsal motor nucleus of vagus nerve (post-embryonic human) @@ -60488,8 +57019,7 @@ - commissural nucleus of vagus nerve (post-embryonic human) - FMA:54597 + commissural nucleus of vagus nerve (post-embryonic human) @@ -60508,8 +57038,7 @@ - vestibular nucleus (post-embryonic human) - FMA:54602 + vestibular nucleus (post-embryonic human) @@ -60528,8 +57057,7 @@ - cochlear nucleus (post-embryonic human) - FMA:54603 + cochlear nucleus (post-embryonic human) @@ -60548,8 +57076,7 @@ - inferior vestibular nucleus (post-embryonic human) - FMA:54608 + inferior vestibular nucleus (post-embryonic human) @@ -60568,8 +57095,7 @@ - medial vestibular nucleus (post-embryonic human) - FMA:54611 + medial vestibular nucleus (post-embryonic human) @@ -60588,8 +57114,7 @@ - lateral vestibular nucleus (post-embryonic human) - FMA:54614 + lateral vestibular nucleus (post-embryonic human) @@ -60608,8 +57133,7 @@ - superior vestibular nucleus (post-embryonic human) - FMA:54617 + superior vestibular nucleus (post-embryonic human) @@ -60628,8 +57152,7 @@ - ventral cochlear nucleus (post-embryonic human) - FMA:54621 + ventral cochlear nucleus (post-embryonic human) @@ -60648,8 +57171,7 @@ - dorsal cochlear nucleus (post-embryonic human) - FMA:54624 + dorsal cochlear nucleus (post-embryonic human) @@ -60668,8 +57190,7 @@ - tongue (post-embryonic human) - FMA:54640 + tongue (post-embryonic human) @@ -60688,8 +57209,7 @@ - body of tongue (post-embryonic human) - FMA:54641 + body of tongue (post-embryonic human) @@ -60708,8 +57228,7 @@ - posterior part of tongue (post-embryonic human) - FMA:54645 + posterior part of tongue (post-embryonic human) @@ -60728,8 +57247,7 @@ - superior surface of tongue (post-embryonic human) - FMA:54646 + superior surface of tongue (post-embryonic human) @@ -60748,8 +57266,7 @@ - surface of tongue (post-embryonic human) - FMA:54647 + surface of tongue (post-embryonic human) @@ -60768,8 +57285,7 @@ - inferior surface of tongue (post-embryonic human) - FMA:54648 + inferior surface of tongue (post-embryonic human) @@ -60788,8 +57304,7 @@ - margin of tongue (post-embryonic human) - FMA:54650 + margin of tongue (post-embryonic human) @@ -60808,8 +57323,7 @@ - dorsum of tongue (post-embryonic human) - FMA:54651 + dorsum of tongue (post-embryonic human) @@ -60828,8 +57342,7 @@ - frenulum of tongue (post-embryonic human) - FMA:54659 + frenulum of tongue (post-embryonic human) @@ -60848,8 +57361,7 @@ - sphenoid bone pterygoid process (post-embryonic human) - FMA:54682 + sphenoid bone pterygoid process (post-embryonic human) @@ -60868,8 +57380,7 @@ - sphenoidal sinus (post-embryonic human) - FMA:54683 + sphenoidal sinus (post-embryonic human) @@ -60888,8 +57399,7 @@ - pterygoid bone (post-embryonic human) - FMA:54687 + pterygoid bone (post-embryonic human) @@ -60908,8 +57418,7 @@ - sella turcica (post-embryonic human) - FMA:54709 + sella turcica (post-embryonic human) @@ -60928,8 +57437,7 @@ - tuberculum sellae (post-embryonic human) - FMA:54719 + tuberculum sellae (post-embryonic human) @@ -60948,8 +57456,7 @@ - pituitary fossa (post-embryonic human) - FMA:54721 + pituitary fossa (post-embryonic human) @@ -60968,8 +57475,7 @@ - inferior nasal concha (post-embryonic human) - FMA:54736 + inferior nasal concha (post-embryonic human) @@ -60988,8 +57494,7 @@ - maxillary process of inferior nasal concha (post-embryonic human) - FMA:54741 + maxillary process of inferior nasal concha (post-embryonic human) @@ -61008,8 +57513,7 @@ - ethmoidal process of inferior nasal concha (post-embryonic human) - FMA:54742 + ethmoidal process of inferior nasal concha (post-embryonic human) @@ -61028,8 +57532,7 @@ - vidian canal (post-embryonic human) - FMA:54756 + vidian canal (post-embryonic human) @@ -61048,8 +57551,7 @@ - optic foramen (post-embryonic human) - FMA:54774 + optic foramen (post-embryonic human) @@ -61068,8 +57570,7 @@ - superior orbital fissure (post-embryonic human) - FMA:54799 + superior orbital fissure (post-embryonic human) @@ -61088,8 +57589,7 @@ - inferior orbital fissure (post-embryonic human) - FMA:54802 + inferior orbital fissure (post-embryonic human) @@ -61108,8 +57608,7 @@ - mucosa of tongue (post-embryonic human) - FMA:54807 + mucosa of tongue (post-embryonic human) @@ -61128,8 +57627,7 @@ - foramen lacerum (post-embryonic human) - FMA:54809 + foramen lacerum (post-embryonic human) @@ -61148,8 +57646,7 @@ - lingual septum (post-embryonic human) - FMA:54813 + lingual septum (post-embryonic human) @@ -61168,8 +57665,7 @@ - cranial synchondrosis (post-embryonic human) - FMA:54816 + cranial synchondrosis (post-embryonic human) @@ -61188,8 +57684,7 @@ - spheno-occipital synchondrosis (post-embryonic human) - FMA:54818 + spheno-occipital synchondrosis (post-embryonic human) @@ -61208,8 +57703,7 @@ - papilla of tongue (post-embryonic human) - FMA:54819 + papilla of tongue (post-embryonic human) @@ -61228,8 +57722,7 @@ - filiform papilla (post-embryonic human) - FMA:54820 + filiform papilla (post-embryonic human) @@ -61248,30 +57741,7 @@ - fungiform papilla (post-embryonic human) - FMA:54821 - - - - - - - - - - - - - - - - - - - - gustatory papilla of tongue (post-embryonic human) - vallate papilla (post-embryonic human) - FMA:54822 + fungiform papilla (post-embryonic human) @@ -61290,8 +57760,7 @@ - foliate papilla (post-embryonic human) - FMA:54823 + foliate papilla (post-embryonic human) @@ -61310,8 +57779,7 @@ - taste bud (post-embryonic human) - FMA:54825 + taste bud (post-embryonic human) @@ -61330,8 +57798,7 @@ - foramen cecum of tongue (post-embryonic human) - FMA:54828 + foramen cecum of tongue (post-embryonic human) @@ -61350,8 +57817,7 @@ - temporomandibular joint (post-embryonic human) - FMA:54832 + temporomandibular joint (post-embryonic human) @@ -61370,8 +57836,7 @@ - lingual tonsil (post-embryonic human) - FMA:54836 + lingual tonsil (post-embryonic human) @@ -61390,8 +57855,7 @@ - nasopharynx (post-embryonic human) - FMA:54878 + nasopharynx (post-embryonic human) @@ -61410,8 +57874,7 @@ - oropharynx (post-embryonic human) - FMA:54879 + oropharynx (post-embryonic human) @@ -61430,8 +57893,7 @@ - hypopharynx (post-embryonic human) - FMA:54880 + hypopharynx (post-embryonic human) @@ -61450,8 +57912,7 @@ - roof of nasopharynx (post-embryonic human) - FMA:54906 + roof of nasopharynx (post-embryonic human) @@ -61470,8 +57931,7 @@ - posterior wall of nasopharynx (post-embryonic human) - FMA:54907 + posterior wall of nasopharynx (post-embryonic human) @@ -61490,8 +57950,7 @@ - lateral wall of nasopharynx (post-embryonic human) - FMA:54908 + lateral wall of nasopharynx (post-embryonic human) @@ -61510,8 +57969,7 @@ - extrinsic ligament of larynx (post-embryonic human) - FMA:54921 + extrinsic ligament of larynx (post-embryonic human) @@ -61530,8 +57988,7 @@ - mucosa of oropharynx (post-embryonic human) - FMA:54933 + mucosa of oropharynx (post-embryonic human) @@ -61550,8 +58007,7 @@ - cavity of pharynx (post-embryonic human) - FMA:54935 + cavity of pharynx (post-embryonic human) @@ -61570,8 +58026,7 @@ - facial nerve canal (post-embryonic human) - FMA:54952 + facial nerve canal (post-embryonic human) @@ -61590,8 +58045,7 @@ - primary subdivision of skull (post-embryonic human) - FMA:54964 + primary subdivision of skull (post-embryonic human) @@ -61610,8 +58064,7 @@ - pharyngeal tonsil (post-embryonic human) - FMA:54970 + pharyngeal tonsil (post-embryonic human) @@ -61630,8 +58083,7 @@ - mucosa of nasopharynx (post-embryonic human) - FMA:54971 + mucosa of nasopharynx (post-embryonic human) @@ -61650,8 +58102,7 @@ - tubal tonsil (post-embryonic human) - FMA:54975 + tubal tonsil (post-embryonic human) @@ -61670,8 +58121,7 @@ - pharyngeal opening of pharyngotympanic tube (post-embryonic human) - FMA:54979 + pharyngeal opening of pharyngotympanic tube (post-embryonic human) @@ -61690,8 +58140,7 @@ - lateral wall of oropharynx (post-embryonic human) - FMA:55008 + lateral wall of oropharynx (post-embryonic human) @@ -61710,8 +58159,7 @@ - fauces (post-embryonic human) - FMA:55019 + fauces (post-embryonic human) @@ -61730,8 +58178,7 @@ - soft palate (post-embryonic human) - FMA:55021 + soft palate (post-embryonic human) @@ -61750,8 +58197,7 @@ - palatine uvula (post-embryonic human) - FMA:55022 + palatine uvula (post-embryonic human) @@ -61770,8 +58216,7 @@ - hard palate (post-embryonic human) - FMA:55023 + hard palate (post-embryonic human) @@ -61790,8 +58235,7 @@ - palatoglossal arch (post-embryonic human) - FMA:55024 + palatoglossal arch (post-embryonic human) @@ -61810,8 +58254,7 @@ - mucosa of laryngopharynx (post-embryonic human) - FMA:55030 + mucosa of laryngopharynx (post-embryonic human) @@ -61830,8 +58273,7 @@ - pharyngeal mucosa (post-embryonic human) - FMA:55031 + pharyngeal mucosa (post-embryonic human) @@ -61850,8 +58292,7 @@ - posterior wall of oropharynx (post-embryonic human) - FMA:55032 + posterior wall of oropharynx (post-embryonic human) @@ -61870,8 +58311,7 @@ - epiglottic vallecula (post-embryonic human) - FMA:55037 + epiglottic vallecula (post-embryonic human) @@ -61890,8 +58330,7 @@ - tonsillar fossa (post-embryonic human) - FMA:55041 + tonsillar fossa (post-embryonic human) @@ -61910,8 +58349,7 @@ - tonsil crypt (post-embryonic human) - FMA:55044 + tonsil crypt (post-embryonic human) @@ -61930,8 +58368,7 @@ - posterior wall of laryngopharynx (post-embryonic human) - FMA:55063 + posterior wall of laryngopharynx (post-embryonic human) @@ -61950,8 +58387,7 @@ - tonsillar ring (post-embryonic human) - FMA:55070 + tonsillar ring (post-embryonic human) @@ -61970,8 +58406,7 @@ - submucosa of laryngopharynx (post-embryonic human) - FMA:55072 + submucosa of laryngopharynx (post-embryonic human) @@ -61990,8 +58425,7 @@ - pharyngobasilar fascia (post-embryonic human) - FMA:55074 + pharyngobasilar fascia (post-embryonic human) @@ -62010,8 +58444,7 @@ - pharyngeal gland (post-embryonic human) - FMA:55075 + pharyngeal gland (post-embryonic human) @@ -62030,8 +58463,7 @@ - nasopharyngeal gland (post-embryonic human) - FMA:55076 + nasopharyngeal gland (post-embryonic human) @@ -62050,8 +58482,7 @@ - pharyngeal raphe (post-embryonic human) - FMA:55077 + pharyngeal raphe (post-embryonic human) @@ -62070,8 +58501,7 @@ - parapharyngeal space (post-embryonic human) - FMA:55081 + parapharyngeal space (post-embryonic human) @@ -62090,8 +58520,7 @@ - submandibular gland (post-embryonic human) - FMA:55093 + submandibular gland (post-embryonic human) @@ -62110,8 +58539,7 @@ - lumen of nasopharynx (post-embryonic human) - FMA:55094 + lumen of nasopharynx (post-embryonic human) @@ -62130,8 +58558,7 @@ - lumen of oropharynx (post-embryonic human) - FMA:55095 + lumen of oropharynx (post-embryonic human) @@ -62150,8 +58577,7 @@ - lumen of laryngopharynx (post-embryonic human) - FMA:55096 + lumen of laryngopharynx (post-embryonic human) @@ -62170,8 +58596,7 @@ - larynx (post-embryonic human) - FMA:55097 + larynx (post-embryonic human) @@ -62190,8 +58615,7 @@ - thyroid cartilage (post-embryonic human) - FMA:55099 + thyroid cartilage (post-embryonic human) @@ -62210,8 +58634,7 @@ - laryngeal joint (post-embryonic human) - FMA:55100 + laryngeal joint (post-embryonic human) @@ -62230,8 +58653,7 @@ - cricothyroid joint (post-embryonic human) - FMA:55101 + cricothyroid joint (post-embryonic human) @@ -62250,8 +58672,7 @@ - cricoarytenoid joint (post-embryonic human) - FMA:55102 + cricoarytenoid joint (post-embryonic human) @@ -62270,8 +58691,7 @@ - cartilage element (post-embryonic human) - FMA:55107 + cartilage element (post-embryonic human) @@ -62290,8 +58710,7 @@ - laryngeal cartilage (post-embryonic human) - FMA:55108 + laryngeal cartilage (post-embryonic human) @@ -62310,8 +58729,7 @@ - arytenoid cartilage (post-embryonic human) - FMA:55109 + arytenoid cartilage (post-embryonic human) @@ -62330,8 +58748,7 @@ - corniculate cartilage (post-embryonic human) - FMA:55110 + corniculate cartilage (post-embryonic human) @@ -62350,8 +58767,7 @@ - cuneiform cartilage (post-embryonic human) - FMA:55111 + cuneiform cartilage (post-embryonic human) @@ -62370,8 +58786,7 @@ - epiglottic cartilage (post-embryonic human) - FMA:55112 + epiglottic cartilage (post-embryonic human) @@ -62390,8 +58805,7 @@ - epiglottis (post-embryonic human) - FMA:55130 + epiglottis (post-embryonic human) @@ -62410,8 +58824,7 @@ - ligament of larynx (post-embryonic human) - FMA:55131 + ligament of larynx (post-embryonic human) @@ -62430,8 +58843,7 @@ - thyrohyoid ligament (post-embryonic human) - FMA:55135 + thyrohyoid ligament (post-embryonic human) @@ -62450,8 +58862,7 @@ - median thyrohyoid ligament (post-embryonic human) - FMA:55138 + median thyrohyoid ligament (post-embryonic human) @@ -62470,8 +58881,7 @@ - lateral thyrohyoid ligament (post-embryonic human) - FMA:55139 + lateral thyrohyoid ligament (post-embryonic human) @@ -62490,8 +58900,7 @@ - ansa cervicalis (post-embryonic human) - FMA:55142 + ansa cervicalis (post-embryonic human) @@ -62510,8 +58919,7 @@ - lymphoid tissue (post-embryonic human) - FMA:55220 + lymphoid tissue (post-embryonic human) @@ -62530,8 +58938,7 @@ - lymphoid follicle (post-embryonic human) - FMA:55222 + lymphoid follicle (post-embryonic human) @@ -62550,8 +58957,7 @@ - primary nodular lymphoid tissue (post-embryonic human) - FMA:55223 + primary nodular lymphoid tissue (post-embryonic human) @@ -62570,8 +58976,7 @@ - secondary nodular lymphoid tissue (post-embryonic human) - FMA:55224 + secondary nodular lymphoid tissue (post-embryonic human) @@ -62590,8 +58995,7 @@ - laryngeal extrinsic muscle (post-embryonic human) - FMA:55225 + laryngeal extrinsic muscle (post-embryonic human) @@ -62610,8 +59014,7 @@ - laryngeal intrinsic muscle (post-embryonic human) - FMA:55226 + laryngeal intrinsic muscle (post-embryonic human) @@ -62630,8 +59033,7 @@ - hyoepiglottic ligament (post-embryonic human) - FMA:55227 + hyoepiglottic ligament (post-embryonic human) @@ -62650,8 +59052,7 @@ - thyroepiglottic ligament (post-embryonic human) - FMA:55230 + thyroepiglottic ligament (post-embryonic human) @@ -62670,8 +59071,7 @@ - cricothyroid ligament (post-embryonic human) - FMA:55233 + cricothyroid ligament (post-embryonic human) @@ -62690,8 +59090,7 @@ - fibroelastic membrane of larynx (post-embryonic human) - FMA:55239 + fibroelastic membrane of larynx (post-embryonic human) @@ -62710,8 +59109,7 @@ - cricotracheal ligament (post-embryonic human) - FMA:55259 + cricotracheal ligament (post-embryonic human) @@ -62730,8 +59128,7 @@ - cricopharyngeal ligament (post-embryonic human) - FMA:55260 + cricopharyngeal ligament (post-embryonic human) @@ -62750,8 +59147,7 @@ - cricoarytenoid ligament (post-embryonic human) - FMA:55261 + cricoarytenoid ligament (post-embryonic human) @@ -62770,8 +59166,7 @@ - intermammary cleft (post-embryonic human) - FMA:55264 + intermammary cleft (post-embryonic human) @@ -62790,8 +59185,7 @@ - zone of organ (post-embryonic human) - FMA:55268 + zone of organ (post-embryonic human) @@ -62810,8 +59204,7 @@ - superior horn of thyroid cartilage (post-embryonic human) - FMA:55294 + superior horn of thyroid cartilage (post-embryonic human) @@ -62830,8 +59223,7 @@ - inferior horn of thyroid cartilage (post-embryonic human) - FMA:55297 + inferior horn of thyroid cartilage (post-embryonic human) @@ -62850,8 +59242,7 @@ - horn of thyroid cartilage (post-embryonic human) - FMA:55300 + horn of thyroid cartilage (post-embryonic human) @@ -62870,8 +59261,7 @@ - laryngeal prominence (post-embryonic human) - FMA:55304 + laryngeal prominence (post-embryonic human) @@ -62890,8 +59280,7 @@ - apex of arytenoid (post-embryonic human) - FMA:55348 + apex of arytenoid (post-embryonic human) @@ -62910,8 +59299,7 @@ - base of arytenoid (post-embryonic human) - FMA:55349 + base of arytenoid (post-embryonic human) @@ -62930,8 +59318,7 @@ - sesamoid cartilage (post-embryonic human) - FMA:55379 + sesamoid cartilage (post-embryonic human) @@ -62950,8 +59337,7 @@ - glottis (post-embryonic human) - FMA:55414 + glottis (post-embryonic human) @@ -62970,8 +59356,7 @@ - ovarian ligament (post-embryonic human) - FMA:55422 + ovarian ligament (post-embryonic human) @@ -62990,8 +59375,7 @@ - aryepiglottic fold (post-embryonic human) - FMA:55448 + aryepiglottic fold (post-embryonic human) @@ -63010,8 +59394,7 @@ - laryngeal vocal fold (post-embryonic human) - FMA:55457 + laryngeal vocal fold (post-embryonic human) @@ -63030,8 +59413,7 @@ - supraglottic part of larynx (post-embryonic human) - FMA:55476 + supraglottic part of larynx (post-embryonic human) @@ -63050,8 +59432,7 @@ - subglottis (post-embryonic human) - FMA:55477 + subglottis (post-embryonic human) @@ -63070,8 +59451,7 @@ - capsule of thyroid gland (post-embryonic human) - FMA:55513 + capsule of thyroid gland (post-embryonic human) @@ -63090,8 +59470,7 @@ - parenchyma of thyroid gland (post-embryonic human) - FMA:55515 + parenchyma of thyroid gland (post-embryonic human) @@ -63110,8 +59489,7 @@ - superior parathyroid gland (post-embryonic human) - FMA:55558 + superior parathyroid gland (post-embryonic human) @@ -63130,8 +59508,7 @@ - inferior parathyroid gland (post-embryonic human) - FMA:55559 + inferior parathyroid gland (post-embryonic human) @@ -63150,8 +59527,7 @@ - capsule of parathyroid gland (post-embryonic human) - FMA:55566 + capsule of parathyroid gland (post-embryonic human) @@ -63170,8 +59546,7 @@ - parenchyma of parathyroid gland (post-embryonic human) - FMA:55569 + parenchyma of parathyroid gland (post-embryonic human) @@ -63190,8 +59565,7 @@ - glandular acinus (post-embryonic human) - FMA:55588 + glandular acinus (post-embryonic human) @@ -63210,8 +59584,7 @@ - tunica intima (post-embryonic human) - FMA:55589 + tunica intima (post-embryonic human) @@ -63230,8 +59603,7 @@ - tunica media (post-embryonic human) - FMA:55590 + tunica media (post-embryonic human) @@ -63250,8 +59622,7 @@ - lacrimal apparatus (post-embryonic human) - FMA:55605 + lacrimal apparatus (post-embryonic human) @@ -63270,8 +59641,7 @@ - pterygomandibular raphe (post-embryonic human) - FMA:55618 + pterygomandibular raphe (post-embryonic human) @@ -63290,8 +59660,7 @@ - tooth crown (post-embryonic human) - FMA:55623 + tooth crown (post-embryonic human) @@ -63310,8 +59679,7 @@ - tooth root (post-embryonic human) - FMA:55624 + tooth root (post-embryonic human) @@ -63330,8 +59698,7 @@ - neck of tooth (post-embryonic human) - FMA:55627 + neck of tooth (post-embryonic human) @@ -63350,8 +59717,7 @@ - dentine (post-embryonic human) - FMA:55628 + dentine (post-embryonic human) @@ -63370,8 +59736,7 @@ - enamel (post-embryonic human) - FMA:55629 + enamel (post-embryonic human) @@ -63390,8 +59755,7 @@ - cementum (post-embryonic human) - FMA:55630 + cementum (post-embryonic human) @@ -63410,8 +59774,7 @@ - dental pulp (post-embryonic human) - FMA:55631 + dental pulp (post-embryonic human) @@ -63430,8 +59793,7 @@ - set of upper jaw teeth (post-embryonic human) - FMA:55634 + set of upper jaw teeth (post-embryonic human) @@ -63450,8 +59812,7 @@ - set of lower jaw teeth (post-embryonic human) - FMA:55635 + set of lower jaw teeth (post-embryonic human) @@ -63470,8 +59831,7 @@ - cuspid (post-embryonic human) - FMA:55636 + cuspid (post-embryonic human) @@ -63490,8 +59850,7 @@ - premolar tooth (post-embryonic human) - FMA:55637 + premolar tooth (post-embryonic human) @@ -63510,8 +59869,7 @@ - molar tooth (post-embryonic human) - FMA:55638 + molar tooth (post-embryonic human) @@ -63530,8 +59888,7 @@ - secondary tooth (post-embryonic human) - FMA:55654 + secondary tooth (post-embryonic human) @@ -63550,8 +59907,7 @@ - deciduous tooth (post-embryonic human) - FMA:55655 + deciduous tooth (post-embryonic human) @@ -63570,8 +59926,7 @@ - tooth cavity (post-embryonic human) - FMA:55660 + tooth cavity (post-embryonic human) @@ -63590,8 +59945,7 @@ - solid compound organ (post-embryonic human) - FMA:55670 + solid compound organ (post-embryonic human) @@ -63610,8 +59964,7 @@ - cavitated compound organ (post-embryonic human) - FMA:55671 + cavitated compound organ (post-embryonic human) @@ -63630,8 +59983,7 @@ - central nervous system (post-embryonic human) - FMA:55675 + central nervous system (post-embryonic human) @@ -63650,8 +60002,7 @@ - regional part of brain (post-embryonic human) - FMA:55676 + regional part of brain (post-embryonic human) @@ -63670,8 +60021,7 @@ - male genital duct (post-embryonic human) - FMA:55678 + male genital duct (post-embryonic human) @@ -63690,8 +60040,7 @@ - upper secondary incisor tooth (post-embryonic human) - FMA:55712 + upper secondary incisor tooth (post-embryonic human) @@ -63710,8 +60059,7 @@ - lower secondary incisor tooth (post-embryonic human) - FMA:55713 + lower secondary incisor tooth (post-embryonic human) @@ -63730,8 +60078,7 @@ - upper secondary canine tooth (post-embryonic human) - FMA:55714 + upper secondary canine tooth (post-embryonic human) @@ -63750,8 +60097,7 @@ - lower secondary canine tooth (post-embryonic human) - FMA:55715 + lower secondary canine tooth (post-embryonic human) @@ -63770,8 +60116,7 @@ - upper secondary premolar tooth (post-embryonic human) - FMA:55716 + upper secondary premolar tooth (post-embryonic human) @@ -63790,30 +60135,7 @@ - lower secondary premolar tooth (post-embryonic human) - FMA:55717 - - - - - - - - - - - - - - - - - - - - upper jaw molar (post-embryonic human) - upper secondary molar tooth (post-embryonic human) - FMA:55720 + lower secondary premolar tooth (post-embryonic human) @@ -63832,8 +60154,7 @@ - lower secondary molar tooth (post-embryonic human) - FMA:55721 + lower secondary molar tooth (post-embryonic human) @@ -63852,8 +60173,7 @@ - upper central secondary incisor tooth (post-embryonic human) - FMA:55722 + upper central secondary incisor tooth (post-embryonic human) @@ -63872,8 +60192,7 @@ - lower central secondary incisor tooth (post-embryonic human) - FMA:55723 + lower central secondary incisor tooth (post-embryonic human) @@ -63892,8 +60211,7 @@ - upper lateral secondary incisor tooth (post-embryonic human) - FMA:55724 + upper lateral secondary incisor tooth (post-embryonic human) @@ -63912,8 +60230,7 @@ - lower lateral secondary incisor tooth (post-embryonic human) - FMA:55725 + lower lateral secondary incisor tooth (post-embryonic human) @@ -63932,8 +60249,7 @@ - upper first secondary premolar tooth (post-embryonic human) - FMA:55801 + upper first secondary premolar tooth (post-embryonic human) @@ -63952,8 +60268,7 @@ - upper second secondary premolar tooth (post-embryonic human) - FMA:55802 + upper second secondary premolar tooth (post-embryonic human) @@ -63972,8 +60287,7 @@ - lower first secondary premolar tooth (post-embryonic human) - FMA:55803 + lower first secondary premolar tooth (post-embryonic human) @@ -63992,8 +60306,7 @@ - lower second secondary premolar tooth (post-embryonic human) - FMA:55804 + lower second secondary premolar tooth (post-embryonic human) @@ -64012,8 +60325,7 @@ - carotid canal (post-embryonic human) - FMA:55805 + carotid canal (post-embryonic human) @@ -64032,8 +60344,7 @@ - upper first secondary molar tooth (post-embryonic human) - FMA:55811 + upper first secondary molar tooth (post-embryonic human) @@ -64052,8 +60363,7 @@ - upper second secondary molar tooth (post-embryonic human) - FMA:55812 + upper second secondary molar tooth (post-embryonic human) @@ -64072,8 +60382,7 @@ - upper third secondary molar tooth (post-embryonic human) - FMA:55813 + upper third secondary molar tooth (post-embryonic human) @@ -64092,8 +60401,7 @@ - lower first secondary molar tooth (post-embryonic human) - FMA:55814 + lower first secondary molar tooth (post-embryonic human) @@ -64112,8 +60420,7 @@ - lower second secondary molar tooth (post-embryonic human) - FMA:55815 + lower second secondary molar tooth (post-embryonic human) @@ -64132,8 +60439,7 @@ - lower third secondary molar tooth (post-embryonic human) - FMA:55817 + lower third secondary molar tooth (post-embryonic human) @@ -64152,8 +60458,7 @@ - tegmen tympani (post-embryonic human) - FMA:56002 + tegmen tympani (post-embryonic human) @@ -64172,8 +60477,7 @@ - subarcuate fossa (post-embryonic human) - FMA:56418 + subarcuate fossa (post-embryonic human) @@ -64192,8 +60496,7 @@ - jugular foramen (post-embryonic human) - FMA:56432 + jugular foramen (post-embryonic human) @@ -64212,8 +60515,7 @@ - vestibular canal (post-embryonic human) - FMA:56451 + vestibular canal (post-embryonic human) @@ -64232,8 +60534,7 @@ - tympanic canal (post-embryonic human) - FMA:56460 + tympanic canal (post-embryonic human) @@ -64252,8 +60553,7 @@ - tympanic cavity (post-embryonic human) - FMA:56461 + tympanic cavity (post-embryonic human) @@ -64272,8 +60572,7 @@ - distal part of styloid process of temporal bone (post-embryonic human) - FMA:56472 + distal part of styloid process of temporal bone (post-embryonic human) @@ -64292,8 +60591,7 @@ - anterior part of tympanic bone (post-embryonic human) - FMA:56478 + anterior part of tympanic bone (post-embryonic human) @@ -64312,8 +60610,7 @@ - cusp of tooth (post-embryonic human) - FMA:56481 + cusp of tooth (post-embryonic human) @@ -64332,8 +60629,7 @@ - lingual cusp of tooth (post-embryonic human) - FMA:56490 + lingual cusp of tooth (post-embryonic human) @@ -64352,8 +60648,7 @@ - middle ear (post-embryonic human) - FMA:56513 + middle ear (post-embryonic human) @@ -64372,8 +60667,7 @@ - pinna (post-embryonic human) - FMA:56580 + pinna (post-embryonic human) @@ -64392,8 +60686,7 @@ - transverse ridge of tooth (post-embryonic human) - FMA:56658 + transverse ridge of tooth (post-embryonic human) @@ -64412,8 +60705,7 @@ - triangular ridge of tooth (post-embryonic human) - FMA:56659 + triangular ridge of tooth (post-embryonic human) @@ -64432,8 +60724,7 @@ - oblique ridge of tooth (post-embryonic human) - FMA:56660 + oblique ridge of tooth (post-embryonic human) @@ -64452,8 +60743,7 @@ - periodontal ligament (post-embryonic human) - FMA:56665 + periodontal ligament (post-embryonic human) @@ -64472,8 +60762,7 @@ - pars flaccida of tympanic membrane (post-embryonic human) - FMA:56721 + pars flaccida of tympanic membrane (post-embryonic human) @@ -64492,8 +60781,7 @@ - pars tensa of tympanic membrane (post-embryonic human) - FMA:56722 + pars tensa of tympanic membrane (post-embryonic human) @@ -64512,8 +60800,7 @@ - cingulum of tooth (post-embryonic human) - FMA:56731 + cingulum of tooth (post-embryonic human) @@ -64532,8 +60819,7 @@ - layer of tympanic membrane (post-embryonic human) - FMA:56732 + layer of tympanic membrane (post-embryonic human) @@ -64552,8 +60838,7 @@ - cingulum of incisor tooth (post-embryonic human) - FMA:56733 + cingulum of incisor tooth (post-embryonic human) @@ -64572,8 +60857,7 @@ - cingulum of canine tooth (post-embryonic human) - FMA:56734 + cingulum of canine tooth (post-embryonic human) @@ -64592,8 +60876,7 @@ - cingulum of upper incisor tooth (post-embryonic human) - FMA:56736 + cingulum of upper incisor tooth (post-embryonic human) @@ -64612,8 +60895,7 @@ - cingulum of lower incisor tooth (post-embryonic human) - FMA:56737 + cingulum of lower incisor tooth (post-embryonic human) @@ -64632,8 +60914,7 @@ - cingulum of upper canine tooth (post-embryonic human) - FMA:56752 + cingulum of upper canine tooth (post-embryonic human) @@ -64652,8 +60933,7 @@ - cingulum of lower canine tooth (post-embryonic human) - FMA:56753 + cingulum of lower canine tooth (post-embryonic human) @@ -64672,8 +60952,7 @@ - marginal ridge of tooth (post-embryonic human) - FMA:56758 + marginal ridge of tooth (post-embryonic human) @@ -64692,8 +60971,7 @@ - outer epithelial layer of tympanic membrane (post-embryonic human) - FMA:56819 + outer epithelial layer of tympanic membrane (post-embryonic human) @@ -64712,8 +60990,7 @@ - intermediate layer of tympanic membrane (post-embryonic human) - FMA:56830 + intermediate layer of tympanic membrane (post-embryonic human) @@ -64732,8 +61009,7 @@ - inner epithelial layer of tympanic membrane (post-embryonic human) - FMA:56844 + inner epithelial layer of tympanic membrane (post-embryonic human) @@ -64752,8 +61028,7 @@ - oval window (post-embryonic human) - FMA:56913 + oval window (post-embryonic human) @@ -64772,8 +61047,7 @@ - round window of inner ear (post-embryonic human) - FMA:56932 + round window of inner ear (post-embryonic human) @@ -64792,8 +61066,7 @@ - capsule of temporomandibular joint (post-embryonic human) - FMA:57050 + capsule of temporomandibular joint (post-embryonic human) @@ -64812,8 +61085,7 @@ - disk of temporomandibular joint (post-embryonic human) - FMA:57059 + disk of temporomandibular joint (post-embryonic human) @@ -64832,8 +61104,7 @@ - ligament of temporomandibular joint (post-embryonic human) - FMA:57070 + ligament of temporomandibular joint (post-embryonic human) @@ -64852,8 +61123,7 @@ - groove for sigmoid sinus (post-embryonic human) - FMA:57122 + groove for sigmoid sinus (post-embryonic human) @@ -64872,8 +61142,7 @@ - glabella region of bone (post-embryonic human) - FMA:57136 + glabella region of bone (post-embryonic human) @@ -64892,8 +61161,7 @@ - vagus nerve (post-embryonic human) - FMA:5731 + vagus nerve (post-embryonic human) @@ -64912,8 +61180,7 @@ - frontal sinus (post-embryonic human) - FMA:57417 + frontal sinus (post-embryonic human) @@ -64932,8 +61199,7 @@ - foramen cecum of frontal bone (post-embryonic human) - FMA:57443 + foramen cecum of frontal bone (post-embryonic human) @@ -64952,8 +61218,7 @@ - uncinate process of ethmoid (post-embryonic human) - FMA:57455 + uncinate process of ethmoid (post-embryonic human) @@ -64972,8 +61237,7 @@ - nasal concha of ethmoid bone (post-embryonic human) - FMA:57456 + nasal concha of ethmoid bone (post-embryonic human) @@ -64992,8 +61256,7 @@ - supreme nasal concha (post-embryonic human) - FMA:57457 + supreme nasal concha (post-embryonic human) @@ -65012,8 +61275,7 @@ - superior nasal concha (post-embryonic human) - FMA:57458 + superior nasal concha (post-embryonic human) @@ -65032,8 +61294,7 @@ - middle nasal concha (post-embryonic human) - FMA:57459 + middle nasal concha (post-embryonic human) @@ -65052,8 +61313,7 @@ - superior nasal meatus (post-embryonic human) - FMA:57480 + superior nasal meatus (post-embryonic human) @@ -65072,8 +61332,7 @@ - tooth socket (post-embryonic human) - FMA:57490 + tooth socket (post-embryonic human) @@ -65092,8 +61351,7 @@ - surface of mandible (post-embryonic human) - FMA:57558 + surface of mandible (post-embryonic human) @@ -65112,8 +61370,7 @@ - foramen of nasal bone (post-embryonic human) - FMA:57653 + foramen of nasal bone (post-embryonic human) @@ -65132,8 +61389,7 @@ - odontogenic papilla (post-embryonic human) - FMA:57662 + odontogenic papilla (post-embryonic human) @@ -65152,8 +61408,7 @@ - maxillary sinus (post-embryonic human) - FMA:57715 + maxillary sinus (post-embryonic human) @@ -65172,8 +61427,7 @@ - infra-orbital foramen of maxilla (post-embryonic human) - FMA:57718 + infra-orbital foramen of maxilla (post-embryonic human) @@ -65192,8 +61446,7 @@ - alveolar canal (post-embryonic human) - FMA:57743 + alveolar canal (post-embryonic human) @@ -65212,8 +61465,7 @@ - infra-orbital groove of maxilla (post-embryonic human) - FMA:57746 + infra-orbital groove of maxilla (post-embryonic human) @@ -65232,8 +61484,7 @@ - submandibular region (post-embryonic human) - FMA:57779 + submandibular region (post-embryonic human) @@ -65252,8 +61503,7 @@ - superficial cervical fascia (post-embryonic human) - FMA:57805 + superficial cervical fascia (post-embryonic human) @@ -65272,8 +61522,7 @@ - hilum (post-embryonic human) - FMA:57836 + hilum (post-embryonic human) @@ -65292,8 +61541,7 @@ - mammary duct (post-embryonic human) - FMA:58006 + mammary duct (post-embryonic human) @@ -65312,8 +61560,7 @@ - suspensory ligament of breast (post-embryonic human) - FMA:58040 + suspensory ligament of breast (post-embryonic human) @@ -65332,8 +61579,7 @@ - pole of lens (post-embryonic human) - FMA:58067 + pole of lens (post-embryonic human) @@ -65352,8 +61598,7 @@ - extralobar lactiferous duct (post-embryonic human) - FMA:58069 + extralobar lactiferous duct (post-embryonic human) @@ -65372,8 +61617,7 @@ - chamber of eyeball (post-embryonic human) - FMA:58071 + chamber of eyeball (post-embryonic human) @@ -65392,8 +61636,7 @@ - axillary tail of breast (post-embryonic human) - FMA:58072 + axillary tail of breast (post-embryonic human) @@ -65412,8 +61655,7 @@ - anterior chamber of eyeball (post-embryonic human) - FMA:58078 + anterior chamber of eyeball (post-embryonic human) @@ -65432,8 +61674,7 @@ - posterior chamber of eyeball (post-embryonic human) - FMA:58080 + posterior chamber of eyeball (post-embryonic human) @@ -65452,8 +61693,7 @@ - areolar gland (post-embryonic human) - FMA:58090 + areolar gland (post-embryonic human) @@ -65472,8 +61712,7 @@ - areolar tubercle (post-embryonic human) - FMA:58091 + areolar tubercle (post-embryonic human) @@ -65492,8 +61731,7 @@ - wall of eyeball (post-embryonic human) - FMA:58098 + wall of eyeball (post-embryonic human) @@ -65512,8 +61750,7 @@ - tunica fibrosa of eyeball (post-embryonic human) - FMA:58102 + tunica fibrosa of eyeball (post-embryonic human) @@ -65532,8 +61769,7 @@ - uvea (post-embryonic human) - FMA:58103 + uvea (post-embryonic human) @@ -65552,8 +61788,7 @@ - iris (post-embryonic human) - FMA:58235 + iris (post-embryonic human) @@ -65572,8 +61807,7 @@ - cornea (post-embryonic human) - FMA:58238 + cornea (post-embryonic human) @@ -65592,8 +61826,7 @@ - lens of camera-type eye (post-embryonic human) - FMA:58241 + lens of camera-type eye (post-embryonic human) @@ -65612,8 +61845,7 @@ - lacrimal canaliculus (post-embryonic human) - FMA:58245 + lacrimal canaliculus (post-embryonic human) @@ -65632,8 +61864,7 @@ - pupil (post-embryonic human) - FMA:58252 + pupil (post-embryonic human) @@ -65652,8 +61883,7 @@ - right pupil (post-embryonic human) - FMA:58253 + right pupil (post-embryonic human) @@ -65672,8 +61902,7 @@ - left pupil (post-embryonic human) - FMA:58254 + left pupil (post-embryonic human) @@ -65692,8 +61921,7 @@ - terminal lactiferous duct (post-embryonic human) - FMA:58260 + terminal lactiferous duct (post-embryonic human) @@ -65712,8 +61940,7 @@ - corneal epithelium (post-embryonic human) - FMA:58263 + corneal epithelium (post-embryonic human) @@ -65732,8 +61959,7 @@ - sclera (post-embryonic human) - FMA:58269 + sclera (post-embryonic human) @@ -65752,8 +61978,7 @@ - anterior limiting lamina of cornea (post-embryonic human) - FMA:58273 + anterior limiting lamina of cornea (post-embryonic human) @@ -65772,8 +61997,7 @@ - skeletal muscle of trunk (post-embryonic human) - FMA:58274 + skeletal muscle of trunk (post-embryonic human) @@ -65792,8 +62016,7 @@ - costal diaphragm (post-embryonic human) - FMA:58277 + costal diaphragm (post-embryonic human) @@ -65812,8 +62035,7 @@ - central tendon of diaphragm (post-embryonic human) - FMA:58279 + central tendon of diaphragm (post-embryonic human) @@ -65832,8 +62054,7 @@ - arcuate ligament (post-embryonic human) - FMA:58280 + arcuate ligament (post-embryonic human) @@ -65852,8 +62073,7 @@ - median arcuate ligament (post-embryonic human) - FMA:58281 + median arcuate ligament (post-embryonic human) @@ -65872,8 +62092,7 @@ - medial arcuate ligament (post-embryonic human) - FMA:58282 + medial arcuate ligament (post-embryonic human) @@ -65892,8 +62111,7 @@ - lateral arcuate ligament (post-embryonic human) - FMA:58283 + lateral arcuate ligament (post-embryonic human) @@ -65912,8 +62130,7 @@ - right crus of diaphragm (post-embryonic human) - FMA:58286 + right crus of diaphragm (post-embryonic human) @@ -65932,8 +62149,7 @@ - left crus of diaphragm (post-embryonic human) - FMA:58287 + left crus of diaphragm (post-embryonic human) @@ -65952,8 +62168,7 @@ - esophageal hiatus (post-embryonic human) - FMA:58289 + esophageal hiatus (post-embryonic human) @@ -65972,8 +62187,7 @@ - ciliary body (post-embryonic human) - FMA:58295 + ciliary body (post-embryonic human) @@ -65992,8 +62206,7 @@ - optic choroid (post-embryonic human) - FMA:58298 + optic choroid (post-embryonic human) @@ -66012,8 +62225,7 @@ - retina (post-embryonic human) - FMA:58301 + retina (post-embryonic human) @@ -66032,8 +62244,7 @@ - substantia propria of cornea (post-embryonic human) - FMA:58306 + substantia propria of cornea (post-embryonic human) @@ -66052,8 +62263,7 @@ - Descemet's membrane (post-embryonic human) - FMA:58309 + Descemet's membrane (post-embryonic human) @@ -66072,8 +62282,7 @@ - surface of eyeball (post-embryonic human) - FMA:58315 + surface of eyeball (post-embryonic human) @@ -66092,8 +62301,7 @@ - right lymphatic duct (post-embryonic human) - FMA:5832 + right lymphatic duct (post-embryonic human) @@ -66112,8 +62320,7 @@ - corneo-scleral junction (post-embryonic human) - FMA:58342 + corneo-scleral junction (post-embryonic human) @@ -66132,8 +62339,7 @@ - upper part of cisterna chyli (post-embryonic human) - FMA:5835 + upper part of cisterna chyli (post-embryonic human) @@ -66152,8 +62358,7 @@ - episcleral layer of eyeball (post-embryonic human) - FMA:58362 + episcleral layer of eyeball (post-embryonic human) @@ -66172,8 +62377,7 @@ - substantia propria of sclera (post-embryonic human) - FMA:58365 + substantia propria of sclera (post-embryonic human) @@ -66192,8 +62396,7 @@ - suprachoroid lamina (post-embryonic human) - FMA:58368 + suprachoroid lamina (post-embryonic human) @@ -66212,8 +62415,7 @@ - scleral lamina cribrosa (post-embryonic human) - FMA:58371 + scleral lamina cribrosa (post-embryonic human) @@ -66232,8 +62434,7 @@ - line of Schwalbe (post-embryonic human) - FMA:58422 + line of Schwalbe (post-embryonic human) @@ -66252,8 +62453,7 @@ - pars plicata of ciliary body (post-embryonic human) - FMA:58431 + pars plicata of ciliary body (post-embryonic human) @@ -66272,8 +62472,7 @@ - blood vessel layer of choroid (post-embryonic human) - FMA:58435 + blood vessel layer of choroid (post-embryonic human) @@ -66292,8 +62491,7 @@ - capillary layer of choroid (post-embryonic human) - FMA:58437 + capillary layer of choroid (post-embryonic human) @@ -66312,8 +62510,7 @@ - Bruch's membrane (post-embryonic human) - FMA:58438 + Bruch's membrane (post-embryonic human) @@ -66332,8 +62529,7 @@ - ciliary epithelium (post-embryonic human) - FMA:58464 + ciliary epithelium (post-embryonic human) @@ -66352,8 +62548,7 @@ - pars plana of ciliary body (post-embryonic human) - FMA:58480 + pars plana of ciliary body (post-embryonic human) @@ -66372,8 +62567,7 @@ - parasternal lymph node (post-embryonic human) - FMA:5849 + parasternal lymph node (post-embryonic human) @@ -66392,8 +62586,7 @@ - iris epithelium (post-embryonic human) - FMA:58517 + iris epithelium (post-embryonic human) @@ -66412,8 +62605,7 @@ - iris stroma (post-embryonic human) - FMA:58526 + iris stroma (post-embryonic human) @@ -66432,8 +62624,7 @@ - iridocorneal angle (post-embryonic human) - FMA:58577 + iridocorneal angle (post-embryonic human) @@ -66452,8 +62643,7 @@ - spinal nerve (post-embryonic human) - FMA:5858 + spinal nerve (post-embryonic human) @@ -66472,8 +62662,7 @@ - nerve of cervical vertebra (post-embryonic human) - FMA:5859 + nerve of cervical vertebra (post-embryonic human) @@ -66492,8 +62681,7 @@ - thoracic nerve (post-embryonic human) - FMA:5860 + thoracic nerve (post-embryonic human) @@ -66512,8 +62700,7 @@ - ora serrata of retina (post-embryonic human) - FMA:58600 + ora serrata of retina (post-embryonic human) @@ -66532,8 +62719,7 @@ - lumbar nerve (post-embryonic human) - FMA:5861 + lumbar nerve (post-embryonic human) @@ -66552,8 +62738,7 @@ - fat pad (post-embryonic human) - FMA:58616 + fat pad (post-embryonic human) @@ -66572,8 +62757,7 @@ - layer of retina (post-embryonic human) - FMA:58617 + layer of retina (post-embryonic human) @@ -66592,8 +62776,7 @@ - sacral nerve (post-embryonic human) - FMA:5862 + sacral nerve (post-embryonic human) @@ -66612,8 +62795,7 @@ - pigmented layer of retina (post-embryonic human) - FMA:58627 + pigmented layer of retina (post-embryonic human) @@ -66632,8 +62814,7 @@ - retinal neural layer (post-embryonic human) - FMA:58628 + retinal neural layer (post-embryonic human) @@ -66652,8 +62833,7 @@ - coccygeal nerve (post-embryonic human) - FMA:5863 + coccygeal nerve (post-embryonic human) @@ -66672,8 +62852,7 @@ - optic disc (post-embryonic human) - FMA:58634 + optic disc (post-embryonic human) @@ -66692,8 +62871,7 @@ - macula lutea (post-embryonic human) - FMA:58637 + macula lutea (post-embryonic human) @@ -66712,8 +62890,7 @@ - cranial nerve (post-embryonic human) - FMA:5865 + cranial nerve (post-embryonic human) @@ -66732,8 +62909,7 @@ - fovea centralis (post-embryonic human) - FMA:58658 + fovea centralis (post-embryonic human) @@ -66752,8 +62928,7 @@ - autonomic nerve (post-embryonic human) - FMA:5866 + autonomic nerve (post-embryonic human) @@ -66772,8 +62947,7 @@ - efferent nerve (post-embryonic human) - FMA:5867 + efferent nerve (post-embryonic human) @@ -66792,8 +62966,7 @@ - macula lutea proper (post-embryonic human) - FMA:58671 + macula lutea proper (post-embryonic human) @@ -66812,8 +62985,7 @@ - clivus of fovea centralis (post-embryonic human) - FMA:58674 + clivus of fovea centralis (post-embryonic human) @@ -66832,8 +63004,7 @@ - sensory nerve (post-embryonic human) - FMA:5868 + sensory nerve (post-embryonic human) @@ -66852,8 +63023,7 @@ - photoreceptor layer of retina (post-embryonic human) - FMA:58680 + photoreceptor layer of retina (post-embryonic human) @@ -66872,8 +63042,7 @@ - outer limiting layer of retina (post-embryonic human) - FMA:58683 + outer limiting layer of retina (post-embryonic human) @@ -66892,8 +63061,7 @@ - outer nuclear layer of retina (post-embryonic human) - FMA:58684 + outer nuclear layer of retina (post-embryonic human) @@ -66912,8 +63080,7 @@ - outer plexiform layer of retina (post-embryonic human) - FMA:58685 + outer plexiform layer of retina (post-embryonic human) @@ -66932,8 +63099,7 @@ - inner nuclear layer of retina (post-embryonic human) - FMA:58686 + inner nuclear layer of retina (post-embryonic human) @@ -66952,8 +63118,7 @@ - ganglionic layer of retina (post-embryonic human) - FMA:58687 + ganglionic layer of retina (post-embryonic human) @@ -66972,8 +63137,7 @@ - nerve fiber layer of retina (post-embryonic human) - FMA:58688 + nerve fiber layer of retina (post-embryonic human) @@ -66992,8 +63156,7 @@ - inner limiting layer of retina (post-embryonic human) - FMA:58689 + inner limiting layer of retina (post-embryonic human) @@ -67012,8 +63175,7 @@ - inner plexiform layer of retina (post-embryonic human) - FMA:58704 + inner plexiform layer of retina (post-embryonic human) @@ -67032,8 +63194,7 @@ - communicating branch of spinal nerve (post-embryonic human) - FMA:5874 + communicating branch of spinal nerve (post-embryonic human) @@ -67052,8 +63213,7 @@ - infrapatellar fat pad (post-embryonic human) - FMA:58772 + infrapatellar fat pad (post-embryonic human) @@ -67072,8 +63232,7 @@ - aqueous humor of eyeball (post-embryonic human) - FMA:58819 + aqueous humor of eyeball (post-embryonic human) @@ -67092,8 +63251,7 @@ - vitreous humor (post-embryonic human) - FMA:58822 + vitreous humor (post-embryonic human) @@ -67112,8 +63270,7 @@ - vitreous body (post-embryonic human) - FMA:58827 + vitreous body (post-embryonic human) @@ -67132,8 +63289,7 @@ - splanchnic nerve (post-embryonic human) - FMA:5883 + splanchnic nerve (post-embryonic human) @@ -67152,8 +63308,7 @@ - hyaloid canal (post-embryonic human) - FMA:58837 + hyaloid canal (post-embryonic human) @@ -67172,8 +63327,7 @@ - suspensory ligament of lens (post-embryonic human) - FMA:58838 + suspensory ligament of lens (post-embryonic human) @@ -67192,8 +63346,7 @@ - ganglion (post-embryonic human) - FMA:5884 + ganglion (post-embryonic human) @@ -67212,8 +63365,7 @@ - vitreous chamber of eyeball (post-embryonic human) - FMA:58848 + vitreous chamber of eyeball (post-embryonic human) @@ -67232,8 +63384,7 @@ - sensory ganglion (post-embryonic human) - FMA:5885 + sensory ganglion (post-embryonic human) @@ -67252,8 +63403,7 @@ - anterior segment of eyeball (post-embryonic human) - FMA:58865 + anterior segment of eyeball (post-embryonic human) @@ -67272,8 +63422,7 @@ - posterior segment of eyeball (post-embryonic human) - FMA:58868 + posterior segment of eyeball (post-embryonic human) @@ -67292,8 +63441,7 @@ - cranial sensory ganglion (post-embryonic human) - FMA:5887 + cranial sensory ganglion (post-embryonic human) @@ -67312,8 +63460,7 @@ - epithelium of lens (post-embryonic human) - FMA:58871 + epithelium of lens (post-embryonic human) @@ -67332,8 +63479,7 @@ - dorsal root ganglion (post-embryonic human) - FMA:5888 + dorsal root ganglion (post-embryonic human) @@ -67352,8 +63498,7 @@ - capsule of lens (post-embryonic human) - FMA:58881 + capsule of lens (post-embryonic human) @@ -67372,8 +63517,7 @@ - autonomic ganglion (post-embryonic human) - FMA:5889 + autonomic ganglion (post-embryonic human) @@ -67392,8 +63536,7 @@ - anterior pole of lens (post-embryonic human) - FMA:58897 + anterior pole of lens (post-embryonic human) @@ -67412,8 +63555,7 @@ - posterior pole of lens (post-embryonic human) - FMA:58898 + posterior pole of lens (post-embryonic human) @@ -67432,8 +63574,7 @@ - sympathetic ganglion (post-embryonic human) - FMA:5890 + sympathetic ganglion (post-embryonic human) @@ -67452,8 +63593,7 @@ - paravertebral ganglion (post-embryonic human) - FMA:5891 + paravertebral ganglion (post-embryonic human) @@ -67472,8 +63612,7 @@ - prevertebral ganglion (post-embryonic human) - FMA:5892 + prevertebral ganglion (post-embryonic human) @@ -67492,8 +63631,7 @@ - parasympathetic ganglion (post-embryonic human) - FMA:5894 + parasympathetic ganglion (post-embryonic human) @@ -67512,8 +63650,7 @@ - enteric ganglion (post-embryonic human) - FMA:5896 + enteric ganglion (post-embryonic human) @@ -67532,8 +63669,7 @@ - anatomical space (post-embryonic human) - FMA:5897 + anatomical space (post-embryonic human) @@ -67552,8 +63688,7 @@ - lens cortex (post-embryonic human) - FMA:58970 + lens cortex (post-embryonic human) @@ -67572,8 +63707,7 @@ - lens nucleus (post-embryonic human) - FMA:58971 + lens nucleus (post-embryonic human) @@ -67592,8 +63726,7 @@ - anatomical junction (post-embryonic human) - FMA:5898 + anatomical junction (post-embryonic human) @@ -67612,8 +63745,7 @@ - vascular plexus (post-embryonic human) - FMA:5900 + vascular plexus (post-embryonic human) @@ -67632,8 +63764,7 @@ - orbital fat pad (post-embryonic human) - FMA:59005 + orbital fat pad (post-embryonic human) @@ -67652,8 +63783,7 @@ - nerve plexus (post-embryonic human) - FMA:5901 + nerve plexus (post-embryonic human) @@ -67672,8 +63802,7 @@ - conjunctiva (post-embryonic human) - FMA:59011 + conjunctiva (post-embryonic human) @@ -67692,8 +63821,7 @@ - conjunctival fornix (post-embryonic human) - FMA:59016 + conjunctival fornix (post-embryonic human) @@ -67712,8 +63840,7 @@ - subdivision of conjunctiva (post-embryonic human) - FMA:59023 + subdivision of conjunctiva (post-embryonic human) @@ -67732,8 +63859,7 @@ - bulbar conjunctiva (post-embryonic human) - FMA:59024 + bulbar conjunctiva (post-embryonic human) @@ -67752,8 +63878,7 @@ - palpebral conjunctiva (post-embryonic human) - FMA:59025 + palpebral conjunctiva (post-embryonic human) @@ -67772,8 +63897,7 @@ - spinal nerve plexus (post-embryonic human) - FMA:5903 + spinal nerve plexus (post-embryonic human) @@ -67792,8 +63916,7 @@ - cervical nerve plexus (post-embryonic human) - FMA:5904 + cervical nerve plexus (post-embryonic human) @@ -67812,8 +63935,7 @@ - plica semilunaris of conjunctiva (post-embryonic human) - FMA:59045 + plica semilunaris of conjunctiva (post-embryonic human) @@ -67832,8 +63954,7 @@ - infra-orbital canal of maxilla (post-embryonic human) - FMA:59048 + infra-orbital canal of maxilla (post-embryonic human) @@ -67852,8 +63973,7 @@ - Krause's gland (post-embryonic human) - FMA:59056 + Krause's gland (post-embryonic human) @@ -67872,8 +63992,7 @@ - brachial nerve plexus (post-embryonic human) - FMA:5906 + brachial nerve plexus (post-embryonic human) @@ -67892,8 +64011,7 @@ - lumbosacral nerve plexus (post-embryonic human) - FMA:5907 + lumbosacral nerve plexus (post-embryonic human) @@ -67912,8 +64030,7 @@ - lumbar nerve plexus (post-embryonic human) - FMA:5908 + lumbar nerve plexus (post-embryonic human) @@ -67932,8 +64049,7 @@ - conjunctival space (post-embryonic human) - FMA:59083 + conjunctival space (post-embryonic human) @@ -67952,8 +64068,7 @@ - eyelid tarsus (post-embryonic human) - FMA:59086 + eyelid tarsus (post-embryonic human) @@ -67972,8 +64087,7 @@ - superior eyelid tarsus (post-embryonic human) - FMA:59087 + superior eyelid tarsus (post-embryonic human) @@ -67992,8 +64106,7 @@ - inferior eyelid tarsus (post-embryonic human) - FMA:59088 + inferior eyelid tarsus (post-embryonic human) @@ -68012,8 +64125,7 @@ - sacral nerve plexus (post-embryonic human) - FMA:5909 + sacral nerve plexus (post-embryonic human) @@ -68032,8 +64144,7 @@ - autonomic nerve plexus (post-embryonic human) - FMA:5910 + autonomic nerve plexus (post-embryonic human) @@ -68052,8 +64163,7 @@ - lacrimal gland (post-embryonic human) - FMA:59101 + lacrimal gland (post-embryonic human) @@ -68072,8 +64182,7 @@ - tarsal gland (post-embryonic human) - FMA:59104 + tarsal gland (post-embryonic human) @@ -68092,8 +64201,7 @@ - incisive canal (post-embryonic human) - FMA:59107 + incisive canal (post-embryonic human) @@ -68112,8 +64220,7 @@ - palpebral fissure (post-embryonic human) - FMA:59110 + palpebral fissure (post-embryonic human) @@ -68132,8 +64239,7 @@ - nerve trunk (post-embryonic human) - FMA:5913 + nerve trunk (post-embryonic human) @@ -68152,8 +64258,7 @@ - nerve fiber (post-embryonic human) - FMA:5914 + nerve fiber (post-embryonic human) @@ -68172,8 +64277,7 @@ - myelinated nerve fiber (post-embryonic human) - FMA:5915 + myelinated nerve fiber (post-embryonic human) @@ -68192,8 +64296,7 @@ - sweat gland (post-embryonic human) - FMA:59152 + sweat gland (post-embryonic human) @@ -68212,8 +64315,7 @@ - epidermis gland (post-embryonic human) - FMA:59153 + epidermis gland (post-embryonic human) @@ -68232,8 +64334,7 @@ - eccrine sweat gland (post-embryonic human) - FMA:59154 + eccrine sweat gland (post-embryonic human) @@ -68252,8 +64353,7 @@ - apocrine sweat gland (post-embryonic human) - FMA:59155 + apocrine sweat gland (post-embryonic human) @@ -68272,8 +64372,7 @@ - sweat gland of eyelid (post-embryonic human) - FMA:59159 + sweat gland of eyelid (post-embryonic human) @@ -68292,8 +64391,7 @@ - unmyelinated nerve fiber (post-embryonic human) - FMA:5916 + unmyelinated nerve fiber (post-embryonic human) @@ -68312,8 +64410,7 @@ - sebaceous gland (post-embryonic human) - FMA:59160 + sebaceous gland (post-embryonic human) @@ -68332,8 +64429,7 @@ - gland of Zeis (post-embryonic human) - FMA:59191 + gland of Zeis (post-embryonic human) @@ -68352,8 +64448,7 @@ - palatine torus (post-embryonic human) - FMA:59201 + palatine torus (post-embryonic human) @@ -68372,8 +64467,7 @@ - canthus (post-embryonic human) - FMA:59222 + canthus (post-embryonic human) @@ -68392,8 +64486,7 @@ - preganglionic autonomic fiber (post-embryonic human) - FMA:5923 + preganglionic autonomic fiber (post-embryonic human) @@ -68412,8 +64505,7 @@ - postganglionic autonomic fiber (post-embryonic human) - FMA:5924 + postganglionic autonomic fiber (post-embryonic human) @@ -68432,8 +64524,7 @@ - spinal nerve trunk (post-embryonic human) - FMA:5929 + spinal nerve trunk (post-embryonic human) @@ -68452,8 +64543,7 @@ - outer canthus (post-embryonic human) - FMA:59315 + outer canthus (post-embryonic human) @@ -68472,8 +64562,7 @@ - inner canthus (post-embryonic human) - FMA:59316 + inner canthus (post-embryonic human) @@ -68492,8 +64581,7 @@ - right outer canthus (post-embryonic human) - FMA:59317 + right outer canthus (post-embryonic human) @@ -68512,8 +64600,7 @@ - left outer canthus (post-embryonic human) - FMA:59318 + left outer canthus (post-embryonic human) @@ -68532,8 +64619,7 @@ - inner canthus of right eye (post-embryonic human) - FMA:59319 + inner canthus of right eye (post-embryonic human) @@ -68552,8 +64638,7 @@ - intercostal lymph node (post-embryonic human) - FMA:5932 + intercostal lymph node (post-embryonic human) @@ -68572,8 +64657,7 @@ - inner canthus of left eye (post-embryonic human) - FMA:59320 + inner canthus of left eye (post-embryonic human) @@ -68592,8 +64676,7 @@ - sutural bone (post-embryonic human) - FMA:59327 + sutural bone (post-embryonic human) @@ -68612,8 +64695,7 @@ - orbital septum (post-embryonic human) - FMA:59328 + orbital septum (post-embryonic human) @@ -68632,8 +64714,7 @@ - mandible head (post-embryonic human) - FMA:59331 + mandible head (post-embryonic human) @@ -68652,8 +64733,7 @@ - mandible neck (post-embryonic human) - FMA:59332 + mandible neck (post-embryonic human) @@ -68672,8 +64752,7 @@ - lateral diaphragmatic lymph node (post-embryonic human) - FMA:5935 + lateral diaphragmatic lymph node (post-embryonic human) @@ -68692,8 +64771,7 @@ - periorbital skin (post-embryonic human) - FMA:59350 + periorbital skin (post-embryonic human) @@ -68712,8 +64790,7 @@ - periorbital region (post-embryonic human) - FMA:59351 + periorbital region (post-embryonic human) @@ -68732,8 +64809,7 @@ - margin of eyelid (post-embryonic human) - FMA:59356 + margin of eyelid (post-embryonic human) @@ -68752,8 +64828,7 @@ - anterior diaphragmatic lymph node (post-embryonic human) - FMA:5936 + anterior diaphragmatic lymph node (post-embryonic human) @@ -68772,8 +64847,7 @@ - lacrimal punctum (post-embryonic human) - FMA:59365 + lacrimal punctum (post-embryonic human) @@ -68792,8 +64866,7 @@ - epicanthal fold (post-embryonic human) - FMA:59370 + epicanthal fold (post-embryonic human) @@ -68812,8 +64885,7 @@ - lobe of lacrimal gland (post-embryonic human) - FMA:59381 + lobe of lacrimal gland (post-embryonic human) @@ -68832,8 +64904,7 @@ - orbital lobe of lacrimal gland (post-embryonic human) - FMA:59383 + orbital lobe of lacrimal gland (post-embryonic human) @@ -68852,8 +64923,7 @@ - palpebral lobe of lacrimal gland (post-embryonic human) - FMA:59384 + palpebral lobe of lacrimal gland (post-embryonic human) @@ -68872,8 +64942,7 @@ - lower jaw region (post-embryonic human) - FMA:59398 + lower jaw region (post-embryonic human) @@ -68892,8 +64961,7 @@ - upper jaw region (post-embryonic human) - FMA:59399 + upper jaw region (post-embryonic human) @@ -68912,8 +64980,7 @@ - lacrimal lake (post-embryonic human) - FMA:59402 + lacrimal lake (post-embryonic human) @@ -68932,8 +64999,7 @@ - lacrimal papilla (post-embryonic human) - FMA:59407 + lacrimal papilla (post-embryonic human) @@ -68952,8 +65018,7 @@ - upper eyelash (post-embryonic human) - FMA:59408 + upper eyelash (post-embryonic human) @@ -68972,8 +65037,7 @@ - lower eyelash (post-embryonic human) - FMA:59409 + lower eyelash (post-embryonic human) @@ -68992,8 +65056,7 @@ - posterior diaphragmatic lymph node (post-embryonic human) - FMA:5941 + posterior diaphragmatic lymph node (post-embryonic human) @@ -69012,8 +65075,7 @@ - tooth row (post-embryonic human) - FMA:59415 + tooth row (post-embryonic human) @@ -69032,8 +65094,7 @@ - brachiocephalic lymph node (post-embryonic human) - FMA:5944 + brachiocephalic lymph node (post-embryonic human) @@ -69052,8 +65113,7 @@ - lateral surface of mandible (post-embryonic human) - FMA:59463 + lateral surface of mandible (post-embryonic human) @@ -69072,8 +65132,7 @@ - medial surface of mandible (post-embryonic human) - FMA:59464 + medial surface of mandible (post-embryonic human) @@ -69092,8 +65151,7 @@ - posterior mediastinal lymph node (post-embryonic human) - FMA:5947 + posterior mediastinal lymph node (post-embryonic human) @@ -69112,8 +65170,7 @@ - mandibular canal (post-embryonic human) - FMA:59473 + mandibular canal (post-embryonic human) @@ -69132,8 +65189,7 @@ - mandible temporal crest (post-embryonic human) - FMA:59484 + mandible temporal crest (post-embryonic human) @@ -69152,8 +65208,7 @@ - zone of hyoid bone (post-embryonic human) - FMA:59494 + zone of hyoid bone (post-embryonic human) @@ -69172,8 +65227,7 @@ - hyoid bone body (post-embryonic human) - FMA:59495 + hyoid bone body (post-embryonic human) @@ -69192,8 +65246,7 @@ - hyoid bone greater horn (post-embryonic human) - FMA:59496 + hyoid bone greater horn (post-embryonic human) @@ -69212,8 +65265,7 @@ - hyoid bone lesser horn (post-embryonic human) - FMA:59499 + hyoid bone lesser horn (post-embryonic human) @@ -69232,8 +65284,7 @@ - tracheobronchial lymph node (post-embryonic human) - FMA:5950 + tracheobronchial lymph node (post-embryonic human) @@ -69252,8 +65303,7 @@ - nasal cartilage (post-embryonic human) - FMA:59502 + nasal cartilage (post-embryonic human) @@ -69272,8 +65322,7 @@ - cartilage of nasal septum (post-embryonic human) - FMA:59503 + cartilage of nasal septum (post-embryonic human) @@ -69292,8 +65341,7 @@ - major alar cartilage (post-embryonic human) - FMA:59504 + major alar cartilage (post-embryonic human) @@ -69312,8 +65360,7 @@ - minor alar cartilage (post-embryonic human) - FMA:59507 + minor alar cartilage (post-embryonic human) @@ -69332,8 +65379,7 @@ - accessory nasal cartilage (post-embryonic human) - FMA:59510 + accessory nasal cartilage (post-embryonic human) @@ -69352,8 +65398,7 @@ - lateral nasal cartilage (post-embryonic human) - FMA:59511 + lateral nasal cartilage (post-embryonic human) @@ -69372,8 +65417,7 @@ - vomeronasal cartilage (post-embryonic human) - FMA:59514 + vomeronasal cartilage (post-embryonic human) @@ -69392,8 +65436,7 @@ - external nose (post-embryonic human) - FMA:59515 + external nose (post-embryonic human) @@ -69412,8 +65455,7 @@ - dorsum of nose (post-embryonic human) - FMA:59517 + dorsum of nose (post-embryonic human) @@ -69432,8 +65474,7 @@ - nose tip (post-embryonic human) - FMA:59518 + nose tip (post-embryonic human) @@ -69452,8 +65493,7 @@ - ala of nose (post-embryonic human) - FMA:59519 + ala of nose (post-embryonic human) @@ -69472,8 +65512,7 @@ - paratracheal lymph node (post-embryonic human) - FMA:5953 + paratracheal lymph node (post-embryonic human) @@ -69492,8 +65531,7 @@ - superior tracheobronchial lymph node (post-embryonic human) - FMA:5959 + superior tracheobronchial lymph node (post-embryonic human) @@ -69512,8 +65550,7 @@ - inferior tracheobronchial lymph node (post-embryonic human) - FMA:5962 + inferior tracheobronchial lymph node (post-embryonic human) @@ -69532,8 +65569,7 @@ - nasal vestibule (post-embryonic human) - FMA:59644 + nasal vestibule (post-embryonic human) @@ -69552,8 +65588,7 @@ - external naris (post-embryonic human) - FMA:59645 + external naris (post-embryonic human) @@ -69572,8 +65607,7 @@ - bronchopulmonary lymph node (post-embryonic human) - FMA:5965 + bronchopulmonary lymph node (post-embryonic human) @@ -69592,8 +65626,7 @@ - moustache (post-embryonic human) - FMA:59652 + moustache (post-embryonic human) @@ -69612,8 +65645,7 @@ - acinus of sebaceous gland (post-embryonic human) - FMA:59657 + acinus of sebaceous gland (post-embryonic human) @@ -69632,8 +65664,7 @@ - viscerocranial mucosa (post-embryonic human) - FMA:59658 + viscerocranial mucosa (post-embryonic human) @@ -69652,8 +65683,7 @@ - mouth mucosa (post-embryonic human) - FMA:59660 + mouth mucosa (post-embryonic human) @@ -69672,8 +65702,7 @@ - mucosa of larynx (post-embryonic human) - FMA:59662 + mucosa of larynx (post-embryonic human) @@ -69692,8 +65721,7 @@ - mucosa of middle ear (post-embryonic human) - FMA:59663 + mucosa of middle ear (post-embryonic human) @@ -69712,8 +65740,7 @@ - mucosa of nasolacrimal duct (post-embryonic human) - FMA:59664 + mucosa of nasolacrimal duct (post-embryonic human) @@ -69732,8 +65759,7 @@ - midnasal cavity (post-embryonic human) - FMA:59675 + midnasal cavity (post-embryonic human) @@ -69752,8 +65778,7 @@ - paranasal sinus (post-embryonic human) - FMA:59679 + paranasal sinus (post-embryonic human) @@ -69772,8 +65797,7 @@ - pulmonary lymph node (post-embryonic human) - FMA:5968 + pulmonary lymph node (post-embryonic human) @@ -69792,8 +65816,7 @@ - lumen of lymphatic vessel (post-embryonic human) - FMA:59681 + lumen of lymphatic vessel (post-embryonic human) @@ -69812,8 +65835,7 @@ - nasal cavity mucosa (post-embryonic human) - FMA:59684 + nasal cavity mucosa (post-embryonic human) @@ -69832,8 +65854,7 @@ - columella nasi (post-embryonic human) - FMA:59725 + columella nasi (post-embryonic human) @@ -69852,8 +65873,7 @@ - secretion of lacrimal gland (post-embryonic human) - FMA:59756 + secretion of lacrimal gland (post-embryonic human) @@ -69872,8 +65892,7 @@ - gingiva (post-embryonic human) - FMA:59762 + gingiva (post-embryonic human) @@ -69892,8 +65911,7 @@ - gingiva of upper jaw (post-embryonic human) - FMA:59763 + gingiva of upper jaw (post-embryonic human) @@ -69912,8 +65930,7 @@ - gingiva of lower jaw (post-embryonic human) - FMA:59764 + gingiva of lower jaw (post-embryonic human) @@ -69932,8 +65949,7 @@ - mucosa of palate (post-embryonic human) - FMA:59765 + mucosa of palate (post-embryonic human) @@ -69952,8 +65968,7 @@ - mucosa of paranasal sinus (post-embryonic human) - FMA:59772 + mucosa of paranasal sinus (post-embryonic human) @@ -69972,8 +65987,7 @@ - mucosa of maxillary sinus (post-embryonic human) - FMA:59773 + mucosa of maxillary sinus (post-embryonic human) @@ -69992,8 +66006,7 @@ - mucosa of frontal sinus (post-embryonic human) - FMA:59774 + mucosa of frontal sinus (post-embryonic human) @@ -70012,8 +66025,7 @@ - mucosa of sphenoidal sinus (post-embryonic human) - FMA:59775 + mucosa of sphenoidal sinus (post-embryonic human) @@ -70032,8 +66044,7 @@ - mucosa of ethmoidal sinus (post-embryonic human) - FMA:59776 + mucosa of ethmoidal sinus (post-embryonic human) @@ -70052,8 +66063,7 @@ - mucosa of hard palate (post-embryonic human) - FMA:59783 + mucosa of hard palate (post-embryonic human) @@ -70072,8 +66082,7 @@ - mucosa of soft palate (post-embryonic human) - FMA:59784 + mucosa of soft palate (post-embryonic human) @@ -70092,8 +66101,7 @@ - buccal mucosa (post-embryonic human) - FMA:59785 + buccal mucosa (post-embryonic human) @@ -70112,8 +66120,7 @@ - major salivary gland (post-embryonic human) - FMA:59788 + major salivary gland (post-embryonic human) @@ -70132,8 +66139,7 @@ - minor salivary gland (post-embryonic human) - FMA:59789 + minor salivary gland (post-embryonic human) @@ -70152,8 +66158,7 @@ - ventral root of spinal cord (post-embryonic human) - FMA:5979 + ventral root of spinal cord (post-embryonic human) @@ -70172,8 +66177,7 @@ - parotid gland (post-embryonic human) - FMA:59790 + parotid gland (post-embryonic human) @@ -70192,8 +66196,7 @@ - sublingual gland (post-embryonic human) - FMA:59791 + sublingual gland (post-embryonic human) @@ -70212,8 +66215,7 @@ - buccal salivary gland (post-embryonic human) - FMA:59793 + buccal salivary gland (post-embryonic human) @@ -70232,8 +66234,7 @@ - molar gland (post-embryonic human) - FMA:59794 + molar gland (post-embryonic human) @@ -70252,8 +66253,7 @@ - palatine gland (post-embryonic human) - FMA:59795 + palatine gland (post-embryonic human) @@ -70272,8 +66272,7 @@ - anterior lingual gland (post-embryonic human) - FMA:59796 + anterior lingual gland (post-embryonic human) @@ -70292,8 +66291,7 @@ - buccal fat pad (post-embryonic human) - FMA:59799 + buccal fat pad (post-embryonic human) @@ -70312,8 +66310,7 @@ - dorsal root of spinal cord (post-embryonic human) - FMA:5980 + dorsal root of spinal cord (post-embryonic human) @@ -70332,8 +66329,7 @@ - oral opening (post-embryonic human) - FMA:59806 + oral opening (post-embryonic human) @@ -70352,8 +66348,7 @@ - nerve root (post-embryonic human) - FMA:5981 + nerve root (post-embryonic human) @@ -70372,8 +66367,7 @@ - lip (post-embryonic human) - FMA:59816 + lip (post-embryonic human) @@ -70392,8 +66386,7 @@ - upper lip (post-embryonic human) - FMA:59817 + upper lip (post-embryonic human) @@ -70412,8 +66405,7 @@ - lower lip (post-embryonic human) - FMA:59818 + lower lip (post-embryonic human) @@ -70432,8 +66424,7 @@ - philtrum (post-embryonic human) - FMA:59819 + philtrum (post-embryonic human) @@ -70452,8 +66443,7 @@ - ventral ramus of spinal nerve (post-embryonic human) - FMA:5982 + ventral ramus of spinal nerve (post-embryonic human) @@ -70472,8 +66462,7 @@ - frenulum of lip (post-embryonic human) - FMA:59820 + frenulum of lip (post-embryonic human) @@ -70492,8 +66481,7 @@ - frenulum of upper lip (post-embryonic human) - FMA:59821 + frenulum of upper lip (post-embryonic human) @@ -70512,8 +66500,7 @@ - frenulum of lower lip (post-embryonic human) - FMA:59822 + frenulum of lower lip (post-embryonic human) @@ -70532,8 +66519,7 @@ - vermilion (post-embryonic human) - FMA:59824 + vermilion (post-embryonic human) @@ -70552,8 +66538,7 @@ - upper vermilion (post-embryonic human) - FMA:59827 + upper vermilion (post-embryonic human) @@ -70572,8 +66557,7 @@ - lower vermilion (post-embryonic human) - FMA:59828 + lower vermilion (post-embryonic human) @@ -70592,8 +66576,7 @@ - dorsal ramus of spinal nerve (post-embryonic human) - FMA:5983 + dorsal ramus of spinal nerve (post-embryonic human) @@ -70612,8 +66595,7 @@ - mucosa of upper lip (post-embryonic human) - FMA:59832 + mucosa of upper lip (post-embryonic human) @@ -70632,8 +66614,7 @@ - mucosa of lower lip (post-embryonic human) - FMA:59833 + mucosa of lower lip (post-embryonic human) @@ -70652,8 +66633,7 @@ - bony part of hard palate (post-embryonic human) - FMA:59857 + bony part of hard palate (post-embryonic human) @@ -70672,8 +66652,7 @@ - saliva (post-embryonic human) - FMA:59862 + saliva (post-embryonic human) @@ -70692,8 +66671,7 @@ - acinus of parotid gland (post-embryonic human) - FMA:59863 + acinus of parotid gland (post-embryonic human) @@ -70712,8 +66690,7 @@ - acinus of salivary gland (post-embryonic human) - FMA:59870 + acinus of salivary gland (post-embryonic human) @@ -70732,8 +66709,7 @@ - meningeal branch of spinal nerve (post-embryonic human) - FMA:5988 + meningeal branch of spinal nerve (post-embryonic human) @@ -70752,8 +66728,7 @@ - duct of salivary gland (post-embryonic human) - FMA:59908 + duct of salivary gland (post-embryonic human) @@ -70772,8 +66747,7 @@ - sublingual duct (post-embryonic human) - FMA:59983 + sublingual duct (post-embryonic human) @@ -70792,8 +66766,7 @@ - major sublingual duct (post-embryonic human) - FMA:59986 + major sublingual duct (post-embryonic human) @@ -70812,8 +66785,7 @@ - minor sublingual duct (post-embryonic human) - FMA:59987 + minor sublingual duct (post-embryonic human) @@ -70832,8 +66804,7 @@ - mucosa of uvula (post-embryonic human) - FMA:60030 + mucosa of uvula (post-embryonic human) @@ -70852,8 +66823,7 @@ - cervical dorsal root ganglion (post-embryonic human) - FMA:6005 + cervical dorsal root ganglion (post-embryonic human) @@ -70872,8 +66842,7 @@ - intercalated duct of salivary gland (post-embryonic human) - FMA:60050 + intercalated duct of salivary gland (post-embryonic human) @@ -70892,8 +66861,7 @@ - striated duct of salivary gland (post-embryonic human) - FMA:60051 + striated duct of salivary gland (post-embryonic human) @@ -70912,8 +66880,7 @@ - excretory duct of salivary gland (post-embryonic human) - FMA:60052 + excretory duct of salivary gland (post-embryonic human) @@ -70932,8 +66899,7 @@ - interlobular duct of salivary gland (post-embryonic human) - FMA:60053 + interlobular duct of salivary gland (post-embryonic human) @@ -70952,8 +66918,7 @@ - bony part of pharyngotympanic tube (post-embryonic human) - FMA:60057 + bony part of pharyngotympanic tube (post-embryonic human) @@ -70972,8 +66937,7 @@ - thoracic dorsal root ganglion (post-embryonic human) - FMA:6006 + thoracic dorsal root ganglion (post-embryonic human) @@ -70992,8 +66956,7 @@ - joint of auditory ossicle (post-embryonic human) - FMA:60063 + joint of auditory ossicle (post-embryonic human) @@ -71012,8 +66975,7 @@ - incudomallear joint (post-embryonic human) - FMA:60064 + incudomallear joint (post-embryonic human) @@ -71032,8 +66994,7 @@ - incudostapedial joint (post-embryonic human) - FMA:60065 + incudostapedial joint (post-embryonic human) @@ -71052,8 +67013,7 @@ - wall of pharyngotympanic tube (post-embryonic human) - FMA:60069 + wall of pharyngotympanic tube (post-embryonic human) @@ -71072,8 +67032,7 @@ - lumbar dorsal root ganglion (post-embryonic human) - FMA:6007 + lumbar dorsal root ganglion (post-embryonic human) @@ -71092,8 +67051,7 @@ - lumen of pharyngotympanic tube (post-embryonic human) - FMA:60079 + lumen of pharyngotympanic tube (post-embryonic human) @@ -71112,8 +67070,7 @@ - sacral dorsal root ganglion (post-embryonic human) - FMA:6008 + sacral dorsal root ganglion (post-embryonic human) @@ -71132,8 +67089,7 @@ - cartilage of pharyngotympanic tube (post-embryonic human) - FMA:60096 + cartilage of pharyngotympanic tube (post-embryonic human) @@ -71152,8 +67108,7 @@ - first cervical dorsal root ganglion (post-embryonic human) - FMA:6010 + first cervical dorsal root ganglion (post-embryonic human) @@ -71172,8 +67127,7 @@ - mucosa of pharyngotympanic tube (post-embryonic human) - FMA:60109 + mucosa of pharyngotympanic tube (post-embryonic human) @@ -71192,8 +67146,7 @@ - mucosa of nasal septum (post-embryonic human) - FMA:60113 + mucosa of nasal septum (post-embryonic human) @@ -71212,8 +67165,7 @@ - nasal skeleton (post-embryonic human) - FMA:60116 + nasal skeleton (post-embryonic human) @@ -71232,8 +67184,7 @@ - root of nail (post-embryonic human) - FMA:60128 + root of nail (post-embryonic human) @@ -71252,8 +67203,7 @@ - bony labyrinth (post-embryonic human) - FMA:60179 + bony labyrinth (post-embryonic human) @@ -71272,8 +67222,7 @@ - osseus labyrinth vestibule (post-embryonic human) - FMA:60183 + osseus labyrinth vestibule (post-embryonic human) @@ -71292,8 +67241,7 @@ - semicircular canal (post-embryonic human) - FMA:60186 + semicircular canal (post-embryonic human) @@ -71312,8 +67260,7 @@ - anterior semicircular canal (post-embryonic human) - FMA:60187 + anterior semicircular canal (post-embryonic human) @@ -71332,8 +67279,7 @@ - posterior semicircular canal (post-embryonic human) - FMA:60190 + posterior semicircular canal (post-embryonic human) @@ -71352,8 +67298,7 @@ - lateral semicircular canal (post-embryonic human) - FMA:60193 + lateral semicircular canal (post-embryonic human) @@ -71372,8 +67317,7 @@ - cochlea (post-embryonic human) - FMA:60201 + cochlea (post-embryonic human) @@ -71392,8 +67336,7 @@ - intercostal nerve (post-embryonic human) - FMA:6028 + intercostal nerve (post-embryonic human) @@ -71412,8 +67355,7 @@ - dorsal skin of finger (post-embryonic human) - FMA:60346 + dorsal skin of finger (post-embryonic human) @@ -71432,8 +67374,7 @@ - nail bed of finger (post-embryonic human) - FMA:60348 + nail bed of finger (post-embryonic human) @@ -71452,8 +67393,7 @@ - dorsal skin of toe (post-embryonic human) - FMA:60523 + dorsal skin of toe (post-embryonic human) @@ -71472,8 +67412,7 @@ - nail bed of toe (post-embryonic human) - FMA:60529 + nail bed of toe (post-embryonic human) @@ -71492,8 +67431,7 @@ - annular ligament of stapes (post-embryonic human) - FMA:60884 + annular ligament of stapes (post-embryonic human) @@ -71512,8 +67450,7 @@ - perilymph (post-embryonic human) - FMA:60908 + perilymph (post-embryonic human) @@ -71532,8 +67469,7 @@ - internal ear (post-embryonic human) - FMA:60909 + internal ear (post-embryonic human) @@ -71552,8 +67488,7 @@ - lobule of pinna (post-embryonic human) - FMA:60984 + lobule of pinna (post-embryonic human) @@ -71572,8 +67507,7 @@ - helix of outer ear (post-embryonic human) - FMA:60992 + helix of outer ear (post-embryonic human) @@ -71592,8 +67526,7 @@ - antihelix (post-embryonic human) - FMA:60995 + antihelix (post-embryonic human) @@ -71612,8 +67545,7 @@ - tragus (post-embryonic human) - FMA:60998 + tragus (post-embryonic human) @@ -71632,8 +67564,7 @@ - antitragus (post-embryonic human) - FMA:61001 + antitragus (post-embryonic human) @@ -71652,8 +67583,7 @@ - conchal part of pinna (post-embryonic human) - FMA:61006 + conchal part of pinna (post-embryonic human) @@ -71672,8 +67602,7 @@ - auricular cartilage (post-embryonic human) - FMA:61013 + auricular cartilage (post-embryonic human) @@ -71692,8 +67621,7 @@ - membranous labyrinth (post-embryonic human) - FMA:61022 + membranous labyrinth (post-embryonic human) @@ -71712,8 +67640,7 @@ - crus of ear (post-embryonic human) - FMA:61024 + crus of ear (post-embryonic human) @@ -71732,8 +67659,7 @@ - ligament of pinna (post-embryonic human) - FMA:61035 + ligament of pinna (post-embryonic human) @@ -71752,8 +67678,7 @@ - lacrimal drainage system (post-embryonic human) - FMA:61063 + lacrimal drainage system (post-embryonic human) @@ -71772,8 +67697,7 @@ - cymba conchae of pinna (post-embryonic human) - FMA:61082 + cymba conchae of pinna (post-embryonic human) @@ -71792,8 +67716,7 @@ - medulla of organ (post-embryonic human) - FMA:61108 + medulla of organ (post-embryonic human) @@ -71812,8 +67735,7 @@ - cortex (post-embryonic human) - FMA:61109 + cortex (post-embryonic human) @@ -71832,8 +67754,7 @@ - endolymph (post-embryonic human) - FMA:61112 + endolymph (post-embryonic human) @@ -71852,8 +67773,7 @@ - utricle of membranous labyrinth (post-embryonic human) - FMA:61113 + utricle of membranous labyrinth (post-embryonic human) @@ -71872,8 +67792,7 @@ - saccule of membranous labyrinth (post-embryonic human) - FMA:61116 + saccule of membranous labyrinth (post-embryonic human) @@ -71892,8 +67811,7 @@ - cochlear duct of membranous labyrinth (post-embryonic human) - FMA:61119 + cochlear duct of membranous labyrinth (post-embryonic human) @@ -71912,8 +67830,7 @@ - semicircular duct (post-embryonic human) - FMA:61122 + semicircular duct (post-embryonic human) @@ -71932,8 +67849,7 @@ - anterior semicircular duct (post-embryonic human) - FMA:61123 + anterior semicircular duct (post-embryonic human) @@ -71952,8 +67868,7 @@ - posterior semicircular duct (post-embryonic human) - FMA:61126 + posterior semicircular duct (post-embryonic human) @@ -71972,8 +67887,7 @@ - lateral semicircular duct (post-embryonic human) - FMA:61129 + lateral semicircular duct (post-embryonic human) @@ -71992,8 +67906,7 @@ - intertragic incisure (post-embryonic human) - FMA:61175 + intertragic incisure (post-embryonic human) @@ -72012,8 +67925,7 @@ - lymph node of head (post-embryonic human) - FMA:61212 + lymph node of head (post-embryonic human) @@ -72032,8 +67944,7 @@ - cervical lymph node (post-embryonic human) - FMA:61213 + cervical lymph node (post-embryonic human) @@ -72052,8 +67963,7 @@ - occipital lymph node (post-embryonic human) - FMA:61214 + occipital lymph node (post-embryonic human) @@ -72072,8 +67982,7 @@ - mastoid lymph node (post-embryonic human) - FMA:61215 + mastoid lymph node (post-embryonic human) @@ -72092,8 +68001,7 @@ - parotid lymph node (post-embryonic human) - FMA:61216 + parotid lymph node (post-embryonic human) @@ -72112,8 +68020,7 @@ - superficial parotid lymph node (post-embryonic human) - FMA:61217 + superficial parotid lymph node (post-embryonic human) @@ -72132,8 +68039,7 @@ - deep parotid lymph node (post-embryonic human) - FMA:61218 + deep parotid lymph node (post-embryonic human) @@ -72152,8 +68058,7 @@ - anterior auricular lymph node (post-embryonic human) - FMA:61219 + anterior auricular lymph node (post-embryonic human) @@ -72172,8 +68077,7 @@ - infra-auricular lymph node (post-embryonic human) - FMA:61220 + infra-auricular lymph node (post-embryonic human) @@ -72192,8 +68096,7 @@ - intraglandular lymph node (post-embryonic human) - FMA:61221 + intraglandular lymph node (post-embryonic human) @@ -72212,8 +68115,7 @@ - facial lymph node (post-embryonic human) - FMA:61222 + facial lymph node (post-embryonic human) @@ -72232,8 +68134,7 @@ - buccinator lymph node (post-embryonic human) - FMA:61223 + buccinator lymph node (post-embryonic human) @@ -72252,8 +68153,7 @@ - submandibular lymph node (post-embryonic human) - FMA:61224 + submandibular lymph node (post-embryonic human) @@ -72272,8 +68172,7 @@ - nasolabial lymph node (post-embryonic human) - FMA:61225 + nasolabial lymph node (post-embryonic human) @@ -72292,8 +68191,7 @@ - malar lymph node (post-embryonic human) - FMA:61226 + malar lymph node (post-embryonic human) @@ -72312,8 +68210,7 @@ - mandibular lymph node (post-embryonic human) - FMA:61227 + mandibular lymph node (post-embryonic human) @@ -72332,8 +68229,7 @@ - lingual lymph node (post-embryonic human) - FMA:61228 + lingual lymph node (post-embryonic human) @@ -72352,8 +68248,7 @@ - submental lymph node (post-embryonic human) - FMA:61229 + submental lymph node (post-embryonic human) @@ -72372,8 +68267,7 @@ - anterior cervical lymph node (post-embryonic human) - FMA:61230 + anterior cervical lymph node (post-embryonic human) @@ -72392,8 +68286,7 @@ - lateral cervical lymph node (post-embryonic human) - FMA:61232 + lateral cervical lymph node (post-embryonic human) @@ -72412,8 +68305,7 @@ - infrahyoid lymph node (post-embryonic human) - FMA:61233 + infrahyoid lymph node (post-embryonic human) @@ -72432,8 +68324,7 @@ - prelaryngeal lymph node (post-embryonic human) - FMA:61234 + prelaryngeal lymph node (post-embryonic human) @@ -72452,8 +68343,7 @@ - thyroid lymph node (post-embryonic human) - FMA:61235 + thyroid lymph node (post-embryonic human) @@ -72472,8 +68362,7 @@ - pretracheal lymph node (post-embryonic human) - FMA:61236 + pretracheal lymph node (post-embryonic human) @@ -72492,8 +68381,7 @@ - retropharyngeal lymph node (post-embryonic human) - FMA:61237 + retropharyngeal lymph node (post-embryonic human) @@ -72512,8 +68400,7 @@ - superior deep lateral cervical lymph node (post-embryonic human) - FMA:61238 + superior deep lateral cervical lymph node (post-embryonic human) @@ -72532,8 +68419,7 @@ - inferior deep lateral cervical lymph node (post-embryonic human) - FMA:61239 + inferior deep lateral cervical lymph node (post-embryonic human) @@ -72552,8 +68438,7 @@ - jugulodigastric lymph node (post-embryonic human) - FMA:61240 + jugulodigastric lymph node (post-embryonic human) @@ -72572,8 +68457,7 @@ - accessory cervical lymph node (post-embryonic human) - FMA:61242 + accessory cervical lymph node (post-embryonic human) @@ -72592,8 +68476,7 @@ - utriculosaccular duct (post-embryonic human) - FMA:61243 + utriculosaccular duct (post-embryonic human) @@ -72612,8 +68495,7 @@ - endolymphatic duct (post-embryonic human) - FMA:61246 + endolymphatic duct (post-embryonic human) @@ -72632,8 +68514,7 @@ - ductus reuniens (post-embryonic human) - FMA:61252 + ductus reuniens (post-embryonic human) @@ -72652,8 +68533,7 @@ - vestibular labyrinth (post-embryonic human) - FMA:61255 + vestibular labyrinth (post-embryonic human) @@ -72672,8 +68552,7 @@ - cochlear labyrinth (post-embryonic human) - FMA:61259 + cochlear labyrinth (post-embryonic human) @@ -72692,8 +68571,7 @@ - scala vestibuli (post-embryonic human) - FMA:61269 + scala vestibuli (post-embryonic human) @@ -72712,8 +68590,7 @@ - scala tympani (post-embryonic human) - FMA:61272 + scala tympani (post-embryonic human) @@ -72732,8 +68609,7 @@ - helicotrema (post-embryonic human) - FMA:61275 + helicotrema (post-embryonic human) @@ -72752,8 +68628,7 @@ - cochlear modiolus (post-embryonic human) - FMA:61278 + cochlear modiolus (post-embryonic human) @@ -72772,8 +68647,7 @@ - cartilaginous external acoustic tube (post-embryonic human) - FMA:61289 + cartilaginous external acoustic tube (post-embryonic human) @@ -72792,8 +68666,7 @@ - external acoustic meatus osseus part (post-embryonic human) - FMA:61290 + external acoustic meatus osseus part (post-embryonic human) @@ -72812,8 +68685,7 @@ - cartilage of external acoustic meatus (post-embryonic human) - FMA:61298 + cartilage of external acoustic meatus (post-embryonic human) @@ -72832,8 +68704,7 @@ - sebum (post-embryonic human) - FMA:61304 + sebum (post-embryonic human) @@ -72852,8 +68723,7 @@ - cartilage of external ear (post-embryonic human) - FMA:61339 + cartilage of external ear (post-embryonic human) @@ -72872,8 +68742,7 @@ - quadrant of breast (post-embryonic human) - FMA:61373 + quadrant of breast (post-embryonic human) @@ -72892,8 +68761,7 @@ - upper inner quadrant of breast (post-embryonic human) - FMA:61375 + upper inner quadrant of breast (post-embryonic human) @@ -72912,8 +68780,7 @@ - lower outer quadrant of breast (post-embryonic human) - FMA:61376 + lower outer quadrant of breast (post-embryonic human) @@ -72932,8 +68799,7 @@ - lower inner quadrant of breast (post-embryonic human) - FMA:61377 + lower inner quadrant of breast (post-embryonic human) @@ -72952,8 +68818,7 @@ - upper outer quadrant of breast (post-embryonic human) - FMA:61380 + upper outer quadrant of breast (post-embryonic human) @@ -72972,8 +68837,7 @@ - chyle (post-embryonic human) - FMA:61403 + chyle (post-embryonic human) @@ -72992,8 +68856,7 @@ - skin of chest (post-embryonic human) - FMA:61416 + skin of chest (post-embryonic human) @@ -73012,8 +68875,7 @@ - infraclavicular region (post-embryonic human) - FMA:61479 + infraclavicular region (post-embryonic human) @@ -73032,8 +68894,7 @@ - thenar eminence (post-embryonic human) - FMA:61520 + thenar eminence (post-embryonic human) @@ -73052,8 +68913,7 @@ - hypothenar eminence (post-embryonic human) - FMA:61523 + hypothenar eminence (post-embryonic human) @@ -73072,8 +68932,7 @@ - umbilicus (post-embryonic human) - FMA:61584 + umbilicus (post-embryonic human) @@ -73092,8 +68951,7 @@ - lower back (post-embryonic human) - FMA:61681 + lower back (post-embryonic human) @@ -73112,8 +68970,7 @@ - entire surface of organism (post-embryonic human) - FMA:61695 + entire surface of organism (post-embryonic human) @@ -73132,8 +68989,7 @@ - external acoustic meatus (post-embryonic human) - FMA:61734 + external acoustic meatus (post-embryonic human) @@ -73152,8 +69008,7 @@ - atypical epithelium (post-embryonic human) - FMA:61741 + atypical epithelium (post-embryonic human) @@ -73172,8 +69027,7 @@ - cerebral hemisphere (post-embryonic human) - FMA:61817 + cerebral hemisphere (post-embryonic human) @@ -73192,8 +69046,7 @@ - left cerebral hemisphere (post-embryonic human) - FMA:61819 + left cerebral hemisphere (post-embryonic human) @@ -73212,8 +69065,7 @@ - cerebral hemisphere gray matter (post-embryonic human) - FMA:61821 + cerebral hemisphere gray matter (post-embryonic human) @@ -73232,8 +69084,7 @@ - cerebral hemisphere white matter (post-embryonic human) - FMA:61822 + cerebral hemisphere white matter (post-embryonic human) @@ -73252,8 +69103,7 @@ - lobe of cerebral hemisphere (post-embryonic human) - FMA:61823 + lobe of cerebral hemisphere (post-embryonic human) @@ -73272,8 +69122,7 @@ - frontal lobe (post-embryonic human) - FMA:61824 + frontal lobe (post-embryonic human) @@ -73292,8 +69141,7 @@ - temporal lobe (post-embryonic human) - FMA:61825 + temporal lobe (post-embryonic human) @@ -73312,8 +69160,7 @@ - parietal lobe (post-embryonic human) - FMA:61826 + parietal lobe (post-embryonic human) @@ -73332,8 +69179,7 @@ - cerebral cortex (post-embryonic human) - FMA:61830 + cerebral cortex (post-embryonic human) @@ -73352,8 +69198,7 @@ - caudate nucleus (post-embryonic human) - FMA:61833 + caudate nucleus (post-embryonic human) @@ -73372,8 +69217,7 @@ - putamen (post-embryonic human) - FMA:61834 + putamen (post-embryonic human) @@ -73392,8 +69236,7 @@ - globus pallidus (post-embryonic human) - FMA:61835 + globus pallidus (post-embryonic human) @@ -73412,8 +69255,7 @@ - lateral globus pallidus (post-embryonic human) - FMA:61839 + lateral globus pallidus (post-embryonic human) @@ -73432,8 +69274,7 @@ - medial globus pallidus (post-embryonic human) - FMA:61840 + medial globus pallidus (post-embryonic human) @@ -73452,8 +69293,7 @@ - amygdala (post-embryonic human) - FMA:61841 + amygdala (post-embryonic human) @@ -73472,8 +69312,7 @@ - septum of telencephalon (post-embryonic human) - FMA:61842 + septum of telencephalon (post-embryonic human) @@ -73492,8 +69331,7 @@ - septum pellucidum (post-embryonic human) - FMA:61844 + septum pellucidum (post-embryonic human) @@ -73512,8 +69350,7 @@ - septal nuclear complex (post-embryonic human) - FMA:61845 + septal nuclear complex (post-embryonic human) @@ -73532,8 +69369,7 @@ - head of caudate nucleus (post-embryonic human) - FMA:61852 + head of caudate nucleus (post-embryonic human) @@ -73552,8 +69388,7 @@ - body of caudate nucleus (post-embryonic human) - FMA:61853 + body of caudate nucleus (post-embryonic human) @@ -73572,8 +69407,7 @@ - tail of caudate nucleus (post-embryonic human) - FMA:61854 + tail of caudate nucleus (post-embryonic human) @@ -73592,8 +69426,7 @@ - superior frontal gyrus (post-embryonic human) - FMA:61857 + superior frontal gyrus (post-embryonic human) @@ -73612,8 +69445,7 @@ - middle frontal gyrus (post-embryonic human) - FMA:61859 + middle frontal gyrus (post-embryonic human) @@ -73632,8 +69464,7 @@ - inferior frontal gyrus (post-embryonic human) - FMA:61860 + inferior frontal gyrus (post-embryonic human) @@ -73652,8 +69483,7 @@ - anterior amygdaloid area (post-embryonic human) - FMA:61861 + anterior amygdaloid area (post-embryonic human) @@ -73672,8 +69502,7 @@ - cortical amygdaloid nucleus (post-embryonic human) - FMA:61862 + cortical amygdaloid nucleus (post-embryonic human) @@ -73692,8 +69521,7 @@ - nucleus of lateral olfactory tract (post-embryonic human) - FMA:61865 + nucleus of lateral olfactory tract (post-embryonic human) @@ -73712,8 +69540,7 @@ - lateral amygdaloid nucleus (post-embryonic human) - FMA:61866 + lateral amygdaloid nucleus (post-embryonic human) @@ -73732,8 +69559,7 @@ - accessory basal amygdaloid nucleus (post-embryonic human) - FMA:61867 + accessory basal amygdaloid nucleus (post-embryonic human) @@ -73752,8 +69578,7 @@ - intercalated amygdaloid nuclei (post-embryonic human) - FMA:61868 + intercalated amygdaloid nuclei (post-embryonic human) @@ -73772,8 +69597,7 @@ - claustral amygdaloid area (post-embryonic human) - FMA:61869 + claustral amygdaloid area (post-embryonic human) @@ -73792,8 +69616,7 @@ - cavum septum pellucidum (post-embryonic human) - FMA:61874 + cavum septum pellucidum (post-embryonic human) @@ -73812,8 +69635,7 @@ - dorsal septal nucleus (post-embryonic human) - FMA:61877 + dorsal septal nucleus (post-embryonic human) @@ -73832,8 +69654,7 @@ - lateral septal nucleus (post-embryonic human) - FMA:61878 + lateral septal nucleus (post-embryonic human) @@ -73852,8 +69673,7 @@ - medial septal nucleus (post-embryonic human) - FMA:61879 + medial septal nucleus (post-embryonic human) @@ -73872,8 +69692,7 @@ - triangular septal nucleus (post-embryonic human) - FMA:61880 + triangular septal nucleus (post-embryonic human) @@ -73892,8 +69711,7 @@ - septofimbrial nucleus (post-embryonic human) - FMA:61881 + septofimbrial nucleus (post-embryonic human) @@ -73912,8 +69730,7 @@ - nucleus of diagonal band (post-embryonic human) - FMA:61882 + nucleus of diagonal band (post-embryonic human) @@ -73932,8 +69749,7 @@ - nucleus of anterior commissure (post-embryonic human) - FMA:61883 + nucleus of anterior commissure (post-embryonic human) @@ -73952,8 +69768,7 @@ - bed nucleus of stria terminalis (post-embryonic human) - FMA:61884 + bed nucleus of stria terminalis (post-embryonic human) @@ -73972,8 +69787,7 @@ - substantia innominata (post-embryonic human) - FMA:61885 + substantia innominata (post-embryonic human) @@ -73992,8 +69806,7 @@ - basal nucleus of telencephalon (post-embryonic human) - FMA:61887 + basal nucleus of telencephalon (post-embryonic human) @@ -74012,8 +69825,7 @@ - island of Calleja (post-embryonic human) - FMA:61888 + island of Calleja (post-embryonic human) @@ -74032,8 +69844,7 @@ - nucleus accumbens (post-embryonic human) - FMA:61889 + nucleus accumbens (post-embryonic human) @@ -74052,8 +69863,7 @@ - subcallosal area (post-embryonic human) - FMA:61890 + subcallosal area (post-embryonic human) @@ -74072,8 +69882,7 @@ - anterior perforated substance (post-embryonic human) - FMA:61891 + anterior perforated substance (post-embryonic human) @@ -74092,8 +69901,7 @@ - gyrus rectus (post-embryonic human) - FMA:61893 + gyrus rectus (post-embryonic human) @@ -74112,8 +69920,7 @@ - precentral gyrus (post-embryonic human) - FMA:61894 + precentral gyrus (post-embryonic human) @@ -74132,8 +69939,7 @@ - postcentral gyrus (post-embryonic human) - FMA:61896 + postcentral gyrus (post-embryonic human) @@ -74152,8 +69958,7 @@ - supramarginal gyrus (post-embryonic human) - FMA:61897 + supramarginal gyrus (post-embryonic human) @@ -74172,8 +69977,7 @@ - angular gyrus (post-embryonic human) - FMA:61898 + angular gyrus (post-embryonic human) @@ -74192,8 +69996,7 @@ - superior parietal cortex (post-embryonic human) - FMA:61899 + superior parietal cortex (post-embryonic human) @@ -74212,8 +70015,7 @@ - precuneus cortex (post-embryonic human) - FMA:61900 + precuneus cortex (post-embryonic human) @@ -74232,8 +70034,7 @@ - superior occipital gyrus (post-embryonic human) - FMA:61901 + superior occipital gyrus (post-embryonic human) @@ -74252,8 +70053,7 @@ - lateral occipital cortex (post-embryonic human) - FMA:61902 + lateral occipital cortex (post-embryonic human) @@ -74272,8 +70072,7 @@ - cuneus cortex (post-embryonic human) - FMA:61903 + cuneus cortex (post-embryonic human) @@ -74292,8 +70091,7 @@ - lingual gyrus (post-embryonic human) - FMA:61904 + lingual gyrus (post-embryonic human) @@ -74312,8 +70110,7 @@ - superior temporal gyrus (post-embryonic human) - FMA:61905 + superior temporal gyrus (post-embryonic human) @@ -74332,8 +70129,7 @@ - middle temporal gyrus (post-embryonic human) - FMA:61906 + middle temporal gyrus (post-embryonic human) @@ -74352,8 +70148,7 @@ - inferior temporal gyrus (post-embryonic human) - FMA:61907 + inferior temporal gyrus (post-embryonic human) @@ -74372,8 +70167,7 @@ - fusiform gyrus (post-embryonic human) - FMA:61908 + fusiform gyrus (post-embryonic human) @@ -74392,8 +70186,7 @@ - anterior transverse temporal gyrus (post-embryonic human) - FMA:61909 + anterior transverse temporal gyrus (post-embryonic human) @@ -74412,8 +70205,7 @@ - phrenic nerve (post-embryonic human) - FMA:6191 + phrenic nerve (post-embryonic human) @@ -74432,8 +70224,7 @@ - posterior transverse temporal gyrus (post-embryonic human) - FMA:61910 + posterior transverse temporal gyrus (post-embryonic human) @@ -74452,8 +70243,7 @@ - anterior cingulate gyrus (post-embryonic human) - FMA:61916 + anterior cingulate gyrus (post-embryonic human) @@ -74472,8 +70262,7 @@ - parahippocampal gyrus (post-embryonic human) - FMA:61918 + parahippocampal gyrus (post-embryonic human) @@ -74492,8 +70281,7 @@ - paraterminal gyrus (post-embryonic human) - FMA:61919 + paraterminal gyrus (post-embryonic human) @@ -74512,8 +70300,7 @@ - supracallosal gyrus (post-embryonic human) - FMA:61920 + supracallosal gyrus (post-embryonic human) @@ -74532,8 +70319,7 @@ - fasciolar gyrus (post-embryonic human) - FMA:61921 + fasciolar gyrus (post-embryonic human) @@ -74552,8 +70338,7 @@ - dentate gyrus of hippocampal formation (post-embryonic human) - FMA:61922 + dentate gyrus of hippocampal formation (post-embryonic human) @@ -74572,8 +70357,7 @@ - posterior cingulate gyrus (post-embryonic human) - FMA:61924 + posterior cingulate gyrus (post-embryonic human) @@ -74592,8 +70376,7 @@ - choroid plexus (post-embryonic human) - FMA:61934 + choroid plexus (post-embryonic human) @@ -74612,8 +70395,7 @@ - vasculature of brain (post-embryonic human) - FMA:61935 + vasculature of brain (post-embryonic human) @@ -74632,8 +70414,7 @@ - centrum semiovale (post-embryonic human) - FMA:61939 + centrum semiovale (post-embryonic human) @@ -74652,8 +70433,7 @@ - radiation of cerebral hemisphere (post-embryonic human) - FMA:61940 + radiation of cerebral hemisphere (post-embryonic human) @@ -74672,8 +70452,7 @@ - optic radiation (post-embryonic human) - FMA:61941 + optic radiation (post-embryonic human) @@ -74692,8 +70471,7 @@ - forceps minor of corpus callosum (post-embryonic human) - FMA:61944 + forceps minor of corpus callosum (post-embryonic human) @@ -74712,8 +70490,7 @@ - rostrum of corpus callosum (post-embryonic human) - FMA:61945 + rostrum of corpus callosum (post-embryonic human) @@ -74732,8 +70509,7 @@ - genu of corpus callosum (post-embryonic human) - FMA:61946 + genu of corpus callosum (post-embryonic human) @@ -74752,8 +70528,7 @@ - body of corpus callosum (post-embryonic human) - FMA:61947 + body of corpus callosum (post-embryonic human) @@ -74772,8 +70547,7 @@ - splenium of the corpus callosum (post-embryonic human) - FMA:61948 + splenium of the corpus callosum (post-embryonic human) @@ -74792,8 +70566,7 @@ - forceps major of corpus callosum (post-embryonic human) - FMA:61949 + forceps major of corpus callosum (post-embryonic human) @@ -74812,8 +70585,7 @@ - internal capsule of telencephalon (post-embryonic human) - FMA:61950 + internal capsule of telencephalon (post-embryonic human) @@ -74832,8 +70604,7 @@ - limb of internal capsule of telencephalon (post-embryonic human) - FMA:61951 + limb of internal capsule of telencephalon (post-embryonic human) @@ -74852,8 +70623,7 @@ - anterior limb of internal capsule (post-embryonic human) - FMA:61952 + anterior limb of internal capsule (post-embryonic human) @@ -74872,8 +70642,7 @@ - posterior limb of internal capsule (post-embryonic human) - FMA:61954 + posterior limb of internal capsule (post-embryonic human) @@ -74892,8 +70661,7 @@ - retrolenticular part of internal capsule (post-embryonic human) - FMA:61957 + retrolenticular part of internal capsule (post-embryonic human) @@ -74912,8 +70680,7 @@ - external capsule of telencephalon (post-embryonic human) - FMA:61959 + external capsule of telencephalon (post-embryonic human) @@ -74932,8 +70699,7 @@ - extreme capsule (post-embryonic human) - FMA:61960 + extreme capsule (post-embryonic human) @@ -74952,8 +70718,7 @@ - anterior commissure (post-embryonic human) - FMA:61961 + anterior commissure (post-embryonic human) @@ -74972,8 +70737,7 @@ - anterior commissure anterior part (post-embryonic human) - FMA:61963 + anterior commissure anterior part (post-embryonic human) @@ -74992,8 +70756,7 @@ - posterior part of anterior commissure (post-embryonic human) - FMA:61964 + posterior part of anterior commissure (post-embryonic human) @@ -75012,8 +70775,7 @@ - fornix of brain (post-embryonic human) - FMA:61965 + fornix of brain (post-embryonic human) @@ -75032,8 +70794,7 @@ - anterior column of fornix (post-embryonic human) - FMA:61966 + anterior column of fornix (post-embryonic human) @@ -75052,8 +70813,7 @@ - precommissural fornix of forebrain (post-embryonic human) - FMA:61967 + precommissural fornix of forebrain (post-embryonic human) @@ -75072,8 +70832,7 @@ - body of fornix (post-embryonic human) - FMA:61968 + body of fornix (post-embryonic human) @@ -75092,8 +70851,7 @@ - posterior column of fornix (post-embryonic human) - FMA:61969 + posterior column of fornix (post-embryonic human) @@ -75112,8 +70870,7 @@ - hippocampal commissure (post-embryonic human) - FMA:61970 + hippocampal commissure (post-embryonic human) @@ -75132,8 +70889,7 @@ - lateral olfactory stria (post-embryonic human) - FMA:61971 + lateral olfactory stria (post-embryonic human) @@ -75152,8 +70908,7 @@ - diagonal band of Broca (post-embryonic human) - FMA:61973 + diagonal band of Broca (post-embryonic human) @@ -75172,8 +70927,7 @@ - stria terminalis (post-embryonic human) - FMA:61974 + stria terminalis (post-embryonic human) @@ -75192,8 +70946,7 @@ - lamina terminalis of cerebral hemisphere (post-embryonic human) - FMA:61975 + lamina terminalis of cerebral hemisphere (post-embryonic human) @@ -75212,8 +70965,7 @@ - lenticular fasciculus (post-embryonic human) - FMA:61976 + lenticular fasciculus (post-embryonic human) @@ -75232,8 +70984,7 @@ - ventral amygdalofugal projection (post-embryonic human) - FMA:61977 + ventral amygdalofugal projection (post-embryonic human) @@ -75252,8 +71003,7 @@ - trunk of phrenic nerve (post-embryonic human) - FMA:6198 + trunk of phrenic nerve (post-embryonic human) @@ -75272,8 +71022,7 @@ - triangular part of inferior frontal gyrus (post-embryonic human) - FMA:61980 + triangular part of inferior frontal gyrus (post-embryonic human) @@ -75292,8 +71041,7 @@ - opercular part of inferior frontal gyrus (post-embryonic human) - FMA:61981 + opercular part of inferior frontal gyrus (post-embryonic human) @@ -75312,8 +71060,7 @@ - orbital part of inferior frontal gyrus (post-embryonic human) - FMA:61982 + orbital part of inferior frontal gyrus (post-embryonic human) @@ -75332,8 +71079,7 @@ - forebrain (post-embryonic human) - FMA:61992 + forebrain (post-embryonic human) @@ -75352,8 +71098,7 @@ - midbrain (post-embryonic human) - FMA:61993 + midbrain (post-embryonic human) @@ -75372,8 +71117,7 @@ - prosomere (post-embryonic human) - FMA:61996 + prosomere (post-embryonic human) @@ -75392,8 +71136,7 @@ - midbrain neuromere (post-embryonic human) - FMA:61997 + midbrain neuromere (post-embryonic human) @@ -75412,8 +71155,7 @@ - segmental subdivision of hindbrain (post-embryonic human) - FMA:61998 + segmental subdivision of hindbrain (post-embryonic human) @@ -75432,8 +71174,7 @@ - telencephalon (post-embryonic human) - FMA:62000 + telencephalon (post-embryonic human) @@ -75452,8 +71193,7 @@ - diencephalon (post-embryonic human) - FMA:62001 + diencephalon (post-embryonic human) @@ -75472,8 +71212,7 @@ - metencephalon (post-embryonic human) - FMA:62003 + metencephalon (post-embryonic human) @@ -75492,8 +71231,7 @@ - medulla oblongata (post-embryonic human) - FMA:62004 + medulla oblongata (post-embryonic human) @@ -75512,8 +71250,7 @@ - dorsal thalamus (post-embryonic human) - FMA:62007 + dorsal thalamus (post-embryonic human) @@ -75532,8 +71269,7 @@ - hypothalamus (post-embryonic human) - FMA:62008 + hypothalamus (post-embryonic human) @@ -75552,8 +71288,7 @@ - epithalamus (post-embryonic human) - FMA:62009 + epithalamus (post-embryonic human) @@ -75572,8 +71307,7 @@ - ventral thalamus (post-embryonic human) - FMA:62010 + ventral thalamus (post-embryonic human) @@ -75592,8 +71326,7 @@ - epithelium of trachea (post-embryonic human) - FMA:62015 + epithelium of trachea (post-embryonic human) @@ -75612,8 +71345,7 @@ - ciliated columnar oviduct epithelium (post-embryonic human) - FMA:62016 + ciliated columnar oviduct epithelium (post-embryonic human) @@ -75632,8 +71364,7 @@ - epithelium of small intestine (post-embryonic human) - FMA:62017 + epithelium of small intestine (post-embryonic human) @@ -75652,8 +71383,7 @@ - anterior nuclear group (post-embryonic human) - FMA:62019 + anterior nuclear group (post-embryonic human) @@ -75672,8 +71402,7 @@ - midline nuclear group (post-embryonic human) - FMA:62020 + midline nuclear group (post-embryonic human) @@ -75692,8 +71421,7 @@ - intralaminar nuclear group (post-embryonic human) - FMA:62021 + intralaminar nuclear group (post-embryonic human) @@ -75712,8 +71440,7 @@ - ventral nuclear group (post-embryonic human) - FMA:62022 + ventral nuclear group (post-embryonic human) @@ -75732,8 +71459,7 @@ - metathalamus (post-embryonic human) - FMA:62023 + metathalamus (post-embryonic human) @@ -75752,8 +71478,7 @@ - posterior nuclear complex of thalamus (post-embryonic human) - FMA:62024 + posterior nuclear complex of thalamus (post-embryonic human) @@ -75772,8 +71497,7 @@ - thalamic reticular nucleus (post-embryonic human) - FMA:62026 + thalamic reticular nucleus (post-embryonic human) @@ -75792,8 +71516,7 @@ - anterior hypothalamic region (post-embryonic human) - FMA:62027 + anterior hypothalamic region (post-embryonic human) @@ -75812,8 +71535,7 @@ - intermediate hypothalamic region (post-embryonic human) - FMA:62028 + intermediate hypothalamic region (post-embryonic human) @@ -75832,8 +71554,7 @@ - posterior hypothalamic region (post-embryonic human) - FMA:62029 + posterior hypothalamic region (post-embryonic human) @@ -75852,8 +71573,7 @@ - lateral hypothalamic area (post-embryonic human) - FMA:62030 + lateral hypothalamic area (post-embryonic human) @@ -75872,8 +71592,7 @@ - habenula (post-embryonic human) - FMA:62032 + habenula (post-embryonic human) @@ -75892,8 +71611,7 @@ - pineal body (post-embryonic human) - FMA:62033 + pineal body (post-embryonic human) @@ -75912,8 +71630,7 @@ - subthalamic nucleus (post-embryonic human) - FMA:62035 + subthalamic nucleus (post-embryonic human) @@ -75932,8 +71649,7 @@ - zona incerta (post-embryonic human) - FMA:62038 + zona incerta (post-embryonic human) @@ -75952,8 +71668,7 @@ - optic chiasma (post-embryonic human) - FMA:62045 + optic chiasma (post-embryonic human) @@ -75972,8 +71687,7 @@ - optic tract (post-embryonic human) - FMA:62046 + optic tract (post-embryonic human) @@ -75992,8 +71706,7 @@ - habenular commissure (post-embryonic human) - FMA:62048 + habenular commissure (post-embryonic human) @@ -76012,8 +71725,7 @@ - capsule of medial geniculate body (post-embryonic human) - FMA:62049 + capsule of medial geniculate body (post-embryonic human) @@ -76032,8 +71744,7 @@ - dorsal supraoptic decussation (post-embryonic human) - FMA:62051 + dorsal supraoptic decussation (post-embryonic human) @@ -76052,8 +71763,7 @@ - ventral supraoptic decussation (post-embryonic human) - FMA:62052 + ventral supraoptic decussation (post-embryonic human) @@ -76072,8 +71782,7 @@ - anterior hypothalamic commissure (post-embryonic human) - FMA:62053 + anterior hypothalamic commissure (post-embryonic human) @@ -76092,8 +71801,7 @@ - supraopticohypophysial tract (post-embryonic human) - FMA:62054 + supraopticohypophysial tract (post-embryonic human) @@ -76112,8 +71820,7 @@ - supramammillary commissure (post-embryonic human) - FMA:62056 + supramammillary commissure (post-embryonic human) @@ -76132,8 +71839,7 @@ - mammillary princeps fasciculus (post-embryonic human) - FMA:62057 + mammillary princeps fasciculus (post-embryonic human) @@ -76152,8 +71858,7 @@ - mammillotegmental axonal tract (post-embryonic human) - FMA:62058 + mammillotegmental axonal tract (post-embryonic human) @@ -76172,8 +71877,7 @@ - mammillothalamic tract of hypothalamus (post-embryonic human) - FMA:62059 + mammillothalamic tract of hypothalamus (post-embryonic human) @@ -76192,8 +71896,7 @@ - mammillary peduncle (post-embryonic human) - FMA:62061 + mammillary peduncle (post-embryonic human) @@ -76212,8 +71915,7 @@ - postcommissural fornix of brain (post-embryonic human) - FMA:62062 + postcommissural fornix of brain (post-embryonic human) @@ -76232,8 +71934,7 @@ - dorsal longitudinal fasciculus of hypothalamus (post-embryonic human) - FMA:62063 + dorsal longitudinal fasciculus of hypothalamus (post-embryonic human) @@ -76252,8 +71953,7 @@ - medial forebrain bundle (post-embryonic human) - FMA:62064 + medial forebrain bundle (post-embryonic human) @@ -76272,8 +71972,7 @@ - ventral thalamic fasciculus (post-embryonic human) - FMA:62065 + ventral thalamic fasciculus (post-embryonic human) @@ -76292,8 +71991,7 @@ - lenticular fasciculus (post-embryonic human) - FMA:62067 + lenticular fasciculus (post-embryonic human) @@ -76312,8 +72010,7 @@ - ansa lenticularis (post-embryonic human) - FMA:62070 + ansa lenticularis (post-embryonic human) @@ -76332,8 +72029,7 @@ - ansa peduncularis (post-embryonic human) - FMA:62071 + ansa peduncularis (post-embryonic human) @@ -76352,8 +72048,7 @@ - posterior commissure (post-embryonic human) - FMA:62072 + posterior commissure (post-embryonic human) @@ -76372,8 +72067,7 @@ - anterior thalamic peduncle (post-embryonic human) - FMA:62074 + anterior thalamic peduncle (post-embryonic human) @@ -76392,8 +72086,7 @@ - superior thalamic peduncle (post-embryonic human) - FMA:62075 + superior thalamic peduncle (post-embryonic human) @@ -76412,8 +72105,7 @@ - inferior thalamic peduncle (post-embryonic human) - FMA:62076 + inferior thalamic peduncle (post-embryonic human) @@ -76432,8 +72124,7 @@ - posterior thalamic peduncle (post-embryonic human) - FMA:62077 + posterior thalamic peduncle (post-embryonic human) @@ -76452,8 +72143,7 @@ - external medullary lamina of thalamus (post-embryonic human) - FMA:62078 + external medullary lamina of thalamus (post-embryonic human) @@ -76472,8 +72162,7 @@ - internal medullary lamina of thalamus (post-embryonic human) - FMA:62079 + internal medullary lamina of thalamus (post-embryonic human) @@ -76492,8 +72181,7 @@ - stria medullaris (post-embryonic human) - FMA:62080 + stria medullaris (post-embryonic human) @@ -76512,8 +72200,7 @@ - acinus of areolar gland (post-embryonic human) - FMA:62081 + acinus of areolar gland (post-embryonic human) @@ -76532,8 +72219,7 @@ - thoracic mammary gland (post-embryonic human) - FMA:62088 + thoracic mammary gland (post-embryonic human) @@ -76552,8 +72238,7 @@ - lobule of mammary gland (post-embryonic human) - FMA:62090 + lobule of mammary gland (post-embryonic human) @@ -76572,8 +72257,7 @@ - milk (post-embryonic human) - FMA:62100 + milk (post-embryonic human) @@ -76592,8 +72276,7 @@ - colostrum (post-embryonic human) - FMA:62101 + colostrum (post-embryonic human) @@ -76612,8 +72295,7 @@ - main lactiferous duct (post-embryonic human) - FMA:62102 + main lactiferous duct (post-embryonic human) @@ -76632,8 +72314,7 @@ - inframammary fold (post-embryonic human) - FMA:62109 + inframammary fold (post-embryonic human) @@ -76652,8 +72333,7 @@ - endothelium of capillary (post-embryonic human) - FMA:62114 + endothelium of capillary (post-embryonic human) @@ -76672,8 +72352,7 @@ - endothelium of arteriole (post-embryonic human) - FMA:62115 + endothelium of arteriole (post-embryonic human) @@ -76692,8 +72371,7 @@ - endothelium of artery (post-embryonic human) - FMA:62116 + endothelium of artery (post-embryonic human) @@ -76712,8 +72390,7 @@ - endothelium of venule (post-embryonic human) - FMA:62117 + endothelium of venule (post-embryonic human) @@ -76732,8 +72409,7 @@ - endothelium of vein (post-embryonic human) - FMA:62118 + endothelium of vein (post-embryonic human) @@ -76752,8 +72428,7 @@ - root of vagus nerve (post-embryonic human) - FMA:6213 + root of vagus nerve (post-embryonic human) @@ -76772,8 +72447,7 @@ - non-keratinized epithelium of tongue (post-embryonic human) - FMA:62130 + non-keratinized epithelium of tongue (post-embryonic human) @@ -76792,8 +72466,7 @@ - epithelium of conjunctiva (post-embryonic human) - FMA:62131 + epithelium of conjunctiva (post-embryonic human) @@ -76812,8 +72485,7 @@ - anterodorsal nucleus of thalamus (post-embryonic human) - FMA:62141 + anterodorsal nucleus of thalamus (post-embryonic human) @@ -76832,8 +72504,7 @@ - anteromedial nucleus of thalamus (post-embryonic human) - FMA:62142 + anteromedial nucleus of thalamus (post-embryonic human) @@ -76852,8 +72523,7 @@ - anteroventral nucleus of thalamus (post-embryonic human) - FMA:62143 + anteroventral nucleus of thalamus (post-embryonic human) @@ -76872,8 +72542,7 @@ - areolar sweat gland (post-embryonic human) - FMA:62149 + areolar sweat gland (post-embryonic human) @@ -76892,8 +72561,7 @@ - paratenial nucleus (post-embryonic human) - FMA:62151 + paratenial nucleus (post-embryonic human) @@ -76912,8 +72580,7 @@ - paraventricular nucleus of thalamus (post-embryonic human) - FMA:62152 + paraventricular nucleus of thalamus (post-embryonic human) @@ -76932,8 +72599,7 @@ - reuniens nucleus (post-embryonic human) - FMA:62153 + reuniens nucleus (post-embryonic human) @@ -76952,8 +72618,7 @@ - rhomboidal nucleus (post-embryonic human) - FMA:62154 + rhomboidal nucleus (post-embryonic human) @@ -76972,8 +72637,7 @@ - subfascicular nucleus (post-embryonic human) - FMA:62155 + subfascicular nucleus (post-embryonic human) @@ -76992,8 +72656,7 @@ - medial dorsal nucleus of thalamus (post-embryonic human) - FMA:62156 + medial dorsal nucleus of thalamus (post-embryonic human) @@ -77012,8 +72675,7 @@ - paralaminar part of medial dorsal nucleus (post-embryonic human) - FMA:62160 + paralaminar part of medial dorsal nucleus (post-embryonic human) @@ -77032,8 +72694,7 @@ - magnocellular part of medial dorsal nucleus (post-embryonic human) - FMA:62161 + magnocellular part of medial dorsal nucleus (post-embryonic human) @@ -77052,8 +72713,7 @@ - parvocellular part of medial dorsal nucleus (post-embryonic human) - FMA:62162 + parvocellular part of medial dorsal nucleus (post-embryonic human) @@ -77072,8 +72732,7 @@ - densocellular part of medial dorsal nucleus (post-embryonic human) - FMA:62163 + densocellular part of medial dorsal nucleus (post-embryonic human) @@ -77092,8 +72751,7 @@ - rostral intralaminar nuclear group (post-embryonic human) - FMA:62164 + rostral intralaminar nuclear group (post-embryonic human) @@ -77112,8 +72770,7 @@ - centromedian nucleus of thalamus (post-embryonic human) - FMA:62165 + centromedian nucleus of thalamus (post-embryonic human) @@ -77132,8 +72789,7 @@ - parafascicular nucleus (post-embryonic human) - FMA:62166 + parafascicular nucleus (post-embryonic human) @@ -77152,8 +72808,7 @@ - central dorsal nucleus of thalamus (post-embryonic human) - FMA:62169 + central dorsal nucleus of thalamus (post-embryonic human) @@ -77172,8 +72827,7 @@ - central lateral nucleus (post-embryonic human) - FMA:62170 + central lateral nucleus (post-embryonic human) @@ -77192,8 +72846,7 @@ - central medial nucleus (post-embryonic human) - FMA:62171 + central medial nucleus (post-embryonic human) @@ -77212,8 +72865,7 @@ - paracentral nucleus (post-embryonic human) - FMA:62172 + paracentral nucleus (post-embryonic human) @@ -77232,8 +72884,7 @@ - lateral nuclear group of thalamus (post-embryonic human) - FMA:62174 + lateral nuclear group of thalamus (post-embryonic human) @@ -77252,8 +72903,7 @@ - lateral dorsal nucleus (post-embryonic human) - FMA:62176 + lateral dorsal nucleus (post-embryonic human) @@ -77272,8 +72922,7 @@ - lateral posterior nucleus of thalamus (post-embryonic human) - FMA:62177 + lateral posterior nucleus of thalamus (post-embryonic human) @@ -77292,8 +72941,7 @@ - pulvinar nucleus (post-embryonic human) - FMA:62178 + pulvinar nucleus (post-embryonic human) @@ -77312,8 +72960,7 @@ - oral pulvinar nucleus (post-embryonic human) - FMA:62180 + oral pulvinar nucleus (post-embryonic human) @@ -77332,8 +72979,7 @@ - lateral pulvinar nucleus (post-embryonic human) - FMA:62181 + lateral pulvinar nucleus (post-embryonic human) @@ -77352,8 +72998,7 @@ - medial pulvinar nucleus (post-embryonic human) - FMA:62182 + medial pulvinar nucleus (post-embryonic human) @@ -77372,8 +73017,7 @@ - inferior pulvinar nucleus (post-embryonic human) - FMA:62183 + inferior pulvinar nucleus (post-embryonic human) @@ -77392,8 +73036,7 @@ - ventral anterior nucleus of thalamus (post-embryonic human) - FMA:62184 + ventral anterior nucleus of thalamus (post-embryonic human) @@ -77412,8 +73055,7 @@ - ventral lateral nucleus of thalamus (post-embryonic human) - FMA:62186 + ventral lateral nucleus of thalamus (post-embryonic human) @@ -77432,8 +73074,7 @@ - ventral posterior nucleus of thalamus (post-embryonic human) - FMA:62187 + ventral posterior nucleus of thalamus (post-embryonic human) @@ -77452,8 +73093,7 @@ - parvocellular part of ventral anterior nucleus (post-embryonic human) - FMA:62191 + parvocellular part of ventral anterior nucleus (post-embryonic human) @@ -77472,8 +73112,7 @@ - magnocellular part of ventral anterior nucleus (post-embryonic human) - FMA:62192 + magnocellular part of ventral anterior nucleus (post-embryonic human) @@ -77492,8 +73131,7 @@ - oral part of ventral lateral nucleus (post-embryonic human) - FMA:62193 + oral part of ventral lateral nucleus (post-embryonic human) @@ -77512,8 +73150,7 @@ - caudal part of ventral lateral nucleus (post-embryonic human) - FMA:62194 + caudal part of ventral lateral nucleus (post-embryonic human) @@ -77532,8 +73169,7 @@ - medial part of ventral lateral nucleus (post-embryonic human) - FMA:62195 + medial part of ventral lateral nucleus (post-embryonic human) @@ -77552,8 +73188,7 @@ - pars postrema of ventral lateral nucleus (post-embryonic human) - FMA:62196 + pars postrema of ventral lateral nucleus (post-embryonic human) @@ -77572,8 +73207,7 @@ - area X of ventral lateral nucleus (post-embryonic human) - FMA:62198 + area X of ventral lateral nucleus (post-embryonic human) @@ -77592,8 +73226,7 @@ - ventral posteroinferior nucleus (post-embryonic human) - FMA:62199 + ventral posteroinferior nucleus (post-embryonic human) @@ -77612,8 +73245,7 @@ - ventral posterolateral nucleus (post-embryonic human) - FMA:62200 + ventral posterolateral nucleus (post-embryonic human) @@ -77632,8 +73264,7 @@ - ventral posteromedial nucleus of thalamus (post-embryonic human) - FMA:62202 + ventral posteromedial nucleus of thalamus (post-embryonic human) @@ -77652,8 +73283,7 @@ - oral part of ventral posterolateral nucleus (post-embryonic human) - FMA:62205 + oral part of ventral posterolateral nucleus (post-embryonic human) @@ -77672,8 +73302,7 @@ - caudal part of ventral posterolateral nucleus of thalamus (post-embryonic human) - FMA:62206 + caudal part of ventral posterolateral nucleus of thalamus (post-embryonic human) @@ -77692,8 +73321,7 @@ - parvocellular part of ventral posteromedial nucleus (post-embryonic human) - FMA:62207 + parvocellular part of ventral posteromedial nucleus (post-embryonic human) @@ -77712,8 +73340,7 @@ - principal part of ventral posteromedial nucleus (post-embryonic human) - FMA:62208 + principal part of ventral posteromedial nucleus (post-embryonic human) @@ -77732,8 +73359,7 @@ - lateral geniculate body (post-embryonic human) - FMA:62209 + lateral geniculate body (post-embryonic human) @@ -77752,8 +73378,7 @@ - vagus X nerve trunk (post-embryonic human) - FMA:6221 + vagus X nerve trunk (post-embryonic human) @@ -77772,8 +73397,7 @@ - medial geniculate body (post-embryonic human) - FMA:62211 + medial geniculate body (post-embryonic human) @@ -77792,8 +73416,7 @@ - dorsal lateral geniculate nucleus (post-embryonic human) - FMA:62214 + dorsal lateral geniculate nucleus (post-embryonic human) @@ -77812,8 +73435,7 @@ - ventral lateral geniculate nucleus (post-embryonic human) - FMA:62215 + ventral lateral geniculate nucleus (post-embryonic human) @@ -77832,8 +73454,7 @@ - dorsal nucleus of medial geniculate body (post-embryonic human) - FMA:62216 + dorsal nucleus of medial geniculate body (post-embryonic human) @@ -77852,8 +73473,7 @@ - ventral nucleus of medial geniculate body (post-embryonic human) - FMA:62217 + ventral nucleus of medial geniculate body (post-embryonic human) @@ -77872,8 +73492,7 @@ - magnocellular nucleus of medial geniculate body (post-embryonic human) - FMA:62218 + magnocellular nucleus of medial geniculate body (post-embryonic human) @@ -77892,8 +73511,7 @@ - limitans nucleus (post-embryonic human) - FMA:62220 + limitans nucleus (post-embryonic human) @@ -77912,8 +73530,7 @@ - posterior nucleus of thalamus (post-embryonic human) - FMA:62221 + posterior nucleus of thalamus (post-embryonic human) @@ -77932,8 +73549,7 @@ - suprageniculate nucleus of thalamus (post-embryonic human) - FMA:62222 + suprageniculate nucleus of thalamus (post-embryonic human) @@ -77952,8 +73568,7 @@ - submedial nucleus of thalamus (post-embryonic human) - FMA:62223 + submedial nucleus of thalamus (post-embryonic human) @@ -77972,8 +73587,7 @@ - superior vagus X ganglion (post-embryonic human) - FMA:6229 + superior vagus X ganglion (post-embryonic human) @@ -77992,8 +73606,7 @@ - inferior vagus X ganglion (post-embryonic human) - FMA:6230 + inferior vagus X ganglion (post-embryonic human) @@ -78012,8 +73625,7 @@ - preoptic area (post-embryonic human) - FMA:62313 + preoptic area (post-embryonic human) @@ -78032,8 +73644,7 @@ - anteroventral periventricular nucleus (post-embryonic human) - FMA:62314 + anteroventral periventricular nucleus (post-embryonic human) @@ -78052,8 +73663,7 @@ - supraoptic crest (post-embryonic human) - FMA:62315 + supraoptic crest (post-embryonic human) @@ -78072,8 +73682,7 @@ - supraoptic nucleus (post-embryonic human) - FMA:62317 + supraoptic nucleus (post-embryonic human) @@ -78092,8 +73701,7 @@ - anterior nucleus of hypothalamus (post-embryonic human) - FMA:62319 + anterior nucleus of hypothalamus (post-embryonic human) @@ -78112,8 +73720,7 @@ - paraventricular nucleus of hypothalamus (post-embryonic human) - FMA:62320 + paraventricular nucleus of hypothalamus (post-embryonic human) @@ -78132,8 +73739,7 @@ - median preoptic nucleus (post-embryonic human) - FMA:62323 + median preoptic nucleus (post-embryonic human) @@ -78152,8 +73758,7 @@ - preoptic periventricular nucleus (post-embryonic human) - FMA:62324 + preoptic periventricular nucleus (post-embryonic human) @@ -78172,8 +73777,7 @@ - lateral preoptic nucleus (post-embryonic human) - FMA:62326 + lateral preoptic nucleus (post-embryonic human) @@ -78192,8 +73796,7 @@ - tuber cinereum (post-embryonic human) - FMA:62327 + tuber cinereum (post-embryonic human) @@ -78212,8 +73815,7 @@ - intermediate periventricular nucleus (post-embryonic human) - FMA:62328 + intermediate periventricular nucleus (post-embryonic human) @@ -78232,8 +73834,7 @@ - arcuate nucleus of hypothalamus (post-embryonic human) - FMA:62329 + arcuate nucleus of hypothalamus (post-embryonic human) @@ -78252,8 +73853,7 @@ - retrochiasmatic area (post-embryonic human) - FMA:62330 + retrochiasmatic area (post-embryonic human) @@ -78272,8 +73872,7 @@ - dorsomedial nucleus of hypothalamus (post-embryonic human) - FMA:62331 + dorsomedial nucleus of hypothalamus (post-embryonic human) @@ -78292,8 +73891,7 @@ - ventromedial nucleus of hypothalamus (post-embryonic human) - FMA:62332 + ventromedial nucleus of hypothalamus (post-embryonic human) @@ -78312,8 +73910,7 @@ - tuberomammillary nucleus (post-embryonic human) - FMA:62335 + tuberomammillary nucleus (post-embryonic human) @@ -78332,8 +73929,7 @@ - lateral tuberal nucleus (post-embryonic human) - FMA:62336 + lateral tuberal nucleus (post-embryonic human) @@ -78352,8 +73948,7 @@ - lateral hypothalamic nucleus (post-embryonic human) - FMA:62337 + lateral hypothalamic nucleus (post-embryonic human) @@ -78372,8 +73967,7 @@ - dorsal hypothalamic area (post-embryonic human) - FMA:62339 + dorsal hypothalamic area (post-embryonic human) @@ -78392,8 +73986,7 @@ - pharyngeal branch of vagus nerve (post-embryonic human) - FMA:6234 + pharyngeal branch of vagus nerve (post-embryonic human) @@ -78412,8 +74005,7 @@ - lateral mammillary nucleus (post-embryonic human) - FMA:62341 + lateral mammillary nucleus (post-embryonic human) @@ -78432,8 +74024,7 @@ - medial mammillary nucleus (post-embryonic human) - FMA:62342 + medial mammillary nucleus (post-embryonic human) @@ -78452,8 +74043,7 @@ - medial part of medial mammillary nucleus (post-embryonic human) - FMA:62345 + medial part of medial mammillary nucleus (post-embryonic human) @@ -78472,8 +74062,7 @@ - lateral part of medial mammillary nucleus (post-embryonic human) - FMA:62346 + lateral part of medial mammillary nucleus (post-embryonic human) @@ -78492,8 +74081,7 @@ - supramammillary nucleus (post-embryonic human) - FMA:62347 + supramammillary nucleus (post-embryonic human) @@ -78512,8 +74100,7 @@ - premammillary nucleus (post-embryonic human) - FMA:62348 + premammillary nucleus (post-embryonic human) @@ -78532,8 +74119,7 @@ - posterior periventricular nucleus (post-embryonic human) - FMA:62349 + posterior periventricular nucleus (post-embryonic human) @@ -78552,8 +74138,7 @@ - posterior nucleus of hypothalamus (post-embryonic human) - FMA:62350 + posterior nucleus of hypothalamus (post-embryonic human) @@ -78572,8 +74157,7 @@ - lateral habenular nucleus (post-embryonic human) - FMA:62372 + lateral habenular nucleus (post-embryonic human) @@ -78592,8 +74176,7 @@ - medial habenular nucleus (post-embryonic human) - FMA:62373 + medial habenular nucleus (post-embryonic human) @@ -78612,8 +74195,7 @@ - superior laryngeal nerve (post-embryonic human) - FMA:6239 + superior laryngeal nerve (post-embryonic human) @@ -78632,8 +74214,7 @@ - midbrain tegmentum (post-embryonic human) - FMA:62393 + midbrain tegmentum (post-embryonic human) @@ -78652,8 +74233,7 @@ - cerebral peduncle (post-embryonic human) - FMA:62394 + cerebral peduncle (post-embryonic human) @@ -78672,8 +74252,7 @@ - pretectal region (post-embryonic human) - FMA:62402 + pretectal region (post-embryonic human) @@ -78692,8 +74271,7 @@ - superior colliculus (post-embryonic human) - FMA:62403 + superior colliculus (post-embryonic human) @@ -78712,8 +74290,7 @@ - inferior colliculus (post-embryonic human) - FMA:62404 + inferior colliculus (post-embryonic human) @@ -78732,8 +74309,7 @@ - midbrain reticular formation (post-embryonic human) - FMA:62406 + midbrain reticular formation (post-embryonic human) @@ -78752,8 +74328,7 @@ - red nucleus (post-embryonic human) - FMA:62407 + red nucleus (post-embryonic human) @@ -78772,8 +74347,7 @@ - sensory epithelium (post-embryonic human) - FMA:62410 + sensory epithelium (post-embryonic human) @@ -78792,8 +74366,7 @@ - gustatory epithelium (post-embryonic human) - FMA:62412 + gustatory epithelium (post-embryonic human) @@ -78812,8 +74385,7 @@ - auditory radiation (post-embryonic human) - FMA:62413 + auditory radiation (post-embryonic human) @@ -78832,8 +74404,7 @@ - lateral orbital gyrus (post-embryonic human) - FMA:62418 + lateral orbital gyrus (post-embryonic human) @@ -78852,8 +74423,7 @@ - medial orbital gyrus (post-embryonic human) - FMA:62419 + medial orbital gyrus (post-embryonic human) @@ -78872,8 +74442,7 @@ - spinal cord segment (post-embryonic human) - FMA:62420 + spinal cord segment (post-embryonic human) @@ -78892,8 +74461,7 @@ - T1 segment of thoracic spinal cord (post-embryonic human) - FMA:62421 + T1 segment of thoracic spinal cord (post-embryonic human) @@ -78912,8 +74480,7 @@ - T2 segment of thoracic spinal cord (post-embryonic human) - FMA:62422 + T2 segment of thoracic spinal cord (post-embryonic human) @@ -78932,8 +74499,7 @@ - gingival epithelium (post-embryonic human) - FMA:62423 + gingival epithelium (post-embryonic human) @@ -78952,8 +74518,7 @@ - archicortex (post-embryonic human) - FMA:62424 + archicortex (post-embryonic human) @@ -78972,8 +74537,7 @@ - neocortex (post-embryonic human) - FMA:62429 + neocortex (post-embryonic human) @@ -78992,8 +74556,7 @@ - paleocortex (post-embryonic human) - FMA:62430 + paleocortex (post-embryonic human) @@ -79012,8 +74575,7 @@ - cingulate gyrus (post-embryonic human) - FMA:62434 + cingulate gyrus (post-embryonic human) @@ -79032,8 +74594,7 @@ - lateral longitudinal stria (post-embryonic human) - FMA:62439 + lateral longitudinal stria (post-embryonic human) @@ -79052,8 +74613,7 @@ - dorsal oculomotor nucleus (post-embryonic human) - FMA:62442 + dorsal oculomotor nucleus (post-embryonic human) @@ -79072,8 +74632,7 @@ - nucleus of midbrain reticular formation (post-embryonic human) - FMA:62443 + nucleus of midbrain reticular formation (post-embryonic human) @@ -79092,8 +74651,7 @@ - peduncle of diencephalon (post-embryonic human) - FMA:62444 + peduncle of diencephalon (post-embryonic human) @@ -79112,8 +74670,7 @@ - commissure of diencephalon (post-embryonic human) - FMA:62445 + commissure of diencephalon (post-embryonic human) @@ -79132,8 +74689,7 @@ - decussation of diencephalon (post-embryonic human) - FMA:62446 + decussation of diencephalon (post-embryonic human) @@ -79152,8 +74708,7 @@ - tract of diencephalon (post-embryonic human) - FMA:62447 + tract of diencephalon (post-embryonic human) @@ -79172,8 +74727,7 @@ - white matter lamina of diencephalon (post-embryonic human) - FMA:62449 + white matter lamina of diencephalon (post-embryonic human) @@ -79192,8 +74746,7 @@ - epithelium of nasopharynx (post-embryonic human) - FMA:62452 + epithelium of nasopharynx (post-embryonic human) @@ -79212,8 +74765,7 @@ - epithelium of oropharynx (post-embryonic human) - FMA:62453 + epithelium of oropharynx (post-embryonic human) @@ -79232,8 +74784,7 @@ - epithelium of laryngopharynx (post-embryonic human) - FMA:62454 + epithelium of laryngopharynx (post-embryonic human) @@ -79252,8 +74803,7 @@ - recurrent laryngeal nerve (post-embryonic human) - FMA:6246 + recurrent laryngeal nerve (post-embryonic human) @@ -79272,8 +74822,7 @@ - lateral medullary lamina of globus pallidus (post-embryonic human) - FMA:62469 + lateral medullary lamina of globus pallidus (post-embryonic human) @@ -79292,8 +74841,7 @@ - medial medullary lamina of globus pallidus (post-embryonic human) - FMA:62470 + medial medullary lamina of globus pallidus (post-embryonic human) @@ -79312,8 +74860,7 @@ - accessory medullary lamina of globus pallidus (post-embryonic human) - FMA:62471 + accessory medullary lamina of globus pallidus (post-embryonic human) @@ -79332,8 +74879,7 @@ - lamina of septum pellucidum (post-embryonic human) - FMA:62472 + lamina of septum pellucidum (post-embryonic human) @@ -79352,8 +74898,7 @@ - prepyriform area (post-embryonic human) - FMA:62484 + prepyriform area (post-embryonic human) @@ -79372,8 +74917,7 @@ - periamygdaloid area (post-embryonic human) - FMA:62485 + periamygdaloid area (post-embryonic human) @@ -79392,8 +74936,7 @@ - presubiculum (post-embryonic human) - FMA:62486 + presubiculum (post-embryonic human) @@ -79412,8 +74955,7 @@ - induseum griseum (post-embryonic human) - FMA:62488 + induseum griseum (post-embryonic human) @@ -79432,8 +74974,7 @@ - Ammon's horn (post-embryonic human) - FMA:62493 + Ammon's horn (post-embryonic human) @@ -79452,8 +74993,7 @@ - epithelium of respiratory bronchiole (post-embryonic human) - FMA:62498 + epithelium of respiratory bronchiole (post-embryonic human) @@ -79472,8 +75012,7 @@ - isthmus of cingulate gyrus (post-embryonic human) - FMA:62502 + isthmus of cingulate gyrus (post-embryonic human) @@ -79492,8 +75031,7 @@ - primary bronchiole (post-embryonic human) - FMA:62510 + primary bronchiole (post-embryonic human) @@ -79512,8 +75050,7 @@ - basal ganglion (post-embryonic human) - FMA:62514 + basal ganglion (post-embryonic human) @@ -79532,8 +75069,7 @@ - lamina propria (post-embryonic human) - FMA:62517 + lamina propria (post-embryonic human) @@ -79552,8 +75088,7 @@ - lumen of secondary bronchus (post-embryonic human) - FMA:62520 + lumen of secondary bronchus (post-embryonic human) @@ -79572,8 +75107,7 @@ - sympathetic trunk (post-embryonic human) - FMA:6258 + sympathetic trunk (post-embryonic human) @@ -79592,8 +75126,7 @@ - lumen of tertiary bronchus (post-embryonic human) - FMA:62593 + lumen of tertiary bronchus (post-embryonic human) @@ -79612,8 +75145,7 @@ - cervical sympathetic nerve trunk (post-embryonic human) - FMA:6261 + cervical sympathetic nerve trunk (post-embryonic human) @@ -79632,8 +75164,7 @@ - thoracic sympathetic nerve trunk (post-embryonic human) - FMA:6262 + thoracic sympathetic nerve trunk (post-embryonic human) @@ -79652,8 +75183,7 @@ - lumbar sympathetic nerve trunk (post-embryonic human) - FMA:6263 + lumbar sympathetic nerve trunk (post-embryonic human) @@ -79672,8 +75202,7 @@ - sacral sympathetic nerve trunk (post-embryonic human) - FMA:6264 + sacral sympathetic nerve trunk (post-embryonic human) @@ -79692,8 +75221,7 @@ - bronchial lumen (post-embryonic human) - FMA:62646 + bronchial lumen (post-embryonic human) @@ -79712,8 +75240,7 @@ - cartilage of bronchus (post-embryonic human) - FMA:62649 + cartilage of bronchus (post-embryonic human) @@ -79732,8 +75259,7 @@ - bronchial mucosa (post-embryonic human) - FMA:62652 + bronchial mucosa (post-embryonic human) @@ -79752,8 +75278,7 @@ - submucosa of bronchus (post-embryonic human) - FMA:62653 + submucosa of bronchus (post-embryonic human) @@ -79772,8 +75297,7 @@ - mucosa of segmental bronchus (post-embryonic human) - FMA:62666 + mucosa of segmental bronchus (post-embryonic human) @@ -79792,8 +75316,7 @@ - mucosa of lobar bronchus (post-embryonic human) - FMA:62668 + mucosa of lobar bronchus (post-embryonic human) @@ -79812,8 +75335,7 @@ - submucosa of lobar bronchus (post-embryonic human) - FMA:62669 + submucosa of lobar bronchus (post-embryonic human) @@ -79832,8 +75354,7 @@ - submucosa of segmental bronchus (post-embryonic human) - FMA:62670 + submucosa of segmental bronchus (post-embryonic human) @@ -79852,8 +75373,7 @@ - mucosa of bronchiole (post-embryonic human) - FMA:62774 + mucosa of bronchiole (post-embryonic human) @@ -79872,8 +75392,7 @@ - submucosa of bronchiole (post-embryonic human) - FMA:62775 + submucosa of bronchiole (post-embryonic human) @@ -79892,8 +75411,7 @@ - pulmonary surfactant (post-embryonic human) - FMA:62780 + pulmonary surfactant (post-embryonic human) @@ -79912,8 +75430,7 @@ - terminal bronchiole epithelium (post-embryonic human) - FMA:62794 + terminal bronchiole epithelium (post-embryonic human) @@ -79932,8 +75449,7 @@ - heterogeneous tissue (post-embryonic human) - FMA:62798 + heterogeneous tissue (post-embryonic human) @@ -79952,8 +75468,7 @@ - thoracic splanchnic nerve (post-embryonic human) - FMA:6280 + thoracic splanchnic nerve (post-embryonic human) @@ -79972,8 +75487,7 @@ - white pulp of spleen (post-embryonic human) - FMA:62805 + white pulp of spleen (post-embryonic human) @@ -79992,8 +75506,7 @@ - cell cluster (post-embryonic human) - FMA:62807 + cell cluster (post-embryonic human) @@ -80012,8 +75525,7 @@ - greater splanchnic nerve (post-embryonic human) - FMA:6281 + greater splanchnic nerve (post-embryonic human) @@ -80032,8 +75544,7 @@ - periarterial lymphatic sheath (post-embryonic human) - FMA:62810 + periarterial lymphatic sheath (post-embryonic human) @@ -80052,8 +75563,7 @@ - epithelium-associated lymphoid tissue (post-embryonic human) - FMA:62811 + epithelium-associated lymphoid tissue (post-embryonic human) @@ -80072,8 +75582,7 @@ - spleen venous sinus (post-embryonic human) - FMA:62815 + spleen venous sinus (post-embryonic human) @@ -80092,8 +75601,7 @@ - mucosa-associated lymphoid tissue (post-embryonic human) - FMA:62819 + mucosa-associated lymphoid tissue (post-embryonic human) @@ -80112,8 +75620,7 @@ - lesser splanchnic nerve (post-embryonic human) - FMA:6282 + lesser splanchnic nerve (post-embryonic human) @@ -80132,8 +75639,7 @@ - gut-associated lymphoid tissue (post-embryonic human) - FMA:62820 + gut-associated lymphoid tissue (post-embryonic human) @@ -80152,8 +75658,7 @@ - bronchial-associated lymphoid tissue (post-embryonic human) - FMA:62821 + bronchial-associated lymphoid tissue (post-embryonic human) @@ -80172,8 +75677,7 @@ - least splanchnic nerve (post-embryonic human) - FMA:6283 + least splanchnic nerve (post-embryonic human) @@ -80192,8 +75696,7 @@ - hilum of lymph node (post-embryonic human) - FMA:62842 + hilum of lymph node (post-embryonic human) @@ -80212,8 +75715,7 @@ - lumbar splanchnic nerve (post-embryonic human) - FMA:6287 + lumbar splanchnic nerve (post-embryonic human) @@ -80232,8 +75734,7 @@ - sacral splanchnic nerve (post-embryonic human) - FMA:6288 + sacral splanchnic nerve (post-embryonic human) @@ -80252,8 +75753,7 @@ - mucous gland (post-embryonic human) - FMA:62888 + mucous gland (post-embryonic human) @@ -80272,8 +75772,7 @@ - serous gland (post-embryonic human) - FMA:62889 + serous gland (post-embryonic human) @@ -80292,8 +75791,7 @@ - circular muscle layer of muscular coat (post-embryonic human) - FMA:62899 + circular muscle layer of muscular coat (post-embryonic human) @@ -80312,8 +75810,7 @@ - longitudinal muscle layer of muscular coat (post-embryonic human) - FMA:62900 + longitudinal muscle layer of muscular coat (post-embryonic human) @@ -80332,8 +75829,7 @@ - substantia nigra pars compacta (post-embryonic human) - FMA:62907 + substantia nigra pars compacta (post-embryonic human) @@ -80352,8 +75848,7 @@ - substantia nigra pars reticulata (post-embryonic human) - FMA:62908 + substantia nigra pars reticulata (post-embryonic human) @@ -80372,8 +75867,7 @@ - basal lamina of epithelium (post-embryonic human) - FMA:62918 + basal lamina of epithelium (post-embryonic human) @@ -80392,8 +75886,7 @@ - lamina lucida (post-embryonic human) - FMA:62921 + lamina lucida (post-embryonic human) @@ -80412,8 +75905,7 @@ - reticular lamina of epithelium (post-embryonic human) - FMA:62924 + reticular lamina of epithelium (post-embryonic human) @@ -80432,8 +75924,7 @@ - gastric pit (post-embryonic human) - FMA:62947 + gastric pit (post-embryonic human) @@ -80452,8 +75943,7 @@ - anatomical entity (post-embryonic human) - FMA:62955 + anatomical entity (post-embryonic human) @@ -80472,8 +75962,7 @@ - chyme (post-embryonic human) - FMA:62961 + chyme (post-embryonic human) @@ -80492,8 +75981,7 @@ - ingested food (post-embryonic human) - FMA:62964 + ingested food (post-embryonic human) @@ -80512,8 +76000,7 @@ - semen (post-embryonic human) - FMA:62966 + semen (post-embryonic human) @@ -80532,8 +76019,7 @@ - seminal fluid (post-embryonic human) - FMA:62967 + seminal fluid (post-embryonic human) @@ -80552,8 +76038,7 @@ - bulbourethral gland secretion (post-embryonic human) - FMA:62968 + bulbourethral gland secretion (post-embryonic human) @@ -80572,8 +76057,7 @@ - seminal vesicle fluid (post-embryonic human) - FMA:62969 + seminal vesicle fluid (post-embryonic human) @@ -80592,8 +76076,7 @@ - blood plasma (post-embryonic human) - FMA:62970 + blood plasma (post-embryonic human) @@ -80612,8 +76095,7 @@ - bile (post-embryonic human) - FMA:62971 + bile (post-embryonic human) @@ -80632,8 +76114,7 @@ - gastric juice (post-embryonic human) - FMA:62972 + gastric juice (post-embryonic human) @@ -80652,8 +76133,7 @@ - pancreatic juice (post-embryonic human) - FMA:62973 + pancreatic juice (post-embryonic human) @@ -80672,8 +76152,7 @@ - intestine secretion (post-embryonic human) - FMA:62974 + intestine secretion (post-embryonic human) @@ -80692,8 +76171,7 @@ - sheath of Schwann (post-embryonic human) - FMA:62976 + sheath of Schwann (post-embryonic human) @@ -80712,8 +76190,7 @@ - myelin (post-embryonic human) - FMA:62977 + myelin (post-embryonic human) @@ -80732,8 +76209,7 @@ - entire myelin sheath (post-embryonic human) - FMA:62983 + entire myelin sheath (post-embryonic human) @@ -80752,8 +76228,7 @@ - esophagus mucosa (post-embryonic human) - FMA:62996 + esophagus mucosa (post-embryonic human) @@ -80772,8 +76247,7 @@ - submucosa of esophagus (post-embryonic human) - FMA:62997 + submucosa of esophagus (post-embryonic human) @@ -80792,8 +76266,7 @@ - muscle layer of esophagus (post-embryonic human) - FMA:62998 + muscle layer of esophagus (post-embryonic human) @@ -80812,8 +76285,7 @@ - tooth apex (post-embryonic human) - FMA:63000 + tooth apex (post-embryonic human) @@ -80832,8 +76304,7 @@ - odontoid tissue (post-embryonic human) - FMA:63001 + odontoid tissue (post-embryonic human) @@ -80852,8 +76323,7 @@ - adventitia of esophagus (post-embryonic human) - FMA:63006 + adventitia of esophagus (post-embryonic human) @@ -80872,8 +76342,7 @@ - lamina propria of esophagus (post-embryonic human) - FMA:63050 + lamina propria of esophagus (post-embryonic human) @@ -80892,8 +76361,7 @@ - serosa of esophagus (post-embryonic human) - FMA:63057 + serosa of esophagus (post-embryonic human) @@ -80912,8 +76380,7 @@ - esophagus muscularis mucosa (post-embryonic human) - FMA:63059 + esophagus muscularis mucosa (post-embryonic human) @@ -80932,8 +76399,7 @@ - epithelium of esophagus (post-embryonic human) - FMA:63063 + epithelium of esophagus (post-embryonic human) @@ -80952,8 +76418,7 @@ - blood serum (post-embryonic human) - FMA:63083 + blood serum (post-embryonic human) @@ -80972,8 +76437,7 @@ - sweat of palm (post-embryonic human) - FMA:63084 + sweat of palm (post-embryonic human) @@ -80992,8 +76456,7 @@ - sweat of axilla (post-embryonic human) - FMA:63085 + sweat of axilla (post-embryonic human) @@ -81012,8 +76475,7 @@ - parenchyma of pancreas (post-embryonic human) - FMA:63120 + parenchyma of pancreas (post-embryonic human) @@ -81032,8 +76494,7 @@ - stroma of pancreas (post-embryonic human) - FMA:63121 + stroma of pancreas (post-embryonic human) @@ -81052,8 +76513,7 @@ - venule (post-embryonic human) - FMA:63130 + venule (post-embryonic human) @@ -81072,8 +76532,7 @@ - sinusoid (post-embryonic human) - FMA:63131 + sinusoid (post-embryonic human) @@ -81092,8 +76551,7 @@ - sinusoidal space (post-embryonic human) - FMA:63133 + sinusoidal space (post-embryonic human) @@ -81112,8 +76570,7 @@ - nasal cavity epithelium (post-embryonic human) - FMA:63140 + nasal cavity epithelium (post-embryonic human) @@ -81132,8 +76589,7 @@ - epithelium of external nose (post-embryonic human) - FMA:63143 + epithelium of external nose (post-embryonic human) @@ -81152,8 +76608,7 @@ - wall of orbit (post-embryonic human) - FMA:63144 + wall of orbit (post-embryonic human) @@ -81172,8 +76627,7 @@ - second cervical dorsal root ganglion (post-embryonic human) - FMA:6315 + second cervical dorsal root ganglion (post-embryonic human) @@ -81192,8 +76646,7 @@ - third cervical dorsal root ganglion (post-embryonic human) - FMA:6316 + third cervical dorsal root ganglion (post-embryonic human) @@ -81212,8 +76665,7 @@ - liver perisinusoidal space (post-embryonic human) - FMA:63162 + liver perisinusoidal space (post-embryonic human) @@ -81232,8 +76684,7 @@ - fourth cervical dorsal root ganglion (post-embryonic human) - FMA:6317 + fourth cervical dorsal root ganglion (post-embryonic human) @@ -81252,8 +76703,7 @@ - fifth cervical dorsal root ganglion (post-embryonic human) - FMA:6318 + fifth cervical dorsal root ganglion (post-embryonic human) @@ -81272,8 +76722,7 @@ - arteriole (post-embryonic human) - FMA:63182 + arteriole (post-embryonic human) @@ -81292,8 +76741,7 @@ - blood vessel (post-embryonic human) - FMA:63183 + blood vessel (post-embryonic human) @@ -81312,8 +76760,7 @@ - sixth cervical dorsal root ganglion (post-embryonic human) - FMA:6319 + sixth cervical dorsal root ganglion (post-embryonic human) @@ -81332,8 +76779,7 @@ - postcapillary venule (post-embryonic human) - FMA:63191 + postcapillary venule (post-embryonic human) @@ -81352,8 +76798,7 @@ - capillary (post-embryonic human) - FMA:63194 + capillary (post-embryonic human) @@ -81372,8 +76817,7 @@ - continuous capillary (post-embryonic human) - FMA:63195 + continuous capillary (post-embryonic human) @@ -81392,8 +76836,7 @@ - fenestrated capillary (post-embryonic human) - FMA:63196 + fenestrated capillary (post-embryonic human) @@ -81412,8 +76855,7 @@ - splenic sinusoid (post-embryonic human) - FMA:63199 + splenic sinusoid (post-embryonic human) @@ -81432,8 +76874,7 @@ - first thoracic dorsal root ganglion (post-embryonic human) - FMA:6321 + first thoracic dorsal root ganglion (post-embryonic human) @@ -81452,8 +76893,7 @@ - collection of collagen fibrils (post-embryonic human) - FMA:63212 + collection of collagen fibrils (post-embryonic human) @@ -81472,8 +76912,7 @@ - second thoracic dorsal root ganglion (post-embryonic human) - FMA:6322 + second thoracic dorsal root ganglion (post-embryonic human) @@ -81492,8 +76931,7 @@ - third thoracic dorsal root ganglion (post-embryonic human) - FMA:6323 + third thoracic dorsal root ganglion (post-embryonic human) @@ -81512,8 +76950,7 @@ - fourth thoracic spinal ganglion (post-embryonic human) - FMA:6324 + fourth thoracic spinal ganglion (post-embryonic human) @@ -81532,8 +76969,7 @@ - epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human) - FMA:63243 + epithelium of crypt of Lieberkuhn of small intestine (post-embryonic human) @@ -81552,8 +76988,7 @@ - fifth thoracic dorsal root ganglion (post-embryonic human) - FMA:6325 + fifth thoracic dorsal root ganglion (post-embryonic human) @@ -81572,8 +77007,7 @@ - myenteric nerve plexus (post-embryonic human) - FMA:63252 + myenteric nerve plexus (post-embryonic human) @@ -81592,8 +77026,7 @@ - sixth thoracic dorsal root ganglion (post-embryonic human) - FMA:6326 + sixth thoracic dorsal root ganglion (post-embryonic human) @@ -81612,8 +77045,7 @@ - seventh thoracic dorsal root ganglion (post-embryonic human) - FMA:6327 + seventh thoracic dorsal root ganglion (post-embryonic human) @@ -81632,8 +77064,7 @@ - eighth thoracic dorsal root ganglion (post-embryonic human) - FMA:6328 + eighth thoracic dorsal root ganglion (post-embryonic human) @@ -81652,8 +77083,7 @@ - ninth thoracic dorsal root ganglion (post-embryonic human) - FMA:6329 + ninth thoracic dorsal root ganglion (post-embryonic human) @@ -81672,8 +77102,7 @@ - tenth thoracic dorsal root ganglion (post-embryonic human) - FMA:6330 + tenth thoracic dorsal root ganglion (post-embryonic human) @@ -81692,8 +77121,7 @@ - intestinal villus of duodenum (post-embryonic human) - FMA:63300 + intestinal villus of duodenum (post-embryonic human) @@ -81712,8 +77140,7 @@ - intestinal villus of jejunum (post-embryonic human) - FMA:63301 + intestinal villus of jejunum (post-embryonic human) @@ -81732,8 +77159,7 @@ - intestinal villus of ileum (post-embryonic human) - FMA:63302 + intestinal villus of ileum (post-embryonic human) @@ -81752,8 +77178,7 @@ - eleventh thoracic dorsal root ganglion (post-embryonic human) - FMA:6331 + eleventh thoracic dorsal root ganglion (post-embryonic human) @@ -81772,8 +77197,7 @@ - twelfth thoracic dorsal root ganglion (post-embryonic human) - FMA:6332 + twelfth thoracic dorsal root ganglion (post-embryonic human) @@ -81792,8 +77216,7 @@ - first lumbar dorsal root ganglion (post-embryonic human) - FMA:6335 + first lumbar dorsal root ganglion (post-embryonic human) @@ -81812,8 +77235,7 @@ - second lumbar dorsal root ganglion (post-embryonic human) - FMA:6336 + second lumbar dorsal root ganglion (post-embryonic human) @@ -81832,8 +77254,7 @@ - third lumbar dorsal root ganglion (post-embryonic human) - FMA:6337 + third lumbar dorsal root ganglion (post-embryonic human) @@ -81852,8 +77273,7 @@ - fourth lumbar dorsal root ganglion (post-embryonic human) - FMA:6338 + fourth lumbar dorsal root ganglion (post-embryonic human) @@ -81872,8 +77292,7 @@ - fifth lumbar dorsal root ganglion (post-embryonic human) - FMA:6339 + fifth lumbar dorsal root ganglion (post-embryonic human) @@ -81892,8 +77311,7 @@ - first sacral dorsal root ganglion (post-embryonic human) - FMA:6342 + first sacral dorsal root ganglion (post-embryonic human) @@ -81912,8 +77330,7 @@ - second sacral dorsal root ganglion (post-embryonic human) - FMA:6343 + second sacral dorsal root ganglion (post-embryonic human) @@ -81932,8 +77349,7 @@ - third sacral dorsal root ganglion (post-embryonic human) - FMA:6344 + third sacral dorsal root ganglion (post-embryonic human) @@ -81952,8 +77368,7 @@ - fourth sacral spinal ganglion (post-embryonic human) - FMA:6345 + fourth sacral spinal ganglion (post-embryonic human) @@ -81972,8 +77387,7 @@ - stomach glandular epithelium (post-embryonic human) - FMA:63458 + stomach glandular epithelium (post-embryonic human) @@ -81992,8 +77406,7 @@ - fifth sacral dorsal root ganglion (post-embryonic human) - FMA:6346 + fifth sacral dorsal root ganglion (post-embryonic human) @@ -82012,8 +77425,7 @@ - esophagus smooth muscle longitudinal layer (post-embryonic human) - FMA:63573 + esophagus smooth muscle longitudinal layer (post-embryonic human) @@ -82032,8 +77444,7 @@ - epithelium of appendix (post-embryonic human) - FMA:63581 + epithelium of appendix (post-embryonic human) @@ -82052,8 +77463,7 @@ - epithelium of intestinal villus (post-embryonic human) - FMA:63587 + epithelium of intestinal villus (post-embryonic human) @@ -82072,8 +77482,7 @@ - gustatory pore (post-embryonic human) - FMA:63589 + gustatory pore (post-embryonic human) @@ -82092,8 +77501,7 @@ - seventh cervical dorsal root ganglion (post-embryonic human) - FMA:6360 + seventh cervical dorsal root ganglion (post-embryonic human) @@ -82112,8 +77520,7 @@ - eighth cervical dorsal root ganglion (post-embryonic human) - FMA:6361 + eighth cervical dorsal root ganglion (post-embryonic human) @@ -82132,8 +77539,7 @@ - anterior inferior iliac spine (post-embryonic human) - FMA:63614 + anterior inferior iliac spine (post-embryonic human) @@ -82152,8 +77558,7 @@ - posterior inferior iliac spine (post-embryonic human) - FMA:63615 + posterior inferior iliac spine (post-embryonic human) @@ -82172,8 +77577,7 @@ - crypt of Lieberkuhn (post-embryonic human) - FMA:63621 + crypt of Lieberkuhn (post-embryonic human) @@ -82192,8 +77596,7 @@ - crypt of Lieberkuhn of large intestine (post-embryonic human) - FMA:63622 + crypt of Lieberkuhn of large intestine (post-embryonic human) @@ -82212,8 +77615,7 @@ - epithelium of crypt of Lieberkuhn of large intestine (post-embryonic human) - FMA:63628 + epithelium of crypt of Lieberkuhn of large intestine (post-embryonic human) @@ -82232,8 +77634,7 @@ - late embryonic stage (post-embryonic human) - FMA:63631 + late embryonic stage (post-embryonic human) @@ -82252,8 +77653,7 @@ - large intestine smooth muscle longitudinal layer (post-embryonic human) - FMA:63637 + large intestine smooth muscle longitudinal layer (post-embryonic human) @@ -82272,8 +77672,7 @@ - lymph vasculature (post-embryonic human) - FMA:63815 + lymph vasculature (post-embryonic human) @@ -82292,8 +77691,7 @@ - acellular anatomical structure (post-embryonic human) - FMA:63863 + acellular anatomical structure (post-embryonic human) @@ -82312,8 +77710,7 @@ - forehead (post-embryonic human) - FMA:63864 + forehead (post-embryonic human) @@ -82332,8 +77729,7 @@ - temporal part of head (post-embryonic human) - FMA:63867 + temporal part of head (post-embryonic human) @@ -82352,8 +77748,7 @@ - acellular membrane (post-embryonic human) - FMA:63871 + acellular membrane (post-embryonic human) @@ -82372,8 +77767,7 @@ - basement membrane of epithelium (post-embryonic human) - FMA:63872 + basement membrane of epithelium (post-embryonic human) @@ -82392,8 +77786,7 @@ - corneal endothelium (post-embryonic human) - FMA:63882 + corneal endothelium (post-embryonic human) @@ -82412,8 +77805,7 @@ - skin of forehead (post-embryonic human) - FMA:63883 + skin of forehead (post-embryonic human) @@ -82432,8 +77824,7 @@ - areolar connective tissue (post-embryonic human) - FMA:63897 + areolar connective tissue (post-embryonic human) @@ -82452,8 +77843,7 @@ - atrial septum primum (post-embryonic human) - FMA:63909 + atrial septum primum (post-embryonic human) @@ -82472,8 +77862,7 @@ - atrial septum secundum (post-embryonic human) - FMA:63910 + atrial septum secundum (post-embryonic human) @@ -82492,8 +77881,7 @@ - stratified cuboidal epithelium (post-embryonic human) - FMA:63912 + stratified cuboidal epithelium (post-embryonic human) @@ -82512,8 +77900,7 @@ - mixed stratified cuboidal and columnar epithelium (post-embryonic human) - FMA:63913 + mixed stratified cuboidal and columnar epithelium (post-embryonic human) @@ -82532,8 +77919,7 @@ - urothelium (post-embryonic human) - FMA:63914 + urothelium (post-embryonic human) @@ -82552,8 +77938,7 @@ - pulmonary alveolus epithelium (post-embryonic human) - FMA:63915 + pulmonary alveolus epithelium (post-embryonic human) @@ -82572,8 +77957,7 @@ - endothelium (post-embryonic human) - FMA:63916 + endothelium (post-embryonic human) @@ -82592,8 +77976,7 @@ - late embryo (post-embryonic human) - FMA:63919 + late embryo (post-embryonic human) @@ -82612,8 +77995,7 @@ - placenta (post-embryonic human) - FMA:63934 + placenta (post-embryonic human) @@ -82632,8 +78014,7 @@ - amniotic cavity (post-embryonic human) - FMA:63941 + amniotic cavity (post-embryonic human) @@ -82652,8 +78033,7 @@ - yolk sac cavity (post-embryonic human) - FMA:63942 + yolk sac cavity (post-embryonic human) @@ -82672,8 +78052,7 @@ - extraembryonic coelomic cavity (post-embryonic human) - FMA:63943 + extraembryonic coelomic cavity (post-embryonic human) @@ -82692,8 +78071,7 @@ - eyelid subcutaneous connective tissue (post-embryonic human) - FMA:63975 + eyelid subcutaneous connective tissue (post-embryonic human) @@ -82712,8 +78090,7 @@ - ligament of sternoclavicular joint (post-embryonic human) - FMA:63980 + ligament of sternoclavicular joint (post-embryonic human) @@ -82732,8 +78109,7 @@ - mucosa of epiglottis (post-embryonic human) - FMA:64015 + mucosa of epiglottis (post-embryonic human) @@ -82752,8 +78128,7 @@ - mucosa of vocal fold (post-embryonic human) - FMA:64017 + mucosa of vocal fold (post-embryonic human) @@ -82772,8 +78147,7 @@ - vestibular ligament (post-embryonic human) - FMA:64147 + vestibular ligament (post-embryonic human) @@ -82792,8 +78166,7 @@ - laryngeal ventricle (post-embryonic human) - FMA:64171 + laryngeal ventricle (post-embryonic human) @@ -82812,8 +78185,7 @@ - feces (post-embryonic human) - FMA:64183 + feces (post-embryonic human) @@ -82832,8 +78204,7 @@ - superior cervical ganglion (post-embryonic human) - FMA:6467 + superior cervical ganglion (post-embryonic human) @@ -82852,8 +78223,7 @@ - middle cervical ganglion (post-embryonic human) - FMA:6468 + middle cervical ganglion (post-embryonic human) @@ -82872,8 +78242,7 @@ - cervicothoracic ganglion (post-embryonic human) - FMA:6469 + cervicothoracic ganglion (post-embryonic human) @@ -82892,8 +78261,7 @@ - cervical ganglion (post-embryonic human) - FMA:6470 + cervical ganglion (post-embryonic human) @@ -82912,8 +78280,7 @@ - thoracic ganglion (post-embryonic human) - FMA:6471 + thoracic ganglion (post-embryonic human) @@ -82932,8 +78299,7 @@ - papillary layer of dermis (post-embryonic human) - FMA:64776 + papillary layer of dermis (post-embryonic human) @@ -82952,8 +78318,7 @@ - reticular layer of dermis (post-embryonic human) - FMA:64778 + reticular layer of dermis (post-embryonic human) @@ -82972,8 +78337,7 @@ - dense regular connective tissue (post-embryonic human) - FMA:64781 + dense regular connective tissue (post-embryonic human) @@ -82992,8 +78356,7 @@ - dense regular elastic tissue (post-embryonic human) - FMA:64782 + dense regular elastic tissue (post-embryonic human) @@ -83012,8 +78375,7 @@ - hyaline cartilage tissue (post-embryonic human) - FMA:64783 + hyaline cartilage tissue (post-embryonic human) @@ -83032,8 +78394,7 @@ - fibrocartilage (post-embryonic human) - FMA:64784 + fibrocartilage (post-embryonic human) @@ -83052,8 +78413,7 @@ - elastic cartilage tissue (post-embryonic human) - FMA:64785 + elastic cartilage tissue (post-embryonic human) @@ -83072,8 +78432,7 @@ - ciliated columnar epithelium (post-embryonic human) - FMA:64798 + ciliated columnar epithelium (post-embryonic human) @@ -83092,8 +78451,7 @@ - glandular columnar epithelium (post-embryonic human) - FMA:64800 + glandular columnar epithelium (post-embryonic human) @@ -83112,8 +78470,7 @@ - olfactory epithelium (post-embryonic human) - FMA:64803 + olfactory epithelium (post-embryonic human) @@ -83132,8 +78489,7 @@ - statoacoustic epithelium (post-embryonic human) - FMA:64804 + statoacoustic epithelium (post-embryonic human) @@ -83152,8 +78508,7 @@ - developing neuroepithelium (post-embryonic human) - FMA:64807 + developing neuroepithelium (post-embryonic human) @@ -83172,8 +78527,7 @@ - proximal tubular epithelium (post-embryonic human) - FMA:64808 + proximal tubular epithelium (post-embryonic human) @@ -83192,8 +78546,7 @@ - scalene muscle (post-embryonic human) - FMA:64829 + scalene muscle (post-embryonic human) @@ -83212,8 +78565,7 @@ - muscle of pelvic diaphragm (post-embryonic human) - FMA:64856 + muscle of pelvic diaphragm (post-embryonic human) @@ -83232,8 +78584,7 @@ - thenar muscle (post-embryonic human) - FMA:64916 + thenar muscle (post-embryonic human) @@ -83252,8 +78603,7 @@ - hypothenar muscle (post-embryonic human) - FMA:64917 + hypothenar muscle (post-embryonic human) @@ -83272,8 +78622,7 @@ - iliopsoas (post-embryonic human) - FMA:64918 + iliopsoas (post-embryonic human) @@ -83292,8 +78641,7 @@ - gluteal muscle (post-embryonic human) - FMA:64922 + gluteal muscle (post-embryonic human) @@ -83312,8 +78660,7 @@ - intrinsic muscle of pes (post-embryonic human) - FMA:65020 + intrinsic muscle of pes (post-embryonic human) @@ -83332,8 +78679,7 @@ - proximal interphalangeal joint (post-embryonic human) - FMA:65022 + proximal interphalangeal joint (post-embryonic human) @@ -83352,8 +78698,7 @@ - distal interphalangeal joint (post-embryonic human) - FMA:65024 + distal interphalangeal joint (post-embryonic human) @@ -83372,8 +78717,7 @@ - inguinal ring (post-embryonic human) - FMA:65075 + inguinal ring (post-embryonic human) @@ -83392,8 +78736,7 @@ - nerve (post-embryonic human) - FMA:65132 + nerve (post-embryonic human) @@ -83412,8 +78755,7 @@ - nerve (post-embryonic human) - FMA:65239 + nerve (post-embryonic human) @@ -83432,8 +78774,7 @@ - axillary nerve trunk (post-embryonic human) - FMA:65265 + axillary nerve trunk (post-embryonic human) @@ -83452,8 +78793,7 @@ - transverse process of lumbar vertebra (post-embryonic human) - FMA:65469 + transverse process of lumbar vertebra (post-embryonic human) @@ -83472,8 +78812,7 @@ - trunk of sciatic nerve (post-embryonic human) - FMA:65507 + trunk of sciatic nerve (post-embryonic human) @@ -83492,8 +78831,7 @@ - autonomic nervous system (post-embryonic human) - FMA:65553 + autonomic nervous system (post-embryonic human) @@ -83512,8 +78850,7 @@ - vertebral ganglion (post-embryonic human) - FMA:6572 + vertebral ganglion (post-embryonic human) @@ -83532,8 +78869,7 @@ - enteric nervous system (post-embryonic human) - FMA:66070 + enteric nervous system (post-embryonic human) @@ -83552,8 +78888,7 @@ - superior diaphragmatic lymph node (post-embryonic human) - FMA:66167 + superior diaphragmatic lymph node (post-embryonic human) @@ -83572,8 +78907,7 @@ - visceral abdominal lymph node (post-embryonic human) - FMA:66178 + visceral abdominal lymph node (post-embryonic human) @@ -83592,8 +78926,7 @@ - suprapyloric lymph node (post-embryonic human) - FMA:66183 + suprapyloric lymph node (post-embryonic human) @@ -83612,8 +78945,7 @@ - subpyloric lymph node (post-embryonic human) - FMA:66184 + subpyloric lymph node (post-embryonic human) @@ -83632,8 +78964,7 @@ - retropyloric lymph node (post-embryonic human) - FMA:66185 + retropyloric lymph node (post-embryonic human) @@ -83652,8 +78983,7 @@ - splenic lymph node (post-embryonic human) - FMA:66187 + splenic lymph node (post-embryonic human) @@ -83672,8 +79002,7 @@ - parietal pelvic lymph node (post-embryonic human) - FMA:66193 + parietal pelvic lymph node (post-embryonic human) @@ -83692,8 +79021,7 @@ - cortex of lymph node (post-embryonic human) - FMA:66253 + cortex of lymph node (post-embryonic human) @@ -83712,8 +79040,7 @@ - medulla of lymph node (post-embryonic human) - FMA:66254 + medulla of lymph node (post-embryonic human) @@ -83732,8 +79059,7 @@ - cardiac nerve plexus (post-embryonic human) - FMA:6628 + cardiac nerve plexus (post-embryonic human) @@ -83752,8 +79078,7 @@ - wall of common carotid artery (post-embryonic human) - FMA:66284 + wall of common carotid artery (post-embryonic human) @@ -83772,8 +79097,7 @@ - pulmonary nerve plexus (post-embryonic human) - FMA:6629 + pulmonary nerve plexus (post-embryonic human) @@ -83792,8 +79116,7 @@ - celiac nerve plexus (post-embryonic human) - FMA:6630 + celiac nerve plexus (post-embryonic human) @@ -83812,8 +79135,7 @@ - common penile artery (post-embryonic human) - FMA:66318 + common penile artery (post-embryonic human) @@ -83832,8 +79154,7 @@ - thoracodorsal artery (post-embryonic human) - FMA:66320 + thoracodorsal artery (post-embryonic human) @@ -83852,8 +79173,7 @@ - pulmonary artery (post-embryonic human) - FMA:66326 + pulmonary artery (post-embryonic human) @@ -83872,8 +79192,7 @@ - branch of left coronary artery (post-embryonic human) - FMA:66328 + branch of left coronary artery (post-embryonic human) @@ -83892,8 +79211,7 @@ - renal nerve plexus (post-embryonic human) - FMA:6636 + renal nerve plexus (post-embryonic human) @@ -83912,8 +79230,7 @@ - superior mesenteric plexus (post-embryonic human) - FMA:6639 + superior mesenteric plexus (post-embryonic human) @@ -83932,8 +79249,7 @@ - abdominal nerve plexus (post-embryonic human) - FMA:6640 + abdominal nerve plexus (post-embryonic human) @@ -83952,8 +79268,7 @@ - inferior mesenteric nerve plexus (post-embryonic human) - FMA:6641 + inferior mesenteric nerve plexus (post-embryonic human) @@ -83972,8 +79287,7 @@ - superior hypogastric nerve plexus (post-embryonic human) - FMA:6642 + superior hypogastric nerve plexus (post-embryonic human) @@ -83992,8 +79306,7 @@ - inferior hypogastric nerve plexus (post-embryonic human) - FMA:6643 + inferior hypogastric nerve plexus (post-embryonic human) @@ -84012,8 +79325,7 @@ - systemic artery (post-embryonic human) - FMA:66464 + systemic artery (post-embryonic human) @@ -84032,8 +79344,7 @@ - kidney capsule (post-embryonic human) - FMA:66610 + kidney capsule (post-embryonic human) @@ -84052,8 +79363,7 @@ - pulmonary vein (post-embryonic human) - FMA:66643 + pulmonary vein (post-embryonic human) @@ -84072,8 +79382,7 @@ - systemic vein (post-embryonic human) - FMA:66644 + systemic vein (post-embryonic human) @@ -84092,8 +79401,7 @@ - portal vein (post-embryonic human) - FMA:66645 + portal vein (post-embryonic human) @@ -84112,8 +79420,7 @@ - layer of synovial tissue (post-embryonic human) - FMA:66762 + layer of synovial tissue (post-embryonic human) @@ -84132,8 +79439,7 @@ - prostate glandular acinus (post-embryonic human) - FMA:66808 + prostate glandular acinus (post-embryonic human) @@ -84152,8 +79458,7 @@ - glandular cuboidal epithelium (post-embryonic human) - FMA:66809 + glandular cuboidal epithelium (post-embryonic human) @@ -84172,8 +79477,7 @@ - prostate epithelium (post-embryonic human) - FMA:66812 + prostate epithelium (post-embryonic human) @@ -84192,8 +79496,7 @@ - osteoid (post-embryonic human) - FMA:66830 + osteoid (post-embryonic human) @@ -84212,8 +79515,7 @@ - prostate gland secretion (post-embryonic human) - FMA:66884 + prostate gland secretion (post-embryonic human) @@ -84232,8 +79534,7 @@ - mucus (post-embryonic human) - FMA:66938 + mucus (post-embryonic human) @@ -84252,8 +79553,7 @@ - immaterial anatomical entity (post-embryonic human) - FMA:67112 + immaterial anatomical entity (post-embryonic human) @@ -84272,8 +79572,7 @@ - anatomical structure (post-embryonic human) - FMA:67135 + anatomical structure (post-embryonic human) @@ -84292,8 +79591,7 @@ - material anatomical entity (post-embryonic human) - FMA:67165 + material anatomical entity (post-embryonic human) @@ -84312,8 +79610,7 @@ - accessory XI nerve (post-embryonic human) - FMA:6720 + accessory XI nerve (post-embryonic human) @@ -84332,8 +79629,7 @@ - gray matter (post-embryonic human) - FMA:67242 + gray matter (post-embryonic human) @@ -84352,8 +79648,7 @@ - right cerebral hemisphere (post-embryonic human) - FMA:67292 + right cerebral hemisphere (post-embryonic human) @@ -84372,8 +79667,7 @@ - layer of microvilli (post-embryonic human) - FMA:67296 + layer of microvilli (post-embryonic human) @@ -84392,8 +79686,7 @@ - occipital lobe (post-embryonic human) - FMA:67325 + occipital lobe (post-embryonic human) @@ -84412,8 +79705,7 @@ - insula (post-embryonic human) - FMA:67329 + insula (post-embryonic human) @@ -84432,8 +79724,7 @@ - abdominal viscera (post-embryonic human) - FMA:67355 + abdominal viscera (post-embryonic human) @@ -84452,8 +79743,7 @@ - claustrum of brain (post-embryonic human) - FMA:67440 + claustrum of brain (post-embryonic human) @@ -84472,8 +79762,7 @@ - wall of blood vessel (post-embryonic human) - FMA:67473 + wall of blood vessel (post-embryonic human) @@ -84492,8 +79781,7 @@ - organ (post-embryonic human) - FMA:67498 + organ (post-embryonic human) @@ -84512,8 +79800,7 @@ - organ system subdivision (post-embryonic human) - FMA:67509 + organ system subdivision (post-embryonic human) @@ -84532,8 +79819,7 @@ - ciliated stratified columnar epithelium (post-embryonic human) - FMA:67521 + ciliated stratified columnar epithelium (post-embryonic human) @@ -84552,8 +79838,7 @@ - internal carotid nerve plexus (post-embryonic human) - FMA:67533 + internal carotid nerve plexus (post-embryonic human) @@ -84572,8 +79857,7 @@ - stratum basale of epidermis (post-embryonic human) - FMA:67540 + stratum basale of epidermis (post-embryonic human) @@ -84592,8 +79876,7 @@ - stratum spinosum of epidermis (post-embryonic human) - FMA:67542 + stratum spinosum of epidermis (post-embryonic human) @@ -84612,8 +79895,7 @@ - stratum corneum of epidermis (post-embryonic human) - FMA:67545 + stratum corneum of epidermis (post-embryonic human) @@ -84632,8 +79914,7 @@ - anatomical cavity (post-embryonic human) - FMA:67552 + anatomical cavity (post-embryonic human) @@ -84652,8 +79933,7 @@ - vidian nerve (post-embryonic human) - FMA:67584 + vidian nerve (post-embryonic human) @@ -84672,8 +79952,7 @@ - anatomical projection (post-embryonic human) - FMA:67601 + anatomical projection (post-embryonic human) @@ -84692,8 +79971,7 @@ - esophagus smooth muscle circular layer (post-embryonic human) - FMA:67605 + esophagus smooth muscle circular layer (post-embryonic human) @@ -84712,8 +79990,7 @@ - valve (post-embryonic human) - FMA:67611 + valve (post-embryonic human) @@ -84732,8 +80009,7 @@ - epithelium of pancreatic duct (post-embryonic human) - FMA:67681 + epithelium of pancreatic duct (post-embryonic human) @@ -84752,8 +80028,7 @@ - epithelium of duct of salivary gland (post-embryonic human) - FMA:67682 + epithelium of duct of salivary gland (post-embryonic human) @@ -84772,8 +80047,7 @@ - hindbrain (post-embryonic human) - FMA:67687 + hindbrain (post-embryonic human) @@ -84792,8 +80066,7 @@ - urothelium (post-embryonic human) - FMA:67695 + urothelium (post-embryonic human) @@ -84812,8 +80085,7 @@ - epithelium of gall bladder (post-embryonic human) - FMA:67711 + epithelium of gall bladder (post-embryonic human) @@ -84832,8 +80104,7 @@ - duct of areolar gland (post-embryonic human) - FMA:67744 + duct of areolar gland (post-embryonic human) @@ -84852,8 +80123,7 @@ - nipple (post-embryonic human) - FMA:67771 + nipple (post-embryonic human) @@ -84872,8 +80142,7 @@ - epithelium of bronchus (post-embryonic human) - FMA:67782 + epithelium of bronchus (post-embryonic human) @@ -84892,8 +80161,7 @@ - areola (post-embryonic human) - FMA:67796 + areola (post-embryonic human) @@ -84912,8 +80180,7 @@ - mammary gland myoepithelium (post-embryonic human) - FMA:67798 + mammary gland myoepithelium (post-embryonic human) @@ -84932,8 +80199,7 @@ - myoepithelium (post-embryonic human) - FMA:67805 + myoepithelium (post-embryonic human) @@ -84952,8 +80218,7 @@ - male organism (post-embryonic human) - FMA:67811 + male organism (post-embryonic human) @@ -84972,8 +80237,7 @@ - female organism (post-embryonic human) - FMA:67812 + female organism (post-embryonic human) @@ -84992,8 +80256,7 @@ - arrector muscle of hair (post-embryonic human) - FMA:67821 + arrector muscle of hair (post-embryonic human) @@ -85012,8 +80275,7 @@ - suprachiasmatic nucleus (post-embryonic human) - FMA:67883 + suprachiasmatic nucleus (post-embryonic human) @@ -85032,8 +80294,7 @@ - medial preoptic nucleus (post-embryonic human) - FMA:67890 + medial preoptic nucleus (post-embryonic human) @@ -85052,8 +80313,7 @@ - striated muscle tissue (post-embryonic human) - FMA:67905 + striated muscle tissue (post-embryonic human) @@ -85072,8 +80332,7 @@ - intercerebral commissure (post-embryonic human) - FMA:67930 + intercerebral commissure (post-embryonic human) @@ -85092,8 +80351,7 @@ - pons (post-embryonic human) - FMA:67943 + pons (post-embryonic human) @@ -85112,8 +80370,7 @@ - cerebellum (post-embryonic human) - FMA:67944 + cerebellum (post-embryonic human) @@ -85132,8 +80389,7 @@ - substantia nigra (post-embryonic human) - FMA:67947 + substantia nigra (post-embryonic human) @@ -85152,8 +80408,7 @@ - stria of telencephalon (post-embryonic human) - FMA:67950 + stria of telencephalon (post-embryonic human) @@ -85172,8 +80427,7 @@ - white matter lamina of cerebral hemisphere (post-embryonic human) - FMA:67951 + white matter lamina of cerebral hemisphere (post-embryonic human) @@ -85192,8 +80446,7 @@ - medial longitudinal stria (post-embryonic human) - FMA:67956 + medial longitudinal stria (post-embryonic human) @@ -85212,8 +80465,7 @@ - posterior parahippocampal gyrus (post-embryonic human) - FMA:67966 + posterior parahippocampal gyrus (post-embryonic human) @@ -85232,8 +80484,7 @@ - urinary bladder neck smooth muscle (post-embryonic human) - FMA:67990 + urinary bladder neck smooth muscle (post-embryonic human) @@ -85252,8 +80503,7 @@ - pulmonary part of lymphatic system (post-embryonic human) - FMA:67999 + pulmonary part of lymphatic system (post-embryonic human) @@ -85272,8 +80522,7 @@ - urinary bladder detrusor smooth muscle (post-embryonic human) - FMA:68018 + urinary bladder detrusor smooth muscle (post-embryonic human) @@ -85292,8 +80541,7 @@ - inferior phrenic vein (post-embryonic human) - FMA:68068 + inferior phrenic vein (post-embryonic human) @@ -85312,8 +80560,7 @@ - venous valve (post-embryonic human) - FMA:68095 + venous valve (post-embryonic human) @@ -85332,8 +80579,7 @@ - bronchial artery (post-embryonic human) - FMA:68109 + bronchial artery (post-embryonic human) @@ -85352,8 +80598,7 @@ - blood vessel internal elastic membrane (post-embryonic human) - FMA:68205 + blood vessel internal elastic membrane (post-embryonic human) @@ -85372,8 +80617,7 @@ - blood vessel external elastic membrane (post-embryonic human) - FMA:68206 + blood vessel external elastic membrane (post-embryonic human) @@ -85392,8 +80636,7 @@ - muscularis mucosa (post-embryonic human) - FMA:68413 + muscularis mucosa (post-embryonic human) @@ -85412,8 +80655,7 @@ - terminal bronchus (post-embryonic human) - FMA:68416 + terminal bronchus (post-embryonic human) @@ -85432,8 +80674,7 @@ - lacteal (post-embryonic human) - FMA:68443 + lacteal (post-embryonic human) @@ -85452,8 +80693,7 @@ - lymphatic vessel endothelium (post-embryonic human) - FMA:68444 + lymphatic vessel endothelium (post-embryonic human) @@ -85472,8 +80712,7 @@ - lymphatic valve (post-embryonic human) - FMA:68454 + lymphatic valve (post-embryonic human) @@ -85492,8 +80731,7 @@ - dorsal raphe nucleus (post-embryonic human) - FMA:68462 + dorsal raphe nucleus (post-embryonic human) @@ -85512,8 +80750,7 @@ - nucleus of posterior commissure (post-embryonic human) - FMA:68463 + nucleus of posterior commissure (post-embryonic human) @@ -85532,8 +80769,7 @@ - ventral nucleus of posterior commissure (post-embryonic human) - FMA:68464 + ventral nucleus of posterior commissure (post-embryonic human) @@ -85552,8 +80788,7 @@ - cuneate nucleus (post-embryonic human) - FMA:68465 + cuneate nucleus (post-embryonic human) @@ -85572,8 +80807,7 @@ - sublingual nucleus (post-embryonic human) - FMA:68574 + sublingual nucleus (post-embryonic human) @@ -85592,8 +80826,7 @@ - Brodmann area (post-embryonic human) - FMA:68596 + Brodmann area (post-embryonic human) @@ -85612,8 +80845,7 @@ - Brodmann (1909) area 1 (post-embryonic human) - FMA:68597 + Brodmann (1909) area 1 (post-embryonic human) @@ -85632,8 +80864,7 @@ - Brodmann (1909) area 2 (post-embryonic human) - FMA:68598 + Brodmann (1909) area 2 (post-embryonic human) @@ -85652,8 +80883,7 @@ - Brodmann (1909) area 3 (post-embryonic human) - FMA:68599 + Brodmann (1909) area 3 (post-embryonic human) @@ -85672,8 +80902,7 @@ - Brodmann (1909) area 4 (post-embryonic human) - FMA:68600 + Brodmann (1909) area 4 (post-embryonic human) @@ -85692,8 +80921,7 @@ - Brodmann (1909) area 5 (post-embryonic human) - FMA:68601 + Brodmann (1909) area 5 (post-embryonic human) @@ -85712,8 +80940,7 @@ - Brodmann (1909) area 6 (post-embryonic human) - FMA:68602 + Brodmann (1909) area 6 (post-embryonic human) @@ -85732,8 +80959,7 @@ - Brodmann (1909) area 7 (post-embryonic human) - FMA:68604 + Brodmann (1909) area 7 (post-embryonic human) @@ -85752,8 +80978,7 @@ - Brodmann (1909) area 8 (post-embryonic human) - FMA:68605 + Brodmann (1909) area 8 (post-embryonic human) @@ -85772,8 +80997,7 @@ - Brodmann (1909) area 9 (post-embryonic human) - FMA:68606 + Brodmann (1909) area 9 (post-embryonic human) @@ -85792,8 +81016,7 @@ - Brodmann (1909) area 10 (post-embryonic human) - FMA:68607 + Brodmann (1909) area 10 (post-embryonic human) @@ -85812,8 +81035,7 @@ - Brodmann (1909) area 11 (post-embryonic human) - FMA:68608 + Brodmann (1909) area 11 (post-embryonic human) @@ -85832,8 +81054,7 @@ - Brodmann (1909) area 12 (post-embryonic human) - FMA:68609 + Brodmann (1909) area 12 (post-embryonic human) @@ -85852,8 +81073,7 @@ - Brodmann (1909) area 13 (post-embryonic human) - FMA:68610 + Brodmann (1909) area 13 (post-embryonic human) @@ -85872,8 +81092,7 @@ - Brodmann (1909) area 14 (post-embryonic human) - FMA:68611 + Brodmann (1909) area 14 (post-embryonic human) @@ -85892,8 +81111,7 @@ - Brodmann (1909) area 15 (post-embryonic human) - FMA:68612 + Brodmann (1909) area 15 (post-embryonic human) @@ -85912,30 +81130,7 @@ - Brodmann (1909) area 16 (post-embryonic human) - FMA:68613 - - - - - - - - - - - - - - - - - - - - Brodmann (1909) area 17 (post-embryonic human) - primary visual cortex (post-embryonic human) - FMA:68614 + Brodmann (1909) area 16 (post-embryonic human) @@ -85954,8 +81149,7 @@ - Brodmann (1909) area 18 (post-embryonic human) - FMA:68615 + Brodmann (1909) area 18 (post-embryonic human) @@ -85974,8 +81168,7 @@ - Brodmann (1909) area 19 (post-embryonic human) - FMA:68616 + Brodmann (1909) area 19 (post-embryonic human) @@ -85994,8 +81187,7 @@ - Brodmann (1909) area 20 (post-embryonic human) - FMA:68617 + Brodmann (1909) area 20 (post-embryonic human) @@ -86014,8 +81206,7 @@ - Brodmann (1909) area 21 (post-embryonic human) - FMA:68618 + Brodmann (1909) area 21 (post-embryonic human) @@ -86034,8 +81225,7 @@ - Brodmann (1909) area 22 (post-embryonic human) - FMA:68619 + Brodmann (1909) area 22 (post-embryonic human) @@ -86054,8 +81244,7 @@ - Brodmann (1909) area 23 (post-embryonic human) - FMA:68620 + Brodmann (1909) area 23 (post-embryonic human) @@ -86074,8 +81263,7 @@ - Brodmann (1909) area 24 (post-embryonic human) - FMA:68621 + Brodmann (1909) area 24 (post-embryonic human) @@ -86094,8 +81282,7 @@ - Brodmann (1909) area 25 (post-embryonic human) - FMA:68622 + Brodmann (1909) area 25 (post-embryonic human) @@ -86114,8 +81301,7 @@ - Brodmann (1909) area 26 (post-embryonic human) - FMA:68623 + Brodmann (1909) area 26 (post-embryonic human) @@ -86134,8 +81320,7 @@ - Brodmann (1909) area 27 (post-embryonic human) - FMA:68624 + Brodmann (1909) area 27 (post-embryonic human) @@ -86154,8 +81339,7 @@ - Brodmann (1909) area 28 (post-embryonic human) - FMA:68625 + Brodmann (1909) area 28 (post-embryonic human) @@ -86174,8 +81358,7 @@ - Brodmann (1909) area 29 (post-embryonic human) - FMA:68626 + Brodmann (1909) area 29 (post-embryonic human) @@ -86194,8 +81377,7 @@ - Brodmann (1909) area 30 (post-embryonic human) - FMA:68627 + Brodmann (1909) area 30 (post-embryonic human) @@ -86214,8 +81396,7 @@ - Brodmann (1909) area 31 (post-embryonic human) - FMA:68628 + Brodmann (1909) area 31 (post-embryonic human) @@ -86234,8 +81415,7 @@ - Brodmann (1909) area 32 (post-embryonic human) - FMA:68629 + Brodmann (1909) area 32 (post-embryonic human) @@ -86254,8 +81434,7 @@ - Brodmann (1909) area 33 (post-embryonic human) - FMA:68630 + Brodmann (1909) area 33 (post-embryonic human) @@ -86274,8 +81453,7 @@ - Brodmann (1909) area 34 (post-embryonic human) - FMA:68631 + Brodmann (1909) area 34 (post-embryonic human) @@ -86294,8 +81472,7 @@ - Brodmann (1909) area 35 (post-embryonic human) - FMA:68632 + Brodmann (1909) area 35 (post-embryonic human) @@ -86314,8 +81491,7 @@ - Brodmann (1909) area 36 (post-embryonic human) - FMA:68633 + Brodmann (1909) area 36 (post-embryonic human) @@ -86334,8 +81510,7 @@ - Brodmann (1909) area 37 (post-embryonic human) - FMA:68634 + Brodmann (1909) area 37 (post-embryonic human) @@ -86354,8 +81529,7 @@ - Brodmann (1909) area 38 (post-embryonic human) - FMA:68635 + Brodmann (1909) area 38 (post-embryonic human) @@ -86374,8 +81548,7 @@ - Brodmann (1909) area 39 (post-embryonic human) - FMA:68636 + Brodmann (1909) area 39 (post-embryonic human) @@ -86394,8 +81567,7 @@ - Brodmann (1909) area 40 (post-embryonic human) - FMA:68637 + Brodmann (1909) area 40 (post-embryonic human) @@ -86414,8 +81586,7 @@ - anterior transverse temporal area 41 (post-embryonic human) - FMA:68638 + anterior transverse temporal area 41 (post-embryonic human) @@ -86434,8 +81605,7 @@ - posterior transverse temporal area 42 (post-embryonic human) - FMA:68639 + posterior transverse temporal area 42 (post-embryonic human) @@ -86454,8 +81624,7 @@ - Brodmann (1909) area 43 (post-embryonic human) - FMA:68640 + Brodmann (1909) area 43 (post-embryonic human) @@ -86474,8 +81643,7 @@ - Brodmann (1909) area 44 (post-embryonic human) - FMA:68641 + Brodmann (1909) area 44 (post-embryonic human) @@ -86494,8 +81662,7 @@ - Brodmann (1909) area 45 (post-embryonic human) - FMA:68642 + Brodmann (1909) area 45 (post-embryonic human) @@ -86514,8 +81681,7 @@ - Brodmann (1909) area 46 (post-embryonic human) - FMA:68643 + Brodmann (1909) area 46 (post-embryonic human) @@ -86534,8 +81700,7 @@ - Brodmann (1909) area 47 (post-embryonic human) - FMA:68644 + Brodmann (1909) area 47 (post-embryonic human) @@ -86554,8 +81719,7 @@ - great auricular nerve (post-embryonic human) - FMA:6872 + great auricular nerve (post-embryonic human) @@ -86574,8 +81738,7 @@ - thyroid follicle epithelium (post-embryonic human) - FMA:68783 + thyroid follicle epithelium (post-embryonic human) @@ -86594,8 +81757,7 @@ - thyroid follicle (post-embryonic human) - FMA:68805 + thyroid follicle (post-embryonic human) @@ -86614,8 +81776,7 @@ - thyroid follicular lumen (post-embryonic human) - FMA:68829 + thyroid follicular lumen (post-embryonic human) @@ -86634,8 +81795,7 @@ - colloid of thyroid follicle (post-embryonic human) - FMA:68831 + colloid of thyroid follicle (post-embryonic human) @@ -86654,8 +81814,7 @@ - basal amygdaloid nucleus (post-embryonic human) - FMA:68855 + basal amygdaloid nucleus (post-embryonic human) @@ -86674,8 +81833,7 @@ - lateral part of basal amygdaloid nucleus (post-embryonic human) - FMA:68857 + lateral part of basal amygdaloid nucleus (post-embryonic human) @@ -86694,8 +81852,7 @@ - medial part of basal amygdaloid nucleus (post-embryonic human) - FMA:68858 + medial part of basal amygdaloid nucleus (post-embryonic human) @@ -86714,8 +81871,7 @@ - lamina of gray matter of spinal cord (post-embryonic human) - FMA:68861 + lamina of gray matter of spinal cord (post-embryonic human) @@ -86734,8 +81890,7 @@ - lamina I of gray matter of spinal cord (post-embryonic human) - FMA:68862 + lamina I of gray matter of spinal cord (post-embryonic human) @@ -86754,8 +81909,7 @@ - substantia gelatinosa (post-embryonic human) - FMA:68863 + substantia gelatinosa (post-embryonic human) @@ -86774,8 +81928,7 @@ - lamina III of gray matter of spinal cord (post-embryonic human) - FMA:68864 + lamina III of gray matter of spinal cord (post-embryonic human) @@ -86794,8 +81947,7 @@ - lamina IV of gray matter of spinal cord (post-embryonic human) - FMA:68865 + lamina IV of gray matter of spinal cord (post-embryonic human) @@ -86814,8 +81966,7 @@ - lamina V of gray matter of spinal cord (post-embryonic human) - FMA:68866 + lamina V of gray matter of spinal cord (post-embryonic human) @@ -86834,8 +81985,7 @@ - lamina VI of gray matter of spinal cord (post-embryonic human) - FMA:68867 + lamina VI of gray matter of spinal cord (post-embryonic human) @@ -86854,8 +82004,7 @@ - lamina VII of gray matter of spinal cord (post-embryonic human) - FMA:68868 + lamina VII of gray matter of spinal cord (post-embryonic human) @@ -86874,8 +82023,7 @@ - lamina VIII of gray matter of spinal cord (post-embryonic human) - FMA:68869 + lamina VIII of gray matter of spinal cord (post-embryonic human) @@ -86894,8 +82042,7 @@ - lamina IX of gray matter of spinal cord (post-embryonic human) - FMA:68870 + lamina IX of gray matter of spinal cord (post-embryonic human) @@ -86914,8 +82061,7 @@ - spinal cord gray commissure (post-embryonic human) - FMA:68871 + spinal cord gray commissure (post-embryonic human) @@ -86934,8 +82080,7 @@ - medullary raphe nuclear complex (post-embryonic human) - FMA:68874 + medullary raphe nuclear complex (post-embryonic human) @@ -86954,8 +82099,7 @@ - pontine raphe nucleus (post-embryonic human) - FMA:68875 + pontine raphe nucleus (post-embryonic human) @@ -86974,8 +82118,7 @@ - pontine reticular formation (post-embryonic human) - FMA:68876 + pontine reticular formation (post-embryonic human) @@ -86994,8 +82137,7 @@ - pair of lungs (post-embryonic human) - FMA:68877 + pair of lungs (post-embryonic human) @@ -87014,8 +82156,7 @@ - vasculature (post-embryonic human) - FMA:69050 + vasculature (post-embryonic human) @@ -87034,8 +82175,7 @@ - ecto-epithelium (post-embryonic human) - FMA:69064 + ecto-epithelium (post-embryonic human) @@ -87054,8 +82194,7 @@ - endo-epithelium (post-embryonic human) - FMA:69065 + endo-epithelium (post-embryonic human) @@ -87074,8 +82213,7 @@ - embryonic structure (post-embryonic human) - FMA:69067 + embryonic structure (post-embryonic human) @@ -87094,8 +82232,7 @@ - embryo (post-embryonic human) - FMA:69068 + embryo (post-embryonic human) @@ -87114,8 +82251,7 @@ - germ layer (post-embryonic human) - FMA:69069 + germ layer (post-embryonic human) @@ -87134,8 +82270,7 @@ - ectoderm (post-embryonic human) - FMA:69070 + ectoderm (post-embryonic human) @@ -87154,8 +82289,7 @@ - endoderm (post-embryonic human) - FMA:69071 + endoderm (post-embryonic human) @@ -87174,8 +82308,7 @@ - mesoderm (post-embryonic human) - FMA:69072 + mesoderm (post-embryonic human) @@ -87194,8 +82327,7 @@ - epithelium of bronchiole (post-embryonic human) - FMA:69077 + epithelium of bronchiole (post-embryonic human) @@ -87214,8 +82346,7 @@ - adrenal gland cortex zone (post-embryonic human) - FMA:69086 + adrenal gland cortex zone (post-embryonic human) @@ -87234,8 +82365,7 @@ - adrenal gland capsule (post-embryonic human) - FMA:69087 + adrenal gland capsule (post-embryonic human) @@ -87254,8 +82384,7 @@ - right adrenal gland cortex (post-embryonic human) - FMA:69088 + right adrenal gland cortex (post-embryonic human) @@ -87274,8 +82403,7 @@ - left adrenal gland cortex (post-embryonic human) - FMA:69089 + left adrenal gland cortex (post-embryonic human) @@ -87294,8 +82422,7 @@ - right adrenal gland medulla (post-embryonic human) - FMA:69091 + right adrenal gland medulla (post-embryonic human) @@ -87314,8 +82441,7 @@ - left adrenal gland medulla (post-embryonic human) - FMA:69092 + left adrenal gland medulla (post-embryonic human) @@ -87334,8 +82460,7 @@ - zona glomerulosa of adrenal gland (post-embryonic human) - FMA:69225 + zona glomerulosa of adrenal gland (post-embryonic human) @@ -87354,8 +82479,7 @@ - zona fasciculata of adrenal gland (post-embryonic human) - FMA:69234 + zona fasciculata of adrenal gland (post-embryonic human) @@ -87374,8 +82498,7 @@ - zona reticularis of adrenal gland (post-embryonic human) - FMA:69236 + zona reticularis of adrenal gland (post-embryonic human) @@ -87394,8 +82517,7 @@ - external spermatic fascia (post-embryonic human) - FMA:69248 + external spermatic fascia (post-embryonic human) @@ -87414,8 +82536,7 @@ - inferior suprarenal artery (post-embryonic human) - FMA:69264 + inferior suprarenal artery (post-embryonic human) @@ -87434,8 +82555,7 @@ - trunk of common carotid artery (post-embryonic human) - FMA:69323 + trunk of common carotid artery (post-embryonic human) @@ -87454,8 +82574,7 @@ - phrenic artery (post-embryonic human) - FMA:69330 + phrenic artery (post-embryonic human) @@ -87474,8 +82593,7 @@ - inferior cervical ganglion (post-embryonic human) - FMA:6961 + inferior cervical ganglion (post-embryonic human) @@ -87494,8 +82612,7 @@ - main ciliary ganglion (post-embryonic human) - FMA:6964 + main ciliary ganglion (post-embryonic human) @@ -87514,8 +82631,7 @@ - pterygopalatine ganglion (post-embryonic human) - FMA:6965 + pterygopalatine ganglion (post-embryonic human) @@ -87534,8 +82650,7 @@ - submandibular ganglion (post-embryonic human) - FMA:6966 + submandibular ganglion (post-embryonic human) @@ -87554,8 +82669,7 @@ - otic ganglion (post-embryonic human) - FMA:6967 + otic ganglion (post-embryonic human) @@ -87574,8 +82688,7 @@ - hindlimb digital artery (post-embryonic human) - FMA:69713 + hindlimb digital artery (post-embryonic human) @@ -87594,8 +82707,7 @@ - branch of posterior tibial artery (post-embryonic human) - FMA:69784 + branch of posterior tibial artery (post-embryonic human) @@ -87614,8 +82726,7 @@ - space of Mall (post-embryonic human) - FMA:70118 + space of Mall (post-embryonic human) @@ -87634,8 +82745,7 @@ - cremasteric artery (post-embryonic human) - FMA:70192 + cremasteric artery (post-embryonic human) @@ -87654,8 +82764,7 @@ - femoral artery (post-embryonic human) - FMA:70248 + femoral artery (post-embryonic human) @@ -87674,8 +82783,7 @@ - bulbus cordis (post-embryonic human) - FMA:70300 + bulbus cordis (post-embryonic human) @@ -87694,8 +82802,7 @@ - truncus arteriosus (post-embryonic human) - FMA:70301 + truncus arteriosus (post-embryonic human) @@ -87714,8 +82821,7 @@ - endocardial cushion (post-embryonic human) - FMA:70302 + endocardial cushion (post-embryonic human) @@ -87734,8 +82840,7 @@ - sinus venosus (post-embryonic human) - FMA:70303 + sinus venosus (post-embryonic human) @@ -87754,8 +82859,7 @@ - vitelline vein (post-embryonic human) - FMA:70305 + vitelline vein (post-embryonic human) @@ -87774,8 +82878,7 @@ - right vitelline vein (post-embryonic human) - FMA:70306 + right vitelline vein (post-embryonic human) @@ -87794,8 +82897,7 @@ - left vitelline vein (post-embryonic human) - FMA:70307 + left vitelline vein (post-embryonic human) @@ -87814,8 +82916,7 @@ - common cardinal vein (post-embryonic human) - FMA:70308 + common cardinal vein (post-embryonic human) @@ -87834,8 +82935,7 @@ - anterior cardinal vein (post-embryonic human) - FMA:70309 + anterior cardinal vein (post-embryonic human) @@ -87854,8 +82954,7 @@ - right common cardinal vein (post-embryonic human) - FMA:70310 + right common cardinal vein (post-embryonic human) @@ -87874,8 +82973,7 @@ - left common cardinal vein (post-embryonic human) - FMA:70311 + left common cardinal vein (post-embryonic human) @@ -87894,8 +82992,7 @@ - right anterior cardinal vein (post-embryonic human) - FMA:70312 + right anterior cardinal vein (post-embryonic human) @@ -87914,8 +83011,7 @@ - left anterior cardinal vein (post-embryonic human) - FMA:70313 + left anterior cardinal vein (post-embryonic human) @@ -87934,8 +83030,7 @@ - posterior cardinal vein (post-embryonic human) - FMA:70314 + posterior cardinal vein (post-embryonic human) @@ -87954,8 +83049,7 @@ - right posterior cardinal vein (post-embryonic human) - FMA:70315 + right posterior cardinal vein (post-embryonic human) @@ -87974,8 +83068,7 @@ - left posterior cardinal vein (post-embryonic human) - FMA:70316 + left posterior cardinal vein (post-embryonic human) @@ -87994,8 +83087,7 @@ - umbilical vein (post-embryonic human) - FMA:70317 + umbilical vein (post-embryonic human) @@ -88014,8 +83106,7 @@ - right horn of sinus venosus (post-embryonic human) - FMA:70318 + right horn of sinus venosus (post-embryonic human) @@ -88034,8 +83125,7 @@ - right umbilical vein (post-embryonic human) - FMA:70319 + right umbilical vein (post-embryonic human) @@ -88054,8 +83144,7 @@ - left umbilical vein (post-embryonic human) - FMA:70320 + left umbilical vein (post-embryonic human) @@ -88074,8 +83163,7 @@ - left horn of sinus venosus (post-embryonic human) - FMA:70321 + left horn of sinus venosus (post-embryonic human) @@ -88094,8 +83182,7 @@ - dermis (post-embryonic human) - FMA:70323 + dermis (post-embryonic human) @@ -88114,8 +83201,7 @@ - urachus (post-embryonic human) - FMA:70343 + urachus (post-embryonic human) @@ -88134,8 +83220,7 @@ - stratum granulosum of epidermis (post-embryonic human) - FMA:70344 + stratum granulosum of epidermis (post-embryonic human) @@ -88154,8 +83239,7 @@ - thyrocervical artery (post-embryonic human) - FMA:70346 + thyrocervical artery (post-embryonic human) @@ -88174,8 +83258,7 @@ - short ciliary nerve (post-embryonic human) - FMA:7041 + short ciliary nerve (post-embryonic human) @@ -88194,8 +83277,7 @@ - superior pancreaticoduodenal artery (post-embryonic human) - FMA:70437 + superior pancreaticoduodenal artery (post-embryonic human) @@ -88214,8 +83296,7 @@ - pancreatic artery (post-embryonic human) - FMA:70471 + pancreatic artery (post-embryonic human) @@ -88234,8 +83315,7 @@ - ureteric segment of renal artery (post-embryonic human) - FMA:70491 + ureteric segment of renal artery (post-embryonic human) @@ -88254,8 +83334,7 @@ - kidney arcuate artery (post-embryonic human) - FMA:70497 + kidney arcuate artery (post-embryonic human) @@ -88274,8 +83353,7 @@ - interlobular artery (post-embryonic human) - FMA:70498 + interlobular artery (post-embryonic human) @@ -88294,8 +83372,7 @@ - carotid artery segment (post-embryonic human) - FMA:70504 + carotid artery segment (post-embryonic human) @@ -88314,8 +83391,7 @@ - branch of external carotid artery (post-embryonic human) - FMA:70505 + branch of external carotid artery (post-embryonic human) @@ -88334,8 +83410,7 @@ - branch of internal carotid artery (post-embryonic human) - FMA:70506 + branch of internal carotid artery (post-embryonic human) @@ -88354,8 +83429,7 @@ - cavernous artery (post-embryonic human) - FMA:70527 + cavernous artery (post-embryonic human) @@ -88374,8 +83448,7 @@ - stratum lucidum of epidermis (post-embryonic human) - FMA:70540 + stratum lucidum of epidermis (post-embryonic human) @@ -88394,8 +83467,7 @@ - hypodermis (post-embryonic human) - FMA:70544 + hypodermis (post-embryonic human) @@ -88414,8 +83486,7 @@ - skin epidermis (post-embryonic human) - FMA:70596 + skin epidermis (post-embryonic human) @@ -88434,8 +83505,7 @@ - lens anterior epithelium (post-embryonic human) - FMA:70612 + lens anterior epithelium (post-embryonic human) @@ -88454,8 +83524,7 @@ - duct of eccrine sweat gland (post-embryonic human) - FMA:70617 + duct of eccrine sweat gland (post-embryonic human) @@ -88474,8 +83543,7 @@ - duct of apocrine sweat gland (post-embryonic human) - FMA:70643 + duct of apocrine sweat gland (post-embryonic human) @@ -88494,8 +83562,7 @@ - hair follicle (post-embryonic human) - FMA:70660 + hair follicle (post-embryonic human) @@ -88514,8 +83581,7 @@ - pilosebaceous unit (post-embryonic human) - FMA:70661 + pilosebaceous unit (post-embryonic human) @@ -88534,8 +83600,7 @@ - central medullary reticular nuclear complex (post-embryonic human) - FMA:70663 + central medullary reticular nuclear complex (post-embryonic human) @@ -88554,8 +83619,7 @@ - pedal acropodium region (post-embryonic human) - FMA:70664 + pedal acropodium region (post-embryonic human) @@ -88574,8 +83638,7 @@ - bulb of hair follicle (post-embryonic human) - FMA:70666 + bulb of hair follicle (post-embryonic human) @@ -88594,8 +83657,7 @@ - primary hair (post-embryonic human) - FMA:70667 + primary hair (post-embryonic human) @@ -88614,8 +83676,7 @@ - vellus hair (post-embryonic human) - FMA:70668 + vellus hair (post-embryonic human) @@ -88634,8 +83695,7 @@ - terminal hair (post-embryonic human) - FMA:70669 + terminal hair (post-embryonic human) @@ -88654,8 +83714,7 @@ - rostral middle frontal gyrus (post-embryonic human) - FMA:70687 + rostral middle frontal gyrus (post-embryonic human) @@ -88674,8 +83733,7 @@ - caudal middle frontal gyrus (post-embryonic human) - FMA:70688 + caudal middle frontal gyrus (post-embryonic human) @@ -88694,8 +83752,7 @@ - anagen hair (post-embryonic human) - FMA:70716 + anagen hair (post-embryonic human) @@ -88714,8 +83771,7 @@ - catagen hair (post-embryonic human) - FMA:70717 + catagen hair (post-embryonic human) @@ -88734,8 +83790,7 @@ - telogen hair (post-embryonic human) - FMA:70718 + telogen hair (post-embryonic human) @@ -88754,8 +83809,7 @@ - infundibulum of hair follicle (post-embryonic human) - FMA:70722 + infundibulum of hair follicle (post-embryonic human) @@ -88774,8 +83828,7 @@ - hair follicle isthmus (post-embryonic human) - FMA:70723 + hair follicle isthmus (post-embryonic human) @@ -88794,8 +83847,7 @@ - hair shaft (post-embryonic human) - FMA:70728 + hair shaft (post-embryonic human) @@ -88814,8 +83866,7 @@ - hair root (post-embryonic human) - FMA:70730 + hair root (post-embryonic human) @@ -88834,8 +83885,7 @@ - hair follicle bulge (post-embryonic human) - FMA:70735 + hair follicle bulge (post-embryonic human) @@ -88854,8 +83904,7 @@ - dermal papilla (post-embryonic human) - FMA:70737 + dermal papilla (post-embryonic human) @@ -88874,8 +83923,7 @@ - collection of hair on face (post-embryonic human) - FMA:70741 + collection of hair on face (post-embryonic human) @@ -88894,8 +83942,7 @@ - collection of eyelashes (post-embryonic human) - FMA:70742 + collection of eyelashes (post-embryonic human) @@ -88914,8 +83961,7 @@ - collection of hairs (post-embryonic human) - FMA:70752 + collection of hairs (post-embryonic human) @@ -88934,8 +83980,7 @@ - hair follicle matrix region (post-embryonic human) - FMA:70772 + hair follicle matrix region (post-embryonic human) @@ -88954,8 +83999,7 @@ - dorsal metacarpal artery (post-embryonic human) - FMA:70800 + dorsal metacarpal artery (post-embryonic human) @@ -88974,8 +84018,7 @@ - dorsal digital artery (post-embryonic human) - FMA:70801 + dorsal digital artery (post-embryonic human) @@ -88994,8 +84037,7 @@ - proper palmar digital artery (post-embryonic human) - FMA:70804 + proper palmar digital artery (post-embryonic human) @@ -89014,8 +84056,7 @@ - common plantar digital arteries (post-embryonic human) - FMA:70821 + common plantar digital arteries (post-embryonic human) @@ -89034,8 +84075,7 @@ - viscus (post-embryonic human) - FMA:7085 + viscus (post-embryonic human) @@ -89054,8 +84094,7 @@ - hypothalamo-hypophyseal system (post-embryonic human) - FMA:70860 + hypothalamo-hypophyseal system (post-embryonic human) @@ -89074,30 +84113,7 @@ - heart (post-embryonic human) - FMA:7088 - - - - - - - - - - - - - - - - - - - - conjunctival vasculature (post-embryonic human) - conjunctival vein (post-embryonic human) - FMA:70887 + heart (post-embryonic human) @@ -89116,8 +84132,7 @@ - palmar digital vein (post-embryonic human) - FMA:70895 + palmar digital vein (post-embryonic human) @@ -89136,8 +84151,7 @@ - cuticle of hair (post-embryonic human) - FMA:70933 + cuticle of hair (post-embryonic human) @@ -89156,8 +84170,7 @@ - cortex of hair (post-embryonic human) - FMA:70934 + cortex of hair (post-embryonic human) @@ -89176,8 +84189,7 @@ - hair inner root sheath (post-embryonic human) - FMA:70935 + hair inner root sheath (post-embryonic human) @@ -89196,8 +84208,7 @@ - hair outer root sheath (post-embryonic human) - FMA:70943 + hair outer root sheath (post-embryonic human) @@ -89216,8 +84227,7 @@ - hair matrix (post-embryonic human) - FMA:70945 + hair matrix (post-embryonic human) @@ -89236,8 +84246,7 @@ - duct of sebaceous gland (post-embryonic human) - FMA:70947 + duct of sebaceous gland (post-embryonic human) @@ -89256,8 +84265,7 @@ - cardiac chamber (post-embryonic human) - FMA:7095 + cardiac chamber (post-embryonic human) @@ -89276,8 +84284,7 @@ - right cardiac atrium (post-embryonic human) - FMA:7096 + right cardiac atrium (post-embryonic human) @@ -89296,8 +84303,7 @@ - epidermal-dermal junction (post-embryonic human) - FMA:70963 + epidermal-dermal junction (post-embryonic human) @@ -89316,8 +84322,7 @@ - left cardiac atrium (post-embryonic human) - FMA:7097 + left cardiac atrium (post-embryonic human) @@ -89336,8 +84341,7 @@ - brush border layer (post-embryonic human) - FMA:70977 + brush border layer (post-embryonic human) @@ -89356,8 +84360,7 @@ - striated border microvillus layer (post-embryonic human) - FMA:70978 + striated border microvillus layer (post-embryonic human) @@ -89376,8 +84379,7 @@ - short microvillus layer (post-embryonic human) - FMA:70979 + short microvillus layer (post-embryonic human) @@ -89396,8 +84398,7 @@ - heart right ventricle (post-embryonic human) - FMA:7098 + heart right ventricle (post-embryonic human) @@ -89416,8 +84417,7 @@ - kidney interstitium (post-embryonic human) - FMA:70983 + kidney interstitium (post-embryonic human) @@ -89436,8 +84436,7 @@ - cardiac atrium (post-embryonic human) - FMA:7099 + cardiac atrium (post-embryonic human) @@ -89456,8 +84455,7 @@ - surface of epithelium (post-embryonic human) - FMA:70997 + surface of epithelium (post-embryonic human) @@ -89476,8 +84474,7 @@ - cardiac ventricle (post-embryonic human) - FMA:7100 + cardiac ventricle (post-embryonic human) @@ -89496,8 +84493,7 @@ - future cardiac atrium (post-embryonic human) - FMA:71005 + future cardiac atrium (post-embryonic human) @@ -89516,8 +84512,7 @@ - future cardiac ventricle (post-embryonic human) - FMA:71006 + future cardiac ventricle (post-embryonic human) @@ -89536,8 +84531,7 @@ - ductus venosus (post-embryonic human) - FMA:71007 + ductus venosus (post-embryonic human) @@ -89556,8 +84550,7 @@ - aortic sac (post-embryonic human) - FMA:71008 + aortic sac (post-embryonic human) @@ -89576,8 +84569,7 @@ - heart left ventricle (post-embryonic human) - FMA:7101 + heart left ventricle (post-embryonic human) @@ -89596,8 +84588,7 @@ - cutaneous appendage (post-embryonic human) - FMA:71012 + cutaneous appendage (post-embryonic human) @@ -89616,8 +84607,7 @@ - anterior transverse temporal gyrus (post-embryonic human) - FMA:71029 + anterior transverse temporal gyrus (post-embryonic human) @@ -89636,8 +84626,7 @@ - occipital fusiform gyrus (post-embryonic human) - FMA:71033 + occipital fusiform gyrus (post-embryonic human) @@ -89656,8 +84645,7 @@ - inferior lateral occipital cortex (post-embryonic human) - FMA:71034 + inferior lateral occipital cortex (post-embryonic human) @@ -89676,8 +84664,7 @@ - superior lateral occipital cortex (post-embryonic human) - FMA:71035 + superior lateral occipital cortex (post-embryonic human) @@ -89696,8 +84683,7 @@ - paracingulate gyrus (post-embryonic human) - FMA:71037 + paracingulate gyrus (post-embryonic human) @@ -89716,8 +84702,7 @@ - anterior parahippocampal gyrus (post-embryonic human) - FMA:71039 + anterior parahippocampal gyrus (post-embryonic human) @@ -89736,8 +84721,7 @@ - interatrial septum (post-embryonic human) - FMA:7108 + interatrial septum (post-embryonic human) @@ -89756,8 +84740,7 @@ - cardiac valve (post-embryonic human) - FMA:7110 + cardiac valve (post-embryonic human) @@ -89776,8 +84759,7 @@ - foramen secundum (post-embryonic human) - FMA:71105 + foramen secundum (post-embryonic human) @@ -89796,8 +84778,7 @@ - pontine tegmentum (post-embryonic human) - FMA:71108 + pontine tegmentum (post-embryonic human) @@ -89816,8 +84797,7 @@ - superficial white layer of superior colliculus (post-embryonic human) - FMA:71112 + superficial white layer of superior colliculus (post-embryonic human) @@ -89836,8 +84816,7 @@ - middle white layer of superior colliculus (post-embryonic human) - FMA:71113 + middle white layer of superior colliculus (post-embryonic human) @@ -89856,8 +84835,7 @@ - brachium of inferior colliculus (post-embryonic human) - FMA:71114 + brachium of inferior colliculus (post-embryonic human) @@ -89876,8 +84854,7 @@ - commissure of inferior colliculus (post-embryonic human) - FMA:71115 + commissure of inferior colliculus (post-embryonic human) @@ -89896,8 +84873,7 @@ - root of trochlear nerve (post-embryonic human) - FMA:71116 + root of trochlear nerve (post-embryonic human) @@ -89916,8 +84892,7 @@ - sinoatrial valve (post-embryonic human) - FMA:71120 + sinoatrial valve (post-embryonic human) @@ -89936,8 +84911,7 @@ - atrioventricular canal (post-embryonic human) - FMA:71121 + atrioventricular canal (post-embryonic human) @@ -89956,8 +84930,7 @@ - right atrioventricular canal (post-embryonic human) - FMA:71122 + right atrioventricular canal (post-embryonic human) @@ -89976,8 +84949,7 @@ - left atrioventricular canal (post-embryonic human) - FMA:71123 + left atrioventricular canal (post-embryonic human) @@ -89996,8 +84968,7 @@ - subdivision of digestive tract (post-embryonic human) - FMA:71131 + subdivision of digestive tract (post-embryonic human) @@ -90016,8 +84987,7 @@ - alimentary part of gastrointestinal system (post-embryonic human) - FMA:71132 + alimentary part of gastrointestinal system (post-embryonic human) @@ -90036,8 +85006,7 @@ - cervical spinal cord (post-embryonic human) - FMA:71166 + cervical spinal cord (post-embryonic human) @@ -90056,8 +85025,7 @@ - thoracic spinal cord (post-embryonic human) - FMA:71167 + thoracic spinal cord (post-embryonic human) @@ -90076,8 +85044,7 @@ - lumbar spinal cord (post-embryonic human) - FMA:71168 + lumbar spinal cord (post-embryonic human) @@ -90096,8 +85063,7 @@ - T3 segment of thoracic spinal cord (post-embryonic human) - FMA:71169 + T3 segment of thoracic spinal cord (post-embryonic human) @@ -90116,8 +85082,7 @@ - T4 segment of thoracic spinal cord (post-embryonic human) - FMA:71170 + T4 segment of thoracic spinal cord (post-embryonic human) @@ -90136,8 +85101,7 @@ - T5 segment of thoracic spinal cord (post-embryonic human) - FMA:71171 + T5 segment of thoracic spinal cord (post-embryonic human) @@ -90156,8 +85120,7 @@ - T6 segment of thoracic spinal cord (post-embryonic human) - FMA:71172 + T6 segment of thoracic spinal cord (post-embryonic human) @@ -90176,8 +85139,7 @@ - T7 segment of thoracic spinal cord (post-embryonic human) - FMA:71173 + T7 segment of thoracic spinal cord (post-embryonic human) @@ -90196,8 +85158,7 @@ - T8 segment of thoracic spinal cord (post-embryonic human) - FMA:71174 + T8 segment of thoracic spinal cord (post-embryonic human) @@ -90216,8 +85177,7 @@ - T9 segment of thoracic spinal cord (post-embryonic human) - FMA:71175 + T9 segment of thoracic spinal cord (post-embryonic human) @@ -90236,8 +85196,7 @@ - T10 segment of thoracic spinal cord (post-embryonic human) - FMA:71176 + T10 segment of thoracic spinal cord (post-embryonic human) @@ -90256,8 +85215,7 @@ - T11 segment of thoracic spinal cord (post-embryonic human) - FMA:71177 + T11 segment of thoracic spinal cord (post-embryonic human) @@ -90276,8 +85234,7 @@ - T12 segment of thoracic spinal cord (post-embryonic human) - FMA:71178 + T12 segment of thoracic spinal cord (post-embryonic human) @@ -90296,8 +85253,7 @@ - C1 segment of cervical spinal cord (post-embryonic human) - FMA:71179 + C1 segment of cervical spinal cord (post-embryonic human) @@ -90316,8 +85272,7 @@ - C2 segment of cervical spinal cord (post-embryonic human) - FMA:71180 + C2 segment of cervical spinal cord (post-embryonic human) @@ -90336,8 +85291,7 @@ - C3 segment of cervical spinal cord (post-embryonic human) - FMA:71181 + C3 segment of cervical spinal cord (post-embryonic human) @@ -90356,8 +85310,7 @@ - C4 segment of cervical spinal cord (post-embryonic human) - FMA:71182 + C4 segment of cervical spinal cord (post-embryonic human) @@ -90376,8 +85329,7 @@ - C5 segment of cervical spinal cord (post-embryonic human) - FMA:71183 + C5 segment of cervical spinal cord (post-embryonic human) @@ -90396,8 +85348,7 @@ - C6 segment of cervical spinal cord (post-embryonic human) - FMA:71184 + C6 segment of cervical spinal cord (post-embryonic human) @@ -90416,8 +85367,7 @@ - C7 segment of cervical spinal cord (post-embryonic human) - FMA:71185 + C7 segment of cervical spinal cord (post-embryonic human) @@ -90436,8 +85386,7 @@ - C8 segment of cervical spinal cord (post-embryonic human) - FMA:71186 + C8 segment of cervical spinal cord (post-embryonic human) @@ -90456,8 +85405,7 @@ - L1 segment of lumbar spinal cord (post-embryonic human) - FMA:71187 + L1 segment of lumbar spinal cord (post-embryonic human) @@ -90476,8 +85424,7 @@ - L2 segment of lumbar spinal cord (post-embryonic human) - FMA:71188 + L2 segment of lumbar spinal cord (post-embryonic human) @@ -90496,8 +85443,7 @@ - L3 segment of lumbar spinal cord (post-embryonic human) - FMA:71189 + L3 segment of lumbar spinal cord (post-embryonic human) @@ -90516,8 +85462,7 @@ - L4 segment of lumbar spinal cord (post-embryonic human) - FMA:71190 + L4 segment of lumbar spinal cord (post-embryonic human) @@ -90536,30 +85481,7 @@ - L5 segment of lumbar spinal cord (post-embryonic human) - FMA:71191 - - - - - - - - - - - - - - - - - - - - thymus lobe (post-embryonic human) - thymus subunit (post-embryonic human) - FMA:71193 + L5 segment of lumbar spinal cord (post-embryonic human) @@ -90578,8 +85500,7 @@ - right thymus lobe (post-embryonic human) - FMA:71194 + right thymus lobe (post-embryonic human) @@ -90598,8 +85519,7 @@ - left thymus lobe (post-embryonic human) - FMA:71195 + left thymus lobe (post-embryonic human) @@ -90618,8 +85538,7 @@ - forelimb zeugopod skeleton (post-embryonic human) - FMA:71199 + forelimb zeugopod skeleton (post-embryonic human) @@ -90638,8 +85557,7 @@ - lateral thoracic vein (post-embryonic human) - FMA:71210 + lateral thoracic vein (post-embryonic human) @@ -90658,8 +85576,7 @@ - thoracodorsal vein (post-embryonic human) - FMA:71213 + thoracodorsal vein (post-embryonic human) @@ -90678,8 +85595,7 @@ - caudal humeral circumflex vein (post-embryonic human) - FMA:71216 + caudal humeral circumflex vein (post-embryonic human) @@ -90698,8 +85614,7 @@ - postcranial axial skeleton (post-embryonic human) - FMA:71221 + postcranial axial skeleton (post-embryonic human) @@ -90718,8 +85633,7 @@ - appendicular skeleton (post-embryonic human) - FMA:71222 + appendicular skeleton (post-embryonic human) @@ -90738,8 +85652,7 @@ - epidural space (post-embryonic human) - FMA:71228 + epidural space (post-embryonic human) @@ -90758,8 +85671,7 @@ - brain dura mater (post-embryonic human) - FMA:71236 + brain dura mater (post-embryonic human) @@ -90778,8 +85690,7 @@ - spinal dura mater (post-embryonic human) - FMA:71237 + spinal dura mater (post-embryonic human) @@ -90798,8 +85709,7 @@ - trigeminal nucleus (post-embryonic human) - FMA:71247 + trigeminal nucleus (post-embryonic human) @@ -90818,8 +85728,7 @@ - trigeminal nuclear complex (post-embryonic human) - FMA:71248 + trigeminal nuclear complex (post-embryonic human) @@ -90838,8 +85747,7 @@ - skeletal musculature of head (post-embryonic human) - FMA:71287 + skeletal musculature of head (post-embryonic human) @@ -90858,8 +85766,7 @@ - musculature of face (post-embryonic human) - FMA:71288 + musculature of face (post-embryonic human) @@ -90878,8 +85785,7 @@ - musculature of neck (post-embryonic human) - FMA:71290 + musculature of neck (post-embryonic human) @@ -90898,8 +85804,7 @@ - musculature of back (post-embryonic human) - FMA:71291 + musculature of back (post-embryonic human) @@ -90918,8 +85823,7 @@ - musculature of thorax (post-embryonic human) - FMA:71293 + musculature of thorax (post-embryonic human) @@ -90938,8 +85842,7 @@ - abdomen musculature (post-embryonic human) - FMA:71294 + abdomen musculature (post-embryonic human) @@ -90958,8 +85861,7 @@ - musculature of perineum (post-embryonic human) - FMA:71295 + musculature of perineum (post-embryonic human) @@ -90978,8 +85880,7 @@ - musculature of pectoral complex (post-embryonic human) - FMA:71296 + musculature of pectoral complex (post-embryonic human) @@ -90998,8 +85899,7 @@ - musculature of pelvic complex (post-embryonic human) - FMA:71297 + musculature of pelvic complex (post-embryonic human) @@ -91018,8 +85918,7 @@ - erector spinae muscle group (post-embryonic human) - FMA:71302 + erector spinae muscle group (post-embryonic human) @@ -91038,8 +85937,7 @@ - transversospinales muscle (post-embryonic human) - FMA:71304 + transversospinales muscle (post-embryonic human) @@ -91058,8 +85956,7 @@ - esophagus (post-embryonic human) - FMA:7131 + esophagus (post-embryonic human) @@ -91078,8 +85975,7 @@ - levator costarum (post-embryonic human) - FMA:71312 + levator costarum (post-embryonic human) @@ -91098,8 +85994,7 @@ - cranium (post-embryonic human) - FMA:71325 + cranium (post-embryonic human) @@ -91118,8 +86013,7 @@ - interventricular septum (post-embryonic human) - FMA:7133 + interventricular septum (post-embryonic human) @@ -91138,8 +86032,7 @@ - carpal skeleton (post-embryonic human) - FMA:71335 + carpal skeleton (post-embryonic human) @@ -91158,8 +86051,7 @@ - metacarpus skeleton (post-embryonic human) - FMA:71336 + metacarpus skeleton (post-embryonic human) @@ -91178,8 +86070,7 @@ - skeleton of manual acropodium (post-embryonic human) - FMA:71337 + skeleton of manual acropodium (post-embryonic human) @@ -91198,8 +86089,7 @@ - tarsal skeleton (post-embryonic human) - FMA:71339 + tarsal skeleton (post-embryonic human) @@ -91218,8 +86108,7 @@ - interventricular septum muscular part (post-embryonic human) - FMA:7134 + interventricular septum muscular part (post-embryonic human) @@ -91238,8 +86127,7 @@ - metatarsus skeleton (post-embryonic human) - FMA:71340 + metatarsus skeleton (post-embryonic human) @@ -91258,8 +86146,7 @@ - interventricular septum membranous part (post-embryonic human) - FMA:7135 + interventricular septum membranous part (post-embryonic human) @@ -91278,8 +86165,7 @@ - atrioventricular septum (post-embryonic human) - FMA:7136 + atrioventricular septum (post-embryonic human) @@ -91298,8 +86184,7 @@ - hemopoietic organ (post-embryonic human) - FMA:7143 + hemopoietic organ (post-embryonic human) @@ -91318,8 +86203,7 @@ - mesentery (post-embryonic human) - FMA:7144 + mesentery (post-embryonic human) @@ -91338,8 +86222,7 @@ - membrane organ (post-embryonic human) - FMA:7145 + membrane organ (post-embryonic human) @@ -91358,8 +86241,7 @@ - gland (post-embryonic human) - FMA:7146 + gland (post-embryonic human) @@ -91378,8 +86260,7 @@ - stomach (post-embryonic human) - FMA:7148 + stomach (post-embryonic human) @@ -91398,8 +86279,7 @@ - anatomical system (post-embryonic human) - FMA:7149 + anatomical system (post-embryonic human) @@ -91418,8 +86298,7 @@ - digestive system (post-embryonic human) - FMA:7152 + digestive system (post-embryonic human) @@ -91438,8 +86317,7 @@ - organism subdivision (post-embryonic human) - FMA:7153 + organism subdivision (post-embryonic human) @@ -91458,8 +86336,7 @@ - head (post-embryonic human) - FMA:7154 + head (post-embryonic human) @@ -91478,8 +86355,7 @@ - neck (post-embryonic human) - FMA:7155 + neck (post-embryonic human) @@ -91498,8 +86374,7 @@ - proper plantar digital artery (post-embryonic human) - FMA:71564 + proper plantar digital artery (post-embryonic human) @@ -91518,8 +86393,7 @@ - nervous system (post-embryonic human) - FMA:7157 + nervous system (post-embryonic human) @@ -91538,8 +86412,7 @@ - respiratory system (post-embryonic human) - FMA:7158 + respiratory system (post-embryonic human) @@ -91558,8 +86431,7 @@ - renal system (post-embryonic human) - FMA:7159 + renal system (post-embryonic human) @@ -91578,8 +86450,7 @@ - paraumbilical vein (post-embryonic human) - FMA:71591 + paraumbilical vein (post-embryonic human) @@ -91598,8 +86469,7 @@ - reproductive system (post-embryonic human) - FMA:7160 + reproductive system (post-embryonic human) @@ -91618,8 +86488,7 @@ - cardiovascular system (post-embryonic human) - FMA:7161 + cardiovascular system (post-embryonic human) @@ -91638,8 +86507,7 @@ - lymphatic part of lymphoid system (post-embryonic human) - FMA:7162 + lymphatic part of lymphoid system (post-embryonic human) @@ -91658,8 +86526,7 @@ - skin of body (post-embryonic human) - FMA:7163 + skin of body (post-embryonic human) @@ -91678,8 +86545,7 @@ - interlobar vein (post-embryonic human) - FMA:71631 + interlobar vein (post-embryonic human) @@ -91698,8 +86564,7 @@ - renal interlobular vein (post-embryonic human) - FMA:71634 + renal interlobular vein (post-embryonic human) @@ -91718,8 +86583,7 @@ - interlobar artery (post-embryonic human) - FMA:71637 + interlobar artery (post-embryonic human) @@ -91738,8 +86602,7 @@ - apex of heart (post-embryonic human) - FMA:7164 + apex of heart (post-embryonic human) @@ -91758,8 +86621,7 @@ - right cardiac chamber (post-embryonic human) - FMA:7165 + right cardiac chamber (post-embryonic human) @@ -91778,8 +86640,7 @@ - liver right lobe parenchyma (post-embryonic human) - FMA:71657 + liver right lobe parenchyma (post-embryonic human) @@ -91798,8 +86659,7 @@ - liver left lobe parenchyma (post-embryonic human) - FMA:71658 + liver left lobe parenchyma (post-embryonic human) @@ -91818,8 +86678,7 @@ - parenchyma of caudate lobe of liver (post-embryonic human) - FMA:71659 + parenchyma of caudate lobe of liver (post-embryonic human) @@ -91838,8 +86697,7 @@ - left cardiac chamber (post-embryonic human) - FMA:7166 + left cardiac chamber (post-embryonic human) @@ -91858,8 +86716,7 @@ - parenchyma of quadrate lobe of liver (post-embryonic human) - FMA:71676 + parenchyma of quadrate lobe of liver (post-embryonic human) @@ -91878,8 +86735,7 @@ - anterior interventricular sulcus (post-embryonic human) - FMA:7177 + anterior interventricular sulcus (post-embryonic human) @@ -91898,8 +86754,7 @@ - posterior interventricular sulcus (post-embryonic human) - FMA:7178 + posterior interventricular sulcus (post-embryonic human) @@ -91918,8 +86773,7 @@ - cardiac septum (post-embryonic human) - FMA:7180 + cardiac septum (post-embryonic human) @@ -91938,8 +86792,7 @@ - trunk (post-embryonic human) - FMA:7181 + trunk (post-embryonic human) @@ -91958,8 +86811,7 @@ - appendage girdle complex (post-embryonic human) - FMA:7182 + appendage girdle complex (post-embryonic human) @@ -91978,8 +86830,7 @@ - pectoral complex (post-embryonic human) - FMA:7183 + pectoral complex (post-embryonic human) @@ -91998,8 +86849,7 @@ - pelvic complex (post-embryonic human) - FMA:7184 + pelvic complex (post-embryonic human) @@ -92018,8 +86868,7 @@ - right forelimb (post-embryonic human) - FMA:7185 + right forelimb (post-embryonic human) @@ -92038,8 +86887,7 @@ - left forelimb (post-embryonic human) - FMA:7186 + left forelimb (post-embryonic human) @@ -92058,8 +86906,7 @@ - right hindlimb (post-embryonic human) - FMA:7187 + right hindlimb (post-embryonic human) @@ -92078,8 +86925,7 @@ - skin gland (post-embryonic human) - FMA:71878 + skin gland (post-embryonic human) @@ -92098,8 +86944,7 @@ - left hindlimb (post-embryonic human) - FMA:7188 + left hindlimb (post-embryonic human) @@ -92118,8 +86963,7 @@ - common crus of semicircular duct (post-embryonic human) - FMA:71881 + common crus of semicircular duct (post-embryonic human) @@ -92138,8 +86982,7 @@ - special sense organ system (post-embryonic human) - FMA:7189 + special sense organ system (post-embryonic human) @@ -92158,8 +87001,7 @@ - hepatic duct (post-embryonic human) - FMA:71891 + hepatic duct (post-embryonic human) @@ -92178,8 +87020,7 @@ - olfactory system (post-embryonic human) - FMA:7190 + olfactory system (post-embryonic human) @@ -92198,8 +87039,7 @@ - visual system (post-embryonic human) - FMA:7191 + visual system (post-embryonic human) @@ -92218,8 +87058,7 @@ - auditory system (post-embryonic human) - FMA:7192 + auditory system (post-embryonic human) @@ -92238,8 +87077,7 @@ - vestibular system (post-embryonic human) - FMA:7193 + vestibular system (post-embryonic human) @@ -92258,8 +87096,7 @@ - gustatory system (post-embryonic human) - FMA:7194 + gustatory system (post-embryonic human) @@ -92278,8 +87115,7 @@ - lung (post-embryonic human) - FMA:7195 + lung (post-embryonic human) @@ -92298,8 +87134,7 @@ - spleen (post-embryonic human) - FMA:7196 + spleen (post-embryonic human) @@ -92318,8 +87153,7 @@ - liver (post-embryonic human) - FMA:7197 + liver (post-embryonic human) @@ -92338,8 +87172,7 @@ - pancreas (post-embryonic human) - FMA:7198 + pancreas (post-embryonic human) @@ -92358,8 +87191,7 @@ - intestine (post-embryonic human) - FMA:7199 + intestine (post-embryonic human) @@ -92378,8 +87210,7 @@ - small intestine (post-embryonic human) - FMA:7200 + small intestine (post-embryonic human) @@ -92398,8 +87229,7 @@ - pair of nares (post-embryonic human) - FMA:72005 + pair of nares (post-embryonic human) @@ -92418,8 +87248,7 @@ - vasa recta (post-embryonic human) - FMA:72006 + vasa recta (post-embryonic human) @@ -92438,8 +87267,7 @@ - straight venules of kidney (post-embryonic human) - FMA:72007 + straight venules of kidney (post-embryonic human) @@ -92458,8 +87286,7 @@ - large intestine (post-embryonic human) - FMA:7201 + large intestine (post-embryonic human) @@ -92478,8 +87305,7 @@ - gallbladder (post-embryonic human) - FMA:7202 + gallbladder (post-embryonic human) @@ -92498,8 +87324,7 @@ - artery smooth muscle tissue (post-embryonic human) - FMA:72024 + artery smooth muscle tissue (post-embryonic human) @@ -92518,30 +87343,7 @@ - smooth muscle of esophagus (post-embryonic human) - FMA:72025 - - - - - - - - - - - - - - - - - - - - adult mammalian kidney (post-embryonic human) - kidney (post-embryonic human) - FMA:7203 + smooth muscle of esophagus (post-embryonic human) @@ -92560,8 +87362,7 @@ - right kidney (post-embryonic human) - FMA:7204 + right kidney (post-embryonic human) @@ -92580,8 +87381,7 @@ - left kidney (post-embryonic human) - FMA:7205 + left kidney (post-embryonic human) @@ -92600,8 +87400,7 @@ - laryngeal intrinsic ligament (post-embryonic human) - FMA:72058 + laryngeal intrinsic ligament (post-embryonic human) @@ -92620,8 +87419,7 @@ - pseudostratified smooth columnar epithelium (post-embryonic human) - FMA:72059 + pseudostratified smooth columnar epithelium (post-embryonic human) @@ -92640,8 +87438,7 @@ - duodenum (post-embryonic human) - FMA:7206 + duodenum (post-embryonic human) @@ -92660,8 +87457,7 @@ - mucosa of lacrimal sac (post-embryonic human) - FMA:72061 + mucosa of lacrimal sac (post-embryonic human) @@ -92680,8 +87476,7 @@ - trunk region of vertebral column (post-embryonic human) - FMA:72066 + trunk region of vertebral column (post-embryonic human) @@ -92700,8 +87495,7 @@ - jejunum (post-embryonic human) - FMA:7207 + jejunum (post-embryonic human) @@ -92720,8 +87514,7 @@ - ileum (post-embryonic human) - FMA:7208 + ileum (post-embryonic human) @@ -92740,8 +87533,7 @@ - ovary (post-embryonic human) - FMA:7209 + ovary (post-embryonic human) @@ -92760,8 +87552,7 @@ - testis (post-embryonic human) - FMA:7210 + testis (post-embryonic human) @@ -92780,8 +87571,7 @@ - right testis (post-embryonic human) - FMA:7211 + right testis (post-embryonic human) @@ -92800,8 +87590,7 @@ - left testis (post-embryonic human) - FMA:7212 + left testis (post-embryonic human) @@ -92820,8 +87609,7 @@ - right ovary (post-embryonic human) - FMA:7213 + right ovary (post-embryonic human) @@ -92840,8 +87628,7 @@ - left ovary (post-embryonic human) - FMA:7214 + left ovary (post-embryonic human) @@ -92860,8 +87647,7 @@ - outflow part of right ventricle (post-embryonic human) - FMA:7216 + outflow part of right ventricle (post-embryonic human) @@ -92880,8 +87666,7 @@ - nephrogenic cord (post-embryonic human) - FMA:72168 + nephrogenic cord (post-embryonic human) @@ -92900,8 +87685,7 @@ - pronephros (post-embryonic human) - FMA:72170 + pronephros (post-embryonic human) @@ -92920,8 +87704,7 @@ - mesonephros (post-embryonic human) - FMA:72171 + mesonephros (post-embryonic human) @@ -92940,8 +87723,7 @@ - metanephros (post-embryonic human) - FMA:72172 + metanephros (post-embryonic human) @@ -92960,8 +87742,7 @@ - embryonic uterus (post-embryonic human) - FMA:72173 + embryonic uterus (post-embryonic human) @@ -92980,8 +87761,7 @@ - Mullerian tubercle (post-embryonic human) - FMA:72175 + Mullerian tubercle (post-embryonic human) @@ -93000,8 +87780,7 @@ - right atrium auricular region (post-embryonic human) - FMA:7218 + right atrium auricular region (post-embryonic human) @@ -93020,8 +87799,7 @@ - left atrium auricular region (post-embryonic human) - FMA:7219 + left atrium auricular region (post-embryonic human) @@ -93040,8 +87818,7 @@ - capsule of thymus (post-embryonic human) - FMA:72204 + capsule of thymus (post-embryonic human) @@ -93060,8 +87837,7 @@ - cortex of thymus (post-embryonic human) - FMA:72205 + cortex of thymus (post-embryonic human) @@ -93080,8 +87856,7 @@ - medulla of thymus (post-embryonic human) - FMA:72206 + medulla of thymus (post-embryonic human) @@ -93100,8 +87875,7 @@ - thymus lobule (post-embryonic human) - FMA:72215 + thymus lobule (post-embryonic human) @@ -93120,8 +87894,7 @@ - interventricular groove (post-embryonic human) - FMA:7223 + interventricular groove (post-embryonic human) @@ -93140,8 +87913,7 @@ - vestibular nuclear complex (post-embryonic human) - FMA:72239 + vestibular nuclear complex (post-embryonic human) @@ -93160,8 +87932,7 @@ - cochlear nuclear complex (post-embryonic human) - FMA:72240 + cochlear nuclear complex (post-embryonic human) @@ -93180,8 +87951,7 @@ - medullary reticular formation (post-embryonic human) - FMA:72241 + medullary reticular formation (post-embryonic human) @@ -93200,8 +87970,7 @@ - solitary tract nuclear complex (post-embryonic human) - FMA:72242 + solitary tract nuclear complex (post-embryonic human) @@ -93220,8 +87989,7 @@ - inferior olivary complex (post-embryonic human) - FMA:72243 + inferior olivary complex (post-embryonic human) @@ -93240,8 +88008,7 @@ - basal part of pons (post-embryonic human) - FMA:72244 + basal part of pons (post-embryonic human) @@ -93260,8 +88027,7 @@ - nucleus of pontine reticular formation (post-embryonic human) - FMA:72245 + nucleus of pontine reticular formation (post-embryonic human) @@ -93280,8 +88046,7 @@ - nucleus of superior olivary complex (post-embryonic human) - FMA:72246 + nucleus of superior olivary complex (post-embryonic human) @@ -93300,8 +88065,7 @@ - superior olivary complex (post-embryonic human) - FMA:72247 + superior olivary complex (post-embryonic human) @@ -93320,8 +88084,7 @@ - cerebellar cortex (post-embryonic human) - FMA:72248 + cerebellar cortex (post-embryonic human) @@ -93340,8 +88103,7 @@ - cerebellar nuclear complex (post-embryonic human) - FMA:72249 + cerebellar nuclear complex (post-embryonic human) @@ -93360,8 +88122,7 @@ - anterior lobe of cerebellum (post-embryonic human) - FMA:72251 + anterior lobe of cerebellum (post-embryonic human) @@ -93380,8 +88141,7 @@ - posterior lobe of cerebellum (post-embryonic human) - FMA:72252 + posterior lobe of cerebellum (post-embryonic human) @@ -93400,8 +88160,7 @@ - flocculonodular lobe (post-embryonic human) - FMA:72253 + flocculonodular lobe (post-embryonic human) @@ -93420,8 +88179,7 @@ - hemisphere part of cerebellar anterior lobe (post-embryonic human) - FMA:72254 + hemisphere part of cerebellar anterior lobe (post-embryonic human) @@ -93440,8 +88198,7 @@ - cerebellum anterior vermis (post-embryonic human) - FMA:72255 + cerebellum anterior vermis (post-embryonic human) @@ -93460,8 +88217,7 @@ - hemisphere part of cerebellar posterior lobe (post-embryonic human) - FMA:72256 + hemisphere part of cerebellar posterior lobe (post-embryonic human) @@ -93480,8 +88236,7 @@ - ansiform lobule (post-embryonic human) - FMA:72257 + ansiform lobule (post-embryonic human) @@ -93500,8 +88255,7 @@ - cerebellum posterior vermis (post-embryonic human) - FMA:72259 + cerebellum posterior vermis (post-embryonic human) @@ -93520,8 +88274,7 @@ - dentate nucleus (post-embryonic human) - FMA:72260 + dentate nucleus (post-embryonic human) @@ -93540,8 +88293,7 @@ - stylohyoid ligament (post-embryonic human) - FMA:72308 + stylohyoid ligament (post-embryonic human) @@ -93560,8 +88312,7 @@ - cusp of cardiac valve (post-embryonic human) - FMA:7232 + cusp of cardiac valve (post-embryonic human) @@ -93580,8 +88331,7 @@ - atrioventricular valve (post-embryonic human) - FMA:7233 + atrioventricular valve (post-embryonic human) @@ -93600,8 +88350,7 @@ - tricuspid valve (post-embryonic human) - FMA:7234 + tricuspid valve (post-embryonic human) @@ -93620,8 +88369,7 @@ - mitral valve (post-embryonic human) - FMA:7235 + mitral valve (post-embryonic human) @@ -93640,8 +88388,7 @@ - entorhinal cortex (post-embryonic human) - FMA:72356 + entorhinal cortex (post-embryonic human) @@ -93660,8 +88407,7 @@ - hilus of dentate gyrus (post-embryonic human) - FMA:72358 + hilus of dentate gyrus (post-embryonic human) @@ -93680,8 +88426,7 @@ - aortic valve (post-embryonic human) - FMA:7236 + aortic valve (post-embryonic human) @@ -93700,8 +88445,7 @@ - tricuspid valve leaflet (post-embryonic human) - FMA:7237 + tricuspid valve leaflet (post-embryonic human) @@ -93720,8 +88464,7 @@ - tricuspid valve cusp (post-embryonic human) - FMA:7240 + tricuspid valve cusp (post-embryonic human) @@ -93740,8 +88483,7 @@ - habenulo-interpeduncular tract (post-embryonic human) - FMA:72400 + habenulo-interpeduncular tract (post-embryonic human) @@ -93760,8 +88502,7 @@ - pretectal nucleus (post-embryonic human) - FMA:72401 + pretectal nucleus (post-embryonic human) @@ -93780,8 +88521,7 @@ - principal pretectal nucleus (post-embryonic human) - FMA:72402 + principal pretectal nucleus (post-embryonic human) @@ -93800,8 +88540,7 @@ - nucleus of optic tract (post-embryonic human) - FMA:72403 + nucleus of optic tract (post-embryonic human) @@ -93820,8 +88559,7 @@ - sublentiform nucleus (post-embryonic human) - FMA:72404 + sublentiform nucleus (post-embryonic human) @@ -93840,8 +88578,7 @@ - olivary pretectal nucleus (post-embryonic human) - FMA:72405 + olivary pretectal nucleus (post-embryonic human) @@ -93860,8 +88597,7 @@ - zonal layer of superior colliculus (post-embryonic human) - FMA:72406 + zonal layer of superior colliculus (post-embryonic human) @@ -93880,8 +88616,7 @@ - superior colliculus superficial gray layer (post-embryonic human) - FMA:72407 + superior colliculus superficial gray layer (post-embryonic human) @@ -93900,8 +88635,7 @@ - stratum lemnisci of superior colliculus (post-embryonic human) - FMA:72408 + stratum lemnisci of superior colliculus (post-embryonic human) @@ -93920,8 +88654,7 @@ - middle gray layer of superior colliculus (post-embryonic human) - FMA:72409 + middle gray layer of superior colliculus (post-embryonic human) @@ -93940,8 +88673,7 @@ - mitral valve leaflet (post-embryonic human) - FMA:7241 + mitral valve leaflet (post-embryonic human) @@ -93960,8 +88692,7 @@ - deep gray layer of superior colliculus (post-embryonic human) - FMA:72410 + deep gray layer of superior colliculus (post-embryonic human) @@ -93980,8 +88711,7 @@ - pericentral nucleus of inferior colliculus (post-embryonic human) - FMA:72411 + pericentral nucleus of inferior colliculus (post-embryonic human) @@ -94000,8 +88730,7 @@ - external nucleus of inferior colliculus (post-embryonic human) - FMA:72412 + external nucleus of inferior colliculus (post-embryonic human) @@ -94020,8 +88749,7 @@ - central nucleus of inferior colliculus (post-embryonic human) - FMA:72413 + central nucleus of inferior colliculus (post-embryonic human) @@ -94040,8 +88768,7 @@ - subcommissural organ (post-embryonic human) - FMA:72414 + subcommissural organ (post-embryonic human) @@ -94060,8 +88787,7 @@ - parabigeminal nucleus (post-embryonic human) - FMA:72415 + parabigeminal nucleus (post-embryonic human) @@ -94080,8 +88806,7 @@ - deep white layer of superior colliculus (post-embryonic human) - FMA:72416 + deep white layer of superior colliculus (post-embryonic human) @@ -94100,8 +88825,7 @@ - brachium of superior colliculus (post-embryonic human) - FMA:72417 + brachium of superior colliculus (post-embryonic human) @@ -94120,8 +88844,7 @@ - commissure of superior colliculus (post-embryonic human) - FMA:72418 + commissure of superior colliculus (post-embryonic human) @@ -94140,8 +88863,7 @@ - corticotectal tract (post-embryonic human) - FMA:72419 + corticotectal tract (post-embryonic human) @@ -94160,8 +88882,7 @@ - anterior leaflet of mitral valve (post-embryonic human) - FMA:7242 + anterior leaflet of mitral valve (post-embryonic human) @@ -94180,8 +88901,7 @@ - intermediate oculomotor nucleus (post-embryonic human) - FMA:72420 + intermediate oculomotor nucleus (post-embryonic human) @@ -94200,8 +88920,7 @@ - medial oculomotor nucleus (post-embryonic human) - FMA:72421 + medial oculomotor nucleus (post-embryonic human) @@ -94220,8 +88939,7 @@ - ventral oculomotor nucleus (post-embryonic human) - FMA:72422 + ventral oculomotor nucleus (post-embryonic human) @@ -94240,8 +88958,7 @@ - anterior median oculomotor nucleus (post-embryonic human) - FMA:72423 + anterior median oculomotor nucleus (post-embryonic human) @@ -94260,8 +88977,7 @@ - parvocellular oculomotor nucleus (post-embryonic human) - FMA:72424 + parvocellular oculomotor nucleus (post-embryonic human) @@ -94280,8 +88996,7 @@ - central oculomotor nucleus (post-embryonic human) - FMA:72425 + central oculomotor nucleus (post-embryonic human) @@ -94300,8 +89015,7 @@ - caudal central oculomotor nucleus (post-embryonic human) - FMA:72426 + caudal central oculomotor nucleus (post-embryonic human) @@ -94320,8 +89034,7 @@ - cuneiform nucleus (post-embryonic human) - FMA:72427 + cuneiform nucleus (post-embryonic human) @@ -94340,8 +89053,7 @@ - subcuneiform nucleus (post-embryonic human) - FMA:72428 + subcuneiform nucleus (post-embryonic human) @@ -94360,8 +89072,7 @@ - pedunculopontine tegmental nucleus (post-embryonic human) - FMA:72429 + pedunculopontine tegmental nucleus (post-embryonic human) @@ -94380,8 +89091,7 @@ - posterior leaflet of mitral valve (post-embryonic human) - FMA:7243 + posterior leaflet of mitral valve (post-embryonic human) @@ -94400,8 +89110,7 @@ - parvocellular part of red nucleus (post-embryonic human) - FMA:72430 + parvocellular part of red nucleus (post-embryonic human) @@ -94420,8 +89129,7 @@ - magnocellular part of red nucleus (post-embryonic human) - FMA:72431 + magnocellular part of red nucleus (post-embryonic human) @@ -94440,8 +89148,7 @@ - interstitial nucleus of Cajal (post-embryonic human) - FMA:72432 + interstitial nucleus of Cajal (post-embryonic human) @@ -94460,8 +89167,7 @@ - rostral interstitial nucleus of medial longitudinal fasciculus (post-embryonic human) - FMA:72433 + rostral interstitial nucleus of medial longitudinal fasciculus (post-embryonic human) @@ -94480,8 +89186,7 @@ - dorsal tegmental nucleus (post-embryonic human) - FMA:72434 + dorsal tegmental nucleus (post-embryonic human) @@ -94500,8 +89205,7 @@ - ventral tegmental nucleus (post-embryonic human) - FMA:72435 + ventral tegmental nucleus (post-embryonic human) @@ -94520,8 +89224,7 @@ - linear nucleus (post-embryonic human) - FMA:72436 + linear nucleus (post-embryonic human) @@ -94540,8 +89243,7 @@ - peripeduncular nucleus (post-embryonic human) - FMA:72437 + peripeduncular nucleus (post-embryonic human) @@ -94560,8 +89262,7 @@ - ventral tegmental area (post-embryonic human) - FMA:72438 + ventral tegmental area (post-embryonic human) @@ -94580,8 +89281,7 @@ - interpeduncular nucleus (post-embryonic human) - FMA:72439 + interpeduncular nucleus (post-embryonic human) @@ -94600,8 +89300,7 @@ - capsule of red nucleus (post-embryonic human) - FMA:72450 + capsule of red nucleus (post-embryonic human) @@ -94620,8 +89319,7 @@ - dorsal tegmental decussation (post-embryonic human) - FMA:72451 + dorsal tegmental decussation (post-embryonic human) @@ -94640,8 +89338,7 @@ - ventral tegmental decussation (post-embryonic human) - FMA:72452 + ventral tegmental decussation (post-embryonic human) @@ -94660,8 +89357,7 @@ - dorsal longitudinal fasciculus of midbrain (post-embryonic human) - FMA:72453 + dorsal longitudinal fasciculus of midbrain (post-embryonic human) @@ -94680,8 +89376,7 @@ - medial longitudinal fasciculus of midbrain (post-embryonic human) - FMA:72454 + medial longitudinal fasciculus of midbrain (post-embryonic human) @@ -94700,8 +89395,7 @@ - decussation of superior cerebellar peduncle (post-embryonic human) - FMA:72455 + decussation of superior cerebellar peduncle (post-embryonic human) @@ -94720,8 +89414,7 @@ - central tegmental tract of midbrain (post-embryonic human) - FMA:72456 + central tegmental tract of midbrain (post-embryonic human) @@ -94740,8 +89433,7 @@ - oculomotor nerve root (post-embryonic human) - FMA:72457 + oculomotor nerve root (post-embryonic human) @@ -94760,8 +89452,7 @@ - pallidotegmental fasciculus (post-embryonic human) - FMA:72458 + pallidotegmental fasciculus (post-embryonic human) @@ -94780,8 +89471,7 @@ - lateral pes lemniscus (post-embryonic human) - FMA:72459 + lateral pes lemniscus (post-embryonic human) @@ -94800,8 +89490,7 @@ - pulmonary valve (post-embryonic human) - FMA:7246 + pulmonary valve (post-embryonic human) @@ -94820,8 +89509,7 @@ - medial pes lemniscus (post-embryonic human) - FMA:72460 + medial pes lemniscus (post-embryonic human) @@ -94840,8 +89528,7 @@ - medial lemniscus of midbrain (post-embryonic human) - FMA:72461 + medial lemniscus of midbrain (post-embryonic human) @@ -94860,8 +89547,7 @@ - dentatothalamic tract (post-embryonic human) - FMA:72462 + dentatothalamic tract (post-embryonic human) @@ -94880,8 +89566,7 @@ - spinothalamic tract of midbrain (post-embryonic human) - FMA:72463 + spinothalamic tract of midbrain (post-embryonic human) @@ -94900,8 +89585,7 @@ - cerebral crus (post-embryonic human) - FMA:72464 + cerebral crus (post-embryonic human) @@ -94920,8 +89604,7 @@ - median raphe nucleus (post-embryonic human) - FMA:72465 + median raphe nucleus (post-embryonic human) @@ -94940,8 +89623,7 @@ - inferior central nucleus (post-embryonic human) - FMA:72466 + inferior central nucleus (post-embryonic human) @@ -94960,8 +89642,7 @@ - nucleus of medial eminence (post-embryonic human) - FMA:72467 + nucleus of medial eminence (post-embryonic human) @@ -94980,8 +89661,7 @@ - oral pontine reticular nucleus (post-embryonic human) - FMA:72468 + oral pontine reticular nucleus (post-embryonic human) @@ -95000,8 +89680,7 @@ - caudal pontine reticular nucleus (post-embryonic human) - FMA:72469 + caudal pontine reticular nucleus (post-embryonic human) @@ -95020,8 +89699,7 @@ - central gray substance of pons (post-embryonic human) - FMA:72470 + central gray substance of pons (post-embryonic human) @@ -95040,8 +89718,7 @@ - reticulotegmental nucleus (post-embryonic human) - FMA:72471 + reticulotegmental nucleus (post-embryonic human) @@ -95060,8 +89737,7 @@ - lateral superior olivary nucleus (post-embryonic human) - FMA:72472 + lateral superior olivary nucleus (post-embryonic human) @@ -95080,8 +89756,7 @@ - medial superior olivary nucleus (post-embryonic human) - FMA:72473 + medial superior olivary nucleus (post-embryonic human) @@ -95100,8 +89775,7 @@ - preolivary nucleus (post-embryonic human) - FMA:72474 + preolivary nucleus (post-embryonic human) @@ -95120,8 +89794,7 @@ - dorsal periolivary nucleus (post-embryonic human) - FMA:72475 + dorsal periolivary nucleus (post-embryonic human) @@ -95140,8 +89813,7 @@ - retro-olivary nucleus (post-embryonic human) - FMA:72476 + retro-olivary nucleus (post-embryonic human) @@ -95160,8 +89832,7 @@ - ventral nucleus of trapezoid body (post-embryonic human) - FMA:72477 + ventral nucleus of trapezoid body (post-embryonic human) @@ -95180,8 +89851,7 @@ - locus ceruleus (post-embryonic human) - FMA:72478 + locus ceruleus (post-embryonic human) @@ -95200,8 +89870,7 @@ - nucleus subceruleus (post-embryonic human) - FMA:72479 + nucleus subceruleus (post-embryonic human) @@ -95220,8 +89889,7 @@ - pulmonary valve cusp (post-embryonic human) - FMA:7248 + pulmonary valve cusp (post-embryonic human) @@ -95240,8 +89908,7 @@ - medial parabrachial nucleus (post-embryonic human) - FMA:72480 + medial parabrachial nucleus (post-embryonic human) @@ -95260,8 +89927,7 @@ - lateral parabrachial nucleus (post-embryonic human) - FMA:72481 + lateral parabrachial nucleus (post-embryonic human) @@ -95280,8 +89946,7 @@ - superior salivatory nucleus (post-embryonic human) - FMA:72482 + superior salivatory nucleus (post-embryonic human) @@ -95300,8 +89965,7 @@ - dorsal nucleus of lateral lemniscus (post-embryonic human) - FMA:72483 + dorsal nucleus of lateral lemniscus (post-embryonic human) @@ -95320,8 +89984,7 @@ - ventral nucleus of lateral lemniscus (post-embryonic human) - FMA:72484 + ventral nucleus of lateral lemniscus (post-embryonic human) @@ -95340,8 +90003,7 @@ - olivocochlear bundle (post-embryonic human) - FMA:72485 + olivocochlear bundle (post-embryonic human) @@ -95360,8 +90022,7 @@ - trapezoid body (post-embryonic human) - FMA:72487 + trapezoid body (post-embryonic human) @@ -95380,8 +90041,7 @@ - decussation of trochlear nerve (post-embryonic human) - FMA:72488 + decussation of trochlear nerve (post-embryonic human) @@ -95400,8 +90060,7 @@ - mesencephalic tract of trigeminal nerve (post-embryonic human) - FMA:72489 + mesencephalic tract of trigeminal nerve (post-embryonic human) @@ -95420,8 +90079,7 @@ - root of abducens nerve (post-embryonic human) - FMA:72491 + root of abducens nerve (post-embryonic human) @@ -95440,8 +90098,7 @@ - dorsal longitudinal fasciculus of pons (post-embryonic human) - FMA:72492 + dorsal longitudinal fasciculus of pons (post-embryonic human) @@ -95460,8 +90117,7 @@ - medial longitudinal fasciculus of pons (post-embryonic human) - FMA:72493 + medial longitudinal fasciculus of pons (post-embryonic human) @@ -95480,8 +90136,7 @@ - central tegmental tract of pons (post-embryonic human) - FMA:72494 + central tegmental tract of pons (post-embryonic human) @@ -95500,8 +90155,7 @@ - superior cerebellar peduncle of pons (post-embryonic human) - FMA:72495 + superior cerebellar peduncle of pons (post-embryonic human) @@ -95520,8 +90174,7 @@ - dorsal acoustic stria (post-embryonic human) - FMA:72496 + dorsal acoustic stria (post-embryonic human) @@ -95540,8 +90193,7 @@ - intermediate acoustic stria (post-embryonic human) - FMA:72497 + intermediate acoustic stria (post-embryonic human) @@ -95560,8 +90212,7 @@ - ventral acoustic stria (post-embryonic human) - FMA:72498 + ventral acoustic stria (post-embryonic human) @@ -95580,8 +90231,7 @@ - vestibulocochlear nerve root (post-embryonic human) - FMA:72499 + vestibulocochlear nerve root (post-embryonic human) @@ -95600,8 +90250,7 @@ - dorsal trigeminal tract (post-embryonic human) - FMA:72500 + dorsal trigeminal tract (post-embryonic human) @@ -95620,8 +90269,7 @@ - trigeminal nerve fibers (post-embryonic human) - FMA:72501 + trigeminal nerve fibers (post-embryonic human) @@ -95640,8 +90288,7 @@ - lateral lemniscus (post-embryonic human) - FMA:72502 + lateral lemniscus (post-embryonic human) @@ -95660,8 +90307,7 @@ - medial lemniscus of pons (post-embryonic human) - FMA:72503 + medial lemniscus of pons (post-embryonic human) @@ -95680,8 +90326,7 @@ - spinothalamic tract of pons (post-embryonic human) - FMA:72504 + spinothalamic tract of pons (post-embryonic human) @@ -95700,8 +90345,7 @@ - tectopontine tract (post-embryonic human) - FMA:72505 + tectopontine tract (post-embryonic human) @@ -95720,8 +90364,7 @@ - ventral trigeminal tract (post-embryonic human) - FMA:72506 + ventral trigeminal tract (post-embryonic human) @@ -95740,8 +90383,7 @@ - spinal trigeminal tract of pons (post-embryonic human) - FMA:72507 + spinal trigeminal tract of pons (post-embryonic human) @@ -95760,8 +90402,7 @@ - vestibulocerebellar tract (post-embryonic human) - FMA:72508 + vestibulocerebellar tract (post-embryonic human) @@ -95780,8 +90421,7 @@ - aortic valve cusp (post-embryonic human) - FMA:7251 + aortic valve cusp (post-embryonic human) @@ -95800,8 +90440,7 @@ - genu of facial nerve (post-embryonic human) - FMA:72510 + genu of facial nerve (post-embryonic human) @@ -95820,8 +90459,7 @@ - pontine nuclear group (post-embryonic human) - FMA:72512 + pontine nuclear group (post-embryonic human) @@ -95840,8 +90478,7 @@ - longitudinal pontine fibers (post-embryonic human) - FMA:72513 + longitudinal pontine fibers (post-embryonic human) @@ -95860,8 +90497,7 @@ - transverse pontine fibers (post-embryonic human) - FMA:72514 + transverse pontine fibers (post-embryonic human) @@ -95880,8 +90516,7 @@ - middle cerebellar peduncle (post-embryonic human) - FMA:72515 + middle cerebellar peduncle (post-embryonic human) @@ -95900,8 +90535,7 @@ - anterior quadrangular lobule (post-embryonic human) - FMA:72516 + anterior quadrangular lobule (post-embryonic human) @@ -95920,8 +90554,7 @@ - alar central lobule (post-embryonic human) - FMA:72517 + alar central lobule (post-embryonic human) @@ -95940,8 +90573,7 @@ - central lobule (post-embryonic human) - FMA:72519 + central lobule (post-embryonic human) @@ -95960,8 +90592,7 @@ - lobule simplex (post-embryonic human) - FMA:72522 + lobule simplex (post-embryonic human) @@ -95980,8 +90611,7 @@ - paramedian lobule (post-embryonic human) - FMA:72523 + paramedian lobule (post-embryonic human) @@ -96000,8 +90630,7 @@ - ansiform lobule crus I (post-embryonic human) - FMA:72524 + ansiform lobule crus I (post-embryonic human) @@ -96020,8 +90649,7 @@ - ansiform lobule crus II (post-embryonic human) - FMA:72525 + ansiform lobule crus II (post-embryonic human) @@ -96040,8 +90668,7 @@ - hemispheric lobule VIII (post-embryonic human) - FMA:72526 + hemispheric lobule VIII (post-embryonic human) @@ -96060,8 +90687,7 @@ - cerebellum globose nucleus (post-embryonic human) - FMA:72536 + cerebellum globose nucleus (post-embryonic human) @@ -96080,8 +90706,7 @@ - fastigial nucleus (post-embryonic human) - FMA:72537 + fastigial nucleus (post-embryonic human) @@ -96100,8 +90725,7 @@ - emboliform nucleus (post-embryonic human) - FMA:72538 + emboliform nucleus (post-embryonic human) @@ -96120,8 +90744,7 @@ - neodentate part of dentate nucleus (post-embryonic human) - FMA:72539 + neodentate part of dentate nucleus (post-embryonic human) @@ -96140,8 +90763,7 @@ - paleodentate of dentate nucleus (post-embryonic human) - FMA:72540 + paleodentate of dentate nucleus (post-embryonic human) @@ -96160,8 +90782,7 @@ - amiculum of dentate nucleus (post-embryonic human) - FMA:72546 + amiculum of dentate nucleus (post-embryonic human) @@ -96180,8 +90801,7 @@ - hilum of dentate nucleus (post-embryonic human) - FMA:72548 + hilum of dentate nucleus (post-embryonic human) @@ -96200,8 +90820,7 @@ - anteroventral cochlear nucleus (post-embryonic human) - FMA:72571 + anteroventral cochlear nucleus (post-embryonic human) @@ -96220,8 +90839,7 @@ - posteroventral cochlear nucleus (post-embryonic human) - FMA:72572 + posteroventral cochlear nucleus (post-embryonic human) @@ -96240,8 +90858,7 @@ - lateral medullary reticular complex (post-embryonic human) - FMA:72573 + lateral medullary reticular complex (post-embryonic human) @@ -96260,8 +90877,7 @@ - lateral reticular nucleus (post-embryonic human) - FMA:72574 + lateral reticular nucleus (post-embryonic human) @@ -96280,8 +90896,7 @@ - parvocellular reticular nucleus (post-embryonic human) - FMA:72575 + parvocellular reticular nucleus (post-embryonic human) @@ -96300,8 +90915,7 @@ - gigantocellular nucleus (post-embryonic human) - FMA:72576 + gigantocellular nucleus (post-embryonic human) @@ -96320,8 +90934,7 @@ - lateral paragigantocellular nucleus (post-embryonic human) - FMA:72577 + lateral paragigantocellular nucleus (post-embryonic human) @@ -96340,8 +90953,7 @@ - dorsal paragigantocellular nucleus (post-embryonic human) - FMA:72578 + dorsal paragigantocellular nucleus (post-embryonic human) @@ -96360,8 +90972,7 @@ - paramedian medullary reticular complex (post-embryonic human) - FMA:72580 + paramedian medullary reticular complex (post-embryonic human) @@ -96380,8 +90991,7 @@ - dorsal paramedian reticular nucleus (post-embryonic human) - FMA:72581 + dorsal paramedian reticular nucleus (post-embryonic human) @@ -96400,8 +91010,7 @@ - paramedian reticular nucleus (post-embryonic human) - FMA:72583 + paramedian reticular nucleus (post-embryonic human) @@ -96420,8 +91029,7 @@ - nucleus raphe magnus (post-embryonic human) - FMA:72584 + nucleus raphe magnus (post-embryonic human) @@ -96440,8 +91048,7 @@ - nucleus raphe obscurus (post-embryonic human) - FMA:72585 + nucleus raphe obscurus (post-embryonic human) @@ -96460,8 +91067,7 @@ - nucleus raphe pallidus (post-embryonic human) - FMA:72586 + nucleus raphe pallidus (post-embryonic human) @@ -96480,8 +91086,7 @@ - papillary muscle of right ventricle (post-embryonic human) - FMA:7259 + papillary muscle of right ventricle (post-embryonic human) @@ -96500,8 +91105,7 @@ - principal inferior olivary nucleus (post-embryonic human) - FMA:72592 + principal inferior olivary nucleus (post-embryonic human) @@ -96520,8 +91124,7 @@ - dorsal accessory inferior olivary nucleus (post-embryonic human) - FMA:72593 + dorsal accessory inferior olivary nucleus (post-embryonic human) @@ -96540,8 +91143,7 @@ - medial accessory inferior olivary nucleus (post-embryonic human) - FMA:72594 + medial accessory inferior olivary nucleus (post-embryonic human) @@ -96560,8 +91162,7 @@ - central gray substance of medulla (post-embryonic human) - FMA:72595 + central gray substance of medulla (post-embryonic human) @@ -96580,8 +91181,7 @@ - nucleus prepositus (post-embryonic human) - FMA:72596 + nucleus prepositus (post-embryonic human) @@ -96600,8 +91200,7 @@ - nucleus intercalatus (post-embryonic human) - FMA:72597 + nucleus intercalatus (post-embryonic human) @@ -96620,8 +91219,7 @@ - diffuse reticular nucleus (post-embryonic human) - FMA:72598 + diffuse reticular nucleus (post-embryonic human) @@ -96640,8 +91238,7 @@ - paratrigeminal nucleus (post-embryonic human) - FMA:72599 + paratrigeminal nucleus (post-embryonic human) @@ -96660,8 +91257,7 @@ - peritrigeminal nucleus (post-embryonic human) - FMA:72600 + peritrigeminal nucleus (post-embryonic human) @@ -96680,8 +91276,7 @@ - inferior salivatory nucleus (post-embryonic human) - FMA:72601 + inferior salivatory nucleus (post-embryonic human) @@ -96700,8 +91295,7 @@ - gracile nucleus (post-embryonic human) - FMA:72602 + gracile nucleus (post-embryonic human) @@ -96720,8 +91314,7 @@ - accessory cuneate nucleus (post-embryonic human) - FMA:72603 + accessory cuneate nucleus (post-embryonic human) @@ -96740,8 +91333,7 @@ - lateral pericuneate nucleus (post-embryonic human) - FMA:72604 + lateral pericuneate nucleus (post-embryonic human) @@ -96760,8 +91352,7 @@ - medial pericuneate nucleus (post-embryonic human) - FMA:72605 + medial pericuneate nucleus (post-embryonic human) @@ -96780,8 +91371,7 @@ - caudal part of spinal trigeminal nucleus (post-embryonic human) - FMA:72606 + caudal part of spinal trigeminal nucleus (post-embryonic human) @@ -96800,8 +91390,7 @@ - area postrema (post-embryonic human) - FMA:72607 + area postrema (post-embryonic human) @@ -96820,8 +91409,7 @@ - pontobulbar nucleus (post-embryonic human) - FMA:72608 + pontobulbar nucleus (post-embryonic human) @@ -96840,8 +91428,7 @@ - arcuate nucleus of medulla (post-embryonic human) - FMA:72609 + arcuate nucleus of medulla (post-embryonic human) @@ -96860,8 +91447,7 @@ - medullary anterior horn (post-embryonic human) - FMA:72610 + medullary anterior horn (post-embryonic human) @@ -96880,8 +91466,7 @@ - amiculum of inferior olive (post-embryonic human) - FMA:72611 + amiculum of inferior olive (post-embryonic human) @@ -96900,8 +91485,7 @@ - hilum of inferior olivary complex (post-embryonic human) - FMA:72612 + hilum of inferior olivary complex (post-embryonic human) @@ -96920,8 +91504,7 @@ - juxtarestiform body (post-embryonic human) - FMA:72613 + juxtarestiform body (post-embryonic human) @@ -96940,8 +91523,7 @@ - predorsal bundle (post-embryonic human) - FMA:72614 + predorsal bundle (post-embryonic human) @@ -96960,8 +91542,7 @@ - inferior cerebellar peduncle (post-embryonic human) - FMA:72615 + inferior cerebellar peduncle (post-embryonic human) @@ -96980,8 +91561,7 @@ - dorsolateral fasciculus of medulla (post-embryonic human) - FMA:72616 + dorsolateral fasciculus of medulla (post-embryonic human) @@ -97000,8 +91580,7 @@ - dorsal longitudinal fasciculus of medulla (post-embryonic human) - FMA:72617 + dorsal longitudinal fasciculus of medulla (post-embryonic human) @@ -97020,8 +91599,7 @@ - medial longitudinal fasciculus of medulla (post-embryonic human) - FMA:72618 + medial longitudinal fasciculus of medulla (post-embryonic human) @@ -97040,8 +91618,7 @@ - solitary tract (post-embryonic human) - FMA:72619 + solitary tract (post-embryonic human) @@ -97060,8 +91637,7 @@ - tectospinal tract (post-embryonic human) - FMA:72620 + tectospinal tract (post-embryonic human) @@ -97080,8 +91656,7 @@ - medial lemniscus of medulla (post-embryonic human) - FMA:72621 + medial lemniscus of medulla (post-embryonic human) @@ -97100,8 +91675,7 @@ - decussation of medial lemniscus (post-embryonic human) - FMA:72622 + decussation of medial lemniscus (post-embryonic human) @@ -97120,8 +91694,7 @@ - cuneate fasciculus of medulla (post-embryonic human) - FMA:72623 + cuneate fasciculus of medulla (post-embryonic human) @@ -97140,8 +91713,7 @@ - gracile fasciculus of medulla (post-embryonic human) - FMA:72624 + gracile fasciculus of medulla (post-embryonic human) @@ -97160,8 +91732,7 @@ - spinal trigeminal tract of medulla (post-embryonic human) - FMA:72625 + spinal trigeminal tract of medulla (post-embryonic human) @@ -97180,8 +91751,7 @@ - accessory nerve fiber bundle (post-embryonic human) - FMA:72626 + accessory nerve fiber bundle (post-embryonic human) @@ -97200,8 +91770,7 @@ - glossopharyngeal nerve fiber bundle (post-embryonic human) - FMA:72627 + glossopharyngeal nerve fiber bundle (post-embryonic human) @@ -97220,8 +91789,7 @@ - vagal nerve fiber bundle (post-embryonic human) - FMA:72628 + vagal nerve fiber bundle (post-embryonic human) @@ -97240,8 +91808,7 @@ - internal arcuate fiber bundle (post-embryonic human) - FMA:72629 + internal arcuate fiber bundle (post-embryonic human) @@ -97260,8 +91827,7 @@ - dorsal external arcuate fiber bundle (post-embryonic human) - FMA:72630 + dorsal external arcuate fiber bundle (post-embryonic human) @@ -97280,8 +91846,7 @@ - ventral external arcuate fiber bundle (post-embryonic human) - FMA:72631 + ventral external arcuate fiber bundle (post-embryonic human) @@ -97300,8 +91865,7 @@ - hypoglossal nerve root (post-embryonic human) - FMA:72632 + hypoglossal nerve root (post-embryonic human) @@ -97320,8 +91884,7 @@ - pyramidal decussation (post-embryonic human) - FMA:72633 + pyramidal decussation (post-embryonic human) @@ -97340,8 +91903,7 @@ - corticospinal tract (post-embryonic human) - FMA:72634 + corticospinal tract (post-embryonic human) @@ -97360,8 +91922,7 @@ - lateral corticospinal tract (post-embryonic human) - FMA:72635 + lateral corticospinal tract (post-embryonic human) @@ -97380,8 +91941,7 @@ - ventral corticospinal tract (post-embryonic human) - FMA:72636 + ventral corticospinal tract (post-embryonic human) @@ -97400,8 +91960,7 @@ - cuneocerebellar tract (post-embryonic human) - FMA:72637 + cuneocerebellar tract (post-embryonic human) @@ -97420,8 +91979,7 @@ - olivocerebellar tract (post-embryonic human) - FMA:72638 + olivocerebellar tract (post-embryonic human) @@ -97440,8 +91998,7 @@ - rubrospinal tract (post-embryonic human) - FMA:72640 + rubrospinal tract (post-embryonic human) @@ -97460,8 +92017,7 @@ - posterior spinocerebellar tract (post-embryonic human) - FMA:72641 + posterior spinocerebellar tract (post-embryonic human) @@ -97480,8 +92036,7 @@ - anterior spinocerebellar tract (post-embryonic human) - FMA:72642 + anterior spinocerebellar tract (post-embryonic human) @@ -97500,8 +92055,7 @@ - spino-olivary tract (post-embryonic human) - FMA:72643 + spino-olivary tract (post-embryonic human) @@ -97520,8 +92074,7 @@ - spinothalamic tract of medulla (post-embryonic human) - FMA:72644 + spinothalamic tract of medulla (post-embryonic human) @@ -97540,8 +92093,7 @@ - tectobulbar tract (post-embryonic human) - FMA:72645 + tectobulbar tract (post-embryonic human) @@ -97560,8 +92112,7 @@ - vestibulospinal tract (post-embryonic human) - FMA:72646 + vestibulospinal tract (post-embryonic human) @@ -97580,8 +92131,7 @@ - embryo stage (post-embryonic human) - FMA:72652 + embryo stage (post-embryonic human) @@ -97600,8 +92150,7 @@ - trabecula carnea (post-embryonic human) - FMA:7269 + trabecula carnea (post-embryonic human) @@ -97620,8 +92169,7 @@ - trabecula carnea of right ventricle (post-embryonic human) - FMA:7270 + trabecula carnea of right ventricle (post-embryonic human) @@ -97640,8 +92188,7 @@ - trabecula carnea of left ventricle (post-embryonic human) - FMA:7271 + trabecula carnea of left ventricle (post-embryonic human) @@ -97660,8 +92207,7 @@ - limbic lobe (post-embryonic human) - FMA:72719 + limbic lobe (post-embryonic human) @@ -97680,8 +92226,7 @@ - wall of heart (post-embryonic human) - FMA:7274 + wall of heart (post-embryonic human) @@ -97700,8 +92245,7 @@ - endocardium (post-embryonic human) - FMA:7280 + endocardium (post-embryonic human) @@ -97720,8 +92264,7 @@ - right atrium endocardium (post-embryonic human) - FMA:7281 + right atrium endocardium (post-embryonic human) @@ -97740,8 +92283,7 @@ - cardiac muscle of right atrium (post-embryonic human) - FMA:7282 + cardiac muscle of right atrium (post-embryonic human) @@ -97760,8 +92302,7 @@ - right putamen (post-embryonic human) - FMA:72828 + right putamen (post-embryonic human) @@ -97780,8 +92321,7 @@ - left putamen (post-embryonic human) - FMA:72829 + left putamen (post-embryonic human) @@ -97800,8 +92340,7 @@ - cardiac muscle tissue of atrium (post-embryonic human) - FMA:7283 + cardiac muscle tissue of atrium (post-embryonic human) @@ -97820,8 +92359,7 @@ - endocardium of atrium (post-embryonic human) - FMA:7284 + endocardium of atrium (post-embryonic human) @@ -97840,8 +92378,7 @@ - cardiac muscle of left atrium (post-embryonic human) - FMA:7285 + cardiac muscle of left atrium (post-embryonic human) @@ -97860,8 +92397,7 @@ - left atrium endocardium (post-embryonic human) - FMA:7286 + left atrium endocardium (post-embryonic human) @@ -97880,8 +92416,7 @@ - musculature of body (post-embryonic human) - FMA:72954 + musculature of body (post-embryonic human) @@ -97900,8 +92435,7 @@ - right frontal lobe (post-embryonic human) - FMA:72969 + right frontal lobe (post-embryonic human) @@ -97920,8 +92454,7 @@ - left frontal lobe (post-embryonic human) - FMA:72970 + left frontal lobe (post-embryonic human) @@ -97940,8 +92473,7 @@ - right temporal lobe (post-embryonic human) - FMA:72971 + right temporal lobe (post-embryonic human) @@ -97960,8 +92492,7 @@ - left temporal lobe (post-embryonic human) - FMA:72972 + left temporal lobe (post-embryonic human) @@ -97980,8 +92511,7 @@ - right parietal lobe (post-embryonic human) - FMA:72973 + right parietal lobe (post-embryonic human) @@ -98000,8 +92530,7 @@ - left parietal lobe (post-embryonic human) - FMA:72974 + left parietal lobe (post-embryonic human) @@ -98020,8 +92549,7 @@ - right occipital lobe (post-embryonic human) - FMA:72975 + right occipital lobe (post-embryonic human) @@ -98040,8 +92568,7 @@ - left occipital lobe (post-embryonic human) - FMA:72976 + left occipital lobe (post-embryonic human) @@ -98060,8 +92587,7 @@ - integumental system (post-embryonic human) - FMA:72979 + integumental system (post-embryonic human) @@ -98080,8 +92606,7 @@ - right limbic lobe (post-embryonic human) - FMA:72980 + right limbic lobe (post-embryonic human) @@ -98100,8 +92625,7 @@ - left limbic lobe (post-embryonic human) - FMA:72981 + left limbic lobe (post-embryonic human) @@ -98120,8 +92644,7 @@ - right lung (post-embryonic human) - FMA:7309 + right lung (post-embryonic human) @@ -98140,8 +92663,7 @@ - left lung (post-embryonic human) - FMA:7310 + left lung (post-embryonic human) @@ -98160,8 +92682,7 @@ - lobe of lung (post-embryonic human) - FMA:7311 + lobe of lung (post-embryonic human) @@ -98180,8 +92701,7 @@ - pisiform joint (post-embryonic human) - FMA:73126 + pisiform joint (post-embryonic human) @@ -98200,8 +92720,7 @@ - pulmonary acinus (post-embryonic human) - FMA:7313 + pulmonary acinus (post-embryonic human) @@ -98220,8 +92739,7 @@ - alveolar sac (post-embryonic human) - FMA:7317 + alveolar sac (post-embryonic human) @@ -98240,8 +92758,7 @@ - alveolus of lung (post-embryonic human) - FMA:7318 + alveolus of lung (post-embryonic human) @@ -98260,8 +92777,7 @@ - medial-intermediate intercuneiform joint (post-embryonic human) - FMA:73222 + medial-intermediate intercuneiform joint (post-embryonic human) @@ -98280,8 +92796,7 @@ - lateral-intermediate intercuneiform joint (post-embryonic human) - FMA:73223 + lateral-intermediate intercuneiform joint (post-embryonic human) @@ -98300,8 +92815,7 @@ - scrotal sweat (post-embryonic human) - FMA:73266 + scrotal sweat (post-embryonic human) @@ -98320,8 +92834,7 @@ - mammary gland alveolus (post-embryonic human) - FMA:73285 + mammary gland alveolus (post-embryonic human) @@ -98340,8 +92853,7 @@ - lung hilus (post-embryonic human) - FMA:7330 + lung hilus (post-embryonic human) @@ -98360,8 +92872,7 @@ - upper lobe of right lung (post-embryonic human) - FMA:7333 + upper lobe of right lung (post-embryonic human) @@ -98380,8 +92891,7 @@ - upper lobe of lung (post-embryonic human) - FMA:7334 + upper lobe of lung (post-embryonic human) @@ -98400,8 +92910,7 @@ - lower lobe of lung (post-embryonic human) - FMA:7335 + lower lobe of lung (post-embryonic human) @@ -98420,8 +92929,7 @@ - lower lobe of right lung (post-embryonic human) - FMA:7337 + lower lobe of right lung (post-embryonic human) @@ -98440,8 +92948,7 @@ - alveolar atrium (post-embryonic human) - FMA:7340 + alveolar atrium (post-embryonic human) @@ -98460,8 +92967,7 @@ - pulmonary alveolar duct (post-embryonic human) - FMA:7341 + pulmonary alveolar duct (post-embryonic human) @@ -98480,8 +92986,7 @@ - upper lobe of left lung (post-embryonic human) - FMA:7370 + upper lobe of left lung (post-embryonic human) @@ -98500,8 +93005,7 @@ - lower lobe of left lung (post-embryonic human) - FMA:7371 + lower lobe of left lung (post-embryonic human) @@ -98520,8 +93024,7 @@ - heart vasculature (post-embryonic human) - FMA:73747 + heart vasculature (post-embryonic human) @@ -98540,8 +93043,7 @@ - vasculature of liver (post-embryonic human) - FMA:73748 + vasculature of liver (post-embryonic human) @@ -98560,8 +93062,7 @@ - lung vasculature (post-embryonic human) - FMA:73750 + lung vasculature (post-embryonic human) @@ -98580,8 +93081,7 @@ - nasal muscle (post-embryonic human) - FMA:73758 + nasal muscle (post-embryonic human) @@ -98600,8 +93100,7 @@ - middle lobe of right lung (post-embryonic human) - FMA:7383 + middle lobe of right lung (post-embryonic human) @@ -98620,8 +93119,7 @@ - ventral commissural nucleus of spinal cord (post-embryonic human) - FMA:73900 + ventral commissural nucleus of spinal cord (post-embryonic human) @@ -98640,8 +93138,7 @@ - nucleus proprius of spinal cord (post-embryonic human) - FMA:73906 + nucleus proprius of spinal cord (post-embryonic human) @@ -98660,8 +93157,7 @@ - spinal cord reticular nucleus (post-embryonic human) - FMA:73909 + spinal cord reticular nucleus (post-embryonic human) @@ -98680,8 +93176,7 @@ - dorsal thoracic nucleus (post-embryonic human) - FMA:73912 + dorsal thoracic nucleus (post-embryonic human) @@ -98700,8 +93195,7 @@ - intermediolateral nucleus (post-embryonic human) - FMA:73915 + intermediolateral nucleus (post-embryonic human) @@ -98720,8 +93214,7 @@ - lateral cervical nucleus (post-embryonic human) - FMA:73921 + lateral cervical nucleus (post-embryonic human) @@ -98740,8 +93233,7 @@ - tracheobronchial tree (post-embryonic human) - FMA:7393 + tracheobronchial tree (post-embryonic human) @@ -98760,8 +93252,7 @@ - gracile fasciculus of spinal cord (post-embryonic human) - FMA:73938 + gracile fasciculus of spinal cord (post-embryonic human) @@ -98780,8 +93271,7 @@ - trachea (post-embryonic human) - FMA:7394 + trachea (post-embryonic human) @@ -98800,8 +93290,7 @@ - cuneate fasciculus of spinal cord (post-embryonic human) - FMA:73941 + cuneate fasciculus of spinal cord (post-embryonic human) @@ -98820,8 +93309,7 @@ - right main bronchus (post-embryonic human) - FMA:7395 + right main bronchus (post-embryonic human) @@ -98840,8 +93328,7 @@ - left main bronchus (post-embryonic human) - FMA:7396 + left main bronchus (post-embryonic human) @@ -98860,8 +93347,7 @@ - lobar bronchus of right lung cranial lobe (post-embryonic human) - FMA:7397 + lobar bronchus of right lung cranial lobe (post-embryonic human) @@ -98880,8 +93366,7 @@ - medulla reticulospinal tract (post-embryonic human) - FMA:73989 + medulla reticulospinal tract (post-embryonic human) @@ -98900,8 +93385,7 @@ - lateral funiculus of spinal cord (post-embryonic human) - FMA:74000 + lateral funiculus of spinal cord (post-embryonic human) @@ -98920,8 +93404,7 @@ - ventral funiculus of spinal cord (post-embryonic human) - FMA:74003 + ventral funiculus of spinal cord (post-embryonic human) @@ -98940,8 +93423,7 @@ - lobar bronchus of right lung middle lobe (post-embryonic human) - FMA:7401 + lobar bronchus of right lung middle lobe (post-embryonic human) @@ -98960,8 +93442,7 @@ - substantia gelatinosa (post-embryonic human) - FMA:74019 + substantia gelatinosa (post-embryonic human) @@ -98980,8 +93461,7 @@ - node of ligamentum arteriosum (post-embryonic human) - FMA:74033 + node of ligamentum arteriosum (post-embryonic human) @@ -99000,8 +93480,7 @@ - hippocampal formation (post-embryonic human) - FMA:74038 + hippocampal formation (post-embryonic human) @@ -99020,8 +93499,7 @@ - hippocampal field (post-embryonic human) - FMA:74041 + hippocampal field (post-embryonic human) @@ -99040,8 +93518,7 @@ - CA1 field of hippocampus (post-embryonic human) - FMA:74042 + CA1 field of hippocampus (post-embryonic human) @@ -99060,8 +93537,7 @@ - CA2 field of hippocampus (post-embryonic human) - FMA:74044 + CA2 field of hippocampus (post-embryonic human) @@ -99080,8 +93556,7 @@ - CA3 field of hippocampus (post-embryonic human) - FMA:74045 + CA3 field of hippocampus (post-embryonic human) @@ -99100,8 +93575,7 @@ - medial amygdaloid nucleus (post-embryonic human) - FMA:74046 + medial amygdaloid nucleus (post-embryonic human) @@ -99120,8 +93594,7 @@ - central amygdaloid nucleus (post-embryonic human) - FMA:74047 + central amygdaloid nucleus (post-embryonic human) @@ -99140,8 +93613,7 @@ - main bronchus (post-embryonic human) - FMA:7405 + main bronchus (post-embryonic human) @@ -99160,8 +93632,7 @@ - paradidymis (post-embryonic human) - FMA:74055 + paradidymis (post-embryonic human) @@ -99180,8 +93651,7 @@ - lobar bronchus (post-embryonic human) - FMA:7406 + lobar bronchus (post-embryonic human) @@ -99200,8 +93670,7 @@ - masticatory muscle (post-embryonic human) - FMA:74060 + masticatory muscle (post-embryonic human) @@ -99220,8 +93689,7 @@ - segmental bronchus (post-embryonic human) - FMA:7407 + segmental bronchus (post-embryonic human) @@ -99240,8 +93708,7 @@ - bronchus (post-embryonic human) - FMA:7409 + bronchus (post-embryonic human) @@ -99260,8 +93727,7 @@ - bronchiole (post-embryonic human) - FMA:7410 + bronchiole (post-embryonic human) @@ -99280,8 +93746,7 @@ - terminal bronchiole (post-embryonic human) - FMA:7411 + terminal bronchiole (post-embryonic human) @@ -99300,8 +93765,7 @@ - respiratory bronchiole (post-embryonic human) - FMA:7412 + respiratory bronchiole (post-embryonic human) @@ -99320,8 +93784,7 @@ - secondary pulmonary lobule (post-embryonic human) - FMA:7414 + secondary pulmonary lobule (post-embryonic human) @@ -99340,8 +93803,7 @@ - connective tissue of prostate gland (post-embryonic human) - FMA:74165 + connective tissue of prostate gland (post-embryonic human) @@ -99360,8 +93822,7 @@ - subepithelial connective tissue of prostatic gland (post-embryonic human) - FMA:74189 + subepithelial connective tissue of prostatic gland (post-embryonic human) @@ -99380,8 +93841,7 @@ - lobar bronchus of left lung upper lobe (post-embryonic human) - FMA:7423 + lobar bronchus of left lung upper lobe (post-embryonic human) @@ -99400,8 +93860,7 @@ - prostate gland smooth muscle (post-embryonic human) - FMA:74245 + prostate gland smooth muscle (post-embryonic human) @@ -99420,8 +93879,7 @@ - prostate luminal epithelium (post-embryonic human) - FMA:74262 + prostate luminal epithelium (post-embryonic human) @@ -99440,8 +93898,7 @@ - transitional epithelium of prostatic urethra (post-embryonic human) - FMA:74267 + transitional epithelium of prostatic urethra (post-embryonic human) @@ -99460,8 +93917,7 @@ - right kidney interstitium (post-embryonic human) - FMA:74270 + right kidney interstitium (post-embryonic human) @@ -99480,8 +93936,7 @@ - left kidney interstitium (post-embryonic human) - FMA:74271 + left kidney interstitium (post-embryonic human) @@ -99500,8 +93955,7 @@ - glomerular parietal epithelium (post-embryonic human) - FMA:74272 + glomerular parietal epithelium (post-embryonic human) @@ -99520,8 +93974,7 @@ - glomerular visceral epithelium (post-embryonic human) - FMA:74273 + glomerular visceral epithelium (post-embryonic human) @@ -99540,8 +93993,7 @@ - glomerular basement membrane (post-embryonic human) - FMA:74274 + glomerular basement membrane (post-embryonic human) @@ -99560,8 +94012,7 @@ - lamina rara externa (post-embryonic human) - FMA:74275 + lamina rara externa (post-embryonic human) @@ -99580,8 +94031,7 @@ - lamina densa of glomerular basement membrane (post-embryonic human) - FMA:74276 + lamina densa of glomerular basement membrane (post-embryonic human) @@ -99600,8 +94050,7 @@ - lamina rara interna (post-embryonic human) - FMA:74277 + lamina rara interna (post-embryonic human) @@ -99620,8 +94069,7 @@ - pararenal fat (post-embryonic human) - FMA:74280 + pararenal fat (post-embryonic human) @@ -99640,8 +94088,7 @@ - outer cortex of kidney (post-embryonic human) - FMA:74285 + outer cortex of kidney (post-embryonic human) @@ -99660,8 +94107,7 @@ - juxtamedullary cortex (post-embryonic human) - FMA:74288 + juxtamedullary cortex (post-embryonic human) @@ -99680,8 +94126,7 @@ - medullary ray (post-embryonic human) - FMA:74299 + medullary ray (post-embryonic human) @@ -99700,8 +94145,7 @@ - subcutaneous adipose tissue (post-embryonic human) - FMA:74315 + subcutaneous adipose tissue (post-embryonic human) @@ -99720,8 +94164,7 @@ - lobar bronchus of left lung lower lobe (post-embryonic human) - FMA:7432 + lobar bronchus of left lung lower lobe (post-embryonic human) @@ -99740,8 +94183,7 @@ - lingula of left lung (post-embryonic human) - FMA:7433 + lingula of left lung (post-embryonic human) @@ -99760,8 +94202,7 @@ - trachea cartilage (post-embryonic human) - FMA:7434 + trachea cartilage (post-embryonic human) @@ -99780,8 +94221,7 @@ - subiculum (post-embryonic human) - FMA:74414 + subiculum (post-embryonic human) @@ -99800,8 +94240,7 @@ - aorta tunica intima (post-embryonic human) - FMA:74419 + aorta tunica intima (post-embryonic human) @@ -99820,8 +94259,7 @@ - primary lactiferous duct (post-embryonic human) - FMA:74428 + primary lactiferous duct (post-embryonic human) @@ -99840,8 +94278,7 @@ - secondary lactiferous duct (post-embryonic human) - FMA:74430 + secondary lactiferous duct (post-embryonic human) @@ -99860,8 +94297,7 @@ - tertiary lactiferous duct (post-embryonic human) - FMA:74431 + tertiary lactiferous duct (post-embryonic human) @@ -99880,8 +94316,7 @@ - quarternary lactiferous duct (post-embryonic human) - FMA:74432 + quarternary lactiferous duct (post-embryonic human) @@ -99900,8 +94335,7 @@ - aorta tunica media (post-embryonic human) - FMA:74433 + aorta tunica media (post-embryonic human) @@ -99920,8 +94354,7 @@ - acinus of lactiferous gland (post-embryonic human) - FMA:74438 + acinus of lactiferous gland (post-embryonic human) @@ -99940,8 +94373,7 @@ - epithelium of mammary gland (post-embryonic human) - FMA:74445 + epithelium of mammary gland (post-embryonic human) @@ -99960,8 +94392,7 @@ - mammary gland luminal epithelium (post-embryonic human) - FMA:74458 + mammary gland luminal epithelium (post-embryonic human) @@ -99980,8 +94411,7 @@ - mammary gland connective tissue (post-embryonic human) - FMA:74479 + mammary gland connective tissue (post-embryonic human) @@ -100000,8 +94430,7 @@ - mammary gland connective tissue (post-embryonic human) - FMA:74483 + mammary gland connective tissue (post-embryonic human) @@ -100020,8 +94449,7 @@ - supraspinal nucleus (post-embryonic human) - FMA:74507 + supraspinal nucleus (post-embryonic human) @@ -100040,8 +94468,7 @@ - superior medullary velum (post-embryonic human) - FMA:74508 + superior medullary velum (post-embryonic human) @@ -100060,8 +94487,7 @@ - medial olfactory gyrus (post-embryonic human) - FMA:74509 + medial olfactory gyrus (post-embryonic human) @@ -100080,8 +94506,7 @@ - central gray substance of midbrain (post-embryonic human) - FMA:74510 + central gray substance of midbrain (post-embryonic human) @@ -100100,8 +94525,7 @@ - quadrigeminal cistern (post-embryonic human) - FMA:74511 + quadrigeminal cistern (post-embryonic human) @@ -100120,8 +94544,7 @@ - ventricular system choroidal fissure (post-embryonic human) - FMA:74512 + ventricular system choroidal fissure (post-embryonic human) @@ -100140,8 +94563,7 @@ - chiasmatic cistern (post-embryonic human) - FMA:74515 + chiasmatic cistern (post-embryonic human) @@ -100160,8 +94582,7 @@ - cistern of lamina terminalis (post-embryonic human) - FMA:74516 + cistern of lamina terminalis (post-embryonic human) @@ -100180,8 +94601,7 @@ - cerebellomedullary cistern (post-embryonic human) - FMA:74517 + cerebellomedullary cistern (post-embryonic human) @@ -100200,8 +94620,7 @@ - occipitotemporal sulcus (post-embryonic human) - FMA:74518 + occipitotemporal sulcus (post-embryonic human) @@ -100220,8 +94639,7 @@ - anterior horn of lateral ventricle (post-embryonic human) - FMA:74520 + anterior horn of lateral ventricle (post-embryonic human) @@ -100240,8 +94658,7 @@ - lateral inferior limiting sulcus (post-embryonic human) - FMA:74523 + lateral inferior limiting sulcus (post-embryonic human) @@ -100260,8 +94677,7 @@ - flexor muscle (post-embryonic human) - FMA:74559 + flexor muscle (post-embryonic human) @@ -100280,8 +94696,7 @@ - right lung hilus (post-embryonic human) - FMA:7456 + right lung hilus (post-embryonic human) @@ -100300,8 +94715,7 @@ - hemolymphoid system (post-embryonic human) - FMA:74562 + hemolymphoid system (post-embryonic human) @@ -100320,8 +94734,7 @@ - gingival groove (post-embryonic human) - FMA:74580 + gingival groove (post-embryonic human) @@ -100340,8 +94753,7 @@ - sulcus ampullaris (post-embryonic human) - FMA:74584 + sulcus ampullaris (post-embryonic human) @@ -100360,8 +94772,7 @@ - intertrochanteric line (post-embryonic human) - FMA:74587 + intertrochanteric line (post-embryonic human) @@ -100380,8 +94791,7 @@ - lymphoid system (post-embryonic human) - FMA:74594 + lymphoid system (post-embryonic human) @@ -100400,8 +94810,7 @@ - red bone marrow (post-embryonic human) - FMA:74595 + red bone marrow (post-embryonic human) @@ -100420,8 +94829,7 @@ - yellow bone marrow (post-embryonic human) - FMA:74596 + yellow bone marrow (post-embryonic human) @@ -100440,8 +94848,7 @@ - capsule of lymph node (post-embryonic human) - FMA:74604 + capsule of lymph node (post-embryonic human) @@ -100460,8 +94867,7 @@ - trabecula of lymph node (post-embryonic human) - FMA:74605 + trabecula of lymph node (post-embryonic human) @@ -100480,8 +94886,7 @@ - vasculature of organ (post-embryonic human) - FMA:74612 + vasculature of organ (post-embryonic human) @@ -100500,8 +94905,7 @@ - non-lymphatic part of lymphoid system (post-embryonic human) - FMA:74623 + non-lymphatic part of lymphoid system (post-embryonic human) @@ -100520,8 +94924,7 @@ - adenohypophysis (post-embryonic human) - FMA:74627 + adenohypophysis (post-embryonic human) @@ -100540,8 +94943,7 @@ - neurohypophysis (post-embryonic human) - FMA:74628 + neurohypophysis (post-embryonic human) @@ -100560,8 +94962,7 @@ - pars distalis of adenohypophysis (post-embryonic human) - FMA:74630 + pars distalis of adenohypophysis (post-embryonic human) @@ -100580,8 +94981,7 @@ - pars tuberalis of adenohypophysis (post-embryonic human) - FMA:74631 + pars tuberalis of adenohypophysis (post-embryonic human) @@ -100600,8 +95000,7 @@ - pars intermedia of adenohypophysis (post-embryonic human) - FMA:74632 + pars intermedia of adenohypophysis (post-embryonic human) @@ -100620,8 +95019,7 @@ - median eminence of neurohypophysis (post-embryonic human) - FMA:74634 + median eminence of neurohypophysis (post-embryonic human) @@ -100640,8 +95038,7 @@ - pituitary stalk (post-embryonic human) - FMA:74635 + pituitary stalk (post-embryonic human) @@ -100660,8 +95057,7 @@ - neural lobe of neurohypophysis (post-embryonic human) - FMA:74636 + neural lobe of neurohypophysis (post-embryonic human) @@ -100680,8 +95076,7 @@ - bifurcation of trachea (post-embryonic human) - FMA:7464 + bifurcation of trachea (post-embryonic human) @@ -100700,8 +95095,7 @@ - carina of trachea (post-embryonic human) - FMA:7465 + carina of trachea (post-embryonic human) @@ -100720,8 +95114,7 @@ - mucosa of anal canal (post-embryonic human) - FMA:74654 + mucosa of anal canal (post-embryonic human) @@ -100740,8 +95133,7 @@ - integument (post-embryonic human) - FMA:74657 + integument (post-embryonic human) @@ -100760,8 +95152,7 @@ - trachealis (post-embryonic human) - FMA:7466 + trachealis (post-embryonic human) @@ -100780,8 +95171,7 @@ - lumen of trachea (post-embryonic human) - FMA:7469 + lumen of trachea (post-embryonic human) @@ -100800,8 +95190,7 @@ - tracheal mucosa (post-embryonic human) - FMA:7471 + tracheal mucosa (post-embryonic human) @@ -100820,8 +95209,7 @@ - vasculature of head (post-embryonic human) - FMA:74710 + vasculature of head (post-embryonic human) @@ -100840,8 +95228,7 @@ - vasculature of trunk (post-embryonic human) - FMA:74712 + vasculature of trunk (post-embryonic human) @@ -100860,8 +95247,7 @@ - submucosa of trachea (post-embryonic human) - FMA:7472 + submucosa of trachea (post-embryonic human) @@ -100880,8 +95266,7 @@ - trachea gland (post-embryonic human) - FMA:7473 + trachea gland (post-embryonic human) @@ -100900,8 +95285,7 @@ - long bone (post-embryonic human) - FMA:7474 + long bone (post-embryonic human) @@ -100920,8 +95304,7 @@ - vasculature of eye (post-embryonic human) - FMA:74743 + vasculature of eye (post-embryonic human) @@ -100940,8 +95323,7 @@ - short bone (post-embryonic human) - FMA:7475 + short bone (post-embryonic human) @@ -100960,8 +95342,7 @@ - flat bone (post-embryonic human) - FMA:7476 + flat bone (post-embryonic human) @@ -100980,8 +95361,7 @@ - irregular bone (post-embryonic human) - FMA:7477 + irregular bone (post-embryonic human) @@ -101000,8 +95380,7 @@ - pneumatized bone (post-embryonic human) - FMA:7478 + pneumatized bone (post-embryonic human) @@ -101020,8 +95399,7 @@ - renin-angiotensin system (post-embryonic human) - FMA:74787 + renin-angiotensin system (post-embryonic human) @@ -101040,8 +95418,7 @@ - thoracic rib cage (post-embryonic human) - FMA:7480 + thoracic rib cage (post-embryonic human) @@ -101060,8 +95437,7 @@ - musculoskeletal system (post-embryonic human) - FMA:7482 + musculoskeletal system (post-embryonic human) @@ -101080,8 +95456,7 @@ - axial skeletal system (post-embryonic human) - FMA:7483 + axial skeletal system (post-embryonic human) @@ -101100,8 +95475,7 @@ - appendicular skeletal system (post-embryonic human) - FMA:7484 + appendicular skeletal system (post-embryonic human) @@ -101120,8 +95494,7 @@ - sternum (post-embryonic human) - FMA:7485 + sternum (post-embryonic human) @@ -101140,8 +95513,7 @@ - manubrium of sternum (post-embryonic human) - FMA:7486 + manubrium of sternum (post-embryonic human) @@ -101160,8 +95532,7 @@ - tongue keratinized epithelium (post-embryonic human) - FMA:74865 + tongue keratinized epithelium (post-embryonic human) @@ -101180,8 +95551,7 @@ - habenular trigone (post-embryonic human) - FMA:74868 + habenular trigone (post-embryonic human) @@ -101200,8 +95570,7 @@ - interthalamic adhesion (post-embryonic human) - FMA:74869 + interthalamic adhesion (post-embryonic human) @@ -101220,8 +95589,7 @@ - body of sternum (post-embryonic human) - FMA:7487 + body of sternum (post-embryonic human) @@ -101240,8 +95608,7 @@ - anterior median eminence (post-embryonic human) - FMA:74870 + anterior median eminence (post-embryonic human) @@ -101260,8 +95627,7 @@ - mucosa of dorsum of tongue (post-embryonic human) - FMA:74871 + mucosa of dorsum of tongue (post-embryonic human) @@ -101280,8 +95646,7 @@ - posterior median eminence (post-embryonic human) - FMA:74875 + posterior median eminence (post-embryonic human) @@ -101300,8 +95665,7 @@ - mammillary body (post-embryonic human) - FMA:74877 + mammillary body (post-embryonic human) @@ -101320,8 +95684,7 @@ - xiphoid process (post-embryonic human) - FMA:7488 + xiphoid process (post-embryonic human) @@ -101340,8 +95703,7 @@ - olfactory trigone (post-embryonic human) - FMA:74883 + olfactory trigone (post-embryonic human) @@ -101360,8 +95722,7 @@ - uncus of parahippocampal gyrus (post-embryonic human) - FMA:74884 + uncus of parahippocampal gyrus (post-embryonic human) @@ -101380,8 +95741,7 @@ - frontal pole (post-embryonic human) - FMA:74885 + frontal pole (post-embryonic human) @@ -101400,8 +95760,7 @@ - frontal operculum (post-embryonic human) - FMA:74886 + frontal operculum (post-embryonic human) @@ -101420,8 +95779,7 @@ - orbital operculum (post-embryonic human) - FMA:74887 + orbital operculum (post-embryonic human) @@ -101440,8 +95798,7 @@ - precentral operculum (post-embryonic human) - FMA:74888 + precentral operculum (post-embryonic human) @@ -101460,8 +95817,7 @@ - parietal operculum (post-embryonic human) - FMA:74889 + parietal operculum (post-embryonic human) @@ -101480,8 +95836,7 @@ - sternebra (post-embryonic human) - FMA:7489 + sternebra (post-embryonic human) @@ -101500,8 +95855,7 @@ - temporal pole (post-embryonic human) - FMA:74890 + temporal pole (post-embryonic human) @@ -101520,8 +95874,7 @@ - temporal operculum (post-embryonic human) - FMA:74891 + temporal operculum (post-embryonic human) @@ -101540,8 +95893,7 @@ - occipital pole (post-embryonic human) - FMA:74892 + occipital pole (post-embryonic human) @@ -101560,8 +95912,7 @@ - conus medullaris (post-embryonic human) - FMA:74897 + conus medullaris (post-embryonic human) @@ -101580,8 +95931,7 @@ - skeletal joint (post-embryonic human) - FMA:7490 + skeletal joint (post-embryonic human) @@ -101600,8 +95950,7 @@ - parakeratinized epithelium of tongue (post-embryonic human) - FMA:74908 + parakeratinized epithelium of tongue (post-embryonic human) @@ -101620,8 +95969,7 @@ - nonsynovial joint (post-embryonic human) - FMA:7491 + nonsynovial joint (post-embryonic human) @@ -101640,8 +95988,7 @@ - fibrous joint (post-embryonic human) - FMA:7492 + fibrous joint (post-embryonic human) @@ -101660,8 +96007,7 @@ - cranial suture (post-embryonic human) - FMA:7493 + cranial suture (post-embryonic human) @@ -101680,8 +96026,7 @@ - syndesmosis (post-embryonic human) - FMA:7494 + syndesmosis (post-embryonic human) @@ -101700,8 +96045,7 @@ - macula of saccule of membranous labyrinth (post-embryonic human) - FMA:74944 + macula of saccule of membranous labyrinth (post-embryonic human) @@ -101720,8 +96064,7 @@ - dento-alveolar joint (post-embryonic human) - FMA:7495 + dento-alveolar joint (post-embryonic human) @@ -101740,8 +96083,7 @@ - cartilaginous joint (post-embryonic human) - FMA:7496 + cartilaginous joint (post-embryonic human) @@ -101760,8 +96102,7 @@ - macula of utricle of membranous labyrinth (post-embryonic human) - FMA:74960 + macula of utricle of membranous labyrinth (post-embryonic human) @@ -101780,8 +96121,7 @@ - synchondrosis (post-embryonic human) - FMA:7497 + synchondrosis (post-embryonic human) @@ -101800,8 +96140,7 @@ - symphysis (post-embryonic human) - FMA:7498 + symphysis (post-embryonic human) @@ -101820,8 +96159,7 @@ - synostosis (post-embryonic human) - FMA:7499 + synostosis (post-embryonic human) @@ -101840,8 +96178,7 @@ - pennate muscle (post-embryonic human) - FMA:74993 + pennate muscle (post-embryonic human) @@ -101860,8 +96197,7 @@ - cutaneous muscle (post-embryonic human) - FMA:74996 + cutaneous muscle (post-embryonic human) @@ -101880,8 +96216,7 @@ - abductor muscle (post-embryonic human) - FMA:74997 + abductor muscle (post-embryonic human) @@ -101900,8 +96235,7 @@ - adductor muscle (post-embryonic human) - FMA:74998 + adductor muscle (post-embryonic human) @@ -101920,8 +96254,7 @@ - flexor muscle (post-embryonic human) - FMA:74999 + flexor muscle (post-embryonic human) @@ -101940,8 +96273,7 @@ - extensor muscle (post-embryonic human) - FMA:75000 + extensor muscle (post-embryonic human) @@ -101960,8 +96292,7 @@ - supinator muscle (post-embryonic human) - FMA:75002 + supinator muscle (post-embryonic human) @@ -101980,8 +96311,7 @@ - sphincter muscle (post-embryonic human) - FMA:75004 + sphincter muscle (post-embryonic human) @@ -102000,8 +96330,7 @@ - lumen of central nervous system (post-embryonic human) - FMA:75007 + lumen of central nervous system (post-embryonic human) @@ -102020,8 +96349,7 @@ - synovial joint (post-embryonic human) - FMA:7501 + synovial joint (post-embryonic human) @@ -102040,8 +96368,7 @@ - fourth ventricle median aperture (post-embryonic human) - FMA:75015 + fourth ventricle median aperture (post-embryonic human) @@ -102060,8 +96387,7 @@ - manubriosternal joint (post-embryonic human) - FMA:7502 + manubriosternal joint (post-embryonic human) @@ -102080,8 +96406,7 @@ - xiphisternal joint (post-embryonic human) - FMA:7503 + xiphisternal joint (post-embryonic human) @@ -102100,8 +96425,7 @@ - longitudinal arch of pes (post-embryonic human) - FMA:75030 + longitudinal arch of pes (post-embryonic human) @@ -102120,8 +96444,7 @@ - anatomical line along groove (post-embryonic human) - FMA:75037 + anatomical line along groove (post-embryonic human) @@ -102140,8 +96463,7 @@ - spheno-petrosal fissure (post-embryonic human) - FMA:75038 + spheno-petrosal fissure (post-embryonic human) @@ -102160,8 +96482,7 @@ - intertrochanteric crest (post-embryonic human) - FMA:75100 + intertrochanteric crest (post-embryonic human) @@ -102180,8 +96501,7 @@ - palatine raphe (post-embryonic human) - FMA:75111 + palatine raphe (post-embryonic human) @@ -102200,8 +96520,7 @@ - raphe of scrotum (post-embryonic human) - FMA:75130 + raphe of scrotum (post-embryonic human) @@ -102220,8 +96539,7 @@ - horizontal fissure of cerebellum (post-embryonic human) - FMA:75135 + horizontal fissure of cerebellum (post-embryonic human) @@ -102240,8 +96558,7 @@ - subarachnoid fissure (post-embryonic human) - FMA:75136 + subarachnoid fissure (post-embryonic human) @@ -102260,8 +96577,7 @@ - ansoparamedian fissure of cerebellum (post-embryonic human) - FMA:75137 + ansoparamedian fissure of cerebellum (post-embryonic human) @@ -102280,8 +96596,7 @@ - prepyramidal fissure of cerebellum (post-embryonic human) - FMA:75138 + prepyramidal fissure of cerebellum (post-embryonic human) @@ -102300,8 +96615,7 @@ - submucosa of pharynx (post-embryonic human) - FMA:75144 + submucosa of pharynx (post-embryonic human) @@ -102320,8 +96634,7 @@ - bone marrow cavity (post-embryonic human) - FMA:75147 + bone marrow cavity (post-embryonic human) @@ -102340,8 +96653,7 @@ - dentition (post-embryonic human) - FMA:75150 + dentition (post-embryonic human) @@ -102360,8 +96672,7 @@ - primary dentition (post-embryonic human) - FMA:75151 + primary dentition (post-embryonic human) @@ -102380,8 +96691,7 @@ - secondary dentition (post-embryonic human) - FMA:75152 + secondary dentition (post-embryonic human) @@ -102400,8 +96710,7 @@ - corticopontine fibers (post-embryonic human) - FMA:75190 + corticopontine fibers (post-embryonic human) @@ -102420,8 +96729,7 @@ - pyramid of medulla oblongata (post-embryonic human) - FMA:75254 + pyramid of medulla oblongata (post-embryonic human) @@ -102440,8 +96748,7 @@ - sensory system (post-embryonic human) - FMA:75259 + sensory system (post-embryonic human) @@ -102460,8 +96767,7 @@ - subfornical organ (post-embryonic human) - FMA:75260 + subfornical organ (post-embryonic human) @@ -102480,8 +96786,7 @@ - limen of insula (post-embryonic human) - FMA:75266 + limen of insula (post-embryonic human) @@ -102500,8 +96805,7 @@ - vallecula of cerebellum (post-embryonic human) - FMA:75267 + vallecula of cerebellum (post-embryonic human) @@ -102520,8 +96824,7 @@ - hinge joint (post-embryonic human) - FMA:75296 + hinge joint (post-embryonic human) @@ -102540,8 +96843,7 @@ - saddle joint (post-embryonic human) - FMA:75298 + saddle joint (post-embryonic human) @@ -102560,8 +96862,7 @@ - condylar joint (post-embryonic human) - FMA:75300 + condylar joint (post-embryonic human) @@ -102580,8 +96881,7 @@ - lumen of nutrient foramen (post-embryonic human) - FMA:75304 + lumen of nutrient foramen (post-embryonic human) @@ -102600,8 +96900,7 @@ - incisive foramen (post-embryonic human) - FMA:75305 + incisive foramen (post-embryonic human) @@ -102620,8 +96919,7 @@ - foramen magnum (post-embryonic human) - FMA:75306 + foramen magnum (post-embryonic human) @@ -102640,8 +96938,7 @@ - temporal fossa (post-embryonic human) - FMA:75307 + temporal fossa (post-embryonic human) @@ -102660,8 +96957,7 @@ - infratemporal fossa (post-embryonic human) - FMA:75308 + infratemporal fossa (post-embryonic human) @@ -102680,8 +96976,7 @@ - iliac fossa (post-embryonic human) - FMA:75316 + iliac fossa (post-embryonic human) @@ -102700,8 +96995,7 @@ - valve of foramen ovale (post-embryonic human) - FMA:75348 + valve of foramen ovale (post-embryonic human) @@ -102720,8 +97014,7 @@ - interventricular foramen of CNS (post-embryonic human) - FMA:75351 + interventricular foramen of CNS (post-embryonic human) @@ -102740,8 +97033,7 @@ - hypoglossal canal (post-embryonic human) - FMA:75370 + hypoglossal canal (post-embryonic human) @@ -102760,8 +97052,7 @@ - cochlear canal (post-embryonic human) - FMA:75371 + cochlear canal (post-embryonic human) @@ -102780,8 +97071,7 @@ - pectinate line (post-embryonic human) - FMA:75383 + pectinate line (post-embryonic human) @@ -102800,8 +97090,7 @@ - epiphyseal plate (post-embryonic human) - FMA:75427 + epiphyseal plate (post-embryonic human) @@ -102820,8 +97109,7 @@ - apophysis (post-embryonic human) - FMA:75428 + apophysis (post-embryonic human) @@ -102840,8 +97128,7 @@ - tubercle (post-embryonic human) - FMA:75429 + tubercle (post-embryonic human) @@ -102860,8 +97147,7 @@ - bony projection (post-embryonic human) - FMA:75433 + bony projection (post-embryonic human) @@ -102880,8 +97166,7 @@ - condyle (post-embryonic human) - FMA:75434 + condyle (post-embryonic human) @@ -102900,8 +97185,7 @@ - epicondyle (post-embryonic human) - FMA:75435 + epicondyle (post-embryonic human) @@ -102920,8 +97204,7 @@ - ossification center (post-embryonic human) - FMA:75436 + ossification center (post-embryonic human) @@ -102940,8 +97223,7 @@ - fontanelle (post-embryonic human) - FMA:75438 + fontanelle (post-embryonic human) @@ -102960,8 +97242,7 @@ - anterior fontanel (post-embryonic human) - FMA:75439 + anterior fontanel (post-embryonic human) @@ -102980,8 +97261,7 @@ - posterior fontanelle (post-embryonic human) - FMA:75440 + posterior fontanelle (post-embryonic human) @@ -103000,8 +97280,7 @@ - sphenoidal fontanelle (post-embryonic human) - FMA:75441 + sphenoidal fontanelle (post-embryonic human) @@ -103020,8 +97299,7 @@ - perichondrium (post-embryonic human) - FMA:75446 + perichondrium (post-embryonic human) @@ -103040,8 +97318,7 @@ - primary ossification center (post-embryonic human) - FMA:75447 + primary ossification center (post-embryonic human) @@ -103060,8 +97337,7 @@ - secondary ossification center (post-embryonic human) - FMA:75448 + secondary ossification center (post-embryonic human) @@ -103080,8 +97356,7 @@ - statoconial membrane (post-embryonic human) - FMA:75570 + statoconial membrane (post-embryonic human) @@ -103100,8 +97375,7 @@ - otolithic part of statoconial membrane (post-embryonic human) - FMA:75573 + otolithic part of statoconial membrane (post-embryonic human) @@ -103120,8 +97394,7 @@ - gelatinous layer of statoconial membrane (post-embryonic human) - FMA:75588 + gelatinous layer of statoconial membrane (post-embryonic human) @@ -103140,8 +97413,7 @@ - manual acropodium region (post-embryonic human) - FMA:75592 + manual acropodium region (post-embryonic human) @@ -103160,8 +97432,7 @@ - epithelium of utricle (post-embryonic human) - FMA:75604 + epithelium of utricle (post-embryonic human) @@ -103180,8 +97451,7 @@ - epithelium of saccule (post-embryonic human) - FMA:75605 + epithelium of saccule (post-embryonic human) @@ -103200,8 +97470,7 @@ - vestibular epithelium (post-embryonic human) - FMA:75606 + vestibular epithelium (post-embryonic human) @@ -103220,8 +97489,7 @@ - crista of ampulla of anterior semicircular duct of membranous laybrinth (post-embryonic human) - FMA:75610 + crista of ampulla of anterior semicircular duct of membranous laybrinth (post-embryonic human) @@ -103240,8 +97508,7 @@ - crista of ampulla of posterior semicircular duct of membranous laybrinth (post-embryonic human) - FMA:75611 + crista of ampulla of posterior semicircular duct of membranous laybrinth (post-embryonic human) @@ -103260,8 +97527,7 @@ - crista of ampulla of lateral semicircular duct of membranous laybrinth (post-embryonic human) - FMA:75612 + crista of ampulla of lateral semicircular duct of membranous laybrinth (post-embryonic human) @@ -103280,8 +97546,7 @@ - fibrous connective tissue (post-embryonic human) - FMA:75634 + fibrous connective tissue (post-embryonic human) @@ -103300,8 +97565,7 @@ - crista ampullaris neuroepithelium (post-embryonic human) - FMA:75636 + crista ampullaris neuroepithelium (post-embryonic human) @@ -103320,8 +97584,7 @@ - endolymphatic sac (post-embryonic human) - FMA:75639 + endolymphatic sac (post-embryonic human) @@ -103340,8 +97603,7 @@ - basis modioli (post-embryonic human) - FMA:75640 + basis modioli (post-embryonic human) @@ -103360,8 +97622,7 @@ - apex of cochlea (post-embryonic human) - FMA:75641 + apex of cochlea (post-embryonic human) @@ -103380,8 +97641,7 @@ - thoracic cavity (post-embryonic human) - FMA:7565 + thoracic cavity (post-embryonic human) @@ -103400,8 +97660,7 @@ - transverse palatine fold (post-embryonic human) - FMA:75652 + transverse palatine fold (post-embryonic human) @@ -103420,8 +97679,7 @@ - transverse folds of rectum (post-embryonic human) - FMA:75657 + transverse folds of rectum (post-embryonic human) @@ -103440,8 +97698,7 @@ - osseus cochlear canal (post-embryonic human) - FMA:75666 + osseus cochlear canal (post-embryonic human) @@ -103460,8 +97717,7 @@ - tract of spinal cord (post-embryonic human) - FMA:75683 + tract of spinal cord (post-embryonic human) @@ -103480,8 +97736,7 @@ - costal arch (post-embryonic human) - FMA:7569 + costal arch (post-embryonic human) @@ -103500,8 +97755,7 @@ - costal arch (post-embryonic human) - FMA:7570 + costal arch (post-embryonic human) @@ -103520,8 +97774,7 @@ - spinal trigeminal tract (post-embryonic human) - FMA:75700 + spinal trigeminal tract (post-embryonic human) @@ -103540,8 +97793,7 @@ - basilar membrane of cochlea (post-embryonic human) - FMA:75706 + basilar membrane of cochlea (post-embryonic human) @@ -103560,8 +97812,7 @@ - zona arcuata of basilar membrane of cochlea (post-embryonic human) - FMA:75709 + zona arcuata of basilar membrane of cochlea (post-embryonic human) @@ -103580,8 +97831,7 @@ - zona pectinata of basilar membrane of cochlea (post-embryonic human) - FMA:75710 + zona pectinata of basilar membrane of cochlea (post-embryonic human) @@ -103600,8 +97850,7 @@ - spiral organ of cochlea (post-embryonic human) - FMA:75715 + spiral organ of cochlea (post-embryonic human) @@ -103620,8 +97869,7 @@ - lateral nucleus of trapezoid body (post-embryonic human) - FMA:75730 + lateral nucleus of trapezoid body (post-embryonic human) @@ -103640,8 +97888,7 @@ - medial nucleus of trapezoid body (post-embryonic human) - FMA:75732 + medial nucleus of trapezoid body (post-embryonic human) @@ -103660,8 +97907,7 @@ - pulmonary lobule (post-embryonic human) - FMA:75739 + pulmonary lobule (post-embryonic human) @@ -103680,8 +97926,7 @@ - rib (post-embryonic human) - FMA:7574 + rib (post-embryonic human) @@ -103700,8 +97945,7 @@ - CA4 field of hippocampus (post-embryonic human) - FMA:75741 + CA4 field of hippocampus (post-embryonic human) @@ -103720,8 +97964,7 @@ - pharyngeal tubercle (post-embryonic human) - FMA:75746 + pharyngeal tubercle (post-embryonic human) @@ -103740,8 +97983,7 @@ - clivus of occipital bone (post-embryonic human) - FMA:75747 + clivus of occipital bone (post-embryonic human) @@ -103760,8 +98002,7 @@ - interparietal bone (post-embryonic human) - FMA:75748 + interparietal bone (post-embryonic human) @@ -103780,8 +98021,7 @@ - head of rib (post-embryonic human) - FMA:7575 + head of rib (post-embryonic human) @@ -103800,8 +98040,7 @@ - external occipital protuberance (post-embryonic human) - FMA:75752 + external occipital protuberance (post-embryonic human) @@ -103820,8 +98059,7 @@ - anterior occipital sulcus (post-embryonic human) - FMA:75758 + anterior occipital sulcus (post-embryonic human) @@ -103840,8 +98078,7 @@ - subarachnoid sulcus (post-embryonic human) - FMA:75759 + subarachnoid sulcus (post-embryonic human) @@ -103860,8 +98097,7 @@ - neck of rib (post-embryonic human) - FMA:7576 + neck of rib (post-embryonic human) @@ -103880,8 +98116,7 @@ - body of rib (post-embryonic human) - FMA:7577 + body of rib (post-embryonic human) @@ -103900,8 +98135,7 @@ - anterior nasal spine of maxilla (post-embryonic human) - FMA:75770 + anterior nasal spine of maxilla (post-embryonic human) @@ -103920,8 +98154,7 @@ - interincisive suture (post-embryonic human) - FMA:75777 + interincisive suture (post-embryonic human) @@ -103940,8 +98173,7 @@ - mandibular symphysis (post-embryonic human) - FMA:75779 + mandibular symphysis (post-embryonic human) @@ -103960,8 +98192,7 @@ - retromolar triangle (post-embryonic human) - FMA:75784 + retromolar triangle (post-embryonic human) @@ -103980,8 +98211,7 @@ - annular epiphysis (post-embryonic human) - FMA:75792 + annular epiphysis (post-embryonic human) @@ -104000,8 +98230,7 @@ - fasciculus of spinal cord (post-embryonic human) - FMA:75799 + fasciculus of spinal cord (post-embryonic human) @@ -104020,8 +98249,7 @@ - olfactory gland (post-embryonic human) - FMA:75801 + olfactory gland (post-embryonic human) @@ -104040,8 +98268,7 @@ - tectorial membrane of cochlea (post-embryonic human) - FMA:75805 + tectorial membrane of cochlea (post-embryonic human) @@ -104060,8 +98287,7 @@ - proximal phalanx of manus (post-embryonic human) - FMA:75816 + proximal phalanx of manus (post-embryonic human) @@ -104080,8 +98306,7 @@ - middle phalanx of manus (post-embryonic human) - FMA:75817 + middle phalanx of manus (post-embryonic human) @@ -104100,8 +98325,7 @@ - distal phalanx of manus (post-embryonic human) - FMA:75818 + distal phalanx of manus (post-embryonic human) @@ -104120,8 +98344,7 @@ - third trochanter (post-embryonic human) - FMA:75824 + third trochanter (post-embryonic human) @@ -104140,8 +98363,7 @@ - proximal phalanx of pes (post-embryonic human) - FMA:75828 + proximal phalanx of pes (post-embryonic human) @@ -104160,8 +98382,7 @@ - middle phalanx of pes (post-embryonic human) - FMA:75829 + middle phalanx of pes (post-embryonic human) @@ -104180,8 +98401,7 @@ - tubercle of rib (post-embryonic human) - FMA:7583 + tubercle of rib (post-embryonic human) @@ -104200,8 +98420,7 @@ - distal phalanx of pes (post-embryonic human) - FMA:75830 + distal phalanx of pes (post-embryonic human) @@ -104220,8 +98439,7 @@ - costal cartilage (post-embryonic human) - FMA:7591 + costal cartilage (post-embryonic human) @@ -104240,8 +98458,7 @@ - true rib (post-embryonic human) - FMA:7592 + true rib (post-embryonic human) @@ -104260,8 +98477,7 @@ - false rib (post-embryonic human) - FMA:7594 + false rib (post-embryonic human) @@ -104280,8 +98496,7 @@ - floating rib (post-embryonic human) - FMA:7595 + floating rib (post-embryonic human) @@ -104300,8 +98515,7 @@ - rib 1 (post-embryonic human) - FMA:7597 + rib 1 (post-embryonic human) @@ -104320,8 +98534,7 @@ - rib 2 (post-embryonic human) - FMA:7620 + rib 2 (post-embryonic human) @@ -104340,8 +98553,7 @@ - branch of vertebral artery (post-embryonic human) - FMA:76259 + branch of vertebral artery (post-embryonic human) @@ -104360,8 +98572,7 @@ - branch of basilar artery (post-embryonic human) - FMA:76269 + branch of basilar artery (post-embryonic human) @@ -104380,8 +98591,7 @@ - rib 3 (post-embryonic human) - FMA:7638 + rib 3 (post-embryonic human) @@ -104400,8 +98610,7 @@ - spinal cord (post-embryonic human) - FMA:7647 + spinal cord (post-embryonic human) @@ -104420,8 +98629,7 @@ - choroidal blood vessel (post-embryonic human) - FMA:76550 + choroidal blood vessel (post-embryonic human) @@ -104440,8 +98648,7 @@ - ciliary processes (post-embryonic human) - FMA:76551 + ciliary processes (post-embryonic human) @@ -104460,8 +98667,7 @@ - vasculature of retina (post-embryonic human) - FMA:76552 + vasculature of retina (post-embryonic human) @@ -104480,8 +98686,7 @@ - ocular adnexa (post-embryonic human) - FMA:76554 + ocular adnexa (post-embryonic human) @@ -104500,8 +98705,7 @@ - remnnant of ductus deferens (post-embryonic human) - FMA:76609 + remnnant of ductus deferens (post-embryonic human) @@ -104520,8 +98724,7 @@ - cartilaginous neurocranium (post-embryonic human) - FMA:76621 + cartilaginous neurocranium (post-embryonic human) @@ -104540,8 +98743,7 @@ - head mesenchyme (post-embryonic human) - FMA:76622 + head mesenchyme (post-embryonic human) @@ -104560,8 +98762,7 @@ - pericranium (post-embryonic human) - FMA:76623 + pericranium (post-embryonic human) @@ -104580,8 +98781,7 @@ - asterion of skull (post-embryonic human) - FMA:76625 + asterion of skull (post-embryonic human) @@ -104600,8 +98800,7 @@ - pterygomaxillary fissure (post-embryonic human) - FMA:76627 + pterygomaxillary fissure (post-embryonic human) @@ -104620,8 +98819,7 @@ - infundibulum of gallbladder (post-embryonic human) - FMA:76652 + infundibulum of gallbladder (post-embryonic human) @@ -104640,8 +98838,7 @@ - kidney outer medulla outer stripe (post-embryonic human) - FMA:76662 + kidney outer medulla outer stripe (post-embryonic human) @@ -104660,8 +98857,7 @@ - kidney outer medulla inner stripe (post-embryonic human) - FMA:76663 + kidney outer medulla inner stripe (post-embryonic human) @@ -104680,8 +98876,7 @@ - surface of cartilage (post-embryonic human) - FMA:76668 + surface of cartilage (post-embryonic human) @@ -104700,8 +98895,7 @@ - meniscus (post-embryonic human) - FMA:76690 + meniscus (post-embryonic human) @@ -104720,8 +98914,7 @@ - amphiarthrosis (post-embryonic human) - FMA:76693 + amphiarthrosis (post-embryonic human) @@ -104740,8 +98933,7 @@ - nucleus pulposus (post-embryonic human) - FMA:76703 + nucleus pulposus (post-embryonic human) @@ -104760,8 +98952,7 @@ - annulus fibrosus (post-embryonic human) - FMA:76704 + annulus fibrosus (post-embryonic human) @@ -104780,8 +98971,7 @@ - tendon sheath (post-embryonic human) - FMA:76715 + tendon sheath (post-embryonic human) @@ -104800,8 +98990,7 @@ - deep vein (post-embryonic human) - FMA:76718 + deep vein (post-embryonic human) @@ -104820,8 +99009,7 @@ - superficial vein (post-embryonic human) - FMA:76719 + superficial vein (post-embryonic human) @@ -104840,8 +99028,7 @@ - cutaneous vein (post-embryonic human) - FMA:76720 + cutaneous vein (post-embryonic human) @@ -104860,8 +99047,7 @@ - rete mirabile (post-embryonic human) - FMA:76728 + rete mirabile (post-embryonic human) @@ -104880,8 +99066,7 @@ - spinal vein (post-embryonic human) - FMA:76735 + spinal vein (post-embryonic human) @@ -104900,8 +99085,7 @@ - funiculus of neuraxis (post-embryonic human) - FMA:76738 + funiculus of neuraxis (post-embryonic human) @@ -104920,8 +99104,7 @@ - visceral fascia (post-embryonic human) - FMA:76754 + visceral fascia (post-embryonic human) @@ -104940,8 +99123,7 @@ - dorsolateral part of supraoptic nucleus (post-embryonic human) - FMA:76770 + dorsolateral part of supraoptic nucleus (post-embryonic human) @@ -104960,8 +99142,7 @@ - lens fiber (post-embryonic human) - FMA:76827 + lens fiber (post-embryonic human) @@ -104980,8 +99161,7 @@ - external cervical os (post-embryonic human) - FMA:76836 + external cervical os (post-embryonic human) @@ -105000,8 +99180,7 @@ - substantia nigra pars lateralis (post-embryonic human) - FMA:76844 + substantia nigra pars lateralis (post-embryonic human) @@ -105020,8 +99199,7 @@ - cervical fascia (post-embryonic human) - FMA:76866 + cervical fascia (post-embryonic human) @@ -105040,8 +99218,7 @@ - premaxilla (post-embryonic human) - FMA:76869 + premaxilla (post-embryonic human) @@ -105060,8 +99237,7 @@ - crico-esophageal tendon (post-embryonic human) - FMA:76887 + crico-esophageal tendon (post-embryonic human) @@ -105080,8 +99256,7 @@ - mucosa of urethra (post-embryonic human) - FMA:76904 + mucosa of urethra (post-embryonic human) @@ -105100,8 +99275,7 @@ - urethra smooth muscle layer (post-embryonic human) - FMA:76909 + urethra smooth muscle layer (post-embryonic human) @@ -105120,8 +99294,7 @@ - regional part of cerebellar cortex (post-embryonic human) - FMA:76924 + regional part of cerebellar cortex (post-embryonic human) @@ -105140,8 +99313,7 @@ - cerebellar hemisphere (post-embryonic human) - FMA:76925 + cerebellar hemisphere (post-embryonic human) @@ -105160,8 +99332,7 @@ - cerebellar vermis (post-embryonic human) - FMA:76928 + cerebellar vermis (post-embryonic human) @@ -105180,8 +99351,7 @@ - posterior paraventricular nucleus of thalamus (post-embryonic human) - FMA:76961 + posterior paraventricular nucleus of thalamus (post-embryonic human) @@ -105200,8 +99370,7 @@ - anterior paraventricular nucleus of thalamus (post-embryonic human) - FMA:76962 + anterior paraventricular nucleus of thalamus (post-embryonic human) @@ -105220,8 +99389,7 @@ - intersegmental pulmonary vein (post-embryonic human) - FMA:76965 + intersegmental pulmonary vein (post-embryonic human) @@ -105240,8 +99408,7 @@ - radiation of thalamus (post-embryonic human) - FMA:76975 + radiation of thalamus (post-embryonic human) @@ -105260,8 +99427,7 @@ - anterior thalamic radiation (post-embryonic human) - FMA:76976 + anterior thalamic radiation (post-embryonic human) @@ -105280,8 +99446,7 @@ - posterior thalamic radiation (post-embryonic human) - FMA:76982 + posterior thalamic radiation (post-embryonic human) @@ -105300,8 +99465,7 @@ - koniocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human) - FMA:76988 + koniocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human) @@ -105320,8 +99484,7 @@ - magnocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human) - FMA:76989 + magnocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human) @@ -105340,8 +99503,7 @@ - parvocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human) - FMA:76992 + parvocellular layer of dorsal nucleus of lateral geniculate body (post-embryonic human) @@ -105360,8 +99522,7 @@ - dorsal intercostal artery (post-embryonic human) - FMA:76998 + dorsal intercostal artery (post-embryonic human) @@ -105380,8 +99541,7 @@ - dorsal premammillary nucleus (post-embryonic human) - FMA:77006 + dorsal premammillary nucleus (post-embryonic human) @@ -105400,8 +99560,7 @@ - ventral premammillary nucleus (post-embryonic human) - FMA:77007 + ventral premammillary nucleus (post-embryonic human) @@ -105420,8 +99579,7 @@ - nucleus of spinal cord (post-embryonic human) - FMA:77011 + nucleus of spinal cord (post-embryonic human) @@ -105440,8 +99598,7 @@ - dorsal thoracic nucleus (post-embryonic human) - FMA:77023 + dorsal thoracic nucleus (post-embryonic human) @@ -105460,8 +99617,7 @@ - nucleus of pudendal nerve (post-embryonic human) - FMA:77024 + nucleus of pudendal nerve (post-embryonic human) @@ -105480,8 +99636,7 @@ - spinal cord white commissure (post-embryonic human) - FMA:77033 + spinal cord white commissure (post-embryonic human) @@ -105500,8 +99655,7 @@ - spinal cord dorsal white commissure (post-embryonic human) - FMA:77034 + spinal cord dorsal white commissure (post-embryonic human) @@ -105520,8 +99674,7 @@ - spinal cord ventral commissure (post-embryonic human) - FMA:77035 + spinal cord ventral commissure (post-embryonic human) @@ -105540,8 +99693,7 @@ - spinal cord gray commissure (post-embryonic human) - FMA:77036 + spinal cord gray commissure (post-embryonic human) @@ -105560,8 +99712,7 @@ - dorsal gray commissure of spinal cord (post-embryonic human) - FMA:77037 + dorsal gray commissure of spinal cord (post-embryonic human) @@ -105580,8 +99731,7 @@ - ventral gray commissure of spinal cord (post-embryonic human) - FMA:77038 + ventral gray commissure of spinal cord (post-embryonic human) @@ -105600,8 +99750,7 @@ - renal afferent arteriole (post-embryonic human) - FMA:77042 + renal afferent arteriole (post-embryonic human) @@ -105620,8 +99769,7 @@ - renal efferent arteriole (post-embryonic human) - FMA:77043 + renal efferent arteriole (post-embryonic human) @@ -105640,8 +99788,7 @@ - ureteral orifice (post-embryonic human) - FMA:77047 + ureteral orifice (post-embryonic human) @@ -105660,8 +99807,7 @@ - uterine horn (post-embryonic human) - FMA:77053 + uterine horn (post-embryonic human) @@ -105680,8 +99826,7 @@ - supravaginal part of cervix (post-embryonic human) - FMA:77055 + supravaginal part of cervix (post-embryonic human) @@ -105700,8 +99845,7 @@ - ectocervix (post-embryonic human) - FMA:77056 + ectocervix (post-embryonic human) @@ -105720,8 +99864,7 @@ - parametrium (post-embryonic human) - FMA:77061 + parametrium (post-embryonic human) @@ -105740,8 +99883,7 @@ - mucosa of prostatic urethra (post-embryonic human) - FMA:77079 + mucosa of prostatic urethra (post-embryonic human) @@ -105760,8 +99902,7 @@ - mucosa of intermediate urethra (post-embryonic human) - FMA:77085 + mucosa of intermediate urethra (post-embryonic human) @@ -105780,8 +99921,7 @@ - parasolitary nucleus (post-embryonic human) - FMA:77091 + parasolitary nucleus (post-embryonic human) @@ -105800,8 +99940,7 @@ - retroambiguus nucleus (post-embryonic human) - FMA:77096 + retroambiguus nucleus (post-embryonic human) @@ -105820,8 +99959,7 @@ - endolemniscal nucleus (post-embryonic human) - FMA:77099 + endolemniscal nucleus (post-embryonic human) @@ -105840,8 +99978,7 @@ - atrium auricular region (post-embryonic human) - FMA:77110 + atrium auricular region (post-embryonic human) @@ -105860,8 +99997,7 @@ - transverse pericardial sinus (post-embryonic human) - FMA:77132 + transverse pericardial sinus (post-embryonic human) @@ -105880,8 +100016,7 @@ - oblique pericardial sinus (post-embryonic human) - FMA:77133 + oblique pericardial sinus (post-embryonic human) @@ -105900,8 +100035,7 @@ - median artery (post-embryonic human) - FMA:77142 + median artery (post-embryonic human) @@ -105920,8 +100054,7 @@ - popliteal artery (post-embryonic human) - FMA:77155 + popliteal artery (post-embryonic human) @@ -105940,8 +100073,7 @@ - median sacral vein (post-embryonic human) - FMA:77168 + median sacral vein (post-embryonic human) @@ -105960,8 +100092,7 @@ - thoracic skeleton (post-embryonic human) - FMA:77169 + thoracic skeleton (post-embryonic human) @@ -105980,8 +100111,7 @@ - iliocostalis muscle (post-embryonic human) - FMA:77177 + iliocostalis muscle (post-embryonic human) @@ -106000,8 +100130,7 @@ - longissimus muscle (post-embryonic human) - FMA:77178 + longissimus muscle (post-embryonic human) @@ -106020,8 +100149,7 @@ - spinalis muscle (post-embryonic human) - FMA:77179 + spinalis muscle (post-embryonic human) @@ -106040,8 +100168,7 @@ - splenius (post-embryonic human) - FMA:77180 + splenius (post-embryonic human) @@ -106060,8 +100187,7 @@ - respiratory segment of nasal mucosa (post-embryonic human) - FMA:77198 + respiratory segment of nasal mucosa (post-embryonic human) @@ -106080,8 +100206,7 @@ - olfactory segment of nasal mucosa (post-embryonic human) - FMA:77199 + olfactory segment of nasal mucosa (post-embryonic human) @@ -106100,8 +100225,7 @@ - tapetum of corpus callosum (post-embryonic human) - FMA:77208 + tapetum of corpus callosum (post-embryonic human) @@ -106120,8 +100244,7 @@ - diffuse reticular nucleus (post-embryonic human) - FMA:77220 + diffuse reticular nucleus (post-embryonic human) @@ -106140,8 +100263,7 @@ - premaxilla (post-embryonic human) - FMA:77231 + premaxilla (post-embryonic human) @@ -106160,8 +100282,7 @@ - centrale (post-embryonic human) - FMA:77232 + centrale (post-embryonic human) @@ -106180,8 +100301,7 @@ - angle of oral opening (post-embryonic human) - FMA:77269 + angle of oral opening (post-embryonic human) @@ -106200,8 +100320,7 @@ - diastema (post-embryonic human) - FMA:77271 + diastema (post-embryonic human) @@ -106220,8 +100339,7 @@ - sublingual caruncle (post-embryonic human) - FMA:77273 + sublingual caruncle (post-embryonic human) @@ -106240,8 +100358,7 @@ - thyroglossal duct (post-embryonic human) - FMA:77274 + thyroglossal duct (post-embryonic human) @@ -106260,8 +100377,7 @@ - vomeronasal organ (post-embryonic human) - FMA:77280 + vomeronasal organ (post-embryonic human) @@ -106280,8 +100396,7 @@ - incisive duct (post-embryonic human) - FMA:77282 + incisive duct (post-embryonic human) @@ -106300,8 +100415,7 @@ - internal spermatic fascia (post-embryonic human) - FMA:77299 + internal spermatic fascia (post-embryonic human) @@ -106320,8 +100434,7 @@ - remnant of processus vaginalis (post-embryonic human) - FMA:77300 + remnant of processus vaginalis (post-embryonic human) @@ -106340,8 +100453,7 @@ - muscle of anal triangle (post-embryonic human) - FMA:77304 + muscle of anal triangle (post-embryonic human) @@ -106360,8 +100472,7 @@ - core of nucleus accumbens (post-embryonic human) - FMA:77383 + core of nucleus accumbens (post-embryonic human) @@ -106380,8 +100491,7 @@ - shell of nucleus accumbens (post-embryonic human) - FMA:77387 + shell of nucleus accumbens (post-embryonic human) @@ -106400,8 +100510,7 @@ - vasa vasorum (post-embryonic human) - FMA:77433 + vasa vasorum (post-embryonic human) @@ -106420,8 +100529,7 @@ - nucleus of phrenic nerve (post-embryonic human) - FMA:77458 + nucleus of phrenic nerve (post-embryonic human) @@ -106440,8 +100548,7 @@ - funiculus of spinal cord (post-embryonic human) - FMA:77460 + funiculus of spinal cord (post-embryonic human) @@ -106460,8 +100567,7 @@ - dorsal funiculus of spinal cord (post-embryonic human) - FMA:77461 + dorsal funiculus of spinal cord (post-embryonic human) @@ -106480,8 +100586,7 @@ - gelatinous nucleus of solitary tract (post-embryonic human) - FMA:77463 + gelatinous nucleus of solitary tract (post-embryonic human) @@ -106500,8 +100605,7 @@ - paracommissural nucleus of solitary tract (post-embryonic human) - FMA:77466 + paracommissural nucleus of solitary tract (post-embryonic human) @@ -106520,8 +100624,7 @@ - intermediate nucleus of lateral lemniscus (post-embryonic human) - FMA:77485 + intermediate nucleus of lateral lemniscus (post-embryonic human) @@ -106540,8 +100643,7 @@ - tectal plate (post-embryonic human) - FMA:77488 + tectal plate (post-embryonic human) @@ -106560,8 +100662,7 @@ - rib 4 (post-embryonic human) - FMA:7749 + rib 4 (post-embryonic human) @@ -106580,8 +100681,7 @@ - sagulum nucleus (post-embryonic human) - FMA:77492 + sagulum nucleus (post-embryonic human) @@ -106600,8 +100700,7 @@ - subbrachial nucleus (post-embryonic human) - FMA:77494 + subbrachial nucleus (post-embryonic human) @@ -106620,8 +100719,7 @@ - parabrachial pigmental nucleus (post-embryonic human) - FMA:77496 + parabrachial pigmental nucleus (post-embryonic human) @@ -106640,8 +100738,7 @@ - paranigral nucleus (post-embryonic human) - FMA:77497 + paranigral nucleus (post-embryonic human) @@ -106660,8 +100757,7 @@ - interfascicular linear nucleus (post-embryonic human) - FMA:77503 + interfascicular linear nucleus (post-embryonic human) @@ -106680,8 +100776,7 @@ - deep dorsal vein of clitoris (post-embryonic human) - FMA:77504 + deep dorsal vein of clitoris (post-embryonic human) @@ -106700,8 +100795,7 @@ - ventral root of spinal cord (post-embryonic human) - FMA:77516 + ventral root of spinal cord (post-embryonic human) @@ -106720,8 +100814,7 @@ - cerebellar commissure (post-embryonic human) - FMA:77522 + cerebellar commissure (post-embryonic human) @@ -106740,8 +100833,7 @@ - subthalamic fasciculus (post-embryonic human) - FMA:77525 + subthalamic fasciculus (post-embryonic human) @@ -106760,8 +100852,7 @@ - superior part of vestibular ganglion (post-embryonic human) - FMA:77531 + superior part of vestibular ganglion (post-embryonic human) @@ -106780,8 +100871,7 @@ - inferior part of vestibular ganglion (post-embryonic human) - FMA:77532 + inferior part of vestibular ganglion (post-embryonic human) @@ -106800,8 +100890,7 @@ - paracentral lobule (post-embryonic human) - FMA:77534 + paracentral lobule (post-embryonic human) @@ -106820,30 +100909,7 @@ - inferior parietal cortex (post-embryonic human) - FMA:77536 - - - - - - - - - - - - - - - - - - - - anterior paracentral gyrus (post-embryonic human) - paracentral gyrus (post-embryonic human) - FMA:77537 + inferior parietal cortex (post-embryonic human) @@ -106862,8 +100928,7 @@ - posterior paracentral gyrus (post-embryonic human) - FMA:77538 + posterior paracentral gyrus (post-embryonic human) @@ -106882,8 +100947,7 @@ - celiac ganglion (post-embryonic human) - FMA:77570 + celiac ganglion (post-embryonic human) @@ -106902,8 +100966,7 @@ - thoracic aortic plexus (post-embryonic human) - FMA:77574 + thoracic aortic plexus (post-embryonic human) @@ -106922,8 +100985,7 @@ - cardiac ganglion (post-embryonic human) - FMA:77582 + cardiac ganglion (post-embryonic human) @@ -106942,8 +101004,7 @@ - superior mesenteric ganglion (post-embryonic human) - FMA:77589 + superior mesenteric ganglion (post-embryonic human) @@ -106962,8 +101023,7 @@ - inferior mesenteric ganglion (post-embryonic human) - FMA:77590 + inferior mesenteric ganglion (post-embryonic human) @@ -106982,8 +101042,7 @@ - sublingual ganglion (post-embryonic human) - FMA:77591 + sublingual ganglion (post-embryonic human) @@ -107002,8 +101061,7 @@ - hypogastric nerve (post-embryonic human) - FMA:77596 + hypogastric nerve (post-embryonic human) @@ -107022,8 +101080,7 @@ - enteric plexus (post-embryonic human) - FMA:77597 + enteric plexus (post-embryonic human) @@ -107042,8 +101099,7 @@ - subserosal plexus (post-embryonic human) - FMA:77598 + subserosal plexus (post-embryonic human) @@ -107062,8 +101118,7 @@ - pineal tract (post-embryonic human) - FMA:77600 + pineal tract (post-embryonic human) @@ -107082,8 +101137,7 @@ - parasubiculum (post-embryonic human) - FMA:77604 + parasubiculum (post-embryonic human) @@ -107102,8 +101156,7 @@ - amygdalohippocampal area (post-embryonic human) - FMA:77607 + amygdalohippocampal area (post-embryonic human) @@ -107122,8 +101175,7 @@ - amygdalopiriform transition area (post-embryonic human) - FMA:77608 + amygdalopiriform transition area (post-embryonic human) @@ -107142,8 +101194,7 @@ - subdivision of diagonal band (post-embryonic human) - FMA:77610 + subdivision of diagonal band (post-embryonic human) @@ -107162,8 +101213,7 @@ - horizontal limb of the diagonal band (post-embryonic human) - FMA:77611 + horizontal limb of the diagonal band (post-embryonic human) @@ -107182,8 +101232,7 @@ - vertical limb of the diagonal band (post-embryonic human) - FMA:77612 + vertical limb of the diagonal band (post-embryonic human) @@ -107202,8 +101251,7 @@ - ventral pallidum (post-embryonic human) - FMA:77613 + ventral pallidum (post-embryonic human) @@ -107222,8 +101270,7 @@ - ventral striatum (post-embryonic human) - FMA:77614 + ventral striatum (post-embryonic human) @@ -107242,8 +101289,7 @@ - lentiform nucleus (post-embryonic human) - FMA:77615 + lentiform nucleus (post-embryonic human) @@ -107262,8 +101308,7 @@ - corpus striatum (post-embryonic human) - FMA:77616 + corpus striatum (post-embryonic human) @@ -107282,8 +101327,7 @@ - striatum (post-embryonic human) - FMA:77618 + striatum (post-embryonic human) @@ -107302,8 +101346,7 @@ - dorsal pallidum (post-embryonic human) - FMA:77619 + dorsal pallidum (post-embryonic human) @@ -107322,8 +101365,7 @@ - dorsal striatum (post-embryonic human) - FMA:77620 + dorsal striatum (post-embryonic human) @@ -107342,8 +101384,7 @@ - olfactory bulb (post-embryonic human) - FMA:77624 + olfactory bulb (post-embryonic human) @@ -107362,8 +101403,7 @@ - olfactory tract (post-embryonic human) - FMA:77626 + olfactory tract (post-embryonic human) @@ -107382,8 +101422,7 @@ - medial olfactory stria (post-embryonic human) - FMA:77627 + medial olfactory stria (post-embryonic human) @@ -107402,8 +101441,7 @@ - anterior olfactory nucleus (post-embryonic human) - FMA:77628 + anterior olfactory nucleus (post-embryonic human) @@ -107422,8 +101460,7 @@ - superior longitudinal fasciculus (post-embryonic human) - FMA:77631 + superior longitudinal fasciculus (post-embryonic human) @@ -107442,8 +101479,7 @@ - inferior longitudinal fasciculus (post-embryonic human) - FMA:77632 + inferior longitudinal fasciculus (post-embryonic human) @@ -107462,8 +101498,7 @@ - inferior occipitofrontal fasciculus (post-embryonic human) - FMA:77633 + inferior occipitofrontal fasciculus (post-embryonic human) @@ -107482,8 +101517,7 @@ - subcallosal fasciculus (post-embryonic human) - FMA:77634 + subcallosal fasciculus (post-embryonic human) @@ -107502,8 +101536,7 @@ - uncinate fasciculus (post-embryonic human) - FMA:77636 + uncinate fasciculus (post-embryonic human) @@ -107522,8 +101555,7 @@ - subcallosal fasciculus (post-embryonic human) - FMA:77637 + subcallosal fasciculus (post-embryonic human) @@ -107542,8 +101574,7 @@ - dorsal accessory nucleus of optic tract (post-embryonic human) - FMA:77651 + dorsal accessory nucleus of optic tract (post-embryonic human) @@ -107562,8 +101593,7 @@ - lateral accessory nucleus of optic tract (post-embryonic human) - FMA:77652 + lateral accessory nucleus of optic tract (post-embryonic human) @@ -107582,8 +101612,7 @@ - medial accessory nucleus of optic tract (post-embryonic human) - FMA:77653 + medial accessory nucleus of optic tract (post-embryonic human) @@ -107602,8 +101631,7 @@ - laterodorsal tegmental nucleus (post-embryonic human) - FMA:77654 + laterodorsal tegmental nucleus (post-embryonic human) @@ -107622,8 +101650,7 @@ - olfactory organ (post-embryonic human) - FMA:77659 + olfactory organ (post-embryonic human) @@ -107642,8 +101669,7 @@ - eye trabecular meshwork (post-embryonic human) - FMA:77660 + eye trabecular meshwork (post-embryonic human) @@ -107662,8 +101688,7 @@ - pupillary membrane (post-embryonic human) - FMA:77663 + pupillary membrane (post-embryonic human) @@ -107682,8 +101707,7 @@ - hyaloid artery (post-embryonic human) - FMA:77670 + hyaloid artery (post-embryonic human) @@ -107702,8 +101726,7 @@ - lacrimal caruncle (post-embryonic human) - FMA:77672 + lacrimal caruncle (post-embryonic human) @@ -107722,8 +101745,7 @@ - periventricular zone of hypothalamus (post-embryonic human) - FMA:77682 + periventricular zone of hypothalamus (post-embryonic human) @@ -107742,8 +101764,7 @@ - medial zone of hypothalamus (post-embryonic human) - FMA:77683 + medial zone of hypothalamus (post-embryonic human) @@ -107762,8 +101783,7 @@ - lateral zone of hypothalamus (post-embryonic human) - FMA:77684 + lateral zone of hypothalamus (post-embryonic human) @@ -107782,8 +101802,7 @@ - dorsal hypothalamic nucleus (post-embryonic human) - FMA:77685 + dorsal hypothalamic nucleus (post-embryonic human) @@ -107802,8 +101821,7 @@ - perifornical nucleus (post-embryonic human) - FMA:77688 + perifornical nucleus (post-embryonic human) @@ -107822,8 +101840,7 @@ - endopeduncular nucleus (post-embryonic human) - FMA:77691 + endopeduncular nucleus (post-embryonic human) @@ -107842,8 +101859,7 @@ - radiation of corpus callosum (post-embryonic human) - FMA:77693 + radiation of corpus callosum (post-embryonic human) @@ -107862,8 +101878,7 @@ - promontory of tympanic cavity (post-embryonic human) - FMA:77694 + promontory of tympanic cavity (post-embryonic human) @@ -107882,8 +101897,7 @@ - basal forebrain (post-embryonic human) - FMA:77700 + basal forebrain (post-embryonic human) @@ -107902,8 +101916,7 @@ - osseus spiral lamina (post-embryonic human) - FMA:77710 + osseus spiral lamina (post-embryonic human) @@ -107922,8 +101935,7 @@ - crista ampullaris (post-embryonic human) - FMA:77714 + crista ampullaris (post-embryonic human) @@ -107942,8 +101954,7 @@ - reticular formation (post-embryonic human) - FMA:77719 + reticular formation (post-embryonic human) @@ -107962,8 +101973,7 @@ - lamina of spiral limbus (post-embryonic human) - FMA:77721 + lamina of spiral limbus (post-embryonic human) @@ -107982,8 +101992,7 @@ - spiral sulcus (post-embryonic human) - FMA:77744 + spiral sulcus (post-embryonic human) @@ -108002,8 +102011,7 @@ - perilymphatic space (post-embryonic human) - FMA:77745 + perilymphatic space (post-embryonic human) @@ -108022,8 +102030,7 @@ - rib 5 (post-embryonic human) - FMA:7776 + rib 5 (post-embryonic human) @@ -108042,8 +102049,7 @@ - midbrain raphe nuclei (post-embryonic human) - FMA:77787 + midbrain raphe nuclei (post-embryonic human) @@ -108062,8 +102068,7 @@ - cerebellar peduncular complex (post-embryonic human) - FMA:77791 + cerebellar peduncular complex (post-embryonic human) @@ -108082,8 +102087,7 @@ - ventral medial complex of thalamus (post-embryonic human) - FMA:77795 + ventral medial complex of thalamus (post-embryonic human) @@ -108102,8 +102106,7 @@ - lateral sulcus (post-embryonic human) - FMA:77801 + lateral sulcus (post-embryonic human) @@ -108122,8 +102125,7 @@ - cortical layer II (post-embryonic human) - FMA:77804 + cortical layer II (post-embryonic human) @@ -108142,8 +102144,7 @@ - cortical layer VI (post-embryonic human) - FMA:77805 + cortical layer VI (post-embryonic human) @@ -108162,8 +102163,7 @@ - cortical layer III (post-embryonic human) - FMA:77810 + cortical layer III (post-embryonic human) @@ -108182,8 +102182,7 @@ - cortical layer IV (post-embryonic human) - FMA:77811 + cortical layer IV (post-embryonic human) @@ -108202,8 +102201,7 @@ - cortical layer V (post-embryonic human) - FMA:77812 + cortical layer V (post-embryonic human) @@ -108222,8 +102220,7 @@ - vestibular aqueduct (post-embryonic human) - FMA:77821 + vestibular aqueduct (post-embryonic human) @@ -108242,8 +102239,7 @@ - perilymphatic channel (post-embryonic human) - FMA:77822 + perilymphatic channel (post-embryonic human) @@ -108262,8 +102258,7 @@ - endolymphatic space (post-embryonic human) - FMA:77823 + endolymphatic space (post-embryonic human) @@ -108282,8 +102277,7 @@ - utricle duct (post-embryonic human) - FMA:77824 + utricle duct (post-embryonic human) @@ -108302,8 +102296,7 @@ - saccule duct (post-embryonic human) - FMA:77825 + saccule duct (post-embryonic human) @@ -108322,8 +102315,7 @@ - otolith (post-embryonic human) - FMA:77826 + otolith (post-embryonic human) @@ -108342,8 +102334,7 @@ - vestibular membrane of cochlear duct (post-embryonic human) - FMA:77829 + vestibular membrane of cochlear duct (post-embryonic human) @@ -108362,8 +102353,7 @@ - stria vascularis of cochlear duct (post-embryonic human) - FMA:77832 + stria vascularis of cochlear duct (post-embryonic human) @@ -108382,8 +102372,7 @@ - spiral prominence of cochlear duct (post-embryonic human) - FMA:77833 + spiral prominence of cochlear duct (post-embryonic human) @@ -108402,8 +102391,7 @@ - spiral ligament (post-embryonic human) - FMA:77834 + spiral ligament (post-embryonic human) @@ -108422,8 +102410,7 @@ - reticular membrane of spiral organ (post-embryonic human) - FMA:77849 + reticular membrane of spiral organ (post-embryonic human) @@ -108442,8 +102429,7 @@ - inner spiral sulcus (post-embryonic human) - FMA:77850 + inner spiral sulcus (post-embryonic human) @@ -108462,8 +102448,7 @@ - outer spiral sulcus (post-embryonic human) - FMA:77851 + outer spiral sulcus (post-embryonic human) @@ -108482,8 +102467,7 @@ - gustatory organ (post-embryonic human) - FMA:77853 + gustatory organ (post-embryonic human) @@ -108502,8 +102486,7 @@ - nail matrix (post-embryonic human) - FMA:77856 + nail matrix (post-embryonic human) @@ -108522,8 +102505,7 @@ - lunule of nail (post-embryonic human) - FMA:77858 + lunule of nail (post-embryonic human) @@ -108542,8 +102524,7 @@ - eponychium (post-embryonic human) - FMA:77859 + eponychium (post-embryonic human) @@ -108562,8 +102543,7 @@ - hyponychium (post-embryonic human) - FMA:77860 + hyponychium (post-embryonic human) @@ -108582,8 +102562,7 @@ - smooth muscle layer in fatty layer of subcutaneous tissue (post-embryonic human) - FMA:77862 + smooth muscle layer in fatty layer of subcutaneous tissue (post-embryonic human) @@ -108602,8 +102581,7 @@ - gray matter layer of superior colliculus (post-embryonic human) - FMA:77870 + gray matter layer of superior colliculus (post-embryonic human) @@ -108622,8 +102600,7 @@ - superior phrenic vein (post-embryonic human) - FMA:78121 + superior phrenic vein (post-embryonic human) @@ -108642,8 +102619,7 @@ - rib 7 (post-embryonic human) - FMA:7830 + rib 7 (post-embryonic human) @@ -108662,8 +102638,7 @@ - gas excreted from digestive tract (post-embryonic human) - FMA:78440 + gas excreted from digestive tract (post-embryonic human) @@ -108682,8 +102657,7 @@ - bolus of food (post-embryonic human) - FMA:78441 + bolus of food (post-embryonic human) @@ -108702,8 +102676,7 @@ - brain ventricle (post-embryonic human) - FMA:78447 + brain ventricle (post-embryonic human) @@ -108722,8 +102695,7 @@ - telencephalic ventricle (post-embryonic human) - FMA:78448 + telencephalic ventricle (post-embryonic human) @@ -108742,8 +102714,7 @@ - right lateral ventricle (post-embryonic human) - FMA:78449 + right lateral ventricle (post-embryonic human) @@ -108762,8 +102733,7 @@ - left lateral ventricle (post-embryonic human) - FMA:78450 + left lateral ventricle (post-embryonic human) @@ -108782,8 +102752,7 @@ - third ventricle (post-embryonic human) - FMA:78454 + third ventricle (post-embryonic human) @@ -108802,8 +102771,7 @@ - optic recess of third ventricle (post-embryonic human) - FMA:78455 + optic recess of third ventricle (post-embryonic human) @@ -108822,8 +102790,7 @@ - infundibular recess of 3rd ventricle (post-embryonic human) - FMA:78456 + infundibular recess of 3rd ventricle (post-embryonic human) @@ -108842,8 +102809,7 @@ - pineal recess of third ventricle (post-embryonic human) - FMA:78458 + pineal recess of third ventricle (post-embryonic human) @@ -108862,8 +102828,7 @@ - choroid plexus of third ventricle (post-embryonic human) - FMA:78462 + choroid plexus of third ventricle (post-embryonic human) @@ -108882,8 +102847,7 @@ - tela choroidea of third ventricle (post-embryonic human) - FMA:78463 + tela choroidea of third ventricle (post-embryonic human) @@ -108902,8 +102866,7 @@ - midbrain cerebral aqueduct (post-embryonic human) - FMA:78467 + midbrain cerebral aqueduct (post-embryonic human) @@ -108922,8 +102885,7 @@ - fourth ventricle (post-embryonic human) - FMA:78469 + fourth ventricle (post-embryonic human) @@ -108942,8 +102904,7 @@ - lateral recess of fourth ventricle (post-embryonic human) - FMA:78470 + lateral recess of fourth ventricle (post-embryonic human) @@ -108962,8 +102923,7 @@ - fourth ventricle lateral aperture (post-embryonic human) - FMA:78473 + fourth ventricle lateral aperture (post-embryonic human) @@ -108982,8 +102942,7 @@ - lateral eminence of fourth ventricle (post-embryonic human) - FMA:78478 + lateral eminence of fourth ventricle (post-embryonic human) @@ -109002,8 +102961,7 @@ - choroid plexus of fourth ventricle (post-embryonic human) - FMA:78492 + choroid plexus of fourth ventricle (post-embryonic human) @@ -109022,8 +102980,7 @@ - tela choroidea of fourth ventricle (post-embryonic human) - FMA:78493 + tela choroidea of fourth ventricle (post-embryonic human) @@ -109042,8 +102999,7 @@ - sulcus limitans of fourth ventricle (post-embryonic human) - FMA:78496 + sulcus limitans of fourth ventricle (post-embryonic human) @@ -109062,8 +103018,7 @@ - central canal of spinal cord (post-embryonic human) - FMA:78497 + central canal of spinal cord (post-embryonic human) @@ -109082,8 +103037,7 @@ - entire sense organ system (post-embryonic human) - FMA:78499 + entire sense organ system (post-embryonic human) @@ -109102,8 +103056,7 @@ - vestibulo-auditory system (post-embryonic human) - FMA:78500 + vestibulo-auditory system (post-embryonic human) @@ -109122,8 +103075,7 @@ - skeleton of pedal acropodium (post-embryonic human) - FMA:78512 + skeleton of pedal acropodium (post-embryonic human) @@ -109142,8 +103094,7 @@ - diaphragma sellae (post-embryonic human) - FMA:78540 + diaphragma sellae (post-embryonic human) @@ -109162,8 +103113,7 @@ - nerve to quadratus femoris (post-embryonic human) - FMA:78705 + nerve to quadratus femoris (post-embryonic human) @@ -109182,8 +103132,7 @@ - inferior ileocolic lymph node (post-embryonic human) - FMA:78731 + inferior ileocolic lymph node (post-embryonic human) @@ -109202,8 +103151,7 @@ - stapedial artery (post-embryonic human) - FMA:79390 + stapedial artery (post-embryonic human) @@ -109222,8 +103170,7 @@ - costotransverse joint (post-embryonic human) - FMA:7952 + costotransverse joint (post-embryonic human) @@ -109242,8 +103189,7 @@ - sternocostal joint (post-embryonic human) - FMA:7954 + sternocostal joint (post-embryonic human) @@ -109262,8 +103208,7 @@ - costochondral joint (post-embryonic human) - FMA:7956 + costochondral joint (post-embryonic human) @@ -109282,8 +103227,7 @@ - prostate epithelium (post-embryonic human) - FMA:79643 + prostate epithelium (post-embryonic human) @@ -109302,8 +103246,7 @@ - chromaffin system (post-embryonic human) - FMA:79645 + chromaffin system (post-embryonic human) @@ -109322,8 +103265,7 @@ - biliary system (post-embryonic human) - FMA:79646 + biliary system (post-embryonic human) @@ -109342,8 +103284,7 @@ - esophagus secretion (post-embryonic human) - FMA:79662 + esophagus secretion (post-embryonic human) @@ -109362,8 +103303,7 @@ - lymphomyeloid tissue (post-embryonic human) - FMA:79770 + lymphomyeloid tissue (post-embryonic human) @@ -109382,8 +103322,7 @@ - nasal-associated lymphoid tissue (post-embryonic human) - FMA:79771 + nasal-associated lymphoid tissue (post-embryonic human) @@ -109402,8 +103341,7 @@ - scala media (post-embryonic human) - FMA:79789 + scala media (post-embryonic human) @@ -109422,8 +103360,7 @@ - pancreas primordium (post-embryonic human) - FMA:79792 + pancreas primordium (post-embryonic human) @@ -109442,8 +103379,7 @@ - pancreas dorsal primordium (post-embryonic human) - FMA:79793 + pancreas dorsal primordium (post-embryonic human) @@ -109462,8 +103398,7 @@ - pancreas ventral primordium (post-embryonic human) - FMA:79794 + pancreas ventral primordium (post-embryonic human) @@ -109482,8 +103417,7 @@ - dorsal mesentery (post-embryonic human) - FMA:79795 + dorsal mesentery (post-embryonic human) @@ -109502,8 +103436,7 @@ - wall of membranous labyrinth (post-embryonic human) - FMA:79837 + wall of membranous labyrinth (post-embryonic human) @@ -109522,8 +103455,7 @@ - cerumen (post-embryonic human) - FMA:79869 + cerumen (post-embryonic human) @@ -109542,8 +103474,7 @@ - ductus arteriosus (post-embryonic human) - FMA:79871 + ductus arteriosus (post-embryonic human) @@ -109562,8 +103493,7 @@ - brainstem (post-embryonic human) - FMA:79876 + brainstem (post-embryonic human) @@ -109582,8 +103512,7 @@ - pelvic ganglion (post-embryonic human) - FMA:80131 + pelvic ganglion (post-embryonic human) @@ -109602,8 +103531,7 @@ - aortic plexus (post-embryonic human) - FMA:80133 + aortic plexus (post-embryonic human) @@ -109622,8 +103550,7 @@ - intermediate orbital gyrus (post-embryonic human) - FMA:80183 + intermediate orbital gyrus (post-embryonic human) @@ -109642,8 +103569,7 @@ - posterior orbital gyrus (post-embryonic human) - FMA:80184 + posterior orbital gyrus (post-embryonic human) @@ -109662,8 +103588,7 @@ - amnion (post-embryonic human) - FMA:80223 + amnion (post-embryonic human) @@ -109682,8 +103607,7 @@ - chorion membrane (post-embryonic human) - FMA:80224 + chorion membrane (post-embryonic human) @@ -109702,8 +103626,7 @@ - accessory XI nerve (post-embryonic human) - FMA:80284 + accessory XI nerve (post-embryonic human) @@ -109722,8 +103645,7 @@ - skin nerve field (post-embryonic human) - FMA:80301 + skin nerve field (post-embryonic human) @@ -109742,8 +103664,7 @@ - muscle of posterior compartment of hindlimb stylopod (post-embryonic human) - FMA:81022 + muscle of posterior compartment of hindlimb stylopod (post-embryonic human) @@ -109762,8 +103683,7 @@ - Brodmann (1909) area 48 (post-embryonic human) - FMA:81151 + Brodmann (1909) area 48 (post-embryonic human) @@ -109782,8 +103702,7 @@ - Brodmann (1909) area 52 (post-embryonic human) - FMA:81153 + Brodmann (1909) area 52 (post-embryonic human) @@ -109802,8 +103721,7 @@ - large intestine smooth muscle circular layer (post-embryonic human) - FMA:81160 + large intestine smooth muscle circular layer (post-embryonic human) @@ -109822,8 +103740,7 @@ - rib 8 (post-embryonic human) - FMA:8120 + rib 8 (post-embryonic human) @@ -109842,8 +103759,7 @@ - rib 6 (post-embryonic human) - FMA:8147 + rib 6 (post-embryonic human) @@ -109862,8 +103778,7 @@ - stroma (post-embryonic human) - FMA:81494 + stroma (post-embryonic human) @@ -109882,8 +103797,7 @@ - pharyngeal nerve plexus (post-embryonic human) - FMA:82453 + pharyngeal nerve plexus (post-embryonic human) @@ -109902,8 +103816,7 @@ - organ part (post-embryonic human) - FMA:82472 + organ part (post-embryonic human) @@ -109922,8 +103835,7 @@ - anatomical wall (post-embryonic human) - FMA:82482 + anatomical wall (post-embryonic human) @@ -109942,8 +103854,7 @@ - organ component layer (post-embryonic human) - FMA:82485 + organ component layer (post-embryonic human) @@ -109962,8 +103873,7 @@ - alveolus (post-embryonic human) - FMA:82493 + alveolus (post-embryonic human) @@ -109982,8 +103892,7 @@ - membranous layer (post-embryonic human) - FMA:82500 + membranous layer (post-embryonic human) @@ -110002,8 +103911,7 @@ - protuberance (post-embryonic human) - FMA:82506 + protuberance (post-embryonic human) @@ -110022,8 +103930,7 @@ - bone spine (post-embryonic human) - FMA:82508 + bone spine (post-embryonic human) @@ -110042,8 +103949,7 @@ - iliac spine (post-embryonic human) - FMA:82509 + iliac spine (post-embryonic human) @@ -110062,8 +103968,7 @@ - trochanter (post-embryonic human) - FMA:82513 + trochanter (post-embryonic human) @@ -110082,8 +103987,7 @@ - nerve root (post-embryonic human) - FMA:82524 + nerve root (post-embryonic human) @@ -110102,8 +104006,7 @@ - stylopod (post-embryonic human) - FMA:83014 + stylopod (post-embryonic human) @@ -110122,8 +104025,7 @@ - autopod region (post-embryonic human) - FMA:83015 + autopod region (post-embryonic human) @@ -110142,8 +104044,7 @@ - zeugopod (post-embryonic human) - FMA:83016 + zeugopod (post-embryonic human) @@ -110162,8 +104063,7 @@ - trophoblast (post-embryonic human) - FMA:83029 + trophoblast (post-embryonic human) @@ -110182,8 +104082,7 @@ - cytotrophoblast (post-embryonic human) - FMA:83039 + cytotrophoblast (post-embryonic human) @@ -110202,8 +104101,7 @@ - syncytiotrophoblast (post-embryonic human) - FMA:83040 + syncytiotrophoblast (post-embryonic human) @@ -110222,8 +104120,7 @@ - blastocyst (post-embryonic human) - FMA:83041 + blastocyst (post-embryonic human) @@ -110242,8 +104139,7 @@ - arterial blood (post-embryonic human) - FMA:83066 + arterial blood (post-embryonic human) @@ -110262,8 +104158,7 @@ - venous blood (post-embryonic human) - FMA:83067 + venous blood (post-embryonic human) @@ -110282,8 +104177,7 @@ - subepicardial layer of epicardium (post-embryonic human) - FMA:83105 + subepicardial layer of epicardium (post-embryonic human) @@ -110302,8 +104196,7 @@ - cardiac endomysium (post-embryonic human) - FMA:83112 + cardiac endomysium (post-embryonic human) @@ -110322,8 +104215,7 @@ - multi cell part structure (post-embryonic human) - FMA:83115 + multi cell part structure (post-embryonic human) @@ -110342,8 +104234,7 @@ - bone tissue of long bone (post-embryonic human) - FMA:83117 + bone tissue of long bone (post-embryonic human) @@ -110362,8 +104253,7 @@ - central gray substance (post-embryonic human) - FMA:83134 + central gray substance (post-embryonic human) @@ -110382,8 +104272,7 @@ - layer of neocortex (post-embryonic human) - FMA:83138 + layer of neocortex (post-embryonic human) @@ -110402,8 +104291,7 @@ - granular layer of cerebellar cortex (post-embryonic human) - FMA:83140 + granular layer of cerebellar cortex (post-embryonic human) @@ -110422,8 +104310,7 @@ - cerebellar layer (post-embryonic human) - FMA:83141 + cerebellar layer (post-embryonic human) @@ -110442,8 +104329,7 @@ - central nervous system gray matter layer (post-embryonic human) - FMA:83142 + central nervous system gray matter layer (post-embryonic human) @@ -110462,8 +104348,7 @@ - central nervous system cell part cluster (post-embryonic human) - FMA:83143 + central nervous system cell part cluster (post-embryonic human) @@ -110482,8 +104367,7 @@ - dentate gyrus granule cell layer (post-embryonic human) - FMA:83146 + dentate gyrus granule cell layer (post-embryonic human) @@ -110502,8 +104386,7 @@ - hippocampus stratum lacunosum moleculare (post-embryonic human) - FMA:83149 + hippocampus stratum lacunosum moleculare (post-embryonic human) @@ -110522,8 +104405,7 @@ - Bachmann's bundle (post-embryonic human) - FMA:83180 + Bachmann's bundle (post-embryonic human) @@ -110542,8 +104424,7 @@ - rib 9 (post-embryonic human) - FMA:8337 + rib 9 (post-embryonic human) @@ -110562,8 +104443,7 @@ - conducting tissue of heart (post-embryonic human) - FMA:83378 + conducting tissue of heart (post-embryonic human) @@ -110582,8 +104462,7 @@ - cardiac muscle tissue of ventricle (post-embryonic human) - FMA:83450 + cardiac muscle tissue of ventricle (post-embryonic human) @@ -110602,8 +104481,7 @@ - cardiac muscle of right ventricle (post-embryonic human) - FMA:83452 + cardiac muscle of right ventricle (post-embryonic human) @@ -110622,8 +104500,7 @@ - cardiac muscle of left ventricle (post-embryonic human) - FMA:83453 + cardiac muscle of left ventricle (post-embryonic human) @@ -110642,8 +104519,7 @@ - myocardium of atrium (post-embryonic human) - FMA:83509 + myocardium of atrium (post-embryonic human) @@ -110662,8 +104538,7 @@ - trabecular layer of ventricle (post-embryonic human) - FMA:83511 + trabecular layer of ventricle (post-embryonic human) @@ -110682,8 +104557,7 @@ - fibroelastic connective tissue (post-embryonic human) - FMA:83520 + fibroelastic connective tissue (post-embryonic human) @@ -110702,8 +104576,7 @@ - fibrocollagenous connective tissue (post-embryonic human) - FMA:83521 + fibrocollagenous connective tissue (post-embryonic human) @@ -110722,8 +104595,7 @@ - interventricular septum endocardium (post-embryonic human) - FMA:83584 + interventricular septum endocardium (post-embryonic human) @@ -110742,8 +104614,7 @@ - endocardial endothelium (post-embryonic human) - FMA:83596 + endocardial endothelium (post-embryonic human) @@ -110762,8 +104633,7 @@ - juxtaglomerular apparatus (post-embryonic human) - FMA:83599 + juxtaglomerular apparatus (post-embryonic human) @@ -110782,8 +104652,7 @@ - Ruffini nerve ending (post-embryonic human) - FMA:83602 + Ruffini nerve ending (post-embryonic human) @@ -110802,8 +104671,7 @@ - Pacinian corpuscle (post-embryonic human) - FMA:83604 + Pacinian corpuscle (post-embryonic human) @@ -110822,8 +104690,7 @@ - Meissner's corpuscle (post-embryonic human) - FMA:83605 + Meissner's corpuscle (post-embryonic human) @@ -110842,8 +104709,7 @@ - Merkel nerve ending (post-embryonic human) - FMA:83606 + Merkel nerve ending (post-embryonic human) @@ -110862,8 +104728,7 @@ - muscle spindle (post-embryonic human) - FMA:83607 + muscle spindle (post-embryonic human) @@ -110882,8 +104747,7 @@ - golgi tendon organ (post-embryonic human) - FMA:83608 + golgi tendon organ (post-embryonic human) @@ -110902,8 +104766,7 @@ - Pacinian corpuscle (post-embryonic human) - FMA:83609 + Pacinian corpuscle (post-embryonic human) @@ -110922,8 +104785,7 @@ - medial lemniscus (post-embryonic human) - FMA:83675 + medial lemniscus (post-embryonic human) @@ -110942,8 +104804,7 @@ - nervous system lemniscus (post-embryonic human) - FMA:83676 + nervous system lemniscus (post-embryonic human) @@ -110962,8 +104823,7 @@ - dentate gyrus molecular layer (post-embryonic human) - FMA:83677 + dentate gyrus molecular layer (post-embryonic human) @@ -110982,8 +104842,7 @@ - layer of dentate gyrus (post-embryonic human) - FMA:83678 + layer of dentate gyrus (post-embryonic human) @@ -111002,8 +104861,7 @@ - layer of hippocampus (post-embryonic human) - FMA:83679 + layer of hippocampus (post-embryonic human) @@ -111022,8 +104880,7 @@ - striatum (post-embryonic human) - FMA:83683 + striatum (post-embryonic human) @@ -111042,8 +104899,7 @@ - pallidum (post-embryonic human) - FMA:83684 + pallidum (post-embryonic human) @@ -111062,8 +104918,7 @@ - neural nucleus (post-embryonic human) - FMA:83686 + neural nucleus (post-embryonic human) @@ -111082,8 +104937,7 @@ - allocortex (post-embryonic human) - FMA:83687 + allocortex (post-embryonic human) @@ -111102,8 +104956,7 @@ - nasal mucus (post-embryonic human) - FMA:83688 + nasal mucus (post-embryonic human) @@ -111122,8 +104975,7 @@ - cervical mucus (post-embryonic human) - FMA:83689 + cervical mucus (post-embryonic human) @@ -111142,8 +104994,7 @@ - bone marrow cavity (post-embryonic human) - FMA:83698 + bone marrow cavity (post-embryonic human) @@ -111162,8 +105013,7 @@ - posterior horn lateral ventricle (post-embryonic human) - FMA:83700 + posterior horn lateral ventricle (post-embryonic human) @@ -111182,8 +105032,7 @@ - inferior horn of the lateral ventricle (post-embryonic human) - FMA:83701 + inferior horn of the lateral ventricle (post-embryonic human) @@ -111202,8 +105051,7 @@ - body of lateral ventricle (post-embryonic human) - FMA:83703 + body of lateral ventricle (post-embryonic human) @@ -111222,8 +105070,7 @@ - calcar avis of the lateral ventricle (post-embryonic human) - FMA:83707 + calcar avis of the lateral ventricle (post-embryonic human) @@ -111242,8 +105089,7 @@ - choroid plexus of lateral ventricle (post-embryonic human) - FMA:83711 + choroid plexus of lateral ventricle (post-embryonic human) @@ -111262,8 +105108,7 @@ - tela choroidea of telencephalic ventricle (post-embryonic human) - FMA:83712 + tela choroidea of telencephalic ventricle (post-embryonic human) @@ -111282,8 +105127,7 @@ - ventricular system choroidal fissure (post-embryonic human) - FMA:83715 + ventricular system choroidal fissure (post-embryonic human) @@ -111302,8 +105146,7 @@ - subarachnoid space (post-embryonic human) - FMA:83716 + subarachnoid space (post-embryonic human) @@ -111322,8 +105165,7 @@ - subarachnoid cistern (post-embryonic human) - FMA:83717 + subarachnoid cistern (post-embryonic human) @@ -111342,8 +105184,7 @@ - basal cistern (post-embryonic human) - FMA:83718 + basal cistern (post-embryonic human) @@ -111362,8 +105203,7 @@ - pontine cistern (post-embryonic human) - FMA:83719 + pontine cistern (post-embryonic human) @@ -111382,8 +105222,7 @@ - posterior cerebellomedullary cistern (post-embryonic human) - FMA:83721 + posterior cerebellomedullary cistern (post-embryonic human) @@ -111402,8 +105241,7 @@ - lateral cerebellomedullary cistern (post-embryonic human) - FMA:83722 + lateral cerebellomedullary cistern (post-embryonic human) @@ -111422,8 +105260,7 @@ - telodiencephalic fissure (post-embryonic human) - FMA:83726 + telodiencephalic fissure (post-embryonic human) @@ -111442,8 +105279,7 @@ - longitudinal fissure (post-embryonic human) - FMA:83727 + longitudinal fissure (post-embryonic human) @@ -111462,8 +105298,7 @@ - primary fissure of cerebellum (post-embryonic human) - FMA:83729 + primary fissure of cerebellum (post-embryonic human) @@ -111482,8 +105317,7 @@ - posterolateral fissure of cerebellum (post-embryonic human) - FMA:83730 + posterolateral fissure of cerebellum (post-embryonic human) @@ -111502,8 +105336,7 @@ - precentral fissure of cerebellum (post-embryonic human) - FMA:83731 + precentral fissure of cerebellum (post-embryonic human) @@ -111522,8 +105355,7 @@ - postcentral fissure of cerebellum (post-embryonic human) - FMA:83732 + postcentral fissure of cerebellum (post-embryonic human) @@ -111542,8 +105374,7 @@ - posterior superior fissure of cerebellum (post-embryonic human) - FMA:83733 + posterior superior fissure of cerebellum (post-embryonic human) @@ -111562,8 +105393,7 @@ - medulla oblongata anterior median fissure (post-embryonic human) - FMA:83734 + medulla oblongata anterior median fissure (post-embryonic human) @@ -111582,8 +105412,7 @@ - anterior median fissure of spinal cord (post-embryonic human) - FMA:83735 + anterior median fissure of spinal cord (post-embryonic human) @@ -111602,8 +105431,7 @@ - preculminate fissure of cerebellum (post-embryonic human) - FMA:83736 + preculminate fissure of cerebellum (post-embryonic human) @@ -111622,8 +105450,7 @@ - intraculminate fissure of cerebellum (post-embryonic human) - FMA:83737 + intraculminate fissure of cerebellum (post-embryonic human) @@ -111642,8 +105469,7 @@ - preoccipital notch (post-embryonic human) - FMA:83739 + preoccipital notch (post-embryonic human) @@ -111662,8 +105488,7 @@ - callosal sulcus (post-embryonic human) - FMA:83743 + callosal sulcus (post-embryonic human) @@ -111682,8 +105507,7 @@ - anterior parolfactory sulcus (post-embryonic human) - FMA:83744 + anterior parolfactory sulcus (post-embryonic human) @@ -111702,8 +105526,7 @@ - posterior parolfactory sulcus (post-embryonic human) - FMA:83745 + posterior parolfactory sulcus (post-embryonic human) @@ -111722,8 +105545,7 @@ - rhinal sulcus (post-embryonic human) - FMA:83746 + rhinal sulcus (post-embryonic human) @@ -111742,8 +105564,7 @@ - hippocampal sulcus (post-embryonic human) - FMA:83747 + hippocampal sulcus (post-embryonic human) @@ -111762,8 +105583,7 @@ - cingulate sulcus (post-embryonic human) - FMA:83748 + cingulate sulcus (post-embryonic human) @@ -111782,8 +105602,7 @@ - calcarine sulcus (post-embryonic human) - FMA:83749 + calcarine sulcus (post-embryonic human) @@ -111802,8 +105621,7 @@ - anterior calcarine sulcus (post-embryonic human) - FMA:83750 + anterior calcarine sulcus (post-embryonic human) @@ -111822,8 +105640,7 @@ - collateral sulcus (post-embryonic human) - FMA:83751 + collateral sulcus (post-embryonic human) @@ -111842,8 +105659,7 @@ - central sulcus (post-embryonic human) - FMA:83752 + central sulcus (post-embryonic human) @@ -111862,8 +105678,7 @@ - circular sulcus of insula (post-embryonic human) - FMA:83753 + circular sulcus of insula (post-embryonic human) @@ -111882,8 +105697,7 @@ - parieto-occipital sulcus (post-embryonic human) - FMA:83754 + parieto-occipital sulcus (post-embryonic human) @@ -111902,8 +105716,7 @@ - superior frontal sulcus (post-embryonic human) - FMA:83755 + superior frontal sulcus (post-embryonic human) @@ -111922,8 +105735,7 @@ - inferior frontal sulcus (post-embryonic human) - FMA:83757 + inferior frontal sulcus (post-embryonic human) @@ -111942,8 +105754,7 @@ - diagonal sulcus (post-embryonic human) - FMA:83758 + diagonal sulcus (post-embryonic human) @@ -111962,8 +105773,7 @@ - anterior ascending limb of lateral sulcus (post-embryonic human) - FMA:83759 + anterior ascending limb of lateral sulcus (post-embryonic human) @@ -111982,8 +105792,7 @@ - anterior horizontal limb of lateral sulcus (post-embryonic human) - FMA:83760 + anterior horizontal limb of lateral sulcus (post-embryonic human) @@ -112002,8 +105811,7 @@ - posterior ascending limb of lateral sulcus (post-embryonic human) - FMA:83761 + posterior ascending limb of lateral sulcus (post-embryonic human) @@ -112022,8 +105830,7 @@ - paracentral sulcus (post-embryonic human) - FMA:83762 + paracentral sulcus (post-embryonic human) @@ -112042,8 +105849,7 @@ - superior precentral sulcus (post-embryonic human) - FMA:83763 + superior precentral sulcus (post-embryonic human) @@ -112062,8 +105868,7 @@ - inferior precentral sulcus (post-embryonic human) - FMA:83764 + inferior precentral sulcus (post-embryonic human) @@ -112082,8 +105887,7 @@ - anterior subcentral sulcus (post-embryonic human) - FMA:83765 + anterior subcentral sulcus (post-embryonic human) @@ -112102,8 +105906,7 @@ - superior rostral sulcus (post-embryonic human) - FMA:83766 + superior rostral sulcus (post-embryonic human) @@ -112122,8 +105925,7 @@ - inferior rostral sulcus (post-embryonic human) - FMA:83767 + inferior rostral sulcus (post-embryonic human) @@ -112142,8 +105944,7 @@ - fronto-orbital sulcus (post-embryonic human) - FMA:83768 + fronto-orbital sulcus (post-embryonic human) @@ -112162,8 +105963,7 @@ - olfactory sulcus (post-embryonic human) - FMA:83769 + olfactory sulcus (post-embryonic human) @@ -112182,8 +105982,7 @@ - orbital sulcus (post-embryonic human) - FMA:83770 + orbital sulcus (post-embryonic human) @@ -112202,8 +106001,7 @@ - transverse orbital sulcus (post-embryonic human) - FMA:83771 + transverse orbital sulcus (post-embryonic human) @@ -112222,8 +106020,7 @@ - intraparietal sulcus (post-embryonic human) - FMA:83772 + intraparietal sulcus (post-embryonic human) @@ -112242,8 +106039,7 @@ - marginal sulcus (post-embryonic human) - FMA:83773 + marginal sulcus (post-embryonic human) @@ -112262,8 +106058,7 @@ - postcentral sulcus of parietal lobe (post-embryonic human) - FMA:83774 + postcentral sulcus of parietal lobe (post-embryonic human) @@ -112282,8 +106077,7 @@ - superior postcentral sulcus (post-embryonic human) - FMA:83775 + superior postcentral sulcus (post-embryonic human) @@ -112302,8 +106096,7 @@ - inferior postcentral sulcus (post-embryonic human) - FMA:83776 + inferior postcentral sulcus (post-embryonic human) @@ -112322,8 +106115,7 @@ - subparietal sulcus (post-embryonic human) - FMA:83777 + subparietal sulcus (post-embryonic human) @@ -112342,8 +106134,7 @@ - posterior subcentral sulcus (post-embryonic human) - FMA:83778 + posterior subcentral sulcus (post-embryonic human) @@ -112362,8 +106153,7 @@ - central sulcus of insula (post-embryonic human) - FMA:83779 + central sulcus of insula (post-embryonic human) @@ -112382,8 +106172,7 @@ - transverse temporal sulcus (post-embryonic human) - FMA:83782 + transverse temporal sulcus (post-embryonic human) @@ -112402,8 +106191,7 @@ - superior temporal sulcus (post-embryonic human) - FMA:83783 + superior temporal sulcus (post-embryonic human) @@ -112422,8 +106210,7 @@ - inferior temporal sulcus (post-embryonic human) - FMA:83784 + inferior temporal sulcus (post-embryonic human) @@ -112442,8 +106229,7 @@ - lateral occipital sulcus (post-embryonic human) - FMA:83785 + lateral occipital sulcus (post-embryonic human) @@ -112462,8 +106248,7 @@ - transverse occipital sulcus (post-embryonic human) - FMA:83786 + transverse occipital sulcus (post-embryonic human) @@ -112482,8 +106267,7 @@ - posterior calcarine sulcus (post-embryonic human) - FMA:83787 + posterior calcarine sulcus (post-embryonic human) @@ -112502,8 +106286,7 @@ - lunate sulcus (post-embryonic human) - FMA:83788 + lunate sulcus (post-embryonic human) @@ -112522,8 +106305,7 @@ - intralingual sulcus (post-embryonic human) - FMA:83789 + intralingual sulcus (post-embryonic human) @@ -112542,8 +106324,7 @@ - ventrolateral sulcus of medulla oblongata (post-embryonic human) - FMA:83797 + ventrolateral sulcus of medulla oblongata (post-embryonic human) @@ -112562,8 +106343,7 @@ - precentral sulcus (post-embryonic human) - FMA:83800 + precentral sulcus (post-embryonic human) @@ -112582,8 +106362,7 @@ - subdural space (post-embryonic human) - FMA:83803 + subdural space (post-embryonic human) @@ -112602,8 +106381,7 @@ - nucleus of brain (post-embryonic human) - FMA:83840 + nucleus of brain (post-embryonic human) @@ -112622,8 +106400,7 @@ - ganglion of central nervous system (post-embryonic human) - FMA:83843 + ganglion of central nervous system (post-embryonic human) @@ -112642,8 +106419,7 @@ - fasciculus of brain (post-embryonic human) - FMA:83844 + fasciculus of brain (post-embryonic human) @@ -112662,8 +106438,7 @@ - dorsal longitudinal fasciculus (post-embryonic human) - FMA:83845 + dorsal longitudinal fasciculus (post-embryonic human) @@ -112682,8 +106457,7 @@ - medial longitudinal fasciculus (post-embryonic human) - FMA:83846 + medial longitudinal fasciculus (post-embryonic human) @@ -112702,8 +106476,7 @@ - axon tract (post-embryonic human) - FMA:83847 + axon tract (post-embryonic human) @@ -112722,8 +106495,7 @@ - tract of brain (post-embryonic human) - FMA:83848 + tract of brain (post-embryonic human) @@ -112742,8 +106514,7 @@ - mammillothalamic axonal tract (post-embryonic human) - FMA:83849 + mammillothalamic axonal tract (post-embryonic human) @@ -112762,8 +106533,7 @@ - central tegmental tract (post-embryonic human) - FMA:83850 + central tegmental tract (post-embryonic human) @@ -112782,8 +106552,7 @@ - spinal trigeminal tract (post-embryonic human) - FMA:83851 + spinal trigeminal tract (post-embryonic human) @@ -112802,8 +106571,7 @@ - trigeminothalamic tract (post-embryonic human) - FMA:83852 + trigeminothalamic tract (post-embryonic human) @@ -112822,8 +106590,7 @@ - stria of neuraxis (post-embryonic human) - FMA:83854 + stria of neuraxis (post-embryonic human) @@ -112842,8 +106609,7 @@ - white matter lamina of neuraxis (post-embryonic human) - FMA:83856 + white matter lamina of neuraxis (post-embryonic human) @@ -112862,8 +106628,7 @@ - neural decussation (post-embryonic human) - FMA:83858 + neural decussation (post-embryonic human) @@ -112882,8 +106647,7 @@ - white matter radiation (post-embryonic human) - FMA:83859 + white matter radiation (post-embryonic human) @@ -112902,8 +106666,7 @@ - peduncle of neuraxis (post-embryonic human) - FMA:83860 + peduncle of neuraxis (post-embryonic human) @@ -112922,8 +106685,7 @@ - fornix of brain (post-embryonic human) - FMA:83865 + fornix of brain (post-embryonic human) @@ -112942,8 +106704,7 @@ - hippocampus fimbria (post-embryonic human) - FMA:83866 + hippocampus fimbria (post-embryonic human) @@ -112962,8 +106723,7 @@ - hippocampus alveus (post-embryonic human) - FMA:83867 + hippocampus alveus (post-embryonic human) @@ -112982,8 +106742,7 @@ - cingulum of brain (post-embryonic human) - FMA:83869 + cingulum of brain (post-embryonic human) @@ -113002,8 +106761,7 @@ - amiculum (post-embryonic human) - FMA:83870 + amiculum (post-embryonic human) @@ -113022,8 +106780,7 @@ - hilum of neuraxis (post-embryonic human) - FMA:83871 + hilum of neuraxis (post-embryonic human) @@ -113042,8 +106799,7 @@ - gyrus (post-embryonic human) - FMA:83874 + gyrus (post-embryonic human) @@ -113062,8 +106818,7 @@ - right hemisphere of cerebellum (post-embryonic human) - FMA:83876 + right hemisphere of cerebellum (post-embryonic human) @@ -113082,8 +106837,7 @@ - left hemisphere of cerebellum (post-embryonic human) - FMA:83877 + left hemisphere of cerebellum (post-embryonic human) @@ -113102,8 +106856,7 @@ - cerebellum hemisphere lobule (post-embryonic human) - FMA:83880 + cerebellum hemisphere lobule (post-embryonic human) @@ -113122,8 +106875,7 @@ - flocculus (post-embryonic human) - FMA:83881 + flocculus (post-embryonic human) @@ -113142,8 +106894,7 @@ - cerebellum vermis lobule X (post-embryonic human) - FMA:83882 + cerebellum vermis lobule X (post-embryonic human) @@ -113162,8 +106913,7 @@ - cerebellum vermis lobule IX (post-embryonic human) - FMA:83883 + cerebellum vermis lobule IX (post-embryonic human) @@ -113182,28 +106932,7 @@ - cerebellum vermis lobule I (post-embryonic human) - FMA:83884 - - - - - - - - - - - - - - - - - - - paraflocculus (post-embryonic human) - FMA:83885 + cerebellum vermis lobule I (post-embryonic human) @@ -113222,8 +106951,7 @@ - cerebellum vermis culmen (post-embryonic human) - FMA:83886 + cerebellum vermis culmen (post-embryonic human) @@ -113242,8 +106970,7 @@ - cerebellum vermis lobule VI (post-embryonic human) - FMA:83887 + cerebellum vermis lobule VI (post-embryonic human) @@ -113262,8 +106989,7 @@ - cerebellum vermis lobule VIII (post-embryonic human) - FMA:83888 + cerebellum vermis lobule VIII (post-embryonic human) @@ -113282,8 +107008,7 @@ - cerebellum vermis lobule VIIA (post-embryonic human) - FMA:83889 + cerebellum vermis lobule VIIA (post-embryonic human) @@ -113302,8 +107027,7 @@ - cerebellum vermis lobule VIIB (post-embryonic human) - FMA:83890 + cerebellum vermis lobule VIIB (post-embryonic human) @@ -113322,8 +107046,7 @@ - hippocampus stratum oriens (post-embryonic human) - FMA:83893 + hippocampus stratum oriens (post-embryonic human) @@ -113342,8 +107065,7 @@ - hippocampus stratum radiatum (post-embryonic human) - FMA:83894 + hippocampus stratum radiatum (post-embryonic human) @@ -113362,8 +107084,7 @@ - hippocampus pyramidal layer (post-embryonic human) - FMA:83895 + hippocampus pyramidal layer (post-embryonic human) @@ -113382,8 +107103,7 @@ - Purkinje cell layer of cerebellar cortex (post-embryonic human) - FMA:83896 + Purkinje cell layer of cerebellar cortex (post-embryonic human) @@ -113402,8 +107122,7 @@ - molecular layer of cerebellar cortex (post-embryonic human) - FMA:83897 + molecular layer of cerebellar cortex (post-embryonic human) @@ -113422,8 +107141,7 @@ - central nervous system white matter layer (post-embryonic human) - FMA:83898 + central nervous system white matter layer (post-embryonic human) @@ -113442,8 +107160,7 @@ - white matter of superior colliculus (post-embryonic human) - FMA:83899 + white matter of superior colliculus (post-embryonic human) @@ -113462,8 +107179,7 @@ - cortical layer I (post-embryonic human) - FMA:83900 + cortical layer I (post-embryonic human) @@ -113482,8 +107198,7 @@ - midbrain tectum (post-embryonic human) - FMA:83902 + midbrain tectum (post-embryonic human) @@ -113502,8 +107217,7 @@ - stratum zonale of thalamus (post-embryonic human) - FMA:83905 + stratum zonale of thalamus (post-embryonic human) @@ -113522,8 +107236,7 @@ - nervous system commissure (post-embryonic human) - FMA:83906 + nervous system commissure (post-embryonic human) @@ -113542,8 +107255,7 @@ - gray matter of telencephalon (post-embryonic human) - FMA:83911 + gray matter of telencephalon (post-embryonic human) @@ -113562,8 +107274,7 @@ - gray matter of diencephalon (post-embryonic human) - FMA:83912 + gray matter of diencephalon (post-embryonic human) @@ -113582,8 +107293,7 @@ - gray matter of midbrain (post-embryonic human) - FMA:83913 + gray matter of midbrain (post-embryonic human) @@ -113602,8 +107312,7 @@ - white matter (post-embryonic human) - FMA:83929 + white matter (post-embryonic human) @@ -113622,8 +107331,7 @@ - white matter of telencephalon (post-embryonic human) - FMA:83930 + white matter of telencephalon (post-embryonic human) @@ -113642,8 +107350,7 @@ - diencephalic white matter (post-embryonic human) - FMA:83931 + diencephalic white matter (post-embryonic human) @@ -113662,8 +107369,7 @@ - white matter of midbrain (post-embryonic human) - FMA:83936 + white matter of midbrain (post-embryonic human) @@ -113682,8 +107388,7 @@ - white matter of metencephalon (post-embryonic human) - FMA:83939 + white matter of metencephalon (post-embryonic human) @@ -113702,8 +107407,7 @@ - white matter of pons (post-embryonic human) - FMA:83940 + white matter of pons (post-embryonic human) @@ -113722,8 +107426,7 @@ - white matter of pontine tegmentum (post-embryonic human) - FMA:83942 + white matter of pontine tegmentum (post-embryonic human) @@ -113742,8 +107445,7 @@ - white matter of cerebellum (post-embryonic human) - FMA:83943 + white matter of cerebellum (post-embryonic human) @@ -113762,8 +107464,7 @@ - white matter of medulla oblongata (post-embryonic human) - FMA:83944 + white matter of medulla oblongata (post-embryonic human) @@ -113782,8 +107483,7 @@ - white matter of spinal cord (post-embryonic human) - FMA:83945 + white matter of spinal cord (post-embryonic human) @@ -113802,8 +107502,7 @@ - accessory XI nerve nucleus (post-embryonic human) - FMA:83965 + accessory XI nerve nucleus (post-embryonic human) @@ -113822,8 +107521,7 @@ - tentorium cerebelli (post-embryonic human) - FMA:83966 + tentorium cerebelli (post-embryonic human) @@ -113842,8 +107540,7 @@ - falx cerebri (post-embryonic human) - FMA:83967 + falx cerebri (post-embryonic human) @@ -113862,8 +107559,7 @@ - falx cerebelli (post-embryonic human) - FMA:83974 + falx cerebelli (post-embryonic human) @@ -113882,8 +107578,7 @@ - filum terminale (post-embryonic human) - FMA:83977 + filum terminale (post-embryonic human) @@ -113902,8 +107597,7 @@ - arachnoid trabecula (post-embryonic human) - FMA:83979 + arachnoid trabecula (post-embryonic human) @@ -113922,8 +107616,7 @@ - arachnoid villus (post-embryonic human) - FMA:83980 + arachnoid villus (post-embryonic human) @@ -113942,8 +107635,7 @@ - brain arachnoid mater (post-embryonic human) - FMA:83981 + brain arachnoid mater (post-embryonic human) @@ -113962,8 +107654,7 @@ - encapsulated tactile receptor (post-embryonic human) - FMA:83995 + encapsulated tactile receptor (post-embryonic human) @@ -113982,8 +107673,7 @@ - Ruffini nerve ending (post-embryonic human) - FMA:84004 + Ruffini nerve ending (post-embryonic human) @@ -114002,8 +107692,7 @@ - unencapsulated tactile receptor (post-embryonic human) - FMA:84005 + unencapsulated tactile receptor (post-embryonic human) @@ -114022,8 +107711,7 @@ - collection of basal ganglia (post-embryonic human) - FMA:84013 + collection of basal ganglia (post-embryonic human) @@ -114042,8 +107730,7 @@ - corticomedial nuclear complex (post-embryonic human) - FMA:84015 + corticomedial nuclear complex (post-embryonic human) @@ -114062,8 +107749,7 @@ - raphe nuclei (post-embryonic human) - FMA:84017 + raphe nuclei (post-embryonic human) @@ -114082,8 +107768,7 @@ - nucleus of trapezoid body (post-embryonic human) - FMA:84023 + nucleus of trapezoid body (post-embryonic human) @@ -114102,8 +107787,7 @@ - nucleus of lateral lemniscus (post-embryonic human) - FMA:84025 + nucleus of lateral lemniscus (post-embryonic human) @@ -114122,8 +107806,7 @@ - secondary fissure of cerebellum (post-embryonic human) - FMA:84043 + secondary fissure of cerebellum (post-embryonic human) @@ -114142,8 +107825,7 @@ - nuclear complex of neuraxis (post-embryonic human) - FMA:84059 + nuclear complex of neuraxis (post-embryonic human) @@ -114162,8 +107844,7 @@ - circumventricular organ (post-embryonic human) - FMA:84081 + circumventricular organ (post-embryonic human) @@ -114182,8 +107863,7 @@ - cardiac muscle tissue of interatrial septum (post-embryonic human) - FMA:84083 + cardiac muscle tissue of interatrial septum (post-embryonic human) @@ -114202,8 +107882,7 @@ - cardiac muscle tissue of interventricular septum (post-embryonic human) - FMA:84084 + cardiac muscle tissue of interventricular septum (post-embryonic human) @@ -114222,8 +107901,7 @@ - ethmoid sinus (post-embryonic human) - FMA:84115 + ethmoid sinus (post-embryonic human) @@ -114242,8 +107920,7 @@ - mesangium (post-embryonic human) - FMA:84139 + mesangium (post-embryonic human) @@ -114262,8 +107939,7 @@ - glomerular mesangium (post-embryonic human) - FMA:84140 + glomerular mesangium (post-embryonic human) @@ -114282,8 +107958,7 @@ - extraglomerular mesangium (post-embryonic human) - FMA:84141 + extraglomerular mesangium (post-embryonic human) @@ -114302,8 +107977,7 @@ - basal cell layer of urothelium (post-embryonic human) - FMA:84154 + basal cell layer of urothelium (post-embryonic human) @@ -114322,8 +107996,7 @@ - rib 10 (post-embryonic human) - FMA:8418 + rib 10 (post-embryonic human) @@ -114342,8 +108015,7 @@ - reticuloendothelial system (post-embryonic human) - FMA:84189 + reticuloendothelial system (post-embryonic human) @@ -114362,8 +108034,7 @@ - primary incisor tooth (post-embryonic human) - FMA:84200 + primary incisor tooth (post-embryonic human) @@ -114382,8 +108053,7 @@ - secondary incisor tooth (post-embryonic human) - FMA:84201 + secondary incisor tooth (post-embryonic human) @@ -114402,8 +108072,7 @@ - primary canine tooth (post-embryonic human) - FMA:84202 + primary canine tooth (post-embryonic human) @@ -114422,8 +108091,7 @@ - secondary canine tooth (post-embryonic human) - FMA:84203 + secondary canine tooth (post-embryonic human) @@ -114442,8 +108110,7 @@ - primary molar tooth (post-embryonic human) - FMA:84206 + primary molar tooth (post-embryonic human) @@ -114462,8 +108129,7 @@ - secondary molar tooth (post-embryonic human) - FMA:84207 + secondary molar tooth (post-embryonic human) @@ -114482,8 +108148,7 @@ - upper primary molar tooth (post-embryonic human) - FMA:84210 + upper primary molar tooth (post-embryonic human) @@ -114502,8 +108167,7 @@ - upper first primary molar tooth (post-embryonic human) - FMA:84211 + upper first primary molar tooth (post-embryonic human) @@ -114522,8 +108186,7 @@ - lower first primary molar tooth (post-embryonic human) - FMA:84212 + lower first primary molar tooth (post-embryonic human) @@ -114542,8 +108205,7 @@ - lower primary molar tooth (post-embryonic human) - FMA:84213 + lower primary molar tooth (post-embryonic human) @@ -114562,8 +108224,7 @@ - upper primary incisor tooth (post-embryonic human) - FMA:84214 + upper primary incisor tooth (post-embryonic human) @@ -114582,8 +108243,7 @@ - lower primary incisor tooth (post-embryonic human) - FMA:84215 + lower primary incisor tooth (post-embryonic human) @@ -114602,8 +108262,7 @@ - upper central primary incisor tooth (post-embryonic human) - FMA:84216 + upper central primary incisor tooth (post-embryonic human) @@ -114622,8 +108281,7 @@ - upper lateral primary incisor tooth (post-embryonic human) - FMA:84217 + upper lateral primary incisor tooth (post-embryonic human) @@ -114642,8 +108300,7 @@ - lower central primary incisor tooth (post-embryonic human) - FMA:84218 + lower central primary incisor tooth (post-embryonic human) @@ -114662,8 +108319,7 @@ - lower lateral primary incisor tooth (post-embryonic human) - FMA:84219 + lower lateral primary incisor tooth (post-embryonic human) @@ -114682,8 +108338,7 @@ - upper primary canine tooth (post-embryonic human) - FMA:84228 + upper primary canine tooth (post-embryonic human) @@ -114702,8 +108357,7 @@ - lower primary canine tooth (post-embryonic human) - FMA:84229 + lower primary canine tooth (post-embryonic human) @@ -114722,8 +108376,7 @@ - upper second primary molar tooth (post-embryonic human) - FMA:84236 + upper second primary molar tooth (post-embryonic human) @@ -114742,8 +108395,7 @@ - lower second primary molar tooth (post-embryonic human) - FMA:84237 + lower second primary molar tooth (post-embryonic human) @@ -114762,8 +108414,7 @@ - cardiac muscle of auricular region (post-embryonic human) - FMA:84279 + cardiac muscle of auricular region (post-embryonic human) @@ -114782,8 +108433,7 @@ - cardiac muscle tissue of right auricle (post-embryonic human) - FMA:84280 + cardiac muscle tissue of right auricle (post-embryonic human) @@ -114802,8 +108452,7 @@ - cardiac muscle tissue of left auricle (post-embryonic human) - FMA:84281 + cardiac muscle tissue of left auricle (post-embryonic human) @@ -114822,8 +108471,7 @@ - intermediate reticular nucleus (post-embryonic human) - FMA:84336 + intermediate reticular nucleus (post-embryonic human) @@ -114842,8 +108490,7 @@ - basal ventral medial nucleus of thalamus (post-embryonic human) - FMA:84344 + basal ventral medial nucleus of thalamus (post-embryonic human) @@ -114862,8 +108509,7 @@ - ventral intermediate nucleus of thalamus (post-embryonic human) - FMA:84347 + ventral intermediate nucleus of thalamus (post-embryonic human) @@ -114882,8 +108528,7 @@ - periventricular nucleus (post-embryonic human) - FMA:84354 + periventricular nucleus (post-embryonic human) @@ -114902,8 +108547,7 @@ - posterior pretectal nucleus (post-embryonic human) - FMA:84355 + posterior pretectal nucleus (post-embryonic human) @@ -114922,8 +108566,7 @@ - cerebellopontine angle (post-embryonic human) - FMA:84358 + cerebellopontine angle (post-embryonic human) @@ -114942,8 +108585,7 @@ - cardiac muscle tissue of papillary muscle (post-embryonic human) - FMA:84425 + cardiac muscle tissue of papillary muscle (post-embryonic human) @@ -114962,8 +108604,7 @@ - trabecula carnea cardiac muscle tissue (post-embryonic human) - FMA:84428 + trabecula carnea cardiac muscle tissue (post-embryonic human) @@ -114982,8 +108623,7 @@ - cardiac muscle tissue of trabecula carnea of right ventricle (post-embryonic human) - FMA:84429 + cardiac muscle tissue of trabecula carnea of right ventricle (post-embryonic human) @@ -115002,8 +108642,7 @@ - cardiac muscle tissue of trabecula carnea of left ventricle (post-embryonic human) - FMA:84430 + cardiac muscle tissue of trabecula carnea of left ventricle (post-embryonic human) @@ -115022,8 +108661,7 @@ - root of optic nerve (post-embryonic human) - FMA:84573 + root of optic nerve (post-embryonic human) @@ -115042,8 +108680,7 @@ - bodily gas (post-embryonic human) - FMA:84580 + bodily gas (post-embryonic human) @@ -115062,8 +108699,7 @@ - air in respiratory system (post-embryonic human) - FMA:84581 + air in respiratory system (post-embryonic human) @@ -115082,8 +108718,7 @@ - lateral sacral lymph node (post-embryonic human) - FMA:84597 + lateral sacral lymph node (post-embryonic human) @@ -115102,8 +108737,7 @@ - medial sacral lymph node (post-embryonic human) - FMA:84598 + medial sacral lymph node (post-embryonic human) @@ -115122,8 +108756,7 @@ - lumbar lymph node (post-embryonic human) - FMA:84599 + lumbar lymph node (post-embryonic human) @@ -115142,8 +108775,7 @@ - basolateral amygdaloid nuclear complex (post-embryonic human) - FMA:84609 + basolateral amygdaloid nuclear complex (post-embryonic human) @@ -115162,8 +108794,7 @@ - sensory receptor (post-embryonic human) - FMA:84650 + sensory receptor (post-embryonic human) @@ -115182,8 +108813,7 @@ - interoceptor (post-embryonic human) - FMA:84656 + interoceptor (post-embryonic human) @@ -115202,8 +108832,7 @@ - visceral serous pericardium (post-embryonic human) - FMA:84882 + visceral serous pericardium (post-embryonic human) @@ -115222,8 +108851,7 @@ - orbital cavity (post-embryonic human) - FMA:84961 + orbital cavity (post-embryonic human) @@ -115242,8 +108870,7 @@ - peripharyngeal space (post-embryonic human) - FMA:84964 + peripharyngeal space (post-embryonic human) @@ -115262,8 +108889,7 @@ - retropharyngeal space (post-embryonic human) - FMA:84965 + retropharyngeal space (post-embryonic human) @@ -115282,8 +108908,7 @@ - rib 11 (post-embryonic human) - FMA:8499 + rib 11 (post-embryonic human) @@ -115302,8 +108927,7 @@ - coelemic cavity lumen (post-embryonic human) - FMA:85006 + coelemic cavity lumen (post-embryonic human) @@ -115322,8 +108946,7 @@ - tunica media of pulmonary trunk (post-embryonic human) - FMA:85030 + tunica media of pulmonary trunk (post-embryonic human) @@ -115342,8 +108965,7 @@ - atrioventricular region (post-embryonic human) - FMA:85125 + atrioventricular region (post-embryonic human) @@ -115362,8 +108984,7 @@ - rib 12 (post-embryonic human) - FMA:8515 + rib 12 (post-embryonic human) @@ -115382,8 +109003,7 @@ - muscle of back (post-embryonic human) - FMA:85216 + muscle of back (post-embryonic human) @@ -115402,8 +109022,7 @@ - acinus of lacrimal gland (post-embryonic human) - FMA:85250 + acinus of lacrimal gland (post-embryonic human) @@ -115422,8 +109041,7 @@ - internal urethral orifice (post-embryonic human) - FMA:85263 + internal urethral orifice (post-embryonic human) @@ -115442,8 +109060,7 @@ - male urethral meatus (post-embryonic human) - FMA:85265 + male urethral meatus (post-embryonic human) @@ -115462,8 +109079,7 @@ - female urethral meatus (post-embryonic human) - FMA:85266 + female urethral meatus (post-embryonic human) @@ -115482,8 +109098,7 @@ - male urethral crest (post-embryonic human) - FMA:85270 + male urethral crest (post-embryonic human) @@ -115502,8 +109117,7 @@ - female urethral crest (post-embryonic human) - FMA:85271 + female urethral crest (post-embryonic human) @@ -115522,8 +109136,7 @@ - capsule (post-embryonic human) - FMA:85272 + capsule (post-embryonic human) @@ -115542,8 +109155,7 @@ - trabecula (post-embryonic human) - FMA:85273 + trabecula (post-embryonic human) @@ -115562,8 +109174,7 @@ - external urethral sphincter (post-embryonic human) - FMA:85274 + external urethral sphincter (post-embryonic human) @@ -115582,8 +109193,7 @@ - epithelium of urethra (post-embryonic human) - FMA:85275 + epithelium of urethra (post-embryonic human) @@ -115602,8 +109212,7 @@ - lamina propria of urethra (post-embryonic human) - FMA:85276 + lamina propria of urethra (post-embryonic human) @@ -115622,8 +109231,7 @@ - molar crown (post-embryonic human) - FMA:85301 + molar crown (post-embryonic human) @@ -115642,8 +109250,7 @@ - root of molar tooth (post-embryonic human) - FMA:85302 + root of molar tooth (post-embryonic human) @@ -115662,8 +109269,7 @@ - trunk of intercostal nerve (post-embryonic human) - FMA:85315 + trunk of intercostal nerve (post-embryonic human) @@ -115682,8 +109288,7 @@ - mucosa (post-embryonic human) - FMA:85355 + mucosa (post-embryonic human) @@ -115702,8 +109307,7 @@ - mucosa (post-embryonic human) - FMA:85358 + mucosa (post-embryonic human) @@ -115722,8 +109326,7 @@ - mucosa of lacrimal canaliculus (post-embryonic human) - FMA:85366 + mucosa of lacrimal canaliculus (post-embryonic human) @@ -115742,8 +109345,7 @@ - wall of lacrimal duct (post-embryonic human) - FMA:85375 + wall of lacrimal duct (post-embryonic human) @@ -115762,8 +109364,7 @@ - colonic mucosa (post-embryonic human) - FMA:85388 + colonic mucosa (post-embryonic human) @@ -115782,8 +109383,7 @@ - submucosa (post-embryonic human) - FMA:85391 + submucosa (post-embryonic human) @@ -115802,8 +109402,7 @@ - submucosa (post-embryonic human) - FMA:85392 + submucosa (post-embryonic human) @@ -115822,8 +109421,7 @@ - submucosa of anal canal (post-embryonic human) - FMA:85399 + submucosa of anal canal (post-embryonic human) @@ -115842,8 +109440,7 @@ - muscle head (post-embryonic human) - FMA:85453 + muscle head (post-embryonic human) @@ -115862,8 +109459,7 @@ - digit (post-embryonic human) - FMA:85518 + digit (post-embryonic human) @@ -115882,8 +109478,7 @@ - definitive endoderm (post-embryonic human) - FMA:85519 + definitive endoderm (post-embryonic human) @@ -115902,8 +109497,7 @@ - inner cell mass derived hypoblast (post-embryonic human) - FMA:85520 + inner cell mass derived hypoblast (post-embryonic human) @@ -115922,8 +109516,7 @@ - notochord (post-embryonic human) - FMA:85521 + notochord (post-embryonic human) @@ -115942,8 +109535,7 @@ - somite (post-embryonic human) - FMA:85522 + somite (post-embryonic human) @@ -115962,8 +109554,7 @@ - extraembryonic structure (post-embryonic human) - FMA:85537 + extraembryonic structure (post-embryonic human) @@ -115982,8 +109573,7 @@ - decidua (post-embryonic human) - FMA:85538 + decidua (post-embryonic human) @@ -116002,8 +109592,7 @@ - exocrine system (post-embryonic human) - FMA:85539 + exocrine system (post-embryonic human) @@ -116022,8 +109611,7 @@ - embryonic post-anal tail (post-embryonic human) - FMA:85540 + embryonic post-anal tail (post-embryonic human) @@ -116042,8 +109630,7 @@ - umbilical cord (post-embryonic human) - FMA:85541 + umbilical cord (post-embryonic human) @@ -116062,8 +109649,7 @@ - subdivision of skeletal system (post-embryonic human) - FMA:85544 + subdivision of skeletal system (post-embryonic human) @@ -116082,8 +109668,7 @@ - tactile mechanoreceptor (post-embryonic human) - FMA:85595 + tactile mechanoreceptor (post-embryonic human) @@ -116102,8 +109687,7 @@ - baroreceptor (post-embryonic human) - FMA:85601 + baroreceptor (post-embryonic human) @@ -116122,8 +109706,7 @@ - chemoreceptor (post-embryonic human) - FMA:85604 + chemoreceptor (post-embryonic human) @@ -116142,8 +109725,7 @@ - primary lymphoid nodule of tonsil (post-embryonic human) - FMA:86018 + primary lymphoid nodule of tonsil (post-embryonic human) @@ -116162,8 +109744,7 @@ - skeletal muscle endomysium (post-embryonic human) - FMA:86022 + skeletal muscle endomysium (post-embryonic human) @@ -116182,8 +109763,7 @@ - foramen ovale of heart (post-embryonic human) - FMA:86043 + foramen ovale of heart (post-embryonic human) @@ -116202,8 +109782,7 @@ - pulmonary trunk (post-embryonic human) - FMA:8612 + pulmonary trunk (post-embryonic human) @@ -116222,8 +109801,7 @@ - organ subunit (post-embryonic human) - FMA:86140 + organ subunit (post-embryonic human) @@ -116242,8 +109820,7 @@ - zone of skin (post-embryonic human) - FMA:86166 + zone of skin (post-embryonic human) @@ -116262,8 +109839,7 @@ - venous blood vessel (post-embryonic human) - FMA:86188 + venous blood vessel (post-embryonic human) @@ -116282,8 +109858,7 @@ - submandibular duct (post-embryonic human) - FMA:86266 + submandibular duct (post-embryonic human) @@ -116302,8 +109877,7 @@ - mucous acinus (post-embryonic human) - FMA:86278 + mucous acinus (post-embryonic human) @@ -116322,8 +109896,7 @@ - serous acinus (post-embryonic human) - FMA:86279 + serous acinus (post-embryonic human) @@ -116342,8 +109915,7 @@ - gland (post-embryonic human) - FMA:86294 + gland (post-embryonic human) @@ -116362,8 +109934,7 @@ - interstitial tissue (post-embryonic human) - FMA:86301 + interstitial tissue (post-embryonic human) @@ -116382,8 +109953,7 @@ - stroma of thyroid gland (post-embryonic human) - FMA:86304 + stroma of thyroid gland (post-embryonic human) @@ -116402,8 +109972,7 @@ - epiphysis of third metatarsal bone (post-embryonic human) - FMA:86313 + epiphysis of third metatarsal bone (post-embryonic human) @@ -116422,8 +109991,7 @@ - epiphysis of fourth metatarsal bone (post-embryonic human) - FMA:86314 + epiphysis of fourth metatarsal bone (post-embryonic human) @@ -116442,8 +110010,7 @@ - epiphysis of fifth metatarsal bone (post-embryonic human) - FMA:86315 + epiphysis of fifth metatarsal bone (post-embryonic human) @@ -116462,8 +110029,7 @@ - epiphysis of third metacarpal bone (post-embryonic human) - FMA:86328 + epiphysis of third metacarpal bone (post-embryonic human) @@ -116482,8 +110048,7 @@ - epiphysis of fourth metacarpal bone (post-embryonic human) - FMA:86329 + epiphysis of fourth metacarpal bone (post-embryonic human) @@ -116502,8 +110067,7 @@ - epiphysis of fifth metacarpal bone (post-embryonic human) - FMA:86330 + epiphysis of fifth metacarpal bone (post-embryonic human) @@ -116522,8 +110086,7 @@ - macula densa (post-embryonic human) - FMA:86333 + macula densa (post-embryonic human) @@ -116542,8 +110105,7 @@ - meso-epithelium (post-embryonic human) - FMA:86452 + meso-epithelium (post-embryonic human) @@ -116562,8 +110124,7 @@ - septum (post-embryonic human) - FMA:86461 + septum (post-embryonic human) @@ -116582,8 +110143,7 @@ - corpus callosum (post-embryonic human) - FMA:86464 + corpus callosum (post-embryonic human) @@ -116602,8 +110162,7 @@ - decidua basalis (post-embryonic human) - FMA:86477 + decidua basalis (post-embryonic human) @@ -116622,8 +110181,7 @@ - decidua capsularis (post-embryonic human) - FMA:86478 + decidua capsularis (post-embryonic human) @@ -116642,8 +110200,7 @@ - decidua parietalis (post-embryonic human) - FMA:86479 + decidua parietalis (post-embryonic human) @@ -116662,8 +110219,7 @@ - ectocervix (post-embryonic human) - FMA:86484 + ectocervix (post-embryonic human) @@ -116682,8 +110238,7 @@ - endocervix (post-embryonic human) - FMA:86485 + endocervix (post-embryonic human) @@ -116702,8 +110257,7 @@ - endometrial stroma (post-embryonic human) - FMA:86487 + endometrial stroma (post-embryonic human) @@ -116722,8 +110276,7 @@ - endometrium glandular epithelium (post-embryonic human) - FMA:86488 + endometrium glandular epithelium (post-embryonic human) @@ -116742,8 +110295,7 @@ - basal layer of endometrium (post-embryonic human) - FMA:86492 + basal layer of endometrium (post-embryonic human) @@ -116762,8 +110314,7 @@ - outer layer of endometrium (post-embryonic human) - FMA:86493 + outer layer of endometrium (post-embryonic human) @@ -116782,8 +110333,7 @@ - inner cell mass (post-embryonic human) - FMA:86557 + inner cell mass (post-embryonic human) @@ -116802,8 +110352,7 @@ - extravillous trophoblast (post-embryonic human) - FMA:86561 + extravillous trophoblast (post-embryonic human) @@ -116822,8 +110371,7 @@ - mechanoreceptor (post-embryonic human) - FMA:86587 + mechanoreceptor (post-embryonic human) @@ -116842,8 +110390,7 @@ - primordium (post-embryonic human) - FMA:86589 + primordium (post-embryonic human) @@ -116862,8 +110409,7 @@ - mouth floor (post-embryonic human) - FMA:86592 + mouth floor (post-embryonic human) @@ -116882,8 +110428,7 @@ - lamina propria of bronchus (post-embryonic human) - FMA:86619 + lamina propria of bronchus (post-embryonic human) @@ -116902,8 +110447,7 @@ - epithelium of lobar bronchus (post-embryonic human) - FMA:86624 + epithelium of lobar bronchus (post-embryonic human) @@ -116922,8 +110466,7 @@ - epithelium of main bronchus (post-embryonic human) - FMA:86625 + epithelium of main bronchus (post-embryonic human) @@ -116942,8 +110485,7 @@ - epithelium of segmental bronchus (post-embryonic human) - FMA:86626 + epithelium of segmental bronchus (post-embryonic human) @@ -116962,8 +110504,7 @@ - neural crest (post-embryonic human) - FMA:86666 + neural crest (post-embryonic human) @@ -116982,8 +110523,7 @@ - abdomen musculature (post-embryonic human) - FMA:86917 + abdomen musculature (post-embryonic human) @@ -117002,8 +110542,7 @@ - musculature of body wall (post-embryonic human) - FMA:86931 + musculature of body wall (post-embryonic human) @@ -117022,8 +110561,7 @@ - ventral body wall (post-embryonic human) - FMA:86934 + ventral body wall (post-embryonic human) @@ -117042,8 +110580,7 @@ - vasculature of muscle organ (post-embryonic human) - FMA:87123 + vasculature of muscle organ (post-embryonic human) @@ -117062,8 +110599,7 @@ - myocardium of anterior wall of left ventricle (post-embryonic human) - FMA:87177 + myocardium of anterior wall of left ventricle (post-embryonic human) @@ -117082,8 +110618,7 @@ - yolk sac (post-embryonic human) - FMA:87180 + yolk sac (post-embryonic human) @@ -117102,8 +110637,7 @@ - descending thoracic aorta (post-embryonic human) - FMA:87217 + descending thoracic aorta (post-embryonic human) @@ -117122,8 +110656,7 @@ - segmental pulmonary artery (post-embryonic human) - FMA:8755 + segmental pulmonary artery (post-embryonic human) @@ -117142,8 +110675,7 @@ - pelvic girdle skeleton (post-embryonic human) - FMA:87592 + pelvic girdle skeleton (post-embryonic human) @@ -117162,8 +110694,7 @@ - skeleton of right pelvic girdle (post-embryonic human) - FMA:87593 + skeleton of right pelvic girdle (post-embryonic human) @@ -117182,8 +110713,7 @@ - skeleton of left pelvic girdle (post-embryonic human) - FMA:87594 + skeleton of left pelvic girdle (post-embryonic human) @@ -117202,8 +110732,7 @@ - external ectoderm (post-embryonic human) - FMA:87656 + external ectoderm (post-embryonic human) @@ -117222,8 +110751,7 @@ - neurectoderm (post-embryonic human) - FMA:87657 + neurectoderm (post-embryonic human) @@ -117242,8 +110770,7 @@ - thoracic vertebra (post-embryonic human) - FMA:9139 + thoracic vertebra (post-embryonic human) @@ -117262,8 +110789,7 @@ - thoracic region of vertebral column (post-embryonic human) - FMA:9140 + thoracic region of vertebral column (post-embryonic human) @@ -117282,8 +110808,7 @@ - thoracic vertebral foramen (post-embryonic human) - FMA:9143 + thoracic vertebral foramen (post-embryonic human) @@ -117302,8 +110827,7 @@ - thoracic vertebral arch (post-embryonic human) - FMA:9151 + thoracic vertebral arch (post-embryonic human) @@ -117322,8 +110846,7 @@ - prezygapophysis of thoracic vertebra (post-embryonic human) - FMA:9155 + prezygapophysis of thoracic vertebra (post-embryonic human) @@ -117342,8 +110865,7 @@ - postzygapophysis of thoracic vertebra (post-embryonic human) - FMA:9156 + postzygapophysis of thoracic vertebra (post-embryonic human) @@ -117362,8 +110884,7 @@ - thoracic vertebra 1 (post-embryonic human) - FMA:9165 + thoracic vertebra 1 (post-embryonic human) @@ -117382,8 +110903,7 @@ - thoracic vertebra 2 (post-embryonic human) - FMA:9187 + thoracic vertebra 2 (post-embryonic human) @@ -117402,8 +110922,7 @@ - thoracic vertebra 3 (post-embryonic human) - FMA:9209 + thoracic vertebra 3 (post-embryonic human) @@ -117422,8 +110941,7 @@ - crista terminalis (post-embryonic human) - FMA:9236 + crista terminalis (post-embryonic human) @@ -117442,8 +110960,7 @@ - valve of inferior vena cava (post-embryonic human) - FMA:9240 + valve of inferior vena cava (post-embryonic human) @@ -117462,8 +110979,7 @@ - coronary sinus valve (post-embryonic human) - FMA:9242 + coronary sinus valve (post-embryonic human) @@ -117482,8 +110998,7 @@ - fossa ovalis of heart (post-embryonic human) - FMA:9246 + fossa ovalis of heart (post-embryonic human) @@ -117502,8 +111017,7 @@ - thoracic vertebra 4 (post-embryonic human) - FMA:9248 + thoracic vertebra 4 (post-embryonic human) @@ -117522,8 +111036,7 @@ - cavity of right ventricle (post-embryonic human) - FMA:9291 + cavity of right ventricle (post-embryonic human) @@ -117542,8 +111055,7 @@ - chorda tendinea of right ventricle (post-embryonic human) - FMA:9300 + chorda tendinea of right ventricle (post-embryonic human) @@ -117562,8 +111074,7 @@ - anatomical conduit space (post-embryonic human) - FMA:9338 + anatomical conduit space (post-embryonic human) @@ -117582,8 +111093,7 @@ - chorda tendinea of left ventricle (post-embryonic human) - FMA:9349 + chorda tendinea of left ventricle (post-embryonic human) @@ -117602,8 +111112,7 @@ - papillary muscle of left ventricle (post-embryonic human) - FMA:9352 + papillary muscle of left ventricle (post-embryonic human) @@ -117622,8 +111131,7 @@ - cervical part of esophagus (post-embryonic human) - FMA:9395 + cervical part of esophagus (post-embryonic human) @@ -117642,8 +111150,7 @@ - thoracic part of esophagus (post-embryonic human) - FMA:9396 + thoracic part of esophagus (post-embryonic human) @@ -117662,8 +111169,7 @@ - abdominal part of esophagus (post-embryonic human) - FMA:9397 + abdominal part of esophagus (post-embryonic human) @@ -117682,8 +111188,7 @@ - lumen of esophagus (post-embryonic human) - FMA:9398 + lumen of esophagus (post-embryonic human) @@ -117702,8 +111207,7 @@ - submucosal esophageal gland (post-embryonic human) - FMA:9404 + submucosal esophageal gland (post-embryonic human) @@ -117722,8 +111226,7 @@ - esophagogastric junction (post-embryonic human) - FMA:9434 + esophagogastric junction (post-embryonic human) @@ -117742,8 +111245,7 @@ - epicardium (post-embryonic human) - FMA:9461 + epicardium (post-embryonic human) @@ -117762,8 +111264,7 @@ - myocardium (post-embryonic human) - FMA:9462 + myocardium (post-embryonic human) @@ -117782,8 +111283,7 @@ - cavity of cardiac chamber (post-embryonic human) - FMA:9464 + cavity of cardiac chamber (post-embryonic human) @@ -117802,8 +111302,7 @@ - cavity of left atrium (post-embryonic human) - FMA:9465 + cavity of left atrium (post-embryonic human) @@ -117822,8 +111321,7 @@ - cavity of left ventricle (post-embryonic human) - FMA:9466 + cavity of left ventricle (post-embryonic human) @@ -117842,8 +111340,7 @@ - outflow part of left ventricle (post-embryonic human) - FMA:9473 + outflow part of left ventricle (post-embryonic human) @@ -117862,8 +111359,7 @@ - conducting system of heart (post-embryonic human) - FMA:9476 + conducting system of heart (post-embryonic human) @@ -117882,8 +111378,7 @@ - sinoatrial node (post-embryonic human) - FMA:9477 + sinoatrial node (post-embryonic human) @@ -117902,8 +111397,7 @@ - atrioventricular node (post-embryonic human) - FMA:9478 + atrioventricular node (post-embryonic human) @@ -117922,8 +111416,7 @@ - internodal tract (post-embryonic human) - FMA:9479 + internodal tract (post-embryonic human) @@ -117942,8 +111435,7 @@ - anterior internodal tract (post-embryonic human) - FMA:9480 + anterior internodal tract (post-embryonic human) @@ -117962,8 +111454,7 @@ - middle internodal tract (post-embryonic human) - FMA:9482 + middle internodal tract (post-embryonic human) @@ -117982,8 +111473,7 @@ - posterior internodal tract (post-embryonic human) - FMA:9483 + posterior internodal tract (post-embryonic human) @@ -118002,8 +111492,7 @@ - bundle of His (post-embryonic human) - FMA:9484 + bundle of His (post-embryonic human) @@ -118022,8 +111511,7 @@ - right bundle branch (post-embryonic human) - FMA:9486 + right bundle branch (post-embryonic human) @@ -118042,8 +111530,7 @@ - left bundle branch (post-embryonic human) - FMA:9487 + left bundle branch (post-embryonic human) @@ -118062,8 +111549,7 @@ - cardiac Purkinje fiber (post-embryonic human) - FMA:9492 + cardiac Purkinje fiber (post-embryonic human) @@ -118082,8 +111568,7 @@ - cardiac skeleton (post-embryonic human) - FMA:9496 + cardiac skeleton (post-embryonic human) @@ -118102,8 +111587,7 @@ - fibrous ring of heart (post-embryonic human) - FMA:9497 + fibrous ring of heart (post-embryonic human) @@ -118122,8 +111606,7 @@ - mitral valve anulus (post-embryonic human) - FMA:9498 + mitral valve anulus (post-embryonic human) @@ -118142,8 +111625,7 @@ - tricuspid valve anulus (post-embryonic human) - FMA:9500 + tricuspid valve anulus (post-embryonic human) @@ -118162,8 +111644,7 @@ - aortic valve anulus (post-embryonic human) - FMA:9502 + aortic valve anulus (post-embryonic human) @@ -118182,8 +111663,7 @@ - pulmonary valve anulus (post-embryonic human) - FMA:9503 + pulmonary valve anulus (post-embryonic human) @@ -118202,8 +111682,7 @@ - wall of right ventricle (post-embryonic human) - FMA:9533 + wall of right ventricle (post-embryonic human) @@ -118222,8 +111701,7 @@ - right ventricle myocardium (post-embryonic human) - FMA:9535 + right ventricle myocardium (post-embryonic human) @@ -118242,8 +111720,7 @@ - endocardium of right ventricle (post-embryonic human) - FMA:9536 + endocardium of right ventricle (post-embryonic human) @@ -118262,8 +111739,7 @@ - outflow part of right atrium (post-embryonic human) - FMA:9550 + outflow part of right atrium (post-embryonic human) @@ -118282,8 +111758,7 @@ - outflow part of left atrium (post-embryonic human) - FMA:9551 + outflow part of left atrium (post-embryonic human) @@ -118302,8 +111777,7 @@ - inflow tract of right ventricle (post-embryonic human) - FMA:9552 + inflow tract of right ventricle (post-embryonic human) @@ -118322,8 +111796,7 @@ - anterior wall of right ventricle (post-embryonic human) - FMA:9553 + anterior wall of right ventricle (post-embryonic human) @@ -118342,8 +111815,7 @@ - wall of left ventricle (post-embryonic human) - FMA:9556 + wall of left ventricle (post-embryonic human) @@ -118362,8 +111834,7 @@ - left ventricle myocardium (post-embryonic human) - FMA:9558 + left ventricle myocardium (post-embryonic human) @@ -118382,8 +111853,7 @@ - endocardium of left ventricle (post-embryonic human) - FMA:9559 + endocardium of left ventricle (post-embryonic human) @@ -118402,8 +111872,7 @@ - anterior wall of left ventricle (post-embryonic human) - FMA:9560 + anterior wall of left ventricle (post-embryonic human) @@ -118422,8 +111891,7 @@ - inflow tract of left ventricle (post-embryonic human) - FMA:9564 + inflow tract of left ventricle (post-embryonic human) @@ -118442,8 +111910,7 @@ - chest (post-embryonic human) - FMA:9576 + chest (post-embryonic human) @@ -118462,8 +111929,7 @@ - abdomen (post-embryonic human) - FMA:9577 + abdomen (post-embryonic human) @@ -118482,8 +111948,7 @@ - pelvic region of trunk (post-embryonic human) - FMA:9578 + pelvic region of trunk (post-embryonic human) @@ -118502,8 +111967,7 @@ - perineum (post-embryonic human) - FMA:9579 + perineum (post-embryonic human) @@ -118522,8 +111986,7 @@ - greater omentum (post-embryonic human) - FMA:9580 + greater omentum (post-embryonic human) @@ -118542,8 +112005,7 @@ - serous membrane (post-embryonic human) - FMA:9581 + serous membrane (post-embryonic human) @@ -118562,8 +112024,7 @@ - serous pericardium (post-embryonic human) - FMA:9582 + serous pericardium (post-embryonic human) @@ -118582,8 +112043,7 @@ - pleura (post-embryonic human) - FMA:9583 + pleura (post-embryonic human) @@ -118602,8 +112062,7 @@ - peritoneum (post-embryonic human) - FMA:9584 + peritoneum (post-embryonic human) @@ -118622,8 +112081,7 @@ - fibrous pericardium (post-embryonic human) - FMA:9586 + fibrous pericardium (post-embryonic human) @@ -118642,8 +112100,7 @@ - meninx (post-embryonic human) - FMA:9589 + meninx (post-embryonic human) @@ -118662,8 +112119,7 @@ - pia mater (post-embryonic human) - FMA:9590 + pia mater (post-embryonic human) @@ -118682,8 +112138,7 @@ - arachnoid mater (post-embryonic human) - FMA:9591 + arachnoid mater (post-embryonic human) @@ -118702,8 +112157,7 @@ - dura mater (post-embryonic human) - FMA:9592 + dura mater (post-embryonic human) @@ -118722,8 +112176,7 @@ - tympanic membrane (post-embryonic human) - FMA:9595 + tympanic membrane (post-embryonic human) @@ -118742,8 +112195,7 @@ - exocrine gland (post-embryonic human) - FMA:9596 + exocrine gland (post-embryonic human) @@ -118762,8 +112214,7 @@ - saliva-secreting gland (post-embryonic human) - FMA:9597 + saliva-secreting gland (post-embryonic human) @@ -118782,8 +112233,7 @@ - major vestibular gland (post-embryonic human) - FMA:9598 + major vestibular gland (post-embryonic human) @@ -118802,8 +112252,7 @@ - bulbo-urethral gland (post-embryonic human) - FMA:9599 + bulbo-urethral gland (post-embryonic human) @@ -118822,8 +112271,7 @@ - prostate gland (post-embryonic human) - FMA:9600 + prostate gland (post-embryonic human) @@ -118842,8 +112290,7 @@ - breast (post-embryonic human) - FMA:9601 + breast (post-embryonic human) @@ -118862,8 +112309,7 @@ - endocrine gland (post-embryonic human) - FMA:9602 + endocrine gland (post-embryonic human) @@ -118882,8 +112328,7 @@ - thyroid gland (post-embryonic human) - FMA:9603 + thyroid gland (post-embryonic human) @@ -118902,8 +112347,7 @@ - adrenal gland (post-embryonic human) - FMA:9604 + adrenal gland (post-embryonic human) @@ -118922,8 +112366,7 @@ - thymus (post-embryonic human) - FMA:9607 + thymus (post-embryonic human) @@ -118942,8 +112385,7 @@ - bone marrow (post-embryonic human) - FMA:9608 + bone marrow (post-embryonic human) @@ -118962,8 +112404,7 @@ - tonsil (post-embryonic human) - FMA:9609 + tonsil (post-embryonic human) @@ -118982,8 +112423,7 @@ - palatine tonsil (post-embryonic human) - FMA:9610 + palatine tonsil (post-embryonic human) @@ -119002,8 +112442,7 @@ - femur (post-embryonic human) - FMA:9611 + femur (post-embryonic human) @@ -119022,8 +112461,7 @@ - metacarpal bone (post-embryonic human) - FMA:9612 + metacarpal bone (post-embryonic human) @@ -119042,8 +112480,7 @@ - tetrapod parietal bone (post-embryonic human) - FMA:9613 + tetrapod parietal bone (post-embryonic human) @@ -119062,8 +112499,7 @@ - cricoid cartilage (post-embryonic human) - FMA:9615 + cricoid cartilage (post-embryonic human) @@ -119082,8 +112518,7 @@ - cranial muscle (post-embryonic human) - FMA:9616 + cranial muscle (post-embryonic human) @@ -119102,8 +112537,7 @@ - muscle of neck (post-embryonic human) - FMA:9617 + muscle of neck (post-embryonic human) @@ -119122,8 +112556,7 @@ - chest muscle (post-embryonic human) - FMA:9619 + chest muscle (post-embryonic human) @@ -119142,8 +112575,7 @@ - muscle of abdomen (post-embryonic human) - FMA:9620 + muscle of abdomen (post-embryonic human) @@ -119162,8 +112594,7 @@ - pectoral complex muscle (post-embryonic human) - FMA:9621 + pectoral complex muscle (post-embryonic human) @@ -119182,8 +112613,7 @@ - pelvic complex muscle (post-embryonic human) - FMA:9622 + pelvic complex muscle (post-embryonic human) @@ -119202,8 +112632,7 @@ - perineal muscle (post-embryonic human) - FMA:9623 + perineal muscle (post-embryonic human) @@ -119222,8 +112651,7 @@ - occipitofrontalis muscle (post-embryonic human) - FMA:9624 + occipitofrontalis muscle (post-embryonic human) @@ -119242,8 +112670,7 @@ - stylohyoid muscle (post-embryonic human) - FMA:9625 + stylohyoid muscle (post-embryonic human) @@ -119262,8 +112689,7 @@ - trapezius muscle (post-embryonic human) - FMA:9626 + trapezius muscle (post-embryonic human) @@ -119282,8 +112708,7 @@ - pectoralis major (post-embryonic human) - FMA:9627 + pectoralis major (post-embryonic human) @@ -119302,8 +112727,7 @@ - rectus abdominis muscle (post-embryonic human) - FMA:9628 + rectus abdominis muscle (post-embryonic human) @@ -119322,8 +112746,7 @@ - supraspinatus muscle (post-embryonic human) - FMA:9629 + supraspinatus muscle (post-embryonic human) @@ -119342,8 +112765,7 @@ - superficial fascia (post-embryonic human) - FMA:9630 + superficial fascia (post-embryonic human) @@ -119362,8 +112784,7 @@ - tissue (post-embryonic human) - FMA:9637 + tissue (post-embryonic human) @@ -119382,8 +112803,7 @@ - epithelium (post-embryonic human) - FMA:9639 + epithelium (post-embryonic human) @@ -119402,8 +112822,7 @@ - connective tissue (post-embryonic human) - FMA:9640 + connective tissue (post-embryonic human) @@ -119422,8 +112841,7 @@ - muscle tissue (post-embryonic human) - FMA:9641 + muscle tissue (post-embryonic human) @@ -119442,8 +112860,7 @@ - neural tissue (post-embryonic human) - FMA:9642 + neural tissue (post-embryonic human) @@ -119462,8 +112879,7 @@ - cranial cavity (post-embryonic human) - FMA:9644 + cranial cavity (post-embryonic human) @@ -119482,8 +112898,7 @@ - anatomical line (post-embryonic human) - FMA:9657 + anatomical line (post-embryonic human) @@ -119502,8 +112917,7 @@ - anatomical point (post-embryonic human) - FMA:9658 + anatomical point (post-embryonic human) @@ -119522,8 +112936,7 @@ - forelimb zeugopod (post-embryonic human) - FMA:9663 + forelimb zeugopod (post-embryonic human) @@ -119542,8 +112955,7 @@ - pes (post-embryonic human) - FMA:9664 + pes (post-embryonic human) @@ -119562,8 +112974,7 @@ - tarsal region (post-embryonic human) - FMA:9665 + tarsal region (post-embryonic human) @@ -119582,8 +112993,7 @@ - manual digit (post-embryonic human) - FMA:9666 + manual digit (post-embryonic human) @@ -119602,8 +113012,7 @@ - hematopoietic system (post-embryonic human) - FMA:9667 + hematopoietic system (post-embryonic human) @@ -119622,8 +113031,7 @@ - endocrine system (post-embryonic human) - FMA:9668 + endocrine system (post-embryonic human) @@ -119642,8 +113050,7 @@ - organism substance (post-embryonic human) - FMA:9669 + organism substance (post-embryonic human) @@ -119662,8 +113069,7 @@ - blood (post-embryonic human) - FMA:9670 + blood (post-embryonic human) @@ -119682,8 +113088,7 @@ - lymph (post-embryonic human) - FMA:9671 + lymph (post-embryonic human) @@ -119702,8 +113107,7 @@ - interstitial fluid (post-embryonic human) - FMA:9673 + interstitial fluid (post-embryonic human) @@ -119722,8 +113126,7 @@ - excreta (post-embryonic human) - FMA:9674 + excreta (post-embryonic human) @@ -119742,8 +113145,7 @@ - secretion of exocrine gland (post-embryonic human) - FMA:9675 + secretion of exocrine gland (post-embryonic human) @@ -119762,8 +113164,7 @@ - vertebral canal (post-embryonic human) - FMA:9680 + vertebral canal (post-embryonic human) @@ -119782,8 +113183,7 @@ - anterior cranial fossa (post-embryonic human) - FMA:9682 + anterior cranial fossa (post-embryonic human) @@ -119802,8 +113202,7 @@ - serous sac (post-embryonic human) - FMA:9689 + serous sac (post-embryonic human) @@ -119822,8 +113221,7 @@ - pleural sac (post-embryonic human) - FMA:9690 + pleural sac (post-embryonic human) @@ -119842,8 +113240,7 @@ - greater sac cavity (post-embryonic human) - FMA:9691 + greater sac cavity (post-embryonic human) @@ -119862,8 +113259,7 @@ - synovial bursa (post-embryonic human) - FMA:9692 + synovial bursa (post-embryonic human) @@ -119882,8 +113278,7 @@ - synovial cavity of hip joint (post-embryonic human) - FMA:9701 + synovial cavity of hip joint (post-embryonic human) @@ -119902,8 +113297,7 @@ - lesser sac cavity (post-embryonic human) - FMA:9702 + lesser sac cavity (post-embryonic human) @@ -119922,8 +113316,7 @@ - nasolacrimal duct (post-embryonic human) - FMA:9703 + nasolacrimal duct (post-embryonic human) @@ -119942,8 +113335,7 @@ - ureter (post-embryonic human) - FMA:9704 + ureter (post-embryonic human) @@ -119962,8 +113354,7 @@ - pharyngotympanic tube (post-embryonic human) - FMA:9705 + pharyngotympanic tube (post-embryonic human) @@ -119982,8 +113373,7 @@ - bile duct (post-embryonic human) - FMA:9706 + bile duct (post-embryonic human) @@ -120002,8 +113392,7 @@ - penis (post-embryonic human) - FMA:9707 + penis (post-embryonic human) @@ -120022,8 +113411,7 @@ - talus (post-embryonic human) - FMA:9708 + talus (post-embryonic human) @@ -120042,8 +113430,7 @@ - vomer (post-embryonic human) - FMA:9710 + vomer (post-embryonic human) @@ -120062,8 +113449,7 @@ - maxilla (post-embryonic human) - FMA:9711 + maxilla (post-embryonic human) @@ -120082,8 +113468,7 @@ - manus (post-embryonic human) - FMA:9712 + manus (post-embryonic human) @@ -120102,8 +113487,7 @@ - lesser omentum (post-embryonic human) - FMA:9715 + lesser omentum (post-embryonic human) @@ -120122,8 +113506,7 @@ - muscle belly (post-embryonic human) - FMA:9719 + muscle belly (post-embryonic human) @@ -120142,8 +113525,7 @@ - tendon (post-embryonic human) - FMA:9721 + tendon (post-embryonic human) @@ -120162,8 +113544,7 @@ - aponeurosis (post-embryonic human) - FMA:9722 + aponeurosis (post-embryonic human) @@ -120182,8 +113563,7 @@ - epimysium (post-embryonic human) - FMA:9726 + epimysium (post-embryonic human) @@ -120202,8 +113582,7 @@ - perimysium (post-embryonic human) - FMA:9728 + perimysium (post-embryonic human) @@ -120222,8 +113601,7 @@ - endomysium (post-embryonic human) - FMA:9729 + endomysium (post-embryonic human) @@ -120242,8 +113620,7 @@ - parietal pleura (post-embryonic human) - FMA:9733 + parietal pleura (post-embryonic human) @@ -120262,8 +113639,7 @@ - visceral pleura (post-embryonic human) - FMA:9734 + visceral pleura (post-embryonic human) @@ -120282,8 +113658,7 @@ - mediastinal pleura (post-embryonic human) - FMA:9736 + mediastinal pleura (post-embryonic human) @@ -120302,8 +113677,7 @@ - pelvic cavity (post-embryonic human) - FMA:9738 + pelvic cavity (post-embryonic human) @@ -120322,8 +113696,7 @@ - pleural cavity (post-embryonic human) - FMA:9740 + pleural cavity (post-embryonic human) @@ -120342,8 +113715,7 @@ - left lung hilus (post-embryonic human) - FMA:9751 + left lung hilus (post-embryonic human) @@ -120362,8 +113734,7 @@ - external intercostal muscle (post-embryonic human) - FMA:9756 + external intercostal muscle (post-embryonic human) @@ -120382,8 +113753,7 @@ - internal intercostal muscle (post-embryonic human) - FMA:9757 + internal intercostal muscle (post-embryonic human) @@ -120402,8 +113772,7 @@ - innermost intercostal muscle (post-embryonic human) - FMA:9758 + innermost intercostal muscle (post-embryonic human) @@ -120422,8 +113791,7 @@ - subcostal muscle (post-embryonic human) - FMA:9759 + subcostal muscle (post-embryonic human) @@ -120442,8 +113810,7 @@ - transversus thoracis (post-embryonic human) - FMA:9760 + transversus thoracis (post-embryonic human) @@ -120462,8 +113829,7 @@ - immune system (post-embryonic human) - FMA:9825 + immune system (post-embryonic human) @@ -120482,8 +113848,7 @@ - mediastinum (post-embryonic human) - FMA:9826 + mediastinum (post-embryonic human) @@ -120502,8 +113867,7 @@ - superior mediastinum (post-embryonic human) - FMA:9827 + superior mediastinum (post-embryonic human) @@ -120522,8 +113886,7 @@ - inferior mediastinum (post-embryonic human) - FMA:9828 + inferior mediastinum (post-embryonic human) @@ -120542,8 +113905,7 @@ - anterior mediastinum (post-embryonic human) - FMA:9838 + anterior mediastinum (post-embryonic human) @@ -120562,8 +113924,7 @@ - middle mediastinum (post-embryonic human) - FMA:9839 + middle mediastinum (post-embryonic human) @@ -120582,8 +113943,7 @@ - posterior mediastinum (post-embryonic human) - FMA:9840 + posterior mediastinum (post-embryonic human) @@ -120602,8 +113962,7 @@ - synovial membrane of synovial joint (post-embryonic human) - FMA:9865 + synovial membrane of synovial joint (post-embryonic human) @@ -120622,8 +113981,7 @@ - pericardial sac (post-embryonic human) - FMA:9868 + pericardial sac (post-embryonic human) @@ -120642,8 +114000,7 @@ - pericardium (post-embryonic human) - FMA:9869 + pericardium (post-embryonic human) @@ -120662,8 +114019,7 @@ - parietal serous pericardium (post-embryonic human) - FMA:9870 + parietal serous pericardium (post-embryonic human) @@ -120682,8 +114038,7 @@ - epicardial fat (post-embryonic human) - FMA:9871 + epicardial fat (post-embryonic human) @@ -120702,8 +114057,7 @@ - pericardial fluid (post-embryonic human) - FMA:9887 + pericardial fluid (post-embryonic human) @@ -120722,8 +114076,7 @@ - peripheral nervous system (post-embryonic human) - FMA:9903 + peripheral nervous system (post-embryonic human) @@ -120742,8 +114095,7 @@ - somatic nervous system (post-embryonic human) - FMA:9904 + somatic nervous system (post-embryonic human) @@ -120762,8 +114114,7 @@ - sympathetic nervous system (post-embryonic human) - FMA:9906 + sympathetic nervous system (post-embryonic human) @@ -120782,8 +114133,7 @@ - parasympathetic nervous system (post-embryonic human) - FMA:9907 + parasympathetic nervous system (post-embryonic human) @@ -120802,8 +114152,7 @@ - peritoneal sac (post-embryonic human) - FMA:9908 + peritoneal sac (post-embryonic human) @@ -120822,8 +114171,7 @@ - clitoris (post-embryonic human) - FMA:9909 + clitoris (post-embryonic human) @@ -120842,8 +114190,7 @@ - transverse process of cervical vertebra (post-embryonic human) - FMA:9913 + transverse process of cervical vertebra (post-embryonic human) @@ -120862,8 +114209,7 @@ - vertebra (post-embryonic human) - FMA:9914 + vertebra (post-embryonic human) @@ -120882,8 +114228,7 @@ - cervical vertebra (post-embryonic human) - FMA:9915 + cervical vertebra (post-embryonic human) @@ -120902,8 +114247,7 @@ - epiphyseal line (post-embryonic human) - FMA:9918 + epiphyseal line (post-embryonic human) @@ -120922,8 +114266,7 @@ - lumbar vertebra (post-embryonic human) - FMA:9921 + lumbar vertebra (post-embryonic human) @@ -120942,8 +114285,7 @@ - thoracic vertebra 5 (post-embryonic human) - FMA:9922 + thoracic vertebra 5 (post-embryonic human) @@ -120962,8 +114304,7 @@ - thoracic vertebra 6 (post-embryonic human) - FMA:9945 + thoracic vertebra 6 (post-embryonic human) @@ -120982,8 +114323,7 @@ - thoracic vertebra 7 (post-embryonic human) - FMA:9968 + thoracic vertebra 7 (post-embryonic human) @@ -121002,34 +114342,7 @@ - thoracic vertebra 8 (post-embryonic human) - FMA:9991 - - - - - - - - - - - - - - - - - - - - - - - - - FMA:ENTITY - FMA entity + thoracic vertebra 8 (post-embryonic human) @@ -121280,12 +114593,6 @@ - - - - - - @@ -121334,12 +114641,6 @@ - - - - - - @@ -121964,12 +115265,6 @@ - - - - - - @@ -122744,12 +116039,6 @@ - - - - - - @@ -125972,12 +119261,6 @@ - - - - - - @@ -129062,12 +122345,6 @@ - - - - - - @@ -131432,12 +124709,6 @@ - - - - - - @@ -134156,12 +127427,6 @@ - - - - - - @@ -134414,12 +127679,6 @@ - - - - - - @@ -134918,12 +128177,6 @@ - - - - - - @@ -135320,12 +128573,6 @@ - - - - - - @@ -139766,12 +133013,6 @@ - - - - - - @@ -142154,12 +135395,6 @@ - - - - - - @@ -142976,18 +136211,6 @@ - - - - - - - - - - - - @@ -143450,12 +136673,6 @@ - - - - - - @@ -145052,12 +138269,6 @@ - - - - - - @@ -145340,12 +138551,6 @@ - - - - - - @@ -145436,12 +138641,6 @@ - - - - - - @@ -145712,12 +138911,6 @@ - - - - - - @@ -146024,12 +139217,6 @@ - - - - - - @@ -146168,12 +139355,6 @@ - - - - - - @@ -146186,18 +139367,6 @@ - - - - - - - - - - - - @@ -147524,12 +140693,6 @@ - - - - - - @@ -149432,12 +142595,6 @@ - - - - - - @@ -149894,12 +143051,6 @@ - - - - - - @@ -150542,18 +143693,6 @@ - - - - - - - - - - - - @@ -153374,12 +146513,6 @@ - - - - - - @@ -153920,12 +147053,6 @@ - - - - - - @@ -155210,12 +148337,6 @@ - - - - - - @@ -156842,12 +149963,6 @@ - - - - - - @@ -156869,9 +149984,35 @@ + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/ontology/bridge/uberon-bridge-to-go.obo b/src/ontology/bridge/uberon-bridge-to-go.obo deleted file mode 100644 index 24f5f610fd..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-go.obo +++ /dev/null @@ -1,121 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-go -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: GO:0043209 ! -property_value: IAO:0000589 "entire myelin sheath (GO)" xsd:string -equivalent_to: UBERON:0000347 ! entire myelin sheath - -[Term] -id: GO:0097099 ! -property_value: IAO:0000589 "albumen (GO)" xsd:string -equivalent_to: UBERON:0008944 ! albumen - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-go.owl b/src/ontology/bridge/uberon-bridge-to-go.owl index f6d82e9b20..9896585bfc 100644 --- a/src/ontology/bridge/uberon-bridge-to-go.owl +++ b/src/ontology/bridge/uberon-bridge-to-go.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - + diff --git a/src/ontology/bridge/uberon-bridge-to-hao.obo b/src/ontology/bridge/uberon-bridge-to-hao.obo deleted file mode 100644 index 75dacf1a7d..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-hao.obo +++ /dev/null @@ -1,583 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-hao -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: HAO:0000217 ! -property_value: IAO:0000589 "compound eye (hymenoptera)" xsd:string -intersection_of: UBERON:0000018 ! compound eye -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000930 ! -property_value: IAO:0000589 "sense organ (hymenoptera)" xsd:string -intersection_of: UBERON:0000020 ! sense organ -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000144 ! -property_value: IAO:0000589 "appendage (hymenoptera)" xsd:string -intersection_of: UBERON:0000026 ! appendage -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000397 ! -property_value: IAO:0000589 "head (hymenoptera)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000003 ! -property_value: IAO:0000589 "anatomical structure (hymenoptera)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000505 ! -property_value: IAO:0000589 "male reproductive system (hymenoptera)" xsd:string -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000669 ! -property_value: IAO:0000589 "oral cavity (hymenoptera)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000004 ! -property_value: IAO:0000589 "organism substance (hymenoptera)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000005 ! -property_value: IAO:0000589 "anatomical space (hymenoptera)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000006 ! -property_value: IAO:0000589 "material anatomical entity (hymenoptera)" xsd:string -intersection_of: UBERON:0000465 ! material anatomical entity -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000007 ! -property_value: IAO:0000589 "immaterial anatomical entity (hymenoptera)" xsd:string -intersection_of: UBERON:0000466 ! immaterial anatomical entity -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000011 ! -property_value: IAO:0000589 "anatomical system (hymenoptera)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000012 ! -property_value: IAO:0000589 "multicellular organism (hymenoptera)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000019 ! -property_value: IAO:0000589 "compound organ component (hymenoptera)" xsd:string -intersection_of: UBERON:0000471 ! compound organ component -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000021 ! -property_value: IAO:0000589 "simple organ (hymenoptera)" xsd:string -intersection_of: UBERON:0000472 ! simple organ -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0001007 ! -property_value: IAO:0000589 "testis (hymenoptera)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000324 ! -property_value: IAO:0000589 "female reproductive system (hymenoptera)" xsd:string -intersection_of: UBERON:0000474 ! female reproductive system -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000032 ! -property_value: IAO:0000589 "organism subdivision (hymenoptera)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000040 ! -property_value: IAO:0000589 "acellular anatomical structure (hymenoptera)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000042 ! -property_value: IAO:0000589 "extraembryonic structure (hymenoptera)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000043 ! -property_value: IAO:0000589 "tissue (hymenoptera)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000054 ! -property_value: IAO:0000589 "anatomical group (hymenoptera)" xsd:string -intersection_of: UBERON:0000480 ! anatomical group -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000055 ! -property_value: IAO:0000589 "multi-tissue structure (hymenoptera)" xsd:string -intersection_of: UBERON:0000481 ! multi-tissue structure -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000065 ! -property_value: IAO:0000589 "basal lamina of epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000066 ! -property_value: IAO:0000589 "epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000067 ! -property_value: IAO:0000589 "simple cuboidal epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0000484 ! simple cuboidal epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000068 ! -property_value: IAO:0000589 "simple columnar epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0000485 ! simple columnar epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000069 ! -property_value: IAO:0000589 "multilaminar epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0000486 ! multilaminar epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000070 ! -property_value: IAO:0000589 "simple squamous epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0000487 ! simple squamous epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000071 ! -property_value: IAO:0000589 "atypical epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0000488 ! atypical epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000072 ! -property_value: IAO:0000589 "cavitated compound organ (hymenoptera)" xsd:string -intersection_of: UBERON:0000489 ! cavitated compound organ -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000073 ! -property_value: IAO:0000589 "unilaminar epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0000490 ! unilaminar epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000074 ! -property_value: IAO:0000589 "solid compound organ (hymenoptera)" xsd:string -intersection_of: UBERON:0000491 ! solid compound organ -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000929 ! -property_value: IAO:0000589 "organismal segment (hymenoptera)" xsd:string -intersection_of: UBERON:0000914 ! organismal segment -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000666 ! -property_value: IAO:0000589 "ommatidium (hymenoptera)" xsd:string -intersection_of: UBERON:0000971 ! ommatidium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000101 ! -property_value: IAO:0000589 "antenna (hymenoptera)" xsd:string -intersection_of: UBERON:0000972 ! antenna -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0001089 ! -property_value: IAO:0000589 "imaginal disc-derived wing (hymenoptera)" xsd:string -intersection_of: UBERON:0000984 ! imaginal disc-derived wing -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000374 ! -property_value: IAO:0000589 "reproductive system (hymenoptera)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000895 ! -property_value: IAO:0000589 "reproductive system (hymenoptera)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000379 ! -property_value: IAO:0000589 "gonad (hymenoptera)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000945 ! -property_value: IAO:0000589 "spermathecum (hymenoptera)" xsd:string -intersection_of: UBERON:0000994 ! spermathecum -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000240 ! -property_value: IAO:0000589 "chitin-based cuticle (hymenoptera)" xsd:string -intersection_of: UBERON:0001001 ! chitin-based cuticle -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000000 ! -property_value: IAO:0000589 "anatomical entity (hymenoptera)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000316 ! -property_value: IAO:0000589 "face (hymenoptera)" xsd:string -intersection_of: UBERON:0001456 ! face -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000421 ! -property_value: IAO:0000589 "integumental system (hymenoptera)" xsd:string -intersection_of: UBERON:0002416 ! integumental system -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000375 ! -property_value: IAO:0000589 "gland (hymenoptera)" xsd:string -intersection_of: UBERON:0002530 ! gland -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000933 ! -property_value: IAO:0000589 "arthropod sensillum (hymenoptera)" xsd:string -intersection_of: UBERON:0002536 ! arthropod sensillum -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000907 ! -property_value: IAO:0000589 "scale (hymenoptera)" xsd:string -intersection_of: UBERON:0002542 ! scale -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000459 ! -property_value: IAO:0000589 "larva (hymenoptera)" xsd:string -intersection_of: UBERON:0002548 ! larva -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000028 ! -property_value: IAO:0000589 "female organism (hymenoptera)" xsd:string -intersection_of: UBERON:0003100 ! female organism -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000027 ! -property_value: IAO:0000589 "male organism (hymenoptera)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000024 ! -property_value: IAO:0000589 "compound organ (hymenoptera)" xsd:string -intersection_of: UBERON:0003103 ! compound organ -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000956 ! -property_value: IAO:0000589 "arthropod sternum (hymenoptera)" xsd:string -intersection_of: UBERON:0003130 ! arthropod sternum -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0001017 ! -property_value: IAO:0000589 "arthropod tibia (hymenoptera)" xsd:string -intersection_of: UBERON:0003131 ! arthropod tibia -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000812 ! -property_value: IAO:0000589 "prepupa (hymenoptera)" xsd:string -intersection_of: UBERON:0003142 ! prepupa -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000886 ! -property_value: IAO:0000589 "pupa (hymenoptera)" xsd:string -intersection_of: UBERON:0003143 ! pupa -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000398 ! -property_value: IAO:0000589 "insect head capsule (hymenoptera)" xsd:string -intersection_of: UBERON:0003153 ! insect head capsule -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000658 ! -property_value: IAO:0000589 "arthropod occiput (hymenoptera)" xsd:string -intersection_of: UBERON:0003155 ! arthropod occiput -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000661 ! -property_value: IAO:0000589 "dorsal ocellus (hymenoptera)" xsd:string -intersection_of: UBERON:0003161 ! dorsal ocellus -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000481 ! -property_value: IAO:0000589 "lateral ocellus (hymenoptera)" xsd:string -intersection_of: UBERON:0003162 ! lateral ocellus -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0001095 ! -property_value: IAO:0000589 "imaginal disc-derived wing vein (hymenoptera)" xsd:string -intersection_of: UBERON:0003194 ! imaginal disc-derived wing vein -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000311 ! -property_value: IAO:0000589 "exocuticle (hymenoptera)" xsd:string -intersection_of: UBERON:0003201 ! exocuticle -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000290 ! -property_value: IAO:0000589 "endocuticle (hymenoptera)" xsd:string -intersection_of: UBERON:0003202 ! endocuticle -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000526 ! -property_value: IAO:0000589 "median eye (hymenoptera)" xsd:string -intersection_of: UBERON:0003211 ! median eye -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0001019 ! -property_value: IAO:0000589 "tooth-like structure (hymenoptera)" xsd:string -intersection_of: UBERON:0003913 ! tooth-like structure -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000822 ! -property_value: IAO:0000589 "anatomical projection (hymenoptera)" xsd:string -intersection_of: UBERON:0004529 ! anatomical projection -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000456 ! -property_value: IAO:0000589 "insect labrum (hymenoptera)" xsd:string -intersection_of: UBERON:0005905 ! insect labrum -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000008 ! -property_value: IAO:0000589 "anatomical line (hymenoptera)" xsd:string -intersection_of: UBERON:0006800 ! anatomical line -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000087 ! -property_value: IAO:0000589 "adult organism (hymenoptera)" xsd:string -intersection_of: UBERON:0007023 ! adult organism -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000029 ! -property_value: IAO:0000589 "hermaphroditic organism (hymenoptera)" xsd:string -intersection_of: UBERON:0007197 ! hermaphroditic organism -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000298 ! -property_value: IAO:0000589 "outer epithelium (hymenoptera)" xsd:string -intersection_of: UBERON:0007376 ! outer epithelium -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000091 ! -property_value: IAO:0000589 "intromittent organ (hymenoptera)" xsd:string -intersection_of: UBERON:0008811 ! intromittent organ -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000045 ! -property_value: IAO:0000589 "sequential hermaphroditic organism (hymenoptera)" xsd:string -intersection_of: UBERON:0010895 ! sequential hermaphroditic organism -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0000046 ! -property_value: IAO:0000589 "synchronous hermaphroditic organism (hymenoptera)" xsd:string -intersection_of: UBERON:0010899 ! synchronous hermaphroditic organism -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0001525 ! -property_value: IAO:0000589 "anatomical line along groove (hymenoptera)" xsd:string -intersection_of: UBERON:0014764 ! anatomical line along groove -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:0001922 ! -property_value: IAO:0000589 "somatic muscle (hymenoptera)" xsd:string -intersection_of: UBERON:0014895 ! somatic muscle -intersection_of: part_of NCBITaxon:7399 - -[Term] -id: HAO:ENTITY -name: HAO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7399 -relationship: only_in_taxon NCBITaxon:7399 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-hao.owl b/src/ontology/bridge/uberon-bridge-to-hao.owl index 915ad4c02b..37c84be649 100644 --- a/src/ontology/bridge/uberon-bridge-to-hao.owl +++ b/src/ontology/bridge/uberon-bridge-to-hao.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -339,8 +78,7 @@ - anatomical entity (hymenoptera) - HAO:0000000 + anatomical entity (hymenoptera) @@ -359,8 +97,7 @@ - anatomical structure (hymenoptera) - HAO:0000003 + anatomical structure (hymenoptera) @@ -379,8 +116,7 @@ - organism substance (hymenoptera) - HAO:0000004 + organism substance (hymenoptera) @@ -399,8 +135,7 @@ - anatomical space (hymenoptera) - HAO:0000005 + anatomical space (hymenoptera) @@ -419,8 +154,7 @@ - material anatomical entity (hymenoptera) - HAO:0000006 + material anatomical entity (hymenoptera) @@ -439,8 +173,7 @@ - immaterial anatomical entity (hymenoptera) - HAO:0000007 + immaterial anatomical entity (hymenoptera) @@ -459,8 +192,7 @@ - anatomical line (hymenoptera) - HAO:0000008 + anatomical line (hymenoptera) @@ -479,8 +211,7 @@ - anatomical system (hymenoptera) - HAO:0000011 + anatomical system (hymenoptera) @@ -499,8 +230,7 @@ - multicellular organism (hymenoptera) - HAO:0000012 + multicellular organism (hymenoptera) @@ -519,8 +249,7 @@ - compound organ component (hymenoptera) - HAO:0000019 + compound organ component (hymenoptera) @@ -539,8 +268,7 @@ - simple organ (hymenoptera) - HAO:0000021 + simple organ (hymenoptera) @@ -559,8 +287,7 @@ - compound organ (hymenoptera) - HAO:0000024 + compound organ (hymenoptera) @@ -579,8 +306,7 @@ - male organism (hymenoptera) - HAO:0000027 + male organism (hymenoptera) @@ -599,8 +325,7 @@ - female organism (hymenoptera) - HAO:0000028 + female organism (hymenoptera) @@ -619,8 +344,7 @@ - hermaphroditic organism (hymenoptera) - HAO:0000029 + hermaphroditic organism (hymenoptera) @@ -639,8 +363,7 @@ - organism subdivision (hymenoptera) - HAO:0000032 + organism subdivision (hymenoptera) @@ -659,8 +382,7 @@ - acellular anatomical structure (hymenoptera) - HAO:0000040 + acellular anatomical structure (hymenoptera) @@ -679,8 +401,7 @@ - extraembryonic structure (hymenoptera) - HAO:0000042 + extraembryonic structure (hymenoptera) @@ -699,8 +420,7 @@ - tissue (hymenoptera) - HAO:0000043 + tissue (hymenoptera) @@ -719,8 +439,7 @@ - sequential hermaphroditic organism (hymenoptera) - HAO:0000045 + sequential hermaphroditic organism (hymenoptera) @@ -739,8 +458,7 @@ - synchronous hermaphroditic organism (hymenoptera) - HAO:0000046 + synchronous hermaphroditic organism (hymenoptera) @@ -759,8 +477,7 @@ - anatomical group (hymenoptera) - HAO:0000054 + anatomical group (hymenoptera) @@ -779,8 +496,7 @@ - multi-tissue structure (hymenoptera) - HAO:0000055 + multi-tissue structure (hymenoptera) @@ -799,8 +515,7 @@ - basal lamina of epithelium (hymenoptera) - HAO:0000065 + basal lamina of epithelium (hymenoptera) @@ -819,8 +534,7 @@ - epithelium (hymenoptera) - HAO:0000066 + epithelium (hymenoptera) @@ -839,8 +553,7 @@ - simple cuboidal epithelium (hymenoptera) - HAO:0000067 + simple cuboidal epithelium (hymenoptera) @@ -859,8 +572,7 @@ - simple columnar epithelium (hymenoptera) - HAO:0000068 + simple columnar epithelium (hymenoptera) @@ -879,8 +591,7 @@ - multilaminar epithelium (hymenoptera) - HAO:0000069 + multilaminar epithelium (hymenoptera) @@ -899,8 +610,7 @@ - simple squamous epithelium (hymenoptera) - HAO:0000070 + simple squamous epithelium (hymenoptera) @@ -919,8 +629,7 @@ - atypical epithelium (hymenoptera) - HAO:0000071 + atypical epithelium (hymenoptera) @@ -939,8 +648,7 @@ - cavitated compound organ (hymenoptera) - HAO:0000072 + cavitated compound organ (hymenoptera) @@ -959,8 +667,7 @@ - unilaminar epithelium (hymenoptera) - HAO:0000073 + unilaminar epithelium (hymenoptera) @@ -979,8 +686,7 @@ - solid compound organ (hymenoptera) - HAO:0000074 + solid compound organ (hymenoptera) @@ -999,8 +705,7 @@ - adult organism (hymenoptera) - HAO:0000087 + adult organism (hymenoptera) @@ -1019,8 +724,7 @@ - intromittent organ (hymenoptera) - HAO:0000091 + intromittent organ (hymenoptera) @@ -1039,8 +743,7 @@ - antenna (hymenoptera) - HAO:0000101 + antenna (hymenoptera) @@ -1059,8 +762,7 @@ - appendage (hymenoptera) - HAO:0000144 + appendage (hymenoptera) @@ -1079,8 +781,7 @@ - compound eye (hymenoptera) - HAO:0000217 + compound eye (hymenoptera) @@ -1099,8 +800,7 @@ - chitin-based cuticle (hymenoptera) - HAO:0000240 + chitin-based cuticle (hymenoptera) @@ -1119,8 +819,7 @@ - endocuticle (hymenoptera) - HAO:0000290 + endocuticle (hymenoptera) @@ -1139,8 +838,7 @@ - outer epithelium (hymenoptera) - HAO:0000298 + outer epithelium (hymenoptera) @@ -1159,8 +857,7 @@ - exocuticle (hymenoptera) - HAO:0000311 + exocuticle (hymenoptera) @@ -1179,8 +876,7 @@ - face (hymenoptera) - HAO:0000316 + face (hymenoptera) @@ -1199,8 +895,7 @@ - female reproductive system (hymenoptera) - HAO:0000324 + female reproductive system (hymenoptera) @@ -1219,8 +914,7 @@ - reproductive system (hymenoptera) - HAO:0000374 + reproductive system (hymenoptera) @@ -1239,8 +933,7 @@ - gland (hymenoptera) - HAO:0000375 + gland (hymenoptera) @@ -1259,8 +952,7 @@ - gonad (hymenoptera) - HAO:0000379 + gonad (hymenoptera) @@ -1279,8 +971,7 @@ - head (hymenoptera) - HAO:0000397 + head (hymenoptera) @@ -1299,8 +990,7 @@ - insect head capsule (hymenoptera) - HAO:0000398 + insect head capsule (hymenoptera) @@ -1319,8 +1009,7 @@ - integumental system (hymenoptera) - HAO:0000421 + integumental system (hymenoptera) @@ -1339,8 +1028,7 @@ - insect labrum (hymenoptera) - HAO:0000456 + insect labrum (hymenoptera) @@ -1359,8 +1047,7 @@ - larva (hymenoptera) - HAO:0000459 + larva (hymenoptera) @@ -1379,8 +1066,7 @@ - lateral ocellus (hymenoptera) - HAO:0000481 + lateral ocellus (hymenoptera) @@ -1399,8 +1085,7 @@ - male reproductive system (hymenoptera) - HAO:0000505 + male reproductive system (hymenoptera) @@ -1419,8 +1104,7 @@ - median eye (hymenoptera) - HAO:0000526 + median eye (hymenoptera) @@ -1439,8 +1123,7 @@ - arthropod occiput (hymenoptera) - HAO:0000658 + arthropod occiput (hymenoptera) @@ -1459,8 +1142,7 @@ - dorsal ocellus (hymenoptera) - HAO:0000661 + dorsal ocellus (hymenoptera) @@ -1479,8 +1161,7 @@ - ommatidium (hymenoptera) - HAO:0000666 + ommatidium (hymenoptera) @@ -1499,8 +1180,7 @@ - oral cavity (hymenoptera) - HAO:0000669 + oral cavity (hymenoptera) @@ -1519,8 +1199,7 @@ - prepupa (hymenoptera) - HAO:0000812 + prepupa (hymenoptera) @@ -1539,8 +1218,7 @@ - anatomical projection (hymenoptera) - HAO:0000822 + anatomical projection (hymenoptera) @@ -1559,8 +1237,7 @@ - pupa (hymenoptera) - HAO:0000886 + pupa (hymenoptera) @@ -1579,8 +1256,7 @@ - reproductive system (hymenoptera) - HAO:0000895 + reproductive system (hymenoptera) @@ -1599,8 +1275,7 @@ - scale (hymenoptera) - HAO:0000907 + scale (hymenoptera) @@ -1619,8 +1294,7 @@ - organismal segment (hymenoptera) - HAO:0000929 + organismal segment (hymenoptera) @@ -1639,8 +1313,7 @@ - sense organ (hymenoptera) - HAO:0000930 + sense organ (hymenoptera) @@ -1659,8 +1332,7 @@ - arthropod sensillum (hymenoptera) - HAO:0000933 + arthropod sensillum (hymenoptera) @@ -1679,8 +1351,7 @@ - spermathecum (hymenoptera) - HAO:0000945 + spermathecum (hymenoptera) @@ -1699,8 +1370,7 @@ - arthropod sternum (hymenoptera) - HAO:0000956 + arthropod sternum (hymenoptera) @@ -1719,8 +1389,7 @@ - testis (hymenoptera) - HAO:0001007 + testis (hymenoptera) @@ -1739,8 +1408,7 @@ - arthropod tibia (hymenoptera) - HAO:0001017 + arthropod tibia (hymenoptera) @@ -1759,8 +1427,7 @@ - tooth-like structure (hymenoptera) - HAO:0001019 + tooth-like structure (hymenoptera) @@ -1779,8 +1446,7 @@ - imaginal disc-derived wing (hymenoptera) - HAO:0001089 + imaginal disc-derived wing (hymenoptera) @@ -1799,8 +1465,7 @@ - imaginal disc-derived wing vein (hymenoptera) - HAO:0001095 + imaginal disc-derived wing vein (hymenoptera) @@ -1819,8 +1484,7 @@ - anatomical line along groove (hymenoptera) - HAO:0001525 + anatomical line along groove (hymenoptera) @@ -1839,34 +1503,7 @@ - somatic muscle (hymenoptera) - HAO:0001922 - - - - - - - - - - - - - - - - - - - - - - - - - HAO:ENTITY - HAO entity + somatic muscle (hymenoptera) @@ -2324,9 +1961,35 @@ + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/ontology/bridge/uberon-bridge-to-hba.obo b/src/ontology/bridge/uberon-bridge-to-hba.obo deleted file mode 100644 index 26b7821a43..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-hba.obo +++ /dev/null @@ -1,3565 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-hba -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: HBA:4634 ! -property_value: IAO:0000589 "pituitary gland (HBA)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9249 ! -property_value: IAO:0000589 "fornix of brain (HBA)" xsd:string -intersection_of: UBERON:0000052 ! fornix of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504966 ! -property_value: IAO:0000589 "tapetum of corpus callosum (HBA)" xsd:string -intersection_of: UBERON:0000373 ! tapetum of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4536 ! -property_value: IAO:0000589 "posterior paraventricular nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0000433 ! posterior paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12906 ! -property_value: IAO:0000589 "anterior paraventricular nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0000434 ! anterior paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12915 ! -property_value: IAO:0000589 "lateral tuberal nucleus (HBA)" xsd:string -intersection_of: UBERON:0000435 ! lateral tuberal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9228 ! -property_value: IAO:0000589 "hippocampal commissure (HBA)" xsd:string -intersection_of: UBERON:0000908 ! hippocampal commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9221 ! -property_value: IAO:0000589 "anterior commissure (HBA)" xsd:string -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9229 ! -property_value: IAO:0000589 "posterior commissure (HBA)" xsd:string -intersection_of: UBERON:0000936 ! posterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9307 ! -property_value: IAO:0000589 "cranial nerve II (HBA)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4005 ! -property_value: IAO:0000589 "brain (HBA)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4008 ! -property_value: IAO:0000589 "cerebral cortex (HBA)" xsd:string -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9310 ! -property_value: IAO:0000589 "optic chiasma (HBA)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9131 ! -property_value: IAO:0000589 "pons (HBA)" xsd:string -intersection_of: UBERON:0000988 ! pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12945 ! -property_value: IAO:0000589 "flocculus (HBA)" xsd:string -intersection_of: UBERON:0001063 ! flocculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9300 ! -property_value: IAO:0000589 "olfactory nerve (HBA)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9316 ! -property_value: IAO:0000589 "oculomotor nerve (HBA)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9319 ! -property_value: IAO:0000589 "trochlear nerve (HBA)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9322 ! -property_value: IAO:0000589 "trigeminal nerve (HBA)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9325 ! -property_value: IAO:0000589 "abducens nerve (HBA)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9328 ! -property_value: IAO:0000589 "facial nerve (HBA)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9331 ! -property_value: IAO:0000589 "vestibulocochlear nerve (HBA)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9334 ! -property_value: IAO:0000589 "glossopharyngeal nerve (HBA)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9343 ! -property_value: IAO:0000589 "hypoglossal nerve (HBA)" xsd:string -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9030 ! -property_value: IAO:0000589 "oculomotor nuclear complex (HBA)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9676 ! -property_value: IAO:0000589 "spinal nucleus of trigeminal nerve (HBA)" xsd:string -intersection_of: UBERON:0001717 ! spinal nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9205 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (HBA)" xsd:string -intersection_of: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9516 ! -property_value: IAO:0000589 "nucleus ambiguus (HBA)" xsd:string -intersection_of: UBERON:0001719 ! nucleus ambiguus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9702 ! -property_value: IAO:0000589 "inferior vestibular nucleus (HBA)" xsd:string -intersection_of: UBERON:0001721 ! inferior vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9700 ! -property_value: IAO:0000589 "medial vestibular nucleus (HBA)" xsd:string -intersection_of: UBERON:0001722 ! medial vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9337 ! -property_value: IAO:0000589 "vagus nerve (HBA)" xsd:string -intersection_of: UBERON:0001759 ! vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9299 ! -property_value: IAO:0000589 "cranial nerve (HBA)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4132 ! -property_value: IAO:0000589 "temporal lobe (HBA)" xsd:string -intersection_of: UBERON:0001871 ! temporal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4084 ! -property_value: IAO:0000589 "parietal lobe (HBA)" xsd:string -intersection_of: UBERON:0001872 ! parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4278 ! -property_value: IAO:0000589 "caudate nucleus (HBA)" xsd:string -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4287 ! -property_value: IAO:0000589 "putamen (HBA)" xsd:string -intersection_of: UBERON:0001874 ! putamen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4293 ! -property_value: IAO:0000589 "globus pallidus (HBA)" xsd:string -intersection_of: UBERON:0001875 ! globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4327 ! -property_value: IAO:0000589 "amygdala (HBA)" xsd:string -intersection_of: UBERON:0001876 ! amygdala -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4302 ! -property_value: IAO:0000589 "medial septal nucleus (HBA)" xsd:string -intersection_of: UBERON:0001877 ! medial septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4309 ! -property_value: IAO:0000589 "nucleus of diagonal band (HBA)" xsd:string -intersection_of: UBERON:0001879 ! nucleus of diagonal band -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4313 ! -property_value: IAO:0000589 "bed nucleus of stria terminalis (HBA)" xsd:string -intersection_of: UBERON:0001880 ! bed nucleus of stria terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504792 ! -property_value: IAO:0000589 "island of Calleja (HBA)" xsd:string -intersection_of: UBERON:0001881 ! island of Calleja -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4290 ! -property_value: IAO:0000589 "nucleus accumbens (HBA)" xsd:string -intersection_of: UBERON:0001882 ! nucleus accumbens -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:10145 ! -property_value: IAO:0000589 "olfactory tubercle (HBA)" xsd:string -intersection_of: UBERON:0001883 ! olfactory tubercle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12891 ! -property_value: IAO:0000589 "dentate gyrus of hippocampal formation (HBA)" xsd:string -intersection_of: UBERON:0001885 ! dentate gyrus of hippocampal formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9263 ! -property_value: IAO:0000589 "internal capsule of telencephalon (HBA)" xsd:string -intersection_of: UBERON:0001887 ! internal capsule of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505514 ! -property_value: IAO:0000589 "lateral olfactory stria (HBA)" xsd:string -intersection_of: UBERON:0001888 ! lateral olfactory stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9001 ! -property_value: IAO:0000589 "midbrain (HBA)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4007 ! -property_value: IAO:0000589 "telencephalon (HBA)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4391 ! -property_value: IAO:0000589 "diencephalon (HBA)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4833 ! -property_value: IAO:0000589 "metencephalon (HBA)" xsd:string -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4392 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (HBA)" xsd:string -intersection_of: UBERON:0001897 ! dorsal plus ventral thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4540 ! -property_value: IAO:0000589 "hypothalamus (HBA)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4520 ! -property_value: IAO:0000589 "epithalamus (HBA)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4504 ! -property_value: IAO:0000589 "ventral thalamus (HBA)" xsd:string -intersection_of: UBERON:0001900 ! ventral thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4506 ! -property_value: IAO:0000589 "thalamic reticular nucleus (HBA)" xsd:string -intersection_of: UBERON:0001903 ! thalamic reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4522 ! -property_value: IAO:0000589 "habenula (HBA)" xsd:string -intersection_of: UBERON:0001904 ! habenula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4532 ! -property_value: IAO:0000589 "pineal body (HBA)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4518 ! -property_value: IAO:0000589 "subthalamic nucleus (HBA)" xsd:string -intersection_of: UBERON:0001906 ! subthalamic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4507 ! -property_value: IAO:0000589 "zona incerta (HBA)" xsd:string -intersection_of: UBERON:0001907 ! zona incerta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9309 ! -property_value: IAO:0000589 "optic tract (HBA)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9227 ! -property_value: IAO:0000589 "habenular commissure (HBA)" xsd:string -intersection_of: UBERON:0001909 ! habenular commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505190 ! -property_value: IAO:0000589 "medial forebrain bundle (HBA)" xsd:string -intersection_of: UBERON:0001910 ! medial forebrain bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4533 ! -property_value: IAO:0000589 "paraventricular nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0001920 ! paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4439 ! -property_value: IAO:0000589 "parafascicular nucleus (HBA)" xsd:string -intersection_of: UBERON:0001922 ! parafascicular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4438 ! -property_value: IAO:0000589 "central medial nucleus (HBA)" xsd:string -intersection_of: UBERON:0001923 ! central medial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4435 ! -property_value: IAO:0000589 "paracentral nucleus (HBA)" xsd:string -intersection_of: UBERON:0001924 ! paracentral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12925 ! -property_value: IAO:0000589 "ventral lateral nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0001925 ! ventral lateral nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12926 ! -property_value: IAO:0000589 "medial geniculate body (HBA)" xsd:string -intersection_of: UBERON:0001927 ! medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4541 ! -property_value: IAO:0000589 "preoptic area (HBA)" xsd:string -intersection_of: UBERON:0001928 ! preoptic area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12907 ! -property_value: IAO:0000589 "supraoptic nucleus (HBA)" xsd:string -intersection_of: UBERON:0001929 ! supraoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12905 ! -property_value: IAO:0000589 "paraventricular nucleus of hypothalamus (HBA)" xsd:string -intersection_of: UBERON:0001930 ! paraventricular nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4552 ! -property_value: IAO:0000589 "lateral preoptic nucleus (HBA)" xsd:string -intersection_of: UBERON:0001931 ! lateral preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12913 ! -property_value: IAO:0000589 "arcuate nucleus of hypothalamus (HBA)" xsd:string -intersection_of: UBERON:0001932 ! arcuate nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12914 ! -property_value: IAO:0000589 "dorsomedial nucleus of hypothalamus (HBA)" xsd:string -intersection_of: UBERON:0001934 ! dorsomedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12919 ! -property_value: IAO:0000589 "ventromedial nucleus of hypothalamus (HBA)" xsd:string -intersection_of: UBERON:0001935 ! ventromedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12912 ! -property_value: IAO:0000589 "tuberomammillary nucleus (HBA)" xsd:string -intersection_of: UBERON:0001936 ! tuberomammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4675 ! -property_value: IAO:0000589 "lateral mammillary nucleus (HBA)" xsd:string -intersection_of: UBERON:0001938 ! lateral mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4672 ! -property_value: IAO:0000589 "medial mammillary nucleus (HBA)" xsd:string -intersection_of: UBERON:0001939 ! medial mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12911 ! -property_value: IAO:0000589 "supramammillary nucleus (HBA)" xsd:string -intersection_of: UBERON:0001940 ! supramammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4524 ! -property_value: IAO:0000589 "lateral habenular nucleus (HBA)" xsd:string -intersection_of: UBERON:0001941 ! lateral habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4523 ! -property_value: IAO:0000589 "medial habenular nucleus (HBA)" xsd:string -intersection_of: UBERON:0001942 ! medial habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9002 ! -property_value: IAO:0000589 "midbrain tegmentum (HBA)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9079 ! -property_value: IAO:0000589 "pretectal region (HBA)" xsd:string -intersection_of: UBERON:0001944 ! pretectal region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9114 ! -property_value: IAO:0000589 "superior colliculus (HBA)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9102 ! -property_value: IAO:0000589 "inferior colliculus (HBA)" xsd:string -intersection_of: UBERON:0001946 ! inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9053 ! -property_value: IAO:0000589 "red nucleus (HBA)" xsd:string -intersection_of: UBERON:0001947 ! red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4252 ! -property_value: IAO:0000589 "presubiculum (HBA)" xsd:string -intersection_of: UBERON:0001953 ! presubiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9074 ! -property_value: IAO:0000589 "substantia nigra pars compacta (HBA)" xsd:string -intersection_of: UBERON:0001965 ! substantia nigra pars compacta -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9075 ! -property_value: IAO:0000589 "substantia nigra pars reticulata (HBA)" xsd:string -intersection_of: UBERON:0001966 ! substantia nigra pars reticulata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9340 ! -property_value: IAO:0000589 "accessory XI nerve (HBA)" xsd:string -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4006 ! -property_value: IAO:0000589 "gray matter (HBA)" xsd:string -intersection_of: UBERON:0002020 ! gray matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4180 ! -property_value: IAO:0000589 "occipital lobe (HBA)" xsd:string -intersection_of: UBERON:0002021 ! occipital lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4268 ! -property_value: IAO:0000589 "insula (HBA)" xsd:string -intersection_of: UBERON:0002022 ! insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4321 ! -property_value: IAO:0000589 "claustrum of brain (HBA)" xsd:string -intersection_of: UBERON:0002023 ! claustrum of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12908 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (HBA)" xsd:string -intersection_of: UBERON:0002034 ! suprachiasmatic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4544 ! -property_value: IAO:0000589 "medial preoptic nucleus (HBA)" xsd:string -intersection_of: UBERON:0002035 ! medial preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4696 ! -property_value: IAO:0000589 "cerebellum (HBA)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9072 ! -property_value: IAO:0000589 "substantia nigra (HBA)" xsd:string -intersection_of: UBERON:0002038 ! substantia nigra -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9457 ! -property_value: IAO:0000589 "dorsal raphe nucleus (HBA)" xsd:string -intersection_of: UBERON:0002043 ! dorsal raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9047 ! -property_value: IAO:0000589 "ventral nucleus of posterior commissure (HBA)" xsd:string -intersection_of: UBERON:0002044 ! ventral nucleus of posterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9542 ! -property_value: IAO:0000589 "cuneate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002045 ! cuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9159 ! -property_value: IAO:0000589 "pontine raphe nucleus (HBA)" xsd:string -intersection_of: UBERON:0002047 ! pontine raphe nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9560 ! -property_value: IAO:0000589 "inferior olivary complex (HBA)" xsd:string -intersection_of: UBERON:0002127 ! inferior olivary complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9177 ! -property_value: IAO:0000589 "superior olivary complex (HBA)" xsd:string -intersection_of: UBERON:0002128 ! superior olivary complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4697 ! -property_value: IAO:0000589 "cerebellar cortex (HBA)" xsd:string -intersection_of: UBERON:0002129 ! cerebellar cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4780 ! -property_value: IAO:0000589 "cerebellar nuclear complex (HBA)" xsd:string -intersection_of: UBERON:0002130 ! cerebellar nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12946 ! -property_value: IAO:0000589 "dentate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002132 ! dentate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12953 ! -property_value: IAO:0000589 "habenulo-interpeduncular tract (HBA)" xsd:string -intersection_of: UBERON:0002138 ! habenulo-interpeduncular tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9489 ! -property_value: IAO:0000589 "subcommissural organ (HBA)" xsd:string -intersection_of: UBERON:0002139 ! subcommissural organ -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9111 ! -property_value: IAO:0000589 "parabigeminal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002140 ! parabigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9449 ! -property_value: IAO:0000589 "parvocellular oculomotor nucleus (HBA)" xsd:string -intersection_of: UBERON:0002141 ! parvocellular oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9021 ! -property_value: IAO:0000589 "pedunculopontine tegmental nucleus (HBA)" xsd:string -intersection_of: UBERON:0002142 ! pedunculopontine tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504876 ! -property_value: IAO:0000589 "dorsal tegmental nucleus (HBA)" xsd:string -intersection_of: UBERON:0002143 ! dorsal tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9050 ! -property_value: IAO:0000589 "peripeduncular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002144 ! peripeduncular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9012 ! -property_value: IAO:0000589 "interpeduncular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002145 ! interpeduncular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9167 ! -property_value: IAO:0000589 "reticulotegmental nucleus (HBA)" xsd:string -intersection_of: UBERON:0002147 ! reticulotegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9148 ! -property_value: IAO:0000589 "locus ceruleus (HBA)" xsd:string -intersection_of: UBERON:0002148 ! locus ceruleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9194 ! -property_value: IAO:0000589 "superior salivatory nucleus (HBA)" xsd:string -intersection_of: UBERON:0002149 ! superior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9297 ! -property_value: IAO:0000589 "superior cerebellar peduncle (HBA)" xsd:string -intersection_of: UBERON:0002150 ! superior cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9133 ! -property_value: IAO:0000589 "pontine nuclear group (HBA)" xsd:string -intersection_of: UBERON:0002151 ! pontine nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9294 ! -property_value: IAO:0000589 "middle cerebellar peduncle (HBA)" xsd:string -intersection_of: UBERON:0002152 ! middle cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12948 ! -property_value: IAO:0000589 "fastigial nucleus (HBA)" xsd:string -intersection_of: UBERON:0002153 ! fastigial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9616 ! -property_value: IAO:0000589 "lateral reticular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002154 ! lateral reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9597 ! -property_value: IAO:0000589 "gigantocellular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002155 ! gigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9602 ! -property_value: IAO:0000589 "gigantocellular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002155 ! gigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9643 ! -property_value: IAO:0000589 "nucleus raphe magnus (HBA)" xsd:string -intersection_of: UBERON:0002156 ! nucleus raphe magnus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9649 ! -property_value: IAO:0000589 "nucleus raphe pallidus (HBA)" xsd:string -intersection_of: UBERON:0002157 ! nucleus raphe pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9564 ! -property_value: IAO:0000589 "principal inferior olivary nucleus (HBA)" xsd:string -intersection_of: UBERON:0002158 ! principal inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9563 ! -property_value: IAO:0000589 "medial accessory inferior olivary nucleus (HBA)" xsd:string -intersection_of: UBERON:0002159 ! medial accessory inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9639 ! -property_value: IAO:0000589 "nucleus prepositus (HBA)" xsd:string -intersection_of: UBERON:0002160 ! nucleus prepositus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9554 ! -property_value: IAO:0000589 "gracile nucleus (HBA)" xsd:string -intersection_of: UBERON:0002161 ! gracile nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9522 ! -property_value: IAO:0000589 "area postrema (HBA)" xsd:string -intersection_of: UBERON:0002162 ! area postrema -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9291 ! -property_value: IAO:0000589 "inferior cerebellar peduncle (HBA)" xsd:string -intersection_of: UBERON:0002163 ! inferior cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12896 ! -property_value: IAO:0000589 "subiculum (HBA)" xsd:string -intersection_of: UBERON:0002191 ! subiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12916 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (HBA)" xsd:string -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12909 ! -property_value: IAO:0000589 "mammillary body (HBA)" xsd:string -intersection_of: UBERON:0002206 ! mammillary body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12930 ! -property_value: IAO:0000589 "cerebellar hemisphere (HBA)" xsd:string -intersection_of: UBERON:0002245 ! cerebellar hemisphere -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9303 ! -property_value: IAO:0000589 "olfactory bulb (HBA)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9302 ! -property_value: IAO:0000589 "olfactory tract (HBA)" xsd:string -intersection_of: UBERON:0002265 ! olfactory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4324 ! -property_value: IAO:0000589 "anterior olfactory nucleus (HBA)" xsd:string -intersection_of: UBERON:0002266 ! anterior olfactory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12917 ! -property_value: IAO:0000589 "perifornical nucleus (HBA)" xsd:string -intersection_of: UBERON:0002274 ! perifornical nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9419 ! -property_value: IAO:0000589 "telencephalic ventricle (HBA)" xsd:string -intersection_of: UBERON:0002285 ! telencephalic ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9420 ! -property_value: IAO:0000589 "third ventricle (HBA)" xsd:string -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9709 ! -property_value: IAO:0000589 "choroid plexus of third ventricle (HBA)" xsd:string -intersection_of: UBERON:0002288 ! choroid plexus of third ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505702 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (HBA)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9710 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (HBA)" xsd:string -intersection_of: UBERON:0002290 ! choroid plexus of fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9422 ! -property_value: IAO:0000589 "central canal of spinal cord (HBA)" xsd:string -intersection_of: UBERON:0002291 ! central canal of spinal cord -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9708 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (HBA)" xsd:string -intersection_of: UBERON:0002307 ! choroid plexus of lateral ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9351 ! -property_value: IAO:0000589 "medial longitudinal fasciculus (HBA)" xsd:string -intersection_of: UBERON:0002309 ! medial longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9253 ! -property_value: IAO:0000589 "hippocampus fimbria (HBA)" xsd:string -intersection_of: UBERON:0002310 ! hippocampus fimbria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9101 ! -property_value: IAO:0000589 "midbrain tectum (HBA)" xsd:string -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9218 ! -property_value: IAO:0000589 "white matter (HBA)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9288 ! -property_value: IAO:0000589 "white matter of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0002317 ! white matter of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9222 ! -property_value: IAO:0000589 "corpus callosum (HBA)" xsd:string -intersection_of: UBERON:0002336 ! corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4249 ! -property_value: IAO:0000589 "hippocampal formation (HBA)" xsd:string -intersection_of: UBERON:0002421 ! hippocampal formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9421 ! -property_value: IAO:0000589 "fourth ventricle (HBA)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9358 ! -property_value: IAO:0000589 "pituitary stalk (HBA)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4277 ! -property_value: IAO:0000589 "striatum (HBA)" xsd:string -intersection_of: UBERON:0002435 ! striatum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9069 ! -property_value: IAO:0000589 "ventral tegmental nucleus (HBA)" xsd:string -intersection_of: UBERON:0002438 ! ventral tegmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12897 ! -property_value: IAO:0000589 "lateral globus pallidus (HBA)" xsd:string -intersection_of: UBERON:0002476 ! lateral globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12898 ! -property_value: IAO:0000589 "medial globus pallidus (HBA)" xsd:string -intersection_of: UBERON:0002477 ! medial globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4440 ! -property_value: IAO:0000589 "dorsal lateral geniculate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002479 ! dorsal lateral geniculate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12902 ! -property_value: IAO:0000589 "anterior hypothalamic region (HBA)" xsd:string -intersection_of: UBERON:0002550 ! anterior hypothalamic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4570 ! -property_value: IAO:0000589 "anterior hypothalamic region (HBA)" xsd:string -intersection_of: UBERON:0002550 ! anterior hypothalamic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9015 ! -property_value: IAO:0000589 "interstitial nucleus of Cajal (HBA)" xsd:string -intersection_of: UBERON:0002551 ! interstitial nucleus of Cajal -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9587 ! -property_value: IAO:0000589 "medullary reticular formation (HBA)" xsd:string -intersection_of: UBERON:0002559 ! medullary reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9356 ! -property_value: IAO:0000589 "superior frontal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002562 ! superior frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9104 ! -property_value: IAO:0000589 "central nucleus of inferior colliculus (HBA)" xsd:string -intersection_of: UBERON:0002563 ! central nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4059 ! -property_value: IAO:0000589 "lateral orbital gyrus (HBA)" xsd:string -intersection_of: UBERON:0002564 ! lateral orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9086 ! -property_value: IAO:0000589 "olivary pretectal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002565 ! olivary pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505362 ! -property_value: IAO:0000589 "superior precentral sulcus (HBA)" xsd:string -intersection_of: UBERON:0002566 ! superior precentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9132 ! -property_value: IAO:0000589 "basal part of pons (HBA)" xsd:string -intersection_of: UBERON:0002567 ! basal part of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4050 ! -property_value: IAO:0000589 "medial orbital gyrus (HBA)" xsd:string -intersection_of: UBERON:0002570 ! medial orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9105 ! -property_value: IAO:0000589 "external nucleus of inferior colliculus (HBA)" xsd:string -intersection_of: UBERON:0002571 ! external nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9089 ! -property_value: IAO:0000589 "principal pretectal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002572 ! principal pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9161 ! -property_value: IAO:0000589 "pontine reticular formation (HBA)" xsd:string -intersection_of: UBERON:0002573 ! pontine reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4056 ! -property_value: IAO:0000589 "posterior orbital gyrus (HBA)" xsd:string -intersection_of: UBERON:0002575 ! posterior orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4174 ! -property_value: IAO:0000589 "temporal pole (HBA)" xsd:string -intersection_of: UBERON:0002576 ! temporal pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9106 ! -property_value: IAO:0000589 "pericentral nucleus of inferior colliculus (HBA)" xsd:string -intersection_of: UBERON:0002577 ! pericentral nucleus of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9092 ! -property_value: IAO:0000589 "sublentiform nucleus (HBA)" xsd:string -intersection_of: UBERON:0002578 ! sublentiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505398 ! -property_value: IAO:0000589 "brachium of superior colliculus (HBA)" xsd:string -intersection_of: UBERON:0002580 ! brachium of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4085 ! -property_value: IAO:0000589 "postcentral gyrus (HBA)" xsd:string -intersection_of: UBERON:0002581 ! postcentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9391 ! -property_value: IAO:0000589 "calcarine sulcus (HBA)" xsd:string -intersection_of: UBERON:0002586 ! calcarine sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9154 ! -property_value: IAO:0000589 "nucleus subceruleus (HBA)" xsd:string -intersection_of: UBERON:0002587 ! nucleus subceruleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505482 ! -property_value: IAO:0000589 "decussation of superior cerebellar peduncle (HBA)" xsd:string -intersection_of: UBERON:0002588 ! decussation of superior cerebellar peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9679 ! -property_value: IAO:0000589 "oral part of spinal trigeminal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002591 ! oral part of spinal trigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9360 ! -property_value: IAO:0000589 "orbital sulcus (HBA)" xsd:string -intersection_of: UBERON:0002595 ! orbital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4426 ! -property_value: IAO:0000589 "ventral posterior nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002596 ! ventral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9207 ! -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (HBA)" xsd:string -intersection_of: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9365 ! -property_value: IAO:0000589 "paracentral sulcus (HBA)" xsd:string -intersection_of: UBERON:0002598 ! paracentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4219 ! -property_value: IAO:0000589 "limbic lobe (HBA)" xsd:string -intersection_of: UBERON:0002600 ! limbic lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12947 ! -property_value: IAO:0000589 "emboliform nucleus (HBA)" xsd:string -intersection_of: UBERON:0002602 ! emboliform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4065 ! -property_value: IAO:0000589 "paraterminal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002603 ! paraterminal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9200 ! -property_value: IAO:0000589 "ventral nucleus of lateral lemniscus (HBA)" xsd:string -intersection_of: UBERON:0002604 ! ventral nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9366 ! -property_value: IAO:0000589 "superior rostral sulcus (HBA)" xsd:string -intersection_of: UBERON:0002607 ! superior rostral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9528 ! -property_value: IAO:0000589 "cochlear nuclear complex (HBA)" xsd:string -intersection_of: UBERON:0002610 ! cochlear nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12949 ! -property_value: IAO:0000589 "cerebellum globose nucleus (HBA)" xsd:string -intersection_of: UBERON:0002613 ! cerebellum globose nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4421 ! -property_value: IAO:0000589 "medial part of ventral lateral nucleus (HBA)" xsd:string -intersection_of: UBERON:0002614 ! medial part of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4423 ! -property_value: IAO:0000589 "pars postrema of ventral lateral nucleus (HBA)" xsd:string -intersection_of: UBERON:0002617 ! pars postrema of ventral lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4633 ! -property_value: IAO:0000589 "tuber cinereum (HBA)" xsd:string -intersection_of: UBERON:0002620 ! tuber cinereum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4549 ! -property_value: IAO:0000589 "preoptic periventricular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002622 ! preoptic periventricular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4044 ! -property_value: IAO:0000589 "orbital part of inferior frontal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002624 ! orbital part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4548 ! -property_value: IAO:0000589 "median preoptic nucleus (HBA)" xsd:string -intersection_of: UBERON:0002625 ! median preoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12900 ! -property_value: IAO:0000589 "head of caudate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002626 ! head of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12901 ! -property_value: IAO:0000589 "tail of caudate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002628 ! tail of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4038 ! -property_value: IAO:0000589 "triangular part of inferior frontal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002629 ! triangular part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12899 ! -property_value: IAO:0000589 "body of caudate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002630 ! body of caudate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9206 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (HBA)" xsd:string -intersection_of: UBERON:0002633 ! motor nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12903 ! -property_value: IAO:0000589 "anterior nucleus of hypothalamus (HBA)" xsd:string -intersection_of: UBERON:0002634 ! anterior nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4418 ! -property_value: IAO:0000589 "ventral anterior nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002637 ! ventral anterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4412 ! -property_value: IAO:0000589 "medial pulvinar nucleus (HBA)" xsd:string -intersection_of: UBERON:0002638 ! medial pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9018 ! -property_value: IAO:0000589 "midbrain reticular formation (HBA)" xsd:string -intersection_of: UBERON:0002639 ! midbrain reticular formation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4411 ! -property_value: IAO:0000589 "oral pulvinar nucleus (HBA)" xsd:string -intersection_of: UBERON:0002641 ! oral pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505622 ! -property_value: IAO:0000589 "decussation of medial lemniscus (HBA)" xsd:string -intersection_of: UBERON:0002643 ! decussation of medial lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4404 ! -property_value: IAO:0000589 "densocellular part of medial dorsal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002645 ! densocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4403 ! -property_value: IAO:0000589 "magnocellular part of medial dorsal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002647 ! magnocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4419 ! -property_value: IAO:0000589 "parvocellular part of medial dorsal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002654 ! parvocellular part of medial dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4021 ! -property_value: IAO:0000589 "superior frontal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002661 ! superior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:13002 ! -property_value: IAO:0000589 "septal nuclear complex (HBA)" xsd:string -intersection_of: UBERON:0002663 ! septal nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4673 ! -property_value: IAO:0000589 "lateral part of medial mammillary nucleus (HBA)" xsd:string -intersection_of: UBERON:0002664 ! lateral part of medial mammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505458 ! -property_value: IAO:0000589 "mesencephalic tract of trigeminal nerve (HBA)" xsd:string -intersection_of: UBERON:0002666 ! mesencephalic tract of trigeminal nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4303 ! -property_value: IAO:0000589 "lateral septal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002667 ! lateral septal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9697 ! -property_value: IAO:0000589 "vestibular nuclear complex (HBA)" xsd:string -intersection_of: UBERON:0002673 ! vestibular nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4398 ! -property_value: IAO:0000589 "anterodorsal nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002679 ! anterodorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4396 ! -property_value: IAO:0000589 "anteromedial nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002681 ! anteromedial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9136 ! -property_value: IAO:0000589 "abducens nucleus (HBA)" xsd:string -intersection_of: UBERON:0002682 ! abducens nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9383 ! -property_value: IAO:0000589 "rhinal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002683 ! rhinal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9646 ! -property_value: IAO:0000589 "nucleus raphe obscurus (HBA)" xsd:string -intersection_of: UBERON:0002684 ! nucleus raphe obscurus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4397 ! -property_value: IAO:0000589 "anteroventral nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002685 ! anteroventral nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4111 ! -property_value: IAO:0000589 "angular gyrus (HBA)" xsd:string -intersection_of: UBERON:0002686 ! angular gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4104 ! -property_value: IAO:0000589 "supramarginal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002688 ! supramarginal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4550 ! -property_value: IAO:0000589 "anteroventral periventricular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002690 ! anteroventral periventricular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9066 ! -property_value: IAO:0000589 "ventral tegmental area (HBA)" xsd:string -intersection_of: UBERON:0002691 ! ventral tegmental area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9642 ! -property_value: IAO:0000589 "medullary raphe nuclear complex (HBA)" xsd:string -intersection_of: UBERON:0002692 ! medullary raphe nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4600 ! -property_value: IAO:0000589 "anterior hypothalamic commissure (HBA)" xsd:string -intersection_of: UBERON:0002694 ! anterior hypothalamic commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9392 ! -property_value: IAO:0000589 "parieto-occipital sulcus (HBA)" xsd:string -intersection_of: UBERON:0002695 ! parieto-occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9020 ! -property_value: IAO:0000589 "cuneiform nucleus (HBA)" xsd:string -intersection_of: UBERON:0002696 ! cuneiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9387 ! -property_value: IAO:0000589 "preoccipital notch (HBA)" xsd:string -intersection_of: UBERON:0002698 ! preoccipital notch -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9022 ! -property_value: IAO:0000589 "subcuneiform nucleus (HBA)" xsd:string -intersection_of: UBERON:0002700 ! subcuneiform nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9032 ! -property_value: IAO:0000589 "anterior median oculomotor nucleus (HBA)" xsd:string -intersection_of: UBERON:0002701 ! anterior median oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4028 ! -property_value: IAO:0000589 "middle frontal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002702 ! middle frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4010 ! -property_value: IAO:0000589 "precentral gyrus (HBA)" xsd:string -intersection_of: UBERON:0002703 ! precentral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12910 ! -property_value: IAO:0000589 "posterior nucleus of hypothalamus (HBA)" xsd:string -intersection_of: UBERON:0002706 ! posterior nucleus of hypothalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505574 ! -property_value: IAO:0000589 "corticospinal tract (HBA)" xsd:string -intersection_of: UBERON:0002707 ! corticospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9364 ! -property_value: IAO:0000589 "cingulate sulcus (HBA)" xsd:string -intersection_of: UBERON:0002710 ! cingulate sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9027 ! -property_value: IAO:0000589 "nucleus of posterior commissure (HBA)" xsd:string -intersection_of: UBERON:0002711 ! nucleus of posterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4676 ! -property_value: IAO:0000589 "premammillary nucleus (HBA)" xsd:string -intersection_of: UBERON:0002712 ! premammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9398 ! -property_value: IAO:0000589 "circular sulcus of insula (HBA)" xsd:string -intersection_of: UBERON:0002713 ! circular sulcus of insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9380 ! -property_value: IAO:0000589 "collateral sulcus (HBA)" xsd:string -intersection_of: UBERON:0002716 ! collateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9060 ! -property_value: IAO:0000589 "rostral interstitial nucleus of medial longitudinal fasciculus (HBA)" xsd:string -intersection_of: UBERON:0002717 ! rostral interstitial nucleus of medial longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505626 ! -property_value: IAO:0000589 "solitary tract (HBA)" xsd:string -intersection_of: UBERON:0002718 ! solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505166 ! -property_value: IAO:0000589 "mammillary peduncle (HBA)" xsd:string -intersection_of: UBERON:0002720 ! mammillary peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9402 ! -property_value: IAO:0000589 "lateral sulcus (HBA)" xsd:string -intersection_of: UBERON:0002721 ! lateral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9063 ! -property_value: IAO:0000589 "trochlear nucleus (HBA)" xsd:string -intersection_of: UBERON:0002722 ! trochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505122 ! -property_value: IAO:0000589 "medial medullary lamina of globus pallidus (HBA)" xsd:string -intersection_of: UBERON:0002727 ! medial medullary lamina of globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505502 ! -property_value: IAO:0000589 "longitudinal pontine fibers (HBA)" xsd:string -intersection_of: UBERON:0002732 ! longitudinal pontine fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9378 ! -property_value: IAO:0000589 "superior temporal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002734 ! superior temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12923 ! -property_value: IAO:0000589 "lateral nuclear group of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002736 ! lateral nuclear group of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4401 ! -property_value: IAO:0000589 "medial dorsal nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002739 ! medial dorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4300 ! -property_value: IAO:0000589 "basal forebrain (HBA)" xsd:string -intersection_of: UBERON:0002743 ! basal forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4147 ! -property_value: IAO:0000589 "inferior temporal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002751 ! inferior temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12965 ! -property_value: IAO:0000589 "pyramidal decussation (HBA)" xsd:string -intersection_of: UBERON:0002755 ! pyramidal decussation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504828 ! -property_value: IAO:0000589 "dorsal nucleus of medial geniculate body (HBA)" xsd:string -intersection_of: UBERON:0002758 ! dorsal nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4448 ! -property_value: IAO:0000589 "magnocellular nucleus of medial geniculate body (HBA)" xsd:string -intersection_of: UBERON:0002759 ! magnocellular nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9357 ! -property_value: IAO:0000589 "inferior frontal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002761 ! inferior frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505134 ! -property_value: IAO:0000589 "internal medullary lamina of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002762 ! internal medullary lamina of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505086 ! -property_value: IAO:0000589 "lateral medullary lamina of globus pallidus (HBA)" xsd:string -intersection_of: UBERON:0002765 ! lateral medullary lamina of globus pallidus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4156 ! -property_value: IAO:0000589 "fusiform gyrus (HBA)" xsd:string -intersection_of: UBERON:0002766 ! fusiform gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9367 ! -property_value: IAO:0000589 "inferior rostral sulcus (HBA)" xsd:string -intersection_of: UBERON:0002767 ! inferior rostral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4133 ! -property_value: IAO:0000589 "superior temporal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002769 ! superior temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4665 ! -property_value: IAO:0000589 "posterior hypothalamic region (HBA)" xsd:string -intersection_of: UBERON:0002770 ! posterior hypothalamic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4140 ! -property_value: IAO:0000589 "middle temporal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002771 ! middle temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9361 ! -property_value: IAO:0000589 "olfactory sulcus (HBA)" xsd:string -intersection_of: UBERON:0002772 ! olfactory sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4165 ! -property_value: IAO:0000589 "anterior transverse temporal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002773 ! anterior transverse temporal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9183 ! -property_value: IAO:0000589 "lateral superior olivary nucleus (HBA)" xsd:string -intersection_of: UBERON:0002779 ! lateral superior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9184 ! -property_value: IAO:0000589 "medial superior olivary nucleus (HBA)" xsd:string -intersection_of: UBERON:0002782 ! medial superior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4888 ! -property_value: IAO:0000589 "frontal pole (HBA)" xsd:string -intersection_of: UBERON:0002795 ! frontal pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9362 ! -property_value: IAO:0000589 "fronto-orbital sulcus (HBA)" xsd:string -intersection_of: UBERON:0002799 ! fronto-orbital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505326 ! -property_value: IAO:0000589 "stratum zonale of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002801 ! stratum zonale of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9411 ! -property_value: IAO:0000589 "posterior superior fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0002814 ! posterior superior fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9412 ! -property_value: IAO:0000589 "horizontal fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0002815 ! horizontal fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9416 ! -property_value: IAO:0000589 "secondary fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0002817 ! secondary fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9417 ! -property_value: IAO:0000589 "posterolateral fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0002818 ! posterolateral fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9531 ! -property_value: IAO:0000589 "ventral cochlear nucleus (HBA)" xsd:string -intersection_of: UBERON:0002828 ! ventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9530 ! -property_value: IAO:0000589 "dorsal cochlear nucleus (HBA)" xsd:string -intersection_of: UBERON:0002829 ! dorsal cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9532 ! -property_value: IAO:0000589 "anteroventral cochlear nucleus (HBA)" xsd:string -intersection_of: UBERON:0002830 ! anteroventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9533 ! -property_value: IAO:0000589 "posteroventral cochlear nucleus (HBA)" xsd:string -intersection_of: UBERON:0002831 ! posteroventral cochlear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9513 ! -property_value: IAO:0000589 "accessory cuneate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002864 ! accessory cuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9519 ! -property_value: IAO:0000589 "arcuate nucleus of medulla (HBA)" xsd:string -intersection_of: UBERON:0002865 ! arcuate nucleus of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504914 ! -property_value: IAO:0000589 "central gray substance of medulla (HBA)" xsd:string -intersection_of: UBERON:0002867 ! central gray substance of medulla -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9545 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (HBA)" xsd:string -intersection_of: UBERON:0002870 ! dorsal motor nucleus of vagus nerve -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9557 ! -property_value: IAO:0000589 "hypoglossal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002871 ! hypoglossal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9569 ! -property_value: IAO:0000589 "inferior salivatory nucleus (HBA)" xsd:string -intersection_of: UBERON:0002872 ! inferior salivatory nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9678 ! -property_value: IAO:0000589 "interpolar part of spinal trigeminal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002873 ! interpolar part of spinal trigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9581 ! -property_value: IAO:0000589 "lateral pericuneate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002874 ! lateral pericuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9584 ! -property_value: IAO:0000589 "medial pericuneate nucleus (HBA)" xsd:string -intersection_of: UBERON:0002875 ! medial pericuneate nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9572 ! -property_value: IAO:0000589 "nucleus intercalatus (HBA)" xsd:string -intersection_of: UBERON:0002876 ! nucleus intercalatus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9633 ! -property_value: IAO:0000589 "peritrigeminal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002879 ! peritrigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9636 ! -property_value: IAO:0000589 "pontobulbar nucleus (HBA)" xsd:string -intersection_of: UBERON:0002880 ! pontobulbar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9627 ! -property_value: IAO:0000589 "sublingual nucleus (HBA)" xsd:string -intersection_of: UBERON:0002881 ! sublingual nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9694 ! -property_value: IAO:0000589 "supraspinal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002882 ! supraspinal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4359 ! -property_value: IAO:0000589 "central amygdaloid nucleus (HBA)" xsd:string -intersection_of: UBERON:0002883 ! central amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4375 ! -property_value: IAO:0000589 "intercalated amygdaloid nuclei (HBA)" xsd:string -intersection_of: UBERON:0002884 ! intercalated amygdaloid nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4350 ! -property_value: IAO:0000589 "accessory basal amygdaloid nucleus (HBA)" xsd:string -intersection_of: UBERON:0002885 ! accessory basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4378 ! -property_value: IAO:0000589 "lateral amygdaloid nucleus (HBA)" xsd:string -intersection_of: UBERON:0002886 ! lateral amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4341 ! -property_value: IAO:0000589 "basal amygdaloid nucleus (HBA)" xsd:string -intersection_of: UBERON:0002887 ! basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504476 ! -property_value: IAO:0000589 "anterior amygdaloid area (HBA)" xsd:string -intersection_of: UBERON:0002890 ! anterior amygdaloid area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4385 ! -property_value: IAO:0000589 "nucleus of lateral olfactory tract (HBA)" xsd:string -intersection_of: UBERON:0002893 ! nucleus of lateral olfactory tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504406 ! -property_value: IAO:0000589 "olfactory cortex (HBA)" xsd:string -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9394 ! -property_value: IAO:0000589 "hippocampal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002899 ! hippocampal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9388 ! -property_value: IAO:0000589 "transverse occipital sulcus (HBA)" xsd:string -intersection_of: UBERON:0002900 ! transverse occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4181 ! -property_value: IAO:0000589 "occipital pole (HBA)" xsd:string -intersection_of: UBERON:0002902 ! occipital pole -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9390 ! -property_value: IAO:0000589 "lunate sulcus (HBA)" xsd:string -intersection_of: UBERON:0002903 ! lunate sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9389 ! -property_value: IAO:0000589 "lateral occipital sulcus (HBA)" xsd:string -intersection_of: UBERON:0002904 ! lateral occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9397 ! -property_value: IAO:0000589 "intralingual sulcus (HBA)" xsd:string -intersection_of: UBERON:0002905 ! intralingual sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9385 ! -property_value: IAO:0000589 "anterior occipital sulcus (HBA)" xsd:string -intersection_of: UBERON:0002906 ! anterior occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9376 ! -property_value: IAO:0000589 "subparietal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002908 ! subparietal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9372 ! -property_value: IAO:0000589 "intraparietal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002913 ! intraparietal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9371 ! -property_value: IAO:0000589 "postcentral sulcus of parietal lobe (HBA)" xsd:string -intersection_of: UBERON:0002915 ! postcentral sulcus of parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9403 ! -property_value: IAO:0000589 "central sulcus (HBA)" xsd:string -intersection_of: UBERON:0002916 ! central sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9153 ! -property_value: IAO:0000589 "medial parabrachial nucleus (HBA)" xsd:string -intersection_of: UBERON:0002918 ! medial parabrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9404 ! -property_value: IAO:0000589 "callosal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002920 ! callosal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9401 ! -property_value: IAO:0000589 "longitudinal fissure (HBA)" xsd:string -intersection_of: UBERON:0002921 ! longitudinal fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9369 ! -property_value: IAO:0000589 "posterior parolfactory sulcus (HBA)" xsd:string -intersection_of: UBERON:0002923 ! posterior parolfactory sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9197 ! -property_value: IAO:0000589 "trapezoid body (HBA)" xsd:string -intersection_of: UBERON:0002932 ! trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4312 ! -property_value: IAO:0000589 "nucleus of anterior commissure (HBA)" xsd:string -intersection_of: UBERON:0002933 ! nucleus of anterior commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9038 ! -property_value: IAO:0000589 "ventral oculomotor nucleus (HBA)" xsd:string -intersection_of: UBERON:0002934 ! ventral oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4420 ! -property_value: IAO:0000589 "magnocellular part of ventral anterior nucleus (HBA)" xsd:string -intersection_of: UBERON:0002935 ! magnocellular part of ventral anterior nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9055 ! -property_value: IAO:0000589 "magnocellular part of red nucleus (HBA)" xsd:string -intersection_of: UBERON:0002936 ! magnocellular part of red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9056 ! -property_value: IAO:0000589 "parvocellular part of red nucleus (HBA)" xsd:string -intersection_of: UBERON:0002938 ! parvocellular part of red nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4426 ! -property_value: IAO:0000589 "ventral posteroinferior nucleus (HBA)" xsd:string -intersection_of: UBERON:0002939 ! ventral posteroinferior nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9251 ! -property_value: IAO:0000589 "anterior column of fornix (HBA)" xsd:string -intersection_of: UBERON:0002940 ! anterior column of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4425 ! -property_value: IAO:0000589 "ventral posterolateral nucleus (HBA)" xsd:string -intersection_of: UBERON:0002942 ! ventral posterolateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4191 ! -property_value: IAO:0000589 "lingual gyrus (HBA)" xsd:string -intersection_of: UBERON:0002943 ! lingual gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4424 ! -property_value: IAO:0000589 "ventral posteromedial nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002945 ! ventral posteromedial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4078 ! -property_value: IAO:0000589 "frontal operculum (HBA)" xsd:string -intersection_of: UBERON:0002947 ! frontal operculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4212 ! -property_value: IAO:0000589 "superior occipital gyrus (HBA)" xsd:string -intersection_of: UBERON:0002948 ! superior occipital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505662 ! -property_value: IAO:0000589 "tectospinal tract (HBA)" xsd:string -intersection_of: UBERON:0002949 ! tectospinal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12958 ! -property_value: IAO:0000589 "lateral lemniscus (HBA)" xsd:string -intersection_of: UBERON:0002953 ! lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4433 ! -property_value: IAO:0000589 "rhomboidal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002955 ! rhomboidal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9033 ! -property_value: IAO:0000589 "caudal central oculomotor nucleus (HBA)" xsd:string -intersection_of: UBERON:0002957 ! caudal central oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9034 ! -property_value: IAO:0000589 "central oculomotor nucleus (HBA)" xsd:string -intersection_of: UBERON:0002960 ! central oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9162 ! -property_value: IAO:0000589 "caudal pontine reticular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002963 ! caudal pontine reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9035 ! -property_value: IAO:0000589 "dorsal oculomotor nucleus (HBA)" xsd:string -intersection_of: UBERON:0002964 ! dorsal oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12929 ! -property_value: IAO:0000589 "rostral intralaminar nuclear group (HBA)" xsd:string -intersection_of: UBERON:0002965 ! rostral intralaminar nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4220 ! -property_value: IAO:0000589 "cingulate gyrus (HBA)" xsd:string -intersection_of: UBERON:0002967 ! cingulate gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:10147 ! -property_value: IAO:0000589 "central gray substance of pons (HBA)" xsd:string -intersection_of: UBERON:0002968 ! central gray substance of pons -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9379 ! -property_value: IAO:0000589 "inferior temporal sulcus (HBA)" xsd:string -intersection_of: UBERON:0002969 ! inferior temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9036 ! -property_value: IAO:0000589 "intermediate oculomotor nucleus (HBA)" xsd:string -intersection_of: UBERON:0002970 ! intermediate oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9179 ! -property_value: IAO:0000589 "periolivary nucleus (HBA)" xsd:string -intersection_of: UBERON:0002971 ! periolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4242 ! -property_value: IAO:0000589 "parahippocampal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002973 ! parahippocampal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9037 ! -property_value: IAO:0000589 "medial oculomotor nucleus (HBA)" xsd:string -intersection_of: UBERON:0002975 ! medial oculomotor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9180 ! -property_value: IAO:0000589 "preolivary nucleus (HBA)" xsd:string -intersection_of: UBERON:0002976 ! preolivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4041 ! -property_value: IAO:0000589 "opercular part of inferior frontal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002980 ! opercular part of inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4414 ! -property_value: IAO:0000589 "inferior pulvinar nucleus (HBA)" xsd:string -intersection_of: UBERON:0002982 ! inferior pulvinar nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4410 ! -property_value: IAO:0000589 "lateral posterior nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0002983 ! lateral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4399 ! -property_value: IAO:0000589 "lateral dorsal nucleus (HBA)" xsd:string -intersection_of: UBERON:0002984 ! lateral dorsal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4445 ! -property_value: IAO:0000589 "ventral nucleus of medial geniculate body (HBA)" xsd:string -intersection_of: UBERON:0002985 ! ventral nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4405 ! -property_value: IAO:0000589 "paratenial nucleus (HBA)" xsd:string -intersection_of: UBERON:0002992 ! paratenial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9080 ! -property_value: IAO:0000589 "nucleus of optic tract (HBA)" xsd:string -intersection_of: UBERON:0002996 ! nucleus of optic tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4035 ! -property_value: IAO:0000589 "inferior frontal gyrus (HBA)" xsd:string -intersection_of: UBERON:0002998 ! inferior frontal gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9166 ! -property_value: IAO:0000589 "oral pontine reticular nucleus (HBA)" xsd:string -intersection_of: UBERON:0002999 ! oral pontine reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12961 ! -property_value: IAO:0000589 "medial lemniscus (HBA)" xsd:string -intersection_of: UBERON:0003002 ! medial lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9139 ! -property_value: IAO:0000589 "dorsal nucleus of lateral lemniscus (HBA)" xsd:string -intersection_of: UBERON:0003006 ! dorsal nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9145 ! -property_value: IAO:0000589 "lateral parabrachial nucleus (HBA)" xsd:string -intersection_of: UBERON:0003007 ! lateral parabrachial nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9142 ! -property_value: IAO:0000589 "facial motor nucleus (HBA)" xsd:string -intersection_of: UBERON:0003011 ! facial motor nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12944 ! -property_value: IAO:0000589 "flocculonodular lobe (HBA)" xsd:string -intersection_of: UBERON:0003012 ! flocculonodular lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:13003 ! -property_value: IAO:0000589 "substantia innominata (HBA)" xsd:string -intersection_of: UBERON:0003017 ! substantia innominata -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9135 ! -property_value: IAO:0000589 "pontine tegmentum (HBA)" xsd:string -intersection_of: UBERON:0003023 ! pontine tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505386 ! -property_value: IAO:0000589 "brachium of inferior colliculus (HBA)" xsd:string -intersection_of: UBERON:0003025 ! brachium of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4429 ! -property_value: IAO:0000589 "limitans nucleus (HBA)" xsd:string -intersection_of: UBERON:0003026 ! limitans nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505434 ! -property_value: IAO:0000589 "commissure of inferior colliculus (HBA)" xsd:string -intersection_of: UBERON:0003028 ! commissure of inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9278 ! -property_value: IAO:0000589 "stria terminalis (HBA)" xsd:string -intersection_of: UBERON:0003029 ! stria terminalis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4431 ! -property_value: IAO:0000589 "posterior nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0003030 ! posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4406 ! -property_value: IAO:0000589 "submedial nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0003031 ! submedial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4430 ! -property_value: IAO:0000589 "suprageniculate nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0003033 ! suprageniculate nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4434 ! -property_value: IAO:0000589 "central lateral nucleus (HBA)" xsd:string -intersection_of: UBERON:0003036 ! central lateral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9003 ! -property_value: IAO:0000589 "central gray substance of midbrain (HBA)" xsd:string -intersection_of: UBERON:0003040 ! central gray substance of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9348 ! -property_value: IAO:0000589 "dorsal longitudinal fasciculus (HBA)" xsd:string -intersection_of: UBERON:0003045 ! dorsal longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9218 ! -property_value: IAO:0000589 "brain white matter (HBA)" xsd:string -intersection_of: UBERON:0003544 ! brain white matter -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12892 ! -property_value: IAO:0000589 "CA1 field of hippocampus (HBA)" xsd:string -intersection_of: UBERON:0003881 ! CA1 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12893 ! -property_value: IAO:0000589 "CA2 field of hippocampus (HBA)" xsd:string -intersection_of: UBERON:0003882 ! CA2 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12894 ! -property_value: IAO:0000589 "CA3 field of hippocampus (HBA)" xsd:string -intersection_of: UBERON:0003883 ! CA3 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12895 ! -property_value: IAO:0000589 "CA4 field of hippocampus (HBA)" xsd:string -intersection_of: UBERON:0003884 ! CA4 field of hippocampus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4699 ! -property_value: IAO:0000589 "cerebellum anterior vermis (HBA)" xsd:string -intersection_of: UBERON:0003941 ! cerebellum anterior vermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9240 ! -property_value: IAO:0000589 "cingulum of brain (HBA)" xsd:string -intersection_of: UBERON:0003961 ! cingulum of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9406 ! -property_value: IAO:0000589 "cerebellum fissure (HBA)" xsd:string -intersection_of: UBERON:0003980 ! cerebellum fissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9611 ! -property_value: IAO:0000589 "cerebellum intermediate zone (HBA)" xsd:string -intersection_of: UBERON:0004006 ! cerebellum intermediate zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4704 ! -property_value: IAO:0000589 "cerebellum posterior vermis (HBA)" xsd:string -intersection_of: UBERON:0004009 ! cerebellum posterior vermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9578 ! -property_value: IAO:0000589 "cerebellum interpositus nucleus (HBA)" xsd:string -intersection_of: UBERON:0004073 ! cerebellum interpositus nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12933 ! -property_value: IAO:0000589 "cerebellum vermis lobule III (HBA)" xsd:string -intersection_of: UBERON:0004076 ! cerebellum vermis lobule III -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12934 ! -property_value: IAO:0000589 "cerebellum vermis lobule IV (HBA)" xsd:string -intersection_of: UBERON:0004077 ! cerebellum vermis lobule IV -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12943 ! -property_value: IAO:0000589 "cerebellum vermis lobule IX (HBA)" xsd:string -intersection_of: UBERON:0004078 ! cerebellum vermis lobule IX -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12935 ! -property_value: IAO:0000589 "cerebellum vermis lobule V (HBA)" xsd:string -intersection_of: UBERON:0004079 ! cerebellum vermis lobule V -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12937 ! -property_value: IAO:0000589 "cerebellum vermis lobule VI (HBA)" xsd:string -intersection_of: UBERON:0004080 ! cerebellum vermis lobule VI -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4713 ! -property_value: IAO:0000589 "cerebellum vermis lobule X (HBA)" xsd:string -intersection_of: UBERON:0004083 ! cerebellum vermis lobule X -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9418 ! -property_value: IAO:0000589 "brain ventricle (HBA)" xsd:string -intersection_of: UBERON:0004086 ! brain ventricle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9243 ! -property_value: IAO:0000589 "external capsule of telencephalon (HBA)" xsd:string -intersection_of: UBERON:0004545 ! external capsule of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4047 ! -property_value: IAO:0000589 "gyrus rectus (HBA)" xsd:string -intersection_of: UBERON:0004671 ! gyrus rectus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9525 ! -property_value: IAO:0000589 "spinal cord gray commissure (HBA)" xsd:string -intersection_of: UBERON:0004677 ! spinal cord gray commissure -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9252 ! -property_value: IAO:0000589 "body of fornix (HBA)" xsd:string -intersection_of: UBERON:0004680 ! body of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505046 ! -property_value: IAO:0000589 "corona radiata of neuraxis (HBA)" xsd:string -intersection_of: UBERON:0004682 ! corona radiata of neuraxis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4253 ! -property_value: IAO:0000589 "parasubiculum (HBA)" xsd:string -intersection_of: UBERON:0004683 ! parasubiculum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4393 ! -property_value: IAO:0000589 "dorsal thalamus (HBA)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4698 ! -property_value: IAO:0000589 "cerebellar vermis (HBA)" xsd:string -intersection_of: UBERON:0004720 ! cerebellar vermis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:10142 ! -property_value: IAO:0000589 "piriform cortex (HBA)" xsd:string -intersection_of: UBERON:0004725 ! piriform cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9512 ! -property_value: IAO:0000589 "myelencephalon (HBA)" xsd:string -intersection_of: UBERON:0005290 ! myelencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12940 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIB (HBA)" xsd:string -intersection_of: UBERON:0005346 ! cerebellum vermis lobule VIIB -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4708 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIB (HBA)" xsd:string -intersection_of: UBERON:0005346 ! cerebellum vermis lobule VIIB -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12942 ! -property_value: IAO:0000589 "paramedian lobule (HBA)" xsd:string -intersection_of: UBERON:0005349 ! paramedian lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505586 ! -property_value: IAO:0000589 "gracile fasciculus (HBA)" xsd:string -intersection_of: UBERON:0005821 ! gracile fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505550 ! -property_value: IAO:0000589 "cuneate fasciculus (HBA)" xsd:string -intersection_of: UBERON:0005832 ! cuneate fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12938 ! -property_value: IAO:0000589 "ansiform lobule crus I (HBA)" xsd:string -intersection_of: UBERON:0005976 ! ansiform lobule crus I -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12939 ! -property_value: IAO:0000589 "ansiform lobule crus II (HBA)" xsd:string -intersection_of: UBERON:0005977 ! ansiform lobule crus II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9275 ! -property_value: IAO:0000589 "stria medullaris (HBA)" xsd:string -intersection_of: UBERON:0006086 ! stria medullaris -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505610 ! -property_value: IAO:0000589 "internal arcuate fiber bundle (HBA)" xsd:string -intersection_of: UBERON:0006087 ! internal arcuate fiber bundle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4103 ! -property_value: IAO:0000589 "inferior parietal cortex (HBA)" xsd:string -intersection_of: UBERON:0006088 ! inferior parietal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4184 ! -property_value: IAO:0000589 "cuneus cortex (HBA)" xsd:string -intersection_of: UBERON:0006092 ! cuneus cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4118 ! -property_value: IAO:0000589 "precuneus cortex (HBA)" xsd:string -intersection_of: UBERON:0006093 ! precuneus cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4096 ! -property_value: IAO:0000589 "superior parietal cortex (HBA)" xsd:string -intersection_of: UBERON:0006094 ! superior parietal cortex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9254 ! -property_value: IAO:0000589 "posterior column of fornix (HBA)" xsd:string -intersection_of: UBERON:0006115 ! posterior column of fornix -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9121 ! -property_value: IAO:0000589 "superior colliculus superficial gray layer (HBA)" xsd:string -intersection_of: UBERON:0006120 ! superior colliculus superficial gray layer -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4413 ! -property_value: IAO:0000589 "posterior lateral line (HBA)" xsd:string -intersection_of: UBERON:0006334 ! posterior lateral line -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9266 ! -property_value: IAO:0000589 "mammillothalamic axonal tract (HBA)" xsd:string -intersection_of: UBERON:0006696 ! mammillothalamic axonal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505178 ! -property_value: IAO:0000589 "mammillotegmental axonal tract (HBA)" xsd:string -intersection_of: UBERON:0006698 ! mammillotegmental axonal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9122 ! -property_value: IAO:0000589 "superficial white layer of superior colliculus (HBA)" xsd:string -intersection_of: UBERON:0006779 ! superficial white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9116 ! -property_value: IAO:0000589 "stratum lemnisci of superior colliculus (HBA)" xsd:string -intersection_of: UBERON:0006782 ! stratum lemnisci of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9120 ! -property_value: IAO:0000589 "middle white layer of superior colliculus (HBA)" xsd:string -intersection_of: UBERON:0006787 ! middle white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9119 ! -property_value: IAO:0000589 "middle gray layer of superior colliculus (HBA)" xsd:string -intersection_of: UBERON:0006788 ! middle gray layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9117 ! -property_value: IAO:0000589 "deep gray layer of superior colliculus (HBA)" xsd:string -intersection_of: UBERON:0006789 ! deep gray layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9118 ! -property_value: IAO:0000589 "deep white layer of superior colliculus (HBA)" xsd:string -intersection_of: UBERON:0006790 ! deep white layer of superior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9701 ! -property_value: IAO:0000589 "superior vestibular nucleus (HBA)" xsd:string -intersection_of: UBERON:0007227 ! superior vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9699 ! -property_value: IAO:0000589 "lateral vestibular nucleus (HBA)" xsd:string -intersection_of: UBERON:0007230 ! lateral vestibular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9562 ! -property_value: IAO:0000589 "dorsal accessory inferior olivary nucleus (HBA)" xsd:string -intersection_of: UBERON:0007249 ! dorsal accessory inferior olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9455 ! -property_value: IAO:0000589 "midbrain raphe nuclei (HBA)" xsd:string -intersection_of: UBERON:0007412 ! midbrain raphe nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4574 ! -property_value: IAO:0000589 "subparaventricular zone (HBA)" xsd:string -intersection_of: UBERON:0007626 ! subparaventricular zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9185 ! -property_value: IAO:0000589 "nucleus of trapezoid body (HBA)" xsd:string -intersection_of: UBERON:0007633 ! nucleus of trapezoid body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9234 ! -property_value: IAO:0000589 "hippocampus alveus (HBA)" xsd:string -intersection_of: UBERON:0007639 ! hippocampus alveus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9203 ! -property_value: IAO:0000589 "trigeminal nuclear complex (HBA)" xsd:string -intersection_of: UBERON:0007641 ! trigeminal nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504888 ! -property_value: IAO:0000589 "intermediate nucleus of lateral lemniscus (HBA)" xsd:string -intersection_of: UBERON:0007710 ! intermediate nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4677 ! -property_value: IAO:0000589 "dorsal premammillary nucleus (HBA)" xsd:string -intersection_of: UBERON:0007767 ! dorsal premammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4678 ! -property_value: IAO:0000589 "ventral premammillary nucleus (HBA)" xsd:string -intersection_of: UBERON:0007768 ! ventral premammillary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4543 ! -property_value: IAO:0000589 "medial preoptic region (HBA)" xsd:string -intersection_of: UBERON:0007769 ! medial preoptic region -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4288 ! -property_value: IAO:0000589 "left putamen (HBA)" xsd:string -intersection_of: UBERON:0008884 ! left putamen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4289 ! -property_value: IAO:0000589 "right putamen (HBA)" xsd:string -intersection_of: UBERON:0008885 ! right putamen -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4521 ! -property_value: IAO:0000589 "habenular nucleus (HBA)" xsd:string -intersection_of: UBERON:0008993 ! habenular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9653 ! -property_value: IAO:0000589 "nucleus of solitary tract (HBA)" xsd:string -intersection_of: UBERON:0009050 ! nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9237 ! -property_value: IAO:0000589 "ansa lenticularis (HBA)" xsd:string -intersection_of: UBERON:0009641 ! ansa lenticularis -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12952 ! -property_value: IAO:0000589 "central tegmental tract (HBA)" xsd:string -intersection_of: UBERON:0009643 ! central tegmental tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9613 ! -property_value: IAO:0000589 "lateral medullary reticular complex (HBA)" xsd:string -intersection_of: UBERON:0009775 ! lateral medullary reticular complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4308 ! -property_value: IAO:0000589 "basal nucleus of telencephalon (HBA)" xsd:string -intersection_of: UBERON:0010010 ! basal nucleus of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4275 ! -property_value: IAO:0000589 "collection of basal ganglia (HBA)" xsd:string -intersection_of: UBERON:0010011 ! collection of basal ganglia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4276 ! -property_value: IAO:0000589 "collection of basal ganglia (HBA)" xsd:string -intersection_of: UBERON:0010011 ! collection of basal ganglia -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9219 ! -property_value: IAO:0000589 "white matter of telencephalon (HBA)" xsd:string -intersection_of: UBERON:0011299 ! white matter of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9230 ! -property_value: IAO:0000589 "white matter of telencephalon (HBA)" xsd:string -intersection_of: UBERON:0011299 ! white matter of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9352 ! -property_value: IAO:0000589 "sulcus of brain (HBA)" xsd:string -intersection_of: UBERON:0013118 ! sulcus of brain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9470 ! -property_value: IAO:0000589 "caudal linear nucleus (HBA)" xsd:string -intersection_of: UBERON:0013733 ! caudal linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9471 ! -property_value: IAO:0000589 "rostral linear nucleus (HBA)" xsd:string -intersection_of: UBERON:0013734 ! rostral linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9472 ! -property_value: IAO:0000589 "interfascicular linear nucleus (HBA)" xsd:string -intersection_of: UBERON:0013736 ! interfascicular linear nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9474 ! -property_value: IAO:0000589 "paranigral nucleus (HBA)" xsd:string -intersection_of: UBERON:0013737 ! paranigral nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9473 ! -property_value: IAO:0000589 "parabrachial pigmental nucleus (HBA)" xsd:string -intersection_of: UBERON:0013738 ! parabrachial pigmental nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9083 ! -property_value: IAO:0000589 "pretectal nucleus (HBA)" xsd:string -intersection_of: UBERON:0014450 ! pretectal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9413 ! -property_value: IAO:0000589 "ansoparamedian fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0014468 ! ansoparamedian fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9410 ! -property_value: IAO:0000589 "primary fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0014471 ! primary fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9407 ! -property_value: IAO:0000589 "precentral fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0014473 ! precentral fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4446 ! -property_value: IAO:0000589 "anterodorsal nucleus of medial geniculate body (HBA)" xsd:string -intersection_of: UBERON:0014521 ! anterodorsal nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9246 ! -property_value: IAO:0000589 "extreme capsule (HBA)" xsd:string -intersection_of: UBERON:0014528 ! extreme capsule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505158 ! -property_value: IAO:0000589 "lenticular fasciculus (HBA)" xsd:string -intersection_of: UBERON:0014529 ! lenticular fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505098 ! -property_value: IAO:0000589 "external medullary lamina of thalamus (HBA)" xsd:string -intersection_of: UBERON:0014534 ! external medullary lamina of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9363 ! -property_value: IAO:0000589 "frontomarginal sulcus (HBA)" xsd:string -intersection_of: UBERON:0014544 ! frontomarginal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4576 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone (HBA)" xsd:string -intersection_of: UBERON:0014595 ! paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4577 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part (HBA)" xsd:string -intersection_of: UBERON:0014596 ! paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4578 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part (HBA)" xsd:string -intersection_of: UBERON:0014597 ! paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4579 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus descending division - forniceal part (HBA)" xsd:string -intersection_of: UBERON:0014598 ! paraventricular nucleus of the hypothalamus descending division - forniceal part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4581 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part (HBA)" xsd:string -intersection_of: UBERON:0014599 ! paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4582 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part (HBA)" xsd:string -intersection_of: UBERON:0014600 ! paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4583 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part (HBA)" xsd:string -intersection_of: UBERON:0014601 ! paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4575 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus descending division (HBA)" xsd:string -intersection_of: UBERON:0014602 ! paraventricular nucleus of the hypothalamus descending division -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4580 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus magnocellular division (HBA)" xsd:string -intersection_of: UBERON:0014603 ! paraventricular nucleus of the hypothalamus magnocellular division -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4586 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus parvocellular division (HBA)" xsd:string -intersection_of: UBERON:0014604 ! paraventricular nucleus of the hypothalamus parvocellular division -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4205 ! -property_value: IAO:0000589 "inferior occipital gyrus (HBA)" xsd:string -intersection_of: UBERON:0014608 ! inferior occipital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9359 ! -property_value: IAO:0000589 "middle frontal sulcus (HBA)" xsd:string -intersection_of: UBERON:0014618 ! middle frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9354 ! -property_value: IAO:0000589 "frontal sulcus (HBA)" xsd:string -intersection_of: UBERON:0014639 ! frontal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12931 ! -property_value: IAO:0000589 "hemisphere part of cerebellar anterior lobe (HBA)" xsd:string -intersection_of: UBERON:0014647 ! hemisphere part of cerebellar anterior lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12936 ! -property_value: IAO:0000589 "hemisphere part of cerebellar posterior lobe (HBA)" xsd:string -intersection_of: UBERON:0014648 ! hemisphere part of cerebellar posterior lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9377 ! -property_value: IAO:0000589 "temporal sulcus (HBA)" xsd:string -intersection_of: UBERON:0014687 ! temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:10150 ! -property_value: IAO:0000589 "middle temporal sulcus (HBA)" xsd:string -intersection_of: UBERON:0014689 ! middle temporal sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505650 ! -property_value: IAO:0000589 "spinal trigeminal tract (HBA)" xsd:string -intersection_of: UBERON:0014761 ! spinal trigeminal tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9224 ! -property_value: IAO:0000589 "body of corpus callosum (HBA)" xsd:string -intersection_of: UBERON:0015510 ! body of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9223 ! -property_value: IAO:0000589 "genu of corpus callosum (HBA)" xsd:string -intersection_of: UBERON:0015599 ! genu of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9226 ! -property_value: IAO:0000589 "rostrum of corpus callosum (HBA)" xsd:string -intersection_of: UBERON:0015703 ! rostrum of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9225 ! -property_value: IAO:0000589 "splenium of the corpus callosum (HBA)" xsd:string -intersection_of: UBERON:0015708 ! splenium of the corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504424 ! -property_value: IAO:0000589 "induseum griseum (HBA)" xsd:string -intersection_of: UBERON:0015793 ! induseum griseum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4009 ! -property_value: IAO:0000589 "frontal lobe (HBA)" xsd:string -intersection_of: UBERON:0016525 ! frontal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505382 ! -property_value: IAO:0000589 "white matter of midbrain (HBA)" xsd:string -intersection_of: UBERON:0016554 ! white matter of midbrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9624 ! -property_value: IAO:0000589 "parvocellular reticular nucleus (HBA)" xsd:string -intersection_of: UBERON:0016633 ! parvocellular reticular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9601 ! -property_value: IAO:0000589 "lateral paragigantocellular nucleus (HBA)" xsd:string -intersection_of: UBERON:0016824 ! lateral paragigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9600 ! -property_value: IAO:0000589 "dorsal paragigantocellular nucleus (HBA)" xsd:string -intersection_of: UBERON:0016825 ! dorsal paragigantocellular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9630 ! -property_value: IAO:0000589 "paratrigeminal nucleus (HBA)" xsd:string -intersection_of: UBERON:0016832 ! paratrigeminal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9650 ! -property_value: IAO:0000589 "retroambiguus nucleus (HBA)" xsd:string -intersection_of: UBERON:0016848 ! retroambiguus nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9298 ! -property_value: IAO:0000589 "white matter of myelencephalon (HBA)" xsd:string -intersection_of: UBERON:0019262 ! white matter of myelencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9284 ! -property_value: IAO:0000589 "uncinate fasciculus of the forebrain (HBA)" xsd:string -intersection_of: UBERON:0019275 ! uncinate fasciculus of the forebrain -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4900 ! -property_value: IAO:0000589 "inferior rostral gyrus (HBA)" xsd:string -intersection_of: UBERON:0019278 ! inferior rostral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4897 ! -property_value: IAO:0000589 "superior rostral gyrus (HBA)" xsd:string -intersection_of: UBERON:0019279 ! superior rostral gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505146 ! -property_value: IAO:0000589 "lateral longitudinal stria (HBA)" xsd:string -intersection_of: UBERON:0019283 ! lateral longitudinal stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9287 ! -property_value: IAO:0000589 "white matter of metencephalon (HBA)" xsd:string -intersection_of: UBERON:0019291 ! white matter of metencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505486 ! -property_value: IAO:0000589 "white matter of pontine tegmentum (HBA)" xsd:string -intersection_of: UBERON:0019293 ! white matter of pontine tegmentum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9220 ! -property_value: IAO:0000589 "commissure of telencephalon (HBA)" xsd:string -intersection_of: UBERON:0019294 ! commissure of telencephalon -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:12921 ! -property_value: IAO:0000589 "caudal intralaminar nuclear group (HBA)" xsd:string -intersection_of: UBERON:0019295 ! caudal intralaminar nuclear group -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9386 ! -property_value: IAO:0000589 "occipital sulcus (HBA)" xsd:string -intersection_of: UBERON:0019303 ! occipital sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9664 ! -property_value: IAO:0000589 "ventrolateral nucleus of solitary tract (HBA)" xsd:string -intersection_of: UBERON:0019312 ! ventrolateral nucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9551 ! -property_value: IAO:0000589 "epifascicular nucleus (HBA)" xsd:string -intersection_of: UBERON:0019314 ! epifascicular nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505202 ! -property_value: IAO:0000589 "medial longitudinal stria (HBA)" xsd:string -intersection_of: UBERON:0022234 ! medial longitudinal stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505274 ! -property_value: IAO:0000589 "anterior thalamic peduncle (HBA)" xsd:string -intersection_of: UBERON:0022237 ! anterior thalamic peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505110 ! -property_value: IAO:0000589 "inferior thalamic peduncle (HBA)" xsd:string -intersection_of: UBERON:0022242 ! inferior thalamic peduncle -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4053 ! -property_value: IAO:0000589 "anterior orbital gyrus (HBA)" xsd:string -intersection_of: UBERON:0022244 ! anterior orbital gyrus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9281 ! -property_value: IAO:0000589 "superior longitudinal fasciculus (HBA)" xsd:string -intersection_of: UBERON:0022246 ! superior longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505338 ! -property_value: IAO:0000589 "subcallosal fasciculus (HBA)" xsd:string -intersection_of: UBERON:0022250 ! subcallosal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9355 ! -property_value: IAO:0000589 "precentral sulcus (HBA)" xsd:string -intersection_of: UBERON:0022252 ! precentral sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505374 ! -property_value: IAO:0000589 "ventral thalamic fasciculus (HBA)" xsd:string -intersection_of: UBERON:0022254 ! ventral thalamic fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505350 ! -property_value: IAO:0000589 "subthalamic fasciculus (HBA)" xsd:string -intersection_of: UBERON:0022256 ! subthalamic fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9548 ! -property_value: IAO:0000589 "endolemniscal nucleus (HBA)" xsd:string -intersection_of: UBERON:0022258 ! endolemniscal nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504974 ! -property_value: IAO:0000589 "auditory radiation (HBA)" xsd:string -intersection_of: UBERON:0022262 ! auditory radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9311 ! -property_value: IAO:0000589 "optic radiation (HBA)" xsd:string -intersection_of: UBERON:0022264 ! optic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4171 ! -property_value: IAO:0000589 "planum temporale (HBA)" xsd:string -intersection_of: UBERON:0022268 ! planum temporale -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505490 ! -property_value: IAO:0000589 "corticopontine fibers (HBA)" xsd:string -intersection_of: UBERON:0022271 ! corticopontine fibers -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505058 ! -property_value: IAO:0000589 "corticobulbar tract (HBA)" xsd:string -intersection_of: UBERON:0022272 ! corticobulbar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505470 ! -property_value: IAO:0000589 "pontocerebellar tract (HBA)" xsd:string -intersection_of: UBERON:0022421 ! pontocerebellar tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9486 ! -property_value: IAO:0000589 "sagulum nucleus (HBA)" xsd:string -intersection_of: UBERON:0022423 ! sagulum nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9182 ! -property_value: IAO:0000589 "primary superior olive (HBA)" xsd:string -intersection_of: UBERON:0022434 ! primary superior olive -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4584 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone (HBA)" xsd:string -intersection_of: UBERON:0022783 ! paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4585 ! -property_value: IAO:0000589 "paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone (HBA)" xsd:string -intersection_of: UBERON:0022791 ! paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4447 ! -property_value: IAO:0000589 "posterodorsal nucleus of medial geniculate body (HBA)" xsd:string -intersection_of: UBERON:0023094 ! posterodorsal nucleus of medial geniculate body -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9661 ! -property_value: IAO:0000589 "medial subnucleus of solitary tract (HBA)" xsd:string -intersection_of: UBERON:0023390 ! medial subnucleus of solitary tract -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4177 ! -property_value: IAO:0000589 "planum polare (HBA)" xsd:string -intersection_of: UBERON:0023861 ! planum polare -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9384 ! -property_value: IAO:0000589 "angular sulcus (HBA)" xsd:string -intersection_of: UBERON:0026725 ! angular sulcus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4591 ! -property_value: IAO:0000589 "suprachiasmatic nucleus dorsomedial part (HBA)" xsd:string -intersection_of: UBERON:0027768 ! suprachiasmatic nucleus dorsomedial part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4592 ! -property_value: IAO:0000589 "suprachiasmatic nucleus ventrolateral part (HBA)" xsd:string -intersection_of: UBERON:0027771 ! suprachiasmatic nucleus ventrolateral part -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4717 ! -property_value: IAO:0000589 "paravermic lobule II (HBA)" xsd:string -intersection_of: UBERON:0028918 ! paravermic lobule II -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4718 ! -property_value: IAO:0000589 "paravermic lobule III (HBA)" xsd:string -intersection_of: UBERON:0028919 ! paravermic lobule III -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4719 ! -property_value: IAO:0000589 "paravermic lobule IV (HBA)" xsd:string -intersection_of: UBERON:0028920 ! paravermic lobule IV -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4728 ! -property_value: IAO:0000589 "paravermic lobule IX (HBA)" xsd:string -intersection_of: UBERON:0028921 ! paravermic lobule IX -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4720 ! -property_value: IAO:0000589 "paravermic lobule V (HBA)" xsd:string -intersection_of: UBERON:0028922 ! paravermic lobule V -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4722 ! -property_value: IAO:0000589 "paravermic lobule VI (HBA)" xsd:string -intersection_of: UBERON:0028923 ! paravermic lobule VI -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4330 ! -property_value: IAO:0000589 "amygdalohippocampal area (HBA)" xsd:string -intersection_of: UBERON:0034673 ! amygdalohippocampal area -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9393 ! -property_value: IAO:0000589 "sulcus of limbic lobe (HBA)" xsd:string -intersection_of: UBERON:0034674 ! sulcus of limbic lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505518 ! -property_value: IAO:0000589 "medial olfactory stria (HBA)" xsd:string -intersection_of: UBERON:0034734 ! medial olfactory stria -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9260 ! -property_value: IAO:0000589 "inferior longitudinal fasciculus (HBA)" xsd:string -intersection_of: UBERON:0034743 ! inferior longitudinal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9269 ! -property_value: IAO:0000589 "occipitofrontal fasciculus (HBA)" xsd:string -intersection_of: UBERON:0034754 ! occipitofrontal fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505250 ! -property_value: IAO:0000589 "perforant path (HBA)" xsd:string -intersection_of: UBERON:0034931 ! perforant path -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4427 ! -property_value: IAO:0000589 "basal ventral medial nucleus of thalamus (HBA)" xsd:string -intersection_of: UBERON:0034993 ! basal ventral medial nucleus of thalamus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504452 ! -property_value: IAO:0000589 "amygdalohippocampal area, magnocellular division (HBA)" xsd:string -intersection_of: UBERON:0035027 ! amygdalohippocampal area, magnocellular division -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504456 ! -property_value: IAO:0000589 "amygdalohippocampal area, parvocellular division (HBA)" xsd:string -intersection_of: UBERON:0035028 ! amygdalohippocampal area, parvocellular division -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9409 ! -property_value: IAO:0000589 "intraculminate fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0035922 ! intraculminate fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265504962 ! -property_value: IAO:0000589 "radiation of corpus callosum (HBA)" xsd:string -intersection_of: UBERON:0035924 ! radiation of corpus callosum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9399 ! -property_value: IAO:0000589 "central sulcus of insula (HBA)" xsd:string -intersection_of: UBERON:0035925 ! central sulcus of insula -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9408 ! -property_value: IAO:0000589 "preculminate fissure of cerebellum (HBA)" xsd:string -intersection_of: UBERON:0035926 ! preculminate fissure of cerebellum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9370 ! -property_value: IAO:0000589 "sulcus of parietal lobe (HBA)" xsd:string -intersection_of: UBERON:0035927 ! sulcus of parietal lobe -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4594 ! -property_value: IAO:0000589 "dorsolateral part of supraoptic nucleus (HBA)" xsd:string -intersection_of: UBERON:0035928 ! dorsolateral part of supraoptic nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9181 ! -property_value: IAO:0000589 "retro-olivary nucleus (HBA)" xsd:string -intersection_of: UBERON:0035930 ! retro-olivary nucleus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505286 ! -property_value: IAO:0000589 "sagittal stratum (HBA)" xsd:string -intersection_of: UBERON:0035931 ! sagittal stratum -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4071 ! -property_value: IAO:0000589 "anterior segment of paracentral lobule (HBA)" xsd:string -intersection_of: UBERON:0035932 ! anterior segment of paracentral lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4125 ! -property_value: IAO:0000589 "posterior segment of paracentral lobule (HBA)" xsd:string -intersection_of: UBERON:0035934 ! posterior segment of paracentral lobule -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505214 ! -property_value: IAO:0000589 "Meyer's loop of optic radiation (HBA)" xsd:string -intersection_of: UBERON:0035935 ! Meyer's loop of optic radiation -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9231 ! -property_value: IAO:0000589 "arcuate fasciculus (HBA)" xsd:string -intersection_of: UBERON:0035937 ! arcuate fasciculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:265505538 ! -property_value: IAO:0000589 "amiculum of inferior olive (HBA)" xsd:string -intersection_of: UBERON:0035938 ! amiculum of inferior olive -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9588 ! -property_value: IAO:0000589 "central medullary reticular nuclear complex (HBA)" xsd:string -intersection_of: UBERON:0035940 ! central medullary reticular nuclear complex -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:9483 ! -property_value: IAO:0000589 "nucleus of the brachium of the inferior colliculus (HBA)" xsd:string -intersection_of: UBERON:0036012 ! nucleus of the brachium of the inferior colliculus -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4730 ! -property_value: IAO:0000589 "paravermic lobule X (HBA)" xsd:string -intersection_of: UBERON:0036043 ! paravermic lobule X -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4706 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIAf (HBA)" xsd:string -intersection_of: UBERON:0036044 ! cerebellum vermis lobule VIIAf -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4707 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIIAt (HBA)" xsd:string -intersection_of: UBERON:0036065 ! cerebellum vermis lobule VIIAt -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:4275 ! -property_value: IAO:0000589 "cerebral nuclei (HBA)" xsd:string -intersection_of: UBERON:8440012 ! cerebral nuclei -intersection_of: part_of NCBITaxon:9606 - -[Term] -id: HBA:ENTITY -name: HBA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-hba.owl b/src/ontology/bridge/uberon-bridge-to-hba.owl index 086d8d6a70..af667acec8 100644 --- a/src/ontology/bridge/uberon-bridge-to-hba.owl +++ b/src/ontology/bridge/uberon-bridge-to-hba.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -339,8 +72,7 @@ - piriform cortex (HBA) - HBA:10142 + piriform cortex (human) @@ -359,8 +91,7 @@ - olfactory tubercle (HBA) - HBA:10145 + olfactory tubercle (human) @@ -379,8 +110,7 @@ - central gray substance of pons (HBA) - HBA:10147 + central gray substance of pons (human) @@ -399,8 +129,7 @@ - middle temporal sulcus (HBA) - HBA:10150 + middle temporal sulcus (human) @@ -419,8 +148,7 @@ - dentate gyrus of hippocampal formation (HBA) - HBA:12891 + dentate gyrus of hippocampal formation (human) @@ -439,8 +167,7 @@ - CA1 field of hippocampus (HBA) - HBA:12892 + CA1 field of hippocampus (human) @@ -459,8 +186,7 @@ - CA2 field of hippocampus (HBA) - HBA:12893 + CA2 field of hippocampus (human) @@ -479,8 +205,7 @@ - CA3 field of hippocampus (HBA) - HBA:12894 + CA3 field of hippocampus (human) @@ -499,8 +224,7 @@ - CA4 field of hippocampus (HBA) - HBA:12895 + CA4 field of hippocampus (human) @@ -519,8 +243,7 @@ - subiculum (HBA) - HBA:12896 + subiculum (human) @@ -539,8 +262,7 @@ - lateral globus pallidus (HBA) - HBA:12897 + lateral globus pallidus (human) @@ -559,8 +281,7 @@ - medial globus pallidus (HBA) - HBA:12898 + medial globus pallidus (human) @@ -579,8 +300,7 @@ - body of caudate nucleus (HBA) - HBA:12899 + body of caudate nucleus (human) @@ -599,8 +319,7 @@ - head of caudate nucleus (HBA) - HBA:12900 + head of caudate nucleus (human) @@ -619,8 +338,7 @@ - tail of caudate nucleus (HBA) - HBA:12901 + tail of caudate nucleus (human) @@ -639,8 +357,7 @@ - anterior hypothalamic region (HBA) - HBA:12902 + anterior hypothalamic region (human) @@ -659,8 +376,7 @@ - anterior nucleus of hypothalamus (HBA) - HBA:12903 + anterior nucleus of hypothalamus (human) @@ -679,8 +395,7 @@ - paraventricular nucleus of hypothalamus (HBA) - HBA:12905 + paraventricular nucleus of hypothalamus (human) @@ -699,8 +414,7 @@ - anterior paraventricular nucleus of thalamus (HBA) - HBA:12906 + anterior paraventricular nucleus of thalamus (human) @@ -719,8 +433,7 @@ - supraoptic nucleus (HBA) - HBA:12907 + supraoptic nucleus (human) @@ -739,8 +452,7 @@ - suprachiasmatic nucleus (HBA) - HBA:12908 + suprachiasmatic nucleus (human) @@ -759,8 +471,7 @@ - mammillary body (HBA) - HBA:12909 + mammillary body (human) @@ -779,8 +490,7 @@ - posterior nucleus of hypothalamus (HBA) - HBA:12910 + posterior nucleus of hypothalamus (human) @@ -799,8 +509,7 @@ - supramammillary nucleus (HBA) - HBA:12911 + supramammillary nucleus (human) @@ -819,8 +528,7 @@ - tuberomammillary nucleus (HBA) - HBA:12912 + tuberomammillary nucleus (human) @@ -839,8 +547,7 @@ - arcuate nucleus of hypothalamus (HBA) - HBA:12913 + arcuate nucleus of hypothalamus (human) @@ -859,8 +566,7 @@ - dorsomedial nucleus of hypothalamus (HBA) - HBA:12914 + dorsomedial nucleus of hypothalamus (human) @@ -879,8 +585,7 @@ - lateral tuberal nucleus (HBA) - HBA:12915 + lateral tuberal nucleus (human) @@ -899,8 +604,7 @@ - median eminence of neurohypophysis (HBA) - HBA:12916 + median eminence of neurohypophysis (human) @@ -919,8 +623,7 @@ - perifornical nucleus (HBA) - HBA:12917 + perifornical nucleus (human) @@ -939,8 +642,7 @@ - ventromedial nucleus of hypothalamus (HBA) - HBA:12919 + ventromedial nucleus of hypothalamus (human) @@ -959,8 +661,7 @@ - caudal intralaminar nuclear group (HBA) - HBA:12921 + caudal intralaminar nuclear group (human) @@ -979,8 +680,7 @@ - lateral nuclear group of thalamus (HBA) - HBA:12923 + lateral nuclear group of thalamus (human) @@ -999,8 +699,7 @@ - ventral lateral nucleus of thalamus (HBA) - HBA:12925 + ventral lateral nucleus of thalamus (human) @@ -1019,8 +718,7 @@ - medial geniculate body (HBA) - HBA:12926 + medial geniculate body (human) @@ -1039,8 +737,7 @@ - rostral intralaminar nuclear group (HBA) - HBA:12929 + rostral intralaminar nuclear group (human) @@ -1059,8 +756,7 @@ - cerebellar hemisphere (HBA) - HBA:12930 + cerebellar hemisphere (human) @@ -1079,8 +775,7 @@ - hemisphere part of cerebellar anterior lobe (HBA) - HBA:12931 + hemisphere part of cerebellar anterior lobe (human) @@ -1099,8 +794,7 @@ - cerebellum vermis lobule III (HBA) - HBA:12933 + cerebellum vermis lobule III (human) @@ -1119,8 +813,7 @@ - cerebellum vermis lobule IV (HBA) - HBA:12934 + cerebellum vermis lobule IV (human) @@ -1139,8 +832,7 @@ - cerebellum vermis lobule V (HBA) - HBA:12935 + cerebellum vermis lobule V (human) @@ -1159,8 +851,7 @@ - hemisphere part of cerebellar posterior lobe (HBA) - HBA:12936 + hemisphere part of cerebellar posterior lobe (human) @@ -1179,8 +870,7 @@ - cerebellum vermis lobule VI (HBA) - HBA:12937 + cerebellum vermis lobule VI (human) @@ -1199,8 +889,7 @@ - ansiform lobule crus I (HBA) - HBA:12938 + ansiform lobule crus I (human) @@ -1219,8 +908,7 @@ - ansiform lobule crus II (HBA) - HBA:12939 + ansiform lobule crus II (human) @@ -1239,8 +927,7 @@ - cerebellum vermis lobule VIIB (HBA) - HBA:12940 + cerebellum vermis lobule VIIB (human) @@ -1259,8 +946,7 @@ - paramedian lobule (HBA) - HBA:12942 + paramedian lobule (human) @@ -1279,8 +965,7 @@ - cerebellum vermis lobule IX (HBA) - HBA:12943 + cerebellum vermis lobule IX (human) @@ -1299,8 +984,7 @@ - flocculonodular lobe (HBA) - HBA:12944 + flocculonodular lobe (human) @@ -1319,8 +1003,7 @@ - flocculus (HBA) - HBA:12945 + flocculus (human) @@ -1339,8 +1022,7 @@ - dentate nucleus (HBA) - HBA:12946 + dentate nucleus (human) @@ -1359,8 +1041,7 @@ - emboliform nucleus (HBA) - HBA:12947 + emboliform nucleus (human) @@ -1379,8 +1060,7 @@ - fastigial nucleus (HBA) - HBA:12948 + fastigial nucleus (human) @@ -1399,8 +1079,7 @@ - cerebellum globose nucleus (HBA) - HBA:12949 + cerebellum globose nucleus (human) @@ -1419,8 +1098,7 @@ - central tegmental tract (HBA) - HBA:12952 + central tegmental tract (human) @@ -1439,8 +1117,7 @@ - habenulo-interpeduncular tract (HBA) - HBA:12953 + habenulo-interpeduncular tract (human) @@ -1459,8 +1136,7 @@ - lateral lemniscus (HBA) - HBA:12958 + lateral lemniscus (human) @@ -1479,8 +1155,7 @@ - medial lemniscus (HBA) - HBA:12961 + medial lemniscus (human) @@ -1499,8 +1174,7 @@ - pyramidal decussation (HBA) - HBA:12965 + pyramidal decussation (human) @@ -1519,8 +1193,7 @@ - septal nuclear complex (HBA) - HBA:13002 + septal nuclear complex (human) @@ -1539,8 +1212,7 @@ - substantia innominata (HBA) - HBA:13003 + substantia innominata (human) @@ -1559,8 +1231,7 @@ - olfactory cortex (HBA) - HBA:265504406 + olfactory cortex (human) @@ -1579,8 +1250,7 @@ - induseum griseum (HBA) - HBA:265504424 + induseum griseum (human) @@ -1599,8 +1269,7 @@ - amygdalohippocampal area, magnocellular division (HBA) - HBA:265504452 + amygdalohippocampal area, magnocellular division (human) @@ -1619,8 +1288,7 @@ - amygdalohippocampal area, parvocellular division (HBA) - HBA:265504456 + amygdalohippocampal area, parvocellular division (human) @@ -1639,8 +1307,7 @@ - anterior amygdaloid area (HBA) - HBA:265504476 + anterior amygdaloid area (human) @@ -1659,8 +1326,7 @@ - island of Calleja (HBA) - HBA:265504792 + island of Calleja (human) @@ -1679,8 +1345,7 @@ - dorsal nucleus of medial geniculate body (HBA) - HBA:265504828 + dorsal nucleus of medial geniculate body (human) @@ -1699,8 +1364,7 @@ - dorsal tegmental nucleus (HBA) - HBA:265504876 + dorsal tegmental nucleus (human) @@ -1719,8 +1383,7 @@ - intermediate nucleus of lateral lemniscus (HBA) - HBA:265504888 + intermediate nucleus of lateral lemniscus (human) @@ -1739,8 +1402,7 @@ - central gray substance of medulla (HBA) - HBA:265504914 + central gray substance of medulla (human) @@ -1759,8 +1421,7 @@ - radiation of corpus callosum (HBA) - HBA:265504962 + radiation of corpus callosum (human) @@ -1779,8 +1440,7 @@ - tapetum of corpus callosum (HBA) - HBA:265504966 + tapetum of corpus callosum (human) @@ -1799,8 +1459,7 @@ - auditory radiation (HBA) - HBA:265504974 + auditory radiation (human) @@ -1819,8 +1478,7 @@ - corona radiata of neuraxis (HBA) - HBA:265505046 + corona radiata of neuraxis (human) @@ -1839,8 +1497,7 @@ - corticobulbar tract (HBA) - HBA:265505058 + corticobulbar tract (human) @@ -1859,8 +1516,7 @@ - lateral medullary lamina of globus pallidus (HBA) - HBA:265505086 + lateral medullary lamina of globus pallidus (human) @@ -1879,8 +1535,7 @@ - external medullary lamina of thalamus (HBA) - HBA:265505098 + external medullary lamina of thalamus (human) @@ -1899,8 +1554,7 @@ - inferior thalamic peduncle (HBA) - HBA:265505110 + inferior thalamic peduncle (human) @@ -1919,8 +1573,7 @@ - medial medullary lamina of globus pallidus (HBA) - HBA:265505122 + medial medullary lamina of globus pallidus (human) @@ -1939,8 +1592,7 @@ - internal medullary lamina of thalamus (HBA) - HBA:265505134 + internal medullary lamina of thalamus (human) @@ -1959,8 +1611,7 @@ - lateral longitudinal stria (HBA) - HBA:265505146 + lateral longitudinal stria (human) @@ -1979,8 +1630,7 @@ - lenticular fasciculus (HBA) - HBA:265505158 + lenticular fasciculus (human) @@ -1999,8 +1649,7 @@ - mammillary peduncle (HBA) - HBA:265505166 + mammillary peduncle (human) @@ -2019,8 +1668,7 @@ - mammillotegmental axonal tract (HBA) - HBA:265505178 + mammillotegmental axonal tract (human) @@ -2039,8 +1687,7 @@ - medial forebrain bundle (HBA) - HBA:265505190 + medial forebrain bundle (human) @@ -2059,8 +1706,7 @@ - medial longitudinal stria (HBA) - HBA:265505202 + medial longitudinal stria (human) @@ -2079,8 +1725,7 @@ - Meyer's loop of optic radiation (HBA) - HBA:265505214 + Meyer's loop of optic radiation (human) @@ -2099,8 +1744,7 @@ - perforant path (HBA) - HBA:265505250 + perforant path (human) @@ -2119,8 +1763,7 @@ - anterior thalamic peduncle (HBA) - HBA:265505274 + anterior thalamic peduncle (human) @@ -2139,8 +1782,7 @@ - sagittal stratum (HBA) - HBA:265505286 + sagittal stratum (human) @@ -2159,8 +1801,7 @@ - stratum zonale of thalamus (HBA) - HBA:265505326 + stratum zonale of thalamus (human) @@ -2179,8 +1820,7 @@ - subcallosal fasciculus (HBA) - HBA:265505338 + subcallosal fasciculus (human) @@ -2199,8 +1839,7 @@ - subthalamic fasciculus (HBA) - HBA:265505350 + subthalamic fasciculus (human) @@ -2219,8 +1858,7 @@ - superior precentral sulcus (HBA) - HBA:265505362 + superior precentral sulcus (human) @@ -2239,8 +1877,7 @@ - ventral thalamic fasciculus (HBA) - HBA:265505374 + ventral thalamic fasciculus (human) @@ -2259,8 +1896,7 @@ - white matter of midbrain (HBA) - HBA:265505382 + white matter of midbrain (human) @@ -2279,8 +1915,7 @@ - brachium of inferior colliculus (HBA) - HBA:265505386 + brachium of inferior colliculus (human) @@ -2299,8 +1934,7 @@ - brachium of superior colliculus (HBA) - HBA:265505398 + brachium of superior colliculus (human) @@ -2319,8 +1953,7 @@ - commissure of inferior colliculus (HBA) - HBA:265505434 + commissure of inferior colliculus (human) @@ -2339,8 +1972,7 @@ - mesencephalic tract of trigeminal nerve (HBA) - HBA:265505458 + mesencephalic tract of trigeminal nerve (human) @@ -2359,8 +1991,7 @@ - pontocerebellar tract (HBA) - HBA:265505470 + pontocerebellar tract (human) @@ -2379,8 +2010,7 @@ - decussation of superior cerebellar peduncle (HBA) - HBA:265505482 + decussation of superior cerebellar peduncle (human) @@ -2399,8 +2029,7 @@ - white matter of pontine tegmentum (HBA) - HBA:265505486 + white matter of pontine tegmentum (human) @@ -2419,8 +2048,7 @@ - corticopontine fibers (HBA) - HBA:265505490 + corticopontine fibers (human) @@ -2439,8 +2067,7 @@ - longitudinal pontine fibers (HBA) - HBA:265505502 + longitudinal pontine fibers (human) @@ -2459,8 +2086,7 @@ - lateral olfactory stria (HBA) - HBA:265505514 + lateral olfactory stria (human) @@ -2479,8 +2105,7 @@ - medial olfactory stria (HBA) - HBA:265505518 + medial olfactory stria (human) @@ -2499,8 +2124,7 @@ - amiculum of inferior olive (HBA) - HBA:265505538 + amiculum of inferior olive (human) @@ -2519,8 +2143,7 @@ - cuneate fasciculus (HBA) - HBA:265505550 + cuneate fasciculus (human) @@ -2539,8 +2162,7 @@ - corticospinal tract (HBA) - HBA:265505574 + corticospinal tract (human) @@ -2559,8 +2181,7 @@ - gracile fasciculus (HBA) - HBA:265505586 + gracile fasciculus (human) @@ -2579,8 +2200,7 @@ - internal arcuate fiber bundle (HBA) - HBA:265505610 + internal arcuate fiber bundle (human) @@ -2599,8 +2219,7 @@ - decussation of medial lemniscus (HBA) - HBA:265505622 + decussation of medial lemniscus (human) @@ -2619,8 +2238,7 @@ - solitary tract (HBA) - HBA:265505626 + solitary tract (human) @@ -2639,8 +2257,7 @@ - spinal trigeminal tract (HBA) - HBA:265505650 + spinal trigeminal tract (human) @@ -2659,8 +2276,7 @@ - tectospinal tract (HBA) - HBA:265505662 + tectospinal tract (human) @@ -2679,8 +2295,7 @@ - midbrain cerebral aqueduct (HBA) - HBA:265505702 + midbrain cerebral aqueduct (human) @@ -2699,8 +2314,7 @@ - brain (HBA) - HBA:4005 + brain (human) @@ -2719,8 +2333,7 @@ - gray matter (HBA) - HBA:4006 + gray matter (human) @@ -2739,8 +2352,7 @@ - telencephalon (HBA) - HBA:4007 + telencephalon (human) @@ -2759,8 +2371,7 @@ - cerebral cortex (HBA) - HBA:4008 + cerebral cortex (human) @@ -2779,8 +2390,7 @@ - frontal lobe (HBA) - HBA:4009 + frontal lobe (human) @@ -2799,8 +2409,7 @@ - precentral gyrus (HBA) - HBA:4010 + precentral gyrus (human) @@ -2819,8 +2428,7 @@ - superior frontal gyrus (HBA) - HBA:4021 + superior frontal gyrus (human) @@ -2839,8 +2447,7 @@ - middle frontal gyrus (HBA) - HBA:4028 + middle frontal gyrus (human) @@ -2859,8 +2466,7 @@ - inferior frontal gyrus (HBA) - HBA:4035 + inferior frontal gyrus (human) @@ -2879,8 +2485,7 @@ - triangular part of inferior frontal gyrus (HBA) - HBA:4038 + triangular part of inferior frontal gyrus (human) @@ -2899,8 +2504,7 @@ - opercular part of inferior frontal gyrus (HBA) - HBA:4041 + opercular part of inferior frontal gyrus (human) @@ -2919,8 +2523,7 @@ - orbital part of inferior frontal gyrus (HBA) - HBA:4044 + orbital part of inferior frontal gyrus (human) @@ -2939,8 +2542,7 @@ - gyrus rectus (HBA) - HBA:4047 + gyrus rectus (human) @@ -2959,8 +2561,7 @@ - medial orbital gyrus (HBA) - HBA:4050 + medial orbital gyrus (human) @@ -2979,8 +2580,7 @@ - anterior orbital gyrus (HBA) - HBA:4053 + anterior orbital gyrus (human) @@ -2999,8 +2599,7 @@ - posterior orbital gyrus (HBA) - HBA:4056 + posterior orbital gyrus (human) @@ -3019,8 +2618,7 @@ - lateral orbital gyrus (HBA) - HBA:4059 + lateral orbital gyrus (human) @@ -3039,8 +2637,7 @@ - paraterminal gyrus (HBA) - HBA:4065 + paraterminal gyrus (human) @@ -3059,8 +2656,7 @@ - anterior segment of paracentral lobule (HBA) - HBA:4071 + anterior segment of paracentral lobule (human) @@ -3079,8 +2675,7 @@ - frontal operculum (HBA) - HBA:4078 + frontal operculum (human) @@ -3099,8 +2694,7 @@ - parietal lobe (HBA) - HBA:4084 + parietal lobe (human) @@ -3119,8 +2713,7 @@ - postcentral gyrus (HBA) - HBA:4085 + postcentral gyrus (human) @@ -3139,8 +2732,7 @@ - superior parietal cortex (HBA) - HBA:4096 + superior parietal cortex (human) @@ -3159,8 +2751,7 @@ - inferior parietal cortex (HBA) - HBA:4103 + inferior parietal cortex (human) @@ -3179,8 +2770,7 @@ - supramarginal gyrus (HBA) - HBA:4104 + supramarginal gyrus (human) @@ -3199,8 +2789,7 @@ - angular gyrus (HBA) - HBA:4111 + angular gyrus (human) @@ -3219,8 +2808,7 @@ - precuneus cortex (HBA) - HBA:4118 + precuneus cortex (human) @@ -3239,8 +2827,7 @@ - posterior segment of paracentral lobule (HBA) - HBA:4125 + posterior segment of paracentral lobule (human) @@ -3259,8 +2846,7 @@ - temporal lobe (HBA) - HBA:4132 + temporal lobe (human) @@ -3279,8 +2865,7 @@ - superior temporal gyrus (HBA) - HBA:4133 + superior temporal gyrus (human) @@ -3299,8 +2884,7 @@ - middle temporal gyrus (HBA) - HBA:4140 + middle temporal gyrus (human) @@ -3319,8 +2903,7 @@ - inferior temporal gyrus (HBA) - HBA:4147 + inferior temporal gyrus (human) @@ -3339,8 +2922,7 @@ - fusiform gyrus (HBA) - HBA:4156 + fusiform gyrus (human) @@ -3359,8 +2941,7 @@ - anterior transverse temporal gyrus (HBA) - HBA:4165 + anterior transverse temporal gyrus (human) @@ -3379,8 +2960,7 @@ - planum temporale (HBA) - HBA:4171 + planum temporale (human) @@ -3399,8 +2979,7 @@ - temporal pole (HBA) - HBA:4174 + temporal pole (human) @@ -3419,8 +2998,7 @@ - planum polare (HBA) - HBA:4177 + planum polare (human) @@ -3439,8 +3017,7 @@ - occipital lobe (HBA) - HBA:4180 + occipital lobe (human) @@ -3459,8 +3036,7 @@ - occipital pole (HBA) - HBA:4181 + occipital pole (human) @@ -3479,8 +3055,7 @@ - cuneus cortex (HBA) - HBA:4184 + cuneus cortex (human) @@ -3499,8 +3074,7 @@ - lingual gyrus (HBA) - HBA:4191 + lingual gyrus (human) @@ -3519,8 +3093,7 @@ - inferior occipital gyrus (HBA) - HBA:4205 + inferior occipital gyrus (human) @@ -3539,8 +3112,7 @@ - superior occipital gyrus (HBA) - HBA:4212 + superior occipital gyrus (human) @@ -3559,8 +3131,7 @@ - limbic lobe (HBA) - HBA:4219 + limbic lobe (human) @@ -3579,8 +3150,7 @@ - cingulate gyrus (HBA) - HBA:4220 + cingulate gyrus (human) @@ -3599,8 +3169,7 @@ - parahippocampal gyrus (HBA) - HBA:4242 + parahippocampal gyrus (human) @@ -3619,8 +3188,7 @@ - hippocampal formation (HBA) - HBA:4249 + hippocampal formation (human) @@ -3639,8 +3207,7 @@ - presubiculum (HBA) - HBA:4252 + presubiculum (human) @@ -3659,8 +3226,7 @@ - parasubiculum (HBA) - HBA:4253 + parasubiculum (human) @@ -3679,30 +3245,7 @@ - insula (HBA) - HBA:4268 - - - - - - - - - - - - - - - - - - - - cerebral nuclei (HBA) - collection of basal ganglia (HBA) - HBA:4275 + insula (human) @@ -3721,8 +3264,7 @@ - collection of basal ganglia (HBA) - HBA:4276 + collection of basal ganglia (human) @@ -3741,8 +3283,7 @@ - striatum (HBA) - HBA:4277 + striatum (human) @@ -3761,8 +3302,7 @@ - caudate nucleus (HBA) - HBA:4278 + caudate nucleus (human) @@ -3781,8 +3321,7 @@ - putamen (HBA) - HBA:4287 + putamen (human) @@ -3801,8 +3340,7 @@ - left putamen (HBA) - HBA:4288 + left putamen (human) @@ -3821,8 +3359,7 @@ - right putamen (HBA) - HBA:4289 + right putamen (human) @@ -3841,8 +3378,7 @@ - nucleus accumbens (HBA) - HBA:4290 + nucleus accumbens (human) @@ -3861,8 +3397,7 @@ - globus pallidus (HBA) - HBA:4293 + globus pallidus (human) @@ -3881,8 +3416,7 @@ - basal forebrain (HBA) - HBA:4300 + basal forebrain (human) @@ -3901,8 +3435,7 @@ - medial septal nucleus (HBA) - HBA:4302 + medial septal nucleus (human) @@ -3921,8 +3454,7 @@ - lateral septal nucleus (HBA) - HBA:4303 + lateral septal nucleus (human) @@ -3941,8 +3473,7 @@ - basal nucleus of telencephalon (HBA) - HBA:4308 + basal nucleus of telencephalon (human) @@ -3961,8 +3492,7 @@ - nucleus of diagonal band (HBA) - HBA:4309 + nucleus of diagonal band (human) @@ -3981,8 +3511,7 @@ - nucleus of anterior commissure (HBA) - HBA:4312 + nucleus of anterior commissure (human) @@ -4001,8 +3530,7 @@ - bed nucleus of stria terminalis (HBA) - HBA:4313 + bed nucleus of stria terminalis (human) @@ -4021,8 +3549,7 @@ - claustrum of brain (HBA) - HBA:4321 + claustrum of brain (human) @@ -4041,8 +3568,7 @@ - anterior olfactory nucleus (HBA) - HBA:4324 + anterior olfactory nucleus (human) @@ -4061,8 +3587,7 @@ - amygdala (HBA) - HBA:4327 + amygdala (human) @@ -4081,8 +3606,7 @@ - amygdalohippocampal area (HBA) - HBA:4330 + amygdalohippocampal area (human) @@ -4101,8 +3625,7 @@ - basal amygdaloid nucleus (HBA) - HBA:4341 + basal amygdaloid nucleus (human) @@ -4121,8 +3644,7 @@ - accessory basal amygdaloid nucleus (HBA) - HBA:4350 + accessory basal amygdaloid nucleus (human) @@ -4141,8 +3663,7 @@ - central amygdaloid nucleus (HBA) - HBA:4359 + central amygdaloid nucleus (human) @@ -4161,8 +3682,7 @@ - intercalated amygdaloid nuclei (HBA) - HBA:4375 + intercalated amygdaloid nuclei (human) @@ -4181,8 +3701,7 @@ - lateral amygdaloid nucleus (HBA) - HBA:4378 + lateral amygdaloid nucleus (human) @@ -4201,8 +3720,7 @@ - nucleus of lateral olfactory tract (HBA) - HBA:4385 + nucleus of lateral olfactory tract (human) @@ -4221,8 +3739,7 @@ - diencephalon (HBA) - HBA:4391 + diencephalon (human) @@ -4241,8 +3758,7 @@ - dorsal plus ventral thalamus (HBA) - HBA:4392 + dorsal plus ventral thalamus (human) @@ -4261,8 +3777,7 @@ - dorsal thalamus (HBA) - HBA:4393 + dorsal thalamus (human) @@ -4281,8 +3796,7 @@ - anteromedial nucleus of thalamus (HBA) - HBA:4396 + anteromedial nucleus of thalamus (human) @@ -4301,8 +3815,7 @@ - anteroventral nucleus of thalamus (HBA) - HBA:4397 + anteroventral nucleus of thalamus (human) @@ -4321,8 +3834,7 @@ - anterodorsal nucleus of thalamus (HBA) - HBA:4398 + anterodorsal nucleus of thalamus (human) @@ -4341,8 +3853,7 @@ - lateral dorsal nucleus (HBA) - HBA:4399 + lateral dorsal nucleus (human) @@ -4361,8 +3872,7 @@ - medial dorsal nucleus of thalamus (HBA) - HBA:4401 + medial dorsal nucleus of thalamus (human) @@ -4381,8 +3891,7 @@ - magnocellular part of medial dorsal nucleus (HBA) - HBA:4403 + magnocellular part of medial dorsal nucleus (human) @@ -4401,8 +3910,7 @@ - densocellular part of medial dorsal nucleus (HBA) - HBA:4404 + densocellular part of medial dorsal nucleus (human) @@ -4421,8 +3929,7 @@ - paratenial nucleus (HBA) - HBA:4405 + paratenial nucleus (human) @@ -4441,8 +3948,7 @@ - submedial nucleus of thalamus (HBA) - HBA:4406 + submedial nucleus of thalamus (human) @@ -4461,8 +3967,7 @@ - lateral posterior nucleus of thalamus (HBA) - HBA:4410 + lateral posterior nucleus of thalamus (human) @@ -4481,8 +3986,7 @@ - oral pulvinar nucleus (HBA) - HBA:4411 + oral pulvinar nucleus (human) @@ -4501,8 +4005,7 @@ - medial pulvinar nucleus (HBA) - HBA:4412 + medial pulvinar nucleus (human) @@ -4521,8 +4024,7 @@ - posterior lateral line (HBA) - HBA:4413 + posterior lateral line (human) @@ -4541,8 +4043,7 @@ - inferior pulvinar nucleus (HBA) - HBA:4414 + inferior pulvinar nucleus (human) @@ -4561,8 +4062,7 @@ - ventral anterior nucleus of thalamus (HBA) - HBA:4418 + ventral anterior nucleus of thalamus (human) @@ -4581,8 +4081,7 @@ - parvocellular part of medial dorsal nucleus (HBA) - HBA:4419 + parvocellular part of medial dorsal nucleus (human) @@ -4601,8 +4100,7 @@ - magnocellular part of ventral anterior nucleus (HBA) - HBA:4420 + magnocellular part of ventral anterior nucleus (human) @@ -4621,8 +4119,7 @@ - medial part of ventral lateral nucleus (HBA) - HBA:4421 + medial part of ventral lateral nucleus (human) @@ -4641,8 +4138,7 @@ - pars postrema of ventral lateral nucleus (HBA) - HBA:4423 + pars postrema of ventral lateral nucleus (human) @@ -4661,8 +4157,7 @@ - ventral posteromedial nucleus of thalamus (HBA) - HBA:4424 + ventral posteromedial nucleus of thalamus (human) @@ -4681,30 +4176,7 @@ - ventral posterolateral nucleus (HBA) - HBA:4425 - - - - - - - - - - - - - - - - - - - - ventral posterior nucleus of thalamus (HBA) - ventral posteroinferior nucleus (HBA) - HBA:4426 + ventral posterolateral nucleus (human) @@ -4723,8 +4195,7 @@ - basal ventral medial nucleus of thalamus (HBA) - HBA:4427 + basal ventral medial nucleus of thalamus (human) @@ -4743,8 +4214,7 @@ - limitans nucleus (HBA) - HBA:4429 + limitans nucleus (human) @@ -4763,8 +4233,7 @@ - suprageniculate nucleus of thalamus (HBA) - HBA:4430 + suprageniculate nucleus of thalamus (human) @@ -4783,8 +4252,7 @@ - posterior nucleus of thalamus (HBA) - HBA:4431 + posterior nucleus of thalamus (human) @@ -4803,8 +4271,7 @@ - rhomboidal nucleus (HBA) - HBA:4433 + rhomboidal nucleus (human) @@ -4823,8 +4290,7 @@ - central lateral nucleus (HBA) - HBA:4434 + central lateral nucleus (human) @@ -4843,8 +4309,7 @@ - paracentral nucleus (HBA) - HBA:4435 + paracentral nucleus (human) @@ -4863,8 +4328,7 @@ - central medial nucleus (HBA) - HBA:4438 + central medial nucleus (human) @@ -4883,8 +4347,7 @@ - parafascicular nucleus (HBA) - HBA:4439 + parafascicular nucleus (human) @@ -4903,8 +4366,7 @@ - dorsal lateral geniculate nucleus (HBA) - HBA:4440 + dorsal lateral geniculate nucleus (human) @@ -4923,8 +4385,7 @@ - ventral nucleus of medial geniculate body (HBA) - HBA:4445 + ventral nucleus of medial geniculate body (human) @@ -4943,8 +4404,7 @@ - anterodorsal nucleus of medial geniculate body (HBA) - HBA:4446 + anterodorsal nucleus of medial geniculate body (human) @@ -4963,8 +4423,7 @@ - posterodorsal nucleus of medial geniculate body (HBA) - HBA:4447 + posterodorsal nucleus of medial geniculate body (human) @@ -4983,8 +4442,7 @@ - magnocellular nucleus of medial geniculate body (HBA) - HBA:4448 + magnocellular nucleus of medial geniculate body (human) @@ -5003,8 +4461,7 @@ - ventral thalamus (HBA) - HBA:4504 + ventral thalamus (human) @@ -5023,8 +4480,7 @@ - thalamic reticular nucleus (HBA) - HBA:4506 + thalamic reticular nucleus (human) @@ -5043,8 +4499,7 @@ - zona incerta (HBA) - HBA:4507 + zona incerta (human) @@ -5063,8 +4518,7 @@ - subthalamic nucleus (HBA) - HBA:4518 + subthalamic nucleus (human) @@ -5083,8 +4537,7 @@ - epithalamus (HBA) - HBA:4520 + epithalamus (human) @@ -5103,8 +4556,7 @@ - habenular nucleus (HBA) - HBA:4521 + habenular nucleus (human) @@ -5123,8 +4575,7 @@ - habenula (HBA) - HBA:4522 + habenula (human) @@ -5143,8 +4594,7 @@ - medial habenular nucleus (HBA) - HBA:4523 + medial habenular nucleus (human) @@ -5163,8 +4613,7 @@ - lateral habenular nucleus (HBA) - HBA:4524 + lateral habenular nucleus (human) @@ -5183,8 +4632,7 @@ - pineal body (HBA) - HBA:4532 + pineal body (human) @@ -5203,8 +4651,7 @@ - paraventricular nucleus of thalamus (HBA) - HBA:4533 + paraventricular nucleus of thalamus (human) @@ -5223,8 +4670,7 @@ - posterior paraventricular nucleus of thalamus (HBA) - HBA:4536 + posterior paraventricular nucleus of thalamus (human) @@ -5243,8 +4689,7 @@ - hypothalamus (HBA) - HBA:4540 + hypothalamus (human) @@ -5263,8 +4708,7 @@ - preoptic area (HBA) - HBA:4541 + preoptic area (human) @@ -5283,8 +4727,7 @@ - medial preoptic region (HBA) - HBA:4543 + medial preoptic region (human) @@ -5303,8 +4746,7 @@ - medial preoptic nucleus (HBA) - HBA:4544 + medial preoptic nucleus (human) @@ -5323,8 +4765,7 @@ - median preoptic nucleus (HBA) - HBA:4548 + median preoptic nucleus (human) @@ -5343,8 +4784,7 @@ - preoptic periventricular nucleus (HBA) - HBA:4549 + preoptic periventricular nucleus (human) @@ -5363,8 +4803,7 @@ - anteroventral periventricular nucleus (HBA) - HBA:4550 + anteroventral periventricular nucleus (human) @@ -5383,8 +4822,7 @@ - lateral preoptic nucleus (HBA) - HBA:4552 + lateral preoptic nucleus (human) @@ -5403,8 +4841,7 @@ - anterior hypothalamic region (HBA) - HBA:4570 + anterior hypothalamic region (human) @@ -5423,8 +4860,7 @@ - subparaventricular zone (HBA) - HBA:4574 + subparaventricular zone (human) @@ -5443,8 +4879,7 @@ - paraventricular nucleus of the hypothalamus descending division (HBA) - HBA:4575 + paraventricular nucleus of the hypothalamus descending division (human) @@ -5463,8 +4898,7 @@ - paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone (HBA) - HBA:4576 + paraventricular nucleus of the hypothalamus descending division - medial parvocellular part, ventral zone (human) @@ -5483,8 +4917,7 @@ - paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part (HBA) - HBA:4577 + paraventricular nucleus of the hypothalamus descending division - dorsal parvocellular part (human) @@ -5503,8 +4936,7 @@ - paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part (HBA) - HBA:4578 + paraventricular nucleus of the hypothalamus descending division - lateral parvocellular part (human) @@ -5523,8 +4955,7 @@ - paraventricular nucleus of the hypothalamus descending division - forniceal part (HBA) - HBA:4579 + paraventricular nucleus of the hypothalamus descending division - forniceal part (human) @@ -5543,8 +4974,7 @@ - paraventricular nucleus of the hypothalamus magnocellular division (HBA) - HBA:4580 + paraventricular nucleus of the hypothalamus magnocellular division (human) @@ -5563,8 +4993,7 @@ - paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part (HBA) - HBA:4581 + paraventricular nucleus of the hypothalamus magnocellular division - anterior magnocellular part (human) @@ -5583,8 +5012,7 @@ - paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part (HBA) - HBA:4582 + paraventricular nucleus of the hypothalamus magnocellular division - medial magnocellular part (human) @@ -5603,8 +5031,7 @@ - paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part (HBA) - HBA:4583 + paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part (human) @@ -5623,8 +5050,7 @@ - paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone (HBA) - HBA:4584 + paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part medial zone (human) @@ -5643,8 +5069,7 @@ - paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone (HBA) - HBA:4585 + paraventricular nucleus of the hypothalamus magnocellular division - posterior magnocellular part lateral zone (human) @@ -5663,8 +5088,7 @@ - paraventricular nucleus of the hypothalamus parvocellular division (HBA) - HBA:4586 + paraventricular nucleus of the hypothalamus parvocellular division (human) @@ -5683,8 +5107,7 @@ - suprachiasmatic nucleus dorsomedial part (HBA) - HBA:4591 + suprachiasmatic nucleus dorsomedial part (human) @@ -5703,8 +5126,7 @@ - suprachiasmatic nucleus ventrolateral part (HBA) - HBA:4592 + suprachiasmatic nucleus ventrolateral part (human) @@ -5723,8 +5145,7 @@ - dorsolateral part of supraoptic nucleus (HBA) - HBA:4594 + dorsolateral part of supraoptic nucleus (human) @@ -5743,8 +5164,7 @@ - anterior hypothalamic commissure (HBA) - HBA:4600 + anterior hypothalamic commissure (human) @@ -5763,8 +5183,7 @@ - tuber cinereum (HBA) - HBA:4633 + tuber cinereum (human) @@ -5783,8 +5202,7 @@ - pituitary gland (HBA) - HBA:4634 + pituitary gland (human) @@ -5803,8 +5221,7 @@ - posterior hypothalamic region (HBA) - HBA:4665 + posterior hypothalamic region (human) @@ -5823,8 +5240,7 @@ - medial mammillary nucleus (HBA) - HBA:4672 + medial mammillary nucleus (human) @@ -5843,8 +5259,7 @@ - lateral part of medial mammillary nucleus (HBA) - HBA:4673 + lateral part of medial mammillary nucleus (human) @@ -5863,8 +5278,7 @@ - lateral mammillary nucleus (HBA) - HBA:4675 + lateral mammillary nucleus (human) @@ -5883,8 +5297,7 @@ - premammillary nucleus (HBA) - HBA:4676 + premammillary nucleus (human) @@ -5903,8 +5316,7 @@ - dorsal premammillary nucleus (HBA) - HBA:4677 + dorsal premammillary nucleus (human) @@ -5923,8 +5335,7 @@ - ventral premammillary nucleus (HBA) - HBA:4678 + ventral premammillary nucleus (human) @@ -5943,8 +5354,7 @@ - cerebellum (HBA) - HBA:4696 + cerebellum (human) @@ -5963,8 +5373,7 @@ - cerebellar cortex (HBA) - HBA:4697 + cerebellar cortex (human) @@ -5983,8 +5392,7 @@ - cerebellar vermis (HBA) - HBA:4698 + cerebellar vermis (human) @@ -6003,8 +5411,7 @@ - cerebellum anterior vermis (HBA) - HBA:4699 + cerebellum anterior vermis (human) @@ -6023,8 +5430,7 @@ - cerebellum posterior vermis (HBA) - HBA:4704 + cerebellum posterior vermis (human) @@ -6043,8 +5449,7 @@ - cerebellum vermis lobule VIIAf (HBA) - HBA:4706 + cerebellum vermis lobule VIIAf (human) @@ -6063,8 +5468,7 @@ - cerebellum vermis lobule VIIAt (HBA) - HBA:4707 + cerebellum vermis lobule VIIAt (human) @@ -6083,8 +5487,7 @@ - cerebellum vermis lobule VIIB (HBA) - HBA:4708 + cerebellum vermis lobule VIIB (human) @@ -6103,8 +5506,7 @@ - cerebellum vermis lobule X (HBA) - HBA:4713 + cerebellum vermis lobule X (human) @@ -6123,8 +5525,7 @@ - paravermic lobule II (HBA) - HBA:4717 + paravermic lobule II (human) @@ -6143,8 +5544,7 @@ - paravermic lobule III (HBA) - HBA:4718 + paravermic lobule III (human) @@ -6163,8 +5563,7 @@ - paravermic lobule IV (HBA) - HBA:4719 + paravermic lobule IV (human) @@ -6183,8 +5582,7 @@ - paravermic lobule V (HBA) - HBA:4720 + paravermic lobule V (human) @@ -6203,8 +5601,7 @@ - paravermic lobule VI (HBA) - HBA:4722 + paravermic lobule VI (human) @@ -6223,8 +5620,7 @@ - paravermic lobule IX (HBA) - HBA:4728 + paravermic lobule IX (human) @@ -6243,8 +5639,7 @@ - paravermic lobule X (HBA) - HBA:4730 + paravermic lobule X (human) @@ -6263,8 +5658,7 @@ - cerebellar nuclear complex (HBA) - HBA:4780 + cerebellar nuclear complex (human) @@ -6283,8 +5677,7 @@ - metencephalon (HBA) - HBA:4833 + metencephalon (human) @@ -6303,8 +5696,7 @@ - frontal pole (HBA) - HBA:4888 + frontal pole (human) @@ -6323,8 +5715,7 @@ - superior rostral gyrus (HBA) - HBA:4897 + superior rostral gyrus (human) @@ -6343,8 +5734,7 @@ - inferior rostral gyrus (HBA) - HBA:4900 + inferior rostral gyrus (human) @@ -6363,8 +5753,7 @@ - midbrain (HBA) - HBA:9001 + midbrain (human) @@ -6383,8 +5772,7 @@ - midbrain tegmentum (HBA) - HBA:9002 + midbrain tegmentum (human) @@ -6403,8 +5791,7 @@ - central gray substance of midbrain (HBA) - HBA:9003 + central gray substance of midbrain (human) @@ -6423,8 +5810,7 @@ - interpeduncular nucleus (HBA) - HBA:9012 + interpeduncular nucleus (human) @@ -6443,8 +5829,7 @@ - interstitial nucleus of Cajal (HBA) - HBA:9015 + interstitial nucleus of Cajal (human) @@ -6463,8 +5848,7 @@ - midbrain reticular formation (HBA) - HBA:9018 + midbrain reticular formation (human) @@ -6483,8 +5867,7 @@ - cuneiform nucleus (HBA) - HBA:9020 + cuneiform nucleus (human) @@ -6503,8 +5886,7 @@ - pedunculopontine tegmental nucleus (HBA) - HBA:9021 + pedunculopontine tegmental nucleus (human) @@ -6523,8 +5905,7 @@ - subcuneiform nucleus (HBA) - HBA:9022 + subcuneiform nucleus (human) @@ -6543,8 +5924,7 @@ - nucleus of posterior commissure (HBA) - HBA:9027 + nucleus of posterior commissure (human) @@ -6563,8 +5943,7 @@ - oculomotor nuclear complex (HBA) - HBA:9030 + oculomotor nuclear complex (human) @@ -6583,8 +5962,7 @@ - anterior median oculomotor nucleus (HBA) - HBA:9032 + anterior median oculomotor nucleus (human) @@ -6603,8 +5981,7 @@ - caudal central oculomotor nucleus (HBA) - HBA:9033 + caudal central oculomotor nucleus (human) @@ -6623,8 +6000,7 @@ - central oculomotor nucleus (HBA) - HBA:9034 + central oculomotor nucleus (human) @@ -6643,8 +6019,7 @@ - dorsal oculomotor nucleus (HBA) - HBA:9035 + dorsal oculomotor nucleus (human) @@ -6663,8 +6038,7 @@ - intermediate oculomotor nucleus (HBA) - HBA:9036 + intermediate oculomotor nucleus (human) @@ -6683,8 +6057,7 @@ - medial oculomotor nucleus (HBA) - HBA:9037 + medial oculomotor nucleus (human) @@ -6703,8 +6076,7 @@ - ventral oculomotor nucleus (HBA) - HBA:9038 + ventral oculomotor nucleus (human) @@ -6723,8 +6095,7 @@ - ventral nucleus of posterior commissure (HBA) - HBA:9047 + ventral nucleus of posterior commissure (human) @@ -6743,8 +6114,7 @@ - peripeduncular nucleus (HBA) - HBA:9050 + peripeduncular nucleus (human) @@ -6763,8 +6133,7 @@ - red nucleus (HBA) - HBA:9053 + red nucleus (human) @@ -6783,8 +6152,7 @@ - magnocellular part of red nucleus (HBA) - HBA:9055 + magnocellular part of red nucleus (human) @@ -6803,8 +6171,7 @@ - parvocellular part of red nucleus (HBA) - HBA:9056 + parvocellular part of red nucleus (human) @@ -6823,8 +6190,7 @@ - rostral interstitial nucleus of medial longitudinal fasciculus (HBA) - HBA:9060 + rostral interstitial nucleus of medial longitudinal fasciculus (human) @@ -6843,8 +6209,7 @@ - trochlear nucleus (HBA) - HBA:9063 + trochlear nucleus (human) @@ -6863,8 +6228,7 @@ - ventral tegmental area (HBA) - HBA:9066 + ventral tegmental area (human) @@ -6883,8 +6247,7 @@ - ventral tegmental nucleus (HBA) - HBA:9069 + ventral tegmental nucleus (human) @@ -6903,8 +6266,7 @@ - substantia nigra (HBA) - HBA:9072 + substantia nigra (human) @@ -6923,8 +6285,7 @@ - substantia nigra pars compacta (HBA) - HBA:9074 + substantia nigra pars compacta (human) @@ -6943,8 +6304,7 @@ - substantia nigra pars reticulata (HBA) - HBA:9075 + substantia nigra pars reticulata (human) @@ -6963,8 +6323,7 @@ - pretectal region (HBA) - HBA:9079 + pretectal region (human) @@ -6983,8 +6342,7 @@ - nucleus of optic tract (HBA) - HBA:9080 + nucleus of optic tract (human) @@ -7003,8 +6361,7 @@ - pretectal nucleus (HBA) - HBA:9083 + pretectal nucleus (human) @@ -7023,8 +6380,7 @@ - olivary pretectal nucleus (HBA) - HBA:9086 + olivary pretectal nucleus (human) @@ -7043,8 +6399,7 @@ - principal pretectal nucleus (HBA) - HBA:9089 + principal pretectal nucleus (human) @@ -7063,8 +6418,7 @@ - sublentiform nucleus (HBA) - HBA:9092 + sublentiform nucleus (human) @@ -7083,8 +6437,7 @@ - midbrain tectum (HBA) - HBA:9101 + midbrain tectum (human) @@ -7103,8 +6456,7 @@ - inferior colliculus (HBA) - HBA:9102 + inferior colliculus (human) @@ -7123,8 +6475,7 @@ - central nucleus of inferior colliculus (HBA) - HBA:9104 + central nucleus of inferior colliculus (human) @@ -7143,8 +6494,7 @@ - external nucleus of inferior colliculus (HBA) - HBA:9105 + external nucleus of inferior colliculus (human) @@ -7163,8 +6513,7 @@ - pericentral nucleus of inferior colliculus (HBA) - HBA:9106 + pericentral nucleus of inferior colliculus (human) @@ -7183,8 +6532,7 @@ - parabigeminal nucleus (HBA) - HBA:9111 + parabigeminal nucleus (human) @@ -7203,8 +6551,7 @@ - superior colliculus (HBA) - HBA:9114 + superior colliculus (human) @@ -7223,8 +6570,7 @@ - stratum lemnisci of superior colliculus (HBA) - HBA:9116 + stratum lemnisci of superior colliculus (human) @@ -7243,8 +6589,7 @@ - deep gray layer of superior colliculus (HBA) - HBA:9117 + deep gray layer of superior colliculus (human) @@ -7263,8 +6608,7 @@ - deep white layer of superior colliculus (HBA) - HBA:9118 + deep white layer of superior colliculus (human) @@ -7283,8 +6627,7 @@ - middle gray layer of superior colliculus (HBA) - HBA:9119 + middle gray layer of superior colliculus (human) @@ -7303,8 +6646,7 @@ - middle white layer of superior colliculus (HBA) - HBA:9120 + middle white layer of superior colliculus (human) @@ -7323,8 +6665,7 @@ - superior colliculus superficial gray layer (HBA) - HBA:9121 + superior colliculus superficial gray layer (human) @@ -7343,8 +6684,7 @@ - superficial white layer of superior colliculus (HBA) - HBA:9122 + superficial white layer of superior colliculus (human) @@ -7363,8 +6703,7 @@ - pons (HBA) - HBA:9131 + pons (human) @@ -7383,8 +6722,7 @@ - basal part of pons (HBA) - HBA:9132 + basal part of pons (human) @@ -7403,8 +6741,7 @@ - pontine nuclear group (HBA) - HBA:9133 + pontine nuclear group (human) @@ -7423,8 +6760,7 @@ - pontine tegmentum (HBA) - HBA:9135 + pontine tegmentum (human) @@ -7443,8 +6779,7 @@ - abducens nucleus (HBA) - HBA:9136 + abducens nucleus (human) @@ -7463,8 +6798,7 @@ - dorsal nucleus of lateral lemniscus (HBA) - HBA:9139 + dorsal nucleus of lateral lemniscus (human) @@ -7483,8 +6817,7 @@ - facial motor nucleus (HBA) - HBA:9142 + facial motor nucleus (human) @@ -7503,8 +6836,7 @@ - lateral parabrachial nucleus (HBA) - HBA:9145 + lateral parabrachial nucleus (human) @@ -7523,8 +6855,7 @@ - locus ceruleus (HBA) - HBA:9148 + locus ceruleus (human) @@ -7543,8 +6874,7 @@ - medial parabrachial nucleus (HBA) - HBA:9153 + medial parabrachial nucleus (human) @@ -7563,8 +6893,7 @@ - nucleus subceruleus (HBA) - HBA:9154 + nucleus subceruleus (human) @@ -7583,8 +6912,7 @@ - pontine raphe nucleus (HBA) - HBA:9159 + pontine raphe nucleus (human) @@ -7603,8 +6931,7 @@ - pontine reticular formation (HBA) - HBA:9161 + pontine reticular formation (human) @@ -7623,8 +6950,7 @@ - caudal pontine reticular nucleus (HBA) - HBA:9162 + caudal pontine reticular nucleus (human) @@ -7643,8 +6969,7 @@ - oral pontine reticular nucleus (HBA) - HBA:9166 + oral pontine reticular nucleus (human) @@ -7663,8 +6988,7 @@ - reticulotegmental nucleus (HBA) - HBA:9167 + reticulotegmental nucleus (human) @@ -7683,8 +7007,7 @@ - superior olivary complex (HBA) - HBA:9177 + superior olivary complex (human) @@ -7703,8 +7026,7 @@ - periolivary nucleus (HBA) - HBA:9179 + periolivary nucleus (human) @@ -7723,8 +7045,7 @@ - preolivary nucleus (HBA) - HBA:9180 + preolivary nucleus (human) @@ -7743,8 +7064,7 @@ - retro-olivary nucleus (HBA) - HBA:9181 + retro-olivary nucleus (human) @@ -7763,8 +7083,7 @@ - primary superior olive (HBA) - HBA:9182 + primary superior olive (human) @@ -7783,8 +7102,7 @@ - lateral superior olivary nucleus (HBA) - HBA:9183 + lateral superior olivary nucleus (human) @@ -7803,8 +7121,7 @@ - medial superior olivary nucleus (HBA) - HBA:9184 + medial superior olivary nucleus (human) @@ -7823,8 +7140,7 @@ - nucleus of trapezoid body (HBA) - HBA:9185 + nucleus of trapezoid body (human) @@ -7843,8 +7159,7 @@ - superior salivatory nucleus (HBA) - HBA:9194 + superior salivatory nucleus (human) @@ -7863,8 +7178,7 @@ - trapezoid body (HBA) - HBA:9197 + trapezoid body (human) @@ -7883,8 +7197,7 @@ - ventral nucleus of lateral lemniscus (HBA) - HBA:9200 + ventral nucleus of lateral lemniscus (human) @@ -7903,8 +7216,7 @@ - trigeminal nuclear complex (HBA) - HBA:9203 + trigeminal nuclear complex (human) @@ -7923,8 +7235,7 @@ - mesencephalic nucleus of trigeminal nerve (HBA) - HBA:9205 + mesencephalic nucleus of trigeminal nerve (human) @@ -7943,8 +7254,7 @@ - motor nucleus of trigeminal nerve (HBA) - HBA:9206 + motor nucleus of trigeminal nerve (human) @@ -7963,30 +7273,7 @@ - principal sensory nucleus of trigeminal nerve (HBA) - HBA:9207 - - - - - - - - - - - - - - - - - - - - brain white matter (HBA) - white matter (HBA) - HBA:9218 + principal sensory nucleus of trigeminal nerve (human) @@ -8005,8 +7292,7 @@ - white matter of telencephalon (HBA) - HBA:9219 + white matter of telencephalon (human) @@ -8025,8 +7311,7 @@ - commissure of telencephalon (HBA) - HBA:9220 + commissure of telencephalon (human) @@ -8045,8 +7330,7 @@ - anterior commissure (HBA) - HBA:9221 + anterior commissure (human) @@ -8065,8 +7349,7 @@ - corpus callosum (HBA) - HBA:9222 + corpus callosum (human) @@ -8085,8 +7368,7 @@ - genu of corpus callosum (HBA) - HBA:9223 + genu of corpus callosum (human) @@ -8105,8 +7387,7 @@ - body of corpus callosum (HBA) - HBA:9224 + body of corpus callosum (human) @@ -8125,8 +7406,7 @@ - splenium of the corpus callosum (HBA) - HBA:9225 + splenium of the corpus callosum (human) @@ -8145,8 +7425,7 @@ - rostrum of corpus callosum (HBA) - HBA:9226 + rostrum of corpus callosum (human) @@ -8165,8 +7444,7 @@ - habenular commissure (HBA) - HBA:9227 + habenular commissure (human) @@ -8185,8 +7463,7 @@ - hippocampal commissure (HBA) - HBA:9228 + hippocampal commissure (human) @@ -8205,8 +7482,7 @@ - posterior commissure (HBA) - HBA:9229 + posterior commissure (human) @@ -8225,8 +7501,7 @@ - white matter of telencephalon (HBA) - HBA:9230 + white matter of telencephalon (human) @@ -8245,8 +7520,7 @@ - arcuate fasciculus (HBA) - HBA:9231 + arcuate fasciculus (human) @@ -8265,8 +7539,7 @@ - hippocampus alveus (HBA) - HBA:9234 + hippocampus alveus (human) @@ -8285,8 +7558,7 @@ - ansa lenticularis (HBA) - HBA:9237 + ansa lenticularis (human) @@ -8305,8 +7577,7 @@ - cingulum of brain (HBA) - HBA:9240 + cingulum of brain (human) @@ -8325,8 +7596,7 @@ - external capsule of telencephalon (HBA) - HBA:9243 + external capsule of telencephalon (human) @@ -8345,8 +7615,7 @@ - extreme capsule (HBA) - HBA:9246 + extreme capsule (human) @@ -8365,8 +7634,7 @@ - fornix of brain (HBA) - HBA:9249 + fornix of brain (human) @@ -8385,8 +7653,7 @@ - anterior column of fornix (HBA) - HBA:9251 + anterior column of fornix (human) @@ -8405,8 +7672,7 @@ - body of fornix (HBA) - HBA:9252 + body of fornix (human) @@ -8425,8 +7691,7 @@ - hippocampus fimbria (HBA) - HBA:9253 + hippocampus fimbria (human) @@ -8445,8 +7710,7 @@ - posterior column of fornix (HBA) - HBA:9254 + posterior column of fornix (human) @@ -8465,8 +7729,7 @@ - inferior longitudinal fasciculus (HBA) - HBA:9260 + inferior longitudinal fasciculus (human) @@ -8485,8 +7748,7 @@ - internal capsule of telencephalon (HBA) - HBA:9263 + internal capsule of telencephalon (human) @@ -8505,8 +7767,7 @@ - mammillothalamic axonal tract (HBA) - HBA:9266 + mammillothalamic axonal tract (human) @@ -8525,8 +7786,7 @@ - occipitofrontal fasciculus (HBA) - HBA:9269 + occipitofrontal fasciculus (human) @@ -8545,8 +7805,7 @@ - stria medullaris (HBA) - HBA:9275 + stria medullaris (human) @@ -8565,8 +7824,7 @@ - stria terminalis (HBA) - HBA:9278 + stria terminalis (human) @@ -8585,8 +7843,7 @@ - superior longitudinal fasciculus (HBA) - HBA:9281 + superior longitudinal fasciculus (human) @@ -8605,8 +7862,7 @@ - uncinate fasciculus of the forebrain (HBA) - HBA:9284 + uncinate fasciculus of the forebrain (human) @@ -8625,8 +7881,7 @@ - white matter of metencephalon (HBA) - HBA:9287 + white matter of metencephalon (human) @@ -8645,8 +7900,7 @@ - white matter of cerebellum (HBA) - HBA:9288 + white matter of cerebellum (human) @@ -8665,8 +7919,7 @@ - inferior cerebellar peduncle (HBA) - HBA:9291 + inferior cerebellar peduncle (human) @@ -8685,8 +7938,7 @@ - middle cerebellar peduncle (HBA) - HBA:9294 + middle cerebellar peduncle (human) @@ -8705,8 +7957,7 @@ - superior cerebellar peduncle (HBA) - HBA:9297 + superior cerebellar peduncle (human) @@ -8725,8 +7976,7 @@ - white matter of myelencephalon (HBA) - HBA:9298 + white matter of myelencephalon (human) @@ -8745,8 +7995,7 @@ - cranial nerve (HBA) - HBA:9299 + cranial nerve (human) @@ -8765,8 +8014,7 @@ - olfactory nerve (HBA) - HBA:9300 + olfactory nerve (human) @@ -8785,8 +8033,7 @@ - olfactory tract (HBA) - HBA:9302 + olfactory tract (human) @@ -8805,8 +8052,7 @@ - olfactory bulb (HBA) - HBA:9303 + olfactory bulb (human) @@ -8825,8 +8071,7 @@ - cranial nerve II (HBA) - HBA:9307 + cranial nerve II (human) @@ -8845,8 +8090,7 @@ - optic tract (HBA) - HBA:9309 + optic tract (human) @@ -8865,8 +8109,7 @@ - optic chiasma (HBA) - HBA:9310 + optic chiasma (human) @@ -8885,8 +8128,7 @@ - optic radiation (HBA) - HBA:9311 + optic radiation (human) @@ -8905,8 +8147,7 @@ - oculomotor nerve (HBA) - HBA:9316 + oculomotor nerve (human) @@ -8925,8 +8166,7 @@ - trochlear nerve (HBA) - HBA:9319 + trochlear nerve (human) @@ -8945,8 +8185,7 @@ - trigeminal nerve (HBA) - HBA:9322 + trigeminal nerve (human) @@ -8965,8 +8204,7 @@ - abducens nerve (HBA) - HBA:9325 + abducens nerve (human) @@ -8985,8 +8223,7 @@ - facial nerve (HBA) - HBA:9328 + facial nerve (human) @@ -9005,8 +8242,7 @@ - vestibulocochlear nerve (HBA) - HBA:9331 + vestibulocochlear nerve (human) @@ -9025,8 +8261,7 @@ - glossopharyngeal nerve (HBA) - HBA:9334 + glossopharyngeal nerve (human) @@ -9045,8 +8280,7 @@ - vagus nerve (HBA) - HBA:9337 + vagus nerve (human) @@ -9065,8 +8299,7 @@ - accessory XI nerve (HBA) - HBA:9340 + accessory XI nerve (human) @@ -9085,8 +8318,7 @@ - hypoglossal nerve (HBA) - HBA:9343 + hypoglossal nerve (human) @@ -9105,8 +8337,7 @@ - dorsal longitudinal fasciculus (HBA) - HBA:9348 + dorsal longitudinal fasciculus (human) @@ -9125,8 +8356,7 @@ - medial longitudinal fasciculus (HBA) - HBA:9351 + medial longitudinal fasciculus (human) @@ -9145,8 +8375,7 @@ - sulcus of brain (HBA) - HBA:9352 + sulcus of brain (human) @@ -9165,8 +8394,7 @@ - frontal sulcus (HBA) - HBA:9354 + frontal sulcus (human) @@ -9185,8 +8413,7 @@ - precentral sulcus (HBA) - HBA:9355 + precentral sulcus (human) @@ -9205,8 +8432,7 @@ - superior frontal sulcus (HBA) - HBA:9356 + superior frontal sulcus (human) @@ -9225,8 +8451,7 @@ - inferior frontal sulcus (HBA) - HBA:9357 + inferior frontal sulcus (human) @@ -9245,8 +8470,7 @@ - pituitary stalk (HBA) - HBA:9358 + pituitary stalk (human) @@ -9265,8 +8489,7 @@ - middle frontal sulcus (HBA) - HBA:9359 + middle frontal sulcus (human) @@ -9285,8 +8508,7 @@ - orbital sulcus (HBA) - HBA:9360 + orbital sulcus (human) @@ -9305,8 +8527,7 @@ - olfactory sulcus (HBA) - HBA:9361 + olfactory sulcus (human) @@ -9325,8 +8546,7 @@ - fronto-orbital sulcus (HBA) - HBA:9362 + fronto-orbital sulcus (human) @@ -9345,8 +8565,7 @@ - frontomarginal sulcus (HBA) - HBA:9363 + frontomarginal sulcus (human) @@ -9365,8 +8584,7 @@ - cingulate sulcus (HBA) - HBA:9364 + cingulate sulcus (human) @@ -9385,8 +8603,7 @@ - paracentral sulcus (HBA) - HBA:9365 + paracentral sulcus (human) @@ -9405,8 +8622,7 @@ - superior rostral sulcus (HBA) - HBA:9366 + superior rostral sulcus (human) @@ -9425,8 +8641,7 @@ - inferior rostral sulcus (HBA) - HBA:9367 + inferior rostral sulcus (human) @@ -9445,8 +8660,7 @@ - posterior parolfactory sulcus (HBA) - HBA:9369 + posterior parolfactory sulcus (human) @@ -9465,8 +8679,7 @@ - sulcus of parietal lobe (HBA) - HBA:9370 + sulcus of parietal lobe (human) @@ -9485,8 +8698,7 @@ - postcentral sulcus of parietal lobe (HBA) - HBA:9371 + postcentral sulcus of parietal lobe (human) @@ -9505,8 +8717,7 @@ - intraparietal sulcus (HBA) - HBA:9372 + intraparietal sulcus (human) @@ -9525,8 +8736,7 @@ - subparietal sulcus (HBA) - HBA:9376 + subparietal sulcus (human) @@ -9545,8 +8755,7 @@ - temporal sulcus (HBA) - HBA:9377 + temporal sulcus (human) @@ -9565,8 +8774,7 @@ - superior temporal sulcus (HBA) - HBA:9378 + superior temporal sulcus (human) @@ -9585,8 +8793,7 @@ - inferior temporal sulcus (HBA) - HBA:9379 + inferior temporal sulcus (human) @@ -9605,8 +8812,7 @@ - collateral sulcus (HBA) - HBA:9380 + collateral sulcus (human) @@ -9625,8 +8831,7 @@ - rhinal sulcus (HBA) - HBA:9383 + rhinal sulcus (human) @@ -9645,8 +8850,7 @@ - angular sulcus (HBA) - HBA:9384 + angular sulcus (human) @@ -9665,8 +8869,7 @@ - anterior occipital sulcus (HBA) - HBA:9385 + anterior occipital sulcus (human) @@ -9685,8 +8888,7 @@ - occipital sulcus (HBA) - HBA:9386 + occipital sulcus (human) @@ -9705,8 +8907,7 @@ - preoccipital notch (HBA) - HBA:9387 + preoccipital notch (human) @@ -9725,8 +8926,7 @@ - transverse occipital sulcus (HBA) - HBA:9388 + transverse occipital sulcus (human) @@ -9745,8 +8945,7 @@ - lateral occipital sulcus (HBA) - HBA:9389 + lateral occipital sulcus (human) @@ -9765,8 +8964,7 @@ - lunate sulcus (HBA) - HBA:9390 + lunate sulcus (human) @@ -9785,8 +8983,7 @@ - calcarine sulcus (HBA) - HBA:9391 + calcarine sulcus (human) @@ -9805,8 +9002,7 @@ - parieto-occipital sulcus (HBA) - HBA:9392 + parieto-occipital sulcus (human) @@ -9825,8 +9021,7 @@ - sulcus of limbic lobe (HBA) - HBA:9393 + sulcus of limbic lobe (human) @@ -9845,8 +9040,7 @@ - hippocampal sulcus (HBA) - HBA:9394 + hippocampal sulcus (human) @@ -9865,8 +9059,7 @@ - intralingual sulcus (HBA) - HBA:9397 + intralingual sulcus (human) @@ -9885,8 +9078,7 @@ - circular sulcus of insula (HBA) - HBA:9398 + circular sulcus of insula (human) @@ -9905,8 +9097,7 @@ - central sulcus of insula (HBA) - HBA:9399 + central sulcus of insula (human) @@ -9925,8 +9116,7 @@ - longitudinal fissure (HBA) - HBA:9401 + longitudinal fissure (human) @@ -9945,8 +9135,7 @@ - lateral sulcus (HBA) - HBA:9402 + lateral sulcus (human) @@ -9965,8 +9154,7 @@ - central sulcus (HBA) - HBA:9403 + central sulcus (human) @@ -9985,8 +9173,7 @@ - callosal sulcus (HBA) - HBA:9404 + callosal sulcus (human) @@ -10005,8 +9192,7 @@ - cerebellum fissure (HBA) - HBA:9406 + cerebellum fissure (human) @@ -10025,8 +9211,7 @@ - precentral fissure of cerebellum (HBA) - HBA:9407 + precentral fissure of cerebellum (human) @@ -10045,8 +9230,7 @@ - preculminate fissure of cerebellum (HBA) - HBA:9408 + preculminate fissure of cerebellum (human) @@ -10065,8 +9249,7 @@ - intraculminate fissure of cerebellum (HBA) - HBA:9409 + intraculminate fissure of cerebellum (human) @@ -10085,8 +9268,7 @@ - primary fissure of cerebellum (HBA) - HBA:9410 + primary fissure of cerebellum (human) @@ -10105,8 +9287,7 @@ - posterior superior fissure of cerebellum (HBA) - HBA:9411 + posterior superior fissure of cerebellum (human) @@ -10125,8 +9306,7 @@ - horizontal fissure of cerebellum (HBA) - HBA:9412 + horizontal fissure of cerebellum (human) @@ -10145,8 +9325,7 @@ - ansoparamedian fissure of cerebellum (HBA) - HBA:9413 + ansoparamedian fissure of cerebellum (human) @@ -10165,8 +9344,7 @@ - secondary fissure of cerebellum (HBA) - HBA:9416 + secondary fissure of cerebellum (human) @@ -10185,8 +9363,7 @@ - posterolateral fissure of cerebellum (HBA) - HBA:9417 + posterolateral fissure of cerebellum (human) @@ -10205,8 +9382,7 @@ - brain ventricle (HBA) - HBA:9418 + brain ventricle (human) @@ -10225,8 +9401,7 @@ - telencephalic ventricle (HBA) - HBA:9419 + telencephalic ventricle (human) @@ -10245,8 +9420,7 @@ - third ventricle (HBA) - HBA:9420 + third ventricle (human) @@ -10265,8 +9439,7 @@ - fourth ventricle (HBA) - HBA:9421 + fourth ventricle (human) @@ -10285,8 +9458,7 @@ - central canal of spinal cord (HBA) - HBA:9422 + central canal of spinal cord (human) @@ -10305,8 +9477,7 @@ - parvocellular oculomotor nucleus (HBA) - HBA:9449 + parvocellular oculomotor nucleus (human) @@ -10325,8 +9496,7 @@ - midbrain raphe nuclei (HBA) - HBA:9455 + midbrain raphe nuclei (human) @@ -10345,8 +9515,7 @@ - dorsal raphe nucleus (HBA) - HBA:9457 + dorsal raphe nucleus (human) @@ -10365,8 +9534,7 @@ - caudal linear nucleus (HBA) - HBA:9470 + caudal linear nucleus (human) @@ -10385,8 +9553,7 @@ - rostral linear nucleus (HBA) - HBA:9471 + rostral linear nucleus (human) @@ -10405,8 +9572,7 @@ - interfascicular linear nucleus (HBA) - HBA:9472 + interfascicular linear nucleus (human) @@ -10425,8 +9591,7 @@ - parabrachial pigmental nucleus (HBA) - HBA:9473 + parabrachial pigmental nucleus (human) @@ -10445,8 +9610,7 @@ - paranigral nucleus (HBA) - HBA:9474 + paranigral nucleus (human) @@ -10465,8 +9629,7 @@ - nucleus of the brachium of the inferior colliculus (HBA) - HBA:9483 + nucleus of the brachium of the inferior colliculus (human) @@ -10485,8 +9648,7 @@ - sagulum nucleus (HBA) - HBA:9486 + sagulum nucleus (human) @@ -10505,8 +9667,7 @@ - subcommissural organ (HBA) - HBA:9489 + subcommissural organ (human) @@ -10525,8 +9686,7 @@ - myelencephalon (HBA) - HBA:9512 + myelencephalon (human) @@ -10545,8 +9705,7 @@ - accessory cuneate nucleus (HBA) - HBA:9513 + accessory cuneate nucleus (human) @@ -10565,8 +9724,7 @@ - nucleus ambiguus (HBA) - HBA:9516 + nucleus ambiguus (human) @@ -10585,8 +9743,7 @@ - arcuate nucleus of medulla (HBA) - HBA:9519 + arcuate nucleus of medulla (human) @@ -10605,8 +9762,7 @@ - area postrema (HBA) - HBA:9522 + area postrema (human) @@ -10625,8 +9781,7 @@ - spinal cord gray commissure (HBA) - HBA:9525 + spinal cord gray commissure (human) @@ -10645,8 +9800,7 @@ - cochlear nuclear complex (HBA) - HBA:9528 + cochlear nuclear complex (human) @@ -10665,8 +9819,7 @@ - dorsal cochlear nucleus (HBA) - HBA:9530 + dorsal cochlear nucleus (human) @@ -10685,8 +9838,7 @@ - ventral cochlear nucleus (HBA) - HBA:9531 + ventral cochlear nucleus (human) @@ -10705,8 +9857,7 @@ - anteroventral cochlear nucleus (HBA) - HBA:9532 + anteroventral cochlear nucleus (human) @@ -10725,8 +9876,7 @@ - posteroventral cochlear nucleus (HBA) - HBA:9533 + posteroventral cochlear nucleus (human) @@ -10745,8 +9895,7 @@ - cuneate nucleus (HBA) - HBA:9542 + cuneate nucleus (human) @@ -10765,8 +9914,7 @@ - dorsal motor nucleus of vagus nerve (HBA) - HBA:9545 + dorsal motor nucleus of vagus nerve (human) @@ -10785,8 +9933,7 @@ - endolemniscal nucleus (HBA) - HBA:9548 + endolemniscal nucleus (human) @@ -10805,8 +9952,7 @@ - epifascicular nucleus (HBA) - HBA:9551 + epifascicular nucleus (human) @@ -10825,8 +9971,7 @@ - gracile nucleus (HBA) - HBA:9554 + gracile nucleus (human) @@ -10845,8 +9990,7 @@ - hypoglossal nucleus (HBA) - HBA:9557 + hypoglossal nucleus (human) @@ -10865,8 +10009,7 @@ - inferior olivary complex (HBA) - HBA:9560 + inferior olivary complex (human) @@ -10885,8 +10028,7 @@ - dorsal accessory inferior olivary nucleus (HBA) - HBA:9562 + dorsal accessory inferior olivary nucleus (human) @@ -10905,8 +10047,7 @@ - medial accessory inferior olivary nucleus (HBA) - HBA:9563 + medial accessory inferior olivary nucleus (human) @@ -10925,8 +10066,7 @@ - principal inferior olivary nucleus (HBA) - HBA:9564 + principal inferior olivary nucleus (human) @@ -10945,8 +10085,7 @@ - inferior salivatory nucleus (HBA) - HBA:9569 + inferior salivatory nucleus (human) @@ -10965,8 +10104,7 @@ - nucleus intercalatus (HBA) - HBA:9572 + nucleus intercalatus (human) @@ -10985,8 +10123,7 @@ - cerebellum interpositus nucleus (HBA) - HBA:9578 + cerebellum interpositus nucleus (human) @@ -11005,8 +10142,7 @@ - lateral pericuneate nucleus (HBA) - HBA:9581 + lateral pericuneate nucleus (human) @@ -11025,8 +10161,7 @@ - medial pericuneate nucleus (HBA) - HBA:9584 + medial pericuneate nucleus (human) @@ -11045,8 +10180,7 @@ - medullary reticular formation (HBA) - HBA:9587 + medullary reticular formation (human) @@ -11065,8 +10199,7 @@ - central medullary reticular nuclear complex (HBA) - HBA:9588 + central medullary reticular nuclear complex (human) @@ -11085,8 +10218,7 @@ - gigantocellular nucleus (HBA) - HBA:9597 + gigantocellular nucleus (human) @@ -11105,8 +10237,7 @@ - dorsal paragigantocellular nucleus (HBA) - HBA:9600 + dorsal paragigantocellular nucleus (human) @@ -11125,8 +10256,7 @@ - lateral paragigantocellular nucleus (HBA) - HBA:9601 + lateral paragigantocellular nucleus (human) @@ -11145,8 +10275,7 @@ - gigantocellular nucleus (HBA) - HBA:9602 + gigantocellular nucleus (human) @@ -11165,8 +10294,7 @@ - cerebellum intermediate zone (HBA) - HBA:9611 + cerebellum intermediate zone (human) @@ -11185,8 +10313,7 @@ - lateral medullary reticular complex (HBA) - HBA:9613 + lateral medullary reticular complex (human) @@ -11205,8 +10332,7 @@ - lateral reticular nucleus (HBA) - HBA:9616 + lateral reticular nucleus (human) @@ -11225,8 +10351,7 @@ - parvocellular reticular nucleus (HBA) - HBA:9624 + parvocellular reticular nucleus (human) @@ -11245,8 +10370,7 @@ - sublingual nucleus (HBA) - HBA:9627 + sublingual nucleus (human) @@ -11265,8 +10389,7 @@ - paratrigeminal nucleus (HBA) - HBA:9630 + paratrigeminal nucleus (human) @@ -11285,8 +10408,7 @@ - peritrigeminal nucleus (HBA) - HBA:9633 + peritrigeminal nucleus (human) @@ -11305,8 +10427,7 @@ - pontobulbar nucleus (HBA) - HBA:9636 + pontobulbar nucleus (human) @@ -11325,8 +10446,7 @@ - nucleus prepositus (HBA) - HBA:9639 + nucleus prepositus (human) @@ -11345,8 +10465,7 @@ - medullary raphe nuclear complex (HBA) - HBA:9642 + medullary raphe nuclear complex (human) @@ -11365,8 +10484,7 @@ - nucleus raphe magnus (HBA) - HBA:9643 + nucleus raphe magnus (human) @@ -11385,8 +10503,7 @@ - nucleus raphe obscurus (HBA) - HBA:9646 + nucleus raphe obscurus (human) @@ -11405,8 +10522,7 @@ - nucleus raphe pallidus (HBA) - HBA:9649 + nucleus raphe pallidus (human) @@ -11425,8 +10541,7 @@ - retroambiguus nucleus (HBA) - HBA:9650 + retroambiguus nucleus (human) @@ -11445,8 +10560,7 @@ - nucleus of solitary tract (HBA) - HBA:9653 + nucleus of solitary tract (human) @@ -11465,8 +10579,7 @@ - medial subnucleus of solitary tract (HBA) - HBA:9661 + medial subnucleus of solitary tract (human) @@ -11485,8 +10598,7 @@ - ventrolateral nucleus of solitary tract (HBA) - HBA:9664 + ventrolateral nucleus of solitary tract (human) @@ -11505,8 +10617,7 @@ - spinal nucleus of trigeminal nerve (HBA) - HBA:9676 + spinal nucleus of trigeminal nerve (human) @@ -11525,8 +10636,7 @@ - interpolar part of spinal trigeminal nucleus (HBA) - HBA:9678 + interpolar part of spinal trigeminal nucleus (human) @@ -11545,8 +10655,7 @@ - oral part of spinal trigeminal nucleus (HBA) - HBA:9679 + oral part of spinal trigeminal nucleus (human) @@ -11565,8 +10674,7 @@ - supraspinal nucleus (HBA) - HBA:9694 + supraspinal nucleus (human) @@ -11585,8 +10693,7 @@ - vestibular nuclear complex (HBA) - HBA:9697 + vestibular nuclear complex (human) @@ -11605,8 +10712,7 @@ - lateral vestibular nucleus (HBA) - HBA:9699 + lateral vestibular nucleus (human) @@ -11625,8 +10731,7 @@ - medial vestibular nucleus (HBA) - HBA:9700 + medial vestibular nucleus (human) @@ -11645,8 +10750,7 @@ - superior vestibular nucleus (HBA) - HBA:9701 + superior vestibular nucleus (human) @@ -11665,8 +10769,7 @@ - inferior vestibular nucleus (HBA) - HBA:9702 + inferior vestibular nucleus (human) @@ -11685,8 +10788,7 @@ - choroid plexus of lateral ventricle (HBA) - HBA:9708 + choroid plexus of lateral ventricle (human) @@ -11705,8 +10807,7 @@ - choroid plexus of third ventricle (HBA) - HBA:9709 + choroid plexus of third ventricle (human) @@ -11725,34 +10826,7 @@ - choroid plexus of fourth ventricle (HBA) - HBA:9710 - - - - - - - - - - - - - - - - - - - - - - - - - HBA:ENTITY - HBA entity + choroid plexus of fourth ventricle (human) @@ -11847,12 +10921,6 @@ - - - - - - @@ -12675,12 +11743,6 @@ - - - - - - @@ -12885,12 +11947,6 @@ - - - - - - @@ -13743,12 +12799,6 @@ - - - - - - @@ -14037,12 +13087,6 @@ - - - - - - @@ -15168,15 +14212,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/uberon-bridge-to-hsapdv.obo b/src/ontology/bridge/uberon-bridge-to-hsapdv.obo deleted file mode 100644 index 3ad205ac94..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-hsapdv.obo +++ /dev/null @@ -1,181 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-hsapdv -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: HsapDv:0000002 ! -property_value: IAO:0000589 "embryo stage (HsapDv)" xsd:string -intersection_of: UBERON:0000068 ! embryo stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:0000001 ! -property_value: IAO:0000589 "life cycle (HsapDv)" xsd:string -intersection_of: UBERON:0000104 ! life cycle -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:0000000 ! -property_value: IAO:0000589 "life cycle stage (HsapDv)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:0000006 ! -property_value: IAO:0000589 "blastula stage (HsapDv)" xsd:string -intersection_of: UBERON:0000108 ! blastula stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:0000010 ! -property_value: IAO:0000589 "gastrula stage (HsapDv)" xsd:string -intersection_of: UBERON:0000109 ! gastrula stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:0000012 ! -property_value: IAO:0000589 "neurula stage (HsapDv)" xsd:string -intersection_of: UBERON:0000110 ! neurula stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:0000015 ! -property_value: IAO:0000589 "organogenesis stage (HsapDv)" xsd:string -intersection_of: UBERON:0000111 ! organogenesis stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:0000082 ! -property_value: IAO:0000589 "neonate stage (HsapDv)" xsd:string -intersection_of: UBERON:0007221 ! neonate stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:0000093 ! -property_value: IAO:0000589 "late adult stage (HsapDv)" xsd:string -intersection_of: UBERON:0007222 ! late adult stage -intersection_of: occurs_in NCBITaxon:9606 - -[Term] -id: HsapDv:ENTITY -name: HsapDv entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9606 -relationship: only_in_taxon NCBITaxon:9606 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-hsapdv.owl b/src/ontology/bridge/uberon-bridge-to-hsapdv.owl index 2c753a5df4..c3b833802a 100644 --- a/src/ontology/bridge/uberon-bridge-to-hsapdv.owl +++ b/src/ontology/bridge/uberon-bridge-to-hsapdv.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -339,8 +72,7 @@ - life cycle stage (HsapDv) - HsapDv:0000000 + life cycle stage (human) @@ -359,8 +91,7 @@ - life cycle (HsapDv) - HsapDv:0000001 + life cycle (human) @@ -379,8 +110,7 @@ - embryo stage (HsapDv) - HsapDv:0000002 + embryo stage (human) @@ -399,8 +129,7 @@ - blastula stage (HsapDv) - HsapDv:0000006 + blastula stage (human) @@ -419,8 +148,7 @@ - gastrula stage (HsapDv) - HsapDv:0000010 + gastrula stage (human) @@ -439,8 +167,7 @@ - neurula stage (HsapDv) - HsapDv:0000012 + neurula stage (human) @@ -459,8 +186,7 @@ - organogenesis stage (HsapDv) - HsapDv:0000015 + organogenesis stage (human) @@ -479,8 +205,7 @@ - neonate stage (HsapDv) - HsapDv:0000082 + neonate stage (human) @@ -499,34 +224,7 @@ - late adult stage (HsapDv) - HsapDv:0000093 - - - - - - - - - - - - - - - - - - - - - - - - - HsapDv:ENTITY - HsapDv entity + late adult stage (human) @@ -579,12 +277,6 @@ - - - - - - @@ -598,5 +290,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-kupo.owl b/src/ontology/bridge/uberon-bridge-to-kupo.owl new file mode 100644 index 0000000000..06e634bc75 --- /dev/null +++ b/src/ontology/bridge/uberon-bridge-to-kupo.owl @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + glomerular capsule (human) + + + + + + + + + + + + + + + + + + + vasa recta descending limb (human) + + + + + + + + + + + + + + + + + + + inner medulla vasa recta descending limb (human) + + + + + + + + + + + + + + + + + + + outer medulla vasa recta descending limb (human) + + + + + + + + + + + + + + + + + + + vasa recta ascending limb (human) + + + + + + + + + + + + + + + + + + + inner medulla vasa recta ascending limb (human) + + + + + + + + + + + + + + + + + + + outer medulla vasa recta ascending limb (human) + + + + + + + + + + + + + + + + + + + juxtamedullary cortex (human) + + + + + + + + + + + + + + + + + + + tip of renal papilla (human) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ontology/bridge/uberon-bridge-to-ma.obo b/src/ontology/bridge/uberon-bridge-to-ma.obo deleted file mode 100644 index 93bf13bd83..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-ma.obo +++ /dev/null @@ -1,18584 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-ma -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to ma" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between adult moouse anatomy and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-creator "Terry Hayamizu" xsd:string -property_value: dc-contributor "George Gkoutos" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/ma.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: MA:0000392 ! -property_value: IAO:0000589 "uterine cervix (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000002 ! uterine cervix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000282 ! -property_value: IAO:0000589 "naris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000003 ! naris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000281 ! -property_value: IAO:0000589 "nose (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000004 ! nose -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000127 ! -property_value: IAO:0000589 "islet of Langerhans (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000006 ! islet of Langerhans -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000176 ! -property_value: IAO:0000589 "pituitary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000218 ! -property_value: IAO:0000589 "peripheral nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000223 ! -property_value: IAO:0000589 "parasympathetic nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002850 ! -property_value: IAO:0000589 "somatic nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000012 ! somatic nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000225 ! -property_value: IAO:0000589 "sympathetic nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000151 ! -property_value: IAO:0000589 "zone of skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000014 ! zone of skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001582 ! -property_value: IAO:0000589 "endocrine pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000016 ! endocrine pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002415 ! -property_value: IAO:0000589 "exocrine pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000017 ! exocrine pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000261 ! -property_value: IAO:0000589 "camera-type eye (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000017 ! -property_value: IAO:0000589 "sense organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000020 ! sense organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000139 ! -property_value: IAO:0000589 "lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000029 ! lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001858 ! -property_value: IAO:0000589 "lamina propria of trachea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000031 ! lamina propria of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000023 ! -property_value: IAO:0000589 "head (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002907 ! -property_value: IAO:0000589 "primary ovarian follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000035 ! primary ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002908 ! -property_value: IAO:0000589 "secondary ovarian follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000036 ! secondary ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002909 ! -property_value: IAO:0000589 "tertiary ovarian follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000037 ! tertiary ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002511 ! -property_value: IAO:0000589 "follicular fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000038 ! follicular fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000115 ! -property_value: IAO:0000589 "tendon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000043 ! tendon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000231 ! -property_value: IAO:0000589 "dorsal root ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000232 ! -property_value: IAO:0000589 "dorsal root ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002406 ! -property_value: IAO:0000589 "ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002747 ! -property_value: IAO:0000589 "fornix of brain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000052 ! fornix of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001306 ! -property_value: IAO:0000589 "macula lutea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000053 ! macula lutea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000378 ! -property_value: IAO:0000589 "ureter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000056 ! ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000379 ! -property_value: IAO:0000589 "urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000057 ! urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000333 ! -property_value: IAO:0000589 "large intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000059 ! large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003000 ! -property_value: IAO:0000589 "anatomical structure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003001 ! -property_value: IAO:0000589 "organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000062 ! organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000434 ! -property_value: IAO:0000589 "proximo-distal subdivision of respiratory tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000072 ! proximo-distal subdivision of respiratory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001657 ! -property_value: IAO:0000589 "renal glomerulus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000074 ! renal glomerulus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000396 ! -property_value: IAO:0000589 "male reproductive system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000368 ! -property_value: IAO:0000589 "adult mammalian kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000082 ! adult mammalian kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001715 ! -property_value: IAO:0000589 "zona pellucida (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003098 ! -property_value: IAO:0000589 "lobe of lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000101 ! lobe of lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001782 ! -property_value: IAO:0000589 "lung connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000114 ! lung connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001783 ! -property_value: IAO:0000589 "lung epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000115 ! lung epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001014 ! -property_value: IAO:0000589 "facial nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000127 ! facial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001712 ! -property_value: IAO:0000589 "theca cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000155 ! theca cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001713 ! -property_value: IAO:0000589 "theca externa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000156 ! theca externa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001714 ! -property_value: IAO:0000589 "theca interna (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000157 ! theca interna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000330 ! -property_value: IAO:0000589 "anal canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000159 ! anal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000328 ! -property_value: IAO:0000589 "intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001524 ! -property_value: IAO:0000589 "intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000341 ! -property_value: IAO:0000589 "mouth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002474 ! -property_value: IAO:0000589 "mouth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002893 ! -property_value: IAO:0000589 "amniotic fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000173 ! amniotic fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000059 ! -property_value: IAO:0000589 "blood (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000178 ! blood -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001466 ! -property_value: IAO:0000589 "tetrapod frontal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000209 ! tetrapod frontal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001469 ! -property_value: IAO:0000589 "tetrapod parietal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000210 ! tetrapod parietal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000113 ! -property_value: IAO:0000589 "ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000211 ! ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003194 ! -property_value: IAO:0000589 "colonic mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000317 ! colonic mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003207 ! -property_value: IAO:0000589 "duodenal mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000320 ! duodenal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003216 ! -property_value: IAO:0000589 "ileal mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000331 ! ileal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001104 ! -property_value: IAO:0000589 "ophthalmic nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000348 ! ophthalmic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003143 ! -property_value: IAO:0000589 "pharyngeal mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000355 ! pharyngeal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003044 ! -property_value: IAO:0000589 "preputial gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000359 ! preputial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000373 ! -property_value: IAO:0000589 "renal medulla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000362 ! renal medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001101 ! -property_value: IAO:0000589 "mandibular nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000375 ! mandibular nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000052 ! -property_value: IAO:0000589 "hindlimb stylopod (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000376 ! hindlimb stylopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001103 ! -property_value: IAO:0000589 "maxillary nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000377 ! maxillary nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001596 ! -property_value: IAO:0000589 "tongue muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000378 ! tongue muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001698 ! -property_value: IAO:0000589 "urinary bladder detrusor smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000381 ! urinary bladder detrusor smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002888 ! -property_value: IAO:0000589 "musculature of body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000383 ! musculature of body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001085 ! -property_value: IAO:0000589 "cochlear ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000395 ! cochlear ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001594 ! -property_value: IAO:0000589 "vallate papilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000396 ! vallate papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003195 ! -property_value: IAO:0000589 "colonic epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000397 ! colonic epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003214 ! -property_value: IAO:0000589 "jejunal mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000399 ! jejunal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003215 ! -property_value: IAO:0000589 "jejunal epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000400 ! jejunal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002815 ! -property_value: IAO:0000589 "mandibular ramus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000401 ! mandibular ramus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003039 ! -property_value: IAO:0000589 "eccrine sweat gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000423 ! eccrine sweat gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001737 ! -property_value: IAO:0000589 "prostate epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000428 ! prostate epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001147 ! -property_value: IAO:0000589 "enteric plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000429 ! enteric plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002220 ! -property_value: IAO:0000589 "right testicular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000442 ! right testicular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002219 ! -property_value: IAO:0000589 "left testicular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000443 ! left testicular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000924 ! -property_value: IAO:0000589 "septum of telencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000446 ! septum of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000906 ! -property_value: IAO:0000589 "prefrontal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000451 ! prefrontal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002905 ! -property_value: IAO:0000589 "decidua basalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000453 ! decidua basalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002504 ! -property_value: IAO:0000589 "secretion of exocrine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000456 ! secretion of exocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002936 ! -property_value: IAO:0000589 "major vestibular gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000460 ! major vestibular gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002450 ! -property_value: IAO:0000589 "organism substance (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000003 ! -property_value: IAO:0000589 "anatomical system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000411 ! -property_value: IAO:0000589 "testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000381 ! -property_value: IAO:0000589 "female reproductive system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000474 ! female reproductive system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002433 ! -property_value: IAO:0000589 "organism subdivision (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003002 ! -property_value: IAO:0000589 "tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003060 ! -property_value: IAO:0000589 "epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002723 ! -property_value: IAO:0000589 "hippocampal commissure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000908 ! hippocampal commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000022 ! -property_value: IAO:0000589 "thoracic segment of trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000915 ! thoracic segment of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000029 ! -property_value: IAO:0000589 "abdomen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000916 ! abdomen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001797 ! -property_value: IAO:0000589 "chordate pharyngeal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000933 ! chordate pharyngeal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002722 ! -property_value: IAO:0000589 "anterior commissure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002743 ! -property_value: IAO:0000589 "posterior commissure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000936 ! posterior commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001097 ! -property_value: IAO:0000589 "cranial nerve II (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000353 ! -property_value: IAO:0000589 "stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000945 ! stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000086 ! -property_value: IAO:0000589 "cardiac valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000946 ! cardiac valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000062 ! -property_value: IAO:0000589 "aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000947 ! aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000072 ! -property_value: IAO:0000589 "heart (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000948 ! heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000012 ! -property_value: IAO:0000589 "endocrine system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002311 ! -property_value: IAO:0000589 "gracilis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000950 ! gracilis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000168 ! -property_value: IAO:0000589 "brain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000185 ! -property_value: IAO:0000589 "cerebral cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001098 ! -property_value: IAO:0000589 "optic chiasma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001159 ! -property_value: IAO:0000589 "thoracic ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000961 ! thoracic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000266 ! -property_value: IAO:0000589 "cornea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000964 ! cornea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000275 ! -property_value: IAO:0000589 "lens of camera-type eye (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000276 ! -property_value: IAO:0000589 "retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000966 ! retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000024 ! -property_value: IAO:0000589 "neck (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000974 ! neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001331 ! -property_value: IAO:0000589 "sternum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000975 ! sternum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001356 ! -property_value: IAO:0000589 "humerus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000976 ! humerus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000433 ! -property_value: IAO:0000589 "pleura (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000977 ! pleura -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000047 ! -property_value: IAO:0000589 "leg (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000978 ! leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001361 ! -property_value: IAO:0000589 "tibia (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000979 ! tibia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002821 ! -property_value: IAO:0000589 "trochanter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000980 ! trochanter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001359 ! -property_value: IAO:0000589 "femur (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000981 ! femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000319 ! -property_value: IAO:0000589 "skeletal joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000982 ! skeletal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000049 ! -property_value: IAO:0000589 "metatarsus region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000983 ! metatarsus region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002084 ! -property_value: IAO:0000589 "axillary vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000985 ! axillary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000204 ! -property_value: IAO:0000589 "pons (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000988 ! pons -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000408 ! -property_value: IAO:0000589 "penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000989 ! penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000326 ! -property_value: IAO:0000589 "reproductive system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002420 ! -property_value: IAO:0000589 "gonad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000384 ! -property_value: IAO:0000589 "ovary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000389 ! -property_value: IAO:0000589 "uterus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000995 ! uterus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000394 ! -property_value: IAO:0000589 "vagina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000996 ! vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000395 ! -property_value: IAO:0000589 "mammalian vulva (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000997 ! mammalian vulva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000410 ! -property_value: IAO:0000589 "seminal vesicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000998 ! seminal vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003247 ! -property_value: IAO:0000589 "ejaculatory duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0000999 ! ejaculatory duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000413 ! -property_value: IAO:0000589 "vas deferens (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001000 ! vas deferens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000153 ! -property_value: IAO:0000589 "skin epidermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001003 ! skin epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000327 ! -property_value: IAO:0000589 "respiratory system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002431 ! -property_value: IAO:0000589 "digestive system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000325 ! -property_value: IAO:0000589 "renal system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000009 ! -property_value: IAO:0000589 "adipose tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001013 ! adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000165 ! -property_value: IAO:0000589 "musculature (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001015 ! musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000016 ! -property_value: IAO:0000589 "nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000167 ! -property_value: IAO:0000589 "central nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000217 ! -property_value: IAO:0000589 "nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000228 ! -property_value: IAO:0000589 "nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002442 ! -property_value: IAO:0000589 "sensory system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002446 ! -property_value: IAO:0000589 "gustatory system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001033 ! gustatory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001499 ! -property_value: IAO:0000589 "dento-alveolar joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001035 ! dento-alveolar joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000155 ! -property_value: IAO:0000589 "strand of hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001037 ! strand of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001526 ! -property_value: IAO:0000589 "foregut (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001041 ! foregut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000432 ! -property_value: IAO:0000589 "chordate pharynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000352 ! -property_value: IAO:0000589 "esophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001043 ! esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000346 ! -property_value: IAO:0000589 "saliva-secreting gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001044 ! saliva-secreting gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001564 ! -property_value: IAO:0000589 "midgut (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001045 ! midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001527 ! -property_value: IAO:0000589 "hindgut (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001046 ! hindgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001796 ! -property_value: IAO:0000589 "hypopharynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001051 ! hypopharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000336 ! -property_value: IAO:0000589 "rectum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001052 ! rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000001 ! -property_value: IAO:0000589 "anatomical entity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000992 ! -property_value: IAO:0000589 "flocculus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001063 ! flocculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000126 ! -property_value: IAO:0000589 "ventral pancreatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001064 ! ventral pancreatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002697 ! -property_value: IAO:0000589 "parotid main excretory duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001065 ! parotid main excretory duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000110 ! -property_value: IAO:0000589 "intervertebral disk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001066 ! intervertebral disk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001513 ! -property_value: IAO:0000589 "vertebral arch joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001067 ! vertebral arch joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000498 ! -property_value: IAO:0000589 "skin of back (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001068 ! skin of back -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000122 ! -property_value: IAO:0000589 "head of pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001069 ! head of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001929 ! -property_value: IAO:0000589 "external carotid artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002052 ! -property_value: IAO:0000589 "superficial cervical artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001071 ! superficial cervical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000480 ! -property_value: IAO:0000589 "posterior vena cava (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001072 ! posterior vena cava -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000332 ! -property_value: IAO:0000589 "ileocecal junction (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001073 ! ileocecal junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000053 ! -property_value: IAO:0000589 "pericardial cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001457 ! -property_value: IAO:0000589 "bony vertebral centrum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001075 ! bony vertebral centrum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001455 ! -property_value: IAO:0000589 "neural spine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001076 ! neural spine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001456 ! -property_value: IAO:0000589 "transverse process of vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001077 ! transverse process of vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001458 ! -property_value: IAO:0000589 "pedicle of vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001078 ! pedicle of vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001452 ! -property_value: IAO:0000589 "prezygapophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001079 ! prezygapophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001451 ! -property_value: IAO:0000589 "postzygapophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001080 ! postzygapophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000079 ! -property_value: IAO:0000589 "endocardium of ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001081 ! endocardium of ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000082 ! -property_value: IAO:0000589 "myocardium of ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001083 ! myocardium of ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000582 ! -property_value: IAO:0000589 "skin of head (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001084 ! skin of head -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000517 ! -property_value: IAO:0000589 "skin of trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001085 ! skin of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002532 ! -property_value: IAO:0000589 "pleural fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001087 ! pleural fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002545 ! -property_value: IAO:0000589 "urine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001088 ! urine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002539 ! -property_value: IAO:0000589 "sweat (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001089 ! sweat -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002544 ! -property_value: IAO:0000589 "synovial fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001090 ! synovial fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000348 ! -property_value: IAO:0000589 "calcareous tooth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001091 ! calcareous tooth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001421 ! -property_value: IAO:0000589 "vertebral bone 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001092 ! vertebral bone 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001422 ! -property_value: IAO:0000589 "vertebral bone 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001093 ! vertebral bone 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000313 ! -property_value: IAO:0000589 "sacral vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001094 ! sacral vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000310 ! -property_value: IAO:0000589 "caudal vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001420 ! -property_value: IAO:0000589 "caudal vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002691 ! -property_value: IAO:0000589 "wall of esophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001096 ! wall of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000735 ! -property_value: IAO:0000589 "axillary lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001097 ! axillary lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000349 ! -property_value: IAO:0000589 "incisor tooth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001098 ! incisor tooth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002222 ! -property_value: IAO:0000589 "subcostal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001099 ! subcostal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002355 ! -property_value: IAO:0000589 "pectoralis minor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001100 ! pectoralis minor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002156 ! -property_value: IAO:0000589 "external jugular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001101 ! external jugular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001846 ! -property_value: IAO:0000589 "cartilage of main bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001102 ! cartilage of main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001904 ! -property_value: IAO:0000589 "diaphragm (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001103 ! diaphragm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002155 ! -property_value: IAO:0000589 "anterior jugular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001104 ! anterior jugular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001329 ! -property_value: IAO:0000589 "clavicle bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001105 ! clavicle bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002092 ! -property_value: IAO:0000589 "cephalic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001106 ! cephalic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002383 ! -property_value: IAO:0000589 "sternohyoid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001107 ! sternohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002348 ! -property_value: IAO:0000589 "omohyoid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001108 ! omohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002386 ! -property_value: IAO:0000589 "sternothyroid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001109 ! sternothyroid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002393 ! -property_value: IAO:0000589 "thyrohyoid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001110 ! thyrohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002324 ! -property_value: IAO:0000589 "intercostal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001111 ! intercostal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003165 ! -property_value: IAO:0000589 "intercostal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001111 ! intercostal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002331 ! -property_value: IAO:0000589 "latissimus dorsi muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001112 ! latissimus dorsi muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000360 ! -property_value: IAO:0000589 "lobe of liver (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001113 ! lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000363 ! -property_value: IAO:0000589 "right lobe of liver (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000361 ! -property_value: IAO:0000589 "left lobe of liver (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000365 ! -property_value: IAO:0000589 "quadrate lobe of liver (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001116 ! quadrate lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000364 ! -property_value: IAO:0000589 "caudate lobe of liver (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001117 ! caudate lobe of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000131 ! -property_value: IAO:0000589 "lobe of thyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001118 ! lobe of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000729 ! -property_value: IAO:0000589 "right lobe of thyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001119 ! right lobe of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000728 ! -property_value: IAO:0000589 "left lobe of thyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001120 ! left lobe of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002341 ! -property_value: IAO:0000589 "longus colli muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001121 ! longus colli muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002370 ! -property_value: IAO:0000589 "scalenus medius (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001122 ! scalenus medius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002369 ! -property_value: IAO:0000589 "scalenus posterior (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001123 ! scalenus posterior -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002378 ! -property_value: IAO:0000589 "serratus ventralis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001125 ! serratus ventralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002377 ! -property_value: IAO:0000589 "serratus dorsalis superior muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001126 ! serratus dorsalis superior muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002376 ! -property_value: IAO:0000589 "serratus dorsalis inferior muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001127 ! serratus dorsalis inferior muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002384 ! -property_value: IAO:0000589 "sternocleidomastoid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001128 ! sternocleidomastoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002388 ! -property_value: IAO:0000589 "subscapularis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001129 ! subscapularis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002416 ! -property_value: IAO:0000589 "vertebral column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001454 ! -property_value: IAO:0000589 "vertebral foramen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001131 ! vertebral foramen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000128 ! -property_value: IAO:0000589 "parathyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001132 ! parathyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002439 ! -property_value: IAO:0000589 "skeletal muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001134 ! skeletal muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000166 ! -property_value: IAO:0000589 "smooth muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000565 ! -property_value: IAO:0000589 "mesothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001136 ! mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002179 ! -property_value: IAO:0000589 "superior mesenteric vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001138 ! superior mesenteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002143 ! -property_value: IAO:0000589 "common iliac vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001139 ! common iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002210 ! -property_value: IAO:0000589 "renal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001140 ! renal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002212 ! -property_value: IAO:0000589 "right renal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001141 ! right renal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002211 ! -property_value: IAO:0000589 "left renal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001142 ! left renal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003015 ! -property_value: IAO:0000589 "hepatic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002218 ! -property_value: IAO:0000589 "testicular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001144 ! testicular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002234 ! -property_value: IAO:0000589 "testicular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001144 ! testicular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002186 ! -property_value: IAO:0000589 "ovarian vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001145 ! ovarian vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002081 ! -property_value: IAO:0000589 "suprarenal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001146 ! suprarenal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002229 ! -property_value: IAO:0000589 "suprarenal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001146 ! suprarenal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001168 ! -property_value: IAO:0000589 "median nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001148 ! median nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000359 ! -property_value: IAO:0000589 "bare area of liver (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001149 ! bare area of liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000121 ! -property_value: IAO:0000589 "body of pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001150 ! body of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000123 ! -property_value: IAO:0000589 "tail of pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001151 ! tail of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000355 ! -property_value: IAO:0000589 "cystic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000334 ! -property_value: IAO:0000589 "caecum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001153 ! caecum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001540 ! -property_value: IAO:0000589 "vermiform appendix (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001154 ! vermiform appendix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000335 ! -property_value: IAO:0000589 "colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001155 ! colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001541 ! -property_value: IAO:0000589 "ascending colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001156 ! ascending colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001543 ! -property_value: IAO:0000589 "transverse colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001157 ! transverse colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001542 ! -property_value: IAO:0000589 "descending colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001158 ! descending colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001612 ! -property_value: IAO:0000589 "fundus of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001160 ! fundus of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002559 ! -property_value: IAO:0000589 "body of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001161 ! body of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001609 ! -property_value: IAO:0000589 "cardia of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001162 ! cardia of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001616 ! -property_value: IAO:0000589 "lesser curvature of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001163 ! lesser curvature of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001615 ! -property_value: IAO:0000589 "greater curvature of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001164 ! greater curvature of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001624 ! -property_value: IAO:0000589 "pyloric antrum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001165 ! pyloric antrum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002560 ! -property_value: IAO:0000589 "pylorus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001166 ! pylorus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002692 ! -property_value: IAO:0000589 "wall of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001167 ! wall of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002696 ! -property_value: IAO:0000589 "wall of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001168 ! wall of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002695 ! -property_value: IAO:0000589 "wall of large intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001169 ! wall of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001555 ! -property_value: IAO:0000589 "mesentery of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001170 ! mesentery of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002498 ! -property_value: IAO:0000589 "portal lobule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001171 ! portal lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002496 ! -property_value: IAO:0000589 "hepatic acinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001172 ! hepatic acinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001631 ! -property_value: IAO:0000589 "common bile duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002660 ! -property_value: IAO:0000589 "common hepatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001175 ! common hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001639 ! -property_value: IAO:0000589 "right hepatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001176 ! right hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001638 ! -property_value: IAO:0000589 "left hepatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001177 ! left hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000054 ! -property_value: IAO:0000589 "peritoneal cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001179 ! peritoneal cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000447 ! -property_value: IAO:0000589 "superior recess of lesser sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001180 ! superior recess of lesser sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000446 ! -property_value: IAO:0000589 "inferior recess of lesser sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001181 ! inferior recess of lesser sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002005 ! -property_value: IAO:0000589 "superior mesenteric artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001182 ! superior mesenteric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002004 ! -property_value: IAO:0000589 "inferior mesenteric artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001183 ! inferior mesenteric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002035 ! -property_value: IAO:0000589 "renal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001184 ! renal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002037 ! -property_value: IAO:0000589 "right renal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001185 ! right renal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002036 ! -property_value: IAO:0000589 "left renal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001186 ! left renal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002063 ! -property_value: IAO:0000589 "testicular artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001187 ! testicular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002042 ! -property_value: IAO:0000589 "right testicular artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001188 ! right testicular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002041 ! -property_value: IAO:0000589 "left testicular artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001189 ! left testicular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002012 ! -property_value: IAO:0000589 "ovarian artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001190 ! ovarian artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001972 ! -property_value: IAO:0000589 "common iliac artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001191 ! common iliac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001961 ! -property_value: IAO:0000589 "left gastric artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001192 ! left gastric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001963 ! -property_value: IAO:0000589 "hepatic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001991 ! -property_value: IAO:0000589 "splenic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001194 ! splenic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003177 ! -property_value: IAO:0000589 "splenic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001194 ! splenic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002014 ! -property_value: IAO:0000589 "inferior pancreaticoduodenal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001195 ! inferior pancreaticoduodenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002007 ! -property_value: IAO:0000589 "middle colic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001196 ! middle colic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001970 ! -property_value: IAO:0000589 "ileocolic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001197 ! ileocolic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002057 ! -property_value: IAO:0000589 "superior suprarenal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001198 ! superior suprarenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002683 ! -property_value: IAO:0000589 "mucosa of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001199 ! mucosa of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002685 ! -property_value: IAO:0000589 "submucosa of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001200 ! submucosa of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001626 ! -property_value: IAO:0000589 "serosa of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001201 ! serosa of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002952 ! -property_value: IAO:0000589 "pyloric sphincter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001202 ! pyloric sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002684 ! -property_value: IAO:0000589 "muscularis mucosae of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001203 ! muscularis mucosae of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002686 ! -property_value: IAO:0000589 "mucosa of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001204 ! mucosa of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001562 ! -property_value: IAO:0000589 "submucosa of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001205 ! submucosa of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001558 ! -property_value: IAO:0000589 "serosa of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001206 ! serosa of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002688 ! -property_value: IAO:0000589 "mucosa of large intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001207 ! mucosa of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002690 ! -property_value: IAO:0000589 "submucosa of large intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001208 ! submucosa of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001546 ! -property_value: IAO:0000589 "serosa of large intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001209 ! serosa of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002687 ! -property_value: IAO:0000589 "muscularis mucosae of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001210 ! muscularis mucosae of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000137 ! -property_value: IAO:0000589 "Peyer's patch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001211 ! Peyer's patch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001551 ! -property_value: IAO:0000589 "duodenal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001212 ! duodenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001563 ! -property_value: IAO:0000589 "intestinal villus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001213 ! intestinal villus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002189 ! -property_value: IAO:0000589 "pancreatic tributary of splenic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001214 ! pancreatic tributary of splenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002178 ! -property_value: IAO:0000589 "inferior mesenteric vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001215 ! inferior mesenteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002153 ! -property_value: IAO:0000589 "jejunal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001216 ! jejunal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002140 ! -property_value: IAO:0000589 "ileal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001217 ! ileal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002181 ! -property_value: IAO:0000589 "middle colic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001218 ! middle colic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002141 ! -property_value: IAO:0000589 "ileocolic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001219 ! ileocolic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002362 ! -property_value: IAO:0000589 "quadratus lumborum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001220 ! quadratus lumborum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002396 ! -property_value: IAO:0000589 "transversus abdominis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001221 ! transversus abdominis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001685 ! -property_value: IAO:0000589 "right ureter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001222 ! right ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001684 ! -property_value: IAO:0000589 "left ureter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001223 ! left ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000374 ! -property_value: IAO:0000589 "renal pelvis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001224 ! renal pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000372 ! -property_value: IAO:0000589 "cortex of kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001225 ! cortex of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001644 ! -property_value: IAO:0000589 "major calyx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001226 ! major calyx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001645 ! -property_value: IAO:0000589 "minor calyx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001227 ! minor calyx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002730 ! -property_value: IAO:0000589 "renal papilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001228 ! renal papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000376 ! -property_value: IAO:0000589 "renal corpuscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001229 ! renal corpuscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001660 ! -property_value: IAO:0000589 "glomerular capsule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000377 ! -property_value: IAO:0000589 "nephron tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001231 ! nephron tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000371 ! -property_value: IAO:0000589 "collecting duct of renal tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001232 ! collecting duct of renal tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000719 ! -property_value: IAO:0000589 "right adrenal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001233 ! right adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000718 ! -property_value: IAO:0000589 "left adrenal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001234 ! left adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000118 ! -property_value: IAO:0000589 "adrenal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000119 ! -property_value: IAO:0000589 "adrenal medulla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001137 ! -property_value: IAO:0000589 "paraaortic body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001237 ! paraaortic body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001554 ! -property_value: IAO:0000589 "lamina propria of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001238 ! lamina propria of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002689 ! -property_value: IAO:0000589 "muscularis mucosae of large intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001239 ! muscularis mucosae of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002694 ! -property_value: IAO:0000589 "muscularis mucosae of intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001240 ! muscularis mucosae of intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001552 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001241 ! crypt of Lieberkuhn of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001537 ! -property_value: IAO:0000589 "intestinal mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001242 ! intestinal mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001538 ! -property_value: IAO:0000589 "serosa of intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001243 ! serosa of intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001534 ! -property_value: IAO:0000589 "internal anal sphincter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001244 ! internal anal sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000331 ! -property_value: IAO:0000589 "anus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001245 ! anus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002668 ! -property_value: IAO:0000589 "interlobular bile duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001246 ! interlobular bile duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001622 ! -property_value: IAO:0000589 "falciform ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001247 ! falciform ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002670 ! -property_value: IAO:0000589 "hilum of spleen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001248 ! hilum of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002672 ! -property_value: IAO:0000589 "spleen lymphoid follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001249 ! spleen lymphoid follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000756 ! -property_value: IAO:0000589 "red pulp of spleen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001250 ! red pulp of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000755 ! -property_value: IAO:0000589 "marginal zone of spleen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001251 ! marginal zone of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002652 ! -property_value: IAO:0000589 "adventitia of ureter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001252 ! adventitia of ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002653 ! -property_value: IAO:0000589 "lamina propria of ureter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001253 ! lamina propria of ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002655 ! -property_value: IAO:0000589 "urothelium of ureter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001254 ! urothelium of ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000380 ! -property_value: IAO:0000589 "urinary bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002493 ! -property_value: IAO:0000589 "wall of urinary bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001256 ! wall of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002492 ! -property_value: IAO:0000589 "trigone of urinary bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001257 ! trigone of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002491 ! -property_value: IAO:0000589 "neck of urinary bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001258 ! neck of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001692 ! -property_value: IAO:0000589 "mucosa of urinary bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001259 ! mucosa of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001696 ! -property_value: IAO:0000589 "serosa of urinary bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001260 ! serosa of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001695 ! -property_value: IAO:0000589 "lamina propria of urinary bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001261 ! lamina propria of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001525 ! -property_value: IAO:0000589 "wall of intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001262 ! wall of intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002693 ! -property_value: IAO:0000589 "wall of intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001262 ! wall of intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002417 ! -property_value: IAO:0000589 "pancreatic acinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001263 ! pancreatic acinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000120 ! -property_value: IAO:0000589 "pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001264 ! pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000758 ! -property_value: IAO:0000589 "trabecula of spleen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001265 ! trabecula of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002671 ! -property_value: IAO:0000589 "splenic cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001266 ! splenic cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001167 ! -property_value: IAO:0000589 "femoral nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001267 ! femoral nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002531 ! -property_value: IAO:0000589 "peritoneal fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001268 ! peritoneal fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001335 ! -property_value: IAO:0000589 "acetabular part of hip bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001269 ! acetabular part of hip bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001336 ! -property_value: IAO:0000589 "ilium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001273 ! ilium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001337 ! -property_value: IAO:0000589 "ischium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001274 ! ischium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001338 ! -property_value: IAO:0000589 "pubis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001275 ! pubis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001610 ! -property_value: IAO:0000589 "epithelium of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001276 ! epithelium of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001536 ! -property_value: IAO:0000589 "intestinal epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001277 ! intestinal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001545 ! -property_value: IAO:0000589 "epithelium of large intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001278 ! epithelium of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002499 ! -property_value: IAO:0000589 "portal triad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001279 ! portal triad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000366 ! -property_value: IAO:0000589 "liver parenchyma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000367 ! -property_value: IAO:0000589 "hepatic sinusoid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002669 ! -property_value: IAO:0000589 "intralobular bile duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001282 ! intralobular bile duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002495 ! -property_value: IAO:0000589 "bile canaliculus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001283 ! bile canaliculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001651 ! -property_value: IAO:0000589 "renal column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001284 ! renal column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000375 ! -property_value: IAO:0000589 "nephron (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001285 ! nephron -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001664 ! -property_value: IAO:0000589 "Bowman's space (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001286 ! Bowman's space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001669 ! -property_value: IAO:0000589 "proximal convoluted tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001287 ! proximal convoluted tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001675 ! -property_value: IAO:0000589 "loop of Henle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001288 ! loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001679 ! -property_value: IAO:0000589 "descending limb of loop of Henle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001289 ! descending limb of loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002614 ! -property_value: IAO:0000589 "proximal straight tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001290 ! proximal straight tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001677 ! -property_value: IAO:0000589 "thick ascending limb of loop of Henle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001291 ! thick ascending limb of loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001666 ! -property_value: IAO:0000589 "distal convoluted tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001292 ! distal convoluted tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001653 ! -property_value: IAO:0000589 "outer medulla of kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001293 ! outer medulla of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001652 ! -property_value: IAO:0000589 "inner medulla of kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001294 ! inner medulla of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000390 ! -property_value: IAO:0000589 "endometrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001295 ! endometrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000391 ! -property_value: IAO:0000589 "myometrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001296 ! myometrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001729 ! -property_value: IAO:0000589 "serosa of uterus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001297 ! serosa of uterus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002358 ! -property_value: IAO:0000589 "psoas major muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001298 ! psoas major muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002726 ! -property_value: IAO:0000589 "glans penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001299 ! glans penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000409 ! -property_value: IAO:0000589 "scrotum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001300 ! scrotum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000397 ! -property_value: IAO:0000589 "epididymis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001301 ! epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001717 ! -property_value: IAO:0000589 "right uterine tube (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001302 ! right uterine tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001716 ! -property_value: IAO:0000589 "left uterine tube (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001303 ! left uterine tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001711 ! -property_value: IAO:0000589 "germinal epithelium of ovary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001304 ! germinal epithelium of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001707 ! -property_value: IAO:0000589 "ovarian follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001305 ! ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002414 ! -property_value: IAO:0000589 "cumulus oophorus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001306 ! cumulus oophorus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001706 ! -property_value: IAO:0000589 "capsule of ovary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001307 ! capsule of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001973 ! -property_value: IAO:0000589 "external iliac artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001308 ! external iliac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001974 ! -property_value: IAO:0000589 "internal iliac artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001309 ! internal iliac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002072 ! -property_value: IAO:0000589 "umbilical artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001310 ! umbilical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002079 ! -property_value: IAO:0000589 "inferior vesical artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001311 ! inferior vesical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002080 ! -property_value: IAO:0000589 "superior vesical artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001312 ! superior vesical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001976 ! -property_value: IAO:0000589 "iliolumbar artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001313 ! iliolumbar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002008 ! -property_value: IAO:0000589 "obturator artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001314 ! obturator artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002054 ! -property_value: IAO:0000589 "superior gluteal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001315 ! superior gluteal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002144 ! -property_value: IAO:0000589 "external iliac vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001316 ! external iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002139 ! -property_value: IAO:0000589 "internal iliac vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001317 ! internal iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002145 ! -property_value: IAO:0000589 "internal iliac vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001317 ! internal iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002264 ! -property_value: IAO:0000589 "inferior vesical vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001318 ! inferior vesical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002251 ! -property_value: IAO:0000589 "vaginal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001319 ! vaginal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002146 ! -property_value: IAO:0000589 "iliolumbar vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001320 ! iliolumbar vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002183 ! -property_value: IAO:0000589 "obturator vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001321 ! obturator vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001172 ! -property_value: IAO:0000589 "sciatic nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001322 ! sciatic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001173 ! -property_value: IAO:0000589 "tibial nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001323 ! tibial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001169 ! -property_value: IAO:0000589 "common fibular nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001324 ! common fibular nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000534 ! -property_value: IAO:0000589 "muscle of pelvis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001325 ! muscle of pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002332 ! -property_value: IAO:0000589 "levator ani muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001326 ! levator ani muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002277 ! -property_value: IAO:0000589 "coccygeus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001327 ! coccygeus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001738 ! -property_value: IAO:0000589 "lobe of prostate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001328 ! lobe of prostate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002422 ! -property_value: IAO:0000589 "prostate gland anterior lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001329 ! prostate gland anterior lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001866 ! -property_value: IAO:0000589 "pampiniform plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001330 ! pampiniform plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002727 ! -property_value: IAO:0000589 "skin of penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001331 ! skin of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000407 ! -property_value: IAO:0000589 "prepuce of penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001332 ! prepuce of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002640 ! -property_value: IAO:0000589 "male urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001333 ! male urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002637 ! -property_value: IAO:0000589 "female urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001334 ! female urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002646 ! -property_value: IAO:0000589 "prostatic urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001335 ! prostatic urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002647 ! -property_value: IAO:0000589 "membranous urethra of male or female (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001336 ! membranous urethra of male or female -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002644 ! -property_value: IAO:0000589 "spongiose part of urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001337 ! spongiose part of urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001688 ! -property_value: IAO:0000589 "urethral gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001338 ! urethral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002330 ! -property_value: IAO:0000589 "ischiocavernosus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001339 ! ischiocavernosus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001946 ! -property_value: IAO:0000589 "dorsal artery of penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001340 ! dorsal artery of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000445 ! -property_value: IAO:0000589 "lesser sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001341 ! lesser sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003236 ! -property_value: IAO:0000589 "mesovarium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000412 ! -property_value: IAO:0000589 "seminiferous tubule of testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001730 ! -property_value: IAO:0000589 "epithelium of vagina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001344 ! epithelium of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002465 ! -property_value: IAO:0000589 "vaginal hymen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001346 ! vaginal hymen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000058 ! -property_value: IAO:0000589 "white adipose tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001347 ! white adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000057 ! -property_value: IAO:0000589 "brown adipose tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001348 ! brown adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001298 ! -property_value: IAO:0000589 "lacrimal sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001351 ! lacrimal sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000260 ! -property_value: IAO:0000589 "external acoustic meatus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001352 ! external acoustic meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000329 ! -property_value: IAO:0000589 "anal region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001353 ! anal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001978 ! -property_value: IAO:0000589 "inferior epigastric artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001354 ! inferior epigastric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002027 ! -property_value: IAO:0000589 "deep femoral artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001355 ! deep femoral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001996 ! -property_value: IAO:0000589 "medial circumflex femoral artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001356 ! medial circumflex femoral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001979 ! -property_value: IAO:0000589 "inferior rectal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001357 ! inferior rectal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002017 ! -property_value: IAO:0000589 "perineal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001358 ! perineal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002503 ! -property_value: IAO:0000589 "cerebrospinal fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001359 ! cerebrospinal fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002099 ! -property_value: IAO:0000589 "deep circumflex iliac vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001360 ! deep circumflex iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002118 ! -property_value: IAO:0000589 "femoral vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001361 ! femoral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002193 ! -property_value: IAO:0000589 "perineal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001362 ! perineal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002216 ! -property_value: IAO:0000589 "great saphenous vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001363 ! great saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001506 ! -property_value: IAO:0000589 "sacro-iliac joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001365 ! sacro-iliac joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001531 ! -property_value: IAO:0000589 "external anal sphincter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001367 ! external anal sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002347 ! -property_value: IAO:0000589 "obturator externus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001368 ! obturator externus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002318 ! -property_value: IAO:0000589 "iliacus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001369 ! iliacus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002309 ! -property_value: IAO:0000589 "gluteus maximus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001370 ! gluteus maximus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002310 ! -property_value: IAO:0000589 "gluteus medius (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001371 ! gluteus medius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002359 ! -property_value: IAO:0000589 "psoas minor muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001372 ! psoas minor muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002368 ! -property_value: IAO:0000589 "sartorius muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001373 ! sartorius muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002270 ! -property_value: IAO:0000589 "biceps femoris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001374 ! biceps femoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002375 ! -property_value: IAO:0000589 "semitendinosus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001375 ! semitendinosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002391 ! -property_value: IAO:0000589 "tensor fasciae latae muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001376 ! tensor fasciae latae muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002363 ! -property_value: IAO:0000589 "quadriceps femoris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001377 ! quadriceps femoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002365 ! -property_value: IAO:0000589 "rectus femoris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001378 ! rectus femoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002402 ! -property_value: IAO:0000589 "vastus lateralis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001379 ! vastus lateralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002403 ! -property_value: IAO:0000589 "vastus medialis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001380 ! vastus medialis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002371 ! -property_value: IAO:0000589 "semimembranosus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001381 ! semimembranosus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002353 ! -property_value: IAO:0000589 "pectineus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001382 ! pectineus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000672 ! -property_value: IAO:0000589 "muscle of leg (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001383 ! muscle of leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000907 ! -property_value: IAO:0000589 "primary motor cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001384 ! primary motor cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002395 ! -property_value: IAO:0000589 "tibialis anterior (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001385 ! tibialis anterior -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002295 ! -property_value: IAO:0000589 "extensor digitorum longus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001386 ! extensor digitorum longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002356 ! -property_value: IAO:0000589 "fibularis longus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001387 ! fibularis longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002306 ! -property_value: IAO:0000589 "gastrocnemius (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001388 ! gastrocnemius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002424 ! -property_value: IAO:0000589 "soleus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001389 ! soleus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002058 ! -property_value: IAO:0000589 "sural artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001390 ! sural artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002554 ! -property_value: IAO:0000589 "popliteus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001391 ! popliteus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002301 ! -property_value: IAO:0000589 "flexor hallucis longus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001392 ! flexor hallucis longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000942 ! -property_value: IAO:0000589 "auditory cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001393 ! auditory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002573 ! -property_value: IAO:0000589 "axillary artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001394 ! axillary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002064 ! -property_value: IAO:0000589 "thoraco-acromial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001395 ! thoraco-acromial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001989 ! -property_value: IAO:0000589 "lateral thoracic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001396 ! lateral thoracic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002050 ! -property_value: IAO:0000589 "subscapular artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001397 ! subscapular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001921 ! -property_value: IAO:0000589 "brachial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001398 ! brachial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002026 ! -property_value: IAO:0000589 "deep brachial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001399 ! deep brachial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002320 ! -property_value: IAO:0000589 "iliocostalis thoracis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001400 ! iliocostalis thoracis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002339 ! -property_value: IAO:0000589 "longissimus thoracis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001401 ! longissimus thoracis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002337 ! -property_value: IAO:0000589 "longissimus cervicis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001402 ! longissimus cervicis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002336 ! -property_value: IAO:0000589 "longissimus capitis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001403 ! longissimus capitis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002034 ! -property_value: IAO:0000589 "radial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001404 ! radial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002381 ! -property_value: IAO:0000589 "spinalis thoracis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001405 ! spinalis thoracis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002069 ! -property_value: IAO:0000589 "ulnar artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001406 ! ulnar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002374 ! -property_value: IAO:0000589 "semispinalis thoracis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001407 ! semispinalis thoracis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002373 ! -property_value: IAO:0000589 "semispinalis cervicis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001408 ! semispinalis cervicis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002372 ! -property_value: IAO:0000589 "semispinalis capitis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001409 ! semispinalis capitis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001957 ! -property_value: IAO:0000589 "common palmar digital artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001410 ! common palmar digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002086 ! -property_value: IAO:0000589 "basilic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001411 ! basilic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002121 ! -property_value: IAO:0000589 "common palmar digital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001412 ! common palmar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002087 ! -property_value: IAO:0000589 "brachial vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001413 ! brachial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002176 ! -property_value: IAO:0000589 "median basilic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001414 ! median basilic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000546 ! -property_value: IAO:0000589 "skin of pelvis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001415 ! skin of pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000523 ! -property_value: IAO:0000589 "skin of abdomen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001416 ! skin of abdomen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000590 ! -property_value: IAO:0000589 "skin of neck (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001417 ! skin of neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000564 ! -property_value: IAO:0000589 "skin of thorax (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001418 ! skin of thorax -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000694 ! -property_value: IAO:0000589 "skin of limb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001419 ! skin of limb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002224 ! -property_value: IAO:0000589 "subscapular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001420 ! subscapular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001357 ! -property_value: IAO:0000589 "radius bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001423 ! radius bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001358 ! -property_value: IAO:0000589 "ulna (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001424 ! ulna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002555 ! -property_value: IAO:0000589 "radiale (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001427 ! radiale -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002556 ! -property_value: IAO:0000589 "intermedium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001428 ! intermedium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001339 ! -property_value: IAO:0000589 "pisiform (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001429 ! pisiform -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001340 ! -property_value: IAO:0000589 "distal carpal bone 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001430 ! distal carpal bone 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001341 ! -property_value: IAO:0000589 "distal carpal bone 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001431 ! distal carpal bone 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001342 ! -property_value: IAO:0000589 "distal carpal bone 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001432 ! distal carpal bone 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001343 ! -property_value: IAO:0000589 "distal carpal bone 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001433 ! distal carpal bone 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000018 ! -property_value: IAO:0000589 "skeletal system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001434 ! skeletal system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000296 ! -property_value: IAO:0000589 "carpal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001435 ! carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000306 ! -property_value: IAO:0000589 "phalanx of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001436 ! phalanx of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001362 ! -property_value: IAO:0000589 "epiphysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001437 ! epiphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001363 ! -property_value: IAO:0000589 "metaphysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001438 ! metaphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001461 ! -property_value: IAO:0000589 "compact bone tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001439 ! compact bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000031 ! -property_value: IAO:0000589 "chest (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001443 ! chest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001360 ! -property_value: IAO:0000589 "fibula (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001446 ! fibula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000297 ! -property_value: IAO:0000589 "tarsal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001447 ! tarsal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000303 ! -property_value: IAO:0000589 "metatarsal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001448 ! metatarsal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000305 ! -property_value: IAO:0000589 "phalanx of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001449 ! phalanx of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001348 ! -property_value: IAO:0000589 "calcaneus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001450 ! calcaneus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001349 ! -property_value: IAO:0000589 "navicular bone of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001451 ! navicular bone of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001352 ! -property_value: IAO:0000589 "distal tarsal bone 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001452 ! distal tarsal bone 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001353 ! -property_value: IAO:0000589 "distal tarsal bone 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001453 ! distal tarsal bone 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001354 ! -property_value: IAO:0000589 "distal tarsal bone 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001454 ! distal tarsal bone 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001355 ! -property_value: IAO:0000589 "cuboid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001455 ! cuboid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002473 ! -property_value: IAO:0000589 "face (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001456 ! face -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001256 ! -property_value: IAO:0000589 "skin of eyelid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001457 ! skin of eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001579 ! -property_value: IAO:0000589 "skin of lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001458 ! skin of lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001233 ! -property_value: IAO:0000589 "skin of external ear (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001459 ! skin of external ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000033 ! -property_value: IAO:0000589 "arm (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001460 ! arm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000036 ! -property_value: IAO:0000589 "elbow (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001461 ! elbow -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000454 ! -property_value: IAO:0000589 "manual digit 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001463 ! manual digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000045 ! -property_value: IAO:0000589 "hip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001464 ! hip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000046 ! -property_value: IAO:0000589 "knee (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001465 ! knee -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000048 ! -property_value: IAO:0000589 "pedal digit (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001466 ! pedal digit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000038 ! -property_value: IAO:0000589 "shoulder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001467 ! shoulder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001514 ! -property_value: IAO:0000589 "intervertebral joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001468 ! intervertebral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001507 ! -property_value: IAO:0000589 "sternoclavicular joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001469 ! sternoclavicular joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000459 ! -property_value: IAO:0000589 "glenohumeral joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001470 ! glenohumeral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001744 ! -property_value: IAO:0000589 "skin of prepuce of penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001471 ! skin of prepuce of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002257 ! -property_value: IAO:0000589 "vaginal venous plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001472 ! vaginal venous plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000138 ! -property_value: IAO:0000589 "lymphatic vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001473 ! lymphatic vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001459 ! -property_value: IAO:0000589 "bone element (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002286 ! -property_value: IAO:0000589 "deltoid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001476 ! deltoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002323 ! -property_value: IAO:0000589 "infraspinatus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001477 ! infraspinatus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002392 ! -property_value: IAO:0000589 "teres major muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001478 ! teres major muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001375 ! -property_value: IAO:0000589 "sesamoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001479 ! sesamoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002557 ! -property_value: IAO:0000589 "proximal carpal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001480 ! proximal carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002558 ! -property_value: IAO:0000589 "distal carpal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001481 ! distal carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000633 ! -property_value: IAO:0000589 "muscle of shoulder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001482 ! muscle of shoulder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000635 ! -property_value: IAO:0000589 "skin of shoulder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001483 ! skin of shoulder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001519 ! -property_value: IAO:0000589 "articular capsule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001484 ! articular capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000471 ! -property_value: IAO:0000589 "knee joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001485 ! knee joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000470 ! -property_value: IAO:0000589 "hip joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001486 ! hip joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000464 ! -property_value: IAO:0000589 "pes joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001487 ! pes joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000463 ! -property_value: IAO:0000589 "ankle joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001488 ! ankle joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000452 ! -property_value: IAO:0000589 "manus joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001489 ! manus joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000451 ! -property_value: IAO:0000589 "elbow joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001490 ! elbow joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000460 ! -property_value: IAO:0000589 "wrist joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001491 ! wrist joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001171 ! -property_value: IAO:0000589 "radial nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001492 ! radial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001166 ! -property_value: IAO:0000589 "axillary nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001493 ! axillary nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001174 ! -property_value: IAO:0000589 "ulnar nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001494 ! ulnar nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002423 ! -property_value: IAO:0000589 "pectoral muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001495 ! pectoral muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002570 ! -property_value: IAO:0000589 "ascending aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001496 ! ascending aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000537 ! -property_value: IAO:0000589 "muscle of pelvic girdle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001497 ! muscle of pelvic girdle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000652 ! -property_value: IAO:0000589 "muscle of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001498 ! muscle of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000594 ! -property_value: IAO:0000589 "muscle of arm (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001499 ! muscle of arm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000628 ! -property_value: IAO:0000589 "muscle of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001500 ! muscle of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002316 ! -property_value: IAO:0000589 "lumbrical muscle of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001501 ! lumbrical muscle of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002313 ! -property_value: IAO:0000589 "interosseous muscle of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001502 ! interosseous muscle of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002314 ! -property_value: IAO:0000589 "dorsal interosseous of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001503 ! dorsal interosseous of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002305 ! -property_value: IAO:0000589 "lumbrical muscle of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001504 ! lumbrical muscle of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002282 ! -property_value: IAO:0000589 "coracobrachialis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001505 ! coracobrachialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002271 ! -property_value: IAO:0000589 "brachialis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001506 ! brachialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002269 ! -property_value: IAO:0000589 "biceps brachii (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001507 ! biceps brachii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000475 ! -property_value: IAO:0000589 "arch of aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001508 ! arch of aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002399 ! -property_value: IAO:0000589 "triceps brachii (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001509 ! triceps brachii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000668 ! -property_value: IAO:0000589 "skin of knee (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001510 ! skin of knee -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000674 ! -property_value: IAO:0000589 "skin of leg (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001511 ! skin of leg -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000641 ! -property_value: IAO:0000589 "skin of ankle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001512 ! skin of ankle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000654 ! -property_value: IAO:0000589 "skin of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001513 ! skin of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002571 ! -property_value: IAO:0000589 "descending aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001514 ! descending aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002569 ! -property_value: IAO:0000589 "thoracic aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001515 ! thoracic aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000474 ! -property_value: IAO:0000589 "abdominal aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001516 ! abdominal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000610 ! -property_value: IAO:0000589 "skin of elbow (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001517 ! skin of elbow -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000638 ! -property_value: IAO:0000589 "skin of wrist (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001518 ! skin of wrist -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000630 ! -property_value: IAO:0000589 "skin of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001519 ! skin of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002357 ! -property_value: IAO:0000589 "pronator teres (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001520 ! pronator teres -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002297 ! -property_value: IAO:0000589 "flexor carpi radialis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001521 ! flexor carpi radialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002298 ! -property_value: IAO:0000589 "flexor carpi ulnaris muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001522 ! flexor carpi ulnaris muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002300 ! -property_value: IAO:0000589 "flexor digitorum profundus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001523 ! flexor digitorum profundus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002291 ! -property_value: IAO:0000589 "extensor carpi radialis longus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001524 ! extensor carpi radialis longus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002290 ! -property_value: IAO:0000589 "extensor carpi radialis brevis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001525 ! extensor carpi radialis brevis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002292 ! -property_value: IAO:0000589 "extensor carpi ulnaris muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001526 ! extensor carpi ulnaris muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002266 ! -property_value: IAO:0000589 "abductor pollicis longus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001527 ! abductor pollicis longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003145 ! -property_value: IAO:0000589 "radio-ulnar joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001528 ! radio-ulnar joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001922 ! -property_value: IAO:0000589 "brachiocephalic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001529 ! brachiocephalic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001926 ! -property_value: IAO:0000589 "common carotid artery plus branches (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001530 ! common carotid artery plus branches -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001928 ! -property_value: IAO:0000589 "right common carotid artery plus branches (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001531 ! right common carotid artery plus branches -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001930 ! -property_value: IAO:0000589 "internal carotid artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002045 ! -property_value: IAO:0000589 "subclavian artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002047 ! -property_value: IAO:0000589 "right subclavian artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001534 ! right subclavian artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002077 ! -property_value: IAO:0000589 "vertebral artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001927 ! -property_value: IAO:0000589 "left common carotid artery plus branches (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001536 ! left common carotid artery plus branches -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002574 ! -property_value: IAO:0000589 "anterior tibial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001537 ! anterior tibial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002575 ! -property_value: IAO:0000589 "posterior tibial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001538 ! posterior tibial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001942 ! -property_value: IAO:0000589 "dorsalis pedis artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001539 ! dorsalis pedis artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002018 ! -property_value: IAO:0000589 "peroneal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001540 ! peroneal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001997 ! -property_value: IAO:0000589 "medial plantar artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001541 ! medial plantar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000737 ! -property_value: IAO:0000589 "inguinal lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001542 ! inguinal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000738 ! -property_value: IAO:0000589 "popliteal lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001543 ! popliteal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002197 ! -property_value: IAO:0000589 "popliteal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001544 ! popliteal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002244 ! -property_value: IAO:0000589 "anterior tibial vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001545 ! anterior tibial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002245 ! -property_value: IAO:0000589 "posterior tibial vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001546 ! posterior tibial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002217 ! -property_value: IAO:0000589 "small saphenous vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001547 ! small saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002160 ! -property_value: IAO:0000589 "lateral marginal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001548 ! lateral marginal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002105 ! -property_value: IAO:0000589 "dorsal metatarsal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001549 ! dorsal metatarsal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002171 ! -property_value: IAO:0000589 "medial marginal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001550 ! medial marginal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002231 ! -property_value: IAO:0000589 "vein of hindlimb zeugopod (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001551 ! vein of hindlimb zeugopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002583 ! -property_value: IAO:0000589 "kidney arcuate artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001552 ! kidney arcuate artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001998 ! -property_value: IAO:0000589 "medial tarsal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001553 ! medial tarsal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000658 ! -property_value: IAO:0000589 "skin of hip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001554 ! skin of hip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000917 ! -property_value: IAO:0000589 "digestive tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002636 ! -property_value: IAO:0000589 "lower urinary tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001556 ! lower urinary tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000442 ! -property_value: IAO:0000589 "upper respiratory tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001557 ! upper respiratory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000435 ! -property_value: IAO:0000589 "lower respiratory tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001558 ! lower respiratory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002048 ! -property_value: IAO:0000589 "subcostal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001561 ! subcostal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002288 ! -property_value: IAO:0000589 "digastric muscle group (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001562 ! digastric muscle group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002340 ! -property_value: IAO:0000589 "longus capitis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001563 ! longus capitis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002344 ! -property_value: IAO:0000589 "mylohyoid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001564 ! mylohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002308 ! -property_value: IAO:0000589 "geniohyoid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001565 ! geniohyoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002284 ! -property_value: IAO:0000589 "cricothyroid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001566 ! cricothyroid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002475 ! -property_value: IAO:0000589 "cheek (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001567 ! cheek -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001768 ! -property_value: IAO:0000589 "muscle of larynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001568 ! muscle of larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002278 ! -property_value: IAO:0000589 "constrictor muscle of pharynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001569 ! constrictor muscle of pharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002279 ! -property_value: IAO:0000589 "inferior pharyngeal constrictor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001570 ! inferior pharyngeal constrictor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002307 ! -property_value: IAO:0000589 "genioglossus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001571 ! genioglossus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002317 ! -property_value: IAO:0000589 "hyoglossus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001572 ! hyoglossus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002387 ! -property_value: IAO:0000589 "styloglossus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001573 ! styloglossus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002351 ! -property_value: IAO:0000589 "palatoglossus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001574 ! palatoglossus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002296 ! -property_value: IAO:0000589 "extrinsic muscle of tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001575 ! extrinsic muscle of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002327 ! -property_value: IAO:0000589 "intrinsic muscle of tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001576 ! intrinsic muscle of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003160 ! -property_value: IAO:0000589 "facial muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001577 ! facial muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001254 ! -property_value: IAO:0000589 "orbicularis oculi muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001578 ! orbicularis oculi muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001096 ! -property_value: IAO:0000589 "olfactory nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002333 ! -property_value: IAO:0000589 "levator labii superioris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001580 ! levator labii superioris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002287 ! -property_value: IAO:0000589 "depressor labii inferioris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001581 ! depressor labii inferioris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002272 ! -property_value: IAO:0000589 "buccinator muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001582 ! buccinator muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001230 ! -property_value: IAO:0000589 "extrinsic auricular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001583 ! extrinsic auricular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002046 ! -property_value: IAO:0000589 "left subclavian artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001584 ! left subclavian artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000481 ! -property_value: IAO:0000589 "anterior vena cava (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001585 ! anterior vena cava -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002157 ! -property_value: IAO:0000589 "internal jugular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002221 ! -property_value: IAO:0000589 "subclavian vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001587 ! subclavian vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002262 ! -property_value: IAO:0000589 "vertebral vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001588 ! vertebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002237 ! -property_value: IAO:0000589 "internal thoracic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001589 ! internal thoracic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002187 ! -property_value: IAO:0000589 "pericardiacophrenic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001590 ! pericardiacophrenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002246 ! -property_value: IAO:0000589 "thymic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001591 ! thymic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002088 ! -property_value: IAO:0000589 "bronchial vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001592 ! bronchial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000069 ! -property_value: IAO:0000589 "venous plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001593 ! venous plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002085 ! -property_value: IAO:0000589 "azygos vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001594 ! azygos vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001229 ! -property_value: IAO:0000589 "auricular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001595 ! auricular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001231 ! -property_value: IAO:0000589 "intrinsic auricular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001596 ! intrinsic auricular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002343 ! -property_value: IAO:0000589 "masseter muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001597 ! masseter muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002390 ! -property_value: IAO:0000589 "temporalis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001598 ! temporalis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001220 ! -property_value: IAO:0000589 "stapedius muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001599 ! stapedius muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001221 ! -property_value: IAO:0000589 "tensor tympani (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001600 ! tensor tympani -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001271 ! -property_value: IAO:0000589 "extra-ocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001281 ! -property_value: IAO:0000589 "medial rectus extraocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001602 ! medial rectus extraocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001280 ! -property_value: IAO:0000589 "lateral rectus extra-ocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001603 ! lateral rectus extra-ocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001272 ! -property_value: IAO:0000589 "levator palpebrae superioris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001604 ! levator palpebrae superioris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001269 ! -property_value: IAO:0000589 "ciliary muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001605 ! ciliary muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001287 ! -property_value: IAO:0000589 "muscle of iris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001606 ! muscle of iris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001289 ! -property_value: IAO:0000589 "sphincter pupillae (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001607 ! sphincter pupillae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001288 ! -property_value: IAO:0000589 "dilatator pupillae (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001608 ! dilatator pupillae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000727 ! -property_value: IAO:0000589 "isthmus of thyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001609 ! isthmus of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001992 ! -property_value: IAO:0000589 "lingual artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001610 ! lingual artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002049 ! -property_value: IAO:0000589 "sublingual artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001611 ! sublingual artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001950 ! -property_value: IAO:0000589 "facial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001612 ! facial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002009 ! -property_value: IAO:0000589 "occipital artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001613 ! occipital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002062 ! -property_value: IAO:0000589 "superficial temporal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001614 ! superficial temporal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002068 ! -property_value: IAO:0000589 "transverse facial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001615 ! transverse facial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001919 ! -property_value: IAO:0000589 "maxillary artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001616 ! maxillary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002002 ! -property_value: IAO:0000589 "mental artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001617 ! mental artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001924 ! -property_value: IAO:0000589 "buccal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001618 ! buccal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002011 ! -property_value: IAO:0000589 "ophthalmic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002038 ! -property_value: IAO:0000589 "central retinal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001620 ! central retinal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002453 ! -property_value: IAO:0000589 "coronary artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001621 ! coronary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001988 ! -property_value: IAO:0000589 "lacrimal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001622 ! lacrimal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001945 ! -property_value: IAO:0000589 "dorsal nasal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001623 ! dorsal nasal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001915 ! -property_value: IAO:0000589 "anterior cerebral artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001624 ! anterior cerebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002455 ! -property_value: IAO:0000589 "right coronary artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001625 ! right coronary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002454 ! -property_value: IAO:0000589 "left coronary artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001626 ! left coronary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001935 ! -property_value: IAO:0000589 "middle cerebral artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001627 ! middle cerebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002023 ! -property_value: IAO:0000589 "posterior communicating artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002463 ! -property_value: IAO:0000589 "carotid body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001629 ! carotid body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000015 ! -property_value: IAO:0000589 "muscle organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001630 ! muscle organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002801 ! -property_value: IAO:0000589 "thoracic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001631 ! thoracic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002061 ! -property_value: IAO:0000589 "temporal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001632 ! temporal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001920 ! -property_value: IAO:0000589 "basilar artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001934 ! -property_value: IAO:0000589 "superior cerebellar artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001635 ! superior cerebellar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002022 ! -property_value: IAO:0000589 "posterior cerebral artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001636 ! posterior cerebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000064 ! -property_value: IAO:0000589 "artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000067 ! -property_value: IAO:0000589 "vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001638 ! vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002132 ! -property_value: IAO:0000589 "hepatic portal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001639 ! hepatic portal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001931 ! -property_value: IAO:0000589 "celiac artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001640 ! celiac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001868 ! -property_value: IAO:0000589 "transverse sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001641 ! transverse sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001867 ! -property_value: IAO:0000589 "superior sagittal sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001642 ! superior sagittal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001095 ! -property_value: IAO:0000589 "oculomotor nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001105 ! -property_value: IAO:0000589 "trochlear nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001100 ! -property_value: IAO:0000589 "trigeminal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001087 ! -property_value: IAO:0000589 "abducens nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001091 ! -property_value: IAO:0000589 "facial nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001109 ! -property_value: IAO:0000589 "vestibulocochlear nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001093 ! -property_value: IAO:0000589 "glossopharyngeal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001094 ! -property_value: IAO:0000589 "hypoglossal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002500 ! -property_value: IAO:0000589 "right pulmonary artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001651 ! right pulmonary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002032 ! -property_value: IAO:0000589 "left pulmonary artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001652 ! left pulmonary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002115 ! -property_value: IAO:0000589 "facial vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001653 ! facial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002228 ! -property_value: IAO:0000589 "supraorbital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001654 ! supraorbital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002223 ! -property_value: IAO:0000589 "submental vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001655 ! submental vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002117 ! -property_value: IAO:0000589 "retromandibular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001656 ! retromandibular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002242 ! -property_value: IAO:0000589 "superficial temporal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001657 ! superficial temporal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002241 ! -property_value: IAO:0000589 "middle temporal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001658 ! middle temporal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002247 ! -property_value: IAO:0000589 "transverse facial vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001659 ! transverse facial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002169 ! -property_value: IAO:0000589 "maxillary vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001660 ! maxillary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002240 ! -property_value: IAO:0000589 "deep temporal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001661 ! deep temporal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002083 ! -property_value: IAO:0000589 "anterior auricular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001662 ! anterior auricular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002214 ! -property_value: IAO:0000589 "anterior auricular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001662 ! anterior auricular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002096 ! -property_value: IAO:0000589 "cerebral vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001663 ! cerebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002097 ! -property_value: IAO:0000589 "inferior cerebral vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001664 ! inferior cerebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002400 ! -property_value: IAO:0000589 "triceps surae (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001665 ! triceps surae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002299 ! -property_value: IAO:0000589 "flexor digitorum longus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001666 ! flexor digitorum longus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002394 ! -property_value: IAO:0000589 "tibialis posterior (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001667 ! tibialis posterior -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002093 ! -property_value: IAO:0000589 "cerebellar vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001668 ! cerebellar vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002095 ! -property_value: IAO:0000589 "superior cerebellar vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001669 ! superior cerebellar vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002094 ! -property_value: IAO:0000589 "inferior cerebellar vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001670 ! inferior cerebellar vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002239 ! -property_value: IAO:0000589 "temporal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001671 ! temporal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002213 ! -property_value: IAO:0000589 "central retinal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001673 ! central retinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002167 ! -property_value: IAO:0000589 "masseteric vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001674 ! masseteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001080 ! -property_value: IAO:0000589 "trigeminal ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001468 ! -property_value: IAO:0000589 "occipital bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001676 ! occipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001472 ! -property_value: IAO:0000589 "sphenoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001677 ! sphenoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001476 ! -property_value: IAO:0000589 "temporal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001678 ! temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001483 ! -property_value: IAO:0000589 "ethmoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001679 ! ethmoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001486 ! -property_value: IAO:0000589 "lacrimal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001680 ! lacrimal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001494 ! -property_value: IAO:0000589 "nasal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001681 ! nasal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001495 ! -property_value: IAO:0000589 "palatine bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001682 ! palatine bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001497 ! -property_value: IAO:0000589 "jugal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001683 ! jugal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001487 ! -property_value: IAO:0000589 "mandible (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001684 ! mandible -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001484 ! -property_value: IAO:0000589 "hyoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001685 ! hyoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000254 ! -property_value: IAO:0000589 "auditory ossicle bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001686 ! auditory ossicle bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001217 ! -property_value: IAO:0000589 "stapes bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001687 ! stapes bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001215 ! -property_value: IAO:0000589 "incus bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001688 ! incus bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001216 ! -property_value: IAO:0000589 "malleus bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001689 ! malleus bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000236 ! -property_value: IAO:0000589 "ear (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001690 ! ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000258 ! -property_value: IAO:0000589 "external ear (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001691 ! external ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001462 ! -property_value: IAO:0000589 "basioccipital bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001464 ! -property_value: IAO:0000589 "exoccipital bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001477 ! -property_value: IAO:0000589 "petrous part of temporal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001694 ! petrous part of temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001473 ! -property_value: IAO:0000589 "squamous part of temporal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001695 ! squamous part of temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002482 ! -property_value: IAO:0000589 "orbit of skull (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001697 ! orbit of skull -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001076 ! -property_value: IAO:0000589 "geniculate ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001077 ! -property_value: IAO:0000589 "glossopharyngeal ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002702 ! -property_value: IAO:0000589 "eyelash (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001702 ! eyelash -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000317 ! -property_value: IAO:0000589 "neurocranium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001703 ! neurocranium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002703 ! -property_value: IAO:0000589 "nail (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001705 ! nail -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000285 ! -property_value: IAO:0000589 "nasal septum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001706 ! nasal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000284 ! -property_value: IAO:0000589 "nasal cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001905 ! -property_value: IAO:0000589 "jaw skeleton (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001708 ! jaw skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000268 ! -property_value: IAO:0000589 "eyelid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001711 ! eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001267 ! -property_value: IAO:0000589 "upper eyelid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001712 ! upper eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001263 ! -property_value: IAO:0000589 "lower eyelid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000213 ! -property_value: IAO:0000589 "cranial ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000214 ! -property_value: IAO:0000589 "cranial ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001073 ! -property_value: IAO:0000589 "oculomotor nuclear complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002476 ! -property_value: IAO:0000589 "secondary palate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001716 ! secondary palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001053 ! -property_value: IAO:0000589 "spinal nucleus of trigeminal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001717 ! spinal nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001057 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001050 ! -property_value: IAO:0000589 "nucleus ambiguus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001719 ! nucleus ambiguus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001012 ! -property_value: IAO:0000589 "cochlear nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001720 ! cochlear nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001054 ! -property_value: IAO:0000589 "inferior vestibular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001721 ! inferior vestibular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001048 ! -property_value: IAO:0000589 "medial vestibular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001722 ! medial vestibular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000347 ! -property_value: IAO:0000589 "tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001723 ! tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001795 ! -property_value: IAO:0000589 "sphenoidal sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001724 ! sphenoidal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001502 ! -property_value: IAO:0000589 "cranial synchondrosis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001725 ! cranial synchondrosis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001593 ! -property_value: IAO:0000589 "papilla of tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001726 ! papilla of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001591 ! -property_value: IAO:0000589 "taste bud (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001727 ! taste bud -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000443 ! -property_value: IAO:0000589 "nasopharynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001728 ! nasopharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000351 ! -property_value: IAO:0000589 "oropharynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001729 ! oropharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001756 ! -property_value: IAO:0000589 "extrinsic ligament of larynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001730 ! extrinsic ligament of larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000774 ! -property_value: IAO:0000589 "pharyngeal tonsil (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001732 ! pharyngeal tonsil -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002412 ! -property_value: IAO:0000589 "soft palate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001733 ! soft palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000752 ! -property_value: IAO:0000589 "tonsillar ring (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001735 ! tonsillar ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001589 ! -property_value: IAO:0000589 "submandibular gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001736 ! submandibular gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000414 ! -property_value: IAO:0000589 "larynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001737 ! larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001764 ! -property_value: IAO:0000589 "thyroid cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001738 ! thyroid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001758 ! -property_value: IAO:0000589 "laryngeal cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001739 ! laryngeal cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001759 ! -property_value: IAO:0000589 "arytenoid cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001740 ! arytenoid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001885 ! -property_value: IAO:0000589 "corniculate cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001741 ! corniculate cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001763 ! -property_value: IAO:0000589 "epiglottic cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001742 ! epiglottic cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001755 ! -property_value: IAO:0000589 "ligament of larynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001743 ! ligament of larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002436 ! -property_value: IAO:0000589 "lymphoid tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001744 ! lymphoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002675 ! -property_value: IAO:0000589 "capsule of thyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001746 ! capsule of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000730 ! -property_value: IAO:0000589 "parenchyma of thyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001747 ! parenchyma of thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002676 ! -property_value: IAO:0000589 "capsule of parathyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001748 ! capsule of parathyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002677 ! -property_value: IAO:0000589 "parenchyma of parathyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001749 ! parenchyma of parathyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000274 ! -property_value: IAO:0000589 "lacrimal apparatus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001750 ! lacrimal apparatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002542 ! -property_value: IAO:0000589 "dentine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001751 ! dentine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002543 ! -property_value: IAO:0000589 "enamel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001752 ! enamel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002541 ! -property_value: IAO:0000589 "cementum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001753 ! cementum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001599 ! -property_value: IAO:0000589 "dental pulp (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001754 ! dental pulp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000253 ! -property_value: IAO:0000589 "middle ear (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001756 ! middle ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000259 ! -property_value: IAO:0000589 "pinna (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001757 ! pinna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001106 ! -property_value: IAO:0000589 "vagus nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001759 ! vagus nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001793 ! -property_value: IAO:0000589 "frontal sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001760 ! frontal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000286 ! -property_value: IAO:0000589 "turbinate bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001762 ! turbinate bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001598 ! -property_value: IAO:0000589 "odontogenic papilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001763 ! odontogenic papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001794 ! -property_value: IAO:0000589 "maxillary sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001764 ! maxillary sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000791 ! -property_value: IAO:0000589 "mammary duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001765 ! mammary duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000262 ! -property_value: IAO:0000589 "anterior chamber of eyeball (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001766 ! anterior chamber of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002460 ! -property_value: IAO:0000589 "posterior chamber of eyeball (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001767 ! posterior chamber of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002480 ! -property_value: IAO:0000589 "uvea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001768 ! uvea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000273 ! -property_value: IAO:0000589 "iris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001769 ! iris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001294 ! -property_value: IAO:0000589 "lacrimal canaliculus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001770 ! lacrimal canaliculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001292 ! -property_value: IAO:0000589 "pupil (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001771 ! pupil -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001243 ! -property_value: IAO:0000589 "corneal epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000280 ! -property_value: IAO:0000589 "sclera (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001773 ! sclera -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000514 ! -property_value: IAO:0000589 "skeletal muscle of trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001774 ! skeletal muscle of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000264 ! -property_value: IAO:0000589 "ciliary body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001775 ! ciliary body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000263 ! -property_value: IAO:0000589 "optic choroid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001776 ! optic choroid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001245 ! -property_value: IAO:0000589 "substantia propria of cornea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001238 ! -property_value: IAO:0000589 "ciliary epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001778 ! ciliary epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002777 ! -property_value: IAO:0000589 "iris stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001779 ! iris stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000233 ! -property_value: IAO:0000589 "spinal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001319 ! -property_value: IAO:0000589 "layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001781 ! layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000279 ! -property_value: IAO:0000589 "pigmented layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003173 ! -property_value: IAO:0000589 "pigmented layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000278 ! -property_value: IAO:0000589 "optic disc (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001783 ! optic disc -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000215 ! -property_value: IAO:0000589 "cranial nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001307 ! -property_value: IAO:0000589 "fovea centralis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001786 ! fovea centralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001308 ! -property_value: IAO:0000589 "photoreceptor layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001787 ! photoreceptor layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001309 ! -property_value: IAO:0000589 "outer limiting layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001788 ! outer limiting layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001315 ! -property_value: IAO:0000589 "outer nuclear layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001789 ! outer nuclear layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001316 ! -property_value: IAO:0000589 "outer plexiform layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001790 ! outer plexiform layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001311 ! -property_value: IAO:0000589 "inner nuclear layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001791 ! inner nuclear layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001310 ! -property_value: IAO:0000589 "ganglionic layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001792 ! ganglionic layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001314 ! -property_value: IAO:0000589 "nerve fiber layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001313 ! -property_value: IAO:0000589 "inner limiting layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001794 ! inner limiting layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001312 ! -property_value: IAO:0000589 "inner plexiform layer of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001795 ! inner plexiform layer of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001236 ! -property_value: IAO:0000589 "aqueous humor of eyeball (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001286 ! -property_value: IAO:0000589 "vitreous humor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002462 ! -property_value: IAO:0000589 "vitreous body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001798 ! vitreous body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002461 ! -property_value: IAO:0000589 "vitreous chamber of eyeball (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001799 ! vitreous chamber of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002566 ! -property_value: IAO:0000589 "sensory ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001800 ! sensory ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002484 ! -property_value: IAO:0000589 "anterior segment of eyeball (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001801 ! anterior segment of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002485 ! -property_value: IAO:0000589 "posterior segment of eyeball (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001802 ! posterior segment of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001301 ! -property_value: IAO:0000589 "epithelium of lens (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001803 ! epithelium of lens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001300 ! -property_value: IAO:0000589 "capsule of lens (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000220 ! -property_value: IAO:0000589 "autonomic ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001805 ! autonomic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000226 ! -property_value: IAO:0000589 "sympathetic ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001806 ! sympathetic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003100 ! -property_value: IAO:0000589 "paravertebral ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001807 ! paravertebral ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002469 ! -property_value: IAO:0000589 "parasympathetic ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001808 ! parasympathetic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001144 ! -property_value: IAO:0000589 "enteric ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001809 ! enteric ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002407 ! -property_value: IAO:0000589 "nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001810 ! nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000265 ! -property_value: IAO:0000589 "conjunctiva (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001811 ! conjunctiva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001265 ! -property_value: IAO:0000589 "palpebral conjunctiva (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001812 ! palpebral conjunctiva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000235 ! -property_value: IAO:0000589 "spinal nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001813 ! spinal nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001180 ! -property_value: IAO:0000589 "brachial nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001814 ! brachial nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001181 ! -property_value: IAO:0000589 "lumbosacral nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001815 ! lumbosacral nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000221 ! -property_value: IAO:0000589 "autonomic nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001816 ! autonomic nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001296 ! -property_value: IAO:0000589 "lacrimal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001817 ! lacrimal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001249 ! -property_value: IAO:0000589 "tarsal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001818 ! tarsal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001266 ! -property_value: IAO:0000589 "palpebral fissure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001819 ! palpebral fissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000150 ! -property_value: IAO:0000589 "sweat gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001820 ! sweat gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002565 ! -property_value: IAO:0000589 "sebaceous gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001821 ! sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001259 ! -property_value: IAO:0000589 "orbital septum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001822 ! orbital septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001883 ! -property_value: IAO:0000589 "nasal cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001823 ! nasal cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001766 ! -property_value: IAO:0000589 "mucosa of larynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001824 ! mucosa of larynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000431 ! -property_value: IAO:0000589 "paranasal sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001825 ! paranasal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002508 ! -property_value: IAO:0000589 "secretion of lacrimal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001827 ! secretion of lacrimal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000342 ! -property_value: IAO:0000589 "gingiva (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001828 ! gingiva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002478 ! -property_value: IAO:0000589 "major salivary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001829 ! major salivary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002479 ! -property_value: IAO:0000589 "minor salivary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001830 ! minor salivary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001585 ! -property_value: IAO:0000589 "parotid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001831 ! parotid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001588 ! -property_value: IAO:0000589 "sublingual gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001832 ! sublingual gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000343 ! -property_value: IAO:0000589 "lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001833 ! lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000919 ! -property_value: IAO:0000589 "upper lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001834 ! upper lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000921 ! -property_value: IAO:0000589 "lower lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001835 ! lower lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002507 ! -property_value: IAO:0000589 "saliva (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001836 ! saliva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001586 ! -property_value: IAO:0000589 "duct of salivary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001837 ! duct of salivary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002699 ! -property_value: IAO:0000589 "sublingual duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001838 ! sublingual duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000238 ! -property_value: IAO:0000589 "bony labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001839 ! bony labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000249 ! -property_value: IAO:0000589 "semicircular canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001840 ! semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001207 ! -property_value: IAO:0000589 "anterior semicircular canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001209 ! -property_value: IAO:0000589 "posterior semicircular canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001208 ! -property_value: IAO:0000589 "lateral semicircular canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000240 ! -property_value: IAO:0000589 "cochlea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001844 ! cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002529 ! -property_value: IAO:0000589 "perilymph (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001845 ! perilymph -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000237 ! -property_value: IAO:0000589 "internal ear (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001846 ! internal ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002468 ! -property_value: IAO:0000589 "lobule of pinna (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001847 ! lobule of pinna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001227 ! -property_value: IAO:0000589 "auricular cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001848 ! auricular cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000242 ! -property_value: IAO:0000589 "membranous labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001295 ! -property_value: IAO:0000589 "lacrimal drainage system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001850 ! lacrimal drainage system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002528 ! -property_value: IAO:0000589 "endolymph (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001852 ! endolymph -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000247 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000246 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000243 ! -property_value: IAO:0000589 "cochlear duct of membranous labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001855 ! cochlear duct of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000251 ! -property_value: IAO:0000589 "semicircular duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001856 ! semicircular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001211 ! -property_value: IAO:0000589 "anterior semicircular duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001857 ! anterior semicircular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001214 ! -property_value: IAO:0000589 "posterior semicircular duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001858 ! posterior semicircular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001213 ! -property_value: IAO:0000589 "lateral semicircular duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001859 ! lateral semicircular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001187 ! -property_value: IAO:0000589 "endolymphatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000244 ! -property_value: IAO:0000589 "ductus reuniens (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001861 ! ductus reuniens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000245 ! -property_value: IAO:0000589 "vestibular labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001206 ! -property_value: IAO:0000589 "scala vestibuli (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001863 ! scala vestibuli -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001205 ! -property_value: IAO:0000589 "scala tympani (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001864 ! scala tympani -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001234 ! -property_value: IAO:0000589 "cartilaginous external acoustic tube (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001865 ! cartilaginous external acoustic tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002538 ! -property_value: IAO:0000589 "sebum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001866 ! sebum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001886 ! -property_value: IAO:0000589 "cartilage of external ear (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001867 ! cartilage of external ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000553 ! -property_value: IAO:0000589 "skin of chest (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001868 ! skin of chest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000133 ! -property_value: IAO:0000589 "cerebral hemisphere (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001869 ! cerebral hemisphere -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000905 ! -property_value: IAO:0000589 "frontal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001870 ! frontal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000894 ! -property_value: IAO:0000589 "caudate nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000895 ! -property_value: IAO:0000589 "putamen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001874 ! putamen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000890 ! -property_value: IAO:0000589 "globus pallidus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001875 ! globus pallidus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000887 ! -property_value: IAO:0000589 "amygdala (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001876 ! amygdala -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000935 ! -property_value: IAO:0000589 "medial septal nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001877 ! medial septal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000938 ! -property_value: IAO:0000589 "septofimbrial nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001878 ! septofimbrial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000936 ! -property_value: IAO:0000589 "nucleus of diagonal band (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001879 ! nucleus of diagonal band -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000925 ! -property_value: IAO:0000589 "bed nucleus of stria terminalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001880 ! bed nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000977 ! -property_value: IAO:0000589 "island of Calleja (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001881 ! island of Calleja -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000892 ! -property_value: IAO:0000589 "nucleus accumbens (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001882 ! nucleus accumbens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000976 ! -property_value: IAO:0000589 "olfactory tubercle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001883 ! olfactory tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001170 ! -property_value: IAO:0000589 "phrenic nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001884 ! phrenic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000190 ! -property_value: IAO:0000589 "dentate gyrus of hippocampal formation (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001885 ! dentate gyrus of hippocampal formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000823 ! -property_value: IAO:0000589 "choroid plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001886 ! choroid plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002748 ! -property_value: IAO:0000589 "internal capsule of telencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001887 ! internal capsule of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001177 ! -property_value: IAO:0000589 "trunk of phrenic nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001889 ! trunk of phrenic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000170 ! -property_value: IAO:0000589 "forebrain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000207 ! -property_value: IAO:0000589 "midbrain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000183 ! -property_value: IAO:0000589 "telencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000171 ! -property_value: IAO:0000589 "diencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000197 ! -property_value: IAO:0000589 "metencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001895 ! metencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000206 ! -property_value: IAO:0000589 "medulla oblongata (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000179 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001897 ! dorsal plus ventral thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000173 ! -property_value: IAO:0000589 "hypothalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000172 ! -property_value: IAO:0000589 "epithalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000181 ! -property_value: IAO:0000589 "ventral thalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001900 ! ventral thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001862 ! -property_value: IAO:0000589 "epithelium of trachea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001901 ! epithelium of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001553 ! -property_value: IAO:0000589 "epithelium of small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001902 ! epithelium of small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000876 ! -property_value: IAO:0000589 "thalamic reticular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001903 ! thalamic reticular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000830 ! -property_value: IAO:0000589 "habenula (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001904 ! habenula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000175 ! -property_value: IAO:0000589 "pineal body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000877 ! -property_value: IAO:0000589 "subthalamic nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001906 ! subthalamic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000878 ! -property_value: IAO:0000589 "zona incerta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001907 ! zona incerta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001099 ! -property_value: IAO:0000589 "optic tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000145 ! -property_value: IAO:0000589 "mammary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001911 ! mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000793 ! -property_value: IAO:0000589 "lobule of mammary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001912 ! lobule of mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002552 ! -property_value: IAO:0000589 "milk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001913 ! milk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002551 ! -property_value: IAO:0000589 "colostrum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001914 ! colostrum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000711 ! -property_value: IAO:0000589 "endothelium of capillary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001915 ! endothelium of capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000705 ! -property_value: IAO:0000589 "endothelium of arteriole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001916 ! endothelium of arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000707 ! -property_value: IAO:0000589 "endothelium of artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001917 ! endothelium of artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000716 ! -property_value: IAO:0000589 "endothelium of venule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001918 ! endothelium of venule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000712 ! -property_value: IAO:0000589 "endothelium of vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001919 ! endothelium of vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000866 ! -property_value: IAO:0000589 "paraventricular nucleus of thalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001920 ! paraventricular nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000865 ! -property_value: IAO:0000589 "reuniens nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001921 ! reuniens nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000874 ! -property_value: IAO:0000589 "parafascicular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001922 ! parafascicular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000872 ! -property_value: IAO:0000589 "central medial nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001923 ! central medial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000873 ! -property_value: IAO:0000589 "paracentral nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001924 ! paracentral nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000869 ! -property_value: IAO:0000589 "lateral geniculate body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001926 ! lateral geniculate body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000870 ! -property_value: IAO:0000589 "medial geniculate body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001927 ! medial geniculate body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000849 ! -property_value: IAO:0000589 "supraoptic nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001929 ! supraoptic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000848 ! -property_value: IAO:0000589 "paraventricular nucleus of hypothalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001930 ! paraventricular nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000835 ! -property_value: IAO:0000589 "lateral preoptic nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001931 ! lateral preoptic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000847 ! -property_value: IAO:0000589 "arcuate nucleus of hypothalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001932 ! arcuate nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000841 ! -property_value: IAO:0000589 "retrochiasmatic area (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001933 ! retrochiasmatic area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000838 ! -property_value: IAO:0000589 "dorsomedial nucleus of hypothalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001934 ! dorsomedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000845 ! -property_value: IAO:0000589 "ventromedial nucleus of hypothalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001935 ! ventromedial nucleus of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000853 ! -property_value: IAO:0000589 "tuberomammillary nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001936 ! tuberomammillary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000850 ! -property_value: IAO:0000589 "lateral mammillary nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001938 ! lateral mammillary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000851 ! -property_value: IAO:0000589 "medial mammillary nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001939 ! medial mammillary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000852 ! -property_value: IAO:0000589 "supramammillary nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001940 ! supramammillary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000831 ! -property_value: IAO:0000589 "lateral habenular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001941 ! lateral habenular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000832 ! -property_value: IAO:0000589 "medial habenular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001942 ! medial habenular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000212 ! -property_value: IAO:0000589 "midbrain tegmentum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001062 ! -property_value: IAO:0000589 "pretectal region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001944 ! pretectal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001068 ! -property_value: IAO:0000589 "superior colliculus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001067 ! -property_value: IAO:0000589 "inferior colliculus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001946 ! inferior colliculus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001063 ! -property_value: IAO:0000589 "red nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001947 ! red nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001576 ! -property_value: IAO:0000589 "gingival epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001949 ! gingival epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002754 ! -property_value: IAO:0000589 "neocortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001950 ! neocortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001865 ! -property_value: IAO:0000589 "epithelium of nasopharynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001951 ! epithelium of nasopharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001605 ! -property_value: IAO:0000589 "epithelium of oropharynx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001952 ! epithelium of oropharynx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000923 ! -property_value: IAO:0000589 "presubiculum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001953 ! presubiculum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000191 ! -property_value: IAO:0000589 "Ammon's horn (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001773 ! -property_value: IAO:0000589 "epithelium of respiratory bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001955 ! epithelium of respiratory bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001835 ! -property_value: IAO:0000589 "cartilage of bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001956 ! cartilage of bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001837 ! -property_value: IAO:0000589 "submucosa of bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001957 ! submucosa of bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001774 ! -property_value: IAO:0000589 "terminal bronchiole epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001958 ! terminal bronchiole epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000762 ! -property_value: IAO:0000589 "white pulp of spleen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001959 ! white pulp of spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000765 ! -property_value: IAO:0000589 "periarterial lymphatic sheath (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001960 ! periarterial lymphatic sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000140 ! -property_value: IAO:0000589 "mucosa-associated lymphoid tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001961 ! mucosa-associated lymphoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000136 ! -property_value: IAO:0000589 "gut-associated lymphoid tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001962 ! gut-associated lymphoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000135 ! -property_value: IAO:0000589 "bronchial-associated lymphoid tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001963 ! bronchial-associated lymphoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002635 ! -property_value: IAO:0000589 "least splanchnic nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001964 ! least splanchnic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001064 ! -property_value: IAO:0000589 "substantia nigra pars compacta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001965 ! substantia nigra pars compacta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001066 ! -property_value: IAO:0000589 "substantia nigra pars reticulata (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001966 ! substantia nigra pars reticulata -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002522 ! -property_value: IAO:0000589 "semen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001968 ! semen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002501 ! -property_value: IAO:0000589 "blood plasma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001969 ! blood plasma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002513 ! -property_value: IAO:0000589 "bile (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001970 ! bile -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002519 ! -property_value: IAO:0000589 "gastric juice (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001971 ! gastric juice -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002724 ! -property_value: IAO:0000589 "submucosa of esophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001972 ! submucosa of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001568 ! -property_value: IAO:0000589 "lamina propria of esophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001974 ! lamina propria of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001571 ! -property_value: IAO:0000589 "serosa of esophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001975 ! serosa of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001565 ! -property_value: IAO:0000589 "epithelium of esophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002502 ! -property_value: IAO:0000589 "blood serum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001977 ! blood serum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000724 ! -property_value: IAO:0000589 "parenchyma of pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001978 ! parenchyma of pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000071 ! -property_value: IAO:0000589 "venule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001979 ! venule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000063 ! -property_value: IAO:0000589 "arteriole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001980 ! arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000060 ! -property_value: IAO:0000589 "blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000065 ! -property_value: IAO:0000589 "capillary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001982 ! capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001535 ! -property_value: IAO:0000589 "crypt of Lieberkuhn (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001983 ! crypt of Lieberkuhn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001544 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of large intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001984 ! crypt of Lieberkuhn of large intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001242 ! -property_value: IAO:0000589 "corneal endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001985 ! corneal endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000386 ! -property_value: IAO:0000589 "placenta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001987 ! placenta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002509 ! -property_value: IAO:0000589 "feces (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001988 ! feces -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001156 ! -property_value: IAO:0000589 "superior cervical ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001155 ! -property_value: IAO:0000589 "middle cervical ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001990 ! middle cervical ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001153 ! -property_value: IAO:0000589 "cervical ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001991 ! cervical ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000800 ! -property_value: IAO:0000589 "papillary layer of dermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001992 ! papillary layer of dermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000802 ! -property_value: IAO:0000589 "papillary layer of dermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001992 ! papillary layer of dermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000801 ! -property_value: IAO:0000589 "reticular layer of dermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001993 ! reticular layer of dermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000109 ! -property_value: IAO:0000589 "hyaline cartilage tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001994 ! hyaline cartilage tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000108 ! -property_value: IAO:0000589 "fibrocartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001995 ! fibrocartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000107 ! -property_value: IAO:0000589 "elastic cartilage tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001996 ! elastic cartilage tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000485 ! -property_value: IAO:0000589 "elastic cartilage tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001996 ! elastic cartilage tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001325 ! -property_value: IAO:0000589 "olfactory epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001512 ! -property_value: IAO:0000589 "sternocostal joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001998 ! sternocostal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002321 ! -property_value: IAO:0000589 "iliopsoas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0001999 ! iliopsoas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000535 ! -property_value: IAO:0000589 "gluteal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002000 ! gluteal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001508 ! -property_value: IAO:0000589 "joint of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002001 ! joint of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001511 ! -property_value: IAO:0000589 "interchondral joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002002 ! interchondral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001178 ! -property_value: IAO:0000589 "trunk of sciatic nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002004 ! trunk of sciatic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000222 ! -property_value: IAO:0000589 "enteric nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002005 ! enteric nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000740 ! -property_value: IAO:0000589 "cortex of lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002006 ! cortex of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000745 ! -property_value: IAO:0000589 "medulla of lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002007 ! medulla of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001138 ! -property_value: IAO:0000589 "cardiac nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002008 ! cardiac nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001143 ! -property_value: IAO:0000589 "pulmonary nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002009 ! pulmonary nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001139 ! -property_value: IAO:0000589 "celiac nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002010 ! celiac nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002065 ! -property_value: IAO:0000589 "thoracodorsal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002011 ! thoracodorsal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002031 ! -property_value: IAO:0000589 "pulmonary artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001142 ! -property_value: IAO:0000589 "superior hypogastric nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002013 ! superior hypogastric nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001141 ! -property_value: IAO:0000589 "inferior hypogastric nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002014 ! inferior hypogastric nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000370 ! -property_value: IAO:0000589 "kidney capsule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002015 ! kidney capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002206 ! -property_value: IAO:0000589 "pulmonary vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002198 ! -property_value: IAO:0000589 "portal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002017 ! portal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000114 ! -property_value: IAO:0000589 "synovial membrane of synovial joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002018 ! synovial membrane of synovial joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001088 ! -property_value: IAO:0000589 "accessory XI nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001112 ! -property_value: IAO:0000589 "gray matter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002020 ! gray matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000888 ! -property_value: IAO:0000589 "claustrum of brain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002023 ! claustrum of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001162 ! -property_value: IAO:0000589 "internal carotid nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002024 ! internal carotid nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000803 ! -property_value: IAO:0000589 "stratum basale of epidermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002025 ! stratum basale of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000807 ! -property_value: IAO:0000589 "stratum spinosum of epidermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002026 ! stratum spinosum of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000804 ! -property_value: IAO:0000589 "stratum corneum of epidermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002027 ! stratum corneum of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000195 ! -property_value: IAO:0000589 "hindbrain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001632 ! -property_value: IAO:0000589 "epithelium of gall bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002029 ! epithelium of gall bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000796 ! -property_value: IAO:0000589 "nipple (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002030 ! nipple -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001839 ! -property_value: IAO:0000589 "epithelium of bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002031 ! epithelium of bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000788 ! -property_value: IAO:0000589 "areola (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002032 ! areola -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000778 ! -property_value: IAO:0000589 "arrector muscle of hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002033 ! arrector muscle of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000843 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002034 ! suprachiasmatic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000840 ! -property_value: IAO:0000589 "medial preoptic nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002035 ! medial preoptic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002438 ! -property_value: IAO:0000589 "striated muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002036 ! striated muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000198 ! -property_value: IAO:0000589 "cerebellum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000210 ! -property_value: IAO:0000589 "substantia nigra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002038 ! substantia nigra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002195 ! -property_value: IAO:0000589 "inferior phrenic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002039 ! inferior phrenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001923 ! -property_value: IAO:0000589 "bronchial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002040 ! bronchial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000440 ! -property_value: IAO:0000589 "terminal bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002041 ! terminal bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000750 ! -property_value: IAO:0000589 "lymphatic vessel endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002042 ! lymphatic vessel endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002980 ! -property_value: IAO:0000589 "dorsal raphe nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002043 ! dorsal raphe nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001072 ! -property_value: IAO:0000589 "ventral nucleus of posterior commissure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002044 ! ventral nucleus of posterior commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001035 ! -property_value: IAO:0000589 "cuneate nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002045 ! cuneate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000129 ! -property_value: IAO:0000589 "thyroid gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001022 ! -property_value: IAO:0000589 "pontine raphe nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002047 ! pontine raphe nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000415 ! -property_value: IAO:0000589 "lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002048 ! lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001772 ! -property_value: IAO:0000589 "epithelium of bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002051 ! epithelium of bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000117 ! -property_value: IAO:0000589 "adrenal gland capsule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002052 ! adrenal gland capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001891 ! -property_value: IAO:0000589 "zona glomerulosa of adrenal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002053 ! zona glomerulosa of adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001890 ! -property_value: IAO:0000589 "zona fasciculata of adrenal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002054 ! zona fasciculata of adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001892 ! -property_value: IAO:0000589 "zona reticularis of adrenal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002055 ! zona reticularis of adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002056 ! -property_value: IAO:0000589 "inferior suprarenal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002056 ! inferior suprarenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002019 ! -property_value: IAO:0000589 "phrenic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002057 ! phrenic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001136 ! -property_value: IAO:0000589 "main ciliary ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002058 ! main ciliary ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002470 ! -property_value: IAO:0000589 "submandibular ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002059 ! submandibular ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001951 ! -property_value: IAO:0000589 "femoral artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002060 ! femoral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000103 ! -property_value: IAO:0000589 "truncus arteriosus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002061 ! truncus arteriosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000078 ! -property_value: IAO:0000589 "endocardial cushion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002249 ! -property_value: IAO:0000589 "umbilical vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002066 ! umbilical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000152 ! -property_value: IAO:0000589 "dermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002067 ! dermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001701 ! -property_value: IAO:0000589 "urachus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002068 ! urachus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000805 ! -property_value: IAO:0000589 "stratum granulosum of epidermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002069 ! stratum granulosum of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002015 ! -property_value: IAO:0000589 "superior pancreaticoduodenal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002070 ! superior pancreaticoduodenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000806 ! -property_value: IAO:0000589 "stratum lucidum of epidermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002071 ! stratum lucidum of epidermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000154 ! -property_value: IAO:0000589 "hair follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002073 ! hair follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000159 ! -property_value: IAO:0000589 "hair shaft (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002074 ! hair shaft -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000019 ! -property_value: IAO:0000589 "viscus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002075 ! viscus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000157 ! -property_value: IAO:0000589 "cuticle of hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002076 ! cuticle of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000156 ! -property_value: IAO:0000589 "cortex of hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002077 ! cortex of hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000075 ! -property_value: IAO:0000589 "right cardiac atrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002078 ! right cardiac atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000074 ! -property_value: IAO:0000589 "left cardiac atrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002079 ! left cardiac atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000093 ! -property_value: IAO:0000589 "heart right ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002080 ! heart right ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000073 ! -property_value: IAO:0000589 "cardiac atrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000091 ! -property_value: IAO:0000589 "cardiac ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002111 ! -property_value: IAO:0000589 "ductus venosus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002083 ! ductus venosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000092 ! -property_value: IAO:0000589 "heart left ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002084 ! heart left ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000084 ! -property_value: IAO:0000589 "interatrial septum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002085 ! interatrial septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002162 ! -property_value: IAO:0000589 "lateral thoracic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002088 ! lateral thoracic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002238 ! -property_value: IAO:0000589 "thoracodorsal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002089 ! thoracodorsal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002986 ! -property_value: IAO:0000589 "postcranial axial skeleton (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000290 ! -property_value: IAO:0000589 "appendicular skeleton (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002091 ! appendicular skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000815 ! -property_value: IAO:0000589 "brain dura mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002092 ! brain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001132 ! -property_value: IAO:0000589 "spinal dura mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002093 ! spinal dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000085 ! -property_value: IAO:0000589 "interventricular septum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002094 ! interventricular septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000488 ! -property_value: IAO:0000589 "apex of heart (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002098 ! apex of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000083 ! -property_value: IAO:0000589 "cardiac septum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002099 ! cardiac septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000004 ! -property_value: IAO:0000589 "trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002100 ! trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000007 ! -property_value: IAO:0000589 "limb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002101 ! limb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000025 ! -property_value: IAO:0000589 "forelimb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002102 ! forelimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000026 ! -property_value: IAO:0000589 "hindlimb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002444 ! -property_value: IAO:0000589 "visual system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002104 ! visual system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000141 ! -property_value: IAO:0000589 "spleen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002106 ! spleen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000358 ! -property_value: IAO:0000589 "liver (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002107 ! liver -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000337 ! -property_value: IAO:0000589 "small intestine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002108 ! small intestine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000356 ! -property_value: IAO:0000589 "gallbladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000708 ! -property_value: IAO:0000589 "artery smooth muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002111 ! artery smooth muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001573 ! -property_value: IAO:0000589 "smooth muscle of esophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002112 ! smooth muscle of esophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000368 ! -property_value: IAO:0000589 "kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002113 ! kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000338 ! -property_value: IAO:0000589 "duodenum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002114 ! duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000340 ! -property_value: IAO:0000589 "jejunum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002115 ! jejunum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000339 ! -property_value: IAO:0000589 "ileum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002116 ! ileum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001705 ! -property_value: IAO:0000589 "right ovary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002118 ! right ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001704 ! -property_value: IAO:0000589 "left ovary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002119 ! left ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000766 ! -property_value: IAO:0000589 "capsule of thymus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002122 ! capsule of thymus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000767 ! -property_value: IAO:0000589 "cortex of thymus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002123 ! cortex of thymus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000771 ! -property_value: IAO:0000589 "medulla of thymus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002124 ! medulla of thymus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000770 ! -property_value: IAO:0000589 "thymus lobule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002125 ! thymus lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001040 ! -property_value: IAO:0000589 "inferior olivary complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002127 ! inferior olivary complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001026 ! -property_value: IAO:0000589 "superior olivary complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002128 ! superior olivary complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000199 ! -property_value: IAO:0000589 "cerebellar cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002129 ! cerebellar cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000991 ! -property_value: IAO:0000589 "anterior lobe of cerebellum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002131 ! anterior lobe of cerebellum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001008 ! -property_value: IAO:0000589 "dentate nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002132 ! dentate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002789 ! -property_value: IAO:0000589 "atrioventricular valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002133 ! atrioventricular valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000090 ! -property_value: IAO:0000589 "tricuspid valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002134 ! tricuspid valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000088 ! -property_value: IAO:0000589 "mitral valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002135 ! mitral valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000947 ! -property_value: IAO:0000589 "hilus of dentate gyrus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002136 ! hilus of dentate gyrus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000087 ! -property_value: IAO:0000589 "aortic valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002137 ! aortic valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002941 ! -property_value: IAO:0000589 "subcommissural organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002139 ! subcommissural organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001074 ! -property_value: IAO:0000589 "parabigeminal nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002140 ! parabigeminal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001071 ! -property_value: IAO:0000589 "parvocellular oculomotor nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002141 ! parvocellular oculomotor nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001020 ! -property_value: IAO:0000589 "pedunculopontine tegmental nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002142 ! pedunculopontine tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001013 ! -property_value: IAO:0000589 "dorsal tegmental nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002143 ! dorsal tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000875 ! -property_value: IAO:0000589 "peripeduncular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002144 ! peripeduncular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001069 ! -property_value: IAO:0000589 "interpeduncular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002145 ! interpeduncular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000089 ! -property_value: IAO:0000589 "pulmonary valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002146 ! pulmonary valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001025 ! -property_value: IAO:0000589 "reticulotegmental nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002147 ! reticulotegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001017 ! -property_value: IAO:0000589 "locus ceruleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002148 ! locus ceruleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001027 ! -property_value: IAO:0000589 "superior salivatory nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002149 ! superior salivatory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002746 ! -property_value: IAO:0000589 "superior cerebellar peduncle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002150 ! superior cerebellar peduncle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001021 ! -property_value: IAO:0000589 "pontine nuclear group (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002151 ! pontine nuclear group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002745 ! -property_value: IAO:0000589 "middle cerebellar peduncle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002152 ! middle cerebellar peduncle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001009 ! -property_value: IAO:0000589 "fastigial nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002153 ! fastigial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001047 ! -property_value: IAO:0000589 "lateral reticular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002154 ! lateral reticular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001037 ! -property_value: IAO:0000589 "gigantocellular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002155 ! gigantocellular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001024 ! -property_value: IAO:0000589 "nucleus raphe magnus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002156 ! nucleus raphe magnus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001051 ! -property_value: IAO:0000589 "nucleus raphe pallidus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002157 ! nucleus raphe pallidus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001046 ! -property_value: IAO:0000589 "principal inferior olivary nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002158 ! principal inferior olivary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001045 ! -property_value: IAO:0000589 "medial accessory inferior olivary nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002159 ! medial accessory inferior olivary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001023 ! -property_value: IAO:0000589 "nucleus prepositus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002160 ! nucleus prepositus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001038 ! -property_value: IAO:0000589 "gracile nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002161 ! gracile nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001034 ! -property_value: IAO:0000589 "area postrema (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002162 ! area postrema -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002744 ! -property_value: IAO:0000589 "inferior cerebellar peduncle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002163 ! inferior cerebellar peduncle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000076 ! -property_value: IAO:0000589 "endocardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000077 ! -property_value: IAO:0000589 "endocardium of atrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002166 ! endocardium of atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000426 ! -property_value: IAO:0000589 "right lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002167 ! right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000425 ! -property_value: IAO:0000589 "left lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002168 ! left lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000418 ! -property_value: IAO:0000589 "alveolar sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002169 ! alveolar sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000429 ! -property_value: IAO:0000589 "upper lobe of right lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002170 ! upper lobe of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000428 ! -property_value: IAO:0000589 "lower lobe of right lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002171 ! lower lobe of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000419 ! -property_value: IAO:0000589 "alveolar atrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002172 ! alveolar atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000417 ! -property_value: IAO:0000589 "pulmonary alveolar duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002173 ! pulmonary alveolar duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000430 ! -property_value: IAO:0000589 "middle lobe of right lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002174 ! middle lobe of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002753 ! -property_value: IAO:0000589 "intermediolateral nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002175 ! intermediolateral nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002755 ! -property_value: IAO:0000589 "lateral cervical nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002176 ! lateral cervical nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001849 ! -property_value: IAO:0000589 "right main bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002177 ! right main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001843 ! -property_value: IAO:0000589 "left main bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002178 ! left main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001124 ! -property_value: IAO:0000589 "substantia gelatinosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002181 ! substantia gelatinosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000438 ! -property_value: IAO:0000589 "main bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002182 ! main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000437 ! -property_value: IAO:0000589 "lobar bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002183 ! lobar bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000439 ! -property_value: IAO:0000589 "segmental bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002184 ! segmental bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000436 ! -property_value: IAO:0000589 "bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002185 ! bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000422 ! -property_value: IAO:0000589 "bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002186 ! bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000424 ! -property_value: IAO:0000589 "terminal bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002187 ! terminal bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000423 ! -property_value: IAO:0000589 "respiratory bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002188 ! respiratory bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001649 ! -property_value: IAO:0000589 "outer cortex of kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002189 ! outer cortex of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000473 ! -property_value: IAO:0000589 "subcutaneous adipose tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002190 ! subcutaneous adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000960 ! -property_value: IAO:0000589 "subiculum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002191 ! subiculum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000013 ! -property_value: IAO:0000589 "hemolymphoid system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002193 ! hemolymphoid system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000739 ! -property_value: IAO:0000589 "capsule of lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002194 ! capsule of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000746 ! -property_value: IAO:0000589 "trabecula of lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002195 ! trabecula of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000177 ! -property_value: IAO:0000589 "adenohypophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000859 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002197 ! median eminence of neurohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000178 ! -property_value: IAO:0000589 "neurohypophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001860 ! -property_value: IAO:0000589 "submucosa of trachea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002202 ! submucosa of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002418 ! -property_value: IAO:0000589 "musculoskeletal system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002204 ! musculoskeletal system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001332 ! -property_value: IAO:0000589 "manubrium of sternum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002205 ! manubrium of sternum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000174 ! -property_value: IAO:0000589 "mammillary body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002206 ! mammillary body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001334 ! -property_value: IAO:0000589 "xiphoid process (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002207 ! xiphoid process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001333 ! -property_value: IAO:0000589 "sternebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002208 ! sternebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000321 ! -property_value: IAO:0000589 "fibrous joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002209 ! fibrous joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001500 ! -property_value: IAO:0000589 "syndesmosis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002210 ! syndesmosis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001201 ! -property_value: IAO:0000589 "macula of saccule of membranous labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002212 ! macula of saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000320 ! -property_value: IAO:0000589 "cartilaginous joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002213 ! cartilaginous joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001203 ! -property_value: IAO:0000589 "macula of utricle of membranous labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002214 ! macula of utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001501 ! -property_value: IAO:0000589 "synchondrosis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002215 ! synchondrosis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001504 ! -property_value: IAO:0000589 "symphysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002216 ! symphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000322 ! -property_value: IAO:0000589 "synovial joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002217 ! synovial joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001225 ! -property_value: IAO:0000589 "tympanic ring (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002218 ! tympanic ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000940 ! -property_value: IAO:0000589 "subfornical organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002219 ! subfornical organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001465 ! -property_value: IAO:0000589 "fontanelle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002221 ! fontanelle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003008 ! -property_value: IAO:0000589 "perichondrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002222 ! perichondrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001188 ! -property_value: IAO:0000589 "endolymphatic sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002223 ! endolymphatic sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000032 ! -property_value: IAO:0000589 "thoracic cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002224 ! thoracic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001396 ! -property_value: IAO:0000589 "costal arch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002225 ! costal arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001190 ! -property_value: IAO:0000589 "basilar membrane of cochlea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002226 ! basilar membrane of cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001193 ! -property_value: IAO:0000589 "spiral organ of cochlea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002227 ! spiral organ of cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000315 ! -property_value: IAO:0000589 "rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002228 ! rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001467 ! -property_value: IAO:0000589 "interparietal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002229 ! interparietal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001415 ! -property_value: IAO:0000589 "head of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002230 ! head of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001416 ! -property_value: IAO:0000589 "body of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002231 ! body of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000287 ! -property_value: IAO:0000589 "olfactory gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002232 ! olfactory gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001199 ! -property_value: IAO:0000589 "tectorial membrane of cochlea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002233 ! tectorial membrane of cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001395 ! -property_value: IAO:0000589 "proximal phalanx of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002234 ! proximal phalanx of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001417 ! -property_value: IAO:0000589 "tubercle of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002235 ! tubercle of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000106 ! -property_value: IAO:0000589 "costal cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002236 ! costal cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001419 ! -property_value: IAO:0000589 "true rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002237 ! true rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001398 ! -property_value: IAO:0000589 "false rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002238 ! false rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001399 ! -property_value: IAO:0000589 "floating rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002239 ! floating rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000216 ! -property_value: IAO:0000589 "spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000112 ! -property_value: IAO:0000589 "nucleus pulposus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002242 ! nucleus pulposus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002098 ! -property_value: IAO:0000589 "cutaneous vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002243 ! cutaneous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001493 ! -property_value: IAO:0000589 "premaxilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000200 ! -property_value: IAO:0000589 "cerebellar hemisphere (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002245 ! cerebellar hemisphere -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001121 ! -property_value: IAO:0000589 "dorsal thoracic nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002246 ! dorsal thoracic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000393 ! -property_value: IAO:0000589 "uterine horn (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002247 ! uterine horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001880 ! -property_value: IAO:0000589 "transverse pericardial sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002248 ! transverse pericardial sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001999 ! -property_value: IAO:0000589 "median artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002249 ! median artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002021 ! -property_value: IAO:0000589 "popliteal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002250 ! popliteal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002319 ! -property_value: IAO:0000589 "iliocostalis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002251 ! iliocostalis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002382 ! -property_value: IAO:0000589 "splenius (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002252 ! splenius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000130 ! -property_value: IAO:0000589 "thyroglossal duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002254 ! thyroglossal duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000289 ! -property_value: IAO:0000589 "vomeronasal organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001119 ! -property_value: IAO:0000589 "dorsal horn of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001134 ! -property_value: IAO:0000589 "ventral horn of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002567 ! -property_value: IAO:0000589 "corpora quadrigemina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002259 ! corpora quadrigemina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001158 ! -property_value: IAO:0000589 "celiac ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002262 ! celiac ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000896 ! -property_value: IAO:0000589 "lentiform nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002263 ! lentiform nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000194 ! -property_value: IAO:0000589 "olfactory bulb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000975 ! -property_value: IAO:0000589 "olfactory tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002265 ! olfactory tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000968 ! -property_value: IAO:0000589 "anterior olfactory nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002266 ! anterior olfactory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001016 ! -property_value: IAO:0000589 "laterodorsal tegmental nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002267 ! laterodorsal tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001293 ! -property_value: IAO:0000589 "pupillary membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002269 ! pupillary membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000846 ! -property_value: IAO:0000589 "periventricular zone of hypothalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002271 ! periventricular zone of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000837 ! -property_value: IAO:0000589 "medial zone of hypothalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002272 ! medial zone of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000833 ! -property_value: IAO:0000589 "lateral zone of hypothalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002273 ! lateral zone of hypothalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000836 ! -property_value: IAO:0000589 "perifornical nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002274 ! perifornical nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003185 ! -property_value: IAO:0000589 "reticular formation (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002275 ! reticular formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001191 ! -property_value: IAO:0000589 "lamina of spiral limbus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002276 ! lamina of spiral limbus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001195 ! -property_value: IAO:0000589 "spiral sulcus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002277 ! spiral sulcus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001186 ! -property_value: IAO:0000589 "vestibular aqueduct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002279 ! vestibular aqueduct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001200 ! -property_value: IAO:0000589 "vestibular membrane of cochlear duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002281 ! vestibular membrane of cochlear duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001198 ! -property_value: IAO:0000589 "stria vascularis of cochlear duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002282 ! stria vascularis of cochlear duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002707 ! -property_value: IAO:0000589 "nail matrix (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002283 ! nail matrix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002705 ! -property_value: IAO:0000589 "hyponychium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002284 ! hyponychium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000192 ! -property_value: IAO:0000589 "telencephalic ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002285 ! telencephalic ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000182 ! -property_value: IAO:0000589 "third ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000879 ! -property_value: IAO:0000589 "choroid plexus of third ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002288 ! choroid plexus of third ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000208 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000983 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002290 ! choroid plexus of fourth ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001117 ! -property_value: IAO:0000589 "central canal of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002291 ! central canal of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001510 ! -property_value: IAO:0000589 "costovertebral joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002292 ! costovertebral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001509 ! -property_value: IAO:0000589 "costochondral joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002293 ! costochondral joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001273 ! -property_value: IAO:0000589 "biliary system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002294 ! biliary system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002458 ! -property_value: IAO:0000589 "scala media (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002295 ! scala media -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002506 ! -property_value: IAO:0000589 "cerumen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002297 ! cerumen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000169 ! -property_value: IAO:0000589 "brainstem (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002298 ! brainstem -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000420 ! -property_value: IAO:0000589 "alveolus of lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002299 ! alveolus of lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000186 ! -property_value: IAO:0000589 "layer of neocortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002301 ! layer of neocortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000081 ! -property_value: IAO:0000589 "myocardium of atrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002302 ! myocardium of atrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002546 ! -property_value: IAO:0000589 "juxtaglomerular apparatus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002303 ! juxtaglomerular apparatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002429 ! -property_value: IAO:0000589 "layer of dentate gyrus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002304 ! layer of dentate gyrus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002427 ! -property_value: IAO:0000589 "layer of hippocampus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002305 ! layer of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002535 ! -property_value: IAO:0000589 "nasal mucus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002306 ! nasal mucus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000961 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002307 ! choroid plexus of lateral ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000811 ! -property_value: IAO:0000589 "nucleus of brain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002308 ! nucleus of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000949 ! -property_value: IAO:0000589 "hippocampus fimbria (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002310 ! hippocampus fimbria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000956 ! -property_value: IAO:0000589 "hippocampus pyramidal layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002313 ! hippocampus pyramidal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000211 ! -property_value: IAO:0000589 "midbrain tectum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002314 ! midbrain tectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000002 ! -property_value: IAO:0000589 "gray matter of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002315 ! gray matter of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001135 ! -property_value: IAO:0000589 "white matter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002430 ! -property_value: IAO:0000589 "white matter of cerebellum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002317 ! white matter of cerebellum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000910 ! -property_value: IAO:0000589 "white matter of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002318 ! white matter of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002617 ! -property_value: IAO:0000589 "mesangium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002319 ! mesangium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002606 ! -property_value: IAO:0000589 "glomerular mesangium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002320 ! glomerular mesangium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002602 ! -property_value: IAO:0000589 "extraglomerular mesangium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002321 ! extraglomerular mesangium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000496 ! -property_value: IAO:0000589 "muscle of back (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002324 ! muscle of back -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001686 ! -property_value: IAO:0000589 "epithelium of urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002325 ! epithelium of urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001689 ! -property_value: IAO:0000589 "lamina propria of urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002326 ! lamina propria of urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001176 ! -property_value: IAO:0000589 "trunk of intercostal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002327 ! trunk of intercostal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002411 ! -property_value: IAO:0000589 "exocrine system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002330 ! exocrine system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002033 ! -property_value: IAO:0000589 "pulmonary trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002333 ! pulmonary trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002698 ! -property_value: IAO:0000589 "submandibular duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002334 ! submandibular duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002603 ! -property_value: IAO:0000589 "macula densa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002335 ! macula densa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000188 ! -property_value: IAO:0000589 "corpus callosum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002336 ! corpus callosum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002734 ! -property_value: IAO:0000589 "endometrial stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002337 ! endometrial stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001836 ! -property_value: IAO:0000589 "lamina propria of bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002338 ! lamina propria of bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001842 ! -property_value: IAO:0000589 "epithelium of lobar bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002339 ! epithelium of lobar bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001847 ! -property_value: IAO:0000589 "epithelium of main bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002340 ! epithelium of main bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001850 ! -property_value: IAO:0000589 "epithelium of segmental bronchus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002341 ! epithelium of segmental bronchus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002572 ! -property_value: IAO:0000589 "descending thoracic aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002345 ! descending thoracic aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000314 ! -property_value: IAO:0000589 "thoracic vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002347 ! thoracic vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000164 ! -property_value: IAO:0000589 "myocardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002349 ! myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000094 ! -property_value: IAO:0000589 "conducting system of heart (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002350 ! conducting system of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000097 ! -property_value: IAO:0000589 "sinoatrial node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002351 ! sinoatrial node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000095 ! -property_value: IAO:0000589 "atrioventricular node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002352 ! atrioventricular node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002576 ! -property_value: IAO:0000589 "bundle of His (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002353 ! bundle of His -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000096 ! -property_value: IAO:0000589 "cardiac Purkinje fiber (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002354 ! cardiac Purkinje fiber -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000030 ! -property_value: IAO:0000589 "pelvic region of trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002355 ! pelvic region of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002466 ! -property_value: IAO:0000589 "perineum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002356 ! perineum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002739 ! -property_value: IAO:0000589 "serous pericardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002357 ! serous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000449 ! -property_value: IAO:0000589 "peritoneum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002358 ! peritoneum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002738 ! -property_value: IAO:0000589 "fibrous pericardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002359 ! fibrous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001113 ! -property_value: IAO:0000589 "meninx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002360 ! meninx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001116 ! -property_value: IAO:0000589 "pia mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002361 ! pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001114 ! -property_value: IAO:0000589 "arachnoid mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002362 ! arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001115 ! -property_value: IAO:0000589 "dura mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002363 ! dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000257 ! -property_value: IAO:0000589 "tympanic membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002364 ! tympanic membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002564 ! -property_value: IAO:0000589 "exocrine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002365 ! exocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000401 ! -property_value: IAO:0000589 "bulbo-urethral gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002366 ! bulbo-urethral gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000404 ! -property_value: IAO:0000589 "prostate gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002367 ! prostate gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002563 ! -property_value: IAO:0000589 "endocrine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002368 ! endocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000116 ! -property_value: IAO:0000589 "adrenal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000142 ! -property_value: IAO:0000589 "thymus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002370 ! thymus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000134 ! -property_value: IAO:0000589 "bone marrow (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002371 ! bone marrow -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000143 ! -property_value: IAO:0000589 "tonsil (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002372 ! tonsil -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000775 ! -property_value: IAO:0000589 "palatine tonsil (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002373 ! palatine tonsil -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000302 ! -property_value: IAO:0000589 "metacarpal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002374 ! metacarpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001762 ! -property_value: IAO:0000589 "cricoid cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002375 ! cricoid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000578 ! -property_value: IAO:0000589 "cranial muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002376 ! cranial muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000587 ! -property_value: IAO:0000589 "muscle of neck (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002377 ! muscle of neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000520 ! -property_value: IAO:0000589 "muscle of abdomen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002378 ! muscle of abdomen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000538 ! -property_value: IAO:0000589 "perineal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002379 ! perineal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002398 ! -property_value: IAO:0000589 "trapezius muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002380 ! trapezius muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002354 ! -property_value: IAO:0000589 "pectoralis major (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002381 ! pectoralis major -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002364 ! -property_value: IAO:0000589 "rectus abdominis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002389 ! -property_value: IAO:0000589 "supraspinatus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002383 ! supraspinatus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000011 ! -property_value: IAO:0000589 "connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002384 ! connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002437 ! -property_value: IAO:0000589 "muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002385 ! muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000034 ! -property_value: IAO:0000589 "forelimb zeugopod (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002386 ! forelimb zeugopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000044 ! -property_value: IAO:0000589 "pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002387 ! pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000041 ! -property_value: IAO:0000589 "manual digit (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002389 ! manual digit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002434 ! -property_value: IAO:0000589 "hematopoietic system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002390 ! hematopoietic system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002520 ! -property_value: IAO:0000589 "lymph (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002391 ! lymph -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001299 ! -property_value: IAO:0000589 "nasolacrimal duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002392 ! nasolacrimal duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000255 ! -property_value: IAO:0000589 "pharyngotympanic tube (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000354 ! -property_value: IAO:0000589 "bile duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002394 ! bile duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001351 ! -property_value: IAO:0000589 "talus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002395 ! talus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001496 ! -property_value: IAO:0000589 "vomer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002396 ! vomer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001491 ! -property_value: IAO:0000589 "maxilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002397 ! maxilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000037 ! -property_value: IAO:0000589 "manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002398 ! manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001623 ! -property_value: IAO:0000589 "lesser omentum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002399 ! lesser omentum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002488 ! -property_value: IAO:0000589 "parietal pleura (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002400 ! parietal pleura -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002489 ! -property_value: IAO:0000589 "visceral pleura (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002401 ! visceral pleura -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000055 ! -property_value: IAO:0000589 "pleural cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002402 ! pleural cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002326 ! -property_value: IAO:0000589 "internal intercostal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002403 ! internal intercostal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002397 ! -property_value: IAO:0000589 "transversus thoracis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002404 ! transversus thoracis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002711 ! -property_value: IAO:0000589 "immune system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002405 ! immune system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000099 ! -property_value: IAO:0000589 "pericardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002407 ! pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000483 ! -property_value: IAO:0000589 "parietal serous pericardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002408 ! parietal serous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002530 ! -property_value: IAO:0000589 "pericardial fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002409 ! pericardial fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000219 ! -property_value: IAO:0000589 "autonomic nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002410 ! autonomic nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000382 ! -property_value: IAO:0000589 "clitoris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002411 ! clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000309 ! -property_value: IAO:0000589 "vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002412 ! vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000311 ! -property_value: IAO:0000589 "cervical vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000312 ! -property_value: IAO:0000589 "lumbar vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002414 ! lumbar vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000014 ! -property_value: IAO:0000589 "integumental system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002416 ! integumental system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000021 ! -property_value: IAO:0000589 "abdominal segment of trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002417 ! abdominal segment of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000104 ! -property_value: IAO:0000589 "cartilage tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002418 ! cartilage tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000146 ! -property_value: IAO:0000589 "skin gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002419 ! skin gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000189 ! -property_value: IAO:0000589 "hippocampal formation (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002421 ! hippocampal formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000196 ! -property_value: IAO:0000589 "fourth ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000324 ! -property_value: IAO:0000589 "hepatobiliary system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000344 ! -property_value: IAO:0000589 "oral epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000484 ! -property_value: IAO:0000589 "visceral serous pericardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002425 ! visceral serous pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000548 ! -property_value: IAO:0000589 "chest muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002426 ! chest muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000596 ! -property_value: IAO:0000589 "arm skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002427 ! arm skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000736 ! -property_value: IAO:0000589 "cervical lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002429 ! cervical lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000834 ! -property_value: IAO:0000589 "lateral hypothalamic area (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002430 ! lateral hypothalamic area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000855 ! -property_value: IAO:0000589 "pars intermedia of adenohypophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000856 ! -property_value: IAO:0000589 "pars tuberalis of adenohypophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002433 ! pars tuberalis of adenohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000858 ! -property_value: IAO:0000589 "pituitary stalk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000891 ! -property_value: IAO:0000589 "striatum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002435 ! striatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000914 ! -property_value: IAO:0000589 "primary visual cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002436 ! primary visual cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000945 ! -property_value: IAO:0000589 "cerebral hemisphere white matter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002437 ! cerebral hemisphere white matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001031 ! -property_value: IAO:0000589 "ventral tegmental nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002438 ! ventral tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001148 ! -property_value: IAO:0000589 "myenteric nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002439 ! myenteric nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001154 ! -property_value: IAO:0000589 "inferior cervical ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002440 ! inferior cervical ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001157 ! -property_value: IAO:0000589 "cervicothoracic ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002441 ! cervicothoracic ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001175 ! -property_value: IAO:0000589 "axillary nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002442 ! axillary nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001237 ! -property_value: IAO:0000589 "choroidal blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002443 ! choroidal blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001304 ! -property_value: IAO:0000589 "lens fiber (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001347 ! -property_value: IAO:0000589 "ulnare (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002445 ! ulnare -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001374 ! -property_value: IAO:0000589 "patella (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002446 ! patella -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001584 ! -property_value: IAO:0000589 "palatine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002447 ! palatine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001595 ! -property_value: IAO:0000589 "fungiform papilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002448 ! fungiform papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001722 ! -property_value: IAO:0000589 "decidua (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002450 ! decidua -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001726 ! -property_value: IAO:0000589 "endometrial gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002451 ! endometrial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001792 ! -property_value: IAO:0000589 "ethmoid sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002453 ! ethmoid sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001944 ! -property_value: IAO:0000589 "dorsal metacarpal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002454 ! dorsal metacarpal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001966 ! -property_value: IAO:0000589 "common plantar digital arteries (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002455 ! common plantar digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001982 ! -property_value: IAO:0000589 "internal thoracic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001984 ! -property_value: IAO:0000589 "internal thoracic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002456 ! internal thoracic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001985 ! -property_value: IAO:0000589 "intersomitic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002457 ! intersomitic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002043 ! -property_value: IAO:0000589 "spinal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002147 ! -property_value: IAO:0000589 "inferior palpebral vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002459 ! inferior palpebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002263 ! -property_value: IAO:0000589 "vesical vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002460 ! vesical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002268 ! -property_value: IAO:0000589 "anterior abdominal wall muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002461 ! anterior abdominal wall muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002289 ! -property_value: IAO:0000589 "erector spinae muscle group (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002462 ! erector spinae muscle group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002312 ! -property_value: IAO:0000589 "muscle of posterior compartment of hindlimb stylopod (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002463 ! muscle of posterior compartment of hindlimb stylopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000229 ! -property_value: IAO:0000589 "nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002464 ! nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002408 ! -property_value: IAO:0000589 "nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002464 ! nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002435 ! -property_value: IAO:0000589 "lymphoid system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002465 ! lymphoid system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002515 ! -property_value: IAO:0000589 "intestine secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002466 ! intestine secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002678 ! -property_value: IAO:0000589 "filiform papilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002467 ! filiform papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002679 ! -property_value: IAO:0000589 "foliate papilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002468 ! foliate papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002680 ! -property_value: IAO:0000589 "esophagus mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002469 ! esophagus mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002714 ! -property_value: IAO:0000589 "autopod region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002470 ! autopod region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002716 ! -property_value: IAO:0000589 "zeugopod (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002471 ! zeugopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002717 ! -property_value: IAO:0000589 "stylopod (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002472 ! stylopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002721 ! -property_value: IAO:0000589 "intercerebral commissure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002473 ! intercerebral commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002761 ! -property_value: IAO:0000589 "saphenous nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002475 ! saphenous nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002767 ! -property_value: IAO:0000589 "lateral globus pallidus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002476 ! lateral globus pallidus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002768 ! -property_value: IAO:0000589 "medial globus pallidus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002477 ! medial globus pallidus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002773 ! -property_value: IAO:0000589 "orbitosphenoid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002775 ! -property_value: IAO:0000589 "dorsal lateral geniculate nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002479 ! dorsal lateral geniculate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002776 ! -property_value: IAO:0000589 "ventral lateral geniculate nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002480 ! ventral lateral geniculate nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002780 ! -property_value: IAO:0000589 "bone tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002481 ! bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002781 ! -property_value: IAO:0000589 "lamellar bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002482 ! lamellar bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002782 ! -property_value: IAO:0000589 "trabecular bone tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002483 ! trabecular bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002783 ! -property_value: IAO:0000589 "bone marrow cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002484 ! bone marrow cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002785 ! -property_value: IAO:0000589 "prostate duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002485 ! prostate duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002788 ! -property_value: IAO:0000589 "glottis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002486 ! glottis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002792 ! -property_value: IAO:0000589 "tooth cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002487 ! tooth cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002793 ! -property_value: IAO:0000589 "helix of outer ear (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002488 ! helix of outer ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002795 ! -property_value: IAO:0000589 "coronal suture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002489 ! coronal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002796 ! -property_value: IAO:0000589 "frontal suture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002490 ! frontal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002797 ! -property_value: IAO:0000589 "lambdoid suture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002491 ! lambdoid suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002798 ! -property_value: IAO:0000589 "sagittal suture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002492 ! sagittal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002799 ! -property_value: IAO:0000589 "uterine artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002493 ! uterine artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002800 ! -property_value: IAO:0000589 "papillary muscle of heart (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002494 ! papillary muscle of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002802 ! -property_value: IAO:0000589 "long bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002495 ! long bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002804 ! -property_value: IAO:0000589 "stapes base (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002496 ! stapes base -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002805 ! -property_value: IAO:0000589 "acromion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002497 ! acromion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002808 ! -property_value: IAO:0000589 "deltopectoral crest (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002498 ! deltopectoral crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002809 ! -property_value: IAO:0000589 "cochlear labyrinth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002499 ! cochlear labyrinth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002810 ! -property_value: IAO:0000589 "zygomatic arch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002500 ! zygomatic arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002813 ! -property_value: IAO:0000589 "oval window (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002501 ! oval window -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002814 ! -property_value: IAO:0000589 "round window of inner ear (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002502 ! round window of inner ear -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002822 ! -property_value: IAO:0000589 "greater trochanter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002503 ! greater trochanter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002823 ! -property_value: IAO:0000589 "lesser trochanter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002504 ! lesser trochanter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002824 ! -property_value: IAO:0000589 "spiral modiolar artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002505 ! spiral modiolar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002826 ! -property_value: IAO:0000589 "iris epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002506 ! iris epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002827 ! -property_value: IAO:0000589 "abdominal lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002507 ! abdominal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002828 ! -property_value: IAO:0000589 "celiac lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002508 ! celiac lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002829 ! -property_value: IAO:0000589 "mesenteric lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002509 ! mesenteric lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002830 ! -property_value: IAO:0000589 "anterior fontanel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002510 ! anterior fontanel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002831 ! -property_value: IAO:0000589 "trabecula carnea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002511 ! trabecula carnea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002834 ! -property_value: IAO:0000589 "corpus luteum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002512 ! corpus luteum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002838 ! -property_value: IAO:0000589 "periosteum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002515 ! periosteum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002839 ! -property_value: IAO:0000589 "epiphyseal plate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002516 ! epiphyseal plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002840 ! -property_value: IAO:0000589 "basicranium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002517 ! basicranium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002841 ! -property_value: IAO:0000589 "otolith organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002518 ! otolith organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002842 ! -property_value: IAO:0000589 "otolithic part of statoconial membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002519 ! otolithic part of statoconial membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002843 ! -property_value: IAO:0000589 "submandibular lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002520 ! submandibular lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002853 ! -property_value: IAO:0000589 "elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002521 ! elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002855 ! -property_value: IAO:0000589 "tunica media (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002522 ! tunica media -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002861 ! -property_value: IAO:0000589 "tunica intima (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002523 ! tunica intima -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002877 ! -property_value: IAO:0000589 "mediastinal lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002524 ! mediastinal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002878 ! -property_value: IAO:0000589 "brachial lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002525 ! brachial lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002879 ! -property_value: IAO:0000589 "lumbar lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002526 ! lumbar lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002881 ! -property_value: IAO:0000589 "pancreatic lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002527 ! pancreatic lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002883 ! -property_value: IAO:0000589 "sacral lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002528 ! sacral lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002889 ! -property_value: IAO:0000589 "limb segment (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002529 ! limb segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003038 ! -property_value: IAO:0000589 "gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002530 ! gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000690 ! -property_value: IAO:0000589 "digit (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002544 ! digit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002447 ! -property_value: IAO:0000589 "anatomical cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002553 ! anatomical cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001049 ! -property_value: IAO:0000589 "medullary reticular formation (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002559 ! medullary reticular formation -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000867 ! -property_value: IAO:0000589 "ventral posterior nucleus of thalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002596 ! ventral posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002740 ! -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003127 ! -property_value: IAO:0000589 "fasciolar gyrus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002601 ! fasciolar gyrus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000844 ! -property_value: IAO:0000589 "tuber cinereum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002620 ! tuber cinereum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001056 ! -property_value: IAO:0000589 "cerebral crus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002631 ! cerebral crus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001029 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002633 ! motor nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002978 ! -property_value: IAO:0000589 "septal nuclear complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002663 ! septal nuclear complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001010 ! -property_value: IAO:0000589 "abducens nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002682 ! abducens nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002981 ! -property_value: IAO:0000589 "nucleus raphe obscurus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002684 ! nucleus raphe obscurus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003018 ! -property_value: IAO:0000589 "supraoptic crest (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002689 ! supraoptic crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000868 ! -property_value: IAO:0000589 "metathalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002704 ! metathalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000864 ! -property_value: IAO:0000589 "midline nuclear group (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002705 ! midline nuclear group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001075 ! -property_value: IAO:0000589 "trochlear nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002722 ! trochlear nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003081 ! -property_value: IAO:0000589 "cervical spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002726 ! cervical spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003117 ! -property_value: IAO:0000589 "entorhinal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002728 ! entorhinal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000871 ! -property_value: IAO:0000589 "intralaminar nuclear group (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002733 ! intralaminar nuclear group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000862 ! -property_value: IAO:0000589 "lateral nuclear group of thalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002736 ! lateral nuclear group of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000863 ! -property_value: IAO:0000589 "medial dorsal nucleus of thalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002739 ! medial dorsal nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000861 ! -property_value: IAO:0000589 "anterior nuclear group (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002788 ! anterior nuclear group -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003083 ! -property_value: IAO:0000589 "lumbar spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002792 ! lumbar spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001086 ! -property_value: IAO:0000589 "vestibular ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002824 ! vestibular ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002778 ! -property_value: IAO:0000589 "superior part of vestibular ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002825 ! superior part of vestibular ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002779 ! -property_value: IAO:0000589 "inferior part of vestibular ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002826 ! inferior part of vestibular ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001084 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002827 ! vestibulocochlear ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001036 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002870 ! dorsal motor nucleus of vagus nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001039 ! -property_value: IAO:0000589 "hypoglossal nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002871 ! hypoglossal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002923 ! -property_value: IAO:0000589 "central amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002883 ! central amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002925 ! -property_value: IAO:0000589 "intercalated amygdaloid nuclei (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002884 ! intercalated amygdaloid nuclei -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002926 ! -property_value: IAO:0000589 "lateral amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002886 ! lateral amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002921 ! -property_value: IAO:0000589 "basal amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002887 ! basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002922 ! -property_value: IAO:0000589 "medial part of basal amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002889 ! medial part of basal amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002919 ! -property_value: IAO:0000589 "anterior amygdaloid area (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002890 ! anterior amygdaloid area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002924 ! -property_value: IAO:0000589 "cortical amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002891 ! cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002927 ! -property_value: IAO:0000589 "medial amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002892 ! medial amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000193 ! -property_value: IAO:0000589 "olfactory cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002894 ! olfactory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003117 ! -property_value: IAO:0000589 "secondary olfactory cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002895 ! secondary olfactory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001028 ! -property_value: IAO:0000589 "trigeminal nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002925 ! trigeminal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002864 ! -property_value: IAO:0000589 "dentate gyrus polymorphic layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002928 ! dentate gyrus polymorphic layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000948 ! -property_value: IAO:0000589 "dentate gyrus pyramidal layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002929 ! dentate gyrus pyramidal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000867 ! -property_value: IAO:0000589 "ventral posteroinferior nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002939 ! ventral posteroinferior nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002894 ! -property_value: IAO:0000589 "ventral posterolateral nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002942 ! ventral posterolateral nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000993 ! -property_value: IAO:0000589 "granular layer of cerebellar cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002956 ! granular layer of cerebellar cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002757 ! -property_value: IAO:0000589 "periolivary nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002971 ! periolivary nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000996 ! -property_value: IAO:0000589 "molecular layer of cerebellar cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002974 ! molecular layer of cerebellar cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000997 ! -property_value: IAO:0000589 "Purkinje cell layer of cerebellar cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002979 ! Purkinje cell layer of cerebellar cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001065 ! -property_value: IAO:0000589 "substantia nigra pars lateralis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0002995 ! substantia nigra pars lateralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002965 ! -property_value: IAO:0000589 "flocculonodular lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003012 ! flocculonodular lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000904 ! -property_value: IAO:0000589 "cingulate cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003027 ! cingulate cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003082 ! -property_value: IAO:0000589 "thoracic spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003038 ! thoracic spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000209 ! -property_value: IAO:0000589 "central gray substance of midbrain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003040 ! central gray substance of midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002895 ! -property_value: IAO:0000589 "central gray substance of midbrain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003040 ! central gray substance of midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000819 ! -property_value: IAO:0000589 "ventricular zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003053 ! ventricular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001580 ! -property_value: IAO:0000589 "Meckel's cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000441 ! -property_value: IAO:0000589 "trachea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003126 ! trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000316 ! -property_value: IAO:0000589 "cranium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003128 ! cranium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001752 ! -property_value: IAO:0000589 "reproductive organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003133 ! reproductive organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000544 ! -property_value: IAO:0000589 "female reproductive organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003134 ! female reproductive organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000545 ! -property_value: IAO:0000589 "male reproductive organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003135 ! male reproductive organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002760 ! -property_value: IAO:0000589 "mammary gland alveolus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003214 ! mammary gland alveolus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002477 ! -property_value: IAO:0000589 "hard palate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003216 ! hard palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000860 ! -property_value: IAO:0000589 "neural lobe of neurohypophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003217 ! neural lobe of neurohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000304 ! -property_value: IAO:0000589 "phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003221 ! phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001204 ! -property_value: IAO:0000589 "epithelium of utricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003241 ! epithelium of utricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001202 ! -property_value: IAO:0000589 "epithelium of saccule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003242 ! epithelium of saccule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000792 ! -property_value: IAO:0000589 "epithelium of mammary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003244 ! epithelium of mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001909 ! -property_value: IAO:0000589 "tooth of upper jaw (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003267 ! tooth of upper jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001907 ! -property_value: IAO:0000589 "tooth of lower jaw (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003268 ! tooth of lower jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001908 ! -property_value: IAO:0000589 "skeleton of upper jaw (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001906 ! -property_value: IAO:0000589 "skeleton of lower jaw (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001617 ! -property_value: IAO:0000589 "mesentery of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003281 ! mesentery of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001569 ! -property_value: IAO:0000589 "mesentery of oesophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003283 ! mesentery of oesophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001058 ! -property_value: IAO:0000589 "meninx of midbrain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003288 ! meninx of midbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000979 ! -property_value: IAO:0000589 "meninx of telencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003289 ! meninx of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000826 ! -property_value: IAO:0000589 "meninx of diencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003290 ! meninx of diencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000987 ! -property_value: IAO:0000589 "meninx of hindbrain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003291 ! meninx of hindbrain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001130 ! -property_value: IAO:0000589 "meninx of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003292 ! meninx of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000144 ! -property_value: IAO:0000589 "gland of integumental system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003297 ! gland of integumental system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003231 ! -property_value: IAO:0000589 "odontogenic papilla of incisor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003317 ! odontogenic papilla of incisor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003200 ! -property_value: IAO:0000589 "submucosa of colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003331 ! submucosa of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003213 ! -property_value: IAO:0000589 "submucosa of duodenum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003332 ! submucosa of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003199 ! -property_value: IAO:0000589 "serosa of colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003335 ! serosa of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003212 ! -property_value: IAO:0000589 "serosa of duodenum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003336 ! serosa of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001161 ! -property_value: IAO:0000589 "ganglion of peripheral nervous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003338 ! ganglion of peripheral nervous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003218 ! -property_value: IAO:0000589 "mucosa of rectum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003346 ! mucosa of rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002725 ! -property_value: IAO:0000589 "pharyngeal epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003205 ! -property_value: IAO:0000589 "epithelium of midgut (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003352 ! epithelium of midgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003206 ! -property_value: IAO:0000589 "epithelium of hindgut (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003353 ! epithelium of hindgut -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003219 ! -property_value: IAO:0000589 "epithelium of rectum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003354 ! epithelium of rectum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003223 ! -property_value: IAO:0000589 "epithelium of incisor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003355 ! epithelium of incisor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001592 ! -property_value: IAO:0000589 "epithelium of tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003357 ! epithelium of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003132 ! -property_value: IAO:0000589 "epithelium of right lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003364 ! epithelium of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003131 ! -property_value: IAO:0000589 "epithelium of left lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003365 ! epithelium of left lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001328 ! -property_value: IAO:0000589 "epithelium of vomeronasal organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003367 ! epithelium of vomeronasal organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001268 ! -property_value: IAO:0000589 "smooth muscle of eye (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003386 ! smooth muscle of eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001863 ! -property_value: IAO:0000589 "smooth muscle of trachea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003387 ! smooth muscle of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003233 ! -property_value: IAO:0000589 "mesentery of urinary system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003393 ! mesentery of urinary system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000602 ! -property_value: IAO:0000589 "skin of forearm (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003403 ! skin of forearm -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003134 ! -property_value: IAO:0000589 "lobar bronchus of right lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003404 ! lobar bronchus of right lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003133 ! -property_value: IAO:0000589 "lobar bronchus of left lung (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003405 ! lobar bronchus of left lung -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001818 ! -property_value: IAO:0000589 "cartilage of respiratory system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003406 ! cartilage of respiratory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003138 ! -property_value: IAO:0000589 "cartilage of nasal septum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003407 ! cartilage of nasal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003202 ! -property_value: IAO:0000589 "gland of digestive tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003408 ! gland of digestive tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002882 ! -property_value: IAO:0000589 "renal lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003425 ! renal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000798 ! -property_value: IAO:0000589 "dermis adipose tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003426 ! dermis adipose tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000472 ! -property_value: IAO:0000589 "abdominal fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003427 ! abdominal fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002547 ! -property_value: IAO:0000589 "gonadal fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003428 ! gonadal fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000521 ! -property_value: IAO:0000589 "abdomen nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003429 ! abdomen nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000588 ! -property_value: IAO:0000589 "neck nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003430 ! neck nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000673 ! -property_value: IAO:0000589 "leg nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003431 ! leg nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000551 ! -property_value: IAO:0000589 "chest nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003432 ! chest nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000595 ! -property_value: IAO:0000589 "arm nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003433 ! arm nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000637 ! -property_value: IAO:0000589 "wrist nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003434 ! wrist nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000649 ! -property_value: IAO:0000589 "pedal digit nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003435 ! pedal digit nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000634 ! -property_value: IAO:0000589 "shoulder nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003436 ! shoulder nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001255 ! -property_value: IAO:0000589 "eyelid nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003437 ! eyelid nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001291 ! -property_value: IAO:0000589 "iris nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003438 ! iris nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000515 ! -property_value: IAO:0000589 "nerve of trunk region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003439 ! nerve of trunk region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000693 ! -property_value: IAO:0000589 "limb nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003440 ! limb nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000616 ! -property_value: IAO:0000589 "forelimb nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003441 ! forelimb nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000664 ! -property_value: IAO:0000589 "hindlimb nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003442 ! hindlimb nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000556 ! -property_value: IAO:0000589 "thoracic cavity nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003443 ! thoracic cavity nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000542 ! -property_value: IAO:0000589 "pelvis nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003444 ! pelvis nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000653 ! -property_value: IAO:0000589 "pes nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003445 ! pes nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000640 ! -property_value: IAO:0000589 "ankle nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003446 ! ankle nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000625 ! -property_value: IAO:0000589 "digit nerve of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003447 ! digit nerve of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000629 ! -property_value: IAO:0000589 "manus nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003448 ! manus nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000698 ! -property_value: IAO:0000589 "tail intervertebral disc (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003449 ! tail intervertebral disc -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001601 ! -property_value: IAO:0000589 "upper jaw incisor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003450 ! upper jaw incisor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001600 ! -property_value: IAO:0000589 "lower jaw incisor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003451 ! lower jaw incisor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002833 ! -property_value: IAO:0000589 "trabecula carnea cardiac muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003452 ! trabecula carnea cardiac muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001550 ! -property_value: IAO:0000589 "large intestine Peyer's patch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003453 ! large intestine Peyer's patch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001557 ! -property_value: IAO:0000589 "small intestine Peyer's patch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003454 ! small intestine Peyer's patch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002623 ! -property_value: IAO:0000589 "inner renal medulla loop of Henle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003455 ! inner renal medulla loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001824 ! -property_value: IAO:0000589 "respiratory system lymphatic vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003456 ! respiratory system lymphatic vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000576 ! -property_value: IAO:0000589 "head bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003457 ! head bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000584 ! -property_value: IAO:0000589 "neck bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003458 ! neck bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000547 ! -property_value: IAO:0000589 "chest bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003459 ! chest bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000592 ! -property_value: IAO:0000589 "arm bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003460 ! arm bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000631 ! -property_value: IAO:0000589 "shoulder bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003461 ! shoulder bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001482 ! -property_value: IAO:0000589 "facial bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003462 ! facial bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003159 ! -property_value: IAO:0000589 "facial bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003462 ! facial bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000512 ! -property_value: IAO:0000589 "trunk bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003463 ! trunk bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000598 ! -property_value: IAO:0000589 "forelimb zeugopod bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003466 ! forelimb zeugopod bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001378 ! -property_value: IAO:0000589 "sesamoid bone of gastrocnemius (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003467 ! sesamoid bone of gastrocnemius -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002074 ! -property_value: IAO:0000589 "ureteric segment of renal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003468 ! ureteric segment of renal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001804 ! -property_value: IAO:0000589 "respiratory system artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003469 ! respiratory system artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001917 ! -property_value: IAO:0000589 "artery of upper lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003470 ! artery of upper lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001916 ! -property_value: IAO:0000589 "artery of lower lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003471 ! artery of lower lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001933 ! -property_value: IAO:0000589 "cerebellar artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003472 ! cerebellar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001902 ! -property_value: IAO:0000589 "thoracic cavity artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003473 ! thoracic cavity artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002001 ! -property_value: IAO:0000589 "meningeal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003474 ! meningeal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002250 ! -property_value: IAO:0000589 "ureteric vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003475 ! ureteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001809 ! -property_value: IAO:0000589 "respiratory system venous blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003476 ! respiratory system venous blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001810 ! -property_value: IAO:0000589 "respiratory system venous blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003476 ! respiratory system venous blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002255 ! -property_value: IAO:0000589 "vein of upper lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003477 ! vein of upper lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002253 ! -property_value: IAO:0000589 "vein of lower lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003478 ! vein of lower lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001903 ! -property_value: IAO:0000589 "thoracic cavity vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003479 ! thoracic cavity vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002252 ! -property_value: IAO:0000589 "vein of clitoris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003480 ! vein of clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002233 ! -property_value: IAO:0000589 "tail vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003481 ! tail vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002254 ! -property_value: IAO:0000589 "vein of trabecular bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003482 ! vein of trabecular bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002673 ! -property_value: IAO:0000589 "thymus lymphoid tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003483 ! thymus lymphoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002452 ! -property_value: IAO:0000589 "eye sebaceous gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003484 ! eye sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001732 ! -property_value: IAO:0000589 "vagina sebaceous gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003485 ! vagina sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000149 ! -property_value: IAO:0000589 "skin sebaceous gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003487 ! skin sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000787 ! -property_value: IAO:0000589 "abdominal mammary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003488 ! abdominal mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001808 ! -property_value: IAO:0000589 "respiratory system capillary endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003489 ! respiratory system capillary endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001817 ! -property_value: IAO:0000589 "respiratory system reticular lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003490 ! respiratory system reticular lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001834 ! -property_value: IAO:0000589 "bronchus reticular lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003492 ! bronchus reticular lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001856 ! -property_value: IAO:0000589 "trachea reticular lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003493 ! trachea reticular lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001813 ! -property_value: IAO:0000589 "respiratory system venule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003494 ! respiratory system venule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001803 ! -property_value: IAO:0000589 "respiratory system arteriole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003495 ! respiratory system arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000575 ! -property_value: IAO:0000589 "head blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003496 ! head blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000518 ! -property_value: IAO:0000589 "abdomen blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003497 ! abdomen blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002483 ! -property_value: IAO:0000589 "heart blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003498 ! heart blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002769 ! -property_value: IAO:0000589 "brain blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003499 ! brain blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001241 ! -property_value: IAO:0000589 "corneal blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003500 ! corneal blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001317 ! -property_value: IAO:0000589 "retina blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003501 ! retina blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000583 ! -property_value: IAO:0000589 "neck blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003502 ! neck blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000669 ! -property_value: IAO:0000589 "leg blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003503 ! leg blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001799 ! -property_value: IAO:0000589 "respiratory system blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003504 ! respiratory system blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001852 ! -property_value: IAO:0000589 "trachea blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003505 ! trachea blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000549 ! -property_value: IAO:0000589 "chest blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003506 ! chest blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000591 ! -property_value: IAO:0000589 "arm blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003507 ! arm blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000645 ! -property_value: IAO:0000589 "pedal digit blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003508 ! pedal digit blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000061 ! -property_value: IAO:0000589 "arterial blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003509 ! arterial blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001250 ! -property_value: IAO:0000589 "eyelid blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003510 ! eyelid blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001290 ! -property_value: IAO:0000589 "iris blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003511 ! iris blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002457 ! -property_value: IAO:0000589 "lung blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003512 ! lung blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000511 ! -property_value: IAO:0000589 "trunk blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003513 ! trunk blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000687 ! -property_value: IAO:0000589 "limb blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003514 ! limb blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000611 ! -property_value: IAO:0000589 "forelimb blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003515 ! forelimb blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000659 ! -property_value: IAO:0000589 "hindlimb blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003516 ! hindlimb blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001682 ! -property_value: IAO:0000589 "kidney blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003517 ! kidney blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001844 ! -property_value: IAO:0000589 "main bronchus blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003518 ! main bronchus blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000554 ! -property_value: IAO:0000589 "thoracic cavity blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003519 ! thoracic cavity blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000531 ! -property_value: IAO:0000589 "pelvis blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003520 ! pelvis blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000642 ! -property_value: IAO:0000589 "pes blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003521 ! pes blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000621 ! -property_value: IAO:0000589 "manual digit blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003522 ! manual digit blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000618 ! -property_value: IAO:0000589 "manus blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003523 ! manus blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000695 ! -property_value: IAO:0000589 "tail blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003524 ! tail blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001807 ! -property_value: IAO:0000589 "respiratory system capillary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003526 ! respiratory system capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002586 ! -property_value: IAO:0000589 "kidney capillary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003527 ! kidney capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000810 ! -property_value: IAO:0000589 "brain gray matter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003528 ! brain gray matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001825 ! -property_value: IAO:0000589 "respiratory system lymphatic vessel endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003529 ! respiratory system lymphatic vessel endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000650 ! -property_value: IAO:0000589 "pedal digit skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003530 ! pedal digit skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000617 ! -property_value: IAO:0000589 "forelimb skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003531 ! forelimb skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000665 ! -property_value: IAO:0000589 "hindlimb skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003532 ! hindlimb skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000626 ! -property_value: IAO:0000589 "manual digit skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003533 ! manual digit skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000700 ! -property_value: IAO:0000589 "tail skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003534 ! tail skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001150 ! -property_value: IAO:0000589 "vagus X nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003535 ! vagus X nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001785 ! -property_value: IAO:0000589 "right lung alveolar duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003536 ! right lung alveolar duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001776 ! -property_value: IAO:0000589 "left lung alveolar duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003537 ! left lung alveolar duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001787 ! -property_value: IAO:0000589 "right lung bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003538 ! right lung bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001778 ! -property_value: IAO:0000589 "left lung bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003539 ! left lung bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001789 ! -property_value: IAO:0000589 "right lung terminal bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003540 ! right lung terminal bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001780 ! -property_value: IAO:0000589 "left lung terminal bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003541 ! left lung terminal bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001788 ! -property_value: IAO:0000589 "right lung respiratory bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003542 ! right lung respiratory bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001779 ! -property_value: IAO:0000589 "left lung respiratory bronchiole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003543 ! left lung respiratory bronchiole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000820 ! -property_value: IAO:0000589 "brain white matter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003544 ! brain white matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001668 ! -property_value: IAO:0000589 "distal convoluted tubule macula densa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003546 ! distal convoluted tubule macula densa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000813 ! -property_value: IAO:0000589 "brain meninx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003547 ! brain meninx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000883 ! -property_value: IAO:0000589 "forebrain meninges (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003548 ! forebrain meninges -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000816 ! -property_value: IAO:0000589 "brain pia mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003549 ! brain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000886 ! -property_value: IAO:0000589 "forebrain pia mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003550 ! forebrain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001061 ! -property_value: IAO:0000589 "midbrain pia mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003551 ! midbrain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000982 ! -property_value: IAO:0000589 "telencephalon pia mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003552 ! telencephalon pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000829 ! -property_value: IAO:0000589 "diencephalon pia mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003553 ! diencephalon pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000990 ! -property_value: IAO:0000589 "hindbrain pia mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003554 ! hindbrain pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001133 ! -property_value: IAO:0000589 "spinal cord pia mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003555 ! spinal cord pia mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000884 ! -property_value: IAO:0000589 "forebrain arachnoid mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003556 ! forebrain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001059 ! -property_value: IAO:0000589 "midbrain arachnoid mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003557 ! midbrain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000827 ! -property_value: IAO:0000589 "diencephalon arachnoid mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003558 ! diencephalon arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000988 ! -property_value: IAO:0000589 "hindbrain arachnoid mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003559 ! hindbrain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001131 ! -property_value: IAO:0000589 "spinal cord arachnoid mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003560 ! spinal cord arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000885 ! -property_value: IAO:0000589 "forebrain dura mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003561 ! forebrain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001060 ! -property_value: IAO:0000589 "midbrain dura mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003562 ! midbrain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000981 ! -property_value: IAO:0000589 "telencephalon dura mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003563 ! telencephalon dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000828 ! -property_value: IAO:0000589 "diencephalon dura mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003564 ! diencephalon dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000989 ! -property_value: IAO:0000589 "hindbrain dura mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003565 ! hindbrain dura mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000577 ! -property_value: IAO:0000589 "head connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003566 ! head connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000519 ! -property_value: IAO:0000589 "abdomen connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003567 ! abdomen connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000585 ! -property_value: IAO:0000589 "neck connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003568 ! neck connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000671 ! -property_value: IAO:0000589 "leg connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003569 ! leg connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001814 ! -property_value: IAO:0000589 "respiratory system connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003570 ! respiratory system connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001853 ! -property_value: IAO:0000589 "trachea connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003571 ! trachea connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000550 ! -property_value: IAO:0000589 "chest connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003572 ! chest connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000593 ! -property_value: IAO:0000589 "arm connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003573 ! arm connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000609 ! -property_value: IAO:0000589 "elbow connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003574 ! elbow connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000636 ! -property_value: IAO:0000589 "wrist connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003575 ! wrist connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000656 ! -property_value: IAO:0000589 "hip connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003576 ! hip connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000667 ! -property_value: IAO:0000589 "knee connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003577 ! knee connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000647 ! -property_value: IAO:0000589 "pedal digit connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003578 ! pedal digit connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000632 ! -property_value: IAO:0000589 "shoulder connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003579 ! shoulder connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002409 ! -property_value: IAO:0000589 "lower respiratory tract connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003580 ! lower respiratory tract connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001251 ! -property_value: IAO:0000589 "eyelid connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003581 ! eyelid connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001864 ! -property_value: IAO:0000589 "nasopharynx connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003582 ! nasopharynx connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001754 ! -property_value: IAO:0000589 "larynx connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003583 ! larynx connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002897 ! -property_value: IAO:0000589 "mammary gland connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003584 ! mammary gland connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000799 ! -property_value: IAO:0000589 "dermis connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003585 ! dermis connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000513 ! -property_value: IAO:0000589 "trunk connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003586 ! trunk connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000689 ! -property_value: IAO:0000589 "limb connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003587 ! limb connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000613 ! -property_value: IAO:0000589 "forelimb connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003588 ! forelimb connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000661 ! -property_value: IAO:0000589 "hindlimb connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003589 ! hindlimb connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001845 ! -property_value: IAO:0000589 "main bronchus connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003590 ! main bronchus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001841 ! -property_value: IAO:0000589 "lobar bronchus connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003591 ! lobar bronchus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001831 ! -property_value: IAO:0000589 "bronchus connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003592 ! bronchus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000555 ! -property_value: IAO:0000589 "thoracic cavity connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003593 ! thoracic cavity connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000533 ! -property_value: IAO:0000589 "pelvis connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003594 ! pelvis connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000644 ! -property_value: IAO:0000589 "pes connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003595 ! pes connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000639 ! -property_value: IAO:0000589 "ankle connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003596 ! ankle connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000623 ! -property_value: IAO:0000589 "manual digit connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003597 ! manual digit connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000620 ! -property_value: IAO:0000589 "manus connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003598 ! manus connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000697 ! -property_value: IAO:0000589 "tail connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003599 ! tail connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000586 ! -property_value: IAO:0000589 "neck cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003601 ! neck cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001819 ! -property_value: IAO:0000589 "lower respiratory tract cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003603 ! lower respiratory tract cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001857 ! -property_value: IAO:0000589 "trachea cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003604 ! trachea cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002451 ! -property_value: IAO:0000589 "eye skin gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003605 ! eye skin gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000298 ! -property_value: IAO:0000589 "limb long bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003606 ! limb long bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000299 ! -property_value: IAO:0000589 "forelimb long bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003607 ! forelimb long bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000300 ! -property_value: IAO:0000589 "hindlimb long bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003608 ! hindlimb long bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002859 ! -property_value: IAO:0000589 "aorta elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003609 ! aorta elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002858 ! -property_value: IAO:0000589 "heart elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003610 ! heart elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001820 ! -property_value: IAO:0000589 "respiratory system elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003611 ! respiratory system elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002857 ! -property_value: IAO:0000589 "cardiovascular system elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003613 ! cardiovascular system elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002856 ! -property_value: IAO:0000589 "blood vessel elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003614 ! blood vessel elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002860 ! -property_value: IAO:0000589 "lung elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003615 ! lung elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001838 ! -property_value: IAO:0000589 "bronchus elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003616 ! bronchus elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001861 ! -property_value: IAO:0000589 "trachea elastic tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003617 ! trachea elastic tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002903 ! -property_value: IAO:0000589 "aorta tunica media (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003618 ! aorta tunica media -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002904 ! -property_value: IAO:0000589 "aorta tunica intima (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003619 ! aorta tunica intima -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001389 ! -property_value: IAO:0000589 "manual digit 1 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003620 ! manual digit 1 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000455 ! -property_value: IAO:0000589 "manual digit 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003622 ! manual digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000456 ! -property_value: IAO:0000589 "manual digit 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003623 ! manual digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000457 ! -property_value: IAO:0000589 "manual digit 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003624 ! manual digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000458 ! -property_value: IAO:0000589 "manual digit 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003625 ! manual digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000465 ! -property_value: IAO:0000589 "pedal digit 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003631 ! pedal digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000466 ! -property_value: IAO:0000589 "pedal digit 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003632 ! pedal digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000467 ! -property_value: IAO:0000589 "pedal digit 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003633 ! pedal digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000468 ! -property_value: IAO:0000589 "pedal digit 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003634 ! pedal digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000469 ! -property_value: IAO:0000589 "pedal digit 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003635 ! pedal digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001390 ! -property_value: IAO:0000589 "manual digit 2 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003636 ! manual digit 2 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001391 ! -property_value: IAO:0000589 "manual digit 3 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003637 ! manual digit 3 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001392 ! -property_value: IAO:0000589 "manual digit 4 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003638 ! manual digit 4 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001393 ! -property_value: IAO:0000589 "manual digit 5 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003639 ! manual digit 5 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001381 ! -property_value: IAO:0000589 "pedal digit 1 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003640 ! pedal digit 1 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001382 ! -property_value: IAO:0000589 "pedal digit 2 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003641 ! pedal digit 2 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001383 ! -property_value: IAO:0000589 "pedal digit 3 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003642 ! pedal digit 3 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001800 ! -property_value: IAO:0000589 "respiratory system arterial blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003643 ! respiratory system arterial blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002578 ! -property_value: IAO:0000589 "kidney arterial blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003644 ! kidney arterial blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001364 ! -property_value: IAO:0000589 "metacarpal bone of digit 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003645 ! metacarpal bone of digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001365 ! -property_value: IAO:0000589 "metacarpal bone of digit 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003646 ! metacarpal bone of digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001366 ! -property_value: IAO:0000589 "metacarpal bone of digit 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003647 ! metacarpal bone of digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001367 ! -property_value: IAO:0000589 "metacarpal bone of digit 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003648 ! metacarpal bone of digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001368 ! -property_value: IAO:0000589 "metacarpal bone of digit 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003649 ! metacarpal bone of digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001369 ! -property_value: IAO:0000589 "metatarsal bone of digit 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003650 ! metatarsal bone of digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001370 ! -property_value: IAO:0000589 "metatarsal bone of digit 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003651 ! metatarsal bone of digit 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001371 ! -property_value: IAO:0000589 "metatarsal bone of digit 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003652 ! metatarsal bone of digit 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001372 ! -property_value: IAO:0000589 "metatarsal bone of digit 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003653 ! metatarsal bone of digit 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001373 ! -property_value: IAO:0000589 "metatarsal bone of digit 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003654 ! metatarsal bone of digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000350 ! -property_value: IAO:0000589 "molar tooth (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003655 ! molar tooth -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000295 ! -property_value: IAO:0000589 "mesopodium bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003656 ! mesopodium bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000691 ! -property_value: IAO:0000589 "limb joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003657 ! limb joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000657 ! -property_value: IAO:0000589 "hip muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003658 ! hip muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000648 ! -property_value: IAO:0000589 "pedal digit muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003659 ! pedal digit muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000269 ! -property_value: IAO:0000589 "eyelid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003660 ! eyelid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000692 ! -property_value: IAO:0000589 "limb muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003661 ! limb muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000624 ! -property_value: IAO:0000589 "manual digit muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003664 ! manual digit muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000699 ! -property_value: IAO:0000589 "post-anal tail muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003665 ! post-anal tail muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001603 ! -property_value: IAO:0000589 "upper jaw molar (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003666 ! upper jaw molar -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001602 ! -property_value: IAO:0000589 "lower jaw molar (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003667 ! lower jaw molar -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003115 ! -property_value: IAO:0000589 "masticatory muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003681 ! masticatory muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003057 ! -property_value: IAO:0000589 "abdominal cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003684 ! abdominal cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001475 ! -property_value: IAO:0000589 "cranial suture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003685 ! cranial suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000453 ! -property_value: IAO:0000589 "metacarpophalangeal joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003695 ! metacarpophalangeal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002899 ! -property_value: IAO:0000589 "temporomandibular joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003700 ! temporomandibular joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002993 ! -property_value: IAO:0000589 "calcaneal tendon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003701 ! calcaneal tendon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002659 ! -property_value: IAO:0000589 "extrahepatic bile duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003703 ! extrahepatic bile duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001630 ! -property_value: IAO:0000589 "intrahepatic bile duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003704 ! intrahepatic bile duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003051 ! -property_value: IAO:0000589 "sinus of Valsalva (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003707 ! sinus of Valsalva -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002164 ! -property_value: IAO:0000589 "splenic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003713 ! splenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001102 ! -property_value: IAO:0000589 "lingual nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003721 ! lingual nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001111 ! -property_value: IAO:0000589 "vestibular nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003723 ! vestibular nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003075 ! -property_value: IAO:0000589 "mediastinum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003728 ! mediastinum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002794 ! -property_value: IAO:0000589 "mouth mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003729 ! mouth mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000301 ! -property_value: IAO:0000589 "metapodium bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003821 ! metapodium bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000035 ! -property_value: IAO:0000589 "forelimb stylopod (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003822 ! forelimb stylopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000051 ! -property_value: IAO:0000589 "hindlimb zeugopod (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003823 ! hindlimb zeugopod -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000562 ! -property_value: IAO:0000589 "nerve of thoracic segment (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003824 ! nerve of thoracic segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000528 ! -property_value: IAO:0000589 "nerve of abdominal segment (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003825 ! nerve of abdominal segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000682 ! -property_value: IAO:0000589 "upper leg bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003826 ! upper leg bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000559 ! -property_value: IAO:0000589 "thoracic segment bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003827 ! thoracic segment bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000525 ! -property_value: IAO:0000589 "abdominal segment bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003828 ! abdominal segment bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002649 ! -property_value: IAO:0000589 "urethra muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003829 ! urethra muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000561 ! -property_value: IAO:0000589 "thoracic segment muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003830 ! thoracic segment muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001828 ! -property_value: IAO:0000589 "respiratory system muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003831 ! respiratory system muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002682 ! -property_value: IAO:0000589 "esophagus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003832 ! esophagus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000527 ! -property_value: IAO:0000589 "abdominal segment muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003833 ! abdominal segment muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000558 ! -property_value: IAO:0000589 "thoracic segment blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003834 ! thoracic segment blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000524 ! -property_value: IAO:0000589 "abdominal segment blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003835 ! abdominal segment blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000530 ! -property_value: IAO:0000589 "abdominal segment skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003836 ! abdominal segment skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000560 ! -property_value: IAO:0000589 "thoracic segment connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003837 ! thoracic segment connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000526 ! -property_value: IAO:0000589 "abdominal segment connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003838 ! abdominal segment connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000614 ! -property_value: IAO:0000589 "forelimb joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003839 ! forelimb joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000662 ! -property_value: IAO:0000589 "hindlimb joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003840 ! hindlimb joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002715 ! -property_value: IAO:0000589 "autopod joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003841 ! autopod joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003151 ! -property_value: IAO:0000589 "dental epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003843 ! dental epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000768 ! -property_value: IAO:0000589 "thymus epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003846 ! thymus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002066 ! -property_value: IAO:0000589 "thyroid artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003847 ! thyroid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003152 ! -property_value: IAO:0000589 "uncondensed odontogenic mesenchyme (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003856 ! uncondensed odontogenic mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001453 ! -property_value: IAO:0000589 "neural arch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003861 ! neural arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001384 ! -property_value: IAO:0000589 "pedal digit 4 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003862 ! pedal digit 4 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001385 ! -property_value: IAO:0000589 "pedal digit 5 phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003863 ! pedal digit 5 phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001394 ! -property_value: IAO:0000589 "middle phalanx of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003864 ! middle phalanx of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001388 ! -property_value: IAO:0000589 "distal phalanx of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003865 ! distal phalanx of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001386 ! -property_value: IAO:0000589 "middle phalanx of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003866 ! middle phalanx of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001380 ! -property_value: IAO:0000589 "distal phalanx of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003867 ! distal phalanx of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001387 ! -property_value: IAO:0000589 "proximal phalanx of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003868 ! proximal phalanx of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002428 ! -property_value: IAO:0000589 "hippocampal field (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003876 ! hippocampal field -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000950 ! -property_value: IAO:0000589 "CA1 field of hippocampus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003881 ! CA1 field of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000951 ! -property_value: IAO:0000589 "CA2 field of hippocampus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003882 ! CA2 field of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000952 ! -property_value: IAO:0000589 "CA3 field of hippocampus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003883 ! CA3 field of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000953 ! -property_value: IAO:0000589 "CA4 field of hippocampus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003884 ! CA4 field of hippocampus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002931 ! -property_value: IAO:0000589 "mesometrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003885 ! mesometrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000385 ! -property_value: IAO:0000589 "fallopian tube (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003889 ! fallopian tube -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003153 ! -property_value: IAO:0000589 "axial muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003897 ! axial muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000277 ! -property_value: IAO:0000589 "retinal neural layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000824 ! -property_value: IAO:0000589 "choroid plexus epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003911 ! choroid plexus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002481 ! -property_value: IAO:0000589 "fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003916 ! fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000066 ! -property_value: IAO:0000589 "venous blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003920 ! venous blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002471 ! -property_value: IAO:0000589 "photoreceptor inner segment layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003925 ! photoreceptor inner segment layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002472 ! -property_value: IAO:0000589 "photoreceptor outer segment layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003926 ! photoreceptor outer segment layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003201 ! -property_value: IAO:0000589 "digestive tract epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003929 ! digestive tract epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001751 ! -property_value: IAO:0000589 "reproductive gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003937 ! reproductive gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002969 ! -property_value: IAO:0000589 "cerebellum anterior vermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003941 ! cerebellum anterior vermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003013 ! -property_value: IAO:0000589 "rete testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003959 ! rete testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003101 ! -property_value: IAO:0000589 "prevertebral ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003964 ! prevertebral ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003242 ! -property_value: IAO:0000589 "upper part of vagina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003974 ! upper part of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001710 ! -property_value: IAO:0000589 "primordial ovarian follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003981 ! primordial ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001709 ! -property_value: IAO:0000589 "mature ovarian follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003982 ! mature ovarian follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000772 ! -property_value: IAO:0000589 "Hassall's corpuscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003987 ! Hassall's corpuscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002947 ! -property_value: IAO:0000589 "fourth ventricle median aperture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003991 ! fourth ventricle median aperture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002946 ! -property_value: IAO:0000589 "fourth ventricle lateral aperture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003992 ! fourth ventricle lateral aperture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002948 ! -property_value: IAO:0000589 "pelvic ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003994 ! pelvic ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002954 ! -property_value: IAO:0000589 "cervical vertebra 1 arcus anterior (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003996 ! cervical vertebra 1 arcus anterior -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002959 ! -property_value: IAO:0000589 "hyoid bone greater horn (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003997 ! hyoid bone greater horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002960 ! -property_value: IAO:0000589 "hyoid bone lesser horn (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003998 ! hyoid bone lesser horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002958 ! -property_value: IAO:0000589 "hyoid bone body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0003999 ! hyoid bone body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002964 ! -property_value: IAO:0000589 "posterior lobe of cerebellum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004002 ! posterior lobe of cerebellum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002967 ! -property_value: IAO:0000589 "cerebellum hemisphere lobule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004003 ! cerebellum hemisphere lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002966 ! -property_value: IAO:0000589 "cerebellum lobule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004004 ! cerebellum lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002970 ! -property_value: IAO:0000589 "cerebellum posterior vermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004009 ! cerebellum posterior vermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002845 ! -property_value: IAO:0000589 "labium minora (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004014 ! labium minora -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003009 ! -property_value: IAO:0000589 "baroreceptor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004019 ! baroreceptor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002770 ! -property_value: IAO:0000589 "semicircular canal ampulla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004043 ! semicircular canal ampulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003193 ! -property_value: IAO:0000589 "neural tube ventricular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004060 ! neural tube ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000966 ! -property_value: IAO:0000589 "accessory olfactory bulb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004069 ! accessory olfactory bulb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002968 ! -property_value: IAO:0000589 "cerebellum vermis lobule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004070 ! cerebellum vermis lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000998 ! -property_value: IAO:0000589 "cerebellum vermis lobule I (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004074 ! cerebellum vermis lobule I -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000999 ! -property_value: IAO:0000589 "cerebellum vermis lobule II (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004075 ! cerebellum vermis lobule II -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001000 ! -property_value: IAO:0000589 "cerebellum vermis lobule III (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004076 ! cerebellum vermis lobule III -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001001 ! -property_value: IAO:0000589 "cerebellum vermis lobule IV (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004077 ! cerebellum vermis lobule IV -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001006 ! -property_value: IAO:0000589 "cerebellum vermis lobule IX (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004078 ! cerebellum vermis lobule IX -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001002 ! -property_value: IAO:0000589 "cerebellum vermis lobule V (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004079 ! cerebellum vermis lobule V -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001003 ! -property_value: IAO:0000589 "cerebellum vermis lobule VI (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004080 ! cerebellum vermis lobule VI -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001004 ! -property_value: IAO:0000589 "cerebellum vermis lobule VII (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004081 ! cerebellum vermis lobule VII -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001005 ! -property_value: IAO:0000589 "cerebellum vermis lobule VIII (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004082 ! cerebellum vermis lobule VIII -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001007 ! -property_value: IAO:0000589 "cerebellum vermis lobule X (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004083 ! cerebellum vermis lobule X -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002464 ! -property_value: IAO:0000589 "genital labium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004084 ! genital labium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002844 ! -property_value: IAO:0000589 "labium majora (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004085 ! labium majora -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000818 ! -property_value: IAO:0000589 "brain ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004086 ! brain ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000068 ! -property_value: IAO:0000589 "vena cava (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004087 ! vena cava -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001910 ! -property_value: IAO:0000589 "midface (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004089 ! midface -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002875 ! -property_value: IAO:0000589 "periorbital region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004090 ! periorbital region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002872 ! -property_value: IAO:0000589 "odontoid process of cervical vertebra 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004096 ! odontoid process of cervical vertebra 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003119 ! -property_value: IAO:0000589 "alveolar ridge (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004103 ! alveolar ridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000256 ! -property_value: IAO:0000589 "muscle of auditory ossicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004113 ! muscle of auditory ossicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001219 ! -property_value: IAO:0000589 "blood vessel of tympanic cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004115 ! blood vessel of tympanic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001222 ! -property_value: IAO:0000589 "nerve of tympanic cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004116 ! nerve of tympanic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000080 ! -property_value: IAO:0000589 "myocardial layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004123 ! myocardial layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002866 ! -property_value: IAO:0000589 "myocardium trabecular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004124 ! myocardium trabecular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002865 ! -property_value: IAO:0000589 "myocardial compact layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004125 ! myocardial compact layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000201 ! -property_value: IAO:0000589 "cerebellar layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004130 ! cerebellar layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001030 ! -property_value: IAO:0000589 "trigeminal sensory nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004132 ! trigeminal sensory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002611 ! -property_value: IAO:0000589 "proximal tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004134 ! proximal tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002633 ! -property_value: IAO:0000589 "distal tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004135 ! distal tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000100 ! -property_value: IAO:0000589 "outflow tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000747 ! -property_value: IAO:0000589 "hemopoietic organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004177 ! hemopoietic organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000702 ! -property_value: IAO:0000589 "aorta smooth muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004178 ! aorta smooth muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002911 ! -property_value: IAO:0000589 "mammary gland fat (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004180 ! mammary gland fat -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002912 ! -property_value: IAO:0000589 "prostate gland stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004184 ! prostate gland stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000973 ! -property_value: IAO:0000589 "olfactory bulb mitral cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004186 ! olfactory bulb mitral cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001247 ! -property_value: IAO:0000589 "Harderian gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004187 ! Harderian gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002847 ! -property_value: IAO:0000589 "glomerular epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004188 ! glomerular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001678 ! -property_value: IAO:0000589 "loop of Henle ascending limb thin segment (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004193 ! loop of Henle ascending limb thin segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002612 ! -property_value: IAO:0000589 "proximal convoluted tubule segment 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004196 ! proximal convoluted tubule segment 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002613 ! -property_value: IAO:0000589 "proximal convoluted tubule segment 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004197 ! proximal convoluted tubule segment 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001654 ! -property_value: IAO:0000589 "kidney pyramid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004200 ! kidney pyramid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002626 ! -property_value: IAO:0000589 "kidney outer medulla inner stripe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004201 ! kidney outer medulla inner stripe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002629 ! -property_value: IAO:0000589 "kidney outer medulla outer stripe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004202 ! kidney outer medulla outer stripe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002600 ! -property_value: IAO:0000589 "cortical collecting duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004203 ! cortical collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002599 ! -property_value: IAO:0000589 "outer medullary collecting duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004204 ! outer medullary collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002598 ! -property_value: IAO:0000589 "inner medullary collecting duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004205 ! inner medullary collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002587 ! -property_value: IAO:0000589 "glomerular capillary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004212 ! glomerular capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000685 ! -property_value: IAO:0000589 "upper leg nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004214 ! upper leg nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000497 ! -property_value: IAO:0000589 "back nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004215 ! back nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000601 ! -property_value: IAO:0000589 "lower arm nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004216 ! lower arm nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000607 ! -property_value: IAO:0000589 "upper arm nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004217 ! upper arm nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000679 ! -property_value: IAO:0000589 "lower leg nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004218 ! lower leg nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001691 ! -property_value: IAO:0000589 "urethra smooth muscle layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004219 ! urethra smooth muscle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001547 ! -property_value: IAO:0000589 "large intestine smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004220 ! large intestine smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001539 ! -property_value: IAO:0000589 "intestine smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004221 ! intestine smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001627 ! -property_value: IAO:0000589 "stomach smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004222 ! stomach smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001733 ! -property_value: IAO:0000589 "vagina smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004223 ! vagina smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001750 ! -property_value: IAO:0000589 "muscular coat of vas deferens (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004224 ! muscular coat of vas deferens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001830 ! -property_value: IAO:0000589 "respiratory system smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004225 ! respiratory system smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001523 ! -property_value: IAO:0000589 "gastrointestinal system smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004226 ! gastrointestinal system smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002631 ! -property_value: IAO:0000589 "kidney pelvis smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004227 ! kidney pelvis smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001697 ! -property_value: IAO:0000589 "urinary bladder smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004228 ! urinary bladder smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001700 ! -property_value: IAO:0000589 "urinary bladder trigone smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004229 ! urinary bladder trigone smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001699 ! -property_value: IAO:0000589 "urinary bladder neck smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004230 ! urinary bladder neck smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001532 ! -property_value: IAO:0000589 "anal region smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004231 ! anal region smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000751 ! -property_value: IAO:0000589 "lymphatic vessel smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004232 ! lymphatic vessel smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002410 ! -property_value: IAO:0000589 "lower respiratory tract smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004233 ! lower respiratory tract smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001270 ! -property_value: IAO:0000589 "iris smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004234 ! iris smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000795 ! -property_value: IAO:0000589 "mammary gland smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004235 ! mammary gland smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000706 ! -property_value: IAO:0000589 "arteriole smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004236 ! arteriole smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000710 ! -property_value: IAO:0000589 "blood vessel smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004237 ! blood vessel smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000757 ! -property_value: IAO:0000589 "spleen smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004238 ! spleen smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001559 ! -property_value: IAO:0000589 "small intestine smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004239 ! small intestine smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001635 ! -property_value: IAO:0000589 "gallbladder smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004240 ! gallbladder smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001848 ! -property_value: IAO:0000589 "main bronchus smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004241 ! main bronchus smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001840 ! -property_value: IAO:0000589 "bronchus smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004242 ! bronchus smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001741 ! -property_value: IAO:0000589 "prostate gland smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004243 ! prostate gland smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001721 ! -property_value: IAO:0000589 "oviduct smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004245 ! oviduct smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000492 ! -property_value: IAO:0000589 "outflow tract smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004246 ! outflow tract smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000494 ! -property_value: IAO:0000589 "bone of dorsum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004247 ! bone of dorsum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000646 ! -property_value: IAO:0000589 "pedal digit bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004248 ! pedal digit bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000622 ! -property_value: IAO:0000589 "manual digit bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004249 ! manual digit bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000604 ! -property_value: IAO:0000589 "upper arm bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004250 ! upper arm bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000676 ! -property_value: IAO:0000589 "hindlimb zeugopod bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004251 ! hindlimb zeugopod bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000684 ! -property_value: IAO:0000589 "hindlimb stylopod muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004252 ! hindlimb stylopod muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002710 ! -property_value: IAO:0000589 "skin muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003139 ! -property_value: IAO:0000589 "skin muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004253 ! skin muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000600 ! -property_value: IAO:0000589 "forelimb zeugopod muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004254 ! forelimb zeugopod muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000606 ! -property_value: IAO:0000589 "forelimb stylopod muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004255 ! forelimb stylopod muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000678 ! -property_value: IAO:0000589 "hindlimb zeugopod muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004256 ! hindlimb zeugopod muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000681 ! -property_value: IAO:0000589 "upper leg blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004257 ! upper leg blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000493 ! -property_value: IAO:0000589 "back blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004258 ! back blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000597 ! -property_value: IAO:0000589 "lower arm blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004259 ! lower arm blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000603 ! -property_value: IAO:0000589 "upper arm blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004260 ! upper arm blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000675 ! -property_value: IAO:0000589 "lower leg blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004261 ! lower leg blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000686 ! -property_value: IAO:0000589 "upper leg skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004262 ! upper leg skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000608 ! -property_value: IAO:0000589 "upper arm skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004263 ! upper arm skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000680 ! -property_value: IAO:0000589 "lower leg skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004264 ! lower leg skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000489 ! -property_value: IAO:0000589 "outflow tract myocardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004265 ! outflow tract myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000683 ! -property_value: IAO:0000589 "upper leg connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004266 ! upper leg connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000495 ! -property_value: IAO:0000589 "back connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004267 ! back connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000599 ! -property_value: IAO:0000589 "lower arm connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004268 ! lower arm connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000605 ! -property_value: IAO:0000589 "upper arm connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004269 ! upper arm connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000677 ! -property_value: IAO:0000589 "lower leg connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004270 ! lower leg connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000491 ! -property_value: IAO:0000589 "outflow tract pericardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004271 ! outflow tract pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001498 ! -property_value: IAO:0000589 "cartilaginous joint suture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004273 ! cartilaginous joint suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000962 ! -property_value: IAO:0000589 "lateral ventricle choroid plexus epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004274 ! lateral ventricle choroid plexus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000880 ! -property_value: IAO:0000589 "third ventricle choroid plexus epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004275 ! third ventricle choroid plexus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000984 ! -property_value: IAO:0000589 "fourth ventricle choroid plexus epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004276 ! fourth ventricle choroid plexus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000271 ! -property_value: IAO:0000589 "eye muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004277 ! eye muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003006 ! -property_value: IAO:0000589 "skeleton (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004288 ! skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000224 ! -property_value: IAO:0000589 "parasympathetic nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004293 ! parasympathetic nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001658 ! -property_value: IAO:0000589 "glomerular capillary endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004294 ! glomerular capillary endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000227 ! -property_value: IAO:0000589 "sympathetic nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004295 ! sympathetic nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001826 ! -property_value: IAO:0000589 "respiratory system lymphatic vessel smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004296 ! respiratory system lymphatic vessel smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001806 ! -property_value: IAO:0000589 "respiratory system blood vessel smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004297 ! respiratory system blood vessel smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002914 ! -property_value: IAO:0000589 "distal phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004300 ! distal phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002915 ! -property_value: IAO:0000589 "middle phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004301 ! middle phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002916 ! -property_value: IAO:0000589 "proximal phalanx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004302 ! proximal phalanx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003249 ! -property_value: IAO:0000589 "female inguinal canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004353 ! female inguinal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003256 ! -property_value: IAO:0000589 "male inguinal canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004354 ! male inguinal canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002762 ! -property_value: IAO:0000589 "caput epididymis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004358 ! caput epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002764 ! -property_value: IAO:0000589 "corpus epididymis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004359 ! corpus epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002763 ! -property_value: IAO:0000589 "cauda epididymis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004360 ! cauda epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002957 ! -property_value: IAO:0000589 "stylohyoid ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004361 ! stylohyoid ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001246 ! -property_value: IAO:0000589 "Descemet's membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004367 ! Descemet's membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001240 ! -property_value: IAO:0000589 "anterior limiting lamina of cornea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004370 ! anterior limiting lamina of cornea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003113 ! -property_value: IAO:0000589 "epiphysis of tibia (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004383 ! epiphysis of tibia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003056 ! -property_value: IAO:0000589 "epiphysis of femur (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004384 ! epiphysis of femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002562 ! -property_value: IAO:0000589 "cerebral artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002128 ! -property_value: IAO:0000589 "gastric vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004450 ! gastric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002869 ! -property_value: IAO:0000589 "trunk or cervical vertebra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004451 ! trunk or cervical vertebra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000039 ! -property_value: IAO:0000589 "carpal region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004452 ! carpal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000042 ! -property_value: IAO:0000589 "metacarpus region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004453 ! metacarpus region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000043 ! -property_value: IAO:0000589 "tarsal region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004454 ! tarsal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002441 ! -property_value: IAO:0000589 "cardiac muscle tissue of myocardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004493 ! cardiac muscle tissue of myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001492 ! -property_value: IAO:0000589 "alveolar process of maxilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004527 ! alveolar process of maxilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001746 ! -property_value: IAO:0000589 "left testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004533 ! left testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001747 ! -property_value: IAO:0000589 "right testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004534 ! right testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000010 ! -property_value: IAO:0000589 "cardiovascular system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001655 ! -property_value: IAO:0000589 "left kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004538 ! left kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001683 ! -property_value: IAO:0000589 "right kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004539 ! right kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001968 ! -property_value: IAO:0000589 "proper plantar digital artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004540 ! proper plantar digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002825 ! -property_value: IAO:0000589 "epididymis epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004544 ! epididymis epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002896 ! -property_value: IAO:0000589 "external capsule of telencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004545 ! external capsule of telencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002898 ! -property_value: IAO:0000589 "cribriform plate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004546 ! cribriform plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002906 ! -property_value: IAO:0000589 "decidua capsularis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004547 ! decidua capsularis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002949 ! -property_value: IAO:0000589 "left eye (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004548 ! left eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002950 ! -property_value: IAO:0000589 "right eye (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004549 ! right eye -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002951 ! -property_value: IAO:0000589 "gastroesophageal sphincter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004550 ! gastroesophageal sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001941 ! -property_value: IAO:0000589 "digital artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004552 ! digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001953 ! -property_value: IAO:0000589 "forelimb digital artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004553 ! forelimb digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001964 ! -property_value: IAO:0000589 "hindlimb digital artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004554 ! hindlimb digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002126 ! -property_value: IAO:0000589 "proper palmar digital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004561 ! proper palmar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002101 ! -property_value: IAO:0000589 "digital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004562 ! digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002120 ! -property_value: IAO:0000589 "forelimb digital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004563 ! forelimb digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002133 ! -property_value: IAO:0000589 "hindlimb digital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004564 ! hindlimb digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002719 ! -property_value: IAO:0000589 "arterial system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004572 ! arterial system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002720 ! -property_value: IAO:0000589 "venous system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004582 ! venous system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001401 ! -property_value: IAO:0000589 "rib 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004601 ! rib 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001402 ! -property_value: IAO:0000589 "rib 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004602 ! rib 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001403 ! -property_value: IAO:0000589 "rib 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004603 ! rib 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001404 ! -property_value: IAO:0000589 "rib 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004604 ! rib 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001405 ! -property_value: IAO:0000589 "rib 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004605 ! rib 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001406 ! -property_value: IAO:0000589 "rib 6 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004606 ! rib 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001407 ! -property_value: IAO:0000589 "rib 7 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004607 ! rib 7 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001409 ! -property_value: IAO:0000589 "rib 9 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004608 ! rib 9 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001410 ! -property_value: IAO:0000589 "rib 10 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004609 ! rib 10 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001411 ! -property_value: IAO:0000589 "rib 11 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004610 ! rib 11 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001412 ! -property_value: IAO:0000589 "rib 12 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004611 ! rib 12 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001423 ! -property_value: IAO:0000589 "mammalian cervical vertebra 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004612 ! mammalian cervical vertebra 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001424 ! -property_value: IAO:0000589 "mammalian cervical vertebra 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004613 ! mammalian cervical vertebra 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001425 ! -property_value: IAO:0000589 "mammalian cervical vertebra 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004614 ! mammalian cervical vertebra 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001426 ! -property_value: IAO:0000589 "mammalian cervical vertebra 6 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004615 ! mammalian cervical vertebra 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001427 ! -property_value: IAO:0000589 "mammalian cervical vertebra 7 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004616 ! mammalian cervical vertebra 7 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001428 ! -property_value: IAO:0000589 "lumbar vertebra 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004617 ! lumbar vertebra 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001429 ! -property_value: IAO:0000589 "lumbar vertebra 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004618 ! lumbar vertebra 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001430 ! -property_value: IAO:0000589 "lumbar vertebra 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004619 ! lumbar vertebra 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001431 ! -property_value: IAO:0000589 "lumbar vertebra 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004620 ! lumbar vertebra 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001432 ! -property_value: IAO:0000589 "lumbar vertebra 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004621 ! lumbar vertebra 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001434 ! -property_value: IAO:0000589 "sacral vertebra 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004622 ! sacral vertebra 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001435 ! -property_value: IAO:0000589 "sacral vertebra 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004623 ! sacral vertebra 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001436 ! -property_value: IAO:0000589 "sacral vertebra 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004624 ! sacral vertebra 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001437 ! -property_value: IAO:0000589 "sacral vertebra 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004625 ! sacral vertebra 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001438 ! -property_value: IAO:0000589 "thoracic vertebra 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004626 ! thoracic vertebra 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001439 ! -property_value: IAO:0000589 "thoracic vertebra 2 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004627 ! thoracic vertebra 2 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001440 ! -property_value: IAO:0000589 "thoracic vertebra 3 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004628 ! thoracic vertebra 3 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001441 ! -property_value: IAO:0000589 "thoracic vertebra 4 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004629 ! thoracic vertebra 4 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001442 ! -property_value: IAO:0000589 "thoracic vertebra 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004630 ! thoracic vertebra 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001443 ! -property_value: IAO:0000589 "thoracic vertebra 6 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004631 ! thoracic vertebra 6 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001444 ! -property_value: IAO:0000589 "thoracic vertebra 7 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004632 ! thoracic vertebra 7 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001446 ! -property_value: IAO:0000589 "thoracic vertebra 9 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004633 ! thoracic vertebra 9 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001447 ! -property_value: IAO:0000589 "thoracic vertebra 10 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004634 ! thoracic vertebra 10 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001448 ! -property_value: IAO:0000589 "thoracic vertebra 11 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004635 ! thoracic vertebra 11 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001449 ! -property_value: IAO:0000589 "thoracic vertebra 12 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004636 ! thoracic vertebra 12 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000709 ! -property_value: IAO:0000589 "blood vessel endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004638 ! blood vessel endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002579 ! -property_value: IAO:0000589 "renal afferent arteriole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004639 ! renal afferent arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002585 ! -property_value: IAO:0000589 "renal efferent arteriole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004640 ! renal efferent arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000753 ! -property_value: IAO:0000589 "spleen capsule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004641 ! spleen capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000882 ! -property_value: IAO:0000589 "third ventricle ependyma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004642 ! third ventricle ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000964 ! -property_value: IAO:0000589 "lateral ventricle ependyma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004643 ! lateral ventricle ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000986 ! -property_value: IAO:0000589 "fourth ventricle ependyma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004644 ! fourth ventricle ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001693 ! -property_value: IAO:0000589 "urinary bladder urothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004645 ! urinary bladder urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001977 ! -property_value: IAO:0000589 "infraorbital artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004646 ! infraorbital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002494 ! -property_value: IAO:0000589 "liver lobule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004647 ! liver lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002681 ! -property_value: IAO:0000589 "esophagus muscularis mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004648 ! esophagus muscularis mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002774 ! -property_value: IAO:0000589 "sphenoid bone pterygoid process (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004649 ! sphenoid bone pterygoid process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002787 ! -property_value: IAO:0000589 "tongue keratinized epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004650 ! tongue keratinized epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002806 ! -property_value: IAO:0000589 "scapula spine (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004651 ! scapula spine -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002807 ! -property_value: IAO:0000589 "humerus diaphysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004652 ! humerus diaphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002812 ! -property_value: IAO:0000589 "temporal process of zygomatic bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004654 ! temporal process of zygomatic bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002811 ! -property_value: IAO:0000589 "zygomatic process of temporal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004655 ! zygomatic process of temporal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002816 ! -property_value: IAO:0000589 "mandible condylar process (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004657 ! mandible condylar process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002817 ! -property_value: IAO:0000589 "mandible head (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004658 ! mandible head -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002818 ! -property_value: IAO:0000589 "mandible neck (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004659 ! mandible neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002819 ! -property_value: IAO:0000589 "mandible coronoid process (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004660 ! mandible coronoid process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002820 ! -property_value: IAO:0000589 "mandible temporal crest (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004661 ! mandible temporal crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002876 ! -property_value: IAO:0000589 "vertebra lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004662 ! vertebra lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002901 ! -property_value: IAO:0000589 "aorta wall (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004663 ! aorta wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002902 ! -property_value: IAO:0000589 "aorta tunica adventitia (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004664 ! aorta tunica adventitia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002913 ! -property_value: IAO:0000589 "muscular coat of seminal vesicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004665 ! muscular coat of seminal vesicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002939 ! -property_value: IAO:0000589 "interventricular septum membranous part (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004666 ! interventricular septum membranous part -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002940 ! -property_value: IAO:0000589 "interventricular septum muscular part (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004667 ! interventricular septum muscular part -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002945 ! -property_value: IAO:0000589 "fourth ventricle aperture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004668 ! fourth ventricle aperture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001118 ! -property_value: IAO:0000589 "spinal cord lateral horn (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004676 ! spinal cord lateral horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003122 ! -property_value: IAO:0000589 "dentate gyrus molecular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004679 ! dentate gyrus molecular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003147 ! -property_value: IAO:0000589 "raphe nuclei (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004684 ! raphe nuclei -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001619 ! -property_value: IAO:0000589 "gastro-splenic ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004686 ! gastro-splenic ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001620 ! -property_value: IAO:0000589 "lieno-renal ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004687 ! lieno-renal ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001939 ! -property_value: IAO:0000589 "costo-cervical trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004688 ! costo-cervical trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002182 ! -property_value: IAO:0000589 "naso-frontal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004689 ! naso-frontal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002190 ! -property_value: IAO:0000589 "pancreaticoduodenal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004690 ! pancreaticoduodenal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002524 ! -property_value: IAO:0000589 "bulbourethral gland secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004691 ! bulbourethral gland secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001321 ! -property_value: IAO:0000589 "external naris epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004692 ! external naris epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000731 ! -property_value: IAO:0000589 "Peyer's patch epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004693 ! Peyer's patch epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001248 ! -property_value: IAO:0000589 "Harderian gland epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004694 ! Harderian gland epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000704 ! -property_value: IAO:0000589 "arterial system smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004695 ! arterial system smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000715 ! -property_value: IAO:0000589 "venous system smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004696 ! venous system smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000734 ! -property_value: IAO:0000589 "Peyer's patch germinal center (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004697 ! Peyer's patch germinal center -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000713 ! -property_value: IAO:0000589 "vena cava endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004698 ! vena cava endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000490 ! -property_value: IAO:0000589 "outflow tract endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004699 ! outflow tract endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000703 ! -property_value: IAO:0000589 "arterial system endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004700 ! arterial system endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000714 ! -property_value: IAO:0000589 "venous system endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004701 ! venous system endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001805 ! -property_value: IAO:0000589 "respiratory system blood vessel endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004702 ! respiratory system blood vessel endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000180 ! -property_value: IAO:0000589 "dorsal thalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002154 ! -property_value: IAO:0000589 "jugular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004711 ! jugular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001743 ! -property_value: IAO:0000589 "corpus cavernosum penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004713 ! corpus cavernosum penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002979 ! -property_value: IAO:0000589 "septum pellucidum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004714 ! septum pellucidum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000111 ! -property_value: IAO:0000589 "annulus fibrosus disci intervertebralis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004715 ! annulus fibrosus disci intervertebralis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002593 ! -property_value: IAO:0000589 "kidney arcuate vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004719 ! kidney arcuate vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000202 ! -property_value: IAO:0000589 "cerebellar vermis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004720 ! cerebellar vermis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002771 ! -property_value: IAO:0000589 "crista ampullaris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004721 ! crista ampullaris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002885 ! -property_value: IAO:0000589 "deep cervical lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004722 ! deep cervical lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002584 ! -property_value: IAO:0000589 "interlobular artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004723 ! interlobular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001258 ! -property_value: IAO:0000589 "medial palpebral ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004724 ! medial palpebral ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000978 ! -property_value: IAO:0000589 "piriform cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004725 ! piriform cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002595 ! -property_value: IAO:0000589 "vasa recta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004726 ! vasa recta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001110 ! -property_value: IAO:0000589 "cochlear nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004727 ! cochlear nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001474 ! -property_value: IAO:0000589 "supraoccipital bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004747 ! supraoccipital bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001873 ! -property_value: IAO:0000589 "foramen ovale of heart (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004754 ! foramen ovale of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003047 ! -property_value: IAO:0000589 "skeletal tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004755 ! skeletal tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002836 ! -property_value: IAO:0000589 "endochondral bone tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004763 ! endochondral bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002837 ! -property_value: IAO:0000589 "intramembranous bone tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004764 ! intramembranous bone tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003007 ! -property_value: IAO:0000589 "articular system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004770 ! articular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001323 ! -property_value: IAO:0000589 "posterior nasal aperture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004771 ! posterior nasal aperture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000270 ! -property_value: IAO:0000589 "eyelid tarsus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004772 ! eyelid tarsus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001260 ! -property_value: IAO:0000589 "superior eyelid tarsus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004773 ! superior eyelid tarsus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001257 ! -property_value: IAO:0000589 "inferior eyelid tarsus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004774 ! inferior eyelid tarsus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002597 ! -property_value: IAO:0000589 "outer renal medulla vasa recta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004775 ! outer renal medulla vasa recta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002596 ! -property_value: IAO:0000589 "inner renal medulla vasa recta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004776 ! inner renal medulla vasa recta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001822 ! -property_value: IAO:0000589 "respiratory system submucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004777 ! respiratory system submucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002728 ! -property_value: IAO:0000589 "larynx submucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004778 ! larynx submucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001821 ! -property_value: IAO:0000589 "respiratory system lamina propria (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004779 ! respiratory system lamina propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001899 ! -property_value: IAO:0000589 "gastrointestinal system lamina propria (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004780 ! gastrointestinal system lamina propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001633 ! -property_value: IAO:0000589 "gallbladder lamina propria (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004781 ! gallbladder lamina propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001522 ! -property_value: IAO:0000589 "gastrointestinal system serosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004782 ! gastrointestinal system serosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001634 ! -property_value: IAO:0000589 "gallbladder serosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004783 ! gallbladder serosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002791 ! -property_value: IAO:0000589 "heart ventricle wall (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004784 ! heart ventricle wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001827 ! -property_value: IAO:0000589 "respiratory system mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004785 ! respiratory system mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001521 ! -property_value: IAO:0000589 "gastrointestinal system mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004786 ! gastrointestinal system mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001687 ! -property_value: IAO:0000589 "urethra urothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004787 ! urethra urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002632 ! -property_value: IAO:0000589 "kidney pelvis urothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004788 ! kidney pelvis urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001767 ! -property_value: IAO:0000589 "larynx mucous gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004789 ! larynx mucous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000148 ! -property_value: IAO:0000589 "skin mucous gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004790 ! skin mucous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002674 ! -property_value: IAO:0000589 "thymus trabecula (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004791 ! thymus trabecula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002517 ! -property_value: IAO:0000589 "secretion of endocrine pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004792 ! secretion of endocrine pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002518 ! -property_value: IAO:0000589 "secretion of exocrine pancreas (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004793 ! secretion of exocrine pancreas -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002514 ! -property_value: IAO:0000589 "esophagus secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004794 ! esophagus secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002516 ! -property_value: IAO:0000589 "pancreas secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004795 ! pancreas secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002525 ! -property_value: IAO:0000589 "prostate gland secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004796 ! prostate gland secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002854 ! -property_value: IAO:0000589 "blood vessel layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004797 ! blood vessel layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001816 ! -property_value: IAO:0000589 "respiratory system basal lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004798 ! respiratory system basal lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001855 ! -property_value: IAO:0000589 "trachea basal lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004799 ! trachea basal lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001833 ! -property_value: IAO:0000589 "bronchus basal lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004800 ! bronchus basal lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001724 ! -property_value: IAO:0000589 "cervix epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004801 ! cervix epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001480 ! -property_value: IAO:0000589 "respiratory tract epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004802 ! respiratory tract epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001742 ! -property_value: IAO:0000589 "penis epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004803 ! penis epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001718 ! -property_value: IAO:0000589 "oviduct epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004804 ! oviduct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001745 ! -property_value: IAO:0000589 "seminal vesicle epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004805 ! seminal vesicle epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001749 ! -property_value: IAO:0000589 "vas deferens epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004806 ! vas deferens epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001823 ! -property_value: IAO:0000589 "respiratory system epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004807 ! respiratory system epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001520 ! -property_value: IAO:0000589 "gastrointestinal system epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004808 ! gastrointestinal system epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001587 ! -property_value: IAO:0000589 "salivary gland epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004809 ! salivary gland epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001681 ! -property_value: IAO:0000589 "nephron tubule epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004810 ! nephron tubule epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002731 ! -property_value: IAO:0000589 "endometrium epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004811 ! endometrium epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001753 ! -property_value: IAO:0000589 "male prepuce epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004812 ! male prepuce epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001748 ! -property_value: IAO:0000589 "seminiferous tubule epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004813 ! seminiferous tubule epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001912 ! -property_value: IAO:0000589 "upper respiratory tract epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004814 ! upper respiratory tract epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001481 ! -property_value: IAO:0000589 "lower respiratory tract epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004815 ! lower respiratory tract epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001765 ! -property_value: IAO:0000589 "larynx epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004816 ! larynx epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001297 ! -property_value: IAO:0000589 "lacrimal gland epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004817 ! lacrimal gland epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001851 ! -property_value: IAO:0000589 "terminal bronchus epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004818 ! terminal bronchus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002846 ! -property_value: IAO:0000589 "kidney epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004819 ! kidney epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001629 ! -property_value: IAO:0000589 "bile duct epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004820 ! bile duct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001771 ! -property_value: IAO:0000589 "pulmonary alveolus epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004821 ! pulmonary alveolus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002661 ! -property_value: IAO:0000589 "extrahepatic bile duct epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004822 ! extrahepatic bile duct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002662 ! -property_value: IAO:0000589 "intrahepatic bile duct epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004823 ! intrahepatic bile duct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001597 ! -property_value: IAO:0000589 "dental lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004825 ! dental lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000132 ! -property_value: IAO:0000589 "thyroid gland medulla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004827 ! thyroid gland medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001690 ! -property_value: IAO:0000589 "urethra skeletal muscle tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004829 ! urethra skeletal muscle tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001829 ! -property_value: IAO:0000589 "respiratory system skeletal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004830 ! respiratory system skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001572 ! -property_value: IAO:0000589 "esophagus skeletal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004831 ! esophagus skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001530 ! -property_value: IAO:0000589 "anal region skeletal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004832 ! anal region skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001578 ! -property_value: IAO:0000589 "lip skeletal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004833 ! lip skeletal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001640 ! -property_value: IAO:0000589 "hepatic duct smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004834 ! hepatic duct smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001736 ! -property_value: IAO:0000589 "epididymis smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004835 ! epididymis smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001801 ! -property_value: IAO:0000589 "respiratory system arterial endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004848 ! respiratory system arterial endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001811 ! -property_value: IAO:0000589 "respiratory system venous endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004849 ! respiratory system venous endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000741 ! -property_value: IAO:0000589 "lymph node endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004850 ! lymph node endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000701 ! -property_value: IAO:0000589 "aorta endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004851 ! aorta endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000717 ! -property_value: IAO:0000589 "cardiovascular system endothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004852 ! cardiovascular system endothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001900 ! -property_value: IAO:0000589 "gastrointestinal system mesentery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004854 ! gastrointestinal system mesentery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002868 ! -property_value: IAO:0000589 "skeletal muscle connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004857 ! skeletal muscle connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000105 ! -property_value: IAO:0000589 "cellular cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004858 ! cellular cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000267 ! -property_value: IAO:0000589 "eye gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004859 ! eye gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001786 ! -property_value: IAO:0000589 "right lung alveolus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004861 ! right lung alveolus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001777 ! -property_value: IAO:0000589 "left lung alveolus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004862 ! left lung alveolus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001165 ! -property_value: IAO:0000589 "thoracic sympathetic nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004863 ! thoracic sympathetic nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002886 ! -property_value: IAO:0000589 "superficial cervical lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004870 ! superficial cervical lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002704 ! -property_value: IAO:0000589 "eponychium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004882 ! eponychium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003099 ! -property_value: IAO:0000589 "lung hilus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004886 ! lung hilus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001781 ! -property_value: IAO:0000589 "left lung hilus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004887 ! left lung hilus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001790 ! -property_value: IAO:0000589 "right lung hilus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004888 ! right lung hilus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000427 ! -property_value: IAO:0000589 "right lung accessory lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004890 ! right lung accessory lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000421 ! -property_value: IAO:0000589 "interalveolar septum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004893 ! interalveolar septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002568 ! -property_value: IAO:0000589 "alveolar wall (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004894 ! alveolar wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002759 ! -property_value: IAO:0000589 "alveolar smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004895 ! alveolar smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003107 ! -property_value: IAO:0000589 "duodenal papilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004914 ! duodenal papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002650 ! -property_value: IAO:0000589 "urethral sphincter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004917 ! urethral sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002401 ! -property_value: IAO:0000589 "external urethral sphincter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004919 ! external urethral sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000817 ! -property_value: IAO:0000589 "postnatal subventricular zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0004922 ! postnatal subventricular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001643 ! -property_value: IAO:0000589 "liver papillary process (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005050 ! liver papillary process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003240 ! -property_value: IAO:0000589 "mediastinum testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005051 ! mediastinum testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002962 ! -property_value: IAO:0000589 "hemolymphoid system gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005058 ! hemolymphoid system gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002625 ! -property_value: IAO:0000589 "descending thin limb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005096 ! descending thin limb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002610 ! -property_value: IAO:0000589 "renal connecting tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005097 ! renal connecting tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002997 ! -property_value: IAO:0000589 "metanephric cap (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005107 ! metanephric cap -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001676 ! -property_value: IAO:0000589 "ascending limb of loop of Henle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005164 ! ascending limb of loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001646 ! -property_value: IAO:0000589 "papillary duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005167 ! papillary duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002594 ! -property_value: IAO:0000589 "renal interlobular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005168 ! renal interlobular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001460 ! -property_value: IAO:0000589 "granulosa cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005170 ! granulosa cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000357 ! -property_value: IAO:0000589 "hepatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005171 ! hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000522 ! -property_value: IAO:0000589 "abdomen element (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005172 ! abdomen element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000529 ! -property_value: IAO:0000589 "abdominal segment element (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005173 ! abdominal segment element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001901 ! -property_value: IAO:0000589 "dorsal region element (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005174 ! dorsal region element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000552 ! -property_value: IAO:0000589 "chest organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005175 ! chest organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001604 ! -property_value: IAO:0000589 "tooth enamel organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005176 ! tooth enamel organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000516 ! -property_value: IAO:0000589 "trunk region element (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005177 ! trunk region element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000557 ! -property_value: IAO:0000589 "thoracic cavity element (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005178 ! thoracic cavity element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000543 ! -property_value: IAO:0000589 "pelvic region element (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005179 ! pelvic region element -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000563 ! -property_value: IAO:0000589 "thoracic segment organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005181 ! thoracic segment organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000158 ! -property_value: IAO:0000589 "hair medulla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005184 ! hair medulla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002935 ! -property_value: IAO:0000589 "renal medulla collecting duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005185 ! renal medulla collecting duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001940 ! -property_value: IAO:0000589 "deferent duct artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005192 ! deferent duct artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001949 ! -property_value: IAO:0000589 "ethmoidal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005193 ! ethmoidal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002235 ! -property_value: IAO:0000589 "thoracic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005194 ! thoracic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002100 ! -property_value: IAO:0000589 "deferent duct vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005195 ! deferent duct vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000764 ! -property_value: IAO:0000589 "spleen germinal center (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005196 ! spleen germinal center -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000234 ! -property_value: IAO:0000589 "segmental spinal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005197 ! segmental spinal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000789 ! -property_value: IAO:0000589 "cervical mammary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005199 ! cervical mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000797 ! -property_value: IAO:0000589 "thoracic mammary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005200 ! thoracic mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002604 ! -property_value: IAO:0000589 "distal straight tubule macula densa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005202 ! distal straight tubule macula densa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002937 ! -property_value: IAO:0000589 "trachea gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005203 ! trachea gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002729 ! -property_value: IAO:0000589 "larynx submucosa gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005204 ! larynx submucosa gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002737 ! -property_value: IAO:0000589 "lamina propria of vagina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005205 ! lamina propria of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000825 ! -property_value: IAO:0000589 "choroid plexus stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005206 ! choroid plexus stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000776 ! -property_value: IAO:0000589 "tonsil capsule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005207 ! tonsil capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001871 ! -property_value: IAO:0000589 "right atrium valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005208 ! right atrium valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002619 ! -property_value: IAO:0000589 "renal medulla interstitium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005211 ! renal medulla interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002713 ! -property_value: IAO:0000589 "Leydig cell region of testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005212 ! Leydig cell region of testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002621 ! -property_value: IAO:0000589 "outer renal medulla interstitium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005213 ! outer renal medulla interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002620 ! -property_value: IAO:0000589 "inner renal medulla interstitium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005214 ! inner renal medulla interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002616 ! -property_value: IAO:0000589 "kidney interstitium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005215 ! kidney interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001185 ! -property_value: IAO:0000589 "osseus labyrinth vestibule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005236 ! osseus labyrinth vestibule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002582 ! -property_value: IAO:0000589 "renal cortex artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005268 ! renal cortex artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002592 ! -property_value: IAO:0000589 "renal cortex vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005269 ! renal cortex vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002608 ! -property_value: IAO:0000589 "renal cortex interstitium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005270 ! renal cortex interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001648 ! -property_value: IAO:0000589 "juxtamedullary cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005271 ! juxtamedullary cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002588 ! -property_value: IAO:0000589 "peritubular capillary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005272 ! peritubular capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002706 ! -property_value: IAO:0000589 "nail bed (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005273 ! nail bed -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002709 ! -property_value: IAO:0000589 "proximal nail bed (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005274 ! proximal nail bed -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000205 ! -property_value: IAO:0000589 "myelencephalon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005290 ! myelencephalon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002963 ! -property_value: IAO:0000589 "cerebellum lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005293 ! cerebellum lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000403 ! -property_value: IAO:0000589 "male preputial gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005301 ! male preputial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001702 ! -property_value: IAO:0000589 "female preputial gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005302 ! female preputial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001140 ! -property_value: IAO:0000589 "hypogastric nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005303 ! hypogastric nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001149 ! -property_value: IAO:0000589 "submucous nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005304 ! submucous nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000726 ! -property_value: IAO:0000589 "thyroid follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005305 ! thyroid follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000101 ! -property_value: IAO:0000589 "outflow tract aortic component (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005338 ! outflow tract aortic component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000102 ! -property_value: IAO:0000589 "outflow tract pulmonary component (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005339 ! outflow tract pulmonary component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002987 ! -property_value: IAO:0000589 "malleus head (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005342 ! malleus head -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002988 ! -property_value: IAO:0000589 "malleus neck (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005355 ! malleus neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000809 ! -property_value: IAO:0000589 "brain ependyma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005357 ! brain ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001125 ! -property_value: IAO:0000589 "spinal cord ependyma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005359 ! spinal cord ependyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001078 ! -property_value: IAO:0000589 "inferior glossopharyngeal IX ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005360 ! inferior glossopharyngeal IX ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001079 ! -property_value: IAO:0000589 "superior glossopharyngeal IX ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005361 ! superior glossopharyngeal IX ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001081 ! -property_value: IAO:0000589 "vagus X ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001082 ! -property_value: IAO:0000589 "inferior vagus X ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005363 ! inferior vagus X ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001083 ! -property_value: IAO:0000589 "superior vagus X ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005364 ! superior vagus X ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002413 ! -property_value: IAO:0000589 "olfactory lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005366 ! olfactory lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000954 ! -property_value: IAO:0000589 "hippocampus granule cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005367 ! hippocampus granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000955 ! -property_value: IAO:0000589 "hippocampus molecular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005368 ! hippocampus molecular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000957 ! -property_value: IAO:0000589 "hippocampus stratum lacunosum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005370 ! hippocampus stratum lacunosum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000958 ! -property_value: IAO:0000589 "hippocampus stratum oriens (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005371 ! hippocampus stratum oriens -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000959 ! -property_value: IAO:0000589 "hippocampus stratum radiatum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005372 ! hippocampus stratum radiatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002749 ! -property_value: IAO:0000589 "spinal cord dorsal column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005373 ! spinal cord dorsal column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002750 ! -property_value: IAO:0000589 "spinal cord lateral column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005374 ! spinal cord lateral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002751 ! -property_value: IAO:0000589 "spinal cord ventral column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005375 ! spinal cord ventral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000969 ! -property_value: IAO:0000589 "olfactory bulb external plexiform layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005376 ! olfactory bulb external plexiform layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000970 ! -property_value: IAO:0000589 "olfactory bulb glomerular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005377 ! olfactory bulb glomerular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000971 ! -property_value: IAO:0000589 "olfactory bulb granule cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005378 ! olfactory bulb granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000972 ! -property_value: IAO:0000589 "olfactory bulb internal plexiform layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005379 ! olfactory bulb internal plexiform layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000974 ! -property_value: IAO:0000589 "olfactory bulb subependymal zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005380 ! olfactory bulb subependymal zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000946 ! -property_value: IAO:0000589 "dentate gyrus granule cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005381 ! dentate gyrus granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002971 ! -property_value: IAO:0000589 "dorsal striatum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005382 ! dorsal striatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000893 ! -property_value: IAO:0000589 "caudate-putamen (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005383 ! caudate-putamen -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001324 ! -property_value: IAO:0000589 "nasal cavity epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005384 ! nasal cavity epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001326 ! -property_value: IAO:0000589 "nasal cavity respiratory epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005385 ! nasal cavity respiratory epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000897 ! -property_value: IAO:0000589 "cortical layer I (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005390 ! cortical layer I -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000898 ! -property_value: IAO:0000589 "cortical layer II (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005391 ! cortical layer II -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000899 ! -property_value: IAO:0000589 "cortical layer III (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005392 ! cortical layer III -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000900 ! -property_value: IAO:0000589 "cortical layer IV (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005393 ! cortical layer IV -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000901 ! -property_value: IAO:0000589 "cortical layer V (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005394 ! cortical layer V -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000902 ! -property_value: IAO:0000589 "cortical layer VI (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005395 ! cortical layer VI -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001925 ! -property_value: IAO:0000589 "carotid artery segment (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000814 ! -property_value: IAO:0000589 "brain arachnoid mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005397 ! brain arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000383 ! -property_value: IAO:0000589 "female reproductive gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005398 ! female reproductive gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000399 ! -property_value: IAO:0000589 "male reproductive gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005399 ! male reproductive gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000980 ! -property_value: IAO:0000589 "telencephalon arachnoid mater (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005400 ! telencephalon arachnoid mater -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000944 ! -property_value: IAO:0000589 "cerebral hemisphere gray matter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005401 ! cerebral hemisphere gray matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001577 ! -property_value: IAO:0000589 "philtrum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005402 ! philtrum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002972 ! -property_value: IAO:0000589 "ventral striatum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005403 ! ventral striatum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002973 ! -property_value: IAO:0000589 "frontonasal suture (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005404 ! frontonasal suture -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002974 ! -property_value: IAO:0000589 "pararenal fat (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005405 ! pararenal fat -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002975 ! -property_value: IAO:0000589 "perirenal fat (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005406 ! perirenal fat -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002982 ! -property_value: IAO:0000589 "sublingual ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005407 ! sublingual ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002942 ! -property_value: IAO:0000589 "circumventricular organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005408 ! circumventricular organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000323 ! -property_value: IAO:0000589 "alimentary part of gastrointestinal system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005409 ! alimentary part of gastrointestinal system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000252 ! -property_value: IAO:0000589 "bony otic capsule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005411 ! bony otic capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001305 ! -property_value: IAO:0000589 "optic fissure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000125 ! -property_value: IAO:0000589 "dorsal pancreatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005429 ! dorsal pancreatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003094 ! -property_value: IAO:0000589 "common hepatic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005436 ! common hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001947 ! -property_value: IAO:0000589 "ductus arteriosus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005440 ! ductus arteriosus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002325 ! -property_value: IAO:0000589 "external intercostal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005441 ! external intercostal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002345 ! -property_value: IAO:0000589 "abdominal external oblique muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005442 ! abdominal external oblique muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003128 ! -property_value: IAO:0000589 "greater omentum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005448 ! greater omentum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000448 ! -property_value: IAO:0000589 "greater sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005449 ! greater sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003103 ! -property_value: IAO:0000589 "inferior mesenteric ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005453 ! inferior mesenteric ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002346 ! -property_value: IAO:0000589 "abdominal internal oblique muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005454 ! abdominal internal oblique muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000027 ! -property_value: IAO:0000589 "lower back (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005462 ! lower back -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003027 ! -property_value: IAO:0000589 "subcapsular sinus of lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005463 ! subcapsular sinus of lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003026 ! -property_value: IAO:0000589 "platysma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005467 ! platysma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003102 ! -property_value: IAO:0000589 "superior mesenteric ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005479 ! superior mesenteric ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003180 ! -property_value: IAO:0000589 "tricuspid valve leaflet (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005484 ! tricuspid valve leaflet -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002113 ! -property_value: IAO:0000589 "venous dural sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005486 ! venous dural sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000477 ! -property_value: IAO:0000589 "common dorsal aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005599 ! common dorsal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001210 ! -property_value: IAO:0000589 "crus commune (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005600 ! crus commune -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000482 ! -property_value: IAO:0000589 "dorsal mesocardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005601 ! dorsal mesocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001618 ! -property_value: IAO:0000589 "dorsal mesogastrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005602 ! dorsal mesogastrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001636 ! -property_value: IAO:0000589 "extrahepatic part of hepatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005604 ! extrahepatic part of hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001637 ! -property_value: IAO:0000589 "intrahepatic part of hepatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005605 ! intrahepatic part of hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000272 ! -property_value: IAO:0000589 "hyaloid cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005606 ! hyaloid cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001283 ! -property_value: IAO:0000589 "hyaloid vascular plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001969 ! -property_value: IAO:0000589 "hyoid artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005608 ! hyoid artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001971 ! -property_value: IAO:0000589 "iliac artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002142 ! -property_value: IAO:0000589 "iliac vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005610 ! iliac vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001262 ! -property_value: IAO:0000589 "inner canthus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005611 ! inner canthus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001981 ! -property_value: IAO:0000589 "intercostal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005612 ! intercostal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000478 ! -property_value: IAO:0000589 "left dorsal aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005613 ! left dorsal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001302 ! -property_value: IAO:0000589 "lens anterior epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005614 ! lens anterior epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001303 ! -property_value: IAO:0000589 "lens equatorial epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005615 ! lens equatorial epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002003 ! -property_value: IAO:0000589 "mesenteric artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002177 ! -property_value: IAO:0000589 "mesenteric vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005617 ! mesenteric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001581 ! -property_value: IAO:0000589 "secondary palatal shelf (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005619 ! secondary palatal shelf -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001583 ! -property_value: IAO:0000589 "primary palate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005620 ! primary palate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002367 ! -property_value: IAO:0000589 "rhomboid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005621 ! rhomboid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000479 ! -property_value: IAO:0000589 "right dorsal aorta (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005622 ! right dorsal aorta -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002790 ! -property_value: IAO:0000589 "semi-lunar valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005623 ! semi-lunar valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001914 ! -property_value: IAO:0000589 "suprarenal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005624 ! suprarenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001621 ! -property_value: IAO:0000589 "ventral mesogastrium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002445 ! -property_value: IAO:0000589 "olfactory system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005725 ! olfactory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002605 ! -property_value: IAO:0000589 "glomerular parietal epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005750 ! glomerular parietal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002607 ! -property_value: IAO:0000589 "glomerular visceral epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005751 ! glomerular visceral epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003235 ! -property_value: IAO:0000589 "urorectal septum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005760 ! urorectal septum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001659 ! -property_value: IAO:0000589 "glomerular basement membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005777 ! glomerular basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002871 ! -property_value: IAO:0000589 "cervical vertebra 1 anterior tubercle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005810 ! cervical vertebra 1 anterior tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003085 ! -property_value: IAO:0000589 "sacral spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005843 ! sacral spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003080 ! -property_value: IAO:0000589 "spinal cord segment (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005844 ! spinal cord segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003084 ! -property_value: IAO:0000589 "caudal segment of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005845 ! caudal segment of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000670 ! -property_value: IAO:0000589 "leg bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005893 ! leg bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000619 ! -property_value: IAO:0000589 "manus bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005897 ! manus bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000643 ! -property_value: IAO:0000589 "pes bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005899 ! pes bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000005 ! -property_value: IAO:0000589 "serous sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005906 ! serous sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001320 ! -property_value: IAO:0000589 "external naris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001322 ! -property_value: IAO:0000589 "primary choana (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005931 ! primary choana -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000161 ! -property_value: IAO:0000589 "bulb of hair follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005932 ! bulb of hair follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000162 ! -property_value: IAO:0000589 "hair root sheath (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005933 ! hair root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000779 ! -property_value: IAO:0000589 "hair inner root sheath (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005941 ! hair inner root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000780 ! -property_value: IAO:0000589 "hair outer root sheath (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005942 ! hair outer root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000781 ! -property_value: IAO:0000589 "hair root sheath matrix (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005943 ! hair root sheath matrix -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000308 ! -property_value: IAO:0000589 "axial skeleton plus cranial skeleton (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005944 ! axial skeleton plus cranial skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003016 ! -property_value: IAO:0000589 "infundibulum of hair follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005968 ! infundibulum of hair follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003086 ! -property_value: IAO:0000589 "eye trabecular meshwork (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005969 ! eye trabecular meshwork -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003191 ! -property_value: IAO:0000589 "olfactory bulb outer nerve layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0005978 ! olfactory bulb outer nerve layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002577 ! -property_value: IAO:0000589 "pre-Botzinger complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006007 ! pre-Botzinger complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003012 ! -property_value: IAO:0000589 "interdigital region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006012 ! interdigital region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000627 ! -property_value: IAO:0000589 "interdigital region between manual digits (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006013 ! interdigital region between manual digits -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000651 ! -property_value: IAO:0000589 "interdigital region between pedal digits (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006014 ! interdigital region between pedal digits -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003023 ! -property_value: IAO:0000589 "digit 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006048 ! digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000696 ! -property_value: IAO:0000589 "bone of tail (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006068 ! bone of tail -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003154 ! -property_value: IAO:0000589 "cervical region of vertebral column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006072 ! cervical region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003155 ! -property_value: IAO:0000589 "thoracic region of vertebral column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006073 ! thoracic region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003156 ! -property_value: IAO:0000589 "lumbar region of vertebral column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006074 ! lumbar region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003157 ! -property_value: IAO:0000589 "sacral region of vertebral column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006075 ! sacral region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003158 ! -property_value: IAO:0000589 "caudal region of vertebral column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006076 ! caudal region of vertebral column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001694 ! -property_value: IAO:0000589 "fundus of urinary bladder (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006082 ! fundus of urinary bladder -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000912 ! -property_value: IAO:0000589 "perirhinal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006083 ! perirhinal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003176 ! -property_value: IAO:0000589 "cochlear canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006106 ! cochlear canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001959 ! -property_value: IAO:0000589 "proper palmar digital artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006137 ! proper palmar digital artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002134 ! -property_value: IAO:0000589 "common plantar digital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006142 ! common plantar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002138 ! -property_value: IAO:0000589 "proper plantar digital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006143 ! proper plantar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002172 ! -property_value: IAO:0000589 "medial plantar digital vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006144 ! medial plantar digital vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001954 ! -property_value: IAO:0000589 "forelimb common dorsal digital arteries (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006164 ! forelimb common dorsal digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001955 ! -property_value: IAO:0000589 "median dorsal digital artery for digit 1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006165 ! median dorsal digital artery for digit 1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001956 ! -property_value: IAO:0000589 "lateral dorsal digital artery for digit 5 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006166 ! lateral dorsal digital artery for digit 5 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001958 ! -property_value: IAO:0000589 "forelimb proper dorsal digital arteries (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006167 ! forelimb proper dorsal digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001965 ! -property_value: IAO:0000589 "hindlimb common dorsal digital arteries (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006168 ! hindlimb common dorsal digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001967 ! -property_value: IAO:0000589 "hindlimb proper dorsal digital arteries (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006169 ! hindlimb proper dorsal digital arteries -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003054 ! -property_value: IAO:0000589 "auricular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006197 ! auricular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001943 ! -property_value: IAO:0000589 "dorsal intercostal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006198 ! dorsal intercostal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002090 ! -property_value: IAO:0000589 "posterior auricular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006199 ! posterior auricular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002091 ! -property_value: IAO:0000589 "caudal humeral circumflex vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006200 ! caudal humeral circumflex vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001570 ! -property_value: IAO:0000589 "dorsal meso-oesophagus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006223 ! dorsal meso-oesophagus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000241 ! -property_value: IAO:0000589 "endolymphatic appendage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006226 ! endolymphatic appendage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002459 ! -property_value: IAO:0000589 "chamber of eyeball (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006311 ! chamber of eyeball -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001911 ! -property_value: IAO:0000589 "ocular refractive media (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006312 ! ocular refractive media -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001274 ! -property_value: IAO:0000589 "orbitalis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006318 ! orbitalis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001123 ! -property_value: IAO:0000589 "spinal cord reticular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006319 ! spinal cord reticular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001276 ! -property_value: IAO:0000589 "inferior oblique extraocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006320 ! inferior oblique extraocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001277 ! -property_value: IAO:0000589 "superior oblique extraocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006321 ! superior oblique extraocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001279 ! -property_value: IAO:0000589 "inferior rectus extraocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006322 ! inferior rectus extraocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001282 ! -property_value: IAO:0000589 "superior rectus extraocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006323 ! superior rectus extraocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001757 ! -property_value: IAO:0000589 "laryngeal intrinsic ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006325 ! laryngeal intrinsic ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001761 ! -property_value: IAO:0000589 "base of arytenoid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006326 ! base of arytenoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001769 ! -property_value: IAO:0000589 "laryngeal extrinsic muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006327 ! laryngeal extrinsic muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001770 ! -property_value: IAO:0000589 "laryngeal intrinsic muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006328 ! laryngeal intrinsic muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002280 ! -property_value: IAO:0000589 "superior pharyngeal constrictor (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006329 ! superior pharyngeal constrictor -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002701 ! -property_value: IAO:0000589 "anterior lingual gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006330 ! anterior lingual gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000821 ! -property_value: IAO:0000589 "brainstem nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006331 ! brainstem nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000283 ! -property_value: IAO:0000589 "nasal capsule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001910 ! -property_value: IAO:0000589 "snout (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006333 ! snout -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000963 ! -property_value: IAO:0000589 "lateral ventricle choroid plexus stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006338 ! lateral ventricle choroid plexus stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000881 ! -property_value: IAO:0000589 "third ventricle choroid plexus stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006339 ! third ventricle choroid plexus stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000985 ! -property_value: IAO:0000589 "fourth ventricle choroid plexus stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006340 ! fourth ventricle choroid plexus stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002589 ! -property_value: IAO:0000589 "outer renal medulla peritubular capillary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006341 ! outer renal medulla peritubular capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000444 ! -property_value: IAO:0000589 "left subhepatic recess (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006342 ! left subhepatic recess -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000450 ! -property_value: IAO:0000589 "right subhepatic recess (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006343 ! right subhepatic recess -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002044 ! -property_value: IAO:0000589 "stapedial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006345 ! stapedial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001938 ! -property_value: IAO:0000589 "communicating artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006347 ! communicating artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001948 ! -property_value: IAO:0000589 "epigastric artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006349 ! epigastric artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002199 ! -property_value: IAO:0000589 "principal vein of forelimb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006351 ! principal vein of forelimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002200 ! -property_value: IAO:0000589 "principal vein of hindlimb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006353 ! principal vein of hindlimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002227 ! -property_value: IAO:0000589 "superior vesical vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006355 ! superior vesical vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002114 ! -property_value: IAO:0000589 "epigastric vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006356 ! epigastric vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001285 ! -property_value: IAO:0000589 "vasa hyaloidea propria (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006358 ! vasa hyaloidea propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001556 ! -property_value: IAO:0000589 "mesoduodenum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006359 ! mesoduodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001590 ! -property_value: IAO:0000589 "tongue intermolar eminence (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006360 ! tongue intermolar eminence -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002601 ! -property_value: IAO:0000589 "ureteric bud tip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006364 ! ureteric bud tip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002618 ! -property_value: IAO:0000589 "perihilar interstitium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006373 ! perihilar interstitium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002580 ! -property_value: IAO:0000589 "part of afferent arteriole forming the juxtaglomerular complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006374 ! part of afferent arteriole forming the juxtaglomerular complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002628 ! -property_value: IAO:0000589 "premacula segment of distal straight tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006376 ! premacula segment of distal straight tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000857 ! -property_value: IAO:0000589 "remnant of Rathke's pouch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006377 ! remnant of Rathke's pouch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000782 ! -property_value: IAO:0000589 "strand of vibrissa hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006378 ! strand of vibrissa hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001463 ! -property_value: IAO:0000589 "basisphenoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006428 ! basisphenoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001884 ! -property_value: IAO:0000589 "xiphoid cartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006430 ! xiphoid cartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000406 ! -property_value: IAO:0000589 "os penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006435 ! os penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002024 ! -property_value: IAO:0000589 "principal artery to forelimb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006436 ! principal artery to forelimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002025 ! -property_value: IAO:0000589 "principal artery to hindlimb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006438 ! principal artery to hindlimb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000387 ! -property_value: IAO:0000589 "os clitoris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006440 ! os clitoris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001760 ! -property_value: IAO:0000589 "apex of arytenoid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006494 ! apex of arytenoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001183 ! -property_value: IAO:0000589 "osseus cochlear canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006495 ! osseus cochlear canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001235 ! -property_value: IAO:0000589 "external acoustic meatus osseus part (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006496 ! external acoustic meatus osseus part -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002302 ! -property_value: IAO:0000589 "interosseous muscle of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006497 ! interosseous muscle of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002303 ! -property_value: IAO:0000589 "dorsal pes interosseous muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006499 ! dorsal pes interosseous muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002304 ! -property_value: IAO:0000589 "plantar interosseous muscle of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006502 ! plantar interosseous muscle of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002315 ! -property_value: IAO:0000589 "palmar interosseous muscle of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006505 ! palmar interosseous muscle of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000889 ! -property_value: IAO:0000589 "pallidum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006514 ! pallidum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000369 ! -property_value: IAO:0000589 "kidney calyx (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006517 ! kidney calyx -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001791 ! -property_value: IAO:0000589 "right lung lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006518 ! right lung lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000416 ! -property_value: IAO:0000589 "alveolar system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006524 ! alveolar system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001775 ! -property_value: IAO:0000589 "left lung alveolar system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006525 ! left lung alveolar system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001784 ! -property_value: IAO:0000589 "right lung alveolar system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006526 ! right lung alveolar system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002523 ! -property_value: IAO:0000589 "seminal fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006530 ! seminal fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002432 ! -property_value: IAO:0000589 "oculomotor muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006531 ! oculomotor muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001275 ! -property_value: IAO:0000589 "oblique extraocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006532 ! oblique extraocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001278 ! -property_value: IAO:0000589 "rectus extraocular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006533 ! rectus extraocular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001665 ! -property_value: IAO:0000589 "renal convoluted tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006534 ! renal convoluted tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002537 ! -property_value: IAO:0000589 "skin secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006535 ! skin secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002521 ! -property_value: IAO:0000589 "male reproductive gland secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006536 ! male reproductive gland secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002510 ! -property_value: IAO:0000589 "female reproductive gland secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006537 ! female reproductive gland secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002533 ! -property_value: IAO:0000589 "respiratory system fluid/secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006538 ! respiratory system fluid/secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002505 ! -property_value: IAO:0000589 "mammary gland fluid/secretion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006539 ! mammary gland fluid/secretion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002627 ! -property_value: IAO:0000589 "outer medulla inner stripe loop of Henle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006541 ! outer medulla inner stripe loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002630 ! -property_value: IAO:0000589 "outer medulla outer stripe loop of Henle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006542 ! outer medulla outer stripe loop of Henle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002961 ! -property_value: IAO:0000589 "lymphatic part of lymphoid system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006558 ! lymphatic part of lymphoid system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002127 ! -property_value: IAO:0000589 "superficial palmar arch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006564 ! superficial palmar arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002639 ! -property_value: IAO:0000589 "female urethral meatus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006565 ! female urethral meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002983 ! -property_value: IAO:0000589 "left ventricle myocardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006566 ! left ventricle myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002984 ! -property_value: IAO:0000589 "right ventricle myocardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006567 ! right ventricle myocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002426 ! -property_value: IAO:0000589 "hypothalamic nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006568 ! hypothalamic nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002527 ! -property_value: IAO:0000589 "otolymph (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006586 ! otolymph -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001490 ! -property_value: IAO:0000589 "mandibular symphysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006606 ! mandibular symphysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000070 ! -property_value: IAO:0000589 "venous sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006615 ! venous sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002955 ! -property_value: IAO:0000589 "atrium auricular region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006618 ! atrium auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001869 ! -property_value: IAO:0000589 "left atrium auricular region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006630 ! left atrium auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001870 ! -property_value: IAO:0000589 "right atrium auricular region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006631 ! right atrium auricular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003255 ! -property_value: IAO:0000589 "crus of penis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006639 ! crus of penis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003245 ! -property_value: IAO:0000589 "appendix epididymis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006641 ! appendix epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003254 ! -property_value: IAO:0000589 "tunica albuginea of testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006643 ! tunica albuginea of testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003244 ! -property_value: IAO:0000589 "suspensory ligament of ovary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006649 ! suspensory ligament of ovary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003253 ! -property_value: IAO:0000589 "tunica vaginalis testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006650 ! tunica vaginalis testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003246 ! -property_value: IAO:0000589 "appendix testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006651 ! appendix testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001993 ! -property_value: IAO:0000589 "greater palatine artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006664 ! greater palatine artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002108 ! -property_value: IAO:0000589 "spinal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006686 ! spinal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000725 ! -property_value: IAO:0000589 "foramen cecum of tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006699 ! foramen cecum of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002361 ! -property_value: IAO:0000589 "medial pterygoid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006718 ! medial pterygoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002360 ! -property_value: IAO:0000589 "lateral pterygoid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006719 ! lateral pterygoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002772 ! -property_value: IAO:0000589 "alisphenoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006721 ! alisphenoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002985 ! -property_value: IAO:0000589 "manubrium of malleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006722 ! manubrium of malleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001182 ! -property_value: IAO:0000589 "cochlear modiolus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006723 ! cochlear modiolus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001184 ! -property_value: IAO:0000589 "osseus spiral lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006724 ! osseus spiral lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001192 ! -property_value: IAO:0000589 "spiral ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006725 ! spiral ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001264 ! -property_value: IAO:0000589 "outer canthus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006726 ! outer canthus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001641 ! -property_value: IAO:0000589 "liver left lateral lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006727 ! liver left lateral lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001642 ! -property_value: IAO:0000589 "liver left medial lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006728 ! liver left medial lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002497 ! -property_value: IAO:0000589 "liver perisinusoidal space (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006729 ! liver perisinusoidal space -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003050 ! -property_value: IAO:0000589 "head of femur (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006767 ! head of femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002976 ! -property_value: IAO:0000589 "long bone epiphyseal plate proliferative zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006771 ! long bone epiphyseal plate proliferative zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002977 ! -property_value: IAO:0000589 "long bone epiphyseal plate hypertrophic zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006772 ! long bone epiphyseal plate hypertrophic zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001798 ! -property_value: IAO:0000589 "pre-tracheal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006831 ! pre-tracheal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001350 ! -property_value: IAO:0000589 "medial tibial tarsal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006836 ! medial tibial tarsal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001330 ! -property_value: IAO:0000589 "scapula (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006849 ! scapula -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002590 ! -property_value: IAO:0000589 "renal cortex peritubular capillary (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006851 ! renal cortex peritubular capillary -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002609 ! -property_value: IAO:0000589 "renal cortex tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006853 ! renal cortex tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002615 ! -property_value: IAO:0000589 "distal straight tubule postmacula segment (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006854 ! distal straight tubule postmacula segment -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002654 ! -property_value: IAO:0000589 "muscular coat of ureter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006855 ! muscular coat of ureter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002803 ! -property_value: IAO:0000589 "diaphysis proper (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006861 ! diaphysis proper -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003055 ! -property_value: IAO:0000589 "diaphysis of femur (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006862 ! diaphysis of femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003052 ! -property_value: IAO:0000589 "metaphysis of femur (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006865 ! metaphysis of femur -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002512 ! -property_value: IAO:0000589 "digestive system secreted substance (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006911 ! digestive system secreted substance -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002490 ! -property_value: IAO:0000589 "urinary bladder muscularis mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006912 ! urinary bladder muscularis mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002786 ! -property_value: IAO:0000589 "tongue squamous epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006919 ! tongue squamous epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001567 ! -property_value: IAO:0000589 "esophagus squamous epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006920 ! esophagus squamous epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001611 ! -property_value: IAO:0000589 "stomach squamous epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006921 ! stomach squamous epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001725 ! -property_value: IAO:0000589 "cervix squamous epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006922 ! cervix squamous epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001731 ! -property_value: IAO:0000589 "vagina squamous epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006923 ! vagina squamous epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002784 ! -property_value: IAO:0000589 "stomach glandular epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006924 ! stomach glandular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001614 ! -property_value: IAO:0000589 "stomach glandular region mucosa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006931 ! stomach glandular region mucosa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002892 ! -property_value: IAO:0000589 "vestibular epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006932 ! vestibular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002870 ! -property_value: IAO:0000589 "crista ampullaris neuroepithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006935 ! crista ampullaris neuroepithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000769 ! -property_value: IAO:0000589 "thymus subcapsular epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006936 ! thymus subcapsular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001189 ! -property_value: IAO:0000589 "inner ear epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006937 ! inner ear epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000398 ! -property_value: IAO:0000589 "efferent duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006946 ! efferent duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001734 ! -property_value: IAO:0000589 "efferent duct epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006948 ! efferent duct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002131 ! -property_value: IAO:0000589 "great vein of heart (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006958 ! great vein of heart -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002873 ! -property_value: IAO:0000589 "mandible angular process (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006959 ! mandible angular process -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002991 ! -property_value: IAO:0000589 "ovary stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006960 ! ovary stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000854 ! -property_value: IAO:0000589 "pars distalis of adenohypophysis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000566 ! -property_value: IAO:0000589 "parietal mesothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007140 ! parietal mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000567 ! -property_value: IAO:0000589 "visceral mesothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007141 ! visceral mesothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000462 ! -property_value: IAO:0000589 "distal radio-ulnar joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007164 ! distal radio-ulnar joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003146 ! -property_value: IAO:0000589 "proximal radio-ulnar joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007165 ! proximal radio-ulnar joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003196 ! -property_value: IAO:0000589 "lamina propria of mucosa of colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007177 ! lamina propria of mucosa of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003197 ! -property_value: IAO:0000589 "muscularis mucosae of colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007178 ! muscularis mucosae of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000405 ! -property_value: IAO:0000589 "vesicular gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007194 ! vesicular gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000239 ! -property_value: IAO:0000589 "osseus cochlea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007223 ! osseus cochlea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000922 ! -property_value: IAO:0000589 "medial entorhinal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007224 ! medial entorhinal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000911 ! -property_value: IAO:0000589 "lateral entorhinal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007225 ! lateral entorhinal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001032 ! -property_value: IAO:0000589 "vestibular nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007228 ! vestibular nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000773 ! -property_value: IAO:0000589 "lingual tonsil (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007250 ! lingual tonsil -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002536 ! -property_value: IAO:0000589 "sputum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007311 ! sputum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002028 ! -property_value: IAO:0000589 "pudendal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007312 ! pudendal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002029 ! -property_value: IAO:0000589 "superior external pudendal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007314 ! superior external pudendal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002215 ! -property_value: IAO:0000589 "saphenous vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007318 ! saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002173 ! -property_value: IAO:0000589 "medial saphenous vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007319 ! medial saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002161 ! -property_value: IAO:0000589 "lateral saphenous vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007321 ! lateral saphenous vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000721 ! -property_value: IAO:0000589 "pancreatic lobule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007324 ! pancreatic lobule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000124 ! -property_value: IAO:0000589 "pancreatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007329 ! pancreatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003147 ! -property_value: IAO:0000589 "midbrain raphe nuclei (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007412 ! midbrain raphe nuclei -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002742 ! -property_value: IAO:0000589 "cerebellar peduncle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007416 ! cerebellar peduncle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001719 ! -property_value: IAO:0000589 "ciliated columnar oviduct epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007589 ! ciliated columnar oviduct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001720 ! -property_value: IAO:0000589 "cuboidal oviduct epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007590 ! cuboidal oviduct epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002067 ! -property_value: IAO:0000589 "tibial artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007610 ! tibial artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002293 ! -property_value: IAO:0000589 "extensor digitorum communis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007612 ! extensor digitorum communis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002294 ! -property_value: IAO:0000589 "extensor digitorum lateralis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007613 ! extensor digitorum lateralis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001740 ! -property_value: IAO:0000589 "prostate gland ventral lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007615 ! prostate gland ventral lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001318 ! -property_value: IAO:0000589 "limiting membrane of retina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007619 ! limiting membrane of retina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000842 ! -property_value: IAO:0000589 "subparaventricular zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007626 ! subparaventricular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000928 ! -property_value: IAO:0000589 "magnocellular nucleus of stria terminalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007627 ! magnocellular nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000933 ! -property_value: IAO:0000589 "lateral septal complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007628 ! lateral septal complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000934 ! -property_value: IAO:0000589 "medial septal complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007629 ! medial septal complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000939 ! -property_value: IAO:0000589 "septohippocampal nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007630 ! septohippocampal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000967 ! -property_value: IAO:0000589 "accessory olfactory bulb glomerular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007631 ! accessory olfactory bulb glomerular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001011 ! -property_value: IAO:0000589 "Barrington's nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007632 ! Barrington's nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001018 ! -property_value: IAO:0000589 "nucleus of trapezoid body (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007633 ! nucleus of trapezoid body -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001019 ! -property_value: IAO:0000589 "parabrachial nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007634 ! parabrachial nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002992 ! -property_value: IAO:0000589 "nucleus of thalamus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007692 ! nucleus of thalamus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000839 ! -property_value: IAO:0000589 "medial preoptic region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007769 ! medial preoptic region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002718 ! -property_value: IAO:0000589 "vascular system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007798 ! vascular system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000006 ! -property_value: IAO:0000589 "craniocervical region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007811 ! craniocervical region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000008 ! -property_value: IAO:0000589 "post-anal tail (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007812 ! post-anal tail -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001194 ! -property_value: IAO:0000589 "reticular membrane of spiral organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007825 ! reticular membrane of spiral organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000291 ! -property_value: IAO:0000589 "girdle bone/zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007828 ! girdle bone/zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000292 ! -property_value: IAO:0000589 "pectoral girdle bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007829 ! pectoral girdle bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000293 ! -property_value: IAO:0000589 "pelvic girdle bone/zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007830 ! pelvic girdle bone/zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000250 ! -property_value: IAO:0000589 "osseus semicircular canal (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007833 ! osseus semicircular canal -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000569 ! -property_value: IAO:0000589 "bone of craniocervical region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007914 ! bone of craniocervical region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001344 ! -property_value: IAO:0000589 "central carpal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007958 ! central carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001345 ! -property_value: IAO:0000589 "falciform carpal bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007959 ! falciform carpal bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001346 ! -property_value: IAO:0000589 "scapholunate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007960 ! scapholunate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001376 ! -property_value: IAO:0000589 "proximal sesamoid bone of pes (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007990 ! proximal sesamoid bone of pes -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001377 ! -property_value: IAO:0000589 "proximal sesamoid bone of manus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007991 ! proximal sesamoid bone of manus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001379 ! -property_value: IAO:0000589 "ulnar sesamoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0007993 ! ulnar sesamoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001505 ! -property_value: IAO:0000589 "joint of girdle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008114 ! joint of girdle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001518 ! -property_value: IAO:0000589 "joint articular surface (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008124 ! joint articular surface -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002849 ! -property_value: IAO:0000589 "hypertrophic cartilage zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008187 ! hypertrophic cartilage zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002708 ! -property_value: IAO:0000589 "nail plate (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008198 ! nail plate -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000655 ! -property_value: IAO:0000589 "bone of hip region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008202 ! bone of hip region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003089 ! -property_value: IAO:0000589 "pelvic cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008203 ! pelvic cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000571 ! -property_value: IAO:0000589 "craniocervical region musculature (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008229 ! craniocervical region musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002425 ! -property_value: IAO:0000589 "tibialis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008230 ! tibialis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000028 ! -property_value: IAO:0000589 "dorsal thoracic segment of trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008231 ! dorsal thoracic segment of trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000502 ! -property_value: IAO:0000589 "lower back muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008242 ! lower back muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000508 ! -property_value: IAO:0000589 "upper back muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008243 ! upper back muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002467 ! -property_value: IAO:0000589 "periodontal ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008266 ! periodontal ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002874 ! -property_value: IAO:0000589 "nasal bridge (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008340 ! nasal bridge -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003217 ! -property_value: IAO:0000589 "ileal epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008345 ! ileal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003208 ! -property_value: IAO:0000589 "duodenal epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008346 ! duodenal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000790 ! -property_value: IAO:0000589 "inguinal mammary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008424 ! inguinal mammary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003112 ! -property_value: IAO:0000589 "intertarsal joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008447 ! intertarsal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002553 ! -property_value: IAO:0000589 "psoas muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008450 ! psoas muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002328 ! -property_value: IAO:0000589 "transverse muscle of tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008583 ! transverse muscle of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002329 ! -property_value: IAO:0000589 "vertical muscle of tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008584 ! vertical muscle of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002110 ! -property_value: IAO:0000589 "dorsal venous arch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008783 ! dorsal venous arch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003059 ! -property_value: IAO:0000589 "cheek pouch (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008802 ! cheek pouch -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000402 ! -property_value: IAO:0000589 "coagulating gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008807 ! coagulating gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001739 ! -property_value: IAO:0000589 "prostate gland dorsolateral lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008808 ! prostate gland dorsolateral lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001735 ! -property_value: IAO:0000589 "duct of epididymis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008824 ! duct of epididymis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002534 ! -property_value: IAO:0000589 "pulmonary surfactant (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008826 ! pulmonary surfactant -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001606 ! -property_value: IAO:0000589 "murine forestomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008827 ! murine forestomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001470 ! -property_value: IAO:0000589 "presphenoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008828 ! presphenoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000994 ! -property_value: IAO:0000589 "cerebellum external granule cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008829 ! cerebellum external granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000995 ! -property_value: IAO:0000589 "cerebellum internal granule cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008830 ! cerebellum internal granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001197 ! -property_value: IAO:0000589 "inner spiral sulcus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008831 ! inner spiral sulcus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001196 ! -property_value: IAO:0000589 "outer spiral sulcus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008832 ! outer spiral sulcus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003010 ! -property_value: IAO:0000589 "metapodial pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008838 ! metapodial pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003248 ! -property_value: IAO:0000589 "gubernaculum testis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008843 ! gubernaculum testis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003004 ! -property_value: IAO:0000589 "nonskeletal ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008845 ! nonskeletal ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003005 ! -property_value: IAO:0000589 "skeletal ligament (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008846 ! skeletal ligament -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001723 ! -property_value: IAO:0000589 "placenta metrial gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008855 ! placenta metrial gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001628 ! -property_value: IAO:0000589 "stomach smooth muscle circular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008857 ! stomach smooth muscle circular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003140 ! -property_value: IAO:0000589 "hypodermis skeletal muscle layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008876 ! hypodermis skeletal muscle layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001228 ! -property_value: IAO:0000589 "ligament of pinna (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008879 ! ligament of pinna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000908 ! -property_value: IAO:0000589 "primary somatosensory cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008933 ! primary somatosensory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000918 ! -property_value: IAO:0000589 "secondary somatosensory cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008934 ! secondary somatosensory cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003168 ! -property_value: IAO:0000589 "lung parenchyma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008946 ! lung parenchyma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003121 ! -property_value: IAO:0000589 "dental follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008969 ! dental follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003040 ! -property_value: IAO:0000589 "apocrine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008974 ! apocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003058 ! -property_value: IAO:0000589 "anal sac (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008978 ! anal sac -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000203 ! -property_value: IAO:0000589 "nucleus of cerebellar nuclear complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0008995 ! nucleus of cerebellar nuclear complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000486 ! -property_value: IAO:0000589 "white fibrocartilage (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009013 ! white fibrocartilage -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000504 ! -property_value: IAO:0000589 "lower back skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009014 ! lower back skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000510 ! -property_value: IAO:0000589 "upper back skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009015 ! upper back skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001239 ! -property_value: IAO:0000589 "ciliary stroma (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009016 ! ciliary stroma -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001727 ! -property_value: IAO:0000589 "left uterine horn (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009020 ! left uterine horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001728 ! -property_value: IAO:0000589 "right uterine horn (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009022 ! right uterine horn -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001888 ! -property_value: IAO:0000589 "adrenal gland X zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009024 ! adrenal gland X zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001962 ! -property_value: IAO:0000589 "gastroepiploic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009025 ! gastroepiploic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001975 ! -property_value: IAO:0000589 "iliac circumflex artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009026 ! iliac circumflex artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002078 ! -property_value: IAO:0000589 "vesical artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009027 ! vesical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002202 ! -property_value: IAO:0000589 "pudendal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009029 ! pudendal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002207 ! -property_value: IAO:0000589 "left pulmonary vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009030 ! left pulmonary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002208 ! -property_value: IAO:0000589 "right pulmonary vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009032 ! right pulmonary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002634 ! -property_value: IAO:0000589 "renal straight tubule (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009035 ! renal straight tubule -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002835 ! -property_value: IAO:0000589 "sulcus ampullaris (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009038 ! sulcus ampullaris -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002989 ! -property_value: IAO:0000589 "lymph node germinal center (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009039 ! lymph node germinal center -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002203 ! -property_value: IAO:0000589 "inferior external pudendal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009046 ! inferior external pudendal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002204 ! -property_value: IAO:0000589 "superior external pudendal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009047 ! superior external pudendal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001052 ! -property_value: IAO:0000589 "nucleus of solitary tract (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009050 ! nucleus of solitary tract -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003192 ! -property_value: IAO:0000589 "spinal cord lateral wall (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001859 ! -property_value: IAO:0000589 "trachea non-cartilage connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009644 ! trachea non-cartilage connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000400 ! -property_value: IAO:0000589 "ampullary gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009645 ! ampullary gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001163 ! -property_value: IAO:0000589 "lumbar sympathetic nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009646 ! lumbar sympathetic nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001224 ! -property_value: IAO:0000589 "tympanic membrane epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009647 ! tympanic membrane epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001252 ! -property_value: IAO:0000589 "eyelid subcutaneous connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009648 ! eyelid subcutaneous connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001650 ! -property_value: IAO:0000589 "cortical arch of kidney (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009650 ! cortical arch of kidney -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001680 ! -property_value: IAO:0000589 "nephron tubule basement membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009651 ! nephron tubule basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001832 ! -property_value: IAO:0000589 "bronchus basement membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009652 ! bronchus basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001854 ! -property_value: IAO:0000589 "trachea basement membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009653 ! trachea basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001913 ! -property_value: IAO:0000589 "alveolar artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009654 ! alveolar artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001918 ! -property_value: IAO:0000589 "auricular artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009655 ! auricular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001987 ! -property_value: IAO:0000589 "artery of lip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009657 ! artery of lip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002013 ! -property_value: IAO:0000589 "pancreaticoduodenal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009658 ! pancreaticoduodenal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002040 ! -property_value: IAO:0000589 "spermatic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009659 ! spermatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003203 ! -property_value: IAO:0000589 "gut mesentery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009664 ! gut mesentery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001089 ! -property_value: IAO:0000589 "accessory XI nerve cranial component (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009673 ! accessory XI nerve cranial component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001090 ! -property_value: IAO:0000589 "accessory XI nerve spinal component (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009674 ! accessory XI nerve spinal component -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001092 ! -property_value: IAO:0000589 "chorda tympani branch of facial nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009675 ! chorda tympani branch of facial nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001887 ! -property_value: IAO:0000589 "adrenal gland cortex zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009753 ! adrenal gland cortex zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002561 ! -property_value: IAO:0000589 "zone of stomach (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009870 ! zone of stomach -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002996 ! -property_value: IAO:0000589 "nephrogenic zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009871 ! nephrogenic zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000050 ! -property_value: IAO:0000589 "tarsal skeleton (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009879 ! tarsal skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000040 ! -property_value: IAO:0000589 "carpal skeleton (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009880 ! carpal skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003022 ! -property_value: IAO:0000589 "retrotrapezoid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009918 ! retrotrapezoid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003149 ! -property_value: IAO:0000589 "dentate gyrus subgranular zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009952 ! dentate gyrus subgranular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002405 ! -property_value: IAO:0000589 "post-embryonic organism (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009953 ! post-embryonic organism -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001574 ! -property_value: IAO:0000589 "esophagus smooth muscle circular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009960 ! esophagus smooth muscle circular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001575 ! -property_value: IAO:0000589 "esophagus smooth muscle longitudinal layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009961 ! esophagus smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000761 ! -property_value: IAO:0000589 "spleen venous sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009967 ! spleen venous sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003021 ! -property_value: IAO:0000589 "ureteropelvic junction (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009972 ! ureteropelvic junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003020 ! -property_value: IAO:0000589 "ureterovesical junction (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0009973 ! ureterovesical junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000184 ! -property_value: IAO:0000589 "collection of basal ganglia (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010011 ! collection of basal ganglia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001218 ! -property_value: IAO:0000589 "tubotympanic recess epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010020 ! tubotympanic recess epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003031 ! -property_value: IAO:0000589 "posterior part of tongue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010033 ! posterior part of tongue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001055 ! -property_value: IAO:0000589 "anterior tegmental nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010036 ! anterior tegmental nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003142 ! -property_value: IAO:0000589 "pharyngotympanic tube epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010062 ! pharyngotympanic tube epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001223 ! -property_value: IAO:0000589 "intermediate layer of tympanic membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010070 ! intermediate layer of tympanic membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000720 ! -property_value: IAO:0000589 "neuroendocrine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010133 ! neuroendocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002943 ! -property_value: IAO:0000589 "secretory circumventricular organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010134 ! secretory circumventricular organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002944 ! -property_value: IAO:0000589 "sensory circumventricular organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010135 ! sensory circumventricular organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002526 ! -property_value: IAO:0000589 "seminal vesicle fluid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010143 ! seminal vesicle fluid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002848 ! -property_value: IAO:0000589 "post-anal tail tip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010162 ! post-anal tail tip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003237 ! -property_value: IAO:0000589 "rete ovarii (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010185 ! rete ovarii -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001872 ! -property_value: IAO:0000589 "right atrium venous valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010189 ! right atrium venous valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000476 ! -property_value: IAO:0000589 "pair of dorsal aortae (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010190 ! pair of dorsal aortae -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002700 ! -property_value: IAO:0000589 "anterior buccal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010242 ! anterior buccal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003041 ! -property_value: IAO:0000589 "merocrine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010243 ! merocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003037 ! -property_value: IAO:0000589 "hyoid apparatus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010272 ! hyoid apparatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000098 ! -property_value: IAO:0000589 "mesocardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010277 ! mesocardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002540 ! -property_value: IAO:0000589 "odontoid tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010365 ! odontoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002243 ! -property_value: IAO:0000589 "tibial vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010370 ! tibial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001145 ! -property_value: IAO:0000589 "enteric nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010380 ! enteric nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000732 ! -property_value: IAO:0000589 "Peyer's patch follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010386 ! Peyer's patch follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001400 ! -property_value: IAO:0000589 "proximal segment of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010388 ! proximal segment of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001414 ! -property_value: IAO:0000589 "proximal segment of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010388 ! proximal segment of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001471 ! -property_value: IAO:0000589 "pterygoid bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010389 ! pterygoid bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000743 ! -property_value: IAO:0000589 "lymph node primary follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010395 ! lymph node primary follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000748 ! -property_value: IAO:0000589 "afferent lymphatic vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010396 ! afferent lymphatic vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000749 ! -property_value: IAO:0000589 "efferent lymphatic vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010397 ! efferent lymphatic vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000754 ! -property_value: IAO:0000589 "spleen marginal sinus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010398 ! spleen marginal sinus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000759 ! -property_value: IAO:0000589 "spleen trabecular artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010399 ! spleen trabecular artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000760 ! -property_value: IAO:0000589 "spleen trabecular vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010400 ! spleen trabecular vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000763 ! -property_value: IAO:0000589 "spleen central arteriole (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010401 ! spleen central arteriole -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000808 ! -property_value: IAO:0000589 "epidermis suprabasal layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010402 ! epidermis suprabasal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000812 ! -property_value: IAO:0000589 "brain marginal zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010403 ! brain marginal zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000965 ! -property_value: IAO:0000589 "lateral ventricle subependymal layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010404 ! lateral ventricle subependymal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001129 ! -property_value: IAO:0000589 "spinal cord lateral motor column (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010405 ! spinal cord lateral motor column -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001146 ! -property_value: IAO:0000589 "cholinergic enteric nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010406 ! cholinergic enteric nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002010 ! -property_value: IAO:0000589 "ocular angle artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010408 ! ocular angle artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002486 ! -property_value: IAO:0000589 "ocular surface region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010409 ! ocular surface region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002548 ! -property_value: IAO:0000589 "inguinal fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010410 ! inguinal fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002549 ! -property_value: IAO:0000589 "retroperitoneal fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010411 ! retroperitoneal fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002550 ! -property_value: IAO:0000589 "epididymal fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010412 ! epididymal fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002953 ! -property_value: IAO:0000589 "parametrial fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010413 ! parametrial fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002956 ! -property_value: IAO:0000589 "omental fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010414 ! omental fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002712 ! -property_value: IAO:0000589 "barrel cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010415 ! barrel cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002851 ! -property_value: IAO:0000589 "lymph node B cell domain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010416 ! lymph node B cell domain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002852 ! -property_value: IAO:0000589 "lymph node T cell domain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010417 ! lymph node T cell domain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002867 ! -property_value: IAO:0000589 "urethral opening (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010418 ! urethral opening -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002910 ! -property_value: IAO:0000589 "vibrissa follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010419 ! vibrissa follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002990 ! -property_value: IAO:0000589 "lymph node germinal center mantle zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010420 ! lymph node germinal center mantle zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001397 ! -property_value: IAO:0000589 "distal segment of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010424 ! distal segment of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001418 ! -property_value: IAO:0000589 "distal segment of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010424 ! distal segment of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002404 ! -property_value: IAO:0000589 "zygomaticus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010437 ! zygomaticus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001897 ! -property_value: IAO:0000589 "strand of pelage hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010509 ! strand of pelage hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001893 ! -property_value: IAO:0000589 "strand of auchene hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010510 ! strand of auchene hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001894 ! -property_value: IAO:0000589 "strand of awl hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010511 ! strand of awl hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001896 ! -property_value: IAO:0000589 "strand of guard hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010512 ! strand of guard hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001898 ! -property_value: IAO:0000589 "strand of zigzag hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010513 ! strand of zigzag hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001895 ! -property_value: IAO:0000589 "strand of duvet hair (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010514 ! strand of duvet hair -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002998 ! -property_value: IAO:0000589 "metanephros induced blastemal cells (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010531 ! metanephros induced blastemal cells -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000688 ! -property_value: IAO:0000589 "bone of appendage girdle complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010740 ! bone of appendage girdle complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000612 ! -property_value: IAO:0000589 "bone of pectoral complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010741 ! bone of pectoral complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000660 ! -property_value: IAO:0000589 "bone of pelvic complex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010742 ! bone of pelvic complex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000742 ! -property_value: IAO:0000589 "lymph node follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010748 ! lymph node follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000744 ! -property_value: IAO:0000589 "lymph node secondary follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010753 ! lymph node secondary follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001408 ! -property_value: IAO:0000589 "rib 8 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010757 ! rib 8 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000663 ! -property_value: IAO:0000589 "pelvic complex muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010890 ! pelvic complex muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000615 ! -property_value: IAO:0000589 "pectoral complex muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010891 ! pectoral complex muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002283 ! -property_value: IAO:0000589 "crico-arytenoid muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010932 ! crico-arytenoid muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002276 ! -property_value: IAO:0000589 "cleidooccipital muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010948 ! cleidooccipital muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002385 ! -property_value: IAO:0000589 "sternooccipital muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010949 ! sternooccipital muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000487 ! -property_value: IAO:0000589 "articular cartilage of joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0010996 ! articular cartilage of joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001445 ! -property_value: IAO:0000589 "thoracic vertebra 8 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011050 ! thoracic vertebra 8 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000248 ! -property_value: IAO:0000589 "perilymphatic channel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011060 ! perilymphatic channel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002267 ! -property_value: IAO:0000589 "adductor muscle of hip (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011144 ! adductor muscle of hip -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000318 ! -property_value: IAO:0000589 "facial skeleton (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011156 ! facial skeleton -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001478 ! -property_value: IAO:0000589 "neurocranium bone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011164 ! neurocranium bone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000926 ! -property_value: IAO:0000589 "anterior division of bed nuclei of stria terminalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011173 ! anterior division of bed nuclei of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000927 ! -property_value: IAO:0000589 "fusiform nucleus of stria terminalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011175 ! fusiform nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000929 ! -property_value: IAO:0000589 "oval nucleus of stria terminalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011176 ! oval nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000930 ! -property_value: IAO:0000589 "posterior division of bed nuclei of stria terminalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011177 ! posterior division of bed nuclei of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000931 ! -property_value: IAO:0000589 "principal nucleus of stria terminalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011178 ! principal nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000932 ! -property_value: IAO:0000589 "transverse nucleus of stria terminalis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011179 ! transverse nucleus of stria terminalis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002185 ! -property_value: IAO:0000589 "ophthalmic plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011194 ! ophthalmic plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002338 ! -property_value: IAO:0000589 "longissimus lumborum muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011219 ! longissimus lumborum muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003126 ! -property_value: IAO:0000589 "perpendicular plate of ethmoid (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011244 ! perpendicular plate of ethmoid -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000020 ! -property_value: IAO:0000589 "dorsal trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011270 ! dorsal trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002275 ! -property_value: IAO:0000589 "cleidocephalicus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011364 ! cleidocephalicus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002274 ! -property_value: IAO:0000589 "cleidobrachialis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011366 ! cleidobrachialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002349 ! -property_value: IAO:0000589 "omotransversarius muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011369 ! omotransversarius muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002322 ! -property_value: IAO:0000589 "iliothoracic muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011376 ! iliothoracic muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002273 ! -property_value: IAO:0000589 "male external urethral sphincter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011379 ! male external urethral sphincter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002191 ! -property_value: IAO:0000589 "inferior pancreaticoduodenal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011383 ! inferior pancreaticoduodenal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002192 ! -property_value: IAO:0000589 "superior pancreaticoduodenal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011384 ! superior pancreaticoduodenal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002352 ! -property_value: IAO:0000589 "parotidoauricular muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011385 ! parotidoauricular muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002281 ! -property_value: IAO:0000589 "constrictor vulvae muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011387 ! constrictor vulvae muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003116 ! -property_value: IAO:0000589 "bulbospongiosus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011389 ! bulbospongiosus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002863 ! -property_value: IAO:0000589 "blood vessel internal elastic membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011392 ! blood vessel internal elastic membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002285 ! -property_value: IAO:0000589 "cutaneous trunci muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011415 ! cutaneous trunci muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002334 ! -property_value: IAO:0000589 "levator nasolabialis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011464 ! levator nasolabialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002335 ! -property_value: IAO:0000589 "longissimus atlantis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011465 ! longissimus atlantis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002342 ! -property_value: IAO:0000589 "ventral lateral sacrocaudal muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011472 ! ventral lateral sacrocaudal muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002366 ! -property_value: IAO:0000589 "rectus thoracis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011495 ! rectus thoracis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002380 ! -property_value: IAO:0000589 "sphincter colli superficialis muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011508 ! sphincter colli superficialis muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003230 ! -property_value: IAO:0000589 "odontogenic mesenchyme of molar (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011641 ! odontogenic mesenchyme of molar -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001414 ! -property_value: IAO:0000589 "dorsal head of rib (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011652 ! dorsal head of rib -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003179 ! -property_value: IAO:0000589 "cardiac valve leaflet (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011741 ! cardiac valve leaflet -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001107 ! -property_value: IAO:0000589 "left recurrent laryngeal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011766 ! left recurrent laryngeal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001108 ! -property_value: IAO:0000589 "right recurrent laryngeal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011767 ! right recurrent laryngeal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001128 ! -property_value: IAO:0000589 "dorsal commissural nucleus of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011776 ! dorsal commissural nucleus of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000794 ! -property_value: IAO:0000589 "areolar gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011827 ! areolar gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003238 ! -property_value: IAO:0000589 "mesorchium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011879 ! mesorchium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000163 ! -property_value: IAO:0000589 "vibrissa unit (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011933 ! vibrissa unit -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000783 ! -property_value: IAO:0000589 "vibrissa hair bulb (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011936 ! vibrissa hair bulb -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000784 ! -property_value: IAO:0000589 "vibrissa root sheath (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011937 ! vibrissa root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000785 ! -property_value: IAO:0000589 "vibrissa inner root sheath (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011938 ! vibrissa inner root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000786 ! -property_value: IAO:0000589 "vibrissa outer root sheath (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011939 ! vibrissa outer root sheath -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002656 ! -property_value: IAO:0000589 "ureter luminal urothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011947 ! ureter luminal urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002657 ! -property_value: IAO:0000589 "ureter subluminal urothelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011948 ! ureter subluminal urothelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002733 ! -property_value: IAO:0000589 "endometrium luminal epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011949 ! endometrium luminal epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001613 ! -property_value: IAO:0000589 "stomach glandular region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011953 ! stomach glandular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001625 ! -property_value: IAO:0000589 "stomach non-glandular region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011954 ! stomach non-glandular region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003032 ! -property_value: IAO:0000589 "left hepatic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011955 ! left hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003034 ! -property_value: IAO:0000589 "right hepatic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011956 ! right hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003033 ! -property_value: IAO:0000589 "middle hepatic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011957 ! middle hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000461 ! -property_value: IAO:0000589 "radio-carpal joint (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0011968 ! radio-carpal joint -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000147 ! -property_value: IAO:0000589 "skin apocrine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012177 ! skin apocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000532 ! -property_value: IAO:0000589 "bone of pelvis (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012179 ! bone of pelvis -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000574 ! -property_value: IAO:0000589 "head or neck skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012180 ! head or neck skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000777 ! -property_value: IAO:0000589 "tonsil crypt (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012181 ! tonsil crypt -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001708 ! -property_value: IAO:0000589 "ovary growing follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012186 ! ovary growing follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001960 ! -property_value: IAO:0000589 "frontal artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012187 ! frontal artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002194 ! -property_value: IAO:0000589 "phrenic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012193 ! phrenic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002226 ! -property_value: IAO:0000589 "superior intercostal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012194 ! superior intercostal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003166 ! -property_value: IAO:0000589 "intercostal vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012197 ! intercostal vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002642 ! -property_value: IAO:0000589 "male urethral meatus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012241 ! male urethral meatus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003014 ! -property_value: IAO:0000589 "forestomach-glandular stomach junction (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012270 ! forestomach-glandular stomach junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002732 ! -property_value: IAO:0000589 "endometrium glandular epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012276 ! endometrium glandular epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002638 ! -property_value: IAO:0000589 "female membranous urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012301 ! female membranous urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002641 ! -property_value: IAO:0000589 "male membranous urethra (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012302 ! male membranous urethra -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001936 ! -property_value: IAO:0000589 "transverse cervical artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012324 ! transverse cervical artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003030 ! -property_value: IAO:0000589 "nasal-associated lymphoid tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012330 ! nasal-associated lymphoid tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003036 ! -property_value: IAO:0000589 "ovarian bursa (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012333 ! ovarian bursa -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003046 ! -property_value: IAO:0000589 "perianal skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012336 ! perianal skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003045 ! -property_value: IAO:0000589 "cauda equina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012337 ! cauda equina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003042 ! -property_value: IAO:0000589 "holocrine gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012344 ! holocrine gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003130 ! -property_value: IAO:0000589 "bone of jaw (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012360 ! bone of jaw -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001160 ! -property_value: IAO:0000589 "sympathetic nerve plexus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012373 ! sympathetic nerve plexus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001548 ! -property_value: IAO:0000589 "large intestine smooth muscle circular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012398 ! large intestine smooth muscle circular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001549 ! -property_value: IAO:0000589 "large intestine smooth muscle longitudinal layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012399 ! large intestine smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001560 ! -property_value: IAO:0000589 "small intestine smooth muscle circular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012401 ! small intestine smooth muscle circular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001561 ! -property_value: IAO:0000589 "small intestine smooth muscle longitudinal layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012402 ! small intestine smooth muscle longitudinal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001802 ! -property_value: IAO:0000589 "respiratory system arterial smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012416 ! respiratory system arterial smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001812 ! -property_value: IAO:0000589 "respiratory system venous smooth muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012418 ! respiratory system venous smooth muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003198 ! -property_value: IAO:0000589 "muscle layer of colon (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012489 ! muscle layer of colon -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003210 ! -property_value: IAO:0000589 "muscularis mucosae of duodenum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012494 ! muscularis mucosae of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003211 ! -property_value: IAO:0000589 "muscularis mucosae of duodenum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012494 ! muscularis mucosae of duodenum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001533 ! -property_value: IAO:0000589 "anococcygeus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0012649 ! anococcygeus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001253 ! -property_value: IAO:0000589 "eyelid submuscular connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013120 ! eyelid submuscular connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003184 ! -property_value: IAO:0000589 "venous system of brain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013146 ! venous system of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002891 ! -property_value: IAO:0000589 "Grueneberg ganglion (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013208 ! Grueneberg ganglion -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003241 ! -property_value: IAO:0000589 "vesicular appendage of epoophoron (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013250 ! vesicular appendage of epoophoron -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003049 ! -property_value: IAO:0000589 "diaphysis of tibia (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013280 ! diaphysis of tibia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003061 ! -property_value: IAO:0000589 "cranial cavity (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013411 ! cranial cavity -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001042 ! -property_value: IAO:0000589 "inferior olive dorsal accessory nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013608 ! inferior olive dorsal accessory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001044 ! -property_value: IAO:0000589 "inferior olive medial accessory nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013609 ! inferior olive medial accessory nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003125 ! -property_value: IAO:0000589 "prostate gland lateral lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013637 ! prostate gland lateral lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003106 ! -property_value: IAO:0000589 "metaphysis of tibia (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0013750 ! metaphysis of tibia -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002994 ! -property_value: IAO:0000589 "lateral process of malleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014397 ! lateral process of malleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002591 ! -property_value: IAO:0000589 "renal venous blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014401 ! renal venous blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003053 ! -property_value: IAO:0000589 "iliac crest (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014437 ! iliac crest -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003186 ! -property_value: IAO:0000589 "pyramidal layer of CA1 (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014548 ! pyramidal layer of CA1 -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003025 ! -property_value: IAO:0000589 "serratus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014835 ! serratus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002741 ! -property_value: IAO:0000589 "brainstem white matter (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014891 ! brainstem white matter -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003148 ! -property_value: IAO:0000589 "skeletal muscle organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014892 ! skeletal muscle organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003189 ! -property_value: IAO:0000589 "cerebral cortex ventricular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014936 ! cerebral cortex ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003188 ! -property_value: IAO:0000589 "cerebral cortex subventricular zone (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0014940 ! cerebral cortex subventricular zone -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003243 ! -property_value: IAO:0000589 "lower part of vagina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015243 ! lower part of vagina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002933 ! -property_value: IAO:0000589 "accessory olfactory bulb granule cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015244 ! accessory olfactory bulb granule cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001327 ! -property_value: IAO:0000589 "septal olfactory organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015245 ! septal olfactory organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002890 ! -property_value: IAO:0000589 "septal organ of Masera (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015246 ! septal organ of Masera -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003114 ! -property_value: IAO:0000589 "bifurcation of trachea (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015247 ! bifurcation of trachea -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003011 ! -property_value: IAO:0000589 "digit skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015249 ! digit skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003019 ! -property_value: IAO:0000589 "inferior olivary commissure (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015250 ! inferior olivary commissure -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003043 ! -property_value: IAO:0000589 "modified sebaceous gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015251 ! modified sebaceous gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000160 ! -property_value: IAO:0000589 "coat hair follicle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015252 ! coat hair follicle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000722 ! -property_value: IAO:0000589 "pancreas left lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015280 ! pancreas left lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000723 ! -property_value: IAO:0000589 "pancreas right lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015281 ! pancreas right lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001815 ! -property_value: IAO:0000589 "respiratory system basement membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015329 ! respiratory system basement membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002039 ! -property_value: IAO:0000589 "saphenous artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015350 ! saphenous artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002449 ! -property_value: IAO:0000589 "heart plus pericardium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015410 ! heart plus pericardium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002648 ! -property_value: IAO:0000589 "urethra mesenchymal layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015418 ! urethra mesenchymal layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002658 ! -property_value: IAO:0000589 "ureteral valve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015420 ! ureteral valve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002665 ! -property_value: IAO:0000589 "hilar portion of hepatic duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015423 ! hilar portion of hepatic duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002758 ! -property_value: IAO:0000589 "levator auris longus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015430 ! levator auris longus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002766 ! -property_value: IAO:0000589 "accessory olfactory bulb mitral cell layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015432 ! accessory olfactory bulb mitral cell layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002862 ! -property_value: IAO:0000589 "blood vessel external elastic membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015433 ! blood vessel external elastic membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002938 ! -property_value: IAO:0000589 "anterior lingual gland duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015445 ! anterior lingual gland duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003028 ! -property_value: IAO:0000589 "subcutaneous lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015453 ! subcutaneous lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003029 ! -property_value: IAO:0000589 "pancreatic fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015454 ! pancreatic fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003035 ! -property_value: IAO:0000589 "accessory hepatic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015455 ! accessory hepatic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003063 ! -property_value: IAO:0000589 "mediastinal fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015458 ! mediastinal fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003074 ! -property_value: IAO:0000589 "splenic lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015469 ! splenic lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003068 ! -property_value: IAO:0000589 "tracheobronchial lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015472 ! tracheobronchial lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003087 ! -property_value: IAO:0000589 "axilla skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015474 ! axilla skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003090 ! -property_value: IAO:0000589 "nose skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015476 ! nose skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003091 ! -property_value: IAO:0000589 "axillary fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015477 ! axillary fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003093 ! -property_value: IAO:0000589 "scrotum skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015479 ! scrotum skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003095 ! -property_value: IAO:0000589 "proper hepatic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015480 ! proper hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003096 ! -property_value: IAO:0000589 "left hepatic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015481 ! left hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003097 ! -property_value: IAO:0000589 "right hepatic artery (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015482 ! right hepatic artery -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003105 ! -property_value: IAO:0000589 "epidermis of metapodial pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015484 ! epidermis of metapodial pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003108 ! -property_value: IAO:0000589 "choledocho-duodenal junction (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015485 ! choledocho-duodenal junction -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003111 ! -property_value: IAO:0000589 "sural nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015488 ! sural nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000579 ! -property_value: IAO:0000589 "cranial or facial muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015789 ! cranial or facial muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003120 ! -property_value: IAO:0000589 "autopod skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015790 ! autopod skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003123 ! -property_value: IAO:0000589 "digit connective tissue (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015791 ! digit connective tissue -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003124 ! -property_value: IAO:0000589 "prostate gland dorsal lobe (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015792 ! prostate gland dorsal lobe -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003129 ! -property_value: IAO:0000589 "induseum griseum (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015793 ! induseum griseum -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003135 ! -property_value: IAO:0000589 "left lung lobar bronchus epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015794 ! left lung lobar bronchus epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003136 ! -property_value: IAO:0000589 "right lung lobar bronchus epitheium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015795 ! right lung lobar bronchus epitheium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003137 ! -property_value: IAO:0000589 "liver blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015796 ! liver blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003150 ! -property_value: IAO:0000589 "taenia tectum of brain (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015800 ! taenia tectum of brain -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003161 ! -property_value: IAO:0000589 "ear epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015807 ! ear epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003162 ! -property_value: IAO:0000589 "eye epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015808 ! eye epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003169 ! -property_value: IAO:0000589 "middle ear epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015813 ! middle ear epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003170 ! -property_value: IAO:0000589 "outer ear epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015814 ! outer ear epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003187 ! -property_value: IAO:0000589 "cerebellum ventricular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015828 ! cerebellum ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003190 ! -property_value: IAO:0000589 "forebrain ventricular layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015829 ! forebrain ventricular layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003204 ! -property_value: IAO:0000589 "foregut epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015833 ! foregut epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003209 ! -property_value: IAO:0000589 "duodenum lamina propria (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015834 ! duodenum lamina propria -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003221 ! -property_value: IAO:0000589 "incisor dental pulp (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015837 ! incisor dental pulp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003222 ! -property_value: IAO:0000589 "molar dental pulp (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015838 ! molar dental pulp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003224 ! -property_value: IAO:0000589 "molar epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015839 ! molar epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003225 ! -property_value: IAO:0000589 "incisor dental lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015840 ! incisor dental lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003226 ! -property_value: IAO:0000589 "molar dental lamina (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015841 ! molar dental lamina -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003227 ! -property_value: IAO:0000589 "incisor enamel organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015842 ! incisor enamel organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003228 ! -property_value: IAO:0000589 "molar enamel organ (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015843 ! molar enamel organ -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003232 ! -property_value: IAO:0000589 "molar dental papilla (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015844 ! molar dental papilla -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003229 ! -property_value: IAO:0000589 "incisor mesenchyme (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015846 ! incisor mesenchyme -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003088 ! -property_value: IAO:0000589 "parotid lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015857 ! parotid lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003072 ! -property_value: IAO:0000589 "hepatic lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015859 ! hepatic lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003071 ! -property_value: IAO:0000589 "gastric lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015863 ! gastric lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003070 ! -property_value: IAO:0000589 "retropharyngeal lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015869 ! retropharyngeal lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003067 ! -property_value: IAO:0000589 "mandibular lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015872 ! mandibular lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003104 ! -property_value: IAO:0000589 "heel skin (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015873 ! heel skin -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003066 ! -property_value: IAO:0000589 "common iliac lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0015878 ! common iliac lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002884 ! -property_value: IAO:0000589 "sciatic lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016374 ! sciatic lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003065 ! -property_value: IAO:0000589 "ileocolic lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016378 ! ileocolic lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003069 ! -property_value: IAO:0000589 "prescapular lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016382 ! prescapular lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003073 ! -property_value: IAO:0000589 "paraaortic lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016386 ! paraaortic lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003092 ! -property_value: IAO:0000589 "auricular lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016390 ! auricular lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003118 ! -property_value: IAO:0000589 "thymic lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016391 ! thymic lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003078 ! -property_value: IAO:0000589 "bronchial lymph node (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016481 ! bronchial lymph node -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002443 ! -property_value: IAO:0000589 "auditory system (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016490 ! auditory system -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003239 ! -property_value: IAO:0000589 "Mullerian tubercle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016505 ! Mullerian tubercle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000916 ! -property_value: IAO:0000589 "parietal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016530 ! parietal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000941 ! -property_value: IAO:0000589 "temporal cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016538 ! temporal cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000913 ! -property_value: IAO:0000589 "occipital cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016540 ! occipital cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001120 ! -property_value: IAO:0000589 "lamina VI of gray matter of spinal cord (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0016577 ! lamina VI of gray matter of spinal cord -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002236 ! -property_value: IAO:0000589 "external thoracic vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0017643 ! external thoracic vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002148 ! -property_value: IAO:0000589 "internal mammary vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0017646 ! internal mammary vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003144 ! -property_value: IAO:0000589 "prevertebral muscle of neck (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0017647 ! prevertebral muscle of neck -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003064 ! -property_value: IAO:0000589 "periovarian fat pad (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0018131 ! periovarian fat pad -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003141 ! -property_value: IAO:0000589 "panniculus carnosus muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0018240 ! panniculus carnosus muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000165 ! -property_value: IAO:0000589 "skeletal musculature (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0018254 ! skeletal musculature -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003250 ! -property_value: IAO:0000589 "female inguinal ring (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0018529 ! female inguinal ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003252 ! -property_value: IAO:0000589 "female superficial inguinal ring (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0018531 ! female superficial inguinal ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003251 ! -property_value: IAO:0000589 "female deep inguinal ring (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0018532 ! female deep inguinal ring -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003178 ! -property_value: IAO:0000589 "tongue papilla epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0019206 ! tongue papilla epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002932 ! -property_value: IAO:0000589 "accessory olfactory bulb external plexiform layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0019289 ! accessory olfactory bulb external plexiform layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002934 ! -property_value: IAO:0000589 "accessory olfactory bulb internal plexiform layer (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0019290 ! accessory olfactory bulb internal plexiform layer -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003174 ! -property_value: IAO:0000589 "sensory organ epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0019304 ! sensory organ epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003171 ! -property_value: IAO:0000589 "nose epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0019306 ! nose epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003109 ! -property_value: IAO:0000589 "intraorbital lacrimal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0019324 ! intraorbital lacrimal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003110 ! -property_value: IAO:0000589 "exorbital lacrimal gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0019325 ! exorbital lacrimal gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001033 ! -property_value: IAO:0000589 "accessory XI nerve nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0020358 ! accessory XI nerve nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001226 ! -property_value: IAO:0000589 "auricular blood vessel (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0020550 ! auricular blood vessel -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002928 ! -property_value: IAO:0000589 "posterior amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0022229 ! posterior amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000920 ! -property_value: IAO:0000589 "retrohippocampal region (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0022230 ! retrohippocampal region -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000915 ! -property_value: IAO:0000589 "secondary visual cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0022232 ! secondary visual cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002448 ! -property_value: IAO:0000589 "parietal serous membrane (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0022351 ! parietal serous membrane -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003003 ! -property_value: IAO:0000589 "spiral prominence of cochlear duct (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0028194 ! spiral prominence of cochlear duct -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002917 ! -property_value: IAO:0000589 "amygdalohippocampal area (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0034673 ! amygdalohippocampal area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000909 ! -property_value: IAO:0000589 "insular cortex (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0034891 ! insular cortex -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001164 ! -property_value: IAO:0000589 "sacral sympathetic nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0034902 ! sacral sympathetic nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002918 ! -property_value: IAO:0000589 "amygdalopiriform transition area (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0034989 ! amygdalopiriform transition area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002920 ! -property_value: IAO:0000589 "anterior cortical amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0034991 ! anterior cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002929 ! -property_value: IAO:0000589 "posterolateral cortical amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0034999 ! posterolateral cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002930 ! -property_value: IAO:0000589 "posteromedial cortical amygdaloid nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035001 ! posteromedial cortical amygdaloid nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0000943 ! -property_value: IAO:0000589 "temporal cortex association area (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035013 ! temporal cortex association area -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001041 ! -property_value: IAO:0000589 "inferior olive, beta nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035019 ! inferior olive, beta nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001151 ! -property_value: IAO:0000589 "left vagus X nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035020 ! left vagus X nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001152 ! -property_value: IAO:0000589 "right vagus X nerve trunk (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035021 ! right vagus X nerve trunk -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001179 ! -property_value: IAO:0000589 "trunk of segmental spinal nerve (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035022 ! trunk of segmental spinal nerve -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002756 ! -property_value: IAO:0000589 "lateral spinal nucleus (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035024 ! lateral spinal nucleus -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003024 ! -property_value: IAO:0000589 "abdominal oblique muscle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035032 ! abdominal oblique muscle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003163 ! -property_value: IAO:0000589 "eyelid epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035034 ! eyelid epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003172 ! -property_value: IAO:0000589 "naris epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035036 ! naris epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003220 ! -property_value: IAO:0000589 "jaw epithelium (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035037 ! jaw epithelium -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002103 ! -property_value: IAO:0000589 "dorsal cerebral vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035151 ! dorsal cerebral vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0001232 ! -property_value: IAO:0000589 "nerve innervating pinna (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035648 ! nerve innervating pinna -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002116 ! -property_value: IAO:0000589 "anterior facial vein (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035675 ! anterior facial vein -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003017 ! -property_value: IAO:0000589 "apical region of heart ventricle (post-embryonic mouse)" xsd:string -intersection_of: UBERON:0035837 ! apical region of heart ventricle -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0003079 ! -property_value: IAO:0000589 "skin of snout (post-embryonic mouse)" xsd:string -intersection_of: UBERON:1000015 ! skin of snout -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002900 ! -property_value: IAO:0000589 "Zymbal's gland (post-embryonic mouse)" xsd:string -intersection_of: UBERON:1000022 ! Zymbal's gland -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:0002487 ! -property_value: IAO:0000589 "spleen pulp (post-embryonic mouse)" xsd:string -intersection_of: UBERON:1000023 ! spleen pulp -intersection_of: part_of NCBITaxon:10090 - -[Term] -id: MA:ENTITY -name: MA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-ma.owl b/src/ontology/bridge/uberon-bridge-to-ma.owl index 8f87c4cb98..31f69a99b2 100644 --- a/src/ontology/bridge/uberon-bridge-to-ma.owl +++ b/src/ontology/bridge/uberon-bridge-to-ma.owl @@ -7,21 +7,14 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - George Gkoutos - Terry Hayamizu - Uberon editors - Taxonomic equivalence axioms between adult moouse anatomy and Uberon - Uberon bridge to ma - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + George Gkoutos + Terry Hayamizu + Uberon editors + Taxonomic equivalence axioms between adult mouse anatomy and Uberon. + Uberon bridge to ma @@ -37,18 +30,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -57,215 +38,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -282,42 +73,13 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -346,8 +108,7 @@ - anatomical entity (post-embryonic mouse) - MA:0000001 + anatomical entity (post-embryonic mouse) @@ -366,8 +127,7 @@ - gray matter of spinal cord (post-embryonic mouse) - MA:0000002 + gray matter of spinal cord (post-embryonic mouse) @@ -386,8 +146,7 @@ - anatomical system (post-embryonic mouse) - MA:0000003 + anatomical system (post-embryonic mouse) @@ -406,8 +165,7 @@ - trunk (post-embryonic mouse) - MA:0000004 + trunk (post-embryonic mouse) @@ -426,8 +184,7 @@ - serous sac (post-embryonic mouse) - MA:0000005 + serous sac (post-embryonic mouse) @@ -446,8 +203,7 @@ - craniocervical region (post-embryonic mouse) - MA:0000006 + craniocervical region (post-embryonic mouse) @@ -466,8 +222,7 @@ - limb (post-embryonic mouse) - MA:0000007 + limb (post-embryonic mouse) @@ -486,8 +241,7 @@ - post-anal tail (post-embryonic mouse) - MA:0000008 + post-anal tail (post-embryonic mouse) @@ -506,8 +260,7 @@ - adipose tissue (post-embryonic mouse) - MA:0000009 + adipose tissue (post-embryonic mouse) @@ -526,8 +279,7 @@ - cardiovascular system (post-embryonic mouse) - MA:0000010 + cardiovascular system (post-embryonic mouse) @@ -546,8 +298,7 @@ - connective tissue (post-embryonic mouse) - MA:0000011 + connective tissue (post-embryonic mouse) @@ -566,8 +317,7 @@ - endocrine system (post-embryonic mouse) - MA:0000012 + endocrine system (post-embryonic mouse) @@ -586,8 +336,7 @@ - hemolymphoid system (post-embryonic mouse) - MA:0000013 + hemolymphoid system (post-embryonic mouse) @@ -606,8 +355,7 @@ - integumental system (post-embryonic mouse) - MA:0000014 + integumental system (post-embryonic mouse) @@ -626,8 +374,7 @@ - muscle organ (post-embryonic mouse) - MA:0000015 + muscle organ (post-embryonic mouse) @@ -646,8 +393,7 @@ - nervous system (post-embryonic mouse) - MA:0000016 + nervous system (post-embryonic mouse) @@ -666,8 +412,7 @@ - sense organ (post-embryonic mouse) - MA:0000017 + sense organ (post-embryonic mouse) @@ -686,8 +431,7 @@ - skeletal system (post-embryonic mouse) - MA:0000018 + skeletal system (post-embryonic mouse) @@ -706,8 +450,7 @@ - viscus (post-embryonic mouse) - MA:0000019 + viscus (post-embryonic mouse) @@ -726,8 +469,7 @@ - dorsal trunk (post-embryonic mouse) - MA:0000020 + dorsal trunk (post-embryonic mouse) @@ -746,8 +488,7 @@ - abdominal segment of trunk (post-embryonic mouse) - MA:0000021 + abdominal segment of trunk (post-embryonic mouse) @@ -766,8 +507,7 @@ - thoracic segment of trunk (post-embryonic mouse) - MA:0000022 + thoracic segment of trunk (post-embryonic mouse) @@ -786,8 +526,7 @@ - head (post-embryonic mouse) - MA:0000023 + head (post-embryonic mouse) @@ -806,8 +545,7 @@ - neck (post-embryonic mouse) - MA:0000024 + neck (post-embryonic mouse) @@ -826,8 +564,7 @@ - forelimb (post-embryonic mouse) - MA:0000025 + forelimb (post-embryonic mouse) @@ -846,8 +583,7 @@ - hindlimb (post-embryonic mouse) - MA:0000026 + hindlimb (post-embryonic mouse) @@ -866,8 +602,7 @@ - lower back (post-embryonic mouse) - MA:0000027 + lower back (post-embryonic mouse) @@ -886,8 +621,7 @@ - dorsal thoracic segment of trunk (post-embryonic mouse) - MA:0000028 + dorsal thoracic segment of trunk (post-embryonic mouse) @@ -906,8 +640,7 @@ - abdomen (post-embryonic mouse) - MA:0000029 + abdomen (post-embryonic mouse) @@ -926,8 +659,7 @@ - pelvic region of trunk (post-embryonic mouse) - MA:0000030 + pelvic region of trunk (post-embryonic mouse) @@ -946,8 +678,7 @@ - chest (post-embryonic mouse) - MA:0000031 + chest (post-embryonic mouse) @@ -966,8 +697,7 @@ - thoracic cavity (post-embryonic mouse) - MA:0000032 + thoracic cavity (post-embryonic mouse) @@ -986,8 +716,7 @@ - arm (post-embryonic mouse) - MA:0000033 + arm (post-embryonic mouse) @@ -1006,8 +735,7 @@ - forelimb zeugopod (post-embryonic mouse) - MA:0000034 + forelimb zeugopod (post-embryonic mouse) @@ -1026,8 +754,7 @@ - forelimb stylopod (post-embryonic mouse) - MA:0000035 + forelimb stylopod (post-embryonic mouse) @@ -1046,8 +773,7 @@ - elbow (post-embryonic mouse) - MA:0000036 + elbow (post-embryonic mouse) @@ -1066,8 +792,7 @@ - manus (post-embryonic mouse) - MA:0000037 + manus (post-embryonic mouse) @@ -1086,8 +811,7 @@ - shoulder (post-embryonic mouse) - MA:0000038 + shoulder (post-embryonic mouse) @@ -1106,8 +830,7 @@ - carpal region (post-embryonic mouse) - MA:0000039 + carpal region (post-embryonic mouse) @@ -1126,8 +849,7 @@ - carpal skeleton (post-embryonic mouse) - MA:0000040 + carpal skeleton (post-embryonic mouse) @@ -1146,8 +868,7 @@ - manual digit (post-embryonic mouse) - MA:0000041 + manual digit (post-embryonic mouse) @@ -1166,8 +887,7 @@ - metacarpus region (post-embryonic mouse) - MA:0000042 + metacarpus region (post-embryonic mouse) @@ -1186,8 +906,7 @@ - tarsal region (post-embryonic mouse) - MA:0000043 + tarsal region (post-embryonic mouse) @@ -1206,8 +925,7 @@ - pes (post-embryonic mouse) - MA:0000044 + pes (post-embryonic mouse) @@ -1226,8 +944,7 @@ - hip (post-embryonic mouse) - MA:0000045 + hip (post-embryonic mouse) @@ -1246,8 +963,7 @@ - knee (post-embryonic mouse) - MA:0000046 + knee (post-embryonic mouse) @@ -1266,8 +982,7 @@ - leg (post-embryonic mouse) - MA:0000047 + leg (post-embryonic mouse) @@ -1286,8 +1001,7 @@ - pedal digit (post-embryonic mouse) - MA:0000048 + pedal digit (post-embryonic mouse) @@ -1306,8 +1020,7 @@ - metatarsus region (post-embryonic mouse) - MA:0000049 + metatarsus region (post-embryonic mouse) @@ -1326,8 +1039,7 @@ - tarsal skeleton (post-embryonic mouse) - MA:0000050 + tarsal skeleton (post-embryonic mouse) @@ -1346,8 +1058,7 @@ - hindlimb zeugopod (post-embryonic mouse) - MA:0000051 + hindlimb zeugopod (post-embryonic mouse) @@ -1366,8 +1077,7 @@ - hindlimb stylopod (post-embryonic mouse) - MA:0000052 + hindlimb stylopod (post-embryonic mouse) @@ -1386,8 +1096,7 @@ - pericardial cavity (post-embryonic mouse) - MA:0000053 + pericardial cavity (post-embryonic mouse) @@ -1406,8 +1115,7 @@ - peritoneal cavity (post-embryonic mouse) - MA:0000054 + peritoneal cavity (post-embryonic mouse) @@ -1426,8 +1134,7 @@ - pleural cavity (post-embryonic mouse) - MA:0000055 + pleural cavity (post-embryonic mouse) @@ -1446,8 +1153,7 @@ - brown adipose tissue (post-embryonic mouse) - MA:0000057 + brown adipose tissue (post-embryonic mouse) @@ -1466,8 +1172,7 @@ - white adipose tissue (post-embryonic mouse) - MA:0000058 + white adipose tissue (post-embryonic mouse) @@ -1486,8 +1191,7 @@ - blood (post-embryonic mouse) - MA:0000059 + blood (post-embryonic mouse) @@ -1506,8 +1210,7 @@ - blood vessel (post-embryonic mouse) - MA:0000060 + blood vessel (post-embryonic mouse) @@ -1526,8 +1229,7 @@ - arterial blood vessel (post-embryonic mouse) - MA:0000061 + arterial blood vessel (post-embryonic mouse) @@ -1546,8 +1248,7 @@ - aorta (post-embryonic mouse) - MA:0000062 + aorta (post-embryonic mouse) @@ -1566,8 +1267,7 @@ - arteriole (post-embryonic mouse) - MA:0000063 + arteriole (post-embryonic mouse) @@ -1586,8 +1286,7 @@ - artery (post-embryonic mouse) - MA:0000064 + artery (post-embryonic mouse) @@ -1606,8 +1305,7 @@ - capillary (post-embryonic mouse) - MA:0000065 + capillary (post-embryonic mouse) @@ -1626,8 +1324,7 @@ - venous blood vessel (post-embryonic mouse) - MA:0000066 + venous blood vessel (post-embryonic mouse) @@ -1646,8 +1343,7 @@ - vein (post-embryonic mouse) - MA:0000067 + vein (post-embryonic mouse) @@ -1666,8 +1362,7 @@ - vena cava (post-embryonic mouse) - MA:0000068 + vena cava (post-embryonic mouse) @@ -1686,8 +1381,7 @@ - venous plexus (post-embryonic mouse) - MA:0000069 + venous plexus (post-embryonic mouse) @@ -1706,8 +1400,7 @@ - venous sinus (post-embryonic mouse) - MA:0000070 + venous sinus (post-embryonic mouse) @@ -1726,8 +1419,7 @@ - venule (post-embryonic mouse) - MA:0000071 + venule (post-embryonic mouse) @@ -1746,8 +1438,7 @@ - heart (post-embryonic mouse) - MA:0000072 + heart (post-embryonic mouse) @@ -1766,8 +1457,7 @@ - cardiac atrium (post-embryonic mouse) - MA:0000073 + cardiac atrium (post-embryonic mouse) @@ -1786,8 +1476,7 @@ - left cardiac atrium (post-embryonic mouse) - MA:0000074 + left cardiac atrium (post-embryonic mouse) @@ -1806,8 +1495,7 @@ - right cardiac atrium (post-embryonic mouse) - MA:0000075 + right cardiac atrium (post-embryonic mouse) @@ -1826,8 +1514,7 @@ - endocardium (post-embryonic mouse) - MA:0000076 + endocardium (post-embryonic mouse) @@ -1846,8 +1533,7 @@ - endocardium of atrium (post-embryonic mouse) - MA:0000077 + endocardium of atrium (post-embryonic mouse) @@ -1866,8 +1552,7 @@ - endocardial cushion (post-embryonic mouse) - MA:0000078 + endocardial cushion (post-embryonic mouse) @@ -1886,8 +1571,7 @@ - endocardium of ventricle (post-embryonic mouse) - MA:0000079 + endocardium of ventricle (post-embryonic mouse) @@ -1906,8 +1590,7 @@ - myocardial layer (post-embryonic mouse) - MA:0000080 + myocardial layer (post-embryonic mouse) @@ -1926,8 +1609,7 @@ - myocardium of atrium (post-embryonic mouse) - MA:0000081 + myocardium of atrium (post-embryonic mouse) @@ -1946,8 +1628,7 @@ - myocardium of ventricle (post-embryonic mouse) - MA:0000082 + myocardium of ventricle (post-embryonic mouse) @@ -1966,8 +1647,7 @@ - cardiac septum (post-embryonic mouse) - MA:0000083 + cardiac septum (post-embryonic mouse) @@ -1986,8 +1666,7 @@ - interatrial septum (post-embryonic mouse) - MA:0000084 + interatrial septum (post-embryonic mouse) @@ -2006,8 +1685,7 @@ - interventricular septum (post-embryonic mouse) - MA:0000085 + interventricular septum (post-embryonic mouse) @@ -2026,8 +1704,7 @@ - cardiac valve (post-embryonic mouse) - MA:0000086 + cardiac valve (post-embryonic mouse) @@ -2046,8 +1723,7 @@ - aortic valve (post-embryonic mouse) - MA:0000087 + aortic valve (post-embryonic mouse) @@ -2066,8 +1742,7 @@ - mitral valve (post-embryonic mouse) - MA:0000088 + mitral valve (post-embryonic mouse) @@ -2086,8 +1761,7 @@ - pulmonary valve (post-embryonic mouse) - MA:0000089 + pulmonary valve (post-embryonic mouse) @@ -2106,8 +1780,7 @@ - tricuspid valve (post-embryonic mouse) - MA:0000090 + tricuspid valve (post-embryonic mouse) @@ -2126,8 +1799,7 @@ - cardiac ventricle (post-embryonic mouse) - MA:0000091 + cardiac ventricle (post-embryonic mouse) @@ -2146,8 +1818,7 @@ - heart left ventricle (post-embryonic mouse) - MA:0000092 + heart left ventricle (post-embryonic mouse) @@ -2166,8 +1837,7 @@ - heart right ventricle (post-embryonic mouse) - MA:0000093 + heart right ventricle (post-embryonic mouse) @@ -2186,8 +1856,7 @@ - conducting system of heart (post-embryonic mouse) - MA:0000094 + conducting system of heart (post-embryonic mouse) @@ -2206,8 +1875,7 @@ - atrioventricular node (post-embryonic mouse) - MA:0000095 + atrioventricular node (post-embryonic mouse) @@ -2226,8 +1894,7 @@ - cardiac Purkinje fiber (post-embryonic mouse) - MA:0000096 + cardiac Purkinje fiber (post-embryonic mouse) @@ -2246,8 +1913,7 @@ - sinoatrial node (post-embryonic mouse) - MA:0000097 + sinoatrial node (post-embryonic mouse) @@ -2266,8 +1932,7 @@ - mesocardium (post-embryonic mouse) - MA:0000098 + mesocardium (post-embryonic mouse) @@ -2286,8 +1951,7 @@ - pericardium (post-embryonic mouse) - MA:0000099 + pericardium (post-embryonic mouse) @@ -2306,8 +1970,7 @@ - outflow tract (post-embryonic mouse) - MA:0000100 + outflow tract (post-embryonic mouse) @@ -2326,8 +1989,7 @@ - outflow tract aortic component (post-embryonic mouse) - MA:0000101 + outflow tract aortic component (post-embryonic mouse) @@ -2346,8 +2008,7 @@ - outflow tract pulmonary component (post-embryonic mouse) - MA:0000102 + outflow tract pulmonary component (post-embryonic mouse) @@ -2366,8 +2027,7 @@ - truncus arteriosus (post-embryonic mouse) - MA:0000103 + truncus arteriosus (post-embryonic mouse) @@ -2386,8 +2046,7 @@ - cartilage tissue (post-embryonic mouse) - MA:0000104 + cartilage tissue (post-embryonic mouse) @@ -2406,8 +2065,7 @@ - cellular cartilage (post-embryonic mouse) - MA:0000105 + cellular cartilage (post-embryonic mouse) @@ -2426,8 +2084,7 @@ - costal cartilage (post-embryonic mouse) - MA:0000106 + costal cartilage (post-embryonic mouse) @@ -2446,8 +2103,7 @@ - elastic cartilage tissue (post-embryonic mouse) - MA:0000107 + elastic cartilage tissue (post-embryonic mouse) @@ -2466,8 +2122,7 @@ - fibrocartilage (post-embryonic mouse) - MA:0000108 + fibrocartilage (post-embryonic mouse) @@ -2486,8 +2141,7 @@ - hyaline cartilage tissue (post-embryonic mouse) - MA:0000109 + hyaline cartilage tissue (post-embryonic mouse) @@ -2506,8 +2160,7 @@ - intervertebral disk (post-embryonic mouse) - MA:0000110 + intervertebral disk (post-embryonic mouse) @@ -2526,8 +2179,7 @@ - annulus fibrosus disci intervertebralis (post-embryonic mouse) - MA:0000111 + annulus fibrosus disci intervertebralis (post-embryonic mouse) @@ -2546,8 +2198,7 @@ - nucleus pulposus (post-embryonic mouse) - MA:0000112 + nucleus pulposus (post-embryonic mouse) @@ -2566,8 +2217,7 @@ - ligament (post-embryonic mouse) - MA:0000113 + ligament (post-embryonic mouse) @@ -2586,8 +2236,7 @@ - synovial membrane of synovial joint (post-embryonic mouse) - MA:0000114 + synovial membrane of synovial joint (post-embryonic mouse) @@ -2606,8 +2255,7 @@ - tendon (post-embryonic mouse) - MA:0000115 + tendon (post-embryonic mouse) @@ -2626,8 +2274,7 @@ - adrenal gland (post-embryonic mouse) - MA:0000116 + adrenal gland (post-embryonic mouse) @@ -2646,8 +2293,7 @@ - adrenal gland capsule (post-embryonic mouse) - MA:0000117 + adrenal gland capsule (post-embryonic mouse) @@ -2666,8 +2312,7 @@ - adrenal cortex (post-embryonic mouse) - MA:0000118 + adrenal cortex (post-embryonic mouse) @@ -2686,8 +2331,7 @@ - adrenal medulla (post-embryonic mouse) - MA:0000119 + adrenal medulla (post-embryonic mouse) @@ -2706,8 +2350,7 @@ - pancreas (post-embryonic mouse) - MA:0000120 + pancreas (post-embryonic mouse) @@ -2726,8 +2369,7 @@ - body of pancreas (post-embryonic mouse) - MA:0000121 + body of pancreas (post-embryonic mouse) @@ -2746,8 +2388,7 @@ - head of pancreas (post-embryonic mouse) - MA:0000122 + head of pancreas (post-embryonic mouse) @@ -2766,8 +2407,7 @@ - tail of pancreas (post-embryonic mouse) - MA:0000123 + tail of pancreas (post-embryonic mouse) @@ -2786,8 +2426,7 @@ - pancreatic duct (post-embryonic mouse) - MA:0000124 + pancreatic duct (post-embryonic mouse) @@ -2806,8 +2445,7 @@ - dorsal pancreatic duct (post-embryonic mouse) - MA:0000125 + dorsal pancreatic duct (post-embryonic mouse) @@ -2826,8 +2464,7 @@ - ventral pancreatic duct (post-embryonic mouse) - MA:0000126 + ventral pancreatic duct (post-embryonic mouse) @@ -2846,8 +2483,7 @@ - islet of Langerhans (post-embryonic mouse) - MA:0000127 + islet of Langerhans (post-embryonic mouse) @@ -2866,8 +2502,7 @@ - parathyroid gland (post-embryonic mouse) - MA:0000128 + parathyroid gland (post-embryonic mouse) @@ -2886,8 +2521,7 @@ - thyroid gland (post-embryonic mouse) - MA:0000129 + thyroid gland (post-embryonic mouse) @@ -2906,8 +2540,7 @@ - thyroglossal duct (post-embryonic mouse) - MA:0000130 + thyroglossal duct (post-embryonic mouse) @@ -2926,8 +2559,7 @@ - lobe of thyroid gland (post-embryonic mouse) - MA:0000131 + lobe of thyroid gland (post-embryonic mouse) @@ -2946,8 +2578,7 @@ - thyroid gland medulla (post-embryonic mouse) - MA:0000132 + thyroid gland medulla (post-embryonic mouse) @@ -2966,8 +2597,7 @@ - cerebral hemisphere (post-embryonic mouse) - MA:0000133 + cerebral hemisphere (post-embryonic mouse) @@ -2986,8 +2616,7 @@ - bone marrow (post-embryonic mouse) - MA:0000134 + bone marrow (post-embryonic mouse) @@ -3006,8 +2635,7 @@ - bronchial-associated lymphoid tissue (post-embryonic mouse) - MA:0000135 + bronchial-associated lymphoid tissue (post-embryonic mouse) @@ -3026,8 +2654,7 @@ - gut-associated lymphoid tissue (post-embryonic mouse) - MA:0000136 + gut-associated lymphoid tissue (post-embryonic mouse) @@ -3046,8 +2673,7 @@ - Peyer's patch (post-embryonic mouse) - MA:0000137 + Peyer's patch (post-embryonic mouse) @@ -3066,8 +2692,7 @@ - lymphatic vessel (post-embryonic mouse) - MA:0000138 + lymphatic vessel (post-embryonic mouse) @@ -3086,8 +2711,7 @@ - lymph node (post-embryonic mouse) - MA:0000139 + lymph node (post-embryonic mouse) @@ -3106,8 +2730,7 @@ - mucosa-associated lymphoid tissue (post-embryonic mouse) - MA:0000140 + mucosa-associated lymphoid tissue (post-embryonic mouse) @@ -3126,8 +2749,7 @@ - spleen (post-embryonic mouse) - MA:0000141 + spleen (post-embryonic mouse) @@ -3146,8 +2768,7 @@ - thymus (post-embryonic mouse) - MA:0000142 + thymus (post-embryonic mouse) @@ -3166,8 +2787,7 @@ - tonsil (post-embryonic mouse) - MA:0000143 + tonsil (post-embryonic mouse) @@ -3186,8 +2806,7 @@ - gland of integumental system (post-embryonic mouse) - MA:0000144 + gland of integumental system (post-embryonic mouse) @@ -3206,8 +2825,7 @@ - mammary gland (post-embryonic mouse) - MA:0000145 + mammary gland (post-embryonic mouse) @@ -3226,8 +2844,7 @@ - skin gland (post-embryonic mouse) - MA:0000146 + skin gland (post-embryonic mouse) @@ -3246,8 +2863,7 @@ - skin apocrine gland (post-embryonic mouse) - MA:0000147 + skin apocrine gland (post-embryonic mouse) @@ -3266,8 +2882,7 @@ - skin mucous gland (post-embryonic mouse) - MA:0000148 + skin mucous gland (post-embryonic mouse) @@ -3286,8 +2901,7 @@ - skin sebaceous gland (post-embryonic mouse) - MA:0000149 + skin sebaceous gland (post-embryonic mouse) @@ -3306,8 +2920,7 @@ - sweat gland (post-embryonic mouse) - MA:0000150 + sweat gland (post-embryonic mouse) @@ -3326,8 +2939,7 @@ - zone of skin (post-embryonic mouse) - MA:0000151 + zone of skin (post-embryonic mouse) @@ -3346,8 +2958,7 @@ - dermis (post-embryonic mouse) - MA:0000152 + dermis (post-embryonic mouse) @@ -3366,8 +2977,7 @@ - skin epidermis (post-embryonic mouse) - MA:0000153 + skin epidermis (post-embryonic mouse) @@ -3386,8 +2996,7 @@ - hair follicle (post-embryonic mouse) - MA:0000154 + hair follicle (post-embryonic mouse) @@ -3406,8 +3015,7 @@ - strand of hair (post-embryonic mouse) - MA:0000155 + strand of hair (post-embryonic mouse) @@ -3426,8 +3034,7 @@ - cortex of hair (post-embryonic mouse) - MA:0000156 + cortex of hair (post-embryonic mouse) @@ -3446,8 +3053,7 @@ - cuticle of hair (post-embryonic mouse) - MA:0000157 + cuticle of hair (post-embryonic mouse) @@ -3466,8 +3072,7 @@ - hair medulla (post-embryonic mouse) - MA:0000158 + hair medulla (post-embryonic mouse) @@ -3486,8 +3091,7 @@ - hair shaft (post-embryonic mouse) - MA:0000159 + hair shaft (post-embryonic mouse) @@ -3506,8 +3110,7 @@ - coat hair follicle (post-embryonic mouse) - MA:0000160 + coat hair follicle (post-embryonic mouse) @@ -3526,8 +3129,7 @@ - bulb of hair follicle (post-embryonic mouse) - MA:0000161 + bulb of hair follicle (post-embryonic mouse) @@ -3546,8 +3148,7 @@ - hair root sheath (post-embryonic mouse) - MA:0000162 + hair root sheath (post-embryonic mouse) @@ -3566,8 +3167,7 @@ - vibrissa unit (post-embryonic mouse) - MA:0000163 + vibrissa unit (post-embryonic mouse) @@ -3586,30 +3186,7 @@ - myocardium (post-embryonic mouse) - MA:0000164 - - - - - - - - - - - - - - - - - - - - musculature (post-embryonic mouse) - skeletal musculature (post-embryonic mouse) - MA:0000165 + myocardium (post-embryonic mouse) @@ -3628,8 +3205,7 @@ - smooth muscle tissue (post-embryonic mouse) - MA:0000166 + smooth muscle tissue (post-embryonic mouse) @@ -3648,8 +3224,7 @@ - central nervous system (post-embryonic mouse) - MA:0000167 + central nervous system (post-embryonic mouse) @@ -3668,8 +3243,7 @@ - brain (post-embryonic mouse) - MA:0000168 + brain (post-embryonic mouse) @@ -3688,8 +3262,7 @@ - brainstem (post-embryonic mouse) - MA:0000169 + brainstem (post-embryonic mouse) @@ -3708,8 +3281,7 @@ - forebrain (post-embryonic mouse) - MA:0000170 + forebrain (post-embryonic mouse) @@ -3728,8 +3300,7 @@ - diencephalon (post-embryonic mouse) - MA:0000171 + diencephalon (post-embryonic mouse) @@ -3748,8 +3319,7 @@ - epithalamus (post-embryonic mouse) - MA:0000172 + epithalamus (post-embryonic mouse) @@ -3768,8 +3338,7 @@ - hypothalamus (post-embryonic mouse) - MA:0000173 + hypothalamus (post-embryonic mouse) @@ -3788,8 +3357,7 @@ - mammillary body (post-embryonic mouse) - MA:0000174 + mammillary body (post-embryonic mouse) @@ -3808,8 +3376,7 @@ - pineal body (post-embryonic mouse) - MA:0000175 + pineal body (post-embryonic mouse) @@ -3828,8 +3395,7 @@ - pituitary gland (post-embryonic mouse) - MA:0000176 + pituitary gland (post-embryonic mouse) @@ -3848,8 +3414,7 @@ - adenohypophysis (post-embryonic mouse) - MA:0000177 + adenohypophysis (post-embryonic mouse) @@ -3868,8 +3433,7 @@ - neurohypophysis (post-embryonic mouse) - MA:0000178 + neurohypophysis (post-embryonic mouse) @@ -3888,8 +3452,7 @@ - dorsal plus ventral thalamus (post-embryonic mouse) - MA:0000179 + dorsal plus ventral thalamus (post-embryonic mouse) @@ -3908,8 +3471,7 @@ - dorsal thalamus (post-embryonic mouse) - MA:0000180 + dorsal thalamus (post-embryonic mouse) @@ -3928,8 +3490,7 @@ - ventral thalamus (post-embryonic mouse) - MA:0000181 + ventral thalamus (post-embryonic mouse) @@ -3948,8 +3509,7 @@ - third ventricle (post-embryonic mouse) - MA:0000182 + third ventricle (post-embryonic mouse) @@ -3968,8 +3528,7 @@ - telencephalon (post-embryonic mouse) - MA:0000183 + telencephalon (post-embryonic mouse) @@ -3988,8 +3547,7 @@ - collection of basal ganglia (post-embryonic mouse) - MA:0000184 + collection of basal ganglia (post-embryonic mouse) @@ -4008,8 +3566,7 @@ - cerebral cortex (post-embryonic mouse) - MA:0000185 + cerebral cortex (post-embryonic mouse) @@ -4028,8 +3585,7 @@ - layer of neocortex (post-embryonic mouse) - MA:0000186 + layer of neocortex (post-embryonic mouse) @@ -4048,8 +3604,7 @@ - corpus callosum (post-embryonic mouse) - MA:0000188 + corpus callosum (post-embryonic mouse) @@ -4068,8 +3623,7 @@ - hippocampal formation (post-embryonic mouse) - MA:0000189 + hippocampal formation (post-embryonic mouse) @@ -4088,8 +3642,7 @@ - dentate gyrus of hippocampal formation (post-embryonic mouse) - MA:0000190 + dentate gyrus of hippocampal formation (post-embryonic mouse) @@ -4108,8 +3661,7 @@ - Ammon's horn (post-embryonic mouse) - MA:0000191 + Ammon's horn (post-embryonic mouse) @@ -4128,8 +3680,7 @@ - telencephalic ventricle (post-embryonic mouse) - MA:0000192 + telencephalic ventricle (post-embryonic mouse) @@ -4148,8 +3699,7 @@ - olfactory cortex (post-embryonic mouse) - MA:0000193 + olfactory cortex (post-embryonic mouse) @@ -4168,8 +3718,7 @@ - olfactory bulb (post-embryonic mouse) - MA:0000194 + olfactory bulb (post-embryonic mouse) @@ -4188,8 +3737,7 @@ - hindbrain (post-embryonic mouse) - MA:0000195 + hindbrain (post-embryonic mouse) @@ -4208,8 +3756,7 @@ - fourth ventricle (post-embryonic mouse) - MA:0000196 + fourth ventricle (post-embryonic mouse) @@ -4228,8 +3775,7 @@ - metencephalon (post-embryonic mouse) - MA:0000197 + metencephalon (post-embryonic mouse) @@ -4248,8 +3794,7 @@ - cerebellum (post-embryonic mouse) - MA:0000198 + cerebellum (post-embryonic mouse) @@ -4268,8 +3813,7 @@ - cerebellar cortex (post-embryonic mouse) - MA:0000199 + cerebellar cortex (post-embryonic mouse) @@ -4288,8 +3832,7 @@ - cerebellar hemisphere (post-embryonic mouse) - MA:0000200 + cerebellar hemisphere (post-embryonic mouse) @@ -4308,8 +3851,7 @@ - cerebellar layer (post-embryonic mouse) - MA:0000201 + cerebellar layer (post-embryonic mouse) @@ -4328,8 +3870,7 @@ - cerebellar vermis (post-embryonic mouse) - MA:0000202 + cerebellar vermis (post-embryonic mouse) @@ -4348,8 +3889,7 @@ - nucleus of cerebellar nuclear complex (post-embryonic mouse) - MA:0000203 + nucleus of cerebellar nuclear complex (post-embryonic mouse) @@ -4368,8 +3908,7 @@ - pons (post-embryonic mouse) - MA:0000204 + pons (post-embryonic mouse) @@ -4388,8 +3927,7 @@ - myelencephalon (post-embryonic mouse) - MA:0000205 + myelencephalon (post-embryonic mouse) @@ -4408,8 +3946,7 @@ - medulla oblongata (post-embryonic mouse) - MA:0000206 + medulla oblongata (post-embryonic mouse) @@ -4428,8 +3965,7 @@ - midbrain (post-embryonic mouse) - MA:0000207 + midbrain (post-embryonic mouse) @@ -4448,8 +3984,7 @@ - midbrain cerebral aqueduct (post-embryonic mouse) - MA:0000208 + midbrain cerebral aqueduct (post-embryonic mouse) @@ -4468,8 +4003,7 @@ - central gray substance of midbrain (post-embryonic mouse) - MA:0000209 + central gray substance of midbrain (post-embryonic mouse) @@ -4488,8 +4022,7 @@ - substantia nigra (post-embryonic mouse) - MA:0000210 + substantia nigra (post-embryonic mouse) @@ -4508,8 +4041,7 @@ - midbrain tectum (post-embryonic mouse) - MA:0000211 + midbrain tectum (post-embryonic mouse) @@ -4528,8 +4060,7 @@ - midbrain tegmentum (post-embryonic mouse) - MA:0000212 + midbrain tegmentum (post-embryonic mouse) @@ -4548,8 +4079,7 @@ - cranial ganglion (post-embryonic mouse) - MA:0000213 + cranial ganglion (post-embryonic mouse) @@ -4568,8 +4098,7 @@ - cranial ganglion (post-embryonic mouse) - MA:0000214 + cranial ganglion (post-embryonic mouse) @@ -4588,8 +4117,7 @@ - cranial nerve (post-embryonic mouse) - MA:0000215 + cranial nerve (post-embryonic mouse) @@ -4608,8 +4136,7 @@ - spinal cord (post-embryonic mouse) - MA:0000216 + spinal cord (post-embryonic mouse) @@ -4628,8 +4155,7 @@ - nerve (post-embryonic mouse) - MA:0000217 + nerve (post-embryonic mouse) @@ -4648,8 +4174,7 @@ - peripheral nervous system (post-embryonic mouse) - MA:0000218 + peripheral nervous system (post-embryonic mouse) @@ -4668,8 +4193,7 @@ - autonomic nervous system (post-embryonic mouse) - MA:0000219 + autonomic nervous system (post-embryonic mouse) @@ -4688,8 +4212,7 @@ - autonomic ganglion (post-embryonic mouse) - MA:0000220 + autonomic ganglion (post-embryonic mouse) @@ -4708,8 +4231,7 @@ - autonomic nerve plexus (post-embryonic mouse) - MA:0000221 + autonomic nerve plexus (post-embryonic mouse) @@ -4728,8 +4250,7 @@ - enteric nervous system (post-embryonic mouse) - MA:0000222 + enteric nervous system (post-embryonic mouse) @@ -4748,8 +4269,7 @@ - parasympathetic nervous system (post-embryonic mouse) - MA:0000223 + parasympathetic nervous system (post-embryonic mouse) @@ -4768,8 +4288,7 @@ - parasympathetic nerve (post-embryonic mouse) - MA:0000224 + parasympathetic nerve (post-embryonic mouse) @@ -4788,8 +4307,7 @@ - sympathetic nervous system (post-embryonic mouse) - MA:0000225 + sympathetic nervous system (post-embryonic mouse) @@ -4808,8 +4326,7 @@ - sympathetic ganglion (post-embryonic mouse) - MA:0000226 + sympathetic ganglion (post-embryonic mouse) @@ -4828,8 +4345,7 @@ - sympathetic nerve trunk (post-embryonic mouse) - MA:0000227 + sympathetic nerve trunk (post-embryonic mouse) @@ -4848,8 +4364,7 @@ - nerve (post-embryonic mouse) - MA:0000228 + nerve (post-embryonic mouse) @@ -4868,8 +4383,7 @@ - nerve trunk (post-embryonic mouse) - MA:0000229 + nerve trunk (post-embryonic mouse) @@ -4888,8 +4402,7 @@ - dorsal root ganglion (post-embryonic mouse) - MA:0000231 + dorsal root ganglion (post-embryonic mouse) @@ -4908,8 +4421,7 @@ - dorsal root ganglion (post-embryonic mouse) - MA:0000232 + dorsal root ganglion (post-embryonic mouse) @@ -4928,8 +4440,7 @@ - spinal nerve (post-embryonic mouse) - MA:0000233 + spinal nerve (post-embryonic mouse) @@ -4948,8 +4459,7 @@ - segmental spinal nerve (post-embryonic mouse) - MA:0000234 + segmental spinal nerve (post-embryonic mouse) @@ -4968,8 +4478,7 @@ - spinal nerve plexus (post-embryonic mouse) - MA:0000235 + spinal nerve plexus (post-embryonic mouse) @@ -4988,8 +4497,7 @@ - ear (post-embryonic mouse) - MA:0000236 + ear (post-embryonic mouse) @@ -5008,8 +4516,7 @@ - internal ear (post-embryonic mouse) - MA:0000237 + internal ear (post-embryonic mouse) @@ -5028,8 +4535,7 @@ - bony labyrinth (post-embryonic mouse) - MA:0000238 + bony labyrinth (post-embryonic mouse) @@ -5048,8 +4554,7 @@ - osseus cochlea (post-embryonic mouse) - MA:0000239 + osseus cochlea (post-embryonic mouse) @@ -5068,8 +4573,7 @@ - cochlea (post-embryonic mouse) - MA:0000240 + cochlea (post-embryonic mouse) @@ -5088,8 +4592,7 @@ - endolymphatic appendage (post-embryonic mouse) - MA:0000241 + endolymphatic appendage (post-embryonic mouse) @@ -5108,8 +4611,7 @@ - membranous labyrinth (post-embryonic mouse) - MA:0000242 + membranous labyrinth (post-embryonic mouse) @@ -5128,8 +4630,7 @@ - cochlear duct of membranous labyrinth (post-embryonic mouse) - MA:0000243 + cochlear duct of membranous labyrinth (post-embryonic mouse) @@ -5148,8 +4649,7 @@ - ductus reuniens (post-embryonic mouse) - MA:0000244 + ductus reuniens (post-embryonic mouse) @@ -5168,8 +4668,7 @@ - vestibular labyrinth (post-embryonic mouse) - MA:0000245 + vestibular labyrinth (post-embryonic mouse) @@ -5188,8 +4687,7 @@ - saccule of membranous labyrinth (post-embryonic mouse) - MA:0000246 + saccule of membranous labyrinth (post-embryonic mouse) @@ -5208,8 +4706,7 @@ - utricle of membranous labyrinth (post-embryonic mouse) - MA:0000247 + utricle of membranous labyrinth (post-embryonic mouse) @@ -5228,8 +4725,7 @@ - perilymphatic channel (post-embryonic mouse) - MA:0000248 + perilymphatic channel (post-embryonic mouse) @@ -5248,8 +4744,7 @@ - semicircular canal (post-embryonic mouse) - MA:0000249 + semicircular canal (post-embryonic mouse) @@ -5268,8 +4763,7 @@ - osseus semicircular canal (post-embryonic mouse) - MA:0000250 + osseus semicircular canal (post-embryonic mouse) @@ -5288,8 +4782,7 @@ - semicircular duct (post-embryonic mouse) - MA:0000251 + semicircular duct (post-embryonic mouse) @@ -5308,8 +4801,7 @@ - bony otic capsule (post-embryonic mouse) - MA:0000252 + bony otic capsule (post-embryonic mouse) @@ -5328,8 +4820,7 @@ - middle ear (post-embryonic mouse) - MA:0000253 + middle ear (post-embryonic mouse) @@ -5348,8 +4839,7 @@ - auditory ossicle bone (post-embryonic mouse) - MA:0000254 + auditory ossicle bone (post-embryonic mouse) @@ -5368,8 +4858,7 @@ - pharyngotympanic tube (post-embryonic mouse) - MA:0000255 + pharyngotympanic tube (post-embryonic mouse) @@ -5388,8 +4877,7 @@ - muscle of auditory ossicle (post-embryonic mouse) - MA:0000256 + muscle of auditory ossicle (post-embryonic mouse) @@ -5408,8 +4896,7 @@ - tympanic membrane (post-embryonic mouse) - MA:0000257 + tympanic membrane (post-embryonic mouse) @@ -5428,8 +4915,7 @@ - external ear (post-embryonic mouse) - MA:0000258 + external ear (post-embryonic mouse) @@ -5448,8 +4934,7 @@ - pinna (post-embryonic mouse) - MA:0000259 + pinna (post-embryonic mouse) @@ -5468,8 +4953,7 @@ - external acoustic meatus (post-embryonic mouse) - MA:0000260 + external acoustic meatus (post-embryonic mouse) @@ -5488,8 +4972,7 @@ - camera-type eye (post-embryonic mouse) - MA:0000261 + camera-type eye (post-embryonic mouse) @@ -5508,8 +4991,7 @@ - anterior chamber of eyeball (post-embryonic mouse) - MA:0000262 + anterior chamber of eyeball (post-embryonic mouse) @@ -5528,8 +5010,7 @@ - optic choroid (post-embryonic mouse) - MA:0000263 + optic choroid (post-embryonic mouse) @@ -5548,8 +5029,7 @@ - ciliary body (post-embryonic mouse) - MA:0000264 + ciliary body (post-embryonic mouse) @@ -5568,8 +5048,7 @@ - conjunctiva (post-embryonic mouse) - MA:0000265 + conjunctiva (post-embryonic mouse) @@ -5588,8 +5067,7 @@ - cornea (post-embryonic mouse) - MA:0000266 + cornea (post-embryonic mouse) @@ -5608,8 +5086,7 @@ - eye gland (post-embryonic mouse) - MA:0000267 + eye gland (post-embryonic mouse) @@ -5628,8 +5105,7 @@ - eyelid (post-embryonic mouse) - MA:0000268 + eyelid (post-embryonic mouse) @@ -5648,8 +5124,7 @@ - eyelid muscle (post-embryonic mouse) - MA:0000269 + eyelid muscle (post-embryonic mouse) @@ -5668,8 +5143,7 @@ - eyelid tarsus (post-embryonic mouse) - MA:0000270 + eyelid tarsus (post-embryonic mouse) @@ -5688,8 +5162,7 @@ - eye muscle (post-embryonic mouse) - MA:0000271 + eye muscle (post-embryonic mouse) @@ -5708,8 +5181,7 @@ - hyaloid cavity (post-embryonic mouse) - MA:0000272 + hyaloid cavity (post-embryonic mouse) @@ -5728,8 +5200,7 @@ - iris (post-embryonic mouse) - MA:0000273 + iris (post-embryonic mouse) @@ -5748,8 +5219,7 @@ - lacrimal apparatus (post-embryonic mouse) - MA:0000274 + lacrimal apparatus (post-embryonic mouse) @@ -5768,8 +5238,7 @@ - lens of camera-type eye (post-embryonic mouse) - MA:0000275 + lens of camera-type eye (post-embryonic mouse) @@ -5788,8 +5257,7 @@ - retina (post-embryonic mouse) - MA:0000276 + retina (post-embryonic mouse) @@ -5808,8 +5276,7 @@ - retinal neural layer (post-embryonic mouse) - MA:0000277 + retinal neural layer (post-embryonic mouse) @@ -5828,8 +5295,7 @@ - optic disc (post-embryonic mouse) - MA:0000278 + optic disc (post-embryonic mouse) @@ -5848,8 +5314,7 @@ - pigmented layer of retina (post-embryonic mouse) - MA:0000279 + pigmented layer of retina (post-embryonic mouse) @@ -5868,8 +5333,7 @@ - sclera (post-embryonic mouse) - MA:0000280 + sclera (post-embryonic mouse) @@ -5888,8 +5352,7 @@ - nose (post-embryonic mouse) - MA:0000281 + nose (post-embryonic mouse) @@ -5908,8 +5371,7 @@ - naris (post-embryonic mouse) - MA:0000282 + naris (post-embryonic mouse) @@ -5928,8 +5390,7 @@ - nasal capsule (post-embryonic mouse) - MA:0000283 + nasal capsule (post-embryonic mouse) @@ -5948,8 +5409,7 @@ - nasal cavity (post-embryonic mouse) - MA:0000284 + nasal cavity (post-embryonic mouse) @@ -5968,8 +5428,7 @@ - nasal septum (post-embryonic mouse) - MA:0000285 + nasal septum (post-embryonic mouse) @@ -5988,8 +5447,7 @@ - turbinate bone (post-embryonic mouse) - MA:0000286 + turbinate bone (post-embryonic mouse) @@ -6008,8 +5466,7 @@ - olfactory gland (post-embryonic mouse) - MA:0000287 + olfactory gland (post-embryonic mouse) @@ -6028,8 +5485,7 @@ - vomeronasal organ (post-embryonic mouse) - MA:0000289 + vomeronasal organ (post-embryonic mouse) @@ -6048,8 +5504,7 @@ - appendicular skeleton (post-embryonic mouse) - MA:0000290 + appendicular skeleton (post-embryonic mouse) @@ -6068,8 +5523,7 @@ - girdle bone/zone (post-embryonic mouse) - MA:0000291 + girdle bone/zone (post-embryonic mouse) @@ -6088,8 +5542,7 @@ - pectoral girdle bone (post-embryonic mouse) - MA:0000292 + pectoral girdle bone (post-embryonic mouse) @@ -6108,8 +5561,7 @@ - pelvic girdle bone/zone (post-embryonic mouse) - MA:0000293 + pelvic girdle bone/zone (post-embryonic mouse) @@ -6128,8 +5580,7 @@ - mesopodium bone (post-embryonic mouse) - MA:0000295 + mesopodium bone (post-embryonic mouse) @@ -6148,8 +5599,7 @@ - carpal bone (post-embryonic mouse) - MA:0000296 + carpal bone (post-embryonic mouse) @@ -6168,8 +5618,7 @@ - tarsal bone (post-embryonic mouse) - MA:0000297 + tarsal bone (post-embryonic mouse) @@ -6188,8 +5637,7 @@ - limb long bone (post-embryonic mouse) - MA:0000298 + limb long bone (post-embryonic mouse) @@ -6208,8 +5656,7 @@ - forelimb long bone (post-embryonic mouse) - MA:0000299 + forelimb long bone (post-embryonic mouse) @@ -6228,8 +5675,7 @@ - hindlimb long bone (post-embryonic mouse) - MA:0000300 + hindlimb long bone (post-embryonic mouse) @@ -6248,8 +5694,7 @@ - metapodium bone (post-embryonic mouse) - MA:0000301 + metapodium bone (post-embryonic mouse) @@ -6268,8 +5713,7 @@ - metacarpal bone (post-embryonic mouse) - MA:0000302 + metacarpal bone (post-embryonic mouse) @@ -6288,8 +5732,7 @@ - metatarsal bone (post-embryonic mouse) - MA:0000303 + metatarsal bone (post-embryonic mouse) @@ -6308,8 +5751,7 @@ - phalanx (post-embryonic mouse) - MA:0000304 + phalanx (post-embryonic mouse) @@ -6328,8 +5770,7 @@ - phalanx of pes (post-embryonic mouse) - MA:0000305 + phalanx of pes (post-embryonic mouse) @@ -6348,8 +5789,7 @@ - phalanx of manus (post-embryonic mouse) - MA:0000306 + phalanx of manus (post-embryonic mouse) @@ -6368,8 +5808,7 @@ - axial skeleton plus cranial skeleton (post-embryonic mouse) - MA:0000308 + axial skeleton plus cranial skeleton (post-embryonic mouse) @@ -6388,8 +5827,7 @@ - vertebra (post-embryonic mouse) - MA:0000309 + vertebra (post-embryonic mouse) @@ -6408,8 +5846,7 @@ - caudal vertebra (post-embryonic mouse) - MA:0000310 + caudal vertebra (post-embryonic mouse) @@ -6428,8 +5865,7 @@ - cervical vertebra (post-embryonic mouse) - MA:0000311 + cervical vertebra (post-embryonic mouse) @@ -6448,8 +5884,7 @@ - lumbar vertebra (post-embryonic mouse) - MA:0000312 + lumbar vertebra (post-embryonic mouse) @@ -6468,8 +5903,7 @@ - sacral vertebra (post-embryonic mouse) - MA:0000313 + sacral vertebra (post-embryonic mouse) @@ -6488,8 +5922,7 @@ - thoracic vertebra (post-embryonic mouse) - MA:0000314 + thoracic vertebra (post-embryonic mouse) @@ -6508,8 +5941,7 @@ - rib (post-embryonic mouse) - MA:0000315 + rib (post-embryonic mouse) @@ -6528,8 +5960,7 @@ - cranium (post-embryonic mouse) - MA:0000316 + cranium (post-embryonic mouse) @@ -6548,8 +5979,7 @@ - neurocranium (post-embryonic mouse) - MA:0000317 + neurocranium (post-embryonic mouse) @@ -6568,8 +5998,7 @@ - facial skeleton (post-embryonic mouse) - MA:0000318 + facial skeleton (post-embryonic mouse) @@ -6588,8 +6017,7 @@ - skeletal joint (post-embryonic mouse) - MA:0000319 + skeletal joint (post-embryonic mouse) @@ -6608,8 +6036,7 @@ - cartilaginous joint (post-embryonic mouse) - MA:0000320 + cartilaginous joint (post-embryonic mouse) @@ -6628,8 +6055,7 @@ - fibrous joint (post-embryonic mouse) - MA:0000321 + fibrous joint (post-embryonic mouse) @@ -6648,8 +6074,7 @@ - synovial joint (post-embryonic mouse) - MA:0000322 + synovial joint (post-embryonic mouse) @@ -6668,8 +6093,7 @@ - alimentary part of gastrointestinal system (post-embryonic mouse) - MA:0000323 + alimentary part of gastrointestinal system (post-embryonic mouse) @@ -6688,8 +6112,7 @@ - hepatobiliary system (post-embryonic mouse) - MA:0000324 + hepatobiliary system (post-embryonic mouse) @@ -6708,8 +6131,7 @@ - renal system (post-embryonic mouse) - MA:0000325 + renal system (post-embryonic mouse) @@ -6728,8 +6150,7 @@ - reproductive system (post-embryonic mouse) - MA:0000326 + reproductive system (post-embryonic mouse) @@ -6748,8 +6169,7 @@ - respiratory system (post-embryonic mouse) - MA:0000327 + respiratory system (post-embryonic mouse) @@ -6768,8 +6188,7 @@ - intestine (post-embryonic mouse) - MA:0000328 + intestine (post-embryonic mouse) @@ -6788,8 +6207,7 @@ - anal region (post-embryonic mouse) - MA:0000329 + anal region (post-embryonic mouse) @@ -6808,8 +6226,7 @@ - anal canal (post-embryonic mouse) - MA:0000330 + anal canal (post-embryonic mouse) @@ -6828,8 +6245,7 @@ - anus (post-embryonic mouse) - MA:0000331 + anus (post-embryonic mouse) @@ -6848,8 +6264,7 @@ - ileocecal junction (post-embryonic mouse) - MA:0000332 + ileocecal junction (post-embryonic mouse) @@ -6868,8 +6283,7 @@ - large intestine (post-embryonic mouse) - MA:0000333 + large intestine (post-embryonic mouse) @@ -6888,8 +6302,7 @@ - caecum (post-embryonic mouse) - MA:0000334 + caecum (post-embryonic mouse) @@ -6908,8 +6321,7 @@ - colon (post-embryonic mouse) - MA:0000335 + colon (post-embryonic mouse) @@ -6928,8 +6340,7 @@ - rectum (post-embryonic mouse) - MA:0000336 + rectum (post-embryonic mouse) @@ -6948,8 +6359,7 @@ - small intestine (post-embryonic mouse) - MA:0000337 + small intestine (post-embryonic mouse) @@ -6968,8 +6378,7 @@ - duodenum (post-embryonic mouse) - MA:0000338 + duodenum (post-embryonic mouse) @@ -6988,8 +6397,7 @@ - ileum (post-embryonic mouse) - MA:0000339 + ileum (post-embryonic mouse) @@ -7008,8 +6416,7 @@ - jejunum (post-embryonic mouse) - MA:0000340 + jejunum (post-embryonic mouse) @@ -7028,8 +6435,7 @@ - mouth (post-embryonic mouse) - MA:0000341 + mouth (post-embryonic mouse) @@ -7048,8 +6454,7 @@ - gingiva (post-embryonic mouse) - MA:0000342 + gingiva (post-embryonic mouse) @@ -7068,8 +6473,7 @@ - lip (post-embryonic mouse) - MA:0000343 + lip (post-embryonic mouse) @@ -7088,8 +6492,7 @@ - oral epithelium (post-embryonic mouse) - MA:0000344 + oral epithelium (post-embryonic mouse) @@ -7108,8 +6511,7 @@ - saliva-secreting gland (post-embryonic mouse) - MA:0000346 + saliva-secreting gland (post-embryonic mouse) @@ -7128,8 +6530,7 @@ - tongue (post-embryonic mouse) - MA:0000347 + tongue (post-embryonic mouse) @@ -7148,8 +6549,7 @@ - calcareous tooth (post-embryonic mouse) - MA:0000348 + calcareous tooth (post-embryonic mouse) @@ -7168,8 +6568,7 @@ - incisor tooth (post-embryonic mouse) - MA:0000349 + incisor tooth (post-embryonic mouse) @@ -7188,8 +6587,7 @@ - molar tooth (post-embryonic mouse) - MA:0000350 + molar tooth (post-embryonic mouse) @@ -7208,8 +6606,7 @@ - oropharynx (post-embryonic mouse) - MA:0000351 + oropharynx (post-embryonic mouse) @@ -7228,8 +6625,7 @@ - esophagus (post-embryonic mouse) - MA:0000352 + esophagus (post-embryonic mouse) @@ -7248,8 +6644,7 @@ - stomach (post-embryonic mouse) - MA:0000353 + stomach (post-embryonic mouse) @@ -7268,8 +6663,7 @@ - bile duct (post-embryonic mouse) - MA:0000354 + bile duct (post-embryonic mouse) @@ -7288,8 +6682,7 @@ - cystic duct (post-embryonic mouse) - MA:0000355 + cystic duct (post-embryonic mouse) @@ -7308,8 +6701,7 @@ - gallbladder (post-embryonic mouse) - MA:0000356 + gallbladder (post-embryonic mouse) @@ -7328,8 +6720,7 @@ - hepatic duct (post-embryonic mouse) - MA:0000357 + hepatic duct (post-embryonic mouse) @@ -7348,8 +6739,7 @@ - liver (post-embryonic mouse) - MA:0000358 + liver (post-embryonic mouse) @@ -7368,8 +6758,7 @@ - bare area of liver (post-embryonic mouse) - MA:0000359 + bare area of liver (post-embryonic mouse) @@ -7388,8 +6777,7 @@ - lobe of liver (post-embryonic mouse) - MA:0000360 + lobe of liver (post-embryonic mouse) @@ -7408,8 +6796,7 @@ - left lobe of liver (post-embryonic mouse) - MA:0000361 + left lobe of liver (post-embryonic mouse) @@ -7428,8 +6815,7 @@ - right lobe of liver (post-embryonic mouse) - MA:0000363 + right lobe of liver (post-embryonic mouse) @@ -7448,8 +6834,7 @@ - caudate lobe of liver (post-embryonic mouse) - MA:0000364 + caudate lobe of liver (post-embryonic mouse) @@ -7468,8 +6853,7 @@ - quadrate lobe of liver (post-embryonic mouse) - MA:0000365 + quadrate lobe of liver (post-embryonic mouse) @@ -7488,8 +6872,7 @@ - liver parenchyma (post-embryonic mouse) - MA:0000366 + liver parenchyma (post-embryonic mouse) @@ -7508,30 +6891,7 @@ - hepatic sinusoid (post-embryonic mouse) - MA:0000367 - - - - - - - - - - - - - - - - - - - - adult mammalian kidney (post-embryonic mouse) - kidney (post-embryonic mouse) - MA:0000368 + hepatic sinusoid (post-embryonic mouse) @@ -7550,8 +6910,7 @@ - kidney calyx (post-embryonic mouse) - MA:0000369 + kidney calyx (post-embryonic mouse) @@ -7570,8 +6929,7 @@ - kidney capsule (post-embryonic mouse) - MA:0000370 + kidney capsule (post-embryonic mouse) @@ -7590,8 +6948,7 @@ - collecting duct of renal tubule (post-embryonic mouse) - MA:0000371 + collecting duct of renal tubule (post-embryonic mouse) @@ -7610,8 +6967,7 @@ - cortex of kidney (post-embryonic mouse) - MA:0000372 + cortex of kidney (post-embryonic mouse) @@ -7630,8 +6986,7 @@ - renal medulla (post-embryonic mouse) - MA:0000373 + renal medulla (post-embryonic mouse) @@ -7650,8 +7005,7 @@ - renal pelvis (post-embryonic mouse) - MA:0000374 + renal pelvis (post-embryonic mouse) @@ -7670,8 +7024,7 @@ - nephron (post-embryonic mouse) - MA:0000375 + nephron (post-embryonic mouse) @@ -7690,8 +7043,7 @@ - renal corpuscle (post-embryonic mouse) - MA:0000376 + renal corpuscle (post-embryonic mouse) @@ -7710,8 +7062,7 @@ - nephron tubule (post-embryonic mouse) - MA:0000377 + nephron tubule (post-embryonic mouse) @@ -7730,8 +7081,7 @@ - ureter (post-embryonic mouse) - MA:0000378 + ureter (post-embryonic mouse) @@ -7750,8 +7100,7 @@ - urethra (post-embryonic mouse) - MA:0000379 + urethra (post-embryonic mouse) @@ -7770,8 +7119,7 @@ - urinary bladder (post-embryonic mouse) - MA:0000380 + urinary bladder (post-embryonic mouse) @@ -7790,8 +7138,7 @@ - female reproductive system (post-embryonic mouse) - MA:0000381 + female reproductive system (post-embryonic mouse) @@ -7810,8 +7157,7 @@ - clitoris (post-embryonic mouse) - MA:0000382 + clitoris (post-embryonic mouse) @@ -7830,8 +7176,7 @@ - female reproductive gland (post-embryonic mouse) - MA:0000383 + female reproductive gland (post-embryonic mouse) @@ -7850,8 +7195,7 @@ - ovary (post-embryonic mouse) - MA:0000384 + ovary (post-embryonic mouse) @@ -7870,8 +7214,7 @@ - fallopian tube (post-embryonic mouse) - MA:0000385 + fallopian tube (post-embryonic mouse) @@ -7890,8 +7233,7 @@ - placenta (post-embryonic mouse) - MA:0000386 + placenta (post-embryonic mouse) @@ -7910,8 +7252,7 @@ - os clitoris (post-embryonic mouse) - MA:0000387 + os clitoris (post-embryonic mouse) @@ -7930,8 +7271,7 @@ - uterus (post-embryonic mouse) - MA:0000389 + uterus (post-embryonic mouse) @@ -7950,8 +7290,7 @@ - endometrium (post-embryonic mouse) - MA:0000390 + endometrium (post-embryonic mouse) @@ -7970,8 +7309,7 @@ - myometrium (post-embryonic mouse) - MA:0000391 + myometrium (post-embryonic mouse) @@ -7990,8 +7328,7 @@ - uterine cervix (post-embryonic mouse) - MA:0000392 + uterine cervix (post-embryonic mouse) @@ -8010,8 +7347,7 @@ - uterine horn (post-embryonic mouse) - MA:0000393 + uterine horn (post-embryonic mouse) @@ -8030,8 +7366,7 @@ - vagina (post-embryonic mouse) - MA:0000394 + vagina (post-embryonic mouse) @@ -8050,8 +7385,7 @@ - mammalian vulva (post-embryonic mouse) - MA:0000395 + mammalian vulva (post-embryonic mouse) @@ -8070,8 +7404,7 @@ - male reproductive system (post-embryonic mouse) - MA:0000396 + male reproductive system (post-embryonic mouse) @@ -8090,8 +7423,7 @@ - epididymis (post-embryonic mouse) - MA:0000397 + epididymis (post-embryonic mouse) @@ -8110,8 +7442,7 @@ - efferent duct (post-embryonic mouse) - MA:0000398 + efferent duct (post-embryonic mouse) @@ -8130,8 +7461,7 @@ - male reproductive gland (post-embryonic mouse) - MA:0000399 + male reproductive gland (post-embryonic mouse) @@ -8150,8 +7480,7 @@ - ampullary gland (post-embryonic mouse) - MA:0000400 + ampullary gland (post-embryonic mouse) @@ -8170,8 +7499,7 @@ - bulbo-urethral gland (post-embryonic mouse) - MA:0000401 + bulbo-urethral gland (post-embryonic mouse) @@ -8190,8 +7518,7 @@ - coagulating gland (post-embryonic mouse) - MA:0000402 + coagulating gland (post-embryonic mouse) @@ -8210,8 +7537,7 @@ - male preputial gland (post-embryonic mouse) - MA:0000403 + male preputial gland (post-embryonic mouse) @@ -8230,8 +7556,7 @@ - prostate gland (post-embryonic mouse) - MA:0000404 + prostate gland (post-embryonic mouse) @@ -8250,8 +7575,7 @@ - vesicular gland (post-embryonic mouse) - MA:0000405 + vesicular gland (post-embryonic mouse) @@ -8270,8 +7594,7 @@ - os penis (post-embryonic mouse) - MA:0000406 + os penis (post-embryonic mouse) @@ -8290,8 +7613,7 @@ - prepuce of penis (post-embryonic mouse) - MA:0000407 + prepuce of penis (post-embryonic mouse) @@ -8310,8 +7632,7 @@ - penis (post-embryonic mouse) - MA:0000408 + penis (post-embryonic mouse) @@ -8330,8 +7651,7 @@ - scrotum (post-embryonic mouse) - MA:0000409 + scrotum (post-embryonic mouse) @@ -8350,8 +7670,7 @@ - seminal vesicle (post-embryonic mouse) - MA:0000410 + seminal vesicle (post-embryonic mouse) @@ -8370,8 +7689,7 @@ - testis (post-embryonic mouse) - MA:0000411 + testis (post-embryonic mouse) @@ -8390,8 +7708,7 @@ - seminiferous tubule of testis (post-embryonic mouse) - MA:0000412 + seminiferous tubule of testis (post-embryonic mouse) @@ -8410,8 +7727,7 @@ - vas deferens (post-embryonic mouse) - MA:0000413 + vas deferens (post-embryonic mouse) @@ -8430,8 +7746,7 @@ - larynx (post-embryonic mouse) - MA:0000414 + larynx (post-embryonic mouse) @@ -8450,8 +7765,7 @@ - lung (post-embryonic mouse) - MA:0000415 + lung (post-embryonic mouse) @@ -8470,8 +7784,7 @@ - alveolar system (post-embryonic mouse) - MA:0000416 + alveolar system (post-embryonic mouse) @@ -8490,8 +7803,7 @@ - pulmonary alveolar duct (post-embryonic mouse) - MA:0000417 + pulmonary alveolar duct (post-embryonic mouse) @@ -8510,8 +7822,7 @@ - alveolar sac (post-embryonic mouse) - MA:0000418 + alveolar sac (post-embryonic mouse) @@ -8530,8 +7841,7 @@ - alveolar atrium (post-embryonic mouse) - MA:0000419 + alveolar atrium (post-embryonic mouse) @@ -8550,8 +7860,7 @@ - alveolus of lung (post-embryonic mouse) - MA:0000420 + alveolus of lung (post-embryonic mouse) @@ -8570,8 +7879,7 @@ - interalveolar septum (post-embryonic mouse) - MA:0000421 + interalveolar septum (post-embryonic mouse) @@ -8590,8 +7898,7 @@ - bronchiole (post-embryonic mouse) - MA:0000422 + bronchiole (post-embryonic mouse) @@ -8610,8 +7917,7 @@ - respiratory bronchiole (post-embryonic mouse) - MA:0000423 + respiratory bronchiole (post-embryonic mouse) @@ -8630,8 +7936,7 @@ - terminal bronchiole (post-embryonic mouse) - MA:0000424 + terminal bronchiole (post-embryonic mouse) @@ -8650,8 +7955,7 @@ - left lung (post-embryonic mouse) - MA:0000425 + left lung (post-embryonic mouse) @@ -8670,8 +7974,7 @@ - right lung (post-embryonic mouse) - MA:0000426 + right lung (post-embryonic mouse) @@ -8690,8 +7993,7 @@ - right lung accessory lobe (post-embryonic mouse) - MA:0000427 + right lung accessory lobe (post-embryonic mouse) @@ -8710,8 +8012,7 @@ - lower lobe of right lung (post-embryonic mouse) - MA:0000428 + lower lobe of right lung (post-embryonic mouse) @@ -8730,8 +8031,7 @@ - upper lobe of right lung (post-embryonic mouse) - MA:0000429 + upper lobe of right lung (post-embryonic mouse) @@ -8750,8 +8050,7 @@ - middle lobe of right lung (post-embryonic mouse) - MA:0000430 + middle lobe of right lung (post-embryonic mouse) @@ -8770,8 +8069,7 @@ - paranasal sinus (post-embryonic mouse) - MA:0000431 + paranasal sinus (post-embryonic mouse) @@ -8790,8 +8088,7 @@ - chordate pharynx (post-embryonic mouse) - MA:0000432 + chordate pharynx (post-embryonic mouse) @@ -8810,8 +8107,7 @@ - pleura (post-embryonic mouse) - MA:0000433 + pleura (post-embryonic mouse) @@ -8830,8 +8126,7 @@ - proximo-distal subdivision of respiratory tract (post-embryonic mouse) - MA:0000434 + proximo-distal subdivision of respiratory tract (post-embryonic mouse) @@ -8850,8 +8145,7 @@ - lower respiratory tract (post-embryonic mouse) - MA:0000435 + lower respiratory tract (post-embryonic mouse) @@ -8870,8 +8164,7 @@ - bronchus (post-embryonic mouse) - MA:0000436 + bronchus (post-embryonic mouse) @@ -8890,8 +8183,7 @@ - lobar bronchus (post-embryonic mouse) - MA:0000437 + lobar bronchus (post-embryonic mouse) @@ -8910,8 +8202,7 @@ - main bronchus (post-embryonic mouse) - MA:0000438 + main bronchus (post-embryonic mouse) @@ -8930,8 +8221,7 @@ - segmental bronchus (post-embryonic mouse) - MA:0000439 + segmental bronchus (post-embryonic mouse) @@ -8950,8 +8240,7 @@ - terminal bronchus (post-embryonic mouse) - MA:0000440 + terminal bronchus (post-embryonic mouse) @@ -8970,8 +8259,7 @@ - trachea (post-embryonic mouse) - MA:0000441 + trachea (post-embryonic mouse) @@ -8990,8 +8278,7 @@ - upper respiratory tract (post-embryonic mouse) - MA:0000442 + upper respiratory tract (post-embryonic mouse) @@ -9010,8 +8297,7 @@ - nasopharynx (post-embryonic mouse) - MA:0000443 + nasopharynx (post-embryonic mouse) @@ -9030,8 +8316,7 @@ - left subhepatic recess (post-embryonic mouse) - MA:0000444 + left subhepatic recess (post-embryonic mouse) @@ -9050,8 +8335,7 @@ - lesser sac (post-embryonic mouse) - MA:0000445 + lesser sac (post-embryonic mouse) @@ -9070,8 +8354,7 @@ - inferior recess of lesser sac (post-embryonic mouse) - MA:0000446 + inferior recess of lesser sac (post-embryonic mouse) @@ -9090,8 +8373,7 @@ - superior recess of lesser sac (post-embryonic mouse) - MA:0000447 + superior recess of lesser sac (post-embryonic mouse) @@ -9110,8 +8392,7 @@ - greater sac (post-embryonic mouse) - MA:0000448 + greater sac (post-embryonic mouse) @@ -9130,8 +8411,7 @@ - peritoneum (post-embryonic mouse) - MA:0000449 + peritoneum (post-embryonic mouse) @@ -9150,8 +8430,7 @@ - right subhepatic recess (post-embryonic mouse) - MA:0000450 + right subhepatic recess (post-embryonic mouse) @@ -9170,8 +8449,7 @@ - elbow joint (post-embryonic mouse) - MA:0000451 + elbow joint (post-embryonic mouse) @@ -9190,8 +8468,7 @@ - manus joint (post-embryonic mouse) - MA:0000452 + manus joint (post-embryonic mouse) @@ -9210,8 +8487,7 @@ - metacarpophalangeal joint (post-embryonic mouse) - MA:0000453 + metacarpophalangeal joint (post-embryonic mouse) @@ -9230,8 +8506,7 @@ - manual digit 1 (post-embryonic mouse) - MA:0000454 + manual digit 1 (post-embryonic mouse) @@ -9250,8 +8525,7 @@ - manual digit 2 (post-embryonic mouse) - MA:0000455 + manual digit 2 (post-embryonic mouse) @@ -9270,8 +8544,7 @@ - manual digit 3 (post-embryonic mouse) - MA:0000456 + manual digit 3 (post-embryonic mouse) @@ -9290,8 +8563,7 @@ - manual digit 4 (post-embryonic mouse) - MA:0000457 + manual digit 4 (post-embryonic mouse) @@ -9310,8 +8582,7 @@ - manual digit 5 (post-embryonic mouse) - MA:0000458 + manual digit 5 (post-embryonic mouse) @@ -9330,8 +8601,7 @@ - glenohumeral joint (post-embryonic mouse) - MA:0000459 + glenohumeral joint (post-embryonic mouse) @@ -9350,8 +8620,7 @@ - wrist joint (post-embryonic mouse) - MA:0000460 + wrist joint (post-embryonic mouse) @@ -9370,8 +8639,7 @@ - radio-carpal joint (post-embryonic mouse) - MA:0000461 + radio-carpal joint (post-embryonic mouse) @@ -9390,8 +8658,7 @@ - distal radio-ulnar joint (post-embryonic mouse) - MA:0000462 + distal radio-ulnar joint (post-embryonic mouse) @@ -9410,8 +8677,7 @@ - ankle joint (post-embryonic mouse) - MA:0000463 + ankle joint (post-embryonic mouse) @@ -9430,8 +8696,7 @@ - pes joint (post-embryonic mouse) - MA:0000464 + pes joint (post-embryonic mouse) @@ -9450,8 +8715,7 @@ - pedal digit 1 (post-embryonic mouse) - MA:0000465 + pedal digit 1 (post-embryonic mouse) @@ -9470,8 +8734,7 @@ - pedal digit 2 (post-embryonic mouse) - MA:0000466 + pedal digit 2 (post-embryonic mouse) @@ -9490,8 +8753,7 @@ - pedal digit 3 (post-embryonic mouse) - MA:0000467 + pedal digit 3 (post-embryonic mouse) @@ -9510,8 +8772,7 @@ - pedal digit 4 (post-embryonic mouse) - MA:0000468 + pedal digit 4 (post-embryonic mouse) @@ -9530,8 +8791,7 @@ - pedal digit 5 (post-embryonic mouse) - MA:0000469 + pedal digit 5 (post-embryonic mouse) @@ -9550,8 +8810,7 @@ - hip joint (post-embryonic mouse) - MA:0000470 + hip joint (post-embryonic mouse) @@ -9570,8 +8829,7 @@ - knee joint (post-embryonic mouse) - MA:0000471 + knee joint (post-embryonic mouse) @@ -9590,8 +8848,7 @@ - abdominal fat pad (post-embryonic mouse) - MA:0000472 + abdominal fat pad (post-embryonic mouse) @@ -9610,8 +8867,7 @@ - subcutaneous adipose tissue (post-embryonic mouse) - MA:0000473 + subcutaneous adipose tissue (post-embryonic mouse) @@ -9630,8 +8886,7 @@ - abdominal aorta (post-embryonic mouse) - MA:0000474 + abdominal aorta (post-embryonic mouse) @@ -9650,8 +8905,7 @@ - arch of aorta (post-embryonic mouse) - MA:0000475 + arch of aorta (post-embryonic mouse) @@ -9670,8 +8924,7 @@ - pair of dorsal aortae (post-embryonic mouse) - MA:0000476 + pair of dorsal aortae (post-embryonic mouse) @@ -9690,8 +8943,7 @@ - common dorsal aorta (post-embryonic mouse) - MA:0000477 + common dorsal aorta (post-embryonic mouse) @@ -9710,8 +8962,7 @@ - left dorsal aorta (post-embryonic mouse) - MA:0000478 + left dorsal aorta (post-embryonic mouse) @@ -9730,8 +8981,7 @@ - right dorsal aorta (post-embryonic mouse) - MA:0000479 + right dorsal aorta (post-embryonic mouse) @@ -9750,8 +9000,7 @@ - posterior vena cava (post-embryonic mouse) - MA:0000480 + posterior vena cava (post-embryonic mouse) @@ -9770,8 +9019,7 @@ - anterior vena cava (post-embryonic mouse) - MA:0000481 + anterior vena cava (post-embryonic mouse) @@ -9790,8 +9038,7 @@ - dorsal mesocardium (post-embryonic mouse) - MA:0000482 + dorsal mesocardium (post-embryonic mouse) @@ -9810,8 +9057,7 @@ - parietal serous pericardium (post-embryonic mouse) - MA:0000483 + parietal serous pericardium (post-embryonic mouse) @@ -9830,8 +9076,7 @@ - visceral serous pericardium (post-embryonic mouse) - MA:0000484 + visceral serous pericardium (post-embryonic mouse) @@ -9850,8 +9095,7 @@ - elastic cartilage tissue (post-embryonic mouse) - MA:0000485 + elastic cartilage tissue (post-embryonic mouse) @@ -9870,8 +9114,7 @@ - white fibrocartilage (post-embryonic mouse) - MA:0000486 + white fibrocartilage (post-embryonic mouse) @@ -9890,8 +9133,7 @@ - articular cartilage of joint (post-embryonic mouse) - MA:0000487 + articular cartilage of joint (post-embryonic mouse) @@ -9910,8 +9152,7 @@ - apex of heart (post-embryonic mouse) - MA:0000488 + apex of heart (post-embryonic mouse) @@ -9930,8 +9171,7 @@ - outflow tract myocardium (post-embryonic mouse) - MA:0000489 + outflow tract myocardium (post-embryonic mouse) @@ -9950,8 +9190,7 @@ - outflow tract endothelium (post-embryonic mouse) - MA:0000490 + outflow tract endothelium (post-embryonic mouse) @@ -9970,8 +9209,7 @@ - outflow tract pericardium (post-embryonic mouse) - MA:0000491 + outflow tract pericardium (post-embryonic mouse) @@ -9990,8 +9228,7 @@ - outflow tract smooth muscle (post-embryonic mouse) - MA:0000492 + outflow tract smooth muscle (post-embryonic mouse) @@ -10010,8 +9247,7 @@ - back blood vessel (post-embryonic mouse) - MA:0000493 + back blood vessel (post-embryonic mouse) @@ -10030,8 +9266,7 @@ - bone of dorsum (post-embryonic mouse) - MA:0000494 + bone of dorsum (post-embryonic mouse) @@ -10050,8 +9285,7 @@ - back connective tissue (post-embryonic mouse) - MA:0000495 + back connective tissue (post-embryonic mouse) @@ -10070,8 +9304,7 @@ - muscle of back (post-embryonic mouse) - MA:0000496 + muscle of back (post-embryonic mouse) @@ -10090,8 +9323,7 @@ - back nerve (post-embryonic mouse) - MA:0000497 + back nerve (post-embryonic mouse) @@ -10110,8 +9342,7 @@ - skin of back (post-embryonic mouse) - MA:0000498 + skin of back (post-embryonic mouse) @@ -10130,8 +9361,7 @@ - lower back muscle (post-embryonic mouse) - MA:0000502 + lower back muscle (post-embryonic mouse) @@ -10150,8 +9380,7 @@ - lower back skin (post-embryonic mouse) - MA:0000504 + lower back skin (post-embryonic mouse) @@ -10170,8 +9399,7 @@ - upper back muscle (post-embryonic mouse) - MA:0000508 + upper back muscle (post-embryonic mouse) @@ -10190,8 +9418,7 @@ - upper back skin (post-embryonic mouse) - MA:0000510 + upper back skin (post-embryonic mouse) @@ -10210,8 +9437,7 @@ - trunk blood vessel (post-embryonic mouse) - MA:0000511 + trunk blood vessel (post-embryonic mouse) @@ -10230,8 +9456,7 @@ - trunk bone (post-embryonic mouse) - MA:0000512 + trunk bone (post-embryonic mouse) @@ -10250,8 +9475,7 @@ - trunk connective tissue (post-embryonic mouse) - MA:0000513 + trunk connective tissue (post-embryonic mouse) @@ -10270,8 +9494,7 @@ - skeletal muscle of trunk (post-embryonic mouse) - MA:0000514 + skeletal muscle of trunk (post-embryonic mouse) @@ -10290,8 +9513,7 @@ - nerve of trunk region (post-embryonic mouse) - MA:0000515 + nerve of trunk region (post-embryonic mouse) @@ -10310,8 +9532,7 @@ - trunk region element (post-embryonic mouse) - MA:0000516 + trunk region element (post-embryonic mouse) @@ -10330,8 +9551,7 @@ - skin of trunk (post-embryonic mouse) - MA:0000517 + skin of trunk (post-embryonic mouse) @@ -10350,8 +9570,7 @@ - abdomen blood vessel (post-embryonic mouse) - MA:0000518 + abdomen blood vessel (post-embryonic mouse) @@ -10370,8 +9589,7 @@ - abdomen connective tissue (post-embryonic mouse) - MA:0000519 + abdomen connective tissue (post-embryonic mouse) @@ -10390,8 +9608,7 @@ - muscle of abdomen (post-embryonic mouse) - MA:0000520 + muscle of abdomen (post-embryonic mouse) @@ -10410,8 +9627,7 @@ - abdomen nerve (post-embryonic mouse) - MA:0000521 + abdomen nerve (post-embryonic mouse) @@ -10430,8 +9646,7 @@ - abdomen element (post-embryonic mouse) - MA:0000522 + abdomen element (post-embryonic mouse) @@ -10450,8 +9665,7 @@ - skin of abdomen (post-embryonic mouse) - MA:0000523 + skin of abdomen (post-embryonic mouse) @@ -10470,8 +9684,7 @@ - abdominal segment blood vessel (post-embryonic mouse) - MA:0000524 + abdominal segment blood vessel (post-embryonic mouse) @@ -10490,8 +9703,7 @@ - abdominal segment bone (post-embryonic mouse) - MA:0000525 + abdominal segment bone (post-embryonic mouse) @@ -10510,8 +9722,7 @@ - abdominal segment connective tissue (post-embryonic mouse) - MA:0000526 + abdominal segment connective tissue (post-embryonic mouse) @@ -10530,8 +9741,7 @@ - abdominal segment muscle (post-embryonic mouse) - MA:0000527 + abdominal segment muscle (post-embryonic mouse) @@ -10550,8 +9760,7 @@ - nerve of abdominal segment (post-embryonic mouse) - MA:0000528 + nerve of abdominal segment (post-embryonic mouse) @@ -10570,8 +9779,7 @@ - abdominal segment element (post-embryonic mouse) - MA:0000529 + abdominal segment element (post-embryonic mouse) @@ -10590,8 +9798,7 @@ - abdominal segment skin (post-embryonic mouse) - MA:0000530 + abdominal segment skin (post-embryonic mouse) @@ -10610,8 +9817,7 @@ - pelvis blood vessel (post-embryonic mouse) - MA:0000531 + pelvis blood vessel (post-embryonic mouse) @@ -10630,8 +9836,7 @@ - bone of pelvis (post-embryonic mouse) - MA:0000532 + bone of pelvis (post-embryonic mouse) @@ -10650,8 +9855,7 @@ - pelvis connective tissue (post-embryonic mouse) - MA:0000533 + pelvis connective tissue (post-embryonic mouse) @@ -10670,8 +9874,7 @@ - muscle of pelvis (post-embryonic mouse) - MA:0000534 + muscle of pelvis (post-embryonic mouse) @@ -10690,8 +9893,7 @@ - gluteal muscle (post-embryonic mouse) - MA:0000535 + gluteal muscle (post-embryonic mouse) @@ -10710,8 +9912,7 @@ - muscle of pelvic girdle (post-embryonic mouse) - MA:0000537 + muscle of pelvic girdle (post-embryonic mouse) @@ -10730,8 +9931,7 @@ - perineal muscle (post-embryonic mouse) - MA:0000538 + perineal muscle (post-embryonic mouse) @@ -10750,8 +9950,7 @@ - pelvis nerve (post-embryonic mouse) - MA:0000542 + pelvis nerve (post-embryonic mouse) @@ -10770,8 +9969,7 @@ - pelvic region element (post-embryonic mouse) - MA:0000543 + pelvic region element (post-embryonic mouse) @@ -10790,8 +9988,7 @@ - female reproductive organ (post-embryonic mouse) - MA:0000544 + female reproductive organ (post-embryonic mouse) @@ -10810,8 +10007,7 @@ - male reproductive organ (post-embryonic mouse) - MA:0000545 + male reproductive organ (post-embryonic mouse) @@ -10830,8 +10026,7 @@ - skin of pelvis (post-embryonic mouse) - MA:0000546 + skin of pelvis (post-embryonic mouse) @@ -10850,8 +10045,7 @@ - chest bone (post-embryonic mouse) - MA:0000547 + chest bone (post-embryonic mouse) @@ -10870,8 +10064,7 @@ - chest muscle (post-embryonic mouse) - MA:0000548 + chest muscle (post-embryonic mouse) @@ -10890,8 +10083,7 @@ - chest blood vessel (post-embryonic mouse) - MA:0000549 + chest blood vessel (post-embryonic mouse) @@ -10910,8 +10102,7 @@ - chest connective tissue (post-embryonic mouse) - MA:0000550 + chest connective tissue (post-embryonic mouse) @@ -10930,8 +10121,7 @@ - chest nerve (post-embryonic mouse) - MA:0000551 + chest nerve (post-embryonic mouse) @@ -10950,8 +10140,7 @@ - chest organ (post-embryonic mouse) - MA:0000552 + chest organ (post-embryonic mouse) @@ -10970,8 +10159,7 @@ - skin of chest (post-embryonic mouse) - MA:0000553 + skin of chest (post-embryonic mouse) @@ -10990,8 +10178,7 @@ - thoracic cavity blood vessel (post-embryonic mouse) - MA:0000554 + thoracic cavity blood vessel (post-embryonic mouse) @@ -11010,8 +10197,7 @@ - thoracic cavity connective tissue (post-embryonic mouse) - MA:0000555 + thoracic cavity connective tissue (post-embryonic mouse) @@ -11030,8 +10216,7 @@ - thoracic cavity nerve (post-embryonic mouse) - MA:0000556 + thoracic cavity nerve (post-embryonic mouse) @@ -11050,8 +10235,7 @@ - thoracic cavity element (post-embryonic mouse) - MA:0000557 + thoracic cavity element (post-embryonic mouse) @@ -11070,8 +10254,7 @@ - thoracic segment blood vessel (post-embryonic mouse) - MA:0000558 + thoracic segment blood vessel (post-embryonic mouse) @@ -11090,8 +10273,7 @@ - thoracic segment bone (post-embryonic mouse) - MA:0000559 + thoracic segment bone (post-embryonic mouse) @@ -11110,8 +10292,7 @@ - thoracic segment connective tissue (post-embryonic mouse) - MA:0000560 + thoracic segment connective tissue (post-embryonic mouse) @@ -11130,8 +10311,7 @@ - thoracic segment muscle (post-embryonic mouse) - MA:0000561 + thoracic segment muscle (post-embryonic mouse) @@ -11150,8 +10330,7 @@ - nerve of thoracic segment (post-embryonic mouse) - MA:0000562 + nerve of thoracic segment (post-embryonic mouse) @@ -11170,8 +10349,7 @@ - thoracic segment organ (post-embryonic mouse) - MA:0000563 + thoracic segment organ (post-embryonic mouse) @@ -11190,8 +10368,7 @@ - skin of thorax (post-embryonic mouse) - MA:0000564 + skin of thorax (post-embryonic mouse) @@ -11210,8 +10387,7 @@ - mesothelium (post-embryonic mouse) - MA:0000565 + mesothelium (post-embryonic mouse) @@ -11230,8 +10406,7 @@ - parietal mesothelium (post-embryonic mouse) - MA:0000566 + parietal mesothelium (post-embryonic mouse) @@ -11250,8 +10425,7 @@ - visceral mesothelium (post-embryonic mouse) - MA:0000567 + visceral mesothelium (post-embryonic mouse) @@ -11270,8 +10444,7 @@ - bone of craniocervical region (post-embryonic mouse) - MA:0000569 + bone of craniocervical region (post-embryonic mouse) @@ -11290,8 +10463,7 @@ - craniocervical region musculature (post-embryonic mouse) - MA:0000571 + craniocervical region musculature (post-embryonic mouse) @@ -11310,8 +10482,7 @@ - head or neck skin (post-embryonic mouse) - MA:0000574 + head or neck skin (post-embryonic mouse) @@ -11330,8 +10501,7 @@ - head blood vessel (post-embryonic mouse) - MA:0000575 + head blood vessel (post-embryonic mouse) @@ -11350,8 +10520,7 @@ - head bone (post-embryonic mouse) - MA:0000576 + head bone (post-embryonic mouse) @@ -11370,8 +10539,7 @@ - head connective tissue (post-embryonic mouse) - MA:0000577 + head connective tissue (post-embryonic mouse) @@ -11390,8 +10558,7 @@ - cranial muscle (post-embryonic mouse) - MA:0000578 + cranial muscle (post-embryonic mouse) @@ -11410,8 +10577,7 @@ - cranial or facial muscle (post-embryonic mouse) - MA:0000579 + cranial or facial muscle (post-embryonic mouse) @@ -11430,8 +10596,7 @@ - skin of head (post-embryonic mouse) - MA:0000582 + skin of head (post-embryonic mouse) @@ -11450,8 +10615,7 @@ - neck blood vessel (post-embryonic mouse) - MA:0000583 + neck blood vessel (post-embryonic mouse) @@ -11470,8 +10634,7 @@ - neck bone (post-embryonic mouse) - MA:0000584 + neck bone (post-embryonic mouse) @@ -11490,8 +10653,7 @@ - neck connective tissue (post-embryonic mouse) - MA:0000585 + neck connective tissue (post-embryonic mouse) @@ -11510,8 +10672,7 @@ - neck cartilage (post-embryonic mouse) - MA:0000586 + neck cartilage (post-embryonic mouse) @@ -11530,8 +10691,7 @@ - muscle of neck (post-embryonic mouse) - MA:0000587 + muscle of neck (post-embryonic mouse) @@ -11550,8 +10710,7 @@ - neck nerve (post-embryonic mouse) - MA:0000588 + neck nerve (post-embryonic mouse) @@ -11570,8 +10729,7 @@ - skin of neck (post-embryonic mouse) - MA:0000590 + skin of neck (post-embryonic mouse) @@ -11590,8 +10748,7 @@ - arm blood vessel (post-embryonic mouse) - MA:0000591 + arm blood vessel (post-embryonic mouse) @@ -11610,8 +10767,7 @@ - arm bone (post-embryonic mouse) - MA:0000592 + arm bone (post-embryonic mouse) @@ -11630,8 +10786,7 @@ - arm connective tissue (post-embryonic mouse) - MA:0000593 + arm connective tissue (post-embryonic mouse) @@ -11650,8 +10805,7 @@ - muscle of arm (post-embryonic mouse) - MA:0000594 + muscle of arm (post-embryonic mouse) @@ -11670,8 +10824,7 @@ - arm nerve (post-embryonic mouse) - MA:0000595 + arm nerve (post-embryonic mouse) @@ -11690,8 +10843,7 @@ - arm skin (post-embryonic mouse) - MA:0000596 + arm skin (post-embryonic mouse) @@ -11710,8 +10862,7 @@ - lower arm blood vessel (post-embryonic mouse) - MA:0000597 + lower arm blood vessel (post-embryonic mouse) @@ -11730,8 +10881,7 @@ - forelimb zeugopod bone (post-embryonic mouse) - MA:0000598 + forelimb zeugopod bone (post-embryonic mouse) @@ -11750,8 +10900,7 @@ - lower arm connective tissue (post-embryonic mouse) - MA:0000599 + lower arm connective tissue (post-embryonic mouse) @@ -11770,8 +10919,7 @@ - forelimb zeugopod muscle (post-embryonic mouse) - MA:0000600 + forelimb zeugopod muscle (post-embryonic mouse) @@ -11790,8 +10938,7 @@ - lower arm nerve (post-embryonic mouse) - MA:0000601 + lower arm nerve (post-embryonic mouse) @@ -11810,8 +10957,7 @@ - skin of forearm (post-embryonic mouse) - MA:0000602 + skin of forearm (post-embryonic mouse) @@ -11830,8 +10976,7 @@ - upper arm blood vessel (post-embryonic mouse) - MA:0000603 + upper arm blood vessel (post-embryonic mouse) @@ -11850,8 +10995,7 @@ - upper arm bone (post-embryonic mouse) - MA:0000604 + upper arm bone (post-embryonic mouse) @@ -11870,8 +11014,7 @@ - upper arm connective tissue (post-embryonic mouse) - MA:0000605 + upper arm connective tissue (post-embryonic mouse) @@ -11890,8 +11033,7 @@ - forelimb stylopod muscle (post-embryonic mouse) - MA:0000606 + forelimb stylopod muscle (post-embryonic mouse) @@ -11910,8 +11052,7 @@ - upper arm nerve (post-embryonic mouse) - MA:0000607 + upper arm nerve (post-embryonic mouse) @@ -11930,8 +11071,7 @@ - upper arm skin (post-embryonic mouse) - MA:0000608 + upper arm skin (post-embryonic mouse) @@ -11950,8 +11090,7 @@ - elbow connective tissue (post-embryonic mouse) - MA:0000609 + elbow connective tissue (post-embryonic mouse) @@ -11970,8 +11109,7 @@ - skin of elbow (post-embryonic mouse) - MA:0000610 + skin of elbow (post-embryonic mouse) @@ -11990,8 +11128,7 @@ - forelimb blood vessel (post-embryonic mouse) - MA:0000611 + forelimb blood vessel (post-embryonic mouse) @@ -12010,8 +11147,7 @@ - bone of pectoral complex (post-embryonic mouse) - MA:0000612 + bone of pectoral complex (post-embryonic mouse) @@ -12030,8 +11166,7 @@ - forelimb connective tissue (post-embryonic mouse) - MA:0000613 + forelimb connective tissue (post-embryonic mouse) @@ -12050,8 +11185,7 @@ - forelimb joint (post-embryonic mouse) - MA:0000614 + forelimb joint (post-embryonic mouse) @@ -12070,8 +11204,7 @@ - pectoral complex muscle (post-embryonic mouse) - MA:0000615 + pectoral complex muscle (post-embryonic mouse) @@ -12090,8 +11223,7 @@ - forelimb nerve (post-embryonic mouse) - MA:0000616 + forelimb nerve (post-embryonic mouse) @@ -12110,8 +11242,7 @@ - forelimb skin (post-embryonic mouse) - MA:0000617 + forelimb skin (post-embryonic mouse) @@ -12130,8 +11261,7 @@ - manus blood vessel (post-embryonic mouse) - MA:0000618 + manus blood vessel (post-embryonic mouse) @@ -12150,8 +11280,7 @@ - manus bone (post-embryonic mouse) - MA:0000619 + manus bone (post-embryonic mouse) @@ -12170,8 +11299,7 @@ - manus connective tissue (post-embryonic mouse) - MA:0000620 + manus connective tissue (post-embryonic mouse) @@ -12190,8 +11318,7 @@ - manual digit blood vessel (post-embryonic mouse) - MA:0000621 + manual digit blood vessel (post-embryonic mouse) @@ -12210,8 +11337,7 @@ - manual digit bone (post-embryonic mouse) - MA:0000622 + manual digit bone (post-embryonic mouse) @@ -12230,8 +11356,7 @@ - manual digit connective tissue (post-embryonic mouse) - MA:0000623 + manual digit connective tissue (post-embryonic mouse) @@ -12250,8 +11375,7 @@ - manual digit muscle (post-embryonic mouse) - MA:0000624 + manual digit muscle (post-embryonic mouse) @@ -12270,8 +11394,7 @@ - digit nerve of manus (post-embryonic mouse) - MA:0000625 + digit nerve of manus (post-embryonic mouse) @@ -12290,8 +11413,7 @@ - manual digit skin (post-embryonic mouse) - MA:0000626 + manual digit skin (post-embryonic mouse) @@ -12310,8 +11432,7 @@ - interdigital region between manual digits (post-embryonic mouse) - MA:0000627 + interdigital region between manual digits (post-embryonic mouse) @@ -12330,8 +11451,7 @@ - muscle of manus (post-embryonic mouse) - MA:0000628 + muscle of manus (post-embryonic mouse) @@ -12350,8 +11470,7 @@ - manus nerve (post-embryonic mouse) - MA:0000629 + manus nerve (post-embryonic mouse) @@ -12370,8 +11489,7 @@ - skin of manus (post-embryonic mouse) - MA:0000630 + skin of manus (post-embryonic mouse) @@ -12390,8 +11508,7 @@ - shoulder bone (post-embryonic mouse) - MA:0000631 + shoulder bone (post-embryonic mouse) @@ -12410,8 +11527,7 @@ - shoulder connective tissue (post-embryonic mouse) - MA:0000632 + shoulder connective tissue (post-embryonic mouse) @@ -12430,8 +11546,7 @@ - muscle of shoulder (post-embryonic mouse) - MA:0000633 + muscle of shoulder (post-embryonic mouse) @@ -12450,8 +11565,7 @@ - shoulder nerve (post-embryonic mouse) - MA:0000634 + shoulder nerve (post-embryonic mouse) @@ -12470,8 +11584,7 @@ - skin of shoulder (post-embryonic mouse) - MA:0000635 + skin of shoulder (post-embryonic mouse) @@ -12490,8 +11603,7 @@ - wrist connective tissue (post-embryonic mouse) - MA:0000636 + wrist connective tissue (post-embryonic mouse) @@ -12510,8 +11622,7 @@ - wrist nerve (post-embryonic mouse) - MA:0000637 + wrist nerve (post-embryonic mouse) @@ -12530,8 +11641,7 @@ - skin of wrist (post-embryonic mouse) - MA:0000638 + skin of wrist (post-embryonic mouse) @@ -12550,8 +11660,7 @@ - ankle connective tissue (post-embryonic mouse) - MA:0000639 + ankle connective tissue (post-embryonic mouse) @@ -12570,8 +11679,7 @@ - ankle nerve (post-embryonic mouse) - MA:0000640 + ankle nerve (post-embryonic mouse) @@ -12590,8 +11698,7 @@ - skin of ankle (post-embryonic mouse) - MA:0000641 + skin of ankle (post-embryonic mouse) @@ -12610,8 +11717,7 @@ - pes blood vessel (post-embryonic mouse) - MA:0000642 + pes blood vessel (post-embryonic mouse) @@ -12630,8 +11736,7 @@ - pes bone (post-embryonic mouse) - MA:0000643 + pes bone (post-embryonic mouse) @@ -12650,8 +11755,7 @@ - pes connective tissue (post-embryonic mouse) - MA:0000644 + pes connective tissue (post-embryonic mouse) @@ -12670,8 +11774,7 @@ - pedal digit blood vessel (post-embryonic mouse) - MA:0000645 + pedal digit blood vessel (post-embryonic mouse) @@ -12690,8 +11793,7 @@ - pedal digit bone (post-embryonic mouse) - MA:0000646 + pedal digit bone (post-embryonic mouse) @@ -12710,8 +11812,7 @@ - pedal digit connective tissue (post-embryonic mouse) - MA:0000647 + pedal digit connective tissue (post-embryonic mouse) @@ -12730,8 +11831,7 @@ - pedal digit muscle (post-embryonic mouse) - MA:0000648 + pedal digit muscle (post-embryonic mouse) @@ -12750,8 +11850,7 @@ - pedal digit nerve (post-embryonic mouse) - MA:0000649 + pedal digit nerve (post-embryonic mouse) @@ -12770,8 +11869,7 @@ - pedal digit skin (post-embryonic mouse) - MA:0000650 + pedal digit skin (post-embryonic mouse) @@ -12790,8 +11888,7 @@ - interdigital region between pedal digits (post-embryonic mouse) - MA:0000651 + interdigital region between pedal digits (post-embryonic mouse) @@ -12810,8 +11907,7 @@ - muscle of pes (post-embryonic mouse) - MA:0000652 + muscle of pes (post-embryonic mouse) @@ -12830,8 +11926,7 @@ - pes nerve (post-embryonic mouse) - MA:0000653 + pes nerve (post-embryonic mouse) @@ -12850,8 +11945,7 @@ - skin of pes (post-embryonic mouse) - MA:0000654 + skin of pes (post-embryonic mouse) @@ -12870,8 +11964,7 @@ - bone of hip region (post-embryonic mouse) - MA:0000655 + bone of hip region (post-embryonic mouse) @@ -12890,8 +11983,7 @@ - hip connective tissue (post-embryonic mouse) - MA:0000656 + hip connective tissue (post-embryonic mouse) @@ -12910,8 +12002,7 @@ - hip muscle (post-embryonic mouse) - MA:0000657 + hip muscle (post-embryonic mouse) @@ -12930,8 +12021,7 @@ - skin of hip (post-embryonic mouse) - MA:0000658 + skin of hip (post-embryonic mouse) @@ -12950,8 +12040,7 @@ - hindlimb blood vessel (post-embryonic mouse) - MA:0000659 + hindlimb blood vessel (post-embryonic mouse) @@ -12970,8 +12059,7 @@ - bone of pelvic complex (post-embryonic mouse) - MA:0000660 + bone of pelvic complex (post-embryonic mouse) @@ -12990,8 +12078,7 @@ - hindlimb connective tissue (post-embryonic mouse) - MA:0000661 + hindlimb connective tissue (post-embryonic mouse) @@ -13010,8 +12097,7 @@ - hindlimb joint (post-embryonic mouse) - MA:0000662 + hindlimb joint (post-embryonic mouse) @@ -13030,8 +12116,7 @@ - pelvic complex muscle (post-embryonic mouse) - MA:0000663 + pelvic complex muscle (post-embryonic mouse) @@ -13050,8 +12135,7 @@ - hindlimb nerve (post-embryonic mouse) - MA:0000664 + hindlimb nerve (post-embryonic mouse) @@ -13070,8 +12154,7 @@ - hindlimb skin (post-embryonic mouse) - MA:0000665 + hindlimb skin (post-embryonic mouse) @@ -13090,8 +12173,7 @@ - knee connective tissue (post-embryonic mouse) - MA:0000667 + knee connective tissue (post-embryonic mouse) @@ -13110,8 +12192,7 @@ - skin of knee (post-embryonic mouse) - MA:0000668 + skin of knee (post-embryonic mouse) @@ -13130,8 +12211,7 @@ - leg blood vessel (post-embryonic mouse) - MA:0000669 + leg blood vessel (post-embryonic mouse) @@ -13150,8 +12230,7 @@ - leg bone (post-embryonic mouse) - MA:0000670 + leg bone (post-embryonic mouse) @@ -13170,8 +12249,7 @@ - leg connective tissue (post-embryonic mouse) - MA:0000671 + leg connective tissue (post-embryonic mouse) @@ -13190,8 +12268,7 @@ - muscle of leg (post-embryonic mouse) - MA:0000672 + muscle of leg (post-embryonic mouse) @@ -13210,8 +12287,7 @@ - leg nerve (post-embryonic mouse) - MA:0000673 + leg nerve (post-embryonic mouse) @@ -13230,8 +12306,7 @@ - skin of leg (post-embryonic mouse) - MA:0000674 + skin of leg (post-embryonic mouse) @@ -13250,8 +12325,7 @@ - lower leg blood vessel (post-embryonic mouse) - MA:0000675 + lower leg blood vessel (post-embryonic mouse) @@ -13270,8 +12344,7 @@ - hindlimb zeugopod bone (post-embryonic mouse) - MA:0000676 + hindlimb zeugopod bone (post-embryonic mouse) @@ -13290,8 +12363,7 @@ - lower leg connective tissue (post-embryonic mouse) - MA:0000677 + lower leg connective tissue (post-embryonic mouse) @@ -13310,8 +12382,7 @@ - hindlimb zeugopod muscle (post-embryonic mouse) - MA:0000678 + hindlimb zeugopod muscle (post-embryonic mouse) @@ -13330,8 +12401,7 @@ - lower leg nerve (post-embryonic mouse) - MA:0000679 + lower leg nerve (post-embryonic mouse) @@ -13350,8 +12420,7 @@ - lower leg skin (post-embryonic mouse) - MA:0000680 + lower leg skin (post-embryonic mouse) @@ -13370,8 +12439,7 @@ - upper leg blood vessel (post-embryonic mouse) - MA:0000681 + upper leg blood vessel (post-embryonic mouse) @@ -13390,8 +12458,7 @@ - upper leg bone (post-embryonic mouse) - MA:0000682 + upper leg bone (post-embryonic mouse) @@ -13410,8 +12477,7 @@ - upper leg connective tissue (post-embryonic mouse) - MA:0000683 + upper leg connective tissue (post-embryonic mouse) @@ -13430,8 +12496,7 @@ - hindlimb stylopod muscle (post-embryonic mouse) - MA:0000684 + hindlimb stylopod muscle (post-embryonic mouse) @@ -13450,8 +12515,7 @@ - upper leg nerve (post-embryonic mouse) - MA:0000685 + upper leg nerve (post-embryonic mouse) @@ -13470,8 +12534,7 @@ - upper leg skin (post-embryonic mouse) - MA:0000686 + upper leg skin (post-embryonic mouse) @@ -13490,8 +12553,7 @@ - limb blood vessel (post-embryonic mouse) - MA:0000687 + limb blood vessel (post-embryonic mouse) @@ -13510,8 +12572,7 @@ - bone of appendage girdle complex (post-embryonic mouse) - MA:0000688 + bone of appendage girdle complex (post-embryonic mouse) @@ -13530,8 +12591,7 @@ - limb connective tissue (post-embryonic mouse) - MA:0000689 + limb connective tissue (post-embryonic mouse) @@ -13550,8 +12610,7 @@ - digit (post-embryonic mouse) - MA:0000690 + digit (post-embryonic mouse) @@ -13570,8 +12629,7 @@ - limb joint (post-embryonic mouse) - MA:0000691 + limb joint (post-embryonic mouse) @@ -13590,8 +12648,7 @@ - limb muscle (post-embryonic mouse) - MA:0000692 + limb muscle (post-embryonic mouse) @@ -13610,8 +12667,7 @@ - limb nerve (post-embryonic mouse) - MA:0000693 + limb nerve (post-embryonic mouse) @@ -13630,8 +12686,7 @@ - skin of limb (post-embryonic mouse) - MA:0000694 + skin of limb (post-embryonic mouse) @@ -13650,8 +12705,7 @@ - tail blood vessel (post-embryonic mouse) - MA:0000695 + tail blood vessel (post-embryonic mouse) @@ -13670,8 +12724,7 @@ - bone of tail (post-embryonic mouse) - MA:0000696 + bone of tail (post-embryonic mouse) @@ -13690,8 +12743,7 @@ - tail connective tissue (post-embryonic mouse) - MA:0000697 + tail connective tissue (post-embryonic mouse) @@ -13710,8 +12762,7 @@ - tail intervertebral disc (post-embryonic mouse) - MA:0000698 + tail intervertebral disc (post-embryonic mouse) @@ -13730,8 +12781,7 @@ - post-anal tail muscle (post-embryonic mouse) - MA:0000699 + post-anal tail muscle (post-embryonic mouse) @@ -13750,8 +12800,7 @@ - tail skin (post-embryonic mouse) - MA:0000700 + tail skin (post-embryonic mouse) @@ -13770,8 +12819,7 @@ - aorta endothelium (post-embryonic mouse) - MA:0000701 + aorta endothelium (post-embryonic mouse) @@ -13790,8 +12838,7 @@ - aorta smooth muscle tissue (post-embryonic mouse) - MA:0000702 + aorta smooth muscle tissue (post-embryonic mouse) @@ -13810,8 +12857,7 @@ - arterial system endothelium (post-embryonic mouse) - MA:0000703 + arterial system endothelium (post-embryonic mouse) @@ -13830,8 +12876,7 @@ - arterial system smooth muscle (post-embryonic mouse) - MA:0000704 + arterial system smooth muscle (post-embryonic mouse) @@ -13850,8 +12895,7 @@ - endothelium of arteriole (post-embryonic mouse) - MA:0000705 + endothelium of arteriole (post-embryonic mouse) @@ -13870,8 +12914,7 @@ - arteriole smooth muscle (post-embryonic mouse) - MA:0000706 + arteriole smooth muscle (post-embryonic mouse) @@ -13890,8 +12933,7 @@ - endothelium of artery (post-embryonic mouse) - MA:0000707 + endothelium of artery (post-embryonic mouse) @@ -13910,8 +12952,7 @@ - artery smooth muscle tissue (post-embryonic mouse) - MA:0000708 + artery smooth muscle tissue (post-embryonic mouse) @@ -13930,8 +12971,7 @@ - blood vessel endothelium (post-embryonic mouse) - MA:0000709 + blood vessel endothelium (post-embryonic mouse) @@ -13950,8 +12990,7 @@ - blood vessel smooth muscle (post-embryonic mouse) - MA:0000710 + blood vessel smooth muscle (post-embryonic mouse) @@ -13970,8 +13009,7 @@ - endothelium of capillary (post-embryonic mouse) - MA:0000711 + endothelium of capillary (post-embryonic mouse) @@ -13990,8 +13028,7 @@ - endothelium of vein (post-embryonic mouse) - MA:0000712 + endothelium of vein (post-embryonic mouse) @@ -14010,8 +13047,7 @@ - vena cava endothelium (post-embryonic mouse) - MA:0000713 + vena cava endothelium (post-embryonic mouse) @@ -14030,8 +13066,7 @@ - venous system endothelium (post-embryonic mouse) - MA:0000714 + venous system endothelium (post-embryonic mouse) @@ -14050,8 +13085,7 @@ - venous system smooth muscle (post-embryonic mouse) - MA:0000715 + venous system smooth muscle (post-embryonic mouse) @@ -14070,8 +13104,7 @@ - endothelium of venule (post-embryonic mouse) - MA:0000716 + endothelium of venule (post-embryonic mouse) @@ -14090,8 +13123,7 @@ - cardiovascular system endothelium (post-embryonic mouse) - MA:0000717 + cardiovascular system endothelium (post-embryonic mouse) @@ -14110,8 +13142,7 @@ - left adrenal gland (post-embryonic mouse) - MA:0000718 + left adrenal gland (post-embryonic mouse) @@ -14130,8 +13161,7 @@ - right adrenal gland (post-embryonic mouse) - MA:0000719 + right adrenal gland (post-embryonic mouse) @@ -14150,8 +13180,7 @@ - neuroendocrine gland (post-embryonic mouse) - MA:0000720 + neuroendocrine gland (post-embryonic mouse) @@ -14170,8 +13199,7 @@ - pancreatic lobule (post-embryonic mouse) - MA:0000721 + pancreatic lobule (post-embryonic mouse) @@ -14190,8 +13218,7 @@ - pancreas left lobe (post-embryonic mouse) - MA:0000722 + pancreas left lobe (post-embryonic mouse) @@ -14210,8 +13237,7 @@ - pancreas right lobe (post-embryonic mouse) - MA:0000723 + pancreas right lobe (post-embryonic mouse) @@ -14230,8 +13256,7 @@ - parenchyma of pancreas (post-embryonic mouse) - MA:0000724 + parenchyma of pancreas (post-embryonic mouse) @@ -14250,8 +13275,7 @@ - foramen cecum of tongue (post-embryonic mouse) - MA:0000725 + foramen cecum of tongue (post-embryonic mouse) @@ -14270,8 +13294,7 @@ - thyroid follicle (post-embryonic mouse) - MA:0000726 + thyroid follicle (post-embryonic mouse) @@ -14290,8 +13313,7 @@ - isthmus of thyroid gland (post-embryonic mouse) - MA:0000727 + isthmus of thyroid gland (post-embryonic mouse) @@ -14310,8 +13332,7 @@ - left lobe of thyroid gland (post-embryonic mouse) - MA:0000728 + left lobe of thyroid gland (post-embryonic mouse) @@ -14330,8 +13351,7 @@ - right lobe of thyroid gland (post-embryonic mouse) - MA:0000729 + right lobe of thyroid gland (post-embryonic mouse) @@ -14350,8 +13370,7 @@ - parenchyma of thyroid gland (post-embryonic mouse) - MA:0000730 + parenchyma of thyroid gland (post-embryonic mouse) @@ -14370,8 +13389,7 @@ - Peyer's patch epithelium (post-embryonic mouse) - MA:0000731 + Peyer's patch epithelium (post-embryonic mouse) @@ -14390,8 +13408,7 @@ - Peyer's patch follicle (post-embryonic mouse) - MA:0000732 + Peyer's patch follicle (post-embryonic mouse) @@ -14410,8 +13427,7 @@ - Peyer's patch germinal center (post-embryonic mouse) - MA:0000734 + Peyer's patch germinal center (post-embryonic mouse) @@ -14430,8 +13446,7 @@ - axillary lymph node (post-embryonic mouse) - MA:0000735 + axillary lymph node (post-embryonic mouse) @@ -14450,8 +13465,7 @@ - cervical lymph node (post-embryonic mouse) - MA:0000736 + cervical lymph node (post-embryonic mouse) @@ -14470,8 +13484,7 @@ - inguinal lymph node (post-embryonic mouse) - MA:0000737 + inguinal lymph node (post-embryonic mouse) @@ -14490,8 +13503,7 @@ - popliteal lymph node (post-embryonic mouse) - MA:0000738 + popliteal lymph node (post-embryonic mouse) @@ -14510,8 +13522,7 @@ - capsule of lymph node (post-embryonic mouse) - MA:0000739 + capsule of lymph node (post-embryonic mouse) @@ -14530,8 +13541,7 @@ - cortex of lymph node (post-embryonic mouse) - MA:0000740 + cortex of lymph node (post-embryonic mouse) @@ -14550,8 +13560,7 @@ - lymph node endothelium (post-embryonic mouse) - MA:0000741 + lymph node endothelium (post-embryonic mouse) @@ -14570,8 +13579,7 @@ - lymph node follicle (post-embryonic mouse) - MA:0000742 + lymph node follicle (post-embryonic mouse) @@ -14590,8 +13598,7 @@ - lymph node primary follicle (post-embryonic mouse) - MA:0000743 + lymph node primary follicle (post-embryonic mouse) @@ -14610,8 +13617,7 @@ - lymph node secondary follicle (post-embryonic mouse) - MA:0000744 + lymph node secondary follicle (post-embryonic mouse) @@ -14630,8 +13636,7 @@ - medulla of lymph node (post-embryonic mouse) - MA:0000745 + medulla of lymph node (post-embryonic mouse) @@ -14650,8 +13655,7 @@ - trabecula of lymph node (post-embryonic mouse) - MA:0000746 + trabecula of lymph node (post-embryonic mouse) @@ -14670,8 +13674,7 @@ - hemopoietic organ (post-embryonic mouse) - MA:0000747 + hemopoietic organ (post-embryonic mouse) @@ -14690,8 +13693,7 @@ - afferent lymphatic vessel (post-embryonic mouse) - MA:0000748 + afferent lymphatic vessel (post-embryonic mouse) @@ -14710,8 +13712,7 @@ - efferent lymphatic vessel (post-embryonic mouse) - MA:0000749 + efferent lymphatic vessel (post-embryonic mouse) @@ -14730,8 +13731,7 @@ - lymphatic vessel endothelium (post-embryonic mouse) - MA:0000750 + lymphatic vessel endothelium (post-embryonic mouse) @@ -14750,8 +13750,7 @@ - lymphatic vessel smooth muscle (post-embryonic mouse) - MA:0000751 + lymphatic vessel smooth muscle (post-embryonic mouse) @@ -14770,8 +13769,7 @@ - tonsillar ring (post-embryonic mouse) - MA:0000752 + tonsillar ring (post-embryonic mouse) @@ -14790,8 +13788,7 @@ - spleen capsule (post-embryonic mouse) - MA:0000753 + spleen capsule (post-embryonic mouse) @@ -14810,8 +13807,7 @@ - spleen marginal sinus (post-embryonic mouse) - MA:0000754 + spleen marginal sinus (post-embryonic mouse) @@ -14830,8 +13826,7 @@ - marginal zone of spleen (post-embryonic mouse) - MA:0000755 + marginal zone of spleen (post-embryonic mouse) @@ -14850,8 +13845,7 @@ - red pulp of spleen (post-embryonic mouse) - MA:0000756 + red pulp of spleen (post-embryonic mouse) @@ -14870,8 +13864,7 @@ - spleen smooth muscle (post-embryonic mouse) - MA:0000757 + spleen smooth muscle (post-embryonic mouse) @@ -14890,8 +13883,7 @@ - trabecula of spleen (post-embryonic mouse) - MA:0000758 + trabecula of spleen (post-embryonic mouse) @@ -14910,8 +13902,7 @@ - spleen trabecular artery (post-embryonic mouse) - MA:0000759 + spleen trabecular artery (post-embryonic mouse) @@ -14930,8 +13921,7 @@ - spleen trabecular vein (post-embryonic mouse) - MA:0000760 + spleen trabecular vein (post-embryonic mouse) @@ -14950,8 +13940,7 @@ - spleen venous sinus (post-embryonic mouse) - MA:0000761 + spleen venous sinus (post-embryonic mouse) @@ -14970,8 +13959,7 @@ - white pulp of spleen (post-embryonic mouse) - MA:0000762 + white pulp of spleen (post-embryonic mouse) @@ -14990,8 +13978,7 @@ - spleen central arteriole (post-embryonic mouse) - MA:0000763 + spleen central arteriole (post-embryonic mouse) @@ -15010,8 +13997,7 @@ - spleen germinal center (post-embryonic mouse) - MA:0000764 + spleen germinal center (post-embryonic mouse) @@ -15030,8 +14016,7 @@ - periarterial lymphatic sheath (post-embryonic mouse) - MA:0000765 + periarterial lymphatic sheath (post-embryonic mouse) @@ -15050,8 +14035,7 @@ - capsule of thymus (post-embryonic mouse) - MA:0000766 + capsule of thymus (post-embryonic mouse) @@ -15070,8 +14054,7 @@ - cortex of thymus (post-embryonic mouse) - MA:0000767 + cortex of thymus (post-embryonic mouse) @@ -15090,8 +14073,7 @@ - thymus epithelium (post-embryonic mouse) - MA:0000768 + thymus epithelium (post-embryonic mouse) @@ -15110,8 +14092,7 @@ - thymus subcapsular epithelium (post-embryonic mouse) - MA:0000769 + thymus subcapsular epithelium (post-embryonic mouse) @@ -15130,8 +14111,7 @@ - thymus lobule (post-embryonic mouse) - MA:0000770 + thymus lobule (post-embryonic mouse) @@ -15150,8 +14130,7 @@ - medulla of thymus (post-embryonic mouse) - MA:0000771 + medulla of thymus (post-embryonic mouse) @@ -15170,8 +14149,7 @@ - Hassall's corpuscle (post-embryonic mouse) - MA:0000772 + Hassall's corpuscle (post-embryonic mouse) @@ -15190,8 +14168,7 @@ - lingual tonsil (post-embryonic mouse) - MA:0000773 + lingual tonsil (post-embryonic mouse) @@ -15210,8 +14187,7 @@ - pharyngeal tonsil (post-embryonic mouse) - MA:0000774 + pharyngeal tonsil (post-embryonic mouse) @@ -15230,8 +14206,7 @@ - palatine tonsil (post-embryonic mouse) - MA:0000775 + palatine tonsil (post-embryonic mouse) @@ -15250,8 +14225,7 @@ - tonsil capsule (post-embryonic mouse) - MA:0000776 + tonsil capsule (post-embryonic mouse) @@ -15270,8 +14244,7 @@ - tonsil crypt (post-embryonic mouse) - MA:0000777 + tonsil crypt (post-embryonic mouse) @@ -15290,8 +14263,7 @@ - arrector muscle of hair (post-embryonic mouse) - MA:0000778 + arrector muscle of hair (post-embryonic mouse) @@ -15310,8 +14282,7 @@ - hair inner root sheath (post-embryonic mouse) - MA:0000779 + hair inner root sheath (post-embryonic mouse) @@ -15330,8 +14301,7 @@ - hair outer root sheath (post-embryonic mouse) - MA:0000780 + hair outer root sheath (post-embryonic mouse) @@ -15350,8 +14320,7 @@ - hair root sheath matrix (post-embryonic mouse) - MA:0000781 + hair root sheath matrix (post-embryonic mouse) @@ -15370,8 +14339,7 @@ - strand of vibrissa hair (post-embryonic mouse) - MA:0000782 + strand of vibrissa hair (post-embryonic mouse) @@ -15390,8 +14358,7 @@ - vibrissa hair bulb (post-embryonic mouse) - MA:0000783 + vibrissa hair bulb (post-embryonic mouse) @@ -15410,8 +14377,7 @@ - vibrissa root sheath (post-embryonic mouse) - MA:0000784 + vibrissa root sheath (post-embryonic mouse) @@ -15430,8 +14396,7 @@ - vibrissa inner root sheath (post-embryonic mouse) - MA:0000785 + vibrissa inner root sheath (post-embryonic mouse) @@ -15450,8 +14415,7 @@ - vibrissa outer root sheath (post-embryonic mouse) - MA:0000786 + vibrissa outer root sheath (post-embryonic mouse) @@ -15470,8 +14434,7 @@ - abdominal mammary gland (post-embryonic mouse) - MA:0000787 + abdominal mammary gland (post-embryonic mouse) @@ -15490,8 +14453,7 @@ - areola (post-embryonic mouse) - MA:0000788 + areola (post-embryonic mouse) @@ -15510,8 +14472,7 @@ - cervical mammary gland (post-embryonic mouse) - MA:0000789 + cervical mammary gland (post-embryonic mouse) @@ -15530,8 +14491,7 @@ - inguinal mammary gland (post-embryonic mouse) - MA:0000790 + inguinal mammary gland (post-embryonic mouse) @@ -15550,8 +14510,7 @@ - mammary duct (post-embryonic mouse) - MA:0000791 + mammary duct (post-embryonic mouse) @@ -15570,8 +14529,7 @@ - epithelium of mammary gland (post-embryonic mouse) - MA:0000792 + epithelium of mammary gland (post-embryonic mouse) @@ -15590,8 +14548,7 @@ - lobule of mammary gland (post-embryonic mouse) - MA:0000793 + lobule of mammary gland (post-embryonic mouse) @@ -15610,8 +14567,7 @@ - areolar gland (post-embryonic mouse) - MA:0000794 + areolar gland (post-embryonic mouse) @@ -15630,8 +14586,7 @@ - mammary gland smooth muscle (post-embryonic mouse) - MA:0000795 + mammary gland smooth muscle (post-embryonic mouse) @@ -15650,8 +14605,7 @@ - nipple (post-embryonic mouse) - MA:0000796 + nipple (post-embryonic mouse) @@ -15670,8 +14624,7 @@ - thoracic mammary gland (post-embryonic mouse) - MA:0000797 + thoracic mammary gland (post-embryonic mouse) @@ -15690,8 +14643,7 @@ - dermis adipose tissue (post-embryonic mouse) - MA:0000798 + dermis adipose tissue (post-embryonic mouse) @@ -15710,8 +14662,7 @@ - dermis connective tissue (post-embryonic mouse) - MA:0000799 + dermis connective tissue (post-embryonic mouse) @@ -15730,8 +14681,7 @@ - papillary layer of dermis (post-embryonic mouse) - MA:0000800 + papillary layer of dermis (post-embryonic mouse) @@ -15750,8 +14700,7 @@ - reticular layer of dermis (post-embryonic mouse) - MA:0000801 + reticular layer of dermis (post-embryonic mouse) @@ -15770,8 +14719,7 @@ - papillary layer of dermis (post-embryonic mouse) - MA:0000802 + papillary layer of dermis (post-embryonic mouse) @@ -15790,8 +14738,7 @@ - stratum basale of epidermis (post-embryonic mouse) - MA:0000803 + stratum basale of epidermis (post-embryonic mouse) @@ -15810,8 +14757,7 @@ - stratum corneum of epidermis (post-embryonic mouse) - MA:0000804 + stratum corneum of epidermis (post-embryonic mouse) @@ -15830,8 +14776,7 @@ - stratum granulosum of epidermis (post-embryonic mouse) - MA:0000805 + stratum granulosum of epidermis (post-embryonic mouse) @@ -15850,8 +14795,7 @@ - stratum lucidum of epidermis (post-embryonic mouse) - MA:0000806 + stratum lucidum of epidermis (post-embryonic mouse) @@ -15870,8 +14814,7 @@ - stratum spinosum of epidermis (post-embryonic mouse) - MA:0000807 + stratum spinosum of epidermis (post-embryonic mouse) @@ -15890,8 +14833,7 @@ - epidermis suprabasal layer (post-embryonic mouse) - MA:0000808 + epidermis suprabasal layer (post-embryonic mouse) @@ -15910,8 +14852,7 @@ - brain ependyma (post-embryonic mouse) - MA:0000809 + brain ependyma (post-embryonic mouse) @@ -15930,8 +14871,7 @@ - brain gray matter (post-embryonic mouse) - MA:0000810 + brain gray matter (post-embryonic mouse) @@ -15950,8 +14890,7 @@ - nucleus of brain (post-embryonic mouse) - MA:0000811 + nucleus of brain (post-embryonic mouse) @@ -15970,8 +14909,7 @@ - brain marginal zone (post-embryonic mouse) - MA:0000812 + brain marginal zone (post-embryonic mouse) @@ -15990,8 +14928,7 @@ - brain meninx (post-embryonic mouse) - MA:0000813 + brain meninx (post-embryonic mouse) @@ -16010,8 +14947,7 @@ - brain arachnoid mater (post-embryonic mouse) - MA:0000814 + brain arachnoid mater (post-embryonic mouse) @@ -16030,8 +14966,7 @@ - brain dura mater (post-embryonic mouse) - MA:0000815 + brain dura mater (post-embryonic mouse) @@ -16050,8 +14985,7 @@ - brain pia mater (post-embryonic mouse) - MA:0000816 + brain pia mater (post-embryonic mouse) @@ -16070,8 +15004,7 @@ - postnatal subventricular zone (post-embryonic mouse) - MA:0000817 + postnatal subventricular zone (post-embryonic mouse) @@ -16090,8 +15023,7 @@ - brain ventricle (post-embryonic mouse) - MA:0000818 + brain ventricle (post-embryonic mouse) @@ -16110,8 +15042,7 @@ - ventricular zone (post-embryonic mouse) - MA:0000819 + ventricular zone (post-embryonic mouse) @@ -16130,8 +15061,7 @@ - brain white matter (post-embryonic mouse) - MA:0000820 + brain white matter (post-embryonic mouse) @@ -16150,8 +15080,7 @@ - brainstem nucleus (post-embryonic mouse) - MA:0000821 + brainstem nucleus (post-embryonic mouse) @@ -16170,8 +15099,7 @@ - choroid plexus (post-embryonic mouse) - MA:0000823 + choroid plexus (post-embryonic mouse) @@ -16190,8 +15118,7 @@ - choroid plexus epithelium (post-embryonic mouse) - MA:0000824 + choroid plexus epithelium (post-embryonic mouse) @@ -16210,8 +15137,7 @@ - choroid plexus stroma (post-embryonic mouse) - MA:0000825 + choroid plexus stroma (post-embryonic mouse) @@ -16230,8 +15156,7 @@ - meninx of diencephalon (post-embryonic mouse) - MA:0000826 + meninx of diencephalon (post-embryonic mouse) @@ -16250,8 +15175,7 @@ - diencephalon arachnoid mater (post-embryonic mouse) - MA:0000827 + diencephalon arachnoid mater (post-embryonic mouse) @@ -16270,8 +15194,7 @@ - diencephalon dura mater (post-embryonic mouse) - MA:0000828 + diencephalon dura mater (post-embryonic mouse) @@ -16290,8 +15213,7 @@ - diencephalon pia mater (post-embryonic mouse) - MA:0000829 + diencephalon pia mater (post-embryonic mouse) @@ -16310,8 +15232,7 @@ - habenula (post-embryonic mouse) - MA:0000830 + habenula (post-embryonic mouse) @@ -16330,8 +15251,7 @@ - lateral habenular nucleus (post-embryonic mouse) - MA:0000831 + lateral habenular nucleus (post-embryonic mouse) @@ -16350,8 +15270,7 @@ - medial habenular nucleus (post-embryonic mouse) - MA:0000832 + medial habenular nucleus (post-embryonic mouse) @@ -16370,8 +15289,7 @@ - lateral zone of hypothalamus (post-embryonic mouse) - MA:0000833 + lateral zone of hypothalamus (post-embryonic mouse) @@ -16390,8 +15308,7 @@ - lateral hypothalamic area (post-embryonic mouse) - MA:0000834 + lateral hypothalamic area (post-embryonic mouse) @@ -16410,8 +15327,7 @@ - lateral preoptic nucleus (post-embryonic mouse) - MA:0000835 + lateral preoptic nucleus (post-embryonic mouse) @@ -16430,8 +15346,7 @@ - perifornical nucleus (post-embryonic mouse) - MA:0000836 + perifornical nucleus (post-embryonic mouse) @@ -16450,8 +15365,7 @@ - medial zone of hypothalamus (post-embryonic mouse) - MA:0000837 + medial zone of hypothalamus (post-embryonic mouse) @@ -16470,8 +15384,7 @@ - dorsomedial nucleus of hypothalamus (post-embryonic mouse) - MA:0000838 + dorsomedial nucleus of hypothalamus (post-embryonic mouse) @@ -16490,8 +15403,7 @@ - medial preoptic region (post-embryonic mouse) - MA:0000839 + medial preoptic region (post-embryonic mouse) @@ -16510,8 +15422,7 @@ - medial preoptic nucleus (post-embryonic mouse) - MA:0000840 + medial preoptic nucleus (post-embryonic mouse) @@ -16530,8 +15441,7 @@ - retrochiasmatic area (post-embryonic mouse) - MA:0000841 + retrochiasmatic area (post-embryonic mouse) @@ -16550,8 +15460,7 @@ - subparaventricular zone (post-embryonic mouse) - MA:0000842 + subparaventricular zone (post-embryonic mouse) @@ -16570,8 +15479,7 @@ - suprachiasmatic nucleus (post-embryonic mouse) - MA:0000843 + suprachiasmatic nucleus (post-embryonic mouse) @@ -16590,8 +15498,7 @@ - tuber cinereum (post-embryonic mouse) - MA:0000844 + tuber cinereum (post-embryonic mouse) @@ -16610,8 +15517,7 @@ - ventromedial nucleus of hypothalamus (post-embryonic mouse) - MA:0000845 + ventromedial nucleus of hypothalamus (post-embryonic mouse) @@ -16630,8 +15536,7 @@ - periventricular zone of hypothalamus (post-embryonic mouse) - MA:0000846 + periventricular zone of hypothalamus (post-embryonic mouse) @@ -16650,8 +15555,7 @@ - arcuate nucleus of hypothalamus (post-embryonic mouse) - MA:0000847 + arcuate nucleus of hypothalamus (post-embryonic mouse) @@ -16670,8 +15574,7 @@ - paraventricular nucleus of hypothalamus (post-embryonic mouse) - MA:0000848 + paraventricular nucleus of hypothalamus (post-embryonic mouse) @@ -16690,8 +15593,7 @@ - supraoptic nucleus (post-embryonic mouse) - MA:0000849 + supraoptic nucleus (post-embryonic mouse) @@ -16710,8 +15612,7 @@ - lateral mammillary nucleus (post-embryonic mouse) - MA:0000850 + lateral mammillary nucleus (post-embryonic mouse) @@ -16730,8 +15631,7 @@ - medial mammillary nucleus (post-embryonic mouse) - MA:0000851 + medial mammillary nucleus (post-embryonic mouse) @@ -16750,8 +15650,7 @@ - supramammillary nucleus (post-embryonic mouse) - MA:0000852 + supramammillary nucleus (post-embryonic mouse) @@ -16770,8 +15669,7 @@ - tuberomammillary nucleus (post-embryonic mouse) - MA:0000853 + tuberomammillary nucleus (post-embryonic mouse) @@ -16790,8 +15688,7 @@ - pars distalis of adenohypophysis (post-embryonic mouse) - MA:0000854 + pars distalis of adenohypophysis (post-embryonic mouse) @@ -16810,8 +15707,7 @@ - pars intermedia of adenohypophysis (post-embryonic mouse) - MA:0000855 + pars intermedia of adenohypophysis (post-embryonic mouse) @@ -16830,8 +15726,7 @@ - pars tuberalis of adenohypophysis (post-embryonic mouse) - MA:0000856 + pars tuberalis of adenohypophysis (post-embryonic mouse) @@ -16850,8 +15745,7 @@ - remnant of Rathke's pouch (post-embryonic mouse) - MA:0000857 + remnant of Rathke's pouch (post-embryonic mouse) @@ -16870,8 +15764,7 @@ - pituitary stalk (post-embryonic mouse) - MA:0000858 + pituitary stalk (post-embryonic mouse) @@ -16890,8 +15783,7 @@ - median eminence of neurohypophysis (post-embryonic mouse) - MA:0000859 + median eminence of neurohypophysis (post-embryonic mouse) @@ -16910,8 +15802,7 @@ - neural lobe of neurohypophysis (post-embryonic mouse) - MA:0000860 + neural lobe of neurohypophysis (post-embryonic mouse) @@ -16930,8 +15821,7 @@ - anterior nuclear group (post-embryonic mouse) - MA:0000861 + anterior nuclear group (post-embryonic mouse) @@ -16950,8 +15840,7 @@ - lateral nuclear group of thalamus (post-embryonic mouse) - MA:0000862 + lateral nuclear group of thalamus (post-embryonic mouse) @@ -16970,8 +15859,7 @@ - medial dorsal nucleus of thalamus (post-embryonic mouse) - MA:0000863 + medial dorsal nucleus of thalamus (post-embryonic mouse) @@ -16990,8 +15878,7 @@ - midline nuclear group (post-embryonic mouse) - MA:0000864 + midline nuclear group (post-embryonic mouse) @@ -17010,8 +15897,7 @@ - reuniens nucleus (post-embryonic mouse) - MA:0000865 + reuniens nucleus (post-embryonic mouse) @@ -17030,30 +15916,7 @@ - paraventricular nucleus of thalamus (post-embryonic mouse) - MA:0000866 - - - - - - - - - - - - - - - - - - - - ventral posterior nucleus of thalamus (post-embryonic mouse) - ventral posteroinferior nucleus (post-embryonic mouse) - MA:0000867 + paraventricular nucleus of thalamus (post-embryonic mouse) @@ -17072,8 +15935,7 @@ - metathalamus (post-embryonic mouse) - MA:0000868 + metathalamus (post-embryonic mouse) @@ -17092,8 +15954,7 @@ - lateral geniculate body (post-embryonic mouse) - MA:0000869 + lateral geniculate body (post-embryonic mouse) @@ -17112,8 +15973,7 @@ - medial geniculate body (post-embryonic mouse) - MA:0000870 + medial geniculate body (post-embryonic mouse) @@ -17132,8 +15992,7 @@ - intralaminar nuclear group (post-embryonic mouse) - MA:0000871 + intralaminar nuclear group (post-embryonic mouse) @@ -17152,8 +16011,7 @@ - central medial nucleus (post-embryonic mouse) - MA:0000872 + central medial nucleus (post-embryonic mouse) @@ -17172,8 +16030,7 @@ - paracentral nucleus (post-embryonic mouse) - MA:0000873 + paracentral nucleus (post-embryonic mouse) @@ -17192,8 +16049,7 @@ - parafascicular nucleus (post-embryonic mouse) - MA:0000874 + parafascicular nucleus (post-embryonic mouse) @@ -17212,8 +16068,7 @@ - peripeduncular nucleus (post-embryonic mouse) - MA:0000875 + peripeduncular nucleus (post-embryonic mouse) @@ -17232,8 +16087,7 @@ - thalamic reticular nucleus (post-embryonic mouse) - MA:0000876 + thalamic reticular nucleus (post-embryonic mouse) @@ -17252,8 +16106,7 @@ - subthalamic nucleus (post-embryonic mouse) - MA:0000877 + subthalamic nucleus (post-embryonic mouse) @@ -17272,8 +16125,7 @@ - zona incerta (post-embryonic mouse) - MA:0000878 + zona incerta (post-embryonic mouse) @@ -17292,8 +16144,7 @@ - choroid plexus of third ventricle (post-embryonic mouse) - MA:0000879 + choroid plexus of third ventricle (post-embryonic mouse) @@ -17312,8 +16163,7 @@ - third ventricle choroid plexus epithelium (post-embryonic mouse) - MA:0000880 + third ventricle choroid plexus epithelium (post-embryonic mouse) @@ -17332,8 +16182,7 @@ - third ventricle choroid plexus stroma (post-embryonic mouse) - MA:0000881 + third ventricle choroid plexus stroma (post-embryonic mouse) @@ -17352,8 +16201,7 @@ - third ventricle ependyma (post-embryonic mouse) - MA:0000882 + third ventricle ependyma (post-embryonic mouse) @@ -17372,8 +16220,7 @@ - forebrain meninges (post-embryonic mouse) - MA:0000883 + forebrain meninges (post-embryonic mouse) @@ -17392,8 +16239,7 @@ - forebrain arachnoid mater (post-embryonic mouse) - MA:0000884 + forebrain arachnoid mater (post-embryonic mouse) @@ -17412,8 +16258,7 @@ - forebrain dura mater (post-embryonic mouse) - MA:0000885 + forebrain dura mater (post-embryonic mouse) @@ -17432,8 +16277,7 @@ - forebrain pia mater (post-embryonic mouse) - MA:0000886 + forebrain pia mater (post-embryonic mouse) @@ -17452,8 +16296,7 @@ - amygdala (post-embryonic mouse) - MA:0000887 + amygdala (post-embryonic mouse) @@ -17472,8 +16315,7 @@ - claustrum of brain (post-embryonic mouse) - MA:0000888 + claustrum of brain (post-embryonic mouse) @@ -17492,8 +16334,7 @@ - pallidum (post-embryonic mouse) - MA:0000889 + pallidum (post-embryonic mouse) @@ -17512,8 +16353,7 @@ - globus pallidus (post-embryonic mouse) - MA:0000890 + globus pallidus (post-embryonic mouse) @@ -17532,8 +16372,7 @@ - striatum (post-embryonic mouse) - MA:0000891 + striatum (post-embryonic mouse) @@ -17552,8 +16391,7 @@ - nucleus accumbens (post-embryonic mouse) - MA:0000892 + nucleus accumbens (post-embryonic mouse) @@ -17572,8 +16410,7 @@ - caudate-putamen (post-embryonic mouse) - MA:0000893 + caudate-putamen (post-embryonic mouse) @@ -17592,8 +16429,7 @@ - caudate nucleus (post-embryonic mouse) - MA:0000894 + caudate nucleus (post-embryonic mouse) @@ -17612,8 +16448,7 @@ - putamen (post-embryonic mouse) - MA:0000895 + putamen (post-embryonic mouse) @@ -17632,8 +16467,7 @@ - lentiform nucleus (post-embryonic mouse) - MA:0000896 + lentiform nucleus (post-embryonic mouse) @@ -17652,8 +16486,7 @@ - cortical layer I (post-embryonic mouse) - MA:0000897 + cortical layer I (post-embryonic mouse) @@ -17672,8 +16505,7 @@ - cortical layer II (post-embryonic mouse) - MA:0000898 + cortical layer II (post-embryonic mouse) @@ -17692,8 +16524,7 @@ - cortical layer III (post-embryonic mouse) - MA:0000899 + cortical layer III (post-embryonic mouse) @@ -17712,8 +16543,7 @@ - cortical layer IV (post-embryonic mouse) - MA:0000900 + cortical layer IV (post-embryonic mouse) @@ -17732,8 +16562,7 @@ - cortical layer V (post-embryonic mouse) - MA:0000901 + cortical layer V (post-embryonic mouse) @@ -17752,8 +16581,7 @@ - cortical layer VI (post-embryonic mouse) - MA:0000902 + cortical layer VI (post-embryonic mouse) @@ -17772,8 +16600,7 @@ - cingulate cortex (post-embryonic mouse) - MA:0000904 + cingulate cortex (post-embryonic mouse) @@ -17792,8 +16619,7 @@ - frontal cortex (post-embryonic mouse) - MA:0000905 + frontal cortex (post-embryonic mouse) @@ -17812,8 +16638,7 @@ - prefrontal cortex (post-embryonic mouse) - MA:0000906 + prefrontal cortex (post-embryonic mouse) @@ -17832,8 +16657,7 @@ - primary motor cortex (post-embryonic mouse) - MA:0000907 + primary motor cortex (post-embryonic mouse) @@ -17852,8 +16676,7 @@ - primary somatosensory cortex (post-embryonic mouse) - MA:0000908 + primary somatosensory cortex (post-embryonic mouse) @@ -17872,8 +16695,7 @@ - insular cortex (post-embryonic mouse) - MA:0000909 + insular cortex (post-embryonic mouse) @@ -17892,8 +16714,7 @@ - white matter of spinal cord (post-embryonic mouse) - MA:0000910 + white matter of spinal cord (post-embryonic mouse) @@ -17912,8 +16733,7 @@ - lateral entorhinal cortex (post-embryonic mouse) - MA:0000911 + lateral entorhinal cortex (post-embryonic mouse) @@ -17932,8 +16752,7 @@ - perirhinal cortex (post-embryonic mouse) - MA:0000912 + perirhinal cortex (post-embryonic mouse) @@ -17952,8 +16771,7 @@ - occipital cortex (post-embryonic mouse) - MA:0000913 + occipital cortex (post-embryonic mouse) @@ -17972,8 +16790,7 @@ - primary visual cortex (post-embryonic mouse) - MA:0000914 + primary visual cortex (post-embryonic mouse) @@ -17992,8 +16809,7 @@ - secondary visual cortex (post-embryonic mouse) - MA:0000915 + secondary visual cortex (post-embryonic mouse) @@ -18012,8 +16828,7 @@ - parietal cortex (post-embryonic mouse) - MA:0000916 + parietal cortex (post-embryonic mouse) @@ -18032,8 +16847,7 @@ - digestive tract (post-embryonic mouse) - MA:0000917 + digestive tract (post-embryonic mouse) @@ -18052,8 +16866,7 @@ - secondary somatosensory cortex (post-embryonic mouse) - MA:0000918 + secondary somatosensory cortex (post-embryonic mouse) @@ -18072,8 +16885,7 @@ - upper lip (post-embryonic mouse) - MA:0000919 + upper lip (post-embryonic mouse) @@ -18092,8 +16904,7 @@ - retrohippocampal region (post-embryonic mouse) - MA:0000920 + retrohippocampal region (post-embryonic mouse) @@ -18112,8 +16923,7 @@ - lower lip (post-embryonic mouse) - MA:0000921 + lower lip (post-embryonic mouse) @@ -18132,8 +16942,7 @@ - medial entorhinal cortex (post-embryonic mouse) - MA:0000922 + medial entorhinal cortex (post-embryonic mouse) @@ -18152,8 +16961,7 @@ - presubiculum (post-embryonic mouse) - MA:0000923 + presubiculum (post-embryonic mouse) @@ -18172,8 +16980,7 @@ - septum of telencephalon (post-embryonic mouse) - MA:0000924 + septum of telencephalon (post-embryonic mouse) @@ -18192,8 +16999,7 @@ - bed nucleus of stria terminalis (post-embryonic mouse) - MA:0000925 + bed nucleus of stria terminalis (post-embryonic mouse) @@ -18212,8 +17018,7 @@ - anterior division of bed nuclei of stria terminalis (post-embryonic mouse) - MA:0000926 + anterior division of bed nuclei of stria terminalis (post-embryonic mouse) @@ -18232,8 +17037,7 @@ - fusiform nucleus of stria terminalis (post-embryonic mouse) - MA:0000927 + fusiform nucleus of stria terminalis (post-embryonic mouse) @@ -18252,8 +17056,7 @@ - magnocellular nucleus of stria terminalis (post-embryonic mouse) - MA:0000928 + magnocellular nucleus of stria terminalis (post-embryonic mouse) @@ -18272,8 +17075,7 @@ - oval nucleus of stria terminalis (post-embryonic mouse) - MA:0000929 + oval nucleus of stria terminalis (post-embryonic mouse) @@ -18292,8 +17094,7 @@ - posterior division of bed nuclei of stria terminalis (post-embryonic mouse) - MA:0000930 + posterior division of bed nuclei of stria terminalis (post-embryonic mouse) @@ -18312,8 +17113,7 @@ - principal nucleus of stria terminalis (post-embryonic mouse) - MA:0000931 + principal nucleus of stria terminalis (post-embryonic mouse) @@ -18332,8 +17132,7 @@ - transverse nucleus of stria terminalis (post-embryonic mouse) - MA:0000932 + transverse nucleus of stria terminalis (post-embryonic mouse) @@ -18352,8 +17151,7 @@ - lateral septal complex (post-embryonic mouse) - MA:0000933 + lateral septal complex (post-embryonic mouse) @@ -18372,8 +17170,7 @@ - medial septal complex (post-embryonic mouse) - MA:0000934 + medial septal complex (post-embryonic mouse) @@ -18392,8 +17189,7 @@ - medial septal nucleus (post-embryonic mouse) - MA:0000935 + medial septal nucleus (post-embryonic mouse) @@ -18412,8 +17208,7 @@ - nucleus of diagonal band (post-embryonic mouse) - MA:0000936 + nucleus of diagonal band (post-embryonic mouse) @@ -18432,8 +17227,7 @@ - septofimbrial nucleus (post-embryonic mouse) - MA:0000938 + septofimbrial nucleus (post-embryonic mouse) @@ -18452,8 +17246,7 @@ - septohippocampal nucleus (post-embryonic mouse) - MA:0000939 + septohippocampal nucleus (post-embryonic mouse) @@ -18472,8 +17265,7 @@ - subfornical organ (post-embryonic mouse) - MA:0000940 + subfornical organ (post-embryonic mouse) @@ -18492,8 +17284,7 @@ - temporal cortex (post-embryonic mouse) - MA:0000941 + temporal cortex (post-embryonic mouse) @@ -18512,8 +17303,7 @@ - auditory cortex (post-embryonic mouse) - MA:0000942 + auditory cortex (post-embryonic mouse) @@ -18532,8 +17322,7 @@ - temporal cortex association area (post-embryonic mouse) - MA:0000943 + temporal cortex association area (post-embryonic mouse) @@ -18552,8 +17341,7 @@ - cerebral hemisphere gray matter (post-embryonic mouse) - MA:0000944 + cerebral hemisphere gray matter (post-embryonic mouse) @@ -18572,8 +17360,7 @@ - cerebral hemisphere white matter (post-embryonic mouse) - MA:0000945 + cerebral hemisphere white matter (post-embryonic mouse) @@ -18592,8 +17379,7 @@ - dentate gyrus granule cell layer (post-embryonic mouse) - MA:0000946 + dentate gyrus granule cell layer (post-embryonic mouse) @@ -18612,8 +17398,7 @@ - hilus of dentate gyrus (post-embryonic mouse) - MA:0000947 + hilus of dentate gyrus (post-embryonic mouse) @@ -18632,8 +17417,7 @@ - dentate gyrus pyramidal layer (post-embryonic mouse) - MA:0000948 + dentate gyrus pyramidal layer (post-embryonic mouse) @@ -18652,8 +17436,7 @@ - hippocampus fimbria (post-embryonic mouse) - MA:0000949 + hippocampus fimbria (post-embryonic mouse) @@ -18672,8 +17455,7 @@ - CA1 field of hippocampus (post-embryonic mouse) - MA:0000950 + CA1 field of hippocampus (post-embryonic mouse) @@ -18692,8 +17474,7 @@ - CA2 field of hippocampus (post-embryonic mouse) - MA:0000951 + CA2 field of hippocampus (post-embryonic mouse) @@ -18712,8 +17493,7 @@ - CA3 field of hippocampus (post-embryonic mouse) - MA:0000952 + CA3 field of hippocampus (post-embryonic mouse) @@ -18732,8 +17512,7 @@ - CA4 field of hippocampus (post-embryonic mouse) - MA:0000953 + CA4 field of hippocampus (post-embryonic mouse) @@ -18752,8 +17531,7 @@ - hippocampus granule cell layer (post-embryonic mouse) - MA:0000954 + hippocampus granule cell layer (post-embryonic mouse) @@ -18772,8 +17550,7 @@ - hippocampus molecular layer (post-embryonic mouse) - MA:0000955 + hippocampus molecular layer (post-embryonic mouse) @@ -18792,8 +17569,7 @@ - hippocampus pyramidal layer (post-embryonic mouse) - MA:0000956 + hippocampus pyramidal layer (post-embryonic mouse) @@ -18812,8 +17588,7 @@ - hippocampus stratum lacunosum (post-embryonic mouse) - MA:0000957 + hippocampus stratum lacunosum (post-embryonic mouse) @@ -18832,8 +17607,7 @@ - hippocampus stratum oriens (post-embryonic mouse) - MA:0000958 + hippocampus stratum oriens (post-embryonic mouse) @@ -18852,8 +17626,7 @@ - hippocampus stratum radiatum (post-embryonic mouse) - MA:0000959 + hippocampus stratum radiatum (post-embryonic mouse) @@ -18872,8 +17645,7 @@ - subiculum (post-embryonic mouse) - MA:0000960 + subiculum (post-embryonic mouse) @@ -18892,8 +17664,7 @@ - choroid plexus of lateral ventricle (post-embryonic mouse) - MA:0000961 + choroid plexus of lateral ventricle (post-embryonic mouse) @@ -18912,8 +17683,7 @@ - lateral ventricle choroid plexus epithelium (post-embryonic mouse) - MA:0000962 + lateral ventricle choroid plexus epithelium (post-embryonic mouse) @@ -18932,8 +17702,7 @@ - lateral ventricle choroid plexus stroma (post-embryonic mouse) - MA:0000963 + lateral ventricle choroid plexus stroma (post-embryonic mouse) @@ -18952,8 +17721,7 @@ - lateral ventricle ependyma (post-embryonic mouse) - MA:0000964 + lateral ventricle ependyma (post-embryonic mouse) @@ -18972,8 +17740,7 @@ - lateral ventricle subependymal layer (post-embryonic mouse) - MA:0000965 + lateral ventricle subependymal layer (post-embryonic mouse) @@ -18992,8 +17759,7 @@ - accessory olfactory bulb (post-embryonic mouse) - MA:0000966 + accessory olfactory bulb (post-embryonic mouse) @@ -19012,8 +17778,7 @@ - accessory olfactory bulb glomerular layer (post-embryonic mouse) - MA:0000967 + accessory olfactory bulb glomerular layer (post-embryonic mouse) @@ -19032,8 +17797,7 @@ - anterior olfactory nucleus (post-embryonic mouse) - MA:0000968 + anterior olfactory nucleus (post-embryonic mouse) @@ -19052,8 +17816,7 @@ - olfactory bulb external plexiform layer (post-embryonic mouse) - MA:0000969 + olfactory bulb external plexiform layer (post-embryonic mouse) @@ -19072,8 +17835,7 @@ - olfactory bulb glomerular layer (post-embryonic mouse) - MA:0000970 + olfactory bulb glomerular layer (post-embryonic mouse) @@ -19092,8 +17854,7 @@ - olfactory bulb granule cell layer (post-embryonic mouse) - MA:0000971 + olfactory bulb granule cell layer (post-embryonic mouse) @@ -19112,8 +17873,7 @@ - olfactory bulb internal plexiform layer (post-embryonic mouse) - MA:0000972 + olfactory bulb internal plexiform layer (post-embryonic mouse) @@ -19132,8 +17892,7 @@ - olfactory bulb mitral cell layer (post-embryonic mouse) - MA:0000973 + olfactory bulb mitral cell layer (post-embryonic mouse) @@ -19152,8 +17911,7 @@ - olfactory bulb subependymal zone (post-embryonic mouse) - MA:0000974 + olfactory bulb subependymal zone (post-embryonic mouse) @@ -19172,8 +17930,7 @@ - olfactory tract (post-embryonic mouse) - MA:0000975 + olfactory tract (post-embryonic mouse) @@ -19192,8 +17949,7 @@ - olfactory tubercle (post-embryonic mouse) - MA:0000976 + olfactory tubercle (post-embryonic mouse) @@ -19212,8 +17968,7 @@ - island of Calleja (post-embryonic mouse) - MA:0000977 + island of Calleja (post-embryonic mouse) @@ -19232,8 +17987,7 @@ - piriform cortex (post-embryonic mouse) - MA:0000978 + piriform cortex (post-embryonic mouse) @@ -19252,8 +18006,7 @@ - meninx of telencephalon (post-embryonic mouse) - MA:0000979 + meninx of telencephalon (post-embryonic mouse) @@ -19272,8 +18025,7 @@ - telencephalon arachnoid mater (post-embryonic mouse) - MA:0000980 + telencephalon arachnoid mater (post-embryonic mouse) @@ -19292,8 +18044,7 @@ - telencephalon dura mater (post-embryonic mouse) - MA:0000981 + telencephalon dura mater (post-embryonic mouse) @@ -19312,8 +18063,7 @@ - telencephalon pia mater (post-embryonic mouse) - MA:0000982 + telencephalon pia mater (post-embryonic mouse) @@ -19332,8 +18082,7 @@ - choroid plexus of fourth ventricle (post-embryonic mouse) - MA:0000983 + choroid plexus of fourth ventricle (post-embryonic mouse) @@ -19352,8 +18101,7 @@ - fourth ventricle choroid plexus epithelium (post-embryonic mouse) - MA:0000984 + fourth ventricle choroid plexus epithelium (post-embryonic mouse) @@ -19372,8 +18120,7 @@ - fourth ventricle choroid plexus stroma (post-embryonic mouse) - MA:0000985 + fourth ventricle choroid plexus stroma (post-embryonic mouse) @@ -19392,8 +18139,7 @@ - fourth ventricle ependyma (post-embryonic mouse) - MA:0000986 + fourth ventricle ependyma (post-embryonic mouse) @@ -19412,8 +18158,7 @@ - meninx of hindbrain (post-embryonic mouse) - MA:0000987 + meninx of hindbrain (post-embryonic mouse) @@ -19432,8 +18177,7 @@ - hindbrain arachnoid mater (post-embryonic mouse) - MA:0000988 + hindbrain arachnoid mater (post-embryonic mouse) @@ -19452,8 +18196,7 @@ - hindbrain dura mater (post-embryonic mouse) - MA:0000989 + hindbrain dura mater (post-embryonic mouse) @@ -19472,8 +18215,7 @@ - hindbrain pia mater (post-embryonic mouse) - MA:0000990 + hindbrain pia mater (post-embryonic mouse) @@ -19492,8 +18234,7 @@ - anterior lobe of cerebellum (post-embryonic mouse) - MA:0000991 + anterior lobe of cerebellum (post-embryonic mouse) @@ -19512,8 +18253,7 @@ - flocculus (post-embryonic mouse) - MA:0000992 + flocculus (post-embryonic mouse) @@ -19532,8 +18272,7 @@ - granular layer of cerebellar cortex (post-embryonic mouse) - MA:0000993 + granular layer of cerebellar cortex (post-embryonic mouse) @@ -19552,8 +18291,7 @@ - cerebellum external granule cell layer (post-embryonic mouse) - MA:0000994 + cerebellum external granule cell layer (post-embryonic mouse) @@ -19572,8 +18310,7 @@ - cerebellum internal granule cell layer (post-embryonic mouse) - MA:0000995 + cerebellum internal granule cell layer (post-embryonic mouse) @@ -19592,8 +18329,7 @@ - molecular layer of cerebellar cortex (post-embryonic mouse) - MA:0000996 + molecular layer of cerebellar cortex (post-embryonic mouse) @@ -19612,8 +18348,7 @@ - Purkinje cell layer of cerebellar cortex (post-embryonic mouse) - MA:0000997 + Purkinje cell layer of cerebellar cortex (post-embryonic mouse) @@ -19632,8 +18367,7 @@ - cerebellum vermis lobule I (post-embryonic mouse) - MA:0000998 + cerebellum vermis lobule I (post-embryonic mouse) @@ -19652,8 +18386,7 @@ - cerebellum vermis lobule II (post-embryonic mouse) - MA:0000999 + cerebellum vermis lobule II (post-embryonic mouse) @@ -19672,8 +18405,7 @@ - cerebellum vermis lobule III (post-embryonic mouse) - MA:0001000 + cerebellum vermis lobule III (post-embryonic mouse) @@ -19692,8 +18424,7 @@ - cerebellum vermis lobule IV (post-embryonic mouse) - MA:0001001 + cerebellum vermis lobule IV (post-embryonic mouse) @@ -19712,8 +18443,7 @@ - cerebellum vermis lobule V (post-embryonic mouse) - MA:0001002 + cerebellum vermis lobule V (post-embryonic mouse) @@ -19732,8 +18462,7 @@ - cerebellum vermis lobule VI (post-embryonic mouse) - MA:0001003 + cerebellum vermis lobule VI (post-embryonic mouse) @@ -19752,8 +18481,7 @@ - cerebellum vermis lobule VII (post-embryonic mouse) - MA:0001004 + cerebellum vermis lobule VII (post-embryonic mouse) @@ -19772,8 +18500,7 @@ - cerebellum vermis lobule VIII (post-embryonic mouse) - MA:0001005 + cerebellum vermis lobule VIII (post-embryonic mouse) @@ -19792,8 +18519,7 @@ - cerebellum vermis lobule IX (post-embryonic mouse) - MA:0001006 + cerebellum vermis lobule IX (post-embryonic mouse) @@ -19812,8 +18538,7 @@ - cerebellum vermis lobule X (post-embryonic mouse) - MA:0001007 + cerebellum vermis lobule X (post-embryonic mouse) @@ -19832,8 +18557,7 @@ - dentate nucleus (post-embryonic mouse) - MA:0001008 + dentate nucleus (post-embryonic mouse) @@ -19852,8 +18576,7 @@ - fastigial nucleus (post-embryonic mouse) - MA:0001009 + fastigial nucleus (post-embryonic mouse) @@ -19872,8 +18595,7 @@ - abducens nucleus (post-embryonic mouse) - MA:0001010 + abducens nucleus (post-embryonic mouse) @@ -19892,8 +18614,7 @@ - Barrington's nucleus (post-embryonic mouse) - MA:0001011 + Barrington's nucleus (post-embryonic mouse) @@ -19912,8 +18633,7 @@ - cochlear nucleus (post-embryonic mouse) - MA:0001012 + cochlear nucleus (post-embryonic mouse) @@ -19932,8 +18652,7 @@ - dorsal tegmental nucleus (post-embryonic mouse) - MA:0001013 + dorsal tegmental nucleus (post-embryonic mouse) @@ -19952,8 +18671,7 @@ - facial nucleus (post-embryonic mouse) - MA:0001014 + facial nucleus (post-embryonic mouse) @@ -19972,8 +18690,7 @@ - laterodorsal tegmental nucleus (post-embryonic mouse) - MA:0001016 + laterodorsal tegmental nucleus (post-embryonic mouse) @@ -19992,8 +18709,7 @@ - locus ceruleus (post-embryonic mouse) - MA:0001017 + locus ceruleus (post-embryonic mouse) @@ -20012,8 +18728,7 @@ - nucleus of trapezoid body (post-embryonic mouse) - MA:0001018 + nucleus of trapezoid body (post-embryonic mouse) @@ -20032,8 +18747,7 @@ - parabrachial nucleus (post-embryonic mouse) - MA:0001019 + parabrachial nucleus (post-embryonic mouse) @@ -20052,8 +18766,7 @@ - pedunculopontine tegmental nucleus (post-embryonic mouse) - MA:0001020 + pedunculopontine tegmental nucleus (post-embryonic mouse) @@ -20072,8 +18785,7 @@ - pontine nuclear group (post-embryonic mouse) - MA:0001021 + pontine nuclear group (post-embryonic mouse) @@ -20092,8 +18804,7 @@ - pontine raphe nucleus (post-embryonic mouse) - MA:0001022 + pontine raphe nucleus (post-embryonic mouse) @@ -20112,8 +18823,7 @@ - nucleus prepositus (post-embryonic mouse) - MA:0001023 + nucleus prepositus (post-embryonic mouse) @@ -20132,8 +18842,7 @@ - nucleus raphe magnus (post-embryonic mouse) - MA:0001024 + nucleus raphe magnus (post-embryonic mouse) @@ -20152,8 +18861,7 @@ - reticulotegmental nucleus (post-embryonic mouse) - MA:0001025 + reticulotegmental nucleus (post-embryonic mouse) @@ -20172,8 +18880,7 @@ - superior olivary complex (post-embryonic mouse) - MA:0001026 + superior olivary complex (post-embryonic mouse) @@ -20192,8 +18899,7 @@ - superior salivatory nucleus (post-embryonic mouse) - MA:0001027 + superior salivatory nucleus (post-embryonic mouse) @@ -20212,8 +18918,7 @@ - trigeminal nucleus (post-embryonic mouse) - MA:0001028 + trigeminal nucleus (post-embryonic mouse) @@ -20232,8 +18937,7 @@ - motor nucleus of trigeminal nerve (post-embryonic mouse) - MA:0001029 + motor nucleus of trigeminal nerve (post-embryonic mouse) @@ -20252,8 +18956,7 @@ - trigeminal sensory nucleus (post-embryonic mouse) - MA:0001030 + trigeminal sensory nucleus (post-embryonic mouse) @@ -20272,8 +18975,7 @@ - ventral tegmental nucleus (post-embryonic mouse) - MA:0001031 + ventral tegmental nucleus (post-embryonic mouse) @@ -20292,8 +18994,7 @@ - vestibular nucleus (post-embryonic mouse) - MA:0001032 + vestibular nucleus (post-embryonic mouse) @@ -20312,8 +19013,7 @@ - accessory XI nerve nucleus (post-embryonic mouse) - MA:0001033 + accessory XI nerve nucleus (post-embryonic mouse) @@ -20332,8 +19032,7 @@ - area postrema (post-embryonic mouse) - MA:0001034 + area postrema (post-embryonic mouse) @@ -20352,8 +19051,7 @@ - cuneate nucleus (post-embryonic mouse) - MA:0001035 + cuneate nucleus (post-embryonic mouse) @@ -20372,8 +19070,7 @@ - dorsal motor nucleus of vagus nerve (post-embryonic mouse) - MA:0001036 + dorsal motor nucleus of vagus nerve (post-embryonic mouse) @@ -20392,8 +19089,7 @@ - gigantocellular nucleus (post-embryonic mouse) - MA:0001037 + gigantocellular nucleus (post-embryonic mouse) @@ -20412,8 +19108,7 @@ - gracile nucleus (post-embryonic mouse) - MA:0001038 + gracile nucleus (post-embryonic mouse) @@ -20432,8 +19127,7 @@ - hypoglossal nucleus (post-embryonic mouse) - MA:0001039 + hypoglossal nucleus (post-embryonic mouse) @@ -20452,8 +19146,7 @@ - inferior olivary complex (post-embryonic mouse) - MA:0001040 + inferior olivary complex (post-embryonic mouse) @@ -20472,8 +19165,7 @@ - inferior olive, beta nucleus (post-embryonic mouse) - MA:0001041 + inferior olive, beta nucleus (post-embryonic mouse) @@ -20492,8 +19184,7 @@ - inferior olive dorsal accessory nucleus (post-embryonic mouse) - MA:0001042 + inferior olive dorsal accessory nucleus (post-embryonic mouse) @@ -20512,8 +19203,7 @@ - inferior olive medial accessory nucleus (post-embryonic mouse) - MA:0001044 + inferior olive medial accessory nucleus (post-embryonic mouse) @@ -20532,8 +19222,7 @@ - medial accessory inferior olivary nucleus (post-embryonic mouse) - MA:0001045 + medial accessory inferior olivary nucleus (post-embryonic mouse) @@ -20552,8 +19241,7 @@ - principal inferior olivary nucleus (post-embryonic mouse) - MA:0001046 + principal inferior olivary nucleus (post-embryonic mouse) @@ -20572,8 +19260,7 @@ - lateral reticular nucleus (post-embryonic mouse) - MA:0001047 + lateral reticular nucleus (post-embryonic mouse) @@ -20592,8 +19279,7 @@ - medial vestibular nucleus (post-embryonic mouse) - MA:0001048 + medial vestibular nucleus (post-embryonic mouse) @@ -20612,8 +19298,7 @@ - medullary reticular formation (post-embryonic mouse) - MA:0001049 + medullary reticular formation (post-embryonic mouse) @@ -20632,8 +19317,7 @@ - nucleus ambiguus (post-embryonic mouse) - MA:0001050 + nucleus ambiguus (post-embryonic mouse) @@ -20652,8 +19336,7 @@ - nucleus raphe pallidus (post-embryonic mouse) - MA:0001051 + nucleus raphe pallidus (post-embryonic mouse) @@ -20672,8 +19355,7 @@ - nucleus of solitary tract (post-embryonic mouse) - MA:0001052 + nucleus of solitary tract (post-embryonic mouse) @@ -20692,8 +19374,7 @@ - spinal nucleus of trigeminal nerve (post-embryonic mouse) - MA:0001053 + spinal nucleus of trigeminal nerve (post-embryonic mouse) @@ -20712,8 +19393,7 @@ - inferior vestibular nucleus (post-embryonic mouse) - MA:0001054 + inferior vestibular nucleus (post-embryonic mouse) @@ -20732,8 +19412,7 @@ - anterior tegmental nucleus (post-embryonic mouse) - MA:0001055 + anterior tegmental nucleus (post-embryonic mouse) @@ -20752,8 +19431,7 @@ - cerebral crus (post-embryonic mouse) - MA:0001056 + cerebral crus (post-embryonic mouse) @@ -20772,8 +19450,7 @@ - mesencephalic nucleus of trigeminal nerve (post-embryonic mouse) - MA:0001057 + mesencephalic nucleus of trigeminal nerve (post-embryonic mouse) @@ -20792,8 +19469,7 @@ - meninx of midbrain (post-embryonic mouse) - MA:0001058 + meninx of midbrain (post-embryonic mouse) @@ -20812,8 +19488,7 @@ - midbrain arachnoid mater (post-embryonic mouse) - MA:0001059 + midbrain arachnoid mater (post-embryonic mouse) @@ -20832,8 +19507,7 @@ - midbrain dura mater (post-embryonic mouse) - MA:0001060 + midbrain dura mater (post-embryonic mouse) @@ -20852,8 +19526,7 @@ - midbrain pia mater (post-embryonic mouse) - MA:0001061 + midbrain pia mater (post-embryonic mouse) @@ -20872,8 +19545,7 @@ - pretectal region (post-embryonic mouse) - MA:0001062 + pretectal region (post-embryonic mouse) @@ -20892,8 +19564,7 @@ - red nucleus (post-embryonic mouse) - MA:0001063 + red nucleus (post-embryonic mouse) @@ -20912,8 +19583,7 @@ - substantia nigra pars compacta (post-embryonic mouse) - MA:0001064 + substantia nigra pars compacta (post-embryonic mouse) @@ -20932,8 +19602,7 @@ - substantia nigra pars lateralis (post-embryonic mouse) - MA:0001065 + substantia nigra pars lateralis (post-embryonic mouse) @@ -20952,8 +19621,7 @@ - substantia nigra pars reticulata (post-embryonic mouse) - MA:0001066 + substantia nigra pars reticulata (post-embryonic mouse) @@ -20972,8 +19640,7 @@ - inferior colliculus (post-embryonic mouse) - MA:0001067 + inferior colliculus (post-embryonic mouse) @@ -20992,8 +19659,7 @@ - superior colliculus (post-embryonic mouse) - MA:0001068 + superior colliculus (post-embryonic mouse) @@ -21012,8 +19678,7 @@ - interpeduncular nucleus (post-embryonic mouse) - MA:0001069 + interpeduncular nucleus (post-embryonic mouse) @@ -21032,8 +19697,7 @@ - parvocellular oculomotor nucleus (post-embryonic mouse) - MA:0001071 + parvocellular oculomotor nucleus (post-embryonic mouse) @@ -21052,8 +19716,7 @@ - ventral nucleus of posterior commissure (post-embryonic mouse) - MA:0001072 + ventral nucleus of posterior commissure (post-embryonic mouse) @@ -21072,8 +19735,7 @@ - oculomotor nuclear complex (post-embryonic mouse) - MA:0001073 + oculomotor nuclear complex (post-embryonic mouse) @@ -21092,8 +19754,7 @@ - parabigeminal nucleus (post-embryonic mouse) - MA:0001074 + parabigeminal nucleus (post-embryonic mouse) @@ -21112,8 +19773,7 @@ - trochlear nucleus (post-embryonic mouse) - MA:0001075 + trochlear nucleus (post-embryonic mouse) @@ -21132,8 +19792,7 @@ - geniculate ganglion (post-embryonic mouse) - MA:0001076 + geniculate ganglion (post-embryonic mouse) @@ -21152,8 +19811,7 @@ - glossopharyngeal ganglion (post-embryonic mouse) - MA:0001077 + glossopharyngeal ganglion (post-embryonic mouse) @@ -21172,8 +19830,7 @@ - inferior glossopharyngeal IX ganglion (post-embryonic mouse) - MA:0001078 + inferior glossopharyngeal IX ganglion (post-embryonic mouse) @@ -21192,8 +19849,7 @@ - superior glossopharyngeal IX ganglion (post-embryonic mouse) - MA:0001079 + superior glossopharyngeal IX ganglion (post-embryonic mouse) @@ -21212,8 +19868,7 @@ - trigeminal ganglion (post-embryonic mouse) - MA:0001080 + trigeminal ganglion (post-embryonic mouse) @@ -21232,8 +19887,7 @@ - vagus X ganglion (post-embryonic mouse) - MA:0001081 + vagus X ganglion (post-embryonic mouse) @@ -21252,8 +19906,7 @@ - inferior vagus X ganglion (post-embryonic mouse) - MA:0001082 + inferior vagus X ganglion (post-embryonic mouse) @@ -21272,8 +19925,7 @@ - superior vagus X ganglion (post-embryonic mouse) - MA:0001083 + superior vagus X ganglion (post-embryonic mouse) @@ -21292,8 +19944,7 @@ - vestibulocochlear ganglion (post-embryonic mouse) - MA:0001084 + vestibulocochlear ganglion (post-embryonic mouse) @@ -21312,8 +19963,7 @@ - cochlear ganglion (post-embryonic mouse) - MA:0001085 + cochlear ganglion (post-embryonic mouse) @@ -21332,8 +19982,7 @@ - vestibular ganglion (post-embryonic mouse) - MA:0001086 + vestibular ganglion (post-embryonic mouse) @@ -21352,8 +20001,7 @@ - abducens nerve (post-embryonic mouse) - MA:0001087 + abducens nerve (post-embryonic mouse) @@ -21372,8 +20020,7 @@ - accessory XI nerve (post-embryonic mouse) - MA:0001088 + accessory XI nerve (post-embryonic mouse) @@ -21392,8 +20039,7 @@ - accessory XI nerve cranial component (post-embryonic mouse) - MA:0001089 + accessory XI nerve cranial component (post-embryonic mouse) @@ -21412,8 +20058,7 @@ - accessory XI nerve spinal component (post-embryonic mouse) - MA:0001090 + accessory XI nerve spinal component (post-embryonic mouse) @@ -21432,8 +20077,7 @@ - facial nerve (post-embryonic mouse) - MA:0001091 + facial nerve (post-embryonic mouse) @@ -21452,8 +20096,7 @@ - chorda tympani branch of facial nerve (post-embryonic mouse) - MA:0001092 + chorda tympani branch of facial nerve (post-embryonic mouse) @@ -21472,8 +20115,7 @@ - glossopharyngeal nerve (post-embryonic mouse) - MA:0001093 + glossopharyngeal nerve (post-embryonic mouse) @@ -21492,8 +20134,7 @@ - hypoglossal nerve (post-embryonic mouse) - MA:0001094 + hypoglossal nerve (post-embryonic mouse) @@ -21512,8 +20153,7 @@ - oculomotor nerve (post-embryonic mouse) - MA:0001095 + oculomotor nerve (post-embryonic mouse) @@ -21532,8 +20172,7 @@ - olfactory nerve (post-embryonic mouse) - MA:0001096 + olfactory nerve (post-embryonic mouse) @@ -21552,8 +20191,7 @@ - cranial nerve II (post-embryonic mouse) - MA:0001097 + cranial nerve II (post-embryonic mouse) @@ -21572,8 +20210,7 @@ - optic chiasma (post-embryonic mouse) - MA:0001098 + optic chiasma (post-embryonic mouse) @@ -21592,8 +20229,7 @@ - optic tract (post-embryonic mouse) - MA:0001099 + optic tract (post-embryonic mouse) @@ -21612,8 +20248,7 @@ - trigeminal nerve (post-embryonic mouse) - MA:0001100 + trigeminal nerve (post-embryonic mouse) @@ -21632,8 +20267,7 @@ - mandibular nerve (post-embryonic mouse) - MA:0001101 + mandibular nerve (post-embryonic mouse) @@ -21652,8 +20286,7 @@ - lingual nerve (post-embryonic mouse) - MA:0001102 + lingual nerve (post-embryonic mouse) @@ -21672,8 +20305,7 @@ - maxillary nerve (post-embryonic mouse) - MA:0001103 + maxillary nerve (post-embryonic mouse) @@ -21692,8 +20324,7 @@ - ophthalmic nerve (post-embryonic mouse) - MA:0001104 + ophthalmic nerve (post-embryonic mouse) @@ -21712,8 +20343,7 @@ - trochlear nerve (post-embryonic mouse) - MA:0001105 + trochlear nerve (post-embryonic mouse) @@ -21732,8 +20362,7 @@ - vagus nerve (post-embryonic mouse) - MA:0001106 + vagus nerve (post-embryonic mouse) @@ -21752,8 +20381,7 @@ - left recurrent laryngeal nerve (post-embryonic mouse) - MA:0001107 + left recurrent laryngeal nerve (post-embryonic mouse) @@ -21772,8 +20400,7 @@ - right recurrent laryngeal nerve (post-embryonic mouse) - MA:0001108 + right recurrent laryngeal nerve (post-embryonic mouse) @@ -21792,8 +20419,7 @@ - vestibulocochlear nerve (post-embryonic mouse) - MA:0001109 + vestibulocochlear nerve (post-embryonic mouse) @@ -21812,8 +20438,7 @@ - cochlear nerve (post-embryonic mouse) - MA:0001110 + cochlear nerve (post-embryonic mouse) @@ -21832,8 +20457,7 @@ - vestibular nerve (post-embryonic mouse) - MA:0001111 + vestibular nerve (post-embryonic mouse) @@ -21852,8 +20476,7 @@ - gray matter (post-embryonic mouse) - MA:0001112 + gray matter (post-embryonic mouse) @@ -21872,8 +20495,7 @@ - meninx (post-embryonic mouse) - MA:0001113 + meninx (post-embryonic mouse) @@ -21892,8 +20514,7 @@ - arachnoid mater (post-embryonic mouse) - MA:0001114 + arachnoid mater (post-embryonic mouse) @@ -21912,8 +20533,7 @@ - dura mater (post-embryonic mouse) - MA:0001115 + dura mater (post-embryonic mouse) @@ -21932,8 +20552,7 @@ - pia mater (post-embryonic mouse) - MA:0001116 + pia mater (post-embryonic mouse) @@ -21952,8 +20571,7 @@ - central canal of spinal cord (post-embryonic mouse) - MA:0001117 + central canal of spinal cord (post-embryonic mouse) @@ -21972,8 +20590,7 @@ - spinal cord lateral horn (post-embryonic mouse) - MA:0001118 + spinal cord lateral horn (post-embryonic mouse) @@ -21992,8 +20609,7 @@ - dorsal horn of spinal cord (post-embryonic mouse) - MA:0001119 + dorsal horn of spinal cord (post-embryonic mouse) @@ -22012,8 +20628,7 @@ - lamina VI of gray matter of spinal cord (post-embryonic mouse) - MA:0001120 + lamina VI of gray matter of spinal cord (post-embryonic mouse) @@ -22032,8 +20647,7 @@ - dorsal thoracic nucleus (post-embryonic mouse) - MA:0001121 + dorsal thoracic nucleus (post-embryonic mouse) @@ -22052,8 +20666,7 @@ - spinal cord reticular nucleus (post-embryonic mouse) - MA:0001123 + spinal cord reticular nucleus (post-embryonic mouse) @@ -22072,8 +20685,7 @@ - substantia gelatinosa (post-embryonic mouse) - MA:0001124 + substantia gelatinosa (post-embryonic mouse) @@ -22092,8 +20704,7 @@ - spinal cord ependyma (post-embryonic mouse) - MA:0001125 + spinal cord ependyma (post-embryonic mouse) @@ -22112,8 +20723,7 @@ - dorsal commissural nucleus of spinal cord (post-embryonic mouse) - MA:0001128 + dorsal commissural nucleus of spinal cord (post-embryonic mouse) @@ -22132,8 +20742,7 @@ - spinal cord lateral motor column (post-embryonic mouse) - MA:0001129 + spinal cord lateral motor column (post-embryonic mouse) @@ -22152,8 +20761,7 @@ - meninx of spinal cord (post-embryonic mouse) - MA:0001130 + meninx of spinal cord (post-embryonic mouse) @@ -22172,8 +20780,7 @@ - spinal cord arachnoid mater (post-embryonic mouse) - MA:0001131 + spinal cord arachnoid mater (post-embryonic mouse) @@ -22192,8 +20799,7 @@ - spinal dura mater (post-embryonic mouse) - MA:0001132 + spinal dura mater (post-embryonic mouse) @@ -22212,8 +20818,7 @@ - spinal cord pia mater (post-embryonic mouse) - MA:0001133 + spinal cord pia mater (post-embryonic mouse) @@ -22232,8 +20837,7 @@ - ventral horn of spinal cord (post-embryonic mouse) - MA:0001134 + ventral horn of spinal cord (post-embryonic mouse) @@ -22252,8 +20856,7 @@ - white matter (post-embryonic mouse) - MA:0001135 + white matter (post-embryonic mouse) @@ -22272,8 +20875,7 @@ - main ciliary ganglion (post-embryonic mouse) - MA:0001136 + main ciliary ganglion (post-embryonic mouse) @@ -22292,8 +20894,7 @@ - paraaortic body (post-embryonic mouse) - MA:0001137 + paraaortic body (post-embryonic mouse) @@ -22312,8 +20913,7 @@ - cardiac nerve plexus (post-embryonic mouse) - MA:0001138 + cardiac nerve plexus (post-embryonic mouse) @@ -22332,8 +20932,7 @@ - celiac nerve plexus (post-embryonic mouse) - MA:0001139 + celiac nerve plexus (post-embryonic mouse) @@ -22352,8 +20951,7 @@ - hypogastric nerve (post-embryonic mouse) - MA:0001140 + hypogastric nerve (post-embryonic mouse) @@ -22372,8 +20970,7 @@ - inferior hypogastric nerve plexus (post-embryonic mouse) - MA:0001141 + inferior hypogastric nerve plexus (post-embryonic mouse) @@ -22392,8 +20989,7 @@ - superior hypogastric nerve plexus (post-embryonic mouse) - MA:0001142 + superior hypogastric nerve plexus (post-embryonic mouse) @@ -22412,8 +21008,7 @@ - pulmonary nerve plexus (post-embryonic mouse) - MA:0001143 + pulmonary nerve plexus (post-embryonic mouse) @@ -22432,8 +21027,7 @@ - enteric ganglion (post-embryonic mouse) - MA:0001144 + enteric ganglion (post-embryonic mouse) @@ -22452,8 +21046,7 @@ - enteric nerve (post-embryonic mouse) - MA:0001145 + enteric nerve (post-embryonic mouse) @@ -22472,8 +21065,7 @@ - cholinergic enteric nerve (post-embryonic mouse) - MA:0001146 + cholinergic enteric nerve (post-embryonic mouse) @@ -22492,8 +21084,7 @@ - enteric plexus (post-embryonic mouse) - MA:0001147 + enteric plexus (post-embryonic mouse) @@ -22512,8 +21103,7 @@ - myenteric nerve plexus (post-embryonic mouse) - MA:0001148 + myenteric nerve plexus (post-embryonic mouse) @@ -22532,8 +21122,7 @@ - submucous nerve plexus (post-embryonic mouse) - MA:0001149 + submucous nerve plexus (post-embryonic mouse) @@ -22552,8 +21141,7 @@ - vagus X nerve trunk (post-embryonic mouse) - MA:0001150 + vagus X nerve trunk (post-embryonic mouse) @@ -22572,8 +21160,7 @@ - left vagus X nerve trunk (post-embryonic mouse) - MA:0001151 + left vagus X nerve trunk (post-embryonic mouse) @@ -22592,8 +21179,7 @@ - right vagus X nerve trunk (post-embryonic mouse) - MA:0001152 + right vagus X nerve trunk (post-embryonic mouse) @@ -22612,8 +21198,7 @@ - cervical ganglion (post-embryonic mouse) - MA:0001153 + cervical ganglion (post-embryonic mouse) @@ -22632,8 +21217,7 @@ - inferior cervical ganglion (post-embryonic mouse) - MA:0001154 + inferior cervical ganglion (post-embryonic mouse) @@ -22652,8 +21236,7 @@ - middle cervical ganglion (post-embryonic mouse) - MA:0001155 + middle cervical ganglion (post-embryonic mouse) @@ -22672,8 +21255,7 @@ - superior cervical ganglion (post-embryonic mouse) - MA:0001156 + superior cervical ganglion (post-embryonic mouse) @@ -22692,8 +21274,7 @@ - cervicothoracic ganglion (post-embryonic mouse) - MA:0001157 + cervicothoracic ganglion (post-embryonic mouse) @@ -22712,8 +21293,7 @@ - celiac ganglion (post-embryonic mouse) - MA:0001158 + celiac ganglion (post-embryonic mouse) @@ -22732,8 +21312,7 @@ - thoracic ganglion (post-embryonic mouse) - MA:0001159 + thoracic ganglion (post-embryonic mouse) @@ -22752,8 +21331,7 @@ - sympathetic nerve plexus (post-embryonic mouse) - MA:0001160 + sympathetic nerve plexus (post-embryonic mouse) @@ -22772,8 +21350,7 @@ - ganglion of peripheral nervous system (post-embryonic mouse) - MA:0001161 + ganglion of peripheral nervous system (post-embryonic mouse) @@ -22792,8 +21369,7 @@ - internal carotid nerve plexus (post-embryonic mouse) - MA:0001162 + internal carotid nerve plexus (post-embryonic mouse) @@ -22812,8 +21388,7 @@ - lumbar sympathetic nerve trunk (post-embryonic mouse) - MA:0001163 + lumbar sympathetic nerve trunk (post-embryonic mouse) @@ -22832,8 +21407,7 @@ - sacral sympathetic nerve trunk (post-embryonic mouse) - MA:0001164 + sacral sympathetic nerve trunk (post-embryonic mouse) @@ -22852,8 +21426,7 @@ - thoracic sympathetic nerve trunk (post-embryonic mouse) - MA:0001165 + thoracic sympathetic nerve trunk (post-embryonic mouse) @@ -22872,8 +21445,7 @@ - axillary nerve (post-embryonic mouse) - MA:0001166 + axillary nerve (post-embryonic mouse) @@ -22892,8 +21464,7 @@ - femoral nerve (post-embryonic mouse) - MA:0001167 + femoral nerve (post-embryonic mouse) @@ -22912,8 +21483,7 @@ - median nerve (post-embryonic mouse) - MA:0001168 + median nerve (post-embryonic mouse) @@ -22932,8 +21502,7 @@ - common fibular nerve (post-embryonic mouse) - MA:0001169 + common fibular nerve (post-embryonic mouse) @@ -22952,8 +21521,7 @@ - phrenic nerve (post-embryonic mouse) - MA:0001170 + phrenic nerve (post-embryonic mouse) @@ -22972,8 +21540,7 @@ - radial nerve (post-embryonic mouse) - MA:0001171 + radial nerve (post-embryonic mouse) @@ -22992,8 +21559,7 @@ - sciatic nerve (post-embryonic mouse) - MA:0001172 + sciatic nerve (post-embryonic mouse) @@ -23012,8 +21578,7 @@ - tibial nerve (post-embryonic mouse) - MA:0001173 + tibial nerve (post-embryonic mouse) @@ -23032,8 +21597,7 @@ - ulnar nerve (post-embryonic mouse) - MA:0001174 + ulnar nerve (post-embryonic mouse) @@ -23052,8 +21616,7 @@ - axillary nerve trunk (post-embryonic mouse) - MA:0001175 + axillary nerve trunk (post-embryonic mouse) @@ -23072,8 +21635,7 @@ - trunk of intercostal nerve (post-embryonic mouse) - MA:0001176 + trunk of intercostal nerve (post-embryonic mouse) @@ -23092,8 +21654,7 @@ - trunk of phrenic nerve (post-embryonic mouse) - MA:0001177 + trunk of phrenic nerve (post-embryonic mouse) @@ -23112,8 +21673,7 @@ - trunk of sciatic nerve (post-embryonic mouse) - MA:0001178 + trunk of sciatic nerve (post-embryonic mouse) @@ -23132,8 +21692,7 @@ - trunk of segmental spinal nerve (post-embryonic mouse) - MA:0001179 + trunk of segmental spinal nerve (post-embryonic mouse) @@ -23152,8 +21711,7 @@ - brachial nerve plexus (post-embryonic mouse) - MA:0001180 + brachial nerve plexus (post-embryonic mouse) @@ -23172,8 +21730,7 @@ - lumbosacral nerve plexus (post-embryonic mouse) - MA:0001181 + lumbosacral nerve plexus (post-embryonic mouse) @@ -23192,8 +21749,7 @@ - cochlear modiolus (post-embryonic mouse) - MA:0001182 + cochlear modiolus (post-embryonic mouse) @@ -23212,8 +21768,7 @@ - osseus cochlear canal (post-embryonic mouse) - MA:0001183 + osseus cochlear canal (post-embryonic mouse) @@ -23232,8 +21787,7 @@ - osseus spiral lamina (post-embryonic mouse) - MA:0001184 + osseus spiral lamina (post-embryonic mouse) @@ -23252,8 +21806,7 @@ - osseus labyrinth vestibule (post-embryonic mouse) - MA:0001185 + osseus labyrinth vestibule (post-embryonic mouse) @@ -23272,8 +21825,7 @@ - vestibular aqueduct (post-embryonic mouse) - MA:0001186 + vestibular aqueduct (post-embryonic mouse) @@ -23292,8 +21844,7 @@ - endolymphatic duct (post-embryonic mouse) - MA:0001187 + endolymphatic duct (post-embryonic mouse) @@ -23312,8 +21863,7 @@ - endolymphatic sac (post-embryonic mouse) - MA:0001188 + endolymphatic sac (post-embryonic mouse) @@ -23332,8 +21882,7 @@ - inner ear epithelium (post-embryonic mouse) - MA:0001189 + inner ear epithelium (post-embryonic mouse) @@ -23352,8 +21901,7 @@ - basilar membrane of cochlea (post-embryonic mouse) - MA:0001190 + basilar membrane of cochlea (post-embryonic mouse) @@ -23372,8 +21920,7 @@ - lamina of spiral limbus (post-embryonic mouse) - MA:0001191 + lamina of spiral limbus (post-embryonic mouse) @@ -23392,8 +21939,7 @@ - spiral ligament (post-embryonic mouse) - MA:0001192 + spiral ligament (post-embryonic mouse) @@ -23412,8 +21958,7 @@ - spiral organ of cochlea (post-embryonic mouse) - MA:0001193 + spiral organ of cochlea (post-embryonic mouse) @@ -23432,8 +21977,7 @@ - reticular membrane of spiral organ (post-embryonic mouse) - MA:0001194 + reticular membrane of spiral organ (post-embryonic mouse) @@ -23452,8 +21996,7 @@ - spiral sulcus (post-embryonic mouse) - MA:0001195 + spiral sulcus (post-embryonic mouse) @@ -23472,8 +22015,7 @@ - outer spiral sulcus (post-embryonic mouse) - MA:0001196 + outer spiral sulcus (post-embryonic mouse) @@ -23492,8 +22034,7 @@ - inner spiral sulcus (post-embryonic mouse) - MA:0001197 + inner spiral sulcus (post-embryonic mouse) @@ -23512,8 +22053,7 @@ - stria vascularis of cochlear duct (post-embryonic mouse) - MA:0001198 + stria vascularis of cochlear duct (post-embryonic mouse) @@ -23532,8 +22072,7 @@ - tectorial membrane of cochlea (post-embryonic mouse) - MA:0001199 + tectorial membrane of cochlea (post-embryonic mouse) @@ -23552,8 +22091,7 @@ - vestibular membrane of cochlear duct (post-embryonic mouse) - MA:0001200 + vestibular membrane of cochlear duct (post-embryonic mouse) @@ -23572,8 +22110,7 @@ - macula of saccule of membranous labyrinth (post-embryonic mouse) - MA:0001201 + macula of saccule of membranous labyrinth (post-embryonic mouse) @@ -23592,8 +22129,7 @@ - epithelium of saccule (post-embryonic mouse) - MA:0001202 + epithelium of saccule (post-embryonic mouse) @@ -23612,8 +22148,7 @@ - macula of utricle of membranous labyrinth (post-embryonic mouse) - MA:0001203 + macula of utricle of membranous labyrinth (post-embryonic mouse) @@ -23632,8 +22167,7 @@ - epithelium of utricle (post-embryonic mouse) - MA:0001204 + epithelium of utricle (post-embryonic mouse) @@ -23652,8 +22186,7 @@ - scala tympani (post-embryonic mouse) - MA:0001205 + scala tympani (post-embryonic mouse) @@ -23672,8 +22205,7 @@ - scala vestibuli (post-embryonic mouse) - MA:0001206 + scala vestibuli (post-embryonic mouse) @@ -23692,8 +22224,7 @@ - anterior semicircular canal (post-embryonic mouse) - MA:0001207 + anterior semicircular canal (post-embryonic mouse) @@ -23712,8 +22243,7 @@ - lateral semicircular canal (post-embryonic mouse) - MA:0001208 + lateral semicircular canal (post-embryonic mouse) @@ -23732,8 +22262,7 @@ - posterior semicircular canal (post-embryonic mouse) - MA:0001209 + posterior semicircular canal (post-embryonic mouse) @@ -23752,8 +22281,7 @@ - crus commune (post-embryonic mouse) - MA:0001210 + crus commune (post-embryonic mouse) @@ -23772,8 +22300,7 @@ - anterior semicircular duct (post-embryonic mouse) - MA:0001211 + anterior semicircular duct (post-embryonic mouse) @@ -23792,8 +22319,7 @@ - lateral semicircular duct (post-embryonic mouse) - MA:0001213 + lateral semicircular duct (post-embryonic mouse) @@ -23812,8 +22338,7 @@ - posterior semicircular duct (post-embryonic mouse) - MA:0001214 + posterior semicircular duct (post-embryonic mouse) @@ -23832,8 +22357,7 @@ - incus bone (post-embryonic mouse) - MA:0001215 + incus bone (post-embryonic mouse) @@ -23852,8 +22376,7 @@ - malleus bone (post-embryonic mouse) - MA:0001216 + malleus bone (post-embryonic mouse) @@ -23872,8 +22395,7 @@ - stapes bone (post-embryonic mouse) - MA:0001217 + stapes bone (post-embryonic mouse) @@ -23892,8 +22414,7 @@ - tubotympanic recess epithelium (post-embryonic mouse) - MA:0001218 + tubotympanic recess epithelium (post-embryonic mouse) @@ -23912,8 +22433,7 @@ - blood vessel of tympanic cavity (post-embryonic mouse) - MA:0001219 + blood vessel of tympanic cavity (post-embryonic mouse) @@ -23932,8 +22452,7 @@ - stapedius muscle (post-embryonic mouse) - MA:0001220 + stapedius muscle (post-embryonic mouse) @@ -23952,8 +22471,7 @@ - tensor tympani (post-embryonic mouse) - MA:0001221 + tensor tympani (post-embryonic mouse) @@ -23972,8 +22490,7 @@ - nerve of tympanic cavity (post-embryonic mouse) - MA:0001222 + nerve of tympanic cavity (post-embryonic mouse) @@ -23992,8 +22509,7 @@ - intermediate layer of tympanic membrane (post-embryonic mouse) - MA:0001223 + intermediate layer of tympanic membrane (post-embryonic mouse) @@ -24012,8 +22528,7 @@ - tympanic membrane epithelium (post-embryonic mouse) - MA:0001224 + tympanic membrane epithelium (post-embryonic mouse) @@ -24032,8 +22547,7 @@ - tympanic ring (post-embryonic mouse) - MA:0001225 + tympanic ring (post-embryonic mouse) @@ -24052,8 +22566,7 @@ - auricular blood vessel (post-embryonic mouse) - MA:0001226 + auricular blood vessel (post-embryonic mouse) @@ -24072,8 +22585,7 @@ - auricular cartilage (post-embryonic mouse) - MA:0001227 + auricular cartilage (post-embryonic mouse) @@ -24092,8 +22604,7 @@ - ligament of pinna (post-embryonic mouse) - MA:0001228 + ligament of pinna (post-embryonic mouse) @@ -24112,8 +22623,7 @@ - auricular muscle (post-embryonic mouse) - MA:0001229 + auricular muscle (post-embryonic mouse) @@ -24132,8 +22642,7 @@ - extrinsic auricular muscle (post-embryonic mouse) - MA:0001230 + extrinsic auricular muscle (post-embryonic mouse) @@ -24152,8 +22661,7 @@ - intrinsic auricular muscle (post-embryonic mouse) - MA:0001231 + intrinsic auricular muscle (post-embryonic mouse) @@ -24172,8 +22680,7 @@ - nerve innervating pinna (post-embryonic mouse) - MA:0001232 + nerve innervating pinna (post-embryonic mouse) @@ -24192,8 +22699,7 @@ - skin of external ear (post-embryonic mouse) - MA:0001233 + skin of external ear (post-embryonic mouse) @@ -24212,8 +22718,7 @@ - cartilaginous external acoustic tube (post-embryonic mouse) - MA:0001234 + cartilaginous external acoustic tube (post-embryonic mouse) @@ -24232,8 +22737,7 @@ - external acoustic meatus osseus part (post-embryonic mouse) - MA:0001235 + external acoustic meatus osseus part (post-embryonic mouse) @@ -24252,8 +22756,7 @@ - aqueous humor of eyeball (post-embryonic mouse) - MA:0001236 + aqueous humor of eyeball (post-embryonic mouse) @@ -24272,8 +22775,7 @@ - choroidal blood vessel (post-embryonic mouse) - MA:0001237 + choroidal blood vessel (post-embryonic mouse) @@ -24292,8 +22794,7 @@ - ciliary epithelium (post-embryonic mouse) - MA:0001238 + ciliary epithelium (post-embryonic mouse) @@ -24312,8 +22813,7 @@ - ciliary stroma (post-embryonic mouse) - MA:0001239 + ciliary stroma (post-embryonic mouse) @@ -24332,8 +22832,7 @@ - anterior limiting lamina of cornea (post-embryonic mouse) - MA:0001240 + anterior limiting lamina of cornea (post-embryonic mouse) @@ -24352,8 +22851,7 @@ - corneal blood vessel (post-embryonic mouse) - MA:0001241 + corneal blood vessel (post-embryonic mouse) @@ -24372,8 +22870,7 @@ - corneal endothelium (post-embryonic mouse) - MA:0001242 + corneal endothelium (post-embryonic mouse) @@ -24392,8 +22889,7 @@ - corneal epithelium (post-embryonic mouse) - MA:0001243 + corneal epithelium (post-embryonic mouse) @@ -24412,8 +22908,7 @@ - substantia propria of cornea (post-embryonic mouse) - MA:0001245 + substantia propria of cornea (post-embryonic mouse) @@ -24432,8 +22927,7 @@ - Descemet's membrane (post-embryonic mouse) - MA:0001246 + Descemet's membrane (post-embryonic mouse) @@ -24452,8 +22946,7 @@ - Harderian gland (post-embryonic mouse) - MA:0001247 + Harderian gland (post-embryonic mouse) @@ -24472,8 +22965,7 @@ - Harderian gland epithelium (post-embryonic mouse) - MA:0001248 + Harderian gland epithelium (post-embryonic mouse) @@ -24492,8 +22984,7 @@ - tarsal gland (post-embryonic mouse) - MA:0001249 + tarsal gland (post-embryonic mouse) @@ -24512,8 +23003,7 @@ - eyelid blood vessel (post-embryonic mouse) - MA:0001250 + eyelid blood vessel (post-embryonic mouse) @@ -24532,8 +23022,7 @@ - eyelid connective tissue (post-embryonic mouse) - MA:0001251 + eyelid connective tissue (post-embryonic mouse) @@ -24552,8 +23041,7 @@ - eyelid subcutaneous connective tissue (post-embryonic mouse) - MA:0001252 + eyelid subcutaneous connective tissue (post-embryonic mouse) @@ -24572,8 +23060,7 @@ - eyelid submuscular connective tissue (post-embryonic mouse) - MA:0001253 + eyelid submuscular connective tissue (post-embryonic mouse) @@ -24592,8 +23079,7 @@ - orbicularis oculi muscle (post-embryonic mouse) - MA:0001254 + orbicularis oculi muscle (post-embryonic mouse) @@ -24612,8 +23098,7 @@ - eyelid nerve (post-embryonic mouse) - MA:0001255 + eyelid nerve (post-embryonic mouse) @@ -24632,8 +23117,7 @@ - skin of eyelid (post-embryonic mouse) - MA:0001256 + skin of eyelid (post-embryonic mouse) @@ -24652,8 +23136,7 @@ - inferior eyelid tarsus (post-embryonic mouse) - MA:0001257 + inferior eyelid tarsus (post-embryonic mouse) @@ -24672,8 +23155,7 @@ - medial palpebral ligament (post-embryonic mouse) - MA:0001258 + medial palpebral ligament (post-embryonic mouse) @@ -24692,8 +23174,7 @@ - orbital septum (post-embryonic mouse) - MA:0001259 + orbital septum (post-embryonic mouse) @@ -24712,8 +23193,7 @@ - superior eyelid tarsus (post-embryonic mouse) - MA:0001260 + superior eyelid tarsus (post-embryonic mouse) @@ -24732,8 +23212,7 @@ - inner canthus (post-embryonic mouse) - MA:0001262 + inner canthus (post-embryonic mouse) @@ -24752,8 +23231,7 @@ - lower eyelid (post-embryonic mouse) - MA:0001263 + lower eyelid (post-embryonic mouse) @@ -24772,8 +23250,7 @@ - outer canthus (post-embryonic mouse) - MA:0001264 + outer canthus (post-embryonic mouse) @@ -24792,8 +23269,7 @@ - palpebral conjunctiva (post-embryonic mouse) - MA:0001265 + palpebral conjunctiva (post-embryonic mouse) @@ -24812,8 +23288,7 @@ - palpebral fissure (post-embryonic mouse) - MA:0001266 + palpebral fissure (post-embryonic mouse) @@ -24832,8 +23307,7 @@ - upper eyelid (post-embryonic mouse) - MA:0001267 + upper eyelid (post-embryonic mouse) @@ -24852,8 +23326,7 @@ - smooth muscle of eye (post-embryonic mouse) - MA:0001268 + smooth muscle of eye (post-embryonic mouse) @@ -24872,8 +23345,7 @@ - ciliary muscle (post-embryonic mouse) - MA:0001269 + ciliary muscle (post-embryonic mouse) @@ -24892,8 +23364,7 @@ - iris smooth muscle (post-embryonic mouse) - MA:0001270 + iris smooth muscle (post-embryonic mouse) @@ -24912,8 +23383,7 @@ - extra-ocular muscle (post-embryonic mouse) - MA:0001271 + extra-ocular muscle (post-embryonic mouse) @@ -24932,8 +23402,7 @@ - levator palpebrae superioris (post-embryonic mouse) - MA:0001272 + levator palpebrae superioris (post-embryonic mouse) @@ -24952,8 +23421,7 @@ - biliary system (post-embryonic mouse) - MA:0001273 + biliary system (post-embryonic mouse) @@ -24972,8 +23440,7 @@ - orbitalis muscle (post-embryonic mouse) - MA:0001274 + orbitalis muscle (post-embryonic mouse) @@ -24992,8 +23459,7 @@ - oblique extraocular muscle (post-embryonic mouse) - MA:0001275 + oblique extraocular muscle (post-embryonic mouse) @@ -25012,8 +23478,7 @@ - inferior oblique extraocular muscle (post-embryonic mouse) - MA:0001276 + inferior oblique extraocular muscle (post-embryonic mouse) @@ -25032,8 +23497,7 @@ - superior oblique extraocular muscle (post-embryonic mouse) - MA:0001277 + superior oblique extraocular muscle (post-embryonic mouse) @@ -25052,8 +23516,7 @@ - rectus extraocular muscle (post-embryonic mouse) - MA:0001278 + rectus extraocular muscle (post-embryonic mouse) @@ -25072,8 +23535,7 @@ - inferior rectus extraocular muscle (post-embryonic mouse) - MA:0001279 + inferior rectus extraocular muscle (post-embryonic mouse) @@ -25092,8 +23554,7 @@ - lateral rectus extra-ocular muscle (post-embryonic mouse) - MA:0001280 + lateral rectus extra-ocular muscle (post-embryonic mouse) @@ -25112,8 +23573,7 @@ - medial rectus extraocular muscle (post-embryonic mouse) - MA:0001281 + medial rectus extraocular muscle (post-embryonic mouse) @@ -25132,8 +23592,7 @@ - superior rectus extraocular muscle (post-embryonic mouse) - MA:0001282 + superior rectus extraocular muscle (post-embryonic mouse) @@ -25152,8 +23611,7 @@ - hyaloid vascular plexus (post-embryonic mouse) - MA:0001283 + hyaloid vascular plexus (post-embryonic mouse) @@ -25172,8 +23630,7 @@ - vasa hyaloidea propria (post-embryonic mouse) - MA:0001285 + vasa hyaloidea propria (post-embryonic mouse) @@ -25192,8 +23649,7 @@ - vitreous humor (post-embryonic mouse) - MA:0001286 + vitreous humor (post-embryonic mouse) @@ -25212,8 +23668,7 @@ - muscle of iris (post-embryonic mouse) - MA:0001287 + muscle of iris (post-embryonic mouse) @@ -25232,8 +23687,7 @@ - dilatator pupillae (post-embryonic mouse) - MA:0001288 + dilatator pupillae (post-embryonic mouse) @@ -25252,8 +23706,7 @@ - sphincter pupillae (post-embryonic mouse) - MA:0001289 + sphincter pupillae (post-embryonic mouse) @@ -25272,8 +23725,7 @@ - iris blood vessel (post-embryonic mouse) - MA:0001290 + iris blood vessel (post-embryonic mouse) @@ -25292,8 +23744,7 @@ - iris nerve (post-embryonic mouse) - MA:0001291 + iris nerve (post-embryonic mouse) @@ -25312,8 +23763,7 @@ - pupil (post-embryonic mouse) - MA:0001292 + pupil (post-embryonic mouse) @@ -25332,8 +23782,7 @@ - pupillary membrane (post-embryonic mouse) - MA:0001293 + pupillary membrane (post-embryonic mouse) @@ -25352,8 +23801,7 @@ - lacrimal canaliculus (post-embryonic mouse) - MA:0001294 + lacrimal canaliculus (post-embryonic mouse) @@ -25372,8 +23820,7 @@ - lacrimal drainage system (post-embryonic mouse) - MA:0001295 + lacrimal drainage system (post-embryonic mouse) @@ -25392,8 +23839,7 @@ - lacrimal gland (post-embryonic mouse) - MA:0001296 + lacrimal gland (post-embryonic mouse) @@ -25412,8 +23858,7 @@ - lacrimal gland epithelium (post-embryonic mouse) - MA:0001297 + lacrimal gland epithelium (post-embryonic mouse) @@ -25432,8 +23877,7 @@ - lacrimal sac (post-embryonic mouse) - MA:0001298 + lacrimal sac (post-embryonic mouse) @@ -25452,8 +23896,7 @@ - nasolacrimal duct (post-embryonic mouse) - MA:0001299 + nasolacrimal duct (post-embryonic mouse) @@ -25472,8 +23915,7 @@ - capsule of lens (post-embryonic mouse) - MA:0001300 + capsule of lens (post-embryonic mouse) @@ -25492,8 +23934,7 @@ - epithelium of lens (post-embryonic mouse) - MA:0001301 + epithelium of lens (post-embryonic mouse) @@ -25512,8 +23953,7 @@ - lens anterior epithelium (post-embryonic mouse) - MA:0001302 + lens anterior epithelium (post-embryonic mouse) @@ -25532,8 +23972,7 @@ - lens equatorial epithelium (post-embryonic mouse) - MA:0001303 + lens equatorial epithelium (post-embryonic mouse) @@ -25552,8 +23991,7 @@ - lens fiber (post-embryonic mouse) - MA:0001304 + lens fiber (post-embryonic mouse) @@ -25572,8 +24010,7 @@ - optic fissure (post-embryonic mouse) - MA:0001305 + optic fissure (post-embryonic mouse) @@ -25592,8 +24029,7 @@ - macula lutea (post-embryonic mouse) - MA:0001306 + macula lutea (post-embryonic mouse) @@ -25612,8 +24048,7 @@ - fovea centralis (post-embryonic mouse) - MA:0001307 + fovea centralis (post-embryonic mouse) @@ -25632,8 +24067,7 @@ - photoreceptor layer of retina (post-embryonic mouse) - MA:0001308 + photoreceptor layer of retina (post-embryonic mouse) @@ -25652,8 +24086,7 @@ - outer limiting layer of retina (post-embryonic mouse) - MA:0001309 + outer limiting layer of retina (post-embryonic mouse) @@ -25672,8 +24105,7 @@ - ganglionic layer of retina (post-embryonic mouse) - MA:0001310 + ganglionic layer of retina (post-embryonic mouse) @@ -25692,8 +24124,7 @@ - inner nuclear layer of retina (post-embryonic mouse) - MA:0001311 + inner nuclear layer of retina (post-embryonic mouse) @@ -25712,8 +24143,7 @@ - inner plexiform layer of retina (post-embryonic mouse) - MA:0001312 + inner plexiform layer of retina (post-embryonic mouse) @@ -25732,8 +24162,7 @@ - inner limiting layer of retina (post-embryonic mouse) - MA:0001313 + inner limiting layer of retina (post-embryonic mouse) @@ -25752,8 +24181,7 @@ - nerve fiber layer of retina (post-embryonic mouse) - MA:0001314 + nerve fiber layer of retina (post-embryonic mouse) @@ -25772,8 +24200,7 @@ - outer nuclear layer of retina (post-embryonic mouse) - MA:0001315 + outer nuclear layer of retina (post-embryonic mouse) @@ -25792,8 +24219,7 @@ - outer plexiform layer of retina (post-embryonic mouse) - MA:0001316 + outer plexiform layer of retina (post-embryonic mouse) @@ -25812,8 +24238,7 @@ - retina blood vessel (post-embryonic mouse) - MA:0001317 + retina blood vessel (post-embryonic mouse) @@ -25832,8 +24257,7 @@ - limiting membrane of retina (post-embryonic mouse) - MA:0001318 + limiting membrane of retina (post-embryonic mouse) @@ -25852,8 +24276,7 @@ - layer of retina (post-embryonic mouse) - MA:0001319 + layer of retina (post-embryonic mouse) @@ -25872,8 +24295,7 @@ - external naris (post-embryonic mouse) - MA:0001320 + external naris (post-embryonic mouse) @@ -25892,8 +24314,7 @@ - external naris epithelium (post-embryonic mouse) - MA:0001321 + external naris epithelium (post-embryonic mouse) @@ -25912,8 +24333,7 @@ - primary choana (post-embryonic mouse) - MA:0001322 + primary choana (post-embryonic mouse) @@ -25932,8 +24352,7 @@ - posterior nasal aperture (post-embryonic mouse) - MA:0001323 + posterior nasal aperture (post-embryonic mouse) @@ -25952,8 +24371,7 @@ - nasal cavity epithelium (post-embryonic mouse) - MA:0001324 + nasal cavity epithelium (post-embryonic mouse) @@ -25972,8 +24390,7 @@ - olfactory epithelium (post-embryonic mouse) - MA:0001325 + olfactory epithelium (post-embryonic mouse) @@ -25992,8 +24409,7 @@ - nasal cavity respiratory epithelium (post-embryonic mouse) - MA:0001326 + nasal cavity respiratory epithelium (post-embryonic mouse) @@ -26012,8 +24428,7 @@ - septal olfactory organ (post-embryonic mouse) - MA:0001327 + septal olfactory organ (post-embryonic mouse) @@ -26032,8 +24447,7 @@ - epithelium of vomeronasal organ (post-embryonic mouse) - MA:0001328 + epithelium of vomeronasal organ (post-embryonic mouse) @@ -26052,8 +24466,7 @@ - clavicle bone (post-embryonic mouse) - MA:0001329 + clavicle bone (post-embryonic mouse) @@ -26072,8 +24485,7 @@ - scapula (post-embryonic mouse) - MA:0001330 + scapula (post-embryonic mouse) @@ -26092,8 +24504,7 @@ - sternum (post-embryonic mouse) - MA:0001331 + sternum (post-embryonic mouse) @@ -26112,8 +24523,7 @@ - manubrium of sternum (post-embryonic mouse) - MA:0001332 + manubrium of sternum (post-embryonic mouse) @@ -26132,8 +24542,7 @@ - sternebra (post-embryonic mouse) - MA:0001333 + sternebra (post-embryonic mouse) @@ -26152,8 +24561,7 @@ - xiphoid process (post-embryonic mouse) - MA:0001334 + xiphoid process (post-embryonic mouse) @@ -26172,8 +24580,7 @@ - acetabular part of hip bone (post-embryonic mouse) - MA:0001335 + acetabular part of hip bone (post-embryonic mouse) @@ -26192,8 +24599,7 @@ - ilium (post-embryonic mouse) - MA:0001336 + ilium (post-embryonic mouse) @@ -26212,8 +24618,7 @@ - ischium (post-embryonic mouse) - MA:0001337 + ischium (post-embryonic mouse) @@ -26232,8 +24637,7 @@ - pubis (post-embryonic mouse) - MA:0001338 + pubis (post-embryonic mouse) @@ -26252,8 +24656,7 @@ - pisiform (post-embryonic mouse) - MA:0001339 + pisiform (post-embryonic mouse) @@ -26272,8 +24675,7 @@ - distal carpal bone 1 (post-embryonic mouse) - MA:0001340 + distal carpal bone 1 (post-embryonic mouse) @@ -26292,8 +24694,7 @@ - distal carpal bone 2 (post-embryonic mouse) - MA:0001341 + distal carpal bone 2 (post-embryonic mouse) @@ -26312,8 +24713,7 @@ - distal carpal bone 3 (post-embryonic mouse) - MA:0001342 + distal carpal bone 3 (post-embryonic mouse) @@ -26332,8 +24732,7 @@ - distal carpal bone 4 (post-embryonic mouse) - MA:0001343 + distal carpal bone 4 (post-embryonic mouse) @@ -26352,8 +24751,7 @@ - central carpal bone (post-embryonic mouse) - MA:0001344 + central carpal bone (post-embryonic mouse) @@ -26372,8 +24770,7 @@ - falciform carpal bone (post-embryonic mouse) - MA:0001345 + falciform carpal bone (post-embryonic mouse) @@ -26392,8 +24789,7 @@ - scapholunate (post-embryonic mouse) - MA:0001346 + scapholunate (post-embryonic mouse) @@ -26412,8 +24808,7 @@ - ulnare (post-embryonic mouse) - MA:0001347 + ulnare (post-embryonic mouse) @@ -26432,8 +24827,7 @@ - calcaneus (post-embryonic mouse) - MA:0001348 + calcaneus (post-embryonic mouse) @@ -26452,8 +24846,7 @@ - navicular bone of pes (post-embryonic mouse) - MA:0001349 + navicular bone of pes (post-embryonic mouse) @@ -26472,8 +24865,7 @@ - medial tibial tarsal bone (post-embryonic mouse) - MA:0001350 + medial tibial tarsal bone (post-embryonic mouse) @@ -26492,8 +24884,7 @@ - talus (post-embryonic mouse) - MA:0001351 + talus (post-embryonic mouse) @@ -26512,8 +24903,7 @@ - distal tarsal bone 1 (post-embryonic mouse) - MA:0001352 + distal tarsal bone 1 (post-embryonic mouse) @@ -26532,8 +24922,7 @@ - distal tarsal bone 2 (post-embryonic mouse) - MA:0001353 + distal tarsal bone 2 (post-embryonic mouse) @@ -26552,8 +24941,7 @@ - distal tarsal bone 3 (post-embryonic mouse) - MA:0001354 + distal tarsal bone 3 (post-embryonic mouse) @@ -26572,8 +24960,7 @@ - cuboid bone (post-embryonic mouse) - MA:0001355 + cuboid bone (post-embryonic mouse) @@ -26592,8 +24979,7 @@ - humerus (post-embryonic mouse) - MA:0001356 + humerus (post-embryonic mouse) @@ -26612,8 +24998,7 @@ - radius bone (post-embryonic mouse) - MA:0001357 + radius bone (post-embryonic mouse) @@ -26632,8 +25017,7 @@ - ulna (post-embryonic mouse) - MA:0001358 + ulna (post-embryonic mouse) @@ -26652,8 +25036,7 @@ - femur (post-embryonic mouse) - MA:0001359 + femur (post-embryonic mouse) @@ -26672,8 +25055,7 @@ - fibula (post-embryonic mouse) - MA:0001360 + fibula (post-embryonic mouse) @@ -26692,8 +25074,7 @@ - tibia (post-embryonic mouse) - MA:0001361 + tibia (post-embryonic mouse) @@ -26712,8 +25093,7 @@ - epiphysis (post-embryonic mouse) - MA:0001362 + epiphysis (post-embryonic mouse) @@ -26732,8 +25112,7 @@ - metaphysis (post-embryonic mouse) - MA:0001363 + metaphysis (post-embryonic mouse) @@ -26752,8 +25131,7 @@ - metacarpal bone of digit 1 (post-embryonic mouse) - MA:0001364 + metacarpal bone of digit 1 (post-embryonic mouse) @@ -26772,8 +25150,7 @@ - metacarpal bone of digit 2 (post-embryonic mouse) - MA:0001365 + metacarpal bone of digit 2 (post-embryonic mouse) @@ -26792,8 +25169,7 @@ - metacarpal bone of digit 3 (post-embryonic mouse) - MA:0001366 + metacarpal bone of digit 3 (post-embryonic mouse) @@ -26812,8 +25188,7 @@ - metacarpal bone of digit 4 (post-embryonic mouse) - MA:0001367 + metacarpal bone of digit 4 (post-embryonic mouse) @@ -26832,8 +25207,7 @@ - metacarpal bone of digit 5 (post-embryonic mouse) - MA:0001368 + metacarpal bone of digit 5 (post-embryonic mouse) @@ -26852,8 +25226,7 @@ - metatarsal bone of digit 1 (post-embryonic mouse) - MA:0001369 + metatarsal bone of digit 1 (post-embryonic mouse) @@ -26872,8 +25245,7 @@ - metatarsal bone of digit 2 (post-embryonic mouse) - MA:0001370 + metatarsal bone of digit 2 (post-embryonic mouse) @@ -26892,8 +25264,7 @@ - metatarsal bone of digit 3 (post-embryonic mouse) - MA:0001371 + metatarsal bone of digit 3 (post-embryonic mouse) @@ -26912,8 +25283,7 @@ - metatarsal bone of digit 4 (post-embryonic mouse) - MA:0001372 + metatarsal bone of digit 4 (post-embryonic mouse) @@ -26932,8 +25302,7 @@ - metatarsal bone of digit 5 (post-embryonic mouse) - MA:0001373 + metatarsal bone of digit 5 (post-embryonic mouse) @@ -26952,8 +25321,7 @@ - patella (post-embryonic mouse) - MA:0001374 + patella (post-embryonic mouse) @@ -26972,8 +25340,7 @@ - sesamoid bone (post-embryonic mouse) - MA:0001375 + sesamoid bone (post-embryonic mouse) @@ -26992,8 +25359,7 @@ - proximal sesamoid bone of pes (post-embryonic mouse) - MA:0001376 + proximal sesamoid bone of pes (post-embryonic mouse) @@ -27012,8 +25378,7 @@ - proximal sesamoid bone of manus (post-embryonic mouse) - MA:0001377 + proximal sesamoid bone of manus (post-embryonic mouse) @@ -27032,8 +25397,7 @@ - sesamoid bone of gastrocnemius (post-embryonic mouse) - MA:0001378 + sesamoid bone of gastrocnemius (post-embryonic mouse) @@ -27052,8 +25416,7 @@ - ulnar sesamoid bone (post-embryonic mouse) - MA:0001379 + ulnar sesamoid bone (post-embryonic mouse) @@ -27072,8 +25435,7 @@ - distal phalanx of pes (post-embryonic mouse) - MA:0001380 + distal phalanx of pes (post-embryonic mouse) @@ -27092,8 +25454,7 @@ - pedal digit 1 phalanx (post-embryonic mouse) - MA:0001381 + pedal digit 1 phalanx (post-embryonic mouse) @@ -27112,8 +25473,7 @@ - pedal digit 2 phalanx (post-embryonic mouse) - MA:0001382 + pedal digit 2 phalanx (post-embryonic mouse) @@ -27132,8 +25492,7 @@ - pedal digit 3 phalanx (post-embryonic mouse) - MA:0001383 + pedal digit 3 phalanx (post-embryonic mouse) @@ -27152,8 +25511,7 @@ - pedal digit 4 phalanx (post-embryonic mouse) - MA:0001384 + pedal digit 4 phalanx (post-embryonic mouse) @@ -27172,8 +25530,7 @@ - pedal digit 5 phalanx (post-embryonic mouse) - MA:0001385 + pedal digit 5 phalanx (post-embryonic mouse) @@ -27192,8 +25549,7 @@ - middle phalanx of pes (post-embryonic mouse) - MA:0001386 + middle phalanx of pes (post-embryonic mouse) @@ -27212,8 +25568,7 @@ - proximal phalanx of pes (post-embryonic mouse) - MA:0001387 + proximal phalanx of pes (post-embryonic mouse) @@ -27232,8 +25587,7 @@ - distal phalanx of manus (post-embryonic mouse) - MA:0001388 + distal phalanx of manus (post-embryonic mouse) @@ -27252,8 +25606,7 @@ - manual digit 1 phalanx (post-embryonic mouse) - MA:0001389 + manual digit 1 phalanx (post-embryonic mouse) @@ -27272,8 +25625,7 @@ - manual digit 2 phalanx (post-embryonic mouse) - MA:0001390 + manual digit 2 phalanx (post-embryonic mouse) @@ -27292,8 +25644,7 @@ - manual digit 3 phalanx (post-embryonic mouse) - MA:0001391 + manual digit 3 phalanx (post-embryonic mouse) @@ -27312,8 +25663,7 @@ - manual digit 4 phalanx (post-embryonic mouse) - MA:0001392 + manual digit 4 phalanx (post-embryonic mouse) @@ -27332,8 +25682,7 @@ - manual digit 5 phalanx (post-embryonic mouse) - MA:0001393 + manual digit 5 phalanx (post-embryonic mouse) @@ -27352,8 +25701,7 @@ - middle phalanx of manus (post-embryonic mouse) - MA:0001394 + middle phalanx of manus (post-embryonic mouse) @@ -27372,8 +25720,7 @@ - proximal phalanx of manus (post-embryonic mouse) - MA:0001395 + proximal phalanx of manus (post-embryonic mouse) @@ -27392,8 +25739,7 @@ - costal arch (post-embryonic mouse) - MA:0001396 + costal arch (post-embryonic mouse) @@ -27412,8 +25758,7 @@ - distal segment of rib (post-embryonic mouse) - MA:0001397 + distal segment of rib (post-embryonic mouse) @@ -27432,8 +25777,7 @@ - false rib (post-embryonic mouse) - MA:0001398 + false rib (post-embryonic mouse) @@ -27452,8 +25796,7 @@ - floating rib (post-embryonic mouse) - MA:0001399 + floating rib (post-embryonic mouse) @@ -27472,8 +25815,7 @@ - proximal segment of rib (post-embryonic mouse) - MA:0001400 + proximal segment of rib (post-embryonic mouse) @@ -27492,8 +25834,7 @@ - rib 1 (post-embryonic mouse) - MA:0001401 + rib 1 (post-embryonic mouse) @@ -27512,8 +25853,7 @@ - rib 2 (post-embryonic mouse) - MA:0001402 + rib 2 (post-embryonic mouse) @@ -27532,8 +25872,7 @@ - rib 3 (post-embryonic mouse) - MA:0001403 + rib 3 (post-embryonic mouse) @@ -27552,8 +25891,7 @@ - rib 4 (post-embryonic mouse) - MA:0001404 + rib 4 (post-embryonic mouse) @@ -27572,8 +25910,7 @@ - rib 5 (post-embryonic mouse) - MA:0001405 + rib 5 (post-embryonic mouse) @@ -27592,8 +25929,7 @@ - rib 6 (post-embryonic mouse) - MA:0001406 + rib 6 (post-embryonic mouse) @@ -27612,8 +25948,7 @@ - rib 7 (post-embryonic mouse) - MA:0001407 + rib 7 (post-embryonic mouse) @@ -27632,8 +25967,7 @@ - rib 8 (post-embryonic mouse) - MA:0001408 + rib 8 (post-embryonic mouse) @@ -27652,8 +25986,7 @@ - rib 9 (post-embryonic mouse) - MA:0001409 + rib 9 (post-embryonic mouse) @@ -27672,8 +26005,7 @@ - rib 10 (post-embryonic mouse) - MA:0001410 + rib 10 (post-embryonic mouse) @@ -27692,8 +26024,7 @@ - rib 11 (post-embryonic mouse) - MA:0001411 + rib 11 (post-embryonic mouse) @@ -27712,30 +26043,7 @@ - rib 12 (post-embryonic mouse) - MA:0001412 - - - - - - - - - - - - - - - - - - - - dorsal head of rib (post-embryonic mouse) - proximal segment of rib (post-embryonic mouse) - MA:0001414 + rib 12 (post-embryonic mouse) @@ -27754,8 +26062,7 @@ - head of rib (post-embryonic mouse) - MA:0001415 + head of rib (post-embryonic mouse) @@ -27774,8 +26081,7 @@ - body of rib (post-embryonic mouse) - MA:0001416 + body of rib (post-embryonic mouse) @@ -27794,8 +26100,7 @@ - tubercle of rib (post-embryonic mouse) - MA:0001417 + tubercle of rib (post-embryonic mouse) @@ -27814,8 +26119,7 @@ - distal segment of rib (post-embryonic mouse) - MA:0001418 + distal segment of rib (post-embryonic mouse) @@ -27834,8 +26138,7 @@ - true rib (post-embryonic mouse) - MA:0001419 + true rib (post-embryonic mouse) @@ -27854,8 +26157,7 @@ - caudal vertebra (post-embryonic mouse) - MA:0001420 + caudal vertebra (post-embryonic mouse) @@ -27874,8 +26176,7 @@ - vertebral bone 1 (post-embryonic mouse) - MA:0001421 + vertebral bone 1 (post-embryonic mouse) @@ -27894,8 +26195,7 @@ - vertebral bone 2 (post-embryonic mouse) - MA:0001422 + vertebral bone 2 (post-embryonic mouse) @@ -27914,8 +26214,7 @@ - mammalian cervical vertebra 3 (post-embryonic mouse) - MA:0001423 + mammalian cervical vertebra 3 (post-embryonic mouse) @@ -27934,8 +26233,7 @@ - mammalian cervical vertebra 4 (post-embryonic mouse) - MA:0001424 + mammalian cervical vertebra 4 (post-embryonic mouse) @@ -27954,8 +26252,7 @@ - mammalian cervical vertebra 5 (post-embryonic mouse) - MA:0001425 + mammalian cervical vertebra 5 (post-embryonic mouse) @@ -27974,8 +26271,7 @@ - mammalian cervical vertebra 6 (post-embryonic mouse) - MA:0001426 + mammalian cervical vertebra 6 (post-embryonic mouse) @@ -27994,8 +26290,7 @@ - mammalian cervical vertebra 7 (post-embryonic mouse) - MA:0001427 + mammalian cervical vertebra 7 (post-embryonic mouse) @@ -28014,8 +26309,7 @@ - lumbar vertebra 1 (post-embryonic mouse) - MA:0001428 + lumbar vertebra 1 (post-embryonic mouse) @@ -28034,8 +26328,7 @@ - lumbar vertebra 2 (post-embryonic mouse) - MA:0001429 + lumbar vertebra 2 (post-embryonic mouse) @@ -28054,8 +26347,7 @@ - lumbar vertebra 3 (post-embryonic mouse) - MA:0001430 + lumbar vertebra 3 (post-embryonic mouse) @@ -28074,8 +26366,7 @@ - lumbar vertebra 4 (post-embryonic mouse) - MA:0001431 + lumbar vertebra 4 (post-embryonic mouse) @@ -28094,8 +26385,7 @@ - lumbar vertebra 5 (post-embryonic mouse) - MA:0001432 + lumbar vertebra 5 (post-embryonic mouse) @@ -28114,8 +26404,7 @@ - sacral vertebra 1 (post-embryonic mouse) - MA:0001434 + sacral vertebra 1 (post-embryonic mouse) @@ -28134,8 +26423,7 @@ - sacral vertebra 2 (post-embryonic mouse) - MA:0001435 + sacral vertebra 2 (post-embryonic mouse) @@ -28154,8 +26442,7 @@ - sacral vertebra 3 (post-embryonic mouse) - MA:0001436 + sacral vertebra 3 (post-embryonic mouse) @@ -28174,8 +26461,7 @@ - sacral vertebra 4 (post-embryonic mouse) - MA:0001437 + sacral vertebra 4 (post-embryonic mouse) @@ -28194,8 +26480,7 @@ - thoracic vertebra 1 (post-embryonic mouse) - MA:0001438 + thoracic vertebra 1 (post-embryonic mouse) @@ -28214,8 +26499,7 @@ - thoracic vertebra 2 (post-embryonic mouse) - MA:0001439 + thoracic vertebra 2 (post-embryonic mouse) @@ -28234,8 +26518,7 @@ - thoracic vertebra 3 (post-embryonic mouse) - MA:0001440 + thoracic vertebra 3 (post-embryonic mouse) @@ -28254,8 +26537,7 @@ - thoracic vertebra 4 (post-embryonic mouse) - MA:0001441 + thoracic vertebra 4 (post-embryonic mouse) @@ -28274,8 +26556,7 @@ - thoracic vertebra 5 (post-embryonic mouse) - MA:0001442 + thoracic vertebra 5 (post-embryonic mouse) @@ -28294,8 +26575,7 @@ - thoracic vertebra 6 (post-embryonic mouse) - MA:0001443 + thoracic vertebra 6 (post-embryonic mouse) @@ -28314,8 +26594,7 @@ - thoracic vertebra 7 (post-embryonic mouse) - MA:0001444 + thoracic vertebra 7 (post-embryonic mouse) @@ -28334,8 +26613,7 @@ - thoracic vertebra 8 (post-embryonic mouse) - MA:0001445 + thoracic vertebra 8 (post-embryonic mouse) @@ -28354,8 +26632,7 @@ - thoracic vertebra 9 (post-embryonic mouse) - MA:0001446 + thoracic vertebra 9 (post-embryonic mouse) @@ -28374,8 +26651,7 @@ - thoracic vertebra 10 (post-embryonic mouse) - MA:0001447 + thoracic vertebra 10 (post-embryonic mouse) @@ -28394,8 +26670,7 @@ - thoracic vertebra 11 (post-embryonic mouse) - MA:0001448 + thoracic vertebra 11 (post-embryonic mouse) @@ -28414,8 +26689,7 @@ - thoracic vertebra 12 (post-embryonic mouse) - MA:0001449 + thoracic vertebra 12 (post-embryonic mouse) @@ -28434,8 +26708,7 @@ - postzygapophysis (post-embryonic mouse) - MA:0001451 + postzygapophysis (post-embryonic mouse) @@ -28454,8 +26727,7 @@ - prezygapophysis (post-embryonic mouse) - MA:0001452 + prezygapophysis (post-embryonic mouse) @@ -28474,8 +26746,7 @@ - neural arch (post-embryonic mouse) - MA:0001453 + neural arch (post-embryonic mouse) @@ -28494,8 +26765,7 @@ - vertebral foramen (post-embryonic mouse) - MA:0001454 + vertebral foramen (post-embryonic mouse) @@ -28514,8 +26784,7 @@ - neural spine (post-embryonic mouse) - MA:0001455 + neural spine (post-embryonic mouse) @@ -28534,8 +26803,7 @@ - transverse process of vertebra (post-embryonic mouse) - MA:0001456 + transverse process of vertebra (post-embryonic mouse) @@ -28554,8 +26822,7 @@ - bony vertebral centrum (post-embryonic mouse) - MA:0001457 + bony vertebral centrum (post-embryonic mouse) @@ -28574,8 +26841,7 @@ - pedicle of vertebra (post-embryonic mouse) - MA:0001458 + pedicle of vertebra (post-embryonic mouse) @@ -28594,8 +26860,7 @@ - bone element (post-embryonic mouse) - MA:0001459 + bone element (post-embryonic mouse) @@ -28614,8 +26879,7 @@ - granulosa cell layer (post-embryonic mouse) - MA:0001460 + granulosa cell layer (post-embryonic mouse) @@ -28634,8 +26898,7 @@ - compact bone tissue (post-embryonic mouse) - MA:0001461 + compact bone tissue (post-embryonic mouse) @@ -28654,8 +26917,7 @@ - basioccipital bone (post-embryonic mouse) - MA:0001462 + basioccipital bone (post-embryonic mouse) @@ -28674,8 +26936,7 @@ - basisphenoid bone (post-embryonic mouse) - MA:0001463 + basisphenoid bone (post-embryonic mouse) @@ -28694,8 +26955,7 @@ - exoccipital bone (post-embryonic mouse) - MA:0001464 + exoccipital bone (post-embryonic mouse) @@ -28714,8 +26974,7 @@ - fontanelle (post-embryonic mouse) - MA:0001465 + fontanelle (post-embryonic mouse) @@ -28734,8 +26993,7 @@ - tetrapod frontal bone (post-embryonic mouse) - MA:0001466 + tetrapod frontal bone (post-embryonic mouse) @@ -28754,8 +27012,7 @@ - interparietal bone (post-embryonic mouse) - MA:0001467 + interparietal bone (post-embryonic mouse) @@ -28774,8 +27031,7 @@ - occipital bone (post-embryonic mouse) - MA:0001468 + occipital bone (post-embryonic mouse) @@ -28794,8 +27050,7 @@ - tetrapod parietal bone (post-embryonic mouse) - MA:0001469 + tetrapod parietal bone (post-embryonic mouse) @@ -28814,8 +27069,7 @@ - presphenoid bone (post-embryonic mouse) - MA:0001470 + presphenoid bone (post-embryonic mouse) @@ -28834,8 +27088,7 @@ - pterygoid bone (post-embryonic mouse) - MA:0001471 + pterygoid bone (post-embryonic mouse) @@ -28854,8 +27107,7 @@ - sphenoid bone (post-embryonic mouse) - MA:0001472 + sphenoid bone (post-embryonic mouse) @@ -28874,8 +27126,7 @@ - squamous part of temporal bone (post-embryonic mouse) - MA:0001473 + squamous part of temporal bone (post-embryonic mouse) @@ -28894,8 +27145,7 @@ - supraoccipital bone (post-embryonic mouse) - MA:0001474 + supraoccipital bone (post-embryonic mouse) @@ -28914,8 +27164,7 @@ - cranial suture (post-embryonic mouse) - MA:0001475 + cranial suture (post-embryonic mouse) @@ -28934,8 +27183,7 @@ - temporal bone (post-embryonic mouse) - MA:0001476 + temporal bone (post-embryonic mouse) @@ -28954,8 +27202,7 @@ - petrous part of temporal bone (post-embryonic mouse) - MA:0001477 + petrous part of temporal bone (post-embryonic mouse) @@ -28974,8 +27221,7 @@ - neurocranium bone (post-embryonic mouse) - MA:0001478 + neurocranium bone (post-embryonic mouse) @@ -28994,8 +27240,7 @@ - respiratory tract epithelium (post-embryonic mouse) - MA:0001480 + respiratory tract epithelium (post-embryonic mouse) @@ -29014,8 +27259,7 @@ - lower respiratory tract epithelium (post-embryonic mouse) - MA:0001481 + lower respiratory tract epithelium (post-embryonic mouse) @@ -29034,8 +27278,7 @@ - facial bone (post-embryonic mouse) - MA:0001482 + facial bone (post-embryonic mouse) @@ -29054,8 +27297,7 @@ - ethmoid bone (post-embryonic mouse) - MA:0001483 + ethmoid bone (post-embryonic mouse) @@ -29074,8 +27316,7 @@ - hyoid bone (post-embryonic mouse) - MA:0001484 + hyoid bone (post-embryonic mouse) @@ -29094,8 +27335,7 @@ - lacrimal bone (post-embryonic mouse) - MA:0001486 + lacrimal bone (post-embryonic mouse) @@ -29114,8 +27354,7 @@ - mandible (post-embryonic mouse) - MA:0001487 + mandible (post-embryonic mouse) @@ -29134,8 +27373,7 @@ - mandibular symphysis (post-embryonic mouse) - MA:0001490 + mandibular symphysis (post-embryonic mouse) @@ -29154,8 +27392,7 @@ - maxilla (post-embryonic mouse) - MA:0001491 + maxilla (post-embryonic mouse) @@ -29174,8 +27411,7 @@ - alveolar process of maxilla (post-embryonic mouse) - MA:0001492 + alveolar process of maxilla (post-embryonic mouse) @@ -29194,8 +27430,7 @@ - premaxilla (post-embryonic mouse) - MA:0001493 + premaxilla (post-embryonic mouse) @@ -29214,8 +27449,7 @@ - nasal bone (post-embryonic mouse) - MA:0001494 + nasal bone (post-embryonic mouse) @@ -29234,8 +27468,7 @@ - palatine bone (post-embryonic mouse) - MA:0001495 + palatine bone (post-embryonic mouse) @@ -29254,8 +27487,7 @@ - vomer (post-embryonic mouse) - MA:0001496 + vomer (post-embryonic mouse) @@ -29274,8 +27506,7 @@ - jugal bone (post-embryonic mouse) - MA:0001497 + jugal bone (post-embryonic mouse) @@ -29294,8 +27525,7 @@ - cartilaginous joint suture (post-embryonic mouse) - MA:0001498 + cartilaginous joint suture (post-embryonic mouse) @@ -29314,8 +27544,7 @@ - dento-alveolar joint (post-embryonic mouse) - MA:0001499 + dento-alveolar joint (post-embryonic mouse) @@ -29334,8 +27563,7 @@ - syndesmosis (post-embryonic mouse) - MA:0001500 + syndesmosis (post-embryonic mouse) @@ -29354,8 +27582,7 @@ - synchondrosis (post-embryonic mouse) - MA:0001501 + synchondrosis (post-embryonic mouse) @@ -29374,8 +27601,7 @@ - cranial synchondrosis (post-embryonic mouse) - MA:0001502 + cranial synchondrosis (post-embryonic mouse) @@ -29394,8 +27620,7 @@ - symphysis (post-embryonic mouse) - MA:0001504 + symphysis (post-embryonic mouse) @@ -29414,8 +27639,7 @@ - joint of girdle (post-embryonic mouse) - MA:0001505 + joint of girdle (post-embryonic mouse) @@ -29434,8 +27658,7 @@ - sacro-iliac joint (post-embryonic mouse) - MA:0001506 + sacro-iliac joint (post-embryonic mouse) @@ -29454,8 +27677,7 @@ - sternoclavicular joint (post-embryonic mouse) - MA:0001507 + sternoclavicular joint (post-embryonic mouse) @@ -29474,8 +27696,7 @@ - joint of rib (post-embryonic mouse) - MA:0001508 + joint of rib (post-embryonic mouse) @@ -29494,8 +27715,7 @@ - costochondral joint (post-embryonic mouse) - MA:0001509 + costochondral joint (post-embryonic mouse) @@ -29514,8 +27734,7 @@ - costovertebral joint (post-embryonic mouse) - MA:0001510 + costovertebral joint (post-embryonic mouse) @@ -29534,8 +27753,7 @@ - interchondral joint (post-embryonic mouse) - MA:0001511 + interchondral joint (post-embryonic mouse) @@ -29554,8 +27772,7 @@ - sternocostal joint (post-embryonic mouse) - MA:0001512 + sternocostal joint (post-embryonic mouse) @@ -29574,8 +27791,7 @@ - vertebral arch joint (post-embryonic mouse) - MA:0001513 + vertebral arch joint (post-embryonic mouse) @@ -29594,8 +27810,7 @@ - intervertebral joint (post-embryonic mouse) - MA:0001514 + intervertebral joint (post-embryonic mouse) @@ -29614,8 +27829,7 @@ - joint articular surface (post-embryonic mouse) - MA:0001518 + joint articular surface (post-embryonic mouse) @@ -29634,8 +27848,7 @@ - articular capsule (post-embryonic mouse) - MA:0001519 + articular capsule (post-embryonic mouse) @@ -29654,8 +27867,7 @@ - gastrointestinal system epithelium (post-embryonic mouse) - MA:0001520 + gastrointestinal system epithelium (post-embryonic mouse) @@ -29674,8 +27886,7 @@ - gastrointestinal system mucosa (post-embryonic mouse) - MA:0001521 + gastrointestinal system mucosa (post-embryonic mouse) @@ -29694,8 +27905,7 @@ - gastrointestinal system serosa (post-embryonic mouse) - MA:0001522 + gastrointestinal system serosa (post-embryonic mouse) @@ -29714,8 +27924,7 @@ - gastrointestinal system smooth muscle (post-embryonic mouse) - MA:0001523 + gastrointestinal system smooth muscle (post-embryonic mouse) @@ -29734,8 +27943,7 @@ - intestine (post-embryonic mouse) - MA:0001524 + intestine (post-embryonic mouse) @@ -29754,8 +27962,7 @@ - wall of intestine (post-embryonic mouse) - MA:0001525 + wall of intestine (post-embryonic mouse) @@ -29774,8 +27981,7 @@ - foregut (post-embryonic mouse) - MA:0001526 + foregut (post-embryonic mouse) @@ -29794,8 +28000,7 @@ - hindgut (post-embryonic mouse) - MA:0001527 + hindgut (post-embryonic mouse) @@ -29814,8 +28019,7 @@ - anal region skeletal muscle (post-embryonic mouse) - MA:0001530 + anal region skeletal muscle (post-embryonic mouse) @@ -29834,8 +28038,7 @@ - external anal sphincter (post-embryonic mouse) - MA:0001531 + external anal sphincter (post-embryonic mouse) @@ -29854,8 +28057,7 @@ - anal region smooth muscle (post-embryonic mouse) - MA:0001532 + anal region smooth muscle (post-embryonic mouse) @@ -29874,8 +28076,7 @@ - anococcygeus muscle (post-embryonic mouse) - MA:0001533 + anococcygeus muscle (post-embryonic mouse) @@ -29894,8 +28095,7 @@ - internal anal sphincter (post-embryonic mouse) - MA:0001534 + internal anal sphincter (post-embryonic mouse) @@ -29914,8 +28114,7 @@ - crypt of Lieberkuhn (post-embryonic mouse) - MA:0001535 + crypt of Lieberkuhn (post-embryonic mouse) @@ -29934,8 +28133,7 @@ - intestinal epithelium (post-embryonic mouse) - MA:0001536 + intestinal epithelium (post-embryonic mouse) @@ -29954,8 +28152,7 @@ - intestinal mucosa (post-embryonic mouse) - MA:0001537 + intestinal mucosa (post-embryonic mouse) @@ -29974,8 +28171,7 @@ - serosa of intestine (post-embryonic mouse) - MA:0001538 + serosa of intestine (post-embryonic mouse) @@ -29994,8 +28190,7 @@ - intestine smooth muscle (post-embryonic mouse) - MA:0001539 + intestine smooth muscle (post-embryonic mouse) @@ -30014,8 +28209,7 @@ - vermiform appendix (post-embryonic mouse) - MA:0001540 + vermiform appendix (post-embryonic mouse) @@ -30034,8 +28228,7 @@ - ascending colon (post-embryonic mouse) - MA:0001541 + ascending colon (post-embryonic mouse) @@ -30054,8 +28247,7 @@ - descending colon (post-embryonic mouse) - MA:0001542 + descending colon (post-embryonic mouse) @@ -30074,8 +28266,7 @@ - transverse colon (post-embryonic mouse) - MA:0001543 + transverse colon (post-embryonic mouse) @@ -30094,8 +28285,7 @@ - crypt of Lieberkuhn of large intestine (post-embryonic mouse) - MA:0001544 + crypt of Lieberkuhn of large intestine (post-embryonic mouse) @@ -30114,8 +28304,7 @@ - epithelium of large intestine (post-embryonic mouse) - MA:0001545 + epithelium of large intestine (post-embryonic mouse) @@ -30134,8 +28323,7 @@ - serosa of large intestine (post-embryonic mouse) - MA:0001546 + serosa of large intestine (post-embryonic mouse) @@ -30154,8 +28342,7 @@ - large intestine smooth muscle (post-embryonic mouse) - MA:0001547 + large intestine smooth muscle (post-embryonic mouse) @@ -30174,8 +28361,7 @@ - large intestine smooth muscle circular layer (post-embryonic mouse) - MA:0001548 + large intestine smooth muscle circular layer (post-embryonic mouse) @@ -30194,8 +28380,7 @@ - large intestine smooth muscle longitudinal layer (post-embryonic mouse) - MA:0001549 + large intestine smooth muscle longitudinal layer (post-embryonic mouse) @@ -30214,8 +28399,7 @@ - large intestine Peyer's patch (post-embryonic mouse) - MA:0001550 + large intestine Peyer's patch (post-embryonic mouse) @@ -30234,8 +28418,7 @@ - duodenal gland (post-embryonic mouse) - MA:0001551 + duodenal gland (post-embryonic mouse) @@ -30254,8 +28437,7 @@ - crypt of Lieberkuhn of small intestine (post-embryonic mouse) - MA:0001552 + crypt of Lieberkuhn of small intestine (post-embryonic mouse) @@ -30274,8 +28456,7 @@ - epithelium of small intestine (post-embryonic mouse) - MA:0001553 + epithelium of small intestine (post-embryonic mouse) @@ -30294,8 +28475,7 @@ - lamina propria of small intestine (post-embryonic mouse) - MA:0001554 + lamina propria of small intestine (post-embryonic mouse) @@ -30314,8 +28494,7 @@ - mesentery of small intestine (post-embryonic mouse) - MA:0001555 + mesentery of small intestine (post-embryonic mouse) @@ -30334,8 +28513,7 @@ - mesoduodenum (post-embryonic mouse) - MA:0001556 + mesoduodenum (post-embryonic mouse) @@ -30354,8 +28532,7 @@ - small intestine Peyer's patch (post-embryonic mouse) - MA:0001557 + small intestine Peyer's patch (post-embryonic mouse) @@ -30374,8 +28551,7 @@ - serosa of small intestine (post-embryonic mouse) - MA:0001558 + serosa of small intestine (post-embryonic mouse) @@ -30394,8 +28570,7 @@ - small intestine smooth muscle (post-embryonic mouse) - MA:0001559 + small intestine smooth muscle (post-embryonic mouse) @@ -30414,8 +28589,7 @@ - small intestine smooth muscle circular layer (post-embryonic mouse) - MA:0001560 + small intestine smooth muscle circular layer (post-embryonic mouse) @@ -30434,8 +28608,7 @@ - small intestine smooth muscle longitudinal layer (post-embryonic mouse) - MA:0001561 + small intestine smooth muscle longitudinal layer (post-embryonic mouse) @@ -30454,8 +28627,7 @@ - submucosa of small intestine (post-embryonic mouse) - MA:0001562 + submucosa of small intestine (post-embryonic mouse) @@ -30474,8 +28646,7 @@ - intestinal villus (post-embryonic mouse) - MA:0001563 + intestinal villus (post-embryonic mouse) @@ -30494,8 +28665,7 @@ - midgut (post-embryonic mouse) - MA:0001564 + midgut (post-embryonic mouse) @@ -30514,8 +28684,7 @@ - epithelium of esophagus (post-embryonic mouse) - MA:0001565 + epithelium of esophagus (post-embryonic mouse) @@ -30534,8 +28703,7 @@ - esophagus squamous epithelium (post-embryonic mouse) - MA:0001567 + esophagus squamous epithelium (post-embryonic mouse) @@ -30554,8 +28722,7 @@ - lamina propria of esophagus (post-embryonic mouse) - MA:0001568 + lamina propria of esophagus (post-embryonic mouse) @@ -30574,8 +28741,7 @@ - mesentery of oesophagus (post-embryonic mouse) - MA:0001569 + mesentery of oesophagus (post-embryonic mouse) @@ -30594,8 +28760,7 @@ - dorsal meso-oesophagus (post-embryonic mouse) - MA:0001570 + dorsal meso-oesophagus (post-embryonic mouse) @@ -30614,8 +28779,7 @@ - serosa of esophagus (post-embryonic mouse) - MA:0001571 + serosa of esophagus (post-embryonic mouse) @@ -30634,8 +28798,7 @@ - esophagus skeletal muscle (post-embryonic mouse) - MA:0001572 + esophagus skeletal muscle (post-embryonic mouse) @@ -30654,8 +28817,7 @@ - smooth muscle of esophagus (post-embryonic mouse) - MA:0001573 + smooth muscle of esophagus (post-embryonic mouse) @@ -30674,8 +28836,7 @@ - esophagus smooth muscle circular layer (post-embryonic mouse) - MA:0001574 + esophagus smooth muscle circular layer (post-embryonic mouse) @@ -30694,8 +28855,7 @@ - esophagus smooth muscle longitudinal layer (post-embryonic mouse) - MA:0001575 + esophagus smooth muscle longitudinal layer (post-embryonic mouse) @@ -30714,8 +28874,7 @@ - gingival epithelium (post-embryonic mouse) - MA:0001576 + gingival epithelium (post-embryonic mouse) @@ -30734,8 +28893,7 @@ - philtrum (post-embryonic mouse) - MA:0001577 + philtrum (post-embryonic mouse) @@ -30754,8 +28912,7 @@ - lip skeletal muscle (post-embryonic mouse) - MA:0001578 + lip skeletal muscle (post-embryonic mouse) @@ -30774,8 +28931,7 @@ - skin of lip (post-embryonic mouse) - MA:0001579 + skin of lip (post-embryonic mouse) @@ -30794,8 +28950,7 @@ - Meckel's cartilage (post-embryonic mouse) - MA:0001580 + Meckel's cartilage (post-embryonic mouse) @@ -30814,8 +28969,7 @@ - secondary palatal shelf (post-embryonic mouse) - MA:0001581 + secondary palatal shelf (post-embryonic mouse) @@ -30834,8 +28988,7 @@ - endocrine pancreas (post-embryonic mouse) - MA:0001582 + endocrine pancreas (post-embryonic mouse) @@ -30854,8 +29007,7 @@ - primary palate (post-embryonic mouse) - MA:0001583 + primary palate (post-embryonic mouse) @@ -30874,8 +29026,7 @@ - palatine gland (post-embryonic mouse) - MA:0001584 + palatine gland (post-embryonic mouse) @@ -30894,8 +29045,7 @@ - parotid gland (post-embryonic mouse) - MA:0001585 + parotid gland (post-embryonic mouse) @@ -30914,8 +29064,7 @@ - duct of salivary gland (post-embryonic mouse) - MA:0001586 + duct of salivary gland (post-embryonic mouse) @@ -30934,8 +29083,7 @@ - salivary gland epithelium (post-embryonic mouse) - MA:0001587 + salivary gland epithelium (post-embryonic mouse) @@ -30954,8 +29102,7 @@ - sublingual gland (post-embryonic mouse) - MA:0001588 + sublingual gland (post-embryonic mouse) @@ -30974,8 +29121,7 @@ - submandibular gland (post-embryonic mouse) - MA:0001589 + submandibular gland (post-embryonic mouse) @@ -30994,8 +29140,7 @@ - tongue intermolar eminence (post-embryonic mouse) - MA:0001590 + tongue intermolar eminence (post-embryonic mouse) @@ -31014,8 +29159,7 @@ - taste bud (post-embryonic mouse) - MA:0001591 + taste bud (post-embryonic mouse) @@ -31034,8 +29178,7 @@ - epithelium of tongue (post-embryonic mouse) - MA:0001592 + epithelium of tongue (post-embryonic mouse) @@ -31054,8 +29197,7 @@ - papilla of tongue (post-embryonic mouse) - MA:0001593 + papilla of tongue (post-embryonic mouse) @@ -31074,8 +29216,7 @@ - vallate papilla (post-embryonic mouse) - MA:0001594 + vallate papilla (post-embryonic mouse) @@ -31094,8 +29235,7 @@ - fungiform papilla (post-embryonic mouse) - MA:0001595 + fungiform papilla (post-embryonic mouse) @@ -31114,8 +29254,7 @@ - tongue muscle (post-embryonic mouse) - MA:0001596 + tongue muscle (post-embryonic mouse) @@ -31134,8 +29273,7 @@ - dental lamina (post-embryonic mouse) - MA:0001597 + dental lamina (post-embryonic mouse) @@ -31154,8 +29292,7 @@ - odontogenic papilla (post-embryonic mouse) - MA:0001598 + odontogenic papilla (post-embryonic mouse) @@ -31174,8 +29311,7 @@ - dental pulp (post-embryonic mouse) - MA:0001599 + dental pulp (post-embryonic mouse) @@ -31194,8 +29330,7 @@ - lower jaw incisor (post-embryonic mouse) - MA:0001600 + lower jaw incisor (post-embryonic mouse) @@ -31214,8 +29349,7 @@ - upper jaw incisor (post-embryonic mouse) - MA:0001601 + upper jaw incisor (post-embryonic mouse) @@ -31234,8 +29368,7 @@ - lower jaw molar (post-embryonic mouse) - MA:0001602 + lower jaw molar (post-embryonic mouse) @@ -31254,8 +29387,7 @@ - upper jaw molar (post-embryonic mouse) - MA:0001603 + upper jaw molar (post-embryonic mouse) @@ -31274,8 +29406,7 @@ - tooth enamel organ (post-embryonic mouse) - MA:0001604 + tooth enamel organ (post-embryonic mouse) @@ -31294,8 +29425,7 @@ - epithelium of oropharynx (post-embryonic mouse) - MA:0001605 + epithelium of oropharynx (post-embryonic mouse) @@ -31314,8 +29444,7 @@ - murine forestomach (post-embryonic mouse) - MA:0001606 + murine forestomach (post-embryonic mouse) @@ -31334,8 +29463,7 @@ - cardia of stomach (post-embryonic mouse) - MA:0001609 + cardia of stomach (post-embryonic mouse) @@ -31354,8 +29482,7 @@ - epithelium of stomach (post-embryonic mouse) - MA:0001610 + epithelium of stomach (post-embryonic mouse) @@ -31374,8 +29501,7 @@ - stomach squamous epithelium (post-embryonic mouse) - MA:0001611 + stomach squamous epithelium (post-embryonic mouse) @@ -31394,8 +29520,7 @@ - fundus of stomach (post-embryonic mouse) - MA:0001612 + fundus of stomach (post-embryonic mouse) @@ -31414,8 +29539,7 @@ - stomach glandular region (post-embryonic mouse) - MA:0001613 + stomach glandular region (post-embryonic mouse) @@ -31434,8 +29558,7 @@ - stomach glandular region mucosa (post-embryonic mouse) - MA:0001614 + stomach glandular region mucosa (post-embryonic mouse) @@ -31454,8 +29577,7 @@ - greater curvature of stomach (post-embryonic mouse) - MA:0001615 + greater curvature of stomach (post-embryonic mouse) @@ -31474,8 +29596,7 @@ - lesser curvature of stomach (post-embryonic mouse) - MA:0001616 + lesser curvature of stomach (post-embryonic mouse) @@ -31494,8 +29615,7 @@ - mesentery of stomach (post-embryonic mouse) - MA:0001617 + mesentery of stomach (post-embryonic mouse) @@ -31514,8 +29634,7 @@ - dorsal mesogastrium (post-embryonic mouse) - MA:0001618 + dorsal mesogastrium (post-embryonic mouse) @@ -31534,8 +29653,7 @@ - gastro-splenic ligament (post-embryonic mouse) - MA:0001619 + gastro-splenic ligament (post-embryonic mouse) @@ -31554,8 +29672,7 @@ - lieno-renal ligament (post-embryonic mouse) - MA:0001620 + lieno-renal ligament (post-embryonic mouse) @@ -31574,8 +29691,7 @@ - ventral mesogastrium (post-embryonic mouse) - MA:0001621 + ventral mesogastrium (post-embryonic mouse) @@ -31594,8 +29710,7 @@ - falciform ligament (post-embryonic mouse) - MA:0001622 + falciform ligament (post-embryonic mouse) @@ -31614,8 +29729,7 @@ - lesser omentum (post-embryonic mouse) - MA:0001623 + lesser omentum (post-embryonic mouse) @@ -31634,8 +29748,7 @@ - pyloric antrum (post-embryonic mouse) - MA:0001624 + pyloric antrum (post-embryonic mouse) @@ -31654,8 +29767,7 @@ - stomach non-glandular region (post-embryonic mouse) - MA:0001625 + stomach non-glandular region (post-embryonic mouse) @@ -31674,8 +29786,7 @@ - serosa of stomach (post-embryonic mouse) - MA:0001626 + serosa of stomach (post-embryonic mouse) @@ -31694,8 +29805,7 @@ - stomach smooth muscle (post-embryonic mouse) - MA:0001627 + stomach smooth muscle (post-embryonic mouse) @@ -31714,8 +29824,7 @@ - stomach smooth muscle circular layer (post-embryonic mouse) - MA:0001628 + stomach smooth muscle circular layer (post-embryonic mouse) @@ -31734,8 +29843,7 @@ - bile duct epithelium (post-embryonic mouse) - MA:0001629 + bile duct epithelium (post-embryonic mouse) @@ -31754,8 +29862,7 @@ - intrahepatic bile duct (post-embryonic mouse) - MA:0001630 + intrahepatic bile duct (post-embryonic mouse) @@ -31774,8 +29881,7 @@ - common bile duct (post-embryonic mouse) - MA:0001631 + common bile duct (post-embryonic mouse) @@ -31794,8 +29900,7 @@ - epithelium of gall bladder (post-embryonic mouse) - MA:0001632 + epithelium of gall bladder (post-embryonic mouse) @@ -31814,8 +29919,7 @@ - gallbladder lamina propria (post-embryonic mouse) - MA:0001633 + gallbladder lamina propria (post-embryonic mouse) @@ -31834,8 +29938,7 @@ - gallbladder serosa (post-embryonic mouse) - MA:0001634 + gallbladder serosa (post-embryonic mouse) @@ -31854,8 +29957,7 @@ - gallbladder smooth muscle (post-embryonic mouse) - MA:0001635 + gallbladder smooth muscle (post-embryonic mouse) @@ -31874,8 +29976,7 @@ - extrahepatic part of hepatic duct (post-embryonic mouse) - MA:0001636 + extrahepatic part of hepatic duct (post-embryonic mouse) @@ -31894,8 +29995,7 @@ - intrahepatic part of hepatic duct (post-embryonic mouse) - MA:0001637 + intrahepatic part of hepatic duct (post-embryonic mouse) @@ -31914,8 +30014,7 @@ - left hepatic duct (post-embryonic mouse) - MA:0001638 + left hepatic duct (post-embryonic mouse) @@ -31934,8 +30033,7 @@ - right hepatic duct (post-embryonic mouse) - MA:0001639 + right hepatic duct (post-embryonic mouse) @@ -31954,8 +30052,7 @@ - hepatic duct smooth muscle (post-embryonic mouse) - MA:0001640 + hepatic duct smooth muscle (post-embryonic mouse) @@ -31974,8 +30071,7 @@ - liver left lateral lobe (post-embryonic mouse) - MA:0001641 + liver left lateral lobe (post-embryonic mouse) @@ -31994,8 +30090,7 @@ - liver left medial lobe (post-embryonic mouse) - MA:0001642 + liver left medial lobe (post-embryonic mouse) @@ -32014,8 +30109,7 @@ - liver papillary process (post-embryonic mouse) - MA:0001643 + liver papillary process (post-embryonic mouse) @@ -32034,8 +30128,7 @@ - major calyx (post-embryonic mouse) - MA:0001644 + major calyx (post-embryonic mouse) @@ -32054,8 +30147,7 @@ - minor calyx (post-embryonic mouse) - MA:0001645 + minor calyx (post-embryonic mouse) @@ -32074,8 +30166,7 @@ - papillary duct (post-embryonic mouse) - MA:0001646 + papillary duct (post-embryonic mouse) @@ -32094,8 +30185,7 @@ - juxtamedullary cortex (post-embryonic mouse) - MA:0001648 + juxtamedullary cortex (post-embryonic mouse) @@ -32114,8 +30204,7 @@ - outer cortex of kidney (post-embryonic mouse) - MA:0001649 + outer cortex of kidney (post-embryonic mouse) @@ -32134,8 +30223,7 @@ - cortical arch of kidney (post-embryonic mouse) - MA:0001650 + cortical arch of kidney (post-embryonic mouse) @@ -32154,8 +30242,7 @@ - renal column (post-embryonic mouse) - MA:0001651 + renal column (post-embryonic mouse) @@ -32174,8 +30261,7 @@ - inner medulla of kidney (post-embryonic mouse) - MA:0001652 + inner medulla of kidney (post-embryonic mouse) @@ -32194,8 +30280,7 @@ - outer medulla of kidney (post-embryonic mouse) - MA:0001653 + outer medulla of kidney (post-embryonic mouse) @@ -32214,8 +30299,7 @@ - kidney pyramid (post-embryonic mouse) - MA:0001654 + kidney pyramid (post-embryonic mouse) @@ -32234,8 +30318,7 @@ - left kidney (post-embryonic mouse) - MA:0001655 + left kidney (post-embryonic mouse) @@ -32254,8 +30337,7 @@ - renal glomerulus (post-embryonic mouse) - MA:0001657 + renal glomerulus (post-embryonic mouse) @@ -32274,8 +30356,7 @@ - glomerular capillary endothelium (post-embryonic mouse) - MA:0001658 + glomerular capillary endothelium (post-embryonic mouse) @@ -32294,8 +30375,7 @@ - glomerular basement membrane (post-embryonic mouse) - MA:0001659 + glomerular basement membrane (post-embryonic mouse) @@ -32314,8 +30394,7 @@ - glomerular capsule (post-embryonic mouse) - MA:0001660 + glomerular capsule (post-embryonic mouse) @@ -32334,8 +30413,7 @@ - Bowman's space (post-embryonic mouse) - MA:0001664 + Bowman's space (post-embryonic mouse) @@ -32354,8 +30432,7 @@ - renal convoluted tubule (post-embryonic mouse) - MA:0001665 + renal convoluted tubule (post-embryonic mouse) @@ -32374,8 +30451,7 @@ - distal convoluted tubule (post-embryonic mouse) - MA:0001666 + distal convoluted tubule (post-embryonic mouse) @@ -32394,8 +30470,7 @@ - distal convoluted tubule macula densa (post-embryonic mouse) - MA:0001668 + distal convoluted tubule macula densa (post-embryonic mouse) @@ -32414,8 +30489,7 @@ - proximal convoluted tubule (post-embryonic mouse) - MA:0001669 + proximal convoluted tubule (post-embryonic mouse) @@ -32434,8 +30508,7 @@ - loop of Henle (post-embryonic mouse) - MA:0001675 + loop of Henle (post-embryonic mouse) @@ -32454,8 +30527,7 @@ - ascending limb of loop of Henle (post-embryonic mouse) - MA:0001676 + ascending limb of loop of Henle (post-embryonic mouse) @@ -32474,8 +30546,7 @@ - thick ascending limb of loop of Henle (post-embryonic mouse) - MA:0001677 + thick ascending limb of loop of Henle (post-embryonic mouse) @@ -32494,8 +30565,7 @@ - loop of Henle ascending limb thin segment (post-embryonic mouse) - MA:0001678 + loop of Henle ascending limb thin segment (post-embryonic mouse) @@ -32514,8 +30584,7 @@ - descending limb of loop of Henle (post-embryonic mouse) - MA:0001679 + descending limb of loop of Henle (post-embryonic mouse) @@ -32534,8 +30603,7 @@ - nephron tubule basement membrane (post-embryonic mouse) - MA:0001680 + nephron tubule basement membrane (post-embryonic mouse) @@ -32554,8 +30622,7 @@ - nephron tubule epithelium (post-embryonic mouse) - MA:0001681 + nephron tubule epithelium (post-embryonic mouse) @@ -32574,8 +30641,7 @@ - kidney blood vessel (post-embryonic mouse) - MA:0001682 + kidney blood vessel (post-embryonic mouse) @@ -32594,8 +30660,7 @@ - right kidney (post-embryonic mouse) - MA:0001683 + right kidney (post-embryonic mouse) @@ -32614,8 +30679,7 @@ - left ureter (post-embryonic mouse) - MA:0001684 + left ureter (post-embryonic mouse) @@ -32634,8 +30698,7 @@ - right ureter (post-embryonic mouse) - MA:0001685 + right ureter (post-embryonic mouse) @@ -32654,8 +30717,7 @@ - epithelium of urethra (post-embryonic mouse) - MA:0001686 + epithelium of urethra (post-embryonic mouse) @@ -32674,8 +30736,7 @@ - urethra urothelium (post-embryonic mouse) - MA:0001687 + urethra urothelium (post-embryonic mouse) @@ -32694,8 +30755,7 @@ - urethral gland (post-embryonic mouse) - MA:0001688 + urethral gland (post-embryonic mouse) @@ -32714,8 +30774,7 @@ - lamina propria of urethra (post-embryonic mouse) - MA:0001689 + lamina propria of urethra (post-embryonic mouse) @@ -32734,8 +30793,7 @@ - urethra skeletal muscle tissue (post-embryonic mouse) - MA:0001690 + urethra skeletal muscle tissue (post-embryonic mouse) @@ -32754,8 +30812,7 @@ - urethra smooth muscle layer (post-embryonic mouse) - MA:0001691 + urethra smooth muscle layer (post-embryonic mouse) @@ -32774,8 +30831,7 @@ - mucosa of urinary bladder (post-embryonic mouse) - MA:0001692 + mucosa of urinary bladder (post-embryonic mouse) @@ -32794,8 +30850,7 @@ - urinary bladder urothelium (post-embryonic mouse) - MA:0001693 + urinary bladder urothelium (post-embryonic mouse) @@ -32814,8 +30869,7 @@ - fundus of urinary bladder (post-embryonic mouse) - MA:0001694 + fundus of urinary bladder (post-embryonic mouse) @@ -32834,8 +30888,7 @@ - lamina propria of urinary bladder (post-embryonic mouse) - MA:0001695 + lamina propria of urinary bladder (post-embryonic mouse) @@ -32854,8 +30907,7 @@ - serosa of urinary bladder (post-embryonic mouse) - MA:0001696 + serosa of urinary bladder (post-embryonic mouse) @@ -32874,8 +30926,7 @@ - urinary bladder smooth muscle (post-embryonic mouse) - MA:0001697 + urinary bladder smooth muscle (post-embryonic mouse) @@ -32894,8 +30945,7 @@ - urinary bladder detrusor smooth muscle (post-embryonic mouse) - MA:0001698 + urinary bladder detrusor smooth muscle (post-embryonic mouse) @@ -32914,8 +30964,7 @@ - urinary bladder neck smooth muscle (post-embryonic mouse) - MA:0001699 + urinary bladder neck smooth muscle (post-embryonic mouse) @@ -32934,8 +30983,7 @@ - urinary bladder trigone smooth muscle (post-embryonic mouse) - MA:0001700 + urinary bladder trigone smooth muscle (post-embryonic mouse) @@ -32954,8 +31002,7 @@ - urachus (post-embryonic mouse) - MA:0001701 + urachus (post-embryonic mouse) @@ -32974,8 +31021,7 @@ - female preputial gland (post-embryonic mouse) - MA:0001702 + female preputial gland (post-embryonic mouse) @@ -32994,8 +31040,7 @@ - left ovary (post-embryonic mouse) - MA:0001704 + left ovary (post-embryonic mouse) @@ -33014,8 +31059,7 @@ - right ovary (post-embryonic mouse) - MA:0001705 + right ovary (post-embryonic mouse) @@ -33034,8 +31078,7 @@ - capsule of ovary (post-embryonic mouse) - MA:0001706 + capsule of ovary (post-embryonic mouse) @@ -33054,8 +31097,7 @@ - ovarian follicle (post-embryonic mouse) - MA:0001707 + ovarian follicle (post-embryonic mouse) @@ -33074,8 +31116,7 @@ - ovary growing follicle (post-embryonic mouse) - MA:0001708 + ovary growing follicle (post-embryonic mouse) @@ -33094,8 +31135,7 @@ - mature ovarian follicle (post-embryonic mouse) - MA:0001709 + mature ovarian follicle (post-embryonic mouse) @@ -33114,8 +31154,7 @@ - primordial ovarian follicle (post-embryonic mouse) - MA:0001710 + primordial ovarian follicle (post-embryonic mouse) @@ -33134,8 +31173,7 @@ - germinal epithelium of ovary (post-embryonic mouse) - MA:0001711 + germinal epithelium of ovary (post-embryonic mouse) @@ -33154,8 +31192,7 @@ - theca cell layer (post-embryonic mouse) - MA:0001712 + theca cell layer (post-embryonic mouse) @@ -33174,8 +31211,7 @@ - theca externa (post-embryonic mouse) - MA:0001713 + theca externa (post-embryonic mouse) @@ -33194,8 +31230,7 @@ - theca interna (post-embryonic mouse) - MA:0001714 + theca interna (post-embryonic mouse) @@ -33214,8 +31249,7 @@ - zona pellucida (post-embryonic mouse) - MA:0001715 + zona pellucida (post-embryonic mouse) @@ -33234,8 +31268,7 @@ - left uterine tube (post-embryonic mouse) - MA:0001716 + left uterine tube (post-embryonic mouse) @@ -33254,8 +31287,7 @@ - right uterine tube (post-embryonic mouse) - MA:0001717 + right uterine tube (post-embryonic mouse) @@ -33274,8 +31306,7 @@ - oviduct epithelium (post-embryonic mouse) - MA:0001718 + oviduct epithelium (post-embryonic mouse) @@ -33294,8 +31325,7 @@ - ciliated columnar oviduct epithelium (post-embryonic mouse) - MA:0001719 + ciliated columnar oviduct epithelium (post-embryonic mouse) @@ -33314,8 +31344,7 @@ - cuboidal oviduct epithelium (post-embryonic mouse) - MA:0001720 + cuboidal oviduct epithelium (post-embryonic mouse) @@ -33334,8 +31363,7 @@ - oviduct smooth muscle (post-embryonic mouse) - MA:0001721 + oviduct smooth muscle (post-embryonic mouse) @@ -33354,8 +31382,7 @@ - decidua (post-embryonic mouse) - MA:0001722 + decidua (post-embryonic mouse) @@ -33374,8 +31401,7 @@ - placenta metrial gland (post-embryonic mouse) - MA:0001723 + placenta metrial gland (post-embryonic mouse) @@ -33394,8 +31420,7 @@ - cervix epithelium (post-embryonic mouse) - MA:0001724 + cervix epithelium (post-embryonic mouse) @@ -33414,8 +31439,7 @@ - cervix squamous epithelium (post-embryonic mouse) - MA:0001725 + cervix squamous epithelium (post-embryonic mouse) @@ -33434,8 +31458,7 @@ - endometrial gland (post-embryonic mouse) - MA:0001726 + endometrial gland (post-embryonic mouse) @@ -33454,8 +31477,7 @@ - left uterine horn (post-embryonic mouse) - MA:0001727 + left uterine horn (post-embryonic mouse) @@ -33474,8 +31496,7 @@ - right uterine horn (post-embryonic mouse) - MA:0001728 + right uterine horn (post-embryonic mouse) @@ -33494,8 +31515,7 @@ - serosa of uterus (post-embryonic mouse) - MA:0001729 + serosa of uterus (post-embryonic mouse) @@ -33514,8 +31534,7 @@ - epithelium of vagina (post-embryonic mouse) - MA:0001730 + epithelium of vagina (post-embryonic mouse) @@ -33534,8 +31553,7 @@ - vagina squamous epithelium (post-embryonic mouse) - MA:0001731 + vagina squamous epithelium (post-embryonic mouse) @@ -33554,8 +31572,7 @@ - vagina sebaceous gland (post-embryonic mouse) - MA:0001732 + vagina sebaceous gland (post-embryonic mouse) @@ -33574,8 +31591,7 @@ - vagina smooth muscle (post-embryonic mouse) - MA:0001733 + vagina smooth muscle (post-embryonic mouse) @@ -33594,8 +31610,7 @@ - efferent duct epithelium (post-embryonic mouse) - MA:0001734 + efferent duct epithelium (post-embryonic mouse) @@ -33614,8 +31629,7 @@ - duct of epididymis (post-embryonic mouse) - MA:0001735 + duct of epididymis (post-embryonic mouse) @@ -33634,8 +31648,7 @@ - epididymis smooth muscle (post-embryonic mouse) - MA:0001736 + epididymis smooth muscle (post-embryonic mouse) @@ -33654,8 +31667,7 @@ - prostate epithelium (post-embryonic mouse) - MA:0001737 + prostate epithelium (post-embryonic mouse) @@ -33674,8 +31686,7 @@ - lobe of prostate (post-embryonic mouse) - MA:0001738 + lobe of prostate (post-embryonic mouse) @@ -33694,8 +31705,7 @@ - prostate gland dorsolateral lobe (post-embryonic mouse) - MA:0001739 + prostate gland dorsolateral lobe (post-embryonic mouse) @@ -33714,8 +31724,7 @@ - prostate gland ventral lobe (post-embryonic mouse) - MA:0001740 + prostate gland ventral lobe (post-embryonic mouse) @@ -33734,8 +31743,7 @@ - prostate gland smooth muscle (post-embryonic mouse) - MA:0001741 + prostate gland smooth muscle (post-embryonic mouse) @@ -33754,8 +31762,7 @@ - penis epithelium (post-embryonic mouse) - MA:0001742 + penis epithelium (post-embryonic mouse) @@ -33774,8 +31781,7 @@ - corpus cavernosum penis (post-embryonic mouse) - MA:0001743 + corpus cavernosum penis (post-embryonic mouse) @@ -33794,8 +31800,7 @@ - skin of prepuce of penis (post-embryonic mouse) - MA:0001744 + skin of prepuce of penis (post-embryonic mouse) @@ -33814,8 +31819,7 @@ - seminal vesicle epithelium (post-embryonic mouse) - MA:0001745 + seminal vesicle epithelium (post-embryonic mouse) @@ -33834,8 +31838,7 @@ - left testis (post-embryonic mouse) - MA:0001746 + left testis (post-embryonic mouse) @@ -33854,8 +31857,7 @@ - right testis (post-embryonic mouse) - MA:0001747 + right testis (post-embryonic mouse) @@ -33874,8 +31876,7 @@ - seminiferous tubule epithelium (post-embryonic mouse) - MA:0001748 + seminiferous tubule epithelium (post-embryonic mouse) @@ -33894,8 +31895,7 @@ - vas deferens epithelium (post-embryonic mouse) - MA:0001749 + vas deferens epithelium (post-embryonic mouse) @@ -33914,8 +31914,7 @@ - muscular coat of vas deferens (post-embryonic mouse) - MA:0001750 + muscular coat of vas deferens (post-embryonic mouse) @@ -33934,8 +31933,7 @@ - reproductive gland (post-embryonic mouse) - MA:0001751 + reproductive gland (post-embryonic mouse) @@ -33954,8 +31952,7 @@ - reproductive organ (post-embryonic mouse) - MA:0001752 + reproductive organ (post-embryonic mouse) @@ -33974,8 +31971,7 @@ - male prepuce epithelium (post-embryonic mouse) - MA:0001753 + male prepuce epithelium (post-embryonic mouse) @@ -33994,8 +31990,7 @@ - larynx connective tissue (post-embryonic mouse) - MA:0001754 + larynx connective tissue (post-embryonic mouse) @@ -34014,8 +32009,7 @@ - ligament of larynx (post-embryonic mouse) - MA:0001755 + ligament of larynx (post-embryonic mouse) @@ -34034,8 +32028,7 @@ - extrinsic ligament of larynx (post-embryonic mouse) - MA:0001756 + extrinsic ligament of larynx (post-embryonic mouse) @@ -34054,8 +32047,7 @@ - laryngeal intrinsic ligament (post-embryonic mouse) - MA:0001757 + laryngeal intrinsic ligament (post-embryonic mouse) @@ -34074,8 +32066,7 @@ - laryngeal cartilage (post-embryonic mouse) - MA:0001758 + laryngeal cartilage (post-embryonic mouse) @@ -34094,8 +32085,7 @@ - arytenoid cartilage (post-embryonic mouse) - MA:0001759 + arytenoid cartilage (post-embryonic mouse) @@ -34114,8 +32104,7 @@ - apex of arytenoid (post-embryonic mouse) - MA:0001760 + apex of arytenoid (post-embryonic mouse) @@ -34134,8 +32123,7 @@ - base of arytenoid (post-embryonic mouse) - MA:0001761 + base of arytenoid (post-embryonic mouse) @@ -34154,8 +32142,7 @@ - cricoid cartilage (post-embryonic mouse) - MA:0001762 + cricoid cartilage (post-embryonic mouse) @@ -34174,8 +32161,7 @@ - epiglottic cartilage (post-embryonic mouse) - MA:0001763 + epiglottic cartilage (post-embryonic mouse) @@ -34194,8 +32180,7 @@ - thyroid cartilage (post-embryonic mouse) - MA:0001764 + thyroid cartilage (post-embryonic mouse) @@ -34214,8 +32199,7 @@ - larynx epithelium (post-embryonic mouse) - MA:0001765 + larynx epithelium (post-embryonic mouse) @@ -34234,8 +32218,7 @@ - mucosa of larynx (post-embryonic mouse) - MA:0001766 + mucosa of larynx (post-embryonic mouse) @@ -34254,8 +32237,7 @@ - larynx mucous gland (post-embryonic mouse) - MA:0001767 + larynx mucous gland (post-embryonic mouse) @@ -34274,8 +32256,7 @@ - muscle of larynx (post-embryonic mouse) - MA:0001768 + muscle of larynx (post-embryonic mouse) @@ -34294,8 +32275,7 @@ - laryngeal extrinsic muscle (post-embryonic mouse) - MA:0001769 + laryngeal extrinsic muscle (post-embryonic mouse) @@ -34314,8 +32294,7 @@ - laryngeal intrinsic muscle (post-embryonic mouse) - MA:0001770 + laryngeal intrinsic muscle (post-embryonic mouse) @@ -34334,8 +32313,7 @@ - pulmonary alveolus epithelium (post-embryonic mouse) - MA:0001771 + pulmonary alveolus epithelium (post-embryonic mouse) @@ -34354,8 +32332,7 @@ - epithelium of bronchiole (post-embryonic mouse) - MA:0001772 + epithelium of bronchiole (post-embryonic mouse) @@ -34374,8 +32351,7 @@ - epithelium of respiratory bronchiole (post-embryonic mouse) - MA:0001773 + epithelium of respiratory bronchiole (post-embryonic mouse) @@ -34394,8 +32370,7 @@ - terminal bronchiole epithelium (post-embryonic mouse) - MA:0001774 + terminal bronchiole epithelium (post-embryonic mouse) @@ -34414,8 +32389,7 @@ - left lung alveolar system (post-embryonic mouse) - MA:0001775 + left lung alveolar system (post-embryonic mouse) @@ -34434,8 +32408,7 @@ - left lung alveolar duct (post-embryonic mouse) - MA:0001776 + left lung alveolar duct (post-embryonic mouse) @@ -34454,8 +32427,7 @@ - left lung alveolus (post-embryonic mouse) - MA:0001777 + left lung alveolus (post-embryonic mouse) @@ -34474,8 +32446,7 @@ - left lung bronchiole (post-embryonic mouse) - MA:0001778 + left lung bronchiole (post-embryonic mouse) @@ -34494,8 +32465,7 @@ - left lung respiratory bronchiole (post-embryonic mouse) - MA:0001779 + left lung respiratory bronchiole (post-embryonic mouse) @@ -34514,8 +32484,7 @@ - left lung terminal bronchiole (post-embryonic mouse) - MA:0001780 + left lung terminal bronchiole (post-embryonic mouse) @@ -34534,8 +32503,7 @@ - left lung hilus (post-embryonic mouse) - MA:0001781 + left lung hilus (post-embryonic mouse) @@ -34554,8 +32522,7 @@ - lung connective tissue (post-embryonic mouse) - MA:0001782 + lung connective tissue (post-embryonic mouse) @@ -34574,8 +32541,7 @@ - lung epithelium (post-embryonic mouse) - MA:0001783 + lung epithelium (post-embryonic mouse) @@ -34594,8 +32560,7 @@ - right lung alveolar system (post-embryonic mouse) - MA:0001784 + right lung alveolar system (post-embryonic mouse) @@ -34614,8 +32579,7 @@ - right lung alveolar duct (post-embryonic mouse) - MA:0001785 + right lung alveolar duct (post-embryonic mouse) @@ -34634,8 +32598,7 @@ - right lung alveolus (post-embryonic mouse) - MA:0001786 + right lung alveolus (post-embryonic mouse) @@ -34654,8 +32617,7 @@ - right lung bronchiole (post-embryonic mouse) - MA:0001787 + right lung bronchiole (post-embryonic mouse) @@ -34674,8 +32636,7 @@ - right lung respiratory bronchiole (post-embryonic mouse) - MA:0001788 + right lung respiratory bronchiole (post-embryonic mouse) @@ -34694,8 +32655,7 @@ - right lung terminal bronchiole (post-embryonic mouse) - MA:0001789 + right lung terminal bronchiole (post-embryonic mouse) @@ -34714,8 +32674,7 @@ - right lung hilus (post-embryonic mouse) - MA:0001790 + right lung hilus (post-embryonic mouse) @@ -34734,8 +32693,7 @@ - right lung lobe (post-embryonic mouse) - MA:0001791 + right lung lobe (post-embryonic mouse) @@ -34754,8 +32712,7 @@ - ethmoid sinus (post-embryonic mouse) - MA:0001792 + ethmoid sinus (post-embryonic mouse) @@ -34774,8 +32731,7 @@ - frontal sinus (post-embryonic mouse) - MA:0001793 + frontal sinus (post-embryonic mouse) @@ -34794,8 +32750,7 @@ - maxillary sinus (post-embryonic mouse) - MA:0001794 + maxillary sinus (post-embryonic mouse) @@ -34814,8 +32769,7 @@ - sphenoidal sinus (post-embryonic mouse) - MA:0001795 + sphenoidal sinus (post-embryonic mouse) @@ -34834,8 +32788,7 @@ - hypopharynx (post-embryonic mouse) - MA:0001796 + hypopharynx (post-embryonic mouse) @@ -34854,8 +32807,7 @@ - chordate pharyngeal muscle (post-embryonic mouse) - MA:0001797 + chordate pharyngeal muscle (post-embryonic mouse) @@ -34874,8 +32826,7 @@ - pre-tracheal muscle (post-embryonic mouse) - MA:0001798 + pre-tracheal muscle (post-embryonic mouse) @@ -34894,8 +32845,7 @@ - respiratory system blood vessel (post-embryonic mouse) - MA:0001799 + respiratory system blood vessel (post-embryonic mouse) @@ -34914,8 +32864,7 @@ - respiratory system arterial blood vessel (post-embryonic mouse) - MA:0001800 + respiratory system arterial blood vessel (post-embryonic mouse) @@ -34934,8 +32883,7 @@ - respiratory system arterial endothelium (post-embryonic mouse) - MA:0001801 + respiratory system arterial endothelium (post-embryonic mouse) @@ -34954,8 +32902,7 @@ - respiratory system arterial smooth muscle (post-embryonic mouse) - MA:0001802 + respiratory system arterial smooth muscle (post-embryonic mouse) @@ -34974,8 +32921,7 @@ - respiratory system arteriole (post-embryonic mouse) - MA:0001803 + respiratory system arteriole (post-embryonic mouse) @@ -34994,8 +32940,7 @@ - respiratory system artery (post-embryonic mouse) - MA:0001804 + respiratory system artery (post-embryonic mouse) @@ -35014,8 +32959,7 @@ - respiratory system blood vessel endothelium (post-embryonic mouse) - MA:0001805 + respiratory system blood vessel endothelium (post-embryonic mouse) @@ -35034,8 +32978,7 @@ - respiratory system blood vessel smooth muscle (post-embryonic mouse) - MA:0001806 + respiratory system blood vessel smooth muscle (post-embryonic mouse) @@ -35054,8 +32997,7 @@ - respiratory system capillary (post-embryonic mouse) - MA:0001807 + respiratory system capillary (post-embryonic mouse) @@ -35074,8 +33016,7 @@ - respiratory system capillary endothelium (post-embryonic mouse) - MA:0001808 + respiratory system capillary endothelium (post-embryonic mouse) @@ -35094,8 +33035,7 @@ - respiratory system venous blood vessel (post-embryonic mouse) - MA:0001809 + respiratory system venous blood vessel (post-embryonic mouse) @@ -35114,8 +33054,7 @@ - respiratory system venous blood vessel (post-embryonic mouse) - MA:0001810 + respiratory system venous blood vessel (post-embryonic mouse) @@ -35134,8 +33073,7 @@ - respiratory system venous endothelium (post-embryonic mouse) - MA:0001811 + respiratory system venous endothelium (post-embryonic mouse) @@ -35154,8 +33092,7 @@ - respiratory system venous smooth muscle (post-embryonic mouse) - MA:0001812 + respiratory system venous smooth muscle (post-embryonic mouse) @@ -35174,8 +33111,7 @@ - respiratory system venule (post-embryonic mouse) - MA:0001813 + respiratory system venule (post-embryonic mouse) @@ -35194,8 +33130,7 @@ - respiratory system connective tissue (post-embryonic mouse) - MA:0001814 + respiratory system connective tissue (post-embryonic mouse) @@ -35214,8 +33149,7 @@ - respiratory system basement membrane (post-embryonic mouse) - MA:0001815 + respiratory system basement membrane (post-embryonic mouse) @@ -35234,8 +33168,7 @@ - respiratory system basal lamina (post-embryonic mouse) - MA:0001816 + respiratory system basal lamina (post-embryonic mouse) @@ -35254,8 +33187,7 @@ - respiratory system reticular lamina (post-embryonic mouse) - MA:0001817 + respiratory system reticular lamina (post-embryonic mouse) @@ -35274,8 +33206,7 @@ - cartilage of respiratory system (post-embryonic mouse) - MA:0001818 + cartilage of respiratory system (post-embryonic mouse) @@ -35294,8 +33225,7 @@ - lower respiratory tract cartilage (post-embryonic mouse) - MA:0001819 + lower respiratory tract cartilage (post-embryonic mouse) @@ -35314,8 +33244,7 @@ - respiratory system elastic tissue (post-embryonic mouse) - MA:0001820 + respiratory system elastic tissue (post-embryonic mouse) @@ -35334,8 +33263,7 @@ - respiratory system lamina propria (post-embryonic mouse) - MA:0001821 + respiratory system lamina propria (post-embryonic mouse) @@ -35354,8 +33282,7 @@ - respiratory system submucosa (post-embryonic mouse) - MA:0001822 + respiratory system submucosa (post-embryonic mouse) @@ -35374,8 +33301,7 @@ - respiratory system epithelium (post-embryonic mouse) - MA:0001823 + respiratory system epithelium (post-embryonic mouse) @@ -35394,8 +33320,7 @@ - respiratory system lymphatic vessel (post-embryonic mouse) - MA:0001824 + respiratory system lymphatic vessel (post-embryonic mouse) @@ -35414,8 +33339,7 @@ - respiratory system lymphatic vessel endothelium (post-embryonic mouse) - MA:0001825 + respiratory system lymphatic vessel endothelium (post-embryonic mouse) @@ -35434,8 +33358,7 @@ - respiratory system lymphatic vessel smooth muscle (post-embryonic mouse) - MA:0001826 + respiratory system lymphatic vessel smooth muscle (post-embryonic mouse) @@ -35454,8 +33377,7 @@ - respiratory system mucosa (post-embryonic mouse) - MA:0001827 + respiratory system mucosa (post-embryonic mouse) @@ -35474,8 +33396,7 @@ - respiratory system muscle (post-embryonic mouse) - MA:0001828 + respiratory system muscle (post-embryonic mouse) @@ -35494,8 +33415,7 @@ - respiratory system skeletal muscle (post-embryonic mouse) - MA:0001829 + respiratory system skeletal muscle (post-embryonic mouse) @@ -35514,8 +33434,7 @@ - respiratory system smooth muscle (post-embryonic mouse) - MA:0001830 + respiratory system smooth muscle (post-embryonic mouse) @@ -35534,8 +33453,7 @@ - bronchus connective tissue (post-embryonic mouse) - MA:0001831 + bronchus connective tissue (post-embryonic mouse) @@ -35554,8 +33472,7 @@ - bronchus basement membrane (post-embryonic mouse) - MA:0001832 + bronchus basement membrane (post-embryonic mouse) @@ -35574,8 +33491,7 @@ - bronchus basal lamina (post-embryonic mouse) - MA:0001833 + bronchus basal lamina (post-embryonic mouse) @@ -35594,8 +33510,7 @@ - bronchus reticular lamina (post-embryonic mouse) - MA:0001834 + bronchus reticular lamina (post-embryonic mouse) @@ -35614,8 +33529,7 @@ - cartilage of bronchus (post-embryonic mouse) - MA:0001835 + cartilage of bronchus (post-embryonic mouse) @@ -35634,8 +33548,7 @@ - lamina propria of bronchus (post-embryonic mouse) - MA:0001836 + lamina propria of bronchus (post-embryonic mouse) @@ -35654,8 +33567,7 @@ - submucosa of bronchus (post-embryonic mouse) - MA:0001837 + submucosa of bronchus (post-embryonic mouse) @@ -35674,8 +33586,7 @@ - bronchus elastic tissue (post-embryonic mouse) - MA:0001838 + bronchus elastic tissue (post-embryonic mouse) @@ -35694,8 +33605,7 @@ - epithelium of bronchus (post-embryonic mouse) - MA:0001839 + epithelium of bronchus (post-embryonic mouse) @@ -35714,8 +33624,7 @@ - bronchus smooth muscle (post-embryonic mouse) - MA:0001840 + bronchus smooth muscle (post-embryonic mouse) @@ -35734,8 +33643,7 @@ - lobar bronchus connective tissue (post-embryonic mouse) - MA:0001841 + lobar bronchus connective tissue (post-embryonic mouse) @@ -35754,8 +33662,7 @@ - epithelium of lobar bronchus (post-embryonic mouse) - MA:0001842 + epithelium of lobar bronchus (post-embryonic mouse) @@ -35774,8 +33681,7 @@ - left main bronchus (post-embryonic mouse) - MA:0001843 + left main bronchus (post-embryonic mouse) @@ -35794,8 +33700,7 @@ - main bronchus blood vessel (post-embryonic mouse) - MA:0001844 + main bronchus blood vessel (post-embryonic mouse) @@ -35814,8 +33719,7 @@ - main bronchus connective tissue (post-embryonic mouse) - MA:0001845 + main bronchus connective tissue (post-embryonic mouse) @@ -35834,8 +33738,7 @@ - cartilage of main bronchus (post-embryonic mouse) - MA:0001846 + cartilage of main bronchus (post-embryonic mouse) @@ -35854,8 +33757,7 @@ - epithelium of main bronchus (post-embryonic mouse) - MA:0001847 + epithelium of main bronchus (post-embryonic mouse) @@ -35874,8 +33776,7 @@ - main bronchus smooth muscle (post-embryonic mouse) - MA:0001848 + main bronchus smooth muscle (post-embryonic mouse) @@ -35894,8 +33795,7 @@ - right main bronchus (post-embryonic mouse) - MA:0001849 + right main bronchus (post-embryonic mouse) @@ -35914,8 +33814,7 @@ - epithelium of segmental bronchus (post-embryonic mouse) - MA:0001850 + epithelium of segmental bronchus (post-embryonic mouse) @@ -35934,8 +33833,7 @@ - terminal bronchus epithelium (post-embryonic mouse) - MA:0001851 + terminal bronchus epithelium (post-embryonic mouse) @@ -35954,8 +33852,7 @@ - trachea blood vessel (post-embryonic mouse) - MA:0001852 + trachea blood vessel (post-embryonic mouse) @@ -35974,8 +33871,7 @@ - trachea connective tissue (post-embryonic mouse) - MA:0001853 + trachea connective tissue (post-embryonic mouse) @@ -35994,8 +33890,7 @@ - trachea basement membrane (post-embryonic mouse) - MA:0001854 + trachea basement membrane (post-embryonic mouse) @@ -36014,8 +33909,7 @@ - trachea basal lamina (post-embryonic mouse) - MA:0001855 + trachea basal lamina (post-embryonic mouse) @@ -36034,8 +33928,7 @@ - trachea reticular lamina (post-embryonic mouse) - MA:0001856 + trachea reticular lamina (post-embryonic mouse) @@ -36054,8 +33947,7 @@ - trachea cartilage (post-embryonic mouse) - MA:0001857 + trachea cartilage (post-embryonic mouse) @@ -36074,8 +33966,7 @@ - lamina propria of trachea (post-embryonic mouse) - MA:0001858 + lamina propria of trachea (post-embryonic mouse) @@ -36094,8 +33985,7 @@ - trachea non-cartilage connective tissue (post-embryonic mouse) - MA:0001859 + trachea non-cartilage connective tissue (post-embryonic mouse) @@ -36114,8 +34004,7 @@ - submucosa of trachea (post-embryonic mouse) - MA:0001860 + submucosa of trachea (post-embryonic mouse) @@ -36134,8 +34023,7 @@ - trachea elastic tissue (post-embryonic mouse) - MA:0001861 + trachea elastic tissue (post-embryonic mouse) @@ -36154,8 +34042,7 @@ - epithelium of trachea (post-embryonic mouse) - MA:0001862 + epithelium of trachea (post-embryonic mouse) @@ -36174,8 +34061,7 @@ - smooth muscle of trachea (post-embryonic mouse) - MA:0001863 + smooth muscle of trachea (post-embryonic mouse) @@ -36194,8 +34080,7 @@ - nasopharynx connective tissue (post-embryonic mouse) - MA:0001864 + nasopharynx connective tissue (post-embryonic mouse) @@ -36214,8 +34099,7 @@ - epithelium of nasopharynx (post-embryonic mouse) - MA:0001865 + epithelium of nasopharynx (post-embryonic mouse) @@ -36234,8 +34118,7 @@ - pampiniform plexus (post-embryonic mouse) - MA:0001866 + pampiniform plexus (post-embryonic mouse) @@ -36254,8 +34137,7 @@ - superior sagittal sinus (post-embryonic mouse) - MA:0001867 + superior sagittal sinus (post-embryonic mouse) @@ -36274,8 +34156,7 @@ - transverse sinus (post-embryonic mouse) - MA:0001868 + transverse sinus (post-embryonic mouse) @@ -36294,8 +34175,7 @@ - left atrium auricular region (post-embryonic mouse) - MA:0001869 + left atrium auricular region (post-embryonic mouse) @@ -36314,8 +34194,7 @@ - right atrium auricular region (post-embryonic mouse) - MA:0001870 + right atrium auricular region (post-embryonic mouse) @@ -36334,8 +34213,7 @@ - right atrium valve (post-embryonic mouse) - MA:0001871 + right atrium valve (post-embryonic mouse) @@ -36354,8 +34232,7 @@ - right atrium venous valve (post-embryonic mouse) - MA:0001872 + right atrium venous valve (post-embryonic mouse) @@ -36374,8 +34251,7 @@ - foramen ovale of heart (post-embryonic mouse) - MA:0001873 + foramen ovale of heart (post-embryonic mouse) @@ -36394,8 +34270,7 @@ - transverse pericardial sinus (post-embryonic mouse) - MA:0001880 + transverse pericardial sinus (post-embryonic mouse) @@ -36414,8 +34289,7 @@ - nasal cartilage (post-embryonic mouse) - MA:0001883 + nasal cartilage (post-embryonic mouse) @@ -36434,8 +34308,7 @@ - xiphoid cartilage (post-embryonic mouse) - MA:0001884 + xiphoid cartilage (post-embryonic mouse) @@ -36454,8 +34327,7 @@ - corniculate cartilage (post-embryonic mouse) - MA:0001885 + corniculate cartilage (post-embryonic mouse) @@ -36474,8 +34346,7 @@ - cartilage of external ear (post-embryonic mouse) - MA:0001886 + cartilage of external ear (post-embryonic mouse) @@ -36494,8 +34365,7 @@ - adrenal gland cortex zone (post-embryonic mouse) - MA:0001887 + adrenal gland cortex zone (post-embryonic mouse) @@ -36514,8 +34384,7 @@ - adrenal gland X zone (post-embryonic mouse) - MA:0001888 + adrenal gland X zone (post-embryonic mouse) @@ -36534,8 +34403,7 @@ - zona fasciculata of adrenal gland (post-embryonic mouse) - MA:0001890 + zona fasciculata of adrenal gland (post-embryonic mouse) @@ -36554,8 +34422,7 @@ - zona glomerulosa of adrenal gland (post-embryonic mouse) - MA:0001891 + zona glomerulosa of adrenal gland (post-embryonic mouse) @@ -36574,8 +34441,7 @@ - zona reticularis of adrenal gland (post-embryonic mouse) - MA:0001892 + zona reticularis of adrenal gland (post-embryonic mouse) @@ -36594,8 +34460,7 @@ - strand of auchene hair (post-embryonic mouse) - MA:0001893 + strand of auchene hair (post-embryonic mouse) @@ -36614,8 +34479,7 @@ - strand of awl hair (post-embryonic mouse) - MA:0001894 + strand of awl hair (post-embryonic mouse) @@ -36634,8 +34498,7 @@ - strand of duvet hair (post-embryonic mouse) - MA:0001895 + strand of duvet hair (post-embryonic mouse) @@ -36654,8 +34517,7 @@ - strand of guard hair (post-embryonic mouse) - MA:0001896 + strand of guard hair (post-embryonic mouse) @@ -36674,8 +34536,7 @@ - strand of pelage hair (post-embryonic mouse) - MA:0001897 + strand of pelage hair (post-embryonic mouse) @@ -36694,8 +34555,7 @@ - strand of zigzag hair (post-embryonic mouse) - MA:0001898 + strand of zigzag hair (post-embryonic mouse) @@ -36714,8 +34574,7 @@ - gastrointestinal system lamina propria (post-embryonic mouse) - MA:0001899 + gastrointestinal system lamina propria (post-embryonic mouse) @@ -36734,8 +34593,7 @@ - gastrointestinal system mesentery (post-embryonic mouse) - MA:0001900 + gastrointestinal system mesentery (post-embryonic mouse) @@ -36754,8 +34612,7 @@ - dorsal region element (post-embryonic mouse) - MA:0001901 + dorsal region element (post-embryonic mouse) @@ -36774,8 +34631,7 @@ - thoracic cavity artery (post-embryonic mouse) - MA:0001902 + thoracic cavity artery (post-embryonic mouse) @@ -36794,8 +34650,7 @@ - thoracic cavity vein (post-embryonic mouse) - MA:0001903 + thoracic cavity vein (post-embryonic mouse) @@ -36814,8 +34669,7 @@ - diaphragm (post-embryonic mouse) - MA:0001904 + diaphragm (post-embryonic mouse) @@ -36834,8 +34688,7 @@ - jaw skeleton (post-embryonic mouse) - MA:0001905 + jaw skeleton (post-embryonic mouse) @@ -36854,8 +34707,7 @@ - skeleton of lower jaw (post-embryonic mouse) - MA:0001906 + skeleton of lower jaw (post-embryonic mouse) @@ -36874,8 +34726,7 @@ - tooth of lower jaw (post-embryonic mouse) - MA:0001907 + tooth of lower jaw (post-embryonic mouse) @@ -36894,8 +34745,7 @@ - skeleton of upper jaw (post-embryonic mouse) - MA:0001908 + skeleton of upper jaw (post-embryonic mouse) @@ -36914,30 +34764,7 @@ - tooth of upper jaw (post-embryonic mouse) - MA:0001909 - - - - - - - - - - - - - - - - - - - - midface (post-embryonic mouse) - snout (post-embryonic mouse) - MA:0001910 + tooth of upper jaw (post-embryonic mouse) @@ -36956,8 +34783,7 @@ - ocular refractive media (post-embryonic mouse) - MA:0001911 + ocular refractive media (post-embryonic mouse) @@ -36976,8 +34802,7 @@ - upper respiratory tract epithelium (post-embryonic mouse) - MA:0001912 + upper respiratory tract epithelium (post-embryonic mouse) @@ -36996,8 +34821,7 @@ - alveolar artery (post-embryonic mouse) - MA:0001913 + alveolar artery (post-embryonic mouse) @@ -37016,8 +34840,7 @@ - suprarenal artery (post-embryonic mouse) - MA:0001914 + suprarenal artery (post-embryonic mouse) @@ -37036,8 +34859,7 @@ - anterior cerebral artery (post-embryonic mouse) - MA:0001915 + anterior cerebral artery (post-embryonic mouse) @@ -37056,8 +34878,7 @@ - artery of lower lip (post-embryonic mouse) - MA:0001916 + artery of lower lip (post-embryonic mouse) @@ -37076,8 +34897,7 @@ - artery of upper lip (post-embryonic mouse) - MA:0001917 + artery of upper lip (post-embryonic mouse) @@ -37096,8 +34916,7 @@ - auricular artery (post-embryonic mouse) - MA:0001918 + auricular artery (post-embryonic mouse) @@ -37116,8 +34935,7 @@ - maxillary artery (post-embryonic mouse) - MA:0001919 + maxillary artery (post-embryonic mouse) @@ -37136,8 +34954,7 @@ - basilar artery (post-embryonic mouse) - MA:0001920 + basilar artery (post-embryonic mouse) @@ -37156,8 +34973,7 @@ - brachial artery (post-embryonic mouse) - MA:0001921 + brachial artery (post-embryonic mouse) @@ -37176,8 +34992,7 @@ - brachiocephalic artery (post-embryonic mouse) - MA:0001922 + brachiocephalic artery (post-embryonic mouse) @@ -37196,8 +35011,7 @@ - bronchial artery (post-embryonic mouse) - MA:0001923 + bronchial artery (post-embryonic mouse) @@ -37216,8 +35030,7 @@ - buccal artery (post-embryonic mouse) - MA:0001924 + buccal artery (post-embryonic mouse) @@ -37236,8 +35049,7 @@ - carotid artery segment (post-embryonic mouse) - MA:0001925 + carotid artery segment (post-embryonic mouse) @@ -37256,8 +35068,7 @@ - common carotid artery plus branches (post-embryonic mouse) - MA:0001926 + common carotid artery plus branches (post-embryonic mouse) @@ -37276,8 +35087,7 @@ - left common carotid artery plus branches (post-embryonic mouse) - MA:0001927 + left common carotid artery plus branches (post-embryonic mouse) @@ -37296,8 +35106,7 @@ - right common carotid artery plus branches (post-embryonic mouse) - MA:0001928 + right common carotid artery plus branches (post-embryonic mouse) @@ -37316,8 +35125,7 @@ - external carotid artery (post-embryonic mouse) - MA:0001929 + external carotid artery (post-embryonic mouse) @@ -37336,8 +35144,7 @@ - internal carotid artery (post-embryonic mouse) - MA:0001930 + internal carotid artery (post-embryonic mouse) @@ -37356,8 +35163,7 @@ - celiac artery (post-embryonic mouse) - MA:0001931 + celiac artery (post-embryonic mouse) @@ -37376,8 +35182,7 @@ - cerebellar artery (post-embryonic mouse) - MA:0001933 + cerebellar artery (post-embryonic mouse) @@ -37396,8 +35201,7 @@ - superior cerebellar artery (post-embryonic mouse) - MA:0001934 + superior cerebellar artery (post-embryonic mouse) @@ -37416,8 +35220,7 @@ - middle cerebral artery (post-embryonic mouse) - MA:0001935 + middle cerebral artery (post-embryonic mouse) @@ -37436,8 +35239,7 @@ - transverse cervical artery (post-embryonic mouse) - MA:0001936 + transverse cervical artery (post-embryonic mouse) @@ -37456,8 +35258,7 @@ - communicating artery (post-embryonic mouse) - MA:0001938 + communicating artery (post-embryonic mouse) @@ -37476,8 +35277,7 @@ - costo-cervical trunk (post-embryonic mouse) - MA:0001939 + costo-cervical trunk (post-embryonic mouse) @@ -37496,8 +35296,7 @@ - deferent duct artery (post-embryonic mouse) - MA:0001940 + deferent duct artery (post-embryonic mouse) @@ -37516,8 +35315,7 @@ - digital artery (post-embryonic mouse) - MA:0001941 + digital artery (post-embryonic mouse) @@ -37536,8 +35334,7 @@ - dorsalis pedis artery (post-embryonic mouse) - MA:0001942 + dorsalis pedis artery (post-embryonic mouse) @@ -37556,8 +35353,7 @@ - dorsal intercostal artery (post-embryonic mouse) - MA:0001943 + dorsal intercostal artery (post-embryonic mouse) @@ -37576,8 +35372,7 @@ - dorsal metacarpal artery (post-embryonic mouse) - MA:0001944 + dorsal metacarpal artery (post-embryonic mouse) @@ -37596,8 +35391,7 @@ - dorsal nasal artery (post-embryonic mouse) - MA:0001945 + dorsal nasal artery (post-embryonic mouse) @@ -37616,8 +35410,7 @@ - dorsal artery of penis (post-embryonic mouse) - MA:0001946 + dorsal artery of penis (post-embryonic mouse) @@ -37636,8 +35429,7 @@ - ductus arteriosus (post-embryonic mouse) - MA:0001947 + ductus arteriosus (post-embryonic mouse) @@ -37656,8 +35448,7 @@ - epigastric artery (post-embryonic mouse) - MA:0001948 + epigastric artery (post-embryonic mouse) @@ -37676,8 +35467,7 @@ - ethmoidal artery (post-embryonic mouse) - MA:0001949 + ethmoidal artery (post-embryonic mouse) @@ -37696,8 +35486,7 @@ - facial artery (post-embryonic mouse) - MA:0001950 + facial artery (post-embryonic mouse) @@ -37716,8 +35505,7 @@ - femoral artery (post-embryonic mouse) - MA:0001951 + femoral artery (post-embryonic mouse) @@ -37736,8 +35524,7 @@ - forelimb digital artery (post-embryonic mouse) - MA:0001953 + forelimb digital artery (post-embryonic mouse) @@ -37756,8 +35543,7 @@ - forelimb common dorsal digital arteries (post-embryonic mouse) - MA:0001954 + forelimb common dorsal digital arteries (post-embryonic mouse) @@ -37776,8 +35562,7 @@ - median dorsal digital artery for digit 1 (post-embryonic mouse) - MA:0001955 + median dorsal digital artery for digit 1 (post-embryonic mouse) @@ -37796,8 +35581,7 @@ - lateral dorsal digital artery for digit 5 (post-embryonic mouse) - MA:0001956 + lateral dorsal digital artery for digit 5 (post-embryonic mouse) @@ -37816,8 +35600,7 @@ - common palmar digital artery (post-embryonic mouse) - MA:0001957 + common palmar digital artery (post-embryonic mouse) @@ -37836,8 +35619,7 @@ - forelimb proper dorsal digital arteries (post-embryonic mouse) - MA:0001958 + forelimb proper dorsal digital arteries (post-embryonic mouse) @@ -37856,8 +35638,7 @@ - proper palmar digital artery (post-embryonic mouse) - MA:0001959 + proper palmar digital artery (post-embryonic mouse) @@ -37876,8 +35657,7 @@ - frontal artery (post-embryonic mouse) - MA:0001960 + frontal artery (post-embryonic mouse) @@ -37896,8 +35676,7 @@ - left gastric artery (post-embryonic mouse) - MA:0001961 + left gastric artery (post-embryonic mouse) @@ -37916,8 +35695,7 @@ - gastroepiploic artery (post-embryonic mouse) - MA:0001962 + gastroepiploic artery (post-embryonic mouse) @@ -37936,8 +35714,7 @@ - hepatic artery (post-embryonic mouse) - MA:0001963 + hepatic artery (post-embryonic mouse) @@ -37956,8 +35733,7 @@ - hindlimb digital artery (post-embryonic mouse) - MA:0001964 + hindlimb digital artery (post-embryonic mouse) @@ -37976,8 +35752,7 @@ - hindlimb common dorsal digital arteries (post-embryonic mouse) - MA:0001965 + hindlimb common dorsal digital arteries (post-embryonic mouse) @@ -37996,8 +35771,7 @@ - common plantar digital arteries (post-embryonic mouse) - MA:0001966 + common plantar digital arteries (post-embryonic mouse) @@ -38016,8 +35790,7 @@ - hindlimb proper dorsal digital arteries (post-embryonic mouse) - MA:0001967 + hindlimb proper dorsal digital arteries (post-embryonic mouse) @@ -38036,8 +35809,7 @@ - proper plantar digital artery (post-embryonic mouse) - MA:0001968 + proper plantar digital artery (post-embryonic mouse) @@ -38056,8 +35828,7 @@ - hyoid artery (post-embryonic mouse) - MA:0001969 + hyoid artery (post-embryonic mouse) @@ -38076,8 +35847,7 @@ - ileocolic artery (post-embryonic mouse) - MA:0001970 + ileocolic artery (post-embryonic mouse) @@ -38096,8 +35866,7 @@ - iliac artery (post-embryonic mouse) - MA:0001971 + iliac artery (post-embryonic mouse) @@ -38116,8 +35885,7 @@ - common iliac artery (post-embryonic mouse) - MA:0001972 + common iliac artery (post-embryonic mouse) @@ -38136,8 +35904,7 @@ - external iliac artery (post-embryonic mouse) - MA:0001973 + external iliac artery (post-embryonic mouse) @@ -38156,8 +35923,7 @@ - internal iliac artery (post-embryonic mouse) - MA:0001974 + internal iliac artery (post-embryonic mouse) @@ -38176,8 +35942,7 @@ - iliac circumflex artery (post-embryonic mouse) - MA:0001975 + iliac circumflex artery (post-embryonic mouse) @@ -38196,8 +35961,7 @@ - iliolumbar artery (post-embryonic mouse) - MA:0001976 + iliolumbar artery (post-embryonic mouse) @@ -38216,8 +35980,7 @@ - infraorbital artery (post-embryonic mouse) - MA:0001977 + infraorbital artery (post-embryonic mouse) @@ -38236,8 +35999,7 @@ - inferior epigastric artery (post-embryonic mouse) - MA:0001978 + inferior epigastric artery (post-embryonic mouse) @@ -38256,8 +36018,7 @@ - inferior rectal artery (post-embryonic mouse) - MA:0001979 + inferior rectal artery (post-embryonic mouse) @@ -38276,8 +36037,7 @@ - intercostal artery (post-embryonic mouse) - MA:0001981 + intercostal artery (post-embryonic mouse) @@ -38296,8 +36056,7 @@ - internal thoracic artery (post-embryonic mouse) - MA:0001982 + internal thoracic artery (post-embryonic mouse) @@ -38316,8 +36075,7 @@ - internal thoracic artery (post-embryonic mouse) - MA:0001984 + internal thoracic artery (post-embryonic mouse) @@ -38336,8 +36094,7 @@ - intersomitic artery (post-embryonic mouse) - MA:0001985 + intersomitic artery (post-embryonic mouse) @@ -38356,8 +36113,7 @@ - artery of lip (post-embryonic mouse) - MA:0001987 + artery of lip (post-embryonic mouse) @@ -38376,8 +36132,7 @@ - lacrimal artery (post-embryonic mouse) - MA:0001988 + lacrimal artery (post-embryonic mouse) @@ -38396,8 +36151,7 @@ - lateral thoracic artery (post-embryonic mouse) - MA:0001989 + lateral thoracic artery (post-embryonic mouse) @@ -38416,8 +36170,7 @@ - splenic artery (post-embryonic mouse) - MA:0001991 + splenic artery (post-embryonic mouse) @@ -38436,8 +36189,7 @@ - lingual artery (post-embryonic mouse) - MA:0001992 + lingual artery (post-embryonic mouse) @@ -38456,8 +36208,7 @@ - greater palatine artery (post-embryonic mouse) - MA:0001993 + greater palatine artery (post-embryonic mouse) @@ -38476,8 +36227,7 @@ - medial circumflex femoral artery (post-embryonic mouse) - MA:0001996 + medial circumflex femoral artery (post-embryonic mouse) @@ -38496,8 +36246,7 @@ - medial plantar artery (post-embryonic mouse) - MA:0001997 + medial plantar artery (post-embryonic mouse) @@ -38516,8 +36265,7 @@ - medial tarsal artery (post-embryonic mouse) - MA:0001998 + medial tarsal artery (post-embryonic mouse) @@ -38536,8 +36284,7 @@ - median artery (post-embryonic mouse) - MA:0001999 + median artery (post-embryonic mouse) @@ -38556,8 +36303,7 @@ - meningeal artery (post-embryonic mouse) - MA:0002001 + meningeal artery (post-embryonic mouse) @@ -38576,8 +36322,7 @@ - mental artery (post-embryonic mouse) - MA:0002002 + mental artery (post-embryonic mouse) @@ -38596,8 +36341,7 @@ - mesenteric artery (post-embryonic mouse) - MA:0002003 + mesenteric artery (post-embryonic mouse) @@ -38616,8 +36360,7 @@ - inferior mesenteric artery (post-embryonic mouse) - MA:0002004 + inferior mesenteric artery (post-embryonic mouse) @@ -38636,8 +36379,7 @@ - superior mesenteric artery (post-embryonic mouse) - MA:0002005 + superior mesenteric artery (post-embryonic mouse) @@ -38656,8 +36398,7 @@ - middle colic artery (post-embryonic mouse) - MA:0002007 + middle colic artery (post-embryonic mouse) @@ -38676,8 +36417,7 @@ - obturator artery (post-embryonic mouse) - MA:0002008 + obturator artery (post-embryonic mouse) @@ -38696,8 +36436,7 @@ - occipital artery (post-embryonic mouse) - MA:0002009 + occipital artery (post-embryonic mouse) @@ -38716,8 +36455,7 @@ - ocular angle artery (post-embryonic mouse) - MA:0002010 + ocular angle artery (post-embryonic mouse) @@ -38736,8 +36474,7 @@ - ophthalmic artery (post-embryonic mouse) - MA:0002011 + ophthalmic artery (post-embryonic mouse) @@ -38756,8 +36493,7 @@ - ovarian artery (post-embryonic mouse) - MA:0002012 + ovarian artery (post-embryonic mouse) @@ -38776,8 +36512,7 @@ - pancreaticoduodenal artery (post-embryonic mouse) - MA:0002013 + pancreaticoduodenal artery (post-embryonic mouse) @@ -38796,8 +36531,7 @@ - inferior pancreaticoduodenal artery (post-embryonic mouse) - MA:0002014 + inferior pancreaticoduodenal artery (post-embryonic mouse) @@ -38816,8 +36550,7 @@ - superior pancreaticoduodenal artery (post-embryonic mouse) - MA:0002015 + superior pancreaticoduodenal artery (post-embryonic mouse) @@ -38836,8 +36569,7 @@ - perineal artery (post-embryonic mouse) - MA:0002017 + perineal artery (post-embryonic mouse) @@ -38856,8 +36588,7 @@ - peroneal artery (post-embryonic mouse) - MA:0002018 + peroneal artery (post-embryonic mouse) @@ -38876,8 +36607,7 @@ - phrenic artery (post-embryonic mouse) - MA:0002019 + phrenic artery (post-embryonic mouse) @@ -38896,8 +36626,7 @@ - popliteal artery (post-embryonic mouse) - MA:0002021 + popliteal artery (post-embryonic mouse) @@ -38916,8 +36645,7 @@ - posterior cerebral artery (post-embryonic mouse) - MA:0002022 + posterior cerebral artery (post-embryonic mouse) @@ -38936,8 +36664,7 @@ - posterior communicating artery (post-embryonic mouse) - MA:0002023 + posterior communicating artery (post-embryonic mouse) @@ -38956,8 +36683,7 @@ - principal artery to forelimb (post-embryonic mouse) - MA:0002024 + principal artery to forelimb (post-embryonic mouse) @@ -38976,8 +36702,7 @@ - principal artery to hindlimb (post-embryonic mouse) - MA:0002025 + principal artery to hindlimb (post-embryonic mouse) @@ -38996,8 +36721,7 @@ - deep brachial artery (post-embryonic mouse) - MA:0002026 + deep brachial artery (post-embryonic mouse) @@ -39016,8 +36740,7 @@ - deep femoral artery (post-embryonic mouse) - MA:0002027 + deep femoral artery (post-embryonic mouse) @@ -39036,8 +36759,7 @@ - pudendal artery (post-embryonic mouse) - MA:0002028 + pudendal artery (post-embryonic mouse) @@ -39056,8 +36778,7 @@ - superior external pudendal artery (post-embryonic mouse) - MA:0002029 + superior external pudendal artery (post-embryonic mouse) @@ -39076,8 +36797,7 @@ - pulmonary artery (post-embryonic mouse) - MA:0002031 + pulmonary artery (post-embryonic mouse) @@ -39096,8 +36816,7 @@ - left pulmonary artery (post-embryonic mouse) - MA:0002032 + left pulmonary artery (post-embryonic mouse) @@ -39116,8 +36835,7 @@ - pulmonary trunk (post-embryonic mouse) - MA:0002033 + pulmonary trunk (post-embryonic mouse) @@ -39136,8 +36854,7 @@ - radial artery (post-embryonic mouse) - MA:0002034 + radial artery (post-embryonic mouse) @@ -39156,8 +36873,7 @@ - renal artery (post-embryonic mouse) - MA:0002035 + renal artery (post-embryonic mouse) @@ -39176,8 +36892,7 @@ - left renal artery (post-embryonic mouse) - MA:0002036 + left renal artery (post-embryonic mouse) @@ -39196,8 +36911,7 @@ - right renal artery (post-embryonic mouse) - MA:0002037 + right renal artery (post-embryonic mouse) @@ -39216,8 +36930,7 @@ - central retinal artery (post-embryonic mouse) - MA:0002038 + central retinal artery (post-embryonic mouse) @@ -39236,8 +36949,7 @@ - saphenous artery (post-embryonic mouse) - MA:0002039 + saphenous artery (post-embryonic mouse) @@ -39256,8 +36968,7 @@ - spermatic artery (post-embryonic mouse) - MA:0002040 + spermatic artery (post-embryonic mouse) @@ -39276,8 +36987,7 @@ - left testicular artery (post-embryonic mouse) - MA:0002041 + left testicular artery (post-embryonic mouse) @@ -39296,8 +37006,7 @@ - right testicular artery (post-embryonic mouse) - MA:0002042 + right testicular artery (post-embryonic mouse) @@ -39316,8 +37025,7 @@ - spinal artery (post-embryonic mouse) - MA:0002043 + spinal artery (post-embryonic mouse) @@ -39336,8 +37044,7 @@ - stapedial artery (post-embryonic mouse) - MA:0002044 + stapedial artery (post-embryonic mouse) @@ -39356,8 +37063,7 @@ - subclavian artery (post-embryonic mouse) - MA:0002045 + subclavian artery (post-embryonic mouse) @@ -39376,8 +37082,7 @@ - left subclavian artery (post-embryonic mouse) - MA:0002046 + left subclavian artery (post-embryonic mouse) @@ -39396,8 +37101,7 @@ - right subclavian artery (post-embryonic mouse) - MA:0002047 + right subclavian artery (post-embryonic mouse) @@ -39416,8 +37120,7 @@ - subcostal artery (post-embryonic mouse) - MA:0002048 + subcostal artery (post-embryonic mouse) @@ -39436,8 +37139,7 @@ - sublingual artery (post-embryonic mouse) - MA:0002049 + sublingual artery (post-embryonic mouse) @@ -39456,8 +37158,7 @@ - subscapular artery (post-embryonic mouse) - MA:0002050 + subscapular artery (post-embryonic mouse) @@ -39476,8 +37177,7 @@ - superficial cervical artery (post-embryonic mouse) - MA:0002052 + superficial cervical artery (post-embryonic mouse) @@ -39496,8 +37196,7 @@ - superior gluteal artery (post-embryonic mouse) - MA:0002054 + superior gluteal artery (post-embryonic mouse) @@ -39516,8 +37215,7 @@ - inferior suprarenal artery (post-embryonic mouse) - MA:0002056 + inferior suprarenal artery (post-embryonic mouse) @@ -39536,8 +37234,7 @@ - superior suprarenal artery (post-embryonic mouse) - MA:0002057 + superior suprarenal artery (post-embryonic mouse) @@ -39556,8 +37253,7 @@ - sural artery (post-embryonic mouse) - MA:0002058 + sural artery (post-embryonic mouse) @@ -39576,8 +37272,7 @@ - temporal artery (post-embryonic mouse) - MA:0002061 + temporal artery (post-embryonic mouse) @@ -39596,8 +37291,7 @@ - superficial temporal artery (post-embryonic mouse) - MA:0002062 + superficial temporal artery (post-embryonic mouse) @@ -39616,8 +37310,7 @@ - testicular artery (post-embryonic mouse) - MA:0002063 + testicular artery (post-embryonic mouse) @@ -39636,8 +37329,7 @@ - thoraco-acromial artery (post-embryonic mouse) - MA:0002064 + thoraco-acromial artery (post-embryonic mouse) @@ -39656,8 +37348,7 @@ - thoracodorsal artery (post-embryonic mouse) - MA:0002065 + thoracodorsal artery (post-embryonic mouse) @@ -39676,8 +37367,7 @@ - thyroid artery (post-embryonic mouse) - MA:0002066 + thyroid artery (post-embryonic mouse) @@ -39696,8 +37386,7 @@ - tibial artery (post-embryonic mouse) - MA:0002067 + tibial artery (post-embryonic mouse) @@ -39716,8 +37405,7 @@ - transverse facial artery (post-embryonic mouse) - MA:0002068 + transverse facial artery (post-embryonic mouse) @@ -39736,8 +37424,7 @@ - ulnar artery (post-embryonic mouse) - MA:0002069 + ulnar artery (post-embryonic mouse) @@ -39756,8 +37443,7 @@ - umbilical artery (post-embryonic mouse) - MA:0002072 + umbilical artery (post-embryonic mouse) @@ -39776,8 +37462,7 @@ - ureteric segment of renal artery (post-embryonic mouse) - MA:0002074 + ureteric segment of renal artery (post-embryonic mouse) @@ -39796,8 +37481,7 @@ - vertebral artery (post-embryonic mouse) - MA:0002077 + vertebral artery (post-embryonic mouse) @@ -39816,8 +37500,7 @@ - vesical artery (post-embryonic mouse) - MA:0002078 + vesical artery (post-embryonic mouse) @@ -39836,8 +37519,7 @@ - inferior vesical artery (post-embryonic mouse) - MA:0002079 + inferior vesical artery (post-embryonic mouse) @@ -39856,8 +37538,7 @@ - superior vesical artery (post-embryonic mouse) - MA:0002080 + superior vesical artery (post-embryonic mouse) @@ -39876,8 +37557,7 @@ - suprarenal vein (post-embryonic mouse) - MA:0002081 + suprarenal vein (post-embryonic mouse) @@ -39896,8 +37576,7 @@ - anterior auricular vein (post-embryonic mouse) - MA:0002083 + anterior auricular vein (post-embryonic mouse) @@ -39916,8 +37595,7 @@ - axillary vein (post-embryonic mouse) - MA:0002084 + axillary vein (post-embryonic mouse) @@ -39936,8 +37614,7 @@ - azygos vein (post-embryonic mouse) - MA:0002085 + azygos vein (post-embryonic mouse) @@ -39956,8 +37633,7 @@ - basilic vein (post-embryonic mouse) - MA:0002086 + basilic vein (post-embryonic mouse) @@ -39976,8 +37652,7 @@ - brachial vein (post-embryonic mouse) - MA:0002087 + brachial vein (post-embryonic mouse) @@ -39996,8 +37671,7 @@ - bronchial vein (post-embryonic mouse) - MA:0002088 + bronchial vein (post-embryonic mouse) @@ -40016,8 +37690,7 @@ - posterior auricular vein (post-embryonic mouse) - MA:0002090 + posterior auricular vein (post-embryonic mouse) @@ -40036,8 +37709,7 @@ - caudal humeral circumflex vein (post-embryonic mouse) - MA:0002091 + caudal humeral circumflex vein (post-embryonic mouse) @@ -40056,8 +37728,7 @@ - cephalic vein (post-embryonic mouse) - MA:0002092 + cephalic vein (post-embryonic mouse) @@ -40076,8 +37747,7 @@ - cerebellar vein (post-embryonic mouse) - MA:0002093 + cerebellar vein (post-embryonic mouse) @@ -40096,8 +37766,7 @@ - inferior cerebellar vein (post-embryonic mouse) - MA:0002094 + inferior cerebellar vein (post-embryonic mouse) @@ -40116,8 +37785,7 @@ - superior cerebellar vein (post-embryonic mouse) - MA:0002095 + superior cerebellar vein (post-embryonic mouse) @@ -40136,8 +37804,7 @@ - cerebral vein (post-embryonic mouse) - MA:0002096 + cerebral vein (post-embryonic mouse) @@ -40156,8 +37823,7 @@ - inferior cerebral vein (post-embryonic mouse) - MA:0002097 + inferior cerebral vein (post-embryonic mouse) @@ -40176,8 +37842,7 @@ - cutaneous vein (post-embryonic mouse) - MA:0002098 + cutaneous vein (post-embryonic mouse) @@ -40196,8 +37861,7 @@ - deep circumflex iliac vein (post-embryonic mouse) - MA:0002099 + deep circumflex iliac vein (post-embryonic mouse) @@ -40216,8 +37880,7 @@ - deferent duct vein (post-embryonic mouse) - MA:0002100 + deferent duct vein (post-embryonic mouse) @@ -40236,8 +37899,7 @@ - digital vein (post-embryonic mouse) - MA:0002101 + digital vein (post-embryonic mouse) @@ -40256,8 +37918,7 @@ - dorsal cerebral vein (post-embryonic mouse) - MA:0002103 + dorsal cerebral vein (post-embryonic mouse) @@ -40276,8 +37937,7 @@ - dorsal metatarsal vein (post-embryonic mouse) - MA:0002105 + dorsal metatarsal vein (post-embryonic mouse) @@ -40296,8 +37956,7 @@ - spinal vein (post-embryonic mouse) - MA:0002108 + spinal vein (post-embryonic mouse) @@ -40316,8 +37975,7 @@ - dorsal venous arch (post-embryonic mouse) - MA:0002110 + dorsal venous arch (post-embryonic mouse) @@ -40336,8 +37994,7 @@ - ductus venosus (post-embryonic mouse) - MA:0002111 + ductus venosus (post-embryonic mouse) @@ -40356,8 +38013,7 @@ - venous dural sinus (post-embryonic mouse) - MA:0002113 + venous dural sinus (post-embryonic mouse) @@ -40376,8 +38032,7 @@ - epigastric vein (post-embryonic mouse) - MA:0002114 + epigastric vein (post-embryonic mouse) @@ -40396,8 +38051,7 @@ - facial vein (post-embryonic mouse) - MA:0002115 + facial vein (post-embryonic mouse) @@ -40416,8 +38070,7 @@ - anterior facial vein (post-embryonic mouse) - MA:0002116 + anterior facial vein (post-embryonic mouse) @@ -40436,8 +38089,7 @@ - retromandibular vein (post-embryonic mouse) - MA:0002117 + retromandibular vein (post-embryonic mouse) @@ -40456,8 +38108,7 @@ - femoral vein (post-embryonic mouse) - MA:0002118 + femoral vein (post-embryonic mouse) @@ -40476,8 +38127,7 @@ - forelimb digital vein (post-embryonic mouse) - MA:0002120 + forelimb digital vein (post-embryonic mouse) @@ -40496,8 +38146,7 @@ - common palmar digital vein (post-embryonic mouse) - MA:0002121 + common palmar digital vein (post-embryonic mouse) @@ -40516,8 +38165,7 @@ - proper palmar digital vein (post-embryonic mouse) - MA:0002126 + proper palmar digital vein (post-embryonic mouse) @@ -40536,8 +38184,7 @@ - superficial palmar arch (post-embryonic mouse) - MA:0002127 + superficial palmar arch (post-embryonic mouse) @@ -40556,8 +38203,7 @@ - gastric vein (post-embryonic mouse) - MA:0002128 + gastric vein (post-embryonic mouse) @@ -40576,8 +38222,7 @@ - great vein of heart (post-embryonic mouse) - MA:0002131 + great vein of heart (post-embryonic mouse) @@ -40596,8 +38241,7 @@ - hepatic portal vein (post-embryonic mouse) - MA:0002132 + hepatic portal vein (post-embryonic mouse) @@ -40616,8 +38260,7 @@ - hindlimb digital vein (post-embryonic mouse) - MA:0002133 + hindlimb digital vein (post-embryonic mouse) @@ -40636,8 +38279,7 @@ - common plantar digital vein (post-embryonic mouse) - MA:0002134 + common plantar digital vein (post-embryonic mouse) @@ -40656,8 +38298,7 @@ - proper plantar digital vein (post-embryonic mouse) - MA:0002138 + proper plantar digital vein (post-embryonic mouse) @@ -40676,8 +38317,7 @@ - internal iliac vein (post-embryonic mouse) - MA:0002139 + internal iliac vein (post-embryonic mouse) @@ -40696,8 +38336,7 @@ - ileal vein (post-embryonic mouse) - MA:0002140 + ileal vein (post-embryonic mouse) @@ -40716,8 +38355,7 @@ - ileocolic vein (post-embryonic mouse) - MA:0002141 + ileocolic vein (post-embryonic mouse) @@ -40736,8 +38374,7 @@ - iliac vein (post-embryonic mouse) - MA:0002142 + iliac vein (post-embryonic mouse) @@ -40756,8 +38393,7 @@ - common iliac vein (post-embryonic mouse) - MA:0002143 + common iliac vein (post-embryonic mouse) @@ -40776,8 +38412,7 @@ - external iliac vein (post-embryonic mouse) - MA:0002144 + external iliac vein (post-embryonic mouse) @@ -40796,8 +38431,7 @@ - internal iliac vein (post-embryonic mouse) - MA:0002145 + internal iliac vein (post-embryonic mouse) @@ -40816,8 +38450,7 @@ - iliolumbar vein (post-embryonic mouse) - MA:0002146 + iliolumbar vein (post-embryonic mouse) @@ -40836,8 +38469,7 @@ - inferior palpebral vein (post-embryonic mouse) - MA:0002147 + inferior palpebral vein (post-embryonic mouse) @@ -40856,8 +38488,7 @@ - internal mammary vein (post-embryonic mouse) - MA:0002148 + internal mammary vein (post-embryonic mouse) @@ -40876,8 +38507,7 @@ - jejunal vein (post-embryonic mouse) - MA:0002153 + jejunal vein (post-embryonic mouse) @@ -40896,8 +38526,7 @@ - jugular vein (post-embryonic mouse) - MA:0002154 + jugular vein (post-embryonic mouse) @@ -40916,8 +38545,7 @@ - anterior jugular vein (post-embryonic mouse) - MA:0002155 + anterior jugular vein (post-embryonic mouse) @@ -40936,8 +38564,7 @@ - external jugular vein (post-embryonic mouse) - MA:0002156 + external jugular vein (post-embryonic mouse) @@ -40956,8 +38583,7 @@ - internal jugular vein (post-embryonic mouse) - MA:0002157 + internal jugular vein (post-embryonic mouse) @@ -40976,8 +38602,7 @@ - lateral marginal vein (post-embryonic mouse) - MA:0002160 + lateral marginal vein (post-embryonic mouse) @@ -40996,8 +38621,7 @@ - lateral saphenous vein (post-embryonic mouse) - MA:0002161 + lateral saphenous vein (post-embryonic mouse) @@ -41016,8 +38640,7 @@ - lateral thoracic vein (post-embryonic mouse) - MA:0002162 + lateral thoracic vein (post-embryonic mouse) @@ -41036,8 +38659,7 @@ - splenic vein (post-embryonic mouse) - MA:0002164 + splenic vein (post-embryonic mouse) @@ -41056,8 +38678,7 @@ - masseteric vein (post-embryonic mouse) - MA:0002167 + masseteric vein (post-embryonic mouse) @@ -41076,8 +38697,7 @@ - maxillary vein (post-embryonic mouse) - MA:0002169 + maxillary vein (post-embryonic mouse) @@ -41096,8 +38716,7 @@ - medial marginal vein (post-embryonic mouse) - MA:0002171 + medial marginal vein (post-embryonic mouse) @@ -41116,8 +38735,7 @@ - medial plantar digital vein (post-embryonic mouse) - MA:0002172 + medial plantar digital vein (post-embryonic mouse) @@ -41136,8 +38754,7 @@ - medial saphenous vein (post-embryonic mouse) - MA:0002173 + medial saphenous vein (post-embryonic mouse) @@ -41156,8 +38773,7 @@ - median basilic vein (post-embryonic mouse) - MA:0002176 + median basilic vein (post-embryonic mouse) @@ -41176,8 +38792,7 @@ - mesenteric vein (post-embryonic mouse) - MA:0002177 + mesenteric vein (post-embryonic mouse) @@ -41196,8 +38811,7 @@ - inferior mesenteric vein (post-embryonic mouse) - MA:0002178 + inferior mesenteric vein (post-embryonic mouse) @@ -41216,8 +38830,7 @@ - superior mesenteric vein (post-embryonic mouse) - MA:0002179 + superior mesenteric vein (post-embryonic mouse) @@ -41236,8 +38849,7 @@ - middle colic vein (post-embryonic mouse) - MA:0002181 + middle colic vein (post-embryonic mouse) @@ -41256,8 +38868,7 @@ - naso-frontal vein (post-embryonic mouse) - MA:0002182 + naso-frontal vein (post-embryonic mouse) @@ -41276,8 +38887,7 @@ - obturator vein (post-embryonic mouse) - MA:0002183 + obturator vein (post-embryonic mouse) @@ -41296,8 +38906,7 @@ - ophthalmic plexus (post-embryonic mouse) - MA:0002185 + ophthalmic plexus (post-embryonic mouse) @@ -41316,8 +38925,7 @@ - ovarian vein (post-embryonic mouse) - MA:0002186 + ovarian vein (post-embryonic mouse) @@ -41336,8 +38944,7 @@ - pericardiacophrenic vein (post-embryonic mouse) - MA:0002187 + pericardiacophrenic vein (post-embryonic mouse) @@ -41356,8 +38963,7 @@ - pancreatic tributary of splenic vein (post-embryonic mouse) - MA:0002189 + pancreatic tributary of splenic vein (post-embryonic mouse) @@ -41376,8 +38982,7 @@ - pancreaticoduodenal vein (post-embryonic mouse) - MA:0002190 + pancreaticoduodenal vein (post-embryonic mouse) @@ -41396,8 +39001,7 @@ - inferior pancreaticoduodenal vein (post-embryonic mouse) - MA:0002191 + inferior pancreaticoduodenal vein (post-embryonic mouse) @@ -41416,8 +39020,7 @@ - superior pancreaticoduodenal vein (post-embryonic mouse) - MA:0002192 + superior pancreaticoduodenal vein (post-embryonic mouse) @@ -41436,8 +39039,7 @@ - perineal vein (post-embryonic mouse) - MA:0002193 + perineal vein (post-embryonic mouse) @@ -41456,8 +39058,7 @@ - phrenic vein (post-embryonic mouse) - MA:0002194 + phrenic vein (post-embryonic mouse) @@ -41476,8 +39077,7 @@ - inferior phrenic vein (post-embryonic mouse) - MA:0002195 + inferior phrenic vein (post-embryonic mouse) @@ -41496,8 +39096,7 @@ - popliteal vein (post-embryonic mouse) - MA:0002197 + popliteal vein (post-embryonic mouse) @@ -41516,8 +39115,7 @@ - portal vein (post-embryonic mouse) - MA:0002198 + portal vein (post-embryonic mouse) @@ -41536,8 +39134,7 @@ - principal vein of forelimb (post-embryonic mouse) - MA:0002199 + principal vein of forelimb (post-embryonic mouse) @@ -41556,8 +39153,7 @@ - principal vein of hindlimb (post-embryonic mouse) - MA:0002200 + principal vein of hindlimb (post-embryonic mouse) @@ -41576,8 +39172,7 @@ - pudendal vein (post-embryonic mouse) - MA:0002202 + pudendal vein (post-embryonic mouse) @@ -41596,8 +39191,7 @@ - inferior external pudendal vein (post-embryonic mouse) - MA:0002203 + inferior external pudendal vein (post-embryonic mouse) @@ -41616,8 +39210,7 @@ - superior external pudendal vein (post-embryonic mouse) - MA:0002204 + superior external pudendal vein (post-embryonic mouse) @@ -41636,8 +39229,7 @@ - pulmonary vein (post-embryonic mouse) - MA:0002206 + pulmonary vein (post-embryonic mouse) @@ -41656,8 +39248,7 @@ - left pulmonary vein (post-embryonic mouse) - MA:0002207 + left pulmonary vein (post-embryonic mouse) @@ -41676,8 +39267,7 @@ - right pulmonary vein (post-embryonic mouse) - MA:0002208 + right pulmonary vein (post-embryonic mouse) @@ -41696,8 +39286,7 @@ - renal vein (post-embryonic mouse) - MA:0002210 + renal vein (post-embryonic mouse) @@ -41716,8 +39305,7 @@ - left renal vein (post-embryonic mouse) - MA:0002211 + left renal vein (post-embryonic mouse) @@ -41736,8 +39324,7 @@ - right renal vein (post-embryonic mouse) - MA:0002212 + right renal vein (post-embryonic mouse) @@ -41756,8 +39343,7 @@ - central retinal vein (post-embryonic mouse) - MA:0002213 + central retinal vein (post-embryonic mouse) @@ -41776,8 +39362,7 @@ - anterior auricular vein (post-embryonic mouse) - MA:0002214 + anterior auricular vein (post-embryonic mouse) @@ -41796,8 +39381,7 @@ - saphenous vein (post-embryonic mouse) - MA:0002215 + saphenous vein (post-embryonic mouse) @@ -41816,8 +39400,7 @@ - great saphenous vein (post-embryonic mouse) - MA:0002216 + great saphenous vein (post-embryonic mouse) @@ -41836,8 +39419,7 @@ - small saphenous vein (post-embryonic mouse) - MA:0002217 + small saphenous vein (post-embryonic mouse) @@ -41856,8 +39438,7 @@ - testicular vein (post-embryonic mouse) - MA:0002218 + testicular vein (post-embryonic mouse) @@ -41876,8 +39457,7 @@ - left testicular vein (post-embryonic mouse) - MA:0002219 + left testicular vein (post-embryonic mouse) @@ -41896,8 +39476,7 @@ - right testicular vein (post-embryonic mouse) - MA:0002220 + right testicular vein (post-embryonic mouse) @@ -41916,8 +39495,7 @@ - subclavian vein (post-embryonic mouse) - MA:0002221 + subclavian vein (post-embryonic mouse) @@ -41936,8 +39514,7 @@ - subcostal vein (post-embryonic mouse) - MA:0002222 + subcostal vein (post-embryonic mouse) @@ -41956,8 +39533,7 @@ - submental vein (post-embryonic mouse) - MA:0002223 + submental vein (post-embryonic mouse) @@ -41976,8 +39552,7 @@ - subscapular vein (post-embryonic mouse) - MA:0002224 + subscapular vein (post-embryonic mouse) @@ -41996,8 +39571,7 @@ - superior intercostal vein (post-embryonic mouse) - MA:0002226 + superior intercostal vein (post-embryonic mouse) @@ -42016,8 +39590,7 @@ - superior vesical vein (post-embryonic mouse) - MA:0002227 + superior vesical vein (post-embryonic mouse) @@ -42036,8 +39609,7 @@ - supraorbital vein (post-embryonic mouse) - MA:0002228 + supraorbital vein (post-embryonic mouse) @@ -42056,8 +39628,7 @@ - suprarenal vein (post-embryonic mouse) - MA:0002229 + suprarenal vein (post-embryonic mouse) @@ -42076,8 +39647,7 @@ - vein of hindlimb zeugopod (post-embryonic mouse) - MA:0002231 + vein of hindlimb zeugopod (post-embryonic mouse) @@ -42096,8 +39666,7 @@ - tail vein (post-embryonic mouse) - MA:0002233 + tail vein (post-embryonic mouse) @@ -42116,8 +39685,7 @@ - testicular vein (post-embryonic mouse) - MA:0002234 + testicular vein (post-embryonic mouse) @@ -42136,8 +39704,7 @@ - thoracic vein (post-embryonic mouse) - MA:0002235 + thoracic vein (post-embryonic mouse) @@ -42156,8 +39723,7 @@ - external thoracic vein (post-embryonic mouse) - MA:0002236 + external thoracic vein (post-embryonic mouse) @@ -42176,8 +39742,7 @@ - internal thoracic vein (post-embryonic mouse) - MA:0002237 + internal thoracic vein (post-embryonic mouse) @@ -42196,8 +39761,7 @@ - thoracodorsal vein (post-embryonic mouse) - MA:0002238 + thoracodorsal vein (post-embryonic mouse) @@ -42216,8 +39780,7 @@ - temporal vein (post-embryonic mouse) - MA:0002239 + temporal vein (post-embryonic mouse) @@ -42236,8 +39799,7 @@ - deep temporal vein (post-embryonic mouse) - MA:0002240 + deep temporal vein (post-embryonic mouse) @@ -42256,8 +39818,7 @@ - middle temporal vein (post-embryonic mouse) - MA:0002241 + middle temporal vein (post-embryonic mouse) @@ -42276,8 +39837,7 @@ - superficial temporal vein (post-embryonic mouse) - MA:0002242 + superficial temporal vein (post-embryonic mouse) @@ -42296,8 +39856,7 @@ - tibial vein (post-embryonic mouse) - MA:0002243 + tibial vein (post-embryonic mouse) @@ -42316,8 +39875,7 @@ - anterior tibial vein (post-embryonic mouse) - MA:0002244 + anterior tibial vein (post-embryonic mouse) @@ -42336,8 +39894,7 @@ - posterior tibial vein (post-embryonic mouse) - MA:0002245 + posterior tibial vein (post-embryonic mouse) @@ -42356,8 +39913,7 @@ - thymic vein (post-embryonic mouse) - MA:0002246 + thymic vein (post-embryonic mouse) @@ -42376,8 +39932,7 @@ - transverse facial vein (post-embryonic mouse) - MA:0002247 + transverse facial vein (post-embryonic mouse) @@ -42396,8 +39951,7 @@ - umbilical vein (post-embryonic mouse) - MA:0002249 + umbilical vein (post-embryonic mouse) @@ -42416,8 +39970,7 @@ - ureteric vein (post-embryonic mouse) - MA:0002250 + ureteric vein (post-embryonic mouse) @@ -42436,8 +39989,7 @@ - vaginal vein (post-embryonic mouse) - MA:0002251 + vaginal vein (post-embryonic mouse) @@ -42456,8 +40008,7 @@ - vein of clitoris (post-embryonic mouse) - MA:0002252 + vein of clitoris (post-embryonic mouse) @@ -42476,8 +40027,7 @@ - vein of lower lip (post-embryonic mouse) - MA:0002253 + vein of lower lip (post-embryonic mouse) @@ -42496,8 +40046,7 @@ - vein of trabecular bone (post-embryonic mouse) - MA:0002254 + vein of trabecular bone (post-embryonic mouse) @@ -42516,8 +40065,7 @@ - vein of upper lip (post-embryonic mouse) - MA:0002255 + vein of upper lip (post-embryonic mouse) @@ -42536,8 +40084,7 @@ - vaginal venous plexus (post-embryonic mouse) - MA:0002257 + vaginal venous plexus (post-embryonic mouse) @@ -42556,8 +40103,7 @@ - vertebral vein (post-embryonic mouse) - MA:0002262 + vertebral vein (post-embryonic mouse) @@ -42576,8 +40122,7 @@ - vesical vein (post-embryonic mouse) - MA:0002263 + vesical vein (post-embryonic mouse) @@ -42596,8 +40141,7 @@ - inferior vesical vein (post-embryonic mouse) - MA:0002264 + inferior vesical vein (post-embryonic mouse) @@ -42616,8 +40160,7 @@ - abductor pollicis longus (post-embryonic mouse) - MA:0002266 + abductor pollicis longus (post-embryonic mouse) @@ -42636,8 +40179,7 @@ - adductor muscle of hip (post-embryonic mouse) - MA:0002267 + adductor muscle of hip (post-embryonic mouse) @@ -42656,8 +40198,7 @@ - anterior abdominal wall muscle (post-embryonic mouse) - MA:0002268 + anterior abdominal wall muscle (post-embryonic mouse) @@ -42676,8 +40217,7 @@ - biceps brachii (post-embryonic mouse) - MA:0002269 + biceps brachii (post-embryonic mouse) @@ -42696,8 +40236,7 @@ - biceps femoris (post-embryonic mouse) - MA:0002270 + biceps femoris (post-embryonic mouse) @@ -42716,8 +40255,7 @@ - brachialis muscle (post-embryonic mouse) - MA:0002271 + brachialis muscle (post-embryonic mouse) @@ -42736,8 +40274,7 @@ - buccinator muscle (post-embryonic mouse) - MA:0002272 + buccinator muscle (post-embryonic mouse) @@ -42756,8 +40293,7 @@ - male external urethral sphincter (post-embryonic mouse) - MA:0002273 + male external urethral sphincter (post-embryonic mouse) @@ -42776,8 +40312,7 @@ - cleidobrachialis muscle (post-embryonic mouse) - MA:0002274 + cleidobrachialis muscle (post-embryonic mouse) @@ -42796,8 +40331,7 @@ - cleidocephalicus muscle (post-embryonic mouse) - MA:0002275 + cleidocephalicus muscle (post-embryonic mouse) @@ -42816,8 +40350,7 @@ - cleidooccipital muscle (post-embryonic mouse) - MA:0002276 + cleidooccipital muscle (post-embryonic mouse) @@ -42836,8 +40369,7 @@ - coccygeus muscle (post-embryonic mouse) - MA:0002277 + coccygeus muscle (post-embryonic mouse) @@ -42856,8 +40388,7 @@ - constrictor muscle of pharynx (post-embryonic mouse) - MA:0002278 + constrictor muscle of pharynx (post-embryonic mouse) @@ -42876,8 +40407,7 @@ - inferior pharyngeal constrictor (post-embryonic mouse) - MA:0002279 + inferior pharyngeal constrictor (post-embryonic mouse) @@ -42896,8 +40426,7 @@ - superior pharyngeal constrictor (post-embryonic mouse) - MA:0002280 + superior pharyngeal constrictor (post-embryonic mouse) @@ -42916,8 +40445,7 @@ - constrictor vulvae muscle (post-embryonic mouse) - MA:0002281 + constrictor vulvae muscle (post-embryonic mouse) @@ -42936,8 +40464,7 @@ - coracobrachialis muscle (post-embryonic mouse) - MA:0002282 + coracobrachialis muscle (post-embryonic mouse) @@ -42956,8 +40483,7 @@ - crico-arytenoid muscle (post-embryonic mouse) - MA:0002283 + crico-arytenoid muscle (post-embryonic mouse) @@ -42976,8 +40502,7 @@ - cricothyroid muscle (post-embryonic mouse) - MA:0002284 + cricothyroid muscle (post-embryonic mouse) @@ -42996,8 +40521,7 @@ - cutaneous trunci muscle (post-embryonic mouse) - MA:0002285 + cutaneous trunci muscle (post-embryonic mouse) @@ -43016,8 +40540,7 @@ - deltoid (post-embryonic mouse) - MA:0002286 + deltoid (post-embryonic mouse) @@ -43036,8 +40559,7 @@ - depressor labii inferioris (post-embryonic mouse) - MA:0002287 + depressor labii inferioris (post-embryonic mouse) @@ -43056,8 +40578,7 @@ - digastric muscle group (post-embryonic mouse) - MA:0002288 + digastric muscle group (post-embryonic mouse) @@ -43076,8 +40597,7 @@ - erector spinae muscle group (post-embryonic mouse) - MA:0002289 + erector spinae muscle group (post-embryonic mouse) @@ -43096,8 +40616,7 @@ - extensor carpi radialis brevis muscle (post-embryonic mouse) - MA:0002290 + extensor carpi radialis brevis muscle (post-embryonic mouse) @@ -43116,8 +40635,7 @@ - extensor carpi radialis longus muscle (post-embryonic mouse) - MA:0002291 + extensor carpi radialis longus muscle (post-embryonic mouse) @@ -43136,8 +40654,7 @@ - extensor carpi ulnaris muscle (post-embryonic mouse) - MA:0002292 + extensor carpi ulnaris muscle (post-embryonic mouse) @@ -43156,8 +40673,7 @@ - extensor digitorum communis (post-embryonic mouse) - MA:0002293 + extensor digitorum communis (post-embryonic mouse) @@ -43176,8 +40692,7 @@ - extensor digitorum lateralis muscle (post-embryonic mouse) - MA:0002294 + extensor digitorum lateralis muscle (post-embryonic mouse) @@ -43196,8 +40711,7 @@ - extensor digitorum longus (post-embryonic mouse) - MA:0002295 + extensor digitorum longus (post-embryonic mouse) @@ -43216,8 +40730,7 @@ - extrinsic muscle of tongue (post-embryonic mouse) - MA:0002296 + extrinsic muscle of tongue (post-embryonic mouse) @@ -43236,8 +40749,7 @@ - flexor carpi radialis muscle (post-embryonic mouse) - MA:0002297 + flexor carpi radialis muscle (post-embryonic mouse) @@ -43256,8 +40768,7 @@ - flexor carpi ulnaris muscle (post-embryonic mouse) - MA:0002298 + flexor carpi ulnaris muscle (post-embryonic mouse) @@ -43276,8 +40787,7 @@ - flexor digitorum longus (post-embryonic mouse) - MA:0002299 + flexor digitorum longus (post-embryonic mouse) @@ -43296,8 +40806,7 @@ - flexor digitorum profundus (post-embryonic mouse) - MA:0002300 + flexor digitorum profundus (post-embryonic mouse) @@ -43316,8 +40825,7 @@ - flexor hallucis longus (post-embryonic mouse) - MA:0002301 + flexor hallucis longus (post-embryonic mouse) @@ -43336,8 +40844,7 @@ - interosseous muscle of pes (post-embryonic mouse) - MA:0002302 + interosseous muscle of pes (post-embryonic mouse) @@ -43356,8 +40863,7 @@ - dorsal pes interosseous muscle (post-embryonic mouse) - MA:0002303 + dorsal pes interosseous muscle (post-embryonic mouse) @@ -43376,8 +40882,7 @@ - plantar interosseous muscle of pes (post-embryonic mouse) - MA:0002304 + plantar interosseous muscle of pes (post-embryonic mouse) @@ -43396,8 +40901,7 @@ - lumbrical muscle of pes (post-embryonic mouse) - MA:0002305 + lumbrical muscle of pes (post-embryonic mouse) @@ -43416,8 +40920,7 @@ - gastrocnemius (post-embryonic mouse) - MA:0002306 + gastrocnemius (post-embryonic mouse) @@ -43436,8 +40939,7 @@ - genioglossus muscle (post-embryonic mouse) - MA:0002307 + genioglossus muscle (post-embryonic mouse) @@ -43456,8 +40958,7 @@ - geniohyoid muscle (post-embryonic mouse) - MA:0002308 + geniohyoid muscle (post-embryonic mouse) @@ -43476,8 +40977,7 @@ - gluteus maximus (post-embryonic mouse) - MA:0002309 + gluteus maximus (post-embryonic mouse) @@ -43496,8 +40996,7 @@ - gluteus medius (post-embryonic mouse) - MA:0002310 + gluteus medius (post-embryonic mouse) @@ -43516,8 +41015,7 @@ - gracilis (post-embryonic mouse) - MA:0002311 + gracilis (post-embryonic mouse) @@ -43536,8 +41034,7 @@ - muscle of posterior compartment of hindlimb stylopod (post-embryonic mouse) - MA:0002312 + muscle of posterior compartment of hindlimb stylopod (post-embryonic mouse) @@ -43556,8 +41053,7 @@ - interosseous muscle of manus (post-embryonic mouse) - MA:0002313 + interosseous muscle of manus (post-embryonic mouse) @@ -43576,8 +41072,7 @@ - dorsal interosseous of manus (post-embryonic mouse) - MA:0002314 + dorsal interosseous of manus (post-embryonic mouse) @@ -43596,8 +41091,7 @@ - palmar interosseous muscle of manus (post-embryonic mouse) - MA:0002315 + palmar interosseous muscle of manus (post-embryonic mouse) @@ -43616,8 +41110,7 @@ - lumbrical muscle of manus (post-embryonic mouse) - MA:0002316 + lumbrical muscle of manus (post-embryonic mouse) @@ -43636,8 +41129,7 @@ - hyoglossus muscle (post-embryonic mouse) - MA:0002317 + hyoglossus muscle (post-embryonic mouse) @@ -43656,8 +41148,7 @@ - iliacus muscle (post-embryonic mouse) - MA:0002318 + iliacus muscle (post-embryonic mouse) @@ -43676,8 +41167,7 @@ - iliocostalis muscle (post-embryonic mouse) - MA:0002319 + iliocostalis muscle (post-embryonic mouse) @@ -43696,8 +41186,7 @@ - iliocostalis thoracis muscle (post-embryonic mouse) - MA:0002320 + iliocostalis thoracis muscle (post-embryonic mouse) @@ -43716,8 +41205,7 @@ - iliopsoas (post-embryonic mouse) - MA:0002321 + iliopsoas (post-embryonic mouse) @@ -43736,8 +41224,7 @@ - iliothoracic muscle (post-embryonic mouse) - MA:0002322 + iliothoracic muscle (post-embryonic mouse) @@ -43756,8 +41243,7 @@ - infraspinatus muscle (post-embryonic mouse) - MA:0002323 + infraspinatus muscle (post-embryonic mouse) @@ -43776,8 +41262,7 @@ - intercostal muscle (post-embryonic mouse) - MA:0002324 + intercostal muscle (post-embryonic mouse) @@ -43796,8 +41281,7 @@ - external intercostal muscle (post-embryonic mouse) - MA:0002325 + external intercostal muscle (post-embryonic mouse) @@ -43816,8 +41300,7 @@ - internal intercostal muscle (post-embryonic mouse) - MA:0002326 + internal intercostal muscle (post-embryonic mouse) @@ -43836,8 +41319,7 @@ - intrinsic muscle of tongue (post-embryonic mouse) - MA:0002327 + intrinsic muscle of tongue (post-embryonic mouse) @@ -43856,8 +41338,7 @@ - transverse muscle of tongue (post-embryonic mouse) - MA:0002328 + transverse muscle of tongue (post-embryonic mouse) @@ -43876,8 +41357,7 @@ - vertical muscle of tongue (post-embryonic mouse) - MA:0002329 + vertical muscle of tongue (post-embryonic mouse) @@ -43896,8 +41376,7 @@ - ischiocavernosus muscle (post-embryonic mouse) - MA:0002330 + ischiocavernosus muscle (post-embryonic mouse) @@ -43916,8 +41395,7 @@ - latissimus dorsi muscle (post-embryonic mouse) - MA:0002331 + latissimus dorsi muscle (post-embryonic mouse) @@ -43936,8 +41414,7 @@ - levator ani muscle (post-embryonic mouse) - MA:0002332 + levator ani muscle (post-embryonic mouse) @@ -43956,8 +41433,7 @@ - levator labii superioris (post-embryonic mouse) - MA:0002333 + levator labii superioris (post-embryonic mouse) @@ -43976,8 +41452,7 @@ - levator nasolabialis muscle (post-embryonic mouse) - MA:0002334 + levator nasolabialis muscle (post-embryonic mouse) @@ -43996,8 +41471,7 @@ - longissimus atlantis muscle (post-embryonic mouse) - MA:0002335 + longissimus atlantis muscle (post-embryonic mouse) @@ -44016,8 +41490,7 @@ - longissimus capitis (post-embryonic mouse) - MA:0002336 + longissimus capitis (post-embryonic mouse) @@ -44036,8 +41509,7 @@ - longissimus cervicis muscle (post-embryonic mouse) - MA:0002337 + longissimus cervicis muscle (post-embryonic mouse) @@ -44056,8 +41528,7 @@ - longissimus lumborum muscle (post-embryonic mouse) - MA:0002338 + longissimus lumborum muscle (post-embryonic mouse) @@ -44076,8 +41547,7 @@ - longissimus thoracis muscle (post-embryonic mouse) - MA:0002339 + longissimus thoracis muscle (post-embryonic mouse) @@ -44096,8 +41566,7 @@ - longus capitis muscle (post-embryonic mouse) - MA:0002340 + longus capitis muscle (post-embryonic mouse) @@ -44116,8 +41585,7 @@ - longus colli muscle (post-embryonic mouse) - MA:0002341 + longus colli muscle (post-embryonic mouse) @@ -44136,8 +41604,7 @@ - ventral lateral sacrocaudal muscle (post-embryonic mouse) - MA:0002342 + ventral lateral sacrocaudal muscle (post-embryonic mouse) @@ -44156,8 +41623,7 @@ - masseter muscle (post-embryonic mouse) - MA:0002343 + masseter muscle (post-embryonic mouse) @@ -44176,8 +41642,7 @@ - mylohyoid muscle (post-embryonic mouse) - MA:0002344 + mylohyoid muscle (post-embryonic mouse) @@ -44196,8 +41661,7 @@ - abdominal external oblique muscle (post-embryonic mouse) - MA:0002345 + abdominal external oblique muscle (post-embryonic mouse) @@ -44216,8 +41680,7 @@ - abdominal internal oblique muscle (post-embryonic mouse) - MA:0002346 + abdominal internal oblique muscle (post-embryonic mouse) @@ -44236,8 +41699,7 @@ - obturator externus (post-embryonic mouse) - MA:0002347 + obturator externus (post-embryonic mouse) @@ -44256,8 +41718,7 @@ - omohyoid muscle (post-embryonic mouse) - MA:0002348 + omohyoid muscle (post-embryonic mouse) @@ -44276,8 +41737,7 @@ - omotransversarius muscle (post-embryonic mouse) - MA:0002349 + omotransversarius muscle (post-embryonic mouse) @@ -44296,8 +41756,7 @@ - palatoglossus muscle (post-embryonic mouse) - MA:0002351 + palatoglossus muscle (post-embryonic mouse) @@ -44316,8 +41775,7 @@ - parotidoauricular muscle (post-embryonic mouse) - MA:0002352 + parotidoauricular muscle (post-embryonic mouse) @@ -44336,8 +41794,7 @@ - pectineus muscle (post-embryonic mouse) - MA:0002353 + pectineus muscle (post-embryonic mouse) @@ -44356,8 +41813,7 @@ - pectoralis major (post-embryonic mouse) - MA:0002354 + pectoralis major (post-embryonic mouse) @@ -44376,8 +41832,7 @@ - pectoralis minor (post-embryonic mouse) - MA:0002355 + pectoralis minor (post-embryonic mouse) @@ -44396,8 +41851,7 @@ - fibularis longus (post-embryonic mouse) - MA:0002356 + fibularis longus (post-embryonic mouse) @@ -44416,8 +41870,7 @@ - pronator teres (post-embryonic mouse) - MA:0002357 + pronator teres (post-embryonic mouse) @@ -44436,8 +41889,7 @@ - psoas major muscle (post-embryonic mouse) - MA:0002358 + psoas major muscle (post-embryonic mouse) @@ -44456,8 +41908,7 @@ - psoas minor muscle (post-embryonic mouse) - MA:0002359 + psoas minor muscle (post-embryonic mouse) @@ -44476,8 +41927,7 @@ - lateral pterygoid muscle (post-embryonic mouse) - MA:0002360 + lateral pterygoid muscle (post-embryonic mouse) @@ -44496,8 +41946,7 @@ - medial pterygoid muscle (post-embryonic mouse) - MA:0002361 + medial pterygoid muscle (post-embryonic mouse) @@ -44516,8 +41965,7 @@ - quadratus lumborum (post-embryonic mouse) - MA:0002362 + quadratus lumborum (post-embryonic mouse) @@ -44536,8 +41984,7 @@ - quadriceps femoris (post-embryonic mouse) - MA:0002363 + quadriceps femoris (post-embryonic mouse) @@ -44556,8 +42003,7 @@ - rectus abdominis muscle (post-embryonic mouse) - MA:0002364 + rectus abdominis muscle (post-embryonic mouse) @@ -44576,8 +42022,7 @@ - rectus femoris (post-embryonic mouse) - MA:0002365 + rectus femoris (post-embryonic mouse) @@ -44596,8 +42041,7 @@ - rectus thoracis muscle (post-embryonic mouse) - MA:0002366 + rectus thoracis muscle (post-embryonic mouse) @@ -44616,8 +42060,7 @@ - rhomboid (post-embryonic mouse) - MA:0002367 + rhomboid (post-embryonic mouse) @@ -44636,8 +42079,7 @@ - sartorius muscle (post-embryonic mouse) - MA:0002368 + sartorius muscle (post-embryonic mouse) @@ -44656,8 +42098,7 @@ - scalenus posterior (post-embryonic mouse) - MA:0002369 + scalenus posterior (post-embryonic mouse) @@ -44676,8 +42117,7 @@ - scalenus medius (post-embryonic mouse) - MA:0002370 + scalenus medius (post-embryonic mouse) @@ -44696,8 +42136,7 @@ - semimembranosus muscle (post-embryonic mouse) - MA:0002371 + semimembranosus muscle (post-embryonic mouse) @@ -44716,8 +42155,7 @@ - semispinalis capitis (post-embryonic mouse) - MA:0002372 + semispinalis capitis (post-embryonic mouse) @@ -44736,8 +42174,7 @@ - semispinalis cervicis (post-embryonic mouse) - MA:0002373 + semispinalis cervicis (post-embryonic mouse) @@ -44756,8 +42193,7 @@ - semispinalis thoracis (post-embryonic mouse) - MA:0002374 + semispinalis thoracis (post-embryonic mouse) @@ -44776,8 +42212,7 @@ - semitendinosus (post-embryonic mouse) - MA:0002375 + semitendinosus (post-embryonic mouse) @@ -44796,8 +42231,7 @@ - serratus dorsalis inferior muscle (post-embryonic mouse) - MA:0002376 + serratus dorsalis inferior muscle (post-embryonic mouse) @@ -44816,8 +42250,7 @@ - serratus dorsalis superior muscle (post-embryonic mouse) - MA:0002377 + serratus dorsalis superior muscle (post-embryonic mouse) @@ -44836,8 +42269,7 @@ - serratus ventralis (post-embryonic mouse) - MA:0002378 + serratus ventralis (post-embryonic mouse) @@ -44856,8 +42288,7 @@ - sphincter colli superficialis muscle (post-embryonic mouse) - MA:0002380 + sphincter colli superficialis muscle (post-embryonic mouse) @@ -44876,8 +42307,7 @@ - spinalis thoracis muscle (post-embryonic mouse) - MA:0002381 + spinalis thoracis muscle (post-embryonic mouse) @@ -44896,8 +42326,7 @@ - splenius (post-embryonic mouse) - MA:0002382 + splenius (post-embryonic mouse) @@ -44916,8 +42345,7 @@ - sternohyoid muscle (post-embryonic mouse) - MA:0002383 + sternohyoid muscle (post-embryonic mouse) @@ -44936,8 +42364,7 @@ - sternocleidomastoid (post-embryonic mouse) - MA:0002384 + sternocleidomastoid (post-embryonic mouse) @@ -44956,8 +42383,7 @@ - sternooccipital muscle (post-embryonic mouse) - MA:0002385 + sternooccipital muscle (post-embryonic mouse) @@ -44976,8 +42402,7 @@ - sternothyroid muscle (post-embryonic mouse) - MA:0002386 + sternothyroid muscle (post-embryonic mouse) @@ -44996,8 +42421,7 @@ - styloglossus (post-embryonic mouse) - MA:0002387 + styloglossus (post-embryonic mouse) @@ -45016,8 +42440,7 @@ - subscapularis muscle (post-embryonic mouse) - MA:0002388 + subscapularis muscle (post-embryonic mouse) @@ -45036,8 +42459,7 @@ - supraspinatus muscle (post-embryonic mouse) - MA:0002389 + supraspinatus muscle (post-embryonic mouse) @@ -45056,8 +42478,7 @@ - temporalis muscle (post-embryonic mouse) - MA:0002390 + temporalis muscle (post-embryonic mouse) @@ -45076,8 +42497,7 @@ - tensor fasciae latae muscle (post-embryonic mouse) - MA:0002391 + tensor fasciae latae muscle (post-embryonic mouse) @@ -45096,8 +42516,7 @@ - teres major muscle (post-embryonic mouse) - MA:0002392 + teres major muscle (post-embryonic mouse) @@ -45116,8 +42535,7 @@ - thyrohyoid muscle (post-embryonic mouse) - MA:0002393 + thyrohyoid muscle (post-embryonic mouse) @@ -45136,8 +42554,7 @@ - tibialis posterior (post-embryonic mouse) - MA:0002394 + tibialis posterior (post-embryonic mouse) @@ -45156,8 +42573,7 @@ - tibialis anterior (post-embryonic mouse) - MA:0002395 + tibialis anterior (post-embryonic mouse) @@ -45176,8 +42592,7 @@ - transversus abdominis muscle (post-embryonic mouse) - MA:0002396 + transversus abdominis muscle (post-embryonic mouse) @@ -45196,8 +42611,7 @@ - transversus thoracis (post-embryonic mouse) - MA:0002397 + transversus thoracis (post-embryonic mouse) @@ -45216,8 +42630,7 @@ - trapezius muscle (post-embryonic mouse) - MA:0002398 + trapezius muscle (post-embryonic mouse) @@ -45236,8 +42649,7 @@ - triceps brachii (post-embryonic mouse) - MA:0002399 + triceps brachii (post-embryonic mouse) @@ -45256,8 +42668,7 @@ - triceps surae (post-embryonic mouse) - MA:0002400 + triceps surae (post-embryonic mouse) @@ -45276,8 +42687,7 @@ - external urethral sphincter (post-embryonic mouse) - MA:0002401 + external urethral sphincter (post-embryonic mouse) @@ -45296,8 +42706,7 @@ - vastus lateralis (post-embryonic mouse) - MA:0002402 + vastus lateralis (post-embryonic mouse) @@ -45316,8 +42725,7 @@ - vastus medialis (post-embryonic mouse) - MA:0002403 + vastus medialis (post-embryonic mouse) @@ -45336,8 +42744,7 @@ - zygomaticus muscle (post-embryonic mouse) - MA:0002404 + zygomaticus muscle (post-embryonic mouse) @@ -45356,8 +42763,7 @@ - post-embryonic organism (post-embryonic mouse) - MA:0002405 + post-embryonic organism (post-embryonic mouse) @@ -45376,8 +42782,7 @@ - ganglion (post-embryonic mouse) - MA:0002406 + ganglion (post-embryonic mouse) @@ -45396,8 +42801,7 @@ - nerve plexus (post-embryonic mouse) - MA:0002407 + nerve plexus (post-embryonic mouse) @@ -45416,8 +42820,7 @@ - nerve trunk (post-embryonic mouse) - MA:0002408 + nerve trunk (post-embryonic mouse) @@ -45436,8 +42839,7 @@ - lower respiratory tract connective tissue (post-embryonic mouse) - MA:0002409 + lower respiratory tract connective tissue (post-embryonic mouse) @@ -45456,8 +42858,7 @@ - lower respiratory tract smooth muscle (post-embryonic mouse) - MA:0002410 + lower respiratory tract smooth muscle (post-embryonic mouse) @@ -45476,8 +42877,7 @@ - exocrine system (post-embryonic mouse) - MA:0002411 + exocrine system (post-embryonic mouse) @@ -45496,8 +42896,7 @@ - soft palate (post-embryonic mouse) - MA:0002412 + soft palate (post-embryonic mouse) @@ -45516,8 +42915,7 @@ - olfactory lobe (post-embryonic mouse) - MA:0002413 + olfactory lobe (post-embryonic mouse) @@ -45536,8 +42934,7 @@ - cumulus oophorus (post-embryonic mouse) - MA:0002414 + cumulus oophorus (post-embryonic mouse) @@ -45556,8 +42953,7 @@ - exocrine pancreas (post-embryonic mouse) - MA:0002415 + exocrine pancreas (post-embryonic mouse) @@ -45576,8 +42972,7 @@ - vertebral column (post-embryonic mouse) - MA:0002416 + vertebral column (post-embryonic mouse) @@ -45596,8 +42991,7 @@ - pancreatic acinus (post-embryonic mouse) - MA:0002417 + pancreatic acinus (post-embryonic mouse) @@ -45616,8 +43010,7 @@ - musculoskeletal system (post-embryonic mouse) - MA:0002418 + musculoskeletal system (post-embryonic mouse) @@ -45636,8 +43029,7 @@ - gonad (post-embryonic mouse) - MA:0002420 + gonad (post-embryonic mouse) @@ -45656,8 +43048,7 @@ - prostate gland anterior lobe (post-embryonic mouse) - MA:0002422 + prostate gland anterior lobe (post-embryonic mouse) @@ -45676,8 +43067,7 @@ - pectoral muscle (post-embryonic mouse) - MA:0002423 + pectoral muscle (post-embryonic mouse) @@ -45696,8 +43086,7 @@ - soleus muscle (post-embryonic mouse) - MA:0002424 + soleus muscle (post-embryonic mouse) @@ -45716,8 +43105,7 @@ - tibialis (post-embryonic mouse) - MA:0002425 + tibialis (post-embryonic mouse) @@ -45736,8 +43124,7 @@ - hypothalamic nucleus (post-embryonic mouse) - MA:0002426 + hypothalamic nucleus (post-embryonic mouse) @@ -45756,8 +43143,7 @@ - layer of hippocampus (post-embryonic mouse) - MA:0002427 + layer of hippocampus (post-embryonic mouse) @@ -45776,8 +43162,7 @@ - hippocampal field (post-embryonic mouse) - MA:0002428 + hippocampal field (post-embryonic mouse) @@ -45796,8 +43181,7 @@ - layer of dentate gyrus (post-embryonic mouse) - MA:0002429 + layer of dentate gyrus (post-embryonic mouse) @@ -45816,8 +43200,7 @@ - white matter of cerebellum (post-embryonic mouse) - MA:0002430 + white matter of cerebellum (post-embryonic mouse) @@ -45836,8 +43219,7 @@ - digestive system (post-embryonic mouse) - MA:0002431 + digestive system (post-embryonic mouse) @@ -45856,8 +43238,7 @@ - oculomotor muscle (post-embryonic mouse) - MA:0002432 + oculomotor muscle (post-embryonic mouse) @@ -45876,8 +43257,7 @@ - organism subdivision (post-embryonic mouse) - MA:0002433 + organism subdivision (post-embryonic mouse) @@ -45896,8 +43276,7 @@ - hematopoietic system (post-embryonic mouse) - MA:0002434 + hematopoietic system (post-embryonic mouse) @@ -45916,8 +43295,7 @@ - lymphoid system (post-embryonic mouse) - MA:0002435 + lymphoid system (post-embryonic mouse) @@ -45936,8 +43314,7 @@ - lymphoid tissue (post-embryonic mouse) - MA:0002436 + lymphoid tissue (post-embryonic mouse) @@ -45956,8 +43333,7 @@ - muscle tissue (post-embryonic mouse) - MA:0002437 + muscle tissue (post-embryonic mouse) @@ -45976,8 +43352,7 @@ - striated muscle tissue (post-embryonic mouse) - MA:0002438 + striated muscle tissue (post-embryonic mouse) @@ -45996,8 +43371,7 @@ - skeletal muscle tissue (post-embryonic mouse) - MA:0002439 + skeletal muscle tissue (post-embryonic mouse) @@ -46016,8 +43390,7 @@ - cardiac muscle tissue of myocardium (post-embryonic mouse) - MA:0002441 + cardiac muscle tissue of myocardium (post-embryonic mouse) @@ -46036,8 +43409,7 @@ - sensory system (post-embryonic mouse) - MA:0002442 + sensory system (post-embryonic mouse) @@ -46056,8 +43428,7 @@ - auditory system (post-embryonic mouse) - MA:0002443 + auditory system (post-embryonic mouse) @@ -46076,8 +43447,7 @@ - visual system (post-embryonic mouse) - MA:0002444 + visual system (post-embryonic mouse) @@ -46096,8 +43466,7 @@ - olfactory system (post-embryonic mouse) - MA:0002445 + olfactory system (post-embryonic mouse) @@ -46116,8 +43485,7 @@ - gustatory system (post-embryonic mouse) - MA:0002446 + gustatory system (post-embryonic mouse) @@ -46136,8 +43504,7 @@ - anatomical cavity (post-embryonic mouse) - MA:0002447 + anatomical cavity (post-embryonic mouse) @@ -46156,8 +43523,7 @@ - parietal serous membrane (post-embryonic mouse) - MA:0002448 + parietal serous membrane (post-embryonic mouse) @@ -46176,8 +43542,7 @@ - heart plus pericardium (post-embryonic mouse) - MA:0002449 + heart plus pericardium (post-embryonic mouse) @@ -46196,8 +43561,7 @@ - organism substance (post-embryonic mouse) - MA:0002450 + organism substance (post-embryonic mouse) @@ -46216,8 +43580,7 @@ - eye skin gland (post-embryonic mouse) - MA:0002451 + eye skin gland (post-embryonic mouse) @@ -46236,8 +43599,7 @@ - eye sebaceous gland (post-embryonic mouse) - MA:0002452 + eye sebaceous gland (post-embryonic mouse) @@ -46256,8 +43618,7 @@ - coronary artery (post-embryonic mouse) - MA:0002453 + coronary artery (post-embryonic mouse) @@ -46276,8 +43637,7 @@ - left coronary artery (post-embryonic mouse) - MA:0002454 + left coronary artery (post-embryonic mouse) @@ -46296,8 +43656,7 @@ - right coronary artery (post-embryonic mouse) - MA:0002455 + right coronary artery (post-embryonic mouse) @@ -46316,8 +43675,7 @@ - lung blood vessel (post-embryonic mouse) - MA:0002457 + lung blood vessel (post-embryonic mouse) @@ -46336,8 +43694,7 @@ - scala media (post-embryonic mouse) - MA:0002458 + scala media (post-embryonic mouse) @@ -46356,8 +43713,7 @@ - chamber of eyeball (post-embryonic mouse) - MA:0002459 + chamber of eyeball (post-embryonic mouse) @@ -46376,8 +43732,7 @@ - posterior chamber of eyeball (post-embryonic mouse) - MA:0002460 + posterior chamber of eyeball (post-embryonic mouse) @@ -46396,8 +43751,7 @@ - vitreous chamber of eyeball (post-embryonic mouse) - MA:0002461 + vitreous chamber of eyeball (post-embryonic mouse) @@ -46416,8 +43770,7 @@ - vitreous body (post-embryonic mouse) - MA:0002462 + vitreous body (post-embryonic mouse) @@ -46436,8 +43789,7 @@ - carotid body (post-embryonic mouse) - MA:0002463 + carotid body (post-embryonic mouse) @@ -46456,8 +43808,7 @@ - genital labium (post-embryonic mouse) - MA:0002464 + genital labium (post-embryonic mouse) @@ -46476,8 +43827,7 @@ - vaginal hymen (post-embryonic mouse) - MA:0002465 + vaginal hymen (post-embryonic mouse) @@ -46496,8 +43846,7 @@ - perineum (post-embryonic mouse) - MA:0002466 + perineum (post-embryonic mouse) @@ -46516,8 +43865,7 @@ - periodontal ligament (post-embryonic mouse) - MA:0002467 + periodontal ligament (post-embryonic mouse) @@ -46536,8 +43884,7 @@ - lobule of pinna (post-embryonic mouse) - MA:0002468 + lobule of pinna (post-embryonic mouse) @@ -46556,8 +43903,7 @@ - parasympathetic ganglion (post-embryonic mouse) - MA:0002469 + parasympathetic ganglion (post-embryonic mouse) @@ -46576,8 +43922,7 @@ - submandibular ganglion (post-embryonic mouse) - MA:0002470 + submandibular ganglion (post-embryonic mouse) @@ -46596,8 +43941,7 @@ - photoreceptor inner segment layer (post-embryonic mouse) - MA:0002471 + photoreceptor inner segment layer (post-embryonic mouse) @@ -46616,8 +43960,7 @@ - photoreceptor outer segment layer (post-embryonic mouse) - MA:0002472 + photoreceptor outer segment layer (post-embryonic mouse) @@ -46636,8 +43979,7 @@ - face (post-embryonic mouse) - MA:0002473 + face (post-embryonic mouse) @@ -46656,8 +43998,7 @@ - mouth (post-embryonic mouse) - MA:0002474 + mouth (post-embryonic mouse) @@ -46676,8 +44017,7 @@ - cheek (post-embryonic mouse) - MA:0002475 + cheek (post-embryonic mouse) @@ -46696,8 +44036,7 @@ - secondary palate (post-embryonic mouse) - MA:0002476 + secondary palate (post-embryonic mouse) @@ -46716,8 +44055,7 @@ - hard palate (post-embryonic mouse) - MA:0002477 + hard palate (post-embryonic mouse) @@ -46736,8 +44074,7 @@ - major salivary gland (post-embryonic mouse) - MA:0002478 + major salivary gland (post-embryonic mouse) @@ -46756,8 +44093,7 @@ - minor salivary gland (post-embryonic mouse) - MA:0002479 + minor salivary gland (post-embryonic mouse) @@ -46776,8 +44112,7 @@ - uvea (post-embryonic mouse) - MA:0002480 + uvea (post-embryonic mouse) @@ -46796,8 +44131,7 @@ - fat pad (post-embryonic mouse) - MA:0002481 + fat pad (post-embryonic mouse) @@ -46816,8 +44150,7 @@ - orbit of skull (post-embryonic mouse) - MA:0002482 + orbit of skull (post-embryonic mouse) @@ -46836,8 +44169,7 @@ - heart blood vessel (post-embryonic mouse) - MA:0002483 + heart blood vessel (post-embryonic mouse) @@ -46856,8 +44188,7 @@ - anterior segment of eyeball (post-embryonic mouse) - MA:0002484 + anterior segment of eyeball (post-embryonic mouse) @@ -46876,8 +44207,7 @@ - posterior segment of eyeball (post-embryonic mouse) - MA:0002485 + posterior segment of eyeball (post-embryonic mouse) @@ -46896,8 +44226,7 @@ - ocular surface region (post-embryonic mouse) - MA:0002486 + ocular surface region (post-embryonic mouse) @@ -46916,8 +44245,7 @@ - spleen pulp (post-embryonic mouse) - MA:0002487 + spleen pulp (post-embryonic mouse) @@ -46936,8 +44264,7 @@ - parietal pleura (post-embryonic mouse) - MA:0002488 + parietal pleura (post-embryonic mouse) @@ -46956,8 +44283,7 @@ - visceral pleura (post-embryonic mouse) - MA:0002489 + visceral pleura (post-embryonic mouse) @@ -46976,8 +44302,7 @@ - urinary bladder muscularis mucosa (post-embryonic mouse) - MA:0002490 + urinary bladder muscularis mucosa (post-embryonic mouse) @@ -46996,8 +44321,7 @@ - neck of urinary bladder (post-embryonic mouse) - MA:0002491 + neck of urinary bladder (post-embryonic mouse) @@ -47016,8 +44340,7 @@ - trigone of urinary bladder (post-embryonic mouse) - MA:0002492 + trigone of urinary bladder (post-embryonic mouse) @@ -47036,8 +44359,7 @@ - wall of urinary bladder (post-embryonic mouse) - MA:0002493 + wall of urinary bladder (post-embryonic mouse) @@ -47056,8 +44378,7 @@ - liver lobule (post-embryonic mouse) - MA:0002494 + liver lobule (post-embryonic mouse) @@ -47076,8 +44397,7 @@ - bile canaliculus (post-embryonic mouse) - MA:0002495 + bile canaliculus (post-embryonic mouse) @@ -47096,8 +44416,7 @@ - hepatic acinus (post-embryonic mouse) - MA:0002496 + hepatic acinus (post-embryonic mouse) @@ -47116,8 +44435,7 @@ - liver perisinusoidal space (post-embryonic mouse) - MA:0002497 + liver perisinusoidal space (post-embryonic mouse) @@ -47136,8 +44454,7 @@ - portal lobule (post-embryonic mouse) - MA:0002498 + portal lobule (post-embryonic mouse) @@ -47156,8 +44473,7 @@ - portal triad (post-embryonic mouse) - MA:0002499 + portal triad (post-embryonic mouse) @@ -47176,8 +44492,7 @@ - right pulmonary artery (post-embryonic mouse) - MA:0002500 + right pulmonary artery (post-embryonic mouse) @@ -47196,8 +44511,7 @@ - blood plasma (post-embryonic mouse) - MA:0002501 + blood plasma (post-embryonic mouse) @@ -47216,8 +44530,7 @@ - blood serum (post-embryonic mouse) - MA:0002502 + blood serum (post-embryonic mouse) @@ -47236,8 +44549,7 @@ - cerebrospinal fluid (post-embryonic mouse) - MA:0002503 + cerebrospinal fluid (post-embryonic mouse) @@ -47256,8 +44568,7 @@ - secretion of exocrine gland (post-embryonic mouse) - MA:0002504 + secretion of exocrine gland (post-embryonic mouse) @@ -47276,8 +44587,7 @@ - mammary gland fluid/secretion (post-embryonic mouse) - MA:0002505 + mammary gland fluid/secretion (post-embryonic mouse) @@ -47296,8 +44606,7 @@ - cerumen (post-embryonic mouse) - MA:0002506 + cerumen (post-embryonic mouse) @@ -47316,8 +44625,7 @@ - saliva (post-embryonic mouse) - MA:0002507 + saliva (post-embryonic mouse) @@ -47336,8 +44644,7 @@ - secretion of lacrimal gland (post-embryonic mouse) - MA:0002508 + secretion of lacrimal gland (post-embryonic mouse) @@ -47356,8 +44663,7 @@ - feces (post-embryonic mouse) - MA:0002509 + feces (post-embryonic mouse) @@ -47376,8 +44682,7 @@ - female reproductive gland secretion (post-embryonic mouse) - MA:0002510 + female reproductive gland secretion (post-embryonic mouse) @@ -47396,8 +44701,7 @@ - follicular fluid (post-embryonic mouse) - MA:0002511 + follicular fluid (post-embryonic mouse) @@ -47416,8 +44720,7 @@ - digestive system secreted substance (post-embryonic mouse) - MA:0002512 + digestive system secreted substance (post-embryonic mouse) @@ -47436,8 +44739,7 @@ - bile (post-embryonic mouse) - MA:0002513 + bile (post-embryonic mouse) @@ -47456,8 +44758,7 @@ - esophagus secretion (post-embryonic mouse) - MA:0002514 + esophagus secretion (post-embryonic mouse) @@ -47476,8 +44777,7 @@ - intestine secretion (post-embryonic mouse) - MA:0002515 + intestine secretion (post-embryonic mouse) @@ -47496,8 +44796,7 @@ - pancreas secretion (post-embryonic mouse) - MA:0002516 + pancreas secretion (post-embryonic mouse) @@ -47516,8 +44815,7 @@ - secretion of endocrine pancreas (post-embryonic mouse) - MA:0002517 + secretion of endocrine pancreas (post-embryonic mouse) @@ -47536,8 +44834,7 @@ - secretion of exocrine pancreas (post-embryonic mouse) - MA:0002518 + secretion of exocrine pancreas (post-embryonic mouse) @@ -47556,8 +44853,7 @@ - gastric juice (post-embryonic mouse) - MA:0002519 + gastric juice (post-embryonic mouse) @@ -47576,8 +44872,7 @@ - lymph (post-embryonic mouse) - MA:0002520 + lymph (post-embryonic mouse) @@ -47596,8 +44891,7 @@ - male reproductive gland secretion (post-embryonic mouse) - MA:0002521 + male reproductive gland secretion (post-embryonic mouse) @@ -47616,8 +44910,7 @@ - semen (post-embryonic mouse) - MA:0002522 + semen (post-embryonic mouse) @@ -47636,8 +44929,7 @@ - seminal fluid (post-embryonic mouse) - MA:0002523 + seminal fluid (post-embryonic mouse) @@ -47656,8 +44948,7 @@ - bulbourethral gland secretion (post-embryonic mouse) - MA:0002524 + bulbourethral gland secretion (post-embryonic mouse) @@ -47676,8 +44967,7 @@ - prostate gland secretion (post-embryonic mouse) - MA:0002525 + prostate gland secretion (post-embryonic mouse) @@ -47696,8 +44986,7 @@ - seminal vesicle fluid (post-embryonic mouse) - MA:0002526 + seminal vesicle fluid (post-embryonic mouse) @@ -47716,8 +45005,7 @@ - otolymph (post-embryonic mouse) - MA:0002527 + otolymph (post-embryonic mouse) @@ -47736,8 +45024,7 @@ - endolymph (post-embryonic mouse) - MA:0002528 + endolymph (post-embryonic mouse) @@ -47756,8 +45043,7 @@ - perilymph (post-embryonic mouse) - MA:0002529 + perilymph (post-embryonic mouse) @@ -47776,8 +45062,7 @@ - pericardial fluid (post-embryonic mouse) - MA:0002530 + pericardial fluid (post-embryonic mouse) @@ -47796,8 +45081,7 @@ - peritoneal fluid (post-embryonic mouse) - MA:0002531 + peritoneal fluid (post-embryonic mouse) @@ -47816,8 +45100,7 @@ - pleural fluid (post-embryonic mouse) - MA:0002532 + pleural fluid (post-embryonic mouse) @@ -47836,8 +45119,7 @@ - respiratory system fluid/secretion (post-embryonic mouse) - MA:0002533 + respiratory system fluid/secretion (post-embryonic mouse) @@ -47856,8 +45138,7 @@ - pulmonary surfactant (post-embryonic mouse) - MA:0002534 + pulmonary surfactant (post-embryonic mouse) @@ -47876,8 +45157,7 @@ - nasal mucus (post-embryonic mouse) - MA:0002535 + nasal mucus (post-embryonic mouse) @@ -47896,8 +45176,7 @@ - sputum (post-embryonic mouse) - MA:0002536 + sputum (post-embryonic mouse) @@ -47916,8 +45195,7 @@ - skin secretion (post-embryonic mouse) - MA:0002537 + skin secretion (post-embryonic mouse) @@ -47936,8 +45214,7 @@ - sebum (post-embryonic mouse) - MA:0002538 + sebum (post-embryonic mouse) @@ -47956,8 +45233,7 @@ - sweat (post-embryonic mouse) - MA:0002539 + sweat (post-embryonic mouse) @@ -47976,8 +45252,7 @@ - odontoid tissue (post-embryonic mouse) - MA:0002540 + odontoid tissue (post-embryonic mouse) @@ -47996,8 +45271,7 @@ - cementum (post-embryonic mouse) - MA:0002541 + cementum (post-embryonic mouse) @@ -48016,8 +45290,7 @@ - dentine (post-embryonic mouse) - MA:0002542 + dentine (post-embryonic mouse) @@ -48036,8 +45309,7 @@ - enamel (post-embryonic mouse) - MA:0002543 + enamel (post-embryonic mouse) @@ -48056,8 +45328,7 @@ - synovial fluid (post-embryonic mouse) - MA:0002544 + synovial fluid (post-embryonic mouse) @@ -48076,8 +45347,7 @@ - urine (post-embryonic mouse) - MA:0002545 + urine (post-embryonic mouse) @@ -48096,8 +45366,7 @@ - juxtaglomerular apparatus (post-embryonic mouse) - MA:0002546 + juxtaglomerular apparatus (post-embryonic mouse) @@ -48116,8 +45385,7 @@ - gonadal fat pad (post-embryonic mouse) - MA:0002547 + gonadal fat pad (post-embryonic mouse) @@ -48136,8 +45404,7 @@ - inguinal fat pad (post-embryonic mouse) - MA:0002548 + inguinal fat pad (post-embryonic mouse) @@ -48156,8 +45423,7 @@ - retroperitoneal fat pad (post-embryonic mouse) - MA:0002549 + retroperitoneal fat pad (post-embryonic mouse) @@ -48176,8 +45442,7 @@ - epididymal fat pad (post-embryonic mouse) - MA:0002550 + epididymal fat pad (post-embryonic mouse) @@ -48196,8 +45461,7 @@ - colostrum (post-embryonic mouse) - MA:0002551 + colostrum (post-embryonic mouse) @@ -48216,8 +45480,7 @@ - milk (post-embryonic mouse) - MA:0002552 + milk (post-embryonic mouse) @@ -48236,8 +45499,7 @@ - psoas muscle (post-embryonic mouse) - MA:0002553 + psoas muscle (post-embryonic mouse) @@ -48256,8 +45518,7 @@ - popliteus muscle (post-embryonic mouse) - MA:0002554 + popliteus muscle (post-embryonic mouse) @@ -48276,8 +45537,7 @@ - radiale (post-embryonic mouse) - MA:0002555 + radiale (post-embryonic mouse) @@ -48296,8 +45556,7 @@ - intermedium (post-embryonic mouse) - MA:0002556 + intermedium (post-embryonic mouse) @@ -48316,8 +45575,7 @@ - proximal carpal bone (post-embryonic mouse) - MA:0002557 + proximal carpal bone (post-embryonic mouse) @@ -48336,8 +45594,7 @@ - distal carpal bone (post-embryonic mouse) - MA:0002558 + distal carpal bone (post-embryonic mouse) @@ -48356,8 +45613,7 @@ - body of stomach (post-embryonic mouse) - MA:0002559 + body of stomach (post-embryonic mouse) @@ -48376,8 +45632,7 @@ - pylorus (post-embryonic mouse) - MA:0002560 + pylorus (post-embryonic mouse) @@ -48396,8 +45651,7 @@ - zone of stomach (post-embryonic mouse) - MA:0002561 + zone of stomach (post-embryonic mouse) @@ -48416,8 +45670,7 @@ - cerebral artery (post-embryonic mouse) - MA:0002562 + cerebral artery (post-embryonic mouse) @@ -48436,8 +45689,7 @@ - endocrine gland (post-embryonic mouse) - MA:0002563 + endocrine gland (post-embryonic mouse) @@ -48456,8 +45708,7 @@ - exocrine gland (post-embryonic mouse) - MA:0002564 + exocrine gland (post-embryonic mouse) @@ -48476,8 +45727,7 @@ - sebaceous gland (post-embryonic mouse) - MA:0002565 + sebaceous gland (post-embryonic mouse) @@ -48496,8 +45746,7 @@ - sensory ganglion (post-embryonic mouse) - MA:0002566 + sensory ganglion (post-embryonic mouse) @@ -48516,8 +45765,7 @@ - corpora quadrigemina (post-embryonic mouse) - MA:0002567 + corpora quadrigemina (post-embryonic mouse) @@ -48536,8 +45784,7 @@ - alveolar wall (post-embryonic mouse) - MA:0002568 + alveolar wall (post-embryonic mouse) @@ -48556,8 +45803,7 @@ - thoracic aorta (post-embryonic mouse) - MA:0002569 + thoracic aorta (post-embryonic mouse) @@ -48576,8 +45822,7 @@ - ascending aorta (post-embryonic mouse) - MA:0002570 + ascending aorta (post-embryonic mouse) @@ -48596,8 +45841,7 @@ - descending aorta (post-embryonic mouse) - MA:0002571 + descending aorta (post-embryonic mouse) @@ -48616,8 +45860,7 @@ - descending thoracic aorta (post-embryonic mouse) - MA:0002572 + descending thoracic aorta (post-embryonic mouse) @@ -48636,8 +45879,7 @@ - axillary artery (post-embryonic mouse) - MA:0002573 + axillary artery (post-embryonic mouse) @@ -48656,8 +45898,7 @@ - anterior tibial artery (post-embryonic mouse) - MA:0002574 + anterior tibial artery (post-embryonic mouse) @@ -48676,8 +45917,7 @@ - posterior tibial artery (post-embryonic mouse) - MA:0002575 + posterior tibial artery (post-embryonic mouse) @@ -48696,8 +45936,7 @@ - bundle of His (post-embryonic mouse) - MA:0002576 + bundle of His (post-embryonic mouse) @@ -48716,8 +45955,7 @@ - pre-Botzinger complex (post-embryonic mouse) - MA:0002577 + pre-Botzinger complex (post-embryonic mouse) @@ -48736,8 +45974,7 @@ - kidney arterial blood vessel (post-embryonic mouse) - MA:0002578 + kidney arterial blood vessel (post-embryonic mouse) @@ -48756,8 +45993,7 @@ - renal afferent arteriole (post-embryonic mouse) - MA:0002579 + renal afferent arteriole (post-embryonic mouse) @@ -48776,8 +46012,7 @@ - part of afferent arteriole forming the juxtaglomerular complex (post-embryonic mouse) - MA:0002580 + part of afferent arteriole forming the juxtaglomerular complex (post-embryonic mouse) @@ -48796,8 +46031,7 @@ - renal cortex artery (post-embryonic mouse) - MA:0002582 + renal cortex artery (post-embryonic mouse) @@ -48816,8 +46050,7 @@ - kidney arcuate artery (post-embryonic mouse) - MA:0002583 + kidney arcuate artery (post-embryonic mouse) @@ -48836,8 +46069,7 @@ - interlobular artery (post-embryonic mouse) - MA:0002584 + interlobular artery (post-embryonic mouse) @@ -48856,8 +46088,7 @@ - renal efferent arteriole (post-embryonic mouse) - MA:0002585 + renal efferent arteriole (post-embryonic mouse) @@ -48876,8 +46107,7 @@ - kidney capillary (post-embryonic mouse) - MA:0002586 + kidney capillary (post-embryonic mouse) @@ -48896,8 +46126,7 @@ - glomerular capillary (post-embryonic mouse) - MA:0002587 + glomerular capillary (post-embryonic mouse) @@ -48916,8 +46145,7 @@ - peritubular capillary (post-embryonic mouse) - MA:0002588 + peritubular capillary (post-embryonic mouse) @@ -48936,8 +46164,7 @@ - outer renal medulla peritubular capillary (post-embryonic mouse) - MA:0002589 + outer renal medulla peritubular capillary (post-embryonic mouse) @@ -48956,8 +46183,7 @@ - renal cortex peritubular capillary (post-embryonic mouse) - MA:0002590 + renal cortex peritubular capillary (post-embryonic mouse) @@ -48976,8 +46202,7 @@ - renal venous blood vessel (post-embryonic mouse) - MA:0002591 + renal venous blood vessel (post-embryonic mouse) @@ -48996,8 +46221,7 @@ - renal cortex vein (post-embryonic mouse) - MA:0002592 + renal cortex vein (post-embryonic mouse) @@ -49016,8 +46240,7 @@ - kidney arcuate vein (post-embryonic mouse) - MA:0002593 + kidney arcuate vein (post-embryonic mouse) @@ -49036,8 +46259,7 @@ - renal interlobular vein (post-embryonic mouse) - MA:0002594 + renal interlobular vein (post-embryonic mouse) @@ -49056,8 +46278,7 @@ - vasa recta (post-embryonic mouse) - MA:0002595 + vasa recta (post-embryonic mouse) @@ -49076,8 +46297,7 @@ - inner renal medulla vasa recta (post-embryonic mouse) - MA:0002596 + inner renal medulla vasa recta (post-embryonic mouse) @@ -49096,8 +46316,7 @@ - outer renal medulla vasa recta (post-embryonic mouse) - MA:0002597 + outer renal medulla vasa recta (post-embryonic mouse) @@ -49116,8 +46335,7 @@ - inner medullary collecting duct (post-embryonic mouse) - MA:0002598 + inner medullary collecting duct (post-embryonic mouse) @@ -49136,8 +46354,7 @@ - outer medullary collecting duct (post-embryonic mouse) - MA:0002599 + outer medullary collecting duct (post-embryonic mouse) @@ -49156,8 +46373,7 @@ - cortical collecting duct (post-embryonic mouse) - MA:0002600 + cortical collecting duct (post-embryonic mouse) @@ -49176,8 +46392,7 @@ - ureteric bud tip (post-embryonic mouse) - MA:0002601 + ureteric bud tip (post-embryonic mouse) @@ -49196,8 +46411,7 @@ - extraglomerular mesangium (post-embryonic mouse) - MA:0002602 + extraglomerular mesangium (post-embryonic mouse) @@ -49216,8 +46430,7 @@ - macula densa (post-embryonic mouse) - MA:0002603 + macula densa (post-embryonic mouse) @@ -49236,8 +46449,7 @@ - distal straight tubule macula densa (post-embryonic mouse) - MA:0002604 + distal straight tubule macula densa (post-embryonic mouse) @@ -49256,8 +46468,7 @@ - glomerular parietal epithelium (post-embryonic mouse) - MA:0002605 + glomerular parietal epithelium (post-embryonic mouse) @@ -49276,8 +46487,7 @@ - glomerular mesangium (post-embryonic mouse) - MA:0002606 + glomerular mesangium (post-embryonic mouse) @@ -49296,8 +46506,7 @@ - glomerular visceral epithelium (post-embryonic mouse) - MA:0002607 + glomerular visceral epithelium (post-embryonic mouse) @@ -49316,8 +46525,7 @@ - renal cortex interstitium (post-embryonic mouse) - MA:0002608 + renal cortex interstitium (post-embryonic mouse) @@ -49336,8 +46544,7 @@ - renal cortex tubule (post-embryonic mouse) - MA:0002609 + renal cortex tubule (post-embryonic mouse) @@ -49356,8 +46563,7 @@ - renal connecting tubule (post-embryonic mouse) - MA:0002610 + renal connecting tubule (post-embryonic mouse) @@ -49376,8 +46582,7 @@ - proximal tubule (post-embryonic mouse) - MA:0002611 + proximal tubule (post-embryonic mouse) @@ -49396,8 +46601,7 @@ - proximal convoluted tubule segment 1 (post-embryonic mouse) - MA:0002612 + proximal convoluted tubule segment 1 (post-embryonic mouse) @@ -49416,8 +46620,7 @@ - proximal convoluted tubule segment 2 (post-embryonic mouse) - MA:0002613 + proximal convoluted tubule segment 2 (post-embryonic mouse) @@ -49436,8 +46639,7 @@ - proximal straight tubule (post-embryonic mouse) - MA:0002614 + proximal straight tubule (post-embryonic mouse) @@ -49456,8 +46658,7 @@ - distal straight tubule postmacula segment (post-embryonic mouse) - MA:0002615 + distal straight tubule postmacula segment (post-embryonic mouse) @@ -49476,8 +46677,7 @@ - kidney interstitium (post-embryonic mouse) - MA:0002616 + kidney interstitium (post-embryonic mouse) @@ -49496,8 +46696,7 @@ - mesangium (post-embryonic mouse) - MA:0002617 + mesangium (post-embryonic mouse) @@ -49516,8 +46715,7 @@ - perihilar interstitium (post-embryonic mouse) - MA:0002618 + perihilar interstitium (post-embryonic mouse) @@ -49536,8 +46734,7 @@ - renal medulla interstitium (post-embryonic mouse) - MA:0002619 + renal medulla interstitium (post-embryonic mouse) @@ -49556,8 +46753,7 @@ - inner renal medulla interstitium (post-embryonic mouse) - MA:0002620 + inner renal medulla interstitium (post-embryonic mouse) @@ -49576,8 +46772,7 @@ - outer renal medulla interstitium (post-embryonic mouse) - MA:0002621 + outer renal medulla interstitium (post-embryonic mouse) @@ -49596,8 +46791,7 @@ - inner renal medulla loop of Henle (post-embryonic mouse) - MA:0002623 + inner renal medulla loop of Henle (post-embryonic mouse) @@ -49616,8 +46810,7 @@ - descending thin limb (post-embryonic mouse) - MA:0002625 + descending thin limb (post-embryonic mouse) @@ -49636,8 +46829,7 @@ - kidney outer medulla inner stripe (post-embryonic mouse) - MA:0002626 + kidney outer medulla inner stripe (post-embryonic mouse) @@ -49656,8 +46848,7 @@ - outer medulla inner stripe loop of Henle (post-embryonic mouse) - MA:0002627 + outer medulla inner stripe loop of Henle (post-embryonic mouse) @@ -49676,8 +46867,7 @@ - premacula segment of distal straight tubule (post-embryonic mouse) - MA:0002628 + premacula segment of distal straight tubule (post-embryonic mouse) @@ -49696,8 +46886,7 @@ - kidney outer medulla outer stripe (post-embryonic mouse) - MA:0002629 + kidney outer medulla outer stripe (post-embryonic mouse) @@ -49716,8 +46905,7 @@ - outer medulla outer stripe loop of Henle (post-embryonic mouse) - MA:0002630 + outer medulla outer stripe loop of Henle (post-embryonic mouse) @@ -49736,8 +46924,7 @@ - kidney pelvis smooth muscle (post-embryonic mouse) - MA:0002631 + kidney pelvis smooth muscle (post-embryonic mouse) @@ -49756,8 +46943,7 @@ - kidney pelvis urothelium (post-embryonic mouse) - MA:0002632 + kidney pelvis urothelium (post-embryonic mouse) @@ -49776,8 +46962,7 @@ - distal tubule (post-embryonic mouse) - MA:0002633 + distal tubule (post-embryonic mouse) @@ -49796,8 +46981,7 @@ - renal straight tubule (post-embryonic mouse) - MA:0002634 + renal straight tubule (post-embryonic mouse) @@ -49816,8 +47000,7 @@ - least splanchnic nerve (post-embryonic mouse) - MA:0002635 + least splanchnic nerve (post-embryonic mouse) @@ -49836,8 +47019,7 @@ - lower urinary tract (post-embryonic mouse) - MA:0002636 + lower urinary tract (post-embryonic mouse) @@ -49856,8 +47038,7 @@ - female urethra (post-embryonic mouse) - MA:0002637 + female urethra (post-embryonic mouse) @@ -49876,8 +47057,7 @@ - female membranous urethra (post-embryonic mouse) - MA:0002638 + female membranous urethra (post-embryonic mouse) @@ -49896,8 +47076,7 @@ - female urethral meatus (post-embryonic mouse) - MA:0002639 + female urethral meatus (post-embryonic mouse) @@ -49916,8 +47095,7 @@ - male urethra (post-embryonic mouse) - MA:0002640 + male urethra (post-embryonic mouse) @@ -49936,8 +47114,7 @@ - male membranous urethra (post-embryonic mouse) - MA:0002641 + male membranous urethra (post-embryonic mouse) @@ -49956,8 +47133,7 @@ - male urethral meatus (post-embryonic mouse) - MA:0002642 + male urethral meatus (post-embryonic mouse) @@ -49976,8 +47152,7 @@ - spongiose part of urethra (post-embryonic mouse) - MA:0002644 + spongiose part of urethra (post-embryonic mouse) @@ -49996,8 +47171,7 @@ - prostatic urethra (post-embryonic mouse) - MA:0002646 + prostatic urethra (post-embryonic mouse) @@ -50016,8 +47190,7 @@ - membranous urethra of male or female (post-embryonic mouse) - MA:0002647 + membranous urethra of male or female (post-embryonic mouse) @@ -50036,8 +47209,7 @@ - urethra mesenchymal layer (post-embryonic mouse) - MA:0002648 + urethra mesenchymal layer (post-embryonic mouse) @@ -50056,8 +47228,7 @@ - urethra muscle tissue (post-embryonic mouse) - MA:0002649 + urethra muscle tissue (post-embryonic mouse) @@ -50076,8 +47247,7 @@ - urethral sphincter (post-embryonic mouse) - MA:0002650 + urethral sphincter (post-embryonic mouse) @@ -50096,8 +47266,7 @@ - adventitia of ureter (post-embryonic mouse) - MA:0002652 + adventitia of ureter (post-embryonic mouse) @@ -50116,8 +47285,7 @@ - lamina propria of ureter (post-embryonic mouse) - MA:0002653 + lamina propria of ureter (post-embryonic mouse) @@ -50136,8 +47304,7 @@ - muscular coat of ureter (post-embryonic mouse) - MA:0002654 + muscular coat of ureter (post-embryonic mouse) @@ -50156,8 +47323,7 @@ - urothelium of ureter (post-embryonic mouse) - MA:0002655 + urothelium of ureter (post-embryonic mouse) @@ -50176,8 +47342,7 @@ - ureter luminal urothelium (post-embryonic mouse) - MA:0002656 + ureter luminal urothelium (post-embryonic mouse) @@ -50196,8 +47361,7 @@ - ureter subluminal urothelium (post-embryonic mouse) - MA:0002657 + ureter subluminal urothelium (post-embryonic mouse) @@ -50216,8 +47380,7 @@ - ureteral valve (post-embryonic mouse) - MA:0002658 + ureteral valve (post-embryonic mouse) @@ -50236,8 +47399,7 @@ - extrahepatic bile duct (post-embryonic mouse) - MA:0002659 + extrahepatic bile duct (post-embryonic mouse) @@ -50256,8 +47418,7 @@ - common hepatic duct (post-embryonic mouse) - MA:0002660 + common hepatic duct (post-embryonic mouse) @@ -50276,8 +47437,7 @@ - extrahepatic bile duct epithelium (post-embryonic mouse) - MA:0002661 + extrahepatic bile duct epithelium (post-embryonic mouse) @@ -50296,8 +47456,7 @@ - intrahepatic bile duct epithelium (post-embryonic mouse) - MA:0002662 + intrahepatic bile duct epithelium (post-embryonic mouse) @@ -50316,8 +47475,7 @@ - hilar portion of hepatic duct (post-embryonic mouse) - MA:0002665 + hilar portion of hepatic duct (post-embryonic mouse) @@ -50336,8 +47494,7 @@ - interlobular bile duct (post-embryonic mouse) - MA:0002668 + interlobular bile duct (post-embryonic mouse) @@ -50356,8 +47513,7 @@ - intralobular bile duct (post-embryonic mouse) - MA:0002669 + intralobular bile duct (post-embryonic mouse) @@ -50376,8 +47532,7 @@ - hilum of spleen (post-embryonic mouse) - MA:0002670 + hilum of spleen (post-embryonic mouse) @@ -50396,8 +47551,7 @@ - splenic cord (post-embryonic mouse) - MA:0002671 + splenic cord (post-embryonic mouse) @@ -50416,8 +47570,7 @@ - spleen lymphoid follicle (post-embryonic mouse) - MA:0002672 + spleen lymphoid follicle (post-embryonic mouse) @@ -50436,8 +47589,7 @@ - thymus lymphoid tissue (post-embryonic mouse) - MA:0002673 + thymus lymphoid tissue (post-embryonic mouse) @@ -50456,8 +47608,7 @@ - thymus trabecula (post-embryonic mouse) - MA:0002674 + thymus trabecula (post-embryonic mouse) @@ -50476,8 +47627,7 @@ - capsule of thyroid gland (post-embryonic mouse) - MA:0002675 + capsule of thyroid gland (post-embryonic mouse) @@ -50496,8 +47646,7 @@ - capsule of parathyroid gland (post-embryonic mouse) - MA:0002676 + capsule of parathyroid gland (post-embryonic mouse) @@ -50516,8 +47665,7 @@ - parenchyma of parathyroid gland (post-embryonic mouse) - MA:0002677 + parenchyma of parathyroid gland (post-embryonic mouse) @@ -50536,8 +47684,7 @@ - filiform papilla (post-embryonic mouse) - MA:0002678 + filiform papilla (post-embryonic mouse) @@ -50556,8 +47703,7 @@ - foliate papilla (post-embryonic mouse) - MA:0002679 + foliate papilla (post-embryonic mouse) @@ -50576,8 +47722,7 @@ - esophagus mucosa (post-embryonic mouse) - MA:0002680 + esophagus mucosa (post-embryonic mouse) @@ -50596,8 +47741,7 @@ - esophagus muscularis mucosa (post-embryonic mouse) - MA:0002681 + esophagus muscularis mucosa (post-embryonic mouse) @@ -50616,8 +47760,7 @@ - esophagus muscle (post-embryonic mouse) - MA:0002682 + esophagus muscle (post-embryonic mouse) @@ -50636,8 +47779,7 @@ - mucosa of stomach (post-embryonic mouse) - MA:0002683 + mucosa of stomach (post-embryonic mouse) @@ -50656,8 +47798,7 @@ - muscularis mucosae of stomach (post-embryonic mouse) - MA:0002684 + muscularis mucosae of stomach (post-embryonic mouse) @@ -50676,8 +47817,7 @@ - submucosa of stomach (post-embryonic mouse) - MA:0002685 + submucosa of stomach (post-embryonic mouse) @@ -50696,8 +47836,7 @@ - mucosa of small intestine (post-embryonic mouse) - MA:0002686 + mucosa of small intestine (post-embryonic mouse) @@ -50716,8 +47855,7 @@ - muscularis mucosae of small intestine (post-embryonic mouse) - MA:0002687 + muscularis mucosae of small intestine (post-embryonic mouse) @@ -50736,8 +47874,7 @@ - mucosa of large intestine (post-embryonic mouse) - MA:0002688 + mucosa of large intestine (post-embryonic mouse) @@ -50756,8 +47893,7 @@ - muscularis mucosae of large intestine (post-embryonic mouse) - MA:0002689 + muscularis mucosae of large intestine (post-embryonic mouse) @@ -50776,8 +47912,7 @@ - submucosa of large intestine (post-embryonic mouse) - MA:0002690 + submucosa of large intestine (post-embryonic mouse) @@ -50796,8 +47931,7 @@ - wall of esophagus (post-embryonic mouse) - MA:0002691 + wall of esophagus (post-embryonic mouse) @@ -50816,8 +47950,7 @@ - wall of stomach (post-embryonic mouse) - MA:0002692 + wall of stomach (post-embryonic mouse) @@ -50836,8 +47969,7 @@ - wall of intestine (post-embryonic mouse) - MA:0002693 + wall of intestine (post-embryonic mouse) @@ -50856,8 +47988,7 @@ - muscularis mucosae of intestine (post-embryonic mouse) - MA:0002694 + muscularis mucosae of intestine (post-embryonic mouse) @@ -50876,8 +48007,7 @@ - wall of large intestine (post-embryonic mouse) - MA:0002695 + wall of large intestine (post-embryonic mouse) @@ -50896,8 +48026,7 @@ - wall of small intestine (post-embryonic mouse) - MA:0002696 + wall of small intestine (post-embryonic mouse) @@ -50916,8 +48045,7 @@ - parotid main excretory duct (post-embryonic mouse) - MA:0002697 + parotid main excretory duct (post-embryonic mouse) @@ -50936,8 +48064,7 @@ - submandibular duct (post-embryonic mouse) - MA:0002698 + submandibular duct (post-embryonic mouse) @@ -50956,8 +48083,7 @@ - sublingual duct (post-embryonic mouse) - MA:0002699 + sublingual duct (post-embryonic mouse) @@ -50976,8 +48102,7 @@ - anterior buccal gland (post-embryonic mouse) - MA:0002700 + anterior buccal gland (post-embryonic mouse) @@ -50996,8 +48121,7 @@ - anterior lingual gland (post-embryonic mouse) - MA:0002701 + anterior lingual gland (post-embryonic mouse) @@ -51016,8 +48140,7 @@ - eyelash (post-embryonic mouse) - MA:0002702 + eyelash (post-embryonic mouse) @@ -51036,8 +48159,7 @@ - nail (post-embryonic mouse) - MA:0002703 + nail (post-embryonic mouse) @@ -51056,8 +48178,7 @@ - eponychium (post-embryonic mouse) - MA:0002704 + eponychium (post-embryonic mouse) @@ -51076,8 +48197,7 @@ - hyponychium (post-embryonic mouse) - MA:0002705 + hyponychium (post-embryonic mouse) @@ -51096,8 +48216,7 @@ - nail bed (post-embryonic mouse) - MA:0002706 + nail bed (post-embryonic mouse) @@ -51116,8 +48235,7 @@ - nail matrix (post-embryonic mouse) - MA:0002707 + nail matrix (post-embryonic mouse) @@ -51136,8 +48254,7 @@ - nail plate (post-embryonic mouse) - MA:0002708 + nail plate (post-embryonic mouse) @@ -51156,8 +48273,7 @@ - proximal nail bed (post-embryonic mouse) - MA:0002709 + proximal nail bed (post-embryonic mouse) @@ -51176,8 +48292,7 @@ - skin muscle (post-embryonic mouse) - MA:0002710 + skin muscle (post-embryonic mouse) @@ -51196,8 +48311,7 @@ - immune system (post-embryonic mouse) - MA:0002711 + immune system (post-embryonic mouse) @@ -51216,8 +48330,7 @@ - barrel cortex (post-embryonic mouse) - MA:0002712 + barrel cortex (post-embryonic mouse) @@ -51236,8 +48349,7 @@ - Leydig cell region of testis (post-embryonic mouse) - MA:0002713 + Leydig cell region of testis (post-embryonic mouse) @@ -51256,8 +48368,7 @@ - autopod region (post-embryonic mouse) - MA:0002714 + autopod region (post-embryonic mouse) @@ -51276,8 +48387,7 @@ - autopod joint (post-embryonic mouse) - MA:0002715 + autopod joint (post-embryonic mouse) @@ -51296,8 +48406,7 @@ - zeugopod (post-embryonic mouse) - MA:0002716 + zeugopod (post-embryonic mouse) @@ -51316,8 +48425,7 @@ - stylopod (post-embryonic mouse) - MA:0002717 + stylopod (post-embryonic mouse) @@ -51336,8 +48444,7 @@ - vascular system (post-embryonic mouse) - MA:0002718 + vascular system (post-embryonic mouse) @@ -51356,8 +48463,7 @@ - arterial system (post-embryonic mouse) - MA:0002719 + arterial system (post-embryonic mouse) @@ -51376,8 +48482,7 @@ - venous system (post-embryonic mouse) - MA:0002720 + venous system (post-embryonic mouse) @@ -51396,8 +48501,7 @@ - intercerebral commissure (post-embryonic mouse) - MA:0002721 + intercerebral commissure (post-embryonic mouse) @@ -51416,8 +48520,7 @@ - anterior commissure (post-embryonic mouse) - MA:0002722 + anterior commissure (post-embryonic mouse) @@ -51436,8 +48539,7 @@ - hippocampal commissure (post-embryonic mouse) - MA:0002723 + hippocampal commissure (post-embryonic mouse) @@ -51456,8 +48558,7 @@ - submucosa of esophagus (post-embryonic mouse) - MA:0002724 + submucosa of esophagus (post-embryonic mouse) @@ -51476,8 +48577,7 @@ - pharyngeal epithelium (post-embryonic mouse) - MA:0002725 + pharyngeal epithelium (post-embryonic mouse) @@ -51496,8 +48596,7 @@ - glans penis (post-embryonic mouse) - MA:0002726 + glans penis (post-embryonic mouse) @@ -51516,8 +48615,7 @@ - skin of penis (post-embryonic mouse) - MA:0002727 + skin of penis (post-embryonic mouse) @@ -51536,8 +48634,7 @@ - larynx submucosa (post-embryonic mouse) - MA:0002728 + larynx submucosa (post-embryonic mouse) @@ -51556,8 +48653,7 @@ - larynx submucosa gland (post-embryonic mouse) - MA:0002729 + larynx submucosa gland (post-embryonic mouse) @@ -51576,8 +48672,7 @@ - renal papilla (post-embryonic mouse) - MA:0002730 + renal papilla (post-embryonic mouse) @@ -51596,8 +48691,7 @@ - endometrium epithelium (post-embryonic mouse) - MA:0002731 + endometrium epithelium (post-embryonic mouse) @@ -51616,8 +48710,7 @@ - endometrium glandular epithelium (post-embryonic mouse) - MA:0002732 + endometrium glandular epithelium (post-embryonic mouse) @@ -51636,8 +48729,7 @@ - endometrium luminal epithelium (post-embryonic mouse) - MA:0002733 + endometrium luminal epithelium (post-embryonic mouse) @@ -51656,8 +48748,7 @@ - endometrial stroma (post-embryonic mouse) - MA:0002734 + endometrial stroma (post-embryonic mouse) @@ -51676,8 +48767,7 @@ - lamina propria of vagina (post-embryonic mouse) - MA:0002737 + lamina propria of vagina (post-embryonic mouse) @@ -51696,8 +48786,7 @@ - fibrous pericardium (post-embryonic mouse) - MA:0002738 + fibrous pericardium (post-embryonic mouse) @@ -51716,8 +48805,7 @@ - serous pericardium (post-embryonic mouse) - MA:0002739 + serous pericardium (post-embryonic mouse) @@ -51736,8 +48824,7 @@ - principal sensory nucleus of trigeminal nerve (post-embryonic mouse) - MA:0002740 + principal sensory nucleus of trigeminal nerve (post-embryonic mouse) @@ -51756,8 +48843,7 @@ - brainstem white matter (post-embryonic mouse) - MA:0002741 + brainstem white matter (post-embryonic mouse) @@ -51776,8 +48862,7 @@ - cerebellar peduncle (post-embryonic mouse) - MA:0002742 + cerebellar peduncle (post-embryonic mouse) @@ -51796,8 +48881,7 @@ - posterior commissure (post-embryonic mouse) - MA:0002743 + posterior commissure (post-embryonic mouse) @@ -51816,8 +48900,7 @@ - inferior cerebellar peduncle (post-embryonic mouse) - MA:0002744 + inferior cerebellar peduncle (post-embryonic mouse) @@ -51836,8 +48919,7 @@ - middle cerebellar peduncle (post-embryonic mouse) - MA:0002745 + middle cerebellar peduncle (post-embryonic mouse) @@ -51856,8 +48938,7 @@ - superior cerebellar peduncle (post-embryonic mouse) - MA:0002746 + superior cerebellar peduncle (post-embryonic mouse) @@ -51876,8 +48957,7 @@ - fornix of brain (post-embryonic mouse) - MA:0002747 + fornix of brain (post-embryonic mouse) @@ -51896,8 +48976,7 @@ - internal capsule of telencephalon (post-embryonic mouse) - MA:0002748 + internal capsule of telencephalon (post-embryonic mouse) @@ -51916,8 +48995,7 @@ - spinal cord dorsal column (post-embryonic mouse) - MA:0002749 + spinal cord dorsal column (post-embryonic mouse) @@ -51936,8 +49014,7 @@ - spinal cord lateral column (post-embryonic mouse) - MA:0002750 + spinal cord lateral column (post-embryonic mouse) @@ -51956,8 +49033,7 @@ - spinal cord ventral column (post-embryonic mouse) - MA:0002751 + spinal cord ventral column (post-embryonic mouse) @@ -51976,8 +49052,7 @@ - intermediolateral nucleus (post-embryonic mouse) - MA:0002753 + intermediolateral nucleus (post-embryonic mouse) @@ -51996,8 +49071,7 @@ - neocortex (post-embryonic mouse) - MA:0002754 + neocortex (post-embryonic mouse) @@ -52016,8 +49090,7 @@ - lateral cervical nucleus (post-embryonic mouse) - MA:0002755 + lateral cervical nucleus (post-embryonic mouse) @@ -52036,8 +49109,7 @@ - lateral spinal nucleus (post-embryonic mouse) - MA:0002756 + lateral spinal nucleus (post-embryonic mouse) @@ -52056,8 +49128,7 @@ - periolivary nucleus (post-embryonic mouse) - MA:0002757 + periolivary nucleus (post-embryonic mouse) @@ -52076,8 +49147,7 @@ - levator auris longus muscle (post-embryonic mouse) - MA:0002758 + levator auris longus muscle (post-embryonic mouse) @@ -52096,8 +49166,7 @@ - alveolar smooth muscle (post-embryonic mouse) - MA:0002759 + alveolar smooth muscle (post-embryonic mouse) @@ -52116,8 +49185,7 @@ - mammary gland alveolus (post-embryonic mouse) - MA:0002760 + mammary gland alveolus (post-embryonic mouse) @@ -52136,8 +49204,7 @@ - saphenous nerve (post-embryonic mouse) - MA:0002761 + saphenous nerve (post-embryonic mouse) @@ -52156,8 +49223,7 @@ - caput epididymis (post-embryonic mouse) - MA:0002762 + caput epididymis (post-embryonic mouse) @@ -52176,8 +49242,7 @@ - cauda epididymis (post-embryonic mouse) - MA:0002763 + cauda epididymis (post-embryonic mouse) @@ -52196,8 +49261,7 @@ - corpus epididymis (post-embryonic mouse) - MA:0002764 + corpus epididymis (post-embryonic mouse) @@ -52216,8 +49280,7 @@ - accessory olfactory bulb mitral cell layer (post-embryonic mouse) - MA:0002766 + accessory olfactory bulb mitral cell layer (post-embryonic mouse) @@ -52236,8 +49299,7 @@ - lateral globus pallidus (post-embryonic mouse) - MA:0002767 + lateral globus pallidus (post-embryonic mouse) @@ -52256,8 +49318,7 @@ - medial globus pallidus (post-embryonic mouse) - MA:0002768 + medial globus pallidus (post-embryonic mouse) @@ -52276,8 +49337,7 @@ - brain blood vessel (post-embryonic mouse) - MA:0002769 + brain blood vessel (post-embryonic mouse) @@ -52296,8 +49356,7 @@ - semicircular canal ampulla (post-embryonic mouse) - MA:0002770 + semicircular canal ampulla (post-embryonic mouse) @@ -52316,8 +49375,7 @@ - crista ampullaris (post-embryonic mouse) - MA:0002771 + crista ampullaris (post-embryonic mouse) @@ -52336,8 +49394,7 @@ - alisphenoid bone (post-embryonic mouse) - MA:0002772 + alisphenoid bone (post-embryonic mouse) @@ -52356,8 +49413,7 @@ - orbitosphenoid (post-embryonic mouse) - MA:0002773 + orbitosphenoid (post-embryonic mouse) @@ -52376,8 +49432,7 @@ - sphenoid bone pterygoid process (post-embryonic mouse) - MA:0002774 + sphenoid bone pterygoid process (post-embryonic mouse) @@ -52396,8 +49451,7 @@ - dorsal lateral geniculate nucleus (post-embryonic mouse) - MA:0002775 + dorsal lateral geniculate nucleus (post-embryonic mouse) @@ -52416,8 +49470,7 @@ - ventral lateral geniculate nucleus (post-embryonic mouse) - MA:0002776 + ventral lateral geniculate nucleus (post-embryonic mouse) @@ -52436,8 +49489,7 @@ - iris stroma (post-embryonic mouse) - MA:0002777 + iris stroma (post-embryonic mouse) @@ -52456,8 +49508,7 @@ - superior part of vestibular ganglion (post-embryonic mouse) - MA:0002778 + superior part of vestibular ganglion (post-embryonic mouse) @@ -52476,8 +49527,7 @@ - inferior part of vestibular ganglion (post-embryonic mouse) - MA:0002779 + inferior part of vestibular ganglion (post-embryonic mouse) @@ -52496,8 +49546,7 @@ - bone tissue (post-embryonic mouse) - MA:0002780 + bone tissue (post-embryonic mouse) @@ -52516,8 +49565,7 @@ - lamellar bone (post-embryonic mouse) - MA:0002781 + lamellar bone (post-embryonic mouse) @@ -52536,8 +49584,7 @@ - trabecular bone tissue (post-embryonic mouse) - MA:0002782 + trabecular bone tissue (post-embryonic mouse) @@ -52556,8 +49603,7 @@ - bone marrow cavity (post-embryonic mouse) - MA:0002783 + bone marrow cavity (post-embryonic mouse) @@ -52576,8 +49622,7 @@ - stomach glandular epithelium (post-embryonic mouse) - MA:0002784 + stomach glandular epithelium (post-embryonic mouse) @@ -52596,8 +49641,7 @@ - prostate duct (post-embryonic mouse) - MA:0002785 + prostate duct (post-embryonic mouse) @@ -52616,8 +49660,7 @@ - tongue squamous epithelium (post-embryonic mouse) - MA:0002786 + tongue squamous epithelium (post-embryonic mouse) @@ -52636,8 +49679,7 @@ - tongue keratinized epithelium (post-embryonic mouse) - MA:0002787 + tongue keratinized epithelium (post-embryonic mouse) @@ -52656,8 +49698,7 @@ - glottis (post-embryonic mouse) - MA:0002788 + glottis (post-embryonic mouse) @@ -52676,8 +49717,7 @@ - atrioventricular valve (post-embryonic mouse) - MA:0002789 + atrioventricular valve (post-embryonic mouse) @@ -52696,8 +49736,7 @@ - semi-lunar valve (post-embryonic mouse) - MA:0002790 + semi-lunar valve (post-embryonic mouse) @@ -52716,8 +49755,7 @@ - heart ventricle wall (post-embryonic mouse) - MA:0002791 + heart ventricle wall (post-embryonic mouse) @@ -52736,8 +49774,7 @@ - tooth cavity (post-embryonic mouse) - MA:0002792 + tooth cavity (post-embryonic mouse) @@ -52756,8 +49793,7 @@ - helix of outer ear (post-embryonic mouse) - MA:0002793 + helix of outer ear (post-embryonic mouse) @@ -52776,8 +49812,7 @@ - mouth mucosa (post-embryonic mouse) - MA:0002794 + mouth mucosa (post-embryonic mouse) @@ -52796,8 +49831,7 @@ - coronal suture (post-embryonic mouse) - MA:0002795 + coronal suture (post-embryonic mouse) @@ -52816,8 +49850,7 @@ - frontal suture (post-embryonic mouse) - MA:0002796 + frontal suture (post-embryonic mouse) @@ -52836,8 +49869,7 @@ - lambdoid suture (post-embryonic mouse) - MA:0002797 + lambdoid suture (post-embryonic mouse) @@ -52856,8 +49888,7 @@ - sagittal suture (post-embryonic mouse) - MA:0002798 + sagittal suture (post-embryonic mouse) @@ -52876,8 +49907,7 @@ - uterine artery (post-embryonic mouse) - MA:0002799 + uterine artery (post-embryonic mouse) @@ -52896,8 +49926,7 @@ - papillary muscle of heart (post-embryonic mouse) - MA:0002800 + papillary muscle of heart (post-embryonic mouse) @@ -52916,8 +49945,7 @@ - thoracic duct (post-embryonic mouse) - MA:0002801 + thoracic duct (post-embryonic mouse) @@ -52936,8 +49964,7 @@ - long bone (post-embryonic mouse) - MA:0002802 + long bone (post-embryonic mouse) @@ -52956,8 +49983,7 @@ - diaphysis proper (post-embryonic mouse) - MA:0002803 + diaphysis proper (post-embryonic mouse) @@ -52976,8 +50002,7 @@ - stapes base (post-embryonic mouse) - MA:0002804 + stapes base (post-embryonic mouse) @@ -52996,8 +50021,7 @@ - acromion (post-embryonic mouse) - MA:0002805 + acromion (post-embryonic mouse) @@ -53016,8 +50040,7 @@ - scapula spine (post-embryonic mouse) - MA:0002806 + scapula spine (post-embryonic mouse) @@ -53036,8 +50059,7 @@ - humerus diaphysis (post-embryonic mouse) - MA:0002807 + humerus diaphysis (post-embryonic mouse) @@ -53056,8 +50078,7 @@ - deltopectoral crest (post-embryonic mouse) - MA:0002808 + deltopectoral crest (post-embryonic mouse) @@ -53076,8 +50097,7 @@ - cochlear labyrinth (post-embryonic mouse) - MA:0002809 + cochlear labyrinth (post-embryonic mouse) @@ -53096,8 +50116,7 @@ - zygomatic arch (post-embryonic mouse) - MA:0002810 + zygomatic arch (post-embryonic mouse) @@ -53116,8 +50135,7 @@ - zygomatic process of temporal bone (post-embryonic mouse) - MA:0002811 + zygomatic process of temporal bone (post-embryonic mouse) @@ -53136,8 +50154,7 @@ - temporal process of zygomatic bone (post-embryonic mouse) - MA:0002812 + temporal process of zygomatic bone (post-embryonic mouse) @@ -53156,8 +50173,7 @@ - oval window (post-embryonic mouse) - MA:0002813 + oval window (post-embryonic mouse) @@ -53176,8 +50192,7 @@ - round window of inner ear (post-embryonic mouse) - MA:0002814 + round window of inner ear (post-embryonic mouse) @@ -53196,8 +50211,7 @@ - mandibular ramus (post-embryonic mouse) - MA:0002815 + mandibular ramus (post-embryonic mouse) @@ -53216,8 +50230,7 @@ - mandible condylar process (post-embryonic mouse) - MA:0002816 + mandible condylar process (post-embryonic mouse) @@ -53236,8 +50249,7 @@ - mandible head (post-embryonic mouse) - MA:0002817 + mandible head (post-embryonic mouse) @@ -53256,8 +50268,7 @@ - mandible neck (post-embryonic mouse) - MA:0002818 + mandible neck (post-embryonic mouse) @@ -53276,8 +50287,7 @@ - mandible coronoid process (post-embryonic mouse) - MA:0002819 + mandible coronoid process (post-embryonic mouse) @@ -53296,8 +50306,7 @@ - mandible temporal crest (post-embryonic mouse) - MA:0002820 + mandible temporal crest (post-embryonic mouse) @@ -53316,8 +50325,7 @@ - trochanter (post-embryonic mouse) - MA:0002821 + trochanter (post-embryonic mouse) @@ -53336,8 +50344,7 @@ - greater trochanter (post-embryonic mouse) - MA:0002822 + greater trochanter (post-embryonic mouse) @@ -53356,8 +50363,7 @@ - lesser trochanter (post-embryonic mouse) - MA:0002823 + lesser trochanter (post-embryonic mouse) @@ -53376,8 +50382,7 @@ - spiral modiolar artery (post-embryonic mouse) - MA:0002824 + spiral modiolar artery (post-embryonic mouse) @@ -53396,8 +50401,7 @@ - epididymis epithelium (post-embryonic mouse) - MA:0002825 + epididymis epithelium (post-embryonic mouse) @@ -53416,8 +50420,7 @@ - iris epithelium (post-embryonic mouse) - MA:0002826 + iris epithelium (post-embryonic mouse) @@ -53436,8 +50439,7 @@ - abdominal lymph node (post-embryonic mouse) - MA:0002827 + abdominal lymph node (post-embryonic mouse) @@ -53456,8 +50458,7 @@ - celiac lymph node (post-embryonic mouse) - MA:0002828 + celiac lymph node (post-embryonic mouse) @@ -53476,8 +50477,7 @@ - mesenteric lymph node (post-embryonic mouse) - MA:0002829 + mesenteric lymph node (post-embryonic mouse) @@ -53496,8 +50496,7 @@ - anterior fontanel (post-embryonic mouse) - MA:0002830 + anterior fontanel (post-embryonic mouse) @@ -53516,8 +50515,7 @@ - trabecula carnea (post-embryonic mouse) - MA:0002831 + trabecula carnea (post-embryonic mouse) @@ -53536,8 +50534,7 @@ - trabecula carnea cardiac muscle tissue (post-embryonic mouse) - MA:0002833 + trabecula carnea cardiac muscle tissue (post-embryonic mouse) @@ -53556,8 +50553,7 @@ - corpus luteum (post-embryonic mouse) - MA:0002834 + corpus luteum (post-embryonic mouse) @@ -53576,8 +50572,7 @@ - sulcus ampullaris (post-embryonic mouse) - MA:0002835 + sulcus ampullaris (post-embryonic mouse) @@ -53596,8 +50591,7 @@ - endochondral bone tissue (post-embryonic mouse) - MA:0002836 + endochondral bone tissue (post-embryonic mouse) @@ -53616,8 +50610,7 @@ - intramembranous bone tissue (post-embryonic mouse) - MA:0002837 + intramembranous bone tissue (post-embryonic mouse) @@ -53636,8 +50629,7 @@ - periosteum (post-embryonic mouse) - MA:0002838 + periosteum (post-embryonic mouse) @@ -53656,8 +50648,7 @@ - epiphyseal plate (post-embryonic mouse) - MA:0002839 + epiphyseal plate (post-embryonic mouse) @@ -53676,8 +50667,7 @@ - basicranium (post-embryonic mouse) - MA:0002840 + basicranium (post-embryonic mouse) @@ -53696,8 +50686,7 @@ - otolith organ (post-embryonic mouse) - MA:0002841 + otolith organ (post-embryonic mouse) @@ -53716,8 +50705,7 @@ - otolithic part of statoconial membrane (post-embryonic mouse) - MA:0002842 + otolithic part of statoconial membrane (post-embryonic mouse) @@ -53736,8 +50724,7 @@ - submandibular lymph node (post-embryonic mouse) - MA:0002843 + submandibular lymph node (post-embryonic mouse) @@ -53756,8 +50743,7 @@ - labium majora (post-embryonic mouse) - MA:0002844 + labium majora (post-embryonic mouse) @@ -53776,8 +50762,7 @@ - labium minora (post-embryonic mouse) - MA:0002845 + labium minora (post-embryonic mouse) @@ -53796,8 +50781,7 @@ - kidney epithelium (post-embryonic mouse) - MA:0002846 + kidney epithelium (post-embryonic mouse) @@ -53816,8 +50800,7 @@ - glomerular epithelium (post-embryonic mouse) - MA:0002847 + glomerular epithelium (post-embryonic mouse) @@ -53836,8 +50819,7 @@ - post-anal tail tip (post-embryonic mouse) - MA:0002848 + post-anal tail tip (post-embryonic mouse) @@ -53856,8 +50838,7 @@ - hypertrophic cartilage zone (post-embryonic mouse) - MA:0002849 + hypertrophic cartilage zone (post-embryonic mouse) @@ -53876,8 +50857,7 @@ - somatic nervous system (post-embryonic mouse) - MA:0002850 + somatic nervous system (post-embryonic mouse) @@ -53896,8 +50876,7 @@ - lymph node B cell domain (post-embryonic mouse) - MA:0002851 + lymph node B cell domain (post-embryonic mouse) @@ -53916,8 +50895,7 @@ - lymph node T cell domain (post-embryonic mouse) - MA:0002852 + lymph node T cell domain (post-embryonic mouse) @@ -53936,8 +50914,7 @@ - elastic tissue (post-embryonic mouse) - MA:0002853 + elastic tissue (post-embryonic mouse) @@ -53956,8 +50933,7 @@ - blood vessel layer (post-embryonic mouse) - MA:0002854 + blood vessel layer (post-embryonic mouse) @@ -53976,8 +50952,7 @@ - tunica media (post-embryonic mouse) - MA:0002855 + tunica media (post-embryonic mouse) @@ -53996,8 +50971,7 @@ - blood vessel elastic tissue (post-embryonic mouse) - MA:0002856 + blood vessel elastic tissue (post-embryonic mouse) @@ -54016,8 +50990,7 @@ - cardiovascular system elastic tissue (post-embryonic mouse) - MA:0002857 + cardiovascular system elastic tissue (post-embryonic mouse) @@ -54036,8 +51009,7 @@ - heart elastic tissue (post-embryonic mouse) - MA:0002858 + heart elastic tissue (post-embryonic mouse) @@ -54056,8 +51028,7 @@ - aorta elastic tissue (post-embryonic mouse) - MA:0002859 + aorta elastic tissue (post-embryonic mouse) @@ -54076,8 +51047,7 @@ - lung elastic tissue (post-embryonic mouse) - MA:0002860 + lung elastic tissue (post-embryonic mouse) @@ -54096,8 +51066,7 @@ - tunica intima (post-embryonic mouse) - MA:0002861 + tunica intima (post-embryonic mouse) @@ -54116,8 +51085,7 @@ - blood vessel external elastic membrane (post-embryonic mouse) - MA:0002862 + blood vessel external elastic membrane (post-embryonic mouse) @@ -54136,8 +51104,7 @@ - blood vessel internal elastic membrane (post-embryonic mouse) - MA:0002863 + blood vessel internal elastic membrane (post-embryonic mouse) @@ -54156,8 +51123,7 @@ - dentate gyrus polymorphic layer (post-embryonic mouse) - MA:0002864 + dentate gyrus polymorphic layer (post-embryonic mouse) @@ -54176,8 +51142,7 @@ - myocardial compact layer (post-embryonic mouse) - MA:0002865 + myocardial compact layer (post-embryonic mouse) @@ -54196,8 +51161,7 @@ - myocardium trabecular layer (post-embryonic mouse) - MA:0002866 + myocardium trabecular layer (post-embryonic mouse) @@ -54216,8 +51180,7 @@ - urethral opening (post-embryonic mouse) - MA:0002867 + urethral opening (post-embryonic mouse) @@ -54236,8 +51199,7 @@ - skeletal muscle connective tissue (post-embryonic mouse) - MA:0002868 + skeletal muscle connective tissue (post-embryonic mouse) @@ -54256,8 +51218,7 @@ - trunk or cervical vertebra (post-embryonic mouse) - MA:0002869 + trunk or cervical vertebra (post-embryonic mouse) @@ -54276,8 +51237,7 @@ - crista ampullaris neuroepithelium (post-embryonic mouse) - MA:0002870 + crista ampullaris neuroepithelium (post-embryonic mouse) @@ -54296,8 +51256,7 @@ - cervical vertebra 1 anterior tubercle (post-embryonic mouse) - MA:0002871 + cervical vertebra 1 anterior tubercle (post-embryonic mouse) @@ -54316,8 +51275,7 @@ - odontoid process of cervical vertebra 2 (post-embryonic mouse) - MA:0002872 + odontoid process of cervical vertebra 2 (post-embryonic mouse) @@ -54336,8 +51294,7 @@ - mandible angular process (post-embryonic mouse) - MA:0002873 + mandible angular process (post-embryonic mouse) @@ -54356,8 +51313,7 @@ - nasal bridge (post-embryonic mouse) - MA:0002874 + nasal bridge (post-embryonic mouse) @@ -54376,8 +51332,7 @@ - periorbital region (post-embryonic mouse) - MA:0002875 + periorbital region (post-embryonic mouse) @@ -54396,8 +51351,7 @@ - vertebra lamina (post-embryonic mouse) - MA:0002876 + vertebra lamina (post-embryonic mouse) @@ -54416,8 +51370,7 @@ - mediastinal lymph node (post-embryonic mouse) - MA:0002877 + mediastinal lymph node (post-embryonic mouse) @@ -54436,8 +51389,7 @@ - brachial lymph node (post-embryonic mouse) - MA:0002878 + brachial lymph node (post-embryonic mouse) @@ -54456,8 +51408,7 @@ - lumbar lymph node (post-embryonic mouse) - MA:0002879 + lumbar lymph node (post-embryonic mouse) @@ -54476,8 +51427,7 @@ - pancreatic lymph node (post-embryonic mouse) - MA:0002881 + pancreatic lymph node (post-embryonic mouse) @@ -54496,8 +51446,7 @@ - renal lymph node (post-embryonic mouse) - MA:0002882 + renal lymph node (post-embryonic mouse) @@ -54516,8 +51465,7 @@ - sacral lymph node (post-embryonic mouse) - MA:0002883 + sacral lymph node (post-embryonic mouse) @@ -54536,8 +51484,7 @@ - sciatic lymph node (post-embryonic mouse) - MA:0002884 + sciatic lymph node (post-embryonic mouse) @@ -54556,8 +51503,7 @@ - deep cervical lymph node (post-embryonic mouse) - MA:0002885 + deep cervical lymph node (post-embryonic mouse) @@ -54576,8 +51522,7 @@ - superficial cervical lymph node (post-embryonic mouse) - MA:0002886 + superficial cervical lymph node (post-embryonic mouse) @@ -54596,8 +51541,7 @@ - musculature of body (post-embryonic mouse) - MA:0002888 + musculature of body (post-embryonic mouse) @@ -54616,8 +51560,7 @@ - limb segment (post-embryonic mouse) - MA:0002889 + limb segment (post-embryonic mouse) @@ -54636,8 +51579,7 @@ - septal organ of Masera (post-embryonic mouse) - MA:0002890 + septal organ of Masera (post-embryonic mouse) @@ -54656,8 +51598,7 @@ - Grueneberg ganglion (post-embryonic mouse) - MA:0002891 + Grueneberg ganglion (post-embryonic mouse) @@ -54676,8 +51617,7 @@ - vestibular epithelium (post-embryonic mouse) - MA:0002892 + vestibular epithelium (post-embryonic mouse) @@ -54696,8 +51636,7 @@ - amniotic fluid (post-embryonic mouse) - MA:0002893 + amniotic fluid (post-embryonic mouse) @@ -54716,8 +51655,7 @@ - ventral posterolateral nucleus (post-embryonic mouse) - MA:0002894 + ventral posterolateral nucleus (post-embryonic mouse) @@ -54736,8 +51674,7 @@ - central gray substance of midbrain (post-embryonic mouse) - MA:0002895 + central gray substance of midbrain (post-embryonic mouse) @@ -54756,8 +51693,7 @@ - external capsule of telencephalon (post-embryonic mouse) - MA:0002896 + external capsule of telencephalon (post-embryonic mouse) @@ -54776,8 +51712,7 @@ - mammary gland connective tissue (post-embryonic mouse) - MA:0002897 + mammary gland connective tissue (post-embryonic mouse) @@ -54796,8 +51731,7 @@ - cribriform plate (post-embryonic mouse) - MA:0002898 + cribriform plate (post-embryonic mouse) @@ -54816,8 +51750,7 @@ - temporomandibular joint (post-embryonic mouse) - MA:0002899 + temporomandibular joint (post-embryonic mouse) @@ -54836,8 +51769,7 @@ - Zymbal's gland (post-embryonic mouse) - MA:0002900 + Zymbal's gland (post-embryonic mouse) @@ -54856,8 +51788,7 @@ - aorta wall (post-embryonic mouse) - MA:0002901 + aorta wall (post-embryonic mouse) @@ -54876,8 +51807,7 @@ - aorta tunica adventitia (post-embryonic mouse) - MA:0002902 + aorta tunica adventitia (post-embryonic mouse) @@ -54896,8 +51826,7 @@ - aorta tunica media (post-embryonic mouse) - MA:0002903 + aorta tunica media (post-embryonic mouse) @@ -54916,8 +51845,7 @@ - aorta tunica intima (post-embryonic mouse) - MA:0002904 + aorta tunica intima (post-embryonic mouse) @@ -54936,8 +51864,7 @@ - decidua basalis (post-embryonic mouse) - MA:0002905 + decidua basalis (post-embryonic mouse) @@ -54956,8 +51883,7 @@ - decidua capsularis (post-embryonic mouse) - MA:0002906 + decidua capsularis (post-embryonic mouse) @@ -54976,8 +51902,7 @@ - primary ovarian follicle (post-embryonic mouse) - MA:0002907 + primary ovarian follicle (post-embryonic mouse) @@ -54996,8 +51921,7 @@ - secondary ovarian follicle (post-embryonic mouse) - MA:0002908 + secondary ovarian follicle (post-embryonic mouse) @@ -55016,8 +51940,7 @@ - tertiary ovarian follicle (post-embryonic mouse) - MA:0002909 + tertiary ovarian follicle (post-embryonic mouse) @@ -55036,8 +51959,7 @@ - vibrissa follicle (post-embryonic mouse) - MA:0002910 + vibrissa follicle (post-embryonic mouse) @@ -55056,8 +51978,7 @@ - mammary gland fat (post-embryonic mouse) - MA:0002911 + mammary gland fat (post-embryonic mouse) @@ -55076,8 +51997,7 @@ - prostate gland stroma (post-embryonic mouse) - MA:0002912 + prostate gland stroma (post-embryonic mouse) @@ -55096,8 +52016,7 @@ - muscular coat of seminal vesicle (post-embryonic mouse) - MA:0002913 + muscular coat of seminal vesicle (post-embryonic mouse) @@ -55116,8 +52035,7 @@ - distal phalanx (post-embryonic mouse) - MA:0002914 + distal phalanx (post-embryonic mouse) @@ -55136,8 +52054,7 @@ - middle phalanx (post-embryonic mouse) - MA:0002915 + middle phalanx (post-embryonic mouse) @@ -55156,8 +52073,7 @@ - proximal phalanx (post-embryonic mouse) - MA:0002916 + proximal phalanx (post-embryonic mouse) @@ -55176,8 +52092,7 @@ - amygdalohippocampal area (post-embryonic mouse) - MA:0002917 + amygdalohippocampal area (post-embryonic mouse) @@ -55196,8 +52111,7 @@ - amygdalopiriform transition area (post-embryonic mouse) - MA:0002918 + amygdalopiriform transition area (post-embryonic mouse) @@ -55216,8 +52130,7 @@ - anterior amygdaloid area (post-embryonic mouse) - MA:0002919 + anterior amygdaloid area (post-embryonic mouse) @@ -55236,8 +52149,7 @@ - anterior cortical amygdaloid nucleus (post-embryonic mouse) - MA:0002920 + anterior cortical amygdaloid nucleus (post-embryonic mouse) @@ -55256,8 +52168,7 @@ - basal amygdaloid nucleus (post-embryonic mouse) - MA:0002921 + basal amygdaloid nucleus (post-embryonic mouse) @@ -55276,8 +52187,7 @@ - medial part of basal amygdaloid nucleus (post-embryonic mouse) - MA:0002922 + medial part of basal amygdaloid nucleus (post-embryonic mouse) @@ -55296,8 +52206,7 @@ - central amygdaloid nucleus (post-embryonic mouse) - MA:0002923 + central amygdaloid nucleus (post-embryonic mouse) @@ -55316,8 +52225,7 @@ - cortical amygdaloid nucleus (post-embryonic mouse) - MA:0002924 + cortical amygdaloid nucleus (post-embryonic mouse) @@ -55336,8 +52244,7 @@ - intercalated amygdaloid nuclei (post-embryonic mouse) - MA:0002925 + intercalated amygdaloid nuclei (post-embryonic mouse) @@ -55356,8 +52263,7 @@ - lateral amygdaloid nucleus (post-embryonic mouse) - MA:0002926 + lateral amygdaloid nucleus (post-embryonic mouse) @@ -55376,8 +52282,7 @@ - medial amygdaloid nucleus (post-embryonic mouse) - MA:0002927 + medial amygdaloid nucleus (post-embryonic mouse) @@ -55396,8 +52301,7 @@ - posterior amygdaloid nucleus (post-embryonic mouse) - MA:0002928 + posterior amygdaloid nucleus (post-embryonic mouse) @@ -55416,8 +52320,7 @@ - posterolateral cortical amygdaloid nucleus (post-embryonic mouse) - MA:0002929 + posterolateral cortical amygdaloid nucleus (post-embryonic mouse) @@ -55436,8 +52339,7 @@ - posteromedial cortical amygdaloid nucleus (post-embryonic mouse) - MA:0002930 + posteromedial cortical amygdaloid nucleus (post-embryonic mouse) @@ -55456,8 +52358,7 @@ - mesometrium (post-embryonic mouse) - MA:0002931 + mesometrium (post-embryonic mouse) @@ -55476,8 +52377,7 @@ - accessory olfactory bulb external plexiform layer (post-embryonic mouse) - MA:0002932 + accessory olfactory bulb external plexiform layer (post-embryonic mouse) @@ -55496,8 +52396,7 @@ - accessory olfactory bulb granule cell layer (post-embryonic mouse) - MA:0002933 + accessory olfactory bulb granule cell layer (post-embryonic mouse) @@ -55516,8 +52415,7 @@ - accessory olfactory bulb internal plexiform layer (post-embryonic mouse) - MA:0002934 + accessory olfactory bulb internal plexiform layer (post-embryonic mouse) @@ -55536,8 +52434,7 @@ - renal medulla collecting duct (post-embryonic mouse) - MA:0002935 + renal medulla collecting duct (post-embryonic mouse) @@ -55556,8 +52453,7 @@ - major vestibular gland (post-embryonic mouse) - MA:0002936 + major vestibular gland (post-embryonic mouse) @@ -55576,8 +52472,7 @@ - trachea gland (post-embryonic mouse) - MA:0002937 + trachea gland (post-embryonic mouse) @@ -55596,8 +52491,7 @@ - anterior lingual gland duct (post-embryonic mouse) - MA:0002938 + anterior lingual gland duct (post-embryonic mouse) @@ -55616,8 +52510,7 @@ - interventricular septum membranous part (post-embryonic mouse) - MA:0002939 + interventricular septum membranous part (post-embryonic mouse) @@ -55636,8 +52529,7 @@ - interventricular septum muscular part (post-embryonic mouse) - MA:0002940 + interventricular septum muscular part (post-embryonic mouse) @@ -55656,8 +52548,7 @@ - subcommissural organ (post-embryonic mouse) - MA:0002941 + subcommissural organ (post-embryonic mouse) @@ -55676,8 +52567,7 @@ - circumventricular organ (post-embryonic mouse) - MA:0002942 + circumventricular organ (post-embryonic mouse) @@ -55696,8 +52586,7 @@ - secretory circumventricular organ (post-embryonic mouse) - MA:0002943 + secretory circumventricular organ (post-embryonic mouse) @@ -55716,8 +52605,7 @@ - sensory circumventricular organ (post-embryonic mouse) - MA:0002944 + sensory circumventricular organ (post-embryonic mouse) @@ -55736,8 +52624,7 @@ - fourth ventricle aperture (post-embryonic mouse) - MA:0002945 + fourth ventricle aperture (post-embryonic mouse) @@ -55756,8 +52643,7 @@ - fourth ventricle lateral aperture (post-embryonic mouse) - MA:0002946 + fourth ventricle lateral aperture (post-embryonic mouse) @@ -55776,8 +52662,7 @@ - fourth ventricle median aperture (post-embryonic mouse) - MA:0002947 + fourth ventricle median aperture (post-embryonic mouse) @@ -55796,8 +52681,7 @@ - pelvic ligament (post-embryonic mouse) - MA:0002948 + pelvic ligament (post-embryonic mouse) @@ -55816,8 +52700,7 @@ - left eye (post-embryonic mouse) - MA:0002949 + left eye (post-embryonic mouse) @@ -55836,8 +52719,7 @@ - right eye (post-embryonic mouse) - MA:0002950 + right eye (post-embryonic mouse) @@ -55856,8 +52738,7 @@ - gastroesophageal sphincter (post-embryonic mouse) - MA:0002951 + gastroesophageal sphincter (post-embryonic mouse) @@ -55876,8 +52757,7 @@ - pyloric sphincter (post-embryonic mouse) - MA:0002952 + pyloric sphincter (post-embryonic mouse) @@ -55896,8 +52776,7 @@ - parametrial fat pad (post-embryonic mouse) - MA:0002953 + parametrial fat pad (post-embryonic mouse) @@ -55916,8 +52795,7 @@ - cervical vertebra 1 arcus anterior (post-embryonic mouse) - MA:0002954 + cervical vertebra 1 arcus anterior (post-embryonic mouse) @@ -55936,8 +52814,7 @@ - atrium auricular region (post-embryonic mouse) - MA:0002955 + atrium auricular region (post-embryonic mouse) @@ -55956,8 +52833,7 @@ - omental fat pad (post-embryonic mouse) - MA:0002956 + omental fat pad (post-embryonic mouse) @@ -55976,8 +52852,7 @@ - stylohyoid ligament (post-embryonic mouse) - MA:0002957 + stylohyoid ligament (post-embryonic mouse) @@ -55996,8 +52871,7 @@ - hyoid bone body (post-embryonic mouse) - MA:0002958 + hyoid bone body (post-embryonic mouse) @@ -56016,8 +52890,7 @@ - hyoid bone greater horn (post-embryonic mouse) - MA:0002959 + hyoid bone greater horn (post-embryonic mouse) @@ -56036,8 +52909,7 @@ - hyoid bone lesser horn (post-embryonic mouse) - MA:0002960 + hyoid bone lesser horn (post-embryonic mouse) @@ -56056,8 +52928,7 @@ - lymphatic part of lymphoid system (post-embryonic mouse) - MA:0002961 + lymphatic part of lymphoid system (post-embryonic mouse) @@ -56076,8 +52947,7 @@ - hemolymphoid system gland (post-embryonic mouse) - MA:0002962 + hemolymphoid system gland (post-embryonic mouse) @@ -56096,8 +52966,7 @@ - cerebellum lobe (post-embryonic mouse) - MA:0002963 + cerebellum lobe (post-embryonic mouse) @@ -56116,8 +52985,7 @@ - posterior lobe of cerebellum (post-embryonic mouse) - MA:0002964 + posterior lobe of cerebellum (post-embryonic mouse) @@ -56136,8 +53004,7 @@ - flocculonodular lobe (post-embryonic mouse) - MA:0002965 + flocculonodular lobe (post-embryonic mouse) @@ -56156,8 +53023,7 @@ - cerebellum lobule (post-embryonic mouse) - MA:0002966 + cerebellum lobule (post-embryonic mouse) @@ -56176,8 +53042,7 @@ - cerebellum hemisphere lobule (post-embryonic mouse) - MA:0002967 + cerebellum hemisphere lobule (post-embryonic mouse) @@ -56196,8 +53061,7 @@ - cerebellum vermis lobule (post-embryonic mouse) - MA:0002968 + cerebellum vermis lobule (post-embryonic mouse) @@ -56216,8 +53080,7 @@ - cerebellum anterior vermis (post-embryonic mouse) - MA:0002969 + cerebellum anterior vermis (post-embryonic mouse) @@ -56236,8 +53099,7 @@ - cerebellum posterior vermis (post-embryonic mouse) - MA:0002970 + cerebellum posterior vermis (post-embryonic mouse) @@ -56256,8 +53118,7 @@ - dorsal striatum (post-embryonic mouse) - MA:0002971 + dorsal striatum (post-embryonic mouse) @@ -56276,8 +53137,7 @@ - ventral striatum (post-embryonic mouse) - MA:0002972 + ventral striatum (post-embryonic mouse) @@ -56296,8 +53156,7 @@ - frontonasal suture (post-embryonic mouse) - MA:0002973 + frontonasal suture (post-embryonic mouse) @@ -56316,8 +53175,7 @@ - pararenal fat (post-embryonic mouse) - MA:0002974 + pararenal fat (post-embryonic mouse) @@ -56336,8 +53194,7 @@ - perirenal fat (post-embryonic mouse) - MA:0002975 + perirenal fat (post-embryonic mouse) @@ -56356,8 +53213,7 @@ - long bone epiphyseal plate proliferative zone (post-embryonic mouse) - MA:0002976 + long bone epiphyseal plate proliferative zone (post-embryonic mouse) @@ -56376,8 +53232,7 @@ - long bone epiphyseal plate hypertrophic zone (post-embryonic mouse) - MA:0002977 + long bone epiphyseal plate hypertrophic zone (post-embryonic mouse) @@ -56396,8 +53251,7 @@ - septal nuclear complex (post-embryonic mouse) - MA:0002978 + septal nuclear complex (post-embryonic mouse) @@ -56416,8 +53270,7 @@ - septum pellucidum (post-embryonic mouse) - MA:0002979 + septum pellucidum (post-embryonic mouse) @@ -56436,8 +53289,7 @@ - dorsal raphe nucleus (post-embryonic mouse) - MA:0002980 + dorsal raphe nucleus (post-embryonic mouse) @@ -56456,8 +53308,7 @@ - nucleus raphe obscurus (post-embryonic mouse) - MA:0002981 + nucleus raphe obscurus (post-embryonic mouse) @@ -56476,8 +53327,7 @@ - sublingual ganglion (post-embryonic mouse) - MA:0002982 + sublingual ganglion (post-embryonic mouse) @@ -56496,8 +53346,7 @@ - left ventricle myocardium (post-embryonic mouse) - MA:0002983 + left ventricle myocardium (post-embryonic mouse) @@ -56516,8 +53365,7 @@ - right ventricle myocardium (post-embryonic mouse) - MA:0002984 + right ventricle myocardium (post-embryonic mouse) @@ -56536,8 +53384,7 @@ - manubrium of malleus (post-embryonic mouse) - MA:0002985 + manubrium of malleus (post-embryonic mouse) @@ -56556,8 +53403,7 @@ - postcranial axial skeleton (post-embryonic mouse) - MA:0002986 + postcranial axial skeleton (post-embryonic mouse) @@ -56576,8 +53422,7 @@ - malleus head (post-embryonic mouse) - MA:0002987 + malleus head (post-embryonic mouse) @@ -56596,8 +53441,7 @@ - malleus neck (post-embryonic mouse) - MA:0002988 + malleus neck (post-embryonic mouse) @@ -56616,8 +53460,7 @@ - lymph node germinal center (post-embryonic mouse) - MA:0002989 + lymph node germinal center (post-embryonic mouse) @@ -56636,8 +53479,7 @@ - lymph node germinal center mantle zone (post-embryonic mouse) - MA:0002990 + lymph node germinal center mantle zone (post-embryonic mouse) @@ -56656,8 +53498,7 @@ - ovary stroma (post-embryonic mouse) - MA:0002991 + ovary stroma (post-embryonic mouse) @@ -56676,8 +53517,7 @@ - nucleus of thalamus (post-embryonic mouse) - MA:0002992 + nucleus of thalamus (post-embryonic mouse) @@ -56696,8 +53536,7 @@ - calcaneal tendon (post-embryonic mouse) - MA:0002993 + calcaneal tendon (post-embryonic mouse) @@ -56716,8 +53555,7 @@ - lateral process of malleus (post-embryonic mouse) - MA:0002994 + lateral process of malleus (post-embryonic mouse) @@ -56736,8 +53574,7 @@ - nephrogenic zone (post-embryonic mouse) - MA:0002996 + nephrogenic zone (post-embryonic mouse) @@ -56756,8 +53593,7 @@ - metanephric cap (post-embryonic mouse) - MA:0002997 + metanephric cap (post-embryonic mouse) @@ -56776,8 +53612,7 @@ - metanephros induced blastemal cells (post-embryonic mouse) - MA:0002998 + metanephros induced blastemal cells (post-embryonic mouse) @@ -56796,8 +53631,7 @@ - anatomical structure (post-embryonic mouse) - MA:0003000 + anatomical structure (post-embryonic mouse) @@ -56816,8 +53650,7 @@ - organ (post-embryonic mouse) - MA:0003001 + organ (post-embryonic mouse) @@ -56836,8 +53669,7 @@ - tissue (post-embryonic mouse) - MA:0003002 + tissue (post-embryonic mouse) @@ -56856,8 +53688,7 @@ - spiral prominence of cochlear duct (post-embryonic mouse) - MA:0003003 + spiral prominence of cochlear duct (post-embryonic mouse) @@ -56876,8 +53707,7 @@ - nonskeletal ligament (post-embryonic mouse) - MA:0003004 + nonskeletal ligament (post-embryonic mouse) @@ -56896,8 +53726,7 @@ - skeletal ligament (post-embryonic mouse) - MA:0003005 + skeletal ligament (post-embryonic mouse) @@ -56916,8 +53745,7 @@ - skeleton (post-embryonic mouse) - MA:0003006 + skeleton (post-embryonic mouse) @@ -56936,8 +53764,7 @@ - articular system (post-embryonic mouse) - MA:0003007 + articular system (post-embryonic mouse) @@ -56956,8 +53783,7 @@ - perichondrium (post-embryonic mouse) - MA:0003008 + perichondrium (post-embryonic mouse) @@ -56976,8 +53802,7 @@ - baroreceptor (post-embryonic mouse) - MA:0003009 + baroreceptor (post-embryonic mouse) @@ -56996,8 +53821,7 @@ - metapodial pad (post-embryonic mouse) - MA:0003010 + metapodial pad (post-embryonic mouse) @@ -57016,8 +53840,7 @@ - digit skin (post-embryonic mouse) - MA:0003011 + digit skin (post-embryonic mouse) @@ -57036,8 +53859,7 @@ - interdigital region (post-embryonic mouse) - MA:0003012 + interdigital region (post-embryonic mouse) @@ -57056,8 +53878,7 @@ - rete testis (post-embryonic mouse) - MA:0003013 + rete testis (post-embryonic mouse) @@ -57076,8 +53897,7 @@ - forestomach-glandular stomach junction (post-embryonic mouse) - MA:0003014 + forestomach-glandular stomach junction (post-embryonic mouse) @@ -57096,8 +53916,7 @@ - hepatic vein (post-embryonic mouse) - MA:0003015 + hepatic vein (post-embryonic mouse) @@ -57116,8 +53935,7 @@ - infundibulum of hair follicle (post-embryonic mouse) - MA:0003016 + infundibulum of hair follicle (post-embryonic mouse) @@ -57136,8 +53954,7 @@ - apical region of heart ventricle (post-embryonic mouse) - MA:0003017 + apical region of heart ventricle (post-embryonic mouse) @@ -57156,8 +53973,7 @@ - supraoptic crest (post-embryonic mouse) - MA:0003018 + supraoptic crest (post-embryonic mouse) @@ -57176,8 +53992,7 @@ - inferior olivary commissure (post-embryonic mouse) - MA:0003019 + inferior olivary commissure (post-embryonic mouse) @@ -57196,8 +54011,7 @@ - ureterovesical junction (post-embryonic mouse) - MA:0003020 + ureterovesical junction (post-embryonic mouse) @@ -57216,8 +54030,7 @@ - ureteropelvic junction (post-embryonic mouse) - MA:0003021 + ureteropelvic junction (post-embryonic mouse) @@ -57236,8 +54049,7 @@ - retrotrapezoid nucleus (post-embryonic mouse) - MA:0003022 + retrotrapezoid nucleus (post-embryonic mouse) @@ -57256,8 +54068,7 @@ - digit 1 (post-embryonic mouse) - MA:0003023 + digit 1 (post-embryonic mouse) @@ -57276,8 +54087,7 @@ - abdominal oblique muscle (post-embryonic mouse) - MA:0003024 + abdominal oblique muscle (post-embryonic mouse) @@ -57296,8 +54106,7 @@ - serratus muscle (post-embryonic mouse) - MA:0003025 + serratus muscle (post-embryonic mouse) @@ -57316,8 +54125,7 @@ - platysma (post-embryonic mouse) - MA:0003026 + platysma (post-embryonic mouse) @@ -57336,8 +54144,7 @@ - subcapsular sinus of lymph node (post-embryonic mouse) - MA:0003027 + subcapsular sinus of lymph node (post-embryonic mouse) @@ -57356,8 +54163,7 @@ - subcutaneous lymph node (post-embryonic mouse) - MA:0003028 + subcutaneous lymph node (post-embryonic mouse) @@ -57376,8 +54182,7 @@ - pancreatic fat pad (post-embryonic mouse) - MA:0003029 + pancreatic fat pad (post-embryonic mouse) @@ -57396,8 +54201,7 @@ - nasal-associated lymphoid tissue (post-embryonic mouse) - MA:0003030 + nasal-associated lymphoid tissue (post-embryonic mouse) @@ -57416,8 +54220,7 @@ - posterior part of tongue (post-embryonic mouse) - MA:0003031 + posterior part of tongue (post-embryonic mouse) @@ -57436,8 +54239,7 @@ - left hepatic vein (post-embryonic mouse) - MA:0003032 + left hepatic vein (post-embryonic mouse) @@ -57456,8 +54258,7 @@ - middle hepatic vein (post-embryonic mouse) - MA:0003033 + middle hepatic vein (post-embryonic mouse) @@ -57476,8 +54277,7 @@ - right hepatic vein (post-embryonic mouse) - MA:0003034 + right hepatic vein (post-embryonic mouse) @@ -57496,8 +54296,7 @@ - accessory hepatic vein (post-embryonic mouse) - MA:0003035 + accessory hepatic vein (post-embryonic mouse) @@ -57516,8 +54315,7 @@ - ovarian bursa (post-embryonic mouse) - MA:0003036 + ovarian bursa (post-embryonic mouse) @@ -57536,8 +54334,7 @@ - hyoid apparatus (post-embryonic mouse) - MA:0003037 + hyoid apparatus (post-embryonic mouse) @@ -57556,8 +54353,7 @@ - gland (post-embryonic mouse) - MA:0003038 + gland (post-embryonic mouse) @@ -57576,8 +54372,7 @@ - eccrine sweat gland (post-embryonic mouse) - MA:0003039 + eccrine sweat gland (post-embryonic mouse) @@ -57596,8 +54391,7 @@ - apocrine gland (post-embryonic mouse) - MA:0003040 + apocrine gland (post-embryonic mouse) @@ -57616,8 +54410,7 @@ - merocrine gland (post-embryonic mouse) - MA:0003041 + merocrine gland (post-embryonic mouse) @@ -57636,8 +54429,7 @@ - holocrine gland (post-embryonic mouse) - MA:0003042 + holocrine gland (post-embryonic mouse) @@ -57656,8 +54448,7 @@ - modified sebaceous gland (post-embryonic mouse) - MA:0003043 + modified sebaceous gland (post-embryonic mouse) @@ -57676,8 +54467,7 @@ - preputial gland (post-embryonic mouse) - MA:0003044 + preputial gland (post-embryonic mouse) @@ -57696,8 +54486,7 @@ - cauda equina (post-embryonic mouse) - MA:0003045 + cauda equina (post-embryonic mouse) @@ -57716,8 +54505,7 @@ - perianal skin (post-embryonic mouse) - MA:0003046 + perianal skin (post-embryonic mouse) @@ -57736,8 +54524,7 @@ - skeletal tissue (post-embryonic mouse) - MA:0003047 + skeletal tissue (post-embryonic mouse) @@ -57756,8 +54543,7 @@ - diaphysis of tibia (post-embryonic mouse) - MA:0003049 + diaphysis of tibia (post-embryonic mouse) @@ -57776,8 +54562,7 @@ - head of femur (post-embryonic mouse) - MA:0003050 + head of femur (post-embryonic mouse) @@ -57796,8 +54581,7 @@ - sinus of Valsalva (post-embryonic mouse) - MA:0003051 + sinus of Valsalva (post-embryonic mouse) @@ -57816,8 +54600,7 @@ - metaphysis of femur (post-embryonic mouse) - MA:0003052 + metaphysis of femur (post-embryonic mouse) @@ -57836,8 +54619,7 @@ - iliac crest (post-embryonic mouse) - MA:0003053 + iliac crest (post-embryonic mouse) @@ -57856,8 +54638,7 @@ - auricular vein (post-embryonic mouse) - MA:0003054 + auricular vein (post-embryonic mouse) @@ -57876,8 +54657,7 @@ - diaphysis of femur (post-embryonic mouse) - MA:0003055 + diaphysis of femur (post-embryonic mouse) @@ -57896,8 +54676,7 @@ - epiphysis of femur (post-embryonic mouse) - MA:0003056 + epiphysis of femur (post-embryonic mouse) @@ -57916,8 +54695,7 @@ - abdominal cavity (post-embryonic mouse) - MA:0003057 + abdominal cavity (post-embryonic mouse) @@ -57936,8 +54714,7 @@ - anal sac (post-embryonic mouse) - MA:0003058 + anal sac (post-embryonic mouse) @@ -57956,8 +54733,7 @@ - cheek pouch (post-embryonic mouse) - MA:0003059 + cheek pouch (post-embryonic mouse) @@ -57976,8 +54752,7 @@ - epithelium (post-embryonic mouse) - MA:0003060 + epithelium (post-embryonic mouse) @@ -57996,8 +54771,7 @@ - cranial cavity (post-embryonic mouse) - MA:0003061 + cranial cavity (post-embryonic mouse) @@ -58016,8 +54790,7 @@ - mediastinal fat pad (post-embryonic mouse) - MA:0003063 + mediastinal fat pad (post-embryonic mouse) @@ -58036,8 +54809,7 @@ - periovarian fat pad (post-embryonic mouse) - MA:0003064 + periovarian fat pad (post-embryonic mouse) @@ -58056,8 +54828,7 @@ - ileocolic lymph node (post-embryonic mouse) - MA:0003065 + ileocolic lymph node (post-embryonic mouse) @@ -58076,8 +54847,7 @@ - common iliac lymph node (post-embryonic mouse) - MA:0003066 + common iliac lymph node (post-embryonic mouse) @@ -58096,8 +54866,7 @@ - mandibular lymph node (post-embryonic mouse) - MA:0003067 + mandibular lymph node (post-embryonic mouse) @@ -58116,8 +54885,7 @@ - tracheobronchial lymph node (post-embryonic mouse) - MA:0003068 + tracheobronchial lymph node (post-embryonic mouse) @@ -58136,8 +54904,7 @@ - prescapular lymph node (post-embryonic mouse) - MA:0003069 + prescapular lymph node (post-embryonic mouse) @@ -58156,8 +54923,7 @@ - retropharyngeal lymph node (post-embryonic mouse) - MA:0003070 + retropharyngeal lymph node (post-embryonic mouse) @@ -58176,8 +54942,7 @@ - gastric lymph node (post-embryonic mouse) - MA:0003071 + gastric lymph node (post-embryonic mouse) @@ -58196,8 +54961,7 @@ - hepatic lymph node (post-embryonic mouse) - MA:0003072 + hepatic lymph node (post-embryonic mouse) @@ -58216,8 +54980,7 @@ - paraaortic lymph node (post-embryonic mouse) - MA:0003073 + paraaortic lymph node (post-embryonic mouse) @@ -58236,8 +54999,7 @@ - splenic lymph node (post-embryonic mouse) - MA:0003074 + splenic lymph node (post-embryonic mouse) @@ -58256,8 +55018,7 @@ - mediastinum (post-embryonic mouse) - MA:0003075 + mediastinum (post-embryonic mouse) @@ -58276,8 +55037,7 @@ - bronchial lymph node (post-embryonic mouse) - MA:0003078 + bronchial lymph node (post-embryonic mouse) @@ -58296,8 +55056,7 @@ - skin of snout (post-embryonic mouse) - MA:0003079 + skin of snout (post-embryonic mouse) @@ -58316,8 +55075,7 @@ - spinal cord segment (post-embryonic mouse) - MA:0003080 + spinal cord segment (post-embryonic mouse) @@ -58336,8 +55094,7 @@ - cervical spinal cord (post-embryonic mouse) - MA:0003081 + cervical spinal cord (post-embryonic mouse) @@ -58356,8 +55113,7 @@ - thoracic spinal cord (post-embryonic mouse) - MA:0003082 + thoracic spinal cord (post-embryonic mouse) @@ -58376,8 +55132,7 @@ - lumbar spinal cord (post-embryonic mouse) - MA:0003083 + lumbar spinal cord (post-embryonic mouse) @@ -58396,8 +55151,7 @@ - caudal segment of spinal cord (post-embryonic mouse) - MA:0003084 + caudal segment of spinal cord (post-embryonic mouse) @@ -58416,8 +55170,7 @@ - sacral spinal cord (post-embryonic mouse) - MA:0003085 + sacral spinal cord (post-embryonic mouse) @@ -58436,8 +55189,7 @@ - eye trabecular meshwork (post-embryonic mouse) - MA:0003086 + eye trabecular meshwork (post-embryonic mouse) @@ -58456,8 +55208,7 @@ - axilla skin (post-embryonic mouse) - MA:0003087 + axilla skin (post-embryonic mouse) @@ -58476,8 +55227,7 @@ - parotid lymph node (post-embryonic mouse) - MA:0003088 + parotid lymph node (post-embryonic mouse) @@ -58496,8 +55246,7 @@ - pelvic cavity (post-embryonic mouse) - MA:0003089 + pelvic cavity (post-embryonic mouse) @@ -58516,8 +55265,7 @@ - nose skin (post-embryonic mouse) - MA:0003090 + nose skin (post-embryonic mouse) @@ -58536,8 +55284,7 @@ - axillary fat pad (post-embryonic mouse) - MA:0003091 + axillary fat pad (post-embryonic mouse) @@ -58556,8 +55303,7 @@ - auricular lymph node (post-embryonic mouse) - MA:0003092 + auricular lymph node (post-embryonic mouse) @@ -58576,8 +55322,7 @@ - scrotum skin (post-embryonic mouse) - MA:0003093 + scrotum skin (post-embryonic mouse) @@ -58596,8 +55341,7 @@ - common hepatic artery (post-embryonic mouse) - MA:0003094 + common hepatic artery (post-embryonic mouse) @@ -58616,8 +55360,7 @@ - proper hepatic artery (post-embryonic mouse) - MA:0003095 + proper hepatic artery (post-embryonic mouse) @@ -58636,8 +55379,7 @@ - left hepatic artery (post-embryonic mouse) - MA:0003096 + left hepatic artery (post-embryonic mouse) @@ -58656,8 +55398,7 @@ - right hepatic artery (post-embryonic mouse) - MA:0003097 + right hepatic artery (post-embryonic mouse) @@ -58676,8 +55417,7 @@ - lobe of lung (post-embryonic mouse) - MA:0003098 + lobe of lung (post-embryonic mouse) @@ -58696,8 +55436,7 @@ - lung hilus (post-embryonic mouse) - MA:0003099 + lung hilus (post-embryonic mouse) @@ -58716,8 +55455,7 @@ - paravertebral ganglion (post-embryonic mouse) - MA:0003100 + paravertebral ganglion (post-embryonic mouse) @@ -58736,8 +55474,7 @@ - prevertebral ganglion (post-embryonic mouse) - MA:0003101 + prevertebral ganglion (post-embryonic mouse) @@ -58756,8 +55493,7 @@ - superior mesenteric ganglion (post-embryonic mouse) - MA:0003102 + superior mesenteric ganglion (post-embryonic mouse) @@ -58776,8 +55512,7 @@ - inferior mesenteric ganglion (post-embryonic mouse) - MA:0003103 + inferior mesenteric ganglion (post-embryonic mouse) @@ -58796,8 +55531,7 @@ - heel skin (post-embryonic mouse) - MA:0003104 + heel skin (post-embryonic mouse) @@ -58816,8 +55550,7 @@ - epidermis of metapodial pad (post-embryonic mouse) - MA:0003105 + epidermis of metapodial pad (post-embryonic mouse) @@ -58836,8 +55569,7 @@ - metaphysis of tibia (post-embryonic mouse) - MA:0003106 + metaphysis of tibia (post-embryonic mouse) @@ -58856,8 +55588,7 @@ - duodenal papilla (post-embryonic mouse) - MA:0003107 + duodenal papilla (post-embryonic mouse) @@ -58876,8 +55607,7 @@ - choledocho-duodenal junction (post-embryonic mouse) - MA:0003108 + choledocho-duodenal junction (post-embryonic mouse) @@ -58896,8 +55626,7 @@ - intraorbital lacrimal gland (post-embryonic mouse) - MA:0003109 + intraorbital lacrimal gland (post-embryonic mouse) @@ -58916,8 +55645,7 @@ - exorbital lacrimal gland (post-embryonic mouse) - MA:0003110 + exorbital lacrimal gland (post-embryonic mouse) @@ -58936,8 +55664,7 @@ - sural nerve (post-embryonic mouse) - MA:0003111 + sural nerve (post-embryonic mouse) @@ -58956,8 +55683,7 @@ - intertarsal joint (post-embryonic mouse) - MA:0003112 + intertarsal joint (post-embryonic mouse) @@ -58976,8 +55702,7 @@ - epiphysis of tibia (post-embryonic mouse) - MA:0003113 + epiphysis of tibia (post-embryonic mouse) @@ -58996,8 +55721,7 @@ - bifurcation of trachea (post-embryonic mouse) - MA:0003114 + bifurcation of trachea (post-embryonic mouse) @@ -59016,8 +55740,7 @@ - masticatory muscle (post-embryonic mouse) - MA:0003115 + masticatory muscle (post-embryonic mouse) @@ -59036,30 +55759,7 @@ - bulbospongiosus muscle (post-embryonic mouse) - MA:0003116 - - - - - - - - - - - - - - - - - - - - entorhinal cortex (post-embryonic mouse) - secondary olfactory cortex (post-embryonic mouse) - MA:0003117 + bulbospongiosus muscle (post-embryonic mouse) @@ -59078,8 +55778,7 @@ - thymic lymph node (post-embryonic mouse) - MA:0003118 + thymic lymph node (post-embryonic mouse) @@ -59098,8 +55797,7 @@ - alveolar ridge (post-embryonic mouse) - MA:0003119 + alveolar ridge (post-embryonic mouse) @@ -59118,8 +55816,7 @@ - autopod skin (post-embryonic mouse) - MA:0003120 + autopod skin (post-embryonic mouse) @@ -59138,8 +55835,7 @@ - dental follicle (post-embryonic mouse) - MA:0003121 + dental follicle (post-embryonic mouse) @@ -59158,8 +55854,7 @@ - dentate gyrus molecular layer (post-embryonic mouse) - MA:0003122 + dentate gyrus molecular layer (post-embryonic mouse) @@ -59178,8 +55873,7 @@ - digit connective tissue (post-embryonic mouse) - MA:0003123 + digit connective tissue (post-embryonic mouse) @@ -59198,8 +55892,7 @@ - prostate gland dorsal lobe (post-embryonic mouse) - MA:0003124 + prostate gland dorsal lobe (post-embryonic mouse) @@ -59218,8 +55911,7 @@ - prostate gland lateral lobe (post-embryonic mouse) - MA:0003125 + prostate gland lateral lobe (post-embryonic mouse) @@ -59238,8 +55930,7 @@ - perpendicular plate of ethmoid (post-embryonic mouse) - MA:0003126 + perpendicular plate of ethmoid (post-embryonic mouse) @@ -59258,8 +55949,7 @@ - fasciolar gyrus (post-embryonic mouse) - MA:0003127 + fasciolar gyrus (post-embryonic mouse) @@ -59278,8 +55968,7 @@ - greater omentum (post-embryonic mouse) - MA:0003128 + greater omentum (post-embryonic mouse) @@ -59298,8 +55987,7 @@ - induseum griseum (post-embryonic mouse) - MA:0003129 + induseum griseum (post-embryonic mouse) @@ -59318,8 +56006,7 @@ - bone of jaw (post-embryonic mouse) - MA:0003130 + bone of jaw (post-embryonic mouse) @@ -59338,8 +56025,7 @@ - epithelium of left lung (post-embryonic mouse) - MA:0003131 + epithelium of left lung (post-embryonic mouse) @@ -59358,8 +56044,7 @@ - epithelium of right lung (post-embryonic mouse) - MA:0003132 + epithelium of right lung (post-embryonic mouse) @@ -59378,8 +56063,7 @@ - lobar bronchus of left lung (post-embryonic mouse) - MA:0003133 + lobar bronchus of left lung (post-embryonic mouse) @@ -59398,8 +56082,7 @@ - lobar bronchus of right lung (post-embryonic mouse) - MA:0003134 + lobar bronchus of right lung (post-embryonic mouse) @@ -59418,8 +56101,7 @@ - left lung lobar bronchus epithelium (post-embryonic mouse) - MA:0003135 + left lung lobar bronchus epithelium (post-embryonic mouse) @@ -59438,8 +56120,7 @@ - right lung lobar bronchus epitheium (post-embryonic mouse) - MA:0003136 + right lung lobar bronchus epitheium (post-embryonic mouse) @@ -59458,8 +56139,7 @@ - liver blood vessel (post-embryonic mouse) - MA:0003137 + liver blood vessel (post-embryonic mouse) @@ -59478,8 +56158,7 @@ - cartilage of nasal septum (post-embryonic mouse) - MA:0003138 + cartilage of nasal septum (post-embryonic mouse) @@ -59498,8 +56177,7 @@ - skin muscle (post-embryonic mouse) - MA:0003139 + skin muscle (post-embryonic mouse) @@ -59518,8 +56196,7 @@ - hypodermis skeletal muscle layer (post-embryonic mouse) - MA:0003140 + hypodermis skeletal muscle layer (post-embryonic mouse) @@ -59538,8 +56215,7 @@ - panniculus carnosus muscle (post-embryonic mouse) - MA:0003141 + panniculus carnosus muscle (post-embryonic mouse) @@ -59558,8 +56234,7 @@ - pharyngotympanic tube epithelium (post-embryonic mouse) - MA:0003142 + pharyngotympanic tube epithelium (post-embryonic mouse) @@ -59578,8 +56253,7 @@ - pharyngeal mucosa (post-embryonic mouse) - MA:0003143 + pharyngeal mucosa (post-embryonic mouse) @@ -59598,8 +56272,7 @@ - prevertebral muscle of neck (post-embryonic mouse) - MA:0003144 + prevertebral muscle of neck (post-embryonic mouse) @@ -59618,8 +56291,7 @@ - radio-ulnar joint (post-embryonic mouse) - MA:0003145 + radio-ulnar joint (post-embryonic mouse) @@ -59638,30 +56310,7 @@ - proximal radio-ulnar joint (post-embryonic mouse) - MA:0003146 - - - - - - - - - - - - - - - - - - - - midbrain raphe nuclei (post-embryonic mouse) - raphe nuclei (post-embryonic mouse) - MA:0003147 + proximal radio-ulnar joint (post-embryonic mouse) @@ -59680,8 +56329,7 @@ - skeletal muscle organ (post-embryonic mouse) - MA:0003148 + skeletal muscle organ (post-embryonic mouse) @@ -59700,8 +56348,7 @@ - dentate gyrus subgranular zone (post-embryonic mouse) - MA:0003149 + dentate gyrus subgranular zone (post-embryonic mouse) @@ -59720,8 +56367,7 @@ - taenia tectum of brain (post-embryonic mouse) - MA:0003150 + taenia tectum of brain (post-embryonic mouse) @@ -59740,8 +56386,7 @@ - dental epithelium (post-embryonic mouse) - MA:0003151 + dental epithelium (post-embryonic mouse) @@ -59760,8 +56405,7 @@ - uncondensed odontogenic mesenchyme (post-embryonic mouse) - MA:0003152 + uncondensed odontogenic mesenchyme (post-embryonic mouse) @@ -59780,8 +56424,7 @@ - axial muscle (post-embryonic mouse) - MA:0003153 + axial muscle (post-embryonic mouse) @@ -59800,8 +56443,7 @@ - cervical region of vertebral column (post-embryonic mouse) - MA:0003154 + cervical region of vertebral column (post-embryonic mouse) @@ -59820,8 +56462,7 @@ - thoracic region of vertebral column (post-embryonic mouse) - MA:0003155 + thoracic region of vertebral column (post-embryonic mouse) @@ -59840,8 +56481,7 @@ - lumbar region of vertebral column (post-embryonic mouse) - MA:0003156 + lumbar region of vertebral column (post-embryonic mouse) @@ -59860,8 +56500,7 @@ - sacral region of vertebral column (post-embryonic mouse) - MA:0003157 + sacral region of vertebral column (post-embryonic mouse) @@ -59880,8 +56519,7 @@ - caudal region of vertebral column (post-embryonic mouse) - MA:0003158 + caudal region of vertebral column (post-embryonic mouse) @@ -59900,8 +56538,7 @@ - facial bone (post-embryonic mouse) - MA:0003159 + facial bone (post-embryonic mouse) @@ -59920,8 +56557,7 @@ - facial muscle (post-embryonic mouse) - MA:0003160 + facial muscle (post-embryonic mouse) @@ -59940,8 +56576,7 @@ - ear epithelium (post-embryonic mouse) - MA:0003161 + ear epithelium (post-embryonic mouse) @@ -59960,8 +56595,7 @@ - eye epithelium (post-embryonic mouse) - MA:0003162 + eye epithelium (post-embryonic mouse) @@ -59980,8 +56614,7 @@ - eyelid epithelium (post-embryonic mouse) - MA:0003163 + eyelid epithelium (post-embryonic mouse) @@ -60000,8 +56633,7 @@ - intercostal muscle (post-embryonic mouse) - MA:0003165 + intercostal muscle (post-embryonic mouse) @@ -60020,8 +56652,7 @@ - intercostal vein (post-embryonic mouse) - MA:0003166 + intercostal vein (post-embryonic mouse) @@ -60040,8 +56671,7 @@ - lung parenchyma (post-embryonic mouse) - MA:0003168 + lung parenchyma (post-embryonic mouse) @@ -60060,8 +56690,7 @@ - middle ear epithelium (post-embryonic mouse) - MA:0003169 + middle ear epithelium (post-embryonic mouse) @@ -60080,8 +56709,7 @@ - outer ear epithelium (post-embryonic mouse) - MA:0003170 + outer ear epithelium (post-embryonic mouse) @@ -60100,8 +56728,7 @@ - nose epithelium (post-embryonic mouse) - MA:0003171 + nose epithelium (post-embryonic mouse) @@ -60120,8 +56747,7 @@ - naris epithelium (post-embryonic mouse) - MA:0003172 + naris epithelium (post-embryonic mouse) @@ -60140,8 +56766,7 @@ - pigmented layer of retina (post-embryonic mouse) - MA:0003173 + pigmented layer of retina (post-embryonic mouse) @@ -60160,8 +56785,7 @@ - sensory organ epithelium (post-embryonic mouse) - MA:0003174 + sensory organ epithelium (post-embryonic mouse) @@ -60180,8 +56804,7 @@ - cochlear canal (post-embryonic mouse) - MA:0003176 + cochlear canal (post-embryonic mouse) @@ -60200,8 +56823,7 @@ - splenic artery (post-embryonic mouse) - MA:0003177 + splenic artery (post-embryonic mouse) @@ -60220,8 +56842,7 @@ - tongue papilla epithelium (post-embryonic mouse) - MA:0003178 + tongue papilla epithelium (post-embryonic mouse) @@ -60240,8 +56861,7 @@ - cardiac valve leaflet (post-embryonic mouse) - MA:0003179 + cardiac valve leaflet (post-embryonic mouse) @@ -60260,8 +56880,7 @@ - tricuspid valve leaflet (post-embryonic mouse) - MA:0003180 + tricuspid valve leaflet (post-embryonic mouse) @@ -60280,8 +56899,7 @@ - venous system of brain (post-embryonic mouse) - MA:0003184 + venous system of brain (post-embryonic mouse) @@ -60300,8 +56918,7 @@ - reticular formation (post-embryonic mouse) - MA:0003185 + reticular formation (post-embryonic mouse) @@ -60320,8 +56937,7 @@ - pyramidal layer of CA1 (post-embryonic mouse) - MA:0003186 + pyramidal layer of CA1 (post-embryonic mouse) @@ -60340,8 +56956,7 @@ - cerebellum ventricular layer (post-embryonic mouse) - MA:0003187 + cerebellum ventricular layer (post-embryonic mouse) @@ -60360,8 +56975,7 @@ - cerebral cortex subventricular zone (post-embryonic mouse) - MA:0003188 + cerebral cortex subventricular zone (post-embryonic mouse) @@ -60380,8 +56994,7 @@ - cerebral cortex ventricular layer (post-embryonic mouse) - MA:0003189 + cerebral cortex ventricular layer (post-embryonic mouse) @@ -60400,8 +57013,7 @@ - forebrain ventricular layer (post-embryonic mouse) - MA:0003190 + forebrain ventricular layer (post-embryonic mouse) @@ -60420,8 +57032,7 @@ - olfactory bulb outer nerve layer (post-embryonic mouse) - MA:0003191 + olfactory bulb outer nerve layer (post-embryonic mouse) @@ -60440,8 +57051,7 @@ - spinal cord lateral wall (post-embryonic mouse) - MA:0003192 + spinal cord lateral wall (post-embryonic mouse) @@ -60460,8 +57070,7 @@ - neural tube ventricular layer (post-embryonic mouse) - MA:0003193 + neural tube ventricular layer (post-embryonic mouse) @@ -60480,8 +57089,7 @@ - colonic mucosa (post-embryonic mouse) - MA:0003194 + colonic mucosa (post-embryonic mouse) @@ -60500,8 +57108,7 @@ - colonic epithelium (post-embryonic mouse) - MA:0003195 + colonic epithelium (post-embryonic mouse) @@ -60520,8 +57127,7 @@ - lamina propria of mucosa of colon (post-embryonic mouse) - MA:0003196 + lamina propria of mucosa of colon (post-embryonic mouse) @@ -60540,8 +57146,7 @@ - muscularis mucosae of colon (post-embryonic mouse) - MA:0003197 + muscularis mucosae of colon (post-embryonic mouse) @@ -60560,8 +57165,7 @@ - muscle layer of colon (post-embryonic mouse) - MA:0003198 + muscle layer of colon (post-embryonic mouse) @@ -60580,8 +57184,7 @@ - serosa of colon (post-embryonic mouse) - MA:0003199 + serosa of colon (post-embryonic mouse) @@ -60600,8 +57203,7 @@ - submucosa of colon (post-embryonic mouse) - MA:0003200 + submucosa of colon (post-embryonic mouse) @@ -60620,8 +57222,7 @@ - digestive tract epithelium (post-embryonic mouse) - MA:0003201 + digestive tract epithelium (post-embryonic mouse) @@ -60640,8 +57241,7 @@ - gland of digestive tract (post-embryonic mouse) - MA:0003202 + gland of digestive tract (post-embryonic mouse) @@ -60660,8 +57260,7 @@ - gut mesentery (post-embryonic mouse) - MA:0003203 + gut mesentery (post-embryonic mouse) @@ -60680,8 +57279,7 @@ - foregut epithelium (post-embryonic mouse) - MA:0003204 + foregut epithelium (post-embryonic mouse) @@ -60700,8 +57298,7 @@ - epithelium of midgut (post-embryonic mouse) - MA:0003205 + epithelium of midgut (post-embryonic mouse) @@ -60720,8 +57317,7 @@ - epithelium of hindgut (post-embryonic mouse) - MA:0003206 + epithelium of hindgut (post-embryonic mouse) @@ -60740,8 +57336,7 @@ - duodenal mucosa (post-embryonic mouse) - MA:0003207 + duodenal mucosa (post-embryonic mouse) @@ -60760,8 +57355,7 @@ - duodenal epithelium (post-embryonic mouse) - MA:0003208 + duodenal epithelium (post-embryonic mouse) @@ -60780,8 +57374,7 @@ - duodenum lamina propria (post-embryonic mouse) - MA:0003209 + duodenum lamina propria (post-embryonic mouse) @@ -60800,8 +57393,7 @@ - muscularis mucosae of duodenum (post-embryonic mouse) - MA:0003210 + muscularis mucosae of duodenum (post-embryonic mouse) @@ -60820,8 +57412,7 @@ - muscularis mucosae of duodenum (post-embryonic mouse) - MA:0003211 + muscularis mucosae of duodenum (post-embryonic mouse) @@ -60840,8 +57431,7 @@ - serosa of duodenum (post-embryonic mouse) - MA:0003212 + serosa of duodenum (post-embryonic mouse) @@ -60860,8 +57450,7 @@ - submucosa of duodenum (post-embryonic mouse) - MA:0003213 + submucosa of duodenum (post-embryonic mouse) @@ -60880,8 +57469,7 @@ - jejunal mucosa (post-embryonic mouse) - MA:0003214 + jejunal mucosa (post-embryonic mouse) @@ -60900,8 +57488,7 @@ - jejunal epithelium (post-embryonic mouse) - MA:0003215 + jejunal epithelium (post-embryonic mouse) @@ -60920,8 +57507,7 @@ - ileal mucosa (post-embryonic mouse) - MA:0003216 + ileal mucosa (post-embryonic mouse) @@ -60940,8 +57526,7 @@ - ileal epithelium (post-embryonic mouse) - MA:0003217 + ileal epithelium (post-embryonic mouse) @@ -60960,8 +57545,7 @@ - mucosa of rectum (post-embryonic mouse) - MA:0003218 + mucosa of rectum (post-embryonic mouse) @@ -60980,8 +57564,7 @@ - epithelium of rectum (post-embryonic mouse) - MA:0003219 + epithelium of rectum (post-embryonic mouse) @@ -61000,8 +57583,7 @@ - jaw epithelium (post-embryonic mouse) - MA:0003220 + jaw epithelium (post-embryonic mouse) @@ -61020,8 +57602,7 @@ - incisor dental pulp (post-embryonic mouse) - MA:0003221 + incisor dental pulp (post-embryonic mouse) @@ -61040,8 +57621,7 @@ - molar dental pulp (post-embryonic mouse) - MA:0003222 + molar dental pulp (post-embryonic mouse) @@ -61060,8 +57640,7 @@ - epithelium of incisor (post-embryonic mouse) - MA:0003223 + epithelium of incisor (post-embryonic mouse) @@ -61080,8 +57659,7 @@ - molar epithelium (post-embryonic mouse) - MA:0003224 + molar epithelium (post-embryonic mouse) @@ -61100,8 +57678,7 @@ - incisor dental lamina (post-embryonic mouse) - MA:0003225 + incisor dental lamina (post-embryonic mouse) @@ -61120,8 +57697,7 @@ - molar dental lamina (post-embryonic mouse) - MA:0003226 + molar dental lamina (post-embryonic mouse) @@ -61140,8 +57716,7 @@ - incisor enamel organ (post-embryonic mouse) - MA:0003227 + incisor enamel organ (post-embryonic mouse) @@ -61160,8 +57735,7 @@ - molar enamel organ (post-embryonic mouse) - MA:0003228 + molar enamel organ (post-embryonic mouse) @@ -61180,8 +57754,7 @@ - incisor mesenchyme (post-embryonic mouse) - MA:0003229 + incisor mesenchyme (post-embryonic mouse) @@ -61200,8 +57773,7 @@ - odontogenic mesenchyme of molar (post-embryonic mouse) - MA:0003230 + odontogenic mesenchyme of molar (post-embryonic mouse) @@ -61220,8 +57792,7 @@ - odontogenic papilla of incisor (post-embryonic mouse) - MA:0003231 + odontogenic papilla of incisor (post-embryonic mouse) @@ -61240,8 +57811,7 @@ - molar dental papilla (post-embryonic mouse) - MA:0003232 + molar dental papilla (post-embryonic mouse) @@ -61260,8 +57830,7 @@ - mesentery of urinary system (post-embryonic mouse) - MA:0003233 + mesentery of urinary system (post-embryonic mouse) @@ -61280,8 +57849,7 @@ - urorectal septum (post-embryonic mouse) - MA:0003235 + urorectal septum (post-embryonic mouse) @@ -61300,8 +57868,7 @@ - mesovarium (post-embryonic mouse) - MA:0003236 + mesovarium (post-embryonic mouse) @@ -61320,8 +57887,7 @@ - rete ovarii (post-embryonic mouse) - MA:0003237 + rete ovarii (post-embryonic mouse) @@ -61340,8 +57906,7 @@ - mesorchium (post-embryonic mouse) - MA:0003238 + mesorchium (post-embryonic mouse) @@ -61360,8 +57925,7 @@ - Mullerian tubercle (post-embryonic mouse) - MA:0003239 + Mullerian tubercle (post-embryonic mouse) @@ -61380,8 +57944,7 @@ - mediastinum testis (post-embryonic mouse) - MA:0003240 + mediastinum testis (post-embryonic mouse) @@ -61400,8 +57963,7 @@ - vesicular appendage of epoophoron (post-embryonic mouse) - MA:0003241 + vesicular appendage of epoophoron (post-embryonic mouse) @@ -61420,8 +57982,7 @@ - upper part of vagina (post-embryonic mouse) - MA:0003242 + upper part of vagina (post-embryonic mouse) @@ -61440,8 +58001,7 @@ - lower part of vagina (post-embryonic mouse) - MA:0003243 + lower part of vagina (post-embryonic mouse) @@ -61460,8 +58020,7 @@ - suspensory ligament of ovary (post-embryonic mouse) - MA:0003244 + suspensory ligament of ovary (post-embryonic mouse) @@ -61480,8 +58039,7 @@ - appendix epididymis (post-embryonic mouse) - MA:0003245 + appendix epididymis (post-embryonic mouse) @@ -61500,8 +58058,7 @@ - appendix testis (post-embryonic mouse) - MA:0003246 + appendix testis (post-embryonic mouse) @@ -61520,8 +58077,7 @@ - ejaculatory duct (post-embryonic mouse) - MA:0003247 + ejaculatory duct (post-embryonic mouse) @@ -61540,8 +58096,7 @@ - gubernaculum testis (post-embryonic mouse) - MA:0003248 + gubernaculum testis (post-embryonic mouse) @@ -61560,8 +58115,7 @@ - female inguinal canal (post-embryonic mouse) - MA:0003249 + female inguinal canal (post-embryonic mouse) @@ -61580,8 +58134,7 @@ - female inguinal ring (post-embryonic mouse) - MA:0003250 + female inguinal ring (post-embryonic mouse) @@ -61600,8 +58153,7 @@ - female deep inguinal ring (post-embryonic mouse) - MA:0003251 + female deep inguinal ring (post-embryonic mouse) @@ -61620,8 +58172,7 @@ - female superficial inguinal ring (post-embryonic mouse) - MA:0003252 + female superficial inguinal ring (post-embryonic mouse) @@ -61640,8 +58191,7 @@ - tunica vaginalis testis (post-embryonic mouse) - MA:0003253 + tunica vaginalis testis (post-embryonic mouse) @@ -61660,8 +58210,7 @@ - tunica albuginea of testis (post-embryonic mouse) - MA:0003254 + tunica albuginea of testis (post-embryonic mouse) @@ -61680,8 +58229,7 @@ - crus of penis (post-embryonic mouse) - MA:0003255 + crus of penis (post-embryonic mouse) @@ -61700,34 +58248,7 @@ - male inguinal canal (post-embryonic mouse) - MA:0003256 - - - - - - - - - - - - - - - - - - - - - - - - - MA:ENTITY - MA entity + male inguinal canal (post-embryonic mouse) @@ -61942,12 +58463,6 @@ - - - - - - @@ -62542,12 +59057,6 @@ - - - - - - @@ -68488,12 +64997,6 @@ - - - - - - @@ -70696,12 +67199,6 @@ - - - - - - @@ -70780,12 +67277,6 @@ - - - - - - @@ -70906,12 +67397,6 @@ - - - - - - @@ -70930,12 +67415,6 @@ - - - - - - @@ -73264,12 +69743,6 @@ - - - - - - @@ -74524,12 +70997,6 @@ - - - - - - @@ -76588,12 +73055,6 @@ - - - - - - @@ -77416,12 +73877,6 @@ - - - - - - @@ -78832,12 +75287,6 @@ - - - - - - @@ -79786,12 +76235,6 @@ - - - - - - @@ -80035,9 +76478,35 @@ + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/ontology/bridge/uberon-bridge-to-mmusdv.obo b/src/ontology/bridge/uberon-bridge-to-mmusdv.obo deleted file mode 100644 index 807186431c..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-mmusdv.obo +++ /dev/null @@ -1,199 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-mmusdv -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: MmusDv:0000002 ! -property_value: IAO:0000589 "embryo stage (MmusDv)" xsd:string -intersection_of: UBERON:0000068 ! embryo stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000001 ! -property_value: IAO:0000589 "life cycle (MmusDv)" xsd:string -intersection_of: UBERON:0000104 ! life cycle -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000000 ! -property_value: IAO:0000589 "life cycle stage (MmusDv)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000004 ! -property_value: IAO:0000589 "cleavage stage (MmusDv)" xsd:string -intersection_of: UBERON:0000107 ! cleavage stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000007 ! -property_value: IAO:0000589 "blastula stage (MmusDv)" xsd:string -intersection_of: UBERON:0000108 ! blastula stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000013 ! -property_value: IAO:0000589 "gastrula stage (MmusDv)" xsd:string -intersection_of: UBERON:0000109 ! gastrula stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000017 ! -property_value: IAO:0000589 "neurula stage (MmusDv)" xsd:string -intersection_of: UBERON:0000110 ! neurula stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000018 ! -property_value: IAO:0000589 "organogenesis stage (MmusDv)" xsd:string -intersection_of: UBERON:0000111 ! organogenesis stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000043 ! -property_value: IAO:0000589 "sexually immature stage (MmusDv)" xsd:string -intersection_of: UBERON:0000112 ! sexually immature stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000110 ! -property_value: IAO:0000589 "post-juvenile adult stage (MmusDv)" xsd:string -intersection_of: UBERON:0000113 ! post-juvenile adult stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000031 ! -property_value: IAO:0000589 "late embryonic stage (MmusDv)" xsd:string -intersection_of: UBERON:0007220 ! late embryonic stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:0000096 ! -property_value: IAO:0000589 "neonate stage (MmusDv)" xsd:string -intersection_of: UBERON:0007221 ! neonate stage -intersection_of: occurs_in NCBITaxon:10090 - -[Term] -id: MmusDv:ENTITY -name: MmusDv entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:10090 -relationship: only_in_taxon NCBITaxon:10090 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-mmusdv.owl b/src/ontology/bridge/uberon-bridge-to-mmusdv.owl index 72d7547639..d761479a22 100644 --- a/src/ontology/bridge/uberon-bridge-to-mmusdv.owl +++ b/src/ontology/bridge/uberon-bridge-to-mmusdv.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -339,8 +72,7 @@ - life cycle stage (MmusDv) - MmusDv:0000000 + life cycle stage (mouse) @@ -359,8 +91,7 @@ - life cycle (MmusDv) - MmusDv:0000001 + life cycle (mouse) @@ -379,8 +110,7 @@ - embryo stage (MmusDv) - MmusDv:0000002 + embryo stage (mouse) @@ -399,8 +129,7 @@ - cleavage stage (MmusDv) - MmusDv:0000004 + cleavage stage (mouse) @@ -419,8 +148,7 @@ - blastula stage (MmusDv) - MmusDv:0000007 + blastula stage (mouse) @@ -439,8 +167,7 @@ - gastrula stage (MmusDv) - MmusDv:0000013 + gastrula stage (mouse) @@ -459,8 +186,7 @@ - neurula stage (MmusDv) - MmusDv:0000017 + neurula stage (mouse) @@ -479,8 +205,7 @@ - organogenesis stage (MmusDv) - MmusDv:0000018 + organogenesis stage (mouse) @@ -499,8 +224,7 @@ - late embryonic stage (MmusDv) - MmusDv:0000031 + late embryonic stage (mouse) @@ -519,8 +243,7 @@ - sexually immature stage (MmusDv) - MmusDv:0000043 + sexually immature stage (mouse) @@ -539,8 +262,7 @@ - neonate stage (MmusDv) - MmusDv:0000096 + neonate stage (mouse) @@ -559,34 +281,7 @@ - post-juvenile adult stage (MmusDv) - MmusDv:0000110 - - - - - - - - - - - - - - - - - - - - - - - - - MmusDv:ENTITY - MmusDv entity + post-juvenile adult stage (mouse) @@ -657,12 +352,6 @@ - - - - - - @@ -676,5 +365,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-ncit.obo b/src/ontology/bridge/uberon-bridge-to-ncit.obo deleted file mode 100644 index 1085c77566..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-ncit.obo +++ /dev/null @@ -1,13041 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-ncit -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: NCIT:C12311 ! -property_value: IAO:0000589 "uterine cervix (NCIT)" xsd:string -is_a: UBERON:0000002 ! uterine cervix - -[Term] -id: NCIT:C12756 ! -property_value: IAO:0000589 "nose (NCIT)" xsd:string -is_a: UBERON:0000004 ! nose - -[Term] -id: NCIT:C12608 ! -property_value: IAO:0000589 "islet of Langerhans (NCIT)" xsd:string -is_a: UBERON:0000006 ! islet of Langerhans - -[Term] -id: NCIT:C12399 ! -property_value: IAO:0000589 "pituitary gland (NCIT)" xsd:string -is_a: UBERON:0000007 ! pituitary gland - -[Term] -id: NCIT:C13167 ! -property_value: IAO:0000589 "submucosa (NCIT)" xsd:string -is_a: UBERON:0000009 ! submucosa - -[Term] -id: NCIT:C12465 ! -property_value: IAO:0000589 "peripheral nervous system (NCIT)" xsd:string -is_a: UBERON:0000010 ! peripheral nervous system - -[Term] -id: NCIT:C12764 ! -property_value: IAO:0000589 "parasympathetic nervous system (NCIT)" xsd:string -is_a: UBERON:0000011 ! parasympathetic nervous system - -[Term] -id: NCIT:C12795 ! -property_value: IAO:0000589 "sympathetic nervous system (NCIT)" xsd:string -is_a: UBERON:0000013 ! sympathetic nervous system - -[Term] -id: NCIT:C32509 ! -property_value: IAO:0000589 "endocrine pancreas (NCIT)" xsd:string -is_a: UBERON:0000016 ! endocrine pancreas - -[Term] -id: NCIT:C32546 ! -property_value: IAO:0000589 "exocrine pancreas (NCIT)" xsd:string -is_a: UBERON:0000017 ! exocrine pancreas - -[Term] -id: NCIT:C12401 ! -property_value: IAO:0000589 "camera-type eye (NCIT)" xsd:string -is_a: UBERON:0000019 ! camera-type eye - -[Term] -id: NCIT:C33224 ! -property_value: IAO:0000589 "sense organ (NCIT)" xsd:string -is_a: UBERON:0000020 ! sense organ - -[Term] -id: NCIT:C61460 ! -property_value: IAO:0000589 "appendage (NCIT)" xsd:string -is_a: UBERON:0000026 ! appendage - -[Term] -id: NCIT:C12745 ! -property_value: IAO:0000589 "lymph node (NCIT)" xsd:string -is_a: UBERON:0000029 ! lymph node - -[Term] -id: NCIT:C33027 ! -property_value: IAO:0000589 "lymph node (NCIT)" xsd:string -is_a: UBERON:0000029 ! lymph node - -[Term] -id: NCIT:C32918 ! -property_value: IAO:0000589 "lamina propria (NCIT)" xsd:string -is_a: UBERON:0000030 ! lamina propria - -[Term] -id: NCIT:C49305 ! -property_value: IAO:0000589 "lamina propria of trachea (NCIT)" xsd:string -is_a: UBERON:0000031 ! lamina propria of trachea - -[Term] -id: NCIT:C12419 ! -property_value: IAO:0000589 "head (NCIT)" xsd:string -is_a: UBERON:0000033 ! head - -[Term] -id: NCIT:C32692 ! -property_value: IAO:0000589 "tertiary ovarian follicle (NCIT)" xsd:string -is_a: UBERON:0000037 ! tertiary ovarian follicle - -[Term] -id: NCIT:C52556 ! -property_value: IAO:0000589 "follicular fluid (NCIT)" xsd:string -is_a: UBERON:0000038 ! follicular fluid - -[Term] -id: NCIT:C13169 ! -property_value: IAO:0000589 "serous membrane (NCIT)" xsd:string -is_a: UBERON:0000042 ! serous membrane - -[Term] -id: NCIT:C13045 ! -property_value: IAO:0000589 "tendon (NCIT)" xsd:string -is_a: UBERON:0000043 ! tendon - -[Term] -id: NCIT:C12462 ! -property_value: IAO:0000589 "dorsal root ganglion (NCIT)" xsd:string -is_a: UBERON:0000044 ! dorsal root ganglion - -[Term] -id: NCIT:C12719 ! -property_value: IAO:0000589 "ganglion (NCIT)" xsd:string -is_a: UBERON:0000045 ! ganglion - -[Term] -id: NCIT:C33848 ! -property_value: IAO:0000589 "fornix of vagina (NCIT)" xsd:string -is_a: UBERON:0000051 ! fornix of vagina - -[Term] -id: NCIT:C32289 ! -property_value: IAO:0000589 "fornix of brain (NCIT)" xsd:string -is_a: UBERON:0000052 ! fornix of brain - -[Term] -id: NCIT:C26464 ! -property_value: IAO:0000589 "macula lutea (NCIT)" xsd:string -is_a: UBERON:0000053 ! macula lutea - -[Term] -id: NCIT:C33044 ! -property_value: IAO:0000589 "macula lutea (NCIT)" xsd:string -is_a: UBERON:0000053 ! macula lutea - -[Term] -id: NCIT:C12416 ! -property_value: IAO:0000589 "ureter (NCIT)" xsd:string -is_a: UBERON:0000056 ! ureter - -[Term] -id: NCIT:C12417 ! -property_value: IAO:0000589 "urethra (NCIT)" xsd:string -is_a: UBERON:0000057 ! urethra - -[Term] -id: NCIT:C12948 ! -property_value: IAO:0000589 "duct (NCIT)" xsd:string -is_a: UBERON:0000058 ! duct - -[Term] -id: NCIT:C12379 ! -property_value: IAO:0000589 "large intestine (NCIT)" xsd:string -is_a: UBERON:0000059 ! large intestine - -[Term] -id: NCIT:C13018 ! -property_value: IAO:0000589 "organ (NCIT)" xsd:string -is_a: UBERON:0000062 ! organ - -[Term] -id: NCIT:C13040 ! -property_value: IAO:0000589 "regional part of nervous system (NCIT)" xsd:string -is_a: UBERON:0000073 ! regional part of nervous system - -[Term] -id: NCIT:C13250 ! -property_value: IAO:0000589 "renal glomerulus (NCIT)" xsd:string -is_a: UBERON:0000074 ! renal glomerulus - -[Term] -id: NCIT:C34076 ! -property_value: IAO:0000589 "subdivision of skeletal system (NCIT)" xsd:string -is_a: UBERON:0000075 ! subdivision of skeletal system - -[Term] -id: NCIT:C34309 ! -property_value: IAO:0000589 "external ectoderm (NCIT)" xsd:string -is_a: UBERON:0000076 ! external ectoderm - -[Term] -id: NCIT:C12722 ! -property_value: IAO:0000589 "male reproductive system (NCIT)" xsd:string -is_a: UBERON:0000079 ! male reproductive system - -[Term] -id: NCIT:C26467 ! -property_value: IAO:0000589 "mesonephros (NCIT)" xsd:string -is_a: UBERON:0000080 ! mesonephros - -[Term] -id: NCIT:C34209 ! -property_value: IAO:0000589 "metanephros (NCIT)" xsd:string -is_a: UBERON:0000081 ! metanephros - -[Term] -id: NCIT:C12415 ! -property_value: IAO:0000589 "adult mammalian kidney (NCIT)" xsd:string -is_a: UBERON:0000082 ! adult mammalian kidney - -[Term] -id: NCIT:C34207 ! -property_value: IAO:0000589 "ureteric bud (NCIT)" xsd:string -is_a: UBERON:0000084 ! ureteric bud - -[Term] -id: NCIT:C34212 ! -property_value: IAO:0000589 "morula (NCIT)" xsd:string -is_a: UBERON:0000085 ! morula - -[Term] -id: NCIT:C33896 ! -property_value: IAO:0000589 "zona pellucida (NCIT)" xsd:string -is_a: UBERON:0000086 ! zona pellucida - -[Term] -id: NCIT:C13740 ! -property_value: IAO:0000589 "inner cell mass (NCIT)" xsd:string -is_a: UBERON:0000087 ! inner cell mass - -[Term] -id: NCIT:C93292 ! -property_value: IAO:0000589 "trophoblast (NCIT)" xsd:string -is_a: UBERON:0000088 ! trophoblast - -[Term] -id: NCIT:C34190 ! -property_value: IAO:0000589 "hypoblast (generic) (NCIT)" xsd:string -is_a: UBERON:0000089 ! hypoblast (generic) - -[Term] -id: NCIT:C34112 ! -property_value: IAO:0000589 "bilaminar disc (NCIT)" xsd:string -is_a: UBERON:0000091 ! bilaminar disc - -[Term] -id: NCIT:C34021 ! -property_value: IAO:0000589 "lobe of lung (NCIT)" xsd:string -is_a: UBERON:0000101 ! lobe of lung - -[Term] -id: NCIT:C12601 ! -property_value: IAO:0000589 "zygote stage (NCIT)" xsd:string -is_a: UBERON:0000106 ! zygote stage - -[Term] -id: NCIT:C34260 ! -property_value: IAO:0000589 "lung bud (NCIT)" xsd:string -is_a: UBERON:0000118 ! lung bud - -[Term] -id: NCIT:C34282 ! -property_value: IAO:0000589 "lung bud (NCIT)" xsd:string -is_a: UBERON:0000118 ! lung bud - -[Term] -id: NCIT:C66831 ! -property_value: IAO:0000589 "cell layer (NCIT)" xsd:string -is_a: UBERON:0000119 ! cell layer - -[Term] -id: NCIT:C13194 ! -property_value: IAO:0000589 "blood brain barrier (NCIT)" xsd:string -is_a: UBERON:0000120 ! blood brain barrier - -[Term] -id: NCIT:C33302 ! -property_value: IAO:0000589 "perineurium (NCIT)" xsd:string -is_a: UBERON:0000121 ! perineurium - -[Term] -id: NCIT:C41407 ! -property_value: IAO:0000589 "perineurium (NCIT)" xsd:string -is_a: UBERON:0000121 ! perineurium - -[Term] -id: NCIT:C32518 ! -property_value: IAO:0000589 "endoneurium (NCIT)" xsd:string -is_a: UBERON:0000123 ! endoneurium - -[Term] -id: NCIT:C32528 ! -property_value: IAO:0000589 "epineurium (NCIT)" xsd:string -is_a: UBERON:0000124 ! epineurium - -[Term] -id: NCIT:C13197 ! -property_value: IAO:0000589 "neural nucleus (NCIT)" xsd:string -is_a: UBERON:0000125 ! neural nucleus - -[Term] -id: NCIT:C12898 ! -property_value: IAO:0000589 "facial nucleus (NCIT)" xsd:string -is_a: UBERON:0000127 ! facial nucleus - -[Term] -id: NCIT:C12749 ! -property_value: IAO:0000589 "membranous layer (NCIT)" xsd:string -is_a: UBERON:0000158 ! membranous layer - -[Term] -id: NCIT:C12375 ! -property_value: IAO:0000589 "anal canal (NCIT)" xsd:string -is_a: UBERON:0000159 ! anal canal - -[Term] -id: NCIT:C12736 ! -property_value: IAO:0000589 "intestine (NCIT)" xsd:string -is_a: UBERON:0000160 ! intestine - -[Term] -id: NCIT:C34127 ! -property_value: IAO:0000589 "cloaca (NCIT)" xsd:string -is_a: UBERON:0000162 ! cloaca - -[Term] -id: NCIT:C34322 ! -property_value: IAO:0000589 "primitive urogenital sinus (NCIT)" xsd:string -is_a: UBERON:0000164 ! primitive urogenital sinus - -[Term] -id: NCIT:C12421 ! -property_value: IAO:0000589 "oral cavity (NCIT)" xsd:string -is_a: UBERON:0000167 ! oral cavity - -[Term] -id: NCIT:C77666 ! -property_value: IAO:0000589 "vomit (NCIT)" xsd:string -is_a: UBERON:0000172 ! vomit - -[Term] -id: NCIT:C13188 ! -property_value: IAO:0000589 "amniotic fluid (NCIT)" xsd:string -is_a: UBERON:0000173 ! amniotic fluid - -[Term] -id: NCIT:C12434 ! -property_value: IAO:0000589 "blood (NCIT)" xsd:string -is_a: UBERON:0000178 ! blood - -[Term] -id: NCIT:C93028 ! -property_value: IAO:0000589 "lateral lumbar region of abdomen (NCIT)" xsd:string -is_a: UBERON:0000180 ! lateral lumbar region of abdomen - -[Term] -id: NCIT:C32290 ! -property_value: IAO:0000589 "gyrus (NCIT)" xsd:string -is_a: UBERON:0000200 ! gyrus - -[Term] -id: NCIT:C32635 ! -property_value: IAO:0000589 "tetrapod frontal bone (NCIT)" xsd:string -is_a: UBERON:0000209 ! tetrapod frontal bone - -[Term] -id: NCIT:C12766 ! -property_value: IAO:0000589 "tetrapod parietal bone (NCIT)" xsd:string -is_a: UBERON:0000210 ! tetrapod parietal bone - -[Term] -id: NCIT:C13046 ! -property_value: IAO:0000589 "ligament (NCIT)" xsd:string -is_a: UBERON:0000211 ! ligament - -[Term] -id: NCIT:C32158 ! -property_value: IAO:0000589 "atlanto-occipital joint (NCIT)" xsd:string -is_a: UBERON:0000220 ! atlanto-occipital joint - -[Term] -id: NCIT:C34102 ! -property_value: IAO:0000589 "amniotic cavity (NCIT)" xsd:string -is_a: UBERON:0000301 ! amniotic cavity - -[Term] -id: NCIT:C96299 ! -property_value: IAO:0000589 "tendon sheath (NCIT)" xsd:string -is_a: UBERON:0000304 ! tendon sheath - -[Term] -id: NCIT:C12365 ! -property_value: IAO:0000589 "amnion (NCIT)" xsd:string -is_a: UBERON:0000305 ! amnion - -[Term] -id: NCIT:C12971 ! -property_value: IAO:0000589 "breast (NCIT)" xsd:string -is_a: UBERON:0000310 ! breast - -[Term] -id: NCIT:C33919 ! -property_value: IAO:0000589 "cytotrophoblast (NCIT)" xsd:string -is_a: UBERON:0000319 ! cytotrophoblast - -[Term] -id: NCIT:C13235 ! -property_value: IAO:0000589 "late embryo (NCIT)" xsd:string -is_a: UBERON:0000323 ! late embryo - -[Term] -id: NCIT:C32707 ! -property_value: IAO:0000589 "hair root (NCIT)" xsd:string -is_a: UBERON:0000329 ! hair root - -[Term] -id: NCIT:C32711 ! -property_value: IAO:0000589 "hair root (NCIT)" xsd:string -is_a: UBERON:0000329 ! hair root - -[Term] -id: NCIT:C54272 ! -property_value: IAO:0000589 "throat (NCIT)" xsd:string -is_a: UBERON:0000341 ! throat - -[Term] -id: NCIT:C13166 ! -property_value: IAO:0000589 "mucosa (NCIT)" xsd:string -is_a: UBERON:0000344 ! mucosa - -[Term] -id: NCIT:C13261 ! -property_value: IAO:0000589 "entire myelin sheath (NCIT)" xsd:string -is_a: UBERON:0000347 ! entire myelin sheath - -[Term] -id: NCIT:C33215 ! -property_value: IAO:0000589 "ophthalmic nerve (NCIT)" xsd:string -is_a: UBERON:0000348 ! ophthalmic nerve - -[Term] -id: NCIT:C94541 ! -property_value: IAO:0000589 "limbic system (NCIT)" xsd:string -is_a: UBERON:0000349 ! limbic system - -[Term] -id: NCIT:C74601 ! -property_value: IAO:0000589 "parenchyma (NCIT)" xsd:string -is_a: UBERON:0000353 ! parenchyma - -[Term] -id: NCIT:C13739 ! -property_value: IAO:0000589 "blastocyst (NCIT)" xsd:string -is_a: UBERON:0000358 ! blastocyst - -[Term] -id: NCIT:C22174 ! -property_value: IAO:0000589 "preputial gland (NCIT)" xsd:string -is_a: UBERON:0000359 ! preputial gland - -[Term] -id: NCIT:C12740 ! -property_value: IAO:0000589 "renal medulla (NCIT)" xsd:string -is_a: UBERON:0000362 ! renal medulla - -[Term] -id: NCIT:C12780 ! -property_value: IAO:0000589 "reticuloendothelial system (NCIT)" xsd:string -is_a: UBERON:0000363 ! reticuloendothelial system - -[Term] -id: NCIT:C12884 ! -property_value: IAO:0000589 "urothelium (NCIT)" xsd:string -is_a: UBERON:0000365 ! urothelium - -[Term] -id: NCIT:C13318 ! -property_value: IAO:0000589 "urothelium (NCIT)" xsd:string -is_a: UBERON:0000365 ! urothelium - -[Term] -id: NCIT:C12448 ! -property_value: IAO:0000589 "corpus striatum (NCIT)" xsd:string -is_a: UBERON:0000369 ! corpus striatum - -[Term] -id: NCIT:C33918 ! -property_value: IAO:0000589 "syncytiotrophoblast (NCIT)" xsd:string -is_a: UBERON:0000371 ! syncytiotrophoblast - -[Term] -id: NCIT:C32779 ! -property_value: IAO:0000589 "mandibular nerve (NCIT)" xsd:string -is_a: UBERON:0000375 ! mandibular nerve - -[Term] -id: NCIT:C33763 ! -property_value: IAO:0000589 "hindlimb stylopod (NCIT)" xsd:string -is_a: UBERON:0000376 ! hindlimb stylopod - -[Term] -id: NCIT:C49301 ! -property_value: IAO:0000589 "tongue muscle (NCIT)" xsd:string -is_a: UBERON:0000378 ! tongue muscle - -[Term] -id: NCIT:C52707 ! -property_value: IAO:0000589 "tongue muscle (NCIT)" xsd:string -is_a: UBERON:0000378 ! tongue muscle - -[Term] -id: NCIT:C62404 ! -property_value: IAO:0000589 "urinary bladder detrusor smooth muscle (NCIT)" xsd:string -is_a: UBERON:0000381 ! urinary bladder detrusor smooth muscle - -[Term] -id: NCIT:C32132 ! -property_value: IAO:0000589 "apocrine sweat gland (NCIT)" xsd:string -is_a: UBERON:0000382 ! apocrine sweat gland - -[Term] -id: NCIT:C33096 ! -property_value: IAO:0000589 "meniscus (NCIT)" xsd:string -is_a: UBERON:0000387 ! meniscus - -[Term] -id: NCIT:C12709 ! -property_value: IAO:0000589 "epiglottis (NCIT)" xsd:string -is_a: UBERON:0000388 ! epiglottis - -[Term] -id: NCIT:C32979 ! -property_value: IAO:0000589 "leptomeninx (NCIT)" xsd:string -is_a: UBERON:0000391 ! leptomeninx - -[Term] -id: NCIT:C32322 ! -property_value: IAO:0000589 "vallate papilla (NCIT)" xsd:string -is_a: UBERON:0000396 ! vallate papilla - -[Term] -id: NCIT:C89807 ! -property_value: IAO:0000589 "scalp (NCIT)" xsd:string -is_a: UBERON:0000403 ! scalp - -[Term] -id: NCIT:C32710 ! -property_value: IAO:0000589 "dermal papilla (NCIT)" xsd:string -is_a: UBERON:0000412 ! dermal papilla - -[Term] -id: NCIT:C83189 ! -property_value: IAO:0000589 "dermal papilla (NCIT)" xsd:string -is_a: UBERON:0000412 ! dermal papilla - -[Term] -id: NCIT:C32490 ! -property_value: IAO:0000589 "eccrine sweat gland (NCIT)" xsd:string -is_a: UBERON:0000423 ! eccrine sweat gland - -[Term] -id: NCIT:C32659 ! -property_value: IAO:0000589 "gastric pit (NCIT)" xsd:string -is_a: UBERON:0000424 ! gastric pit - -[Term] -id: NCIT:C13103 ! -property_value: IAO:0000589 "prostate epithelium (NCIT)" xsd:string -is_a: UBERON:0000428 ! prostate epithelium - -[Term] -id: NCIT:C52697 ! -property_value: IAO:0000589 "right testicular vein (NCIT)" xsd:string -is_a: UBERON:0000442 ! right testicular vein - -[Term] -id: NCIT:C52696 ! -property_value: IAO:0000589 "left testicular vein (NCIT)" xsd:string -is_a: UBERON:0000443 ! left testicular vein - -[Term] -id: NCIT:C33040 ! -property_value: IAO:0000589 "lymphoid follicle (NCIT)" xsd:string -is_a: UBERON:0000444 ! lymphoid follicle - -[Term] -id: NCIT:C32426 ! -property_value: IAO:0000589 "decidua basalis (NCIT)" xsd:string -is_a: UBERON:0000453 ! decidua basalis - -[Term] -id: NCIT:C98712 ! -property_value: IAO:0000589 "cerebral subcortex (NCIT)" xsd:string -is_a: UBERON:0000454 ! cerebral subcortex - -[Term] -id: NCIT:C34062 ! -property_value: IAO:0000589 "secretion of exocrine gland (NCIT)" xsd:string -is_a: UBERON:0000456 ! secretion of exocrine gland - -[Term] -id: NCIT:C12309 ! -property_value: IAO:0000589 "endocervix (NCIT)" xsd:string -is_a: UBERON:0000458 ! endocervix - -[Term] -id: NCIT:C12675 ! -property_value: IAO:0000589 "major vestibular gland (NCIT)" xsd:string -is_a: UBERON:0000460 ! major vestibular gland - -[Term] -id: NCIT:C61122 ! -property_value: IAO:0000589 "minor vestibular gland (NCIT)" xsd:string -is_a: UBERON:0000461 ! minor vestibular gland - -[Term] -id: NCIT:C13236 ! -property_value: IAO:0000589 "organism substance (NCIT)" xsd:string -is_a: UBERON:0000463 ! organism substance - -[Term] -id: NCIT:C94478 ! -property_value: IAO:0000589 "anatomical space (NCIT)" xsd:string -is_a: UBERON:0000464 ! anatomical space - -[Term] -id: NCIT:C12919 ! -property_value: IAO:0000589 "anatomical system (NCIT)" xsd:string -is_a: UBERON:0000467 ! anatomical system - -[Term] -id: NCIT:C13041 ! -property_value: IAO:0000589 "multicellular organism (NCIT)" xsd:string -is_a: UBERON:0000468 ! multicellular organism - -[Term] -id: NCIT:C12412 ! -property_value: IAO:0000589 "testis (NCIT)" xsd:string -is_a: UBERON:0000473 ! testis - -[Term] -id: NCIT:C12402 ! -property_value: IAO:0000589 "female reproductive system (NCIT)" xsd:string -is_a: UBERON:0000474 ! female reproductive system - -[Term] -id: NCIT:C32221 ! -property_value: IAO:0000589 "organism subdivision (NCIT)" xsd:string -is_a: UBERON:0000475 ! organism subdivision - -[Term] -id: NCIT:C34055 ! -property_value: IAO:0000589 "extraembryonic structure (NCIT)" xsd:string -is_a: UBERON:0000478 ! extraembryonic structure - -[Term] -id: NCIT:C12801 ! -property_value: IAO:0000589 "tissue (NCIT)" xsd:string -is_a: UBERON:0000479 ! tissue - -[Term] -id: NCIT:C32186 ! -property_value: IAO:0000589 "basal lamina of epithelium (NCIT)" xsd:string -is_a: UBERON:0000482 ! basal lamina of epithelium - -[Term] -id: NCIT:C12710 ! -property_value: IAO:0000589 "epithelium (NCIT)" xsd:string -is_a: UBERON:0000483 ! epithelium - -[Term] -id: NCIT:C33553 ! -property_value: IAO:0000589 "simple cuboidal epithelium (NCIT)" xsd:string -is_a: UBERON:0000484 ! simple cuboidal epithelium - -[Term] -id: NCIT:C33552 ! -property_value: IAO:0000589 "simple columnar epithelium (NCIT)" xsd:string -is_a: UBERON:0000485 ! simple columnar epithelium - -[Term] -id: NCIT:C33622 ! -property_value: IAO:0000589 "multilaminar epithelium (NCIT)" xsd:string -is_a: UBERON:0000486 ! multilaminar epithelium - -[Term] -id: NCIT:C13178 ! -property_value: IAO:0000589 "simple squamous epithelium (NCIT)" xsd:string -is_a: UBERON:0000487 ! simple squamous epithelium - -[Term] -id: NCIT:C33554 ! -property_value: IAO:0000589 "unilaminar epithelium (NCIT)" xsd:string -is_a: UBERON:0000490 ! unilaminar epithelium - -[Term] -id: NCIT:C13066 ! -property_value: IAO:0000589 "ileocecal valve (NCIT)" xsd:string -is_a: UBERON:0000569 ! ileocecal valve - -[Term] -id: NCIT:C93166 ! -property_value: IAO:0000589 "chyle (NCIT)" xsd:string -is_a: UBERON:0000911 ! chyle - -[Term] -id: NCIT:C13259 ! -property_value: IAO:0000589 "mucus (NCIT)" xsd:string -is_a: UBERON:0000912 ! mucus - -[Term] -id: NCIT:C120839 ! -property_value: IAO:0000589 "interstitial fluid (NCIT)" xsd:string -is_a: UBERON:0000913 ! interstitial fluid - -[Term] -id: NCIT:C28147 ! -property_value: IAO:0000589 "embryo (NCIT)" xsd:string -is_a: UBERON:0000922 ! embryo - -[Term] -id: NCIT:C12950 ! -property_value: IAO:0000589 "germ layer (NCIT)" xsd:string -is_a: UBERON:0000923 ! germ layer - -[Term] -id: NCIT:C54105 ! -property_value: IAO:0000589 "germ layer (NCIT)" xsd:string -is_a: UBERON:0000923 ! germ layer - -[Term] -id: NCIT:C12703 ! -property_value: IAO:0000589 "ectoderm (NCIT)" xsd:string -is_a: UBERON:0000924 ! ectoderm - -[Term] -id: NCIT:C12706 ! -property_value: IAO:0000589 "endoderm (NCIT)" xsd:string -is_a: UBERON:0000925 ! endoderm - -[Term] -id: NCIT:C12750 ! -property_value: IAO:0000589 "mesoderm (NCIT)" xsd:string -is_a: UBERON:0000926 ! mesoderm - -[Term] -id: NCIT:C34306 ! -property_value: IAO:0000589 "stomodeum (NCIT)" xsd:string -is_a: UBERON:0000930 ! stomodeum - -[Term] -id: NCIT:C34278 ! -property_value: IAO:0000589 "proctodeum (NCIT)" xsd:string -is_a: UBERON:0000931 ! proctodeum - -[Term] -id: NCIT:C13075 ! -property_value: IAO:0000589 "chordate pharyngeal muscle (NCIT)" xsd:string -is_a: UBERON:0000933 ! chordate pharyngeal muscle - -[Term] -id: NCIT:C32086 ! -property_value: IAO:0000589 "anterior commissure (NCIT)" xsd:string -is_a: UBERON:0000935 ! anterior commissure - -[Term] -id: NCIT:C33356 ! -property_value: IAO:0000589 "posterior commissure (NCIT)" xsd:string -is_a: UBERON:0000936 ! posterior commissure - -[Term] -id: NCIT:C12761 ! -property_value: IAO:0000589 "cranial nerve II (NCIT)" xsd:string -is_a: UBERON:0000941 ! cranial nerve II - -[Term] -id: NCIT:C32638 ! -property_value: IAO:0000589 "frontal nerve (branch of ophthalmic) (NCIT)" xsd:string -is_a: UBERON:0000942 ! frontal nerve (branch of ophthalmic) - -[Term] -id: NCIT:C12391 ! -property_value: IAO:0000589 "stomach (NCIT)" xsd:string -is_a: UBERON:0000945 ! stomach - -[Term] -id: NCIT:C12729 ! -property_value: IAO:0000589 "cardiac valve (NCIT)" xsd:string -is_a: UBERON:0000946 ! cardiac valve - -[Term] -id: NCIT:C12669 ! -property_value: IAO:0000589 "aorta (NCIT)" xsd:string -is_a: UBERON:0000947 ! aorta - -[Term] -id: NCIT:C12727 ! -property_value: IAO:0000589 "heart (NCIT)" xsd:string -is_a: UBERON:0000948 ! heart - -[Term] -id: NCIT:C12705 ! -property_value: IAO:0000589 "endocrine system (NCIT)" xsd:string -is_a: UBERON:0000949 ! endocrine system - -[Term] -id: NCIT:C52935 ! -property_value: IAO:0000589 "gracilis (NCIT)" xsd:string -is_a: UBERON:0000950 ! gracilis - -[Term] -id: NCIT:C12439 ! -property_value: IAO:0000589 "brain (NCIT)" xsd:string -is_a: UBERON:0000955 ! brain - -[Term] -id: NCIT:C12443 ! -property_value: IAO:0000589 "cerebral cortex (NCIT)" xsd:string -is_a: UBERON:0000956 ! cerebral cortex - -[Term] -id: NCIT:C90609 ! -property_value: IAO:0000589 "optic chiasma (NCIT)" xsd:string -is_a: UBERON:0000959 ! optic chiasma - -[Term] -id: NCIT:C52829 ! -property_value: IAO:0000589 "thoracic ganglion (NCIT)" xsd:string -is_a: UBERON:0000961 ! thoracic ganglion - -[Term] -id: NCIT:C32299 ! -property_value: IAO:0000589 "nerve of cervical vertebra (NCIT)" xsd:string -is_a: UBERON:0000962 ! nerve of cervical vertebra - -[Term] -id: NCIT:C12342 ! -property_value: IAO:0000589 "cornea (NCIT)" xsd:string -is_a: UBERON:0000964 ! cornea - -[Term] -id: NCIT:C12743 ! -property_value: IAO:0000589 "lens of camera-type eye (NCIT)" xsd:string -is_a: UBERON:0000965 ! lens of camera-type eye - -[Term] -id: NCIT:C12343 ! -property_value: IAO:0000589 "retina (NCIT)" xsd:string -is_a: UBERON:0000966 ! retina - -[Term] -id: NCIT:C13063 ! -property_value: IAO:0000589 "neck (NCIT)" xsd:string -is_a: UBERON:0000974 ! neck - -[Term] -id: NCIT:C12793 ! -property_value: IAO:0000589 "sternum (NCIT)" xsd:string -is_a: UBERON:0000975 ! sternum - -[Term] -id: NCIT:C12731 ! -property_value: IAO:0000589 "humerus (NCIT)" xsd:string -is_a: UBERON:0000976 ! humerus - -[Term] -id: NCIT:C12469 ! -property_value: IAO:0000589 "pleura (NCIT)" xsd:string -is_a: UBERON:0000977 ! pleura - -[Term] -id: NCIT:C12800 ! -property_value: IAO:0000589 "tibia (NCIT)" xsd:string -is_a: UBERON:0000979 ! tibia - -[Term] -id: NCIT:C33814 ! -property_value: IAO:0000589 "trochanter (NCIT)" xsd:string -is_a: UBERON:0000980 ! trochanter - -[Term] -id: NCIT:C12717 ! -property_value: IAO:0000589 "femur (NCIT)" xsd:string -is_a: UBERON:0000981 ! femur - -[Term] -id: NCIT:C13044 ! -property_value: IAO:0000589 "skeletal joint (NCIT)" xsd:string -is_a: UBERON:0000982 ! skeletal joint - -[Term] -id: NCIT:C32171 ! -property_value: IAO:0000589 "axillary vein (NCIT)" xsd:string -is_a: UBERON:0000985 ! axillary vein - -[Term] -id: NCIT:C12511 ! -property_value: IAO:0000589 "pons (NCIT)" xsd:string -is_a: UBERON:0000988 ! pons - -[Term] -id: NCIT:C12409 ! -property_value: IAO:0000589 "penis (NCIT)" xsd:string -is_a: UBERON:0000989 ! penis - -[Term] -id: NCIT:C12841 ! -property_value: IAO:0000589 "reproductive system (NCIT)" xsd:string -is_a: UBERON:0000990 ! reproductive system - -[Term] -id: NCIT:C12725 ! -property_value: IAO:0000589 "gonad (NCIT)" xsd:string -is_a: UBERON:0000991 ! gonad - -[Term] -id: NCIT:C12404 ! -property_value: IAO:0000589 "ovary (NCIT)" xsd:string -is_a: UBERON:0000992 ! ovary - -[Term] -id: NCIT:C77957 ! -property_value: IAO:0000589 "oviduct (NCIT)" xsd:string -is_a: UBERON:0000993 ! oviduct - -[Term] -id: NCIT:C12405 ! -property_value: IAO:0000589 "uterus (NCIT)" xsd:string -is_a: UBERON:0000995 ! uterus - -[Term] -id: NCIT:C12407 ! -property_value: IAO:0000589 "vagina (NCIT)" xsd:string -is_a: UBERON:0000996 ! vagina - -[Term] -id: NCIT:C12408 ! -property_value: IAO:0000589 "mammalian vulva (NCIT)" xsd:string -is_a: UBERON:0000997 ! mammalian vulva - -[Term] -id: NCIT:C12787 ! -property_value: IAO:0000589 "seminal vesicle (NCIT)" xsd:string -is_a: UBERON:0000998 ! seminal vesicle - -[Term] -id: NCIT:C32493 ! -property_value: IAO:0000589 "ejaculatory duct (NCIT)" xsd:string -is_a: UBERON:0000999 ! ejaculatory duct - -[Term] -id: NCIT:C12813 ! -property_value: IAO:0000589 "vas deferens (NCIT)" xsd:string -is_a: UBERON:0001000 ! vas deferens - -[Term] -id: NCIT:C12708 ! -property_value: IAO:0000589 "skin epidermis (NCIT)" xsd:string -is_a: UBERON:0001003 ! skin epidermis - -[Term] -id: NCIT:C12779 ! -property_value: IAO:0000589 "respiratory system (NCIT)" xsd:string -is_a: UBERON:0001004 ! respiratory system - -[Term] -id: NCIT:C12413 ! -property_value: IAO:0000589 "renal system (NCIT)" xsd:string -is_a: UBERON:0001008 ! renal system - -[Term] -id: NCIT:C120676 ! -property_value: IAO:0000589 "diaphysis of ulna (NCIT)" xsd:string -is_a: UBERON:0001010 ! diaphysis of ulna - -[Term] -id: NCIT:C12472 ! -property_value: IAO:0000589 "adipose tissue (NCIT)" xsd:string -is_a: UBERON:0001013 ! adipose tissue - -[Term] -id: NCIT:C13056 ! -property_value: IAO:0000589 "musculature (NCIT)" xsd:string -is_a: UBERON:0001015 ! musculature - -[Term] -id: NCIT:C12755 ! -property_value: IAO:0000589 "nervous system (NCIT)" xsd:string -is_a: UBERON:0001016 ! nervous system - -[Term] -id: NCIT:C12438 ! -property_value: IAO:0000589 "central nervous system (NCIT)" xsd:string -is_a: UBERON:0001017 ! central nervous system - -[Term] -id: NCIT:C32586 ! -property_value: IAO:0000589 "nerve fasciculus (NCIT)" xsd:string -is_a: UBERON:0001019 ! nerve fasciculus - -[Term] -id: NCIT:C32349 ! -property_value: IAO:0000589 "nervous system commissure (NCIT)" xsd:string -is_a: UBERON:0001020 ! nervous system commissure - -[Term] -id: NCIT:C12466 ! -property_value: IAO:0000589 "nerve (NCIT)" xsd:string -is_a: UBERON:0001021 ! nerve - -[Term] -id: NCIT:C12768 ! -property_value: IAO:0000589 "nerve (NCIT)" xsd:string -is_a: UBERON:0001021 ! nerve - -[Term] -id: NCIT:C120674 ! -property_value: IAO:0000589 "diaphysis of radius (NCIT)" xsd:string -is_a: UBERON:0001028 ! diaphysis of radius - -[Term] -id: NCIT:C33544 ! -property_value: IAO:0000589 "sheath of Schwann (NCIT)" xsd:string -is_a: UBERON:0001031 ! sheath of Schwann - -[Term] -id: NCIT:C32705 ! -property_value: IAO:0000589 "strand of hair (NCIT)" xsd:string -is_a: UBERON:0001037 ! strand of hair - -[Term] -id: NCIT:C14128 ! -property_value: IAO:0000589 "yolk sac (NCIT)" xsd:string -is_a: UBERON:0001040 ! yolk sac - -[Term] -id: NCIT:C34180 ! -property_value: IAO:0000589 "foregut (NCIT)" xsd:string -is_a: UBERON:0001041 ! foregut - -[Term] -id: NCIT:C12425 ! -property_value: IAO:0000589 "chordate pharynx (NCIT)" xsd:string -is_a: UBERON:0001042 ! chordate pharynx - -[Term] -id: NCIT:C12389 ! -property_value: IAO:0000589 "esophagus (NCIT)" xsd:string -is_a: UBERON:0001043 ! esophagus - -[Term] -id: NCIT:C12426 ! -property_value: IAO:0000589 "saliva-secreting gland (NCIT)" xsd:string -is_a: UBERON:0001044 ! saliva-secreting gland - -[Term] -id: NCIT:C34210 ! -property_value: IAO:0000589 "midgut (NCIT)" xsd:string -is_a: UBERON:0001045 ! midgut - -[Term] -id: NCIT:C34188 ! -property_value: IAO:0000589 "hindgut (NCIT)" xsd:string -is_a: UBERON:0001046 ! hindgut - -[Term] -id: NCIT:C34275 ! -property_value: IAO:0000589 "primordium (NCIT)" xsd:string -is_a: UBERON:0001048 ! primordium - -[Term] -id: NCIT:C34226 ! -property_value: IAO:0000589 "neural tube (NCIT)" xsd:string -is_a: UBERON:0001049 ! neural tube - -[Term] -id: NCIT:C12246 ! -property_value: IAO:0000589 "hypopharynx (NCIT)" xsd:string -is_a: UBERON:0001051 ! hypopharynx - -[Term] -id: NCIT:C12390 ! -property_value: IAO:0000589 "rectum (NCIT)" xsd:string -is_a: UBERON:0001052 ! rectum - -[Term] -id: NCIT:C12219 ! -property_value: IAO:0000589 "anatomical entity (NCIT)" xsd:string -is_a: UBERON:0001062 ! anatomical entity - -[Term] -id: NCIT:C12272 ! -property_value: IAO:0000589 "ventral pancreatic duct (NCIT)" xsd:string -is_a: UBERON:0001064 ! ventral pancreatic duct - -[Term] -id: NCIT:C33277 ! -property_value: IAO:0000589 "parotid main excretory duct (NCIT)" xsd:string -is_a: UBERON:0001065 ! parotid main excretory duct - -[Term] -id: NCIT:C49571 ! -property_value: IAO:0000589 "intervertebral disk (NCIT)" xsd:string -is_a: UBERON:0001066 ! intervertebral disk - -[Term] -id: NCIT:C32577 ! -property_value: IAO:0000589 "vertebral arch joint (NCIT)" xsd:string -is_a: UBERON:0001067 ! vertebral arch joint - -[Term] -id: NCIT:C12269 ! -property_value: IAO:0000589 "head of pancreas (NCIT)" xsd:string -is_a: UBERON:0001069 ! head of pancreas - -[Term] -id: NCIT:C32551 ! -property_value: IAO:0000589 "external carotid artery (NCIT)" xsd:string -is_a: UBERON:0001070 ! external carotid artery - -[Term] -id: NCIT:C53005 ! -property_value: IAO:0000589 "superficial cervical artery (NCIT)" xsd:string -is_a: UBERON:0001071 ! superficial cervical artery - -[Term] -id: NCIT:C12815 ! -property_value: IAO:0000589 "posterior vena cava (NCIT)" xsd:string -is_a: UBERON:0001072 ! posterior vena cava - -[Term] -id: NCIT:C38662 ! -property_value: IAO:0000589 "pericardial cavity (NCIT)" xsd:string -is_a: UBERON:0001074 ! pericardial cavity - -[Term] -id: NCIT:C12852 ! -property_value: IAO:0000589 "bony vertebral centrum (NCIT)" xsd:string -is_a: UBERON:0001075 ! bony vertebral centrum - -[Term] -id: NCIT:C116112 ! -property_value: IAO:0000589 "neural spine (NCIT)" xsd:string -is_a: UBERON:0001076 ! neural spine - -[Term] -id: NCIT:C96274 ! -property_value: IAO:0000589 "pedicle of vertebra (NCIT)" xsd:string -is_a: UBERON:0001078 ! pedicle of vertebra - -[Term] -id: NCIT:C52757 ! -property_value: IAO:0000589 "skin of head (NCIT)" xsd:string -is_a: UBERON:0001084 ! skin of head - -[Term] -id: NCIT:C12295 ! -property_value: IAO:0000589 "skin of trunk (NCIT)" xsd:string -is_a: UBERON:0001085 ! skin of trunk - -[Term] -id: NCIT:C13283 ! -property_value: IAO:0000589 "urine (NCIT)" xsd:string -is_a: UBERON:0001088 ! urine - -[Term] -id: NCIT:C13280 ! -property_value: IAO:0000589 "sweat (NCIT)" xsd:string -is_a: UBERON:0001089 ! sweat - -[Term] -id: NCIT:C33718 ! -property_value: IAO:0000589 "synovial fluid (NCIT)" xsd:string -is_a: UBERON:0001090 ! synovial fluid - -[Term] -id: NCIT:C12506 ! -property_value: IAO:0000589 "calcareous tooth (NCIT)" xsd:string -is_a: UBERON:0001091 ! calcareous tooth - -[Term] -id: NCIT:C32239 ! -property_value: IAO:0000589 "vertebral bone 1 (NCIT)" xsd:string -is_a: UBERON:0001092 ! vertebral bone 1 - -[Term] -id: NCIT:C32240 ! -property_value: IAO:0000589 "vertebral bone 2 (NCIT)" xsd:string -is_a: UBERON:0001093 ! vertebral bone 2 - -[Term] -id: NCIT:C12853 ! -property_value: IAO:0000589 "sacral vertebra (NCIT)" xsd:string -is_a: UBERON:0001094 ! sacral vertebra - -[Term] -id: NCIT:C32334 ! -property_value: IAO:0000589 "caudal vertebra (NCIT)" xsd:string -is_a: UBERON:0001095 ! caudal vertebra - -[Term] -id: NCIT:C12904 ! -property_value: IAO:0000589 "axillary lymph node (NCIT)" xsd:string -is_a: UBERON:0001097 ! axillary lymph node - -[Term] -id: NCIT:C32769 ! -property_value: IAO:0000589 "incisor tooth (NCIT)" xsd:string -is_a: UBERON:0001098 ! incisor tooth - -[Term] -id: NCIT:C53121 ! -property_value: IAO:0000589 "subcostal vein (NCIT)" xsd:string -is_a: UBERON:0001099 ! subcostal vein - -[Term] -id: NCIT:C33285 ! -property_value: IAO:0000589 "pectoralis minor (NCIT)" xsd:string -is_a: UBERON:0001100 ! pectoralis minor - -[Term] -id: NCIT:C32562 ! -property_value: IAO:0000589 "external jugular vein (NCIT)" xsd:string -is_a: UBERON:0001101 ! external jugular vein - -[Term] -id: NCIT:C12702 ! -property_value: IAO:0000589 "diaphragm (NCIT)" xsd:string -is_a: UBERON:0001103 ! diaphragm - -[Term] -id: NCIT:C32094 ! -property_value: IAO:0000589 "anterior jugular vein (NCIT)" xsd:string -is_a: UBERON:0001104 ! anterior jugular vein - -[Term] -id: NCIT:C12695 ! -property_value: IAO:0000589 "clavicle bone (NCIT)" xsd:string -is_a: UBERON:0001105 ! clavicle bone - -[Term] -id: NCIT:C32286 ! -property_value: IAO:0000589 "cephalic vein (NCIT)" xsd:string -is_a: UBERON:0001106 ! cephalic vein - -[Term] -id: NCIT:C53044 ! -property_value: IAO:0000589 "sternohyoid muscle (NCIT)" xsd:string -is_a: UBERON:0001107 ! sternohyoid muscle - -[Term] -id: NCIT:C52971 ! -property_value: IAO:0000589 "omohyoid muscle (NCIT)" xsd:string -is_a: UBERON:0001108 ! omohyoid muscle - -[Term] -id: NCIT:C53070 ! -property_value: IAO:0000589 "sternothyroid muscle (NCIT)" xsd:string -is_a: UBERON:0001109 ! sternothyroid muscle - -[Term] -id: NCIT:C53178 ! -property_value: IAO:0000589 "thyrohyoid muscle (NCIT)" xsd:string -is_a: UBERON:0001110 ! thyrohyoid muscle - -[Term] -id: NCIT:C32824 ! -property_value: IAO:0000589 "intercostal muscle (NCIT)" xsd:string -is_a: UBERON:0001111 ! intercostal muscle - -[Term] -id: NCIT:C33150 ! -property_value: IAO:0000589 "latissimus dorsi muscle (NCIT)" xsd:string -is_a: UBERON:0001112 ! latissimus dorsi muscle - -[Term] -id: NCIT:C49579 ! -property_value: IAO:0000589 "lobe of liver (NCIT)" xsd:string -is_a: UBERON:0001113 ! lobe of liver - -[Term] -id: NCIT:C33481 ! -property_value: IAO:0000589 "right lobe of liver (NCIT)" xsd:string -is_a: UBERON:0001114 ! right lobe of liver - -[Term] -id: NCIT:C32965 ! -property_value: IAO:0000589 "left lobe of liver (NCIT)" xsd:string -is_a: UBERON:0001115 ! left lobe of liver - -[Term] -id: NCIT:C33001 ! -property_value: IAO:0000589 "quadrate lobe of liver (NCIT)" xsd:string -is_a: UBERON:0001116 ! quadrate lobe of liver - -[Term] -id: NCIT:C33000 ! -property_value: IAO:0000589 "caudate lobe of liver (NCIT)" xsd:string -is_a: UBERON:0001117 ! caudate lobe of liver - -[Term] -id: NCIT:C33784 ! -property_value: IAO:0000589 "lobe of thyroid gland (NCIT)" xsd:string -is_a: UBERON:0001118 ! lobe of thyroid gland - -[Term] -id: NCIT:C33491 ! -property_value: IAO:0000589 "right lobe of thyroid gland (NCIT)" xsd:string -is_a: UBERON:0001119 ! right lobe of thyroid gland - -[Term] -id: NCIT:C32973 ! -property_value: IAO:0000589 "left lobe of thyroid gland (NCIT)" xsd:string -is_a: UBERON:0001120 ! left lobe of thyroid gland - -[Term] -id: NCIT:C52959 ! -property_value: IAO:0000589 "longus colli muscle (NCIT)" xsd:string -is_a: UBERON:0001121 ! longus colli muscle - -[Term] -id: NCIT:C52986 ! -property_value: IAO:0000589 "scalenus medius (NCIT)" xsd:string -is_a: UBERON:0001122 ! scalenus medius - -[Term] -id: NCIT:C52985 ! -property_value: IAO:0000589 "scalenus posterior (NCIT)" xsd:string -is_a: UBERON:0001123 ! scalenus posterior - -[Term] -id: NCIT:C53014 ! -property_value: IAO:0000589 "serratus ventralis (NCIT)" xsd:string -is_a: UBERON:0001125 ! serratus ventralis - -[Term] -id: NCIT:C53012 ! -property_value: IAO:0000589 "serratus dorsalis superior muscle (NCIT)" xsd:string -is_a: UBERON:0001126 ! serratus dorsalis superior muscle - -[Term] -id: NCIT:C53007 ! -property_value: IAO:0000589 "serratus dorsalis inferior muscle (NCIT)" xsd:string -is_a: UBERON:0001127 ! serratus dorsalis inferior muscle - -[Term] -id: NCIT:C33616 ! -property_value: IAO:0000589 "sternocleidomastoid (NCIT)" xsd:string -is_a: UBERON:0001128 ! sternocleidomastoid - -[Term] -id: NCIT:C33651 ! -property_value: IAO:0000589 "subscapularis muscle (NCIT)" xsd:string -is_a: UBERON:0001129 ! subscapularis muscle - -[Term] -id: NCIT:C12998 ! -property_value: IAO:0000589 "vertebral column (NCIT)" xsd:string -is_a: UBERON:0001130 ! vertebral column - -[Term] -id: NCIT:C33588 ! -property_value: IAO:0000589 "vertebral column (NCIT)" xsd:string -is_a: UBERON:0001130 ! vertebral column - -[Term] -id: NCIT:C12765 ! -property_value: IAO:0000589 "parathyroid gland (NCIT)" xsd:string -is_a: UBERON:0001132 ! parathyroid gland - -[Term] -id: NCIT:C13050 ! -property_value: IAO:0000589 "skeletal muscle tissue (NCIT)" xsd:string -is_a: UBERON:0001134 ! skeletal muscle tissue - -[Term] -id: NCIT:C12437 ! -property_value: IAO:0000589 "smooth muscle tissue (NCIT)" xsd:string -is_a: UBERON:0001135 ! smooth muscle tissue - -[Term] -id: NCIT:C33105 ! -property_value: IAO:0000589 "mesothelium (NCIT)" xsd:string -is_a: UBERON:0001136 ! mesothelium - -[Term] -id: NCIT:C13062 ! -property_value: IAO:0000589 "dorsum (NCIT)" xsd:string -is_a: UBERON:0001137 ! dorsum - -[Term] -id: NCIT:C33687 ! -property_value: IAO:0000589 "superior mesenteric vein (NCIT)" xsd:string -is_a: UBERON:0001138 ! superior mesenteric vein - -[Term] -id: NCIT:C32359 ! -property_value: IAO:0000589 "common iliac vein (NCIT)" xsd:string -is_a: UBERON:0001139 ! common iliac vein - -[Term] -id: NCIT:C33462 ! -property_value: IAO:0000589 "renal vein (NCIT)" xsd:string -is_a: UBERON:0001140 ! renal vein - -[Term] -id: NCIT:C52695 ! -property_value: IAO:0000589 "right renal vein (NCIT)" xsd:string -is_a: UBERON:0001141 ! right renal vein - -[Term] -id: NCIT:C52693 ! -property_value: IAO:0000589 "left renal vein (NCIT)" xsd:string -is_a: UBERON:0001142 ! left renal vein - -[Term] -id: NCIT:C32736 ! -property_value: IAO:0000589 "hepatic vein (NCIT)" xsd:string -is_a: UBERON:0001143 ! hepatic vein - -[Term] -id: NCIT:C53050 ! -property_value: IAO:0000589 "testicular vein (NCIT)" xsd:string -is_a: UBERON:0001144 ! testicular vein - -[Term] -id: NCIT:C53058 ! -property_value: IAO:0000589 "ovarian vein (NCIT)" xsd:string -is_a: UBERON:0001145 ! ovarian vein - -[Term] -id: NCIT:C53129 ! -property_value: IAO:0000589 "suprarenal vein (NCIT)" xsd:string -is_a: UBERON:0001146 ! suprarenal vein - -[Term] -id: NCIT:C52815 ! -property_value: IAO:0000589 "median nerve (NCIT)" xsd:string -is_a: UBERON:0001148 ! median nerve - -[Term] -id: NCIT:C12270 ! -property_value: IAO:0000589 "body of pancreas (NCIT)" xsd:string -is_a: UBERON:0001150 ! body of pancreas - -[Term] -id: NCIT:C12271 ! -property_value: IAO:0000589 "tail of pancreas (NCIT)" xsd:string -is_a: UBERON:0001151 ! tail of pancreas - -[Term] -id: NCIT:C32421 ! -property_value: IAO:0000589 "cystic duct (NCIT)" xsd:string -is_a: UBERON:0001152 ! cystic duct - -[Term] -id: NCIT:C12381 ! -property_value: IAO:0000589 "caecum (NCIT)" xsd:string -is_a: UBERON:0001153 ! caecum - -[Term] -id: NCIT:C12380 ! -property_value: IAO:0000589 "vermiform appendix (NCIT)" xsd:string -is_a: UBERON:0001154 ! vermiform appendix - -[Term] -id: NCIT:C12382 ! -property_value: IAO:0000589 "colon (NCIT)" xsd:string -is_a: UBERON:0001155 ! colon - -[Term] -id: NCIT:C12265 ! -property_value: IAO:0000589 "ascending colon (NCIT)" xsd:string -is_a: UBERON:0001156 ! ascending colon - -[Term] -id: NCIT:C12385 ! -property_value: IAO:0000589 "transverse colon (NCIT)" xsd:string -is_a: UBERON:0001157 ! transverse colon - -[Term] -id: NCIT:C12268 ! -property_value: IAO:0000589 "descending colon (NCIT)" xsd:string -is_a: UBERON:0001158 ! descending colon - -[Term] -id: NCIT:C12384 ! -property_value: IAO:0000589 "sigmoid colon (NCIT)" xsd:string -is_a: UBERON:0001159 ! sigmoid colon - -[Term] -id: NCIT:C33550 ! -property_value: IAO:0000589 "sigmoid colon (NCIT)" xsd:string -is_a: UBERON:0001159 ! sigmoid colon - -[Term] -id: NCIT:C12257 ! -property_value: IAO:0000589 "fundus of stomach (NCIT)" xsd:string -is_a: UBERON:0001160 ! fundus of stomach - -[Term] -id: NCIT:C12258 ! -property_value: IAO:0000589 "body of stomach (NCIT)" xsd:string -is_a: UBERON:0001161 ! body of stomach - -[Term] -id: NCIT:C12256 ! -property_value: IAO:0000589 "cardia of stomach (NCIT)" xsd:string -is_a: UBERON:0001162 ! cardia of stomach - -[Term] -id: NCIT:C12261 ! -property_value: IAO:0000589 "lesser curvature of stomach (NCIT)" xsd:string -is_a: UBERON:0001163 ! lesser curvature of stomach - -[Term] -id: NCIT:C12262 ! -property_value: IAO:0000589 "greater curvature of stomach (NCIT)" xsd:string -is_a: UBERON:0001164 ! greater curvature of stomach - -[Term] -id: NCIT:C12259 ! -property_value: IAO:0000589 "pyloric antrum (NCIT)" xsd:string -is_a: UBERON:0001165 ! pyloric antrum - -[Term] -id: NCIT:C12260 ! -property_value: IAO:0000589 "pylorus (NCIT)" xsd:string -is_a: UBERON:0001166 ! pylorus - -[Term] -id: NCIT:C33573 ! -property_value: IAO:0000589 "wall of small intestine (NCIT)" xsd:string -is_a: UBERON:0001168 ! wall of small intestine - -[Term] -id: NCIT:C33341 ! -property_value: IAO:0000589 "portal lobule (NCIT)" xsd:string -is_a: UBERON:0001171 ! portal lobule - -[Term] -id: NCIT:C32992 ! -property_value: IAO:0000589 "hepatic acinus (NCIT)" xsd:string -is_a: UBERON:0001172 ! hepatic acinus - -[Term] -id: NCIT:C12698 ! -property_value: IAO:0000589 "common bile duct (NCIT)" xsd:string -is_a: UBERON:0001174 ! common bile duct - -[Term] -id: NCIT:C32356 ! -property_value: IAO:0000589 "common hepatic duct (NCIT)" xsd:string -is_a: UBERON:0001175 ! common hepatic duct - -[Term] -id: NCIT:C33476 ! -property_value: IAO:0000589 "right hepatic duct (NCIT)" xsd:string -is_a: UBERON:0001176 ! right hepatic duct - -[Term] -id: NCIT:C32960 ! -property_value: IAO:0000589 "left hepatic duct (NCIT)" xsd:string -is_a: UBERON:0001177 ! left hepatic duct - -[Term] -id: NCIT:C12769 ! -property_value: IAO:0000589 "peritoneal cavity (NCIT)" xsd:string -is_a: UBERON:0001179 ! peritoneal cavity - -[Term] -id: NCIT:C33685 ! -property_value: IAO:0000589 "superior mesenteric artery (NCIT)" xsd:string -is_a: UBERON:0001182 ! superior mesenteric artery - -[Term] -id: NCIT:C32780 ! -property_value: IAO:0000589 "inferior mesenteric artery (NCIT)" xsd:string -is_a: UBERON:0001183 ! inferior mesenteric artery - -[Term] -id: NCIT:C12778 ! -property_value: IAO:0000589 "renal artery (NCIT)" xsd:string -is_a: UBERON:0001184 ! renal artery - -[Term] -id: NCIT:C52740 ! -property_value: IAO:0000589 "right renal artery (NCIT)" xsd:string -is_a: UBERON:0001185 ! right renal artery - -[Term] -id: NCIT:C52741 ! -property_value: IAO:0000589 "left renal artery (NCIT)" xsd:string -is_a: UBERON:0001186 ! left renal artery - -[Term] -id: NCIT:C52738 ! -property_value: IAO:0000589 "right testicular artery (NCIT)" xsd:string -is_a: UBERON:0001188 ! right testicular artery - -[Term] -id: NCIT:C52739 ! -property_value: IAO:0000589 "left testicular artery (NCIT)" xsd:string -is_a: UBERON:0001189 ! left testicular artery - -[Term] -id: NCIT:C33242 ! -property_value: IAO:0000589 "ovarian artery (NCIT)" xsd:string -is_a: UBERON:0001190 ! ovarian artery - -[Term] -id: NCIT:C32357 ! -property_value: IAO:0000589 "common iliac artery (NCIT)" xsd:string -is_a: UBERON:0001191 ! common iliac artery - -[Term] -id: NCIT:C32654 ! -property_value: IAO:0000589 "left gastric artery (NCIT)" xsd:string -is_a: UBERON:0001192 ! left gastric artery - -[Term] -id: NCIT:C32729 ! -property_value: IAO:0000589 "hepatic artery (NCIT)" xsd:string -is_a: UBERON:0001193 ! hepatic artery - -[Term] -id: NCIT:C33597 ! -property_value: IAO:0000589 "splenic artery (NCIT)" xsd:string -is_a: UBERON:0001194 ! splenic artery - -[Term] -id: NCIT:C32786 ! -property_value: IAO:0000589 "inferior pancreaticoduodenal artery (NCIT)" xsd:string -is_a: UBERON:0001195 ! inferior pancreaticoduodenal artery - -[Term] -id: NCIT:C52981 ! -property_value: IAO:0000589 "middle colic artery (NCIT)" xsd:string -is_a: UBERON:0001196 ! middle colic artery - -[Term] -id: NCIT:C32760 ! -property_value: IAO:0000589 "ileocolic artery (NCIT)" xsd:string -is_a: UBERON:0001197 ! ileocolic artery - -[Term] -id: NCIT:C52736 ! -property_value: IAO:0000589 "superior suprarenal artery (NCIT)" xsd:string -is_a: UBERON:0001198 ! superior suprarenal artery - -[Term] -id: NCIT:C32656 ! -property_value: IAO:0000589 "mucosa of stomach (NCIT)" xsd:string -is_a: UBERON:0001199 ! mucosa of stomach - -[Term] -id: NCIT:C32663 ! -property_value: IAO:0000589 "submucosa of stomach (NCIT)" xsd:string -is_a: UBERON:0001200 ! submucosa of stomach - -[Term] -id: NCIT:C32662 ! -property_value: IAO:0000589 "serosa of stomach (NCIT)" xsd:string -is_a: UBERON:0001201 ! serosa of stomach - -[Term] -id: NCIT:C33433 ! -property_value: IAO:0000589 "pyloric sphincter (NCIT)" xsd:string -is_a: UBERON:0001202 ! pyloric sphincter - -[Term] -id: NCIT:C32658 ! -property_value: IAO:0000589 "muscularis mucosae of stomach (NCIT)" xsd:string -is_a: UBERON:0001203 ! muscularis mucosae of stomach - -[Term] -id: NCIT:C33568 ! -property_value: IAO:0000589 "mucosa of small intestine (NCIT)" xsd:string -is_a: UBERON:0001204 ! mucosa of small intestine - -[Term] -id: NCIT:C33572 ! -property_value: IAO:0000589 "submucosa of small intestine (NCIT)" xsd:string -is_a: UBERON:0001205 ! submucosa of small intestine - -[Term] -id: NCIT:C32926 ! -property_value: IAO:0000589 "mucosa of large intestine (NCIT)" xsd:string -is_a: UBERON:0001207 ! mucosa of large intestine - -[Term] -id: NCIT:C32930 ! -property_value: IAO:0000589 "submucosa of large intestine (NCIT)" xsd:string -is_a: UBERON:0001208 ! submucosa of large intestine - -[Term] -id: NCIT:C32929 ! -property_value: IAO:0000589 "serosa of large intestine (NCIT)" xsd:string -is_a: UBERON:0001209 ! serosa of large intestine - -[Term] -id: NCIT:C33570 ! -property_value: IAO:0000589 "muscularis mucosae of small intestine (NCIT)" xsd:string -is_a: UBERON:0001210 ! muscularis mucosae of small intestine - -[Term] -id: NCIT:C12771 ! -property_value: IAO:0000589 "Peyer's patch (NCIT)" xsd:string -is_a: UBERON:0001211 ! Peyer's patch - -[Term] -id: NCIT:C13010 ! -property_value: IAO:0000589 "duodenal gland (NCIT)" xsd:string -is_a: UBERON:0001212 ! duodenal gland - -[Term] -id: NCIT:C33874 ! -property_value: IAO:0000589 "intestinal villus (NCIT)" xsd:string -is_a: UBERON:0001213 ! intestinal villus - -[Term] -id: NCIT:C53059 ! -property_value: IAO:0000589 "pancreatic tributary of splenic vein (NCIT)" xsd:string -is_a: UBERON:0001214 ! pancreatic tributary of splenic vein - -[Term] -id: NCIT:C32782 ! -property_value: IAO:0000589 "inferior mesenteric vein (NCIT)" xsd:string -is_a: UBERON:0001215 ! inferior mesenteric vein - -[Term] -id: NCIT:C53046 ! -property_value: IAO:0000589 "ileal vein (NCIT)" xsd:string -is_a: UBERON:0001217 ! ileal vein - -[Term] -id: NCIT:C53047 ! -property_value: IAO:0000589 "ileocolic vein (NCIT)" xsd:string -is_a: UBERON:0001219 ! ileocolic vein - -[Term] -id: NCIT:C33440 ! -property_value: IAO:0000589 "quadratus lumborum (NCIT)" xsd:string -is_a: UBERON:0001220 ! quadratus lumborum - -[Term] -id: NCIT:C53179 ! -property_value: IAO:0000589 "transversus abdominis muscle (NCIT)" xsd:string -is_a: UBERON:0001221 ! transversus abdominis muscle - -[Term] -id: NCIT:C49327 ! -property_value: IAO:0000589 "right ureter (NCIT)" xsd:string -is_a: UBERON:0001222 ! right ureter - -[Term] -id: NCIT:C49324 ! -property_value: IAO:0000589 "left ureter (NCIT)" xsd:string -is_a: UBERON:0001223 ! left ureter - -[Term] -id: NCIT:C12887 ! -property_value: IAO:0000589 "renal pelvis (NCIT)" xsd:string -is_a: UBERON:0001224 ! renal pelvis - -[Term] -id: NCIT:C12739 ! -property_value: IAO:0000589 "cortex of kidney (NCIT)" xsd:string -is_a: UBERON:0001225 ! cortex of kidney - -[Term] -id: NCIT:C33460 ! -property_value: IAO:0000589 "renal papilla (NCIT)" xsd:string -is_a: UBERON:0001228 ! renal papilla - -[Term] -id: NCIT:C33456 ! -property_value: IAO:0000589 "renal corpuscle (NCIT)" xsd:string -is_a: UBERON:0001229 ! renal corpuscle - -[Term] -id: NCIT:C32225 ! -property_value: IAO:0000589 "glomerular capsule (NCIT)" xsd:string -is_a: UBERON:0001230 ! glomerular capsule - -[Term] -id: NCIT:C49274 ! -property_value: IAO:0000589 "nephron tubule (NCIT)" xsd:string -is_a: UBERON:0001231 ! nephron tubule - -[Term] -id: NCIT:C49325 ! -property_value: IAO:0000589 "right adrenal gland (NCIT)" xsd:string -is_a: UBERON:0001233 ! right adrenal gland - -[Term] -id: NCIT:C49322 ! -property_value: IAO:0000589 "left adrenal gland (NCIT)" xsd:string -is_a: UBERON:0001234 ! left adrenal gland - -[Term] -id: NCIT:C12396 ! -property_value: IAO:0000589 "adrenal cortex (NCIT)" xsd:string -is_a: UBERON:0001235 ! adrenal cortex - -[Term] -id: NCIT:C12397 ! -property_value: IAO:0000589 "adrenal medulla (NCIT)" xsd:string -is_a: UBERON:0001236 ! adrenal medulla - -[Term] -id: NCIT:C25316 ! -property_value: IAO:0000589 "paraaortic body (NCIT)" xsd:string -is_a: UBERON:0001237 ! paraaortic body - -[Term] -id: NCIT:C49297 ! -property_value: IAO:0000589 "lamina propria of small intestine (NCIT)" xsd:string -is_a: UBERON:0001238 ! lamina propria of small intestine - -[Term] -id: NCIT:C32928 ! -property_value: IAO:0000589 "muscularis mucosae of large intestine (NCIT)" xsd:string -is_a: UBERON:0001239 ! muscularis mucosae of large intestine - -[Term] -id: NCIT:C33565 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of small intestine (NCIT)" xsd:string -is_a: UBERON:0001241 ! crypt of Lieberkuhn of small intestine - -[Term] -id: NCIT:C49241 ! -property_value: IAO:0000589 "intestinal mucosa (NCIT)" xsd:string -is_a: UBERON:0001242 ! intestinal mucosa - -[Term] -id: NCIT:C32833 ! -property_value: IAO:0000589 "internal anal sphincter (NCIT)" xsd:string -is_a: UBERON:0001244 ! internal anal sphincter - -[Term] -id: NCIT:C43362 ! -property_value: IAO:0000589 "anus (NCIT)" xsd:string -is_a: UBERON:0001245 ! anus - -[Term] -id: NCIT:C32827 ! -property_value: IAO:0000589 "interlobular bile duct (NCIT)" xsd:string -is_a: UBERON:0001246 ! interlobular bile duct - -[Term] -id: NCIT:C32582 ! -property_value: IAO:0000589 "falciform ligament (NCIT)" xsd:string -is_a: UBERON:0001247 ! falciform ligament - -[Term] -id: NCIT:C33601 ! -property_value: IAO:0000589 "hilum of spleen (NCIT)" xsd:string -is_a: UBERON:0001248 ! hilum of spleen - -[Term] -id: NCIT:C33602 ! -property_value: IAO:0000589 "spleen lymphoid follicle (NCIT)" xsd:string -is_a: UBERON:0001249 ! spleen lymphoid follicle - -[Term] -id: NCIT:C12992 ! -property_value: IAO:0000589 "red pulp of spleen (NCIT)" xsd:string -is_a: UBERON:0001250 ! red pulp of spleen - -[Term] -id: NCIT:C49767 ! -property_value: IAO:0000589 "marginal zone of spleen (NCIT)" xsd:string -is_a: UBERON:0001251 ! marginal zone of spleen - -[Term] -id: NCIT:C12414 ! -property_value: IAO:0000589 "urinary bladder (NCIT)" xsd:string -is_a: UBERON:0001255 ! urinary bladder - -[Term] -id: NCIT:C48941 ! -property_value: IAO:0000589 "wall of urinary bladder (NCIT)" xsd:string -is_a: UBERON:0001256 ! wall of urinary bladder - -[Term] -id: NCIT:C12331 ! -property_value: IAO:0000589 "trigone of urinary bladder (NCIT)" xsd:string -is_a: UBERON:0001257 ! trigone of urinary bladder - -[Term] -id: NCIT:C12336 ! -property_value: IAO:0000589 "neck of urinary bladder (NCIT)" xsd:string -is_a: UBERON:0001258 ! neck of urinary bladder - -[Term] -id: NCIT:C32205 ! -property_value: IAO:0000589 "mucosa of urinary bladder (NCIT)" xsd:string -is_a: UBERON:0001259 ! mucosa of urinary bladder - -[Term] -id: NCIT:C48940 ! -property_value: IAO:0000589 "lamina propria of urinary bladder (NCIT)" xsd:string -is_a: UBERON:0001261 ! lamina propria of urinary bladder - -[Term] -id: NCIT:C49478 ! -property_value: IAO:0000589 "wall of intestine (NCIT)" xsd:string -is_a: UBERON:0001262 ! wall of intestine - -[Term] -id: NCIT:C49268 ! -property_value: IAO:0000589 "pancreatic acinus (NCIT)" xsd:string -is_a: UBERON:0001263 ! pancreatic acinus - -[Term] -id: NCIT:C12393 ! -property_value: IAO:0000589 "pancreas (NCIT)" xsd:string -is_a: UBERON:0001264 ! pancreas - -[Term] -id: NCIT:C33607 ! -property_value: IAO:0000589 "trabecula of spleen (NCIT)" xsd:string -is_a: UBERON:0001265 ! trabecula of spleen - -[Term] -id: NCIT:C33599 ! -property_value: IAO:0000589 "splenic cord (NCIT)" xsd:string -is_a: UBERON:0001266 ! splenic cord - -[Term] -id: NCIT:C52816 ! -property_value: IAO:0000589 "femoral nerve (NCIT)" xsd:string -is_a: UBERON:0001267 ! femoral nerve - -[Term] -id: NCIT:C32042 ! -property_value: IAO:0000589 "acetabular part of hip bone (NCIT)" xsd:string -is_a: UBERON:0001269 ! acetabular part of hip bone - -[Term] -id: NCIT:C33291 ! -property_value: IAO:0000589 "pelvic girdle region (NCIT)" xsd:string -is_a: UBERON:0001271 ! pelvic girdle region - -[Term] -id: NCIT:C32765 ! -property_value: IAO:0000589 "ilium (NCIT)" xsd:string -is_a: UBERON:0001273 ! ilium - -[Term] -id: NCIT:C32884 ! -property_value: IAO:0000589 "ischium (NCIT)" xsd:string -is_a: UBERON:0001274 ! ischium - -[Term] -id: NCIT:C33423 ! -property_value: IAO:0000589 "pubis (NCIT)" xsd:string -is_a: UBERON:0001275 ! pubis - -[Term] -id: NCIT:C49240 ! -property_value: IAO:0000589 "intestinal epithelium (NCIT)" xsd:string -is_a: UBERON:0001277 ! intestinal epithelium - -[Term] -id: NCIT:C33342 ! -property_value: IAO:0000589 "portal triad (NCIT)" xsd:string -is_a: UBERON:0001279 ! portal triad - -[Term] -id: NCIT:C32735 ! -property_value: IAO:0000589 "liver parenchyma (NCIT)" xsd:string -is_a: UBERON:0001280 ! liver parenchyma - -[Term] -id: NCIT:C32733 ! -property_value: IAO:0000589 "hepatic sinusoid (NCIT)" xsd:string -is_a: UBERON:0001281 ! hepatic sinusoid - -[Term] -id: NCIT:C32255 ! -property_value: IAO:0000589 "intralobular bile duct (NCIT)" xsd:string -is_a: UBERON:0001282 ! intralobular bile duct - -[Term] -id: NCIT:C32202 ! -property_value: IAO:0000589 "bile canaliculus (NCIT)" xsd:string -is_a: UBERON:0001283 ! bile canaliculus - -[Term] -id: NCIT:C32387 ! -property_value: IAO:0000589 "renal column (NCIT)" xsd:string -is_a: UBERON:0001284 ! renal column - -[Term] -id: NCIT:C13048 ! -property_value: IAO:0000589 "nephron (NCIT)" xsd:string -is_a: UBERON:0001285 ! nephron - -[Term] -id: NCIT:C33840 ! -property_value: IAO:0000589 "Bowman's space (NCIT)" xsd:string -is_a: UBERON:0001286 ! Bowman's space - -[Term] -id: NCIT:C33417 ! -property_value: IAO:0000589 "proximal convoluted tubule (NCIT)" xsd:string -is_a: UBERON:0001287 ! proximal convoluted tubule - -[Term] -id: NCIT:C33006 ! -property_value: IAO:0000589 "loop of Henle (NCIT)" xsd:string -is_a: UBERON:0001288 ! loop of Henle - -[Term] -id: NCIT:C32456 ! -property_value: IAO:0000589 "descending limb of loop of Henle (NCIT)" xsd:string -is_a: UBERON:0001289 ! descending limb of loop of Henle - -[Term] -id: NCIT:C32469 ! -property_value: IAO:0000589 "distal convoluted tubule (NCIT)" xsd:string -is_a: UBERON:0001292 ! distal convoluted tubule - -[Term] -id: NCIT:C12313 ! -property_value: IAO:0000589 "endometrium (NCIT)" xsd:string -is_a: UBERON:0001295 ! endometrium - -[Term] -id: NCIT:C12314 ! -property_value: IAO:0000589 "myometrium (NCIT)" xsd:string -is_a: UBERON:0001296 ! myometrium - -[Term] -id: NCIT:C33298 ! -property_value: IAO:0000589 "serosa of uterus (NCIT)" xsd:string -is_a: UBERON:0001297 ! serosa of uterus - -[Term] -id: NCIT:C33420 ! -property_value: IAO:0000589 "psoas major muscle (NCIT)" xsd:string -is_a: UBERON:0001298 ! psoas major muscle - -[Term] -id: NCIT:C12324 ! -property_value: IAO:0000589 "glans penis (NCIT)" xsd:string -is_a: UBERON:0001299 ! glans penis - -[Term] -id: NCIT:C12785 ! -property_value: IAO:0000589 "scrotum (NCIT)" xsd:string -is_a: UBERON:0001300 ! scrotum - -[Term] -id: NCIT:C12328 ! -property_value: IAO:0000589 "epididymis (NCIT)" xsd:string -is_a: UBERON:0001301 ! epididymis - -[Term] -id: NCIT:C33475 ! -property_value: IAO:0000589 "right uterine tube (NCIT)" xsd:string -is_a: UBERON:0001302 ! right uterine tube - -[Term] -id: NCIT:C32959 ! -property_value: IAO:0000589 "left uterine tube (NCIT)" xsd:string -is_a: UBERON:0001303 ! left uterine tube - -[Term] -id: NCIT:C61518 ! -property_value: IAO:0000589 "germinal epithelium of ovary (NCIT)" xsd:string -is_a: UBERON:0001304 ! germinal epithelium of ovary - -[Term] -id: NCIT:C33244 ! -property_value: IAO:0000589 "ovarian follicle (NCIT)" xsd:string -is_a: UBERON:0001305 ! ovarian follicle - -[Term] -id: NCIT:C49265 ! -property_value: IAO:0000589 "capsule of ovary (NCIT)" xsd:string -is_a: UBERON:0001307 ! capsule of ovary - -[Term] -id: NCIT:C32558 ! -property_value: IAO:0000589 "external iliac artery (NCIT)" xsd:string -is_a: UBERON:0001308 ! external iliac artery - -[Term] -id: NCIT:C32845 ! -property_value: IAO:0000589 "internal iliac artery (NCIT)" xsd:string -is_a: UBERON:0001309 ! internal iliac artery - -[Term] -id: NCIT:C33827 ! -property_value: IAO:0000589 "umbilical artery (NCIT)" xsd:string -is_a: UBERON:0001310 ! umbilical artery - -[Term] -id: NCIT:C52685 ! -property_value: IAO:0000589 "inferior vesical artery (NCIT)" xsd:string -is_a: UBERON:0001311 ! inferior vesical artery - -[Term] -id: NCIT:C52686 ! -property_value: IAO:0000589 "superior vesical artery (NCIT)" xsd:string -is_a: UBERON:0001312 ! superior vesical artery - -[Term] -id: NCIT:C52859 ! -property_value: IAO:0000589 "iliolumbar artery (NCIT)" xsd:string -is_a: UBERON:0001313 ! iliolumbar artery - -[Term] -id: NCIT:C33190 ! -property_value: IAO:0000589 "obturator artery (NCIT)" xsd:string -is_a: UBERON:0001314 ! obturator artery - -[Term] -id: NCIT:C32688 ! -property_value: IAO:0000589 "superior gluteal artery (NCIT)" xsd:string -is_a: UBERON:0001315 ! superior gluteal artery - -[Term] -id: NCIT:C32560 ! -property_value: IAO:0000589 "external iliac vein (NCIT)" xsd:string -is_a: UBERON:0001316 ! external iliac vein - -[Term] -id: NCIT:C32847 ! -property_value: IAO:0000589 "internal iliac vein (NCIT)" xsd:string -is_a: UBERON:0001317 ! internal iliac vein - -[Term] -id: NCIT:C53048 ! -property_value: IAO:0000589 "iliolumbar vein (NCIT)" xsd:string -is_a: UBERON:0001320 ! iliolumbar vein - -[Term] -id: NCIT:C53056 ! -property_value: IAO:0000589 "obturator vein (NCIT)" xsd:string -is_a: UBERON:0001321 ! obturator vein - -[Term] -id: NCIT:C52810 ! -property_value: IAO:0000589 "sciatic nerve (NCIT)" xsd:string -is_a: UBERON:0001322 ! sciatic nerve - -[Term] -id: NCIT:C52809 ! -property_value: IAO:0000589 "tibial nerve (NCIT)" xsd:string -is_a: UBERON:0001323 ! tibial nerve - -[Term] -id: NCIT:C52814 ! -property_value: IAO:0000589 "common fibular nerve (NCIT)" xsd:string -is_a: UBERON:0001324 ! common fibular nerve - -[Term] -id: NCIT:C32984 ! -property_value: IAO:0000589 "levator ani muscle (NCIT)" xsd:string -is_a: UBERON:0001326 ! levator ani muscle - -[Term] -id: NCIT:C52726 ! -property_value: IAO:0000589 "lobe of prostate (NCIT)" xsd:string -is_a: UBERON:0001328 ! lobe of prostate - -[Term] -id: NCIT:C33049 ! -property_value: IAO:0000589 "prepuce of penis (NCIT)" xsd:string -is_a: UBERON:0001332 ! prepuce of penis - -[Term] -id: NCIT:C33050 ! -property_value: IAO:0000589 "male urethra (NCIT)" xsd:string -is_a: UBERON:0001333 ! male urethra - -[Term] -id: NCIT:C32591 ! -property_value: IAO:0000589 "female urethra (NCIT)" xsd:string -is_a: UBERON:0001334 ! female urethra - -[Term] -id: NCIT:C13101 ! -property_value: IAO:0000589 "prostatic urethra (NCIT)" xsd:string -is_a: UBERON:0001335 ! prostatic urethra - -[Term] -id: NCIT:C52946 ! -property_value: IAO:0000589 "ischiocavernosus muscle (NCIT)" xsd:string -is_a: UBERON:0001339 ! ischiocavernosus muscle - -[Term] -id: NCIT:C81014 ! -property_value: IAO:0000589 "lesser sac (NCIT)" xsd:string -is_a: UBERON:0001341 ! lesser sac - -[Term] -id: NCIT:C92440 ! -property_value: IAO:0000589 "mesovarium (NCIT)" xsd:string -is_a: UBERON:0001342 ! mesovarium - -[Term] -id: NCIT:C13047 ! -property_value: IAO:0000589 "seminiferous tubule of testis (NCIT)" xsd:string -is_a: UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: NCIT:C34293 ! -property_value: IAO:0000589 "seminiferous tubule of testis (NCIT)" xsd:string -is_a: UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: NCIT:C49313 ! -property_value: IAO:0000589 "epithelium of vagina (NCIT)" xsd:string -is_a: UBERON:0001344 ! epithelium of vagina - -[Term] -id: NCIT:C32750 ! -property_value: IAO:0000589 "vaginal hymen (NCIT)" xsd:string -is_a: UBERON:0001346 ! vaginal hymen - -[Term] -id: NCIT:C33889 ! -property_value: IAO:0000589 "white adipose tissue (NCIT)" xsd:string -is_a: UBERON:0001347 ! white adipose tissue - -[Term] -id: NCIT:C32235 ! -property_value: IAO:0000589 "brown adipose tissue (NCIT)" xsd:string -is_a: UBERON:0001348 ! brown adipose tissue - -[Term] -id: NCIT:C12696 ! -property_value: IAO:0000589 "coccyx (NCIT)" xsd:string -is_a: UBERON:0001350 ! coccyx - -[Term] -id: NCIT:C32909 ! -property_value: IAO:0000589 "lacrimal sac (NCIT)" xsd:string -is_a: UBERON:0001351 ! lacrimal sac - -[Term] -id: NCIT:C12498 ! -property_value: IAO:0000589 "external acoustic meatus (NCIT)" xsd:string -is_a: UBERON:0001352 ! external acoustic meatus - -[Term] -id: NCIT:C32069 ! -property_value: IAO:0000589 "anal region (NCIT)" xsd:string -is_a: UBERON:0001353 ! anal region - -[Term] -id: NCIT:C52861 ! -property_value: IAO:0000589 "inferior epigastric artery (NCIT)" xsd:string -is_a: UBERON:0001354 ! inferior epigastric artery - -[Term] -id: NCIT:C32436 ! -property_value: IAO:0000589 "deep femoral artery (NCIT)" xsd:string -is_a: UBERON:0001355 ! deep femoral artery - -[Term] -id: NCIT:C52938 ! -property_value: IAO:0000589 "inferior rectal artery (NCIT)" xsd:string -is_a: UBERON:0001357 ! inferior rectal artery - -[Term] -id: NCIT:C52994 ! -property_value: IAO:0000589 "perineal artery (NCIT)" xsd:string -is_a: UBERON:0001358 ! perineal artery - -[Term] -id: NCIT:C12692 ! -property_value: IAO:0000589 "cerebrospinal fluid (NCIT)" xsd:string -is_a: UBERON:0001359 ! cerebrospinal fluid - -[Term] -id: NCIT:C12716 ! -property_value: IAO:0000589 "femoral vein (NCIT)" xsd:string -is_a: UBERON:0001361 ! femoral vein - -[Term] -id: NCIT:C33004 ! -property_value: IAO:0000589 "great saphenous vein (NCIT)" xsd:string -is_a: UBERON:0001363 ! great saphenous vein - -[Term] -id: NCIT:C33507 ! -property_value: IAO:0000589 "sacro-iliac joint (NCIT)" xsd:string -is_a: UBERON:0001365 ! sacro-iliac joint - -[Term] -id: NCIT:C32548 ! -property_value: IAO:0000589 "external anal sphincter (NCIT)" xsd:string -is_a: UBERON:0001367 ! external anal sphincter - -[Term] -id: NCIT:C33191 ! -property_value: IAO:0000589 "obturator externus (NCIT)" xsd:string -is_a: UBERON:0001368 ! obturator externus - -[Term] -id: NCIT:C32762 ! -property_value: IAO:0000589 "iliacus muscle (NCIT)" xsd:string -is_a: UBERON:0001369 ! iliacus muscle - -[Term] -id: NCIT:C52560 ! -property_value: IAO:0000589 "gluteus maximus (NCIT)" xsd:string -is_a: UBERON:0001370 ! gluteus maximus - -[Term] -id: NCIT:C52933 ! -property_value: IAO:0000589 "gluteus medius (NCIT)" xsd:string -is_a: UBERON:0001371 ! gluteus medius - -[Term] -id: NCIT:C33421 ! -property_value: IAO:0000589 "psoas minor muscle (NCIT)" xsd:string -is_a: UBERON:0001372 ! psoas minor muscle - -[Term] -id: NCIT:C33515 ! -property_value: IAO:0000589 "sartorius muscle (NCIT)" xsd:string -is_a: UBERON:0001373 ! sartorius muscle - -[Term] -id: NCIT:C53147 ! -property_value: IAO:0000589 "biceps femoris (NCIT)" xsd:string -is_a: UBERON:0001374 ! biceps femoris - -[Term] -id: NCIT:C53176 ! -property_value: IAO:0000589 "semitendinosus (NCIT)" xsd:string -is_a: UBERON:0001375 ! semitendinosus - -[Term] -id: NCIT:C53072 ! -property_value: IAO:0000589 "tensor fasciae latae muscle (NCIT)" xsd:string -is_a: UBERON:0001376 ! tensor fasciae latae muscle - -[Term] -id: NCIT:C33441 ! -property_value: IAO:0000589 "quadriceps femoris (NCIT)" xsd:string -is_a: UBERON:0001377 ! quadriceps femoris - -[Term] -id: NCIT:C53175 ! -property_value: IAO:0000589 "rectus femoris (NCIT)" xsd:string -is_a: UBERON:0001378 ! rectus femoris - -[Term] -id: NCIT:C53073 ! -property_value: IAO:0000589 "vastus lateralis (NCIT)" xsd:string -is_a: UBERON:0001379 ! vastus lateralis - -[Term] -id: NCIT:C117736 ! -property_value: IAO:0000589 "vastus medialis (NCIT)" xsd:string -is_a: UBERON:0001380 ! vastus medialis - -[Term] -id: NCIT:C52987 ! -property_value: IAO:0000589 "semimembranosus muscle (NCIT)" xsd:string -is_a: UBERON:0001381 ! semimembranosus muscle - -[Term] -id: NCIT:C52978 ! -property_value: IAO:0000589 "pectineus muscle (NCIT)" xsd:string -is_a: UBERON:0001382 ! pectineus muscle - -[Term] -id: NCIT:C97339 ! -property_value: IAO:0000589 "primary motor cortex (NCIT)" xsd:string -is_a: UBERON:0001384 ! primary motor cortex - -[Term] -id: NCIT:C53079 ! -property_value: IAO:0000589 "tibialis anterior (NCIT)" xsd:string -is_a: UBERON:0001385 ! tibialis anterior - -[Term] -id: NCIT:C52918 ! -property_value: IAO:0000589 "extensor digitorum longus (NCIT)" xsd:string -is_a: UBERON:0001386 ! extensor digitorum longus - -[Term] -id: NCIT:C53171 ! -property_value: IAO:0000589 "fibularis longus (NCIT)" xsd:string -is_a: UBERON:0001387 ! fibularis longus - -[Term] -id: NCIT:C32666 ! -property_value: IAO:0000589 "gastrocnemius (NCIT)" xsd:string -is_a: UBERON:0001388 ! gastrocnemius - -[Term] -id: NCIT:C53075 ! -property_value: IAO:0000589 "soleus muscle (NCIT)" xsd:string -is_a: UBERON:0001389 ! soleus muscle - -[Term] -id: NCIT:C52734 ! -property_value: IAO:0000589 "sural artery (NCIT)" xsd:string -is_a: UBERON:0001390 ! sural artery - -[Term] -id: NCIT:C33340 ! -property_value: IAO:0000589 "popliteus muscle (NCIT)" xsd:string -is_a: UBERON:0001391 ! popliteus muscle - -[Term] -id: NCIT:C52925 ! -property_value: IAO:0000589 "flexor hallucis longus (NCIT)" xsd:string -is_a: UBERON:0001392 ! flexor hallucis longus - -[Term] -id: NCIT:C52712 ! -property_value: IAO:0000589 "auditory cortex (NCIT)" xsd:string -is_a: UBERON:0001393 ! auditory cortex - -[Term] -id: NCIT:C32169 ! -property_value: IAO:0000589 "axillary artery (NCIT)" xsd:string -is_a: UBERON:0001394 ! axillary artery - -[Term] -id: NCIT:C32046 ! -property_value: IAO:0000589 "thoraco-acromial artery (NCIT)" xsd:string -is_a: UBERON:0001395 ! thoraco-acromial artery - -[Term] -id: NCIT:C52951 ! -property_value: IAO:0000589 "lateral thoracic artery (NCIT)" xsd:string -is_a: UBERON:0001396 ! lateral thoracic artery - -[Term] -id: NCIT:C33650 ! -property_value: IAO:0000589 "subscapular artery (NCIT)" xsd:string -is_a: UBERON:0001397 ! subscapular artery - -[Term] -id: NCIT:C12681 ! -property_value: IAO:0000589 "brachial artery (NCIT)" xsd:string -is_a: UBERON:0001398 ! brachial artery - -[Term] -id: NCIT:C53169 ! -property_value: IAO:0000589 "longissimus thoracis muscle (NCIT)" xsd:string -is_a: UBERON:0001401 ! longissimus thoracis muscle - -[Term] -id: NCIT:C53167 ! -property_value: IAO:0000589 "longissimus cervicis muscle (NCIT)" xsd:string -is_a: UBERON:0001402 ! longissimus cervicis muscle - -[Term] -id: NCIT:C53166 ! -property_value: IAO:0000589 "longissimus capitis (NCIT)" xsd:string -is_a: UBERON:0001403 ! longissimus capitis - -[Term] -id: NCIT:C12838 ! -property_value: IAO:0000589 "radial artery (NCIT)" xsd:string -is_a: UBERON:0001404 ! radial artery - -[Term] -id: NCIT:C53038 ! -property_value: IAO:0000589 "spinalis thoracis muscle (NCIT)" xsd:string -is_a: UBERON:0001405 ! spinalis thoracis muscle - -[Term] -id: NCIT:C12839 ! -property_value: IAO:0000589 "ulnar artery (NCIT)" xsd:string -is_a: UBERON:0001406 ! ulnar artery - -[Term] -id: NCIT:C53006 ! -property_value: IAO:0000589 "semispinalis thoracis (NCIT)" xsd:string -is_a: UBERON:0001407 ! semispinalis thoracis - -[Term] -id: NCIT:C52991 ! -property_value: IAO:0000589 "semispinalis cervicis (NCIT)" xsd:string -is_a: UBERON:0001408 ! semispinalis cervicis - -[Term] -id: NCIT:C52989 ! -property_value: IAO:0000589 "semispinalis capitis (NCIT)" xsd:string -is_a: UBERON:0001409 ! semispinalis capitis - -[Term] -id: NCIT:C52744 ! -property_value: IAO:0000589 "common palmar digital artery (NCIT)" xsd:string -is_a: UBERON:0001410 ! common palmar digital artery - -[Term] -id: NCIT:C32197 ! -property_value: IAO:0000589 "basilic vein (NCIT)" xsd:string -is_a: UBERON:0001411 ! basilic vein - -[Term] -id: NCIT:C12883 ! -property_value: IAO:0000589 "brachial vein (NCIT)" xsd:string -is_a: UBERON:0001413 ! brachial vein - -[Term] -id: NCIT:C33070 ! -property_value: IAO:0000589 "median basilic vein (NCIT)" xsd:string -is_a: UBERON:0001414 ! median basilic vein - -[Term] -id: NCIT:C52758 ! -property_value: IAO:0000589 "skin of abdomen (NCIT)" xsd:string -is_a: UBERON:0001416 ! skin of abdomen - -[Term] -id: NCIT:C52756 ! -property_value: IAO:0000589 "skin of neck (NCIT)" xsd:string -is_a: UBERON:0001417 ! skin of neck - -[Term] -id: NCIT:C53276 ! -property_value: IAO:0000589 "skin of limb (NCIT)" xsd:string -is_a: UBERON:0001419 ! skin of limb - -[Term] -id: NCIT:C12777 ! -property_value: IAO:0000589 "radius bone (NCIT)" xsd:string -is_a: UBERON:0001423 ! radius bone - -[Term] -id: NCIT:C12809 ! -property_value: IAO:0000589 "ulna (NCIT)" xsd:string -is_a: UBERON:0001424 ! ulna - -[Term] -id: NCIT:C12854 ! -property_value: IAO:0000589 "radiale (NCIT)" xsd:string -is_a: UBERON:0001427 ! radiale - -[Term] -id: NCIT:C12786 ! -property_value: IAO:0000589 "intermedium (NCIT)" xsd:string -is_a: UBERON:0001428 ! intermedium - -[Term] -id: NCIT:C12855 ! -property_value: IAO:0000589 "pisiform (NCIT)" xsd:string -is_a: UBERON:0001429 ! pisiform - -[Term] -id: NCIT:C12857 ! -property_value: IAO:0000589 "distal carpal bone 1 (NCIT)" xsd:string -is_a: UBERON:0001430 ! distal carpal bone 1 - -[Term] -id: NCIT:C12859 ! -property_value: IAO:0000589 "distal carpal bone 2 (NCIT)" xsd:string -is_a: UBERON:0001431 ! distal carpal bone 2 - -[Term] -id: NCIT:C12856 ! -property_value: IAO:0000589 "distal carpal bone 3 (NCIT)" xsd:string -is_a: UBERON:0001432 ! distal carpal bone 3 - -[Term] -id: NCIT:C12860 ! -property_value: IAO:0000589 "distal carpal bone 4 (NCIT)" xsd:string -is_a: UBERON:0001433 ! distal carpal bone 4 - -[Term] -id: NCIT:C12788 ! -property_value: IAO:0000589 "skeletal system (NCIT)" xsd:string -is_a: UBERON:0001434 ! skeletal system - -[Term] -id: NCIT:C12688 ! -property_value: IAO:0000589 "carpal bone (NCIT)" xsd:string -is_a: UBERON:0001435 ! carpal bone - -[Term] -id: NCIT:C52771 ! -property_value: IAO:0000589 "phalanx of manus (NCIT)" xsd:string -is_a: UBERON:0001436 ! phalanx of manus - -[Term] -id: NCIT:C32529 ! -property_value: IAO:0000589 "epiphysis (NCIT)" xsd:string -is_a: UBERON:0001437 ! epiphysis - -[Term] -id: NCIT:C52722 ! -property_value: IAO:0000589 "epiphysis (NCIT)" xsd:string -is_a: UBERON:0001437 ! epiphysis - -[Term] -id: NCIT:C52723 ! -property_value: IAO:0000589 "metaphysis (NCIT)" xsd:string -is_a: UBERON:0001438 ! metaphysis - -[Term] -id: NCIT:C52714 ! -property_value: IAO:0000589 "compact bone tissue (NCIT)" xsd:string -is_a: UBERON:0001439 ! compact bone tissue - -[Term] -id: NCIT:C12799 ! -property_value: IAO:0000589 "chest (NCIT)" xsd:string -is_a: UBERON:0001443 ! chest - -[Term] -id: NCIT:C25389 ! -property_value: IAO:0000589 "chest (NCIT)" xsd:string -is_a: UBERON:0001443 ! chest - -[Term] -id: NCIT:C12718 ! -property_value: IAO:0000589 "fibula (NCIT)" xsd:string -is_a: UBERON:0001446 ! fibula - -[Term] -id: NCIT:C12796 ! -property_value: IAO:0000589 "tarsal bone (NCIT)" xsd:string -is_a: UBERON:0001447 ! tarsal bone - -[Term] -id: NCIT:C12752 ! -property_value: IAO:0000589 "metatarsal bone (NCIT)" xsd:string -is_a: UBERON:0001448 ! metatarsal bone - -[Term] -id: NCIT:C52772 ! -property_value: IAO:0000589 "phalanx of pes (NCIT)" xsd:string -is_a: UBERON:0001449 ! phalanx of pes - -[Term] -id: NCIT:C32250 ! -property_value: IAO:0000589 "calcaneus (NCIT)" xsd:string -is_a: UBERON:0001450 ! calcaneus - -[Term] -id: NCIT:C33162 ! -property_value: IAO:0000589 "navicular bone of pes (NCIT)" xsd:string -is_a: UBERON:0001451 ! navicular bone of pes - -[Term] -id: NCIT:C32840 ! -property_value: IAO:0000589 "distal tarsal bone 1 (NCIT)" xsd:string -is_a: UBERON:0001452 ! distal tarsal bone 1 - -[Term] -id: NCIT:C33116 ! -property_value: IAO:0000589 "distal tarsal bone 2 (NCIT)" xsd:string -is_a: UBERON:0001453 ! distal tarsal bone 2 - -[Term] -id: NCIT:C32554 ! -property_value: IAO:0000589 "distal tarsal bone 3 (NCIT)" xsd:string -is_a: UBERON:0001454 ! distal tarsal bone 3 - -[Term] -id: NCIT:C32414 ! -property_value: IAO:0000589 "cuboid bone (NCIT)" xsd:string -is_a: UBERON:0001455 ! cuboid bone - -[Term] -id: NCIT:C13071 ! -property_value: IAO:0000589 "face (NCIT)" xsd:string -is_a: UBERON:0001456 ! face - -[Term] -id: NCIT:C52718 ! -property_value: IAO:0000589 "skin of eyelid (NCIT)" xsd:string -is_a: UBERON:0001457 ! skin of eyelid - -[Term] -id: NCIT:C12291 ! -property_value: IAO:0000589 "skin of lip (NCIT)" xsd:string -is_a: UBERON:0001458 ! skin of lip - -[Term] -id: NCIT:C49481 ! -property_value: IAO:0000589 "skin of external ear (NCIT)" xsd:string -is_a: UBERON:0001459 ! skin of external ear - -[Term] -id: NCIT:C52834 ! -property_value: IAO:0000589 "manual digit 1 (NCIT)" xsd:string -is_a: UBERON:0001463 ! manual digit 1 - -[Term] -id: NCIT:C64193 ! -property_value: IAO:0000589 "hip (NCIT)" xsd:string -is_a: UBERON:0001464 ! hip - -[Term] -id: NCIT:C33788 ! -property_value: IAO:0000589 "pedal digit (NCIT)" xsd:string -is_a: UBERON:0001466 ! pedal digit - -[Term] -id: NCIT:C25203 ! -property_value: IAO:0000589 "shoulder (NCIT)" xsd:string -is_a: UBERON:0001467 ! shoulder - -[Term] -id: NCIT:C49577 ! -property_value: IAO:0000589 "intervertebral joint (NCIT)" xsd:string -is_a: UBERON:0001468 ! intervertebral joint - -[Term] -id: NCIT:C33615 ! -property_value: IAO:0000589 "sternoclavicular joint (NCIT)" xsd:string -is_a: UBERON:0001469 ! sternoclavicular joint - -[Term] -id: NCIT:C33548 ! -property_value: IAO:0000589 "glenohumeral joint (NCIT)" xsd:string -is_a: UBERON:0001470 ! glenohumeral joint - -[Term] -id: NCIT:C33038 ! -property_value: IAO:0000589 "lymphatic vessel (NCIT)" xsd:string -is_a: UBERON:0001473 ! lymphatic vessel - -[Term] -id: NCIT:C12366 ! -property_value: IAO:0000589 "bone element (NCIT)" xsd:string -is_a: UBERON:0001474 ! bone element - -[Term] -id: NCIT:C32446 ! -property_value: IAO:0000589 "deltoid (NCIT)" xsd:string -is_a: UBERON:0001476 ! deltoid - -[Term] -id: NCIT:C32797 ! -property_value: IAO:0000589 "infraspinatus muscle (NCIT)" xsd:string -is_a: UBERON:0001477 ! infraspinatus muscle - -[Term] -id: NCIT:C33750 ! -property_value: IAO:0000589 "teres major muscle (NCIT)" xsd:string -is_a: UBERON:0001478 ! teres major muscle - -[Term] -id: NCIT:C33541 ! -property_value: IAO:0000589 "sesamoid bone (NCIT)" xsd:string -is_a: UBERON:0001479 ! sesamoid bone - -[Term] -id: NCIT:C32259 ! -property_value: IAO:0000589 "articular capsule (NCIT)" xsd:string -is_a: UBERON:0001484 ! articular capsule - -[Term] -id: NCIT:C84388 ! -property_value: IAO:0000589 "articular capsule (NCIT)" xsd:string -is_a: UBERON:0001484 ! articular capsule - -[Term] -id: NCIT:C32898 ! -property_value: IAO:0000589 "knee joint (NCIT)" xsd:string -is_a: UBERON:0001485 ! knee joint - -[Term] -id: NCIT:C32742 ! -property_value: IAO:0000589 "hip joint (NCIT)" xsd:string -is_a: UBERON:0001486 ! hip joint - -[Term] -id: NCIT:C32078 ! -property_value: IAO:0000589 "ankle joint (NCIT)" xsd:string -is_a: UBERON:0001488 ! ankle joint - -[Term] -id: NCIT:C32497 ! -property_value: IAO:0000589 "elbow joint (NCIT)" xsd:string -is_a: UBERON:0001490 ! elbow joint - -[Term] -id: NCIT:C33894 ! -property_value: IAO:0000589 "wrist joint (NCIT)" xsd:string -is_a: UBERON:0001491 ! wrist joint - -[Term] -id: NCIT:C52812 ! -property_value: IAO:0000589 "radial nerve (NCIT)" xsd:string -is_a: UBERON:0001492 ! radial nerve - -[Term] -id: NCIT:C52817 ! -property_value: IAO:0000589 "axillary nerve (NCIT)" xsd:string -is_a: UBERON:0001493 ! axillary nerve - -[Term] -id: NCIT:C52807 ! -property_value: IAO:0000589 "ulnar nerve (NCIT)" xsd:string -is_a: UBERON:0001494 ! ulnar nerve - -[Term] -id: NCIT:C33286 ! -property_value: IAO:0000589 "pectoral muscle (NCIT)" xsd:string -is_a: UBERON:0001495 ! pectoral muscle - -[Term] -id: NCIT:C32150 ! -property_value: IAO:0000589 "ascending aorta (NCIT)" xsd:string -is_a: UBERON:0001496 ! ascending aorta - -[Term] -id: NCIT:C53173 ! -property_value: IAO:0000589 "interosseous muscle of manus (NCIT)" xsd:string -is_a: UBERON:0001502 ! interosseous muscle of manus - -[Term] -id: NCIT:C52703 ! -property_value: IAO:0000589 "dorsal interosseous of manus (NCIT)" xsd:string -is_a: UBERON:0001503 ! dorsal interosseous of manus - -[Term] -id: NCIT:C53151 ! -property_value: IAO:0000589 "coracobrachialis muscle (NCIT)" xsd:string -is_a: UBERON:0001505 ! coracobrachialis muscle - -[Term] -id: NCIT:C53149 ! -property_value: IAO:0000589 "brachialis muscle (NCIT)" xsd:string -is_a: UBERON:0001506 ! brachialis muscle - -[Term] -id: NCIT:C32200 ! -property_value: IAO:0000589 "biceps brachii (NCIT)" xsd:string -is_a: UBERON:0001507 ! biceps brachii - -[Term] -id: NCIT:C33812 ! -property_value: IAO:0000589 "triceps brachii (NCIT)" xsd:string -is_a: UBERON:0001509 ! triceps brachii - -[Term] -id: NCIT:C90604 ! -property_value: IAO:0000589 "triceps brachii (NCIT)" xsd:string -is_a: UBERON:0001509 ! triceps brachii - -[Term] -id: NCIT:C64859 ! -property_value: IAO:0000589 "skin of knee (NCIT)" xsd:string -is_a: UBERON:0001510 ! skin of knee - -[Term] -id: NCIT:C52749 ! -property_value: IAO:0000589 "skin of leg (NCIT)" xsd:string -is_a: UBERON:0001511 ! skin of leg - -[Term] -id: NCIT:C52751 ! -property_value: IAO:0000589 "skin of ankle (NCIT)" xsd:string -is_a: UBERON:0001512 ! skin of ankle - -[Term] -id: NCIT:C52750 ! -property_value: IAO:0000589 "skin of pes (NCIT)" xsd:string -is_a: UBERON:0001513 ! skin of pes - -[Term] -id: NCIT:C32455 ! -property_value: IAO:0000589 "descending aorta (NCIT)" xsd:string -is_a: UBERON:0001514 ! descending aorta - -[Term] -id: NCIT:C33766 ! -property_value: IAO:0000589 "thoracic aorta (NCIT)" xsd:string -is_a: UBERON:0001515 ! thoracic aorta - -[Term] -id: NCIT:C32038 ! -property_value: IAO:0000589 "abdominal aorta (NCIT)" xsd:string -is_a: UBERON:0001516 ! abdominal aorta - -[Term] -id: NCIT:C52755 ! -property_value: IAO:0000589 "skin of elbow (NCIT)" xsd:string -is_a: UBERON:0001517 ! skin of elbow - -[Term] -id: NCIT:C52752 ! -property_value: IAO:0000589 "skin of wrist (NCIT)" xsd:string -is_a: UBERON:0001518 ! skin of wrist - -[Term] -id: NCIT:C52753 ! -property_value: IAO:0000589 "skin of manus (NCIT)" xsd:string -is_a: UBERON:0001519 ! skin of manus - -[Term] -id: NCIT:C53174 ! -property_value: IAO:0000589 "pronator teres (NCIT)" xsd:string -is_a: UBERON:0001520 ! pronator teres - -[Term] -id: NCIT:C53155 ! -property_value: IAO:0000589 "flexor carpi radialis muscle (NCIT)" xsd:string -is_a: UBERON:0001521 ! flexor carpi radialis muscle - -[Term] -id: NCIT:C53156 ! -property_value: IAO:0000589 "flexor carpi ulnaris muscle (NCIT)" xsd:string -is_a: UBERON:0001522 ! flexor carpi ulnaris muscle - -[Term] -id: NCIT:C52923 ! -property_value: IAO:0000589 "flexor digitorum profundus (NCIT)" xsd:string -is_a: UBERON:0001523 ! flexor digitorum profundus - -[Term] -id: NCIT:C52913 ! -property_value: IAO:0000589 "extensor carpi radialis longus muscle (NCIT)" xsd:string -is_a: UBERON:0001524 ! extensor carpi radialis longus muscle - -[Term] -id: NCIT:C52911 ! -property_value: IAO:0000589 "extensor carpi radialis brevis muscle (NCIT)" xsd:string -is_a: UBERON:0001525 ! extensor carpi radialis brevis muscle - -[Term] -id: NCIT:C52914 ! -property_value: IAO:0000589 "extensor carpi ulnaris muscle (NCIT)" xsd:string -is_a: UBERON:0001526 ! extensor carpi ulnaris muscle - -[Term] -id: NCIT:C52888 ! -property_value: IAO:0000589 "abductor pollicis longus (NCIT)" xsd:string -is_a: UBERON:0001527 ! abductor pollicis longus - -[Term] -id: NCIT:C32814 ! -property_value: IAO:0000589 "brachiocephalic artery (NCIT)" xsd:string -is_a: UBERON:0001529 ! brachiocephalic artery - -[Term] -id: NCIT:C32352 ! -property_value: IAO:0000589 "common carotid artery plus branches (NCIT)" xsd:string -is_a: UBERON:0001530 ! common carotid artery plus branches - -[Term] -id: NCIT:C33473 ! -property_value: IAO:0000589 "right common carotid artery plus branches (NCIT)" xsd:string -is_a: UBERON:0001531 ! right common carotid artery plus branches - -[Term] -id: NCIT:C32836 ! -property_value: IAO:0000589 "internal carotid artery (NCIT)" xsd:string -is_a: UBERON:0001532 ! internal carotid artery - -[Term] -id: NCIT:C33643 ! -property_value: IAO:0000589 "subclavian artery (NCIT)" xsd:string -is_a: UBERON:0001533 ! subclavian artery - -[Term] -id: NCIT:C33490 ! -property_value: IAO:0000589 "right subclavian artery (NCIT)" xsd:string -is_a: UBERON:0001534 ! right subclavian artery - -[Term] -id: NCIT:C12819 ! -property_value: IAO:0000589 "vertebral artery (NCIT)" xsd:string -is_a: UBERON:0001535 ! vertebral artery - -[Term] -id: NCIT:C32956 ! -property_value: IAO:0000589 "left common carotid artery plus branches (NCIT)" xsd:string -is_a: UBERON:0001536 ! left common carotid artery plus branches - -[Term] -id: NCIT:C12825 ! -property_value: IAO:0000589 "anterior tibial artery (NCIT)" xsd:string -is_a: UBERON:0001537 ! anterior tibial artery - -[Term] -id: NCIT:C12826 ! -property_value: IAO:0000589 "posterior tibial artery (NCIT)" xsd:string -is_a: UBERON:0001538 ! posterior tibial artery - -[Term] -id: NCIT:C32478 ! -property_value: IAO:0000589 "dorsalis pedis artery (NCIT)" xsd:string -is_a: UBERON:0001539 ! dorsalis pedis artery - -[Term] -id: NCIT:C33314 ! -property_value: IAO:0000589 "peroneal artery (NCIT)" xsd:string -is_a: UBERON:0001540 ! peroneal artery - -[Term] -id: NCIT:C32860 ! -property_value: IAO:0000589 "medial plantar artery (NCIT)" xsd:string -is_a: UBERON:0001541 ! medial plantar artery - -[Term] -id: NCIT:C52968 ! -property_value: IAO:0000589 "medial plantar artery (NCIT)" xsd:string -is_a: UBERON:0001541 ! medial plantar artery - -[Term] -id: NCIT:C32801 ! -property_value: IAO:0000589 "inguinal lymph node (NCIT)" xsd:string -is_a: UBERON:0001542 ! inguinal lymph node - -[Term] -id: NCIT:C53146 ! -property_value: IAO:0000589 "popliteal lymph node (NCIT)" xsd:string -is_a: UBERON:0001543 ! popliteal lymph node - -[Term] -id: NCIT:C33339 ! -property_value: IAO:0000589 "popliteal vein (NCIT)" xsd:string -is_a: UBERON:0001544 ! popliteal vein - -[Term] -id: NCIT:C32115 ! -property_value: IAO:0000589 "anterior tibial vein (NCIT)" xsd:string -is_a: UBERON:0001545 ! anterior tibial vein - -[Term] -id: NCIT:C33386 ! -property_value: IAO:0000589 "posterior tibial vein (NCIT)" xsd:string -is_a: UBERON:0001546 ! posterior tibial vein - -[Term] -id: NCIT:C33546 ! -property_value: IAO:0000589 "small saphenous vein (NCIT)" xsd:string -is_a: UBERON:0001547 ! small saphenous vein - -[Term] -id: NCIT:C52689 ! -property_value: IAO:0000589 "dorsal metatarsal vein (NCIT)" xsd:string -is_a: UBERON:0001549 ! dorsal metatarsal vein - -[Term] -id: NCIT:C52969 ! -property_value: IAO:0000589 "medial tarsal artery (NCIT)" xsd:string -is_a: UBERON:0001553 ! medial tarsal artery - -[Term] -id: NCIT:C34082 ! -property_value: IAO:0000589 "digestive tract (NCIT)" xsd:string -is_a: UBERON:0001555 ! digestive tract - -[Term] -id: NCIT:C53000 ! -property_value: IAO:0000589 "subcostal artery (NCIT)" xsd:string -is_a: UBERON:0001561 ! subcostal artery - -[Term] -id: NCIT:C32462 ! -property_value: IAO:0000589 "digastric muscle group (NCIT)" xsd:string -is_a: UBERON:0001562 ! digastric muscle group - -[Term] -id: NCIT:C52956 ! -property_value: IAO:0000589 "longus capitis muscle (NCIT)" xsd:string -is_a: UBERON:0001563 ! longus capitis muscle - -[Term] -id: NCIT:C52962 ! -property_value: IAO:0000589 "mylohyoid muscle (NCIT)" xsd:string -is_a: UBERON:0001564 ! mylohyoid muscle - -[Term] -id: NCIT:C52930 ! -property_value: IAO:0000589 "geniohyoid muscle (NCIT)" xsd:string -is_a: UBERON:0001565 ! geniohyoid muscle - -[Term] -id: NCIT:C32404 ! -property_value: IAO:0000589 "cricothyroid muscle (NCIT)" xsd:string -is_a: UBERON:0001566 ! cricothyroid muscle - -[Term] -id: NCIT:C13070 ! -property_value: IAO:0000589 "cheek (NCIT)" xsd:string -is_a: UBERON:0001567 ! cheek - -[Term] -id: NCIT:C32934 ! -property_value: IAO:0000589 "muscle of larynx (NCIT)" xsd:string -is_a: UBERON:0001568 ! muscle of larynx - -[Term] -id: NCIT:C52928 ! -property_value: IAO:0000589 "genioglossus muscle (NCIT)" xsd:string -is_a: UBERON:0001571 ! genioglossus muscle - -[Term] -id: NCIT:C53161 ! -property_value: IAO:0000589 "hyoglossus muscle (NCIT)" xsd:string -is_a: UBERON:0001572 ! hyoglossus muscle - -[Term] -id: NCIT:C53071 ! -property_value: IAO:0000589 "styloglossus (NCIT)" xsd:string -is_a: UBERON:0001573 ! styloglossus - -[Term] -id: NCIT:C53170 ! -property_value: IAO:0000589 "palatoglossus muscle (NCIT)" xsd:string -is_a: UBERON:0001574 ! palatoglossus muscle - -[Term] -id: NCIT:C13073 ! -property_value: IAO:0000589 "facial muscle (NCIT)" xsd:string -is_a: UBERON:0001577 ! facial muscle - -[Term] -id: NCIT:C52886 ! -property_value: IAO:0000589 "orbicularis oculi muscle (NCIT)" xsd:string -is_a: UBERON:0001578 ! orbicularis oculi muscle - -[Term] -id: NCIT:C12759 ! -property_value: IAO:0000589 "olfactory nerve (NCIT)" xsd:string -is_a: UBERON:0001579 ! olfactory nerve - -[Term] -id: NCIT:C53164 ! -property_value: IAO:0000589 "levator labii superioris (NCIT)" xsd:string -is_a: UBERON:0001580 ! levator labii superioris - -[Term] -id: NCIT:C53152 ! -property_value: IAO:0000589 "depressor labii inferioris (NCIT)" xsd:string -is_a: UBERON:0001581 ! depressor labii inferioris - -[Term] -id: NCIT:C53150 ! -property_value: IAO:0000589 "buccinator muscle (NCIT)" xsd:string -is_a: UBERON:0001582 ! buccinator muscle - -[Term] -id: NCIT:C32972 ! -property_value: IAO:0000589 "left subclavian artery (NCIT)" xsd:string -is_a: UBERON:0001584 ! left subclavian artery - -[Term] -id: NCIT:C12816 ! -property_value: IAO:0000589 "anterior vena cava (NCIT)" xsd:string -is_a: UBERON:0001585 ! anterior vena cava - -[Term] -id: NCIT:C32849 ! -property_value: IAO:0000589 "internal jugular vein (NCIT)" xsd:string -is_a: UBERON:0001586 ! internal jugular vein - -[Term] -id: NCIT:C12794 ! -property_value: IAO:0000589 "subclavian vein (NCIT)" xsd:string -is_a: UBERON:0001587 ! subclavian vein - -[Term] -id: NCIT:C53145 ! -property_value: IAO:0000589 "vertebral vein (NCIT)" xsd:string -is_a: UBERON:0001588 ! vertebral vein - -[Term] -id: NCIT:C52698 ! -property_value: IAO:0000589 "internal thoracic vein (NCIT)" xsd:string -is_a: UBERON:0001589 ! internal thoracic vein - -[Term] -id: NCIT:C53061 ! -property_value: IAO:0000589 "pericardiacophrenic vein (NCIT)" xsd:string -is_a: UBERON:0001590 ! pericardiacophrenic vein - -[Term] -id: NCIT:C53143 ! -property_value: IAO:0000589 "thymic vein (NCIT)" xsd:string -is_a: UBERON:0001591 ! thymic vein - -[Term] -id: NCIT:C53031 ! -property_value: IAO:0000589 "bronchial vein (NCIT)" xsd:string -is_a: UBERON:0001592 ! bronchial vein - -[Term] -id: NCIT:C53029 ! -property_value: IAO:0000589 "azygos vein (NCIT)" xsd:string -is_a: UBERON:0001594 ! azygos vein - -[Term] -id: NCIT:C13074 ! -property_value: IAO:0000589 "masseter muscle (NCIT)" xsd:string -is_a: UBERON:0001597 ! masseter muscle - -[Term] -id: NCIT:C33743 ! -property_value: IAO:0000589 "temporalis muscle (NCIT)" xsd:string -is_a: UBERON:0001598 ! temporalis muscle - -[Term] -id: NCIT:C33611 ! -property_value: IAO:0000589 "stapedius muscle (NCIT)" xsd:string -is_a: UBERON:0001599 ! stapedius muscle - -[Term] -id: NCIT:C33748 ! -property_value: IAO:0000589 "tensor tympani (NCIT)" xsd:string -is_a: UBERON:0001600 ! tensor tympani - -[Term] -id: NCIT:C33068 ! -property_value: IAO:0000589 "medial rectus extraocular muscle (NCIT)" xsd:string -is_a: UBERON:0001602 ! medial rectus extraocular muscle - -[Term] -id: NCIT:C32945 ! -property_value: IAO:0000589 "lateral rectus extra-ocular muscle (NCIT)" xsd:string -is_a: UBERON:0001603 ! lateral rectus extra-ocular muscle - -[Term] -id: NCIT:C52802 ! -property_value: IAO:0000589 "levator palpebrae superioris (NCIT)" xsd:string -is_a: UBERON:0001604 ! levator palpebrae superioris - -[Term] -id: NCIT:C32315 ! -property_value: IAO:0000589 "ciliary muscle (NCIT)" xsd:string -is_a: UBERON:0001605 ! ciliary muscle - -[Term] -id: NCIT:C33586 ! -property_value: IAO:0000589 "sphincter pupillae (NCIT)" xsd:string -is_a: UBERON:0001607 ! sphincter pupillae - -[Term] -id: NCIT:C32463 ! -property_value: IAO:0000589 "dilatator pupillae (NCIT)" xsd:string -is_a: UBERON:0001608 ! dilatator pupillae - -[Term] -id: NCIT:C32887 ! -property_value: IAO:0000589 "isthmus of thyroid gland (NCIT)" xsd:string -is_a: UBERON:0001609 ! isthmus of thyroid gland - -[Term] -id: NCIT:C52961 ! -property_value: IAO:0000589 "lingual artery (NCIT)" xsd:string -is_a: UBERON:0001610 ! lingual artery - -[Term] -id: NCIT:C53002 ! -property_value: IAO:0000589 "sublingual artery (NCIT)" xsd:string -is_a: UBERON:0001611 ! sublingual artery - -[Term] -id: NCIT:C32578 ! -property_value: IAO:0000589 "facial artery (NCIT)" xsd:string -is_a: UBERON:0001612 ! facial artery - -[Term] -id: NCIT:C33194 ! -property_value: IAO:0000589 "occipital artery (NCIT)" xsd:string -is_a: UBERON:0001613 ! occipital artery - -[Term] -id: NCIT:C53025 ! -property_value: IAO:0000589 "transverse facial artery (NCIT)" xsd:string -is_a: UBERON:0001615 ! transverse facial artery - -[Term] -id: NCIT:C34205 ! -property_value: IAO:0000589 "maxillary artery (NCIT)" xsd:string -is_a: UBERON:0001616 ! maxillary artery - -[Term] -id: NCIT:C52973 ! -property_value: IAO:0000589 "mental artery (NCIT)" xsd:string -is_a: UBERON:0001617 ! mental artery - -[Term] -id: NCIT:C52847 ! -property_value: IAO:0000589 "buccal artery (NCIT)" xsd:string -is_a: UBERON:0001618 ! buccal artery - -[Term] -id: NCIT:C33216 ! -property_value: IAO:0000589 "ophthalmic artery (NCIT)" xsd:string -is_a: UBERON:0001619 ! ophthalmic artery - -[Term] -id: NCIT:C52997 ! -property_value: IAO:0000589 "central retinal artery (NCIT)" xsd:string -is_a: UBERON:0001620 ! central retinal artery - -[Term] -id: NCIT:C12843 ! -property_value: IAO:0000589 "coronary artery (NCIT)" xsd:string -is_a: UBERON:0001621 ! coronary artery - -[Term] -id: NCIT:C52948 ! -property_value: IAO:0000589 "lacrimal artery (NCIT)" xsd:string -is_a: UBERON:0001622 ! lacrimal artery - -[Term] -id: NCIT:C52983 ! -property_value: IAO:0000589 "dorsal nasal artery (NCIT)" xsd:string -is_a: UBERON:0001623 ! dorsal nasal artery - -[Term] -id: NCIT:C12829 ! -property_value: IAO:0000589 "anterior cerebral artery (NCIT)" xsd:string -is_a: UBERON:0001624 ! anterior cerebral artery - -[Term] -id: NCIT:C12875 ! -property_value: IAO:0000589 "right coronary artery (NCIT)" xsd:string -is_a: UBERON:0001625 ! right coronary artery - -[Term] -id: NCIT:C12872 ! -property_value: IAO:0000589 "left coronary artery (NCIT)" xsd:string -is_a: UBERON:0001626 ! left coronary artery - -[Term] -id: NCIT:C12830 ! -property_value: IAO:0000589 "middle cerebral artery (NCIT)" xsd:string -is_a: UBERON:0001627 ! middle cerebral artery - -[Term] -id: NCIT:C33357 ! -property_value: IAO:0000589 "posterior communicating artery (NCIT)" xsd:string -is_a: UBERON:0001628 ! posterior communicating artery - -[Term] -id: NCIT:C66852 ! -property_value: IAO:0000589 "carotid body (NCIT)" xsd:string -is_a: UBERON:0001629 ! carotid body - -[Term] -id: NCIT:C33768 ! -property_value: IAO:0000589 "thoracic duct (NCIT)" xsd:string -is_a: UBERON:0001631 ! thoracic duct - -[Term] -id: NCIT:C33741 ! -property_value: IAO:0000589 "temporal artery (NCIT)" xsd:string -is_a: UBERON:0001632 ! temporal artery - -[Term] -id: NCIT:C12676 ! -property_value: IAO:0000589 "basilar artery (NCIT)" xsd:string -is_a: UBERON:0001633 ! basilar artery - -[Term] -id: NCIT:C33669 ! -property_value: IAO:0000589 "superior cerebellar artery (NCIT)" xsd:string -is_a: UBERON:0001635 ! superior cerebellar artery - -[Term] -id: NCIT:C12831 ! -property_value: IAO:0000589 "posterior cerebral artery (NCIT)" xsd:string -is_a: UBERON:0001636 ! posterior cerebral artery - -[Term] -id: NCIT:C12372 ! -property_value: IAO:0000589 "artery (NCIT)" xsd:string -is_a: UBERON:0001637 ! artery - -[Term] -id: NCIT:C12814 ! -property_value: IAO:0000589 "vein (NCIT)" xsd:string -is_a: UBERON:0001638 ! vein - -[Term] -id: NCIT:C52846 ! -property_value: IAO:0000589 "celiac artery (NCIT)" xsd:string -is_a: UBERON:0001640 ! celiac artery - -[Term] -id: NCIT:C12515 ! -property_value: IAO:0000589 "superior sagittal sinus (NCIT)" xsd:string -is_a: UBERON:0001642 ! superior sagittal sinus - -[Term] -id: NCIT:C12758 ! -property_value: IAO:0000589 "oculomotor nerve (NCIT)" xsd:string -is_a: UBERON:0001643 ! oculomotor nerve - -[Term] -id: NCIT:C12808 ! -property_value: IAO:0000589 "trochlear nerve (NCIT)" xsd:string -is_a: UBERON:0001644 ! trochlear nerve - -[Term] -id: NCIT:C12806 ! -property_value: IAO:0000589 "trigeminal nerve (NCIT)" xsd:string -is_a: UBERON:0001645 ! trigeminal nerve - -[Term] -id: NCIT:C12665 ! -property_value: IAO:0000589 "abducens nerve (NCIT)" xsd:string -is_a: UBERON:0001646 ! abducens nerve - -[Term] -id: NCIT:C12714 ! -property_value: IAO:0000589 "facial nerve (NCIT)" xsd:string -is_a: UBERON:0001647 ! facial nerve - -[Term] -id: NCIT:C12996 ! -property_value: IAO:0000589 "vestibulocochlear nerve (NCIT)" xsd:string -is_a: UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: NCIT:C12723 ! -property_value: IAO:0000589 "glossopharyngeal nerve (NCIT)" xsd:string -is_a: UBERON:0001649 ! glossopharyngeal nerve - -[Term] -id: NCIT:C12732 ! -property_value: IAO:0000589 "hypoglossal nerve (NCIT)" xsd:string -is_a: UBERON:0001650 ! hypoglossal nerve - -[Term] -id: NCIT:C33489 ! -property_value: IAO:0000589 "right pulmonary artery (NCIT)" xsd:string -is_a: UBERON:0001651 ! right pulmonary artery - -[Term] -id: NCIT:C32971 ! -property_value: IAO:0000589 "left pulmonary artery (NCIT)" xsd:string -is_a: UBERON:0001652 ! left pulmonary artery - -[Term] -id: NCIT:C32579 ! -property_value: IAO:0000589 "facial vein (NCIT)" xsd:string -is_a: UBERON:0001653 ! facial vein - -[Term] -id: NCIT:C33707 ! -property_value: IAO:0000589 "supraorbital vein (NCIT)" xsd:string -is_a: UBERON:0001654 ! supraorbital vein - -[Term] -id: NCIT:C53128 ! -property_value: IAO:0000589 "submental vein (NCIT)" xsd:string -is_a: UBERON:0001655 ! submental vein - -[Term] -id: NCIT:C33746 ! -property_value: IAO:0000589 "retromandibular vein (NCIT)" xsd:string -is_a: UBERON:0001656 ! retromandibular vein - -[Term] -id: NCIT:C52700 ! -property_value: IAO:0000589 "superficial temporal vein (NCIT)" xsd:string -is_a: UBERON:0001657 ! superficial temporal vein - -[Term] -id: NCIT:C32855 ! -property_value: IAO:0000589 "maxillary vein (NCIT)" xsd:string -is_a: UBERON:0001660 ! maxillary vein - -[Term] -id: NCIT:C52699 ! -property_value: IAO:0000589 "deep temporal vein (NCIT)" xsd:string -is_a: UBERON:0001661 ! deep temporal vein - -[Term] -id: NCIT:C53027 ! -property_value: IAO:0000589 "anterior auricular vein (NCIT)" xsd:string -is_a: UBERON:0001662 ! anterior auricular vein - -[Term] -id: NCIT:C53037 ! -property_value: IAO:0000589 "cerebral vein (NCIT)" xsd:string -is_a: UBERON:0001663 ! cerebral vein - -[Term] -id: NCIT:C53181 ! -property_value: IAO:0000589 "triceps surae (NCIT)" xsd:string -is_a: UBERON:0001665 ! triceps surae - -[Term] -id: NCIT:C52921 ! -property_value: IAO:0000589 "flexor digitorum longus (NCIT)" xsd:string -is_a: UBERON:0001666 ! flexor digitorum longus - -[Term] -id: NCIT:C53078 ! -property_value: IAO:0000589 "tibialis posterior (NCIT)" xsd:string -is_a: UBERON:0001667 ! tibialis posterior - -[Term] -id: NCIT:C53032 ! -property_value: IAO:0000589 "cerebellar vein (NCIT)" xsd:string -is_a: UBERON:0001668 ! cerebellar vein - -[Term] -id: NCIT:C53140 ! -property_value: IAO:0000589 "temporal vein (NCIT)" xsd:string -is_a: UBERON:0001671 ! temporal vein - -[Term] -id: NCIT:C53063 ! -property_value: IAO:0000589 "central retinal vein (NCIT)" xsd:string -is_a: UBERON:0001673 ! central retinal vein - -[Term] -id: NCIT:C53051 ! -property_value: IAO:0000589 "masseteric vein (NCIT)" xsd:string -is_a: UBERON:0001674 ! masseteric vein - -[Term] -id: NCIT:C62642 ! -property_value: IAO:0000589 "trigeminal ganglion (NCIT)" xsd:string -is_a: UBERON:0001675 ! trigeminal ganglion - -[Term] -id: NCIT:C12757 ! -property_value: IAO:0000589 "occipital bone (NCIT)" xsd:string -is_a: UBERON:0001676 ! occipital bone - -[Term] -id: NCIT:C12790 ! -property_value: IAO:0000589 "sphenoid bone (NCIT)" xsd:string -is_a: UBERON:0001677 ! sphenoid bone - -[Term] -id: NCIT:C12797 ! -property_value: IAO:0000589 "temporal bone (NCIT)" xsd:string -is_a: UBERON:0001678 ! temporal bone - -[Term] -id: NCIT:C12711 ! -property_value: IAO:0000589 "ethmoid bone (NCIT)" xsd:string -is_a: UBERON:0001679 ! ethmoid bone - -[Term] -id: NCIT:C32906 ! -property_value: IAO:0000589 "lacrimal bone (NCIT)" xsd:string -is_a: UBERON:0001680 ! lacrimal bone - -[Term] -id: NCIT:C33157 ! -property_value: IAO:0000589 "nasal bone (NCIT)" xsd:string -is_a: UBERON:0001681 ! nasal bone - -[Term] -id: NCIT:C52745 ! -property_value: IAO:0000589 "palatine bone (NCIT)" xsd:string -is_a: UBERON:0001682 ! palatine bone - -[Term] -id: NCIT:C12290 ! -property_value: IAO:0000589 "mandible (NCIT)" xsd:string -is_a: UBERON:0001684 ! mandible - -[Term] -id: NCIT:C32752 ! -property_value: IAO:0000589 "hyoid bone (NCIT)" xsd:string -is_a: UBERON:0001685 ! hyoid bone - -[Term] -id: NCIT:C32164 ! -property_value: IAO:0000589 "auditory ossicle bone (NCIT)" xsd:string -is_a: UBERON:0001686 ! auditory ossicle bone - -[Term] -id: NCIT:C33612 ! -property_value: IAO:0000589 "stapes bone (NCIT)" xsd:string -is_a: UBERON:0001687 ! stapes bone - -[Term] -id: NCIT:C32770 ! -property_value: IAO:0000589 "incus bone (NCIT)" xsd:string -is_a: UBERON:0001688 ! incus bone - -[Term] -id: NCIT:C33051 ! -property_value: IAO:0000589 "malleus bone (NCIT)" xsd:string -is_a: UBERON:0001689 ! malleus bone - -[Term] -id: NCIT:C12394 ! -property_value: IAO:0000589 "ear (NCIT)" xsd:string -is_a: UBERON:0001690 ! ear - -[Term] -id: NCIT:C12292 ! -property_value: IAO:0000589 "external ear (NCIT)" xsd:string -is_a: UBERON:0001691 ! external ear - -[Term] -id: NCIT:C32316 ! -property_value: IAO:0000589 "petrous part of temporal bone (NCIT)" xsd:string -is_a: UBERON:0001694 ! petrous part of temporal bone - -[Term] -id: NCIT:C12347 ! -property_value: IAO:0000589 "orbit of skull (NCIT)" xsd:string -is_a: UBERON:0001697 ! orbit of skull - -[Term] -id: NCIT:C12721 ! -property_value: IAO:0000589 "geniculate ganglion (NCIT)" xsd:string -is_a: UBERON:0001700 ! geniculate ganglion - -[Term] -id: NCIT:C32576 ! -property_value: IAO:0000589 "eyelash (NCIT)" xsd:string -is_a: UBERON:0001702 ! eyelash - -[Term] -id: NCIT:C33156 ! -property_value: IAO:0000589 "nail (NCIT)" xsd:string -is_a: UBERON:0001705 ! nail - -[Term] -id: NCIT:C33160 ! -property_value: IAO:0000589 "nasal septum (NCIT)" xsd:string -is_a: UBERON:0001706 ! nasal septum - -[Term] -id: NCIT:C12424 ! -property_value: IAO:0000589 "nasal cavity (NCIT)" xsd:string -is_a: UBERON:0001707 ! nasal cavity - -[Term] -id: NCIT:C48821 ! -property_value: IAO:0000589 "jaw skeleton (NCIT)" xsd:string -is_a: UBERON:0001708 ! jaw skeleton - -[Term] -id: NCIT:C12713 ! -property_value: IAO:0000589 "eyelid (NCIT)" xsd:string -is_a: UBERON:0001711 ! eyelid - -[Term] -id: NCIT:C49581 ! -property_value: IAO:0000589 "upper eyelid (NCIT)" xsd:string -is_a: UBERON:0001712 ! upper eyelid - -[Term] -id: NCIT:C49580 ! -property_value: IAO:0000589 "lower eyelid (NCIT)" xsd:string -is_a: UBERON:0001713 ! lower eyelid - -[Term] -id: NCIT:C12897 ! -property_value: IAO:0000589 "oculomotor nuclear complex (NCIT)" xsd:string -is_a: UBERON:0001715 ! oculomotor nuclear complex - -[Term] -id: NCIT:C12229 ! -property_value: IAO:0000589 "secondary palate (NCIT)" xsd:string -is_a: UBERON:0001716 ! secondary palate - -[Term] -id: NCIT:C34292 ! -property_value: IAO:0000589 "secondary palate (NCIT)" xsd:string -is_a: UBERON:0001716 ! secondary palate - -[Term] -id: NCIT:C33188 ! -property_value: IAO:0000589 "spinal nucleus of trigeminal nerve (NCIT)" xsd:string -is_a: UBERON:0001717 ! spinal nucleus of trigeminal nerve - -[Term] -id: NCIT:C12835 ! -property_value: IAO:0000589 "nucleus ambiguus (NCIT)" xsd:string -is_a: UBERON:0001719 ! nucleus ambiguus - -[Term] -id: NCIT:C12837 ! -property_value: IAO:0000589 "cochlear nucleus (NCIT)" xsd:string -is_a: UBERON:0001720 ! cochlear nucleus - -[Term] -id: NCIT:C33591 ! -property_value: IAO:0000589 "inferior vestibular nucleus (NCIT)" xsd:string -is_a: UBERON:0001721 ! inferior vestibular nucleus - -[Term] -id: NCIT:C33069 ! -property_value: IAO:0000589 "medial vestibular nucleus (NCIT)" xsd:string -is_a: UBERON:0001722 ! medial vestibular nucleus - -[Term] -id: NCIT:C12422 ! -property_value: IAO:0000589 "tongue (NCIT)" xsd:string -is_a: UBERON:0001723 ! tongue - -[Term] -id: NCIT:C12278 ! -property_value: IAO:0000589 "sphenoidal sinus (NCIT)" xsd:string -is_a: UBERON:0001724 ! sphenoidal sinus - -[Term] -id: NCIT:C33258 ! -property_value: IAO:0000589 "papilla of tongue (NCIT)" xsd:string -is_a: UBERON:0001726 ! papilla of tongue - -[Term] -id: NCIT:C96518 ! -property_value: IAO:0000589 "taste bud (NCIT)" xsd:string -is_a: UBERON:0001727 ! taste bud - -[Term] -id: NCIT:C12423 ! -property_value: IAO:0000589 "nasopharynx (NCIT)" xsd:string -is_a: UBERON:0001728 ! nasopharynx - -[Term] -id: NCIT:C12762 ! -property_value: IAO:0000589 "oropharynx (NCIT)" xsd:string -is_a: UBERON:0001729 ! oropharynx - -[Term] -id: NCIT:C33318 ! -property_value: IAO:0000589 "pharyngeal tonsil (NCIT)" xsd:string -is_a: UBERON:0001732 ! pharyngeal tonsil - -[Term] -id: NCIT:C12231 ! -property_value: IAO:0000589 "soft palate (NCIT)" xsd:string -is_a: UBERON:0001733 ! soft palate - -[Term] -id: NCIT:C12232 ! -property_value: IAO:0000589 "palatine uvula (NCIT)" xsd:string -is_a: UBERON:0001734 ! palatine uvula - -[Term] -id: NCIT:C73468 ! -property_value: IAO:0000589 "tonsillar ring (NCIT)" xsd:string -is_a: UBERON:0001735 ! tonsillar ring - -[Term] -id: NCIT:C12233 ! -property_value: IAO:0000589 "submandibular gland (NCIT)" xsd:string -is_a: UBERON:0001736 ! submandibular gland - -[Term] -id: NCIT:C12420 ! -property_value: IAO:0000589 "larynx (NCIT)" xsd:string -is_a: UBERON:0001737 ! larynx - -[Term] -id: NCIT:C33780 ! -property_value: IAO:0000589 "thyroid cartilage (NCIT)" xsd:string -is_a: UBERON:0001738 ! thyroid cartilage - -[Term] -id: NCIT:C12281 ! -property_value: IAO:0000589 "laryngeal cartilage (NCIT)" xsd:string -is_a: UBERON:0001739 ! laryngeal cartilage - -[Term] -id: NCIT:C32148 ! -property_value: IAO:0000589 "arytenoid cartilage (NCIT)" xsd:string -is_a: UBERON:0001740 ! arytenoid cartilage - -[Term] -id: NCIT:C32373 ! -property_value: IAO:0000589 "corniculate cartilage (NCIT)" xsd:string -is_a: UBERON:0001741 ! corniculate cartilage - -[Term] -id: NCIT:C32526 ! -property_value: IAO:0000589 "epiglottic cartilage (NCIT)" xsd:string -is_a: UBERON:0001742 ! epiglottic cartilage - -[Term] -id: NCIT:C32933 ! -property_value: IAO:0000589 "ligament of larynx (NCIT)" xsd:string -is_a: UBERON:0001743 ! ligament of larynx - -[Term] -id: NCIT:C13049 ! -property_value: IAO:0000589 "lymphoid tissue (NCIT)" xsd:string -is_a: UBERON:0001744 ! lymphoid tissue - -[Term] -id: NCIT:C33781 ! -property_value: IAO:0000589 "capsule of thyroid gland (NCIT)" xsd:string -is_a: UBERON:0001746 ! capsule of thyroid gland - -[Term] -id: NCIT:C33265 ! -property_value: IAO:0000589 "capsule of parathyroid gland (NCIT)" xsd:string -is_a: UBERON:0001748 ! capsule of parathyroid gland - -[Term] -id: NCIT:C32905 ! -property_value: IAO:0000589 "lacrimal apparatus (NCIT)" xsd:string -is_a: UBERON:0001750 ! lacrimal apparatus - -[Term] -id: NCIT:C32453 ! -property_value: IAO:0000589 "dentine (NCIT)" xsd:string -is_a: UBERON:0001751 ! dentine - -[Term] -id: NCIT:C32505 ! -property_value: IAO:0000589 "enamel (NCIT)" xsd:string -is_a: UBERON:0001752 ! enamel - -[Term] -id: NCIT:C32276 ! -property_value: IAO:0000589 "cementum (NCIT)" xsd:string -is_a: UBERON:0001753 ! cementum - -[Term] -id: NCIT:C32451 ! -property_value: IAO:0000589 "dental pulp (NCIT)" xsd:string -is_a: UBERON:0001754 ! dental pulp - -[Term] -id: NCIT:C12274 ! -property_value: IAO:0000589 "middle ear (NCIT)" xsd:string -is_a: UBERON:0001756 ! middle ear - -[Term] -id: NCIT:C32165 ! -property_value: IAO:0000589 "pinna (NCIT)" xsd:string -is_a: UBERON:0001757 ! pinna - -[Term] -id: NCIT:C33304 ! -property_value: IAO:0000589 "periodontium (NCIT)" xsd:string -is_a: UBERON:0001758 ! periodontium - -[Term] -id: NCIT:C12812 ! -property_value: IAO:0000589 "vagus nerve (NCIT)" xsd:string -is_a: UBERON:0001759 ! vagus nerve - -[Term] -id: NCIT:C12277 ! -property_value: IAO:0000589 "frontal sinus (NCIT)" xsd:string -is_a: UBERON:0001760 ! frontal sinus - -[Term] -id: NCIT:C49594 ! -property_value: IAO:0000589 "turbinate bone (NCIT)" xsd:string -is_a: UBERON:0001762 ! turbinate bone - -[Term] -id: NCIT:C12275 ! -property_value: IAO:0000589 "maxillary sinus (NCIT)" xsd:string -is_a: UBERON:0001764 ! maxillary sinus - -[Term] -id: NCIT:C32910 ! -property_value: IAO:0000589 "mammary duct (NCIT)" xsd:string -is_a: UBERON:0001765 ! mammary duct - -[Term] -id: NCIT:C12667 ! -property_value: IAO:0000589 "anterior chamber of eyeball (NCIT)" xsd:string -is_a: UBERON:0001766 ! anterior chamber of eyeball - -[Term] -id: NCIT:C12900 ! -property_value: IAO:0000589 "posterior chamber of eyeball (NCIT)" xsd:string -is_a: UBERON:0001767 ! posterior chamber of eyeball - -[Term] -id: NCIT:C12811 ! -property_value: IAO:0000589 "uvea (NCIT)" xsd:string -is_a: UBERON:0001768 ! uvea - -[Term] -id: NCIT:C12737 ! -property_value: IAO:0000589 "iris (NCIT)" xsd:string -is_a: UBERON:0001769 ! iris - -[Term] -id: NCIT:C32907 ! -property_value: IAO:0000589 "lacrimal canaliculus (NCIT)" xsd:string -is_a: UBERON:0001770 ! lacrimal canaliculus - -[Term] -id: NCIT:C33429 ! -property_value: IAO:0000589 "pupil (NCIT)" xsd:string -is_a: UBERON:0001771 ! pupil - -[Term] -id: NCIT:C12928 ! -property_value: IAO:0000589 "corneal epithelium (NCIT)" xsd:string -is_a: UBERON:0001772 ! corneal epithelium - -[Term] -id: NCIT:C12784 ! -property_value: IAO:0000589 "sclera (NCIT)" xsd:string -is_a: UBERON:0001773 ! sclera - -[Term] -id: NCIT:C12345 ! -property_value: IAO:0000589 "ciliary body (NCIT)" xsd:string -is_a: UBERON:0001775 ! ciliary body - -[Term] -id: NCIT:C12344 ! -property_value: IAO:0000589 "optic choroid (NCIT)" xsd:string -is_a: UBERON:0001776 ! optic choroid - -[Term] -id: NCIT:C12699 ! -property_value: IAO:0000589 "substantia propria of cornea (NCIT)" xsd:string -is_a: UBERON:0001777 ! substantia propria of cornea - -[Term] -id: NCIT:C32314 ! -property_value: IAO:0000589 "ciliary epithelium (NCIT)" xsd:string -is_a: UBERON:0001778 ! ciliary epithelium - -[Term] -id: NCIT:C12792 ! -property_value: IAO:0000589 "spinal nerve (NCIT)" xsd:string -is_a: UBERON:0001780 ! spinal nerve - -[Term] -id: NCIT:C49328 ! -property_value: IAO:0000589 "layer of retina (NCIT)" xsd:string -is_a: UBERON:0001781 ! layer of retina - -[Term] -id: NCIT:C33470 ! -property_value: IAO:0000589 "pigmented layer of retina (NCIT)" xsd:string -is_a: UBERON:0001782 ! pigmented layer of retina - -[Term] -id: NCIT:C12760 ! -property_value: IAO:0000589 "optic disc (NCIT)" xsd:string -is_a: UBERON:0001783 ! optic disc - -[Term] -id: NCIT:C12700 ! -property_value: IAO:0000589 "cranial nerve (NCIT)" xsd:string -is_a: UBERON:0001785 ! cranial nerve - -[Term] -id: NCIT:C26463 ! -property_value: IAO:0000589 "fovea centralis (NCIT)" xsd:string -is_a: UBERON:0001786 ! fovea centralis - -[Term] -id: NCIT:C32954 ! -property_value: IAO:0000589 "photoreceptor layer of retina (NCIT)" xsd:string -is_a: UBERON:0001787 ! photoreceptor layer of retina - -[Term] -id: NCIT:C33235 ! -property_value: IAO:0000589 "outer limiting layer of retina (NCIT)" xsd:string -is_a: UBERON:0001788 ! outer limiting layer of retina - -[Term] -id: NCIT:C33236 ! -property_value: IAO:0000589 "outer nuclear layer of retina (NCIT)" xsd:string -is_a: UBERON:0001789 ! outer nuclear layer of retina - -[Term] -id: NCIT:C33237 ! -property_value: IAO:0000589 "outer plexiform layer of retina (NCIT)" xsd:string -is_a: UBERON:0001790 ! outer plexiform layer of retina - -[Term] -id: NCIT:C32808 ! -property_value: IAO:0000589 "inner nuclear layer of retina (NCIT)" xsd:string -is_a: UBERON:0001791 ! inner nuclear layer of retina - -[Term] -id: NCIT:C32652 ! -property_value: IAO:0000589 "ganglionic layer of retina (NCIT)" xsd:string -is_a: UBERON:0001792 ! ganglionic layer of retina - -[Term] -id: NCIT:C32807 ! -property_value: IAO:0000589 "inner limiting layer of retina (NCIT)" xsd:string -is_a: UBERON:0001794 ! inner limiting layer of retina - -[Term] -id: NCIT:C32809 ! -property_value: IAO:0000589 "inner plexiform layer of retina (NCIT)" xsd:string -is_a: UBERON:0001795 ! inner plexiform layer of retina - -[Term] -id: NCIT:C13190 ! -property_value: IAO:0000589 "aqueous humor of eyeball (NCIT)" xsd:string -is_a: UBERON:0001796 ! aqueous humor of eyeball - -[Term] -id: NCIT:C13323 ! -property_value: IAO:0000589 "vitreous humor (NCIT)" xsd:string -is_a: UBERON:0001797 ! vitreous humor - -[Term] -id: NCIT:C33884 ! -property_value: IAO:0000589 "vitreous body (NCIT)" xsd:string -is_a: UBERON:0001798 ! vitreous body - -[Term] -id: NCIT:C33885 ! -property_value: IAO:0000589 "vitreous chamber of eyeball (NCIT)" xsd:string -is_a: UBERON:0001799 ! vitreous chamber of eyeball - -[Term] -id: NCIT:C13060 ! -property_value: IAO:0000589 "sensory ganglion (NCIT)" xsd:string -is_a: UBERON:0001800 ! sensory ganglion - -[Term] -id: NCIT:C12668 ! -property_value: IAO:0000589 "anterior segment of eyeball (NCIT)" xsd:string -is_a: UBERON:0001801 ! anterior segment of eyeball - -[Term] -id: NCIT:C12906 ! -property_value: IAO:0000589 "posterior segment of eyeball (NCIT)" xsd:string -is_a: UBERON:0001802 ! posterior segment of eyeball - -[Term] -id: NCIT:C32975 ! -property_value: IAO:0000589 "capsule of lens (NCIT)" xsd:string -is_a: UBERON:0001804 ! capsule of lens - -[Term] -id: NCIT:C12720 ! -property_value: IAO:0000589 "autonomic ganglion (NCIT)" xsd:string -is_a: UBERON:0001805 ! autonomic ganglion - -[Term] -id: NCIT:C12467 ! -property_value: IAO:0000589 "sympathetic ganglion (NCIT)" xsd:string -is_a: UBERON:0001806 ! sympathetic ganglion - -[Term] -id: NCIT:C52557 ! -property_value: IAO:0000589 "parasympathetic ganglion (NCIT)" xsd:string -is_a: UBERON:0001808 ! parasympathetic ganglion - -[Term] -id: NCIT:C52709 ! -property_value: IAO:0000589 "enteric ganglion (NCIT)" xsd:string -is_a: UBERON:0001809 ! enteric ganglion - -[Term] -id: NCIT:C12929 ! -property_value: IAO:0000589 "nerve plexus (NCIT)" xsd:string -is_a: UBERON:0001810 ! nerve plexus - -[Term] -id: NCIT:C12341 ! -property_value: IAO:0000589 "conjunctiva (NCIT)" xsd:string -is_a: UBERON:0001811 ! conjunctiva - -[Term] -id: NCIT:C12901 ! -property_value: IAO:0000589 "palpebral conjunctiva (NCIT)" xsd:string -is_a: UBERON:0001812 ! palpebral conjunctiva - -[Term] -id: NCIT:C49601 ! -property_value: IAO:0000589 "spinal nerve plexus (NCIT)" xsd:string -is_a: UBERON:0001813 ! spinal nerve plexus - -[Term] -id: NCIT:C12682 ! -property_value: IAO:0000589 "brachial nerve plexus (NCIT)" xsd:string -is_a: UBERON:0001814 ! brachial nerve plexus - -[Term] -id: NCIT:C52805 ! -property_value: IAO:0000589 "lumbosacral nerve plexus (NCIT)" xsd:string -is_a: UBERON:0001815 ! lumbosacral nerve plexus - -[Term] -id: NCIT:C12346 ! -property_value: IAO:0000589 "lacrimal gland (NCIT)" xsd:string -is_a: UBERON:0001817 ! lacrimal gland - -[Term] -id: NCIT:C33075 ! -property_value: IAO:0000589 "tarsal gland (NCIT)" xsd:string -is_a: UBERON:0001818 ! tarsal gland - -[Term] -id: NCIT:C33712 ! -property_value: IAO:0000589 "sweat gland (NCIT)" xsd:string -is_a: UBERON:0001820 ! sweat gland - -[Term] -id: NCIT:C33519 ! -property_value: IAO:0000589 "sebaceous gland (NCIT)" xsd:string -is_a: UBERON:0001821 ! sebaceous gland - -[Term] -id: NCIT:C49593 ! -property_value: IAO:0000589 "nasal cartilage (NCIT)" xsd:string -is_a: UBERON:0001823 ! nasal cartilage - -[Term] -id: NCIT:C49246 ! -property_value: IAO:0000589 "mucosa of larynx (NCIT)" xsd:string -is_a: UBERON:0001824 ! mucosa of larynx - -[Term] -id: NCIT:C12763 ! -property_value: IAO:0000589 "paranasal sinus (NCIT)" xsd:string -is_a: UBERON:0001825 ! paranasal sinus - -[Term] -id: NCIT:C33739 ! -property_value: IAO:0000589 "secretion of lacrimal gland (NCIT)" xsd:string -is_a: UBERON:0001827 ! secretion of lacrimal gland - -[Term] -id: NCIT:C32677 ! -property_value: IAO:0000589 "gingiva (NCIT)" xsd:string -is_a: UBERON:0001828 ! gingiva - -[Term] -id: NCIT:C12999 ! -property_value: IAO:0000589 "major salivary gland (NCIT)" xsd:string -is_a: UBERON:0001829 ! major salivary gland - -[Term] -id: NCIT:C33129 ! -property_value: IAO:0000589 "minor salivary gland (NCIT)" xsd:string -is_a: UBERON:0001830 ! minor salivary gland - -[Term] -id: NCIT:C12427 ! -property_value: IAO:0000589 "parotid gland (NCIT)" xsd:string -is_a: UBERON:0001831 ! parotid gland - -[Term] -id: NCIT:C12234 ! -property_value: IAO:0000589 "sublingual gland (NCIT)" xsd:string -is_a: UBERON:0001832 ! sublingual gland - -[Term] -id: NCIT:C12220 ! -property_value: IAO:0000589 "lip (NCIT)" xsd:string -is_a: UBERON:0001833 ! lip - -[Term] -id: NCIT:C94572 ! -property_value: IAO:0000589 "lower lip (NCIT)" xsd:string -is_a: UBERON:0001835 ! lower lip - -[Term] -id: NCIT:C13275 ! -property_value: IAO:0000589 "saliva (NCIT)" xsd:string -is_a: UBERON:0001836 ! saliva - -[Term] -id: NCIT:C32486 ! -property_value: IAO:0000589 "duct of salivary gland (NCIT)" xsd:string -is_a: UBERON:0001837 ! duct of salivary gland - -[Term] -id: NCIT:C33227 ! -property_value: IAO:0000589 "bony labyrinth (NCIT)" xsd:string -is_a: UBERON:0001839 ! bony labyrinth - -[Term] -id: NCIT:C33527 ! -property_value: IAO:0000589 "semicircular canal (NCIT)" xsd:string -is_a: UBERON:0001840 ! semicircular canal - -[Term] -id: NCIT:C33695 ! -property_value: IAO:0000589 "anterior semicircular canal (NCIT)" xsd:string -is_a: UBERON:0001841 ! anterior semicircular canal - -[Term] -id: NCIT:C33378 ! -property_value: IAO:0000589 "posterior semicircular canal (NCIT)" xsd:string -is_a: UBERON:0001842 ! posterior semicircular canal - -[Term] -id: NCIT:C12395 ! -property_value: IAO:0000589 "cochlea (NCIT)" xsd:string -is_a: UBERON:0001844 ! cochlea - -[Term] -id: NCIT:C33297 ! -property_value: IAO:0000589 "perilymph (NCIT)" xsd:string -is_a: UBERON:0001845 ! perilymph - -[Term] -id: NCIT:C12499 ! -property_value: IAO:0000589 "internal ear (NCIT)" xsd:string -is_a: UBERON:0001846 ! internal ear - -[Term] -id: NCIT:C32999 ! -property_value: IAO:0000589 "lobule of pinna (NCIT)" xsd:string -is_a: UBERON:0001847 ! lobule of pinna - -[Term] -id: NCIT:C33090 ! -property_value: IAO:0000589 "membranous labyrinth (NCIT)" xsd:string -is_a: UBERON:0001849 ! membranous labyrinth - -[Term] -id: NCIT:C32513 ! -property_value: IAO:0000589 "endolymph (NCIT)" xsd:string -is_a: UBERON:0001852 ! endolymph - -[Term] -id: NCIT:C33844 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (NCIT)" xsd:string -is_a: UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: NCIT:C33503 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (NCIT)" xsd:string -is_a: UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: NCIT:C32335 ! -property_value: IAO:0000589 "cochlear duct of membranous labyrinth (NCIT)" xsd:string -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: NCIT:C33528 ! -property_value: IAO:0000589 "semicircular duct (NCIT)" xsd:string -is_a: UBERON:0001856 ! semicircular duct - -[Term] -id: NCIT:C33871 ! -property_value: IAO:0000589 "vestibular labyrinth (NCIT)" xsd:string -is_a: UBERON:0001862 ! vestibular labyrinth - -[Term] -id: NCIT:C13276 ! -property_value: IAO:0000589 "sebum (NCIT)" xsd:string -is_a: UBERON:0001866 ! sebum - -[Term] -id: NCIT:C49225 ! -property_value: IAO:0000589 "cartilage of external ear (NCIT)" xsd:string -is_a: UBERON:0001867 ! cartilage of external ear - -[Term] -id: NCIT:C12351 ! -property_value: IAO:0000589 "cerebral hemisphere (NCIT)" xsd:string -is_a: UBERON:0001869 ! cerebral hemisphere - -[Term] -id: NCIT:C12353 ! -property_value: IAO:0000589 "temporal lobe (NCIT)" xsd:string -is_a: UBERON:0001871 ! temporal lobe - -[Term] -id: NCIT:C12354 ! -property_value: IAO:0000589 "parietal lobe (NCIT)" xsd:string -is_a: UBERON:0001872 ! parietal lobe - -[Term] -id: NCIT:C12451 ! -property_value: IAO:0000589 "caudate nucleus (NCIT)" xsd:string -is_a: UBERON:0001873 ! caudate nucleus - -[Term] -id: NCIT:C12452 ! -property_value: IAO:0000589 "putamen (NCIT)" xsd:string -is_a: UBERON:0001874 ! putamen - -[Term] -id: NCIT:C12449 ! -property_value: IAO:0000589 "globus pallidus (NCIT)" xsd:string -is_a: UBERON:0001875 ! globus pallidus - -[Term] -id: NCIT:C12440 ! -property_value: IAO:0000589 "amygdala (NCIT)" xsd:string -is_a: UBERON:0001876 ! amygdala - -[Term] -id: NCIT:C97342 ! -property_value: IAO:0000589 "nucleus of diagonal band (NCIT)" xsd:string -is_a: UBERON:0001879 ! nucleus of diagonal band - -[Term] -id: NCIT:C52733 ! -property_value: IAO:0000589 "nucleus accumbens (NCIT)" xsd:string -is_a: UBERON:0001882 ! nucleus accumbens - -[Term] -id: NCIT:C52813 ! -property_value: IAO:0000589 "phrenic nerve (NCIT)" xsd:string -is_a: UBERON:0001884 ! phrenic nerve - -[Term] -id: NCIT:C32452 ! -property_value: IAO:0000589 "dentate gyrus of hippocampal formation (NCIT)" xsd:string -is_a: UBERON:0001885 ! dentate gyrus of hippocampal formation - -[Term] -id: NCIT:C12694 ! -property_value: IAO:0000589 "choroid plexus (NCIT)" xsd:string -is_a: UBERON:0001886 ! choroid plexus - -[Term] -id: NCIT:C13082 ! -property_value: IAO:0000589 "internal capsule of telencephalon (NCIT)" xsd:string -is_a: UBERON:0001887 ! internal capsule of telencephalon - -[Term] -id: NCIT:C40185 ! -property_value: IAO:0000589 "forebrain (NCIT)" xsd:string -is_a: UBERON:0001890 ! forebrain - -[Term] -id: NCIT:C12510 ! -property_value: IAO:0000589 "midbrain (NCIT)" xsd:string -is_a: UBERON:0001891 ! midbrain - -[Term] -id: NCIT:C12456 ! -property_value: IAO:0000589 "diencephalon (NCIT)" xsd:string -is_a: UBERON:0001894 ! diencephalon - -[Term] -id: NCIT:C32741 ! -property_value: IAO:0000589 "metencephalon (NCIT)" xsd:string -is_a: UBERON:0001895 ! metencephalon - -[Term] -id: NCIT:C12442 ! -property_value: IAO:0000589 "medulla oblongata (NCIT)" xsd:string -is_a: UBERON:0001896 ! medulla oblongata - -[Term] -id: NCIT:C12459 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (NCIT)" xsd:string -is_a: UBERON:0001897 ! dorsal plus ventral thalamus - -[Term] -id: NCIT:C12458 ! -property_value: IAO:0000589 "hypothalamus (NCIT)" xsd:string -is_a: UBERON:0001898 ! hypothalamus - -[Term] -id: NCIT:C12457 ! -property_value: IAO:0000589 "epithalamus (NCIT)" xsd:string -is_a: UBERON:0001899 ! epithalamus - -[Term] -id: NCIT:C52731 ! -property_value: IAO:0000589 "ventral thalamus (NCIT)" xsd:string -is_a: UBERON:0001900 ! ventral thalamus - -[Term] -id: NCIT:C33797 ! -property_value: IAO:0000589 "epithelium of trachea (NCIT)" xsd:string -is_a: UBERON:0001901 ! epithelium of trachea - -[Term] -id: NCIT:C12398 ! -property_value: IAO:0000589 "pineal body (NCIT)" xsd:string -is_a: UBERON:0001905 ! pineal body - -[Term] -id: NCIT:C12454 ! -property_value: IAO:0000589 "subthalamic nucleus (NCIT)" xsd:string -is_a: UBERON:0001906 ! subthalamic nucleus - -[Term] -id: NCIT:C33218 ! -property_value: IAO:0000589 "optic tract (NCIT)" xsd:string -is_a: UBERON:0001908 ! optic tract - -[Term] -id: NCIT:C13083 ! -property_value: IAO:0000589 "medial forebrain bundle (NCIT)" xsd:string -is_a: UBERON:0001910 ! medial forebrain bundle - -[Term] -id: NCIT:C12367 ! -property_value: IAO:0000589 "mammary gland (NCIT)" xsd:string -is_a: UBERON:0001911 ! mammary gland - -[Term] -id: NCIT:C13401 ! -property_value: IAO:0000589 "milk (NCIT)" xsd:string -is_a: UBERON:0001913 ! milk - -[Term] -id: NCIT:C32348 ! -property_value: IAO:0000589 "colostrum (NCIT)" xsd:string -is_a: UBERON:0001914 ! colostrum - -[Term] -id: NCIT:C49215 ! -property_value: IAO:0000589 "endothelium of capillary (NCIT)" xsd:string -is_a: UBERON:0001915 ! endothelium of capillary - -[Term] -id: NCIT:C49192 ! -property_value: IAO:0000589 "endothelium of arteriole (NCIT)" xsd:string -is_a: UBERON:0001916 ! endothelium of arteriole - -[Term] -id: NCIT:C49194 ! -property_value: IAO:0000589 "endothelium of artery (NCIT)" xsd:string -is_a: UBERON:0001917 ! endothelium of artery - -[Term] -id: NCIT:C49319 ! -property_value: IAO:0000589 "endothelium of venule (NCIT)" xsd:string -is_a: UBERON:0001918 ! endothelium of venule - -[Term] -id: NCIT:C49317 ! -property_value: IAO:0000589 "endothelium of vein (NCIT)" xsd:string -is_a: UBERON:0001919 ! endothelium of vein - -[Term] -id: NCIT:C33260 ! -property_value: IAO:0000589 "parafascicular nucleus (NCIT)" xsd:string -is_a: UBERON:0001922 ! parafascicular nucleus - -[Term] -id: NCIT:C33862 ! -property_value: IAO:0000589 "ventral lateral nucleus of thalamus (NCIT)" xsd:string -is_a: UBERON:0001925 ! ventral lateral nucleus of thalamus - -[Term] -id: NCIT:C32556 ! -property_value: IAO:0000589 "lateral geniculate body (NCIT)" xsd:string -is_a: UBERON:0001926 ! lateral geniculate body - -[Term] -id: NCIT:C32843 ! -property_value: IAO:0000589 "medial geniculate body (NCIT)" xsd:string -is_a: UBERON:0001927 ! medial geniculate body - -[Term] -id: NCIT:C52711 ! -property_value: IAO:0000589 "arcuate nucleus of hypothalamus (NCIT)" xsd:string -is_a: UBERON:0001932 ! arcuate nucleus of hypothalamus - -[Term] -id: NCIT:C33969 ! -property_value: IAO:0000589 "regional part of spinal cord (NCIT)" xsd:string -is_a: UBERON:0001948 ! regional part of spinal cord - -[Term] -id: NCIT:C49239 ! -property_value: IAO:0000589 "gingival epithelium (NCIT)" xsd:string -is_a: UBERON:0001949 ! gingival epithelium - -[Term] -id: NCIT:C49263 ! -property_value: IAO:0000589 "epithelium of nasopharynx (NCIT)" xsd:string -is_a: UBERON:0001951 ! epithelium of nasopharynx - -[Term] -id: NCIT:C49264 ! -property_value: IAO:0000589 "epithelium of oropharynx (NCIT)" xsd:string -is_a: UBERON:0001952 ! epithelium of oropharynx - -[Term] -id: NCIT:C12444 ! -property_value: IAO:0000589 "Ammon's horn (NCIT)" xsd:string -is_a: UBERON:0001954 ! Ammon's horn - -[Term] -id: NCIT:C32374 ! -property_value: IAO:0000589 "Ammon's horn (NCIT)" xsd:string -is_a: UBERON:0001954 ! Ammon's horn - -[Term] -id: NCIT:C48943 ! -property_value: IAO:0000589 "epithelium of respiratory bronchiole (NCIT)" xsd:string -is_a: UBERON:0001955 ! epithelium of respiratory bronchiole - -[Term] -id: NCIT:C49209 ! -property_value: IAO:0000589 "cartilage of bronchus (NCIT)" xsd:string -is_a: UBERON:0001956 ! cartilage of bronchus - -[Term] -id: NCIT:C49214 ! -property_value: IAO:0000589 "submucosa of bronchus (NCIT)" xsd:string -is_a: UBERON:0001957 ! submucosa of bronchus - -[Term] -id: NCIT:C33755 ! -property_value: IAO:0000589 "terminal bronchiole epithelium (NCIT)" xsd:string -is_a: UBERON:0001958 ! terminal bronchiole epithelium - -[Term] -id: NCIT:C12993 ! -property_value: IAO:0000589 "white pulp of spleen (NCIT)" xsd:string -is_a: UBERON:0001959 ! white pulp of spleen - -[Term] -id: NCIT:C12910 ! -property_value: IAO:0000589 "mucosa-associated lymphoid tissue (NCIT)" xsd:string -is_a: UBERON:0001961 ! mucosa-associated lymphoid tissue - -[Term] -id: NCIT:C12936 ! -property_value: IAO:0000589 "gut-associated lymphoid tissue (NCIT)" xsd:string -is_a: UBERON:0001962 ! gut-associated lymphoid tissue - -[Term] -id: NCIT:C32234 ! -property_value: IAO:0000589 "bronchial-associated lymphoid tissue (NCIT)" xsd:string -is_a: UBERON:0001963 ! bronchial-associated lymphoid tissue - -[Term] -id: NCIT:C97341 ! -property_value: IAO:0000589 "substantia nigra pars compacta (NCIT)" xsd:string -is_a: UBERON:0001965 ! substantia nigra pars compacta - -[Term] -id: NCIT:C13277 ! -property_value: IAO:0000589 "semen (NCIT)" xsd:string -is_a: UBERON:0001968 ! semen - -[Term] -id: NCIT:C13713 ! -property_value: IAO:0000589 "semen (NCIT)" xsd:string -is_a: UBERON:0001968 ! semen - -[Term] -id: NCIT:C13356 ! -property_value: IAO:0000589 "blood plasma (NCIT)" xsd:string -is_a: UBERON:0001969 ! blood plasma - -[Term] -id: NCIT:C13192 ! -property_value: IAO:0000589 "bile (NCIT)" xsd:string -is_a: UBERON:0001970 ! bile - -[Term] -id: NCIT:C32661 ! -property_value: IAO:0000589 "gastric juice (NCIT)" xsd:string -is_a: UBERON:0001971 ! gastric juice - -[Term] -id: NCIT:C49223 ! -property_value: IAO:0000589 "lamina propria of esophagus (NCIT)" xsd:string -is_a: UBERON:0001974 ! lamina propria of esophagus - -[Term] -id: NCIT:C49221 ! -property_value: IAO:0000589 "epithelium of esophagus (NCIT)" xsd:string -is_a: UBERON:0001976 ! epithelium of esophagus - -[Term] -id: NCIT:C13325 ! -property_value: IAO:0000589 "blood serum (NCIT)" xsd:string -is_a: UBERON:0001977 ! blood serum - -[Term] -id: NCIT:C12818 ! -property_value: IAO:0000589 "venule (NCIT)" xsd:string -is_a: UBERON:0001979 ! venule - -[Term] -id: NCIT:C12672 ! -property_value: IAO:0000589 "arteriole (NCIT)" xsd:string -is_a: UBERON:0001980 ! arteriole - -[Term] -id: NCIT:C12679 ! -property_value: IAO:0000589 "blood vessel (NCIT)" xsd:string -is_a: UBERON:0001981 ! blood vessel - -[Term] -id: NCIT:C12685 ! -property_value: IAO:0000589 "capillary (NCIT)" xsd:string -is_a: UBERON:0001982 ! capillary - -[Term] -id: NCIT:C32411 ! -property_value: IAO:0000589 "crypt of Lieberkuhn (NCIT)" xsd:string -is_a: UBERON:0001983 ! crypt of Lieberkuhn - -[Term] -id: NCIT:C32924 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of large intestine (NCIT)" xsd:string -is_a: UBERON:0001984 ! crypt of Lieberkuhn of large intestine - -[Term] -id: NCIT:C12707 ! -property_value: IAO:0000589 "corneal endothelium (NCIT)" xsd:string -is_a: UBERON:0001985 ! corneal endothelium - -[Term] -id: NCIT:C12481 ! -property_value: IAO:0000589 "endothelium (NCIT)" xsd:string -is_a: UBERON:0001986 ! endothelium - -[Term] -id: NCIT:C13272 ! -property_value: IAO:0000589 "placenta (NCIT)" xsd:string -is_a: UBERON:0001987 ! placenta - -[Term] -id: NCIT:C13234 ! -property_value: IAO:0000589 "feces (NCIT)" xsd:string -is_a: UBERON:0001988 ! feces - -[Term] -id: NCIT:C92213 ! -property_value: IAO:0000589 "superior cervical ganglion (NCIT)" xsd:string -is_a: UBERON:0001989 ! superior cervical ganglion - -[Term] -id: NCIT:C92212 ! -property_value: IAO:0000589 "middle cervical ganglion (NCIT)" xsd:string -is_a: UBERON:0001990 ! middle cervical ganglion - -[Term] -id: NCIT:C33630 ! -property_value: IAO:0000589 "papillary layer of dermis (NCIT)" xsd:string -is_a: UBERON:0001992 ! papillary layer of dermis - -[Term] -id: NCIT:C94819 ! -property_value: IAO:0000589 "papillary layer of dermis (NCIT)" xsd:string -is_a: UBERON:0001992 ! papillary layer of dermis - -[Term] -id: NCIT:C33631 ! -property_value: IAO:0000589 "reticular layer of dermis (NCIT)" xsd:string -is_a: UBERON:0001993 ! reticular layer of dermis - -[Term] -id: NCIT:C94818 ! -property_value: IAO:0000589 "reticular layer of dermis (NCIT)" xsd:string -is_a: UBERON:0001993 ! reticular layer of dermis - -[Term] -id: NCIT:C32746 ! -property_value: IAO:0000589 "hyaline cartilage tissue (NCIT)" xsd:string -is_a: UBERON:0001994 ! hyaline cartilage tissue - -[Term] -id: NCIT:C32599 ! -property_value: IAO:0000589 "fibrocartilage (NCIT)" xsd:string -is_a: UBERON:0001995 ! fibrocartilage - -[Term] -id: NCIT:C32494 ! -property_value: IAO:0000589 "elastic cartilage tissue (NCIT)" xsd:string -is_a: UBERON:0001996 ! elastic cartilage tissue - -[Term] -id: NCIT:C33203 ! -property_value: IAO:0000589 "olfactory epithelium (NCIT)" xsd:string -is_a: UBERON:0001997 ! olfactory epithelium - -[Term] -id: NCIT:C33617 ! -property_value: IAO:0000589 "sternocostal joint (NCIT)" xsd:string -is_a: UBERON:0001998 ! sternocostal joint - -[Term] -id: NCIT:C32764 ! -property_value: IAO:0000589 "iliopsoas (NCIT)" xsd:string -is_a: UBERON:0001999 ! iliopsoas - -[Term] -id: NCIT:C78205 ! -property_value: IAO:0000589 "gluteal muscle (NCIT)" xsd:string -is_a: UBERON:0002000 ! gluteal muscle - -[Term] -id: NCIT:C49575 ! -property_value: IAO:0000589 "joint of rib (NCIT)" xsd:string -is_a: UBERON:0002001 ! joint of rib - -[Term] -id: NCIT:C33029 ! -property_value: IAO:0000589 "cortex of lymph node (NCIT)" xsd:string -is_a: UBERON:0002006 ! cortex of lymph node - -[Term] -id: NCIT:C52833 ! -property_value: IAO:0000589 "cardiac nerve plexus (NCIT)" xsd:string -is_a: UBERON:0002008 ! cardiac nerve plexus - -[Term] -id: NCIT:C53018 ! -property_value: IAO:0000589 "thoracodorsal artery (NCIT)" xsd:string -is_a: UBERON:0002011 ! thoracodorsal artery - -[Term] -id: NCIT:C12774 ! -property_value: IAO:0000589 "pulmonary artery (NCIT)" xsd:string -is_a: UBERON:0002012 ! pulmonary artery - -[Term] -id: NCIT:C52721 ! -property_value: IAO:0000589 "inferior hypogastric nerve plexus (NCIT)" xsd:string -is_a: UBERON:0002014 ! inferior hypogastric nerve plexus - -[Term] -id: NCIT:C12885 ! -property_value: IAO:0000589 "kidney capsule (NCIT)" xsd:string -is_a: UBERON:0002015 ! kidney capsule - -[Term] -id: NCIT:C12776 ! -property_value: IAO:0000589 "pulmonary vein (NCIT)" xsd:string -is_a: UBERON:0002016 ! pulmonary vein - -[Term] -id: NCIT:C33343 ! -property_value: IAO:0000589 "portal vein (NCIT)" xsd:string -is_a: UBERON:0002017 ! portal vein - -[Term] -id: NCIT:C12473 ! -property_value: IAO:0000589 "synovial membrane of synovial joint (NCIT)" xsd:string -is_a: UBERON:0002018 ! synovial membrane of synovial joint - -[Term] -id: NCIT:C32041 ! -property_value: IAO:0000589 "accessory XI nerve (NCIT)" xsd:string -is_a: UBERON:0002019 ! accessory XI nerve - -[Term] -id: NCIT:C32695 ! -property_value: IAO:0000589 "gray matter (NCIT)" xsd:string -is_a: UBERON:0002020 ! gray matter - -[Term] -id: NCIT:C12355 ! -property_value: IAO:0000589 "occipital lobe (NCIT)" xsd:string -is_a: UBERON:0002021 ! occipital lobe - -[Term] -id: NCIT:C32278 ! -property_value: IAO:0000589 "insula (NCIT)" xsd:string -is_a: UBERON:0002022 ! insula - -[Term] -id: NCIT:C32329 ! -property_value: IAO:0000589 "claustrum of brain (NCIT)" xsd:string -is_a: UBERON:0002023 ! claustrum of brain - -[Term] -id: NCIT:C52746 ! -property_value: IAO:0000589 "internal carotid nerve plexus (NCIT)" xsd:string -is_a: UBERON:0002024 ! internal carotid nerve plexus - -[Term] -id: NCIT:C33466 ! -property_value: IAO:0000589 "stratum basale of epidermis (NCIT)" xsd:string -is_a: UBERON:0002025 ! stratum basale of epidermis - -[Term] -id: NCIT:C33623 ! -property_value: IAO:0000589 "stratum basale of epidermis (NCIT)" xsd:string -is_a: UBERON:0002025 ! stratum basale of epidermis - -[Term] -id: NCIT:C12850 ! -property_value: IAO:0000589 "stratum spinosum of epidermis (NCIT)" xsd:string -is_a: UBERON:0002026 ! stratum spinosum of epidermis - -[Term] -id: NCIT:C33625 ! -property_value: IAO:0000589 "stratum corneum of epidermis (NCIT)" xsd:string -is_a: UBERON:0002027 ! stratum corneum of epidermis - -[Term] -id: NCIT:C40336 ! -property_value: IAO:0000589 "hindbrain (NCIT)" xsd:string -is_a: UBERON:0002028 ! hindbrain - -[Term] -id: NCIT:C49227 ! -property_value: IAO:0000589 "epithelium of gall bladder (NCIT)" xsd:string -is_a: UBERON:0002029 ! epithelium of gall bladder - -[Term] -id: NCIT:C12299 ! -property_value: IAO:0000589 "nipple (NCIT)" xsd:string -is_a: UBERON:0002030 ! nipple - -[Term] -id: NCIT:C32231 ! -property_value: IAO:0000589 "epithelium of bronchus (NCIT)" xsd:string -is_a: UBERON:0002031 ! epithelium of bronchus - -[Term] -id: NCIT:C12368 ! -property_value: IAO:0000589 "areola (NCIT)" xsd:string -is_a: UBERON:0002032 ! areola - -[Term] -id: NCIT:C74537 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (NCIT)" xsd:string -is_a: UBERON:0002034 ! suprachiasmatic nucleus - -[Term] -id: NCIT:C12436 ! -property_value: IAO:0000589 "striated muscle tissue (NCIT)" xsd:string -is_a: UBERON:0002036 ! striated muscle tissue - -[Term] -id: NCIT:C12445 ! -property_value: IAO:0000589 "cerebellum (NCIT)" xsd:string -is_a: UBERON:0002037 ! cerebellum - -[Term] -id: NCIT:C12453 ! -property_value: IAO:0000589 "substantia nigra (NCIT)" xsd:string -is_a: UBERON:0002038 ! substantia nigra - -[Term] -id: NCIT:C32230 ! -property_value: IAO:0000589 "bronchial artery (NCIT)" xsd:string -is_a: UBERON:0002040 ! bronchial artery - -[Term] -id: NCIT:C49258 ! -property_value: IAO:0000589 "lymphatic vessel endothelium (NCIT)" xsd:string -is_a: UBERON:0002042 ! lymphatic vessel endothelium - -[Term] -id: NCIT:C52716 ! -property_value: IAO:0000589 "cuneate nucleus (NCIT)" xsd:string -is_a: UBERON:0002045 ! cuneate nucleus - -[Term] -id: NCIT:C12400 ! -property_value: IAO:0000589 "thyroid gland (NCIT)" xsd:string -is_a: UBERON:0002046 ! thyroid gland - -[Term] -id: NCIT:C12468 ! -property_value: IAO:0000589 "lung (NCIT)" xsd:string -is_a: UBERON:0002048 ! lung - -[Term] -id: NCIT:C13229 ! -property_value: IAO:0000589 "embryonic structure (NCIT)" xsd:string -is_a: UBERON:0002050 ! embryonic structure - -[Term] -id: NCIT:C48942 ! -property_value: IAO:0000589 "epithelium of bronchiole (NCIT)" xsd:string -is_a: UBERON:0002051 ! epithelium of bronchiole - -[Term] -id: NCIT:C32050 ! -property_value: IAO:0000589 "adrenal gland capsule (NCIT)" xsd:string -is_a: UBERON:0002052 ! adrenal gland capsule - -[Term] -id: NCIT:C52737 ! -property_value: IAO:0000589 "inferior suprarenal artery (NCIT)" xsd:string -is_a: UBERON:0002056 ! inferior suprarenal artery - -[Term] -id: NCIT:C33320 ! -property_value: IAO:0000589 "phrenic artery (NCIT)" xsd:string -is_a: UBERON:0002057 ! phrenic artery - -[Term] -id: NCIT:C52558 ! -property_value: IAO:0000589 "submandibular ganglion (NCIT)" xsd:string -is_a: UBERON:0002059 ! submandibular ganglion - -[Term] -id: NCIT:C12715 ! -property_value: IAO:0000589 "femoral artery (NCIT)" xsd:string -is_a: UBERON:0002060 ! femoral artery - -[Term] -id: NCIT:C34317 ! -property_value: IAO:0000589 "truncus arteriosus (NCIT)" xsd:string -is_a: UBERON:0002061 ! truncus arteriosus - -[Term] -id: NCIT:C34299 ! -property_value: IAO:0000589 "sinus venosus (NCIT)" xsd:string -is_a: UBERON:0002063 ! sinus venosus - -[Term] -id: NCIT:C34300 ! -property_value: IAO:0000589 "sinus venosus (NCIT)" xsd:string -is_a: UBERON:0002063 ! sinus venosus - -[Term] -id: NCIT:C34130 ! -property_value: IAO:0000589 "common cardinal vein (NCIT)" xsd:string -is_a: UBERON:0002064 ! common cardinal vein - -[Term] -id: NCIT:C34257 ! -property_value: IAO:0000589 "posterior cardinal vein (NCIT)" xsd:string -is_a: UBERON:0002065 ! posterior cardinal vein - -[Term] -id: NCIT:C33830 ! -property_value: IAO:0000589 "umbilical vein (NCIT)" xsd:string -is_a: UBERON:0002066 ! umbilical vein - -[Term] -id: NCIT:C12701 ! -property_value: IAO:0000589 "dermis (NCIT)" xsd:string -is_a: UBERON:0002067 ! dermis - -[Term] -id: NCIT:C12338 ! -property_value: IAO:0000589 "urachus (NCIT)" xsd:string -is_a: UBERON:0002068 ! urachus - -[Term] -id: NCIT:C33627 ! -property_value: IAO:0000589 "stratum granulosum of epidermis (NCIT)" xsd:string -is_a: UBERON:0002069 ! stratum granulosum of epidermis - -[Term] -id: NCIT:C52742 ! -property_value: IAO:0000589 "superior pancreaticoduodenal artery (NCIT)" xsd:string -is_a: UBERON:0002070 ! superior pancreaticoduodenal artery - -[Term] -id: NCIT:C33624 ! -property_value: IAO:0000589 "stratum lucidum of epidermis (NCIT)" xsd:string -is_a: UBERON:0002071 ! stratum lucidum of epidermis - -[Term] -id: NCIT:C33629 ! -property_value: IAO:0000589 "stratum lucidum of epidermis (NCIT)" xsd:string -is_a: UBERON:0002071 ! stratum lucidum of epidermis - -[Term] -id: NCIT:C33645 ! -property_value: IAO:0000589 "hypodermis (NCIT)" xsd:string -is_a: UBERON:0002072 ! hypodermis - -[Term] -id: NCIT:C13317 ! -property_value: IAO:0000589 "hair follicle (NCIT)" xsd:string -is_a: UBERON:0002073 ! hair follicle - -[Term] -id: NCIT:C33543 ! -property_value: IAO:0000589 "hair shaft (NCIT)" xsd:string -is_a: UBERON:0002074 ! hair shaft - -[Term] -id: NCIT:C28287 ! -property_value: IAO:0000589 "viscus (NCIT)" xsd:string -is_a: UBERON:0002075 ! viscus - -[Term] -id: NCIT:C12868 ! -property_value: IAO:0000589 "right cardiac atrium (NCIT)" xsd:string -is_a: UBERON:0002078 ! right cardiac atrium - -[Term] -id: NCIT:C12869 ! -property_value: IAO:0000589 "left cardiac atrium (NCIT)" xsd:string -is_a: UBERON:0002079 ! left cardiac atrium - -[Term] -id: NCIT:C12870 ! -property_value: IAO:0000589 "heart right ventricle (NCIT)" xsd:string -is_a: UBERON:0002080 ! heart right ventricle - -[Term] -id: NCIT:C12728 ! -property_value: IAO:0000589 "cardiac atrium (NCIT)" xsd:string -is_a: UBERON:0002081 ! cardiac atrium - -[Term] -id: NCIT:C12730 ! -property_value: IAO:0000589 "cardiac ventricle (NCIT)" xsd:string -is_a: UBERON:0002082 ! cardiac ventricle - -[Term] -id: NCIT:C34143 ! -property_value: IAO:0000589 "ductus venosus (NCIT)" xsd:string -is_a: UBERON:0002083 ! ductus venosus - -[Term] -id: NCIT:C12871 ! -property_value: IAO:0000589 "heart left ventricle (NCIT)" xsd:string -is_a: UBERON:0002084 ! heart left ventricle - -[Term] -id: NCIT:C32818 ! -property_value: IAO:0000589 "interatrial septum (NCIT)" xsd:string -is_a: UBERON:0002085 ! interatrial septum - -[Term] -id: NCIT:C49477 ! -property_value: IAO:0000589 "appendicular skeleton (NCIT)" xsd:string -is_a: UBERON:0002091 ! appendicular skeleton - -[Term] -id: NCIT:C49332 ! -property_value: IAO:0000589 "brain dura mater (NCIT)" xsd:string -is_a: UBERON:0002092 ! brain dura mater - -[Term] -id: NCIT:C49799 ! -property_value: IAO:0000589 "spinal dura mater (NCIT)" xsd:string -is_a: UBERON:0002093 ! spinal dura mater - -[Term] -id: NCIT:C32874 ! -property_value: IAO:0000589 "interventricular septum (NCIT)" xsd:string -is_a: UBERON:0002094 ! interventricular septum - -[Term] -id: NCIT:C33103 ! -property_value: IAO:0000589 "mesentery (NCIT)" xsd:string -is_a: UBERON:0002095 ! mesentery - -[Term] -id: NCIT:C12470 ! -property_value: IAO:0000589 "skin of body (NCIT)" xsd:string -is_a: UBERON:0002097 ! skin of body - -[Term] -id: NCIT:C32126 ! -property_value: IAO:0000589 "apex of heart (NCIT)" xsd:string -is_a: UBERON:0002098 ! apex of heart - -[Term] -id: NCIT:C49485 ! -property_value: IAO:0000589 "cardiac septum (NCIT)" xsd:string -is_a: UBERON:0002099 ! cardiac septum - -[Term] -id: NCIT:C33816 ! -property_value: IAO:0000589 "trunk (NCIT)" xsd:string -is_a: UBERON:0002100 ! trunk - -[Term] -id: NCIT:C12429 ! -property_value: IAO:0000589 "limb (NCIT)" xsd:string -is_a: UBERON:0002101 ! limb - -[Term] -id: NCIT:C12671 ! -property_value: IAO:0000589 "forelimb (NCIT)" xsd:string -is_a: UBERON:0002102 ! forelimb - -[Term] -id: NCIT:C12742 ! -property_value: IAO:0000589 "hindlimb (NCIT)" xsd:string -is_a: UBERON:0002103 ! hindlimb - -[Term] -id: NCIT:C77625 ! -property_value: IAO:0000589 "hindlimb (NCIT)" xsd:string -is_a: UBERON:0002103 ! hindlimb - -[Term] -id: NCIT:C12888 ! -property_value: IAO:0000589 "visual system (NCIT)" xsd:string -is_a: UBERON:0002104 ! visual system - -[Term] -id: NCIT:C12432 ! -property_value: IAO:0000589 "spleen (NCIT)" xsd:string -is_a: UBERON:0002106 ! spleen - -[Term] -id: NCIT:C12392 ! -property_value: IAO:0000589 "liver (NCIT)" xsd:string -is_a: UBERON:0002107 ! liver - -[Term] -id: NCIT:C12386 ! -property_value: IAO:0000589 "small intestine (NCIT)" xsd:string -is_a: UBERON:0002108 ! small intestine - -[Term] -id: NCIT:C12377 ! -property_value: IAO:0000589 "gallbladder (NCIT)" xsd:string -is_a: UBERON:0002110 ! gallbladder - -[Term] -id: NCIT:C49195 ! -property_value: IAO:0000589 "artery smooth muscle tissue (NCIT)" xsd:string -is_a: UBERON:0002111 ! artery smooth muscle tissue - -[Term] -id: NCIT:C12415 ! -property_value: IAO:0000589 "kidney (NCIT)" xsd:string -is_a: UBERON:0002113 ! kidney - -[Term] -id: NCIT:C12263 ! -property_value: IAO:0000589 "duodenum (NCIT)" xsd:string -is_a: UBERON:0002114 ! duodenum - -[Term] -id: NCIT:C12388 ! -property_value: IAO:0000589 "jejunum (NCIT)" xsd:string -is_a: UBERON:0002115 ! jejunum - -[Term] -id: NCIT:C12387 ! -property_value: IAO:0000589 "ileum (NCIT)" xsd:string -is_a: UBERON:0002116 ! ileum - -[Term] -id: NCIT:C33487 ! -property_value: IAO:0000589 "right ovary (NCIT)" xsd:string -is_a: UBERON:0002118 ! right ovary - -[Term] -id: NCIT:C32969 ! -property_value: IAO:0000589 "left ovary (NCIT)" xsd:string -is_a: UBERON:0002119 ! left ovary - -[Term] -id: NCIT:C34280 ! -property_value: IAO:0000589 "pronephros (NCIT)" xsd:string -is_a: UBERON:0002120 ! pronephros - -[Term] -id: NCIT:C33770 ! -property_value: IAO:0000589 "capsule of thymus (NCIT)" xsd:string -is_a: UBERON:0002122 ! capsule of thymus - -[Term] -id: NCIT:C33774 ! -property_value: IAO:0000589 "cortex of thymus (NCIT)" xsd:string -is_a: UBERON:0002123 ! cortex of thymus - -[Term] -id: NCIT:C33775 ! -property_value: IAO:0000589 "medulla of thymus (NCIT)" xsd:string -is_a: UBERON:0002124 ! medulla of thymus - -[Term] -id: NCIT:C33772 ! -property_value: IAO:0000589 "thymus lobule (NCIT)" xsd:string -is_a: UBERON:0002125 ! thymus lobule - -[Term] -id: NCIT:C49216 ! -property_value: IAO:0000589 "cerebellar cortex (NCIT)" xsd:string -is_a: UBERON:0002129 ! cerebellar cortex - -[Term] -id: NCIT:C12805 ! -property_value: IAO:0000589 "tricuspid valve (NCIT)" xsd:string -is_a: UBERON:0002134 ! tricuspid valve - -[Term] -id: NCIT:C12753 ! -property_value: IAO:0000589 "mitral valve (NCIT)" xsd:string -is_a: UBERON:0002135 ! mitral valve - -[Term] -id: NCIT:C12670 ! -property_value: IAO:0000589 "aortic valve (NCIT)" xsd:string -is_a: UBERON:0002137 ! aortic valve - -[Term] -id: NCIT:C12775 ! -property_value: IAO:0000589 "pulmonary valve (NCIT)" xsd:string -is_a: UBERON:0002146 ! pulmonary valve - -[Term] -id: NCIT:C97333 ! -property_value: IAO:0000589 "locus ceruleus (NCIT)" xsd:string -is_a: UBERON:0002148 ! locus ceruleus - -[Term] -id: NCIT:C13004 ! -property_value: IAO:0000589 "endocardium (NCIT)" xsd:string -is_a: UBERON:0002165 ! endocardium - -[Term] -id: NCIT:C33483 ! -property_value: IAO:0000589 "right lung (NCIT)" xsd:string -is_a: UBERON:0002167 ! right lung - -[Term] -id: NCIT:C32967 ! -property_value: IAO:0000589 "left lung (NCIT)" xsd:string -is_a: UBERON:0002168 ! left lung - -[Term] -id: NCIT:C32057 ! -property_value: IAO:0000589 "alveolar sac (NCIT)" xsd:string -is_a: UBERON:0002169 ! alveolar sac - -[Term] -id: NCIT:C33023 ! -property_value: IAO:0000589 "upper lobe of right lung (NCIT)" xsd:string -is_a: UBERON:0002170 ! upper lobe of right lung - -[Term] -id: NCIT:C33022 ! -property_value: IAO:0000589 "lower lobe of right lung (NCIT)" xsd:string -is_a: UBERON:0002171 ! lower lobe of right lung - -[Term] -id: NCIT:C32056 ! -property_value: IAO:0000589 "pulmonary alveolar duct (NCIT)" xsd:string -is_a: UBERON:0002173 ! pulmonary alveolar duct - -[Term] -id: NCIT:C12286 ! -property_value: IAO:0000589 "middle lobe of right lung (NCIT)" xsd:string -is_a: UBERON:0002174 ! middle lobe of right lung - -[Term] -id: NCIT:C33486 ! -property_value: IAO:0000589 "right main bronchus (NCIT)" xsd:string -is_a: UBERON:0002177 ! right main bronchus - -[Term] -id: NCIT:C32968 ! -property_value: IAO:0000589 "left main bronchus (NCIT)" xsd:string -is_a: UBERON:0002178 ! left main bronchus - -[Term] -id: NCIT:C12641 ! -property_value: IAO:0000589 "substantia gelatinosa (NCIT)" xsd:string -is_a: UBERON:0002181 ! substantia gelatinosa - -[Term] -id: NCIT:C12284 ! -property_value: IAO:0000589 "main bronchus (NCIT)" xsd:string -is_a: UBERON:0002182 ! main bronchus - -[Term] -id: NCIT:C32998 ! -property_value: IAO:0000589 "lobar bronchus (NCIT)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: NCIT:C33526 ! -property_value: IAO:0000589 "segmental bronchus (NCIT)" xsd:string -is_a: UBERON:0002184 ! segmental bronchus - -[Term] -id: NCIT:C12683 ! -property_value: IAO:0000589 "bronchus (NCIT)" xsd:string -is_a: UBERON:0002185 ! bronchus - -[Term] -id: NCIT:C12684 ! -property_value: IAO:0000589 "bronchiole (NCIT)" xsd:string -is_a: UBERON:0002186 ! bronchiole - -[Term] -id: NCIT:C33754 ! -property_value: IAO:0000589 "terminal bronchiole (NCIT)" xsd:string -is_a: UBERON:0002187 ! terminal bronchiole - -[Term] -id: NCIT:C33465 ! -property_value: IAO:0000589 "respiratory bronchiole (NCIT)" xsd:string -is_a: UBERON:0002188 ! respiratory bronchiole - -[Term] -id: NCIT:C33648 ! -property_value: IAO:0000589 "subiculum (NCIT)" xsd:string -is_a: UBERON:0002191 ! subiculum - -[Term] -id: NCIT:C32311 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (NCIT)" xsd:string -is_a: UBERON:0002192 ! ventricular system choroidal fissure - -[Term] -id: NCIT:C33028 ! -property_value: IAO:0000589 "capsule of lymph node (NCIT)" xsd:string -is_a: UBERON:0002194 ! capsule of lymph node - -[Term] -id: NCIT:C33035 ! -property_value: IAO:0000589 "trabecula of lymph node (NCIT)" xsd:string -is_a: UBERON:0002195 ! trabecula of lymph node - -[Term] -id: NCIT:C12772 ! -property_value: IAO:0000589 "adenohypophysis (NCIT)" xsd:string -is_a: UBERON:0002196 ! adenohypophysis - -[Term] -id: NCIT:C12773 ! -property_value: IAO:0000589 "neurohypophysis (NCIT)" xsd:string -is_a: UBERON:0002198 ! neurohypophysis - -[Term] -id: NCIT:C49307 ! -property_value: IAO:0000589 "submucosa of trachea (NCIT)" xsd:string -is_a: UBERON:0002202 ! submucosa of trachea - -[Term] -id: NCIT:C12754 ! -property_value: IAO:0000589 "musculoskeletal system (NCIT)" xsd:string -is_a: UBERON:0002204 ! musculoskeletal system - -[Term] -id: NCIT:C52730 ! -property_value: IAO:0000589 "manubrium of sternum (NCIT)" xsd:string -is_a: UBERON:0002205 ! manubrium of sternum - -[Term] -id: NCIT:C33052 ! -property_value: IAO:0000589 "mammillary body (NCIT)" xsd:string -is_a: UBERON:0002206 ! mammillary body - -[Term] -id: NCIT:C33895 ! -property_value: IAO:0000589 "xiphoid process (NCIT)" xsd:string -is_a: UBERON:0002207 ! xiphoid process - -[Term] -id: NCIT:C54024 ! -property_value: IAO:0000589 "nerve root (NCIT)" xsd:string -is_a: UBERON:0002211 ! nerve root - -[Term] -id: NCIT:C33045 ! -property_value: IAO:0000589 "macula of saccule of membranous labyrinth (NCIT)" xsd:string -is_a: UBERON:0002212 ! macula of saccule of membranous labyrinth - -[Term] -id: NCIT:C33046 ! -property_value: IAO:0000589 "macula of utricle of membranous labyrinth (NCIT)" xsd:string -is_a: UBERON:0002214 ! macula of utricle of membranous labyrinth - -[Term] -id: NCIT:C32461 ! -property_value: IAO:0000589 "synovial joint (NCIT)" xsd:string -is_a: UBERON:0002217 ! synovial joint - -[Term] -id: NCIT:C32621 ! -property_value: IAO:0000589 "fontanelle (NCIT)" xsd:string -is_a: UBERON:0002221 ! fontanelle - -[Term] -id: NCIT:C12905 ! -property_value: IAO:0000589 "thoracic cavity (NCIT)" xsd:string -is_a: UBERON:0002224 ! thoracic cavity - -[Term] -id: NCIT:C52715 ! -property_value: IAO:0000589 "costal arch (NCIT)" xsd:string -is_a: UBERON:0002225 ! costal arch - -[Term] -id: NCIT:C13179 ! -property_value: IAO:0000589 "basilar membrane of cochlea (NCIT)" xsd:string -is_a: UBERON:0002226 ! basilar membrane of cochlea - -[Term] -id: NCIT:C33223 ! -property_value: IAO:0000589 "spiral organ of cochlea (NCIT)" xsd:string -is_a: UBERON:0002227 ! spiral organ of cochlea - -[Term] -id: NCIT:C12782 ! -property_value: IAO:0000589 "rib (NCIT)" xsd:string -is_a: UBERON:0002228 ! rib - -[Term] -id: NCIT:C52727 ! -property_value: IAO:0000589 "head of rib (NCIT)" xsd:string -is_a: UBERON:0002230 ! head of rib - -[Term] -id: NCIT:C52728 ! -property_value: IAO:0000589 "body of rib (NCIT)" xsd:string -is_a: UBERON:0002231 ! body of rib - -[Term] -id: NCIT:C33740 ! -property_value: IAO:0000589 "tectorial membrane of cochlea (NCIT)" xsd:string -is_a: UBERON:0002233 ! tectorial membrane of cochlea - -[Term] -id: NCIT:C52786 ! -property_value: IAO:0000589 "proximal phalanx of manus (NCIT)" xsd:string -is_a: UBERON:0002234 ! proximal phalanx of manus - -[Term] -id: NCIT:C52729 ! -property_value: IAO:0000589 "tubercle of rib (NCIT)" xsd:string -is_a: UBERON:0002235 ! tubercle of rib - -[Term] -id: NCIT:C32391 ! -property_value: IAO:0000589 "costal cartilage (NCIT)" xsd:string -is_a: UBERON:0002236 ! costal cartilage - -[Term] -id: NCIT:C12464 ! -property_value: IAO:0000589 "spinal cord (NCIT)" xsd:string -is_a: UBERON:0002240 ! spinal cord - -[Term] -id: NCIT:C53041 ! -property_value: IAO:0000589 "cutaneous vein (NCIT)" xsd:string -is_a: UBERON:0002243 ! cutaneous vein - -[Term] -id: NCIT:C32726 ! -property_value: IAO:0000589 "cerebellar hemisphere (NCIT)" xsd:string -is_a: UBERON:0002245 ! cerebellar hemisphere - -[Term] -id: NCIT:C52970 ! -property_value: IAO:0000589 "median artery (NCIT)" xsd:string -is_a: UBERON:0002249 ! median artery - -[Term] -id: NCIT:C33337 ! -property_value: IAO:0000589 "popliteal artery (NCIT)" xsd:string -is_a: UBERON:0002250 ! popliteal artery - -[Term] -id: NCIT:C32763 ! -property_value: IAO:0000589 "iliocostalis muscle (NCIT)" xsd:string -is_a: UBERON:0002251 ! iliocostalis muscle - -[Term] -id: NCIT:C53177 ! -property_value: IAO:0000589 "splenius (NCIT)" xsd:string -is_a: UBERON:0002252 ! splenius - -[Term] -id: NCIT:C49783 ! -property_value: IAO:0000589 "thyroglossal duct (NCIT)" xsd:string -is_a: UBERON:0002254 ! thyroglossal duct - -[Term] -id: NCIT:C32473 ! -property_value: IAO:0000589 "dorsal horn of spinal cord (NCIT)" xsd:string -is_a: UBERON:0002256 ! dorsal horn of spinal cord - -[Term] -id: NCIT:C33859 ! -property_value: IAO:0000589 "ventral horn of spinal cord (NCIT)" xsd:string -is_a: UBERON:0002257 ! ventral horn of spinal cord - -[Term] -id: NCIT:C12461 ! -property_value: IAO:0000589 "corpora quadrigemina (NCIT)" xsd:string -is_a: UBERON:0002259 ! corpora quadrigemina - -[Term] -id: NCIT:C33860 ! -property_value: IAO:0000589 "ventral root of spinal cord (NCIT)" xsd:string -is_a: UBERON:0002260 ! ventral root of spinal cord - -[Term] -id: NCIT:C32477 ! -property_value: IAO:0000589 "dorsal root of spinal cord (NCIT)" xsd:string -is_a: UBERON:0002261 ! dorsal root of spinal cord - -[Term] -id: NCIT:C52830 ! -property_value: IAO:0000589 "celiac ganglion (NCIT)" xsd:string -is_a: UBERON:0002262 ! celiac ganglion - -[Term] -id: NCIT:C32977 ! -property_value: IAO:0000589 "lentiform nucleus (NCIT)" xsd:string -is_a: UBERON:0002263 ! lentiform nucleus - -[Term] -id: NCIT:C28401 ! -property_value: IAO:0000589 "olfactory bulb (NCIT)" xsd:string -is_a: UBERON:0002264 ! olfactory bulb - -[Term] -id: NCIT:C33207 ! -property_value: IAO:0000589 "olfactory tract (NCIT)" xsd:string -is_a: UBERON:0002265 ! olfactory tract - -[Term] -id: NCIT:C52710 ! -property_value: IAO:0000589 "anterior olfactory nucleus (NCIT)" xsd:string -is_a: UBERON:0002266 ! anterior olfactory nucleus - -[Term] -id: NCIT:C33230 ! -property_value: IAO:0000589 "otolith (NCIT)" xsd:string -is_a: UBERON:0002280 ! otolith - -[Term] -id: NCIT:C33083 ! -property_value: IAO:0000589 "vestibular membrane of cochlear duct (NCIT)" xsd:string -is_a: UBERON:0002281 ! vestibular membrane of cochlear duct - -[Term] -id: NCIT:C12834 ! -property_value: IAO:0000589 "telencephalic ventricle (NCIT)" xsd:string -is_a: UBERON:0002285 ! telencephalic ventricle - -[Term] -id: NCIT:C12827 ! -property_value: IAO:0000589 "third ventricle (NCIT)" xsd:string -is_a: UBERON:0002286 ! third ventricle - -[Term] -id: NCIT:C49782 ! -property_value: IAO:0000589 "choroid plexus of third ventricle (NCIT)" xsd:string -is_a: UBERON:0002288 ! choroid plexus of third ventricle - -[Term] -id: NCIT:C32135 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (NCIT)" xsd:string -is_a: UBERON:0002289 ! midbrain cerebral aqueduct - -[Term] -id: NCIT:C32308 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (NCIT)" xsd:string -is_a: UBERON:0002290 ! choroid plexus of fourth ventricle - -[Term] -id: NCIT:C12891 ! -property_value: IAO:0000589 "central canal of spinal cord (NCIT)" xsd:string -is_a: UBERON:0002291 ! central canal of spinal cord - -[Term] -id: NCIT:C32394 ! -property_value: IAO:0000589 "costovertebral joint (NCIT)" xsd:string -is_a: UBERON:0002292 ! costovertebral joint - -[Term] -id: NCIT:C32392 ! -property_value: IAO:0000589 "costochondral joint (NCIT)" xsd:string -is_a: UBERON:0002293 ! costochondral joint - -[Term] -id: NCIT:C12678 ! -property_value: IAO:0000589 "biliary system (NCIT)" xsd:string -is_a: UBERON:0002294 ! biliary system - -[Term] -id: NCIT:C32293 ! -property_value: IAO:0000589 "cerumen (NCIT)" xsd:string -is_a: UBERON:0002297 ! cerumen - -[Term] -id: NCIT:C12441 ! -property_value: IAO:0000589 "brainstem (NCIT)" xsd:string -is_a: UBERON:0002298 ! brainstem - -[Term] -id: NCIT:C32891 ! -property_value: IAO:0000589 "juxtaglomerular apparatus (NCIT)" xsd:string -is_a: UBERON:0002303 ! juxtaglomerular apparatus - -[Term] -id: NCIT:C52551 ! -property_value: IAO:0000589 "nasal mucus (NCIT)" xsd:string -is_a: UBERON:0002306 ! nasal mucus - -[Term] -id: NCIT:C32309 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (NCIT)" xsd:string -is_a: UBERON:0002307 ! choroid plexus of lateral ventricle - -[Term] -id: NCIT:C49346 ! -property_value: IAO:0000589 "nucleus of brain (NCIT)" xsd:string -is_a: UBERON:0002308 ! nucleus of brain - -[Term] -id: NCIT:C32606 ! -property_value: IAO:0000589 "hippocampus fimbria (NCIT)" xsd:string -is_a: UBERON:0002310 ! hippocampus fimbria - -[Term] -id: NCIT:C12460 ! -property_value: IAO:0000589 "midbrain tectum (NCIT)" xsd:string -is_a: UBERON:0002314 ! midbrain tectum - -[Term] -id: NCIT:C32696 ! -property_value: IAO:0000589 "gray matter of spinal cord (NCIT)" xsd:string -is_a: UBERON:0002315 ! gray matter of spinal cord - -[Term] -id: NCIT:C33892 ! -property_value: IAO:0000589 "white matter (NCIT)" xsd:string -is_a: UBERON:0002316 ! white matter - -[Term] -id: NCIT:C49217 ! -property_value: IAO:0000589 "white matter of cerebellum (NCIT)" xsd:string -is_a: UBERON:0002317 ! white matter of cerebellum - -[Term] -id: NCIT:C33893 ! -property_value: IAO:0000589 "white matter of spinal cord (NCIT)" xsd:string -is_a: UBERON:0002318 ! white matter of spinal cord - -[Term] -id: NCIT:C33101 ! -property_value: IAO:0000589 "mesangium (NCIT)" xsd:string -is_a: UBERON:0002319 ! mesangium - -[Term] -id: NCIT:C25444 ! -property_value: IAO:0000589 "coelemic cavity lumen (NCIT)" xsd:string -is_a: UBERON:0002323 ! coelemic cavity lumen - -[Term] -id: NCIT:C49309 ! -property_value: IAO:0000589 "epithelium of urethra (NCIT)" xsd:string -is_a: UBERON:0002325 ! epithelium of urethra - -[Term] -id: NCIT:C12463 ! -property_value: IAO:0000589 "notochord (NCIT)" xsd:string -is_a: UBERON:0002328 ! notochord - -[Term] -id: NCIT:C34302 ! -property_value: IAO:0000589 "somite (NCIT)" xsd:string -is_a: UBERON:0002329 ! somite - -[Term] -id: NCIT:C12957 ! -property_value: IAO:0000589 "exocrine system (NCIT)" xsd:string -is_a: UBERON:0002330 ! exocrine system - -[Term] -id: NCIT:C34320 ! -property_value: IAO:0000589 "umbilical cord (NCIT)" xsd:string -is_a: UBERON:0002331 ! umbilical cord - -[Term] -id: NCIT:C116918 ! -property_value: IAO:0000589 "pulmonary trunk (NCIT)" xsd:string -is_a: UBERON:0002333 ! pulmonary trunk - -[Term] -id: NCIT:C33649 ! -property_value: IAO:0000589 "submandibular duct (NCIT)" xsd:string -is_a: UBERON:0002334 ! submandibular duct - -[Term] -id: NCIT:C33043 ! -property_value: IAO:0000589 "macula densa (NCIT)" xsd:string -is_a: UBERON:0002335 ! macula densa - -[Term] -id: NCIT:C12446 ! -property_value: IAO:0000589 "corpus callosum (NCIT)" xsd:string -is_a: UBERON:0002336 ! corpus callosum - -[Term] -id: NCIT:C32516 ! -property_value: IAO:0000589 "endometrial stroma (NCIT)" xsd:string -is_a: UBERON:0002337 ! endometrial stroma - -[Term] -id: NCIT:C49212 ! -property_value: IAO:0000589 "lamina propria of bronchus (NCIT)" xsd:string -is_a: UBERON:0002338 ! lamina propria of bronchus - -[Term] -id: NCIT:C34222 ! -property_value: IAO:0000589 "neural crest (NCIT)" xsd:string -is_a: UBERON:0002342 ! neural crest - -[Term] -id: NCIT:C34228 ! -property_value: IAO:0000589 "neurectoderm (NCIT)" xsd:string -is_a: UBERON:0002346 ! neurectoderm - -[Term] -id: NCIT:C12798 ! -property_value: IAO:0000589 "thoracic vertebra (NCIT)" xsd:string -is_a: UBERON:0002347 ! thoracic vertebra - -[Term] -id: NCIT:C13164 ! -property_value: IAO:0000589 "epicardium (NCIT)" xsd:string -is_a: UBERON:0002348 ! epicardium - -[Term] -id: NCIT:C12371 ! -property_value: IAO:0000589 "myocardium (NCIT)" xsd:string -is_a: UBERON:0002349 ! myocardium - -[Term] -id: NCIT:C33555 ! -property_value: IAO:0000589 "sinoatrial node (NCIT)" xsd:string -is_a: UBERON:0002351 ! sinoatrial node - -[Term] -id: NCIT:C32161 ! -property_value: IAO:0000589 "atrioventricular node (NCIT)" xsd:string -is_a: UBERON:0002352 ! atrioventricular node - -[Term] -id: NCIT:C32160 ! -property_value: IAO:0000589 "bundle of His (NCIT)" xsd:string -is_a: UBERON:0002353 ! bundle of His - -[Term] -id: NCIT:C33430 ! -property_value: IAO:0000589 "cardiac Purkinje fiber (NCIT)" xsd:string -is_a: UBERON:0002354 ! cardiac Purkinje fiber - -[Term] -id: NCIT:C12767 ! -property_value: IAO:0000589 "pelvic region of trunk (NCIT)" xsd:string -is_a: UBERON:0002355 ! pelvic region of trunk - -[Term] -id: NCIT:C33301 ! -property_value: IAO:0000589 "perineum (NCIT)" xsd:string -is_a: UBERON:0002356 ! perineum - -[Term] -id: NCIT:C12770 ! -property_value: IAO:0000589 "peritoneum (NCIT)" xsd:string -is_a: UBERON:0002358 ! peritoneum - -[Term] -id: NCIT:C12348 ! -property_value: IAO:0000589 "meninx (NCIT)" xsd:string -is_a: UBERON:0002360 ! meninx - -[Term] -id: NCIT:C33321 ! -property_value: IAO:0000589 "pia mater (NCIT)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: NCIT:C32136 ! -property_value: IAO:0000589 "arachnoid mater (NCIT)" xsd:string -is_a: UBERON:0002362 ! arachnoid mater - -[Term] -id: NCIT:C32488 ! -property_value: IAO:0000589 "dura mater (NCIT)" xsd:string -is_a: UBERON:0002363 ! dura mater - -[Term] -id: NCIT:C12502 ! -property_value: IAO:0000589 "tympanic membrane (NCIT)" xsd:string -is_a: UBERON:0002364 ! tympanic membrane - -[Term] -id: NCIT:C12712 ! -property_value: IAO:0000589 "exocrine gland (NCIT)" xsd:string -is_a: UBERON:0002365 ! exocrine gland - -[Term] -id: NCIT:C32395 ! -property_value: IAO:0000589 "bulbo-urethral gland (NCIT)" xsd:string -is_a: UBERON:0002366 ! bulbo-urethral gland - -[Term] -id: NCIT:C12410 ! -property_value: IAO:0000589 "prostate gland (NCIT)" xsd:string -is_a: UBERON:0002367 ! prostate gland - -[Term] -id: NCIT:C12704 ! -property_value: IAO:0000589 "endocrine gland (NCIT)" xsd:string -is_a: UBERON:0002368 ! endocrine gland - -[Term] -id: NCIT:C12666 ! -property_value: IAO:0000589 "adrenal gland (NCIT)" xsd:string -is_a: UBERON:0002369 ! adrenal gland - -[Term] -id: NCIT:C12433 ! -property_value: IAO:0000589 "thymus (NCIT)" xsd:string -is_a: UBERON:0002370 ! thymus - -[Term] -id: NCIT:C12431 ! -property_value: IAO:0000589 "bone marrow (NCIT)" xsd:string -is_a: UBERON:0002371 ! bone marrow - -[Term] -id: NCIT:C12802 ! -property_value: IAO:0000589 "tonsil (NCIT)" xsd:string -is_a: UBERON:0002372 ! tonsil - -[Term] -id: NCIT:C33250 ! -property_value: IAO:0000589 "palatine tonsil (NCIT)" xsd:string -is_a: UBERON:0002373 ! palatine tonsil - -[Term] -id: NCIT:C12751 ! -property_value: IAO:0000589 "metacarpal bone (NCIT)" xsd:string -is_a: UBERON:0002374 ! metacarpal bone - -[Term] -id: NCIT:C32400 ! -property_value: IAO:0000589 "cricoid cartilage (NCIT)" xsd:string -is_a: UBERON:0002375 ! cricoid cartilage - -[Term] -id: NCIT:C33163 ! -property_value: IAO:0000589 "muscle of neck (NCIT)" xsd:string -is_a: UBERON:0002377 ! muscle of neck - -[Term] -id: NCIT:C32040 ! -property_value: IAO:0000589 "muscle of abdomen (NCIT)" xsd:string -is_a: UBERON:0002378 ! muscle of abdomen - -[Term] -id: NCIT:C33300 ! -property_value: IAO:0000589 "perineal muscle (NCIT)" xsd:string -is_a: UBERON:0002379 ! perineal muscle - -[Term] -id: NCIT:C33809 ! -property_value: IAO:0000589 "trapezius muscle (NCIT)" xsd:string -is_a: UBERON:0002380 ! trapezius muscle - -[Term] -id: NCIT:C33284 ! -property_value: IAO:0000589 "pectoralis major (NCIT)" xsd:string -is_a: UBERON:0002381 ! pectoralis major - -[Term] -id: NCIT:C33449 ! -property_value: IAO:0000589 "rectus abdominis muscle (NCIT)" xsd:string -is_a: UBERON:0002382 ! rectus abdominis muscle - -[Term] -id: NCIT:C33709 ! -property_value: IAO:0000589 "supraspinatus muscle (NCIT)" xsd:string -is_a: UBERON:0002383 ! supraspinatus muscle - -[Term] -id: NCIT:C12374 ! -property_value: IAO:0000589 "connective tissue (NCIT)" xsd:string -is_a: UBERON:0002384 ! connective tissue - -[Term] -id: NCIT:C12435 ! -property_value: IAO:0000589 "muscle tissue (NCIT)" xsd:string -is_a: UBERON:0002385 ! muscle tissue - -[Term] -id: NCIT:C32628 ! -property_value: IAO:0000589 "forelimb zeugopod (NCIT)" xsd:string -is_a: UBERON:0002386 ! forelimb zeugopod - -[Term] -id: NCIT:C32622 ! -property_value: IAO:0000589 "pes (NCIT)" xsd:string -is_a: UBERON:0002387 ! pes - -[Term] -id: NCIT:C32608 ! -property_value: IAO:0000589 "manual digit (NCIT)" xsd:string -is_a: UBERON:0002389 ! manual digit - -[Term] -id: NCIT:C12909 ! -property_value: IAO:0000589 "hematopoietic system (NCIT)" xsd:string -is_a: UBERON:0002390 ! hematopoietic system - -[Term] -id: NCIT:C13252 ! -property_value: IAO:0000589 "lymph (NCIT)" xsd:string -is_a: UBERON:0002391 ! lymph - -[Term] -id: NCIT:C33161 ! -property_value: IAO:0000589 "nasolacrimal duct (NCIT)" xsd:string -is_a: UBERON:0002392 ! nasolacrimal duct - -[Term] -id: NCIT:C12500 ! -property_value: IAO:0000589 "pharyngotympanic tube (NCIT)" xsd:string -is_a: UBERON:0002393 ! pharyngotympanic tube - -[Term] -id: NCIT:C12376 ! -property_value: IAO:0000589 "bile duct (NCIT)" xsd:string -is_a: UBERON:0002394 ! bile duct - -[Term] -id: NCIT:C52799 ! -property_value: IAO:0000589 "talus (NCIT)" xsd:string -is_a: UBERON:0002395 ! talus - -[Term] -id: NCIT:C33888 ! -property_value: IAO:0000589 "vomer (NCIT)" xsd:string -is_a: UBERON:0002396 ! vomer - -[Term] -id: NCIT:C26470 ! -property_value: IAO:0000589 "maxilla (NCIT)" xsd:string -is_a: UBERON:0002397 ! maxilla - -[Term] -id: NCIT:C32712 ! -property_value: IAO:0000589 "manus (NCIT)" xsd:string -is_a: UBERON:0002398 ! manus - -[Term] -id: NCIT:C32981 ! -property_value: IAO:0000589 "lesser omentum (NCIT)" xsd:string -is_a: UBERON:0002399 ! lesser omentum - -[Term] -id: NCIT:C33273 ! -property_value: IAO:0000589 "parietal pleura (NCIT)" xsd:string -is_a: UBERON:0002400 ! parietal pleura - -[Term] -id: NCIT:C33881 ! -property_value: IAO:0000589 "visceral pleura (NCIT)" xsd:string -is_a: UBERON:0002401 ! visceral pleura - -[Term] -id: NCIT:C12840 ! -property_value: IAO:0000589 "pleural cavity (NCIT)" xsd:string -is_a: UBERON:0002402 ! pleural cavity - -[Term] -id: NCIT:C32848 ! -property_value: IAO:0000589 "internal intercostal muscle (NCIT)" xsd:string -is_a: UBERON:0002403 ! internal intercostal muscle - -[Term] -id: NCIT:C53180 ! -property_value: IAO:0000589 "transversus thoracis (NCIT)" xsd:string -is_a: UBERON:0002404 ! transversus thoracis - -[Term] -id: NCIT:C12735 ! -property_value: IAO:0000589 "immune system (NCIT)" xsd:string -is_a: UBERON:0002405 ! immune system - -[Term] -id: NCIT:C13005 ! -property_value: IAO:0000589 "pericardium (NCIT)" xsd:string -is_a: UBERON:0002407 ! pericardium - -[Term] -id: NCIT:C94500 ! -property_value: IAO:0000589 "parietal serous pericardium (NCIT)" xsd:string -is_a: UBERON:0002408 ! parietal serous pericardium - -[Term] -id: NCIT:C12673 ! -property_value: IAO:0000589 "autonomic nervous system (NCIT)" xsd:string -is_a: UBERON:0002410 ! autonomic nervous system - -[Term] -id: NCIT:C12308 ! -property_value: IAO:0000589 "clitoris (NCIT)" xsd:string -is_a: UBERON:0002411 ! clitoris - -[Term] -id: NCIT:C12933 ! -property_value: IAO:0000589 "vertebra (NCIT)" xsd:string -is_a: UBERON:0002412 ! vertebra - -[Term] -id: NCIT:C12693 ! -property_value: IAO:0000589 "cervical vertebra (NCIT)" xsd:string -is_a: UBERON:0002413 ! cervical vertebra - -[Term] -id: NCIT:C12744 ! -property_value: IAO:0000589 "lumbar vertebra (NCIT)" xsd:string -is_a: UBERON:0002414 ! lumbar vertebra - -[Term] -id: NCIT:C12907 ! -property_value: IAO:0000589 "integumental system (NCIT)" xsd:string -is_a: UBERON:0002416 ! integumental system - -[Term] -id: NCIT:C12373 ! -property_value: IAO:0000589 "cartilage tissue (NCIT)" xsd:string -is_a: UBERON:0002418 ! cartilage tissue - -[Term] -id: NCIT:C32268 ! -property_value: IAO:0000589 "cartilage tissue (NCIT)" xsd:string -is_a: UBERON:0002418 ! cartilage tissue - -[Term] -id: NCIT:C12828 ! -property_value: IAO:0000589 "fourth ventricle (NCIT)" xsd:string -is_a: UBERON:0002422 ! fourth ventricle - -[Term] -id: NCIT:C43612 ! -property_value: IAO:0000589 "hepatobiliary system (NCIT)" xsd:string -is_a: UBERON:0002423 ! hepatobiliary system - -[Term] -id: NCIT:C49595 ! -property_value: IAO:0000589 "oral epithelium (NCIT)" xsd:string -is_a: UBERON:0002424 ! oral epithelium - -[Term] -id: NCIT:C52754 ! -property_value: IAO:0000589 "arm skin (NCIT)" xsd:string -is_a: UBERON:0002427 ! arm skin - -[Term] -id: NCIT:C32223 ! -property_value: IAO:0000589 "limb bone (NCIT)" xsd:string -is_a: UBERON:0002428 ! limb bone - -[Term] -id: NCIT:C32298 ! -property_value: IAO:0000589 "cervical lymph node (NCIT)" xsd:string -is_a: UBERON:0002429 ! cervical lymph node - -[Term] -id: NCIT:C32228 ! -property_value: IAO:0000589 "pituitary stalk (NCIT)" xsd:string -is_a: UBERON:0002434 ! pituitary stalk - -[Term] -id: NCIT:C45912 ! -property_value: IAO:0000589 "pituitary stalk (NCIT)" xsd:string -is_a: UBERON:0002434 ! pituitary stalk - -[Term] -id: NCIT:C111122 ! -property_value: IAO:0000589 "striatum (NCIT)" xsd:string -is_a: UBERON:0002435 ! striatum - -[Term] -id: NCIT:C97340 ! -property_value: IAO:0000589 "primary visual cortex (NCIT)" xsd:string -is_a: UBERON:0002436 ! primary visual cortex - -[Term] -id: NCIT:C49347 ! -property_value: IAO:0000589 "cerebral hemisphere white matter (NCIT)" xsd:string -is_a: UBERON:0002437 ! cerebral hemisphere white matter - -[Term] -id: NCIT:C52748 ! -property_value: IAO:0000589 "myenteric nerve plexus (NCIT)" xsd:string -is_a: UBERON:0002439 ! myenteric nerve plexus - -[Term] -id: NCIT:C92211 ! -property_value: IAO:0000589 "inferior cervical ganglion (NCIT)" xsd:string -is_a: UBERON:0002440 ! inferior cervical ganglion - -[Term] -id: NCIT:C32976 ! -property_value: IAO:0000589 "lens fiber (NCIT)" xsd:string -is_a: UBERON:0002444 ! lens fiber - -[Term] -id: NCIT:C12858 ! -property_value: IAO:0000589 "ulnare (NCIT)" xsd:string -is_a: UBERON:0002445 ! ulnare - -[Term] -id: NCIT:C33282 ! -property_value: IAO:0000589 "patella (NCIT)" xsd:string -is_a: UBERON:0002446 ! patella - -[Term] -id: NCIT:C33249 ! -property_value: IAO:0000589 "palatine gland (NCIT)" xsd:string -is_a: UBERON:0002447 ! palatine gland - -[Term] -id: NCIT:C32644 ! -property_value: IAO:0000589 "fungiform papilla (NCIT)" xsd:string -is_a: UBERON:0002448 ! fungiform papilla - -[Term] -id: NCIT:C32425 ! -property_value: IAO:0000589 "decidua (NCIT)" xsd:string -is_a: UBERON:0002450 ! decidua - -[Term] -id: NCIT:C33842 ! -property_value: IAO:0000589 "endometrial gland (NCIT)" xsd:string -is_a: UBERON:0002451 ! endometrial gland - -[Term] -id: NCIT:C12276 ! -property_value: IAO:0000589 "ethmoid sinus (NCIT)" xsd:string -is_a: UBERON:0002453 ! ethmoid sinus - -[Term] -id: NCIT:C52980 ! -property_value: IAO:0000589 "dorsal metacarpal artery (NCIT)" xsd:string -is_a: UBERON:0002454 ! dorsal metacarpal artery - -[Term] -id: NCIT:C52941 ! -property_value: IAO:0000589 "internal thoracic artery (NCIT)" xsd:string -is_a: UBERON:0002456 ! internal thoracic artery - -[Term] -id: NCIT:C33587 ! -property_value: IAO:0000589 "spinal artery (NCIT)" xsd:string -is_a: UBERON:0002458 ! spinal artery - -[Term] -id: NCIT:C53049 ! -property_value: IAO:0000589 "inferior palpebral vein (NCIT)" xsd:string -is_a: UBERON:0002459 ! inferior palpebral vein - -[Term] -id: NCIT:C52890 ! -property_value: IAO:0000589 "anterior abdominal wall muscle (NCIT)" xsd:string -is_a: UBERON:0002461 ! anterior abdominal wall muscle - -[Term] -id: NCIT:C52902 ! -property_value: IAO:0000589 "erector spinae muscle group (NCIT)" xsd:string -is_a: UBERON:0002462 ! erector spinae muscle group - -[Term] -id: NCIT:C53042 ! -property_value: IAO:0000589 "muscle of posterior compartment of hindlimb stylopod (NCIT)" xsd:string -is_a: UBERON:0002463 ! muscle of posterior compartment of hindlimb stylopod - -[Term] -id: NCIT:C12746 ! -property_value: IAO:0000589 "lymphoid system (NCIT)" xsd:string -is_a: UBERON:0002465 ! lymphoid system - -[Term] -id: NCIT:C32875 ! -property_value: IAO:0000589 "intestine secretion (NCIT)" xsd:string -is_a: UBERON:0002466 ! intestine secretion - -[Term] -id: NCIT:C32604 ! -property_value: IAO:0000589 "filiform papilla (NCIT)" xsd:string -is_a: UBERON:0002467 ! filiform papilla - -[Term] -id: NCIT:C32619 ! -property_value: IAO:0000589 "foliate papilla (NCIT)" xsd:string -is_a: UBERON:0002468 ! foliate papilla - -[Term] -id: NCIT:C32538 ! -property_value: IAO:0000589 "esophagus mucosa (NCIT)" xsd:string -is_a: UBERON:0002469 ! esophagus mucosa - -[Term] -id: NCIT:C77660 ! -property_value: IAO:0000589 "autopod region (NCIT)" xsd:string -is_a: UBERON:0002470 ! autopod region - -[Term] -id: NCIT:C13076 ! -property_value: IAO:0000589 "bone tissue (NCIT)" xsd:string -is_a: UBERON:0002481 ! bone tissue - -[Term] -id: NCIT:C13102 ! -property_value: IAO:0000589 "prostate duct (NCIT)" xsd:string -is_a: UBERON:0002485 ! prostate duct - -[Term] -id: NCIT:C12724 ! -property_value: IAO:0000589 "glottis (NCIT)" xsd:string -is_a: UBERON:0002486 ! glottis - -[Term] -id: NCIT:C32724 ! -property_value: IAO:0000589 "helix of outer ear (NCIT)" xsd:string -is_a: UBERON:0002488 ! helix of outer ear - -[Term] -id: NCIT:C33259 ! -property_value: IAO:0000589 "papillary muscle of heart (NCIT)" xsd:string -is_a: UBERON:0002494 ! papillary muscle of heart - -[Term] -id: NCIT:C33003 ! -property_value: IAO:0000589 "long bone (NCIT)" xsd:string -is_a: UBERON:0002495 ! long bone - -[Term] -id: NCIT:C32048 ! -property_value: IAO:0000589 "acromion (NCIT)" xsd:string -is_a: UBERON:0002497 ! acromion - -[Term] -id: NCIT:C32336 ! -property_value: IAO:0000589 "cochlear labyrinth (NCIT)" xsd:string -is_a: UBERON:0002499 ! cochlear labyrinth - -[Term] -id: NCIT:C33897 ! -property_value: IAO:0000589 "zygomatic arch (NCIT)" xsd:string -is_a: UBERON:0002500 ! zygomatic arch - -[Term] -id: NCIT:C32593 ! -property_value: IAO:0000589 "oval window (NCIT)" xsd:string -is_a: UBERON:0002501 ! oval window - -[Term] -id: NCIT:C32594 ! -property_value: IAO:0000589 "round window of inner ear (NCIT)" xsd:string -is_a: UBERON:0002502 ! round window of inner ear - -[Term] -id: NCIT:C32698 ! -property_value: IAO:0000589 "greater trochanter (NCIT)" xsd:string -is_a: UBERON:0002503 ! greater trochanter - -[Term] -id: NCIT:C32982 ! -property_value: IAO:0000589 "lesser trochanter (NCIT)" xsd:string -is_a: UBERON:0002504 ! lesser trochanter - -[Term] -id: NCIT:C65166 ! -property_value: IAO:0000589 "celiac lymph node (NCIT)" xsd:string -is_a: UBERON:0002508 ! celiac lymph node - -[Term] -id: NCIT:C77641 ! -property_value: IAO:0000589 "mesenteric lymph node (NCIT)" xsd:string -is_a: UBERON:0002509 ! mesenteric lymph node - -[Term] -id: NCIT:C26465 ! -property_value: IAO:0000589 "corpus luteum (NCIT)" xsd:string -is_a: UBERON:0002512 ! corpus luteum - -[Term] -id: NCIT:C13184 ! -property_value: IAO:0000589 "periosteum (NCIT)" xsd:string -is_a: UBERON:0002515 ! periosteum - -[Term] -id: NCIT:C12493 ! -property_value: IAO:0000589 "basicranium (NCIT)" xsd:string -is_a: UBERON:0002517 ! basicranium - -[Term] -id: NCIT:C77650 ! -property_value: IAO:0000589 "submandibular lymph node (NCIT)" xsd:string -is_a: UBERON:0002520 ! submandibular lymph node - -[Term] -id: NCIT:C32495 ! -property_value: IAO:0000589 "elastic tissue (NCIT)" xsd:string -is_a: UBERON:0002521 ! elastic tissue - -[Term] -id: NCIT:C33821 ! -property_value: IAO:0000589 "tunica media (NCIT)" xsd:string -is_a: UBERON:0002522 ! tunica media - -[Term] -id: NCIT:C33820 ! -property_value: IAO:0000589 "tunica intima (NCIT)" xsd:string -is_a: UBERON:0002523 ! tunica intima - -[Term] -id: NCIT:C33073 ! -property_value: IAO:0000589 "mediastinal lymph node (NCIT)" xsd:string -is_a: UBERON:0002524 ! mediastinal lymph node - -[Term] -id: NCIT:C92221 ! -property_value: IAO:0000589 "brachial lymph node (NCIT)" xsd:string -is_a: UBERON:0002525 ! brachial lymph node - -[Term] -id: NCIT:C118775 ! -property_value: IAO:0000589 "lumbar lymph node (NCIT)" xsd:string -is_a: UBERON:0002526 ! lumbar lymph node - -[Term] -id: NCIT:C77642 ! -property_value: IAO:0000589 "pancreatic lymph node (NCIT)" xsd:string -is_a: UBERON:0002527 ! pancreatic lymph node - -[Term] -id: NCIT:C77647 ! -property_value: IAO:0000589 "sacral lymph node (NCIT)" xsd:string -is_a: UBERON:0002528 ! sacral lymph node - -[Term] -id: NCIT:C38630 ! -property_value: IAO:0000589 "limb segment (NCIT)" xsd:string -is_a: UBERON:0002529 ! limb segment - -[Term] -id: NCIT:C13319 ! -property_value: IAO:0000589 "gland (NCIT)" xsd:string -is_a: UBERON:0002530 ! gland - -[Term] -id: NCIT:C34249 ! -property_value: IAO:0000589 "pharyngeal arch (NCIT)" xsd:string -is_a: UBERON:0002539 ! pharyngeal arch - -[Term] -id: NCIT:C40186 ! -property_value: IAO:0000589 "digit (NCIT)" xsd:string -is_a: UBERON:0002544 ! digit - -[Term] -id: NCIT:C34007 ! -property_value: IAO:0000589 "anatomical cavity (NCIT)" xsd:string -is_a: UBERON:0002553 ! anatomical cavity - -[Term] -id: NCIT:C33676 ! -property_value: IAO:0000589 "superior frontal sulcus (NCIT)" xsd:string -is_a: UBERON:0002562 ! superior frontal sulcus - -[Term] -id: NCIT:C33346 ! -property_value: IAO:0000589 "postcentral gyrus (NCIT)" xsd:string -is_a: UBERON:0002581 ! postcentral gyrus - -[Term] -id: NCIT:C32252 ! -property_value: IAO:0000589 "calcarine sulcus (NCIT)" xsd:string -is_a: UBERON:0002586 ! calcarine sulcus - -[Term] -id: NCIT:C32406 ! -property_value: IAO:0000589 "lateral corticospinal tract (NCIT)" xsd:string -is_a: UBERON:0002589 ! lateral corticospinal tract - -[Term] -id: NCIT:C33222 ! -property_value: IAO:0000589 "orbital sulcus (NCIT)" xsd:string -is_a: UBERON:0002595 ! orbital sulcus - -[Term] -id: NCIT:C33402 ! -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (NCIT)" xsd:string -is_a: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve - -[Term] -id: NCIT:C12617 ! -property_value: IAO:0000589 "neuropil (NCIT)" xsd:string -is_a: UBERON:0002606 ! neuropil - -[Term] -id: NCIT:C13031 ! -property_value: IAO:0000589 "regional part of brain (NCIT)" xsd:string -is_a: UBERON:0002616 ! regional part of brain - -[Term] -id: NCIT:C33817 ! -property_value: IAO:0000589 "tuber cinereum (NCIT)" xsd:string -is_a: UBERON:0002620 ! tuber cinereum - -[Term] -id: NCIT:C32291 ! -property_value: IAO:0000589 "cerebral peduncle (NCIT)" xsd:string -is_a: UBERON:0002623 ! cerebral peduncle - -[Term] -id: NCIT:C33221 ! -property_value: IAO:0000589 "orbital part of inferior frontal gyrus (NCIT)" xsd:string -is_a: UBERON:0002624 ! orbital part of inferior frontal gyrus - -[Term] -id: NCIT:C33811 ! -property_value: IAO:0000589 "triangular part of inferior frontal gyrus (NCIT)" xsd:string -is_a: UBERON:0002629 ! triangular part of inferior frontal gyrus - -[Term] -id: NCIT:C32409 ! -property_value: IAO:0000589 "cerebral crus (NCIT)" xsd:string -is_a: UBERON:0002631 ! cerebral crus - -[Term] -id: NCIT:C33140 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (NCIT)" xsd:string -is_a: UBERON:0002633 ! motor nucleus of trigeminal nerve - -[Term] -id: NCIT:C33861 ! -property_value: IAO:0000589 "ventral anterior nucleus of thalamus (NCIT)" xsd:string -is_a: UBERON:0002637 ! ventral anterior nucleus of thalamus - -[Term] -id: NCIT:C33800 ! -property_value: IAO:0000589 "dorsolateral fasciculus of medulla (NCIT)" xsd:string -is_a: UBERON:0002649 ! dorsolateral fasciculus of medulla - -[Term] -id: NCIT:C32637 ! -property_value: IAO:0000589 "anterior horn of lateral ventricle (NCIT)" xsd:string -is_a: UBERON:0002651 ! anterior horn of lateral ventricle - -[Term] -id: NCIT:C32218 ! -property_value: IAO:0000589 "body of lateral ventricle (NCIT)" xsd:string -is_a: UBERON:0002655 ! body of lateral ventricle - -[Term] -id: NCIT:C33674 ! -property_value: IAO:0000589 "superior frontal gyrus (NCIT)" xsd:string -is_a: UBERON:0002661 ! superior frontal gyrus - -[Term] -id: NCIT:C12836 ! -property_value: IAO:0000589 "abducens nucleus (NCIT)" xsd:string -is_a: UBERON:0002682 ! abducens nucleus - -[Term] -id: NCIT:C32077 ! -property_value: IAO:0000589 "angular gyrus (NCIT)" xsd:string -is_a: UBERON:0002686 ! angular gyrus - -[Term] -id: NCIT:C33706 ! -property_value: IAO:0000589 "supramarginal gyrus (NCIT)" xsd:string -is_a: UBERON:0002688 ! supramarginal gyrus - -[Term] -id: NCIT:C33275 ! -property_value: IAO:0000589 "parieto-occipital sulcus (NCIT)" xsd:string -is_a: UBERON:0002695 ! parieto-occipital sulcus - -[Term] -id: NCIT:C33118 ! -property_value: IAO:0000589 "middle frontal gyrus (NCIT)" xsd:string -is_a: UBERON:0002702 ! middle frontal gyrus - -[Term] -id: NCIT:C33393 ! -property_value: IAO:0000589 "precentral gyrus (NCIT)" xsd:string -is_a: UBERON:0002703 ! precentral gyrus - -[Term] -id: NCIT:C32321 ! -property_value: IAO:0000589 "circular sulcus of insula (NCIT)" xsd:string -is_a: UBERON:0002713 ! circular sulcus of insula - -[Term] -id: NCIT:C32340 ! -property_value: IAO:0000589 "collateral sulcus (NCIT)" xsd:string -is_a: UBERON:0002716 ! collateral sulcus - -[Term] -id: NCIT:C32615 ! -property_value: IAO:0000589 "lateral sulcus (NCIT)" xsd:string -is_a: UBERON:0002721 ! lateral sulcus - -[Term] -id: NCIT:C12892 ! -property_value: IAO:0000589 "cervical spinal cord (NCIT)" xsd:string -is_a: UBERON:0002726 ! cervical spinal cord - -[Term] -id: NCIT:C97338 ! -property_value: IAO:0000589 "entorhinal cortex (NCIT)" xsd:string -is_a: UBERON:0002728 ! entorhinal cortex - -[Term] -id: NCIT:C33700 ! -property_value: IAO:0000589 "superior temporal sulcus (NCIT)" xsd:string -is_a: UBERON:0002734 ! superior temporal sulcus - -[Term] -id: NCIT:C32480 ! -property_value: IAO:0000589 "medial dorsal nucleus of thalamus (NCIT)" xsd:string -is_a: UBERON:0002739 ! medial dorsal nucleus of thalamus - -[Term] -id: NCIT:C32791 ! -property_value: IAO:0000589 "inferior temporal gyrus (NCIT)" xsd:string -is_a: UBERON:0002751 ! inferior temporal gyrus - -[Term] -id: NCIT:C32776 ! -property_value: IAO:0000589 "inferior frontal sulcus (NCIT)" xsd:string -is_a: UBERON:0002761 ! inferior frontal sulcus - -[Term] -id: NCIT:C33197 ! -property_value: IAO:0000589 "fusiform gyrus (NCIT)" xsd:string -is_a: UBERON:0002766 ! fusiform gyrus - -[Term] -id: NCIT:C33698 ! -property_value: IAO:0000589 "superior temporal gyrus (NCIT)" xsd:string -is_a: UBERON:0002769 ! superior temporal gyrus - -[Term] -id: NCIT:C33125 ! -property_value: IAO:0000589 "middle temporal gyrus (NCIT)" xsd:string -is_a: UBERON:0002771 ! middle temporal gyrus - -[Term] -id: NCIT:C33206 ! -property_value: IAO:0000589 "olfactory sulcus (NCIT)" xsd:string -is_a: UBERON:0002772 ! olfactory sulcus - -[Term] -id: NCIT:C12895 ! -property_value: IAO:0000589 "lumbar spinal cord (NCIT)" xsd:string -is_a: UBERON:0002792 ! lumbar spinal cord - -[Term] -id: NCIT:C32955 ! -property_value: IAO:0000589 "left cerebral hemisphere (NCIT)" xsd:string -is_a: UBERON:0002812 ! left cerebral hemisphere - -[Term] -id: NCIT:C33472 ! -property_value: IAO:0000589 "right cerebral hemisphere (NCIT)" xsd:string -is_a: UBERON:0002813 ! right cerebral hemisphere - -[Term] -id: NCIT:C33870 ! -property_value: IAO:0000589 "vestibular ganglion (NCIT)" xsd:string -is_a: UBERON:0002824 ! vestibular ganglion - -[Term] -id: NCIT:C32471 ! -property_value: IAO:0000589 "dorsal cochlear nucleus (NCIT)" xsd:string -is_a: UBERON:0002829 ! dorsal cochlear nucleus - -[Term] -id: NCIT:C32475 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (NCIT)" xsd:string -is_a: UBERON:0002870 ! dorsal motor nucleus of vagus nerve - -[Term] -id: NCIT:C12899 ! -property_value: IAO:0000589 "hypoglossal nucleus (NCIT)" xsd:string -is_a: UBERON:0002871 ! hypoglossal nucleus - -[Term] -id: NCIT:C32922 ! -property_value: IAO:0000589 "cistern of lamina terminalis (NCIT)" xsd:string -is_a: UBERON:0002897 ! cistern of lamina terminalis - -[Term] -id: NCIT:C32304 ! -property_value: IAO:0000589 "chiasmatic cistern (NCIT)" xsd:string -is_a: UBERON:0002898 ! chiasmatic cistern - -[Term] -id: NCIT:C32743 ! -property_value: IAO:0000589 "hippocampal sulcus (NCIT)" xsd:string -is_a: UBERON:0002899 ! hippocampal sulcus - -[Term] -id: NCIT:C33019 ! -property_value: IAO:0000589 "lunate sulcus (NCIT)" xsd:string -is_a: UBERON:0002903 ! lunate sulcus - -[Term] -id: NCIT:C32952 ! -property_value: IAO:0000589 "lateral occipital sulcus (NCIT)" xsd:string -is_a: UBERON:0002904 ! lateral occipital sulcus - -[Term] -id: NCIT:C32879 ! -property_value: IAO:0000589 "intraparietal sulcus (NCIT)" xsd:string -is_a: UBERON:0002913 ! intraparietal sulcus - -[Term] -id: NCIT:C33347 ! -property_value: IAO:0000589 "postcentral sulcus of parietal lobe (NCIT)" xsd:string -is_a: UBERON:0002915 ! postcentral sulcus of parietal lobe - -[Term] -id: NCIT:C32280 ! -property_value: IAO:0000589 "central sulcus (NCIT)" xsd:string -is_a: UBERON:0002916 ! central sulcus - -[Term] -id: NCIT:C33005 ! -property_value: IAO:0000589 "longitudinal fissure (NCIT)" xsd:string -is_a: UBERON:0002921 ! longitudinal fissure - -[Term] -id: NCIT:C33813 ! -property_value: IAO:0000589 "olfactory trigone (NCIT)" xsd:string -is_a: UBERON:0002922 ! olfactory trigone - -[Term] -id: NCIT:C12807 ! -property_value: IAO:0000589 "trigeminal nucleus (NCIT)" xsd:string -is_a: UBERON:0002925 ! trigeminal nucleus - -[Term] -id: NCIT:C33863 ! -property_value: IAO:0000589 "ventral posterolateral nucleus (NCIT)" xsd:string -is_a: UBERON:0002942 ! ventral posterolateral nucleus - -[Term] -id: NCIT:C33864 ! -property_value: IAO:0000589 "ventral posteromedial nucleus of thalamus (NCIT)" xsd:string -is_a: UBERON:0002945 ! ventral posteromedial nucleus of thalamus - -[Term] -id: NCIT:C49138 ! -property_value: IAO:0000589 "granular layer of cerebellar cortex (NCIT)" xsd:string -is_a: UBERON:0002956 ! granular layer of cerebellar cortex - -[Term] -id: NCIT:C96217 ! -property_value: IAO:0000589 "cingulate gyrus (NCIT)" xsd:string -is_a: UBERON:0002967 ! cingulate gyrus - -[Term] -id: NCIT:C32793 ! -property_value: IAO:0000589 "inferior temporal sulcus (NCIT)" xsd:string -is_a: UBERON:0002969 ! inferior temporal sulcus - -[Term] -id: NCIT:C32284 ! -property_value: IAO:0000589 "centromedian nucleus of thalamus (NCIT)" xsd:string -is_a: UBERON:0002972 ! centromedian nucleus of thalamus - -[Term] -id: NCIT:C33262 ! -property_value: IAO:0000589 "parahippocampal gyrus (NCIT)" xsd:string -is_a: UBERON:0002973 ! parahippocampal gyrus - -[Term] -id: NCIT:C49139 ! -property_value: IAO:0000589 "molecular layer of cerebellar cortex (NCIT)" xsd:string -is_a: UBERON:0002974 ! molecular layer of cerebellar cortex - -[Term] -id: NCIT:C49140 ! -property_value: IAO:0000589 "Purkinje cell layer of cerebellar cortex (NCIT)" xsd:string -is_a: UBERON:0002979 ! Purkinje cell layer of cerebellar cortex - -[Term] -id: NCIT:C32944 ! -property_value: IAO:0000589 "lateral posterior nucleus of thalamus (NCIT)" xsd:string -is_a: UBERON:0002983 ! lateral posterior nucleus of thalamus - -[Term] -id: NCIT:C32774 ! -property_value: IAO:0000589 "inferior frontal gyrus (NCIT)" xsd:string -is_a: UBERON:0002998 ! inferior frontal gyrus - -[Term] -id: NCIT:C52713 ! -property_value: IAO:0000589 "cingulate cortex (NCIT)" xsd:string -is_a: UBERON:0003027 ! cingulate cortex - -[Term] -id: NCIT:C33370 ! -property_value: IAO:0000589 "posterior nucleus of thalamus (NCIT)" xsd:string -is_a: UBERON:0003030 ! posterior nucleus of thalamus - -[Term] -id: NCIT:C12894 ! -property_value: IAO:0000589 "thoracic spinal cord (NCIT)" xsd:string -is_a: UBERON:0003038 ! thoracic spinal cord - -[Term] -id: NCIT:C34240 ! -property_value: IAO:0000589 "ear vesicle (NCIT)" xsd:string -is_a: UBERON:0003051 ! ear vesicle - -[Term] -id: NCIT:C93172 ! -property_value: IAO:0000589 "midbrain-hindbrain boundary (NCIT)" xsd:string -is_a: UBERON:0003052 ! midbrain-hindbrain boundary - -[Term] -id: NCIT:C34247 ! -property_value: IAO:0000589 "periderm (NCIT)" xsd:string -is_a: UBERON:0003055 ! periderm - -[Term] -id: NCIT:C34279 ! -property_value: IAO:0000589 "pronephric duct (NCIT)" xsd:string -is_a: UBERON:0003060 ! pronephric duct - -[Term] -id: NCIT:C34113 ! -property_value: IAO:0000589 "blood island (NCIT)" xsd:string -is_a: UBERON:0003061 ! blood island - -[Term] -id: NCIT:C34266 ! -property_value: IAO:0000589 "primitive knot (NCIT)" xsd:string -is_a: UBERON:0003062 ! primitive knot - -[Term] -id: NCIT:C34193 ! -property_value: IAO:0000589 "intermediate mesoderm (NCIT)" xsd:string -is_a: UBERON:0003064 ! intermediate mesoderm - -[Term] -id: NCIT:C34288 ! -property_value: IAO:0000589 "pharyngeal arch 2 (NCIT)" xsd:string -is_a: UBERON:0003066 ! pharyngeal arch 2 - -[Term] -id: NCIT:C34239 ! -property_value: IAO:0000589 "otic placode (NCIT)" xsd:string -is_a: UBERON:0003069 ! otic placode - -[Term] -id: NCIT:C34233 ! -property_value: IAO:0000589 "optic cup (NCIT)" xsd:string -is_a: UBERON:0003072 ! optic cup - -[Term] -id: NCIT:C34202 ! -property_value: IAO:0000589 "lens placode (NCIT)" xsd:string -is_a: UBERON:0003073 ! lens placode - -[Term] -id: NCIT:C26469 ! -property_value: IAO:0000589 "mesonephric duct (NCIT)" xsd:string -is_a: UBERON:0003074 ! mesonephric duct - -[Term] -id: NCIT:C34225 ! -property_value: IAO:0000589 "neural plate (NCIT)" xsd:string -is_a: UBERON:0003075 ! neural plate - -[Term] -id: NCIT:C34244 ! -property_value: IAO:0000589 "paraxial mesoderm (NCIT)" xsd:string -is_a: UBERON:0003077 ! paraxial mesoderm - -[Term] -id: NCIT:C34199 ! -property_value: IAO:0000589 "lateral plate mesoderm (NCIT)" xsd:string -is_a: UBERON:0003081 ! lateral plate mesoderm - -[Term] -id: NCIT:C34214 ! -property_value: IAO:0000589 "myotome (NCIT)" xsd:string -is_a: UBERON:0003082 ! myotome - -[Term] -id: NCIT:C34276 ! -property_value: IAO:0000589 "heart primordium (NCIT)" xsd:string -is_a: UBERON:0003084 ! heart primordium - -[Term] -id: NCIT:C34108 ! -property_value: IAO:0000589 "anterior cardinal vein (NCIT)" xsd:string -is_a: UBERON:0003087 ! anterior cardinal vein - -[Term] -id: NCIT:C92598 ! -property_value: IAO:0000589 "caudal vein (NCIT)" xsd:string -is_a: UBERON:0003088 ! caudal vein - -[Term] -id: NCIT:C34287 ! -property_value: IAO:0000589 "sclerotome (NCIT)" xsd:string -is_a: UBERON:0003089 ! sclerotome - -[Term] -id: NCIT:C34312 ! -property_value: IAO:0000589 "thyroid primordium (NCIT)" xsd:string -is_a: UBERON:0003091 ! thyroid primordium - -[Term] -id: NCIT:C34235 ! -property_value: IAO:0000589 "optic stalk (NCIT)" xsd:string -is_a: UBERON:0003098 ! optic stalk - -[Term] -id: NCIT:C13301 ! -property_value: IAO:0000589 "mesenchyme (NCIT)" xsd:string -is_a: UBERON:0003104 ! mesenchyme - -[Term] -id: NCIT:C98765 ! -property_value: IAO:0000589 "olfactory region (NCIT)" xsd:string -is_a: UBERON:0003112 ! olfactory region - -[Term] -id: NCIT:C34122 ! -property_value: IAO:0000589 "chorion membrane (NCIT)" xsd:string -is_a: UBERON:0003124 ! chorion membrane - -[Term] -id: NCIT:C34124 ! -property_value: IAO:0000589 "chorion membrane (NCIT)" xsd:string -is_a: UBERON:0003124 ! chorion membrane - -[Term] -id: NCIT:C12428 ! -property_value: IAO:0000589 "trachea (NCIT)" xsd:string -is_a: UBERON:0003126 ! trachea - -[Term] -id: NCIT:C12789 ! -property_value: IAO:0000589 "skull (NCIT)" xsd:string -is_a: UBERON:0003129 ! skull - -[Term] -id: NCIT:C25177 ! -property_value: IAO:0000589 "reproductive organ (NCIT)" xsd:string -is_a: UBERON:0003133 ! reproductive organ - -[Term] -id: NCIT:C61362 ! -property_value: IAO:0000589 "egg chamber (NCIT)" xsd:string -is_a: UBERON:0003199 ! egg chamber - -[Term] -id: NCIT:C12986 ! -property_value: IAO:0000589 "alveolus (NCIT)" xsd:string -is_a: UBERON:0003215 ! alveolus - -[Term] -id: NCIT:C12230 ! -property_value: IAO:0000589 "hard palate (NCIT)" xsd:string -is_a: UBERON:0003216 ! hard palate - -[Term] -id: NCIT:C33317 ! -property_value: IAO:0000589 "phalanx (NCIT)" xsd:string -is_a: UBERON:0003221 ! phalanx - -[Term] -id: NCIT:C12937 ! -property_value: IAO:0000589 "epithelium of mammary gland (NCIT)" xsd:string -is_a: UBERON:0003244 ! epithelium of mammary gland - -[Term] -id: NCIT:C49792 ! -property_value: IAO:0000589 "tooth of upper jaw (NCIT)" xsd:string -is_a: UBERON:0003267 ! tooth of upper jaw - -[Term] -id: NCIT:C49582 ! -property_value: IAO:0000589 "tooth of lower jaw (NCIT)" xsd:string -is_a: UBERON:0003268 ! tooth of lower jaw - -[Term] -id: NCIT:C12350 ! -property_value: IAO:0000589 "meninx of spinal cord (NCIT)" xsd:string -is_a: UBERON:0003292 ! meninx of spinal cord - -[Term] -id: NCIT:C60784 ! -property_value: IAO:0000589 "mucosa of anal canal (NCIT)" xsd:string -is_a: UBERON:0003342 ! mucosa of anal canal - -[Term] -id: NCIT:C49300 ! -property_value: IAO:0000589 "epithelium of tongue (NCIT)" xsd:string -is_a: UBERON:0003357 ! epithelium of tongue - -[Term] -id: NCIT:C49306 ! -property_value: IAO:0000589 "smooth muscle of trachea (NCIT)" xsd:string -is_a: UBERON:0003387 ! smooth muscle of trachea - -[Term] -id: NCIT:C77646 ! -property_value: IAO:0000589 "renal lymph node (NCIT)" xsd:string -is_a: UBERON:0003425 ! renal lymph node - -[Term] -id: NCIT:C49794 ! -property_value: IAO:0000589 "upper jaw incisor (NCIT)" xsd:string -is_a: UBERON:0003450 ! upper jaw incisor - -[Term] -id: NCIT:C49583 ! -property_value: IAO:0000589 "lower jaw incisor (NCIT)" xsd:string -is_a: UBERON:0003451 ! lower jaw incisor - -[Term] -id: NCIT:C63706 ! -property_value: IAO:0000589 "facial bone (NCIT)" xsd:string -is_a: UBERON:0003462 ! facial bone - -[Term] -id: NCIT:C12982 ! -property_value: IAO:0000589 "hindlimb bone (NCIT)" xsd:string -is_a: UBERON:0003464 ! hindlimb bone - -[Term] -id: NCIT:C52845 ! -property_value: IAO:0000589 "cerebellar artery (NCIT)" xsd:string -is_a: UBERON:0003472 ! cerebellar artery - -[Term] -id: NCIT:C38515 ! -property_value: IAO:0000589 "thymus lymphoid tissue (NCIT)" xsd:string -is_a: UBERON:0003483 ! thymus lymphoid tissue - -[Term] -id: NCIT:C49333 ! -property_value: IAO:0000589 "brain gray matter (NCIT)" xsd:string -is_a: UBERON:0003528 ! brain gray matter - -[Term] -id: NCIT:C52719 ! -property_value: IAO:0000589 "pedal digit skin (NCIT)" xsd:string -is_a: UBERON:0003530 ! pedal digit skin - -[Term] -id: NCIT:C12296 ! -property_value: IAO:0000589 "forelimb skin (NCIT)" xsd:string -is_a: UBERON:0003531 ! forelimb skin - -[Term] -id: NCIT:C12297 ! -property_value: IAO:0000589 "hindlimb skin (NCIT)" xsd:string -is_a: UBERON:0003532 ! hindlimb skin - -[Term] -id: NCIT:C52720 ! -property_value: IAO:0000589 "manual digit skin (NCIT)" xsd:string -is_a: UBERON:0003533 ! manual digit skin - -[Term] -id: NCIT:C49277 ! -property_value: IAO:0000589 "right lung alveolar duct (NCIT)" xsd:string -is_a: UBERON:0003536 ! right lung alveolar duct - -[Term] -id: NCIT:C49250 ! -property_value: IAO:0000589 "left lung alveolar duct (NCIT)" xsd:string -is_a: UBERON:0003537 ! left lung alveolar duct - -[Term] -id: NCIT:C49279 ! -property_value: IAO:0000589 "right lung bronchiole (NCIT)" xsd:string -is_a: UBERON:0003538 ! right lung bronchiole - -[Term] -id: NCIT:C49252 ! -property_value: IAO:0000589 "left lung bronchiole (NCIT)" xsd:string -is_a: UBERON:0003539 ! left lung bronchiole - -[Term] -id: NCIT:C49294 ! -property_value: IAO:0000589 "right lung terminal bronchiole (NCIT)" xsd:string -is_a: UBERON:0003540 ! right lung terminal bronchiole - -[Term] -id: NCIT:C49255 ! -property_value: IAO:0000589 "left lung terminal bronchiole (NCIT)" xsd:string -is_a: UBERON:0003541 ! left lung terminal bronchiole - -[Term] -id: NCIT:C49285 ! -property_value: IAO:0000589 "right lung respiratory bronchiole (NCIT)" xsd:string -is_a: UBERON:0003542 ! right lung respiratory bronchiole - -[Term] -id: NCIT:C49254 ! -property_value: IAO:0000589 "left lung respiratory bronchiole (NCIT)" xsd:string -is_a: UBERON:0003543 ! left lung respiratory bronchiole - -[Term] -id: NCIT:C49334 ! -property_value: IAO:0000589 "brain white matter (NCIT)" xsd:string -is_a: UBERON:0003544 ! brain white matter - -[Term] -id: NCIT:C49335 ! -property_value: IAO:0000589 "brain pia mater (NCIT)" xsd:string -is_a: UBERON:0003549 ! brain pia mater - -[Term] -id: NCIT:C49800 ! -property_value: IAO:0000589 "spinal cord pia mater (NCIT)" xsd:string -is_a: UBERON:0003555 ! spinal cord pia mater - -[Term] -id: NCIT:C49482 ! -property_value: IAO:0000589 "eyelid connective tissue (NCIT)" xsd:string -is_a: UBERON:0003581 ! eyelid connective tissue - -[Term] -id: NCIT:C49245 ! -property_value: IAO:0000589 "larynx connective tissue (NCIT)" xsd:string -is_a: UBERON:0003583 ! larynx connective tissue - -[Term] -id: NCIT:C49210 ! -property_value: IAO:0000589 "bronchus connective tissue (NCIT)" xsd:string -is_a: UBERON:0003592 ! bronchus connective tissue - -[Term] -id: NCIT:C49256 ! -property_value: IAO:0000589 "lower respiratory tract cartilage (NCIT)" xsd:string -is_a: UBERON:0003603 ! lower respiratory tract cartilage - -[Term] -id: NCIT:C49304 ! -property_value: IAO:0000589 "trachea cartilage (NCIT)" xsd:string -is_a: UBERON:0003604 ! trachea cartilage - -[Term] -id: NCIT:C49211 ! -property_value: IAO:0000589 "bronchus elastic tissue (NCIT)" xsd:string -is_a: UBERON:0003616 ! bronchus elastic tissue - -[Term] -id: NCIT:C52777 ! -property_value: IAO:0000589 "manual digit 1 phalanx (NCIT)" xsd:string -is_a: UBERON:0003620 ! manual digit 1 phalanx - -[Term] -id: NCIT:C52835 ! -property_value: IAO:0000589 "manual digit 2 (NCIT)" xsd:string -is_a: UBERON:0003622 ! manual digit 2 - -[Term] -id: NCIT:C52836 ! -property_value: IAO:0000589 "manual digit 3 (NCIT)" xsd:string -is_a: UBERON:0003623 ! manual digit 3 - -[Term] -id: NCIT:C52837 ! -property_value: IAO:0000589 "manual digit 4 (NCIT)" xsd:string -is_a: UBERON:0003624 ! manual digit 4 - -[Term] -id: NCIT:C52838 ! -property_value: IAO:0000589 "manual digit 5 (NCIT)" xsd:string -is_a: UBERON:0003625 ! manual digit 5 - -[Term] -id: NCIT:C52839 ! -property_value: IAO:0000589 "pedal digit 1 (NCIT)" xsd:string -is_a: UBERON:0003631 ! pedal digit 1 - -[Term] -id: NCIT:C52840 ! -property_value: IAO:0000589 "pedal digit 2 (NCIT)" xsd:string -is_a: UBERON:0003632 ! pedal digit 2 - -[Term] -id: NCIT:C52841 ! -property_value: IAO:0000589 "pedal digit 3 (NCIT)" xsd:string -is_a: UBERON:0003633 ! pedal digit 3 - -[Term] -id: NCIT:C52842 ! -property_value: IAO:0000589 "pedal digit 4 (NCIT)" xsd:string -is_a: UBERON:0003634 ! pedal digit 4 - -[Term] -id: NCIT:C52843 ! -property_value: IAO:0000589 "pedal digit 5 (NCIT)" xsd:string -is_a: UBERON:0003635 ! pedal digit 5 - -[Term] -id: NCIT:C52776 ! -property_value: IAO:0000589 "manual digit 2 phalanx (NCIT)" xsd:string -is_a: UBERON:0003636 ! manual digit 2 phalanx - -[Term] -id: NCIT:C52775 ! -property_value: IAO:0000589 "manual digit 3 phalanx (NCIT)" xsd:string -is_a: UBERON:0003637 ! manual digit 3 phalanx - -[Term] -id: NCIT:C52774 ! -property_value: IAO:0000589 "manual digit 4 phalanx (NCIT)" xsd:string -is_a: UBERON:0003638 ! manual digit 4 phalanx - -[Term] -id: NCIT:C52773 ! -property_value: IAO:0000589 "manual digit 5 phalanx (NCIT)" xsd:string -is_a: UBERON:0003639 ! manual digit 5 phalanx - -[Term] -id: NCIT:C52778 ! -property_value: IAO:0000589 "pedal digit 1 phalanx (NCIT)" xsd:string -is_a: UBERON:0003640 ! pedal digit 1 phalanx - -[Term] -id: NCIT:C52779 ! -property_value: IAO:0000589 "pedal digit 2 phalanx (NCIT)" xsd:string -is_a: UBERON:0003641 ! pedal digit 2 phalanx - -[Term] -id: NCIT:C52780 ! -property_value: IAO:0000589 "pedal digit 3 phalanx (NCIT)" xsd:string -is_a: UBERON:0003642 ! pedal digit 3 phalanx - -[Term] -id: NCIT:C52796 ! -property_value: IAO:0000589 "metacarpal bone of digit 1 (NCIT)" xsd:string -is_a: UBERON:0003645 ! metacarpal bone of digit 1 - -[Term] -id: NCIT:C52795 ! -property_value: IAO:0000589 "metacarpal bone of digit 2 (NCIT)" xsd:string -is_a: UBERON:0003646 ! metacarpal bone of digit 2 - -[Term] -id: NCIT:C52794 ! -property_value: IAO:0000589 "metacarpal bone of digit 3 (NCIT)" xsd:string -is_a: UBERON:0003647 ! metacarpal bone of digit 3 - -[Term] -id: NCIT:C52793 ! -property_value: IAO:0000589 "metacarpal bone of digit 4 (NCIT)" xsd:string -is_a: UBERON:0003648 ! metacarpal bone of digit 4 - -[Term] -id: NCIT:C52792 ! -property_value: IAO:0000589 "metacarpal bone of digit 5 (NCIT)" xsd:string -is_a: UBERON:0003649 ! metacarpal bone of digit 5 - -[Term] -id: NCIT:C52791 ! -property_value: IAO:0000589 "metatarsal bone of digit 1 (NCIT)" xsd:string -is_a: UBERON:0003650 ! metatarsal bone of digit 1 - -[Term] -id: NCIT:C52790 ! -property_value: IAO:0000589 "metatarsal bone of digit 2 (NCIT)" xsd:string -is_a: UBERON:0003651 ! metatarsal bone of digit 2 - -[Term] -id: NCIT:C52789 ! -property_value: IAO:0000589 "metatarsal bone of digit 3 (NCIT)" xsd:string -is_a: UBERON:0003652 ! metatarsal bone of digit 3 - -[Term] -id: NCIT:C52788 ! -property_value: IAO:0000589 "metatarsal bone of digit 4 (NCIT)" xsd:string -is_a: UBERON:0003653 ! metatarsal bone of digit 4 - -[Term] -id: NCIT:C52787 ! -property_value: IAO:0000589 "metatarsal bone of digit 5 (NCIT)" xsd:string -is_a: UBERON:0003654 ! metatarsal bone of digit 5 - -[Term] -id: NCIT:C33136 ! -property_value: IAO:0000589 "molar tooth (NCIT)" xsd:string -is_a: UBERON:0003655 ! molar tooth - -[Term] -id: NCIT:C52803 ! -property_value: IAO:0000589 "eyelid muscle (NCIT)" xsd:string -is_a: UBERON:0003660 ! eyelid muscle - -[Term] -id: NCIT:C49795 ! -property_value: IAO:0000589 "upper jaw molar (NCIT)" xsd:string -is_a: UBERON:0003666 ! upper jaw molar - -[Term] -id: NCIT:C49584 ! -property_value: IAO:0000589 "lower jaw molar (NCIT)" xsd:string -is_a: UBERON:0003667 ! lower jaw molar - -[Term] -id: NCIT:C33717 ! -property_value: IAO:0000589 "synovial bursa (NCIT)" xsd:string -is_a: UBERON:0003668 ! synovial bursa - -[Term] -id: NCIT:C32585 ! -property_value: IAO:0000589 "fascia lata (NCIT)" xsd:string -is_a: UBERON:0003669 ! fascia lata - -[Term] -id: NCIT:C33574 ! -property_value: IAO:0000589 "smegma (NCIT)" xsd:string -is_a: UBERON:0003670 ! smegma - -[Term] -id: NCIT:C32088 ! -property_value: IAO:0000589 "anterior cruciate ligament of knee joint (NCIT)" xsd:string -is_a: UBERON:0003671 ! anterior cruciate ligament of knee joint - -[Term] -id: NCIT:C13072 ! -property_value: IAO:0000589 "dentition (NCIT)" xsd:string -is_a: UBERON:0003672 ! dentition - -[Term] -id: NCIT:C32986 ! -property_value: IAO:0000589 "ligamentum flavum (NCIT)" xsd:string -is_a: UBERON:0003673 ! ligamentum flavum - -[Term] -id: NCIT:C32258 ! -property_value: IAO:0000589 "cuspid (NCIT)" xsd:string -is_a: UBERON:0003674 ! cuspid - -[Term] -id: NCIT:C32375 ! -property_value: IAO:0000589 "tooth crown (NCIT)" xsd:string -is_a: UBERON:0003675 ! tooth crown - -[Term] -id: NCIT:C33283 ! -property_value: IAO:0000589 "patellar ligament (NCIT)" xsd:string -is_a: UBERON:0003676 ! patellar ligament - -[Term] -id: NCIT:C54187 ! -property_value: IAO:0000589 "mouth floor (NCIT)" xsd:string -is_a: UBERON:0003679 ! mouth floor - -[Term] -id: NCIT:C33359 ! -property_value: IAO:0000589 "posterior cruciate ligament of knee joint (NCIT)" xsd:string -is_a: UBERON:0003680 ! posterior cruciate ligament of knee joint - -[Term] -id: NCIT:C33147 ! -property_value: IAO:0000589 "masticatory muscle (NCIT)" xsd:string -is_a: UBERON:0003681 ! masticatory muscle - -[Term] -id: NCIT:C33247 ! -property_value: IAO:0000589 "palatal muscle (NCIT)" xsd:string -is_a: UBERON:0003682 ! palatal muscle - -[Term] -id: NCIT:C33497 ! -property_value: IAO:0000589 "rotator cuff (NCIT)" xsd:string -is_a: UBERON:0003683 ! rotator cuff - -[Term] -id: NCIT:C12664 ! -property_value: IAO:0000589 "abdominal cavity (NCIT)" xsd:string -is_a: UBERON:0003684 ! abdominal cavity - -[Term] -id: NCIT:C94543 ! -property_value: IAO:0000589 "tooth socket (NCIT)" xsd:string -is_a: UBERON:0003686 ! tooth socket - -[Term] -id: NCIT:C12495 ! -property_value: IAO:0000589 "foramen magnum (NCIT)" xsd:string -is_a: UBERON:0003687 ! foramen magnum - -[Term] -id: NCIT:C33209 ! -property_value: IAO:0000589 "omentum (NCIT)" xsd:string -is_a: UBERON:0003688 ! omentum - -[Term] -id: NCIT:C12497 ! -property_value: IAO:0000589 "sella turcica (NCIT)" xsd:string -is_a: UBERON:0003689 ! sella turcica - -[Term] -id: NCIT:C33508 ! -property_value: IAO:0000589 "fused sacrum (NCIT)" xsd:string -is_a: UBERON:0003690 ! fused sacrum - -[Term] -id: NCIT:C32047 ! -property_value: IAO:0000589 "acromioclavicular joint (NCIT)" xsd:string -is_a: UBERON:0003692 ! acromioclavicular joint - -[Term] -id: NCIT:C12298 ! -property_value: IAO:0000589 "retroperitoneal space (NCIT)" xsd:string -is_a: UBERON:0003693 ! retroperitoneal space - -[Term] -id: NCIT:C32157 ! -property_value: IAO:0000589 "atlanto-axial joint (NCIT)" xsd:string -is_a: UBERON:0003694 ! atlanto-axial joint - -[Term] -id: NCIT:C33106 ! -property_value: IAO:0000589 "metacarpophalangeal joint (NCIT)" xsd:string -is_a: UBERON:0003695 ! metacarpophalangeal joint - -[Term] -id: NCIT:C33108 ! -property_value: IAO:0000589 "metatarsophalangeal joint (NCIT)" xsd:string -is_a: UBERON:0003696 ! metatarsophalangeal joint - -[Term] -id: NCIT:C77608 ! -property_value: IAO:0000589 "abdominal wall (NCIT)" xsd:string -is_a: UBERON:0003697 ! abdominal wall - -[Term] -id: NCIT:C33653 ! -property_value: IAO:0000589 "subtalar joint (NCIT)" xsd:string -is_a: UBERON:0003698 ! subtalar joint - -[Term] -id: NCIT:C33425 ! -property_value: IAO:0000589 "pubic symphysis (NCIT)" xsd:string -is_a: UBERON:0003699 ! pubic symphysis - -[Term] -id: NCIT:C32888 ! -property_value: IAO:0000589 "temporomandibular joint (NCIT)" xsd:string -is_a: UBERON:0003700 ! temporomandibular joint - -[Term] -id: NCIT:C32043 ! -property_value: IAO:0000589 "calcaneal tendon (NCIT)" xsd:string -is_a: UBERON:0003701 ! calcaneal tendon - -[Term] -id: NCIT:C93029 ! -property_value: IAO:0000589 "inguinal canal (NCIT)" xsd:string -is_a: UBERON:0003702 ! inguinal canal - -[Term] -id: NCIT:C32573 ! -property_value: IAO:0000589 "extrahepatic bile duct (NCIT)" xsd:string -is_a: UBERON:0003703 ! extrahepatic bile duct - -[Term] -id: NCIT:C12677 ! -property_value: IAO:0000589 "intrahepatic bile duct (NCIT)" xsd:string -is_a: UBERON:0003704 ! intrahepatic bile duct - -[Term] -id: NCIT:C12822 ! -property_value: IAO:0000589 "laryngeal vocal fold (NCIT)" xsd:string -is_a: UBERON:0003706 ! laryngeal vocal fold - -[Term] -id: NCIT:C33557 ! -property_value: IAO:0000589 "sinus of Valsalva (NCIT)" xsd:string -is_a: UBERON:0003707 ! sinus of Valsalva - -[Term] -id: NCIT:C33852 ! -property_value: IAO:0000589 "vasa vasorum (NCIT)" xsd:string -is_a: UBERON:0003710 ! vasa vasorum - -[Term] -id: NCIT:C32816 ! -property_value: IAO:0000589 "brachiocephalic vein (NCIT)" xsd:string -is_a: UBERON:0003711 ! brachiocephalic vein - -[Term] -id: NCIT:C12690 ! -property_value: IAO:0000589 "cavernous sinus (NCIT)" xsd:string -is_a: UBERON:0003712 ! cavernous sinus - -[Term] -id: NCIT:C33608 ! -property_value: IAO:0000589 "splenic vein (NCIT)" xsd:string -is_a: UBERON:0003713 ! splenic vein - -[Term] -id: NCIT:C13052 ! -property_value: IAO:0000589 "neural tissue (NCIT)" xsd:string -is_a: UBERON:0003714 ! neural tissue - -[Term] -id: NCIT:C13824 ! -property_value: IAO:0000589 "muscle spindle (NCIT)" xsd:string -is_a: UBERON:0003718 ! muscle spindle - -[Term] -id: NCIT:C13172 ! -property_value: IAO:0000589 "Pacinian corpuscle (NCIT)" xsd:string -is_a: UBERON:0003719 ! Pacinian corpuscle - -[Term] -id: NCIT:C32090 ! -property_value: IAO:0000589 "anterior cranial fossa (NCIT)" xsd:string -is_a: UBERON:0003720 ! anterior cranial fossa - -[Term] -id: NCIT:C33117 ! -property_value: IAO:0000589 "middle cranial fossa (NCIT)" xsd:string -is_a: UBERON:0003722 ! middle cranial fossa - -[Term] -id: NCIT:C12820 ! -property_value: IAO:0000589 "vestibular nerve (NCIT)" xsd:string -is_a: UBERON:0003723 ! vestibular nerve - -[Term] -id: NCIT:C32825 ! -property_value: IAO:0000589 "intercostal nerve (NCIT)" xsd:string -is_a: UBERON:0003727 ! intercostal nerve - -[Term] -id: NCIT:C12748 ! -property_value: IAO:0000589 "mediastinum (NCIT)" xsd:string -is_a: UBERON:0003728 ! mediastinum - -[Term] -id: NCIT:C77637 ! -property_value: IAO:0000589 "mouth mucosa (NCIT)" xsd:string -is_a: UBERON:0003729 ! mouth mucosa - -[Term] -id: NCIT:C32141 ! -property_value: IAO:0000589 "forelimb stylopod (NCIT)" xsd:string -is_a: UBERON:0003822 ! forelimb stylopod - -[Term] -id: NCIT:C32974 ! -property_value: IAO:0000589 "hindlimb zeugopod (NCIT)" xsd:string -is_a: UBERON:0003823 ! hindlimb zeugopod - -[Term] -id: NCIT:C54296 ! -property_value: IAO:0000589 "dental epithelium (NCIT)" xsd:string -is_a: UBERON:0003843 ! dental epithelium - -[Term] -id: NCIT:C45713 ! -property_value: IAO:0000589 "thymus epithelium (NCIT)" xsd:string -is_a: UBERON:0003846 ! thymus epithelium - -[Term] -id: NCIT:C53020 ! -property_value: IAO:0000589 "thyroid artery (NCIT)" xsd:string -is_a: UBERON:0003847 ! thyroid artery - -[Term] -id: NCIT:C32138 ! -property_value: IAO:0000589 "neural arch (NCIT)" xsd:string -is_a: UBERON:0003861 ! neural arch - -[Term] -id: NCIT:C52781 ! -property_value: IAO:0000589 "pedal digit 4 phalanx (NCIT)" xsd:string -is_a: UBERON:0003862 ! pedal digit 4 phalanx - -[Term] -id: NCIT:C52782 ! -property_value: IAO:0000589 "pedal digit 5 phalanx (NCIT)" xsd:string -is_a: UBERON:0003863 ! pedal digit 5 phalanx - -[Term] -id: NCIT:C12863 ! -property_value: IAO:0000589 "middle phalanx of manus (NCIT)" xsd:string -is_a: UBERON:0003864 ! middle phalanx of manus - -[Term] -id: NCIT:C52784 ! -property_value: IAO:0000589 "distal phalanx of manus (NCIT)" xsd:string -is_a: UBERON:0003865 ! distal phalanx of manus - -[Term] -id: NCIT:C52783 ! -property_value: IAO:0000589 "distal phalanx of pes (NCIT)" xsd:string -is_a: UBERON:0003867 ! distal phalanx of pes - -[Term] -id: NCIT:C52785 ! -property_value: IAO:0000589 "proximal phalanx of pes (NCIT)" xsd:string -is_a: UBERON:0003868 ! proximal phalanx of pes - -[Term] -id: NCIT:C32246 ! -property_value: IAO:0000589 "CA1 field of hippocampus (NCIT)" xsd:string -is_a: UBERON:0003881 ! CA1 field of hippocampus - -[Term] -id: NCIT:C32247 ! -property_value: IAO:0000589 "CA2 field of hippocampus (NCIT)" xsd:string -is_a: UBERON:0003882 ! CA2 field of hippocampus - -[Term] -id: NCIT:C32248 ! -property_value: IAO:0000589 "CA3 field of hippocampus (NCIT)" xsd:string -is_a: UBERON:0003883 ! CA3 field of hippocampus - -[Term] -id: NCIT:C32249 ! -property_value: IAO:0000589 "CA4 field of hippocampus (NCIT)" xsd:string -is_a: UBERON:0003884 ! CA4 field of hippocampus - -[Term] -id: NCIT:C34195 ! -property_value: IAO:0000589 "intraembryonic coelom (NCIT)" xsd:string -is_a: UBERON:0003887 ! intraembryonic coelom - -[Term] -id: NCIT:C34165 ! -property_value: IAO:0000589 "extraembryonic coelomic cavity (NCIT)" xsd:string -is_a: UBERON:0003888 ! extraembryonic coelomic cavity - -[Term] -id: NCIT:C12403 ! -property_value: IAO:0000589 "fallopian tube (NCIT)" xsd:string -is_a: UBERON:0003889 ! fallopian tube - -[Term] -id: NCIT:C13260 ! -property_value: IAO:0000589 "Mullerian duct (NCIT)" xsd:string -is_a: UBERON:0003890 ! Mullerian duct - -[Term] -id: NCIT:C67387 ! -property_value: IAO:0000589 "stroma (NCIT)" xsd:string -is_a: UBERON:0003891 ! stroma - -[Term] -id: NCIT:C34277 ! -property_value: IAO:0000589 "liver primordium (NCIT)" xsd:string -is_a: UBERON:0003894 ! liver primordium - -[Term] -id: NCIT:C33166 ! -property_value: IAO:0000589 "retinal neural layer (NCIT)" xsd:string -is_a: UBERON:0003902 ! retinal neural layer - -[Term] -id: NCIT:C34115 ! -property_value: IAO:0000589 "cardiac jelly (NCIT)" xsd:string -is_a: UBERON:0003906 ! cardiac jelly - -[Term] -id: NCIT:C42079 ! -property_value: IAO:0000589 "choroid plexus epithelium (NCIT)" xsd:string -is_a: UBERON:0003911 ! choroid plexus epithelium - -[Term] -id: NCIT:C34242 ! -property_value: IAO:0000589 "pancreatic epithelial bud (NCIT)" xsd:string -is_a: UBERON:0003922 ! pancreatic epithelial bud - -[Term] -id: NCIT:C12963 ! -property_value: IAO:0000589 "digestive tract epithelium (NCIT)" xsd:string -is_a: UBERON:0003929 ! digestive tract epithelium - -[Term] -id: NCIT:C13378 ! -property_value: IAO:0000589 "ocular fundus (NCIT)" xsd:string -is_a: UBERON:0003951 ! ocular fundus - -[Term] -id: NCIT:C33467 ! -property_value: IAO:0000589 "rete testis (NCIT)" xsd:string -is_a: UBERON:0003959 ! rete testis - -[Term] -id: NCIT:C33400 ! -property_value: IAO:0000589 "primordial ovarian follicle (NCIT)" xsd:string -is_a: UBERON:0003981 ! primordial ovarian follicle - -[Term] -id: NCIT:C13170 ! -property_value: IAO:0000589 "Hassall's corpuscle (NCIT)" xsd:string -is_a: UBERON:0003987 ! Hassall's corpuscle - -[Term] -id: NCIT:C32626 ! -property_value: IAO:0000589 "fourth ventricle median aperture (NCIT)" xsd:string -is_a: UBERON:0003991 ! fourth ventricle median aperture - -[Term] -id: NCIT:C32625 ! -property_value: IAO:0000589 "fourth ventricle lateral aperture (NCIT)" xsd:string -is_a: UBERON:0003992 ! fourth ventricle lateral aperture - -[Term] -id: NCIT:C32627 ! -property_value: IAO:0000589 "interventricular foramen of CNS (NCIT)" xsd:string -is_a: UBERON:0003993 ! interventricular foramen of CNS - -[Term] -id: NCIT:C13826 ! -property_value: IAO:0000589 "golgi tendon organ (NCIT)" xsd:string -is_a: UBERON:0004012 ! golgi tendon organ - -[Term] -id: NCIT:C12307 ! -property_value: IAO:0000589 "labium minora (NCIT)" xsd:string -is_a: UBERON:0004014 ! labium minora - -[Term] -id: NCIT:C61572 ! -property_value: IAO:0000589 "dermatome (NCIT)" xsd:string -is_a: UBERON:0004016 ! dermatome - -[Term] -id: NCIT:C34123 ! -property_value: IAO:0000589 "chorionic plate (NCIT)" xsd:string -is_a: UBERON:0004027 ! chorionic plate - -[Term] -id: NCIT:C32256 ! -property_value: IAO:0000589 "canal of Schlemm (NCIT)" xsd:string -is_a: UBERON:0004029 ! canal of Schlemm - -[Term] -id: NCIT:C32866 ! -property_value: IAO:0000589 "basal cistern (NCIT)" xsd:string -is_a: UBERON:0004047 ! basal cistern - -[Term] -id: NCIT:C33640 ! -property_value: IAO:0000589 "subarachnoid cistern (NCIT)" xsd:string -is_a: UBERON:0004050 ! subarachnoid cistern - -[Term] -id: NCIT:C33444 ! -property_value: IAO:0000589 "quadrigeminal cistern (NCIT)" xsd:string -is_a: UBERON:0004052 ! quadrigeminal cistern - -[Term] -id: NCIT:C34267 ! -property_value: IAO:0000589 "primitive pit (NCIT)" xsd:string -is_a: UBERON:0004055 ! primitive pit - -[Term] -id: NCIT:C34265 ! -property_value: IAO:0000589 "primitive groove (NCIT)" xsd:string -is_a: UBERON:0004056 ! primitive groove - -[Term] -id: NCIT:C34111 ! -property_value: IAO:0000589 "neural tube basal plate (NCIT)" xsd:string -is_a: UBERON:0004064 ! neural tube basal plate - -[Term] -id: NCIT:C34182 ! -property_value: IAO:0000589 "frontonasal prominence (NCIT)" xsd:string -is_a: UBERON:0004066 ! frontonasal prominence - -[Term] -id: NCIT:C52559 ! -property_value: IAO:0000589 "genital labium (NCIT)" xsd:string -is_a: UBERON:0004084 ! genital labium - -[Term] -id: NCIT:C12306 ! -property_value: IAO:0000589 "labium majora (NCIT)" xsd:string -is_a: UBERON:0004085 ! labium majora - -[Term] -id: NCIT:C12356 ! -property_value: IAO:0000589 "brain ventricle (NCIT)" xsd:string -is_a: UBERON:0004086 ! brain ventricle - -[Term] -id: NCIT:C12817 ! -property_value: IAO:0000589 "vena cava (NCIT)" xsd:string -is_a: UBERON:0004087 ! vena cava - -[Term] -id: NCIT:C86970 ! -property_value: IAO:0000589 "odontoid process of cervical vertebra 2 (NCIT)" xsd:string -is_a: UBERON:0004096 ! odontoid process of cervical vertebra 2 - -[Term] -id: NCIT:C89749 ! -property_value: IAO:0000589 "alveolar ridge (NCIT)" xsd:string -is_a: UBERON:0004103 ! alveolar ridge - -[Term] -id: NCIT:C32410 ! -property_value: IAO:0000589 "crus of ear (NCIT)" xsd:string -is_a: UBERON:0004106 ! crus of ear - -[Term] -id: NCIT:C12494 ! -property_value: IAO:0000589 "clivus of occipital bone (NCIT)" xsd:string -is_a: UBERON:0004108 ! clivus of occipital bone - -[Term] -id: NCIT:C33148 ! -property_value: IAO:0000589 "muscle of auditory ossicle (NCIT)" xsd:string -is_a: UBERON:0004113 ! muscle of auditory ossicle - -[Term] -id: NCIT:C34252 ! -property_value: IAO:0000589 "pharyngeal pouch (NCIT)" xsd:string -is_a: UBERON:0004117 ! pharyngeal pouch - -[Term] -id: NCIT:C12810 ! -property_value: IAO:0000589 "genitourinary system (NCIT)" xsd:string -is_a: UBERON:0004122 ! genitourinary system - -[Term] -id: NCIT:C34236 ! -property_value: IAO:0000589 "optic vesicle (NCIT)" xsd:string -is_a: UBERON:0004128 ! optic vesicle - -[Term] -id: NCIT:C49137 ! -property_value: IAO:0000589 "cerebellar layer (NCIT)" xsd:string -is_a: UBERON:0004130 ! cerebellar layer - -[Term] -id: NCIT:C34161 ! -property_value: IAO:0000589 "heart tube (NCIT)" xsd:string -is_a: UBERON:0004141 ! heart tube - -[Term] -id: NCIT:C12878 ! -property_value: IAO:0000589 "cardiac vein (NCIT)" xsd:string -is_a: UBERON:0004148 ! cardiac vein - -[Term] -id: NCIT:C12882 ! -property_value: IAO:0000589 "cardiac vein (NCIT)" xsd:string -is_a: UBERON:0004148 ! cardiac vein - -[Term] -id: NCIT:C34294 ! -property_value: IAO:0000589 "atrial septum primum (NCIT)" xsd:string -is_a: UBERON:0004154 ! atrial septum primum - -[Term] -id: NCIT:C34295 ! -property_value: IAO:0000589 "atrial septum secundum (NCIT)" xsd:string -is_a: UBERON:0004155 ! atrial septum secundum - -[Term] -id: NCIT:C34296 ! -property_value: IAO:0000589 "septum transversum (NCIT)" xsd:string -is_a: UBERON:0004161 ! septum transversum - -[Term] -id: NCIT:C33890 ! -property_value: IAO:0000589 "spinal cord ventral commissure (NCIT)" xsd:string -is_a: UBERON:0004170 ! spinal cord ventral commissure - -[Term] -id: NCIT:C49191 ! -property_value: IAO:0000589 "aorta smooth muscle tissue (NCIT)" xsd:string -is_a: UBERON:0004178 ! aorta smooth muscle tissue - -[Term] -id: NCIT:C13104 ! -property_value: IAO:0000589 "prostate gland stroma (NCIT)" xsd:string -is_a: UBERON:0004184 ! prostate gland stroma - -[Term] -id: NCIT:C77619 ! -property_value: IAO:0000589 "Harderian gland (NCIT)" xsd:string -is_a: UBERON:0004187 ! Harderian gland - -[Term] -id: NCIT:C32892 ! -property_value: IAO:0000589 "long nephron (NCIT)" xsd:string -is_a: UBERON:0004194 ! long nephron - -[Term] -id: NCIT:C12886 ! -property_value: IAO:0000589 "kidney pyramid (NCIT)" xsd:string -is_a: UBERON:0004200 ! kidney pyramid - -[Term] -id: NCIT:C33436 ! -property_value: IAO:0000589 "kidney pyramid (NCIT)" xsd:string -is_a: UBERON:0004200 ! kidney pyramid - -[Term] -id: NCIT:C32684 ! -property_value: IAO:0000589 "glomerular capillary (NCIT)" xsd:string -is_a: UBERON:0004212 ! glomerular capillary - -[Term] -id: NCIT:C49243 ! -property_value: IAO:0000589 "intestine smooth muscle (NCIT)" xsd:string -is_a: UBERON:0004221 ! intestine smooth muscle - -[Term] -id: NCIT:C49260 ! -property_value: IAO:0000589 "lymphatic vessel smooth muscle (NCIT)" xsd:string -is_a: UBERON:0004232 ! lymphatic vessel smooth muscle - -[Term] -id: NCIT:C33853 ! -property_value: IAO:0000589 "blood vessel smooth muscle (NCIT)" xsd:string -is_a: UBERON:0004237 ! blood vessel smooth muscle - -[Term] -id: NCIT:C49483 ! -property_value: IAO:0000589 "gallbladder smooth muscle (NCIT)" xsd:string -is_a: UBERON:0004240 ! gallbladder smooth muscle - -[Term] -id: NCIT:C49213 ! -property_value: IAO:0000589 "bronchus smooth muscle (NCIT)" xsd:string -is_a: UBERON:0004242 ! bronchus smooth muscle - -[Term] -id: NCIT:C49248 ! -property_value: IAO:0000589 "lateral ventricle choroid plexus epithelium (NCIT)" xsd:string -is_a: UBERON:0004274 ! lateral ventricle choroid plexus epithelium - -[Term] -id: NCIT:C49230 ! -property_value: IAO:0000589 "fourth ventricle choroid plexus epithelium (NCIT)" xsd:string -is_a: UBERON:0004276 ! fourth ventricle choroid plexus epithelium - -[Term] -id: NCIT:C34140 ! -property_value: IAO:0000589 "dermomyotome (NCIT)" xsd:string -is_a: UBERON:0004290 ! dermomyotome - -[Term] -id: NCIT:C32522 ! -property_value: IAO:0000589 "glomerular capillary endothelium (NCIT)" xsd:string -is_a: UBERON:0004294 ! glomerular capillary endothelium - -[Term] -id: NCIT:C81188 ! -property_value: IAO:0000589 "vault of skull (NCIT)" xsd:string -is_a: UBERON:0004339 ! vault of skull - -[Term] -id: NCIT:C34101 ! -property_value: IAO:0000589 "allantois (NCIT)" xsd:string -is_a: UBERON:0004340 ! allantois - -[Term] -id: NCIT:C28402 ! -property_value: IAO:0000589 "primitive streak (NCIT)" xsd:string -is_a: UBERON:0004341 ! primitive streak - -[Term] -id: NCIT:C34116 ! -property_value: IAO:0000589 "cardinal vein (NCIT)" xsd:string -is_a: UBERON:0004344 ! cardinal vein - -[Term] -id: NCIT:C82952 ! -property_value: IAO:0000589 "gubernaculum (male or female) (NCIT)" xsd:string -is_a: UBERON:0004346 ! gubernaculum (male or female) - -[Term] -id: NCIT:C34203 ! -property_value: IAO:0000589 "limb bud (NCIT)" xsd:string -is_a: UBERON:0004347 ! limb bud - -[Term] -id: NCIT:C34109 ! -property_value: IAO:0000589 "apical ectodermal ridge (NCIT)" xsd:string -is_a: UBERON:0004356 ! apical ectodermal ridge - -[Term] -id: NCIT:C32717 ! -property_value: IAO:0000589 "caput epididymis (NCIT)" xsd:string -is_a: UBERON:0004358 ! caput epididymis - -[Term] -id: NCIT:C32217 ! -property_value: IAO:0000589 "corpus epididymis (NCIT)" xsd:string -is_a: UBERON:0004359 ! corpus epididymis - -[Term] -id: NCIT:C33732 ! -property_value: IAO:0000589 "cauda epididymis (NCIT)" xsd:string -is_a: UBERON:0004360 ! cauda epididymis - -[Term] -id: NCIT:C34175 ! -property_value: IAO:0000589 "pharyngeal arch 1 (NCIT)" xsd:string -is_a: UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: NCIT:C32123 ! -property_value: IAO:0000589 "pharyngeal arch artery (NCIT)" xsd:string -is_a: UBERON:0004363 ! pharyngeal arch artery - -[Term] -id: NCIT:C32454 ! -property_value: IAO:0000589 "Descemet's membrane (NCIT)" xsd:string -is_a: UBERON:0004367 ! Descemet's membrane - -[Term] -id: NCIT:C32226 ! -property_value: IAO:0000589 "anterior limiting lamina of cornea (NCIT)" xsd:string -is_a: UBERON:0004370 ! anterior limiting lamina of cornea - -[Term] -id: NCIT:C12691 ! -property_value: IAO:0000589 "cerebral artery (NCIT)" xsd:string -is_a: UBERON:0004449 ! cerebral artery - -[Term] -id: NCIT:C32665 ! -property_value: IAO:0000589 "gastric vein (NCIT)" xsd:string -is_a: UBERON:0004450 ! gastric vein - -[Term] -id: NCIT:C111033 ! -property_value: IAO:0000589 "carpal region (NCIT)" xsd:string -is_a: UBERON:0004452 ! carpal region - -[Term] -id: NCIT:C34229 ! -property_value: IAO:0000589 "neurula embryo (NCIT)" xsd:string -is_a: UBERON:0004455 ! neurula embryo - -[Term] -id: NCIT:C61549 ! -property_value: IAO:0000589 "anatomical projection (NCIT)" xsd:string -is_a: UBERON:0004529 ! anatomical projection - -[Term] -id: NCIT:C49323 ! -property_value: IAO:0000589 "left testis (NCIT)" xsd:string -is_a: UBERON:0004533 ! left testis - -[Term] -id: NCIT:C49326 ! -property_value: IAO:0000589 "right testis (NCIT)" xsd:string -is_a: UBERON:0004534 ! right testis - -[Term] -id: NCIT:C12686 ! -property_value: IAO:0000589 "cardiovascular system (NCIT)" xsd:string -is_a: UBERON:0004535 ! cardiovascular system - -[Term] -id: NCIT:C34006 ! -property_value: IAO:0000589 "left kidney (NCIT)" xsd:string -is_a: UBERON:0004538 ! left kidney - -[Term] -id: NCIT:C34005 ! -property_value: IAO:0000589 "right kidney (NCIT)" xsd:string -is_a: UBERON:0004539 ! right kidney - -[Term] -id: NCIT:C32550 ! -property_value: IAO:0000589 "external capsule of telencephalon (NCIT)" xsd:string -is_a: UBERON:0004545 ! external capsule of telencephalon - -[Term] -id: NCIT:C32427 ! -property_value: IAO:0000589 "decidua capsularis (NCIT)" xsd:string -is_a: UBERON:0004547 ! decidua capsularis - -[Term] -id: NCIT:C119334 ! -property_value: IAO:0000589 "left eye (NCIT)" xsd:string -is_a: UBERON:0004548 ! left eye - -[Term] -id: NCIT:C119333 ! -property_value: IAO:0000589 "right eye (NCIT)" xsd:string -is_a: UBERON:0004549 ! right eye - -[Term] -id: NCIT:C33009 ! -property_value: IAO:0000589 "gastroesophageal sphincter (NCIT)" xsd:string -is_a: UBERON:0004550 ! gastroesophageal sphincter - -[Term] -id: NCIT:C53043 ! -property_value: IAO:0000589 "digital vein (NCIT)" xsd:string -is_a: UBERON:0004562 ! digital vein - -[Term] -id: NCIT:C33858 ! -property_value: IAO:0000589 "venous system (NCIT)" xsd:string -is_a: UBERON:0004582 ! venous system - -[Term] -id: NCIT:C28381 ! -property_value: IAO:0000589 "sphincter muscle (NCIT)" xsd:string -is_a: UBERON:0004590 ! sphincter muscle - -[Term] -id: NCIT:C52770 ! -property_value: IAO:0000589 "rib 1 (NCIT)" xsd:string -is_a: UBERON:0004601 ! rib 1 - -[Term] -id: NCIT:C52766 ! -property_value: IAO:0000589 "rib 2 (NCIT)" xsd:string -is_a: UBERON:0004602 ! rib 2 - -[Term] -id: NCIT:C52765 ! -property_value: IAO:0000589 "rib 3 (NCIT)" xsd:string -is_a: UBERON:0004603 ! rib 3 - -[Term] -id: NCIT:C52764 ! -property_value: IAO:0000589 "rib 4 (NCIT)" xsd:string -is_a: UBERON:0004604 ! rib 4 - -[Term] -id: NCIT:C52763 ! -property_value: IAO:0000589 "rib 5 (NCIT)" xsd:string -is_a: UBERON:0004605 ! rib 5 - -[Term] -id: NCIT:C52762 ! -property_value: IAO:0000589 "rib 6 (NCIT)" xsd:string -is_a: UBERON:0004606 ! rib 6 - -[Term] -id: NCIT:C52761 ! -property_value: IAO:0000589 "rib 7 (NCIT)" xsd:string -is_a: UBERON:0004607 ! rib 7 - -[Term] -id: NCIT:C52759 ! -property_value: IAO:0000589 "rib 9 (NCIT)" xsd:string -is_a: UBERON:0004608 ! rib 9 - -[Term] -id: NCIT:C52769 ! -property_value: IAO:0000589 "rib 10 (NCIT)" xsd:string -is_a: UBERON:0004609 ! rib 10 - -[Term] -id: NCIT:C52768 ! -property_value: IAO:0000589 "rib 11 (NCIT)" xsd:string -is_a: UBERON:0004610 ! rib 11 - -[Term] -id: NCIT:C52767 ! -property_value: IAO:0000589 "rib 12 (NCIT)" xsd:string -is_a: UBERON:0004611 ! rib 12 - -[Term] -id: NCIT:C32241 ! -property_value: IAO:0000589 "mammalian cervical vertebra 3 (NCIT)" xsd:string -is_a: UBERON:0004612 ! mammalian cervical vertebra 3 - -[Term] -id: NCIT:C32242 ! -property_value: IAO:0000589 "mammalian cervical vertebra 4 (NCIT)" xsd:string -is_a: UBERON:0004613 ! mammalian cervical vertebra 4 - -[Term] -id: NCIT:C32243 ! -property_value: IAO:0000589 "mammalian cervical vertebra 5 (NCIT)" xsd:string -is_a: UBERON:0004614 ! mammalian cervical vertebra 5 - -[Term] -id: NCIT:C32244 ! -property_value: IAO:0000589 "mammalian cervical vertebra 6 (NCIT)" xsd:string -is_a: UBERON:0004615 ! mammalian cervical vertebra 6 - -[Term] -id: NCIT:C32245 ! -property_value: IAO:0000589 "mammalian cervical vertebra 7 (NCIT)" xsd:string -is_a: UBERON:0004616 ! mammalian cervical vertebra 7 - -[Term] -id: NCIT:C32899 ! -property_value: IAO:0000589 "lumbar vertebra 1 (NCIT)" xsd:string -is_a: UBERON:0004617 ! lumbar vertebra 1 - -[Term] -id: NCIT:C32900 ! -property_value: IAO:0000589 "lumbar vertebra 2 (NCIT)" xsd:string -is_a: UBERON:0004618 ! lumbar vertebra 2 - -[Term] -id: NCIT:C32901 ! -property_value: IAO:0000589 "lumbar vertebra 3 (NCIT)" xsd:string -is_a: UBERON:0004619 ! lumbar vertebra 3 - -[Term] -id: NCIT:C32902 ! -property_value: IAO:0000589 "lumbar vertebra 4 (NCIT)" xsd:string -is_a: UBERON:0004620 ! lumbar vertebra 4 - -[Term] -id: NCIT:C32903 ! -property_value: IAO:0000589 "lumbar vertebra 5 (NCIT)" xsd:string -is_a: UBERON:0004621 ! lumbar vertebra 5 - -[Term] -id: NCIT:C33498 ! -property_value: IAO:0000589 "sacral vertebra 1 (NCIT)" xsd:string -is_a: UBERON:0004622 ! sacral vertebra 1 - -[Term] -id: NCIT:C33499 ! -property_value: IAO:0000589 "sacral vertebra 2 (NCIT)" xsd:string -is_a: UBERON:0004623 ! sacral vertebra 2 - -[Term] -id: NCIT:C33500 ! -property_value: IAO:0000589 "sacral vertebra 3 (NCIT)" xsd:string -is_a: UBERON:0004624 ! sacral vertebra 3 - -[Term] -id: NCIT:C33501 ! -property_value: IAO:0000589 "sacral vertebra 4 (NCIT)" xsd:string -is_a: UBERON:0004625 ! sacral vertebra 4 - -[Term] -id: NCIT:C33720 ! -property_value: IAO:0000589 "thoracic vertebra 1 (NCIT)" xsd:string -is_a: UBERON:0004626 ! thoracic vertebra 1 - -[Term] -id: NCIT:C33724 ! -property_value: IAO:0000589 "thoracic vertebra 2 (NCIT)" xsd:string -is_a: UBERON:0004627 ! thoracic vertebra 2 - -[Term] -id: NCIT:C33725 ! -property_value: IAO:0000589 "thoracic vertebra 3 (NCIT)" xsd:string -is_a: UBERON:0004628 ! thoracic vertebra 3 - -[Term] -id: NCIT:C33726 ! -property_value: IAO:0000589 "thoracic vertebra 4 (NCIT)" xsd:string -is_a: UBERON:0004629 ! thoracic vertebra 4 - -[Term] -id: NCIT:C33727 ! -property_value: IAO:0000589 "thoracic vertebra 5 (NCIT)" xsd:string -is_a: UBERON:0004630 ! thoracic vertebra 5 - -[Term] -id: NCIT:C33728 ! -property_value: IAO:0000589 "thoracic vertebra 6 (NCIT)" xsd:string -is_a: UBERON:0004631 ! thoracic vertebra 6 - -[Term] -id: NCIT:C33729 ! -property_value: IAO:0000589 "thoracic vertebra 7 (NCIT)" xsd:string -is_a: UBERON:0004632 ! thoracic vertebra 7 - -[Term] -id: NCIT:C33731 ! -property_value: IAO:0000589 "thoracic vertebra 9 (NCIT)" xsd:string -is_a: UBERON:0004633 ! thoracic vertebra 9 - -[Term] -id: NCIT:C33721 ! -property_value: IAO:0000589 "thoracic vertebra 10 (NCIT)" xsd:string -is_a: UBERON:0004634 ! thoracic vertebra 10 - -[Term] -id: NCIT:C33722 ! -property_value: IAO:0000589 "thoracic vertebra 11 (NCIT)" xsd:string -is_a: UBERON:0004635 ! thoracic vertebra 11 - -[Term] -id: NCIT:C33723 ! -property_value: IAO:0000589 "thoracic vertebra 12 (NCIT)" xsd:string -is_a: UBERON:0004636 ! thoracic vertebra 12 - -[Term] -id: NCIT:C53395 ! -property_value: IAO:0000589 "blood vessel endothelium (NCIT)" xsd:string -is_a: UBERON:0004638 ! blood vessel endothelium - -[Term] -id: NCIT:C33598 ! -property_value: IAO:0000589 "spleen capsule (NCIT)" xsd:string -is_a: UBERON:0004641 ! spleen capsule - -[Term] -id: NCIT:C49249 ! -property_value: IAO:0000589 "lateral ventricle ependyma (NCIT)" xsd:string -is_a: UBERON:0004643 ! lateral ventricle ependyma - -[Term] -id: NCIT:C49232 ! -property_value: IAO:0000589 "fourth ventricle ependyma (NCIT)" xsd:string -is_a: UBERON:0004644 ! fourth ventricle ependyma - -[Term] -id: NCIT:C13318 ! -property_value: IAO:0000589 "urinary bladder urothelium (NCIT)" xsd:string -is_a: UBERON:0004645 ! urinary bladder urothelium - -[Term] -id: NCIT:C52940 ! -property_value: IAO:0000589 "infraorbital artery (NCIT)" xsd:string -is_a: UBERON:0004646 ! infraorbital artery - -[Term] -id: NCIT:C32732 ! -property_value: IAO:0000589 "liver lobule (NCIT)" xsd:string -is_a: UBERON:0004647 ! liver lobule - -[Term] -id: NCIT:C32540 ! -property_value: IAO:0000589 "esophagus muscularis mucosa (NCIT)" xsd:string -is_a: UBERON:0004648 ! esophagus muscularis mucosa - -[Term] -id: NCIT:C120671 ! -property_value: IAO:0000589 "humerus diaphysis (NCIT)" xsd:string -is_a: UBERON:0004652 ! humerus diaphysis - -[Term] -id: NCIT:C13078 ! -property_value: IAO:0000589 "ependyma (NCIT)" xsd:string -is_a: UBERON:0004670 ! ependyma - -[Term] -id: NCIT:C33195 ! -property_value: IAO:0000589 "posterior horn lateral ventricle (NCIT)" xsd:string -is_a: UBERON:0004672 ! posterior horn lateral ventricle - -[Term] -id: NCIT:C32938 ! -property_value: IAO:0000589 "spinal cord lateral horn (NCIT)" xsd:string -is_a: UBERON:0004676 ! spinal cord lateral horn - -[Term] -id: NCIT:C97335 ! -property_value: IAO:0000589 "raphe nuclei (NCIT)" xsd:string -is_a: UBERON:0004684 ! raphe nuclei - -[Term] -id: NCIT:C32671 ! -property_value: IAO:0000589 "gastro-splenic ligament (NCIT)" xsd:string -is_a: UBERON:0004686 ! gastro-splenic ligament - -[Term] -id: NCIT:C53060 ! -property_value: IAO:0000589 "pancreaticoduodenal vein (NCIT)" xsd:string -is_a: UBERON:0004690 ! pancreaticoduodenal vein - -[Term] -id: NCIT:C52554 ! -property_value: IAO:0000589 "bulbourethral gland secretion (NCIT)" xsd:string -is_a: UBERON:0004691 ! bulbourethral gland secretion - -[Term] -id: NCIT:C49600 ! -property_value: IAO:0000589 "Peyer's patch germinal center (NCIT)" xsd:string -is_a: UBERON:0004697 ! Peyer's patch germinal center - -[Term] -id: NCIT:C49318 ! -property_value: IAO:0000589 "vena cava endothelium (NCIT)" xsd:string -is_a: UBERON:0004698 ! vena cava endothelium - -[Term] -id: NCIT:C49329 ! -property_value: IAO:0000589 "arterial system endothelium (NCIT)" xsd:string -is_a: UBERON:0004700 ! arterial system endothelium - -[Term] -id: NCIT:C49320 ! -property_value: IAO:0000589 "venous system endothelium (NCIT)" xsd:string -is_a: UBERON:0004701 ! venous system endothelium - -[Term] -id: NCIT:C34114 ! -property_value: IAO:0000589 "bulbus cordis (NCIT)" xsd:string -is_a: UBERON:0004706 ! bulbus cordis - -[Term] -id: NCIT:C12738 ! -property_value: IAO:0000589 "jugular vein (NCIT)" xsd:string -is_a: UBERON:0004711 ! jugular vein - -[Term] -id: NCIT:C32382 ! -property_value: IAO:0000589 "corpus cavernosum penis (NCIT)" xsd:string -is_a: UBERON:0004713 ! corpus cavernosum penis - -[Term] -id: NCIT:C49269 ! -property_value: IAO:0000589 "corpus cavernosum penis (NCIT)" xsd:string -is_a: UBERON:0004713 ! corpus cavernosum penis - -[Term] -id: NCIT:C33536 ! -property_value: IAO:0000589 "septum pellucidum (NCIT)" xsd:string -is_a: UBERON:0004714 ! septum pellucidum - -[Term] -id: NCIT:C34131 ! -property_value: IAO:0000589 "conceptus (NCIT)" xsd:string -is_a: UBERON:0004716 ! conceptus - -[Term] -id: NCIT:C33866 ! -property_value: IAO:0000589 "cerebellar vermis (NCIT)" xsd:string -is_a: UBERON:0004720 ! cerebellar vermis - -[Term] -id: NCIT:C32063 ! -property_value: IAO:0000589 "crista ampullaris (NCIT)" xsd:string -is_a: UBERON:0004721 ! crista ampullaris - -[Term] -id: NCIT:C32431 ! -property_value: IAO:0000589 "deep cervical lymph node (NCIT)" xsd:string -is_a: UBERON:0004722 ! deep cervical lymph node - -[Term] -id: NCIT:C32826 ! -property_value: IAO:0000589 "interlobular artery (NCIT)" xsd:string -is_a: UBERON:0004723 ! interlobular artery - -[Term] -id: NCIT:C52724 ! -property_value: IAO:0000589 "medial palpebral ligament (NCIT)" xsd:string -is_a: UBERON:0004724 ! medial palpebral ligament - -[Term] -id: NCIT:C12697 ! -property_value: IAO:0000589 "cochlear nerve (NCIT)" xsd:string -is_a: UBERON:0004727 ! cochlear nerve - -[Term] -id: NCIT:C34057 ! -property_value: IAO:0000589 "gastrula (NCIT)" xsd:string -is_a: UBERON:0004734 ! gastrula - -[Term] -id: NCIT:C34058 ! -property_value: IAO:0000589 "gastrula (NCIT)" xsd:string -is_a: UBERON:0004734 ! gastrula - -[Term] -id: NCIT:C34150 ! -property_value: IAO:0000589 "blastodisc (NCIT)" xsd:string -is_a: UBERON:0004749 ! blastodisc - -[Term] -id: NCIT:C34241 ! -property_value: IAO:0000589 "foramen ovale of heart (NCIT)" xsd:string -is_a: UBERON:0004754 ! foramen ovale of heart - -[Term] -id: NCIT:C32068 ! -property_value: IAO:0000589 "gland of anal canal (NCIT)" xsd:string -is_a: UBERON:0004760 ! gland of anal canal - -[Term] -id: NCIT:C34121 ! -property_value: IAO:0000589 "cartilaginous neurocranium (NCIT)" xsd:string -is_a: UBERON:0004761 ! cartilaginous neurocranium - -[Term] -id: NCIT:C33736 ! -property_value: IAO:0000589 "eyelid tarsus (NCIT)" xsd:string -is_a: UBERON:0004772 ! eyelid tarsus - -[Term] -id: NCIT:C49299 ! -property_value: IAO:0000589 "gastrointestinal system lamina propria (NCIT)" xsd:string -is_a: UBERON:0004780 ! gastrointestinal system lamina propria - -[Term] -id: NCIT:C49228 ! -property_value: IAO:0000589 "gallbladder lamina propria (NCIT)" xsd:string -is_a: UBERON:0004781 ! gallbladder lamina propria - -[Term] -id: NCIT:C119295 ! -property_value: IAO:0000589 "heart ventricle wall (NCIT)" xsd:string -is_a: UBERON:0004784 ! heart ventricle wall - -[Term] -id: NCIT:C49310 ! -property_value: IAO:0000589 "urethra urothelium (NCIT)" xsd:string -is_a: UBERON:0004787 ! urethra urothelium - -[Term] -id: NCIT:C54556 ! -property_value: IAO:0000589 "kidney pelvis urothelium (NCIT)" xsd:string -is_a: UBERON:0004788 ! kidney pelvis urothelium - -[Term] -id: NCIT:C33773 ! -property_value: IAO:0000589 "thymus trabecula (NCIT)" xsd:string -is_a: UBERON:0004791 ! thymus trabecula - -[Term] -id: NCIT:C33255 ! -property_value: IAO:0000589 "secretion of endocrine pancreas (NCIT)" xsd:string -is_a: UBERON:0004792 ! secretion of endocrine pancreas - -[Term] -id: NCIT:C33256 ! -property_value: IAO:0000589 "secretion of exocrine pancreas (NCIT)" xsd:string -is_a: UBERON:0004793 ! secretion of exocrine pancreas - -[Term] -id: NCIT:C52555 ! -property_value: IAO:0000589 "esophagus secretion (NCIT)" xsd:string -is_a: UBERON:0004794 ! esophagus secretion - -[Term] -id: NCIT:C13270 ! -property_value: IAO:0000589 "pancreas secretion (NCIT)" xsd:string -is_a: UBERON:0004795 ! pancreas secretion - -[Term] -id: NCIT:C52553 ! -property_value: IAO:0000589 "prostate gland secretion (NCIT)" xsd:string -is_a: UBERON:0004796 ! prostate gland secretion - -[Term] -id: NCIT:C49303 ! -property_value: IAO:0000589 "trachea basal lamina (NCIT)" xsd:string -is_a: UBERON:0004799 ! trachea basal lamina - -[Term] -id: NCIT:C49207 ! -property_value: IAO:0000589 "bronchus basal lamina (NCIT)" xsd:string -is_a: UBERON:0004800 ! bronchus basal lamina - -[Term] -id: NCIT:C49218 ! -property_value: IAO:0000589 "cervix epithelium (NCIT)" xsd:string -is_a: UBERON:0004801 ! cervix epithelium - -[Term] -id: NCIT:C49295 ! -property_value: IAO:0000589 "seminal vesicle epithelium (NCIT)" xsd:string -is_a: UBERON:0004805 ! seminal vesicle epithelium - -[Term] -id: NCIT:C49315 ! -property_value: IAO:0000589 "vas deferens epithelium (NCIT)" xsd:string -is_a: UBERON:0004806 ! vas deferens epithelium - -[Term] -id: NCIT:C49276 ! -property_value: IAO:0000589 "nephron tubule epithelium (NCIT)" xsd:string -is_a: UBERON:0004810 ! nephron tubule epithelium - -[Term] -id: NCIT:C49270 ! -property_value: IAO:0000589 "male prepuce epithelium (NCIT)" xsd:string -is_a: UBERON:0004812 ! male prepuce epithelium - -[Term] -id: NCIT:C49296 ! -property_value: IAO:0000589 "seminiferous tubule epithelium (NCIT)" xsd:string -is_a: UBERON:0004813 ! seminiferous tubule epithelium - -[Term] -id: NCIT:C49247 ! -property_value: IAO:0000589 "larynx epithelium (NCIT)" xsd:string -is_a: UBERON:0004816 ! larynx epithelium - -[Term] -id: NCIT:C43616 ! -property_value: IAO:0000589 "bile duct epithelium (NCIT)" xsd:string -is_a: UBERON:0004820 ! bile duct epithelium - -[Term] -id: NCIT:C12867 ! -property_value: IAO:0000589 "pulmonary alveolus epithelium (NCIT)" xsd:string -is_a: UBERON:0004821 ! pulmonary alveolus epithelium - -[Term] -id: NCIT:C43618 ! -property_value: IAO:0000589 "extrahepatic bile duct epithelium (NCIT)" xsd:string -is_a: UBERON:0004822 ! extrahepatic bile duct epithelium - -[Term] -id: NCIT:C43617 ! -property_value: IAO:0000589 "intrahepatic bile duct epithelium (NCIT)" xsd:string -is_a: UBERON:0004823 ! intrahepatic bile duct epithelium - -[Term] -id: NCIT:C49190 ! -property_value: IAO:0000589 "aorta endothelium (NCIT)" xsd:string -is_a: UBERON:0004851 ! aorta endothelium - -[Term] -id: NCIT:C13053 ! -property_value: IAO:0000589 "cardiovascular system endothelium (NCIT)" xsd:string -is_a: UBERON:0004852 ! cardiovascular system endothelium - -[Term] -id: NCIT:C49278 ! -property_value: IAO:0000589 "right lung alveolus (NCIT)" xsd:string -is_a: UBERON:0004861 ! right lung alveolus - -[Term] -id: NCIT:C49251 ! -property_value: IAO:0000589 "left lung alveolus (NCIT)" xsd:string -is_a: UBERON:0004862 ! left lung alveolus - -[Term] -id: NCIT:C52827 ! -property_value: IAO:0000589 "thoracic sympathetic nerve trunk (NCIT)" xsd:string -is_a: UBERON:0004863 ! thoracic sympathetic nerve trunk - -[Term] -id: NCIT:C33659 ! -property_value: IAO:0000589 "superficial cervical lymph node (NCIT)" xsd:string -is_a: UBERON:0004870 ! superficial cervical lymph node - -[Term] -id: NCIT:C34303 ! -property_value: IAO:0000589 "splanchnopleure (NCIT)" xsd:string -is_a: UBERON:0004873 ! splanchnopleure - -[Term] -id: NCIT:C34301 ! -property_value: IAO:0000589 "somatopleure (NCIT)" xsd:string -is_a: UBERON:0004874 ! somatopleure - -[Term] -id: NCIT:C34219 ! -property_value: IAO:0000589 "nephrogenic cord (NCIT)" xsd:string -is_a: UBERON:0004875 ! nephrogenic cord - -[Term] -id: NCIT:C73467 ! -property_value: IAO:0000589 "hilum (NCIT)" xsd:string -is_a: UBERON:0004885 ! hilum - -[Term] -id: NCIT:C49282 ! -property_value: IAO:0000589 "lung hilus (NCIT)" xsd:string -is_a: UBERON:0004886 ! lung hilus - -[Term] -id: NCIT:C49473 ! -property_value: IAO:0000589 "interalveolar septum (NCIT)" xsd:string -is_a: UBERON:0004893 ! interalveolar septum - -[Term] -id: NCIT:C13085 ! -property_value: IAO:0000589 "alveolar wall (NCIT)" xsd:string -is_a: UBERON:0004894 ! alveolar wall - -[Term] -id: NCIT:C33010 ! -property_value: IAO:0000589 "lower digestive tract (NCIT)" xsd:string -is_a: UBERON:0004907 ! lower digestive tract - -[Term] -id: NCIT:C33837 ! -property_value: IAO:0000589 "upper digestive tract (NCIT)" xsd:string -is_a: UBERON:0004908 ! upper digestive tract - -[Term] -id: NCIT:C32676 ! -property_value: IAO:0000589 "epithelium of gonad (NCIT)" xsd:string -is_a: UBERON:0004909 ! epithelium of gonad - -[Term] -id: NCIT:C13011 ! -property_value: IAO:0000589 "hepatopancreatic ampulla (NCIT)" xsd:string -is_a: UBERON:0004913 ! hepatopancreatic ampulla - -[Term] -id: NCIT:C119578 ! -property_value: IAO:0000589 "duodenal papilla (NCIT)" xsd:string -is_a: UBERON:0004914 ! duodenal papilla - -[Term] -id: NCIT:C13065 ! -property_value: IAO:0000589 "sphincter of hepatopancreatic ampulla (NCIT)" xsd:string -is_a: UBERON:0004915 ! sphincter of hepatopancreatic ampulla - -[Term] -id: NCIT:C52561 ! -property_value: IAO:0000589 "external urethral sphincter (NCIT)" xsd:string -is_a: UBERON:0004919 ! external urethral sphincter - -[Term] -id: NCIT:C12224 ! -property_value: IAO:0000589 "mucosa of upper lip (NCIT)" xsd:string -is_a: UBERON:0005031 ! mucosa of upper lip - -[Term] -id: NCIT:C12225 ! -property_value: IAO:0000589 "mucosa of lower lip (NCIT)" xsd:string -is_a: UBERON:0005032 ! mucosa of lower lip - -[Term] -id: NCIT:C77615 ! -property_value: IAO:0000589 "gizzard (NCIT)" xsd:string -is_a: UBERON:0005052 ! gizzard - -[Term] -id: NCIT:C34224 ! -property_value: IAO:0000589 "neural groove (NCIT)" xsd:string -is_a: UBERON:0005061 ! neural groove - -[Term] -id: NCIT:C34223 ! -property_value: IAO:0000589 "neural fold (NCIT)" xsd:string -is_a: UBERON:0005062 ! neural fold - -[Term] -id: NCIT:C32154 ! -property_value: IAO:0000589 "ascending limb of loop of Henle (NCIT)" xsd:string -is_a: UBERON:0005164 ! ascending limb of loop of Henle - -[Term] -id: NCIT:C32730 ! -property_value: IAO:0000589 "hepatic duct (NCIT)" xsd:string -is_a: UBERON:0005171 ! hepatic duct - -[Term] -id: NCIT:C52855 ! -property_value: IAO:0000589 "ethmoidal artery (NCIT)" xsd:string -is_a: UBERON:0005193 ! ethmoidal artery - -[Term] -id: NCIT:C53142 ! -property_value: IAO:0000589 "thoracic vein (NCIT)" xsd:string -is_a: UBERON:0005194 ! thoracic vein - -[Term] -id: NCIT:C49760 ! -property_value: IAO:0000589 "spleen germinal center (NCIT)" xsd:string -is_a: UBERON:0005196 ! spleen germinal center - -[Term] -id: NCIT:C33459 ! -property_value: IAO:0000589 "kidney interstitium (NCIT)" xsd:string -is_a: UBERON:0005215 ! kidney interstitium - -[Term] -id: NCIT:C33873 ! -property_value: IAO:0000589 "osseus labyrinth vestibule (NCIT)" xsd:string -is_a: UBERON:0005236 ! osseus labyrinth vestibule - -[Term] -id: NCIT:C34184 ! -property_value: IAO:0000589 "gonadal ridge (NCIT)" xsd:string -is_a: UBERON:0005294 ! gonadal ridge - -[Term] -id: NCIT:C34321 ! -property_value: IAO:0000589 "gonadal ridge (NCIT)" xsd:string -is_a: UBERON:0005294 ! gonadal ridge - -[Term] -id: NCIT:C34183 ! -property_value: IAO:0000589 "sex cord (NCIT)" xsd:string -is_a: UBERON:0005295 ! sex cord - -[Term] -id: NCIT:C34134 ! -property_value: IAO:0000589 "ovary sex cord (NCIT)" xsd:string -is_a: UBERON:0005296 ! ovary sex cord - -[Term] -id: NCIT:C32590 ! -property_value: IAO:0000589 "prepuce of clitoris (NCIT)" xsd:string -is_a: UBERON:0005299 ! prepuce of clitoris - -[Term] -id: NCIT:C79432 ! -property_value: IAO:0000589 "male preputial gland (NCIT)" xsd:string -is_a: UBERON:0005301 ! male preputial gland - -[Term] -id: NCIT:C77617 ! -property_value: IAO:0000589 "female preputial gland (NCIT)" xsd:string -is_a: UBERON:0005302 ! female preputial gland - -[Term] -id: NCIT:C52831 ! -property_value: IAO:0000589 "hypogastric nerve (NCIT)" xsd:string -is_a: UBERON:0005303 ! hypogastric nerve - -[Term] -id: NCIT:C52747 ! -property_value: IAO:0000589 "submucous nerve plexus (NCIT)" xsd:string -is_a: UBERON:0005304 ! submucous nerve plexus - -[Term] -id: NCIT:C33782 ! -property_value: IAO:0000589 "thyroid follicle (NCIT)" xsd:string -is_a: UBERON:0005305 ! thyroid follicle - -[Term] -id: NCIT:C28216 ! -property_value: IAO:0000589 "chorioallantoic membrane (NCIT)" xsd:string -is_a: UBERON:0005335 ! chorioallantoic membrane - -[Term] -id: NCIT:C12329 ! -property_value: IAO:0000589 "spermatic cord (NCIT)" xsd:string -is_a: UBERON:0005352 ! spermatic cord - -[Term] -id: NCIT:C34281 ! -property_value: IAO:0000589 "Rathke's pouch (NCIT)" xsd:string -is_a: UBERON:0005356 ! Rathke's pouch - -[Term] -id: NCIT:C54098 ! -property_value: IAO:0000589 "Rathke's pouch (NCIT)" xsd:string -is_a: UBERON:0005356 ! Rathke's pouch - -[Term] -id: NCIT:C33204 ! -property_value: IAO:0000589 "olfactory lobe (NCIT)" xsd:string -is_a: UBERON:0005366 ! olfactory lobe - -[Term] -id: NCIT:C33355 ! -property_value: IAO:0000589 "spinal cord dorsal column (NCIT)" xsd:string -is_a: UBERON:0005373 ! spinal cord dorsal column - -[Term] -id: NCIT:C49261 ! -property_value: IAO:0000589 "nasal cavity epithelium (NCIT)" xsd:string -is_a: UBERON:0005384 ! nasal cavity epithelium - -[Term] -id: NCIT:C49262 ! -property_value: IAO:0000589 "nasal cavity respiratory epithelium (NCIT)" xsd:string -is_a: UBERON:0005385 ! nasal cavity respiratory epithelium - -[Term] -id: NCIT:C33205 ! -property_value: IAO:0000589 "olfactory segment of nasal mucosa (NCIT)" xsd:string -is_a: UBERON:0005386 ! olfactory segment of nasal mucosa - -[Term] -id: NCIT:C33137 ! -property_value: IAO:0000589 "cortical layer I (NCIT)" xsd:string -is_a: UBERON:0005390 ! cortical layer I - -[Term] -id: NCIT:C32557 ! -property_value: IAO:0000589 "cortical layer II (NCIT)" xsd:string -is_a: UBERON:0005391 ! cortical layer II - -[Term] -id: NCIT:C32571 ! -property_value: IAO:0000589 "cortical layer III (NCIT)" xsd:string -is_a: UBERON:0005392 ! cortical layer III - -[Term] -id: NCIT:C32844 ! -property_value: IAO:0000589 "cortical layer IV (NCIT)" xsd:string -is_a: UBERON:0005393 ! cortical layer IV - -[Term] -id: NCIT:C32653 ! -property_value: IAO:0000589 "cortical layer V (NCIT)" xsd:string -is_a: UBERON:0005394 ! cortical layer V - -[Term] -id: NCIT:C12687 ! -property_value: IAO:0000589 "carotid artery segment (NCIT)" xsd:string -is_a: UBERON:0005396 ! carotid artery segment - -[Term] -id: NCIT:C49331 ! -property_value: IAO:0000589 "brain arachnoid mater (NCIT)" xsd:string -is_a: UBERON:0005397 ! brain arachnoid mater - -[Term] -id: NCIT:C12378 ! -property_value: IAO:0000589 "alimentary part of gastrointestinal system (NCIT)" xsd:string -is_a: UBERON:0005409 ! alimentary part of gastrointestinal system - -[Term] -id: NCIT:C12833 ! -property_value: IAO:0000589 "anterior spinal artery (NCIT)" xsd:string -is_a: UBERON:0005431 ! anterior spinal artery - -[Term] -id: NCIT:C34126 ! -property_value: IAO:0000589 "upper part of cisterna chyli (NCIT)" xsd:string -is_a: UBERON:0005435 ! upper part of cisterna chyli - -[Term] -id: NCIT:C12832 ! -property_value: IAO:0000589 "conus medullaris (NCIT)" xsd:string -is_a: UBERON:0005437 ! conus medullaris - -[Term] -id: NCIT:C32378 ! -property_value: IAO:0000589 "coronary sinus (NCIT)" xsd:string -is_a: UBERON:0005438 ! coronary sinus - -[Term] -id: NCIT:C52854 ! -property_value: IAO:0000589 "ductus arteriosus (NCIT)" xsd:string -is_a: UBERON:0005440 ! ductus arteriosus - -[Term] -id: NCIT:C32561 ! -property_value: IAO:0000589 "external intercostal muscle (NCIT)" xsd:string -is_a: UBERON:0005441 ! external intercostal muscle - -[Term] -id: NCIT:C32567 ! -property_value: IAO:0000589 "abdominal external oblique muscle (NCIT)" xsd:string -is_a: UBERON:0005442 ! abdominal external oblique muscle - -[Term] -id: NCIT:C32697 ! -property_value: IAO:0000589 "greater omentum (NCIT)" xsd:string -is_a: UBERON:0005448 ! greater omentum - -[Term] -id: NCIT:C32857 ! -property_value: IAO:0000589 "abdominal internal oblique muscle (NCIT)" xsd:string -is_a: UBERON:0005454 ! abdominal internal oblique muscle - -[Term] -id: NCIT:C12496 ! -property_value: IAO:0000589 "jugular foramen (NCIT)" xsd:string -is_a: UBERON:0005456 ! jugular foramen - -[Term] -id: NCIT:C34004 ! -property_value: IAO:0000589 "lower back (NCIT)" xsd:string -is_a: UBERON:0005462 ! lower back - -[Term] -id: NCIT:C33033 ! -property_value: IAO:0000589 "subcapsular sinus of lymph node (NCIT)" xsd:string -is_a: UBERON:0005463 ! subcapsular sinus of lymph node - -[Term] -id: NCIT:C33642 ! -property_value: IAO:0000589 "subcapsular sinus of lymph node (NCIT)" xsd:string -is_a: UBERON:0005463 ! subcapsular sinus of lymph node - -[Term] -id: NCIT:C75909 ! -property_value: IAO:0000589 "obturator nerve (NCIT)" xsd:string -is_a: UBERON:0005465 ! obturator nerve - -[Term] -id: NCIT:C33329 ! -property_value: IAO:0000589 "platysma (NCIT)" xsd:string -is_a: UBERON:0005467 ! platysma - -[Term] -id: NCIT:C32544 ! -property_value: IAO:0000589 "valve of inferior vena cava (NCIT)" xsd:string -is_a: UBERON:0005485 ! valve of inferior vena cava - -[Term] -id: NCIT:C102627 ! -property_value: IAO:0000589 "venous dural sinus (NCIT)" xsd:string -is_a: UBERON:0005486 ! venous dural sinus - -[Term] -id: NCIT:C34329 ! -property_value: IAO:0000589 "vitelline vein (NCIT)" xsd:string -is_a: UBERON:0005487 ! vitelline vein - -[Term] -id: NCIT:C32753 ! -property_value: IAO:0000589 "hyoid muscle (NCIT)" xsd:string -is_a: UBERON:0005493 ! hyoid muscle - -[Term] -id: NCIT:C34142 ! -property_value: IAO:0000589 "dorsal mesogastrium (NCIT)" xsd:string -is_a: UBERON:0005602 ! dorsal mesogastrium - -[Term] -id: NCIT:C12733 ! -property_value: IAO:0000589 "iliac artery (NCIT)" xsd:string -is_a: UBERON:0005609 ! iliac artery - -[Term] -id: NCIT:C12734 ! -property_value: IAO:0000589 "iliac vein (NCIT)" xsd:string -is_a: UBERON:0005610 ! iliac vein - -[Term] -id: NCIT:C49564 ! -property_value: IAO:0000589 "inner canthus (NCIT)" xsd:string -is_a: UBERON:0005611 ! inner canthus - -[Term] -id: NCIT:C32821 ! -property_value: IAO:0000589 "intercostal artery (NCIT)" xsd:string -is_a: UBERON:0005612 ! intercostal artery - -[Term] -id: NCIT:C33641 ! -property_value: IAO:0000589 "lens anterior epithelium (NCIT)" xsd:string -is_a: UBERON:0005614 ! lens anterior epithelium - -[Term] -id: NCIT:C52975 ! -property_value: IAO:0000589 "mesenteric artery (NCIT)" xsd:string -is_a: UBERON:0005616 ! mesenteric artery - -[Term] -id: NCIT:C53055 ! -property_value: IAO:0000589 "mesenteric vein (NCIT)" xsd:string -is_a: UBERON:0005617 ! mesenteric vein - -[Term] -id: NCIT:C34264 ! -property_value: IAO:0000589 "primary palate (NCIT)" xsd:string -is_a: UBERON:0005620 ! primary palate - -[Term] -id: NCIT:C33708 ! -property_value: IAO:0000589 "suprarenal artery (NCIT)" xsd:string -is_a: UBERON:0005624 ! suprarenal artery - -[Term] -id: NCIT:C34327 ! -property_value: IAO:0000589 "ventral mesogastrium (NCIT)" xsd:string -is_a: UBERON:0005626 ! ventral mesogastrium - -[Term] -id: NCIT:C94501 ! -property_value: IAO:0000589 "olfactory system (NCIT)" xsd:string -is_a: UBERON:0005725 ! olfactory system - -[Term] -id: NCIT:C33818 ! -property_value: IAO:0000589 "tunica adventitia of blood vessel (NCIT)" xsd:string -is_a: UBERON:0005734 ! tunica adventitia of blood vessel - -[Term] -id: NCIT:C33271 ! -property_value: IAO:0000589 "glomerular parietal epithelium (NCIT)" xsd:string -is_a: UBERON:0005750 ! glomerular parietal epithelium - -[Term] -id: NCIT:C33879 ! -property_value: IAO:0000589 "glomerular visceral epithelium (NCIT)" xsd:string -is_a: UBERON:0005751 ! glomerular visceral epithelium - -[Term] -id: NCIT:C34323 ! -property_value: IAO:0000589 "urorectal septum (NCIT)" xsd:string -is_a: UBERON:0005760 ! urorectal septum - -[Term] -id: NCIT:C13191 ! -property_value: IAO:0000589 "basement membrane of epithelium (NCIT)" xsd:string -is_a: UBERON:0005769 ! basement membrane of epithelium - -[Term] -id: NCIT:C32683 ! -property_value: IAO:0000589 "glomerular basement membrane (NCIT)" xsd:string -is_a: UBERON:0005777 ! glomerular basement membrane - -[Term] -id: NCIT:C32916 ! -property_value: IAO:0000589 "lamina densa of glomerular basement membrane (NCIT)" xsd:string -is_a: UBERON:0005787 ! lamina densa of glomerular basement membrane - -[Term] -id: NCIT:C32920 ! -property_value: IAO:0000589 "lamina rara interna (NCIT)" xsd:string -is_a: UBERON:0005788 ! lamina rara interna - -[Term] -id: NCIT:C32919 ! -property_value: IAO:0000589 "lamina rara externa (NCIT)" xsd:string -is_a: UBERON:0005789 ! lamina rara externa - -[Term] -id: NCIT:C34027 ! -property_value: IAO:0000589 "section of aorta (NCIT)" xsd:string -is_a: UBERON:0005800 ! section of aorta - -[Term] -id: NCIT:C33344 ! -property_value: IAO:0000589 "portal system (NCIT)" xsd:string -is_a: UBERON:0005806 ! portal system - -[Term] -id: NCIT:C33799 ! -property_value: IAO:0000589 "gracile fasciculus (NCIT)" xsd:string -is_a: UBERON:0005821 ! gracile fasciculus - -[Term] -id: NCIT:C33798 ! -property_value: IAO:0000589 "cuneate fasciculus of spinal cord (NCIT)" xsd:string -is_a: UBERON:0005835 ! cuneate fasciculus of spinal cord - -[Term] -id: NCIT:C12896 ! -property_value: IAO:0000589 "sacral spinal cord (NCIT)" xsd:string -is_a: UBERON:0005843 ! sacral spinal cord - -[Term] -id: NCIT:C34204 ! -property_value: IAO:0000589 "mandibular prominence (NCIT)" xsd:string -is_a: UBERON:0005867 ! mandibular prominence - -[Term] -id: NCIT:C34206 ! -property_value: IAO:0000589 "maxillary prominence (NCIT)" xsd:string -is_a: UBERON:0005868 ! maxillary prominence - -[Term] -id: NCIT:C34250 ! -property_value: IAO:0000589 "pharyngeal cleft (NCIT)" xsd:string -is_a: UBERON:0005879 ! pharyngeal cleft - -[Term] -id: NCIT:C13068 ! -property_value: IAO:0000589 "pes bone (NCIT)" xsd:string -is_a: UBERON:0005899 ! pes bone - -[Term] -id: NCIT:C32794 ! -property_value: IAO:0000589 "inferior nasal concha (NCIT)" xsd:string -is_a: UBERON:0005922 ! inferior nasal concha - -[Term] -id: NCIT:C33178 ! -property_value: IAO:0000589 "external naris (NCIT)" xsd:string -is_a: UBERON:0005928 ! external naris - -[Term] -id: NCIT:C32706 ! -property_value: IAO:0000589 "bulb of hair follicle (NCIT)" xsd:string -is_a: UBERON:0005932 ! bulb of hair follicle - -[Term] -id: NCIT:C62490 ! -property_value: IAO:0000589 "hair outer root sheath (NCIT)" xsd:string -is_a: UBERON:0005942 ! hair outer root sheath - -[Term] -id: NCIT:C32172 ! -property_value: IAO:0000589 "axial skeleton plus cranial skeleton (NCIT)" xsd:string -is_a: UBERON:0005944 ! axial skeleton plus cranial skeleton - -[Term] -id: NCIT:C61368 ! -property_value: IAO:0000589 "outflow part of right ventricle (NCIT)" xsd:string -is_a: UBERON:0005953 ! outflow part of right ventricle - -[Term] -id: NCIT:C32708 ! -property_value: IAO:0000589 "infundibulum of hair follicle (NCIT)" xsd:string -is_a: UBERON:0005968 ! infundibulum of hair follicle - -[Term] -id: NCIT:C12803 ! -property_value: IAO:0000589 "eye trabecular meshwork (NCIT)" xsd:string -is_a: UBERON:0005969 ! eye trabecular meshwork - -[Term] -id: NCIT:C32324 ! -property_value: IAO:0000589 "posterior cerebellomedullary cistern (NCIT)" xsd:string -is_a: UBERON:0005974 ! posterior cerebellomedullary cistern - -[Term] -id: NCIT:C32307 ! -property_value: IAO:0000589 "chorda tendineae (NCIT)" xsd:string -is_a: UBERON:0005994 ! chorda tendineae - -[Term] -id: NCIT:C32709 ! -property_value: IAO:0000589 "hair follicle isthmus (NCIT)" xsd:string -is_a: UBERON:0006005 ! hair follicle isthmus - -[Term] -id: NCIT:C33849 ! -property_value: IAO:0000589 "cusp of cardiac valve (NCIT)" xsd:string -is_a: UBERON:0006009 ! cusp of cardiac valve - -[Term] -id: NCIT:C12890 ! -property_value: IAO:0000589 "falx cerebri (NCIT)" xsd:string -is_a: UBERON:0006059 ! falx cerebri - -[Term] -id: NCIT:C116112 ! -property_value: IAO:0000589 "process of vertebra (NCIT)" xsd:string -is_a: UBERON:0006061 ! process of vertebra - -[Term] -id: NCIT:C69313 ! -property_value: IAO:0000589 "cervical region of vertebral column (NCIT)" xsd:string -is_a: UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: NCIT:C69315 ! -property_value: IAO:0000589 "thoracic region of vertebral column (NCIT)" xsd:string -is_a: UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: NCIT:C69314 ! -property_value: IAO:0000589 "lumbar region of vertebral column (NCIT)" xsd:string -is_a: UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: NCIT:C33508 ! -property_value: IAO:0000589 "sacral region of vertebral column (NCIT)" xsd:string -is_a: UBERON:0006075 ! sacral region of vertebral column - -[Term] -id: NCIT:C32648 ! -property_value: IAO:0000589 "fundus of gallbladder (NCIT)" xsd:string -is_a: UBERON:0006081 ! fundus of gallbladder - -[Term] -id: NCIT:C48939 ! -property_value: IAO:0000589 "fundus of urinary bladder (NCIT)" xsd:string -is_a: UBERON:0006082 ! fundus of urinary bladder - -[Term] -id: NCIT:C112399 ! -property_value: IAO:0000589 "precuneus cortex (NCIT)" xsd:string -is_a: UBERON:0006093 ! precuneus cortex - -[Term] -id: NCIT:C12627 ! -property_value: IAO:0000589 "myelinated nerve fiber (NCIT)" xsd:string -is_a: UBERON:0006135 ! myelinated nerve fiber - -[Term] -id: NCIT:C33835 ! -property_value: IAO:0000589 "unmyelinated nerve fiber (NCIT)" xsd:string -is_a: UBERON:0006136 ! unmyelinated nerve fiber - -[Term] -id: NCIT:C77673 ! -property_value: IAO:0000589 "auricular vein (NCIT)" xsd:string -is_a: UBERON:0006197 ! auricular vein - -[Term] -id: NCIT:C33349 ! -property_value: IAO:0000589 "posterior auricular vein (NCIT)" xsd:string -is_a: UBERON:0006199 ! posterior auricular vein - -[Term] -id: NCIT:C32362 ! -property_value: IAO:0000589 "conchal part of pinna (NCIT)" xsd:string -is_a: UBERON:0006203 ! conchal part of pinna - -[Term] -id: NCIT:C34110 ! -property_value: IAO:0000589 "auditory hillocks (NCIT)" xsd:string -is_a: UBERON:0006208 ! auditory hillocks - -[Term] -id: NCIT:C34128 ! -property_value: IAO:0000589 "cloacal membrane (NCIT)" xsd:string -is_a: UBERON:0006217 ! cloacal membrane - -[Term] -id: NCIT:C34198 ! -property_value: IAO:0000589 "laryngotracheal groove (NCIT)" xsd:string -is_a: UBERON:0006257 ! laryngotracheal groove - -[Term] -id: NCIT:C34201 ! -property_value: IAO:0000589 "lens pit (NCIT)" xsd:string -is_a: UBERON:0006259 ! lens pit - -[Term] -id: NCIT:C34218 ! -property_value: IAO:0000589 "nasolacrimal groove (NCIT)" xsd:string -is_a: UBERON:0006266 ! nasolacrimal groove - -[Term] -id: NCIT:C34231 ! -property_value: IAO:0000589 "notochordal plate (NCIT)" xsd:string -is_a: UBERON:0006267 ! notochordal plate - -[Term] -id: NCIT:C34232 ! -property_value: IAO:0000589 "notochordal process (NCIT)" xsd:string -is_a: UBERON:0006268 ! notochordal process - -[Term] -id: NCIT:C34238 ! -property_value: IAO:0000589 "otic pit (NCIT)" xsd:string -is_a: UBERON:0006273 ! otic pit - -[Term] -id: NCIT:C34246 ! -property_value: IAO:0000589 "pericardio-peritoneal canal (NCIT)" xsd:string -is_a: UBERON:0006275 ! pericardio-peritoneal canal - -[Term] -id: NCIT:C34255 ! -property_value: IAO:0000589 "pleuropericardial folds (NCIT)" xsd:string -is_a: UBERON:0006278 ! pleuropericardial folds - -[Term] -id: NCIT:C34160 ! -property_value: IAO:0000589 "future cardiac ventricle (NCIT)" xsd:string -is_a: UBERON:0006283 ! future cardiac ventricle - -[Term] -id: NCIT:C34307 ! -property_value: IAO:0000589 "subcardinal vein (NCIT)" xsd:string -is_a: UBERON:0006296 ! subcardinal vein - -[Term] -id: NCIT:C34308 ! -property_value: IAO:0000589 "supracardinal vein (NCIT)" xsd:string -is_a: UBERON:0006300 ! supracardinal vein - -[Term] -id: NCIT:C32301 ! -property_value: IAO:0000589 "chamber of eyeball (NCIT)" xsd:string -is_a: UBERON:0006311 ! chamber of eyeball - -[Term] -id: NCIT:C52800 ! -property_value: IAO:0000589 "orbitalis muscle (NCIT)" xsd:string -is_a: UBERON:0006318 ! orbitalis muscle - -[Term] -id: NCIT:C32783 ! -property_value: IAO:0000589 "inferior oblique extraocular muscle (NCIT)" xsd:string -is_a: UBERON:0006320 ! inferior oblique extraocular muscle - -[Term] -id: NCIT:C33688 ! -property_value: IAO:0000589 "superior oblique extraocular muscle (NCIT)" xsd:string -is_a: UBERON:0006321 ! superior oblique extraocular muscle - -[Term] -id: NCIT:C32790 ! -property_value: IAO:0000589 "inferior rectus extraocular muscle (NCIT)" xsd:string -is_a: UBERON:0006322 ! inferior rectus extraocular muscle - -[Term] -id: NCIT:C33694 ! -property_value: IAO:0000589 "superior rectus extraocular muscle (NCIT)" xsd:string -is_a: UBERON:0006323 ! superior rectus extraocular muscle - -[Term] -id: NCIT:C33672 ! -property_value: IAO:0000589 "superior pharyngeal constrictor (NCIT)" xsd:string -is_a: UBERON:0006329 ! superior pharyngeal constrictor - -[Term] -id: NCIT:C32987 ! -property_value: IAO:0000589 "anterior lingual gland (NCIT)" xsd:string -is_a: UBERON:0006330 ! anterior lingual gland - -[Term] -id: NCIT:C34304 ! -property_value: IAO:0000589 "stapedial artery (NCIT)" xsd:string -is_a: UBERON:0006345 ! stapedial artery - -[Term] -id: NCIT:C52851 ! -property_value: IAO:0000589 "communicating artery (NCIT)" xsd:string -is_a: UBERON:0006347 ! communicating artery - -[Term] -id: NCIT:C52860 ! -property_value: IAO:0000589 "epigastric artery (NCIT)" xsd:string -is_a: UBERON:0006349 ! epigastric artery - -[Term] -id: NCIT:C53045 ! -property_value: IAO:0000589 "epigastric vein (NCIT)" xsd:string -is_a: UBERON:0006356 ! epigastric vein - -[Term] -id: NCIT:C53172 ! -property_value: IAO:0000589 "interosseous muscle of pes (NCIT)" xsd:string -is_a: UBERON:0006497 ! interosseous muscle of pes - -[Term] -id: NCIT:C52701 ! -property_value: IAO:0000589 "dorsal pes interosseous muscle (NCIT)" xsd:string -is_a: UBERON:0006499 ! dorsal pes interosseous muscle - -[Term] -id: NCIT:C52702 ! -property_value: IAO:0000589 "plantar interosseous muscle of pes (NCIT)" xsd:string -is_a: UBERON:0006502 ! plantar interosseous muscle of pes - -[Term] -id: NCIT:C52704 ! -property_value: IAO:0000589 "palmar interosseous muscle of manus (NCIT)" xsd:string -is_a: UBERON:0006505 ! palmar interosseous muscle of manus - -[Term] -id: NCIT:C12927 ! -property_value: IAO:0000589 "kidney calyx (NCIT)" xsd:string -is_a: UBERON:0006517 ! kidney calyx - -[Term] -id: NCIT:C48944 ! -property_value: IAO:0000589 "right lung lobe (NCIT)" xsd:string -is_a: UBERON:0006518 ! right lung lobe - -[Term] -id: NCIT:C33199 ! -property_value: IAO:0000589 "oculomotor muscle (NCIT)" xsd:string -is_a: UBERON:0006531 ! oculomotor muscle - -[Term] -id: NCIT:C49479 ! -property_value: IAO:0000589 "renal convoluted tubule (NCIT)" xsd:string -is_a: UBERON:0006534 ! renal convoluted tubule - -[Term] -id: NCIT:C13722 ! -property_value: IAO:0000589 "respiratory system fluid/secretion (NCIT)" xsd:string -is_a: UBERON:0006538 ! respiratory system fluid/secretion - -[Term] -id: NCIT:C33665 ! -property_value: IAO:0000589 "superficial palmar arch (NCIT)" xsd:string -is_a: UBERON:0006564 ! superficial palmar arch - -[Term] -id: NCIT:C34245 ! -property_value: IAO:0000589 "pectinate line (NCIT)" xsd:string -is_a: UBERON:0006574 ! pectinate line - -[Term] -id: NCIT:C33231 ! -property_value: IAO:0000589 "otolymph (NCIT)" xsd:string -is_a: UBERON:0006586 ! otolymph - -[Term] -id: NCIT:C34008 ! -property_value: IAO:0000589 "round ligament of liver (NCIT)" xsd:string -is_a: UBERON:0006588 ! round ligament of liver - -[Term] -id: NCIT:C34009 ! -property_value: IAO:0000589 "round ligament of uterus (NCIT)" xsd:string -is_a: UBERON:0006589 ! round ligament of uterus - -[Term] -id: NCIT:C32133 ! -property_value: IAO:0000589 "aponeurosis (NCIT)" xsd:string -is_a: UBERON:0006614 ! aponeurosis - -[Term] -id: NCIT:C12877 ! -property_value: IAO:0000589 "venous sinus (NCIT)" xsd:string -is_a: UBERON:0006615 ! venous sinus - -[Term] -id: NCIT:C33013 ! -property_value: IAO:0000589 "lumbar artery (NCIT)" xsd:string -is_a: UBERON:0006636 ! lumbar artery - -[Term] -id: NCIT:C33819 ! -property_value: IAO:0000589 "tunica albuginea of testis (NCIT)" xsd:string -is_a: UBERON:0006643 ! tunica albuginea of testis - -[Term] -id: NCIT:C33822 ! -property_value: IAO:0000589 "tunica vaginalis testis (NCIT)" xsd:string -is_a: UBERON:0006650 ! tunica vaginalis testis - -[Term] -id: NCIT:C32747 ! -property_value: IAO:0000589 "appendix testis (NCIT)" xsd:string -is_a: UBERON:0006651 ! appendix testis - -[Term] -id: NCIT:C32681 ! -property_value: IAO:0000589 "glans clitoris (NCIT)" xsd:string -is_a: UBERON:0006653 ! glans clitoris - -[Term] -id: NCIT:C32682 ! -property_value: IAO:0000589 "glenoid fossa (NCIT)" xsd:string -is_a: UBERON:0006657 ! glenoid fossa - -[Term] -id: NCIT:C101527 ! -property_value: IAO:0000589 "interphalangeal joint (NCIT)" xsd:string -is_a: UBERON:0006658 ! interphalangeal joint - -[Term] -id: NCIT:C33855 ! -property_value: IAO:0000589 "great cerebral vein (NCIT)" xsd:string -is_a: UBERON:0006666 ! great cerebral vein - -[Term] -id: NCIT:C34119 ! -property_value: IAO:0000589 "central tendon of diaphragm (NCIT)" xsd:string -is_a: UBERON:0006670 ! central tendon of diaphragm - -[Term] -id: NCIT:C33149 ! -property_value: IAO:0000589 "muscularis mucosa (NCIT)" xsd:string -is_a: UBERON:0006676 ! muscularis mucosa - -[Term] -id: NCIT:C34179 ! -property_value: IAO:0000589 "foramen secundum (NCIT)" xsd:string -is_a: UBERON:0006678 ! foramen secundum - -[Term] -id: NCIT:C25264 ! -property_value: IAO:0000589 "carina of trachea (NCIT)" xsd:string -is_a: UBERON:0006679 ! carina of trachea - -[Term] -id: NCIT:C87076 ! -property_value: IAO:0000589 "frenulum of tongue (NCIT)" xsd:string -is_a: UBERON:0006689 ! frenulum of tongue - -[Term] -id: NCIT:C33749 ! -property_value: IAO:0000589 "tentorium cerebelli (NCIT)" xsd:string -is_a: UBERON:0006691 ! tentorium cerebelli - -[Term] -id: NCIT:C33869 ! -property_value: IAO:0000589 "vertebral canal (NCIT)" xsd:string -is_a: UBERON:0006692 ! vertebral canal - -[Term] -id: NCIT:C34221 ! -property_value: IAO:0000589 "vertebral canal (NCIT)" xsd:string -is_a: UBERON:0006692 ! vertebral canal - -[Term] -id: NCIT:C32861 ! -property_value: IAO:0000589 "medial pterygoid muscle (NCIT)" xsd:string -is_a: UBERON:0006718 ! medial pterygoid muscle - -[Term] -id: NCIT:C32570 ! -property_value: IAO:0000589 "lateral pterygoid muscle (NCIT)" xsd:string -is_a: UBERON:0006719 ! lateral pterygoid muscle - -[Term] -id: NCIT:C33135 ! -property_value: IAO:0000589 "cochlear modiolus (NCIT)" xsd:string -is_a: UBERON:0006723 ! cochlear modiolus - -[Term] -id: NCIT:C49597 ! -property_value: IAO:0000589 "outer canthus (NCIT)" xsd:string -is_a: UBERON:0006726 ! outer canthus - -[Term] -id: NCIT:C33309 ! -property_value: IAO:0000589 "liver perisinusoidal space (NCIT)" xsd:string -is_a: UBERON:0006729 ! liver perisinusoidal space - -[Term] -id: NCIT:C33691 ! -property_value: IAO:0000589 "superior parathyroid gland (NCIT)" xsd:string -is_a: UBERON:0006749 ! superior parathyroid gland - -[Term] -id: NCIT:C32787 ! -property_value: IAO:0000589 "inferior parathyroid gland (NCIT)" xsd:string -is_a: UBERON:0006755 ! inferior parathyroid gland - -[Term] -id: NCIT:C32365 ! -property_value: IAO:0000589 "epithelium of conjunctiva (NCIT)" xsd:string -is_a: UBERON:0006763 ! epithelium of conjunctiva - -[Term] -id: NCIT:C32087 ! -property_value: IAO:0000589 "anterior communicating artery (NCIT)" xsd:string -is_a: UBERON:0006764 ! anterior communicating artery - -[Term] -id: NCIT:C32718 ! -property_value: IAO:0000589 "head of femur (NCIT)" xsd:string -is_a: UBERON:0006767 ! head of femur - -[Term] -id: NCIT:C43370 ! -property_value: IAO:0000589 "glandular epithelium (NCIT)" xsd:string -is_a: UBERON:0006799 ! glandular epithelium - -[Term] -id: NCIT:C45715 ! -property_value: IAO:0000589 "glandular epithelium (NCIT)" xsd:string -is_a: UBERON:0006799 ! glandular epithelium - -[Term] -id: NCIT:C32720 ! -property_value: IAO:0000589 "proximal head of humerus (NCIT)" xsd:string -is_a: UBERON:0006801 ! proximal head of humerus - -[Term] -id: NCIT:C75332 ! -property_value: IAO:0000589 "obturator foramen (NCIT)" xsd:string -is_a: UBERON:0006803 ! obturator foramen - -[Term] -id: NCIT:C33200 ! -property_value: IAO:0000589 "olecranon (NCIT)" xsd:string -is_a: UBERON:0006810 ! olecranon - -[Term] -id: NCIT:C32419 ! -property_value: IAO:0000589 "cutaneous muscle (NCIT)" xsd:string -is_a: UBERON:0006821 ! cutaneous muscle - -[Term] -id: NCIT:C32281 ! -property_value: IAO:0000589 "central vein of liver (NCIT)" xsd:string -is_a: UBERON:0006841 ! central vein of liver - -[Term] -id: NCIT:C33037 ! -property_value: IAO:0000589 "lymphatic capillary (NCIT)" xsd:string -is_a: UBERON:0006842 ! lymphatic capillary - -[Term] -id: NCIT:C94568 ! -property_value: IAO:0000589 "cusp of tooth (NCIT)" xsd:string -is_a: UBERON:0006844 ! cusp of tooth - -[Term] -id: NCIT:C12783 ! -property_value: IAO:0000589 "scapula (NCIT)" xsd:string -is_a: UBERON:0006849 ! scapula - -[Term] -id: NCIT:C96209 ! -property_value: IAO:0000589 "diaphysis of femur (NCIT)" xsd:string -is_a: UBERON:0006862 ! diaphysis of femur - -[Term] -id: NCIT:C34177 ! -property_value: IAO:0000589 "embryonic footplate (NCIT)" xsd:string -is_a: UBERON:0006871 ! embryonic footplate - -[Term] -id: NCIT:C34185 ! -property_value: IAO:0000589 "embryonic handplate (NCIT)" xsd:string -is_a: UBERON:0006875 ! embryonic handplate - -[Term] -id: NCIT:C32428 ! -property_value: IAO:0000589 "decidua parietalis (NCIT)" xsd:string -is_a: UBERON:0006878 ! decidua parietalis - -[Term] -id: NCIT:C12614 ! -property_value: IAO:0000589 "slow muscle tissue (NCIT)" xsd:string -is_a: UBERON:0006907 ! slow muscle tissue - -[Term] -id: NCIT:C12613 ! -property_value: IAO:0000589 "fast muscle tissue (NCIT)" xsd:string -is_a: UBERON:0006908 ! fast muscle tissue - -[Term] -id: NCIT:C32207 ! -property_value: IAO:0000589 "urinary bladder muscularis mucosa (NCIT)" xsd:string -is_a: UBERON:0006912 ! urinary bladder muscularis mucosa - -[Term] -id: NCIT:C12848 ! -property_value: IAO:0000589 "squamous epithelium (NCIT)" xsd:string -is_a: UBERON:0006914 ! squamous epithelium - -[Term] -id: NCIT:C13180 ! -property_value: IAO:0000589 "stratified squamous epithelium (NCIT)" xsd:string -is_a: UBERON:0006915 ! stratified squamous epithelium - -[Term] -id: NCIT:C49222 ! -property_value: IAO:0000589 "esophagus squamous epithelium (NCIT)" xsd:string -is_a: UBERON:0006920 ! esophagus squamous epithelium - -[Term] -id: NCIT:C49219 ! -property_value: IAO:0000589 "cervix squamous epithelium (NCIT)" xsd:string -is_a: UBERON:0006922 ! cervix squamous epithelium - -[Term] -id: NCIT:C49314 ! -property_value: IAO:0000589 "vagina squamous epithelium (NCIT)" xsd:string -is_a: UBERON:0006923 ! vagina squamous epithelium - -[Term] -id: NCIT:C13182 ! -property_value: IAO:0000589 "glandular columnar epithelium (NCIT)" xsd:string -is_a: UBERON:0006929 ! glandular columnar epithelium - -[Term] -id: NCIT:C32492 ! -property_value: IAO:0000589 "efferent duct (NCIT)" xsd:string -is_a: UBERON:0006946 ! efferent duct - -[Term] -id: NCIT:C33613 ! -property_value: IAO:0000589 "stellate reticulum (NCIT)" xsd:string -is_a: UBERON:0006950 ! stellate reticulum - -[Term] -id: NCIT:C32804 ! -property_value: IAO:0000589 "inner dental epithelium (NCIT)" xsd:string -is_a: UBERON:0006951 ! inner dental epithelium - -[Term] -id: NCIT:C33232 ! -property_value: IAO:0000589 "outer dental epithelium (NCIT)" xsd:string -is_a: UBERON:0006952 ! outer dental epithelium - -[Term] -id: NCIT:C12505 ! -property_value: IAO:0000589 "buccal mucosa (NCIT)" xsd:string -is_a: UBERON:0006956 ! buccal mucosa - -[Term] -id: NCIT:C12879 ! -property_value: IAO:0000589 "great vein of heart (NCIT)" xsd:string -is_a: UBERON:0006958 ! great vein of heart - -[Term] -id: NCIT:C33638 ! -property_value: IAO:0000589 "ovary stroma (NCIT)" xsd:string -is_a: UBERON:0006960 ! ovary stroma - -[Term] -id: NCIT:C34022 ! -property_value: IAO:0000589 "anatomical surface (NCIT)" xsd:string -is_a: UBERON:0006984 ! anatomical surface - -[Term] -id: NCIT:C17600 ! -property_value: IAO:0000589 "adult organism (NCIT)" xsd:string -is_a: UBERON:0007023 ! adult organism - -[Term] -id: NCIT:C34268 ! -property_value: IAO:0000589 "presumptive gut (NCIT)" xsd:string -is_a: UBERON:0007026 ! presumptive gut - -[Term] -id: NCIT:C34125 ! -property_value: IAO:0000589 "chorionic villus (NCIT)" xsd:string -is_a: UBERON:0007106 ! chorionic villus - -[Term] -id: NCIT:C34328 ! -property_value: IAO:0000589 "vernix caseosa (NCIT)" xsd:string -is_a: UBERON:0007108 ! vernix caseosa - -[Term] -id: NCIT:C33447 ! -property_value: IAO:0000589 "Douglas' pouch (NCIT)" xsd:string -is_a: UBERON:0007111 ! Douglas' pouch - -[Term] -id: NCIT:C33745 ! -property_value: IAO:0000589 "deciduous tooth (NCIT)" xsd:string -is_a: UBERON:0007115 ! deciduous tooth - -[Term] -id: NCIT:C77533 ! -property_value: IAO:0000589 "umbilicus (NCIT)" xsd:string -is_a: UBERON:0007118 ! umbilicus - -[Term] -id: NCIT:C61563 ! -property_value: IAO:0000589 "neck of femur (NCIT)" xsd:string -is_a: UBERON:0007119 ! neck of femur - -[Term] -id: NCIT:C32201 ! -property_value: IAO:0000589 "premolar tooth (NCIT)" xsd:string -is_a: UBERON:0007120 ! premolar tooth - -[Term] -id: NCIT:C34176 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (NCIT)" xsd:string -is_a: UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: NCIT:C34289 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (NCIT)" xsd:string -is_a: UBERON:0007123 ! pharyngeal pouch 2 - -[Term] -id: NCIT:C34311 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (NCIT)" xsd:string -is_a: UBERON:0007124 ! pharyngeal pouch 3 - -[Term] -id: NCIT:C34181 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (NCIT)" xsd:string -is_a: UBERON:0007125 ! pharyngeal pouch 4 - -[Term] -id: NCIT:C34174 ! -property_value: IAO:0000589 "pharyngeal pouch 5 (NCIT)" xsd:string -is_a: UBERON:0007126 ! pharyngeal pouch 5 - -[Term] -id: NCIT:C12876 ! -property_value: IAO:0000589 "posterior spinal artery (NCIT)" xsd:string -is_a: UBERON:0007146 ! posterior spinal artery - -[Term] -id: NCIT:C53022 ! -property_value: IAO:0000589 "inferior thyroid artery (NCIT)" xsd:string -is_a: UBERON:0007149 ! inferior thyroid artery - -[Term] -id: NCIT:C53021 ! -property_value: IAO:0000589 "superior thyroid artery (NCIT)" xsd:string -is_a: UBERON:0007150 ! superior thyroid artery - -[Term] -id: NCIT:C12514 ! -property_value: IAO:0000589 "inferior sagittal sinus (NCIT)" xsd:string -is_a: UBERON:0007152 ! inferior sagittal sinus - -[Term] -id: NCIT:C32434 ! -property_value: IAO:0000589 "inferior epigastric vein (NCIT)" xsd:string -is_a: UBERON:0007154 ! inferior epigastric vein - -[Term] -id: NCIT:C117875 ! -property_value: IAO:0000589 "tracheobronchial tree (NCIT)" xsd:string -is_a: UBERON:0007196 ! tracheobronchial tree - -[Term] -id: NCIT:C16268 ! -property_value: IAO:0000589 "late adult stage (NCIT)" xsd:string -is_a: UBERON:0007222 ! late adult stage - -[Term] -id: NCIT:C33703 ! -property_value: IAO:0000589 "superior vestibular nucleus (NCIT)" xsd:string -is_a: UBERON:0007227 ! superior vestibular nucleus - -[Term] -id: NCIT:C12821 ! -property_value: IAO:0000589 "vestibular nucleus (NCIT)" xsd:string -is_a: UBERON:0007228 ! vestibular nucleus - -[Term] -id: NCIT:C32951 ! -property_value: IAO:0000589 "lateral vestibular nucleus (NCIT)" xsd:string -is_a: UBERON:0007230 ! lateral vestibular nucleus - -[Term] -id: NCIT:C49321 ! -property_value: IAO:0000589 "tunica media of artery (NCIT)" xsd:string -is_a: UBERON:0007239 ! tunica media of artery - -[Term] -id: NCIT:C32988 ! -property_value: IAO:0000589 "lingual tonsil (NCIT)" xsd:string -is_a: UBERON:0007250 ! lingual tonsil - -[Term] -id: NCIT:C33836 ! -property_value: IAO:0000589 "upper esophageal sphincter (NCIT)" xsd:string -is_a: UBERON:0007268 ! upper esophageal sphincter - -[Term] -id: NCIT:C13278 ! -property_value: IAO:0000589 "sputum (NCIT)" xsd:string -is_a: UBERON:0007311 ! sputum - -[Term] -id: NCIT:C33511 ! -property_value: IAO:0000589 "saphenous vein (NCIT)" xsd:string -is_a: UBERON:0007318 ! saphenous vein - -[Term] -id: NCIT:C111162 ! -property_value: IAO:0000589 "crop (NCIT)" xsd:string -is_a: UBERON:0007356 ! crop - -[Term] -id: NCIT:C111301 ! -property_value: IAO:0000589 "proventriculus (NCIT)" xsd:string -is_a: UBERON:0007357 ! proventriculus - -[Term] -id: NCIT:C98702 ! -property_value: IAO:0000589 "abomasum (NCIT)" xsd:string -is_a: UBERON:0007358 ! abomasum - -[Term] -id: NCIT:C98777 ! -property_value: IAO:0000589 "ruminant reticulum (NCIT)" xsd:string -is_a: UBERON:0007361 ! ruminant reticulum - -[Term] -id: NCIT:C98766 ! -property_value: IAO:0000589 "omasum (NCIT)" xsd:string -is_a: UBERON:0007362 ! omasum - -[Term] -id: NCIT:C98778 ! -property_value: IAO:0000589 "rumen (NCIT)" xsd:string -is_a: UBERON:0007365 ! rumen - -[Term] -id: NCIT:C88147 ! -property_value: IAO:0000589 "cerebellar peduncle (NCIT)" xsd:string -is_a: UBERON:0007416 ! cerebellar peduncle - -[Term] -id: NCIT:C28351 ! -property_value: IAO:0000589 "neural decussation (NCIT)" xsd:string -is_a: UBERON:0007418 ! neural decussation - -[Term] -id: NCIT:C33628 ! -property_value: IAO:0000589 "stratum intermedium of tooth (NCIT)" xsd:string -is_a: UBERON:0007440 ! stratum intermedium of tooth - -[Term] -id: NCIT:C33620 ! -property_value: IAO:0000589 "stratified columnar epithelium (NCIT)" xsd:string -is_a: UBERON:0007602 ! stratified columnar epithelium - -[Term] -id: NCIT:C33621 ! -property_value: IAO:0000589 "stratified cuboidal epithelium (NCIT)" xsd:string -is_a: UBERON:0007603 ! stratified cuboidal epithelium - -[Term] -id: NCIT:C12824 ! -property_value: IAO:0000589 "tibial artery (NCIT)" xsd:string -is_a: UBERON:0007610 ! tibial artery - -[Term] -id: NCIT:C52916 ! -property_value: IAO:0000589 "extensor digitorum communis (NCIT)" xsd:string -is_a: UBERON:0007612 ! extensor digitorum communis - -[Term] -id: NCIT:C52917 ! -property_value: IAO:0000589 "extensor digitorum lateralis muscle (NCIT)" xsd:string -is_a: UBERON:0007613 ! extensor digitorum lateralis muscle - -[Term] -id: NCIT:C33629 ! -property_value: IAO:0000589 "hippocampus stratum lucidum (NCIT)" xsd:string -is_a: UBERON:0007637 ! hippocampus stratum lucidum - -[Term] -id: NCIT:C32058 ! -property_value: IAO:0000589 "hippocampus alveus (NCIT)" xsd:string -is_a: UBERON:0007639 ! hippocampus alveus - -[Term] -id: NCIT:C33769 ! -property_value: IAO:0000589 "thoracic lymph node (NCIT)" xsd:string -is_a: UBERON:0007644 ! thoracic lymph node - -[Term] -id: NCIT:C32668 ! -property_value: IAO:0000589 "esophagogastric junction (NCIT)" xsd:string -is_a: UBERON:0007650 ! esophagogastric junction - -[Term] -id: NCIT:C33738 ! -property_value: IAO:0000589 "gustatory pore (NCIT)" xsd:string -is_a: UBERON:0007691 ! gustatory pore - -[Term] -id: NCIT:C12995 ! -property_value: IAO:0000589 "tract of spinal cord (NCIT)" xsd:string -is_a: UBERON:0007699 ! tract of spinal cord - -[Term] -id: NCIT:C32867 ! -property_value: IAO:0000589 "interphalangeal joint of pes (NCIT)" xsd:string -is_a: UBERON:0007721 ! interphalangeal joint of pes - -[Term] -id: NCIT:C33789 ! -property_value: IAO:0000589 "interphalangeal joint of pes (NCIT)" xsd:string -is_a: UBERON:0007721 ! interphalangeal joint of pes - -[Term] -id: NCIT:C32868 ! -property_value: IAO:0000589 "interphalangeal joint of manus (NCIT)" xsd:string -is_a: UBERON:0007722 ! interphalangeal joint of manus - -[Term] -id: NCIT:C102306 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 1 (NCIT)" xsd:string -is_a: UBERON:0007723 ! interphalangeal joint of manual digit 1 - -[Term] -id: NCIT:C102321 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 1 (NCIT)" xsd:string -is_a: UBERON:0007750 ! metatarsophalangeal joint of pedal digit 1 - -[Term] -id: NCIT:C33313 ! -property_value: IAO:0000589 "secondary tooth (NCIT)" xsd:string -is_a: UBERON:0007775 ! secondary tooth - -[Term] -id: NCIT:C33854 ! -property_value: IAO:0000589 "vascular system (NCIT)" xsd:string -is_a: UBERON:0007798 ! vascular system - -[Term] -id: NCIT:C34132 ! -property_value: IAO:0000589 "connecting stalk (NCIT)" xsd:string -is_a: UBERON:0007806 ! connecting stalk - -[Term] -id: NCIT:C12418 ! -property_value: IAO:0000589 "craniocervical region (NCIT)" xsd:string -is_a: UBERON:0007811 ! craniocervical region - -[Term] -id: NCIT:C77663 ! -property_value: IAO:0000589 "post-anal tail (NCIT)" xsd:string -is_a: UBERON:0007812 ! post-anal tail - -[Term] -id: NCIT:C32566 ! -property_value: IAO:0000589 "external nose (NCIT)" xsd:string -is_a: UBERON:0007827 ! external nose - -[Term] -id: NCIT:C33287 ! -property_value: IAO:0000589 "pelvic girdle bone/zone (NCIT)" xsd:string -is_a: UBERON:0007830 ! pelvic girdle bone/zone - -[Term] -id: NCIT:C33547 ! -property_value: IAO:0000589 "pectoral girdle skeleton (NCIT)" xsd:string -is_a: UBERON:0007831 ! pectoral girdle skeleton - -[Term] -id: NCIT:C33453 ! -property_value: IAO:0000589 "dense regular connective tissue (NCIT)" xsd:string -is_a: UBERON:0007846 ! dense regular connective tissue - -[Term] -id: NCIT:C32881 ! -property_value: IAO:0000589 "irregular bone (NCIT)" xsd:string -is_a: UBERON:0008001 ! irregular bone - -[Term] -id: NCIT:C34216 ! -property_value: IAO:0000589 "nail plate (NCIT)" xsd:string -is_a: UBERON:0008198 ! nail plate - -[Term] -id: NCIT:C81169 ! -property_value: IAO:0000589 "chin (NCIT)" xsd:string -is_a: UBERON:0008199 ! chin - -[Term] -id: NCIT:C89803 ! -property_value: IAO:0000589 "forehead (NCIT)" xsd:string -is_a: UBERON:0008200 ! forehead - -[Term] -id: NCIT:C53076 ! -property_value: IAO:0000589 "tibialis (NCIT)" xsd:string -is_a: UBERON:0008230 ! tibialis - -[Term] -id: NCIT:C34313 ! -property_value: IAO:0000589 "tooth bud (NCIT)" xsd:string -is_a: UBERON:0008281 ! tooth bud - -[Term] -id: NCIT:C12726 ! -property_value: IAO:0000589 "inguinal part of abdomen (NCIT)" xsd:string -is_a: UBERON:0008337 ! inguinal part of abdomen - -[Term] -id: NCIT:C33326 ! -property_value: IAO:0000589 "plantar part of pes (NCIT)" xsd:string -is_a: UBERON:0008338 ! plantar part of pes - -[Term] -id: NCIT:C33735 ! -property_value: IAO:0000589 "intertarsal joint (NCIT)" xsd:string -is_a: UBERON:0008447 ! intertarsal joint - -[Term] -id: NCIT:C33422 ! -property_value: IAO:0000589 "psoas muscle (NCIT)" xsd:string -is_a: UBERON:0008450 ! psoas muscle - -[Term] -id: NCIT:C32396 ! -property_value: IAO:0000589 "cremaster muscle (NCIT)" xsd:string -is_a: UBERON:0008488 ! cremaster muscle - -[Term] -id: NCIT:C33158 ! -property_value: IAO:0000589 "nasal muscle (NCIT)" xsd:string -is_a: UBERON:0008522 ! nasal muscle - -[Term] -id: NCIT:C33776 ! -property_value: IAO:0000589 "thyro-arytenoid (NCIT)" xsd:string -is_a: UBERON:0008576 ! thyro-arytenoid - -[Term] -id: NCIT:C33886 ! -property_value: IAO:0000589 "vocalis muscle (NCIT)" xsd:string -is_a: UBERON:0008577 ! vocalis muscle - -[Term] -id: NCIT:C52706 ! -property_value: IAO:0000589 "transverse muscle of tongue (NCIT)" xsd:string -is_a: UBERON:0008583 ! transverse muscle of tongue - -[Term] -id: NCIT:C52708 ! -property_value: IAO:0000589 "vertical muscle of tongue (NCIT)" xsd:string -is_a: UBERON:0008584 ! vertical muscle of tongue - -[Term] -id: NCIT:C53183 ! -property_value: IAO:0000589 "zygomaticus major muscle (NCIT)" xsd:string -is_a: UBERON:0008593 ! zygomaticus major muscle - -[Term] -id: NCIT:C53184 ! -property_value: IAO:0000589 "zygomaticus minor muscle (NCIT)" xsd:string -is_a: UBERON:0008594 ! zygomaticus minor muscle - -[Term] -id: NCIT:C33517 ! -property_value: IAO:0000589 "scalene muscle (NCIT)" xsd:string -is_a: UBERON:0008611 ! scalene muscle - -[Term] -id: NCIT:C33290 ! -property_value: IAO:0000589 "muscle of pelvic diaphragm (NCIT)" xsd:string -is_a: UBERON:0008612 ! muscle of pelvic diaphragm - -[Term] -id: NCIT:C13100 ! -property_value: IAO:0000589 "muscle tissue of prostate (NCIT)" xsd:string -is_a: UBERON:0008715 ! muscle tissue of prostate - -[Term] -id: NCIT:C32740 ! -property_value: IAO:0000589 "hilum of kidney (NCIT)" xsd:string -is_a: UBERON:0008716 ! hilum of kidney - -[Term] -id: NCIT:C32722 ! -property_value: IAO:0000589 "proximal epiphysis of tibia (NCIT)" xsd:string -is_a: UBERON:0008772 ! proximal epiphysis of tibia - -[Term] -id: NCIT:C32719 ! -property_value: IAO:0000589 "proximal epiphysis of fibula (NCIT)" xsd:string -is_a: UBERON:0008775 ! proximal epiphysis of fibula - -[Term] -id: NCIT:C33644 ! -property_value: IAO:0000589 "subclavius (NCIT)" xsd:string -is_a: UBERON:0008779 ! subclavius - -[Term] -id: NCIT:C34164 ! -property_value: IAO:0000589 "inner cell mass derived epiblast (NCIT)" xsd:string -is_a: UBERON:0008780 ! inner cell mass derived epiblast - -[Term] -id: NCIT:C33361 ! -property_value: IAO:0000589 "posterior cranial fossa (NCIT)" xsd:string -is_a: UBERON:0008788 ! posterior cranial fossa - -[Term] -id: NCIT:C32660 ! -property_value: IAO:0000589 "rugal fold of stomach (NCIT)" xsd:string -is_a: UBERON:0008791 ! rugal fold of stomach - -[Term] -id: NCIT:C111156 ! -property_value: IAO:0000589 "cheek pouch (NCIT)" xsd:string -is_a: UBERON:0008802 ! cheek pouch - -[Term] -id: NCIT:C33639 ! -property_value: IAO:0000589 "stylopharyngeus muscle (NCIT)" xsd:string -is_a: UBERON:0008804 ! stylopharyngeus muscle - -[Term] -id: NCIT:C114645 ! -property_value: IAO:0000589 "gingival groove (NCIT)" xsd:string -is_a: UBERON:0008805 ! gingival groove - -[Term] -id: NCIT:C77618 ! -property_value: IAO:0000589 "coagulating gland (NCIT)" xsd:string -is_a: UBERON:0008807 ! coagulating gland - -[Term] -id: NCIT:C32723 ! -property_value: IAO:0000589 "helicotrema (NCIT)" xsd:string -is_a: UBERON:0008813 ! helicotrema - -[Term] -id: NCIT:C34248 ! -property_value: IAO:0000589 "pharyngeal arch system (NCIT)" xsd:string -is_a: UBERON:0008814 ! pharyngeal arch system - -[Term] -id: NCIT:C33684 ! -property_value: IAO:0000589 "superior mediastinum (NCIT)" xsd:string -is_a: UBERON:0008818 ! superior mediastinum - -[Term] -id: NCIT:C32098 ! -property_value: IAO:0000589 "anterior mediastinum (NCIT)" xsd:string -is_a: UBERON:0008820 ! anterior mediastinum - -[Term] -id: NCIT:C33123 ! -property_value: IAO:0000589 "middle mediastinum (NCIT)" xsd:string -is_a: UBERON:0008821 ! middle mediastinum - -[Term] -id: NCIT:C33368 ! -property_value: IAO:0000589 "posterior mediastinum (NCIT)" xsd:string -is_a: UBERON:0008822 ! posterior mediastinum - -[Term] -id: NCIT:C32484 ! -property_value: IAO:0000589 "duct of epididymis (NCIT)" xsd:string -is_a: UBERON:0008824 ! duct of epididymis - -[Term] -id: NCIT:C13273 ! -property_value: IAO:0000589 "pulmonary surfactant (NCIT)" xsd:string -is_a: UBERON:0008826 ! pulmonary surfactant - -[Term] -id: NCIT:C77956 ! -property_value: IAO:0000589 "murine forestomach (NCIT)" xsd:string -is_a: UBERON:0008827 ! murine forestomach - -[Term] -id: NCIT:C49141 ! -property_value: IAO:0000589 "cerebellum internal granule cell layer (NCIT)" xsd:string -is_a: UBERON:0008830 ! cerebellum internal granule cell layer - -[Term] -id: NCIT:C34187 ! -property_value: IAO:0000589 "hepatic diverticulum (NCIT)" xsd:string -is_a: UBERON:0008835 ! hepatic diverticulum - -[Term] -id: NCIT:C92654 ! -property_value: IAO:0000589 "metapodial pad (NCIT)" xsd:string -is_a: UBERON:0008838 ! metapodial pad - -[Term] -id: NCIT:C33431 ! -property_value: IAO:0000589 "pyloric gastric gland (NCIT)" xsd:string -is_a: UBERON:0008861 ! pyloric gastric gland - -[Term] -id: NCIT:C82999 ! -property_value: IAO:0000589 "trabecular network of bone (NCIT)" xsd:string -is_a: UBERON:0008867 ! trabecular network of bone - -[Term] -id: NCIT:C33426 ! -property_value: IAO:0000589 "pulmonary acinus (NCIT)" xsd:string -is_a: UBERON:0008874 ! pulmonary acinus - -[Term] -id: NCIT:C62356 ! -property_value: IAO:0000589 "epidermal-dermal junction (NCIT)" xsd:string -is_a: UBERON:0008877 ! epidermal-dermal junction - -[Term] -id: NCIT:C33252 ! -property_value: IAO:0000589 "palmar part of manus (NCIT)" xsd:string -is_a: UBERON:0008878 ! palmar part of manus - -[Term] -id: NCIT:C33228 ! -property_value: IAO:0000589 "osteoid (NCIT)" xsd:string -is_a: UBERON:0008883 ! osteoid - -[Term] -id: NCIT:C32728 ! -property_value: IAO:0000589 "rectal venous plexus (NCIT)" xsd:string -is_a: UBERON:0008887 ! rectal venous plexus - -[Term] -id: NCIT:C70672 ! -property_value: IAO:0000589 "pore (NCIT)" xsd:string -is_a: UBERON:0008915 ! pore - -[Term] -id: NCIT:C34283 ! -property_value: IAO:0000589 "respiratory primordium (NCIT)" xsd:string -is_a: UBERON:0008947 ! respiratory primordium - -[Term] -id: NCIT:C12285 ! -property_value: IAO:0000589 "upper lobe of lung (NCIT)" xsd:string -is_a: UBERON:0008948 ! upper lobe of lung - -[Term] -id: NCIT:C12287 ! -property_value: IAO:0000589 "lower lobe of lung (NCIT)" xsd:string -is_a: UBERON:0008949 ! lower lobe of lung - -[Term] -id: NCIT:C48945 ! -property_value: IAO:0000589 "left lung lobe (NCIT)" xsd:string -is_a: UBERON:0008951 ! left lung lobe - -[Term] -id: NCIT:C33021 ! -property_value: IAO:0000589 "upper lobe of left lung (NCIT)" xsd:string -is_a: UBERON:0008952 ! upper lobe of left lung - -[Term] -id: NCIT:C33020 ! -property_value: IAO:0000589 "lower lobe of left lung (NCIT)" xsd:string -is_a: UBERON:0008953 ! lower lobe of left lung - -[Term] -id: NCIT:C40373 ! -property_value: IAO:0000589 "lingula of left lung (NCIT)" xsd:string -is_a: UBERON:0008954 ! lingula of left lung - -[Term] -id: NCIT:C112425 ! -property_value: IAO:0000589 "auditory bulla (NCIT)" xsd:string -is_a: UBERON:0008959 ! auditory bulla - -[Term] -id: NCIT:C12983 ! -property_value: IAO:0000589 "forelimb bone (NCIT)" xsd:string -is_a: UBERON:0008962 ! forelimb bone - -[Term] -id: NCIT:C34138 ! -property_value: IAO:0000589 "dental follicle (NCIT)" xsd:string -is_a: UBERON:0008969 ! dental follicle - -[Term] -id: NCIT:C33929 ! -property_value: IAO:0000589 "left colon (NCIT)" xsd:string -is_a: UBERON:0008971 ! left colon - -[Term] -id: NCIT:C12383 ! -property_value: IAO:0000589 "right colon (NCIT)" xsd:string -is_a: UBERON:0008972 ! right colon - -[Term] -id: NCIT:C113674 ! -property_value: IAO:0000589 "carcass (NCIT)" xsd:string -is_a: UBERON:0008979 ! carcass - -[Term] -id: NCIT:C13108 ! -property_value: IAO:0000589 "fascia (NCIT)" xsd:string -is_a: UBERON:0008982 ! fascia - -[Term] -id: NCIT:C32536 ! -property_value: IAO:0000589 "submucosal esophageal gland (NCIT)" xsd:string -is_a: UBERON:0008989 ! submucosal esophageal gland - -[Term] -id: NCIT:C34253 ! -property_value: IAO:0000589 "placental membrane (NCIT)" xsd:string -is_a: UBERON:0009002 ! placental membrane - -[Term] -id: NCIT:C52857 ! -property_value: IAO:0000589 "gastroepiploic artery (NCIT)" xsd:string -is_a: UBERON:0009025 ! gastroepiploic artery - -[Term] -id: NCIT:C52863 ! -property_value: IAO:0000589 "iliac circumflex artery (NCIT)" xsd:string -is_a: UBERON:0009026 ! iliac circumflex artery - -[Term] -id: NCIT:C48946 ! -property_value: IAO:0000589 "left pulmonary vein (NCIT)" xsd:string -is_a: UBERON:0009030 ! left pulmonary vein - -[Term] -id: NCIT:C48947 ! -property_value: IAO:0000589 "right pulmonary vein (NCIT)" xsd:string -is_a: UBERON:0009032 ! right pulmonary vein - -[Term] -id: NCIT:C49757 ! -property_value: IAO:0000589 "lymph node germinal center (NCIT)" xsd:string -is_a: UBERON:0009039 ! lymph node germinal center - -[Term] -id: NCIT:C32432 ! -property_value: IAO:0000589 "deep circumflex iliac artery (NCIT)" xsd:string -is_a: UBERON:0009040 ! deep circumflex iliac artery - -[Term] -id: NCIT:C52864 ! -property_value: IAO:0000589 "superficial circumflex iliac artery (NCIT)" xsd:string -is_a: UBERON:0009041 ! superficial circumflex iliac artery - -[Term] -id: NCIT:C13067 ! -property_value: IAO:0000589 "nucleus of solitary tract (NCIT)" xsd:string -is_a: UBERON:0009050 ! nucleus of solitary tract - -[Term] -id: NCIT:C120926 ! -property_value: IAO:0000589 "air sac (NCIT)" xsd:string -is_a: UBERON:0009060 ! air sac - -[Term] -id: NCIT:C111323 ! -property_value: IAO:0000589 "syrinx organ (NCIT)" xsd:string -is_a: UBERON:0009074 ! syrinx organ - -[Term] -id: NCIT:C12406 ! -property_value: IAO:0000589 "gravid uterus (NCIT)" xsd:string -is_a: UBERON:0009098 ! gravid uterus - -[Term] -id: NCIT:C34192 ! -property_value: IAO:0000589 "indifferent gonad (NCIT)" xsd:string -is_a: UBERON:0009117 ! indifferent gonad - -[Term] -id: NCIT:C102339 ! -property_value: IAO:0000589 "right atrium endocardium (NCIT)" xsd:string -is_a: UBERON:0009129 ! right atrium endocardium - -[Term] -id: NCIT:C34256 ! -property_value: IAO:0000589 "pleuroperitoneal membrane (NCIT)" xsd:string -is_a: UBERON:0009133 ! pleuroperitoneal membrane - -[Term] -id: NCIT:C34178 ! -property_value: IAO:0000589 "foramen primum (NCIT)" xsd:string -is_a: UBERON:0009149 ! foramen primum - -[Term] -id: NCIT:C34105 ! -property_value: IAO:0000589 "anal membrane (NCIT)" xsd:string -is_a: UBERON:0009195 ! anal membrane - -[Term] -id: NCIT:C34251 ! -property_value: IAO:0000589 "pharyngeal membrane (NCIT)" xsd:string -is_a: UBERON:0009210 ! pharyngeal membrane - -[Term] -id: NCIT:C32482 ! -property_value: IAO:0000589 "dorsum of tongue (NCIT)" xsd:string -is_a: UBERON:0009471 ! dorsum of tongue - -[Term] -id: NCIT:C12674 ! -property_value: IAO:0000589 "axilla (NCIT)" xsd:string -is_a: UBERON:0009472 ! axilla - -[Term] -id: NCIT:C93230 ! -property_value: IAO:0000589 "ascidian ampulla (NCIT)" xsd:string -is_a: UBERON:0009474 ! ascidian ampulla - -[Term] -id: NCIT:C32609 ! -property_value: IAO:0000589 "nail of manual digit (NCIT)" xsd:string -is_a: UBERON:0009565 ! nail of manual digit - -[Term] -id: NCIT:C33790 ! -property_value: IAO:0000589 "nail of pedal digit (NCIT)" xsd:string -is_a: UBERON:0009567 ! nail of pedal digit - -[Term] -id: NCIT:C92597 ! -property_value: IAO:0000589 "trunk region of vertebral column (NCIT)" xsd:string -is_a: UBERON:0009568 ! trunk region of vertebral column - -[Term] -id: NCIT:C33656 ! -property_value: IAO:0000589 "sulcus limitans of fourth ventricle (NCIT)" xsd:string -is_a: UBERON:0009573 ! sulcus limitans of fourth ventricle - -[Term] -id: NCIT:C12791 ! -property_value: IAO:0000589 "spinal nerve root (NCIT)" xsd:string -is_a: UBERON:0009623 ! spinal nerve root - -[Term] -id: NCIT:C33015 ! -property_value: IAO:0000589 "lumbar nerve (NCIT)" xsd:string -is_a: UBERON:0009624 ! lumbar nerve - -[Term] -id: NCIT:C33505 ! -property_value: IAO:0000589 "sacral nerve (NCIT)" xsd:string -is_a: UBERON:0009625 ! sacral nerve - -[Term] -id: NCIT:C32333 ! -property_value: IAO:0000589 "coccygeal nerve (NCIT)" xsd:string -is_a: UBERON:0009629 ! coccygeal nerve - -[Term] -id: NCIT:C12924 ! -property_value: IAO:0000589 "root of lumbar spinal nerve (NCIT)" xsd:string -is_a: UBERON:0009631 ! root of lumbar spinal nerve - -[Term] -id: NCIT:C12893 ! -property_value: IAO:0000589 "root of cervical nerve (NCIT)" xsd:string -is_a: UBERON:0009632 ! root of cervical nerve - -[Term] -id: NCIT:C12925 ! -property_value: IAO:0000589 "root of sacral nerve (NCIT)" xsd:string -is_a: UBERON:0009633 ! root of sacral nerve - -[Term] -id: NCIT:C34243 ! -property_value: IAO:0000589 "parachordal cartilage (NCIT)" xsd:string -is_a: UBERON:0009635 ! parachordal cartilage - -[Term] -id: NCIT:C77955 ! -property_value: IAO:0000589 "ampullary gland (NCIT)" xsd:string -is_a: UBERON:0009645 ! ampullary gland - -[Term] -id: NCIT:C52828 ! -property_value: IAO:0000589 "lumbar sympathetic nerve trunk (NCIT)" xsd:string -is_a: UBERON:0009646 ! lumbar sympathetic nerve trunk - -[Term] -id: NCIT:C49308 ! -property_value: IAO:0000589 "tympanic membrane epithelium (NCIT)" xsd:string -is_a: UBERON:0009647 ! tympanic membrane epithelium - -[Term] -id: NCIT:C49226 ! -property_value: IAO:0000589 "eyelid subcutaneous connective tissue (NCIT)" xsd:string -is_a: UBERON:0009648 ! eyelid subcutaneous connective tissue - -[Term] -id: NCIT:C32385 ! -property_value: IAO:0000589 "cortical arch of kidney (NCIT)" xsd:string -is_a: UBERON:0009650 ! cortical arch of kidney - -[Term] -id: NCIT:C49273 ! -property_value: IAO:0000589 "nephron tubule basement membrane (NCIT)" xsd:string -is_a: UBERON:0009651 ! nephron tubule basement membrane - -[Term] -id: NCIT:C49208 ! -property_value: IAO:0000589 "bronchus basement membrane (NCIT)" xsd:string -is_a: UBERON:0009652 ! bronchus basement membrane - -[Term] -id: NCIT:C49302 ! -property_value: IAO:0000589 "trachea basement membrane (NCIT)" xsd:string -is_a: UBERON:0009653 ! trachea basement membrane - -[Term] -id: NCIT:C52848 ! -property_value: IAO:0000589 "alveolar artery (NCIT)" xsd:string -is_a: UBERON:0009654 ! alveolar artery - -[Term] -id: NCIT:C52849 ! -property_value: IAO:0000589 "auricular artery (NCIT)" xsd:string -is_a: UBERON:0009655 ! auricular artery - -[Term] -id: NCIT:C52947 ! -property_value: IAO:0000589 "artery of lip (NCIT)" xsd:string -is_a: UBERON:0009657 ! artery of lip - -[Term] -id: NCIT:C52992 ! -property_value: IAO:0000589 "pancreaticoduodenal artery (NCIT)" xsd:string -is_a: UBERON:0009658 ! pancreaticoduodenal artery - -[Term] -id: NCIT:C33581 ! -property_value: IAO:0000589 "spermatic artery (NCIT)" xsd:string -is_a: UBERON:0009659 ! spermatic artery - -[Term] -id: NCIT:C12880 ! -property_value: IAO:0000589 "middle cardiac vein (NCIT)" xsd:string -is_a: UBERON:0009687 ! middle cardiac vein - -[Term] -id: NCIT:C33362 ! -property_value: IAO:0000589 "posterior inferior cerebellar artery (NCIT)" xsd:string -is_a: UBERON:0009688 ! posterior inferior cerebellar artery - -[Term] -id: NCIT:C32091 ! -property_value: IAO:0000589 "anterior inferior cerebellar artery (NCIT)" xsd:string -is_a: UBERON:0009689 ! anterior inferior cerebellar artery - -[Term] -id: NCIT:C102343 ! -property_value: IAO:0000589 "endocardium of right ventricle (NCIT)" xsd:string -is_a: UBERON:0009712 ! endocardium of right ventricle - -[Term] -id: NCIT:C101528 ! -property_value: IAO:0000589 "proximal interphalangeal joint (NCIT)" xsd:string -is_a: UBERON:0009767 ! proximal interphalangeal joint - -[Term] -id: NCIT:C101529 ! -property_value: IAO:0000589 "distal interphalangeal joint (NCIT)" xsd:string -is_a: UBERON:0009768 ! distal interphalangeal joint - -[Term] -id: NCIT:C12316 ! -property_value: IAO:0000589 "body of uterus (NCIT)" xsd:string -is_a: UBERON:0009853 ! body of uterus - -[Term] -id: NCIT:C32602 ! -property_value: IAO:0000589 "cavum septum pellucidum (NCIT)" xsd:string -is_a: UBERON:0009857 ! cavum septum pellucidum - -[Term] -id: NCIT:C13183 ! -property_value: IAO:0000589 "endosteum (NCIT)" xsd:string -is_a: UBERON:0009859 ! endosteum - -[Term] -id: NCIT:C32067 ! -property_value: IAO:0000589 "anal column (NCIT)" xsd:string -is_a: UBERON:0009882 ! anal column - -[Term] -id: NCIT:C12990 ! -property_value: IAO:0000589 "lobule (NCIT)" xsd:string -is_a: UBERON:0009911 ! lobule - -[Term] -id: NCIT:C13393 ! -property_value: IAO:0000589 "anatomical lobe (NCIT)" xsd:string -is_a: UBERON:0009912 ! anatomical lobe - -[Term] -id: NCIT:C32894 ! -property_value: IAO:0000589 "renal lobe (NCIT)" xsd:string -is_a: UBERON:0009913 ! renal lobe - -[Term] -id: NCIT:C33605 ! -property_value: IAO:0000589 "spleen venous sinus (NCIT)" xsd:string -is_a: UBERON:0009967 ! spleen venous sinus - -[Term] -id: NCIT:C106203 ! -property_value: IAO:0000589 "ureteropelvic junction (NCIT)" xsd:string -is_a: UBERON:0009972 ! ureteropelvic junction - -[Term] -id: NCIT:C106202 ! -property_value: IAO:0000589 "ureterovesical junction (NCIT)" xsd:string -is_a: UBERON:0009973 ! ureterovesical junction - -[Term] -id: NCIT:C32759 ! -property_value: IAO:0000589 "hypothalamo-hypophyseal system (NCIT)" xsd:string -is_a: UBERON:0009976 ! hypothalamo-hypophyseal system - -[Term] -id: NCIT:C69300 ! -property_value: IAO:0000589 "epicondyle (NCIT)" xsd:string -is_a: UBERON:0009978 ! epicondyle - -[Term] -id: NCIT:C83002 ! -property_value: IAO:0000589 "condyle (NCIT)" xsd:string -is_a: UBERON:0009979 ! condyle - -[Term] -id: NCIT:C114186 ! -property_value: IAO:0000589 "condyle of femur (NCIT)" xsd:string -is_a: UBERON:0009980 ! condyle of femur - -[Term] -id: NCIT:C34261 ! -property_value: IAO:0000589 "primary chorionic villus (NCIT)" xsd:string -is_a: UBERON:0009993 ! primary chorionic villus - -[Term] -id: NCIT:C34291 ! -property_value: IAO:0000589 "secondary chorionic villus (NCIT)" xsd:string -is_a: UBERON:0009994 ! secondary chorionic villus - -[Term] -id: NCIT:C34310 ! -property_value: IAO:0000589 "tertiary chorionic villus (NCIT)" xsd:string -is_a: UBERON:0009995 ! tertiary chorionic villus - -[Term] -id: NCIT:C34135 ! -property_value: IAO:0000589 "placental cotyledon (NCIT)" xsd:string -is_a: UBERON:0010008 ! placental cotyledon - -[Term] -id: NCIT:C12447 ! -property_value: IAO:0000589 "collection of basal ganglia (NCIT)" xsd:string -is_a: UBERON:0010011 ! collection of basal ganglia - -[Term] -id: NCIT:C34318 ! -property_value: IAO:0000589 "tubotympanic recess epithelium (NCIT)" xsd:string -is_a: UBERON:0010020 ! tubotympanic recess epithelium - -[Term] -id: NCIT:C32130 ! -property_value: IAO:0000589 "anterior part of tongue (NCIT)" xsd:string -is_a: UBERON:0010032 ! anterior part of tongue - -[Term] -id: NCIT:C12228 ! -property_value: IAO:0000589 "posterior part of tongue (NCIT)" xsd:string -is_a: UBERON:0010033 ! posterior part of tongue - -[Term] -id: NCIT:C32643 ! -property_value: IAO:0000589 "fundic gastric gland (NCIT)" xsd:string -is_a: UBERON:0010038 ! fundic gastric gland - -[Term] -id: NCIT:C32415 ! -property_value: IAO:0000589 "cuboidal epithelium (NCIT)" xsd:string -is_a: UBERON:0010077 ! cuboidal epithelium - -[Term] -id: NCIT:C33529 ! -property_value: IAO:0000589 "seminal vesicle fluid (NCIT)" xsd:string -is_a: UBERON:0010143 ! seminal vesicle fluid - -[Term] -id: NCIT:C52552 ! -property_value: IAO:0000589 "seminal vesicle fluid (NCIT)" xsd:string -is_a: UBERON:0010143 ! seminal vesicle fluid - -[Term] -id: NCIT:C12339 ! -property_value: IAO:0000589 "paraurethral gland (NCIT)" xsd:string -is_a: UBERON:0010145 ! paraurethral gland - -[Term] -id: NCIT:C32575 ! -property_value: IAO:0000589 "eyebrow (NCIT)" xsd:string -is_a: UBERON:0010163 ! eyebrow - -[Term] -id: NCIT:C88212 ! -property_value: IAO:0000589 "coat of hair (NCIT)" xsd:string -is_a: UBERON:0010166 ! coat of hair - -[Term] -id: NCIT:C33189 ! -property_value: IAO:0000589 "nutrient foramen artery (NCIT)" xsd:string -is_a: UBERON:0010176 ! nutrient foramen artery - -[Term] -id: NCIT:C61561 ! -property_value: IAO:0000589 "rete ovarii (NCIT)" xsd:string -is_a: UBERON:0010185 ! rete ovarii - -[Term] -id: NCIT:C49311 ! -property_value: IAO:0000589 "male urethral gland (NCIT)" xsd:string -is_a: UBERON:0010186 ! male urethral gland - -[Term] -id: NCIT:C77657 ! -property_value: IAO:0000589 "nictitating membrane (NCIT)" xsd:string -is_a: UBERON:0010207 ! nictitating membrane - -[Term] -id: NCIT:C92438 ! -property_value: IAO:0000589 "spiral colon (NCIT)" xsd:string -is_a: UBERON:0010239 ! spiral colon - -[Term] -id: NCIT:C77624 ! -property_value: IAO:0000589 "zygomatic gland (NCIT)" xsd:string -is_a: UBERON:0010240 ! zygomatic gland - -[Term] -id: NCIT:C33369 ! -property_value: IAO:0000589 "posterior meningeal artery (NCIT)" xsd:string -is_a: UBERON:0010249 ! posterior meningeal artery - -[Term] -id: NCIT:C32099 ! -property_value: IAO:0000589 "anterior meningeal artery (NCIT)" xsd:string -is_a: UBERON:0010251 ! anterior meningeal artery - -[Term] -id: NCIT:C12989 ! -property_value: IAO:0000589 "episcleral layer of eyeball (NCIT)" xsd:string -is_a: UBERON:0010292 ! episcleral layer of eyeball - -[Term] -id: NCIT:C33652 ! -property_value: IAO:0000589 "substantia propria of sclera (NCIT)" xsd:string -is_a: UBERON:0010295 ! substantia propria of sclera - -[Term] -id: NCIT:C12902 ! -property_value: IAO:0000589 "bulbar conjunctiva (NCIT)" xsd:string -is_a: UBERON:0010306 ! bulbar conjunctiva - -[Term] -id: NCIT:C34263 ! -property_value: IAO:0000589 "primary ossification center (NCIT)" xsd:string -is_a: UBERON:0010356 ! primary ossification center - -[Term] -id: NCIT:C33794 ! -property_value: IAO:0000589 "odontoid tissue (NCIT)" xsd:string -is_a: UBERON:0010365 ! odontoid tissue - -[Term] -id: NCIT:C33428 ! -property_value: IAO:0000589 "pulmonary lobule (NCIT)" xsd:string -is_a: UBERON:0010368 ! pulmonary lobule - -[Term] -id: NCIT:C33787 ! -property_value: IAO:0000589 "tibial vein (NCIT)" xsd:string -is_a: UBERON:0010370 ! tibial vein - -[Term] -id: NCIT:C62432 ! -property_value: IAO:0000589 "uncinate process of pancreas (NCIT)" xsd:string -is_a: UBERON:0010373 ! uncinate process of pancreas - -[Term] -id: NCIT:C12320 ! -property_value: IAO:0000589 "parametrium (NCIT)" xsd:string -is_a: UBERON:0010391 ! parametrium - -[Term] -id: NCIT:C49776 ! -property_value: IAO:0000589 "spleen marginal sinus (NCIT)" xsd:string -is_a: UBERON:0010398 ! spleen marginal sinus - -[Term] -id: NCIT:C49775 ! -property_value: IAO:0000589 "spleen trabecular artery (NCIT)" xsd:string -is_a: UBERON:0010399 ! spleen trabecular artery - -[Term] -id: NCIT:C49779 ! -property_value: IAO:0000589 "spleen trabecular vein (NCIT)" xsd:string -is_a: UBERON:0010400 ! spleen trabecular vein - -[Term] -id: NCIT:C32076 ! -property_value: IAO:0000589 "ocular angle artery (NCIT)" xsd:string -is_a: UBERON:0010408 ! ocular angle artery - -[Term] -id: NCIT:C32856 ! -property_value: IAO:0000589 "internal naris (NCIT)" xsd:string -is_a: UBERON:0010425 ! internal naris - -[Term] -id: NCIT:C32616 ! -property_value: IAO:0000589 "flat bone (NCIT)" xsd:string -is_a: UBERON:0010428 ! flat bone - -[Term] -id: NCIT:C53182 ! -property_value: IAO:0000589 "zygomaticus muscle (NCIT)" xsd:string -is_a: UBERON:0010437 ! zygomaticus muscle - -[Term] -id: NCIT:C33752 ! -property_value: IAO:0000589 "teres muscle (NCIT)" xsd:string -is_a: UBERON:0010467 ! teres muscle - -[Term] -id: NCIT:C33751 ! -property_value: IAO:0000589 "teres minor muscle (NCIT)" xsd:string -is_a: UBERON:0010496 ! teres minor muscle - -[Term] -id: NCIT:C33419 ! -property_value: IAO:0000589 "pseudostratified columnar epithelium (NCIT)" xsd:string -is_a: UBERON:0010498 ! pseudostratified columnar epithelium - -[Term] -id: NCIT:C49316 ! -property_value: IAO:0000589 "pseudostratified columnar epithelium (NCIT)" xsd:string -is_a: UBERON:0010498 ! pseudostratified columnar epithelium - -[Term] -id: NCIT:C13181 ! -property_value: IAO:0000589 "pseudostratified ciliated columnar epithelium (NCIT)" xsd:string -is_a: UBERON:0010499 ! pseudostratified ciliated columnar epithelium - -[Term] -id: NCIT:C33306 ! -property_value: IAO:0000589 "periosteal dura mater (NCIT)" xsd:string -is_a: UBERON:0010505 ! periosteal dura mater - -[Term] -id: NCIT:C33093 ! -property_value: IAO:0000589 "meningeal dura mater (NCIT)" xsd:string -is_a: UBERON:0010506 ! meningeal dura mater - -[Term] -id: NCIT:C34141 ! -property_value: IAO:0000589 "digit mesenchyme (NCIT)" xsd:string -is_a: UBERON:0010702 ! digit mesenchyme - -[Term] -id: NCIT:C32416 ! -property_value: IAO:0000589 "distal tarsal bone (NCIT)" xsd:string -is_a: UBERON:0010721 ! distal tarsal bone - -[Term] -id: NCIT:C12349 ! -property_value: IAO:0000589 "meningeal cluster (NCIT)" xsd:string -is_a: UBERON:0010743 ! meningeal cluster - -[Term] -id: NCIT:C33115 ! -property_value: IAO:0000589 "middle pharyngeal constrictor (NCIT)" xsd:string -is_a: UBERON:0010749 ! middle pharyngeal constrictor - -[Term] -id: NCIT:C13337 ! -property_value: IAO:0000589 "germinal center (NCIT)" xsd:string -is_a: UBERON:0010754 ! germinal center - -[Term] -id: NCIT:C33053 ! -property_value: IAO:0000589 "secondary follicle corona (NCIT)" xsd:string -is_a: UBERON:0010755 ! secondary follicle corona - -[Term] -id: NCIT:C52760 ! -property_value: IAO:0000589 "rib 8 (NCIT)" xsd:string -is_a: UBERON:0010757 ! rib 8 - -[Term] -id: NCIT:C33801 ! -property_value: IAO:0000589 "tragus (NCIT)" xsd:string -is_a: UBERON:0010887 ! tragus - -[Term] -id: NCIT:C33779 ! -property_value: IAO:0000589 "thyrohyoid ligament (NCIT)" xsd:string -is_a: UBERON:0010921 ! thyrohyoid ligament - -[Term] -id: NCIT:C33128 ! -property_value: IAO:0000589 "median thyrohyoid ligament (NCIT)" xsd:string -is_a: UBERON:0010925 ! median thyrohyoid ligament - -[Term] -id: NCIT:C32950 ! -property_value: IAO:0000589 "lateral thyrohyoid ligament (NCIT)" xsd:string -is_a: UBERON:0010926 ! lateral thyrohyoid ligament - -[Term] -id: NCIT:C33778 ! -property_value: IAO:0000589 "thyroepiglotticus muscle (NCIT)" xsd:string -is_a: UBERON:0010927 ! thyroepiglotticus muscle - -[Term] -id: NCIT:C32401 ! -property_value: IAO:0000589 "cricopharyngeus muscle (NCIT)" xsd:string -is_a: UBERON:0010928 ! cricopharyngeus muscle - -[Term] -id: NCIT:C32398 ! -property_value: IAO:0000589 "crico-arytenoid muscle (NCIT)" xsd:string -is_a: UBERON:0010932 ! crico-arytenoid muscle - -[Term] -id: NCIT:C33510 ! -property_value: IAO:0000589 "salpingopharyngeus muscle (NCIT)" xsd:string -is_a: UBERON:0010937 ! salpingopharyngeus muscle - -[Term] -id: NCIT:C33198 ! -property_value: IAO:0000589 "occipitofrontalis muscle (NCIT)" xsd:string -is_a: UBERON:0010946 ! occipitofrontalis muscle - -[Term] -id: NCIT:C52895 ! -property_value: IAO:0000589 "cleidooccipital muscle (NCIT)" xsd:string -is_a: UBERON:0010948 ! cleidooccipital muscle - -[Term] -id: NCIT:C53069 ! -property_value: IAO:0000589 "sternooccipital muscle (NCIT)" xsd:string -is_a: UBERON:0010949 ! sternooccipital muscle - -[Term] -id: NCIT:C32149 ! -property_value: IAO:0000589 "arytenoid muscle (NCIT)" xsd:string -is_a: UBERON:0010958 ! arytenoid muscle - -[Term] -id: NCIT:C32716 ! -property_value: IAO:0000589 "craniocervical muscle (NCIT)" xsd:string -is_a: UBERON:0010959 ! craniocervical muscle - -[Term] -id: NCIT:C32144 ! -property_value: IAO:0000589 "articular cartilage of joint (NCIT)" xsd:string -is_a: UBERON:0010996 ! articular cartilage of joint - -[Term] -id: NCIT:C103454 ! -property_value: IAO:0000589 "iliac fossa (NCIT)" xsd:string -is_a: UBERON:0011015 ! iliac fossa - -[Term] -id: NCIT:C33438 ! -property_value: IAO:0000589 "pyramidalis (NCIT)" xsd:string -is_a: UBERON:0011016 ! pyramidalis - -[Term] -id: NCIT:C32146 ! -property_value: IAO:0000589 "aryepiglotticus muscle (NCIT)" xsd:string -is_a: UBERON:0011025 ! aryepiglotticus muscle - -[Term] -id: NCIT:C33193 ! -property_value: IAO:0000589 "obturator muscle (NCIT)" xsd:string -is_a: UBERON:0011043 ! obturator muscle - -[Term] -id: NCIT:C33192 ! -property_value: IAO:0000589 "obturator internus (NCIT)" xsd:string -is_a: UBERON:0011048 ! obturator internus - -[Term] -id: NCIT:C33843 ! -property_value: IAO:0000589 "uterovesical pouch (NCIT)" xsd:string -is_a: UBERON:0011049 ! uterovesical pouch - -[Term] -id: NCIT:C33730 ! -property_value: IAO:0000589 "thoracic vertebra 8 (NCIT)" xsd:string -is_a: UBERON:0011050 ! thoracic vertebra 8 - -[Term] -id: NCIT:C32908 ! -property_value: IAO:0000589 "lacrimal nerve (NCIT)" xsd:string -is_a: UBERON:0011096 ! lacrimal nerve - -[Term] -id: NCIT:C32890 ! -property_value: IAO:0000589 "synovial joint of pelvic girdle (NCIT)" xsd:string -is_a: UBERON:0011107 ! synovial joint of pelvic girdle - -[Term] -id: NCIT:C32265 ! -property_value: IAO:0000589 "carpometacarpal joint (NCIT)" xsd:string -is_a: UBERON:0011119 ! carpometacarpal joint - -[Term] -id: NCIT:C32402 ! -property_value: IAO:0000589 "cricothyroid joint (NCIT)" xsd:string -is_a: UBERON:0011121 ! cricothyroid joint - -[Term] -id: NCIT:C32397 ! -property_value: IAO:0000589 "cricoarytenoid joint (NCIT)" xsd:string -is_a: UBERON:0011122 ! cricoarytenoid joint - -[Term] -id: NCIT:C98784 ! -property_value: IAO:0000589 "stifle joint (NCIT)" xsd:string -is_a: UBERON:0011123 ! stifle joint - -[Term] -id: NCIT:C32264 ! -property_value: IAO:0000589 "intercarpal joint (NCIT)" xsd:string -is_a: UBERON:0011132 ! intercarpal joint - -[Term] -id: NCIT:C61107 ! -property_value: IAO:0000589 "upper urinary tract (NCIT)" xsd:string -is_a: UBERON:0011143 ! upper urinary tract - -[Term] -id: NCIT:C92593 ! -property_value: IAO:0000589 "pharyngeal arch derived gill (NCIT)" xsd:string -is_a: UBERON:0011150 ! pharyngeal arch derived gill - -[Term] -id: NCIT:C33714 ! -property_value: IAO:0000589 "Sylvian cistern (NCIT)" xsd:string -is_a: UBERON:0011155 ! Sylvian cistern - -[Term] -id: NCIT:C32417 ! -property_value: IAO:0000589 "cuneiform cartilage (NCIT)" xsd:string -is_a: UBERON:0011157 ! cuneiform cartilage - -[Term] -id: NCIT:C32399 ! -property_value: IAO:0000589 "crico-esophageal tendon (NCIT)" xsd:string -is_a: UBERON:0011165 ! crico-esophageal tendon - -[Term] -id: NCIT:C32888 ! -property_value: IAO:0000589 "joint connecting upper and lower jaws (NCIT)" xsd:string -is_a: UBERON:0011171 ! joint connecting upper and lower jaws - -[Term] -id: NCIT:C32384 ! -property_value: IAO:0000589 "corpus spongiosum of penis (NCIT)" xsd:string -is_a: UBERON:0011183 ! corpus spongiosum of penis - -[Term] -id: NCIT:C83191 ! -property_value: IAO:0000589 "epithelium of crypt of Lieberkuhn (NCIT)" xsd:string -is_a: UBERON:0011184 ! epithelium of crypt of Lieberkuhn - -[Term] -id: NCIT:C32669 ! -property_value: IAO:0000589 "gastrointestinal sphincter (NCIT)" xsd:string -is_a: UBERON:0011185 ! gastrointestinal sphincter - -[Term] -id: NCIT:C32678 ! -property_value: IAO:0000589 "Krause's gland (NCIT)" xsd:string -is_a: UBERON:0011186 ! Krause's gland - -[Term] -id: NCIT:C32700 ! -property_value: IAO:0000589 "ventral tubercle of humerus (NCIT)" xsd:string -is_a: UBERON:0011187 ! ventral tubercle of humerus - -[Term] -id: NCIT:C32983 ! -property_value: IAO:0000589 "lesser tubercle of humerus (NCIT)" xsd:string -is_a: UBERON:0011188 ! lesser tubercle of humerus - -[Term] -id: NCIT:C49298 ! -property_value: IAO:0000589 "lamina propria of large intestine (NCIT)" xsd:string -is_a: UBERON:0011189 ! lamina propria of large intestine - -[Term] -id: NCIT:C33025 ! -property_value: IAO:0000589 "lunule of nail (NCIT)" xsd:string -is_a: UBERON:0011190 ! lunule of nail - -[Term] -id: NCIT:C53057 ! -property_value: IAO:0000589 "ophthalmic plexus (NCIT)" xsd:string -is_a: UBERON:0011194 ! ophthalmic plexus - -[Term] -id: NCIT:C48258 ! -property_value: IAO:0000589 "parathyroid epithelium (NCIT)" xsd:string -is_a: UBERON:0011197 ! parathyroid epithelium - -[Term] -id: NCIT:C32927 ! -property_value: IAO:0000589 "muscle layer of large intestine (NCIT)" xsd:string -is_a: UBERON:0011198 ! muscle layer of large intestine - -[Term] -id: NCIT:C63862 ! -property_value: IAO:0000589 "prostatic utricle (NCIT)" xsd:string -is_a: UBERON:0011199 ! prostatic utricle - -[Term] -id: NCIT:C33506 ! -property_value: IAO:0000589 "sacrococcygeal symphysis (NCIT)" xsd:string -is_a: UBERON:0011200 ! sacrococcygeal symphysis - -[Term] -id: NCIT:C33569 ! -property_value: IAO:0000589 "muscle layer of small intestine (NCIT)" xsd:string -is_a: UBERON:0011201 ! muscle layer of small intestine - -[Term] -id: NCIT:C54210 ! -property_value: IAO:0000589 "urachus epithelium (NCIT)" xsd:string -is_a: UBERON:0011202 ! urachus epithelium - -[Term] -id: NCIT:C33448 ! -property_value: IAO:0000589 "rectovesical pouch (NCIT)" xsd:string -is_a: UBERON:0011204 ! rectovesical pouch - -[Term] -id: NCIT:C52954 ! -property_value: IAO:0000589 "longissimus lumborum muscle (NCIT)" xsd:string -is_a: UBERON:0011219 ! longissimus lumborum muscle - -[Term] -id: NCIT:C12503 ! -property_value: IAO:0000589 "mastoid process of temporal bone (NCIT)" xsd:string -is_a: UBERON:0011220 ! mastoid process of temporal bone - -[Term] -id: NCIT:C32435 ! -property_value: IAO:0000589 "deep fascia (NCIT)" xsd:string -is_a: UBERON:0011236 ! deep fascia - -[Term] -id: NCIT:C32068 ! -property_value: IAO:0000589 "gland of anal sac (NCIT)" xsd:string -is_a: UBERON:0011253 ! gland of anal sac - -[Term] -id: NCIT:C32751 ! -property_value: IAO:0000589 "hyoepiglottic ligament (NCIT)" xsd:string -is_a: UBERON:0011311 ! hyoepiglottic ligament - -[Term] -id: NCIT:C52893 ! -property_value: IAO:0000589 "cleidocephalicus muscle (NCIT)" xsd:string -is_a: UBERON:0011364 ! cleidocephalicus muscle - -[Term] -id: NCIT:C52892 ! -property_value: IAO:0000589 "cleidobrachialis muscle (NCIT)" xsd:string -is_a: UBERON:0011366 ! cleidobrachialis muscle - -[Term] -id: NCIT:C52972 ! -property_value: IAO:0000589 "omotransversarius muscle (NCIT)" xsd:string -is_a: UBERON:0011369 ! omotransversarius muscle - -[Term] -id: NCIT:C117980 ! -property_value: IAO:0000589 "sternocephalicus muscle (NCIT)" xsd:string -is_a: UBERON:0011371 ! sternocephalicus muscle - -[Term] -id: NCIT:C12323 ! -property_value: IAO:0000589 "prepuce (NCIT)" xsd:string -is_a: UBERON:0011374 ! prepuce - -[Term] -id: NCIT:C52944 ! -property_value: IAO:0000589 "iliothoracic muscle (NCIT)" xsd:string -is_a: UBERON:0011376 ! iliothoracic muscle - -[Term] -id: NCIT:C52891 ! -property_value: IAO:0000589 "male external urethral sphincter (NCIT)" xsd:string -is_a: UBERON:0011379 ! male external urethral sphincter - -[Term] -id: NCIT:C52692 ! -property_value: IAO:0000589 "inferior pancreaticoduodenal vein (NCIT)" xsd:string -is_a: UBERON:0011383 ! inferior pancreaticoduodenal vein - -[Term] -id: NCIT:C52976 ! -property_value: IAO:0000589 "parotidoauricular muscle (NCIT)" xsd:string -is_a: UBERON:0011385 ! parotidoauricular muscle - -[Term] -id: NCIT:C52898 ! -property_value: IAO:0000589 "constrictor vulvae muscle (NCIT)" xsd:string -is_a: UBERON:0011387 ! constrictor vulvae muscle - -[Term] -id: NCIT:C112234 ! -property_value: IAO:0000589 "bulbospongiosus muscle (NCIT)" xsd:string -is_a: UBERON:0011389 ! bulbospongiosus muscle - -[Term] -id: NCIT:C32842 ! -property_value: IAO:0000589 "blood vessel internal elastic membrane (NCIT)" xsd:string -is_a: UBERON:0011392 ! blood vessel internal elastic membrane - -[Term] -id: NCIT:C52901 ! -property_value: IAO:0000589 "cutaneous trunci muscle (NCIT)" xsd:string -is_a: UBERON:0011415 ! cutaneous trunci muscle - -[Term] -id: NCIT:C52950 ! -property_value: IAO:0000589 "levator nasolabialis muscle (NCIT)" xsd:string -is_a: UBERON:0011464 ! levator nasolabialis muscle - -[Term] -id: NCIT:C53016 ! -property_value: IAO:0000589 "sphincter colli superficialis muscle (NCIT)" xsd:string -is_a: UBERON:0011508 ! sphincter colli superficialis muscle - -[Term] -id: NCIT:C82953 ! -property_value: IAO:0000589 "supraorbital ridge (NCIT)" xsd:string -is_a: UBERON:0011576 ! supraorbital ridge - -[Term] -id: NCIT:C114916 ! -property_value: IAO:0000589 "jaw region (NCIT)" xsd:string -is_a: UBERON:0011595 ! jaw region - -[Term] -id: NCIT:C54205 ! -property_value: IAO:0000589 "gingiva of upper jaw (NCIT)" xsd:string -is_a: UBERON:0011601 ! gingiva of upper jaw - -[Term] -id: NCIT:C54204 ! -property_value: IAO:0000589 "gingiva of lower jaw (NCIT)" xsd:string -is_a: UBERON:0011602 ! gingiva of lower jaw - -[Term] -id: NCIT:C34148 ! -property_value: IAO:0000589 "embryonic cardiovascular system (NCIT)" xsd:string -is_a: UBERON:0011695 ! embryonic cardiovascular system - -[Term] -id: NCIT:C34211 ! -property_value: IAO:0000589 "midgut loop (NCIT)" xsd:string -is_a: UBERON:0011698 ! midgut loop - -[Term] -id: NCIT:C34274 ! -property_value: IAO:0000589 "differentiated genital tubercle (NCIT)" xsd:string -is_a: UBERON:0011757 ! differentiated genital tubercle - -[Term] -id: NCIT:C34196 ! -property_value: IAO:0000589 "jugular lymph sac (NCIT)" xsd:string -is_a: UBERON:0011765 ! jugular lymph sac - -[Term] -id: NCIT:C33845 ! -property_value: IAO:0000589 "utriculosaccular duct (NCIT)" xsd:string -is_a: UBERON:0011774 ! utriculosaccular duct - -[Term] -id: NCIT:C33660 ! -property_value: IAO:0000589 "superficial fascia (NCIT)" xsd:string -is_a: UBERON:0011818 ! superficial fascia - -[Term] -id: NCIT:C32882 ! -property_value: IAO:0000589 "dense irregular connective tissue (NCIT)" xsd:string -is_a: UBERON:0011822 ! dense irregular connective tissue - -[Term] -id: NCIT:C32450 ! -property_value: IAO:0000589 "dense connective tissue (NCIT)" xsd:string -is_a: UBERON:0011823 ! dense connective tissue - -[Term] -id: NCIT:C33007 ! -property_value: IAO:0000589 "loose connective tissue (NCIT)" xsd:string -is_a: UBERON:0011825 ! loose connective tissue - -[Term] -id: NCIT:C92833 ! -property_value: IAO:0000589 "areolar gland (NCIT)" xsd:string -is_a: UBERON:0011827 ! areolar gland - -[Term] -id: NCIT:C33520 ! -property_value: IAO:0000589 "duct of sebaceous gland (NCIT)" xsd:string -is_a: UBERON:0011845 ! duct of sebaceous gland - -[Term] -id: NCIT:C95443 ! -property_value: IAO:0000589 "internal acoustic meatus (NCIT)" xsd:string -is_a: UBERON:0011859 ! internal acoustic meatus - -[Term] -id: NCIT:C32339 ! -property_value: IAO:0000589 "collection of collagen fibrils (NCIT)" xsd:string -is_a: UBERON:0011860 ! collection of collagen fibrils - -[Term] -id: NCIT:C33716 ! -property_value: IAO:0000589 "synarthrosis (NCIT)" xsd:string -is_a: UBERON:0011873 ! synarthrosis - -[Term] -id: NCIT:C32061 ! -property_value: IAO:0000589 "amphiarthrosis (NCIT)" xsd:string -is_a: UBERON:0011874 ! amphiarthrosis - -[Term] -id: NCIT:C32517 ! -property_value: IAO:0000589 "endomysium (NCIT)" xsd:string -is_a: UBERON:0011895 ! endomysium - -[Term] -id: NCIT:C32527 ! -property_value: IAO:0000589 "epimysium (NCIT)" xsd:string -is_a: UBERON:0011899 ! epimysium - -[Term] -id: NCIT:C33299 ! -property_value: IAO:0000589 "perimysium (NCIT)" xsd:string -is_a: UBERON:0011900 ! perimysium - -[Term] -id: NCIT:C12648 ! -property_value: IAO:0000589 "postganglionic autonomic fiber (NCIT)" xsd:string -is_a: UBERON:0011924 ! postganglionic autonomic fiber - -[Term] -id: NCIT:C12624 ! -property_value: IAO:0000589 "preganglionic autonomic fiber (NCIT)" xsd:string -is_a: UBERON:0011925 ! preganglionic autonomic fiber - -[Term] -id: NCIT:C12650 ! -property_value: IAO:0000589 "postganglionic sympathetic fiber (NCIT)" xsd:string -is_a: UBERON:0011926 ! postganglionic sympathetic fiber - -[Term] -id: NCIT:C12649 ! -property_value: IAO:0000589 "postganglionic parasympathetic fiber (NCIT)" xsd:string -is_a: UBERON:0011929 ! postganglionic parasympathetic fiber - -[Term] -id: NCIT:C77661 ! -property_value: IAO:0000589 "stomach glandular region (NCIT)" xsd:string -is_a: UBERON:0011953 ! stomach glandular region - -[Term] -id: NCIT:C77662 ! -property_value: IAO:0000589 "stomach non-glandular region (NCIT)" xsd:string -is_a: UBERON:0011954 ! stomach non-glandular region - -[Term] -id: NCIT:C102354 ! -property_value: IAO:0000589 "transverse tarsal joint (NCIT)" xsd:string -is_a: UBERON:0011962 ! transverse tarsal joint - -[Term] -id: NCIT:C33248 ! -property_value: IAO:0000589 "palate bone (NCIT)" xsd:string -is_a: UBERON:0012071 ! palate bone - -[Term] -id: NCIT:C32237 ! -property_value: IAO:0000589 "buccal salivary gland (NCIT)" xsd:string -is_a: UBERON:0012102 ! buccal salivary gland - -[Term] -id: NCIT:C34305 ! -property_value: IAO:0000589 "stomach primordium (NCIT)" xsd:string -is_a: UBERON:0012172 ! stomach primordium - -[Term] -id: NCIT:C12294 ! -property_value: IAO:0000589 "head or neck skin (NCIT)" xsd:string -is_a: UBERON:0012180 ! head or neck skin - -[Term] -id: NCIT:C33791 ! -property_value: IAO:0000589 "tonsil crypt (NCIT)" xsd:string -is_a: UBERON:0012181 ! tonsil crypt - -[Term] -id: NCIT:C32702 ! -property_value: IAO:0000589 "ovary growing follicle (NCIT)" xsd:string -is_a: UBERON:0012186 ! ovary growing follicle - -[Term] -id: NCIT:C52856 ! -property_value: IAO:0000589 "frontal artery (NCIT)" xsd:string -is_a: UBERON:0012187 ! frontal artery - -[Term] -id: NCIT:C53062 ! -property_value: IAO:0000589 "phrenic vein (NCIT)" xsd:string -is_a: UBERON:0012193 ! phrenic vein - -[Term] -id: NCIT:C33680 ! -property_value: IAO:0000589 "superior intercostal vein (NCIT)" xsd:string -is_a: UBERON:0012194 ! superior intercostal vein - -[Term] -id: NCIT:C77652 ! -property_value: IAO:0000589 "intercostal lymph node (NCIT)" xsd:string -is_a: UBERON:0012236 ! intercostal lymph node - -[Term] -id: NCIT:C32296 ! -property_value: IAO:0000589 "cervical gland (NCIT)" xsd:string -is_a: UBERON:0012247 ! cervical gland - -[Term] -id: NCIT:C12310 ! -property_value: IAO:0000589 "ectocervix (NCIT)" xsd:string -is_a: UBERON:0012249 ! ectocervix - -[Term] -id: NCIT:C54414 ! -property_value: IAO:0000589 "cervix glandular epithelium (NCIT)" xsd:string -is_a: UBERON:0012250 ! cervix glandular epithelium - -[Term] -id: NCIT:C96180 ! -property_value: IAO:0000589 "endocervical epithelium (NCIT)" xsd:string -is_a: UBERON:0012252 ! endocervical epithelium - -[Term] -id: NCIT:C97148 ! -property_value: IAO:0000589 "cervical squamo-columnar junction (NCIT)" xsd:string -is_a: UBERON:0012253 ! cervical squamo-columnar junction - -[Term] -id: NCIT:C60699 ! -property_value: IAO:0000589 "periampullary region of duodenum (NCIT)" xsd:string -is_a: UBERON:0012273 ! periampullary region of duodenum - -[Term] -id: NCIT:C22725 ! -property_value: IAO:0000589 "gland of nasal mucosa (NCIT)" xsd:string -is_a: UBERON:0012278 ! gland of nasal mucosa - -[Term] -id: NCIT:C94826 ! -property_value: IAO:0000589 "chromaffin paraganglion (NCIT)" xsd:string -is_a: UBERON:0012279 ! chromaffin paraganglion - -[Term] -id: NCIT:C77620 ! -property_value: IAO:0000589 "perianal sebaceous gland (NCIT)" xsd:string -is_a: UBERON:0012281 ! perianal sebaceous gland - -[Term] -id: NCIT:C33091 ! -property_value: IAO:0000589 "male membranous urethra (NCIT)" xsd:string -is_a: UBERON:0012302 ! male membranous urethra - -[Term] -id: NCIT:C12337 ! -property_value: IAO:0000589 "ureteral orifice (NCIT)" xsd:string -is_a: UBERON:0012303 ! ureteral orifice - -[Term] -id: NCIT:C52850 ! -property_value: IAO:0000589 "cervical artery (NCIT)" xsd:string -is_a: UBERON:0012320 ! cervical artery - -[Term] -id: NCIT:C77659 ! -property_value: IAO:0000589 "nasal-associated lymphoid tissue (NCIT)" xsd:string -is_a: UBERON:0012330 ! nasal-associated lymphoid tissue - -[Term] -id: NCIT:C12318 ! -property_value: IAO:0000589 "broad ligament of uterus (NCIT)" xsd:string -is_a: UBERON:0012332 ! broad ligament of uterus - -[Term] -id: NCIT:C12689 ! -property_value: IAO:0000589 "cauda equina (NCIT)" xsd:string -is_a: UBERON:0012337 ! cauda equina - -[Term] -id: NCIT:C94494 ! -property_value: IAO:0000589 "subserosa (NCIT)" xsd:string -is_a: UBERON:0012375 ! subserosa - -[Term] -id: NCIT:C54223 ! -property_value: IAO:0000589 "retromolar triangle (NCIT)" xsd:string -is_a: UBERON:0012376 ! retromolar triangle - -[Term] -id: NCIT:C32206 ! -property_value: IAO:0000589 "muscle layer of urinary bladder (NCIT)" xsd:string -is_a: UBERON:0012378 ! muscle layer of urinary bladder - -[Term] -id: NCIT:C33112 ! -property_value: IAO:0000589 "layer of microvilli (NCIT)" xsd:string -is_a: UBERON:0012423 ! layer of microvilli - -[Term] -id: NCIT:C33634 ! -property_value: IAO:0000589 "striated border microvillus layer (NCIT)" xsd:string -is_a: UBERON:0012425 ! striated border microvillus layer - -[Term] -id: NCIT:C13051 ! -property_value: IAO:0000589 "hematopoietic tissue (NCIT)" xsd:string -is_a: UBERON:0012429 ! hematopoietic tissue - -[Term] -id: NCIT:C13821 ! -property_value: IAO:0000589 "mechanoreceptor (NCIT)" xsd:string -is_a: UBERON:0012449 ! mechanoreceptor - -[Term] -id: NCIT:C13171 ! -property_value: IAO:0000589 "Meissner's corpuscle (NCIT)" xsd:string -is_a: UBERON:0012450 ! Meissner's corpuscle - -[Term] -id: NCIT:C13819 ! -property_value: IAO:0000589 "sensory receptor (NCIT)" xsd:string -is_a: UBERON:0012451 ! sensory receptor - -[Term] -id: NCIT:C13175 ! -property_value: IAO:0000589 "Ruffini nerve ending (NCIT)" xsd:string -is_a: UBERON:0012457 ! Ruffini nerve ending - -[Term] -id: NCIT:C32737 ! -property_value: IAO:0000589 "hepatogastric ligament (NCIT)" xsd:string -is_a: UBERON:0012471 ! hepatogastric ligament - -[Term] -id: NCIT:C54189 ! -property_value: IAO:0000589 "colorectum (NCIT)" xsd:string -is_a: UBERON:0012652 ! colorectum - -[Term] -id: NCIT:C103222 ! -property_value: IAO:0000589 "popliteal area (NCIT)" xsd:string -is_a: UBERON:0013069 ! popliteal area - -[Term] -id: NCIT:C32292 ! -property_value: IAO:0000589 "sulcus of brain (NCIT)" xsd:string -is_a: UBERON:0013118 ! sulcus of brain - -[Term] -id: NCIT:C32377 ! -property_value: IAO:0000589 "coronary ligament of liver (NCIT)" xsd:string -is_a: UBERON:0013138 ! coronary ligament of liver - -[Term] -id: NCIT:C32997 ! -property_value: IAO:0000589 "ligament of liver (NCIT)" xsd:string -is_a: UBERON:0013139 ! ligament of liver - -[Term] -id: NCIT:C33719 ! -property_value: IAO:0000589 "systemic vein (NCIT)" xsd:string -is_a: UBERON:0013140 ! systemic vein - -[Term] -id: NCIT:C33109 ! -property_value: IAO:0000589 "capillary bed (NCIT)" xsd:string -is_a: UBERON:0013141 ! capillary bed - -[Term] -id: NCIT:C34259 ! -property_value: IAO:0000589 "future brain vesicle (NCIT)" xsd:string -is_a: UBERON:0013150 ! future brain vesicle - -[Term] -id: NCIT:C32310 ! -property_value: IAO:0000589 "choroidal artery (NCIT)" xsd:string -is_a: UBERON:0013151 ! choroidal artery - -[Term] -id: NCIT:C32137 ! -property_value: IAO:0000589 "arachnoid villus (NCIT)" xsd:string -is_a: UBERON:0013153 ! arachnoid villus - -[Term] -id: NCIT:C12237 ! -property_value: IAO:0000589 "vallecula of cerebellum (NCIT)" xsd:string -is_a: UBERON:0013166 ! vallecula of cerebellum - -[Term] -id: NCIT:C33777 ! -property_value: IAO:0000589 "thyroepiglottic ligament (NCIT)" xsd:string -is_a: UBERON:0013168 ! thyroepiglottic ligament - -[Term] -id: NCIT:C32403 ! -property_value: IAO:0000589 "cricothyroid ligament (NCIT)" xsd:string -is_a: UBERON:0013171 ! cricothyroid ligament - -[Term] -id: NCIT:C32405 ! -property_value: IAO:0000589 "cricotracheal ligament (NCIT)" xsd:string -is_a: UBERON:0013172 ! cricotracheal ligament - -[Term] -id: NCIT:C32117 ! -property_value: IAO:0000589 "anterior part of tympanic bone (NCIT)" xsd:string -is_a: UBERON:0013173 ! anterior part of tympanic bone - -[Term] -id: NCIT:C33243 ! -property_value: IAO:0000589 "ovarian cortex (NCIT)" xsd:string -is_a: UBERON:0013191 ! ovarian cortex - -[Term] -id: NCIT:C33245 ! -property_value: IAO:0000589 "ovarian medulla (NCIT)" xsd:string -is_a: UBERON:0013192 ! ovarian medulla - -[Term] -id: NCIT:C32755 ! -property_value: IAO:0000589 "hypogastrium (NCIT)" xsd:string -is_a: UBERON:0013203 ! hypogastrium - -[Term] -id: NCIT:C32294 ! -property_value: IAO:0000589 "cerumen gland (NCIT)" xsd:string -is_a: UBERON:0013211 ! cerumen gland - -[Term] -id: NCIT:C32680 ! -property_value: IAO:0000589 "Ciaccio's gland (NCIT)" xsd:string -is_a: UBERON:0013224 ! Ciaccio's gland - -[Term] -id: NCIT:C74586 ! -property_value: IAO:0000589 "accessory lacrimal gland (NCIT)" xsd:string -is_a: UBERON:0013226 ! accessory lacrimal gland - -[Term] -id: NCIT:C32679 ! -property_value: IAO:0000589 "sweat gland of eyelid (NCIT)" xsd:string -is_a: UBERON:0013228 ! sweat gland of eyelid - -[Term] -id: NCIT:C77616 ! -property_value: IAO:0000589 "nictitans gland (NCIT)" xsd:string -is_a: UBERON:0013230 ! nictitans gland - -[Term] -id: NCIT:C34325 ! -property_value: IAO:0000589 "vaginal plate (NCIT)" xsd:string -is_a: UBERON:0013244 ! vaginal plate - -[Term] -id: NCIT:C34297 ! -property_value: IAO:0000589 "sinovaginal bulb (NCIT)" xsd:string -is_a: UBERON:0013245 ! sinovaginal bulb - -[Term] -id: NCIT:C77638 ! -property_value: IAO:0000589 "cranial cavity (NCIT)" xsd:string -is_a: UBERON:0013411 ! cranial cavity - -[Term] -id: NCIT:C33584 ! -property_value: IAO:0000589 "spheno-maxillary fossa (NCIT)" xsd:string -is_a: UBERON:0013454 ! spheno-maxillary fossa - -[Term] -id: NCIT:C33742 ! -property_value: IAO:0000589 "temporal fossa (NCIT)" xsd:string -is_a: UBERON:0013463 ! temporal fossa - -[Term] -id: NCIT:C33898 ! -property_value: IAO:0000589 "zygomatic fossa (NCIT)" xsd:string -is_a: UBERON:0013468 ! zygomatic fossa - -[Term] -id: NCIT:C12253 ! -property_value: IAO:0000589 "upper esophagus (NCIT)" xsd:string -is_a: UBERON:0013472 ! upper esophagus - -[Term] -id: NCIT:C12255 ! -property_value: IAO:0000589 "lower esophagus (NCIT)" xsd:string -is_a: UBERON:0013473 ! lower esophagus - -[Term] -id: NCIT:C12254 ! -property_value: IAO:0000589 "middle part of esophagus (NCIT)" xsd:string -is_a: UBERON:0013474 ! middle part of esophagus - -[Term] -id: NCIT:C32524 ! -property_value: IAO:0000589 "epidermal ridge of digit (NCIT)" xsd:string -is_a: UBERON:0013487 ! epidermal ridge of digit - -[Term] -id: NCIT:C34129 ! -property_value: IAO:0000589 "cloacal sphincter (NCIT)" xsd:string -is_a: UBERON:0013501 ! cloacal sphincter - -[Term] -id: NCIT:C94868 ! -property_value: IAO:0000589 "Brodmann area (NCIT)" xsd:string -is_a: UBERON:0013529 ! Brodmann area - -[Term] -id: NCIT:C33545 ! -property_value: IAO:0000589 "short bone (NCIT)" xsd:string -is_a: UBERON:0013630 ! short bone - -[Term] -id: NCIT:C13092 ! -property_value: IAO:0000589 "prostate gland lateral lobe (NCIT)" xsd:string -is_a: UBERON:0013637 ! prostate gland lateral lobe - -[Term] -id: NCIT:C53052 ! -property_value: IAO:0000589 "masseteric artery (NCIT)" xsd:string -is_a: UBERON:0013648 ! masseteric artery - -[Term] -id: NCIT:C89806 ! -property_value: IAO:0000589 "buttock (NCIT)" xsd:string -is_a: UBERON:0013691 ! buttock - -[Term] -id: NCIT:C33424 ! -property_value: IAO:0000589 "strand of pubic hair (NCIT)" xsd:string -is_a: UBERON:0013698 ! strand of pubic hair - -[Term] -id: NCIT:C34230 ! -property_value: IAO:0000589 "notochordal canal (NCIT)" xsd:string -is_a: UBERON:0013704 ! notochordal canal - -[Term] -id: NCIT:C32547 ! -property_value: IAO:0000589 "superficial inguinal ring (NCIT)" xsd:string -is_a: UBERON:0013717 ! superficial inguinal ring - -[Term] -id: NCIT:C32832 ! -property_value: IAO:0000589 "deep inguinal ring (NCIT)" xsd:string -is_a: UBERON:0013721 ! deep inguinal ring - -[Term] -id: NCIT:C32212 ! -property_value: IAO:0000589 "capillary blood (NCIT)" xsd:string -is_a: UBERON:0013757 ! capillary blood - -[Term] -id: NCIT:C32491 ! -property_value: IAO:0000589 "external cervical os (NCIT)" xsd:string -is_a: UBERON:0013760 ! external cervical os - -[Term] -id: NCIT:C32147 ! -property_value: IAO:0000589 "aryepiglottic fold (NCIT)" xsd:string -is_a: UBERON:0014385 ! aryepiglottic fold - -[Term] -id: NCIT:C103818 ! -property_value: IAO:0000589 "iliac crest (NCIT)" xsd:string -is_a: UBERON:0014437 ! iliac crest - -[Term] -id: NCIT:C92208 ! -property_value: IAO:0000589 "extraperitoneal space (NCIT)" xsd:string -is_a: UBERON:0014456 ! extraperitoneal space - -[Term] -id: NCIT:C102292 ! -property_value: IAO:0000589 "distal interphalangeal joint of digit 3 (NCIT)" xsd:string -is_a: UBERON:0014506 ! distal interphalangeal joint of digit 3 - -[Term] -id: NCIT:C32639 ! -property_value: IAO:0000589 "frontal sulcus (NCIT)" xsd:string -is_a: UBERON:0014639 ! frontal sulcus - -[Term] -id: NCIT:C102291 ! -property_value: IAO:0000589 "distal interphalangeal joint of digit 2 (NCIT)" xsd:string -is_a: UBERON:0014677 ! distal interphalangeal joint of digit 2 - -[Term] -id: NCIT:C102293 ! -property_value: IAO:0000589 "distal interphalangeal joint of digit 4 (NCIT)" xsd:string -is_a: UBERON:0014679 ! distal interphalangeal joint of digit 4 - -[Term] -id: NCIT:C102294 ! -property_value: IAO:0000589 "distal interphalangeal joint of digit 5 (NCIT)" xsd:string -is_a: UBERON:0014680 ! distal interphalangeal joint of digit 5 - -[Term] -id: NCIT:C33744 ! -property_value: IAO:0000589 "temporal sulcus (NCIT)" xsd:string -is_a: UBERON:0014687 ! temporal sulcus - -[Term] -id: NCIT:C33127 ! -property_value: IAO:0000589 "middle temporal sulcus (NCIT)" xsd:string -is_a: UBERON:0014689 ! middle temporal sulcus - -[Term] -id: NCIT:C32083 ! -property_value: IAO:0000589 "anterior choroidal artery (NCIT)" xsd:string -is_a: UBERON:0014696 ! anterior choroidal artery - -[Term] -id: NCIT:C33352 ! -property_value: IAO:0000589 "posterior choroidal artery (NCIT)" xsd:string -is_a: UBERON:0014697 ! posterior choroidal artery - -[Term] -id: NCIT:C32828 ! -property_value: IAO:0000589 "interlobular duct (NCIT)" xsd:string -is_a: UBERON:0014716 ! interlobular duct - -[Term] -id: NCIT:C32820 ! -property_value: IAO:0000589 "intercalated duct (NCIT)" xsd:string -is_a: UBERON:0014725 ! intercalated duct - -[Term] -id: NCIT:C49267 ! -property_value: IAO:0000589 "intercalated duct of pancreas (NCIT)" xsd:string -is_a: UBERON:0014726 ! intercalated duct of pancreas - -[Term] -id: NCIT:C49266 ! -property_value: IAO:0000589 "intercalated duct of salivary gland (NCIT)" xsd:string -is_a: UBERON:0014727 ! intercalated duct of salivary gland - -[Term] -id: NCIT:C33635 ! -property_value: IAO:0000589 "striated duct of salivary gland (NCIT)" xsd:string -is_a: UBERON:0014729 ! striated duct of salivary gland - -[Term] -id: NCIT:C32714 ! -property_value: IAO:0000589 "osteon (NCIT)" xsd:string -is_a: UBERON:0014730 ! osteon - -[Term] -id: NCIT:C32713 ! -property_value: IAO:0000589 "haversian canal (NCIT)" xsd:string -is_a: UBERON:0014731 ! haversian canal - -[Term] -id: NCIT:C54057 ! -property_value: IAO:0000589 "cerebellopontine angle (NCIT)" xsd:string -is_a: UBERON:0014908 ! cerebellopontine angle - -[Term] -id: NCIT:C83196 ! -property_value: IAO:0000589 "perivascular space (NCIT)" xsd:string -is_a: UBERON:0014930 ! perivascular space - -[Term] -id: NCIT:C33592 ! -property_value: IAO:0000589 "uterine spiral artery (NCIT)" xsd:string -is_a: UBERON:0015171 ! uterine spiral artery - -[Term] -id: NCIT:C32346 ! -property_value: IAO:0000589 "neck of tooth (NCIT)" xsd:string -is_a: UBERON:0015181 ! neck of tooth - -[Term] -id: NCIT:C43630 ! -property_value: IAO:0000589 "hilar portion of hepatic duct (NCIT)" xsd:string -is_a: UBERON:0015423 ! hilar portion of hepatic duct - -[Term] -id: NCIT:C32555 ! -property_value: IAO:0000589 "blood vessel external elastic membrane (NCIT)" xsd:string -is_a: UBERON:0015433 ! blood vessel external elastic membrane - -[Term] -id: NCIT:C77651 ! -property_value: IAO:0000589 "tracheobronchial lymph node (NCIT)" xsd:string -is_a: UBERON:0015472 ! tracheobronchial lymph node - -[Term] -id: NCIT:C116164 ! -property_value: IAO:0000589 "axilla skin (NCIT)" xsd:string -is_a: UBERON:0015474 ! axilla skin - -[Term] -id: NCIT:C77675 ! -property_value: IAO:0000589 "sural nerve (NCIT)" xsd:string -is_a: UBERON:0015488 ! sural nerve - -[Term] -id: NCIT:C32216 ! -property_value: IAO:0000589 "body of corpus callosum (NCIT)" xsd:string -is_a: UBERON:0015510 ! body of corpus callosum - -[Term] -id: NCIT:C32636 ! -property_value: IAO:0000589 "frontal gyrus (NCIT)" xsd:string -is_a: UBERON:0015593 ! frontal gyrus - -[Term] -id: NCIT:C32675 ! -property_value: IAO:0000589 "genu of corpus callosum (NCIT)" xsd:string -is_a: UBERON:0015599 ! genu of corpus callosum - -[Term] -id: NCIT:C33496 ! -property_value: IAO:0000589 "rostrum of corpus callosum (NCIT)" xsd:string -is_a: UBERON:0015703 ! rostrum of corpus callosum - -[Term] -id: NCIT:C12513 ! -property_value: IAO:0000589 "sagittal sinus (NCIT)" xsd:string -is_a: UBERON:0015704 ! sagittal sinus - -[Term] -id: NCIT:C33610 ! -property_value: IAO:0000589 "splenium of the corpus callosum (NCIT)" xsd:string -is_a: UBERON:0015708 ! splenium of the corpus callosum - -[Term] -id: NCIT:C77640 ! -property_value: IAO:0000589 "hepatic lymph node (NCIT)" xsd:string -is_a: UBERON:0015859 ! hepatic lymph node - -[Term] -id: NCIT:C92222 ! -property_value: IAO:0000589 "gastric lymph node (NCIT)" xsd:string -is_a: UBERON:0015863 ! gastric lymph node - -[Term] -id: NCIT:C77649 ! -property_value: IAO:0000589 "retropharyngeal lymph node (NCIT)" xsd:string -is_a: UBERON:0015869 ! retropharyngeal lymph node - -[Term] -id: NCIT:C12363 ! -property_value: IAO:0000589 "pelvic lymph node (NCIT)" xsd:string -is_a: UBERON:0015876 ! pelvic lymph node - -[Term] -id: NCIT:C32761 ! -property_value: IAO:0000589 "common iliac lymph node (NCIT)" xsd:string -is_a: UBERON:0015878 ! common iliac lymph node - -[Term] -id: NCIT:C88143 ! -property_value: IAO:0000589 "external iliac lymph node (NCIT)" xsd:string -is_a: UBERON:0015880 ! external iliac lymph node - -[Term] -id: NCIT:C88142 ! -property_value: IAO:0000589 "internal iliac lymph node (NCIT)" xsd:string -is_a: UBERON:0015881 ! internal iliac lymph node - -[Term] -id: NCIT:C32420 ! -property_value: IAO:0000589 "cymba conchae of pinna (NCIT)" xsd:string -is_a: UBERON:0015885 ! cymba conchae of pinna - -[Term] -id: NCIT:C33495 ! -property_value: IAO:0000589 "root of nail (NCIT)" xsd:string -is_a: UBERON:0015886 ! root of nail - -[Term] -id: NCIT:C102716 ! -property_value: IAO:0000589 "superficial lymph node (NCIT)" xsd:string -is_a: UBERON:0015917 ! superficial lymph node - -[Term] -id: NCIT:C77653 ! -property_value: IAO:0000589 "ileocolic lymph node (NCIT)" xsd:string -is_a: UBERON:0016378 ! ileocolic lymph node - -[Term] -id: NCIT:C77654 ! -property_value: IAO:0000589 "prescapular lymph node (NCIT)" xsd:string -is_a: UBERON:0016382 ! prescapular lymph node - -[Term] -id: NCIT:C77643 ! -property_value: IAO:0000589 "paraaortic lymph node (NCIT)" xsd:string -is_a: UBERON:0016386 ! paraaortic lymph node - -[Term] -id: NCIT:C103429 ! -property_value: IAO:0000589 "anterior auricular lymph node (NCIT)" xsd:string -is_a: UBERON:0016394 ! anterior auricular lymph node - -[Term] -id: NCIT:C33048 ! -property_value: IAO:0000589 "male breast (NCIT)" xsd:string -is_a: UBERON:0016410 ! male breast - -[Term] -id: NCIT:C62484 ! -property_value: IAO:0000589 "chest wall (NCIT)" xsd:string -is_a: UBERON:0016435 ! chest wall - -[Term] -id: NCIT:C33375 ! -property_value: IAO:0000589 "posterior pole of lens (NCIT)" xsd:string -is_a: UBERON:0016459 ! posterior pole of lens - -[Term] -id: NCIT:C32120 ! -property_value: IAO:0000589 "antihelix (NCIT)" xsd:string -is_a: UBERON:0016466 ! antihelix - -[Term] -id: NCIT:C32121 ! -property_value: IAO:0000589 "antitragus (NCIT)" xsd:string -is_a: UBERON:0016467 ! antitragus - -[Term] -id: NCIT:C32232 ! -property_value: IAO:0000589 "bronchial lymph node (NCIT)" xsd:string -is_a: UBERON:0016481 ! bronchial lymph node - -[Term] -id: NCIT:C12889 ! -property_value: IAO:0000589 "auditory system (NCIT)" xsd:string -is_a: UBERON:0016490 ! auditory system - -[Term] -id: NCIT:C114187 ! -property_value: IAO:0000589 "epicondyle of humerus (NCIT)" xsd:string -is_a: UBERON:0016497 ! epicondyle of humerus - -[Term] -id: NCIT:C12352 ! -property_value: IAO:0000589 "frontal lobe (NCIT)" xsd:string -is_a: UBERON:0016525 ! frontal lobe - -[Term] -id: NCIT:C93171 ! -property_value: IAO:0000589 "phlegm (NCIT)" xsd:string -is_a: UBERON:0016552 ! phlegm - -[Term] -id: NCIT:C74603 ! -property_value: IAO:0000589 "neurovascular bundle (NCIT)" xsd:string -is_a: UBERON:0016630 ! neurovascular bundle - -[Term] -id: NCIT:C12357 ! -property_value: IAO:0000589 "craniopharyngeal canal (NCIT)" xsd:string -is_a: UBERON:0016881 ! craniopharyngeal canal - -[Term] -id: NCIT:C32917 ! -property_value: IAO:0000589 "lamina lucida (NCIT)" xsd:string -is_a: UBERON:0016914 ! lamina lucida - -[Term] -id: NCIT:C32854 ! -property_value: IAO:0000589 "internal mammary vein (NCIT)" xsd:string -is_a: UBERON:0017646 ! internal mammary vein - -[Term] -id: NCIT:C93232 ! -property_value: IAO:0000589 "mammary lobe (NCIT)" xsd:string -is_a: UBERON:0018140 ! mammary lobe - -[Term] -id: NCIT:C32834 ! -property_value: IAO:0000589 "labyrinthine artery (NCIT)" xsd:string -is_a: UBERON:0018231 ! labyrinthine artery - -[Term] -id: NCIT:C75444 ! -property_value: IAO:0000589 "layer of muscle tissue (NCIT)" xsd:string -is_a: UBERON:0018260 ! layer of muscle tissue - -[Term] -id: NCIT:C32051 ! -property_value: IAO:0000589 "adrenal tissue (NCIT)" xsd:string -is_a: UBERON:0018303 ! adrenal tissue - -[Term] -id: NCIT:C60732 ! -property_value: IAO:0000589 "molar tooth 3 (NCIT)" xsd:string -is_a: UBERON:0018377 ! molar tooth 3 - -[Term] -id: NCIT:C32103 ! -property_value: IAO:0000589 "anterior pole of lens (NCIT)" xsd:string -is_a: UBERON:0019208 ! anterior pole of lens - -[Term] -id: NCIT:C33196 ! -property_value: IAO:0000589 "occipital sulcus (NCIT)" xsd:string -is_a: UBERON:0019303 ! occipital sulcus - -[Term] -id: NCIT:C60574 ! -property_value: IAO:0000589 "intraorbital lacrimal gland (NCIT)" xsd:string -is_a: UBERON:0019324 ! intraorbital lacrimal gland - -[Term] -id: NCIT:C60564 ! -property_value: IAO:0000589 "exorbital lacrimal gland (NCIT)" xsd:string -is_a: UBERON:0019325 ! exorbital lacrimal gland - -[Term] -id: NCIT:C33394 ! -property_value: IAO:0000589 "precentral sulcus (NCIT)" xsd:string -is_a: UBERON:0022252 ! precentral sulcus - -[Term] -id: NCIT:C12267 ! -property_value: IAO:0000589 "splenic flexure of colon (NCIT)" xsd:string -is_a: UBERON:0022276 ! splenic flexure of colon - -[Term] -id: NCIT:C12266 ! -property_value: IAO:0000589 "hepatic flexure of colon (NCIT)" xsd:string -is_a: UBERON:0022277 ! hepatic flexure of colon - -[Term] -id: NCIT:C33596 ! -property_value: IAO:0000589 "splenic arteriole (NCIT)" xsd:string -is_a: UBERON:0022292 ! splenic arteriole - -[Term] -id: NCIT:C33159 ! -property_value: IAO:0000589 "nasociliary nerve (NCIT)" xsd:string -is_a: UBERON:0022300 ! nasociliary nerve - -[Term] -id: NCIT:C32189 ! -property_value: IAO:0000589 "basal layer of endometrium (NCIT)" xsd:string -is_a: UBERON:0022355 ! basal layer of endometrium - -[Term] -id: NCIT:C32642 ! -property_value: IAO:0000589 "outer layer of endometrium (NCIT)" xsd:string -is_a: UBERON:0022356 ! outer layer of endometrium - -[Term] -id: NCIT:C41168 ! -property_value: IAO:0000589 "lymphomyeloid tissue (NCIT)" xsd:string -is_a: UBERON:0034769 ! lymphomyeloid tissue - -[Term] -id: NCIT:C33831 ! -property_value: IAO:0000589 "uncus of parahippocampal gyrus (NCIT)" xsd:string -is_a: UBERON:0034773 ! uncus of parahippocampal gyrus - -[Term] -id: NCIT:C34106 ! -property_value: IAO:0000589 "angioblastic cord (NCIT)" xsd:string -is_a: UBERON:0034877 ! angioblastic cord - -[Term] -id: NCIT:C41834 ! -property_value: IAO:0000589 "pineal parenchyma (NCIT)" xsd:string -is_a: UBERON:0034907 ! pineal parenchyma - -[Term] -id: NCIT:C13084 ! -property_value: IAO:0000589 "perforant path (NCIT)" xsd:string -is_a: UBERON:0034931 ! perforant path - -[Term] -id: NCIT:C33219 ! -property_value: IAO:0000589 "pars plana of ciliary body (NCIT)" xsd:string -is_a: UBERON:0034936 ! pars plana of ciliary body - -[Term] -id: NCIT:C34262 ! -property_value: IAO:0000589 "embryonic lymph sac (NCIT)" xsd:string -is_a: UBERON:0034953 ! embryonic lymph sac - -[Term] -id: NCIT:C34285 ! -property_value: IAO:0000589 "retroperitoneal embryonic lymph sac (NCIT)" xsd:string -is_a: UBERON:0034958 ! retroperitoneal embryonic lymph sac - -[Term] -id: NCIT:C25787 ! -property_value: IAO:0000589 "epithelial layer of duct (NCIT)" xsd:string -is_a: UBERON:0034969 ! epithelial layer of duct - -[Term] -id: NCIT:C97112 ! -property_value: IAO:0000589 "aortic body (NCIT)" xsd:string -is_a: UBERON:0034971 ! aortic body - -[Term] -id: NCIT:C105446 ! -property_value: IAO:0000589 "ischial tuberosity (NCIT)" xsd:string -is_a: UBERON:0034983 ! ischial tuberosity - -[Term] -id: NCIT:C12846 ! -property_value: IAO:0000589 "sacral nerve plexus (NCIT)" xsd:string -is_a: UBERON:0034986 ! sacral nerve plexus - -[Term] -id: NCIT:C12845 ! -property_value: IAO:0000589 "lumbar nerve plexus (NCIT)" xsd:string -is_a: UBERON:0034987 ! lumbar nerve plexus - -[Term] -id: NCIT:C13822 ! -property_value: IAO:0000589 "thermoreceptor (NCIT)" xsd:string -is_a: UBERON:0035018 ! thermoreceptor - -[Term] -id: NCIT:C33677 ! -property_value: IAO:0000589 "superior rectal artery (NCIT)" xsd:string -is_a: UBERON:0035040 ! superior rectal artery - -[Term] -id: NCIT:C77674 ! -property_value: IAO:0000589 "plantar nerve (NCIT)" xsd:string -is_a: UBERON:0035109 ! plantar nerve - -[Term] -id: NCIT:C32838 ! -property_value: IAO:0000589 "internal cerebral vein (NCIT)" xsd:string -is_a: UBERON:0035152 ! internal cerebral vein - -[Term] -id: NCIT:C29667 ! -property_value: IAO:0000589 "entire surface of organism (NCIT)" xsd:string -is_a: UBERON:0035159 ! entire surface of organism - -[Term] -id: NCIT:C63705 ! -property_value: IAO:0000589 "infraclavicular lymph node (NCIT)" xsd:string -is_a: UBERON:0035162 ! infraclavicular lymph node - -[Term] -id: NCIT:C13095 ! -property_value: IAO:0000589 "posterior surface of prostate (NCIT)" xsd:string -is_a: UBERON:0035165 ! posterior surface of prostate - -[Term] -id: NCIT:C25268 ! -property_value: IAO:0000589 "infraclavicular region (NCIT)" xsd:string -is_a: UBERON:0035168 ! infraclavicular region - -[Term] -id: NCIT:C88141 ! -property_value: IAO:0000589 "obturator lymph node (NCIT)" xsd:string -is_a: UBERON:0035171 ! obturator lymph node - -[Term] -id: NCIT:C81285 ! -property_value: IAO:0000589 "right ear (NCIT)" xsd:string -is_a: UBERON:0035174 ! right ear - -[Term] -id: NCIT:C12252 ! -property_value: IAO:0000589 "abdominal part of esophagus (NCIT)" xsd:string -is_a: UBERON:0035177 ! abdominal part of esophagus - -[Term] -id: NCIT:C33549 ! -property_value: IAO:0000589 "sigmoid artery (NCIT)" xsd:string -is_a: UBERON:0035180 ! sigmoid artery - -[Term] -id: NCIT:C32251 ! -property_value: IAO:0000589 "calcarine artery (NCIT)" xsd:string -is_a: UBERON:0035183 ! calcarine artery - -[Term] -id: NCIT:C34326 ! -property_value: IAO:0000589 "valve of foramen ovale (NCIT)" xsd:string -is_a: UBERON:0035186 ! valve of foramen ovale - -[Term] -id: NCIT:C52743 ! -property_value: IAO:0000589 "plantar metatarsal artery (NCIT)" xsd:string -is_a: UBERON:0035195 ! plantar metatarsal artery - -[Term] -id: NCIT:C33663 ! -property_value: IAO:0000589 "superficial lymphatic vessel (NCIT)" xsd:string -is_a: UBERON:0035198 ! superficial lymphatic vessel - -[Term] -id: NCIT:C32667 ! -property_value: IAO:0000589 "gastrocolic ligament (NCIT)" xsd:string -is_a: UBERON:0035201 ! gastrocolic ligament - -[Term] -id: NCIT:C98188 ! -property_value: IAO:0000589 "occipital lymph node (NCIT)" xsd:string -is_a: UBERON:0035204 ! occipital lymph node - -[Term] -id: NCIT:C92602 ! -property_value: IAO:0000589 "deep fibular nerve (NCIT)" xsd:string -is_a: UBERON:0035207 ! deep fibular nerve - -[Term] -id: NCIT:C89787 ! -property_value: IAO:0000589 "paracolic gutter (NCIT)" xsd:string -is_a: UBERON:0035210 ! paracolic gutter - -[Term] -id: NCIT:C48589 ! -property_value: IAO:0000589 "basal zone of heart (NCIT)" xsd:string -is_a: UBERON:0035213 ! basal zone of heart - -[Term] -id: NCIT:C12251 ! -property_value: IAO:0000589 "thoracic part of esophagus (NCIT)" xsd:string -is_a: UBERON:0035216 ! thoracic part of esophagus - -[Term] -id: NCIT:C32853 ! -property_value: IAO:0000589 "parasternal lymph node (NCIT)" xsd:string -is_a: UBERON:0035219 ! parasternal lymph node - -[Term] -id: NCIT:C33372 ! -property_value: IAO:0000589 "posterior parietal artery (NCIT)" xsd:string -is_a: UBERON:0035222 ! posterior parietal artery - -[Term] -id: NCIT:C32113 ! -property_value: IAO:0000589 "anterior temporal artery (NCIT)" xsd:string -is_a: UBERON:0035225 ! anterior temporal artery - -[Term] -id: NCIT:C12235 ! -property_value: IAO:0000589 "tonsillar fossa (NCIT)" xsd:string -is_a: UBERON:0035228 ! tonsillar fossa - -[Term] -id: NCIT:C33664 ! -property_value: IAO:0000589 "superficial middle cerebral vein (NCIT)" xsd:string -is_a: UBERON:0035231 ! superficial middle cerebral vein - -[Term] -id: NCIT:C52688 ! -property_value: IAO:0000589 "medial circumflex femoral vein (NCIT)" xsd:string -is_a: UBERON:0035234 ! medial circumflex femoral vein - -[Term] -id: NCIT:C32837 ! -property_value: IAO:0000589 "branch of internal carotid artery (NCIT)" xsd:string -is_a: UBERON:0035237 ! branch of internal carotid artery - -[Term] -id: NCIT:C12240 ! -property_value: IAO:0000589 "posterior wall of oropharynx (NCIT)" xsd:string -is_a: UBERON:0035240 ! posterior wall of oropharynx - -[Term] -id: NCIT:C32070 ! -property_value: IAO:0000589 "anal sinus (NCIT)" xsd:string -is_a: UBERON:0035243 ! anal sinus - -[Term] -id: NCIT:C33365 ! -property_value: IAO:0000589 "posterior longitudinal ligament (NCIT)" xsd:string -is_a: UBERON:0035246 ! posterior longitudinal ligament - -[Term] -id: NCIT:C33360 ! -property_value: IAO:0000589 "posterior external jugular vein (NCIT)" xsd:string -is_a: UBERON:0035249 ! posterior external jugular vein - -[Term] -id: NCIT:C53125 ! -property_value: IAO:0000589 "left subcostal vein (NCIT)" xsd:string -is_a: UBERON:0035252 ! left subcostal vein - -[Term] -id: NCIT:C33139 ! -property_value: IAO:0000589 "mons pubis (NCIT)" xsd:string -is_a: UBERON:0035258 ! mons pubis - -[Term] -id: NCIT:C33384 ! -property_value: IAO:0000589 "posterior temporal artery (NCIT)" xsd:string -is_a: UBERON:0035261 ! posterior temporal artery - -[Term] -id: NCIT:C32649 ! -property_value: IAO:0000589 "neck of gallbladder (NCIT)" xsd:string -is_a: UBERON:0035267 ! neck of gallbladder - -[Term] -id: NCIT:C12242 ! -property_value: IAO:0000589 "roof of nasopharynx (NCIT)" xsd:string -is_a: UBERON:0035270 ! roof of nasopharynx - -[Term] -id: NCIT:C33701 ! -property_value: IAO:0000589 "superior thoracic artery (NCIT)" xsd:string -is_a: UBERON:0035273 ! superior thoracic artery - -[Term] -id: NCIT:C32525 ! -property_value: IAO:0000589 "epigastrium (NCIT)" xsd:string -is_a: UBERON:0035276 ! epigastrium - -[Term] -id: NCIT:C12903 ! -property_value: IAO:0000589 "supraclavicular lymph node (NCIT)" xsd:string -is_a: UBERON:0035279 ! supraclavicular lymph node - -[Term] -id: NCIT:C12239 ! -property_value: IAO:0000589 "lateral wall of oropharynx (NCIT)" xsd:string -is_a: UBERON:0035286 ! lateral wall of oropharynx - -[Term] -id: NCIT:C12305 ! -property_value: IAO:0000589 "axillary tail of breast (NCIT)" xsd:string -is_a: UBERON:0035289 ! axillary tail of breast - -[Term] -id: NCIT:C33385 ! -property_value: IAO:0000589 "branch of posterior tibial artery (NCIT)" xsd:string -is_a: UBERON:0035292 ! branch of posterior tibial artery - -[Term] -id: NCIT:C81259 ! -property_value: IAO:0000589 "left ear (NCIT)" xsd:string -is_a: UBERON:0035295 ! left ear - -[Term] -id: NCIT:C45911 ! -property_value: IAO:0000589 "tuberculum sellae (NCIT)" xsd:string -is_a: UBERON:0035298 ! tuberculum sellae - -[Term] -id: NCIT:C33826 ! -property_value: IAO:0000589 "branch of ulnar artery (NCIT)" xsd:string -is_a: UBERON:0035304 ! branch of ulnar artery - -[Term] -id: NCIT:C33867 ! -property_value: IAO:0000589 "branch of vertebral artery (NCIT)" xsd:string -is_a: UBERON:0035307 ! branch of vertebral artery - -[Term] -id: NCIT:C13090 ! -property_value: IAO:0000589 "inferolateral surface of prostate (NCIT)" xsd:string -is_a: UBERON:0035310 ! inferolateral surface of prostate - -[Term] -id: NCIT:C12249 ! -property_value: IAO:0000589 "posterior wall of laryngopharynx (NCIT)" xsd:string -is_a: UBERON:0035313 ! posterior wall of laryngopharynx - -[Term] -id: NCIT:C13086 ! -property_value: IAO:0000589 "prostatic capsule (NCIT)" xsd:string -is_a: UBERON:0035316 ! prostatic capsule - -[Term] -id: NCIT:C32096 ! -property_value: IAO:0000589 "anterior median fissure of spinal cord (NCIT)" xsd:string -is_a: UBERON:0035319 ! anterior median fissure of spinal cord - -[Term] -id: NCIT:C33474 ! -property_value: IAO:0000589 "right common iliac artery (NCIT)" xsd:string -is_a: UBERON:0035322 ! right common iliac artery - -[Term] -id: NCIT:C12303 ! -property_value: IAO:0000589 "upper outer quadrant of breast (NCIT)" xsd:string -is_a: UBERON:0035328 ! upper outer quadrant of breast - -[Term] -id: NCIT:C13088 ! -property_value: IAO:0000589 "base of prostate (NCIT)" xsd:string -is_a: UBERON:0035331 ! base of prostate - -[Term] -id: NCIT:C33585 ! -property_value: IAO:0000589 "sphenoparietal sinus (NCIT)" xsd:string -is_a: UBERON:0035338 ! sphenoparietal sinus - -[Term] -id: NCIT:C13093 ! -property_value: IAO:0000589 "posterior lobe of prostate (NCIT)" xsd:string -is_a: UBERON:0035341 ! posterior lobe of prostate - -[Term] -id: NCIT:C33114 ! -property_value: IAO:0000589 "branch of middle cerebral artery (NCIT)" xsd:string -is_a: UBERON:0035350 ! branch of middle cerebral artery - -[Term] -id: NCIT:C32227 ! -property_value: IAO:0000589 "branch of brachial artery (NCIT)" xsd:string -is_a: UBERON:0035359 ! branch of brachial artery - -[Term] -id: NCIT:C12304 ! -property_value: IAO:0000589 "lower outer quadrant of breast (NCIT)" xsd:string -is_a: UBERON:0035365 ! lower outer quadrant of breast - -[Term] -id: NCIT:C32107 ! -property_value: IAO:0000589 "anterior surface of kidney (NCIT)" xsd:string -is_a: UBERON:0035368 ! anterior surface of kidney - -[Term] -id: NCIT:C98189 ! -property_value: IAO:0000589 "retroperitoneal lymph node (NCIT)" xsd:string -is_a: UBERON:0035371 ! retroperitoneal lymph node - -[Term] -id: NCIT:C12881 ! -property_value: IAO:0000589 "small cardiac vein (NCIT)" xsd:string -is_a: UBERON:0035374 ! small cardiac vein - -[Term] -id: NCIT:C33807 ! -property_value: IAO:0000589 "transverse fold of rectum (NCIT)" xsd:string -is_a: UBERON:0035377 ! transverse fold of rectum - -[Term] -id: NCIT:C32082 ! -property_value: IAO:0000589 "branch of anterior cerebral artery (NCIT)" xsd:string -is_a: UBERON:0035380 ! branch of anterior cerebral artery - -[Term] -id: NCIT:C12244 ! -property_value: IAO:0000589 "lateral wall of nasopharynx (NCIT)" xsd:string -is_a: UBERON:0035383 ! lateral wall of nasopharynx - -[Term] -id: NCIT:C33580 ! -property_value: IAO:0000589 "space of Mall (NCIT)" xsd:string -is_a: UBERON:0035386 ! space of Mall - -[Term] -id: NCIT:C32422 ! -property_value: IAO:0000589 "cystic vein (NCIT)" xsd:string -is_a: UBERON:0035392 ! cystic vein - -[Term] -id: NCIT:C32958 ! -property_value: IAO:0000589 "branch of left coronary artery (NCIT)" xsd:string -is_a: UBERON:0035395 ! branch of left coronary artery - -[Term] -id: NCIT:C32552 ! -property_value: IAO:0000589 "branch of external carotid artery (NCIT)" xsd:string -is_a: UBERON:0035398 ! branch of external carotid artery - -[Term] -id: NCIT:C12243 ! -property_value: IAO:0000589 "posterior wall of nasopharynx (NCIT)" xsd:string -is_a: UBERON:0035401 ! posterior wall of nasopharynx - -[Term] -id: NCIT:C33678 ! -property_value: IAO:0000589 "superior hypophysial artery (NCIT)" xsd:string -is_a: UBERON:0035404 ! superior hypophysial artery - -[Term] -id: NCIT:C32963 ! -property_value: IAO:0000589 "left inguinal part of abdomen (NCIT)" xsd:string -is_a: UBERON:0035410 ! left inguinal part of abdomen - -[Term] -id: NCIT:C32459 ! -property_value: IAO:0000589 "diaphragma sellae (NCIT)" xsd:string -is_a: UBERON:0035416 ! diaphragma sellae - -[Term] -id: NCIT:C32095 ! -property_value: IAO:0000589 "anterior longitudinal ligament (NCIT)" xsd:string -is_a: UBERON:0035419 ! anterior longitudinal ligament - -[Term] -id: NCIT:C12874 ! -property_value: IAO:0000589 "circumflex branch of left coronary artery (NCIT)" xsd:string -is_a: UBERON:0035422 ! circumflex branch of left coronary artery - -[Term] -id: NCIT:C32584 ! -property_value: IAO:0000589 "falx cerebelli (NCIT)" xsd:string -is_a: UBERON:0035425 ! falx cerebelli - -[Term] -id: NCIT:C33345 ! -property_value: IAO:0000589 "postcapillary venule (NCIT)" xsd:string -is_a: UBERON:0035428 ! postcapillary venule - -[Term] -id: NCIT:C94820 ! -property_value: IAO:0000589 "mediastinal pleura (NCIT)" xsd:string -is_a: UBERON:0035431 ! mediastinal pleura - -[Term] -id: NCIT:C53131 ! -property_value: IAO:0000589 "right suprarenal vein (NCIT)" xsd:string -is_a: UBERON:0035435 ! right suprarenal vein - -[Term] -id: NCIT:C34213 ! -property_value: IAO:0000589 "mucoid tissue (NCIT)" xsd:string -is_a: UBERON:0035438 ! mucoid tissue - -[Term] -id: NCIT:C13087 ! -property_value: IAO:0000589 "apex of prostate (NCIT)" xsd:string -is_a: UBERON:0035441 ! apex of prostate - -[Term] -id: NCIT:C33810 ! -property_value: IAO:0000589 "urogenital diaphragm (NCIT)" xsd:string -is_a: UBERON:0035445 ! urogenital diaphragm - -[Term] -id: NCIT:C12250 ! -property_value: IAO:0000589 "cervical part of esophagus (NCIT)" xsd:string -is_a: UBERON:0035450 ! cervical part of esophagus - -[Term] -id: NCIT:C32935 ! -property_value: IAO:0000589 "laryngeal ventricle (NCIT)" xsd:string -is_a: UBERON:0035453 ! laryngeal ventricle - -[Term] -id: NCIT:C32101 ! -property_value: IAO:0000589 "anterior parietal artery (NCIT)" xsd:string -is_a: UBERON:0035462 ! anterior parietal artery - -[Term] -id: NCIT:C32514 ! -property_value: IAO:0000589 "endometrial cavity (NCIT)" xsd:string -is_a: UBERON:0035465 ! endometrial cavity - -[Term] -id: NCIT:C32393 ! -property_value: IAO:0000589 "costodiaphragmatic recess (NCIT)" xsd:string -is_a: UBERON:0035468 ! costodiaphragmatic recess - -[Term] -id: NCIT:C32895 ! -property_value: IAO:0000589 "posterior surface of kidney (NCIT)" xsd:string -is_a: UBERON:0035471 ! posterior surface of kidney - -[Term] -id: NCIT:C53123 ! -property_value: IAO:0000589 "right subcostal vein (NCIT)" xsd:string -is_a: UBERON:0035474 ! right subcostal vein - -[Term] -id: NCIT:C12302 ! -property_value: IAO:0000589 "lower inner quadrant of breast (NCIT)" xsd:string -is_a: UBERON:0035477 ! lower inner quadrant of breast - -[Term] -id: NCIT:C13091 ! -property_value: IAO:0000589 "surface of prostate (NCIT)" xsd:string -is_a: UBERON:0035480 ! surface of prostate - -[Term] -id: NCIT:C53138 ! -property_value: IAO:0000589 "left suprarenal vein (NCIT)" xsd:string -is_a: UBERON:0035483 ! left suprarenal vein - -[Term] -id: NCIT:C32195 ! -property_value: IAO:0000589 "branch of basilar artery (NCIT)" xsd:string -is_a: UBERON:0035489 ! branch of basilar artery - -[Term] -id: NCIT:C32777 ! -property_value: IAO:0000589 "inferior hypophysial artery (NCIT)" xsd:string -is_a: UBERON:0035492 ! inferior hypophysial artery - -[Term] -id: NCIT:C33031 ! -property_value: IAO:0000589 "hilum of lymph node (NCIT)" xsd:string -is_a: UBERON:0035495 ! hilum of lymph node - -[Term] -id: NCIT:C32670 ! -property_value: IAO:0000589 "gastrophrenic ligament (NCIT)" xsd:string -is_a: UBERON:0035498 ! gastrophrenic ligament - -[Term] -id: NCIT:C13174 ! -property_value: IAO:0000589 "unencapsulated tactile receptor (NCIT)" xsd:string -is_a: UBERON:0035501 ! unencapsulated tactile receptor - -[Term] -id: NCIT:C33479 ! -property_value: IAO:0000589 "right inguinal part of abdomen (NCIT)" xsd:string -is_a: UBERON:0035505 ! right inguinal part of abdomen - -[Term] -id: NCIT:C33351 ! -property_value: IAO:0000589 "branch of posterior cerebral artery (NCIT)" xsd:string -is_a: UBERON:0035508 ! branch of posterior cerebral artery - -[Term] -id: NCIT:C13058 ! -property_value: IAO:0000589 "special sense organ system (NCIT)" xsd:string -is_a: UBERON:0035514 ! special sense organ system - -[Term] -id: NCIT:C32097 ! -property_value: IAO:0000589 "anterior mediastinal lymph node (NCIT)" xsd:string -is_a: UBERON:0035520 ! anterior mediastinal lymph node - -[Term] -id: NCIT:C13089 ! -property_value: IAO:0000589 "anterior surface of prostate (NCIT)" xsd:string -is_a: UBERON:0035523 ! anterior surface of prostate - -[Term] -id: NCIT:C92603 ! -property_value: IAO:0000589 "superficial fibular nerve (NCIT)" xsd:string -is_a: UBERON:0035526 ! superficial fibular nerve - -[Term] -id: NCIT:C32957 ! -property_value: IAO:0000589 "left common iliac artery (NCIT)" xsd:string -is_a: UBERON:0035529 ! left common iliac artery - -[Term] -id: NCIT:C32440 ! -property_value: IAO:0000589 "deep middle cerebral vein (NCIT)" xsd:string -is_a: UBERON:0035532 ! deep middle cerebral vein - -[Term] -id: NCIT:C32647 ! -property_value: IAO:0000589 "body of gallbladder (NCIT)" xsd:string -is_a: UBERON:0035536 ! body of gallbladder - -[Term] -id: NCIT:C32535 ! -property_value: IAO:0000589 "esophageal artery (NCIT)" xsd:string -is_a: UBERON:0035539 ! esophageal artery - -[Term] -id: NCIT:C12301 ! -property_value: IAO:0000589 "upper inner quadrant of breast (NCIT)" xsd:string -is_a: UBERON:0035542 ! upper inner quadrant of breast - -[Term] -id: NCIT:C32439 ! -property_value: IAO:0000589 "deep lymphatic vessel (NCIT)" xsd:string -is_a: UBERON:0035545 ! deep lymphatic vessel - -[Term] -id: NCIT:C33666 ! -property_value: IAO:0000589 "superficial vein (NCIT)" xsd:string -is_a: UBERON:0035550 ! superficial vein - -[Term] -id: NCIT:C32444 ! -property_value: IAO:0000589 "deep vein (NCIT)" xsd:string -is_a: UBERON:0035552 ! deep vein - -[Term] -id: NCIT:C32574 ! -property_value: IAO:0000589 "ocular adnexa (NCIT)" xsd:string -is_a: UBERON:0035639 ! ocular adnexa - -[Term] -id: NCIT:C52687 ! -property_value: IAO:0000589 "anterior facial vein (NCIT)" xsd:string -is_a: UBERON:0035675 ! anterior facial vein - -[Term] -id: NCIT:C28745 ! -property_value: IAO:0000589 "subsegmental lymph node (NCIT)" xsd:string -is_a: UBERON:0035765 ! subsegmental lymph node - -[Term] -id: NCIT:C13094 ! -property_value: IAO:0000589 "median lobe of prostate (NCIT)" xsd:string -is_a: UBERON:0035766 ! median lobe of prostate - -[Term] -id: NCIT:C12930 ! -property_value: IAO:0000589 "intrapulmonary bronchus (NCIT)" xsd:string -is_a: UBERON:0035767 ! intrapulmonary bronchus - -[Term] -id: NCIT:C12280 ! -property_value: IAO:0000589 "subglottis (NCIT)" xsd:string -is_a: UBERON:0036068 ! subglottis - -[Term] -id: NCIT:C34315 ! -property_value: IAO:0000589 "tracheoesophageal fold (NCIT)" xsd:string -is_a: UBERON:0036069 ! tracheoesophageal fold - -[Term] -id: NCIT:C34316 ! -property_value: IAO:0000589 "tracheoesophageal septum (NCIT)" xsd:string -is_a: UBERON:0036070 ! tracheoesophageal septum - -[Term] -id: NCIT:C54188 ! -property_value: IAO:0000589 "rectosigmoid junction (NCIT)" xsd:string -is_a: UBERON:0036214 ! rectosigmoid junction - -[Term] -id: NCIT:C106201 ! -property_value: IAO:0000589 "interdigital space (NCIT)" xsd:string -is_a: UBERON:0036252 ! interdigital space - -[Term] -id: NCIT:C34191 ! -property_value: IAO:0000589 "iliac lymph sac (NCIT)" xsd:string -is_a: UBERON:0036256 ! iliac lymph sac - -[Term] -id: NCIT:C61360 ! -property_value: IAO:0000589 "uterine ligament (NCIT)" xsd:string -is_a: UBERON:0036262 ! uterine ligament - -[Term] -id: NCIT:C12279 ! -property_value: IAO:0000589 "supraglottic part of larynx (NCIT)" xsd:string -is_a: UBERON:0036263 ! supraglottic part of larynx - -[Term] -id: NCIT:C12236 ! -property_value: IAO:0000589 "tonsillar pillar (NCIT)" xsd:string -is_a: UBERON:0036274 ! tonsillar pillar - -[Term] -id: NCIT:C12226 ! -property_value: IAO:0000589 "mucosa of lip (NCIT)" xsd:string -is_a: UBERON:0036294 ! mucosa of lip - -[Term] -id: NCIT:C54419 ! -property_value: IAO:0000589 "renal pelvis/ureter (NCIT)" xsd:string -is_a: UBERON:0036295 ! renal pelvis/ureter - -[Term] -id: NCIT:C33561 ! -property_value: IAO:0000589 "skin of face (NCIT)" xsd:string -is_a: UBERON:1000021 ! skin of face - -[Term] -id: NCIT:C77954 ! -property_value: IAO:0000589 "Zymbal's gland (NCIT)" xsd:string -is_a: UBERON:1000022 ! Zymbal's gland - -[Term] -id: NCIT:C33603 ! -property_value: IAO:0000589 "spleen pulp (NCIT)" xsd:string -is_a: UBERON:1000023 ! spleen pulp - -[Term] -id: NCIT:C32370 ! -property_value: IAO:0000589 "continuous capillary (NCIT)" xsd:string -is_a: UBERON:2005259 ! continuous capillary - -[Term] -id: NCIT:C32595 ! -property_value: IAO:0000589 "fenestrated capillary (NCIT)" xsd:string -is_a: UBERON:2005260 ! fenestrated capillary - -[Term] -id: NCIT:C33164 ! -property_value: IAO:0000589 "neck of humerus (NCIT)" xsd:string -is_a: UBERON:4200172 ! neck of humerus - -[Term] -id: NCIT:C32739 ! -property_value: IAO:0000589 "high endothelial venule (NCIT)" xsd:string -is_a: UBERON:8410037 ! high endothelial venule - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-ncit.owl b/src/ontology/bridge/uberon-bridge-to-ncit.owl index 69b3d4d3e5..1d18b0f867 100644 --- a/src/ontology/bridge/uberon-bridge-to-ncit.owl +++ b/src/ontology/bridge/uberon-bridge-to-ncit.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - - - neural spine (NCIT) - process of vertebra (NCIT) - NCIT:C116112 + jaw region (NCIT) @@ -690,8 +369,7 @@ - axilla skin (NCIT) - NCIT:C116164 + axilla skin (NCIT) @@ -700,8 +378,7 @@ - pulmonary trunk (NCIT) - NCIT:C116918 + pulmonary trunk (NCIT) @@ -710,8 +387,7 @@ - vastus medialis (NCIT) - NCIT:C117736 + vastus medialis (NCIT) @@ -720,8 +396,7 @@ - tracheobronchial tree (NCIT) - NCIT:C117875 + tracheobronchial tree (NCIT) @@ -730,8 +405,7 @@ - sternocephalicus muscle (NCIT) - NCIT:C117980 + sternocephalicus muscle (NCIT) @@ -740,8 +414,7 @@ - lumbar lymph node (NCIT) - NCIT:C118775 + lumbar lymph node (NCIT) @@ -750,8 +423,7 @@ - heart ventricle wall (NCIT) - NCIT:C119295 + heart ventricle wall (NCIT) @@ -760,8 +432,7 @@ - right eye (NCIT) - NCIT:C119333 + right eye (NCIT) @@ -770,8 +441,7 @@ - left eye (NCIT) - NCIT:C119334 + left eye (NCIT) @@ -780,8 +450,7 @@ - duodenal papilla (NCIT) - NCIT:C119578 + duodenal papilla (NCIT) @@ -790,8 +459,7 @@ - humerus diaphysis (NCIT) - NCIT:C120671 + humerus diaphysis (NCIT) @@ -800,8 +468,7 @@ - diaphysis of radius (NCIT) - NCIT:C120674 + diaphysis of radius (NCIT) @@ -810,8 +477,7 @@ - diaphysis of ulna (NCIT) - NCIT:C120676 + diaphysis of ulna (NCIT) @@ -820,8 +486,7 @@ - interstitial fluid (NCIT) - NCIT:C120839 + interstitial fluid (NCIT) @@ -830,8 +495,7 @@ - air sac (NCIT) - NCIT:C120926 + air sac (NCIT) @@ -840,8 +504,7 @@ - anatomical entity (NCIT) - NCIT:C12219 + anatomical entity (NCIT) @@ -850,8 +513,7 @@ - lip (NCIT) - NCIT:C12220 + lip (NCIT) @@ -860,8 +522,7 @@ - mucosa of upper lip (NCIT) - NCIT:C12224 + mucosa of upper lip (NCIT) @@ -870,8 +531,7 @@ - mucosa of lower lip (NCIT) - NCIT:C12225 + mucosa of lower lip (NCIT) @@ -880,8 +540,7 @@ - mucosa of lip (NCIT) - NCIT:C12226 + mucosa of lip (NCIT) @@ -890,8 +549,7 @@ - posterior part of tongue (NCIT) - NCIT:C12228 + posterior part of tongue (NCIT) @@ -900,8 +558,7 @@ - secondary palate (NCIT) - NCIT:C12229 + secondary palate (NCIT) @@ -910,8 +567,7 @@ - hard palate (NCIT) - NCIT:C12230 + hard palate (NCIT) @@ -920,8 +576,7 @@ - soft palate (NCIT) - NCIT:C12231 + soft palate (NCIT) @@ -930,8 +585,7 @@ - palatine uvula (NCIT) - NCIT:C12232 + palatine uvula (NCIT) @@ -940,8 +594,7 @@ - submandibular gland (NCIT) - NCIT:C12233 + submandibular gland (NCIT) @@ -950,8 +603,7 @@ - sublingual gland (NCIT) - NCIT:C12234 + sublingual gland (NCIT) @@ -960,8 +612,7 @@ - tonsillar fossa (NCIT) - NCIT:C12235 + tonsillar fossa (NCIT) @@ -970,8 +621,7 @@ - tonsillar pillar (NCIT) - NCIT:C12236 + tonsillar pillar (NCIT) @@ -980,8 +630,7 @@ - vallecula of cerebellum (NCIT) - NCIT:C12237 + vallecula of cerebellum (NCIT) @@ -990,8 +639,7 @@ - lateral wall of oropharynx (NCIT) - NCIT:C12239 + lateral wall of oropharynx (NCIT) @@ -1000,8 +648,7 @@ - posterior wall of oropharynx (NCIT) - NCIT:C12240 + posterior wall of oropharynx (NCIT) @@ -1010,8 +657,7 @@ - roof of nasopharynx (NCIT) - NCIT:C12242 + roof of nasopharynx (NCIT) @@ -1020,8 +666,7 @@ - posterior wall of nasopharynx (NCIT) - NCIT:C12243 + posterior wall of nasopharynx (NCIT) @@ -1030,8 +675,7 @@ - lateral wall of nasopharynx (NCIT) - NCIT:C12244 + lateral wall of nasopharynx (NCIT) @@ -1040,8 +684,7 @@ - hypopharynx (NCIT) - NCIT:C12246 + hypopharynx (NCIT) @@ -1050,8 +693,7 @@ - posterior wall of laryngopharynx (NCIT) - NCIT:C12249 + posterior wall of laryngopharynx (NCIT) @@ -1060,8 +702,7 @@ - cervical part of esophagus (NCIT) - NCIT:C12250 + cervical part of esophagus (NCIT) @@ -1070,8 +711,7 @@ - thoracic part of esophagus (NCIT) - NCIT:C12251 + thoracic part of esophagus (NCIT) @@ -1080,8 +720,7 @@ - abdominal part of esophagus (NCIT) - NCIT:C12252 + abdominal part of esophagus (NCIT) @@ -1090,8 +729,7 @@ - upper esophagus (NCIT) - NCIT:C12253 + upper esophagus (NCIT) @@ -1100,8 +738,7 @@ - middle part of esophagus (NCIT) - NCIT:C12254 + middle part of esophagus (NCIT) @@ -1110,8 +747,7 @@ - lower esophagus (NCIT) - NCIT:C12255 + lower esophagus (NCIT) @@ -1120,8 +756,7 @@ - cardia of stomach (NCIT) - NCIT:C12256 + cardia of stomach (NCIT) @@ -1130,8 +765,7 @@ - fundus of stomach (NCIT) - NCIT:C12257 + fundus of stomach (NCIT) @@ -1140,8 +774,7 @@ - body of stomach (NCIT) - NCIT:C12258 + body of stomach (NCIT) @@ -1150,8 +783,7 @@ - pyloric antrum (NCIT) - NCIT:C12259 + pyloric antrum (NCIT) @@ -1160,8 +792,7 @@ - pylorus (NCIT) - NCIT:C12260 + pylorus (NCIT) @@ -1170,8 +801,7 @@ - lesser curvature of stomach (NCIT) - NCIT:C12261 + lesser curvature of stomach (NCIT) @@ -1180,8 +810,7 @@ - greater curvature of stomach (NCIT) - NCIT:C12262 + greater curvature of stomach (NCIT) @@ -1190,8 +819,7 @@ - duodenum (NCIT) - NCIT:C12263 + duodenum (NCIT) @@ -1200,8 +828,7 @@ - ascending colon (NCIT) - NCIT:C12265 + ascending colon (NCIT) @@ -1210,8 +837,7 @@ - hepatic flexure of colon (NCIT) - NCIT:C12266 + hepatic flexure of colon (NCIT) @@ -1220,8 +846,7 @@ - splenic flexure of colon (NCIT) - NCIT:C12267 + splenic flexure of colon (NCIT) @@ -1230,8 +855,7 @@ - descending colon (NCIT) - NCIT:C12268 + descending colon (NCIT) @@ -1240,8 +864,7 @@ - head of pancreas (NCIT) - NCIT:C12269 + head of pancreas (NCIT) @@ -1250,8 +873,7 @@ - body of pancreas (NCIT) - NCIT:C12270 + body of pancreas (NCIT) @@ -1260,8 +882,7 @@ - tail of pancreas (NCIT) - NCIT:C12271 + tail of pancreas (NCIT) @@ -1270,8 +891,7 @@ - ventral pancreatic duct (NCIT) - NCIT:C12272 + ventral pancreatic duct (NCIT) @@ -1280,8 +900,7 @@ - middle ear (NCIT) - NCIT:C12274 + middle ear (NCIT) @@ -1290,8 +909,7 @@ - maxillary sinus (NCIT) - NCIT:C12275 + maxillary sinus (NCIT) @@ -1300,8 +918,7 @@ - ethmoid sinus (NCIT) - NCIT:C12276 + ethmoid sinus (NCIT) @@ -1310,8 +927,7 @@ - frontal sinus (NCIT) - NCIT:C12277 + frontal sinus (NCIT) @@ -1320,8 +936,7 @@ - sphenoidal sinus (NCIT) - NCIT:C12278 + sphenoidal sinus (NCIT) @@ -1330,8 +945,7 @@ - supraglottic part of larynx (NCIT) - NCIT:C12279 + supraglottic part of larynx (NCIT) @@ -1340,8 +954,7 @@ - subglottis (NCIT) - NCIT:C12280 + subglottis (NCIT) @@ -1350,8 +963,7 @@ - laryngeal cartilage (NCIT) - NCIT:C12281 + laryngeal cartilage (NCIT) @@ -1360,8 +972,7 @@ - main bronchus (NCIT) - NCIT:C12284 + main bronchus (NCIT) @@ -1370,8 +981,7 @@ - upper lobe of lung (NCIT) - NCIT:C12285 + upper lobe of lung (NCIT) @@ -1380,8 +990,7 @@ - middle lobe of right lung (NCIT) - NCIT:C12286 + middle lobe of right lung (NCIT) @@ -1390,8 +999,7 @@ - lower lobe of lung (NCIT) - NCIT:C12287 + lower lobe of lung (NCIT) @@ -1400,8 +1008,7 @@ - mandible (NCIT) - NCIT:C12290 + mandible (NCIT) @@ -1410,8 +1017,7 @@ - skin of lip (NCIT) - NCIT:C12291 + skin of lip (NCIT) @@ -1420,8 +1026,7 @@ - external ear (NCIT) - NCIT:C12292 + external ear (NCIT) @@ -1430,8 +1035,7 @@ - head or neck skin (NCIT) - NCIT:C12294 + head or neck skin (NCIT) @@ -1440,8 +1044,7 @@ - skin of trunk (NCIT) - NCIT:C12295 + skin of trunk (NCIT) @@ -1450,8 +1053,7 @@ - forelimb skin (NCIT) - NCIT:C12296 + forelimb skin (NCIT) @@ -1460,8 +1062,7 @@ - hindlimb skin (NCIT) - NCIT:C12297 + hindlimb skin (NCIT) @@ -1470,8 +1071,7 @@ - retroperitoneal space (NCIT) - NCIT:C12298 + retroperitoneal space (NCIT) @@ -1480,8 +1080,7 @@ - nipple (NCIT) - NCIT:C12299 + nipple (NCIT) @@ -1490,8 +1089,7 @@ - upper inner quadrant of breast (NCIT) - NCIT:C12301 + upper inner quadrant of breast (NCIT) @@ -1500,8 +1098,7 @@ - lower inner quadrant of breast (NCIT) - NCIT:C12302 + lower inner quadrant of breast (NCIT) @@ -1510,8 +1107,7 @@ - upper outer quadrant of breast (NCIT) - NCIT:C12303 + upper outer quadrant of breast (NCIT) @@ -1520,8 +1116,7 @@ - lower outer quadrant of breast (NCIT) - NCIT:C12304 + lower outer quadrant of breast (NCIT) @@ -1530,8 +1125,7 @@ - axillary tail of breast (NCIT) - NCIT:C12305 + axillary tail of breast (NCIT) @@ -1540,8 +1134,7 @@ - labium majora (NCIT) - NCIT:C12306 + labium majora (NCIT) @@ -1550,8 +1143,7 @@ - labium minora (NCIT) - NCIT:C12307 + labium minora (NCIT) @@ -1560,8 +1152,7 @@ - clitoris (NCIT) - NCIT:C12308 + clitoris (NCIT) @@ -1570,8 +1161,7 @@ - endocervix (NCIT) - NCIT:C12309 + endocervix (NCIT) @@ -1580,8 +1170,7 @@ - ectocervix (NCIT) - NCIT:C12310 + ectocervix (NCIT) @@ -1590,8 +1179,7 @@ - uterine cervix (NCIT) - NCIT:C12311 + uterine cervix (NCIT) @@ -1600,8 +1188,7 @@ - endometrium (NCIT) - NCIT:C12313 + endometrium (NCIT) @@ -1610,8 +1197,7 @@ - myometrium (NCIT) - NCIT:C12314 + myometrium (NCIT) @@ -1620,8 +1206,7 @@ - body of uterus (NCIT) - NCIT:C12316 + body of uterus (NCIT) @@ -1630,8 +1215,7 @@ - broad ligament of uterus (NCIT) - NCIT:C12318 + broad ligament of uterus (NCIT) @@ -1640,8 +1224,7 @@ - parametrium (NCIT) - NCIT:C12320 + parametrium (NCIT) @@ -1650,8 +1233,7 @@ - prepuce (NCIT) - NCIT:C12323 + prepuce (NCIT) @@ -1660,8 +1242,7 @@ - glans penis (NCIT) - NCIT:C12324 + glans penis (NCIT) @@ -1670,8 +1251,7 @@ - epididymis (NCIT) - NCIT:C12328 + epididymis (NCIT) @@ -1680,8 +1260,7 @@ - spermatic cord (NCIT) - NCIT:C12329 + spermatic cord (NCIT) @@ -1690,8 +1269,7 @@ - trigone of urinary bladder (NCIT) - NCIT:C12331 + trigone of urinary bladder (NCIT) @@ -1700,8 +1278,7 @@ - neck of urinary bladder (NCIT) - NCIT:C12336 + neck of urinary bladder (NCIT) @@ -1710,8 +1287,7 @@ - ureteral orifice (NCIT) - NCIT:C12337 + ureteral orifice (NCIT) @@ -1720,8 +1296,7 @@ - urachus (NCIT) - NCIT:C12338 + urachus (NCIT) @@ -1730,8 +1305,7 @@ - paraurethral gland (NCIT) - NCIT:C12339 + paraurethral gland (NCIT) @@ -1740,8 +1314,7 @@ - conjunctiva (NCIT) - NCIT:C12341 + conjunctiva (NCIT) @@ -1750,8 +1323,7 @@ - cornea (NCIT) - NCIT:C12342 + cornea (NCIT) @@ -1760,8 +1332,7 @@ - retina (NCIT) - NCIT:C12343 + retina (NCIT) @@ -1770,8 +1341,7 @@ - optic choroid (NCIT) - NCIT:C12344 + optic choroid (NCIT) @@ -1780,8 +1350,7 @@ - ciliary body (NCIT) - NCIT:C12345 + ciliary body (NCIT) @@ -1790,8 +1359,7 @@ - lacrimal gland (NCIT) - NCIT:C12346 + lacrimal gland (NCIT) @@ -1800,8 +1368,7 @@ - orbit of skull (NCIT) - NCIT:C12347 + orbit of skull (NCIT) @@ -1810,8 +1377,7 @@ - meninx (NCIT) - NCIT:C12348 + meninx (NCIT) @@ -1820,8 +1386,7 @@ - meningeal cluster (NCIT) - NCIT:C12349 + meningeal cluster (NCIT) @@ -1830,8 +1395,7 @@ - meninx of spinal cord (NCIT) - NCIT:C12350 + meninx of spinal cord (NCIT) @@ -1840,8 +1404,7 @@ - cerebral hemisphere (NCIT) - NCIT:C12351 + cerebral hemisphere (NCIT) @@ -1850,8 +1413,7 @@ - frontal lobe (NCIT) - NCIT:C12352 + frontal lobe (NCIT) @@ -1860,8 +1422,7 @@ - temporal lobe (NCIT) - NCIT:C12353 + temporal lobe (NCIT) @@ -1870,8 +1431,7 @@ - parietal lobe (NCIT) - NCIT:C12354 + parietal lobe (NCIT) @@ -1880,8 +1440,7 @@ - occipital lobe (NCIT) - NCIT:C12355 + occipital lobe (NCIT) @@ -1890,8 +1449,7 @@ - brain ventricle (NCIT) - NCIT:C12356 + brain ventricle (NCIT) @@ -1900,8 +1458,7 @@ - craniopharyngeal canal (NCIT) - NCIT:C12357 + craniopharyngeal canal (NCIT) @@ -1910,8 +1467,7 @@ - pelvic lymph node (NCIT) - NCIT:C12363 + pelvic lymph node (NCIT) @@ -1920,8 +1476,7 @@ - amnion (NCIT) - NCIT:C12365 + amnion (NCIT) @@ -1930,8 +1485,7 @@ - bone element (NCIT) - NCIT:C12366 + bone element (NCIT) @@ -1940,8 +1494,7 @@ - mammary gland (NCIT) - NCIT:C12367 + mammary gland (NCIT) @@ -1950,8 +1503,7 @@ - areola (NCIT) - NCIT:C12368 + areola (NCIT) @@ -1960,8 +1512,7 @@ - myocardium (NCIT) - NCIT:C12371 + myocardium (NCIT) @@ -1970,8 +1521,7 @@ - artery (NCIT) - NCIT:C12372 + artery (NCIT) @@ -1980,8 +1530,7 @@ - cartilage tissue (NCIT) - NCIT:C12373 + cartilage tissue (NCIT) @@ -1990,8 +1539,7 @@ - connective tissue (NCIT) - NCIT:C12374 + connective tissue (NCIT) @@ -2000,8 +1548,7 @@ - anal canal (NCIT) - NCIT:C12375 + anal canal (NCIT) @@ -2010,8 +1557,7 @@ - bile duct (NCIT) - NCIT:C12376 + bile duct (NCIT) @@ -2020,8 +1566,7 @@ - gallbladder (NCIT) - NCIT:C12377 + gallbladder (NCIT) @@ -2030,8 +1575,7 @@ - alimentary part of gastrointestinal system (NCIT) - NCIT:C12378 + alimentary part of gastrointestinal system (NCIT) @@ -2040,8 +1584,7 @@ - large intestine (NCIT) - NCIT:C12379 + large intestine (NCIT) @@ -2050,8 +1593,7 @@ - vermiform appendix (NCIT) - NCIT:C12380 + vermiform appendix (NCIT) @@ -2060,8 +1602,7 @@ - caecum (NCIT) - NCIT:C12381 + caecum (NCIT) @@ -2070,8 +1611,7 @@ - colon (NCIT) - NCIT:C12382 + colon (NCIT) @@ -2080,8 +1620,7 @@ - right colon (NCIT) - NCIT:C12383 + right colon (NCIT) @@ -2090,8 +1629,7 @@ - sigmoid colon (NCIT) - NCIT:C12384 + sigmoid colon (NCIT) @@ -2100,8 +1638,7 @@ - transverse colon (NCIT) - NCIT:C12385 + transverse colon (NCIT) @@ -2110,8 +1647,7 @@ - small intestine (NCIT) - NCIT:C12386 + small intestine (NCIT) @@ -2120,8 +1656,7 @@ - ileum (NCIT) - NCIT:C12387 + ileum (NCIT) @@ -2130,8 +1665,7 @@ - jejunum (NCIT) - NCIT:C12388 + jejunum (NCIT) @@ -2140,8 +1674,7 @@ - esophagus (NCIT) - NCIT:C12389 + esophagus (NCIT) @@ -2150,8 +1683,7 @@ - rectum (NCIT) - NCIT:C12390 + rectum (NCIT) @@ -2160,8 +1692,7 @@ - stomach (NCIT) - NCIT:C12391 + stomach (NCIT) @@ -2170,8 +1701,7 @@ - liver (NCIT) - NCIT:C12392 + liver (NCIT) @@ -2180,8 +1710,7 @@ - pancreas (NCIT) - NCIT:C12393 + pancreas (NCIT) @@ -2190,8 +1719,7 @@ - ear (NCIT) - NCIT:C12394 + ear (NCIT) @@ -2200,8 +1728,7 @@ - cochlea (NCIT) - NCIT:C12395 + cochlea (NCIT) @@ -2210,8 +1737,7 @@ - adrenal cortex (NCIT) - NCIT:C12396 + adrenal cortex (NCIT) @@ -2220,8 +1746,7 @@ - adrenal medulla (NCIT) - NCIT:C12397 + adrenal medulla (NCIT) @@ -2230,8 +1755,7 @@ - pineal body (NCIT) - NCIT:C12398 + pineal body (NCIT) @@ -2240,8 +1764,7 @@ - pituitary gland (NCIT) - NCIT:C12399 + pituitary gland (NCIT) @@ -2250,8 +1773,7 @@ - thyroid gland (NCIT) - NCIT:C12400 + thyroid gland (NCIT) @@ -2260,8 +1782,7 @@ - camera-type eye (NCIT) - NCIT:C12401 + camera-type eye (NCIT) @@ -2270,8 +1791,7 @@ - female reproductive system (NCIT) - NCIT:C12402 + female reproductive system (NCIT) @@ -2280,8 +1800,7 @@ - fallopian tube (NCIT) - NCIT:C12403 + fallopian tube (NCIT) @@ -2290,8 +1809,7 @@ - ovary (NCIT) - NCIT:C12404 + ovary (NCIT) @@ -2300,8 +1818,7 @@ - uterus (NCIT) - NCIT:C12405 + uterus (NCIT) @@ -2310,8 +1827,7 @@ - gravid uterus (NCIT) - NCIT:C12406 + gravid uterus (NCIT) @@ -2320,8 +1836,7 @@ - vagina (NCIT) - NCIT:C12407 + vagina (NCIT) @@ -2330,8 +1845,7 @@ - mammalian vulva (NCIT) - NCIT:C12408 + mammalian vulva (NCIT) @@ -2340,8 +1854,7 @@ - penis (NCIT) - NCIT:C12409 + penis (NCIT) @@ -2350,8 +1863,7 @@ - prostate gland (NCIT) - NCIT:C12410 + prostate gland (NCIT) @@ -2360,8 +1872,7 @@ - testis (NCIT) - NCIT:C12412 + testis (NCIT) @@ -2370,8 +1881,7 @@ - renal system (NCIT) - NCIT:C12413 + renal system (NCIT) @@ -2380,20 +1890,7 @@ - urinary bladder (NCIT) - NCIT:C12414 - - - - - - - - - - adult mammalian kidney (NCIT) - kidney (NCIT) - NCIT:C12415 + urinary bladder (NCIT) @@ -2402,8 +1899,7 @@ - ureter (NCIT) - NCIT:C12416 + ureter (NCIT) @@ -2412,8 +1908,7 @@ - urethra (NCIT) - NCIT:C12417 + urethra (NCIT) @@ -2422,8 +1917,7 @@ - craniocervical region (NCIT) - NCIT:C12418 + craniocervical region (NCIT) @@ -2432,8 +1926,7 @@ - head (NCIT) - NCIT:C12419 + head (NCIT) @@ -2442,8 +1935,7 @@ - larynx (NCIT) - NCIT:C12420 + larynx (NCIT) @@ -2452,8 +1944,7 @@ - oral cavity (NCIT) - NCIT:C12421 + oral cavity (NCIT) @@ -2462,8 +1953,7 @@ - tongue (NCIT) - NCIT:C12422 + tongue (NCIT) @@ -2472,8 +1962,7 @@ - nasopharynx (NCIT) - NCIT:C12423 + nasopharynx (NCIT) @@ -2482,8 +1971,7 @@ - nasal cavity (NCIT) - NCIT:C12424 + nasal cavity (NCIT) @@ -2492,8 +1980,7 @@ - chordate pharynx (NCIT) - NCIT:C12425 + chordate pharynx (NCIT) @@ -2502,8 +1989,7 @@ - saliva-secreting gland (NCIT) - NCIT:C12426 + saliva-secreting gland (NCIT) @@ -2512,8 +1998,7 @@ - parotid gland (NCIT) - NCIT:C12427 + parotid gland (NCIT) @@ -2522,8 +2007,7 @@ - trachea (NCIT) - NCIT:C12428 + trachea (NCIT) @@ -2532,8 +2016,7 @@ - limb (NCIT) - NCIT:C12429 + limb (NCIT) @@ -2542,8 +2025,7 @@ - bone marrow (NCIT) - NCIT:C12431 + bone marrow (NCIT) @@ -2552,8 +2034,7 @@ - spleen (NCIT) - NCIT:C12432 + spleen (NCIT) @@ -2562,8 +2043,7 @@ - thymus (NCIT) - NCIT:C12433 + thymus (NCIT) @@ -2572,8 +2052,7 @@ - blood (NCIT) - NCIT:C12434 + blood (NCIT) @@ -2582,8 +2061,7 @@ - muscle tissue (NCIT) - NCIT:C12435 + muscle tissue (NCIT) @@ -2592,8 +2070,7 @@ - striated muscle tissue (NCIT) - NCIT:C12436 + striated muscle tissue (NCIT) @@ -2602,8 +2079,7 @@ - smooth muscle tissue (NCIT) - NCIT:C12437 + smooth muscle tissue (NCIT) @@ -2612,8 +2088,7 @@ - central nervous system (NCIT) - NCIT:C12438 + central nervous system (NCIT) @@ -2622,8 +2097,7 @@ - brain (NCIT) - NCIT:C12439 + brain (NCIT) @@ -2632,8 +2106,7 @@ - amygdala (NCIT) - NCIT:C12440 + amygdala (NCIT) @@ -2642,8 +2115,7 @@ - brainstem (NCIT) - NCIT:C12441 + brainstem (NCIT) @@ -2652,8 +2124,7 @@ - medulla oblongata (NCIT) - NCIT:C12442 + medulla oblongata (NCIT) @@ -2662,8 +2133,7 @@ - cerebral cortex (NCIT) - NCIT:C12443 + cerebral cortex (NCIT) @@ -2672,8 +2142,7 @@ - Ammon's horn (NCIT) - NCIT:C12444 + Ammon's horn (NCIT) @@ -2682,8 +2151,7 @@ - cerebellum (NCIT) - NCIT:C12445 + cerebellum (NCIT) @@ -2692,8 +2160,7 @@ - corpus callosum (NCIT) - NCIT:C12446 + corpus callosum (NCIT) @@ -2702,8 +2169,7 @@ - collection of basal ganglia (NCIT) - NCIT:C12447 + collection of basal ganglia (NCIT) @@ -2712,8 +2178,7 @@ - corpus striatum (NCIT) - NCIT:C12448 + corpus striatum (NCIT) @@ -2722,8 +2187,7 @@ - globus pallidus (NCIT) - NCIT:C12449 + globus pallidus (NCIT) @@ -2732,8 +2196,7 @@ - caudate nucleus (NCIT) - NCIT:C12451 + caudate nucleus (NCIT) @@ -2742,8 +2205,7 @@ - putamen (NCIT) - NCIT:C12452 + putamen (NCIT) @@ -2752,8 +2214,7 @@ - substantia nigra (NCIT) - NCIT:C12453 + substantia nigra (NCIT) @@ -2762,8 +2223,7 @@ - subthalamic nucleus (NCIT) - NCIT:C12454 + subthalamic nucleus (NCIT) @@ -2772,8 +2232,7 @@ - diencephalon (NCIT) - NCIT:C12456 + diencephalon (NCIT) @@ -2782,8 +2241,7 @@ - epithalamus (NCIT) - NCIT:C12457 + epithalamus (NCIT) @@ -2792,8 +2250,7 @@ - hypothalamus (NCIT) - NCIT:C12458 + hypothalamus (NCIT) @@ -2802,8 +2259,7 @@ - dorsal plus ventral thalamus (NCIT) - NCIT:C12459 + dorsal plus ventral thalamus (NCIT) @@ -2812,8 +2268,7 @@ - midbrain tectum (NCIT) - NCIT:C12460 + midbrain tectum (NCIT) @@ -2822,8 +2277,7 @@ - corpora quadrigemina (NCIT) - NCIT:C12461 + corpora quadrigemina (NCIT) @@ -2832,8 +2286,7 @@ - dorsal root ganglion (NCIT) - NCIT:C12462 + dorsal root ganglion (NCIT) @@ -2842,8 +2295,7 @@ - notochord (NCIT) - NCIT:C12463 + notochord (NCIT) @@ -2852,8 +2304,7 @@ - spinal cord (NCIT) - NCIT:C12464 + spinal cord (NCIT) @@ -2862,8 +2313,7 @@ - peripheral nervous system (NCIT) - NCIT:C12465 + peripheral nervous system (NCIT) @@ -2872,8 +2322,7 @@ - nerve (NCIT) - NCIT:C12466 + nerve (NCIT) @@ -2882,8 +2331,7 @@ - sympathetic ganglion (NCIT) - NCIT:C12467 + sympathetic ganglion (NCIT) @@ -2892,8 +2340,7 @@ - lung (NCIT) - NCIT:C12468 + lung (NCIT) @@ -2902,8 +2349,7 @@ - pleura (NCIT) - NCIT:C12469 + pleura (NCIT) @@ -2912,8 +2358,7 @@ - skin of body (NCIT) - NCIT:C12470 + skin of body (NCIT) @@ -2922,8 +2367,7 @@ - adipose tissue (NCIT) - NCIT:C12472 + adipose tissue (NCIT) @@ -2932,8 +2376,7 @@ - synovial membrane of synovial joint (NCIT) - NCIT:C12473 + synovial membrane of synovial joint (NCIT) @@ -2942,8 +2385,7 @@ - endothelium (NCIT) - NCIT:C12481 + endothelium (NCIT) @@ -2952,8 +2394,7 @@ - basicranium (NCIT) - NCIT:C12493 + basicranium (NCIT) @@ -2962,8 +2403,7 @@ - clivus of occipital bone (NCIT) - NCIT:C12494 + clivus of occipital bone (NCIT) @@ -2972,8 +2412,7 @@ - foramen magnum (NCIT) - NCIT:C12495 + foramen magnum (NCIT) @@ -2982,8 +2421,7 @@ - jugular foramen (NCIT) - NCIT:C12496 + jugular foramen (NCIT) @@ -2992,8 +2430,7 @@ - sella turcica (NCIT) - NCIT:C12497 + sella turcica (NCIT) @@ -3002,8 +2439,7 @@ - external acoustic meatus (NCIT) - NCIT:C12498 + external acoustic meatus (NCIT) @@ -3012,8 +2448,7 @@ - internal ear (NCIT) - NCIT:C12499 + internal ear (NCIT) @@ -3022,8 +2457,7 @@ - pharyngotympanic tube (NCIT) - NCIT:C12500 + pharyngotympanic tube (NCIT) @@ -3032,8 +2466,7 @@ - tympanic membrane (NCIT) - NCIT:C12502 + tympanic membrane (NCIT) @@ -3042,8 +2475,7 @@ - mastoid process of temporal bone (NCIT) - NCIT:C12503 + mastoid process of temporal bone (NCIT) @@ -3052,8 +2484,7 @@ - buccal mucosa (NCIT) - NCIT:C12505 + buccal mucosa (NCIT) @@ -3062,8 +2493,7 @@ - calcareous tooth (NCIT) - NCIT:C12506 + calcareous tooth (NCIT) @@ -3072,8 +2502,7 @@ - midbrain (NCIT) - NCIT:C12510 + midbrain (NCIT) @@ -3082,8 +2511,7 @@ - pons (NCIT) - NCIT:C12511 + pons (NCIT) @@ -3092,8 +2520,7 @@ - sagittal sinus (NCIT) - NCIT:C12513 + sagittal sinus (NCIT) @@ -3102,8 +2529,7 @@ - inferior sagittal sinus (NCIT) - NCIT:C12514 + inferior sagittal sinus (NCIT) @@ -3112,8 +2538,7 @@ - superior sagittal sinus (NCIT) - NCIT:C12515 + superior sagittal sinus (NCIT) @@ -3122,8 +2547,7 @@ - zygote stage (NCIT) - NCIT:C12601 + zygote stage (NCIT) @@ -3132,8 +2556,7 @@ - islet of Langerhans (NCIT) - NCIT:C12608 + islet of Langerhans (NCIT) @@ -3142,8 +2565,7 @@ - fast muscle tissue (NCIT) - NCIT:C12613 + fast muscle tissue (NCIT) @@ -3152,8 +2574,7 @@ - slow muscle tissue (NCIT) - NCIT:C12614 + slow muscle tissue (NCIT) @@ -3162,8 +2583,7 @@ - neuropil (NCIT) - NCIT:C12617 + neuropil (NCIT) @@ -3172,8 +2592,7 @@ - preganglionic autonomic fiber (NCIT) - NCIT:C12624 + preganglionic autonomic fiber (NCIT) @@ -3182,8 +2601,7 @@ - myelinated nerve fiber (NCIT) - NCIT:C12627 + myelinated nerve fiber (NCIT) @@ -3192,8 +2610,7 @@ - substantia gelatinosa (NCIT) - NCIT:C12641 + substantia gelatinosa (NCIT) @@ -3202,8 +2619,7 @@ - postganglionic autonomic fiber (NCIT) - NCIT:C12648 + postganglionic autonomic fiber (NCIT) @@ -3212,8 +2628,7 @@ - postganglionic parasympathetic fiber (NCIT) - NCIT:C12649 + postganglionic parasympathetic fiber (NCIT) @@ -3222,8 +2637,7 @@ - postganglionic sympathetic fiber (NCIT) - NCIT:C12650 + postganglionic sympathetic fiber (NCIT) @@ -3232,8 +2646,7 @@ - abdominal cavity (NCIT) - NCIT:C12664 + abdominal cavity (NCIT) @@ -3242,8 +2655,7 @@ - abducens nerve (NCIT) - NCIT:C12665 + abducens nerve (NCIT) @@ -3252,8 +2664,7 @@ - adrenal gland (NCIT) - NCIT:C12666 + adrenal gland (NCIT) @@ -3262,8 +2673,7 @@ - anterior chamber of eyeball (NCIT) - NCIT:C12667 + anterior chamber of eyeball (NCIT) @@ -3272,8 +2682,7 @@ - anterior segment of eyeball (NCIT) - NCIT:C12668 + anterior segment of eyeball (NCIT) @@ -3282,8 +2691,7 @@ - aorta (NCIT) - NCIT:C12669 + aorta (NCIT) @@ -3292,8 +2700,7 @@ - aortic valve (NCIT) - NCIT:C12670 + aortic valve (NCIT) @@ -3302,8 +2709,7 @@ - forelimb (NCIT) - NCIT:C12671 + forelimb (NCIT) @@ -3312,8 +2718,7 @@ - arteriole (NCIT) - NCIT:C12672 + arteriole (NCIT) @@ -3322,8 +2727,7 @@ - autonomic nervous system (NCIT) - NCIT:C12673 + autonomic nervous system (NCIT) @@ -3332,8 +2736,7 @@ - axilla (NCIT) - NCIT:C12674 + axilla (NCIT) @@ -3342,8 +2745,7 @@ - major vestibular gland (NCIT) - NCIT:C12675 + major vestibular gland (NCIT) @@ -3352,8 +2754,7 @@ - basilar artery (NCIT) - NCIT:C12676 + basilar artery (NCIT) @@ -3362,8 +2763,7 @@ - intrahepatic bile duct (NCIT) - NCIT:C12677 + intrahepatic bile duct (NCIT) @@ -3372,8 +2772,7 @@ - biliary system (NCIT) - NCIT:C12678 + biliary system (NCIT) @@ -3382,8 +2781,7 @@ - blood vessel (NCIT) - NCIT:C12679 + blood vessel (NCIT) @@ -3392,8 +2790,7 @@ - brachial artery (NCIT) - NCIT:C12681 + brachial artery (NCIT) @@ -3402,8 +2799,7 @@ - brachial nerve plexus (NCIT) - NCIT:C12682 + brachial nerve plexus (NCIT) @@ -3412,8 +2808,7 @@ - bronchus (NCIT) - NCIT:C12683 + bronchus (NCIT) @@ -3422,8 +2817,7 @@ - bronchiole (NCIT) - NCIT:C12684 + bronchiole (NCIT) @@ -3432,8 +2826,7 @@ - capillary (NCIT) - NCIT:C12685 + capillary (NCIT) @@ -3442,8 +2835,7 @@ - cardiovascular system (NCIT) - NCIT:C12686 + cardiovascular system (NCIT) @@ -3452,8 +2844,7 @@ - carotid artery segment (NCIT) - NCIT:C12687 + carotid artery segment (NCIT) @@ -3462,8 +2853,7 @@ - carpal bone (NCIT) - NCIT:C12688 + carpal bone (NCIT) @@ -3472,8 +2862,7 @@ - cauda equina (NCIT) - NCIT:C12689 + cauda equina (NCIT) @@ -3482,8 +2871,7 @@ - cavernous sinus (NCIT) - NCIT:C12690 + cavernous sinus (NCIT) @@ -3492,8 +2880,7 @@ - cerebral artery (NCIT) - NCIT:C12691 + cerebral artery (NCIT) @@ -3502,8 +2889,7 @@ - cerebrospinal fluid (NCIT) - NCIT:C12692 + cerebrospinal fluid (NCIT) @@ -3512,8 +2898,7 @@ - cervical vertebra (NCIT) - NCIT:C12693 + cervical vertebra (NCIT) @@ -3522,8 +2907,7 @@ - choroid plexus (NCIT) - NCIT:C12694 + choroid plexus (NCIT) @@ -3532,8 +2916,7 @@ - clavicle bone (NCIT) - NCIT:C12695 + clavicle bone (NCIT) @@ -3542,8 +2925,7 @@ - coccyx (NCIT) - NCIT:C12696 + coccyx (NCIT) @@ -3552,8 +2934,7 @@ - cochlear nerve (NCIT) - NCIT:C12697 + cochlear nerve (NCIT) @@ -3562,8 +2943,7 @@ - common bile duct (NCIT) - NCIT:C12698 + common bile duct (NCIT) @@ -3572,8 +2952,7 @@ - substantia propria of cornea (NCIT) - NCIT:C12699 + substantia propria of cornea (NCIT) @@ -3582,8 +2961,7 @@ - cranial nerve (NCIT) - NCIT:C12700 + cranial nerve (NCIT) @@ -3592,8 +2970,7 @@ - dermis (NCIT) - NCIT:C12701 + dermis (NCIT) @@ -3602,8 +2979,7 @@ - diaphragm (NCIT) - NCIT:C12702 + diaphragm (NCIT) @@ -3612,8 +2988,7 @@ - ectoderm (NCIT) - NCIT:C12703 + ectoderm (NCIT) @@ -3622,8 +2997,7 @@ - endocrine gland (NCIT) - NCIT:C12704 + endocrine gland (NCIT) @@ -3632,8 +3006,7 @@ - endocrine system (NCIT) - NCIT:C12705 + endocrine system (NCIT) @@ -3642,8 +3015,7 @@ - endoderm (NCIT) - NCIT:C12706 + endoderm (NCIT) @@ -3652,8 +3024,7 @@ - corneal endothelium (NCIT) - NCIT:C12707 + corneal endothelium (NCIT) @@ -3662,8 +3033,7 @@ - skin epidermis (NCIT) - NCIT:C12708 + skin epidermis (NCIT) @@ -3672,8 +3042,7 @@ - epiglottis (NCIT) - NCIT:C12709 + epiglottis (NCIT) @@ -3682,8 +3051,7 @@ - epithelium (NCIT) - NCIT:C12710 + epithelium (NCIT) @@ -3692,8 +3060,7 @@ - ethmoid bone (NCIT) - NCIT:C12711 + ethmoid bone (NCIT) @@ -3702,8 +3069,7 @@ - exocrine gland (NCIT) - NCIT:C12712 + exocrine gland (NCIT) @@ -3712,8 +3078,7 @@ - eyelid (NCIT) - NCIT:C12713 + eyelid (NCIT) @@ -3722,8 +3087,7 @@ - facial nerve (NCIT) - NCIT:C12714 + facial nerve (NCIT) @@ -3732,8 +3096,7 @@ - femoral artery (NCIT) - NCIT:C12715 + femoral artery (NCIT) @@ -3742,8 +3105,7 @@ - femoral vein (NCIT) - NCIT:C12716 + femoral vein (NCIT) @@ -3752,8 +3114,7 @@ - femur (NCIT) - NCIT:C12717 + femur (NCIT) @@ -3762,8 +3123,7 @@ - fibula (NCIT) - NCIT:C12718 + fibula (NCIT) @@ -3772,8 +3132,7 @@ - ganglion (NCIT) - NCIT:C12719 + ganglion (NCIT) @@ -3782,8 +3141,7 @@ - autonomic ganglion (NCIT) - NCIT:C12720 + autonomic ganglion (NCIT) @@ -3792,8 +3150,7 @@ - geniculate ganglion (NCIT) - NCIT:C12721 + geniculate ganglion (NCIT) @@ -3802,8 +3159,7 @@ - male reproductive system (NCIT) - NCIT:C12722 + male reproductive system (NCIT) @@ -3812,8 +3168,7 @@ - glossopharyngeal nerve (NCIT) - NCIT:C12723 + glossopharyngeal nerve (NCIT) @@ -3822,8 +3177,7 @@ - glottis (NCIT) - NCIT:C12724 + glottis (NCIT) @@ -3832,8 +3186,7 @@ - gonad (NCIT) - NCIT:C12725 + gonad (NCIT) @@ -3842,8 +3195,7 @@ - inguinal part of abdomen (NCIT) - NCIT:C12726 + inguinal part of abdomen (NCIT) @@ -3852,8 +3204,7 @@ - heart (NCIT) - NCIT:C12727 + heart (NCIT) @@ -3862,8 +3213,7 @@ - cardiac atrium (NCIT) - NCIT:C12728 + cardiac atrium (NCIT) @@ -3872,8 +3222,7 @@ - cardiac valve (NCIT) - NCIT:C12729 + cardiac valve (NCIT) @@ -3882,8 +3231,7 @@ - cardiac ventricle (NCIT) - NCIT:C12730 + cardiac ventricle (NCIT) @@ -3892,8 +3240,7 @@ - humerus (NCIT) - NCIT:C12731 + humerus (NCIT) @@ -3902,8 +3249,7 @@ - hypoglossal nerve (NCIT) - NCIT:C12732 + hypoglossal nerve (NCIT) @@ -3912,8 +3258,7 @@ - iliac artery (NCIT) - NCIT:C12733 + iliac artery (NCIT) @@ -3922,8 +3267,7 @@ - iliac vein (NCIT) - NCIT:C12734 + iliac vein (NCIT) @@ -3932,8 +3276,7 @@ - immune system (NCIT) - NCIT:C12735 + immune system (NCIT) @@ -3942,8 +3285,7 @@ - intestine (NCIT) - NCIT:C12736 + intestine (NCIT) @@ -3952,8 +3294,7 @@ - iris (NCIT) - NCIT:C12737 + iris (NCIT) @@ -3962,8 +3303,7 @@ - jugular vein (NCIT) - NCIT:C12738 + jugular vein (NCIT) @@ -3972,8 +3312,7 @@ - cortex of kidney (NCIT) - NCIT:C12739 + cortex of kidney (NCIT) @@ -3982,8 +3321,7 @@ - renal medulla (NCIT) - NCIT:C12740 + renal medulla (NCIT) @@ -3992,8 +3330,7 @@ - hindlimb (NCIT) - NCIT:C12742 + hindlimb (NCIT) @@ -4002,8 +3339,7 @@ - lens of camera-type eye (NCIT) - NCIT:C12743 + lens of camera-type eye (NCIT) @@ -4012,8 +3348,7 @@ - lumbar vertebra (NCIT) - NCIT:C12744 + lumbar vertebra (NCIT) @@ -4022,8 +3357,7 @@ - lymph node (NCIT) - NCIT:C12745 + lymph node (NCIT) @@ -4032,8 +3366,7 @@ - lymphoid system (NCIT) - NCIT:C12746 + lymphoid system (NCIT) @@ -4042,8 +3375,7 @@ - mediastinum (NCIT) - NCIT:C12748 + mediastinum (NCIT) @@ -4052,8 +3384,7 @@ - membranous layer (NCIT) - NCIT:C12749 + membranous layer (NCIT) @@ -4062,8 +3393,7 @@ - mesoderm (NCIT) - NCIT:C12750 + mesoderm (NCIT) @@ -4072,8 +3402,7 @@ - metacarpal bone (NCIT) - NCIT:C12751 + metacarpal bone (NCIT) @@ -4082,8 +3411,7 @@ - metatarsal bone (NCIT) - NCIT:C12752 + metatarsal bone (NCIT) @@ -4092,8 +3420,7 @@ - mitral valve (NCIT) - NCIT:C12753 + mitral valve (NCIT) @@ -4102,8 +3429,7 @@ - musculoskeletal system (NCIT) - NCIT:C12754 + musculoskeletal system (NCIT) @@ -4112,8 +3438,7 @@ - nervous system (NCIT) - NCIT:C12755 + nervous system (NCIT) @@ -4122,8 +3447,7 @@ - nose (NCIT) - NCIT:C12756 + nose (NCIT) @@ -4132,8 +3456,7 @@ - occipital bone (NCIT) - NCIT:C12757 + occipital bone (NCIT) @@ -4142,8 +3465,7 @@ - oculomotor nerve (NCIT) - NCIT:C12758 + oculomotor nerve (NCIT) @@ -4152,8 +3474,7 @@ - olfactory nerve (NCIT) - NCIT:C12759 + olfactory nerve (NCIT) @@ -4162,8 +3483,7 @@ - optic disc (NCIT) - NCIT:C12760 + optic disc (NCIT) @@ -4172,8 +3492,7 @@ - cranial nerve II (NCIT) - NCIT:C12761 + cranial nerve II (NCIT) @@ -4182,8 +3501,7 @@ - oropharynx (NCIT) - NCIT:C12762 + oropharynx (NCIT) @@ -4192,8 +3510,7 @@ - paranasal sinus (NCIT) - NCIT:C12763 + paranasal sinus (NCIT) @@ -4202,8 +3519,7 @@ - parasympathetic nervous system (NCIT) - NCIT:C12764 + parasympathetic nervous system (NCIT) @@ -4212,8 +3528,7 @@ - parathyroid gland (NCIT) - NCIT:C12765 + parathyroid gland (NCIT) @@ -4222,8 +3537,7 @@ - tetrapod parietal bone (NCIT) - NCIT:C12766 + tetrapod parietal bone (NCIT) @@ -4232,8 +3546,7 @@ - pelvic region of trunk (NCIT) - NCIT:C12767 + pelvic region of trunk (NCIT) @@ -4242,8 +3555,7 @@ - nerve (NCIT) - NCIT:C12768 + nerve (NCIT) @@ -4252,8 +3564,7 @@ - peritoneal cavity (NCIT) - NCIT:C12769 + peritoneal cavity (NCIT) @@ -4262,8 +3573,7 @@ - peritoneum (NCIT) - NCIT:C12770 + peritoneum (NCIT) @@ -4272,8 +3582,7 @@ - Peyer's patch (NCIT) - NCIT:C12771 + Peyer's patch (NCIT) @@ -4282,8 +3591,7 @@ - adenohypophysis (NCIT) - NCIT:C12772 + adenohypophysis (NCIT) @@ -4292,8 +3600,7 @@ - neurohypophysis (NCIT) - NCIT:C12773 + neurohypophysis (NCIT) @@ -4302,8 +3609,7 @@ - pulmonary artery (NCIT) - NCIT:C12774 + pulmonary artery (NCIT) @@ -4312,8 +3618,7 @@ - pulmonary valve (NCIT) - NCIT:C12775 + pulmonary valve (NCIT) @@ -4322,8 +3627,7 @@ - pulmonary vein (NCIT) - NCIT:C12776 + pulmonary vein (NCIT) @@ -4332,8 +3636,7 @@ - radius bone (NCIT) - NCIT:C12777 + radius bone (NCIT) @@ -4342,8 +3645,7 @@ - renal artery (NCIT) - NCIT:C12778 + renal artery (NCIT) @@ -4352,8 +3654,7 @@ - respiratory system (NCIT) - NCIT:C12779 + respiratory system (NCIT) @@ -4362,8 +3663,7 @@ - reticuloendothelial system (NCIT) - NCIT:C12780 + reticuloendothelial system (NCIT) @@ -4372,8 +3672,7 @@ - rib (NCIT) - NCIT:C12782 + rib (NCIT) @@ -4382,8 +3681,7 @@ - scapula (NCIT) - NCIT:C12783 + scapula (NCIT) @@ -4392,8 +3690,7 @@ - sclera (NCIT) - NCIT:C12784 + sclera (NCIT) @@ -4402,8 +3699,7 @@ - scrotum (NCIT) - NCIT:C12785 + scrotum (NCIT) @@ -4412,8 +3708,7 @@ - intermedium (NCIT) - NCIT:C12786 + intermedium (NCIT) @@ -4422,8 +3717,7 @@ - seminal vesicle (NCIT) - NCIT:C12787 + seminal vesicle (NCIT) @@ -4432,8 +3726,7 @@ - skeletal system (NCIT) - NCIT:C12788 + skeletal system (NCIT) @@ -4442,8 +3735,7 @@ - skull (NCIT) - NCIT:C12789 + skull (NCIT) @@ -4452,8 +3744,7 @@ - sphenoid bone (NCIT) - NCIT:C12790 + sphenoid bone (NCIT) @@ -4462,8 +3753,7 @@ - spinal nerve root (NCIT) - NCIT:C12791 + spinal nerve root (NCIT) @@ -4472,8 +3762,7 @@ - spinal nerve (NCIT) - NCIT:C12792 + spinal nerve (NCIT) @@ -4482,8 +3771,7 @@ - sternum (NCIT) - NCIT:C12793 + sternum (NCIT) @@ -4492,8 +3780,7 @@ - subclavian vein (NCIT) - NCIT:C12794 + subclavian vein (NCIT) @@ -4502,8 +3789,7 @@ - sympathetic nervous system (NCIT) - NCIT:C12795 + sympathetic nervous system (NCIT) @@ -4512,8 +3798,7 @@ - tarsal bone (NCIT) - NCIT:C12796 + tarsal bone (NCIT) @@ -4522,8 +3807,7 @@ - temporal bone (NCIT) - NCIT:C12797 + temporal bone (NCIT) @@ -4532,8 +3816,7 @@ - thoracic vertebra (NCIT) - NCIT:C12798 + thoracic vertebra (NCIT) @@ -4542,8 +3825,7 @@ - chest (NCIT) - NCIT:C12799 + chest (NCIT) @@ -4552,8 +3834,7 @@ - tibia (NCIT) - NCIT:C12800 + tibia (NCIT) @@ -4562,8 +3843,7 @@ - tissue (NCIT) - NCIT:C12801 + tissue (NCIT) @@ -4572,8 +3852,7 @@ - tonsil (NCIT) - NCIT:C12802 + tonsil (NCIT) @@ -4582,8 +3861,7 @@ - eye trabecular meshwork (NCIT) - NCIT:C12803 + eye trabecular meshwork (NCIT) @@ -4592,8 +3870,7 @@ - tricuspid valve (NCIT) - NCIT:C12805 + tricuspid valve (NCIT) @@ -4602,8 +3879,7 @@ - trigeminal nerve (NCIT) - NCIT:C12806 + trigeminal nerve (NCIT) @@ -4612,8 +3888,7 @@ - trigeminal nucleus (NCIT) - NCIT:C12807 + trigeminal nucleus (NCIT) @@ -4622,8 +3897,7 @@ - trochlear nerve (NCIT) - NCIT:C12808 + trochlear nerve (NCIT) @@ -4632,8 +3906,7 @@ - ulna (NCIT) - NCIT:C12809 + ulna (NCIT) @@ -4642,8 +3915,7 @@ - genitourinary system (NCIT) - NCIT:C12810 + genitourinary system (NCIT) @@ -4652,8 +3924,7 @@ - uvea (NCIT) - NCIT:C12811 + uvea (NCIT) @@ -4662,8 +3933,7 @@ - vagus nerve (NCIT) - NCIT:C12812 + vagus nerve (NCIT) @@ -4672,8 +3942,7 @@ - vas deferens (NCIT) - NCIT:C12813 + vas deferens (NCIT) @@ -4682,8 +3951,7 @@ - vein (NCIT) - NCIT:C12814 + vein (NCIT) @@ -4692,8 +3960,7 @@ - posterior vena cava (NCIT) - NCIT:C12815 + posterior vena cava (NCIT) @@ -4702,8 +3969,7 @@ - anterior vena cava (NCIT) - NCIT:C12816 + anterior vena cava (NCIT) @@ -4712,8 +3978,7 @@ - vena cava (NCIT) - NCIT:C12817 + vena cava (NCIT) @@ -4722,8 +3987,7 @@ - venule (NCIT) - NCIT:C12818 + venule (NCIT) @@ -4732,8 +3996,7 @@ - vertebral artery (NCIT) - NCIT:C12819 + vertebral artery (NCIT) @@ -4742,8 +4005,7 @@ - vestibular nerve (NCIT) - NCIT:C12820 + vestibular nerve (NCIT) @@ -4752,8 +4014,7 @@ - vestibular nucleus (NCIT) - NCIT:C12821 + vestibular nucleus (NCIT) @@ -4762,8 +4023,7 @@ - laryngeal vocal fold (NCIT) - NCIT:C12822 + laryngeal vocal fold (NCIT) @@ -4772,8 +4032,7 @@ - tibial artery (NCIT) - NCIT:C12824 + tibial artery (NCIT) @@ -4782,8 +4041,7 @@ - anterior tibial artery (NCIT) - NCIT:C12825 + anterior tibial artery (NCIT) @@ -4792,8 +4050,7 @@ - posterior tibial artery (NCIT) - NCIT:C12826 + posterior tibial artery (NCIT) @@ -4802,8 +4059,7 @@ - third ventricle (NCIT) - NCIT:C12827 + third ventricle (NCIT) @@ -4812,8 +4068,7 @@ - fourth ventricle (NCIT) - NCIT:C12828 + fourth ventricle (NCIT) @@ -4822,8 +4077,7 @@ - anterior cerebral artery (NCIT) - NCIT:C12829 + anterior cerebral artery (NCIT) @@ -4832,8 +4086,7 @@ - middle cerebral artery (NCIT) - NCIT:C12830 + middle cerebral artery (NCIT) @@ -4842,8 +4095,7 @@ - posterior cerebral artery (NCIT) - NCIT:C12831 + posterior cerebral artery (NCIT) @@ -4852,8 +4104,7 @@ - conus medullaris (NCIT) - NCIT:C12832 + conus medullaris (NCIT) @@ -4862,8 +4113,7 @@ - anterior spinal artery (NCIT) - NCIT:C12833 + anterior spinal artery (NCIT) @@ -4872,8 +4122,7 @@ - telencephalic ventricle (NCIT) - NCIT:C12834 + telencephalic ventricle (NCIT) @@ -4882,8 +4131,7 @@ - nucleus ambiguus (NCIT) - NCIT:C12835 + nucleus ambiguus (NCIT) @@ -4892,8 +4140,7 @@ - abducens nucleus (NCIT) - NCIT:C12836 + abducens nucleus (NCIT) @@ -4902,8 +4149,7 @@ - cochlear nucleus (NCIT) - NCIT:C12837 + cochlear nucleus (NCIT) @@ -4912,8 +4158,7 @@ - radial artery (NCIT) - NCIT:C12838 + radial artery (NCIT) @@ -4922,8 +4167,7 @@ - ulnar artery (NCIT) - NCIT:C12839 + ulnar artery (NCIT) @@ -4932,8 +4176,7 @@ - pleural cavity (NCIT) - NCIT:C12840 + pleural cavity (NCIT) @@ -4942,8 +4185,7 @@ - reproductive system (NCIT) - NCIT:C12841 + reproductive system (NCIT) @@ -4952,8 +4194,7 @@ - coronary artery (NCIT) - NCIT:C12843 + coronary artery (NCIT) @@ -4962,8 +4203,7 @@ - lumbar nerve plexus (NCIT) - NCIT:C12845 + lumbar nerve plexus (NCIT) @@ -4972,8 +4212,7 @@ - sacral nerve plexus (NCIT) - NCIT:C12846 + sacral nerve plexus (NCIT) @@ -4982,8 +4221,7 @@ - squamous epithelium (NCIT) - NCIT:C12848 + squamous epithelium (NCIT) @@ -4992,8 +4230,7 @@ - stratum spinosum of epidermis (NCIT) - NCIT:C12850 + stratum spinosum of epidermis (NCIT) @@ -5002,8 +4239,7 @@ - bony vertebral centrum (NCIT) - NCIT:C12852 + bony vertebral centrum (NCIT) @@ -5012,8 +4248,7 @@ - sacral vertebra (NCIT) - NCIT:C12853 + sacral vertebra (NCIT) @@ -5022,8 +4257,7 @@ - radiale (NCIT) - NCIT:C12854 + radiale (NCIT) @@ -5032,8 +4266,7 @@ - pisiform (NCIT) - NCIT:C12855 + pisiform (NCIT) @@ -5042,8 +4275,7 @@ - distal carpal bone 3 (NCIT) - NCIT:C12856 + distal carpal bone 3 (NCIT) @@ -5052,8 +4284,7 @@ - distal carpal bone 1 (NCIT) - NCIT:C12857 + distal carpal bone 1 (NCIT) @@ -5062,8 +4293,7 @@ - ulnare (NCIT) - NCIT:C12858 + ulnare (NCIT) @@ -5072,8 +4302,7 @@ - distal carpal bone 2 (NCIT) - NCIT:C12859 + distal carpal bone 2 (NCIT) @@ -5082,8 +4311,7 @@ - distal carpal bone 4 (NCIT) - NCIT:C12860 + distal carpal bone 4 (NCIT) @@ -5092,8 +4320,7 @@ - middle phalanx of manus (NCIT) - NCIT:C12863 + middle phalanx of manus (NCIT) @@ -5102,8 +4329,7 @@ - pulmonary alveolus epithelium (NCIT) - NCIT:C12867 + pulmonary alveolus epithelium (NCIT) @@ -5112,8 +4338,7 @@ - right cardiac atrium (NCIT) - NCIT:C12868 + right cardiac atrium (NCIT) @@ -5122,8 +4347,7 @@ - left cardiac atrium (NCIT) - NCIT:C12869 + left cardiac atrium (NCIT) @@ -5132,8 +4356,7 @@ - heart right ventricle (NCIT) - NCIT:C12870 + heart right ventricle (NCIT) @@ -5142,8 +4365,7 @@ - heart left ventricle (NCIT) - NCIT:C12871 + heart left ventricle (NCIT) @@ -5152,8 +4374,7 @@ - left coronary artery (NCIT) - NCIT:C12872 + left coronary artery (NCIT) @@ -5162,8 +4383,7 @@ - circumflex branch of left coronary artery (NCIT) - NCIT:C12874 + circumflex branch of left coronary artery (NCIT) @@ -5172,8 +4392,7 @@ - right coronary artery (NCIT) - NCIT:C12875 + right coronary artery (NCIT) @@ -5182,8 +4401,7 @@ - posterior spinal artery (NCIT) - NCIT:C12876 + posterior spinal artery (NCIT) @@ -5192,8 +4410,7 @@ - venous sinus (NCIT) - NCIT:C12877 + venous sinus (NCIT) @@ -5202,8 +4419,7 @@ - cardiac vein (NCIT) - NCIT:C12878 + cardiac vein (NCIT) @@ -5212,8 +4428,7 @@ - great vein of heart (NCIT) - NCIT:C12879 + great vein of heart (NCIT) @@ -5222,8 +4437,7 @@ - middle cardiac vein (NCIT) - NCIT:C12880 + middle cardiac vein (NCIT) @@ -5232,8 +4446,7 @@ - small cardiac vein (NCIT) - NCIT:C12881 + small cardiac vein (NCIT) @@ -5242,8 +4455,7 @@ - cardiac vein (NCIT) - NCIT:C12882 + cardiac vein (NCIT) @@ -5252,8 +4464,7 @@ - brachial vein (NCIT) - NCIT:C12883 + brachial vein (NCIT) @@ -5262,8 +4473,7 @@ - urothelium (NCIT) - NCIT:C12884 + urothelium (NCIT) @@ -5272,8 +4482,7 @@ - kidney capsule (NCIT) - NCIT:C12885 + kidney capsule (NCIT) @@ -5282,8 +4491,7 @@ - kidney pyramid (NCIT) - NCIT:C12886 + kidney pyramid (NCIT) @@ -5292,8 +4500,7 @@ - renal pelvis (NCIT) - NCIT:C12887 + renal pelvis (NCIT) @@ -5302,8 +4509,7 @@ - visual system (NCIT) - NCIT:C12888 + visual system (NCIT) @@ -5312,8 +4518,7 @@ - auditory system (NCIT) - NCIT:C12889 + auditory system (NCIT) @@ -5322,8 +4527,7 @@ - falx cerebri (NCIT) - NCIT:C12890 + falx cerebri (NCIT) @@ -5332,8 +4536,7 @@ - central canal of spinal cord (NCIT) - NCIT:C12891 + central canal of spinal cord (NCIT) @@ -5342,8 +4545,7 @@ - cervical spinal cord (NCIT) - NCIT:C12892 + cervical spinal cord (NCIT) @@ -5352,8 +4554,7 @@ - root of cervical nerve (NCIT) - NCIT:C12893 + root of cervical nerve (NCIT) @@ -5362,8 +4563,7 @@ - thoracic spinal cord (NCIT) - NCIT:C12894 + thoracic spinal cord (NCIT) @@ -5372,8 +4572,7 @@ - lumbar spinal cord (NCIT) - NCIT:C12895 + lumbar spinal cord (NCIT) @@ -5382,8 +4581,7 @@ - sacral spinal cord (NCIT) - NCIT:C12896 + sacral spinal cord (NCIT) @@ -5392,8 +4590,7 @@ - oculomotor nuclear complex (NCIT) - NCIT:C12897 + oculomotor nuclear complex (NCIT) @@ -5402,8 +4599,7 @@ - facial nucleus (NCIT) - NCIT:C12898 + facial nucleus (NCIT) @@ -5412,8 +4608,7 @@ - hypoglossal nucleus (NCIT) - NCIT:C12899 + hypoglossal nucleus (NCIT) @@ -5422,8 +4617,7 @@ - posterior chamber of eyeball (NCIT) - NCIT:C12900 + posterior chamber of eyeball (NCIT) @@ -5432,8 +4626,7 @@ - palpebral conjunctiva (NCIT) - NCIT:C12901 + palpebral conjunctiva (NCIT) @@ -5442,8 +4635,7 @@ - bulbar conjunctiva (NCIT) - NCIT:C12902 + bulbar conjunctiva (NCIT) @@ -5452,8 +4644,7 @@ - supraclavicular lymph node (NCIT) - NCIT:C12903 + supraclavicular lymph node (NCIT) @@ -5462,8 +4653,7 @@ - axillary lymph node (NCIT) - NCIT:C12904 + axillary lymph node (NCIT) @@ -5472,8 +4662,7 @@ - thoracic cavity (NCIT) - NCIT:C12905 + thoracic cavity (NCIT) @@ -5482,8 +4671,7 @@ - posterior segment of eyeball (NCIT) - NCIT:C12906 + posterior segment of eyeball (NCIT) @@ -5492,8 +4680,7 @@ - integumental system (NCIT) - NCIT:C12907 + integumental system (NCIT) @@ -5502,8 +4689,7 @@ - hematopoietic system (NCIT) - NCIT:C12909 + hematopoietic system (NCIT) @@ -5512,8 +4698,7 @@ - mucosa-associated lymphoid tissue (NCIT) - NCIT:C12910 + mucosa-associated lymphoid tissue (NCIT) @@ -5522,8 +4707,7 @@ - anatomical system (NCIT) - NCIT:C12919 + anatomical system (NCIT) @@ -5532,8 +4716,7 @@ - root of lumbar spinal nerve (NCIT) - NCIT:C12924 + root of lumbar spinal nerve (NCIT) @@ -5542,8 +4725,7 @@ - root of sacral nerve (NCIT) - NCIT:C12925 + root of sacral nerve (NCIT) @@ -5552,8 +4734,7 @@ - kidney calyx (NCIT) - NCIT:C12927 + kidney calyx (NCIT) @@ -5562,8 +4743,7 @@ - corneal epithelium (NCIT) - NCIT:C12928 + corneal epithelium (NCIT) @@ -5572,8 +4752,7 @@ - nerve plexus (NCIT) - NCIT:C12929 + nerve plexus (NCIT) @@ -5582,8 +4761,7 @@ - intrapulmonary bronchus (NCIT) - NCIT:C12930 + intrapulmonary bronchus (NCIT) @@ -5592,8 +4770,7 @@ - vertebra (NCIT) - NCIT:C12933 + vertebra (NCIT) @@ -5602,8 +4779,7 @@ - gut-associated lymphoid tissue (NCIT) - NCIT:C12936 + gut-associated lymphoid tissue (NCIT) @@ -5612,8 +4788,7 @@ - epithelium of mammary gland (NCIT) - NCIT:C12937 + epithelium of mammary gland (NCIT) @@ -5622,8 +4797,7 @@ - duct (NCIT) - NCIT:C12948 + duct (NCIT) @@ -5632,8 +4806,7 @@ - germ layer (NCIT) - NCIT:C12950 + germ layer (NCIT) @@ -5642,8 +4815,7 @@ - exocrine system (NCIT) - NCIT:C12957 + exocrine system (NCIT) @@ -5652,8 +4824,7 @@ - digestive tract epithelium (NCIT) - NCIT:C12963 + digestive tract epithelium (NCIT) @@ -5662,8 +4833,7 @@ - breast (NCIT) - NCIT:C12971 + breast (NCIT) @@ -5672,8 +4842,7 @@ - hindlimb bone (NCIT) - NCIT:C12982 + hindlimb bone (NCIT) @@ -5682,8 +4851,7 @@ - forelimb bone (NCIT) - NCIT:C12983 + forelimb bone (NCIT) @@ -5692,8 +4860,7 @@ - alveolus (NCIT) - NCIT:C12986 + alveolus (NCIT) @@ -5702,8 +4869,7 @@ - episcleral layer of eyeball (NCIT) - NCIT:C12989 + episcleral layer of eyeball (NCIT) @@ -5712,8 +4878,7 @@ - lobule (NCIT) - NCIT:C12990 + lobule (NCIT) @@ -5722,8 +4887,7 @@ - red pulp of spleen (NCIT) - NCIT:C12992 + red pulp of spleen (NCIT) @@ -5732,8 +4896,7 @@ - white pulp of spleen (NCIT) - NCIT:C12993 + white pulp of spleen (NCIT) @@ -5742,8 +4905,7 @@ - tract of spinal cord (NCIT) - NCIT:C12995 + tract of spinal cord (NCIT) @@ -5752,8 +4914,7 @@ - vestibulocochlear nerve (NCIT) - NCIT:C12996 + vestibulocochlear nerve (NCIT) @@ -5762,8 +4923,7 @@ - vertebral column (NCIT) - NCIT:C12998 + vertebral column (NCIT) @@ -5772,8 +4932,7 @@ - major salivary gland (NCIT) - NCIT:C12999 + major salivary gland (NCIT) @@ -5782,8 +4941,7 @@ - endocardium (NCIT) - NCIT:C13004 + endocardium (NCIT) @@ -5792,8 +4950,7 @@ - pericardium (NCIT) - NCIT:C13005 + pericardium (NCIT) @@ -5802,8 +4959,7 @@ - duodenal gland (NCIT) - NCIT:C13010 + duodenal gland (NCIT) @@ -5812,8 +4968,7 @@ - hepatopancreatic ampulla (NCIT) - NCIT:C13011 + hepatopancreatic ampulla (NCIT) @@ -5822,8 +4977,7 @@ - organ (NCIT) - NCIT:C13018 + organ (NCIT) @@ -5832,8 +4986,7 @@ - regional part of brain (NCIT) - NCIT:C13031 + regional part of brain (NCIT) @@ -5842,8 +4995,7 @@ - regional part of nervous system (NCIT) - NCIT:C13040 + regional part of nervous system (NCIT) @@ -5852,8 +5004,7 @@ - multicellular organism (NCIT) - NCIT:C13041 + multicellular organism (NCIT) @@ -5862,8 +5013,7 @@ - skeletal joint (NCIT) - NCIT:C13044 + skeletal joint (NCIT) @@ -5872,8 +5022,7 @@ - tendon (NCIT) - NCIT:C13045 + tendon (NCIT) @@ -5882,8 +5031,7 @@ - ligament (NCIT) - NCIT:C13046 + ligament (NCIT) @@ -5892,8 +5040,7 @@ - seminiferous tubule of testis (NCIT) - NCIT:C13047 + seminiferous tubule of testis (NCIT) @@ -5902,8 +5049,7 @@ - nephron (NCIT) - NCIT:C13048 + nephron (NCIT) @@ -5912,8 +5058,7 @@ - lymphoid tissue (NCIT) - NCIT:C13049 + lymphoid tissue (NCIT) @@ -5922,8 +5067,7 @@ - skeletal muscle tissue (NCIT) - NCIT:C13050 + skeletal muscle tissue (NCIT) @@ -5932,8 +5076,7 @@ - hematopoietic tissue (NCIT) - NCIT:C13051 + hematopoietic tissue (NCIT) @@ -5942,8 +5085,7 @@ - neural tissue (NCIT) - NCIT:C13052 + neural tissue (NCIT) @@ -5952,8 +5094,7 @@ - cardiovascular system endothelium (NCIT) - NCIT:C13053 + cardiovascular system endothelium (NCIT) @@ -5962,8 +5103,7 @@ - musculature (NCIT) - NCIT:C13056 + musculature (NCIT) @@ -5972,8 +5112,7 @@ - special sense organ system (NCIT) - NCIT:C13058 + special sense organ system (NCIT) @@ -5982,8 +5121,7 @@ - sensory ganglion (NCIT) - NCIT:C13060 + sensory ganglion (NCIT) @@ -5992,8 +5130,7 @@ - dorsum (NCIT) - NCIT:C13062 + dorsum (NCIT) @@ -6002,8 +5139,7 @@ - neck (NCIT) - NCIT:C13063 + neck (NCIT) @@ -6012,8 +5148,7 @@ - sphincter of hepatopancreatic ampulla (NCIT) - NCIT:C13065 + sphincter of hepatopancreatic ampulla (NCIT) @@ -6022,8 +5157,7 @@ - ileocecal valve (NCIT) - NCIT:C13066 + ileocecal valve (NCIT) @@ -6032,8 +5166,7 @@ - nucleus of solitary tract (NCIT) - NCIT:C13067 + nucleus of solitary tract (NCIT) @@ -6042,8 +5175,7 @@ - pes bone (NCIT) - NCIT:C13068 + pes bone (NCIT) @@ -6052,8 +5184,7 @@ - cheek (NCIT) - NCIT:C13070 + cheek (NCIT) @@ -6062,8 +5193,7 @@ - face (NCIT) - NCIT:C13071 + face (NCIT) @@ -6072,8 +5202,7 @@ - dentition (NCIT) - NCIT:C13072 + dentition (NCIT) @@ -6082,8 +5211,7 @@ - facial muscle (NCIT) - NCIT:C13073 + facial muscle (NCIT) @@ -6092,8 +5220,7 @@ - masseter muscle (NCIT) - NCIT:C13074 + masseter muscle (NCIT) @@ -6102,8 +5229,7 @@ - chordate pharyngeal muscle (NCIT) - NCIT:C13075 + chordate pharyngeal muscle (NCIT) @@ -6112,8 +5238,7 @@ - bone tissue (NCIT) - NCIT:C13076 + bone tissue (NCIT) @@ -6122,8 +5247,7 @@ - ependyma (NCIT) - NCIT:C13078 + ependyma (NCIT) @@ -6132,8 +5256,7 @@ - internal capsule of telencephalon (NCIT) - NCIT:C13082 + internal capsule of telencephalon (NCIT) @@ -6142,8 +5265,7 @@ - medial forebrain bundle (NCIT) - NCIT:C13083 + medial forebrain bundle (NCIT) @@ -6152,8 +5274,7 @@ - perforant path (NCIT) - NCIT:C13084 + perforant path (NCIT) @@ -6162,8 +5283,7 @@ - alveolar wall (NCIT) - NCIT:C13085 + alveolar wall (NCIT) @@ -6172,8 +5292,7 @@ - prostatic capsule (NCIT) - NCIT:C13086 + prostatic capsule (NCIT) @@ -6182,8 +5301,7 @@ - apex of prostate (NCIT) - NCIT:C13087 + apex of prostate (NCIT) @@ -6192,8 +5310,7 @@ - base of prostate (NCIT) - NCIT:C13088 + base of prostate (NCIT) @@ -6202,8 +5319,7 @@ - anterior surface of prostate (NCIT) - NCIT:C13089 + anterior surface of prostate (NCIT) @@ -6212,8 +5328,7 @@ - inferolateral surface of prostate (NCIT) - NCIT:C13090 + inferolateral surface of prostate (NCIT) @@ -6222,8 +5337,7 @@ - surface of prostate (NCIT) - NCIT:C13091 + surface of prostate (NCIT) @@ -6232,8 +5346,7 @@ - prostate gland lateral lobe (NCIT) - NCIT:C13092 + prostate gland lateral lobe (NCIT) @@ -6242,8 +5355,7 @@ - posterior lobe of prostate (NCIT) - NCIT:C13093 + posterior lobe of prostate (NCIT) @@ -6252,8 +5364,7 @@ - median lobe of prostate (NCIT) - NCIT:C13094 + median lobe of prostate (NCIT) @@ -6262,8 +5373,7 @@ - posterior surface of prostate (NCIT) - NCIT:C13095 + posterior surface of prostate (NCIT) @@ -6272,8 +5382,7 @@ - muscle tissue of prostate (NCIT) - NCIT:C13100 + muscle tissue of prostate (NCIT) @@ -6282,8 +5391,7 @@ - prostatic urethra (NCIT) - NCIT:C13101 + prostatic urethra (NCIT) @@ -6292,8 +5400,7 @@ - prostate duct (NCIT) - NCIT:C13102 + prostate duct (NCIT) @@ -6302,8 +5409,7 @@ - prostate epithelium (NCIT) - NCIT:C13103 + prostate epithelium (NCIT) @@ -6312,8 +5418,7 @@ - prostate gland stroma (NCIT) - NCIT:C13104 + prostate gland stroma (NCIT) @@ -6322,8 +5427,7 @@ - fascia (NCIT) - NCIT:C13108 + fascia (NCIT) @@ -6332,8 +5436,7 @@ - epicardium (NCIT) - NCIT:C13164 + epicardium (NCIT) @@ -6342,8 +5445,7 @@ - mucosa (NCIT) - NCIT:C13166 + mucosa (NCIT) @@ -6352,8 +5454,7 @@ - submucosa (NCIT) - NCIT:C13167 + submucosa (NCIT) @@ -6362,8 +5463,7 @@ - serous membrane (NCIT) - NCIT:C13169 + serous membrane (NCIT) @@ -6372,8 +5472,7 @@ - Hassall's corpuscle (NCIT) - NCIT:C13170 + Hassall's corpuscle (NCIT) @@ -6382,8 +5481,7 @@ - Meissner's corpuscle (NCIT) - NCIT:C13171 + Meissner's corpuscle (NCIT) @@ -6392,8 +5490,7 @@ - Pacinian corpuscle (NCIT) - NCIT:C13172 + Pacinian corpuscle (NCIT) @@ -6402,8 +5499,7 @@ - unencapsulated tactile receptor (NCIT) - NCIT:C13174 + unencapsulated tactile receptor (NCIT) @@ -6412,8 +5508,7 @@ - Ruffini nerve ending (NCIT) - NCIT:C13175 + Ruffini nerve ending (NCIT) @@ -6422,8 +5517,7 @@ - simple squamous epithelium (NCIT) - NCIT:C13178 + simple squamous epithelium (NCIT) @@ -6432,8 +5526,7 @@ - basilar membrane of cochlea (NCIT) - NCIT:C13179 + basilar membrane of cochlea (NCIT) @@ -6442,8 +5535,7 @@ - stratified squamous epithelium (NCIT) - NCIT:C13180 + stratified squamous epithelium (NCIT) @@ -6452,8 +5544,7 @@ - pseudostratified ciliated columnar epithelium (NCIT) - NCIT:C13181 + pseudostratified ciliated columnar epithelium (NCIT) @@ -6462,8 +5553,7 @@ - glandular columnar epithelium (NCIT) - NCIT:C13182 + glandular columnar epithelium (NCIT) @@ -6472,8 +5562,7 @@ - endosteum (NCIT) - NCIT:C13183 + endosteum (NCIT) @@ -6482,8 +5571,7 @@ - periosteum (NCIT) - NCIT:C13184 + periosteum (NCIT) @@ -6492,8 +5580,7 @@ - amniotic fluid (NCIT) - NCIT:C13188 + amniotic fluid (NCIT) @@ -6502,8 +5589,7 @@ - aqueous humor of eyeball (NCIT) - NCIT:C13190 + aqueous humor of eyeball (NCIT) @@ -6512,8 +5598,7 @@ - basement membrane of epithelium (NCIT) - NCIT:C13191 + basement membrane of epithelium (NCIT) @@ -6522,8 +5607,7 @@ - bile (NCIT) - NCIT:C13192 + bile (NCIT) @@ -6532,8 +5616,7 @@ - blood brain barrier (NCIT) - NCIT:C13194 + blood brain barrier (NCIT) @@ -6542,8 +5625,7 @@ - neural nucleus (NCIT) - NCIT:C13197 + neural nucleus (NCIT) @@ -6552,8 +5634,7 @@ - embryonic structure (NCIT) - NCIT:C13229 + embryonic structure (NCIT) @@ -6562,8 +5643,7 @@ - feces (NCIT) - NCIT:C13234 + feces (NCIT) @@ -6572,8 +5652,7 @@ - late embryo (NCIT) - NCIT:C13235 + late embryo (NCIT) @@ -6582,8 +5661,7 @@ - organism substance (NCIT) - NCIT:C13236 + organism substance (NCIT) @@ -6592,8 +5670,7 @@ - renal glomerulus (NCIT) - NCIT:C13250 + renal glomerulus (NCIT) @@ -6602,8 +5679,7 @@ - lymph (NCIT) - NCIT:C13252 + lymph (NCIT) @@ -6612,8 +5688,7 @@ - mucus (NCIT) - NCIT:C13259 + mucus (NCIT) @@ -6622,8 +5697,7 @@ - Mullerian duct (NCIT) - NCIT:C13260 + Mullerian duct (NCIT) @@ -6632,8 +5706,7 @@ - entire myelin sheath (NCIT) - NCIT:C13261 + entire myelin sheath (NCIT) @@ -6642,8 +5715,7 @@ - pancreas secretion (NCIT) - NCIT:C13270 + pancreas secretion (NCIT) @@ -6652,8 +5724,7 @@ - placenta (NCIT) - NCIT:C13272 + placenta (NCIT) @@ -6662,8 +5733,7 @@ - pulmonary surfactant (NCIT) - NCIT:C13273 + pulmonary surfactant (NCIT) @@ -6672,8 +5742,7 @@ - saliva (NCIT) - NCIT:C13275 + saliva (NCIT) @@ -6682,8 +5751,7 @@ - sebum (NCIT) - NCIT:C13276 + sebum (NCIT) @@ -6692,8 +5760,7 @@ - semen (NCIT) - NCIT:C13277 + semen (NCIT) @@ -6702,8 +5769,7 @@ - sputum (NCIT) - NCIT:C13278 + sputum (NCIT) @@ -6712,8 +5778,7 @@ - sweat (NCIT) - NCIT:C13280 + sweat (NCIT) @@ -6722,8 +5787,7 @@ - urine (NCIT) - NCIT:C13283 + urine (NCIT) @@ -6732,8 +5796,7 @@ - mesenchyme (NCIT) - NCIT:C13301 + mesenchyme (NCIT) @@ -6742,20 +5805,7 @@ - hair follicle (NCIT) - NCIT:C13317 - - - - - - - - - - urinary bladder urothelium (NCIT) - urothelium (NCIT) - NCIT:C13318 + hair follicle (NCIT) @@ -6764,8 +5814,7 @@ - gland (NCIT) - NCIT:C13319 + gland (NCIT) @@ -6774,8 +5823,7 @@ - vitreous humor (NCIT) - NCIT:C13323 + vitreous humor (NCIT) @@ -6784,8 +5832,7 @@ - blood serum (NCIT) - NCIT:C13325 + blood serum (NCIT) @@ -6794,8 +5841,7 @@ - germinal center (NCIT) - NCIT:C13337 + germinal center (NCIT) @@ -6804,8 +5850,7 @@ - blood plasma (NCIT) - NCIT:C13356 + blood plasma (NCIT) @@ -6814,8 +5859,7 @@ - ocular fundus (NCIT) - NCIT:C13378 + ocular fundus (NCIT) @@ -6824,8 +5868,7 @@ - anatomical lobe (NCIT) - NCIT:C13393 + anatomical lobe (NCIT) @@ -6834,8 +5877,7 @@ - milk (NCIT) - NCIT:C13401 + milk (NCIT) @@ -6844,8 +5886,7 @@ - semen (NCIT) - NCIT:C13713 + semen (NCIT) @@ -6854,8 +5895,7 @@ - respiratory system fluid/secretion (NCIT) - NCIT:C13722 + respiratory system fluid/secretion (NCIT) @@ -6864,8 +5904,7 @@ - blastocyst (NCIT) - NCIT:C13739 + blastocyst (NCIT) @@ -6874,8 +5913,7 @@ - inner cell mass (NCIT) - NCIT:C13740 + inner cell mass (NCIT) @@ -6884,8 +5922,7 @@ - sensory receptor (NCIT) - NCIT:C13819 + sensory receptor (NCIT) @@ -6894,8 +5931,7 @@ - mechanoreceptor (NCIT) - NCIT:C13821 + mechanoreceptor (NCIT) @@ -6904,8 +5940,7 @@ - thermoreceptor (NCIT) - NCIT:C13822 + thermoreceptor (NCIT) @@ -6914,8 +5949,7 @@ - muscle spindle (NCIT) - NCIT:C13824 + muscle spindle (NCIT) @@ -6924,8 +5958,7 @@ - golgi tendon organ (NCIT) - NCIT:C13826 + golgi tendon organ (NCIT) @@ -6934,8 +5967,7 @@ - yolk sac (NCIT) - NCIT:C14128 + yolk sac (NCIT) @@ -6944,8 +5976,7 @@ - late adult stage (NCIT) - NCIT:C16268 + late adult stage (NCIT) @@ -6954,8 +5985,7 @@ - adult organism (NCIT) - NCIT:C17600 + adult organism (NCIT) @@ -6964,8 +5994,7 @@ - preputial gland (NCIT) - NCIT:C22174 + preputial gland (NCIT) @@ -6974,8 +6003,7 @@ - gland of nasal mucosa (NCIT) - NCIT:C22725 + gland of nasal mucosa (NCIT) @@ -6984,8 +6012,7 @@ - reproductive organ (NCIT) - NCIT:C25177 + reproductive organ (NCIT) @@ -6994,8 +6021,7 @@ - shoulder (NCIT) - NCIT:C25203 + shoulder (NCIT) @@ -7004,8 +6030,7 @@ - carina of trachea (NCIT) - NCIT:C25264 + carina of trachea (NCIT) @@ -7014,8 +6039,7 @@ - infraclavicular region (NCIT) - NCIT:C25268 + infraclavicular region (NCIT) @@ -7024,8 +6048,7 @@ - paraaortic body (NCIT) - NCIT:C25316 + paraaortic body (NCIT) @@ -7034,8 +6057,7 @@ - chest (NCIT) - NCIT:C25389 + chest (NCIT) @@ -7044,8 +6066,7 @@ - coelemic cavity lumen (NCIT) - NCIT:C25444 + coelemic cavity lumen (NCIT) @@ -7054,8 +6075,7 @@ - epithelial layer of duct (NCIT) - NCIT:C25787 + epithelial layer of duct (NCIT) @@ -7064,8 +6084,7 @@ - fovea centralis (NCIT) - NCIT:C26463 + fovea centralis (NCIT) @@ -7074,8 +6093,7 @@ - macula lutea (NCIT) - NCIT:C26464 + macula lutea (NCIT) @@ -7084,8 +6102,7 @@ - corpus luteum (NCIT) - NCIT:C26465 + corpus luteum (NCIT) @@ -7094,8 +6111,7 @@ - mesonephros (NCIT) - NCIT:C26467 + mesonephros (NCIT) @@ -7104,8 +6120,7 @@ - mesonephric duct (NCIT) - NCIT:C26469 + mesonephric duct (NCIT) @@ -7114,8 +6129,7 @@ - maxilla (NCIT) - NCIT:C26470 + maxilla (NCIT) @@ -7124,8 +6138,7 @@ - embryo (NCIT) - NCIT:C28147 + embryo (NCIT) @@ -7134,8 +6147,7 @@ - chorioallantoic membrane (NCIT) - NCIT:C28216 + chorioallantoic membrane (NCIT) @@ -7144,8 +6156,7 @@ - viscus (NCIT) - NCIT:C28287 + viscus (NCIT) @@ -7154,8 +6165,7 @@ - neural decussation (NCIT) - NCIT:C28351 + neural decussation (NCIT) @@ -7164,8 +6174,7 @@ - sphincter muscle (NCIT) - NCIT:C28381 + sphincter muscle (NCIT) @@ -7174,8 +6183,7 @@ - olfactory bulb (NCIT) - NCIT:C28401 + olfactory bulb (NCIT) @@ -7184,8 +6192,7 @@ - primitive streak (NCIT) - NCIT:C28402 + primitive streak (NCIT) @@ -7194,8 +6201,7 @@ - subsegmental lymph node (NCIT) - NCIT:C28745 + subsegmental lymph node (NCIT) @@ -7204,8 +6210,7 @@ - entire surface of organism (NCIT) - NCIT:C29667 + entire surface of organism (NCIT) @@ -7214,8 +6219,7 @@ - abdominal aorta (NCIT) - NCIT:C32038 + abdominal aorta (NCIT) @@ -7224,8 +6228,7 @@ - muscle of abdomen (NCIT) - NCIT:C32040 + muscle of abdomen (NCIT) @@ -7234,8 +6237,7 @@ - accessory XI nerve (NCIT) - NCIT:C32041 + accessory XI nerve (NCIT) @@ -7244,8 +6246,7 @@ - acetabular part of hip bone (NCIT) - NCIT:C32042 + acetabular part of hip bone (NCIT) @@ -7254,8 +6255,7 @@ - calcaneal tendon (NCIT) - NCIT:C32043 + calcaneal tendon (NCIT) @@ -7264,8 +6264,7 @@ - thoraco-acromial artery (NCIT) - NCIT:C32046 + thoraco-acromial artery (NCIT) @@ -7274,8 +6273,7 @@ - acromioclavicular joint (NCIT) - NCIT:C32047 + acromioclavicular joint (NCIT) @@ -7284,8 +6282,7 @@ - acromion (NCIT) - NCIT:C32048 + acromion (NCIT) @@ -7294,8 +6291,7 @@ - adrenal gland capsule (NCIT) - NCIT:C32050 + adrenal gland capsule (NCIT) @@ -7304,8 +6300,7 @@ - adrenal tissue (NCIT) - NCIT:C32051 + adrenal tissue (NCIT) @@ -7314,8 +6309,7 @@ - pulmonary alveolar duct (NCIT) - NCIT:C32056 + pulmonary alveolar duct (NCIT) @@ -7324,8 +6318,7 @@ - alveolar sac (NCIT) - NCIT:C32057 + alveolar sac (NCIT) @@ -7334,8 +6327,7 @@ - hippocampus alveus (NCIT) - NCIT:C32058 + hippocampus alveus (NCIT) @@ -7344,8 +6336,7 @@ - amphiarthrosis (NCIT) - NCIT:C32061 + amphiarthrosis (NCIT) @@ -7354,8 +6345,7 @@ - crista ampullaris (NCIT) - NCIT:C32063 + crista ampullaris (NCIT) @@ -7364,20 +6354,7 @@ - anal column (NCIT) - NCIT:C32067 - - - - - - - - - - gland of anal canal (NCIT) - gland of anal sac (NCIT) - NCIT:C32068 + anal column (NCIT) @@ -7386,8 +6363,7 @@ - anal region (NCIT) - NCIT:C32069 + anal region (NCIT) @@ -7396,8 +6372,7 @@ - anal sinus (NCIT) - NCIT:C32070 + anal sinus (NCIT) @@ -7406,8 +6381,7 @@ - ocular angle artery (NCIT) - NCIT:C32076 + ocular angle artery (NCIT) @@ -7416,8 +6390,7 @@ - angular gyrus (NCIT) - NCIT:C32077 + angular gyrus (NCIT) @@ -7426,8 +6399,7 @@ - ankle joint (NCIT) - NCIT:C32078 + ankle joint (NCIT) @@ -7436,8 +6408,7 @@ - branch of anterior cerebral artery (NCIT) - NCIT:C32082 + branch of anterior cerebral artery (NCIT) @@ -7446,8 +6417,7 @@ - anterior choroidal artery (NCIT) - NCIT:C32083 + anterior choroidal artery (NCIT) @@ -7456,8 +6426,7 @@ - anterior commissure (NCIT) - NCIT:C32086 + anterior commissure (NCIT) @@ -7466,8 +6435,7 @@ - anterior communicating artery (NCIT) - NCIT:C32087 + anterior communicating artery (NCIT) @@ -7476,8 +6444,7 @@ - anterior cruciate ligament of knee joint (NCIT) - NCIT:C32088 + anterior cruciate ligament of knee joint (NCIT) @@ -7486,8 +6453,7 @@ - anterior cranial fossa (NCIT) - NCIT:C32090 + anterior cranial fossa (NCIT) @@ -7496,8 +6462,7 @@ - anterior inferior cerebellar artery (NCIT) - NCIT:C32091 + anterior inferior cerebellar artery (NCIT) @@ -7506,8 +6471,7 @@ - anterior jugular vein (NCIT) - NCIT:C32094 + anterior jugular vein (NCIT) @@ -7516,8 +6480,7 @@ - anterior longitudinal ligament (NCIT) - NCIT:C32095 + anterior longitudinal ligament (NCIT) @@ -7526,8 +6489,7 @@ - anterior median fissure of spinal cord (NCIT) - NCIT:C32096 + anterior median fissure of spinal cord (NCIT) @@ -7536,8 +6498,7 @@ - anterior mediastinal lymph node (NCIT) - NCIT:C32097 + anterior mediastinal lymph node (NCIT) @@ -7546,8 +6507,7 @@ - anterior mediastinum (NCIT) - NCIT:C32098 + anterior mediastinum (NCIT) @@ -7556,8 +6516,7 @@ - anterior meningeal artery (NCIT) - NCIT:C32099 + anterior meningeal artery (NCIT) @@ -7566,8 +6525,7 @@ - anterior parietal artery (NCIT) - NCIT:C32101 + anterior parietal artery (NCIT) @@ -7576,8 +6534,7 @@ - anterior pole of lens (NCIT) - NCIT:C32103 + anterior pole of lens (NCIT) @@ -7586,8 +6543,7 @@ - anterior surface of kidney (NCIT) - NCIT:C32107 + anterior surface of kidney (NCIT) @@ -7596,8 +6552,7 @@ - anterior temporal artery (NCIT) - NCIT:C32113 + anterior temporal artery (NCIT) @@ -7606,8 +6561,7 @@ - anterior tibial vein (NCIT) - NCIT:C32115 + anterior tibial vein (NCIT) @@ -7616,8 +6570,7 @@ - anterior part of tympanic bone (NCIT) - NCIT:C32117 + anterior part of tympanic bone (NCIT) @@ -7626,8 +6579,7 @@ - antihelix (NCIT) - NCIT:C32120 + antihelix (NCIT) @@ -7636,8 +6588,7 @@ - antitragus (NCIT) - NCIT:C32121 + antitragus (NCIT) @@ -7646,8 +6597,7 @@ - pharyngeal arch artery (NCIT) - NCIT:C32123 + pharyngeal arch artery (NCIT) @@ -7656,8 +6606,7 @@ - apex of heart (NCIT) - NCIT:C32126 + apex of heart (NCIT) @@ -7666,8 +6615,7 @@ - anterior part of tongue (NCIT) - NCIT:C32130 + anterior part of tongue (NCIT) @@ -7676,8 +6624,7 @@ - apocrine sweat gland (NCIT) - NCIT:C32132 + apocrine sweat gland (NCIT) @@ -7686,8 +6633,7 @@ - aponeurosis (NCIT) - NCIT:C32133 + aponeurosis (NCIT) @@ -7696,8 +6642,7 @@ - midbrain cerebral aqueduct (NCIT) - NCIT:C32135 + midbrain cerebral aqueduct (NCIT) @@ -7706,8 +6651,7 @@ - arachnoid mater (NCIT) - NCIT:C32136 + arachnoid mater (NCIT) @@ -7716,8 +6660,7 @@ - arachnoid villus (NCIT) - NCIT:C32137 + arachnoid villus (NCIT) @@ -7726,8 +6669,7 @@ - neural arch (NCIT) - NCIT:C32138 + neural arch (NCIT) @@ -7736,8 +6678,7 @@ - forelimb stylopod (NCIT) - NCIT:C32141 + forelimb stylopod (NCIT) @@ -7746,8 +6687,7 @@ - articular cartilage of joint (NCIT) - NCIT:C32144 + articular cartilage of joint (NCIT) @@ -7756,8 +6696,7 @@ - aryepiglotticus muscle (NCIT) - NCIT:C32146 + aryepiglotticus muscle (NCIT) @@ -7766,8 +6705,7 @@ - aryepiglottic fold (NCIT) - NCIT:C32147 + aryepiglottic fold (NCIT) @@ -7776,8 +6714,7 @@ - arytenoid cartilage (NCIT) - NCIT:C32148 + arytenoid cartilage (NCIT) @@ -7786,8 +6723,7 @@ - arytenoid muscle (NCIT) - NCIT:C32149 + arytenoid muscle (NCIT) @@ -7796,8 +6732,7 @@ - ascending aorta (NCIT) - NCIT:C32150 + ascending aorta (NCIT) @@ -7806,8 +6741,7 @@ - ascending limb of loop of Henle (NCIT) - NCIT:C32154 + ascending limb of loop of Henle (NCIT) @@ -7816,8 +6750,7 @@ - atlanto-axial joint (NCIT) - NCIT:C32157 + atlanto-axial joint (NCIT) @@ -7826,8 +6759,7 @@ - atlanto-occipital joint (NCIT) - NCIT:C32158 + atlanto-occipital joint (NCIT) @@ -7836,8 +6768,7 @@ - bundle of His (NCIT) - NCIT:C32160 + bundle of His (NCIT) @@ -7846,8 +6777,7 @@ - atrioventricular node (NCIT) - NCIT:C32161 + atrioventricular node (NCIT) @@ -7856,8 +6786,7 @@ - auditory ossicle bone (NCIT) - NCIT:C32164 + auditory ossicle bone (NCIT) @@ -7866,8 +6795,7 @@ - pinna (NCIT) - NCIT:C32165 + pinna (NCIT) @@ -7876,8 +6804,7 @@ - axillary artery (NCIT) - NCIT:C32169 + axillary artery (NCIT) @@ -7886,8 +6813,7 @@ - axillary vein (NCIT) - NCIT:C32171 + axillary vein (NCIT) @@ -7896,8 +6822,7 @@ - axial skeleton plus cranial skeleton (NCIT) - NCIT:C32172 + axial skeleton plus cranial skeleton (NCIT) @@ -7906,8 +6831,7 @@ - basal lamina of epithelium (NCIT) - NCIT:C32186 + basal lamina of epithelium (NCIT) @@ -7916,8 +6840,7 @@ - basal layer of endometrium (NCIT) - NCIT:C32189 + basal layer of endometrium (NCIT) @@ -7926,8 +6849,7 @@ - branch of basilar artery (NCIT) - NCIT:C32195 + branch of basilar artery (NCIT) @@ -7936,8 +6858,7 @@ - basilic vein (NCIT) - NCIT:C32197 + basilic vein (NCIT) @@ -7946,8 +6867,7 @@ - biceps brachii (NCIT) - NCIT:C32200 + biceps brachii (NCIT) @@ -7956,8 +6876,7 @@ - premolar tooth (NCIT) - NCIT:C32201 + premolar tooth (NCIT) @@ -7966,8 +6885,7 @@ - bile canaliculus (NCIT) - NCIT:C32202 + bile canaliculus (NCIT) @@ -7976,8 +6894,7 @@ - mucosa of urinary bladder (NCIT) - NCIT:C32205 + mucosa of urinary bladder (NCIT) @@ -7986,8 +6903,7 @@ - muscle layer of urinary bladder (NCIT) - NCIT:C32206 + muscle layer of urinary bladder (NCIT) @@ -7996,8 +6912,7 @@ - urinary bladder muscularis mucosa (NCIT) - NCIT:C32207 + urinary bladder muscularis mucosa (NCIT) @@ -8006,8 +6921,7 @@ - capillary blood (NCIT) - NCIT:C32212 + capillary blood (NCIT) @@ -8016,8 +6930,7 @@ - body of corpus callosum (NCIT) - NCIT:C32216 + body of corpus callosum (NCIT) @@ -8026,8 +6939,7 @@ - corpus epididymis (NCIT) - NCIT:C32217 + corpus epididymis (NCIT) @@ -8036,8 +6948,7 @@ - body of lateral ventricle (NCIT) - NCIT:C32218 + body of lateral ventricle (NCIT) @@ -8046,8 +6957,7 @@ - organism subdivision (NCIT) - NCIT:C32221 + organism subdivision (NCIT) @@ -8056,8 +6966,7 @@ - limb bone (NCIT) - NCIT:C32223 + limb bone (NCIT) @@ -8066,8 +6975,7 @@ - glomerular capsule (NCIT) - NCIT:C32225 + glomerular capsule (NCIT) @@ -8076,8 +6984,7 @@ - anterior limiting lamina of cornea (NCIT) - NCIT:C32226 + anterior limiting lamina of cornea (NCIT) @@ -8086,8 +6993,7 @@ - branch of brachial artery (NCIT) - NCIT:C32227 + branch of brachial artery (NCIT) @@ -8096,8 +7002,7 @@ - pituitary stalk (NCIT) - NCIT:C32228 + pituitary stalk (NCIT) @@ -8106,8 +7011,7 @@ - bronchial artery (NCIT) - NCIT:C32230 + bronchial artery (NCIT) @@ -8116,8 +7020,7 @@ - epithelium of bronchus (NCIT) - NCIT:C32231 + epithelium of bronchus (NCIT) @@ -8126,8 +7029,7 @@ - bronchial lymph node (NCIT) - NCIT:C32232 + bronchial lymph node (NCIT) @@ -8136,8 +7038,7 @@ - bronchial-associated lymphoid tissue (NCIT) - NCIT:C32234 + bronchial-associated lymphoid tissue (NCIT) @@ -8146,8 +7047,7 @@ - brown adipose tissue (NCIT) - NCIT:C32235 + brown adipose tissue (NCIT) @@ -8156,8 +7056,7 @@ - buccal salivary gland (NCIT) - NCIT:C32237 + buccal salivary gland (NCIT) @@ -8166,8 +7065,7 @@ - vertebral bone 1 (NCIT) - NCIT:C32239 + vertebral bone 1 (NCIT) @@ -8176,8 +7074,7 @@ - vertebral bone 2 (NCIT) - NCIT:C32240 + vertebral bone 2 (NCIT) @@ -8186,8 +7083,7 @@ - mammalian cervical vertebra 3 (NCIT) - NCIT:C32241 + mammalian cervical vertebra 3 (NCIT) @@ -8196,8 +7092,7 @@ - mammalian cervical vertebra 4 (NCIT) - NCIT:C32242 + mammalian cervical vertebra 4 (NCIT) @@ -8206,8 +7101,7 @@ - mammalian cervical vertebra 5 (NCIT) - NCIT:C32243 + mammalian cervical vertebra 5 (NCIT) @@ -8216,8 +7110,7 @@ - mammalian cervical vertebra 6 (NCIT) - NCIT:C32244 + mammalian cervical vertebra 6 (NCIT) @@ -8226,8 +7119,7 @@ - mammalian cervical vertebra 7 (NCIT) - NCIT:C32245 + mammalian cervical vertebra 7 (NCIT) @@ -8236,8 +7128,7 @@ - CA1 field of hippocampus (NCIT) - NCIT:C32246 + CA1 field of hippocampus (NCIT) @@ -8246,8 +7137,7 @@ - CA2 field of hippocampus (NCIT) - NCIT:C32247 + CA2 field of hippocampus (NCIT) @@ -8256,8 +7146,7 @@ - CA3 field of hippocampus (NCIT) - NCIT:C32248 + CA3 field of hippocampus (NCIT) @@ -8266,8 +7155,7 @@ - CA4 field of hippocampus (NCIT) - NCIT:C32249 + CA4 field of hippocampus (NCIT) @@ -8276,8 +7164,7 @@ - calcaneus (NCIT) - NCIT:C32250 + calcaneus (NCIT) @@ -8286,8 +7173,7 @@ - calcarine artery (NCIT) - NCIT:C32251 + calcarine artery (NCIT) @@ -8296,8 +7182,7 @@ - calcarine sulcus (NCIT) - NCIT:C32252 + calcarine sulcus (NCIT) @@ -8306,8 +7191,7 @@ - intralobular bile duct (NCIT) - NCIT:C32255 + intralobular bile duct (NCIT) @@ -8316,8 +7200,7 @@ - canal of Schlemm (NCIT) - NCIT:C32256 + canal of Schlemm (NCIT) @@ -8326,8 +7209,7 @@ - cuspid (NCIT) - NCIT:C32258 + cuspid (NCIT) @@ -8336,8 +7218,7 @@ - articular capsule (NCIT) - NCIT:C32259 + articular capsule (NCIT) @@ -8346,8 +7227,7 @@ - intercarpal joint (NCIT) - NCIT:C32264 + intercarpal joint (NCIT) @@ -8356,8 +7236,7 @@ - carpometacarpal joint (NCIT) - NCIT:C32265 + carpometacarpal joint (NCIT) @@ -8366,8 +7245,7 @@ - cartilage tissue (NCIT) - NCIT:C32268 + cartilage tissue (NCIT) @@ -8376,8 +7254,7 @@ - cementum (NCIT) - NCIT:C32276 + cementum (NCIT) @@ -8386,8 +7263,7 @@ - insula (NCIT) - NCIT:C32278 + insula (NCIT) @@ -8396,8 +7272,7 @@ - central sulcus (NCIT) - NCIT:C32280 + central sulcus (NCIT) @@ -8406,8 +7281,7 @@ - central vein of liver (NCIT) - NCIT:C32281 + central vein of liver (NCIT) @@ -8416,8 +7290,7 @@ - centromedian nucleus of thalamus (NCIT) - NCIT:C32284 + centromedian nucleus of thalamus (NCIT) @@ -8426,8 +7299,7 @@ - cephalic vein (NCIT) - NCIT:C32286 + cephalic vein (NCIT) @@ -8436,8 +7308,7 @@ - fornix of brain (NCIT) - NCIT:C32289 + fornix of brain (NCIT) @@ -8446,8 +7317,7 @@ - gyrus (NCIT) - NCIT:C32290 + gyrus (NCIT) @@ -8456,8 +7326,7 @@ - cerebral peduncle (NCIT) - NCIT:C32291 + cerebral peduncle (NCIT) @@ -8466,8 +7335,7 @@ - sulcus of brain (NCIT) - NCIT:C32292 + sulcus of brain (NCIT) @@ -8476,8 +7344,7 @@ - cerumen (NCIT) - NCIT:C32293 + cerumen (NCIT) @@ -8486,8 +7353,7 @@ - cerumen gland (NCIT) - NCIT:C32294 + cerumen gland (NCIT) @@ -8496,8 +7362,7 @@ - cervical gland (NCIT) - NCIT:C32296 + cervical gland (NCIT) @@ -8506,8 +7371,7 @@ - cervical lymph node (NCIT) - NCIT:C32298 + cervical lymph node (NCIT) @@ -8516,8 +7380,7 @@ - nerve of cervical vertebra (NCIT) - NCIT:C32299 + nerve of cervical vertebra (NCIT) @@ -8526,8 +7389,7 @@ - chamber of eyeball (NCIT) - NCIT:C32301 + chamber of eyeball (NCIT) @@ -8536,8 +7398,7 @@ - chiasmatic cistern (NCIT) - NCIT:C32304 + chiasmatic cistern (NCIT) @@ -8546,8 +7407,7 @@ - chorda tendineae (NCIT) - NCIT:C32307 + chorda tendineae (NCIT) @@ -8556,8 +7416,7 @@ - choroid plexus of fourth ventricle (NCIT) - NCIT:C32308 + choroid plexus of fourth ventricle (NCIT) @@ -8566,8 +7425,7 @@ - choroid plexus of lateral ventricle (NCIT) - NCIT:C32309 + choroid plexus of lateral ventricle (NCIT) @@ -8576,8 +7434,7 @@ - choroidal artery (NCIT) - NCIT:C32310 + choroidal artery (NCIT) @@ -8586,8 +7443,7 @@ - ventricular system choroidal fissure (NCIT) - NCIT:C32311 + ventricular system choroidal fissure (NCIT) @@ -8596,8 +7452,7 @@ - ciliary epithelium (NCIT) - NCIT:C32314 + ciliary epithelium (NCIT) @@ -8606,8 +7461,7 @@ - ciliary muscle (NCIT) - NCIT:C32315 + ciliary muscle (NCIT) @@ -8616,8 +7470,7 @@ - petrous part of temporal bone (NCIT) - NCIT:C32316 + petrous part of temporal bone (NCIT) @@ -8626,8 +7479,7 @@ - circular sulcus of insula (NCIT) - NCIT:C32321 + circular sulcus of insula (NCIT) @@ -8636,8 +7488,7 @@ - vallate papilla (NCIT) - NCIT:C32322 + vallate papilla (NCIT) @@ -8646,8 +7497,7 @@ - posterior cerebellomedullary cistern (NCIT) - NCIT:C32324 + posterior cerebellomedullary cistern (NCIT) @@ -8656,8 +7506,7 @@ - claustrum of brain (NCIT) - NCIT:C32329 + claustrum of brain (NCIT) @@ -8666,8 +7515,7 @@ - coccygeal nerve (NCIT) - NCIT:C32333 + coccygeal nerve (NCIT) @@ -8676,8 +7524,7 @@ - caudal vertebra (NCIT) - NCIT:C32334 + caudal vertebra (NCIT) @@ -8686,8 +7533,7 @@ - cochlear duct of membranous labyrinth (NCIT) - NCIT:C32335 + cochlear duct of membranous labyrinth (NCIT) @@ -8696,8 +7542,7 @@ - cochlear labyrinth (NCIT) - NCIT:C32336 + cochlear labyrinth (NCIT) @@ -8706,8 +7551,7 @@ - collection of collagen fibrils (NCIT) - NCIT:C32339 + collection of collagen fibrils (NCIT) @@ -8716,8 +7560,7 @@ - collateral sulcus (NCIT) - NCIT:C32340 + collateral sulcus (NCIT) @@ -8726,8 +7569,7 @@ - neck of tooth (NCIT) - NCIT:C32346 + neck of tooth (NCIT) @@ -8736,8 +7578,7 @@ - colostrum (NCIT) - NCIT:C32348 + colostrum (NCIT) @@ -8746,8 +7587,7 @@ - nervous system commissure (NCIT) - NCIT:C32349 + nervous system commissure (NCIT) @@ -8756,8 +7596,7 @@ - common carotid artery plus branches (NCIT) - NCIT:C32352 + common carotid artery plus branches (NCIT) @@ -8766,8 +7605,7 @@ - common hepatic duct (NCIT) - NCIT:C32356 + common hepatic duct (NCIT) @@ -8776,8 +7614,7 @@ - common iliac artery (NCIT) - NCIT:C32357 + common iliac artery (NCIT) @@ -8786,8 +7623,7 @@ - common iliac vein (NCIT) - NCIT:C32359 + common iliac vein (NCIT) @@ -8796,8 +7632,7 @@ - conchal part of pinna (NCIT) - NCIT:C32362 + conchal part of pinna (NCIT) @@ -8806,8 +7641,7 @@ - epithelium of conjunctiva (NCIT) - NCIT:C32365 + epithelium of conjunctiva (NCIT) @@ -8816,8 +7650,7 @@ - continuous capillary (NCIT) - NCIT:C32370 + continuous capillary (NCIT) @@ -8826,8 +7659,7 @@ - corniculate cartilage (NCIT) - NCIT:C32373 + corniculate cartilage (NCIT) @@ -8836,8 +7668,7 @@ - Ammon's horn (NCIT) - NCIT:C32374 + Ammon's horn (NCIT) @@ -8846,8 +7677,7 @@ - tooth crown (NCIT) - NCIT:C32375 + tooth crown (NCIT) @@ -8856,8 +7686,7 @@ - coronary ligament of liver (NCIT) - NCIT:C32377 + coronary ligament of liver (NCIT) @@ -8866,8 +7695,7 @@ - coronary sinus (NCIT) - NCIT:C32378 + coronary sinus (NCIT) @@ -8876,8 +7704,7 @@ - corpus cavernosum penis (NCIT) - NCIT:C32382 + corpus cavernosum penis (NCIT) @@ -8886,8 +7713,7 @@ - corpus spongiosum of penis (NCIT) - NCIT:C32384 + corpus spongiosum of penis (NCIT) @@ -8896,8 +7722,7 @@ - cortical arch of kidney (NCIT) - NCIT:C32385 + cortical arch of kidney (NCIT) @@ -8906,8 +7731,7 @@ - renal column (NCIT) - NCIT:C32387 + renal column (NCIT) @@ -8916,8 +7740,7 @@ - costal cartilage (NCIT) - NCIT:C32391 + costal cartilage (NCIT) @@ -8926,8 +7749,7 @@ - costochondral joint (NCIT) - NCIT:C32392 + costochondral joint (NCIT) @@ -8936,8 +7758,7 @@ - costodiaphragmatic recess (NCIT) - NCIT:C32393 + costodiaphragmatic recess (NCIT) @@ -8946,8 +7767,7 @@ - costovertebral joint (NCIT) - NCIT:C32394 + costovertebral joint (NCIT) @@ -8956,8 +7776,7 @@ - bulbo-urethral gland (NCIT) - NCIT:C32395 + bulbo-urethral gland (NCIT) @@ -8966,8 +7785,7 @@ - cremaster muscle (NCIT) - NCIT:C32396 + cremaster muscle (NCIT) @@ -8976,8 +7794,7 @@ - cricoarytenoid joint (NCIT) - NCIT:C32397 + cricoarytenoid joint (NCIT) @@ -8986,8 +7803,7 @@ - crico-arytenoid muscle (NCIT) - NCIT:C32398 + crico-arytenoid muscle (NCIT) @@ -8996,8 +7812,7 @@ - crico-esophageal tendon (NCIT) - NCIT:C32399 + crico-esophageal tendon (NCIT) @@ -9006,8 +7821,7 @@ - cricoid cartilage (NCIT) - NCIT:C32400 + cricoid cartilage (NCIT) @@ -9016,8 +7830,7 @@ - cricopharyngeus muscle (NCIT) - NCIT:C32401 + cricopharyngeus muscle (NCIT) @@ -9026,8 +7839,7 @@ - cricothyroid joint (NCIT) - NCIT:C32402 + cricothyroid joint (NCIT) @@ -9036,8 +7848,7 @@ - cricothyroid ligament (NCIT) - NCIT:C32403 + cricothyroid ligament (NCIT) @@ -9046,8 +7857,7 @@ - cricothyroid muscle (NCIT) - NCIT:C32404 + cricothyroid muscle (NCIT) @@ -9056,8 +7866,7 @@ - cricotracheal ligament (NCIT) - NCIT:C32405 + cricotracheal ligament (NCIT) @@ -9066,8 +7875,7 @@ - lateral corticospinal tract (NCIT) - NCIT:C32406 + lateral corticospinal tract (NCIT) @@ -9076,8 +7884,7 @@ - cerebral crus (NCIT) - NCIT:C32409 + cerebral crus (NCIT) @@ -9086,8 +7893,7 @@ - crus of ear (NCIT) - NCIT:C32410 + crus of ear (NCIT) @@ -9096,8 +7902,7 @@ - crypt of Lieberkuhn (NCIT) - NCIT:C32411 + crypt of Lieberkuhn (NCIT) @@ -9106,8 +7911,7 @@ - cuboid bone (NCIT) - NCIT:C32414 + cuboid bone (NCIT) @@ -9116,8 +7920,7 @@ - cuboidal epithelium (NCIT) - NCIT:C32415 + cuboidal epithelium (NCIT) @@ -9126,8 +7929,7 @@ - distal tarsal bone (NCIT) - NCIT:C32416 + distal tarsal bone (NCIT) @@ -9136,8 +7938,7 @@ - cuneiform cartilage (NCIT) - NCIT:C32417 + cuneiform cartilage (NCIT) @@ -9146,8 +7947,7 @@ - cutaneous muscle (NCIT) - NCIT:C32419 + cutaneous muscle (NCIT) @@ -9156,8 +7956,7 @@ - cymba conchae of pinna (NCIT) - NCIT:C32420 + cymba conchae of pinna (NCIT) @@ -9166,8 +7965,7 @@ - cystic duct (NCIT) - NCIT:C32421 + cystic duct (NCIT) @@ -9176,8 +7974,7 @@ - cystic vein (NCIT) - NCIT:C32422 + cystic vein (NCIT) @@ -9186,8 +7983,7 @@ - decidua (NCIT) - NCIT:C32425 + decidua (NCIT) @@ -9196,8 +7992,7 @@ - decidua basalis (NCIT) - NCIT:C32426 + decidua basalis (NCIT) @@ -9206,8 +8001,7 @@ - decidua capsularis (NCIT) - NCIT:C32427 + decidua capsularis (NCIT) @@ -9216,8 +8010,7 @@ - decidua parietalis (NCIT) - NCIT:C32428 + decidua parietalis (NCIT) @@ -9226,8 +8019,7 @@ - deep cervical lymph node (NCIT) - NCIT:C32431 + deep cervical lymph node (NCIT) @@ -9236,8 +8028,7 @@ - deep circumflex iliac artery (NCIT) - NCIT:C32432 + deep circumflex iliac artery (NCIT) @@ -9246,8 +8037,7 @@ - inferior epigastric vein (NCIT) - NCIT:C32434 + inferior epigastric vein (NCIT) @@ -9256,8 +8046,7 @@ - deep fascia (NCIT) - NCIT:C32435 + deep fascia (NCIT) @@ -9266,8 +8055,7 @@ - deep femoral artery (NCIT) - NCIT:C32436 + deep femoral artery (NCIT) @@ -9276,8 +8064,7 @@ - deep lymphatic vessel (NCIT) - NCIT:C32439 + deep lymphatic vessel (NCIT) @@ -9286,8 +8073,7 @@ - deep middle cerebral vein (NCIT) - NCIT:C32440 + deep middle cerebral vein (NCIT) @@ -9296,8 +8082,7 @@ - deep vein (NCIT) - NCIT:C32444 + deep vein (NCIT) @@ -9306,8 +8091,7 @@ - deltoid (NCIT) - NCIT:C32446 + deltoid (NCIT) @@ -9316,8 +8100,7 @@ - dense connective tissue (NCIT) - NCIT:C32450 + dense connective tissue (NCIT) @@ -9326,8 +8109,7 @@ - dental pulp (NCIT) - NCIT:C32451 + dental pulp (NCIT) @@ -9336,8 +8118,7 @@ - dentate gyrus of hippocampal formation (NCIT) - NCIT:C32452 + dentate gyrus of hippocampal formation (NCIT) @@ -9346,8 +8127,7 @@ - dentine (NCIT) - NCIT:C32453 + dentine (NCIT) @@ -9356,8 +8136,7 @@ - Descemet's membrane (NCIT) - NCIT:C32454 + Descemet's membrane (NCIT) @@ -9366,8 +8145,7 @@ - descending aorta (NCIT) - NCIT:C32455 + descending aorta (NCIT) @@ -9376,8 +8154,7 @@ - descending limb of loop of Henle (NCIT) - NCIT:C32456 + descending limb of loop of Henle (NCIT) @@ -9386,8 +8163,7 @@ - diaphragma sellae (NCIT) - NCIT:C32459 + diaphragma sellae (NCIT) @@ -9396,8 +8172,7 @@ - synovial joint (NCIT) - NCIT:C32461 + synovial joint (NCIT) @@ -9406,8 +8181,7 @@ - digastric muscle group (NCIT) - NCIT:C32462 + digastric muscle group (NCIT) @@ -9416,8 +8190,7 @@ - dilatator pupillae (NCIT) - NCIT:C32463 + dilatator pupillae (NCIT) @@ -9426,8 +8199,7 @@ - distal convoluted tubule (NCIT) - NCIT:C32469 + distal convoluted tubule (NCIT) @@ -9436,8 +8208,7 @@ - dorsal cochlear nucleus (NCIT) - NCIT:C32471 + dorsal cochlear nucleus (NCIT) @@ -9446,8 +8217,7 @@ - dorsal horn of spinal cord (NCIT) - NCIT:C32473 + dorsal horn of spinal cord (NCIT) @@ -9456,8 +8226,7 @@ - dorsal motor nucleus of vagus nerve (NCIT) - NCIT:C32475 + dorsal motor nucleus of vagus nerve (NCIT) @@ -9466,8 +8235,7 @@ - dorsal root of spinal cord (NCIT) - NCIT:C32477 + dorsal root of spinal cord (NCIT) @@ -9476,8 +8244,7 @@ - dorsalis pedis artery (NCIT) - NCIT:C32478 + dorsalis pedis artery (NCIT) @@ -9486,8 +8253,7 @@ - medial dorsal nucleus of thalamus (NCIT) - NCIT:C32480 + medial dorsal nucleus of thalamus (NCIT) @@ -9496,8 +8262,7 @@ - dorsum of tongue (NCIT) - NCIT:C32482 + dorsum of tongue (NCIT) @@ -9506,8 +8271,7 @@ - duct of epididymis (NCIT) - NCIT:C32484 + duct of epididymis (NCIT) @@ -9516,8 +8280,7 @@ - duct of salivary gland (NCIT) - NCIT:C32486 + duct of salivary gland (NCIT) @@ -9526,8 +8289,7 @@ - dura mater (NCIT) - NCIT:C32488 + dura mater (NCIT) @@ -9536,8 +8298,7 @@ - eccrine sweat gland (NCIT) - NCIT:C32490 + eccrine sweat gland (NCIT) @@ -9546,8 +8307,7 @@ - external cervical os (NCIT) - NCIT:C32491 + external cervical os (NCIT) @@ -9556,8 +8316,7 @@ - efferent duct (NCIT) - NCIT:C32492 + efferent duct (NCIT) @@ -9566,8 +8325,7 @@ - ejaculatory duct (NCIT) - NCIT:C32493 + ejaculatory duct (NCIT) @@ -9576,8 +8334,7 @@ - elastic cartilage tissue (NCIT) - NCIT:C32494 + elastic cartilage tissue (NCIT) @@ -9586,8 +8343,7 @@ - elastic tissue (NCIT) - NCIT:C32495 + elastic tissue (NCIT) @@ -9596,8 +8352,7 @@ - elbow joint (NCIT) - NCIT:C32497 + elbow joint (NCIT) @@ -9606,8 +8361,7 @@ - enamel (NCIT) - NCIT:C32505 + enamel (NCIT) @@ -9616,8 +8370,7 @@ - endocrine pancreas (NCIT) - NCIT:C32509 + endocrine pancreas (NCIT) @@ -9626,8 +8379,7 @@ - endolymph (NCIT) - NCIT:C32513 + endolymph (NCIT) @@ -9636,8 +8388,7 @@ - endometrial cavity (NCIT) - NCIT:C32514 + endometrial cavity (NCIT) @@ -9646,8 +8397,7 @@ - endometrial stroma (NCIT) - NCIT:C32516 + endometrial stroma (NCIT) @@ -9656,8 +8406,7 @@ - endomysium (NCIT) - NCIT:C32517 + endomysium (NCIT) @@ -9666,8 +8415,7 @@ - endoneurium (NCIT) - NCIT:C32518 + endoneurium (NCIT) @@ -9676,8 +8424,7 @@ - glomerular capillary endothelium (NCIT) - NCIT:C32522 + glomerular capillary endothelium (NCIT) @@ -9686,8 +8433,7 @@ - epidermal ridge of digit (NCIT) - NCIT:C32524 + epidermal ridge of digit (NCIT) @@ -9696,8 +8442,7 @@ - epigastrium (NCIT) - NCIT:C32525 + epigastrium (NCIT) @@ -9706,8 +8451,7 @@ - epiglottic cartilage (NCIT) - NCIT:C32526 + epiglottic cartilage (NCIT) @@ -9716,8 +8460,7 @@ - epimysium (NCIT) - NCIT:C32527 + epimysium (NCIT) @@ -9726,8 +8469,7 @@ - epineurium (NCIT) - NCIT:C32528 + epineurium (NCIT) @@ -9736,8 +8478,7 @@ - epiphysis (NCIT) - NCIT:C32529 + epiphysis (NCIT) @@ -9746,8 +8487,7 @@ - esophageal artery (NCIT) - NCIT:C32535 + esophageal artery (NCIT) @@ -9756,8 +8496,7 @@ - submucosal esophageal gland (NCIT) - NCIT:C32536 + submucosal esophageal gland (NCIT) @@ -9766,8 +8505,7 @@ - esophagus mucosa (NCIT) - NCIT:C32538 + esophagus mucosa (NCIT) @@ -9776,8 +8514,7 @@ - esophagus muscularis mucosa (NCIT) - NCIT:C32540 + esophagus muscularis mucosa (NCIT) @@ -9786,8 +8523,7 @@ - valve of inferior vena cava (NCIT) - NCIT:C32544 + valve of inferior vena cava (NCIT) @@ -9796,8 +8532,7 @@ - exocrine pancreas (NCIT) - NCIT:C32546 + exocrine pancreas (NCIT) @@ -9806,8 +8541,7 @@ - superficial inguinal ring (NCIT) - NCIT:C32547 + superficial inguinal ring (NCIT) @@ -9816,8 +8550,7 @@ - external anal sphincter (NCIT) - NCIT:C32548 + external anal sphincter (NCIT) @@ -9826,8 +8559,7 @@ - external capsule of telencephalon (NCIT) - NCIT:C32550 + external capsule of telencephalon (NCIT) @@ -9836,8 +8568,7 @@ - external carotid artery (NCIT) - NCIT:C32551 + external carotid artery (NCIT) @@ -9846,8 +8577,7 @@ - branch of external carotid artery (NCIT) - NCIT:C32552 + branch of external carotid artery (NCIT) @@ -9856,8 +8586,7 @@ - distal tarsal bone 3 (NCIT) - NCIT:C32554 + distal tarsal bone 3 (NCIT) @@ -9866,8 +8595,7 @@ - blood vessel external elastic membrane (NCIT) - NCIT:C32555 + blood vessel external elastic membrane (NCIT) @@ -9876,8 +8604,7 @@ - lateral geniculate body (NCIT) - NCIT:C32556 + lateral geniculate body (NCIT) @@ -9886,8 +8613,7 @@ - cortical layer II (NCIT) - NCIT:C32557 + cortical layer II (NCIT) @@ -9896,8 +8622,7 @@ - external iliac artery (NCIT) - NCIT:C32558 + external iliac artery (NCIT) @@ -9906,8 +8631,7 @@ - external iliac vein (NCIT) - NCIT:C32560 + external iliac vein (NCIT) @@ -9916,8 +8640,7 @@ - external intercostal muscle (NCIT) - NCIT:C32561 + external intercostal muscle (NCIT) @@ -9926,8 +8649,7 @@ - external jugular vein (NCIT) - NCIT:C32562 + external jugular vein (NCIT) @@ -9936,8 +8658,7 @@ - external nose (NCIT) - NCIT:C32566 + external nose (NCIT) @@ -9946,8 +8667,7 @@ - abdominal external oblique muscle (NCIT) - NCIT:C32567 + abdominal external oblique muscle (NCIT) @@ -9956,8 +8676,7 @@ - lateral pterygoid muscle (NCIT) - NCIT:C32570 + lateral pterygoid muscle (NCIT) @@ -9966,8 +8685,7 @@ - cortical layer III (NCIT) - NCIT:C32571 + cortical layer III (NCIT) @@ -9976,8 +8694,7 @@ - extrahepatic bile duct (NCIT) - NCIT:C32573 + extrahepatic bile duct (NCIT) @@ -9986,8 +8703,7 @@ - ocular adnexa (NCIT) - NCIT:C32574 + ocular adnexa (NCIT) @@ -9996,8 +8712,7 @@ - eyebrow (NCIT) - NCIT:C32575 + eyebrow (NCIT) @@ -10006,8 +8721,7 @@ - eyelash (NCIT) - NCIT:C32576 + eyelash (NCIT) @@ -10016,8 +8730,7 @@ - vertebral arch joint (NCIT) - NCIT:C32577 + vertebral arch joint (NCIT) @@ -10026,8 +8739,7 @@ - facial artery (NCIT) - NCIT:C32578 + facial artery (NCIT) @@ -10036,8 +8748,7 @@ - facial vein (NCIT) - NCIT:C32579 + facial vein (NCIT) @@ -10046,8 +8757,7 @@ - falciform ligament (NCIT) - NCIT:C32582 + falciform ligament (NCIT) @@ -10056,8 +8766,7 @@ - falx cerebelli (NCIT) - NCIT:C32584 + falx cerebelli (NCIT) @@ -10066,8 +8775,7 @@ - fascia lata (NCIT) - NCIT:C32585 + fascia lata (NCIT) @@ -10076,8 +8784,7 @@ - nerve fasciculus (NCIT) - NCIT:C32586 + nerve fasciculus (NCIT) @@ -10086,8 +8793,7 @@ - prepuce of clitoris (NCIT) - NCIT:C32590 + prepuce of clitoris (NCIT) @@ -10096,8 +8802,7 @@ - female urethra (NCIT) - NCIT:C32591 + female urethra (NCIT) @@ -10106,8 +8811,7 @@ - oval window (NCIT) - NCIT:C32593 + oval window (NCIT) @@ -10116,8 +8820,7 @@ - round window of inner ear (NCIT) - NCIT:C32594 + round window of inner ear (NCIT) @@ -10126,8 +8829,7 @@ - fenestrated capillary (NCIT) - NCIT:C32595 + fenestrated capillary (NCIT) @@ -10136,8 +8838,7 @@ - fibrocartilage (NCIT) - NCIT:C32599 + fibrocartilage (NCIT) @@ -10146,8 +8847,7 @@ - cavum septum pellucidum (NCIT) - NCIT:C32602 + cavum septum pellucidum (NCIT) @@ -10156,8 +8856,7 @@ - filiform papilla (NCIT) - NCIT:C32604 + filiform papilla (NCIT) @@ -10166,8 +8865,7 @@ - hippocampus fimbria (NCIT) - NCIT:C32606 + hippocampus fimbria (NCIT) @@ -10176,8 +8874,7 @@ - manual digit (NCIT) - NCIT:C32608 + manual digit (NCIT) @@ -10186,8 +8883,7 @@ - nail of manual digit (NCIT) - NCIT:C32609 + nail of manual digit (NCIT) @@ -10196,8 +8892,7 @@ - lateral sulcus (NCIT) - NCIT:C32615 + lateral sulcus (NCIT) @@ -10206,8 +8901,7 @@ - flat bone (NCIT) - NCIT:C32616 + flat bone (NCIT) @@ -10216,8 +8910,7 @@ - foliate papilla (NCIT) - NCIT:C32619 + foliate papilla (NCIT) @@ -10226,8 +8919,7 @@ - fontanelle (NCIT) - NCIT:C32621 + fontanelle (NCIT) @@ -10236,8 +8928,7 @@ - pes (NCIT) - NCIT:C32622 + pes (NCIT) @@ -10246,8 +8937,7 @@ - fourth ventricle lateral aperture (NCIT) - NCIT:C32625 + fourth ventricle lateral aperture (NCIT) @@ -10256,8 +8946,7 @@ - fourth ventricle median aperture (NCIT) - NCIT:C32626 + fourth ventricle median aperture (NCIT) @@ -10266,8 +8955,7 @@ - interventricular foramen of CNS (NCIT) - NCIT:C32627 + interventricular foramen of CNS (NCIT) @@ -10276,8 +8964,7 @@ - forelimb zeugopod (NCIT) - NCIT:C32628 + forelimb zeugopod (NCIT) @@ -10286,8 +8973,7 @@ - tetrapod frontal bone (NCIT) - NCIT:C32635 + tetrapod frontal bone (NCIT) @@ -10296,8 +8982,7 @@ - frontal gyrus (NCIT) - NCIT:C32636 + frontal gyrus (NCIT) @@ -10306,8 +8991,7 @@ - anterior horn of lateral ventricle (NCIT) - NCIT:C32637 + anterior horn of lateral ventricle (NCIT) @@ -10316,8 +9000,7 @@ - frontal nerve (branch of ophthalmic) (NCIT) - NCIT:C32638 + frontal nerve (branch of ophthalmic) (NCIT) @@ -10326,8 +9009,7 @@ - frontal sulcus (NCIT) - NCIT:C32639 + frontal sulcus (NCIT) @@ -10336,8 +9018,7 @@ - outer layer of endometrium (NCIT) - NCIT:C32642 + outer layer of endometrium (NCIT) @@ -10346,8 +9027,7 @@ - fundic gastric gland (NCIT) - NCIT:C32643 + fundic gastric gland (NCIT) @@ -10356,8 +9036,7 @@ - fungiform papilla (NCIT) - NCIT:C32644 + fungiform papilla (NCIT) @@ -10366,8 +9045,7 @@ - body of gallbladder (NCIT) - NCIT:C32647 + body of gallbladder (NCIT) @@ -10376,8 +9054,7 @@ - fundus of gallbladder (NCIT) - NCIT:C32648 + fundus of gallbladder (NCIT) @@ -10386,8 +9063,7 @@ - neck of gallbladder (NCIT) - NCIT:C32649 + neck of gallbladder (NCIT) @@ -10396,8 +9072,7 @@ - ganglionic layer of retina (NCIT) - NCIT:C32652 + ganglionic layer of retina (NCIT) @@ -10406,8 +9081,7 @@ - cortical layer V (NCIT) - NCIT:C32653 + cortical layer V (NCIT) @@ -10416,8 +9090,7 @@ - left gastric artery (NCIT) - NCIT:C32654 + left gastric artery (NCIT) @@ -10426,8 +9099,7 @@ - mucosa of stomach (NCIT) - NCIT:C32656 + mucosa of stomach (NCIT) @@ -10436,8 +9108,7 @@ - muscularis mucosae of stomach (NCIT) - NCIT:C32658 + muscularis mucosae of stomach (NCIT) @@ -10446,8 +9117,7 @@ - gastric pit (NCIT) - NCIT:C32659 + gastric pit (NCIT) @@ -10456,8 +9126,7 @@ - rugal fold of stomach (NCIT) - NCIT:C32660 + rugal fold of stomach (NCIT) @@ -10466,8 +9135,7 @@ - gastric juice (NCIT) - NCIT:C32661 + gastric juice (NCIT) @@ -10476,8 +9144,7 @@ - serosa of stomach (NCIT) - NCIT:C32662 + serosa of stomach (NCIT) @@ -10486,8 +9153,7 @@ - submucosa of stomach (NCIT) - NCIT:C32663 + submucosa of stomach (NCIT) @@ -10496,8 +9162,7 @@ - gastric vein (NCIT) - NCIT:C32665 + gastric vein (NCIT) @@ -10506,8 +9171,7 @@ - gastrocnemius (NCIT) - NCIT:C32666 + gastrocnemius (NCIT) @@ -10516,8 +9180,7 @@ - gastrocolic ligament (NCIT) - NCIT:C32667 + gastrocolic ligament (NCIT) @@ -10526,8 +9189,7 @@ - esophagogastric junction (NCIT) - NCIT:C32668 + esophagogastric junction (NCIT) @@ -10536,8 +9198,7 @@ - gastrointestinal sphincter (NCIT) - NCIT:C32669 + gastrointestinal sphincter (NCIT) @@ -10546,8 +9207,7 @@ - gastrophrenic ligament (NCIT) - NCIT:C32670 + gastrophrenic ligament (NCIT) @@ -10556,8 +9216,7 @@ - gastro-splenic ligament (NCIT) - NCIT:C32671 + gastro-splenic ligament (NCIT) @@ -10566,8 +9225,7 @@ - genu of corpus callosum (NCIT) - NCIT:C32675 + genu of corpus callosum (NCIT) @@ -10576,8 +9234,7 @@ - epithelium of gonad (NCIT) - NCIT:C32676 + epithelium of gonad (NCIT) @@ -10586,8 +9243,7 @@ - gingiva (NCIT) - NCIT:C32677 + gingiva (NCIT) @@ -10596,8 +9252,7 @@ - Krause's gland (NCIT) - NCIT:C32678 + Krause's gland (NCIT) @@ -10606,8 +9261,7 @@ - sweat gland of eyelid (NCIT) - NCIT:C32679 + sweat gland of eyelid (NCIT) @@ -10616,8 +9270,7 @@ - Ciaccio's gland (NCIT) - NCIT:C32680 + Ciaccio's gland (NCIT) @@ -10626,8 +9279,7 @@ - glans clitoris (NCIT) - NCIT:C32681 + glans clitoris (NCIT) @@ -10636,8 +9288,7 @@ - glenoid fossa (NCIT) - NCIT:C32682 + glenoid fossa (NCIT) @@ -10646,8 +9297,7 @@ - glomerular basement membrane (NCIT) - NCIT:C32683 + glomerular basement membrane (NCIT) @@ -10656,8 +9306,7 @@ - glomerular capillary (NCIT) - NCIT:C32684 + glomerular capillary (NCIT) @@ -10666,8 +9315,7 @@ - superior gluteal artery (NCIT) - NCIT:C32688 + superior gluteal artery (NCIT) @@ -10676,8 +9324,7 @@ - tertiary ovarian follicle (NCIT) - NCIT:C32692 + tertiary ovarian follicle (NCIT) @@ -10686,8 +9333,7 @@ - gray matter (NCIT) - NCIT:C32695 + gray matter (NCIT) @@ -10696,8 +9342,7 @@ - gray matter of spinal cord (NCIT) - NCIT:C32696 + gray matter of spinal cord (NCIT) @@ -10706,8 +9351,7 @@ - greater omentum (NCIT) - NCIT:C32697 + greater omentum (NCIT) @@ -10716,8 +9360,7 @@ - greater trochanter (NCIT) - NCIT:C32698 + greater trochanter (NCIT) @@ -10726,8 +9369,7 @@ - ventral tubercle of humerus (NCIT) - NCIT:C32700 + ventral tubercle of humerus (NCIT) @@ -10736,8 +9378,7 @@ - ovary growing follicle (NCIT) - NCIT:C32702 + ovary growing follicle (NCIT) @@ -10746,8 +9387,7 @@ - strand of hair (NCIT) - NCIT:C32705 + strand of hair (NCIT) @@ -10756,8 +9396,7 @@ - bulb of hair follicle (NCIT) - NCIT:C32706 + bulb of hair follicle (NCIT) @@ -10766,8 +9405,7 @@ - hair root (NCIT) - NCIT:C32707 + hair root (NCIT) @@ -10776,8 +9414,7 @@ - infundibulum of hair follicle (NCIT) - NCIT:C32708 + infundibulum of hair follicle (NCIT) @@ -10786,8 +9423,7 @@ - hair follicle isthmus (NCIT) - NCIT:C32709 + hair follicle isthmus (NCIT) @@ -10796,8 +9432,7 @@ - dermal papilla (NCIT) - NCIT:C32710 + dermal papilla (NCIT) @@ -10806,8 +9441,7 @@ - hair root (NCIT) - NCIT:C32711 + hair root (NCIT) @@ -10816,8 +9450,7 @@ - manus (NCIT) - NCIT:C32712 + manus (NCIT) @@ -10826,8 +9459,7 @@ - haversian canal (NCIT) - NCIT:C32713 + haversian canal (NCIT) @@ -10836,8 +9468,7 @@ - osteon (NCIT) - NCIT:C32714 + osteon (NCIT) @@ -10846,8 +9477,7 @@ - craniocervical muscle (NCIT) - NCIT:C32716 + craniocervical muscle (NCIT) @@ -10856,8 +9486,7 @@ - caput epididymis (NCIT) - NCIT:C32717 + caput epididymis (NCIT) @@ -10866,8 +9495,7 @@ - head of femur (NCIT) - NCIT:C32718 + head of femur (NCIT) @@ -10876,8 +9504,7 @@ - proximal epiphysis of fibula (NCIT) - NCIT:C32719 + proximal epiphysis of fibula (NCIT) @@ -10886,8 +9513,7 @@ - proximal head of humerus (NCIT) - NCIT:C32720 + proximal head of humerus (NCIT) @@ -10896,8 +9522,7 @@ - proximal epiphysis of tibia (NCIT) - NCIT:C32722 + proximal epiphysis of tibia (NCIT) @@ -10906,8 +9531,7 @@ - helicotrema (NCIT) - NCIT:C32723 + helicotrema (NCIT) @@ -10916,8 +9540,7 @@ - helix of outer ear (NCIT) - NCIT:C32724 + helix of outer ear (NCIT) @@ -10926,8 +9549,7 @@ - cerebellar hemisphere (NCIT) - NCIT:C32726 + cerebellar hemisphere (NCIT) @@ -10936,8 +9558,7 @@ - rectal venous plexus (NCIT) - NCIT:C32728 + rectal venous plexus (NCIT) @@ -10946,8 +9567,7 @@ - hepatic artery (NCIT) - NCIT:C32729 + hepatic artery (NCIT) @@ -10956,8 +9576,7 @@ - hepatic duct (NCIT) - NCIT:C32730 + hepatic duct (NCIT) @@ -10966,8 +9585,7 @@ - liver lobule (NCIT) - NCIT:C32732 + liver lobule (NCIT) @@ -10976,8 +9594,7 @@ - hepatic sinusoid (NCIT) - NCIT:C32733 + hepatic sinusoid (NCIT) @@ -10986,8 +9603,7 @@ - liver parenchyma (NCIT) - NCIT:C32735 + liver parenchyma (NCIT) @@ -10996,8 +9612,7 @@ - hepatic vein (NCIT) - NCIT:C32736 + hepatic vein (NCIT) @@ -11006,8 +9621,7 @@ - hepatogastric ligament (NCIT) - NCIT:C32737 + hepatogastric ligament (NCIT) @@ -11016,8 +9630,7 @@ - high endothelial venule (NCIT) - NCIT:C32739 + high endothelial venule (NCIT) @@ -11026,8 +9639,7 @@ - hilum of kidney (NCIT) - NCIT:C32740 + hilum of kidney (NCIT) @@ -11036,8 +9648,7 @@ - metencephalon (NCIT) - NCIT:C32741 + metencephalon (NCIT) @@ -11046,8 +9657,7 @@ - hip joint (NCIT) - NCIT:C32742 + hip joint (NCIT) @@ -11056,8 +9666,7 @@ - hippocampal sulcus (NCIT) - NCIT:C32743 + hippocampal sulcus (NCIT) @@ -11066,8 +9675,7 @@ - hyaline cartilage tissue (NCIT) - NCIT:C32746 + hyaline cartilage tissue (NCIT) @@ -11076,8 +9684,7 @@ - appendix testis (NCIT) - NCIT:C32747 + appendix testis (NCIT) @@ -11086,8 +9693,7 @@ - vaginal hymen (NCIT) - NCIT:C32750 + vaginal hymen (NCIT) @@ -11096,8 +9702,7 @@ - hyoepiglottic ligament (NCIT) - NCIT:C32751 + hyoepiglottic ligament (NCIT) @@ -11106,8 +9711,7 @@ - hyoid bone (NCIT) - NCIT:C32752 + hyoid bone (NCIT) @@ -11116,8 +9720,7 @@ - hyoid muscle (NCIT) - NCIT:C32753 + hyoid muscle (NCIT) @@ -11126,8 +9729,7 @@ - hypogastrium (NCIT) - NCIT:C32755 + hypogastrium (NCIT) @@ -11136,8 +9738,7 @@ - hypothalamo-hypophyseal system (NCIT) - NCIT:C32759 + hypothalamo-hypophyseal system (NCIT) @@ -11146,8 +9747,7 @@ - ileocolic artery (NCIT) - NCIT:C32760 + ileocolic artery (NCIT) @@ -11156,8 +9756,7 @@ - common iliac lymph node (NCIT) - NCIT:C32761 + common iliac lymph node (NCIT) @@ -11166,8 +9765,7 @@ - iliacus muscle (NCIT) - NCIT:C32762 + iliacus muscle (NCIT) @@ -11176,8 +9774,7 @@ - iliocostalis muscle (NCIT) - NCIT:C32763 + iliocostalis muscle (NCIT) @@ -11186,8 +9783,7 @@ - iliopsoas (NCIT) - NCIT:C32764 + iliopsoas (NCIT) @@ -11196,8 +9792,7 @@ - ilium (NCIT) - NCIT:C32765 + ilium (NCIT) @@ -11206,8 +9801,7 @@ - incisor tooth (NCIT) - NCIT:C32769 + incisor tooth (NCIT) @@ -11216,8 +9810,7 @@ - incus bone (NCIT) - NCIT:C32770 + incus bone (NCIT) @@ -11226,8 +9819,7 @@ - inferior frontal gyrus (NCIT) - NCIT:C32774 + inferior frontal gyrus (NCIT) @@ -11236,8 +9828,7 @@ - inferior frontal sulcus (NCIT) - NCIT:C32776 + inferior frontal sulcus (NCIT) @@ -11246,8 +9837,7 @@ - inferior hypophysial artery (NCIT) - NCIT:C32777 + inferior hypophysial artery (NCIT) @@ -11256,8 +9846,7 @@ - mandibular nerve (NCIT) - NCIT:C32779 + mandibular nerve (NCIT) @@ -11266,8 +9855,7 @@ - inferior mesenteric artery (NCIT) - NCIT:C32780 + inferior mesenteric artery (NCIT) @@ -11276,8 +9864,7 @@ - inferior mesenteric vein (NCIT) - NCIT:C32782 + inferior mesenteric vein (NCIT) @@ -11286,8 +9873,7 @@ - inferior oblique extraocular muscle (NCIT) - NCIT:C32783 + inferior oblique extraocular muscle (NCIT) @@ -11296,8 +9882,7 @@ - inferior pancreaticoduodenal artery (NCIT) - NCIT:C32786 + inferior pancreaticoduodenal artery (NCIT) @@ -11306,8 +9891,7 @@ - inferior parathyroid gland (NCIT) - NCIT:C32787 + inferior parathyroid gland (NCIT) @@ -11316,8 +9900,7 @@ - inferior rectus extraocular muscle (NCIT) - NCIT:C32790 + inferior rectus extraocular muscle (NCIT) @@ -11326,8 +9909,7 @@ - inferior temporal gyrus (NCIT) - NCIT:C32791 + inferior temporal gyrus (NCIT) @@ -11336,8 +9918,7 @@ - inferior temporal sulcus (NCIT) - NCIT:C32793 + inferior temporal sulcus (NCIT) @@ -11346,8 +9927,7 @@ - inferior nasal concha (NCIT) - NCIT:C32794 + inferior nasal concha (NCIT) @@ -11356,8 +9936,7 @@ - infraspinatus muscle (NCIT) - NCIT:C32797 + infraspinatus muscle (NCIT) @@ -11366,8 +9945,7 @@ - inguinal lymph node (NCIT) - NCIT:C32801 + inguinal lymph node (NCIT) @@ -11376,8 +9954,7 @@ - inner dental epithelium (NCIT) - NCIT:C32804 + inner dental epithelium (NCIT) @@ -11386,8 +9963,7 @@ - inner limiting layer of retina (NCIT) - NCIT:C32807 + inner limiting layer of retina (NCIT) @@ -11396,8 +9972,7 @@ - inner nuclear layer of retina (NCIT) - NCIT:C32808 + inner nuclear layer of retina (NCIT) @@ -11406,8 +9981,7 @@ - inner plexiform layer of retina (NCIT) - NCIT:C32809 + inner plexiform layer of retina (NCIT) @@ -11416,8 +9990,7 @@ - brachiocephalic artery (NCIT) - NCIT:C32814 + brachiocephalic artery (NCIT) @@ -11426,8 +9999,7 @@ - brachiocephalic vein (NCIT) - NCIT:C32816 + brachiocephalic vein (NCIT) @@ -11436,8 +10008,7 @@ - interatrial septum (NCIT) - NCIT:C32818 + interatrial septum (NCIT) @@ -11446,8 +10017,7 @@ - intercalated duct (NCIT) - NCIT:C32820 + intercalated duct (NCIT) @@ -11456,8 +10026,7 @@ - intercostal artery (NCIT) - NCIT:C32821 + intercostal artery (NCIT) @@ -11466,8 +10035,7 @@ - intercostal muscle (NCIT) - NCIT:C32824 + intercostal muscle (NCIT) @@ -11476,8 +10044,7 @@ - intercostal nerve (NCIT) - NCIT:C32825 + intercostal nerve (NCIT) @@ -11486,8 +10053,7 @@ - interlobular artery (NCIT) - NCIT:C32826 + interlobular artery (NCIT) @@ -11496,8 +10062,7 @@ - interlobular bile duct (NCIT) - NCIT:C32827 + interlobular bile duct (NCIT) @@ -11506,8 +10071,7 @@ - interlobular duct (NCIT) - NCIT:C32828 + interlobular duct (NCIT) @@ -11516,8 +10080,7 @@ - deep inguinal ring (NCIT) - NCIT:C32832 + deep inguinal ring (NCIT) @@ -11526,8 +10089,7 @@ - internal anal sphincter (NCIT) - NCIT:C32833 + internal anal sphincter (NCIT) @@ -11536,8 +10098,7 @@ - labyrinthine artery (NCIT) - NCIT:C32834 + labyrinthine artery (NCIT) @@ -11546,8 +10107,7 @@ - internal carotid artery (NCIT) - NCIT:C32836 + internal carotid artery (NCIT) @@ -11556,8 +10116,7 @@ - branch of internal carotid artery (NCIT) - NCIT:C32837 + branch of internal carotid artery (NCIT) @@ -11566,8 +10125,7 @@ - internal cerebral vein (NCIT) - NCIT:C32838 + internal cerebral vein (NCIT) @@ -11576,8 +10134,7 @@ - distal tarsal bone 1 (NCIT) - NCIT:C32840 + distal tarsal bone 1 (NCIT) @@ -11586,8 +10143,7 @@ - blood vessel internal elastic membrane (NCIT) - NCIT:C32842 + blood vessel internal elastic membrane (NCIT) @@ -11596,8 +10152,7 @@ - medial geniculate body (NCIT) - NCIT:C32843 + medial geniculate body (NCIT) @@ -11606,8 +10161,7 @@ - cortical layer IV (NCIT) - NCIT:C32844 + cortical layer IV (NCIT) @@ -11616,8 +10170,7 @@ - internal iliac artery (NCIT) - NCIT:C32845 + internal iliac artery (NCIT) @@ -11626,8 +10179,7 @@ - internal iliac vein (NCIT) - NCIT:C32847 + internal iliac vein (NCIT) @@ -11636,8 +10188,7 @@ - internal intercostal muscle (NCIT) - NCIT:C32848 + internal intercostal muscle (NCIT) @@ -11646,8 +10197,7 @@ - internal jugular vein (NCIT) - NCIT:C32849 + internal jugular vein (NCIT) @@ -11656,8 +10206,7 @@ - parasternal lymph node (NCIT) - NCIT:C32853 + parasternal lymph node (NCIT) @@ -11666,8 +10215,7 @@ - internal mammary vein (NCIT) - NCIT:C32854 + internal mammary vein (NCIT) @@ -11676,8 +10224,7 @@ - maxillary vein (NCIT) - NCIT:C32855 + maxillary vein (NCIT) @@ -11686,8 +10233,7 @@ - internal naris (NCIT) - NCIT:C32856 + internal naris (NCIT) @@ -11696,8 +10242,7 @@ - abdominal internal oblique muscle (NCIT) - NCIT:C32857 + abdominal internal oblique muscle (NCIT) @@ -11706,8 +10251,7 @@ - medial plantar artery (NCIT) - NCIT:C32860 + medial plantar artery (NCIT) @@ -11716,8 +10260,7 @@ - medial pterygoid muscle (NCIT) - NCIT:C32861 + medial pterygoid muscle (NCIT) @@ -11726,8 +10269,7 @@ - basal cistern (NCIT) - NCIT:C32866 + basal cistern (NCIT) @@ -11736,8 +10278,7 @@ - interphalangeal joint of pes (NCIT) - NCIT:C32867 + interphalangeal joint of pes (NCIT) @@ -11746,8 +10287,7 @@ - interphalangeal joint of manus (NCIT) - NCIT:C32868 + interphalangeal joint of manus (NCIT) @@ -11756,8 +10296,7 @@ - interventricular septum (NCIT) - NCIT:C32874 + interventricular septum (NCIT) @@ -11766,8 +10305,7 @@ - intestine secretion (NCIT) - NCIT:C32875 + intestine secretion (NCIT) @@ -11776,8 +10314,7 @@ - intraparietal sulcus (NCIT) - NCIT:C32879 + intraparietal sulcus (NCIT) @@ -11786,8 +10323,7 @@ - irregular bone (NCIT) - NCIT:C32881 + irregular bone (NCIT) @@ -11796,8 +10332,7 @@ - dense irregular connective tissue (NCIT) - NCIT:C32882 + dense irregular connective tissue (NCIT) @@ -11806,8 +10341,7 @@ - ischium (NCIT) - NCIT:C32884 + ischium (NCIT) @@ -11816,20 +10350,7 @@ - isthmus of thyroid gland (NCIT) - NCIT:C32887 - - - - - - - - - - joint connecting upper and lower jaws (NCIT) - temporomandibular joint (NCIT) - NCIT:C32888 + isthmus of thyroid gland (NCIT) @@ -11838,8 +10359,7 @@ - synovial joint of pelvic girdle (NCIT) - NCIT:C32890 + synovial joint of pelvic girdle (NCIT) @@ -11848,8 +10368,7 @@ - juxtaglomerular apparatus (NCIT) - NCIT:C32891 + juxtaglomerular apparatus (NCIT) @@ -11858,8 +10377,7 @@ - long nephron (NCIT) - NCIT:C32892 + long nephron (NCIT) @@ -11868,8 +10386,7 @@ - renal lobe (NCIT) - NCIT:C32894 + renal lobe (NCIT) @@ -11878,8 +10395,7 @@ - posterior surface of kidney (NCIT) - NCIT:C32895 + posterior surface of kidney (NCIT) @@ -11888,8 +10404,7 @@ - knee joint (NCIT) - NCIT:C32898 + knee joint (NCIT) @@ -11898,8 +10413,7 @@ - lumbar vertebra 1 (NCIT) - NCIT:C32899 + lumbar vertebra 1 (NCIT) @@ -11908,8 +10422,7 @@ - lumbar vertebra 2 (NCIT) - NCIT:C32900 + lumbar vertebra 2 (NCIT) @@ -11918,8 +10431,7 @@ - lumbar vertebra 3 (NCIT) - NCIT:C32901 + lumbar vertebra 3 (NCIT) @@ -11928,8 +10440,7 @@ - lumbar vertebra 4 (NCIT) - NCIT:C32902 + lumbar vertebra 4 (NCIT) @@ -11938,8 +10449,7 @@ - lumbar vertebra 5 (NCIT) - NCIT:C32903 + lumbar vertebra 5 (NCIT) @@ -11948,8 +10458,7 @@ - lacrimal apparatus (NCIT) - NCIT:C32905 + lacrimal apparatus (NCIT) @@ -11958,8 +10467,7 @@ - lacrimal bone (NCIT) - NCIT:C32906 + lacrimal bone (NCIT) @@ -11968,8 +10476,7 @@ - lacrimal canaliculus (NCIT) - NCIT:C32907 + lacrimal canaliculus (NCIT) @@ -11978,8 +10485,7 @@ - lacrimal nerve (NCIT) - NCIT:C32908 + lacrimal nerve (NCIT) @@ -11988,8 +10494,7 @@ - lacrimal sac (NCIT) - NCIT:C32909 + lacrimal sac (NCIT) @@ -11998,8 +10503,7 @@ - mammary duct (NCIT) - NCIT:C32910 + mammary duct (NCIT) @@ -12008,8 +10512,7 @@ - lamina densa of glomerular basement membrane (NCIT) - NCIT:C32916 + lamina densa of glomerular basement membrane (NCIT) @@ -12018,8 +10521,7 @@ - lamina lucida (NCIT) - NCIT:C32917 + lamina lucida (NCIT) @@ -12028,8 +10530,7 @@ - lamina propria (NCIT) - NCIT:C32918 + lamina propria (NCIT) @@ -12038,8 +10539,7 @@ - lamina rara externa (NCIT) - NCIT:C32919 + lamina rara externa (NCIT) @@ -12048,8 +10548,7 @@ - lamina rara interna (NCIT) - NCIT:C32920 + lamina rara interna (NCIT) @@ -12058,8 +10557,7 @@ - cistern of lamina terminalis (NCIT) - NCIT:C32922 + cistern of lamina terminalis (NCIT) @@ -12068,8 +10566,7 @@ - crypt of Lieberkuhn of large intestine (NCIT) - NCIT:C32924 + crypt of Lieberkuhn of large intestine (NCIT) @@ -12078,8 +10575,7 @@ - mucosa of large intestine (NCIT) - NCIT:C32926 + mucosa of large intestine (NCIT) @@ -12088,8 +10584,7 @@ - muscle layer of large intestine (NCIT) - NCIT:C32927 + muscle layer of large intestine (NCIT) @@ -12098,8 +10593,7 @@ - muscularis mucosae of large intestine (NCIT) - NCIT:C32928 + muscularis mucosae of large intestine (NCIT) @@ -12108,8 +10602,7 @@ - serosa of large intestine (NCIT) - NCIT:C32929 + serosa of large intestine (NCIT) @@ -12118,8 +10611,7 @@ - submucosa of large intestine (NCIT) - NCIT:C32930 + submucosa of large intestine (NCIT) @@ -12128,8 +10620,7 @@ - ligament of larynx (NCIT) - NCIT:C32933 + ligament of larynx (NCIT) @@ -12138,8 +10629,7 @@ - muscle of larynx (NCIT) - NCIT:C32934 + muscle of larynx (NCIT) @@ -12148,8 +10638,7 @@ - laryngeal ventricle (NCIT) - NCIT:C32935 + laryngeal ventricle (NCIT) @@ -12158,8 +10647,7 @@ - spinal cord lateral horn (NCIT) - NCIT:C32938 + spinal cord lateral horn (NCIT) @@ -12168,8 +10656,7 @@ - lateral posterior nucleus of thalamus (NCIT) - NCIT:C32944 + lateral posterior nucleus of thalamus (NCIT) @@ -12178,8 +10665,7 @@ - lateral rectus extra-ocular muscle (NCIT) - NCIT:C32945 + lateral rectus extra-ocular muscle (NCIT) @@ -12188,8 +10674,7 @@ - lateral thyrohyoid ligament (NCIT) - NCIT:C32950 + lateral thyrohyoid ligament (NCIT) @@ -12198,8 +10683,7 @@ - lateral vestibular nucleus (NCIT) - NCIT:C32951 + lateral vestibular nucleus (NCIT) @@ -12208,8 +10692,7 @@ - lateral occipital sulcus (NCIT) - NCIT:C32952 + lateral occipital sulcus (NCIT) @@ -12218,8 +10701,7 @@ - photoreceptor layer of retina (NCIT) - NCIT:C32954 + photoreceptor layer of retina (NCIT) @@ -12228,8 +10710,7 @@ - left cerebral hemisphere (NCIT) - NCIT:C32955 + left cerebral hemisphere (NCIT) @@ -12238,8 +10719,7 @@ - left common carotid artery plus branches (NCIT) - NCIT:C32956 + left common carotid artery plus branches (NCIT) @@ -12248,8 +10728,7 @@ - left common iliac artery (NCIT) - NCIT:C32957 + left common iliac artery (NCIT) @@ -12258,8 +10737,7 @@ - branch of left coronary artery (NCIT) - NCIT:C32958 + branch of left coronary artery (NCIT) @@ -12268,8 +10746,7 @@ - left uterine tube (NCIT) - NCIT:C32959 + left uterine tube (NCIT) @@ -12278,8 +10755,7 @@ - left hepatic duct (NCIT) - NCIT:C32960 + left hepatic duct (NCIT) @@ -12288,8 +10764,7 @@ - left inguinal part of abdomen (NCIT) - NCIT:C32963 + left inguinal part of abdomen (NCIT) @@ -12298,8 +10773,7 @@ - left lobe of liver (NCIT) - NCIT:C32965 + left lobe of liver (NCIT) @@ -12308,8 +10782,7 @@ - left lung (NCIT) - NCIT:C32967 + left lung (NCIT) @@ -12318,8 +10791,7 @@ - left main bronchus (NCIT) - NCIT:C32968 + left main bronchus (NCIT) @@ -12328,8 +10800,7 @@ - left ovary (NCIT) - NCIT:C32969 + left ovary (NCIT) @@ -12338,8 +10809,7 @@ - left pulmonary artery (NCIT) - NCIT:C32971 + left pulmonary artery (NCIT) @@ -12348,8 +10818,7 @@ - left subclavian artery (NCIT) - NCIT:C32972 + left subclavian artery (NCIT) @@ -12358,8 +10827,7 @@ - left lobe of thyroid gland (NCIT) - NCIT:C32973 + left lobe of thyroid gland (NCIT) @@ -12368,8 +10836,7 @@ - hindlimb zeugopod (NCIT) - NCIT:C32974 + hindlimb zeugopod (NCIT) @@ -12378,8 +10845,7 @@ - capsule of lens (NCIT) - NCIT:C32975 + capsule of lens (NCIT) @@ -12388,8 +10854,7 @@ - lens fiber (NCIT) - NCIT:C32976 + lens fiber (NCIT) @@ -12398,8 +10863,7 @@ - lentiform nucleus (NCIT) - NCIT:C32977 + lentiform nucleus (NCIT) @@ -12408,8 +10872,7 @@ - leptomeninx (NCIT) - NCIT:C32979 + leptomeninx (NCIT) @@ -12418,8 +10881,7 @@ - lesser omentum (NCIT) - NCIT:C32981 + lesser omentum (NCIT) @@ -12428,8 +10890,7 @@ - lesser trochanter (NCIT) - NCIT:C32982 + lesser trochanter (NCIT) @@ -12438,8 +10899,7 @@ - lesser tubercle of humerus (NCIT) - NCIT:C32983 + lesser tubercle of humerus (NCIT) @@ -12448,8 +10908,7 @@ - levator ani muscle (NCIT) - NCIT:C32984 + levator ani muscle (NCIT) @@ -12458,8 +10917,7 @@ - ligamentum flavum (NCIT) - NCIT:C32986 + ligamentum flavum (NCIT) @@ -12468,8 +10926,7 @@ - anterior lingual gland (NCIT) - NCIT:C32987 + anterior lingual gland (NCIT) @@ -12478,8 +10935,7 @@ - lingual tonsil (NCIT) - NCIT:C32988 + lingual tonsil (NCIT) @@ -12488,8 +10944,7 @@ - hepatic acinus (NCIT) - NCIT:C32992 + hepatic acinus (NCIT) @@ -12498,8 +10953,7 @@ - ligament of liver (NCIT) - NCIT:C32997 + ligament of liver (NCIT) @@ -12508,8 +10962,7 @@ - lobar bronchus (NCIT) - NCIT:C32998 + lobar bronchus (NCIT) @@ -12518,8 +10971,7 @@ - lobule of pinna (NCIT) - NCIT:C32999 + lobule of pinna (NCIT) @@ -12528,8 +10980,7 @@ - caudate lobe of liver (NCIT) - NCIT:C33000 + caudate lobe of liver (NCIT) @@ -12538,8 +10989,7 @@ - quadrate lobe of liver (NCIT) - NCIT:C33001 + quadrate lobe of liver (NCIT) @@ -12548,8 +10998,7 @@ - long bone (NCIT) - NCIT:C33003 + long bone (NCIT) @@ -12558,8 +11007,7 @@ - great saphenous vein (NCIT) - NCIT:C33004 + great saphenous vein (NCIT) @@ -12568,8 +11016,7 @@ - longitudinal fissure (NCIT) - NCIT:C33005 + longitudinal fissure (NCIT) @@ -12578,8 +11025,7 @@ - loop of Henle (NCIT) - NCIT:C33006 + loop of Henle (NCIT) @@ -12588,8 +11034,7 @@ - loose connective tissue (NCIT) - NCIT:C33007 + loose connective tissue (NCIT) @@ -12598,8 +11043,7 @@ - gastroesophageal sphincter (NCIT) - NCIT:C33009 + gastroesophageal sphincter (NCIT) @@ -12608,8 +11052,7 @@ - lower digestive tract (NCIT) - NCIT:C33010 + lower digestive tract (NCIT) @@ -12618,8 +11061,7 @@ - lumbar artery (NCIT) - NCIT:C33013 + lumbar artery (NCIT) @@ -12628,8 +11070,7 @@ - lumbar nerve (NCIT) - NCIT:C33015 + lumbar nerve (NCIT) @@ -12638,8 +11079,7 @@ - lunate sulcus (NCIT) - NCIT:C33019 + lunate sulcus (NCIT) @@ -12648,8 +11088,7 @@ - lower lobe of left lung (NCIT) - NCIT:C33020 + lower lobe of left lung (NCIT) @@ -12658,8 +11097,7 @@ - upper lobe of left lung (NCIT) - NCIT:C33021 + upper lobe of left lung (NCIT) @@ -12668,8 +11106,7 @@ - lower lobe of right lung (NCIT) - NCIT:C33022 + lower lobe of right lung (NCIT) @@ -12678,8 +11115,7 @@ - upper lobe of right lung (NCIT) - NCIT:C33023 + upper lobe of right lung (NCIT) @@ -12688,8 +11124,7 @@ - lunule of nail (NCIT) - NCIT:C33025 + lunule of nail (NCIT) @@ -12698,8 +11133,7 @@ - lymph node (NCIT) - NCIT:C33027 + lymph node (NCIT) @@ -12708,8 +11142,7 @@ - capsule of lymph node (NCIT) - NCIT:C33028 + capsule of lymph node (NCIT) @@ -12718,8 +11151,7 @@ - cortex of lymph node (NCIT) - NCIT:C33029 + cortex of lymph node (NCIT) @@ -12728,8 +11160,7 @@ - hilum of lymph node (NCIT) - NCIT:C33031 + hilum of lymph node (NCIT) @@ -12738,8 +11169,7 @@ - subcapsular sinus of lymph node (NCIT) - NCIT:C33033 + subcapsular sinus of lymph node (NCIT) @@ -12748,8 +11178,7 @@ - trabecula of lymph node (NCIT) - NCIT:C33035 + trabecula of lymph node (NCIT) @@ -12758,8 +11187,7 @@ - lymphatic capillary (NCIT) - NCIT:C33037 + lymphatic capillary (NCIT) @@ -12768,8 +11196,7 @@ - lymphatic vessel (NCIT) - NCIT:C33038 + lymphatic vessel (NCIT) @@ -12778,8 +11205,7 @@ - lymphoid follicle (NCIT) - NCIT:C33040 + lymphoid follicle (NCIT) @@ -12788,8 +11214,7 @@ - macula densa (NCIT) - NCIT:C33043 + macula densa (NCIT) @@ -12798,8 +11223,7 @@ - macula lutea (NCIT) - NCIT:C33044 + macula lutea (NCIT) @@ -12808,8 +11232,7 @@ - macula of saccule of membranous labyrinth (NCIT) - NCIT:C33045 + macula of saccule of membranous labyrinth (NCIT) @@ -12818,8 +11241,7 @@ - macula of utricle of membranous labyrinth (NCIT) - NCIT:C33046 + macula of utricle of membranous labyrinth (NCIT) @@ -12828,8 +11250,7 @@ - male breast (NCIT) - NCIT:C33048 + male breast (NCIT) @@ -12838,8 +11259,7 @@ - prepuce of penis (NCIT) - NCIT:C33049 + prepuce of penis (NCIT) @@ -12848,8 +11268,7 @@ - male urethra (NCIT) - NCIT:C33050 + male urethra (NCIT) @@ -12858,8 +11277,7 @@ - malleus bone (NCIT) - NCIT:C33051 + malleus bone (NCIT) @@ -12868,8 +11286,7 @@ - mammillary body (NCIT) - NCIT:C33052 + mammillary body (NCIT) @@ -12878,8 +11295,7 @@ - secondary follicle corona (NCIT) - NCIT:C33053 + secondary follicle corona (NCIT) @@ -12888,8 +11304,7 @@ - medial rectus extraocular muscle (NCIT) - NCIT:C33068 + medial rectus extraocular muscle (NCIT) @@ -12898,8 +11313,7 @@ - medial vestibular nucleus (NCIT) - NCIT:C33069 + medial vestibular nucleus (NCIT) @@ -12908,8 +11322,7 @@ - median basilic vein (NCIT) - NCIT:C33070 + median basilic vein (NCIT) @@ -12918,8 +11331,7 @@ - mediastinal lymph node (NCIT) - NCIT:C33073 + mediastinal lymph node (NCIT) @@ -12928,8 +11340,7 @@ - tarsal gland (NCIT) - NCIT:C33075 + tarsal gland (NCIT) @@ -12938,8 +11349,7 @@ - vestibular membrane of cochlear duct (NCIT) - NCIT:C33083 + vestibular membrane of cochlear duct (NCIT) @@ -12948,8 +11358,7 @@ - membranous labyrinth (NCIT) - NCIT:C33090 + membranous labyrinth (NCIT) @@ -12958,8 +11367,7 @@ - male membranous urethra (NCIT) - NCIT:C33091 + male membranous urethra (NCIT) @@ -12968,8 +11376,7 @@ - meningeal dura mater (NCIT) - NCIT:C33093 + meningeal dura mater (NCIT) @@ -12978,8 +11385,7 @@ - meniscus (NCIT) - NCIT:C33096 + meniscus (NCIT) @@ -12988,8 +11394,7 @@ - mesangium (NCIT) - NCIT:C33101 + mesangium (NCIT) @@ -12998,8 +11403,7 @@ - mesentery (NCIT) - NCIT:C33103 + mesentery (NCIT) @@ -13008,8 +11412,7 @@ - mesothelium (NCIT) - NCIT:C33105 + mesothelium (NCIT) @@ -13018,8 +11421,7 @@ - metacarpophalangeal joint (NCIT) - NCIT:C33106 + metacarpophalangeal joint (NCIT) @@ -13028,8 +11430,7 @@ - metatarsophalangeal joint (NCIT) - NCIT:C33108 + metatarsophalangeal joint (NCIT) @@ -13038,8 +11439,7 @@ - capillary bed (NCIT) - NCIT:C33109 + capillary bed (NCIT) @@ -13048,8 +11448,7 @@ - layer of microvilli (NCIT) - NCIT:C33112 + layer of microvilli (NCIT) @@ -13058,8 +11457,7 @@ - branch of middle cerebral artery (NCIT) - NCIT:C33114 + branch of middle cerebral artery (NCIT) @@ -13068,8 +11466,7 @@ - middle pharyngeal constrictor (NCIT) - NCIT:C33115 + middle pharyngeal constrictor (NCIT) @@ -13078,8 +11475,7 @@ - distal tarsal bone 2 (NCIT) - NCIT:C33116 + distal tarsal bone 2 (NCIT) @@ -13088,8 +11484,7 @@ - middle cranial fossa (NCIT) - NCIT:C33117 + middle cranial fossa (NCIT) @@ -13098,8 +11493,7 @@ - middle frontal gyrus (NCIT) - NCIT:C33118 + middle frontal gyrus (NCIT) @@ -13108,8 +11502,7 @@ - middle mediastinum (NCIT) - NCIT:C33123 + middle mediastinum (NCIT) @@ -13118,8 +11511,7 @@ - middle temporal gyrus (NCIT) - NCIT:C33125 + middle temporal gyrus (NCIT) @@ -13128,8 +11520,7 @@ - middle temporal sulcus (NCIT) - NCIT:C33127 + middle temporal sulcus (NCIT) @@ -13138,8 +11529,7 @@ - median thyrohyoid ligament (NCIT) - NCIT:C33128 + median thyrohyoid ligament (NCIT) @@ -13148,8 +11538,7 @@ - minor salivary gland (NCIT) - NCIT:C33129 + minor salivary gland (NCIT) @@ -13158,8 +11547,7 @@ - cochlear modiolus (NCIT) - NCIT:C33135 + cochlear modiolus (NCIT) @@ -13168,8 +11556,7 @@ - molar tooth (NCIT) - NCIT:C33136 + molar tooth (NCIT) @@ -13178,8 +11565,7 @@ - cortical layer I (NCIT) - NCIT:C33137 + cortical layer I (NCIT) @@ -13188,8 +11574,7 @@ - mons pubis (NCIT) - NCIT:C33139 + mons pubis (NCIT) @@ -13198,8 +11583,7 @@ - motor nucleus of trigeminal nerve (NCIT) - NCIT:C33140 + motor nucleus of trigeminal nerve (NCIT) @@ -13208,8 +11592,7 @@ - masticatory muscle (NCIT) - NCIT:C33147 + masticatory muscle (NCIT) @@ -13218,8 +11601,7 @@ - muscle of auditory ossicle (NCIT) - NCIT:C33148 + muscle of auditory ossicle (NCIT) @@ -13228,8 +11610,7 @@ - muscularis mucosa (NCIT) - NCIT:C33149 + muscularis mucosa (NCIT) @@ -13238,8 +11619,7 @@ - latissimus dorsi muscle (NCIT) - NCIT:C33150 + latissimus dorsi muscle (NCIT) @@ -13248,8 +11628,7 @@ - nail (NCIT) - NCIT:C33156 + nail (NCIT) @@ -13258,8 +11637,7 @@ - nasal bone (NCIT) - NCIT:C33157 + nasal bone (NCIT) @@ -13268,8 +11646,7 @@ - nasal muscle (NCIT) - NCIT:C33158 + nasal muscle (NCIT) @@ -13278,8 +11655,7 @@ - nasociliary nerve (NCIT) - NCIT:C33159 + nasociliary nerve (NCIT) @@ -13288,8 +11664,7 @@ - nasal septum (NCIT) - NCIT:C33160 + nasal septum (NCIT) @@ -13298,8 +11673,7 @@ - nasolacrimal duct (NCIT) - NCIT:C33161 + nasolacrimal duct (NCIT) @@ -13308,8 +11682,7 @@ - navicular bone of pes (NCIT) - NCIT:C33162 + navicular bone of pes (NCIT) @@ -13318,8 +11691,7 @@ - muscle of neck (NCIT) - NCIT:C33163 + muscle of neck (NCIT) @@ -13328,8 +11700,7 @@ - neck of humerus (NCIT) - NCIT:C33164 + neck of humerus (NCIT) @@ -13338,8 +11709,7 @@ - retinal neural layer (NCIT) - NCIT:C33166 + retinal neural layer (NCIT) @@ -13348,8 +11718,7 @@ - external naris (NCIT) - NCIT:C33178 + external naris (NCIT) @@ -13358,8 +11727,7 @@ - spinal nucleus of trigeminal nerve (NCIT) - NCIT:C33188 + spinal nucleus of trigeminal nerve (NCIT) @@ -13368,8 +11736,7 @@ - nutrient foramen artery (NCIT) - NCIT:C33189 + nutrient foramen artery (NCIT) @@ -13378,8 +11745,7 @@ - obturator artery (NCIT) - NCIT:C33190 + obturator artery (NCIT) @@ -13388,8 +11754,7 @@ - obturator externus (NCIT) - NCIT:C33191 + obturator externus (NCIT) @@ -13398,8 +11763,7 @@ - obturator internus (NCIT) - NCIT:C33192 + obturator internus (NCIT) @@ -13408,8 +11772,7 @@ - obturator muscle (NCIT) - NCIT:C33193 + obturator muscle (NCIT) @@ -13418,8 +11781,7 @@ - occipital artery (NCIT) - NCIT:C33194 + occipital artery (NCIT) @@ -13428,8 +11790,7 @@ - posterior horn lateral ventricle (NCIT) - NCIT:C33195 + posterior horn lateral ventricle (NCIT) @@ -13438,8 +11799,7 @@ - occipital sulcus (NCIT) - NCIT:C33196 + occipital sulcus (NCIT) @@ -13448,8 +11808,7 @@ - fusiform gyrus (NCIT) - NCIT:C33197 + fusiform gyrus (NCIT) @@ -13458,8 +11817,7 @@ - occipitofrontalis muscle (NCIT) - NCIT:C33198 + occipitofrontalis muscle (NCIT) @@ -13468,8 +11826,7 @@ - oculomotor muscle (NCIT) - NCIT:C33199 + oculomotor muscle (NCIT) @@ -13478,8 +11835,7 @@ - olecranon (NCIT) - NCIT:C33200 + olecranon (NCIT) @@ -13488,8 +11844,7 @@ - olfactory epithelium (NCIT) - NCIT:C33203 + olfactory epithelium (NCIT) @@ -13498,8 +11853,7 @@ - olfactory lobe (NCIT) - NCIT:C33204 + olfactory lobe (NCIT) @@ -13508,8 +11862,7 @@ - olfactory segment of nasal mucosa (NCIT) - NCIT:C33205 + olfactory segment of nasal mucosa (NCIT) @@ -13518,8 +11871,7 @@ - olfactory sulcus (NCIT) - NCIT:C33206 + olfactory sulcus (NCIT) @@ -13528,8 +11880,7 @@ - olfactory tract (NCIT) - NCIT:C33207 + olfactory tract (NCIT) @@ -13538,8 +11889,7 @@ - omentum (NCIT) - NCIT:C33209 + omentum (NCIT) @@ -13548,8 +11898,7 @@ - ophthalmic nerve (NCIT) - NCIT:C33215 + ophthalmic nerve (NCIT) @@ -13558,8 +11907,7 @@ - ophthalmic artery (NCIT) - NCIT:C33216 + ophthalmic artery (NCIT) @@ -13568,8 +11916,7 @@ - optic tract (NCIT) - NCIT:C33218 + optic tract (NCIT) @@ -13578,8 +11925,7 @@ - pars plana of ciliary body (NCIT) - NCIT:C33219 + pars plana of ciliary body (NCIT) @@ -13588,8 +11934,7 @@ - orbital part of inferior frontal gyrus (NCIT) - NCIT:C33221 + orbital part of inferior frontal gyrus (NCIT) @@ -13598,8 +11943,7 @@ - orbital sulcus (NCIT) - NCIT:C33222 + orbital sulcus (NCIT) @@ -13608,8 +11952,7 @@ - spiral organ of cochlea (NCIT) - NCIT:C33223 + spiral organ of cochlea (NCIT) @@ -13618,8 +11961,7 @@ - sense organ (NCIT) - NCIT:C33224 + sense organ (NCIT) @@ -13628,8 +11970,7 @@ - bony labyrinth (NCIT) - NCIT:C33227 + bony labyrinth (NCIT) @@ -13638,8 +11979,7 @@ - osteoid (NCIT) - NCIT:C33228 + osteoid (NCIT) @@ -13648,8 +11988,7 @@ - otolith (NCIT) - NCIT:C33230 + otolith (NCIT) @@ -13658,8 +11997,7 @@ - otolymph (NCIT) - NCIT:C33231 + otolymph (NCIT) @@ -13668,8 +12006,7 @@ - outer dental epithelium (NCIT) - NCIT:C33232 + outer dental epithelium (NCIT) @@ -13678,8 +12015,7 @@ - outer limiting layer of retina (NCIT) - NCIT:C33235 + outer limiting layer of retina (NCIT) @@ -13688,8 +12024,7 @@ - outer nuclear layer of retina (NCIT) - NCIT:C33236 + outer nuclear layer of retina (NCIT) @@ -13698,8 +12033,7 @@ - outer plexiform layer of retina (NCIT) - NCIT:C33237 + outer plexiform layer of retina (NCIT) @@ -13708,8 +12042,7 @@ - ovarian artery (NCIT) - NCIT:C33242 + ovarian artery (NCIT) @@ -13718,8 +12051,7 @@ - ovarian cortex (NCIT) - NCIT:C33243 + ovarian cortex (NCIT) @@ -13728,8 +12060,7 @@ - ovarian follicle (NCIT) - NCIT:C33244 + ovarian follicle (NCIT) @@ -13738,8 +12069,7 @@ - ovarian medulla (NCIT) - NCIT:C33245 + ovarian medulla (NCIT) @@ -13748,8 +12078,7 @@ - palatal muscle (NCIT) - NCIT:C33247 + palatal muscle (NCIT) @@ -13758,8 +12087,7 @@ - palate bone (NCIT) - NCIT:C33248 + palate bone (NCIT) @@ -13768,8 +12096,7 @@ - palatine gland (NCIT) - NCIT:C33249 + palatine gland (NCIT) @@ -13778,8 +12105,7 @@ - palatine tonsil (NCIT) - NCIT:C33250 + palatine tonsil (NCIT) @@ -13788,8 +12114,7 @@ - palmar part of manus (NCIT) - NCIT:C33252 + palmar part of manus (NCIT) @@ -13798,8 +12123,7 @@ - secretion of endocrine pancreas (NCIT) - NCIT:C33255 + secretion of endocrine pancreas (NCIT) @@ -13808,8 +12132,7 @@ - secretion of exocrine pancreas (NCIT) - NCIT:C33256 + secretion of exocrine pancreas (NCIT) @@ -13818,8 +12141,7 @@ - papilla of tongue (NCIT) - NCIT:C33258 + papilla of tongue (NCIT) @@ -13828,8 +12150,7 @@ - papillary muscle of heart (NCIT) - NCIT:C33259 + papillary muscle of heart (NCIT) @@ -13838,8 +12159,7 @@ - parafascicular nucleus (NCIT) - NCIT:C33260 + parafascicular nucleus (NCIT) @@ -13848,8 +12168,7 @@ - parahippocampal gyrus (NCIT) - NCIT:C33262 + parahippocampal gyrus (NCIT) @@ -13858,8 +12177,7 @@ - capsule of parathyroid gland (NCIT) - NCIT:C33265 + capsule of parathyroid gland (NCIT) @@ -13868,8 +12186,7 @@ - glomerular parietal epithelium (NCIT) - NCIT:C33271 + glomerular parietal epithelium (NCIT) @@ -13878,8 +12195,7 @@ - parietal pleura (NCIT) - NCIT:C33273 + parietal pleura (NCIT) @@ -13888,8 +12204,7 @@ - parieto-occipital sulcus (NCIT) - NCIT:C33275 + parieto-occipital sulcus (NCIT) @@ -13898,8 +12213,7 @@ - parotid main excretory duct (NCIT) - NCIT:C33277 + parotid main excretory duct (NCIT) @@ -13908,8 +12222,7 @@ - patella (NCIT) - NCIT:C33282 + patella (NCIT) @@ -13918,8 +12231,7 @@ - patellar ligament (NCIT) - NCIT:C33283 + patellar ligament (NCIT) @@ -13928,8 +12240,7 @@ - pectoralis major (NCIT) - NCIT:C33284 + pectoralis major (NCIT) @@ -13938,8 +12249,7 @@ - pectoralis minor (NCIT) - NCIT:C33285 + pectoralis minor (NCIT) @@ -13948,8 +12258,7 @@ - pectoral muscle (NCIT) - NCIT:C33286 + pectoral muscle (NCIT) @@ -13958,8 +12267,7 @@ - pelvic girdle bone/zone (NCIT) - NCIT:C33287 + pelvic girdle bone/zone (NCIT) @@ -13968,8 +12276,7 @@ - muscle of pelvic diaphragm (NCIT) - NCIT:C33290 + muscle of pelvic diaphragm (NCIT) @@ -13978,8 +12285,7 @@ - pelvic girdle region (NCIT) - NCIT:C33291 + pelvic girdle region (NCIT) @@ -13988,8 +12294,7 @@ - perilymph (NCIT) - NCIT:C33297 + perilymph (NCIT) @@ -13998,8 +12303,7 @@ - serosa of uterus (NCIT) - NCIT:C33298 + serosa of uterus (NCIT) @@ -14008,8 +12312,7 @@ - perimysium (NCIT) - NCIT:C33299 + perimysium (NCIT) @@ -14018,8 +12321,7 @@ - perineal muscle (NCIT) - NCIT:C33300 + perineal muscle (NCIT) @@ -14028,8 +12330,7 @@ - perineum (NCIT) - NCIT:C33301 + perineum (NCIT) @@ -14038,8 +12339,7 @@ - perineurium (NCIT) - NCIT:C33302 + perineurium (NCIT) @@ -14048,8 +12348,7 @@ - periodontium (NCIT) - NCIT:C33304 + periodontium (NCIT) @@ -14058,8 +12357,7 @@ - periosteal dura mater (NCIT) - NCIT:C33306 + periosteal dura mater (NCIT) @@ -14068,8 +12366,7 @@ - liver perisinusoidal space (NCIT) - NCIT:C33309 + liver perisinusoidal space (NCIT) @@ -14078,8 +12375,7 @@ - secondary tooth (NCIT) - NCIT:C33313 + secondary tooth (NCIT) @@ -14088,8 +12384,7 @@ - peroneal artery (NCIT) - NCIT:C33314 + peroneal artery (NCIT) @@ -14098,8 +12393,7 @@ - phalanx (NCIT) - NCIT:C33317 + phalanx (NCIT) @@ -14108,8 +12402,7 @@ - pharyngeal tonsil (NCIT) - NCIT:C33318 + pharyngeal tonsil (NCIT) @@ -14118,8 +12411,7 @@ - phrenic artery (NCIT) - NCIT:C33320 + phrenic artery (NCIT) @@ -14128,8 +12420,7 @@ - pia mater (NCIT) - NCIT:C33321 + pia mater (NCIT) @@ -14138,8 +12429,7 @@ - plantar part of pes (NCIT) - NCIT:C33326 + plantar part of pes (NCIT) @@ -14148,8 +12438,7 @@ - platysma (NCIT) - NCIT:C33329 + platysma (NCIT) @@ -14158,8 +12447,7 @@ - popliteal artery (NCIT) - NCIT:C33337 + popliteal artery (NCIT) @@ -14168,8 +12456,7 @@ - popliteal vein (NCIT) - NCIT:C33339 + popliteal vein (NCIT) @@ -14178,8 +12465,7 @@ - popliteus muscle (NCIT) - NCIT:C33340 + popliteus muscle (NCIT) @@ -14188,8 +12474,7 @@ - portal lobule (NCIT) - NCIT:C33341 + portal lobule (NCIT) @@ -14198,8 +12483,7 @@ - portal triad (NCIT) - NCIT:C33342 + portal triad (NCIT) @@ -14208,8 +12492,7 @@ - portal vein (NCIT) - NCIT:C33343 + portal vein (NCIT) @@ -14218,8 +12501,7 @@ - portal system (NCIT) - NCIT:C33344 + portal system (NCIT) @@ -14228,8 +12510,7 @@ - postcapillary venule (NCIT) - NCIT:C33345 + postcapillary venule (NCIT) @@ -14238,8 +12519,7 @@ - postcentral gyrus (NCIT) - NCIT:C33346 + postcentral gyrus (NCIT) @@ -14248,8 +12528,7 @@ - postcentral sulcus of parietal lobe (NCIT) - NCIT:C33347 + postcentral sulcus of parietal lobe (NCIT) @@ -14258,8 +12537,7 @@ - posterior auricular vein (NCIT) - NCIT:C33349 + posterior auricular vein (NCIT) @@ -14268,8 +12546,7 @@ - branch of posterior cerebral artery (NCIT) - NCIT:C33351 + branch of posterior cerebral artery (NCIT) @@ -14278,8 +12555,7 @@ - posterior choroidal artery (NCIT) - NCIT:C33352 + posterior choroidal artery (NCIT) @@ -14288,8 +12564,7 @@ - spinal cord dorsal column (NCIT) - NCIT:C33355 + spinal cord dorsal column (NCIT) @@ -14298,8 +12573,7 @@ - posterior commissure (NCIT) - NCIT:C33356 + posterior commissure (NCIT) @@ -14308,8 +12582,7 @@ - posterior communicating artery (NCIT) - NCIT:C33357 + posterior communicating artery (NCIT) @@ -14318,8 +12591,7 @@ - posterior cruciate ligament of knee joint (NCIT) - NCIT:C33359 + posterior cruciate ligament of knee joint (NCIT) @@ -14328,8 +12600,7 @@ - posterior external jugular vein (NCIT) - NCIT:C33360 + posterior external jugular vein (NCIT) @@ -14338,8 +12609,7 @@ - posterior cranial fossa (NCIT) - NCIT:C33361 + posterior cranial fossa (NCIT) @@ -14348,8 +12618,7 @@ - posterior inferior cerebellar artery (NCIT) - NCIT:C33362 + posterior inferior cerebellar artery (NCIT) @@ -14358,8 +12627,7 @@ - posterior longitudinal ligament (NCIT) - NCIT:C33365 + posterior longitudinal ligament (NCIT) @@ -14368,8 +12636,7 @@ - posterior mediastinum (NCIT) - NCIT:C33368 + posterior mediastinum (NCIT) @@ -14378,8 +12645,7 @@ - posterior meningeal artery (NCIT) - NCIT:C33369 + posterior meningeal artery (NCIT) @@ -14388,8 +12654,7 @@ - posterior nucleus of thalamus (NCIT) - NCIT:C33370 + posterior nucleus of thalamus (NCIT) @@ -14398,8 +12663,7 @@ - posterior parietal artery (NCIT) - NCIT:C33372 + posterior parietal artery (NCIT) @@ -14408,8 +12672,7 @@ - posterior pole of lens (NCIT) - NCIT:C33375 + posterior pole of lens (NCIT) @@ -14418,8 +12681,7 @@ - posterior semicircular canal (NCIT) - NCIT:C33378 + posterior semicircular canal (NCIT) @@ -14428,8 +12690,7 @@ - posterior temporal artery (NCIT) - NCIT:C33384 + posterior temporal artery (NCIT) @@ -14438,8 +12699,7 @@ - branch of posterior tibial artery (NCIT) - NCIT:C33385 + branch of posterior tibial artery (NCIT) @@ -14448,8 +12708,7 @@ - posterior tibial vein (NCIT) - NCIT:C33386 + posterior tibial vein (NCIT) @@ -14458,8 +12717,7 @@ - precentral gyrus (NCIT) - NCIT:C33393 + precentral gyrus (NCIT) @@ -14468,8 +12726,7 @@ - precentral sulcus (NCIT) - NCIT:C33394 + precentral sulcus (NCIT) @@ -14478,8 +12735,7 @@ - primordial ovarian follicle (NCIT) - NCIT:C33400 + primordial ovarian follicle (NCIT) @@ -14488,8 +12744,7 @@ - principal sensory nucleus of trigeminal nerve (NCIT) - NCIT:C33402 + principal sensory nucleus of trigeminal nerve (NCIT) @@ -14498,8 +12753,7 @@ - proximal convoluted tubule (NCIT) - NCIT:C33417 + proximal convoluted tubule (NCIT) @@ -14508,8 +12762,7 @@ - pseudostratified columnar epithelium (NCIT) - NCIT:C33419 + pseudostratified columnar epithelium (NCIT) @@ -14518,8 +12771,7 @@ - psoas major muscle (NCIT) - NCIT:C33420 + psoas major muscle (NCIT) @@ -14528,8 +12780,7 @@ - psoas minor muscle (NCIT) - NCIT:C33421 + psoas minor muscle (NCIT) @@ -14538,8 +12789,7 @@ - psoas muscle (NCIT) - NCIT:C33422 + psoas muscle (NCIT) @@ -14548,8 +12798,7 @@ - pubis (NCIT) - NCIT:C33423 + pubis (NCIT) @@ -14558,8 +12807,7 @@ - strand of pubic hair (NCIT) - NCIT:C33424 + strand of pubic hair (NCIT) @@ -14568,8 +12816,7 @@ - pubic symphysis (NCIT) - NCIT:C33425 + pubic symphysis (NCIT) @@ -14578,8 +12825,7 @@ - pulmonary acinus (NCIT) - NCIT:C33426 + pulmonary acinus (NCIT) @@ -14588,8 +12834,7 @@ - pulmonary lobule (NCIT) - NCIT:C33428 + pulmonary lobule (NCIT) @@ -14598,8 +12843,7 @@ - pupil (NCIT) - NCIT:C33429 + pupil (NCIT) @@ -14608,8 +12852,7 @@ - cardiac Purkinje fiber (NCIT) - NCIT:C33430 + cardiac Purkinje fiber (NCIT) @@ -14618,8 +12861,7 @@ - pyloric gastric gland (NCIT) - NCIT:C33431 + pyloric gastric gland (NCIT) @@ -14628,8 +12870,7 @@ - pyloric sphincter (NCIT) - NCIT:C33433 + pyloric sphincter (NCIT) @@ -14638,8 +12879,7 @@ - kidney pyramid (NCIT) - NCIT:C33436 + kidney pyramid (NCIT) @@ -14648,8 +12888,7 @@ - pyramidalis (NCIT) - NCIT:C33438 + pyramidalis (NCIT) @@ -14658,8 +12897,7 @@ - quadratus lumborum (NCIT) - NCIT:C33440 + quadratus lumborum (NCIT) @@ -14668,8 +12906,7 @@ - quadriceps femoris (NCIT) - NCIT:C33441 + quadriceps femoris (NCIT) @@ -14678,8 +12915,7 @@ - quadrigeminal cistern (NCIT) - NCIT:C33444 + quadrigeminal cistern (NCIT) @@ -14688,8 +12924,7 @@ - Douglas' pouch (NCIT) - NCIT:C33447 + Douglas' pouch (NCIT) @@ -14698,8 +12933,7 @@ - rectovesical pouch (NCIT) - NCIT:C33448 + rectovesical pouch (NCIT) @@ -14708,8 +12942,7 @@ - rectus abdominis muscle (NCIT) - NCIT:C33449 + rectus abdominis muscle (NCIT) @@ -14718,8 +12951,7 @@ - dense regular connective tissue (NCIT) - NCIT:C33453 + dense regular connective tissue (NCIT) @@ -14728,8 +12960,7 @@ - renal corpuscle (NCIT) - NCIT:C33456 + renal corpuscle (NCIT) @@ -14738,8 +12969,7 @@ - kidney interstitium (NCIT) - NCIT:C33459 + kidney interstitium (NCIT) @@ -14748,8 +12978,7 @@ - renal papilla (NCIT) - NCIT:C33460 + renal papilla (NCIT) @@ -14758,8 +12987,7 @@ - renal vein (NCIT) - NCIT:C33462 + renal vein (NCIT) @@ -14768,8 +12996,7 @@ - respiratory bronchiole (NCIT) - NCIT:C33465 + respiratory bronchiole (NCIT) @@ -14778,8 +13005,7 @@ - stratum basale of epidermis (NCIT) - NCIT:C33466 + stratum basale of epidermis (NCIT) @@ -14788,8 +13014,7 @@ - rete testis (NCIT) - NCIT:C33467 + rete testis (NCIT) @@ -14798,8 +13023,7 @@ - pigmented layer of retina (NCIT) - NCIT:C33470 + pigmented layer of retina (NCIT) @@ -14808,8 +13032,7 @@ - right cerebral hemisphere (NCIT) - NCIT:C33472 + right cerebral hemisphere (NCIT) @@ -14818,8 +13041,7 @@ - right common carotid artery plus branches (NCIT) - NCIT:C33473 + right common carotid artery plus branches (NCIT) @@ -14828,8 +13050,7 @@ - right common iliac artery (NCIT) - NCIT:C33474 + right common iliac artery (NCIT) @@ -14838,8 +13059,7 @@ - right uterine tube (NCIT) - NCIT:C33475 + right uterine tube (NCIT) @@ -14848,8 +13068,7 @@ - right hepatic duct (NCIT) - NCIT:C33476 + right hepatic duct (NCIT) @@ -14858,8 +13077,7 @@ - right inguinal part of abdomen (NCIT) - NCIT:C33479 + right inguinal part of abdomen (NCIT) @@ -14868,8 +13086,7 @@ - right lobe of liver (NCIT) - NCIT:C33481 + right lobe of liver (NCIT) @@ -14878,8 +13095,7 @@ - right lung (NCIT) - NCIT:C33483 + right lung (NCIT) @@ -14888,8 +13104,7 @@ - right main bronchus (NCIT) - NCIT:C33486 + right main bronchus (NCIT) @@ -14898,8 +13113,7 @@ - right ovary (NCIT) - NCIT:C33487 + right ovary (NCIT) @@ -14908,8 +13122,7 @@ - right pulmonary artery (NCIT) - NCIT:C33489 + right pulmonary artery (NCIT) @@ -14918,8 +13131,7 @@ - right subclavian artery (NCIT) - NCIT:C33490 + right subclavian artery (NCIT) @@ -14928,8 +13140,7 @@ - right lobe of thyroid gland (NCIT) - NCIT:C33491 + right lobe of thyroid gland (NCIT) @@ -14938,8 +13149,7 @@ - root of nail (NCIT) - NCIT:C33495 + root of nail (NCIT) @@ -14948,8 +13158,7 @@ - rostrum of corpus callosum (NCIT) - NCIT:C33496 + rostrum of corpus callosum (NCIT) @@ -14958,8 +13167,7 @@ - rotator cuff (NCIT) - NCIT:C33497 + rotator cuff (NCIT) @@ -14968,8 +13176,7 @@ - sacral vertebra 1 (NCIT) - NCIT:C33498 + sacral vertebra 1 (NCIT) @@ -14978,8 +13185,7 @@ - sacral vertebra 2 (NCIT) - NCIT:C33499 + sacral vertebra 2 (NCIT) @@ -14988,8 +13194,7 @@ - sacral vertebra 3 (NCIT) - NCIT:C33500 + sacral vertebra 3 (NCIT) @@ -14998,8 +13203,7 @@ - sacral vertebra 4 (NCIT) - NCIT:C33501 + sacral vertebra 4 (NCIT) @@ -15008,8 +13212,7 @@ - saccule of membranous labyrinth (NCIT) - NCIT:C33503 + saccule of membranous labyrinth (NCIT) @@ -15018,8 +13221,7 @@ - sacral nerve (NCIT) - NCIT:C33505 + sacral nerve (NCIT) @@ -15028,8 +13230,7 @@ - sacrococcygeal symphysis (NCIT) - NCIT:C33506 + sacrococcygeal symphysis (NCIT) @@ -15038,20 +13239,7 @@ - sacro-iliac joint (NCIT) - NCIT:C33507 - - - - - - - - - - fused sacrum (NCIT) - sacral region of vertebral column (NCIT) - NCIT:C33508 + sacro-iliac joint (NCIT) @@ -15060,8 +13248,7 @@ - salpingopharyngeus muscle (NCIT) - NCIT:C33510 + salpingopharyngeus muscle (NCIT) @@ -15070,8 +13257,7 @@ - saphenous vein (NCIT) - NCIT:C33511 + saphenous vein (NCIT) @@ -15080,8 +13266,7 @@ - sartorius muscle (NCIT) - NCIT:C33515 + sartorius muscle (NCIT) @@ -15090,8 +13275,7 @@ - scalene muscle (NCIT) - NCIT:C33517 + scalene muscle (NCIT) @@ -15100,8 +13284,7 @@ - sebaceous gland (NCIT) - NCIT:C33519 + sebaceous gland (NCIT) @@ -15110,8 +13293,7 @@ - duct of sebaceous gland (NCIT) - NCIT:C33520 + duct of sebaceous gland (NCIT) @@ -15120,8 +13302,7 @@ - segmental bronchus (NCIT) - NCIT:C33526 + segmental bronchus (NCIT) @@ -15130,8 +13311,7 @@ - semicircular canal (NCIT) - NCIT:C33527 + semicircular canal (NCIT) @@ -15140,8 +13320,7 @@ - semicircular duct (NCIT) - NCIT:C33528 + semicircular duct (NCIT) @@ -15150,8 +13329,7 @@ - seminal vesicle fluid (NCIT) - NCIT:C33529 + seminal vesicle fluid (NCIT) @@ -15160,8 +13338,7 @@ - septum pellucidum (NCIT) - NCIT:C33536 + septum pellucidum (NCIT) @@ -15170,8 +13347,7 @@ - sesamoid bone (NCIT) - NCIT:C33541 + sesamoid bone (NCIT) @@ -15180,8 +13356,7 @@ - hair shaft (NCIT) - NCIT:C33543 + hair shaft (NCIT) @@ -15190,8 +13365,7 @@ - sheath of Schwann (NCIT) - NCIT:C33544 + sheath of Schwann (NCIT) @@ -15200,8 +13374,7 @@ - short bone (NCIT) - NCIT:C33545 + short bone (NCIT) @@ -15210,8 +13383,7 @@ - small saphenous vein (NCIT) - NCIT:C33546 + small saphenous vein (NCIT) @@ -15220,8 +13392,7 @@ - pectoral girdle skeleton (NCIT) - NCIT:C33547 + pectoral girdle skeleton (NCIT) @@ -15230,8 +13401,7 @@ - glenohumeral joint (NCIT) - NCIT:C33548 + glenohumeral joint (NCIT) @@ -15240,8 +13410,7 @@ - sigmoid artery (NCIT) - NCIT:C33549 + sigmoid artery (NCIT) @@ -15250,8 +13419,7 @@ - sigmoid colon (NCIT) - NCIT:C33550 + sigmoid colon (NCIT) @@ -15260,8 +13428,7 @@ - simple columnar epithelium (NCIT) - NCIT:C33552 + simple columnar epithelium (NCIT) @@ -15270,8 +13437,7 @@ - simple cuboidal epithelium (NCIT) - NCIT:C33553 + simple cuboidal epithelium (NCIT) @@ -15280,8 +13446,7 @@ - unilaminar epithelium (NCIT) - NCIT:C33554 + unilaminar epithelium (NCIT) @@ -15290,8 +13455,7 @@ - sinoatrial node (NCIT) - NCIT:C33555 + sinoatrial node (NCIT) @@ -15300,8 +13464,7 @@ - sinus of Valsalva (NCIT) - NCIT:C33557 + sinus of Valsalva (NCIT) @@ -15310,8 +13473,7 @@ - skin of face (NCIT) - NCIT:C33561 + skin of face (NCIT) @@ -15320,8 +13482,7 @@ - crypt of Lieberkuhn of small intestine (NCIT) - NCIT:C33565 + crypt of Lieberkuhn of small intestine (NCIT) @@ -15330,8 +13491,7 @@ - mucosa of small intestine (NCIT) - NCIT:C33568 + mucosa of small intestine (NCIT) @@ -15340,8 +13500,7 @@ - muscle layer of small intestine (NCIT) - NCIT:C33569 + muscle layer of small intestine (NCIT) @@ -15350,8 +13509,7 @@ - muscularis mucosae of small intestine (NCIT) - NCIT:C33570 + muscularis mucosae of small intestine (NCIT) @@ -15360,8 +13518,7 @@ - submucosa of small intestine (NCIT) - NCIT:C33572 + submucosa of small intestine (NCIT) @@ -15370,8 +13527,7 @@ - wall of small intestine (NCIT) - NCIT:C33573 + wall of small intestine (NCIT) @@ -15380,8 +13536,7 @@ - smegma (NCIT) - NCIT:C33574 + smegma (NCIT) @@ -15390,8 +13545,7 @@ - space of Mall (NCIT) - NCIT:C33580 + space of Mall (NCIT) @@ -15400,8 +13554,7 @@ - spermatic artery (NCIT) - NCIT:C33581 + spermatic artery (NCIT) @@ -15410,8 +13563,7 @@ - spheno-maxillary fossa (NCIT) - NCIT:C33584 + spheno-maxillary fossa (NCIT) @@ -15420,8 +13572,7 @@ - sphenoparietal sinus (NCIT) - NCIT:C33585 + sphenoparietal sinus (NCIT) @@ -15430,8 +13581,7 @@ - sphincter pupillae (NCIT) - NCIT:C33586 + sphincter pupillae (NCIT) @@ -15440,8 +13590,7 @@ - spinal artery (NCIT) - NCIT:C33587 + spinal artery (NCIT) @@ -15450,8 +13599,7 @@ - vertebral column (NCIT) - NCIT:C33588 + vertebral column (NCIT) @@ -15460,8 +13608,7 @@ - inferior vestibular nucleus (NCIT) - NCIT:C33591 + inferior vestibular nucleus (NCIT) @@ -15470,8 +13617,7 @@ - uterine spiral artery (NCIT) - NCIT:C33592 + uterine spiral artery (NCIT) @@ -15480,8 +13626,7 @@ - splenic arteriole (NCIT) - NCIT:C33596 + splenic arteriole (NCIT) @@ -15490,8 +13635,7 @@ - splenic artery (NCIT) - NCIT:C33597 + splenic artery (NCIT) @@ -15500,8 +13644,7 @@ - spleen capsule (NCIT) - NCIT:C33598 + spleen capsule (NCIT) @@ -15510,8 +13653,7 @@ - splenic cord (NCIT) - NCIT:C33599 + splenic cord (NCIT) @@ -15520,8 +13662,7 @@ - hilum of spleen (NCIT) - NCIT:C33601 + hilum of spleen (NCIT) @@ -15530,8 +13671,7 @@ - spleen lymphoid follicle (NCIT) - NCIT:C33602 + spleen lymphoid follicle (NCIT) @@ -15540,8 +13680,7 @@ - spleen pulp (NCIT) - NCIT:C33603 + spleen pulp (NCIT) @@ -15550,8 +13689,7 @@ - spleen venous sinus (NCIT) - NCIT:C33605 + spleen venous sinus (NCIT) @@ -15560,8 +13698,7 @@ - trabecula of spleen (NCIT) - NCIT:C33607 + trabecula of spleen (NCIT) @@ -15570,8 +13707,7 @@ - splenic vein (NCIT) - NCIT:C33608 + splenic vein (NCIT) @@ -15580,8 +13716,7 @@ - splenium of the corpus callosum (NCIT) - NCIT:C33610 + splenium of the corpus callosum (NCIT) @@ -15590,8 +13725,7 @@ - stapedius muscle (NCIT) - NCIT:C33611 + stapedius muscle (NCIT) @@ -15600,8 +13734,7 @@ - stapes bone (NCIT) - NCIT:C33612 + stapes bone (NCIT) @@ -15610,8 +13743,7 @@ - stellate reticulum (NCIT) - NCIT:C33613 + stellate reticulum (NCIT) @@ -15620,8 +13752,7 @@ - sternoclavicular joint (NCIT) - NCIT:C33615 + sternoclavicular joint (NCIT) @@ -15630,8 +13761,7 @@ - sternocleidomastoid (NCIT) - NCIT:C33616 + sternocleidomastoid (NCIT) @@ -15640,8 +13770,7 @@ - sternocostal joint (NCIT) - NCIT:C33617 + sternocostal joint (NCIT) @@ -15650,8 +13779,7 @@ - stratified columnar epithelium (NCIT) - NCIT:C33620 + stratified columnar epithelium (NCIT) @@ -15660,8 +13788,7 @@ - stratified cuboidal epithelium (NCIT) - NCIT:C33621 + stratified cuboidal epithelium (NCIT) @@ -15670,8 +13797,7 @@ - multilaminar epithelium (NCIT) - NCIT:C33622 + multilaminar epithelium (NCIT) @@ -15680,8 +13806,7 @@ - stratum basale of epidermis (NCIT) - NCIT:C33623 + stratum basale of epidermis (NCIT) @@ -15690,8 +13815,7 @@ - stratum lucidum of epidermis (NCIT) - NCIT:C33624 + stratum lucidum of epidermis (NCIT) @@ -15700,8 +13824,7 @@ - stratum corneum of epidermis (NCIT) - NCIT:C33625 + stratum corneum of epidermis (NCIT) @@ -15710,8 +13833,7 @@ - stratum granulosum of epidermis (NCIT) - NCIT:C33627 + stratum granulosum of epidermis (NCIT) @@ -15720,20 +13842,7 @@ - stratum intermedium of tooth (NCIT) - NCIT:C33628 - - - - - - - - - - hippocampus stratum lucidum (NCIT) - stratum lucidum of epidermis (NCIT) - NCIT:C33629 + stratum intermedium of tooth (NCIT) @@ -15742,8 +13851,7 @@ - papillary layer of dermis (NCIT) - NCIT:C33630 + papillary layer of dermis (NCIT) @@ -15752,8 +13860,7 @@ - reticular layer of dermis (NCIT) - NCIT:C33631 + reticular layer of dermis (NCIT) @@ -15762,8 +13869,7 @@ - striated border microvillus layer (NCIT) - NCIT:C33634 + striated border microvillus layer (NCIT) @@ -15772,8 +13878,7 @@ - striated duct of salivary gland (NCIT) - NCIT:C33635 + striated duct of salivary gland (NCIT) @@ -15782,8 +13887,7 @@ - ovary stroma (NCIT) - NCIT:C33638 + ovary stroma (NCIT) @@ -15792,8 +13896,7 @@ - stylopharyngeus muscle (NCIT) - NCIT:C33639 + stylopharyngeus muscle (NCIT) @@ -15802,8 +13905,7 @@ - subarachnoid cistern (NCIT) - NCIT:C33640 + subarachnoid cistern (NCIT) @@ -15812,8 +13914,7 @@ - lens anterior epithelium (NCIT) - NCIT:C33641 + lens anterior epithelium (NCIT) @@ -15822,8 +13923,7 @@ - subcapsular sinus of lymph node (NCIT) - NCIT:C33642 + subcapsular sinus of lymph node (NCIT) @@ -15832,8 +13932,7 @@ - subclavian artery (NCIT) - NCIT:C33643 + subclavian artery (NCIT) @@ -15842,8 +13941,7 @@ - subclavius (NCIT) - NCIT:C33644 + subclavius (NCIT) @@ -15852,8 +13950,7 @@ - hypodermis (NCIT) - NCIT:C33645 + hypodermis (NCIT) @@ -15862,8 +13959,7 @@ - subiculum (NCIT) - NCIT:C33648 + subiculum (NCIT) @@ -15872,8 +13968,7 @@ - submandibular duct (NCIT) - NCIT:C33649 + submandibular duct (NCIT) @@ -15882,8 +13977,7 @@ - subscapular artery (NCIT) - NCIT:C33650 + subscapular artery (NCIT) @@ -15892,8 +13986,7 @@ - subscapularis muscle (NCIT) - NCIT:C33651 + subscapularis muscle (NCIT) @@ -15902,8 +13995,7 @@ - substantia propria of sclera (NCIT) - NCIT:C33652 + substantia propria of sclera (NCIT) @@ -15912,8 +14004,7 @@ - subtalar joint (NCIT) - NCIT:C33653 + subtalar joint (NCIT) @@ -15922,8 +14013,7 @@ - sulcus limitans of fourth ventricle (NCIT) - NCIT:C33656 + sulcus limitans of fourth ventricle (NCIT) @@ -15932,8 +14022,7 @@ - superficial cervical lymph node (NCIT) - NCIT:C33659 + superficial cervical lymph node (NCIT) @@ -15942,8 +14031,7 @@ - superficial fascia (NCIT) - NCIT:C33660 + superficial fascia (NCIT) @@ -15952,8 +14040,7 @@ - superficial lymphatic vessel (NCIT) - NCIT:C33663 + superficial lymphatic vessel (NCIT) @@ -15962,8 +14049,7 @@ - superficial middle cerebral vein (NCIT) - NCIT:C33664 + superficial middle cerebral vein (NCIT) @@ -15972,8 +14058,7 @@ - superficial palmar arch (NCIT) - NCIT:C33665 + superficial palmar arch (NCIT) @@ -15982,8 +14067,7 @@ - superficial vein (NCIT) - NCIT:C33666 + superficial vein (NCIT) @@ -15992,8 +14076,7 @@ - superior cerebellar artery (NCIT) - NCIT:C33669 + superior cerebellar artery (NCIT) @@ -16002,8 +14085,7 @@ - superior pharyngeal constrictor (NCIT) - NCIT:C33672 + superior pharyngeal constrictor (NCIT) @@ -16012,8 +14094,7 @@ - superior frontal gyrus (NCIT) - NCIT:C33674 + superior frontal gyrus (NCIT) @@ -16022,8 +14103,7 @@ - superior frontal sulcus (NCIT) - NCIT:C33676 + superior frontal sulcus (NCIT) @@ -16032,8 +14112,7 @@ - superior rectal artery (NCIT) - NCIT:C33677 + superior rectal artery (NCIT) @@ -16042,8 +14121,7 @@ - superior hypophysial artery (NCIT) - NCIT:C33678 + superior hypophysial artery (NCIT) @@ -16052,8 +14130,7 @@ - superior intercostal vein (NCIT) - NCIT:C33680 + superior intercostal vein (NCIT) @@ -16062,8 +14139,7 @@ - superior mediastinum (NCIT) - NCIT:C33684 + superior mediastinum (NCIT) @@ -16072,8 +14148,7 @@ - superior mesenteric artery (NCIT) - NCIT:C33685 + superior mesenteric artery (NCIT) @@ -16082,8 +14157,7 @@ - superior mesenteric vein (NCIT) - NCIT:C33687 + superior mesenteric vein (NCIT) @@ -16092,8 +14166,7 @@ - superior oblique extraocular muscle (NCIT) - NCIT:C33688 + superior oblique extraocular muscle (NCIT) @@ -16102,8 +14175,7 @@ - superior parathyroid gland (NCIT) - NCIT:C33691 + superior parathyroid gland (NCIT) @@ -16112,8 +14184,7 @@ - superior rectus extraocular muscle (NCIT) - NCIT:C33694 + superior rectus extraocular muscle (NCIT) @@ -16122,8 +14193,7 @@ - anterior semicircular canal (NCIT) - NCIT:C33695 + anterior semicircular canal (NCIT) @@ -16132,8 +14202,7 @@ - superior temporal gyrus (NCIT) - NCIT:C33698 + superior temporal gyrus (NCIT) @@ -16142,8 +14211,7 @@ - superior temporal sulcus (NCIT) - NCIT:C33700 + superior temporal sulcus (NCIT) @@ -16152,8 +14220,7 @@ - superior thoracic artery (NCIT) - NCIT:C33701 + superior thoracic artery (NCIT) @@ -16162,8 +14229,7 @@ - superior vestibular nucleus (NCIT) - NCIT:C33703 + superior vestibular nucleus (NCIT) @@ -16172,8 +14238,7 @@ - supramarginal gyrus (NCIT) - NCIT:C33706 + supramarginal gyrus (NCIT) @@ -16182,8 +14247,7 @@ - supraorbital vein (NCIT) - NCIT:C33707 + supraorbital vein (NCIT) @@ -16192,8 +14256,7 @@ - suprarenal artery (NCIT) - NCIT:C33708 + suprarenal artery (NCIT) @@ -16202,8 +14265,7 @@ - supraspinatus muscle (NCIT) - NCIT:C33709 + supraspinatus muscle (NCIT) @@ -16212,8 +14274,7 @@ - sweat gland (NCIT) - NCIT:C33712 + sweat gland (NCIT) @@ -16222,8 +14283,7 @@ - Sylvian cistern (NCIT) - NCIT:C33714 + Sylvian cistern (NCIT) @@ -16232,8 +14292,7 @@ - synarthrosis (NCIT) - NCIT:C33716 + synarthrosis (NCIT) @@ -16242,8 +14301,7 @@ - synovial bursa (NCIT) - NCIT:C33717 + synovial bursa (NCIT) @@ -16252,8 +14310,7 @@ - synovial fluid (NCIT) - NCIT:C33718 + synovial fluid (NCIT) @@ -16262,8 +14319,7 @@ - systemic vein (NCIT) - NCIT:C33719 + systemic vein (NCIT) @@ -16272,8 +14328,7 @@ - thoracic vertebra 1 (NCIT) - NCIT:C33720 + thoracic vertebra 1 (NCIT) @@ -16282,8 +14337,7 @@ - thoracic vertebra 10 (NCIT) - NCIT:C33721 + thoracic vertebra 10 (NCIT) @@ -16292,8 +14346,7 @@ - thoracic vertebra 11 (NCIT) - NCIT:C33722 + thoracic vertebra 11 (NCIT) @@ -16302,8 +14355,7 @@ - thoracic vertebra 12 (NCIT) - NCIT:C33723 + thoracic vertebra 12 (NCIT) @@ -16312,8 +14364,7 @@ - thoracic vertebra 2 (NCIT) - NCIT:C33724 + thoracic vertebra 2 (NCIT) @@ -16322,8 +14373,7 @@ - thoracic vertebra 3 (NCIT) - NCIT:C33725 + thoracic vertebra 3 (NCIT) @@ -16332,8 +14382,7 @@ - thoracic vertebra 4 (NCIT) - NCIT:C33726 + thoracic vertebra 4 (NCIT) @@ -16342,8 +14391,7 @@ - thoracic vertebra 5 (NCIT) - NCIT:C33727 + thoracic vertebra 5 (NCIT) @@ -16352,8 +14400,7 @@ - thoracic vertebra 6 (NCIT) - NCIT:C33728 + thoracic vertebra 6 (NCIT) @@ -16362,8 +14409,7 @@ - thoracic vertebra 7 (NCIT) - NCIT:C33729 + thoracic vertebra 7 (NCIT) @@ -16372,8 +14418,7 @@ - thoracic vertebra 8 (NCIT) - NCIT:C33730 + thoracic vertebra 8 (NCIT) @@ -16382,8 +14427,7 @@ - thoracic vertebra 9 (NCIT) - NCIT:C33731 + thoracic vertebra 9 (NCIT) @@ -16392,8 +14436,7 @@ - cauda epididymis (NCIT) - NCIT:C33732 + cauda epididymis (NCIT) @@ -16402,8 +14445,7 @@ - intertarsal joint (NCIT) - NCIT:C33735 + intertarsal joint (NCIT) @@ -16412,8 +14454,7 @@ - eyelid tarsus (NCIT) - NCIT:C33736 + eyelid tarsus (NCIT) @@ -16422,8 +14463,7 @@ - gustatory pore (NCIT) - NCIT:C33738 + gustatory pore (NCIT) @@ -16432,8 +14472,7 @@ - secretion of lacrimal gland (NCIT) - NCIT:C33739 + secretion of lacrimal gland (NCIT) @@ -16442,8 +14481,7 @@ - tectorial membrane of cochlea (NCIT) - NCIT:C33740 + tectorial membrane of cochlea (NCIT) @@ -16452,8 +14490,7 @@ - temporal artery (NCIT) - NCIT:C33741 + temporal artery (NCIT) @@ -16462,8 +14499,7 @@ - temporal fossa (NCIT) - NCIT:C33742 + temporal fossa (NCIT) @@ -16472,8 +14508,7 @@ - temporalis muscle (NCIT) - NCIT:C33743 + temporalis muscle (NCIT) @@ -16482,8 +14517,7 @@ - temporal sulcus (NCIT) - NCIT:C33744 + temporal sulcus (NCIT) @@ -16492,8 +14526,7 @@ - deciduous tooth (NCIT) - NCIT:C33745 + deciduous tooth (NCIT) @@ -16502,8 +14535,7 @@ - retromandibular vein (NCIT) - NCIT:C33746 + retromandibular vein (NCIT) @@ -16512,8 +14544,7 @@ - tensor tympani (NCIT) - NCIT:C33748 + tensor tympani (NCIT) @@ -16522,8 +14553,7 @@ - tentorium cerebelli (NCIT) - NCIT:C33749 + tentorium cerebelli (NCIT) @@ -16532,8 +14562,7 @@ - teres major muscle (NCIT) - NCIT:C33750 + teres major muscle (NCIT) @@ -16542,8 +14571,7 @@ - teres minor muscle (NCIT) - NCIT:C33751 + teres minor muscle (NCIT) @@ -16552,8 +14580,7 @@ - teres muscle (NCIT) - NCIT:C33752 + teres muscle (NCIT) @@ -16562,8 +14589,7 @@ - terminal bronchiole (NCIT) - NCIT:C33754 + terminal bronchiole (NCIT) @@ -16572,8 +14598,7 @@ - terminal bronchiole epithelium (NCIT) - NCIT:C33755 + terminal bronchiole epithelium (NCIT) @@ -16582,8 +14607,7 @@ - hindlimb stylopod (NCIT) - NCIT:C33763 + hindlimb stylopod (NCIT) @@ -16592,8 +14616,7 @@ - thoracic aorta (NCIT) - NCIT:C33766 + thoracic aorta (NCIT) @@ -16602,8 +14625,7 @@ - thoracic duct (NCIT) - NCIT:C33768 + thoracic duct (NCIT) @@ -16612,8 +14634,7 @@ - thoracic lymph node (NCIT) - NCIT:C33769 + thoracic lymph node (NCIT) @@ -16622,8 +14643,7 @@ - capsule of thymus (NCIT) - NCIT:C33770 + capsule of thymus (NCIT) @@ -16632,8 +14652,7 @@ - thymus lobule (NCIT) - NCIT:C33772 + thymus lobule (NCIT) @@ -16642,8 +14661,7 @@ - thymus trabecula (NCIT) - NCIT:C33773 + thymus trabecula (NCIT) @@ -16652,8 +14670,7 @@ - cortex of thymus (NCIT) - NCIT:C33774 + cortex of thymus (NCIT) @@ -16662,8 +14679,7 @@ - medulla of thymus (NCIT) - NCIT:C33775 + medulla of thymus (NCIT) @@ -16672,8 +14688,7 @@ - thyro-arytenoid (NCIT) - NCIT:C33776 + thyro-arytenoid (NCIT) @@ -16682,8 +14697,7 @@ - thyroepiglottic ligament (NCIT) - NCIT:C33777 + thyroepiglottic ligament (NCIT) @@ -16692,8 +14706,7 @@ - thyroepiglotticus muscle (NCIT) - NCIT:C33778 + thyroepiglotticus muscle (NCIT) @@ -16702,8 +14715,7 @@ - thyrohyoid ligament (NCIT) - NCIT:C33779 + thyrohyoid ligament (NCIT) @@ -16712,8 +14724,7 @@ - thyroid cartilage (NCIT) - NCIT:C33780 + thyroid cartilage (NCIT) @@ -16722,8 +14733,7 @@ - capsule of thyroid gland (NCIT) - NCIT:C33781 + capsule of thyroid gland (NCIT) @@ -16732,8 +14742,7 @@ - thyroid follicle (NCIT) - NCIT:C33782 + thyroid follicle (NCIT) @@ -16742,8 +14751,7 @@ - lobe of thyroid gland (NCIT) - NCIT:C33784 + lobe of thyroid gland (NCIT) @@ -16752,8 +14760,7 @@ - tibial vein (NCIT) - NCIT:C33787 + tibial vein (NCIT) @@ -16762,8 +14769,7 @@ - pedal digit (NCIT) - NCIT:C33788 + pedal digit (NCIT) @@ -16772,8 +14778,7 @@ - interphalangeal joint of pes (NCIT) - NCIT:C33789 + interphalangeal joint of pes (NCIT) @@ -16782,8 +14787,7 @@ - nail of pedal digit (NCIT) - NCIT:C33790 + nail of pedal digit (NCIT) @@ -16792,8 +14796,7 @@ - tonsil crypt (NCIT) - NCIT:C33791 + tonsil crypt (NCIT) @@ -16802,8 +14805,7 @@ - odontoid tissue (NCIT) - NCIT:C33794 + odontoid tissue (NCIT) @@ -16812,8 +14814,7 @@ - epithelium of trachea (NCIT) - NCIT:C33797 + epithelium of trachea (NCIT) @@ -16822,8 +14823,7 @@ - cuneate fasciculus of spinal cord (NCIT) - NCIT:C33798 + cuneate fasciculus of spinal cord (NCIT) @@ -16832,8 +14832,7 @@ - gracile fasciculus (NCIT) - NCIT:C33799 + gracile fasciculus (NCIT) @@ -16842,8 +14841,7 @@ - dorsolateral fasciculus of medulla (NCIT) - NCIT:C33800 + dorsolateral fasciculus of medulla (NCIT) @@ -16852,8 +14850,7 @@ - tragus (NCIT) - NCIT:C33801 + tragus (NCIT) @@ -16862,8 +14859,7 @@ - transverse fold of rectum (NCIT) - NCIT:C33807 + transverse fold of rectum (NCIT) @@ -16872,8 +14868,7 @@ - trapezius muscle (NCIT) - NCIT:C33809 + trapezius muscle (NCIT) @@ -16882,8 +14877,7 @@ - urogenital diaphragm (NCIT) - NCIT:C33810 + urogenital diaphragm (NCIT) @@ -16892,8 +14886,7 @@ - triangular part of inferior frontal gyrus (NCIT) - NCIT:C33811 + triangular part of inferior frontal gyrus (NCIT) @@ -16902,8 +14895,7 @@ - triceps brachii (NCIT) - NCIT:C33812 + triceps brachii (NCIT) @@ -16912,8 +14904,7 @@ - olfactory trigone (NCIT) - NCIT:C33813 + olfactory trigone (NCIT) @@ -16922,8 +14913,7 @@ - trochanter (NCIT) - NCIT:C33814 + trochanter (NCIT) @@ -16932,8 +14922,7 @@ - trunk (NCIT) - NCIT:C33816 + trunk (NCIT) @@ -16942,8 +14931,7 @@ - tuber cinereum (NCIT) - NCIT:C33817 + tuber cinereum (NCIT) @@ -16952,8 +14940,7 @@ - tunica adventitia of blood vessel (NCIT) - NCIT:C33818 + tunica adventitia of blood vessel (NCIT) @@ -16962,8 +14949,7 @@ - tunica albuginea of testis (NCIT) - NCIT:C33819 + tunica albuginea of testis (NCIT) @@ -16972,8 +14958,7 @@ - tunica intima (NCIT) - NCIT:C33820 + tunica intima (NCIT) @@ -16982,8 +14967,7 @@ - tunica media (NCIT) - NCIT:C33821 + tunica media (NCIT) @@ -16992,8 +14976,7 @@ - tunica vaginalis testis (NCIT) - NCIT:C33822 + tunica vaginalis testis (NCIT) @@ -17002,8 +14985,7 @@ - branch of ulnar artery (NCIT) - NCIT:C33826 + branch of ulnar artery (NCIT) @@ -17012,8 +14994,7 @@ - umbilical artery (NCIT) - NCIT:C33827 + umbilical artery (NCIT) @@ -17022,8 +15003,7 @@ - umbilical vein (NCIT) - NCIT:C33830 + umbilical vein (NCIT) @@ -17032,8 +15012,7 @@ - uncus of parahippocampal gyrus (NCIT) - NCIT:C33831 + uncus of parahippocampal gyrus (NCIT) @@ -17042,8 +15021,7 @@ - unmyelinated nerve fiber (NCIT) - NCIT:C33835 + unmyelinated nerve fiber (NCIT) @@ -17052,8 +15030,7 @@ - upper esophageal sphincter (NCIT) - NCIT:C33836 + upper esophageal sphincter (NCIT) @@ -17062,8 +15039,7 @@ - upper digestive tract (NCIT) - NCIT:C33837 + upper digestive tract (NCIT) @@ -17072,8 +15048,7 @@ - Bowman's space (NCIT) - NCIT:C33840 + Bowman's space (NCIT) @@ -17082,8 +15057,7 @@ - endometrial gland (NCIT) - NCIT:C33842 + endometrial gland (NCIT) @@ -17092,8 +15066,7 @@ - uterovesical pouch (NCIT) - NCIT:C33843 + uterovesical pouch (NCIT) @@ -17102,8 +15075,7 @@ - utricle of membranous labyrinth (NCIT) - NCIT:C33844 + utricle of membranous labyrinth (NCIT) @@ -17112,8 +15084,7 @@ - utriculosaccular duct (NCIT) - NCIT:C33845 + utriculosaccular duct (NCIT) @@ -17122,8 +15093,7 @@ - fornix of vagina (NCIT) - NCIT:C33848 + fornix of vagina (NCIT) @@ -17132,8 +15102,7 @@ - cusp of cardiac valve (NCIT) - NCIT:C33849 + cusp of cardiac valve (NCIT) @@ -17142,8 +15111,7 @@ - vasa vasorum (NCIT) - NCIT:C33852 + vasa vasorum (NCIT) @@ -17152,8 +15120,7 @@ - blood vessel smooth muscle (NCIT) - NCIT:C33853 + blood vessel smooth muscle (NCIT) @@ -17162,8 +15129,7 @@ - vascular system (NCIT) - NCIT:C33854 + vascular system (NCIT) @@ -17172,8 +15138,7 @@ - great cerebral vein (NCIT) - NCIT:C33855 + great cerebral vein (NCIT) @@ -17182,8 +15147,7 @@ - venous system (NCIT) - NCIT:C33858 + venous system (NCIT) @@ -17192,8 +15156,7 @@ - ventral horn of spinal cord (NCIT) - NCIT:C33859 + ventral horn of spinal cord (NCIT) @@ -17202,8 +15165,7 @@ - ventral root of spinal cord (NCIT) - NCIT:C33860 + ventral root of spinal cord (NCIT) @@ -17212,8 +15174,7 @@ - ventral anterior nucleus of thalamus (NCIT) - NCIT:C33861 + ventral anterior nucleus of thalamus (NCIT) @@ -17222,8 +15183,7 @@ - ventral lateral nucleus of thalamus (NCIT) - NCIT:C33862 + ventral lateral nucleus of thalamus (NCIT) @@ -17232,8 +15192,7 @@ - ventral posterolateral nucleus (NCIT) - NCIT:C33863 + ventral posterolateral nucleus (NCIT) @@ -17242,8 +15201,7 @@ - ventral posteromedial nucleus of thalamus (NCIT) - NCIT:C33864 + ventral posteromedial nucleus of thalamus (NCIT) @@ -17252,8 +15210,7 @@ - cerebellar vermis (NCIT) - NCIT:C33866 + cerebellar vermis (NCIT) @@ -17262,8 +15219,7 @@ - branch of vertebral artery (NCIT) - NCIT:C33867 + branch of vertebral artery (NCIT) @@ -17272,8 +15228,7 @@ - vertebral canal (NCIT) - NCIT:C33869 + vertebral canal (NCIT) @@ -17282,8 +15237,7 @@ - vestibular ganglion (NCIT) - NCIT:C33870 + vestibular ganglion (NCIT) @@ -17292,8 +15246,7 @@ - vestibular labyrinth (NCIT) - NCIT:C33871 + vestibular labyrinth (NCIT) @@ -17302,8 +15255,7 @@ - osseus labyrinth vestibule (NCIT) - NCIT:C33873 + osseus labyrinth vestibule (NCIT) @@ -17312,8 +15264,7 @@ - intestinal villus (NCIT) - NCIT:C33874 + intestinal villus (NCIT) @@ -17322,8 +15273,7 @@ - glomerular visceral epithelium (NCIT) - NCIT:C33879 + glomerular visceral epithelium (NCIT) @@ -17332,8 +15282,7 @@ - visceral pleura (NCIT) - NCIT:C33881 + visceral pleura (NCIT) @@ -17342,8 +15291,7 @@ - vitreous body (NCIT) - NCIT:C33884 + vitreous body (NCIT) @@ -17352,8 +15300,7 @@ - vitreous chamber of eyeball (NCIT) - NCIT:C33885 + vitreous chamber of eyeball (NCIT) @@ -17362,8 +15309,7 @@ - vocalis muscle (NCIT) - NCIT:C33886 + vocalis muscle (NCIT) @@ -17372,8 +15318,7 @@ - vomer (NCIT) - NCIT:C33888 + vomer (NCIT) @@ -17382,8 +15327,7 @@ - white adipose tissue (NCIT) - NCIT:C33889 + white adipose tissue (NCIT) @@ -17392,8 +15336,7 @@ - spinal cord ventral commissure (NCIT) - NCIT:C33890 + spinal cord ventral commissure (NCIT) @@ -17402,8 +15345,7 @@ - white matter (NCIT) - NCIT:C33892 + white matter (NCIT) @@ -17412,8 +15354,7 @@ - white matter of spinal cord (NCIT) - NCIT:C33893 + white matter of spinal cord (NCIT) @@ -17422,8 +15363,7 @@ - wrist joint (NCIT) - NCIT:C33894 + wrist joint (NCIT) @@ -17432,8 +15372,7 @@ - xiphoid process (NCIT) - NCIT:C33895 + xiphoid process (NCIT) @@ -17442,8 +15381,7 @@ - zona pellucida (NCIT) - NCIT:C33896 + zona pellucida (NCIT) @@ -17452,8 +15390,7 @@ - zygomatic arch (NCIT) - NCIT:C33897 + zygomatic arch (NCIT) @@ -17462,8 +15399,7 @@ - zygomatic fossa (NCIT) - NCIT:C33898 + zygomatic fossa (NCIT) @@ -17472,8 +15408,7 @@ - syncytiotrophoblast (NCIT) - NCIT:C33918 + syncytiotrophoblast (NCIT) @@ -17482,8 +15417,7 @@ - cytotrophoblast (NCIT) - NCIT:C33919 + cytotrophoblast (NCIT) @@ -17492,8 +15426,7 @@ - left colon (NCIT) - NCIT:C33929 + left colon (NCIT) @@ -17502,8 +15435,7 @@ - regional part of spinal cord (NCIT) - NCIT:C33969 + regional part of spinal cord (NCIT) @@ -17512,8 +15444,7 @@ - lower back (NCIT) - NCIT:C34004 + lower back (NCIT) @@ -17522,8 +15453,7 @@ - right kidney (NCIT) - NCIT:C34005 + right kidney (NCIT) @@ -17532,8 +15462,7 @@ - left kidney (NCIT) - NCIT:C34006 + left kidney (NCIT) @@ -17542,8 +15471,7 @@ - anatomical cavity (NCIT) - NCIT:C34007 + anatomical cavity (NCIT) @@ -17552,8 +15480,7 @@ - round ligament of liver (NCIT) - NCIT:C34008 + round ligament of liver (NCIT) @@ -17562,8 +15489,7 @@ - round ligament of uterus (NCIT) - NCIT:C34009 + round ligament of uterus (NCIT) @@ -17572,8 +15498,7 @@ - lobe of lung (NCIT) - NCIT:C34021 + lobe of lung (NCIT) @@ -17582,8 +15507,7 @@ - anatomical surface (NCIT) - NCIT:C34022 + anatomical surface (NCIT) @@ -17592,8 +15516,7 @@ - section of aorta (NCIT) - NCIT:C34027 + section of aorta (NCIT) @@ -17602,8 +15525,7 @@ - extraembryonic structure (NCIT) - NCIT:C34055 + extraembryonic structure (NCIT) @@ -17612,8 +15534,7 @@ - gastrula (NCIT) - NCIT:C34057 + gastrula (NCIT) @@ -17622,8 +15543,7 @@ - gastrula (NCIT) - NCIT:C34058 + gastrula (NCIT) @@ -17632,8 +15552,7 @@ - secretion of exocrine gland (NCIT) - NCIT:C34062 + secretion of exocrine gland (NCIT) @@ -17642,8 +15561,7 @@ - subdivision of skeletal system (NCIT) - NCIT:C34076 + subdivision of skeletal system (NCIT) @@ -17652,8 +15570,7 @@ - digestive tract (NCIT) - NCIT:C34082 + digestive tract (NCIT) @@ -17662,8 +15579,7 @@ - allantois (NCIT) - NCIT:C34101 + allantois (NCIT) @@ -17672,8 +15588,7 @@ - amniotic cavity (NCIT) - NCIT:C34102 + amniotic cavity (NCIT) @@ -17682,8 +15597,7 @@ - anal membrane (NCIT) - NCIT:C34105 + anal membrane (NCIT) @@ -17692,8 +15606,7 @@ - angioblastic cord (NCIT) - NCIT:C34106 + angioblastic cord (NCIT) @@ -17702,8 +15615,7 @@ - anterior cardinal vein (NCIT) - NCIT:C34108 + anterior cardinal vein (NCIT) @@ -17712,8 +15624,7 @@ - apical ectodermal ridge (NCIT) - NCIT:C34109 + apical ectodermal ridge (NCIT) @@ -17722,8 +15633,7 @@ - auditory hillocks (NCIT) - NCIT:C34110 + auditory hillocks (NCIT) @@ -17732,8 +15642,7 @@ - neural tube basal plate (NCIT) - NCIT:C34111 + neural tube basal plate (NCIT) @@ -17742,8 +15651,7 @@ - bilaminar disc (NCIT) - NCIT:C34112 + bilaminar disc (NCIT) @@ -17752,8 +15660,7 @@ - blood island (NCIT) - NCIT:C34113 + blood island (NCIT) @@ -17762,8 +15669,7 @@ - bulbus cordis (NCIT) - NCIT:C34114 + bulbus cordis (NCIT) @@ -17772,8 +15678,7 @@ - cardiac jelly (NCIT) - NCIT:C34115 + cardiac jelly (NCIT) @@ -17782,8 +15687,7 @@ - cardinal vein (NCIT) - NCIT:C34116 + cardinal vein (NCIT) @@ -17792,8 +15696,7 @@ - central tendon of diaphragm (NCIT) - NCIT:C34119 + central tendon of diaphragm (NCIT) @@ -17802,8 +15705,7 @@ - cartilaginous neurocranium (NCIT) - NCIT:C34121 + cartilaginous neurocranium (NCIT) @@ -17812,8 +15714,7 @@ - chorion membrane (NCIT) - NCIT:C34122 + chorion membrane (NCIT) @@ -17822,8 +15723,7 @@ - chorionic plate (NCIT) - NCIT:C34123 + chorionic plate (NCIT) @@ -17832,8 +15732,7 @@ - chorion membrane (NCIT) - NCIT:C34124 + chorion membrane (NCIT) @@ -17842,8 +15741,7 @@ - chorionic villus (NCIT) - NCIT:C34125 + chorionic villus (NCIT) @@ -17852,8 +15750,7 @@ - upper part of cisterna chyli (NCIT) - NCIT:C34126 + upper part of cisterna chyli (NCIT) @@ -17862,8 +15759,7 @@ - cloaca (NCIT) - NCIT:C34127 + cloaca (NCIT) @@ -17872,8 +15768,7 @@ - cloacal membrane (NCIT) - NCIT:C34128 + cloacal membrane (NCIT) @@ -17882,8 +15777,7 @@ - cloacal sphincter (NCIT) - NCIT:C34129 + cloacal sphincter (NCIT) @@ -17892,8 +15786,7 @@ - common cardinal vein (NCIT) - NCIT:C34130 + common cardinal vein (NCIT) @@ -17902,8 +15795,7 @@ - conceptus (NCIT) - NCIT:C34131 + conceptus (NCIT) @@ -17912,8 +15804,7 @@ - connecting stalk (NCIT) - NCIT:C34132 + connecting stalk (NCIT) @@ -17922,8 +15813,7 @@ - ovary sex cord (NCIT) - NCIT:C34134 + ovary sex cord (NCIT) @@ -17932,8 +15822,7 @@ - placental cotyledon (NCIT) - NCIT:C34135 + placental cotyledon (NCIT) @@ -17942,8 +15831,7 @@ - dental follicle (NCIT) - NCIT:C34138 + dental follicle (NCIT) @@ -17952,8 +15840,7 @@ - dermomyotome (NCIT) - NCIT:C34140 + dermomyotome (NCIT) @@ -17962,8 +15849,7 @@ - digit mesenchyme (NCIT) - NCIT:C34141 + digit mesenchyme (NCIT) @@ -17972,8 +15858,7 @@ - dorsal mesogastrium (NCIT) - NCIT:C34142 + dorsal mesogastrium (NCIT) @@ -17982,8 +15867,7 @@ - ductus venosus (NCIT) - NCIT:C34143 + ductus venosus (NCIT) @@ -17992,8 +15876,7 @@ - embryonic cardiovascular system (NCIT) - NCIT:C34148 + embryonic cardiovascular system (NCIT) @@ -18002,8 +15885,7 @@ - blastodisc (NCIT) - NCIT:C34150 + blastodisc (NCIT) @@ -18012,8 +15894,7 @@ - future cardiac ventricle (NCIT) - NCIT:C34160 + future cardiac ventricle (NCIT) @@ -18022,8 +15903,7 @@ - heart tube (NCIT) - NCIT:C34161 + heart tube (NCIT) @@ -18032,8 +15912,7 @@ - inner cell mass derived epiblast (NCIT) - NCIT:C34164 + inner cell mass derived epiblast (NCIT) @@ -18042,8 +15921,7 @@ - extraembryonic coelomic cavity (NCIT) - NCIT:C34165 + extraembryonic coelomic cavity (NCIT) @@ -18052,8 +15930,7 @@ - pharyngeal pouch 5 (NCIT) - NCIT:C34174 + pharyngeal pouch 5 (NCIT) @@ -18062,8 +15939,7 @@ - pharyngeal arch 1 (NCIT) - NCIT:C34175 + pharyngeal arch 1 (NCIT) @@ -18072,8 +15948,7 @@ - pharyngeal pouch 1 (NCIT) - NCIT:C34176 + pharyngeal pouch 1 (NCIT) @@ -18082,8 +15957,7 @@ - embryonic footplate (NCIT) - NCIT:C34177 + embryonic footplate (NCIT) @@ -18092,8 +15966,7 @@ - foramen primum (NCIT) - NCIT:C34178 + foramen primum (NCIT) @@ -18102,8 +15975,7 @@ - foramen secundum (NCIT) - NCIT:C34179 + foramen secundum (NCIT) @@ -18112,8 +15984,7 @@ - foregut (NCIT) - NCIT:C34180 + foregut (NCIT) @@ -18122,8 +15993,7 @@ - pharyngeal pouch 4 (NCIT) - NCIT:C34181 + pharyngeal pouch 4 (NCIT) @@ -18132,8 +16002,7 @@ - frontonasal prominence (NCIT) - NCIT:C34182 + frontonasal prominence (NCIT) @@ -18142,8 +16011,7 @@ - sex cord (NCIT) - NCIT:C34183 + sex cord (NCIT) @@ -18152,8 +16020,7 @@ - gonadal ridge (NCIT) - NCIT:C34184 + gonadal ridge (NCIT) @@ -18162,8 +16029,7 @@ - embryonic handplate (NCIT) - NCIT:C34185 + embryonic handplate (NCIT) @@ -18172,8 +16038,7 @@ - hepatic diverticulum (NCIT) - NCIT:C34187 + hepatic diverticulum (NCIT) @@ -18182,8 +16047,7 @@ - hindgut (NCIT) - NCIT:C34188 + hindgut (NCIT) @@ -18192,8 +16056,7 @@ - hypoblast (generic) (NCIT) - NCIT:C34190 + hypoblast (generic) (NCIT) @@ -18202,8 +16065,7 @@ - iliac lymph sac (NCIT) - NCIT:C34191 + iliac lymph sac (NCIT) @@ -18212,8 +16074,7 @@ - indifferent gonad (NCIT) - NCIT:C34192 + indifferent gonad (NCIT) @@ -18222,8 +16083,7 @@ - intermediate mesoderm (NCIT) - NCIT:C34193 + intermediate mesoderm (NCIT) @@ -18232,8 +16092,7 @@ - intraembryonic coelom (NCIT) - NCIT:C34195 + intraembryonic coelom (NCIT) @@ -18242,8 +16101,7 @@ - jugular lymph sac (NCIT) - NCIT:C34196 + jugular lymph sac (NCIT) @@ -18252,8 +16110,7 @@ - laryngotracheal groove (NCIT) - NCIT:C34198 + laryngotracheal groove (NCIT) @@ -18262,8 +16119,7 @@ - lateral plate mesoderm (NCIT) - NCIT:C34199 + lateral plate mesoderm (NCIT) @@ -18272,8 +16128,7 @@ - lens pit (NCIT) - NCIT:C34201 + lens pit (NCIT) @@ -18282,8 +16137,7 @@ - lens placode (NCIT) - NCIT:C34202 + lens placode (NCIT) @@ -18292,8 +16146,7 @@ - limb bud (NCIT) - NCIT:C34203 + limb bud (NCIT) @@ -18302,8 +16155,7 @@ - mandibular prominence (NCIT) - NCIT:C34204 + mandibular prominence (NCIT) @@ -18312,8 +16164,7 @@ - maxillary artery (NCIT) - NCIT:C34205 + maxillary artery (NCIT) @@ -18322,8 +16173,7 @@ - maxillary prominence (NCIT) - NCIT:C34206 + maxillary prominence (NCIT) @@ -18332,8 +16182,7 @@ - ureteric bud (NCIT) - NCIT:C34207 + ureteric bud (NCIT) @@ -18342,8 +16191,7 @@ - metanephros (NCIT) - NCIT:C34209 + metanephros (NCIT) @@ -18352,8 +16200,7 @@ - midgut (NCIT) - NCIT:C34210 + midgut (NCIT) @@ -18362,8 +16209,7 @@ - midgut loop (NCIT) - NCIT:C34211 + midgut loop (NCIT) @@ -18372,8 +16218,7 @@ - morula (NCIT) - NCIT:C34212 + morula (NCIT) @@ -18382,8 +16227,7 @@ - mucoid tissue (NCIT) - NCIT:C34213 + mucoid tissue (NCIT) @@ -18392,8 +16236,7 @@ - myotome (NCIT) - NCIT:C34214 + myotome (NCIT) @@ -18402,8 +16245,7 @@ - nail plate (NCIT) - NCIT:C34216 + nail plate (NCIT) @@ -18412,8 +16254,7 @@ - nasolacrimal groove (NCIT) - NCIT:C34218 + nasolacrimal groove (NCIT) @@ -18422,8 +16263,7 @@ - nephrogenic cord (NCIT) - NCIT:C34219 + nephrogenic cord (NCIT) @@ -18432,8 +16272,7 @@ - vertebral canal (NCIT) - NCIT:C34221 + vertebral canal (NCIT) @@ -18442,8 +16281,7 @@ - neural crest (NCIT) - NCIT:C34222 + neural crest (NCIT) @@ -18452,8 +16290,7 @@ - neural fold (NCIT) - NCIT:C34223 + neural fold (NCIT) @@ -18462,8 +16299,7 @@ - neural groove (NCIT) - NCIT:C34224 + neural groove (NCIT) @@ -18472,8 +16308,7 @@ - neural plate (NCIT) - NCIT:C34225 + neural plate (NCIT) @@ -18482,8 +16317,7 @@ - neural tube (NCIT) - NCIT:C34226 + neural tube (NCIT) @@ -18492,8 +16326,7 @@ - neurectoderm (NCIT) - NCIT:C34228 + neurectoderm (NCIT) @@ -18502,8 +16335,7 @@ - neurula embryo (NCIT) - NCIT:C34229 + neurula embryo (NCIT) @@ -18512,8 +16344,7 @@ - notochordal canal (NCIT) - NCIT:C34230 + notochordal canal (NCIT) @@ -18522,8 +16353,7 @@ - notochordal plate (NCIT) - NCIT:C34231 + notochordal plate (NCIT) @@ -18532,8 +16362,7 @@ - notochordal process (NCIT) - NCIT:C34232 + notochordal process (NCIT) @@ -18542,8 +16371,7 @@ - optic cup (NCIT) - NCIT:C34233 + optic cup (NCIT) @@ -18552,8 +16380,7 @@ - optic stalk (NCIT) - NCIT:C34235 + optic stalk (NCIT) @@ -18562,8 +16389,7 @@ - optic vesicle (NCIT) - NCIT:C34236 + optic vesicle (NCIT) @@ -18572,8 +16398,7 @@ - otic pit (NCIT) - NCIT:C34238 + otic pit (NCIT) @@ -18582,8 +16407,7 @@ - otic placode (NCIT) - NCIT:C34239 + otic placode (NCIT) @@ -18592,8 +16416,7 @@ - ear vesicle (NCIT) - NCIT:C34240 + ear vesicle (NCIT) @@ -18602,8 +16425,7 @@ - foramen ovale of heart (NCIT) - NCIT:C34241 + foramen ovale of heart (NCIT) @@ -18612,8 +16434,7 @@ - pancreatic epithelial bud (NCIT) - NCIT:C34242 + pancreatic epithelial bud (NCIT) @@ -18622,8 +16443,7 @@ - parachordal cartilage (NCIT) - NCIT:C34243 + parachordal cartilage (NCIT) @@ -18632,8 +16452,7 @@ - paraxial mesoderm (NCIT) - NCIT:C34244 + paraxial mesoderm (NCIT) @@ -18642,8 +16461,7 @@ - pectinate line (NCIT) - NCIT:C34245 + pectinate line (NCIT) @@ -18652,8 +16470,7 @@ - pericardio-peritoneal canal (NCIT) - NCIT:C34246 + pericardio-peritoneal canal (NCIT) @@ -18662,8 +16479,7 @@ - periderm (NCIT) - NCIT:C34247 + periderm (NCIT) @@ -18672,8 +16488,7 @@ - pharyngeal arch system (NCIT) - NCIT:C34248 + pharyngeal arch system (NCIT) @@ -18682,8 +16497,7 @@ - pharyngeal arch (NCIT) - NCIT:C34249 + pharyngeal arch (NCIT) @@ -18692,8 +16506,7 @@ - pharyngeal cleft (NCIT) - NCIT:C34250 + pharyngeal cleft (NCIT) @@ -18702,8 +16515,7 @@ - pharyngeal membrane (NCIT) - NCIT:C34251 + pharyngeal membrane (NCIT) @@ -18712,8 +16524,7 @@ - pharyngeal pouch (NCIT) - NCIT:C34252 + pharyngeal pouch (NCIT) @@ -18722,8 +16533,7 @@ - placental membrane (NCIT) - NCIT:C34253 + placental membrane (NCIT) @@ -18732,8 +16542,7 @@ - pleuropericardial folds (NCIT) - NCIT:C34255 + pleuropericardial folds (NCIT) @@ -18742,8 +16551,7 @@ - pleuroperitoneal membrane (NCIT) - NCIT:C34256 + pleuroperitoneal membrane (NCIT) @@ -18752,8 +16560,7 @@ - posterior cardinal vein (NCIT) - NCIT:C34257 + posterior cardinal vein (NCIT) @@ -18762,8 +16569,7 @@ - future brain vesicle (NCIT) - NCIT:C34259 + future brain vesicle (NCIT) @@ -18772,8 +16578,7 @@ - lung bud (NCIT) - NCIT:C34260 + lung bud (NCIT) @@ -18782,8 +16587,7 @@ - primary chorionic villus (NCIT) - NCIT:C34261 + primary chorionic villus (NCIT) @@ -18792,8 +16596,7 @@ - embryonic lymph sac (NCIT) - NCIT:C34262 + embryonic lymph sac (NCIT) @@ -18802,8 +16605,7 @@ - primary ossification center (NCIT) - NCIT:C34263 + primary ossification center (NCIT) @@ -18812,8 +16614,7 @@ - primary palate (NCIT) - NCIT:C34264 + primary palate (NCIT) @@ -18822,8 +16623,7 @@ - primitive groove (NCIT) - NCIT:C34265 + primitive groove (NCIT) @@ -18832,8 +16632,7 @@ - primitive knot (NCIT) - NCIT:C34266 + primitive knot (NCIT) @@ -18842,8 +16641,7 @@ - primitive pit (NCIT) - NCIT:C34267 + primitive pit (NCIT) @@ -18852,8 +16650,7 @@ - presumptive gut (NCIT) - NCIT:C34268 + presumptive gut (NCIT) @@ -18862,8 +16659,7 @@ - differentiated genital tubercle (NCIT) - NCIT:C34274 + differentiated genital tubercle (NCIT) @@ -18872,8 +16668,7 @@ - primordium (NCIT) - NCIT:C34275 + primordium (NCIT) @@ -18882,8 +16677,7 @@ - heart primordium (NCIT) - NCIT:C34276 + heart primordium (NCIT) @@ -18892,8 +16686,7 @@ - liver primordium (NCIT) - NCIT:C34277 + liver primordium (NCIT) @@ -18902,8 +16695,7 @@ - proctodeum (NCIT) - NCIT:C34278 + proctodeum (NCIT) @@ -18912,8 +16704,7 @@ - pronephric duct (NCIT) - NCIT:C34279 + pronephric duct (NCIT) @@ -18922,8 +16713,7 @@ - pronephros (NCIT) - NCIT:C34280 + pronephros (NCIT) @@ -18932,8 +16722,7 @@ - Rathke's pouch (NCIT) - NCIT:C34281 + Rathke's pouch (NCIT) @@ -18942,8 +16731,7 @@ - lung bud (NCIT) - NCIT:C34282 + lung bud (NCIT) @@ -18952,8 +16740,7 @@ - respiratory primordium (NCIT) - NCIT:C34283 + respiratory primordium (NCIT) @@ -18962,8 +16749,7 @@ - retroperitoneal embryonic lymph sac (NCIT) - NCIT:C34285 + retroperitoneal embryonic lymph sac (NCIT) @@ -18972,8 +16758,7 @@ - sclerotome (NCIT) - NCIT:C34287 + sclerotome (NCIT) @@ -18982,8 +16767,7 @@ - pharyngeal arch 2 (NCIT) - NCIT:C34288 + pharyngeal arch 2 (NCIT) @@ -18992,8 +16776,7 @@ - pharyngeal pouch 2 (NCIT) - NCIT:C34289 + pharyngeal pouch 2 (NCIT) @@ -19002,8 +16785,7 @@ - secondary chorionic villus (NCIT) - NCIT:C34291 + secondary chorionic villus (NCIT) @@ -19012,8 +16794,7 @@ - secondary palate (NCIT) - NCIT:C34292 + secondary palate (NCIT) @@ -19022,8 +16803,7 @@ - seminiferous tubule of testis (NCIT) - NCIT:C34293 + seminiferous tubule of testis (NCIT) @@ -19032,8 +16812,7 @@ - atrial septum primum (NCIT) - NCIT:C34294 + atrial septum primum (NCIT) @@ -19042,8 +16821,7 @@ - atrial septum secundum (NCIT) - NCIT:C34295 + atrial septum secundum (NCIT) @@ -19052,8 +16830,7 @@ - septum transversum (NCIT) - NCIT:C34296 + septum transversum (NCIT) @@ -19062,8 +16839,7 @@ - sinovaginal bulb (NCIT) - NCIT:C34297 + sinovaginal bulb (NCIT) @@ -19072,8 +16848,7 @@ - sinus venosus (NCIT) - NCIT:C34299 + sinus venosus (NCIT) @@ -19082,8 +16857,7 @@ - sinus venosus (NCIT) - NCIT:C34300 + sinus venosus (NCIT) @@ -19092,8 +16866,7 @@ - somatopleure (NCIT) - NCIT:C34301 + somatopleure (NCIT) @@ -19102,8 +16875,7 @@ - somite (NCIT) - NCIT:C34302 + somite (NCIT) @@ -19112,8 +16884,7 @@ - splanchnopleure (NCIT) - NCIT:C34303 + splanchnopleure (NCIT) @@ -19122,8 +16893,7 @@ - stapedial artery (NCIT) - NCIT:C34304 + stapedial artery (NCIT) @@ -19132,8 +16902,7 @@ - stomach primordium (NCIT) - NCIT:C34305 + stomach primordium (NCIT) @@ -19142,8 +16911,7 @@ - stomodeum (NCIT) - NCIT:C34306 + stomodeum (NCIT) @@ -19152,8 +16920,7 @@ - subcardinal vein (NCIT) - NCIT:C34307 + subcardinal vein (NCIT) @@ -19162,8 +16929,7 @@ - supracardinal vein (NCIT) - NCIT:C34308 + supracardinal vein (NCIT) @@ -19172,8 +16938,7 @@ - external ectoderm (NCIT) - NCIT:C34309 + external ectoderm (NCIT) @@ -19182,8 +16947,7 @@ - tertiary chorionic villus (NCIT) - NCIT:C34310 + tertiary chorionic villus (NCIT) @@ -19192,8 +16956,7 @@ - pharyngeal pouch 3 (NCIT) - NCIT:C34311 + pharyngeal pouch 3 (NCIT) @@ -19202,8 +16965,7 @@ - thyroid primordium (NCIT) - NCIT:C34312 + thyroid primordium (NCIT) @@ -19212,8 +16974,7 @@ - tooth bud (NCIT) - NCIT:C34313 + tooth bud (NCIT) @@ -19222,8 +16983,7 @@ - tracheoesophageal fold (NCIT) - NCIT:C34315 + tracheoesophageal fold (NCIT) @@ -19232,8 +16992,7 @@ - tracheoesophageal septum (NCIT) - NCIT:C34316 + tracheoesophageal septum (NCIT) @@ -19242,8 +17001,7 @@ - truncus arteriosus (NCIT) - NCIT:C34317 + truncus arteriosus (NCIT) @@ -19252,8 +17010,7 @@ - tubotympanic recess epithelium (NCIT) - NCIT:C34318 + tubotympanic recess epithelium (NCIT) @@ -19262,8 +17019,7 @@ - umbilical cord (NCIT) - NCIT:C34320 + umbilical cord (NCIT) @@ -19272,8 +17028,7 @@ - gonadal ridge (NCIT) - NCIT:C34321 + gonadal ridge (NCIT) @@ -19282,8 +17037,7 @@ - primitive urogenital sinus (NCIT) - NCIT:C34322 + primitive urogenital sinus (NCIT) @@ -19292,8 +17046,7 @@ - urorectal septum (NCIT) - NCIT:C34323 + urorectal septum (NCIT) @@ -19302,8 +17055,7 @@ - vaginal plate (NCIT) - NCIT:C34325 + vaginal plate (NCIT) @@ -19312,8 +17064,7 @@ - valve of foramen ovale (NCIT) - NCIT:C34326 + valve of foramen ovale (NCIT) @@ -19322,8 +17073,7 @@ - ventral mesogastrium (NCIT) - NCIT:C34327 + ventral mesogastrium (NCIT) @@ -19332,8 +17082,7 @@ - vernix caseosa (NCIT) - NCIT:C34328 + vernix caseosa (NCIT) @@ -19342,8 +17091,7 @@ - vitelline vein (NCIT) - NCIT:C34329 + vitelline vein (NCIT) @@ -19352,8 +17100,7 @@ - thymus lymphoid tissue (NCIT) - NCIT:C38515 + thymus lymphoid tissue (NCIT) @@ -19362,8 +17109,7 @@ - limb segment (NCIT) - NCIT:C38630 + limb segment (NCIT) @@ -19372,8 +17118,7 @@ - pericardial cavity (NCIT) - NCIT:C38662 + pericardial cavity (NCIT) @@ -19382,8 +17127,7 @@ - forebrain (NCIT) - NCIT:C40185 + forebrain (NCIT) @@ -19392,8 +17136,7 @@ - digit (NCIT) - NCIT:C40186 + digit (NCIT) @@ -19402,8 +17145,7 @@ - hindbrain (NCIT) - NCIT:C40336 + hindbrain (NCIT) @@ -19412,8 +17154,7 @@ - lingula of left lung (NCIT) - NCIT:C40373 + lingula of left lung (NCIT) @@ -19422,8 +17163,7 @@ - lymphomyeloid tissue (NCIT) - NCIT:C41168 + lymphomyeloid tissue (NCIT) @@ -19432,8 +17172,7 @@ - perineurium (NCIT) - NCIT:C41407 + perineurium (NCIT) @@ -19442,8 +17181,7 @@ - pineal parenchyma (NCIT) - NCIT:C41834 + pineal parenchyma (NCIT) @@ -19452,8 +17190,7 @@ - choroid plexus epithelium (NCIT) - NCIT:C42079 + choroid plexus epithelium (NCIT) @@ -19462,8 +17199,7 @@ - anus (NCIT) - NCIT:C43362 + anus (NCIT) @@ -19472,8 +17208,7 @@ - glandular epithelium (NCIT) - NCIT:C43370 + glandular epithelium (NCIT) @@ -19482,8 +17217,7 @@ - hepatobiliary system (NCIT) - NCIT:C43612 + hepatobiliary system (NCIT) @@ -19492,8 +17226,7 @@ - bile duct epithelium (NCIT) - NCIT:C43616 + bile duct epithelium (NCIT) @@ -19502,8 +17235,7 @@ - intrahepatic bile duct epithelium (NCIT) - NCIT:C43617 + intrahepatic bile duct epithelium (NCIT) @@ -19512,8 +17244,7 @@ - extrahepatic bile duct epithelium (NCIT) - NCIT:C43618 + extrahepatic bile duct epithelium (NCIT) @@ -19522,8 +17253,7 @@ - hilar portion of hepatic duct (NCIT) - NCIT:C43630 + hilar portion of hepatic duct (NCIT) @@ -19532,8 +17262,7 @@ - thymus epithelium (NCIT) - NCIT:C45713 + thymus epithelium (NCIT) @@ -19542,8 +17271,7 @@ - glandular epithelium (NCIT) - NCIT:C45715 + glandular epithelium (NCIT) @@ -19552,8 +17280,7 @@ - tuberculum sellae (NCIT) - NCIT:C45911 + tuberculum sellae (NCIT) @@ -19562,8 +17289,7 @@ - pituitary stalk (NCIT) - NCIT:C45912 + pituitary stalk (NCIT) @@ -19572,8 +17298,7 @@ - parathyroid epithelium (NCIT) - NCIT:C48258 + parathyroid epithelium (NCIT) @@ -19582,8 +17307,7 @@ - basal zone of heart (NCIT) - NCIT:C48589 + basal zone of heart (NCIT) @@ -19592,8 +17316,7 @@ - jaw skeleton (NCIT) - NCIT:C48821 + jaw skeleton (NCIT) @@ -19602,8 +17325,7 @@ - fundus of urinary bladder (NCIT) - NCIT:C48939 + fundus of urinary bladder (NCIT) @@ -19612,8 +17334,7 @@ - lamina propria of urinary bladder (NCIT) - NCIT:C48940 + lamina propria of urinary bladder (NCIT) @@ -19622,8 +17343,7 @@ - wall of urinary bladder (NCIT) - NCIT:C48941 + wall of urinary bladder (NCIT) @@ -19632,8 +17352,7 @@ - epithelium of bronchiole (NCIT) - NCIT:C48942 + epithelium of bronchiole (NCIT) @@ -19642,8 +17361,7 @@ - epithelium of respiratory bronchiole (NCIT) - NCIT:C48943 + epithelium of respiratory bronchiole (NCIT) @@ -19652,8 +17370,7 @@ - right lung lobe (NCIT) - NCIT:C48944 + right lung lobe (NCIT) @@ -19662,8 +17379,7 @@ - left lung lobe (NCIT) - NCIT:C48945 + left lung lobe (NCIT) @@ -19672,8 +17388,7 @@ - left pulmonary vein (NCIT) - NCIT:C48946 + left pulmonary vein (NCIT) @@ -19682,8 +17397,7 @@ - right pulmonary vein (NCIT) - NCIT:C48947 + right pulmonary vein (NCIT) @@ -19692,8 +17406,7 @@ - cerebellar layer (NCIT) - NCIT:C49137 + cerebellar layer (NCIT) @@ -19702,8 +17415,7 @@ - granular layer of cerebellar cortex (NCIT) - NCIT:C49138 + granular layer of cerebellar cortex (NCIT) @@ -19712,8 +17424,7 @@ - molecular layer of cerebellar cortex (NCIT) - NCIT:C49139 + molecular layer of cerebellar cortex (NCIT) @@ -19722,8 +17433,7 @@ - Purkinje cell layer of cerebellar cortex (NCIT) - NCIT:C49140 + Purkinje cell layer of cerebellar cortex (NCIT) @@ -19732,8 +17442,7 @@ - cerebellum internal granule cell layer (NCIT) - NCIT:C49141 + cerebellum internal granule cell layer (NCIT) @@ -19742,8 +17451,7 @@ - aorta endothelium (NCIT) - NCIT:C49190 + aorta endothelium (NCIT) @@ -19752,8 +17460,7 @@ - aorta smooth muscle tissue (NCIT) - NCIT:C49191 + aorta smooth muscle tissue (NCIT) @@ -19762,8 +17469,7 @@ - endothelium of arteriole (NCIT) - NCIT:C49192 + endothelium of arteriole (NCIT) @@ -19772,8 +17478,7 @@ - endothelium of artery (NCIT) - NCIT:C49194 + endothelium of artery (NCIT) @@ -19782,8 +17487,7 @@ - artery smooth muscle tissue (NCIT) - NCIT:C49195 + artery smooth muscle tissue (NCIT) @@ -19792,8 +17496,7 @@ - bronchus basal lamina (NCIT) - NCIT:C49207 + bronchus basal lamina (NCIT) @@ -19802,8 +17505,7 @@ - bronchus basement membrane (NCIT) - NCIT:C49208 + bronchus basement membrane (NCIT) @@ -19812,8 +17514,7 @@ - cartilage of bronchus (NCIT) - NCIT:C49209 + cartilage of bronchus (NCIT) @@ -19822,8 +17523,7 @@ - bronchus connective tissue (NCIT) - NCIT:C49210 + bronchus connective tissue (NCIT) @@ -19832,8 +17532,7 @@ - bronchus elastic tissue (NCIT) - NCIT:C49211 + bronchus elastic tissue (NCIT) @@ -19842,8 +17541,7 @@ - lamina propria of bronchus (NCIT) - NCIT:C49212 + lamina propria of bronchus (NCIT) @@ -19852,8 +17550,7 @@ - bronchus smooth muscle (NCIT) - NCIT:C49213 + bronchus smooth muscle (NCIT) @@ -19862,8 +17559,7 @@ - submucosa of bronchus (NCIT) - NCIT:C49214 + submucosa of bronchus (NCIT) @@ -19872,8 +17568,7 @@ - endothelium of capillary (NCIT) - NCIT:C49215 + endothelium of capillary (NCIT) @@ -19882,8 +17577,7 @@ - cerebellar cortex (NCIT) - NCIT:C49216 + cerebellar cortex (NCIT) @@ -19892,8 +17586,7 @@ - white matter of cerebellum (NCIT) - NCIT:C49217 + white matter of cerebellum (NCIT) @@ -19902,8 +17595,7 @@ - cervix epithelium (NCIT) - NCIT:C49218 + cervix epithelium (NCIT) @@ -19912,8 +17604,7 @@ - cervix squamous epithelium (NCIT) - NCIT:C49219 + cervix squamous epithelium (NCIT) @@ -19922,8 +17613,7 @@ - epithelium of esophagus (NCIT) - NCIT:C49221 + epithelium of esophagus (NCIT) @@ -19932,8 +17622,7 @@ - esophagus squamous epithelium (NCIT) - NCIT:C49222 + esophagus squamous epithelium (NCIT) @@ -19942,8 +17631,7 @@ - lamina propria of esophagus (NCIT) - NCIT:C49223 + lamina propria of esophagus (NCIT) @@ -19952,8 +17640,7 @@ - cartilage of external ear (NCIT) - NCIT:C49225 + cartilage of external ear (NCIT) @@ -19962,8 +17649,7 @@ - eyelid subcutaneous connective tissue (NCIT) - NCIT:C49226 + eyelid subcutaneous connective tissue (NCIT) @@ -19972,8 +17658,7 @@ - epithelium of gall bladder (NCIT) - NCIT:C49227 + epithelium of gall bladder (NCIT) @@ -19982,8 +17667,7 @@ - gallbladder lamina propria (NCIT) - NCIT:C49228 + gallbladder lamina propria (NCIT) @@ -19992,8 +17676,7 @@ - fourth ventricle choroid plexus epithelium (NCIT) - NCIT:C49230 + fourth ventricle choroid plexus epithelium (NCIT) @@ -20002,8 +17685,7 @@ - fourth ventricle ependyma (NCIT) - NCIT:C49232 + fourth ventricle ependyma (NCIT) @@ -20012,8 +17694,7 @@ - gingival epithelium (NCIT) - NCIT:C49239 + gingival epithelium (NCIT) @@ -20022,8 +17703,7 @@ - intestinal epithelium (NCIT) - NCIT:C49240 + intestinal epithelium (NCIT) @@ -20032,8 +17712,7 @@ - intestinal mucosa (NCIT) - NCIT:C49241 + intestinal mucosa (NCIT) @@ -20042,8 +17721,7 @@ - intestine smooth muscle (NCIT) - NCIT:C49243 + intestine smooth muscle (NCIT) @@ -20052,8 +17730,7 @@ - larynx connective tissue (NCIT) - NCIT:C49245 + larynx connective tissue (NCIT) @@ -20062,8 +17739,7 @@ - mucosa of larynx (NCIT) - NCIT:C49246 + mucosa of larynx (NCIT) @@ -20072,8 +17748,7 @@ - larynx epithelium (NCIT) - NCIT:C49247 + larynx epithelium (NCIT) @@ -20082,8 +17757,7 @@ - lateral ventricle choroid plexus epithelium (NCIT) - NCIT:C49248 + lateral ventricle choroid plexus epithelium (NCIT) @@ -20092,8 +17766,7 @@ - lateral ventricle ependyma (NCIT) - NCIT:C49249 + lateral ventricle ependyma (NCIT) @@ -20102,8 +17775,7 @@ - left lung alveolar duct (NCIT) - NCIT:C49250 + left lung alveolar duct (NCIT) @@ -20112,8 +17784,7 @@ - left lung alveolus (NCIT) - NCIT:C49251 + left lung alveolus (NCIT) @@ -20122,8 +17793,7 @@ - left lung bronchiole (NCIT) - NCIT:C49252 + left lung bronchiole (NCIT) @@ -20132,8 +17802,7 @@ - left lung respiratory bronchiole (NCIT) - NCIT:C49254 + left lung respiratory bronchiole (NCIT) @@ -20142,8 +17811,7 @@ - left lung terminal bronchiole (NCIT) - NCIT:C49255 + left lung terminal bronchiole (NCIT) @@ -20152,8 +17820,7 @@ - lower respiratory tract cartilage (NCIT) - NCIT:C49256 + lower respiratory tract cartilage (NCIT) @@ -20162,8 +17829,7 @@ - lymphatic vessel endothelium (NCIT) - NCIT:C49258 + lymphatic vessel endothelium (NCIT) @@ -20172,8 +17838,7 @@ - lymphatic vessel smooth muscle (NCIT) - NCIT:C49260 + lymphatic vessel smooth muscle (NCIT) @@ -20182,8 +17847,7 @@ - nasal cavity epithelium (NCIT) - NCIT:C49261 + nasal cavity epithelium (NCIT) @@ -20192,8 +17856,7 @@ - nasal cavity respiratory epithelium (NCIT) - NCIT:C49262 + nasal cavity respiratory epithelium (NCIT) @@ -20202,8 +17865,7 @@ - epithelium of nasopharynx (NCIT) - NCIT:C49263 + epithelium of nasopharynx (NCIT) @@ -20212,8 +17874,7 @@ - epithelium of oropharynx (NCIT) - NCIT:C49264 + epithelium of oropharynx (NCIT) @@ -20222,8 +17883,7 @@ - capsule of ovary (NCIT) - NCIT:C49265 + capsule of ovary (NCIT) @@ -20232,8 +17892,7 @@ - intercalated duct of salivary gland (NCIT) - NCIT:C49266 + intercalated duct of salivary gland (NCIT) @@ -20242,8 +17901,7 @@ - intercalated duct of pancreas (NCIT) - NCIT:C49267 + intercalated duct of pancreas (NCIT) @@ -20252,8 +17910,7 @@ - pancreatic acinus (NCIT) - NCIT:C49268 + pancreatic acinus (NCIT) @@ -20262,8 +17919,7 @@ - corpus cavernosum penis (NCIT) - NCIT:C49269 + corpus cavernosum penis (NCIT) @@ -20272,8 +17928,7 @@ - male prepuce epithelium (NCIT) - NCIT:C49270 + male prepuce epithelium (NCIT) @@ -20282,8 +17937,7 @@ - nephron tubule basement membrane (NCIT) - NCIT:C49273 + nephron tubule basement membrane (NCIT) @@ -20292,8 +17946,7 @@ - nephron tubule (NCIT) - NCIT:C49274 + nephron tubule (NCIT) @@ -20302,8 +17955,7 @@ - nephron tubule epithelium (NCIT) - NCIT:C49276 + nephron tubule epithelium (NCIT) @@ -20312,8 +17964,7 @@ - right lung alveolar duct (NCIT) - NCIT:C49277 + right lung alveolar duct (NCIT) @@ -20322,8 +17973,7 @@ - right lung alveolus (NCIT) - NCIT:C49278 + right lung alveolus (NCIT) @@ -20332,8 +17982,7 @@ - right lung bronchiole (NCIT) - NCIT:C49279 + right lung bronchiole (NCIT) @@ -20342,8 +17991,7 @@ - lung hilus (NCIT) - NCIT:C49282 + lung hilus (NCIT) @@ -20352,8 +18000,7 @@ - right lung respiratory bronchiole (NCIT) - NCIT:C49285 + right lung respiratory bronchiole (NCIT) @@ -20362,8 +18009,7 @@ - right lung terminal bronchiole (NCIT) - NCIT:C49294 + right lung terminal bronchiole (NCIT) @@ -20372,8 +18018,7 @@ - seminal vesicle epithelium (NCIT) - NCIT:C49295 + seminal vesicle epithelium (NCIT) @@ -20382,8 +18027,7 @@ - seminiferous tubule epithelium (NCIT) - NCIT:C49296 + seminiferous tubule epithelium (NCIT) @@ -20392,8 +18036,7 @@ - lamina propria of small intestine (NCIT) - NCIT:C49297 + lamina propria of small intestine (NCIT) @@ -20402,8 +18045,7 @@ - lamina propria of large intestine (NCIT) - NCIT:C49298 + lamina propria of large intestine (NCIT) @@ -20412,8 +18054,7 @@ - gastrointestinal system lamina propria (NCIT) - NCIT:C49299 + gastrointestinal system lamina propria (NCIT) @@ -20422,8 +18063,7 @@ - epithelium of tongue (NCIT) - NCIT:C49300 + epithelium of tongue (NCIT) @@ -20432,8 +18072,7 @@ - tongue muscle (NCIT) - NCIT:C49301 + tongue muscle (NCIT) @@ -20442,8 +18081,7 @@ - trachea basement membrane (NCIT) - NCIT:C49302 + trachea basement membrane (NCIT) @@ -20452,8 +18090,7 @@ - trachea basal lamina (NCIT) - NCIT:C49303 + trachea basal lamina (NCIT) @@ -20462,8 +18099,7 @@ - trachea cartilage (NCIT) - NCIT:C49304 + trachea cartilage (NCIT) @@ -20472,8 +18108,7 @@ - lamina propria of trachea (NCIT) - NCIT:C49305 + lamina propria of trachea (NCIT) @@ -20482,8 +18117,7 @@ - smooth muscle of trachea (NCIT) - NCIT:C49306 + smooth muscle of trachea (NCIT) @@ -20492,8 +18126,7 @@ - submucosa of trachea (NCIT) - NCIT:C49307 + submucosa of trachea (NCIT) @@ -20502,8 +18135,7 @@ - tympanic membrane epithelium (NCIT) - NCIT:C49308 + tympanic membrane epithelium (NCIT) @@ -20512,8 +18144,7 @@ - epithelium of urethra (NCIT) - NCIT:C49309 + epithelium of urethra (NCIT) @@ -20522,8 +18153,7 @@ - urethra urothelium (NCIT) - NCIT:C49310 + urethra urothelium (NCIT) @@ -20532,8 +18162,7 @@ - male urethral gland (NCIT) - NCIT:C49311 + male urethral gland (NCIT) @@ -20542,8 +18171,7 @@ - epithelium of vagina (NCIT) - NCIT:C49313 + epithelium of vagina (NCIT) @@ -20552,8 +18180,7 @@ - vagina squamous epithelium (NCIT) - NCIT:C49314 + vagina squamous epithelium (NCIT) @@ -20562,8 +18189,7 @@ - vas deferens epithelium (NCIT) - NCIT:C49315 + vas deferens epithelium (NCIT) @@ -20572,8 +18198,7 @@ - pseudostratified columnar epithelium (NCIT) - NCIT:C49316 + pseudostratified columnar epithelium (NCIT) @@ -20582,8 +18207,7 @@ - endothelium of vein (NCIT) - NCIT:C49317 + endothelium of vein (NCIT) @@ -20592,8 +18216,7 @@ - vena cava endothelium (NCIT) - NCIT:C49318 + vena cava endothelium (NCIT) @@ -20602,8 +18225,7 @@ - endothelium of venule (NCIT) - NCIT:C49319 + endothelium of venule (NCIT) @@ -20612,8 +18234,7 @@ - venous system endothelium (NCIT) - NCIT:C49320 + venous system endothelium (NCIT) @@ -20622,8 +18243,7 @@ - tunica media of artery (NCIT) - NCIT:C49321 + tunica media of artery (NCIT) @@ -20632,8 +18252,7 @@ - left adrenal gland (NCIT) - NCIT:C49322 + left adrenal gland (NCIT) @@ -20642,8 +18261,7 @@ - left testis (NCIT) - NCIT:C49323 + left testis (NCIT) @@ -20652,8 +18270,7 @@ - left ureter (NCIT) - NCIT:C49324 + left ureter (NCIT) @@ -20662,8 +18279,7 @@ - right adrenal gland (NCIT) - NCIT:C49325 + right adrenal gland (NCIT) @@ -20672,8 +18288,7 @@ - right testis (NCIT) - NCIT:C49326 + right testis (NCIT) @@ -20682,8 +18297,7 @@ - right ureter (NCIT) - NCIT:C49327 + right ureter (NCIT) @@ -20692,8 +18306,7 @@ - layer of retina (NCIT) - NCIT:C49328 + layer of retina (NCIT) @@ -20702,8 +18315,7 @@ - arterial system endothelium (NCIT) - NCIT:C49329 + arterial system endothelium (NCIT) @@ -20712,8 +18324,7 @@ - brain arachnoid mater (NCIT) - NCIT:C49331 + brain arachnoid mater (NCIT) @@ -20722,8 +18333,7 @@ - brain dura mater (NCIT) - NCIT:C49332 + brain dura mater (NCIT) @@ -20732,8 +18342,7 @@ - brain gray matter (NCIT) - NCIT:C49333 + brain gray matter (NCIT) @@ -20742,8 +18351,7 @@ - brain white matter (NCIT) - NCIT:C49334 + brain white matter (NCIT) @@ -20752,8 +18360,7 @@ - brain pia mater (NCIT) - NCIT:C49335 + brain pia mater (NCIT) @@ -20762,8 +18369,7 @@ - nucleus of brain (NCIT) - NCIT:C49346 + nucleus of brain (NCIT) @@ -20772,8 +18378,7 @@ - cerebral hemisphere white matter (NCIT) - NCIT:C49347 + cerebral hemisphere white matter (NCIT) @@ -20782,8 +18387,7 @@ - interalveolar septum (NCIT) - NCIT:C49473 + interalveolar septum (NCIT) @@ -20792,8 +18396,7 @@ - appendicular skeleton (NCIT) - NCIT:C49477 + appendicular skeleton (NCIT) @@ -20802,8 +18405,7 @@ - wall of intestine (NCIT) - NCIT:C49478 + wall of intestine (NCIT) @@ -20812,8 +18414,7 @@ - renal convoluted tubule (NCIT) - NCIT:C49479 + renal convoluted tubule (NCIT) @@ -20822,8 +18423,7 @@ - skin of external ear (NCIT) - NCIT:C49481 + skin of external ear (NCIT) @@ -20832,8 +18432,7 @@ - eyelid connective tissue (NCIT) - NCIT:C49482 + eyelid connective tissue (NCIT) @@ -20842,8 +18441,7 @@ - gallbladder smooth muscle (NCIT) - NCIT:C49483 + gallbladder smooth muscle (NCIT) @@ -20852,8 +18450,7 @@ - cardiac septum (NCIT) - NCIT:C49485 + cardiac septum (NCIT) @@ -20862,8 +18459,7 @@ - inner canthus (NCIT) - NCIT:C49564 + inner canthus (NCIT) @@ -20872,8 +18468,7 @@ - intervertebral disk (NCIT) - NCIT:C49571 + intervertebral disk (NCIT) @@ -20882,8 +18477,7 @@ - joint of rib (NCIT) - NCIT:C49575 + joint of rib (NCIT) @@ -20892,8 +18486,7 @@ - intervertebral joint (NCIT) - NCIT:C49577 + intervertebral joint (NCIT) @@ -20902,8 +18495,7 @@ - lobe of liver (NCIT) - NCIT:C49579 + lobe of liver (NCIT) @@ -20912,8 +18504,7 @@ - lower eyelid (NCIT) - NCIT:C49580 + lower eyelid (NCIT) @@ -20922,8 +18513,7 @@ - upper eyelid (NCIT) - NCIT:C49581 + upper eyelid (NCIT) @@ -20932,8 +18522,7 @@ - tooth of lower jaw (NCIT) - NCIT:C49582 + tooth of lower jaw (NCIT) @@ -20942,8 +18531,7 @@ - lower jaw incisor (NCIT) - NCIT:C49583 + lower jaw incisor (NCIT) @@ -20952,8 +18540,7 @@ - lower jaw molar (NCIT) - NCIT:C49584 + lower jaw molar (NCIT) @@ -20962,8 +18549,7 @@ - nasal cartilage (NCIT) - NCIT:C49593 + nasal cartilage (NCIT) @@ -20972,8 +18558,7 @@ - turbinate bone (NCIT) - NCIT:C49594 + turbinate bone (NCIT) @@ -20982,8 +18567,7 @@ - oral epithelium (NCIT) - NCIT:C49595 + oral epithelium (NCIT) @@ -20992,8 +18576,7 @@ - outer canthus (NCIT) - NCIT:C49597 + outer canthus (NCIT) @@ -21002,8 +18585,7 @@ - Peyer's patch germinal center (NCIT) - NCIT:C49600 + Peyer's patch germinal center (NCIT) @@ -21012,8 +18594,7 @@ - spinal nerve plexus (NCIT) - NCIT:C49601 + spinal nerve plexus (NCIT) @@ -21022,8 +18603,7 @@ - lymph node germinal center (NCIT) - NCIT:C49757 + lymph node germinal center (NCIT) @@ -21032,8 +18612,7 @@ - spleen germinal center (NCIT) - NCIT:C49760 + spleen germinal center (NCIT) @@ -21042,8 +18621,7 @@ - marginal zone of spleen (NCIT) - NCIT:C49767 + marginal zone of spleen (NCIT) @@ -21052,8 +18630,7 @@ - spleen trabecular artery (NCIT) - NCIT:C49775 + spleen trabecular artery (NCIT) @@ -21062,8 +18639,7 @@ - spleen marginal sinus (NCIT) - NCIT:C49776 + spleen marginal sinus (NCIT) @@ -21072,8 +18648,7 @@ - spleen trabecular vein (NCIT) - NCIT:C49779 + spleen trabecular vein (NCIT) @@ -21082,8 +18657,7 @@ - choroid plexus of third ventricle (NCIT) - NCIT:C49782 + choroid plexus of third ventricle (NCIT) @@ -21092,8 +18666,7 @@ - thyroglossal duct (NCIT) - NCIT:C49783 + thyroglossal duct (NCIT) @@ -21102,8 +18675,7 @@ - tooth of upper jaw (NCIT) - NCIT:C49792 + tooth of upper jaw (NCIT) @@ -21112,8 +18684,7 @@ - upper jaw incisor (NCIT) - NCIT:C49794 + upper jaw incisor (NCIT) @@ -21122,8 +18693,7 @@ - upper jaw molar (NCIT) - NCIT:C49795 + upper jaw molar (NCIT) @@ -21132,8 +18702,7 @@ - spinal dura mater (NCIT) - NCIT:C49799 + spinal dura mater (NCIT) @@ -21142,8 +18711,7 @@ - spinal cord pia mater (NCIT) - NCIT:C49800 + spinal cord pia mater (NCIT) @@ -21152,8 +18720,7 @@ - nasal mucus (NCIT) - NCIT:C52551 + nasal mucus (NCIT) @@ -21162,8 +18729,7 @@ - seminal vesicle fluid (NCIT) - NCIT:C52552 + seminal vesicle fluid (NCIT) @@ -21172,8 +18738,7 @@ - prostate gland secretion (NCIT) - NCIT:C52553 + prostate gland secretion (NCIT) @@ -21182,8 +18747,7 @@ - bulbourethral gland secretion (NCIT) - NCIT:C52554 + bulbourethral gland secretion (NCIT) @@ -21192,8 +18756,7 @@ - esophagus secretion (NCIT) - NCIT:C52555 + esophagus secretion (NCIT) @@ -21202,8 +18765,7 @@ - follicular fluid (NCIT) - NCIT:C52556 + follicular fluid (NCIT) @@ -21212,8 +18774,7 @@ - parasympathetic ganglion (NCIT) - NCIT:C52557 + parasympathetic ganglion (NCIT) @@ -21222,8 +18783,7 @@ - submandibular ganglion (NCIT) - NCIT:C52558 + submandibular ganglion (NCIT) @@ -21232,8 +18792,7 @@ - genital labium (NCIT) - NCIT:C52559 + genital labium (NCIT) @@ -21242,8 +18801,7 @@ - gluteus maximus (NCIT) - NCIT:C52560 + gluteus maximus (NCIT) @@ -21252,8 +18810,7 @@ - external urethral sphincter (NCIT) - NCIT:C52561 + external urethral sphincter (NCIT) @@ -21262,8 +18819,7 @@ - inferior vesical artery (NCIT) - NCIT:C52685 + inferior vesical artery (NCIT) @@ -21272,8 +18828,7 @@ - superior vesical artery (NCIT) - NCIT:C52686 + superior vesical artery (NCIT) @@ -21282,8 +18837,7 @@ - anterior facial vein (NCIT) - NCIT:C52687 + anterior facial vein (NCIT) @@ -21292,8 +18846,7 @@ - medial circumflex femoral vein (NCIT) - NCIT:C52688 + medial circumflex femoral vein (NCIT) @@ -21302,8 +18855,7 @@ - dorsal metatarsal vein (NCIT) - NCIT:C52689 + dorsal metatarsal vein (NCIT) @@ -21312,8 +18864,7 @@ - inferior pancreaticoduodenal vein (NCIT) - NCIT:C52692 + inferior pancreaticoduodenal vein (NCIT) @@ -21322,8 +18873,7 @@ - left renal vein (NCIT) - NCIT:C52693 + left renal vein (NCIT) @@ -21332,8 +18882,7 @@ - right renal vein (NCIT) - NCIT:C52695 + right renal vein (NCIT) @@ -21342,8 +18891,7 @@ - left testicular vein (NCIT) - NCIT:C52696 + left testicular vein (NCIT) @@ -21352,8 +18900,7 @@ - right testicular vein (NCIT) - NCIT:C52697 + right testicular vein (NCIT) @@ -21362,8 +18909,7 @@ - internal thoracic vein (NCIT) - NCIT:C52698 + internal thoracic vein (NCIT) @@ -21372,8 +18918,7 @@ - deep temporal vein (NCIT) - NCIT:C52699 + deep temporal vein (NCIT) @@ -21382,8 +18927,7 @@ - superficial temporal vein (NCIT) - NCIT:C52700 + superficial temporal vein (NCIT) @@ -21392,8 +18936,7 @@ - dorsal pes interosseous muscle (NCIT) - NCIT:C52701 + dorsal pes interosseous muscle (NCIT) @@ -21402,8 +18945,7 @@ - plantar interosseous muscle of pes (NCIT) - NCIT:C52702 + plantar interosseous muscle of pes (NCIT) @@ -21412,8 +18954,7 @@ - dorsal interosseous of manus (NCIT) - NCIT:C52703 + dorsal interosseous of manus (NCIT) @@ -21422,8 +18963,7 @@ - palmar interosseous muscle of manus (NCIT) - NCIT:C52704 + palmar interosseous muscle of manus (NCIT) @@ -21432,8 +18972,7 @@ - transverse muscle of tongue (NCIT) - NCIT:C52706 + transverse muscle of tongue (NCIT) @@ -21442,8 +18981,7 @@ - tongue muscle (NCIT) - NCIT:C52707 + tongue muscle (NCIT) @@ -21452,8 +18990,7 @@ - vertical muscle of tongue (NCIT) - NCIT:C52708 + vertical muscle of tongue (NCIT) @@ -21462,8 +18999,7 @@ - enteric ganglion (NCIT) - NCIT:C52709 + enteric ganglion (NCIT) @@ -21472,8 +19008,7 @@ - anterior olfactory nucleus (NCIT) - NCIT:C52710 + anterior olfactory nucleus (NCIT) @@ -21482,8 +19017,7 @@ - arcuate nucleus of hypothalamus (NCIT) - NCIT:C52711 + arcuate nucleus of hypothalamus (NCIT) @@ -21492,8 +19026,7 @@ - auditory cortex (NCIT) - NCIT:C52712 + auditory cortex (NCIT) @@ -21502,8 +19035,7 @@ - cingulate cortex (NCIT) - NCIT:C52713 + cingulate cortex (NCIT) @@ -21512,8 +19044,7 @@ - compact bone tissue (NCIT) - NCIT:C52714 + compact bone tissue (NCIT) @@ -21522,8 +19053,7 @@ - costal arch (NCIT) - NCIT:C52715 + costal arch (NCIT) @@ -21532,8 +19062,7 @@ - cuneate nucleus (NCIT) - NCIT:C52716 + cuneate nucleus (NCIT) @@ -21542,8 +19071,7 @@ - skin of eyelid (NCIT) - NCIT:C52718 + skin of eyelid (NCIT) @@ -21552,8 +19080,7 @@ - pedal digit skin (NCIT) - NCIT:C52719 + pedal digit skin (NCIT) @@ -21562,8 +19089,7 @@ - manual digit skin (NCIT) - NCIT:C52720 + manual digit skin (NCIT) @@ -21572,8 +19098,7 @@ - inferior hypogastric nerve plexus (NCIT) - NCIT:C52721 + inferior hypogastric nerve plexus (NCIT) @@ -21582,8 +19107,7 @@ - epiphysis (NCIT) - NCIT:C52722 + epiphysis (NCIT) @@ -21592,8 +19116,7 @@ - metaphysis (NCIT) - NCIT:C52723 + metaphysis (NCIT) @@ -21602,8 +19125,7 @@ - medial palpebral ligament (NCIT) - NCIT:C52724 + medial palpebral ligament (NCIT) @@ -21612,8 +19134,7 @@ - lobe of prostate (NCIT) - NCIT:C52726 + lobe of prostate (NCIT) @@ -21622,8 +19143,7 @@ - head of rib (NCIT) - NCIT:C52727 + head of rib (NCIT) @@ -21632,8 +19152,7 @@ - body of rib (NCIT) - NCIT:C52728 + body of rib (NCIT) @@ -21642,8 +19161,7 @@ - tubercle of rib (NCIT) - NCIT:C52729 + tubercle of rib (NCIT) @@ -21652,8 +19170,7 @@ - manubrium of sternum (NCIT) - NCIT:C52730 + manubrium of sternum (NCIT) @@ -21662,8 +19179,7 @@ - ventral thalamus (NCIT) - NCIT:C52731 + ventral thalamus (NCIT) @@ -21672,8 +19188,7 @@ - nucleus accumbens (NCIT) - NCIT:C52733 + nucleus accumbens (NCIT) @@ -21682,8 +19197,7 @@ - sural artery (NCIT) - NCIT:C52734 + sural artery (NCIT) @@ -21692,8 +19206,7 @@ - superior suprarenal artery (NCIT) - NCIT:C52736 + superior suprarenal artery (NCIT) @@ -21702,8 +19215,7 @@ - inferior suprarenal artery (NCIT) - NCIT:C52737 + inferior suprarenal artery (NCIT) @@ -21712,8 +19224,7 @@ - right testicular artery (NCIT) - NCIT:C52738 + right testicular artery (NCIT) @@ -21722,8 +19233,7 @@ - left testicular artery (NCIT) - NCIT:C52739 + left testicular artery (NCIT) @@ -21732,8 +19242,7 @@ - right renal artery (NCIT) - NCIT:C52740 + right renal artery (NCIT) @@ -21742,8 +19251,7 @@ - left renal artery (NCIT) - NCIT:C52741 + left renal artery (NCIT) @@ -21752,8 +19260,7 @@ - superior pancreaticoduodenal artery (NCIT) - NCIT:C52742 + superior pancreaticoduodenal artery (NCIT) @@ -21762,8 +19269,7 @@ - plantar metatarsal artery (NCIT) - NCIT:C52743 + plantar metatarsal artery (NCIT) @@ -21772,8 +19278,7 @@ - common palmar digital artery (NCIT) - NCIT:C52744 + common palmar digital artery (NCIT) @@ -21782,8 +19287,7 @@ - palatine bone (NCIT) - NCIT:C52745 + palatine bone (NCIT) @@ -21792,8 +19296,7 @@ - internal carotid nerve plexus (NCIT) - NCIT:C52746 + internal carotid nerve plexus (NCIT) @@ -21802,8 +19305,7 @@ - submucous nerve plexus (NCIT) - NCIT:C52747 + submucous nerve plexus (NCIT) @@ -21812,8 +19314,7 @@ - myenteric nerve plexus (NCIT) - NCIT:C52748 + myenteric nerve plexus (NCIT) @@ -21822,8 +19323,7 @@ - skin of leg (NCIT) - NCIT:C52749 + skin of leg (NCIT) @@ -21832,8 +19332,7 @@ - skin of pes (NCIT) - NCIT:C52750 + skin of pes (NCIT) @@ -21842,8 +19341,7 @@ - skin of ankle (NCIT) - NCIT:C52751 + skin of ankle (NCIT) @@ -21852,8 +19350,7 @@ - skin of wrist (NCIT) - NCIT:C52752 + skin of wrist (NCIT) @@ -21862,8 +19359,7 @@ - skin of manus (NCIT) - NCIT:C52753 + skin of manus (NCIT) @@ -21872,8 +19368,7 @@ - arm skin (NCIT) - NCIT:C52754 + arm skin (NCIT) @@ -21882,8 +19377,7 @@ - skin of elbow (NCIT) - NCIT:C52755 + skin of elbow (NCIT) @@ -21892,8 +19386,7 @@ - skin of neck (NCIT) - NCIT:C52756 + skin of neck (NCIT) @@ -21902,8 +19395,7 @@ - skin of head (NCIT) - NCIT:C52757 + skin of head (NCIT) @@ -21912,8 +19404,7 @@ - skin of abdomen (NCIT) - NCIT:C52758 + skin of abdomen (NCIT) @@ -21922,8 +19413,7 @@ - rib 9 (NCIT) - NCIT:C52759 + rib 9 (NCIT) @@ -21932,8 +19422,7 @@ - rib 8 (NCIT) - NCIT:C52760 + rib 8 (NCIT) @@ -21942,8 +19431,7 @@ - rib 7 (NCIT) - NCIT:C52761 + rib 7 (NCIT) @@ -21952,8 +19440,7 @@ - rib 6 (NCIT) - NCIT:C52762 + rib 6 (NCIT) @@ -21962,8 +19449,7 @@ - rib 5 (NCIT) - NCIT:C52763 + rib 5 (NCIT) @@ -21972,8 +19458,7 @@ - rib 4 (NCIT) - NCIT:C52764 + rib 4 (NCIT) @@ -21982,8 +19467,7 @@ - rib 3 (NCIT) - NCIT:C52765 + rib 3 (NCIT) @@ -21992,8 +19476,7 @@ - rib 2 (NCIT) - NCIT:C52766 + rib 2 (NCIT) @@ -22002,8 +19485,7 @@ - rib 12 (NCIT) - NCIT:C52767 + rib 12 (NCIT) @@ -22012,8 +19494,7 @@ - rib 11 (NCIT) - NCIT:C52768 + rib 11 (NCIT) @@ -22022,8 +19503,7 @@ - rib 10 (NCIT) - NCIT:C52769 + rib 10 (NCIT) @@ -22032,8 +19512,7 @@ - rib 1 (NCIT) - NCIT:C52770 + rib 1 (NCIT) @@ -22042,8 +19521,7 @@ - phalanx of manus (NCIT) - NCIT:C52771 + phalanx of manus (NCIT) @@ -22052,8 +19530,7 @@ - phalanx of pes (NCIT) - NCIT:C52772 + phalanx of pes (NCIT) @@ -22062,8 +19539,7 @@ - manual digit 5 phalanx (NCIT) - NCIT:C52773 + manual digit 5 phalanx (NCIT) @@ -22072,8 +19548,7 @@ - manual digit 4 phalanx (NCIT) - NCIT:C52774 + manual digit 4 phalanx (NCIT) @@ -22082,8 +19557,7 @@ - manual digit 3 phalanx (NCIT) - NCIT:C52775 + manual digit 3 phalanx (NCIT) @@ -22092,8 +19566,7 @@ - manual digit 2 phalanx (NCIT) - NCIT:C52776 + manual digit 2 phalanx (NCIT) @@ -22102,8 +19575,7 @@ - manual digit 1 phalanx (NCIT) - NCIT:C52777 + manual digit 1 phalanx (NCIT) @@ -22112,8 +19584,7 @@ - pedal digit 1 phalanx (NCIT) - NCIT:C52778 + pedal digit 1 phalanx (NCIT) @@ -22122,8 +19593,7 @@ - pedal digit 2 phalanx (NCIT) - NCIT:C52779 + pedal digit 2 phalanx (NCIT) @@ -22132,8 +19602,7 @@ - pedal digit 3 phalanx (NCIT) - NCIT:C52780 + pedal digit 3 phalanx (NCIT) @@ -22142,8 +19611,7 @@ - pedal digit 4 phalanx (NCIT) - NCIT:C52781 + pedal digit 4 phalanx (NCIT) @@ -22152,8 +19620,7 @@ - pedal digit 5 phalanx (NCIT) - NCIT:C52782 + pedal digit 5 phalanx (NCIT) @@ -22162,8 +19629,7 @@ - distal phalanx of pes (NCIT) - NCIT:C52783 + distal phalanx of pes (NCIT) @@ -22172,8 +19638,7 @@ - distal phalanx of manus (NCIT) - NCIT:C52784 + distal phalanx of manus (NCIT) @@ -22182,8 +19647,7 @@ - proximal phalanx of pes (NCIT) - NCIT:C52785 + proximal phalanx of pes (NCIT) @@ -22192,8 +19656,7 @@ - proximal phalanx of manus (NCIT) - NCIT:C52786 + proximal phalanx of manus (NCIT) @@ -22202,8 +19665,7 @@ - metatarsal bone of digit 5 (NCIT) - NCIT:C52787 + metatarsal bone of digit 5 (NCIT) @@ -22212,8 +19674,7 @@ - metatarsal bone of digit 4 (NCIT) - NCIT:C52788 + metatarsal bone of digit 4 (NCIT) @@ -22222,8 +19683,7 @@ - metatarsal bone of digit 3 (NCIT) - NCIT:C52789 + metatarsal bone of digit 3 (NCIT) @@ -22232,8 +19692,7 @@ - metatarsal bone of digit 2 (NCIT) - NCIT:C52790 + metatarsal bone of digit 2 (NCIT) @@ -22242,8 +19701,7 @@ - metatarsal bone of digit 1 (NCIT) - NCIT:C52791 + metatarsal bone of digit 1 (NCIT) @@ -22252,8 +19710,7 @@ - metacarpal bone of digit 5 (NCIT) - NCIT:C52792 + metacarpal bone of digit 5 (NCIT) @@ -22262,8 +19719,7 @@ - metacarpal bone of digit 4 (NCIT) - NCIT:C52793 + metacarpal bone of digit 4 (NCIT) @@ -22272,8 +19728,7 @@ - metacarpal bone of digit 3 (NCIT) - NCIT:C52794 + metacarpal bone of digit 3 (NCIT) @@ -22282,8 +19737,7 @@ - metacarpal bone of digit 2 (NCIT) - NCIT:C52795 + metacarpal bone of digit 2 (NCIT) @@ -22292,8 +19746,7 @@ - metacarpal bone of digit 1 (NCIT) - NCIT:C52796 + metacarpal bone of digit 1 (NCIT) @@ -22302,8 +19755,7 @@ - talus (NCIT) - NCIT:C52799 + talus (NCIT) @@ -22312,8 +19764,7 @@ - orbitalis muscle (NCIT) - NCIT:C52800 + orbitalis muscle (NCIT) @@ -22322,8 +19773,7 @@ - levator palpebrae superioris (NCIT) - NCIT:C52802 + levator palpebrae superioris (NCIT) @@ -22332,8 +19782,7 @@ - eyelid muscle (NCIT) - NCIT:C52803 + eyelid muscle (NCIT) @@ -22342,8 +19791,7 @@ - lumbosacral nerve plexus (NCIT) - NCIT:C52805 + lumbosacral nerve plexus (NCIT) @@ -22352,8 +19800,7 @@ - ulnar nerve (NCIT) - NCIT:C52807 + ulnar nerve (NCIT) @@ -22362,8 +19809,7 @@ - tibial nerve (NCIT) - NCIT:C52809 + tibial nerve (NCIT) @@ -22372,8 +19818,7 @@ - sciatic nerve (NCIT) - NCIT:C52810 + sciatic nerve (NCIT) @@ -22382,8 +19827,7 @@ - radial nerve (NCIT) - NCIT:C52812 + radial nerve (NCIT) @@ -22392,8 +19836,7 @@ - phrenic nerve (NCIT) - NCIT:C52813 + phrenic nerve (NCIT) @@ -22402,8 +19845,7 @@ - common fibular nerve (NCIT) - NCIT:C52814 + common fibular nerve (NCIT) @@ -22412,8 +19854,7 @@ - median nerve (NCIT) - NCIT:C52815 + median nerve (NCIT) @@ -22422,8 +19863,7 @@ - femoral nerve (NCIT) - NCIT:C52816 + femoral nerve (NCIT) @@ -22432,8 +19872,7 @@ - axillary nerve (NCIT) - NCIT:C52817 + axillary nerve (NCIT) @@ -22442,8 +19881,7 @@ - thoracic sympathetic nerve trunk (NCIT) - NCIT:C52827 + thoracic sympathetic nerve trunk (NCIT) @@ -22452,8 +19890,7 @@ - lumbar sympathetic nerve trunk (NCIT) - NCIT:C52828 + lumbar sympathetic nerve trunk (NCIT) @@ -22462,8 +19899,7 @@ - thoracic ganglion (NCIT) - NCIT:C52829 + thoracic ganglion (NCIT) @@ -22472,8 +19908,7 @@ - celiac ganglion (NCIT) - NCIT:C52830 + celiac ganglion (NCIT) @@ -22482,8 +19917,7 @@ - hypogastric nerve (NCIT) - NCIT:C52831 + hypogastric nerve (NCIT) @@ -22492,8 +19926,7 @@ - cardiac nerve plexus (NCIT) - NCIT:C52833 + cardiac nerve plexus (NCIT) @@ -22502,8 +19935,7 @@ - manual digit 1 (NCIT) - NCIT:C52834 + manual digit 1 (NCIT) @@ -22512,8 +19944,7 @@ - manual digit 2 (NCIT) - NCIT:C52835 + manual digit 2 (NCIT) @@ -22522,8 +19953,7 @@ - manual digit 3 (NCIT) - NCIT:C52836 + manual digit 3 (NCIT) @@ -22532,8 +19962,7 @@ - manual digit 4 (NCIT) - NCIT:C52837 + manual digit 4 (NCIT) @@ -22542,8 +19971,7 @@ - manual digit 5 (NCIT) - NCIT:C52838 + manual digit 5 (NCIT) @@ -22552,8 +19980,7 @@ - pedal digit 1 (NCIT) - NCIT:C52839 + pedal digit 1 (NCIT) @@ -22562,8 +19989,7 @@ - pedal digit 2 (NCIT) - NCIT:C52840 + pedal digit 2 (NCIT) @@ -22572,8 +19998,7 @@ - pedal digit 3 (NCIT) - NCIT:C52841 + pedal digit 3 (NCIT) @@ -22582,8 +20007,7 @@ - pedal digit 4 (NCIT) - NCIT:C52842 + pedal digit 4 (NCIT) @@ -22592,8 +20016,7 @@ - pedal digit 5 (NCIT) - NCIT:C52843 + pedal digit 5 (NCIT) @@ -22602,8 +20025,7 @@ - cerebellar artery (NCIT) - NCIT:C52845 + cerebellar artery (NCIT) @@ -22612,8 +20034,7 @@ - celiac artery (NCIT) - NCIT:C52846 + celiac artery (NCIT) @@ -22622,8 +20043,7 @@ - buccal artery (NCIT) - NCIT:C52847 + buccal artery (NCIT) @@ -22632,8 +20052,7 @@ - alveolar artery (NCIT) - NCIT:C52848 + alveolar artery (NCIT) @@ -22642,8 +20061,7 @@ - auricular artery (NCIT) - NCIT:C52849 + auricular artery (NCIT) @@ -22652,8 +20070,7 @@ - cervical artery (NCIT) - NCIT:C52850 + cervical artery (NCIT) @@ -22662,8 +20079,7 @@ - communicating artery (NCIT) - NCIT:C52851 + communicating artery (NCIT) @@ -22672,8 +20088,7 @@ - ductus arteriosus (NCIT) - NCIT:C52854 + ductus arteriosus (NCIT) @@ -22682,8 +20097,7 @@ - ethmoidal artery (NCIT) - NCIT:C52855 + ethmoidal artery (NCIT) @@ -22692,8 +20106,7 @@ - frontal artery (NCIT) - NCIT:C52856 + frontal artery (NCIT) @@ -22702,8 +20115,7 @@ - gastroepiploic artery (NCIT) - NCIT:C52857 + gastroepiploic artery (NCIT) @@ -22712,8 +20124,7 @@ - iliolumbar artery (NCIT) - NCIT:C52859 + iliolumbar artery (NCIT) @@ -22722,8 +20133,7 @@ - epigastric artery (NCIT) - NCIT:C52860 + epigastric artery (NCIT) @@ -22732,8 +20142,7 @@ - inferior epigastric artery (NCIT) - NCIT:C52861 + inferior epigastric artery (NCIT) @@ -22742,8 +20151,7 @@ - iliac circumflex artery (NCIT) - NCIT:C52863 + iliac circumflex artery (NCIT) @@ -22752,8 +20160,7 @@ - superficial circumflex iliac artery (NCIT) - NCIT:C52864 + superficial circumflex iliac artery (NCIT) @@ -22762,8 +20169,7 @@ - orbicularis oculi muscle (NCIT) - NCIT:C52886 + orbicularis oculi muscle (NCIT) @@ -22772,8 +20178,7 @@ - abductor pollicis longus (NCIT) - NCIT:C52888 + abductor pollicis longus (NCIT) @@ -22782,8 +20187,7 @@ - anterior abdominal wall muscle (NCIT) - NCIT:C52890 + anterior abdominal wall muscle (NCIT) @@ -22792,8 +20196,7 @@ - male external urethral sphincter (NCIT) - NCIT:C52891 + male external urethral sphincter (NCIT) @@ -22802,8 +20205,7 @@ - cleidobrachialis muscle (NCIT) - NCIT:C52892 + cleidobrachialis muscle (NCIT) @@ -22812,8 +20214,7 @@ - cleidocephalicus muscle (NCIT) - NCIT:C52893 + cleidocephalicus muscle (NCIT) @@ -22822,8 +20223,7 @@ - cleidooccipital muscle (NCIT) - NCIT:C52895 + cleidooccipital muscle (NCIT) @@ -22832,8 +20232,7 @@ - constrictor vulvae muscle (NCIT) - NCIT:C52898 + constrictor vulvae muscle (NCIT) @@ -22842,8 +20241,7 @@ - cutaneous trunci muscle (NCIT) - NCIT:C52901 + cutaneous trunci muscle (NCIT) @@ -22852,8 +20250,7 @@ - erector spinae muscle group (NCIT) - NCIT:C52902 + erector spinae muscle group (NCIT) @@ -22862,8 +20259,7 @@ - extensor carpi radialis brevis muscle (NCIT) - NCIT:C52911 + extensor carpi radialis brevis muscle (NCIT) @@ -22872,8 +20268,7 @@ - extensor carpi radialis longus muscle (NCIT) - NCIT:C52913 + extensor carpi radialis longus muscle (NCIT) @@ -22882,8 +20277,7 @@ - extensor carpi ulnaris muscle (NCIT) - NCIT:C52914 + extensor carpi ulnaris muscle (NCIT) @@ -22892,8 +20286,7 @@ - extensor digitorum communis (NCIT) - NCIT:C52916 + extensor digitorum communis (NCIT) @@ -22902,8 +20295,7 @@ - extensor digitorum lateralis muscle (NCIT) - NCIT:C52917 + extensor digitorum lateralis muscle (NCIT) @@ -22912,8 +20304,7 @@ - extensor digitorum longus (NCIT) - NCIT:C52918 + extensor digitorum longus (NCIT) @@ -22922,8 +20313,7 @@ - flexor digitorum longus (NCIT) - NCIT:C52921 + flexor digitorum longus (NCIT) @@ -22932,8 +20322,7 @@ - flexor digitorum profundus (NCIT) - NCIT:C52923 + flexor digitorum profundus (NCIT) @@ -22942,8 +20331,7 @@ - flexor hallucis longus (NCIT) - NCIT:C52925 + flexor hallucis longus (NCIT) @@ -22952,8 +20340,7 @@ - genioglossus muscle (NCIT) - NCIT:C52928 + genioglossus muscle (NCIT) @@ -22962,8 +20349,7 @@ - geniohyoid muscle (NCIT) - NCIT:C52930 + geniohyoid muscle (NCIT) @@ -22972,8 +20358,7 @@ - gluteus medius (NCIT) - NCIT:C52933 + gluteus medius (NCIT) @@ -22982,8 +20367,7 @@ - gracilis (NCIT) - NCIT:C52935 + gracilis (NCIT) @@ -22992,8 +20376,7 @@ - inferior rectal artery (NCIT) - NCIT:C52938 + inferior rectal artery (NCIT) @@ -23002,8 +20385,7 @@ - infraorbital artery (NCIT) - NCIT:C52940 + infraorbital artery (NCIT) @@ -23012,8 +20394,7 @@ - internal thoracic artery (NCIT) - NCIT:C52941 + internal thoracic artery (NCIT) @@ -23022,8 +20403,7 @@ - iliothoracic muscle (NCIT) - NCIT:C52944 + iliothoracic muscle (NCIT) @@ -23032,8 +20412,7 @@ - ischiocavernosus muscle (NCIT) - NCIT:C52946 + ischiocavernosus muscle (NCIT) @@ -23042,8 +20421,7 @@ - artery of lip (NCIT) - NCIT:C52947 + artery of lip (NCIT) @@ -23052,8 +20430,7 @@ - lacrimal artery (NCIT) - NCIT:C52948 + lacrimal artery (NCIT) @@ -23062,8 +20439,7 @@ - levator nasolabialis muscle (NCIT) - NCIT:C52950 + levator nasolabialis muscle (NCIT) @@ -23072,8 +20448,7 @@ - lateral thoracic artery (NCIT) - NCIT:C52951 + lateral thoracic artery (NCIT) @@ -23082,8 +20457,7 @@ - longissimus lumborum muscle (NCIT) - NCIT:C52954 + longissimus lumborum muscle (NCIT) @@ -23092,8 +20466,7 @@ - longus capitis muscle (NCIT) - NCIT:C52956 + longus capitis muscle (NCIT) @@ -23102,8 +20475,7 @@ - longus colli muscle (NCIT) - NCIT:C52959 + longus colli muscle (NCIT) @@ -23112,8 +20484,7 @@ - lingual artery (NCIT) - NCIT:C52961 + lingual artery (NCIT) @@ -23122,8 +20493,7 @@ - mylohyoid muscle (NCIT) - NCIT:C52962 + mylohyoid muscle (NCIT) @@ -23132,8 +20502,7 @@ - medial plantar artery (NCIT) - NCIT:C52968 + medial plantar artery (NCIT) @@ -23142,8 +20511,7 @@ - medial tarsal artery (NCIT) - NCIT:C52969 + medial tarsal artery (NCIT) @@ -23152,8 +20520,7 @@ - median artery (NCIT) - NCIT:C52970 + median artery (NCIT) @@ -23162,8 +20529,7 @@ - omohyoid muscle (NCIT) - NCIT:C52971 + omohyoid muscle (NCIT) @@ -23172,8 +20538,7 @@ - omotransversarius muscle (NCIT) - NCIT:C52972 + omotransversarius muscle (NCIT) @@ -23182,8 +20547,7 @@ - mental artery (NCIT) - NCIT:C52973 + mental artery (NCIT) @@ -23192,8 +20556,7 @@ - mesenteric artery (NCIT) - NCIT:C52975 + mesenteric artery (NCIT) @@ -23202,8 +20565,7 @@ - parotidoauricular muscle (NCIT) - NCIT:C52976 + parotidoauricular muscle (NCIT) @@ -23212,8 +20574,7 @@ - pectineus muscle (NCIT) - NCIT:C52978 + pectineus muscle (NCIT) @@ -23222,8 +20583,7 @@ - dorsal metacarpal artery (NCIT) - NCIT:C52980 + dorsal metacarpal artery (NCIT) @@ -23232,8 +20592,7 @@ - middle colic artery (NCIT) - NCIT:C52981 + middle colic artery (NCIT) @@ -23242,8 +20601,7 @@ - dorsal nasal artery (NCIT) - NCIT:C52983 + dorsal nasal artery (NCIT) @@ -23252,8 +20610,7 @@ - scalenus posterior (NCIT) - NCIT:C52985 + scalenus posterior (NCIT) @@ -23262,8 +20619,7 @@ - scalenus medius (NCIT) - NCIT:C52986 + scalenus medius (NCIT) @@ -23272,8 +20628,7 @@ - semimembranosus muscle (NCIT) - NCIT:C52987 + semimembranosus muscle (NCIT) @@ -23282,8 +20637,7 @@ - semispinalis capitis (NCIT) - NCIT:C52989 + semispinalis capitis (NCIT) @@ -23292,8 +20646,7 @@ - semispinalis cervicis (NCIT) - NCIT:C52991 + semispinalis cervicis (NCIT) @@ -23302,8 +20655,7 @@ - pancreaticoduodenal artery (NCIT) - NCIT:C52992 + pancreaticoduodenal artery (NCIT) @@ -23312,8 +20664,7 @@ - perineal artery (NCIT) - NCIT:C52994 + perineal artery (NCIT) @@ -23322,8 +20673,7 @@ - central retinal artery (NCIT) - NCIT:C52997 + central retinal artery (NCIT) @@ -23332,8 +20682,7 @@ - subcostal artery (NCIT) - NCIT:C53000 + subcostal artery (NCIT) @@ -23342,8 +20691,7 @@ - sublingual artery (NCIT) - NCIT:C53002 + sublingual artery (NCIT) @@ -23352,8 +20700,7 @@ - superficial cervical artery (NCIT) - NCIT:C53005 + superficial cervical artery (NCIT) @@ -23362,8 +20709,7 @@ - semispinalis thoracis (NCIT) - NCIT:C53006 + semispinalis thoracis (NCIT) @@ -23372,8 +20718,7 @@ - serratus dorsalis inferior muscle (NCIT) - NCIT:C53007 + serratus dorsalis inferior muscle (NCIT) @@ -23382,8 +20727,7 @@ - serratus dorsalis superior muscle (NCIT) - NCIT:C53012 + serratus dorsalis superior muscle (NCIT) @@ -23392,8 +20736,7 @@ - serratus ventralis (NCIT) - NCIT:C53014 + serratus ventralis (NCIT) @@ -23402,8 +20745,7 @@ - sphincter colli superficialis muscle (NCIT) - NCIT:C53016 + sphincter colli superficialis muscle (NCIT) @@ -23412,8 +20754,7 @@ - thoracodorsal artery (NCIT) - NCIT:C53018 + thoracodorsal artery (NCIT) @@ -23422,8 +20763,7 @@ - thyroid artery (NCIT) - NCIT:C53020 + thyroid artery (NCIT) @@ -23432,8 +20772,7 @@ - superior thyroid artery (NCIT) - NCIT:C53021 + superior thyroid artery (NCIT) @@ -23442,8 +20781,7 @@ - inferior thyroid artery (NCIT) - NCIT:C53022 + inferior thyroid artery (NCIT) @@ -23452,8 +20790,7 @@ - transverse facial artery (NCIT) - NCIT:C53025 + transverse facial artery (NCIT) @@ -23462,8 +20799,7 @@ - anterior auricular vein (NCIT) - NCIT:C53027 + anterior auricular vein (NCIT) @@ -23472,8 +20808,7 @@ - azygos vein (NCIT) - NCIT:C53029 + azygos vein (NCIT) @@ -23482,8 +20817,7 @@ - bronchial vein (NCIT) - NCIT:C53031 + bronchial vein (NCIT) @@ -23492,8 +20826,7 @@ - cerebellar vein (NCIT) - NCIT:C53032 + cerebellar vein (NCIT) @@ -23502,8 +20835,7 @@ - cerebral vein (NCIT) - NCIT:C53037 + cerebral vein (NCIT) @@ -23512,8 +20844,7 @@ - spinalis thoracis muscle (NCIT) - NCIT:C53038 + spinalis thoracis muscle (NCIT) @@ -23522,8 +20853,7 @@ - cutaneous vein (NCIT) - NCIT:C53041 + cutaneous vein (NCIT) @@ -23532,8 +20862,7 @@ - muscle of posterior compartment of hindlimb stylopod (NCIT) - NCIT:C53042 + muscle of posterior compartment of hindlimb stylopod (NCIT) @@ -23542,8 +20871,7 @@ - digital vein (NCIT) - NCIT:C53043 + digital vein (NCIT) @@ -23552,8 +20880,7 @@ - sternohyoid muscle (NCIT) - NCIT:C53044 + sternohyoid muscle (NCIT) @@ -23562,8 +20889,7 @@ - epigastric vein (NCIT) - NCIT:C53045 + epigastric vein (NCIT) @@ -23572,8 +20898,7 @@ - ileal vein (NCIT) - NCIT:C53046 + ileal vein (NCIT) @@ -23582,8 +20907,7 @@ - ileocolic vein (NCIT) - NCIT:C53047 + ileocolic vein (NCIT) @@ -23592,8 +20916,7 @@ - iliolumbar vein (NCIT) - NCIT:C53048 + iliolumbar vein (NCIT) @@ -23602,8 +20925,7 @@ - inferior palpebral vein (NCIT) - NCIT:C53049 + inferior palpebral vein (NCIT) @@ -23612,8 +20934,7 @@ - testicular vein (NCIT) - NCIT:C53050 + testicular vein (NCIT) @@ -23622,8 +20943,7 @@ - masseteric vein (NCIT) - NCIT:C53051 + masseteric vein (NCIT) @@ -23632,8 +20952,7 @@ - masseteric artery (NCIT) - NCIT:C53052 + masseteric artery (NCIT) @@ -23642,8 +20961,7 @@ - mesenteric vein (NCIT) - NCIT:C53055 + mesenteric vein (NCIT) @@ -23652,8 +20970,7 @@ - obturator vein (NCIT) - NCIT:C53056 + obturator vein (NCIT) @@ -23662,8 +20979,7 @@ - ophthalmic plexus (NCIT) - NCIT:C53057 + ophthalmic plexus (NCIT) @@ -23672,8 +20988,7 @@ - ovarian vein (NCIT) - NCIT:C53058 + ovarian vein (NCIT) @@ -23682,8 +20997,7 @@ - pancreatic tributary of splenic vein (NCIT) - NCIT:C53059 + pancreatic tributary of splenic vein (NCIT) @@ -23692,8 +21006,7 @@ - pancreaticoduodenal vein (NCIT) - NCIT:C53060 + pancreaticoduodenal vein (NCIT) @@ -23702,8 +21015,7 @@ - pericardiacophrenic vein (NCIT) - NCIT:C53061 + pericardiacophrenic vein (NCIT) @@ -23712,8 +21024,7 @@ - phrenic vein (NCIT) - NCIT:C53062 + phrenic vein (NCIT) @@ -23722,8 +21033,7 @@ - central retinal vein (NCIT) - NCIT:C53063 + central retinal vein (NCIT) @@ -23732,8 +21042,7 @@ - sternooccipital muscle (NCIT) - NCIT:C53069 + sternooccipital muscle (NCIT) @@ -23742,8 +21051,7 @@ - sternothyroid muscle (NCIT) - NCIT:C53070 + sternothyroid muscle (NCIT) @@ -23752,8 +21060,7 @@ - styloglossus (NCIT) - NCIT:C53071 + styloglossus (NCIT) @@ -23762,8 +21069,7 @@ - tensor fasciae latae muscle (NCIT) - NCIT:C53072 + tensor fasciae latae muscle (NCIT) @@ -23772,8 +21078,7 @@ - vastus lateralis (NCIT) - NCIT:C53073 + vastus lateralis (NCIT) @@ -23782,8 +21087,7 @@ - soleus muscle (NCIT) - NCIT:C53075 + soleus muscle (NCIT) @@ -23792,8 +21096,7 @@ - tibialis (NCIT) - NCIT:C53076 + tibialis (NCIT) @@ -23802,8 +21105,7 @@ - tibialis posterior (NCIT) - NCIT:C53078 + tibialis posterior (NCIT) @@ -23812,8 +21114,7 @@ - tibialis anterior (NCIT) - NCIT:C53079 + tibialis anterior (NCIT) @@ -23822,8 +21123,7 @@ - subcostal vein (NCIT) - NCIT:C53121 + subcostal vein (NCIT) @@ -23832,8 +21132,7 @@ - right subcostal vein (NCIT) - NCIT:C53123 + right subcostal vein (NCIT) @@ -23842,8 +21141,7 @@ - left subcostal vein (NCIT) - NCIT:C53125 + left subcostal vein (NCIT) @@ -23852,8 +21150,7 @@ - submental vein (NCIT) - NCIT:C53128 + submental vein (NCIT) @@ -23862,8 +21159,7 @@ - suprarenal vein (NCIT) - NCIT:C53129 + suprarenal vein (NCIT) @@ -23872,8 +21168,7 @@ - right suprarenal vein (NCIT) - NCIT:C53131 + right suprarenal vein (NCIT) @@ -23882,8 +21177,7 @@ - left suprarenal vein (NCIT) - NCIT:C53138 + left suprarenal vein (NCIT) @@ -23892,8 +21186,7 @@ - temporal vein (NCIT) - NCIT:C53140 + temporal vein (NCIT) @@ -23902,8 +21195,7 @@ - thoracic vein (NCIT) - NCIT:C53142 + thoracic vein (NCIT) @@ -23912,8 +21204,7 @@ - thymic vein (NCIT) - NCIT:C53143 + thymic vein (NCIT) @@ -23922,8 +21213,7 @@ - vertebral vein (NCIT) - NCIT:C53145 + vertebral vein (NCIT) @@ -23932,8 +21222,7 @@ - popliteal lymph node (NCIT) - NCIT:C53146 + popliteal lymph node (NCIT) @@ -23942,8 +21231,7 @@ - biceps femoris (NCIT) - NCIT:C53147 + biceps femoris (NCIT) @@ -23952,8 +21240,7 @@ - brachialis muscle (NCIT) - NCIT:C53149 + brachialis muscle (NCIT) @@ -23962,8 +21249,7 @@ - buccinator muscle (NCIT) - NCIT:C53150 + buccinator muscle (NCIT) @@ -23972,8 +21258,7 @@ - coracobrachialis muscle (NCIT) - NCIT:C53151 + coracobrachialis muscle (NCIT) @@ -23982,8 +21267,7 @@ - depressor labii inferioris (NCIT) - NCIT:C53152 + depressor labii inferioris (NCIT) @@ -23992,8 +21276,7 @@ - flexor carpi radialis muscle (NCIT) - NCIT:C53155 + flexor carpi radialis muscle (NCIT) @@ -24002,8 +21285,7 @@ - flexor carpi ulnaris muscle (NCIT) - NCIT:C53156 + flexor carpi ulnaris muscle (NCIT) @@ -24012,8 +21294,7 @@ - hyoglossus muscle (NCIT) - NCIT:C53161 + hyoglossus muscle (NCIT) @@ -24022,8 +21303,7 @@ - levator labii superioris (NCIT) - NCIT:C53164 + levator labii superioris (NCIT) @@ -24032,8 +21312,7 @@ - longissimus capitis (NCIT) - NCIT:C53166 + longissimus capitis (NCIT) @@ -24042,8 +21321,7 @@ - longissimus cervicis muscle (NCIT) - NCIT:C53167 + longissimus cervicis muscle (NCIT) @@ -24052,8 +21330,7 @@ - longissimus thoracis muscle (NCIT) - NCIT:C53169 + longissimus thoracis muscle (NCIT) @@ -24062,8 +21339,7 @@ - palatoglossus muscle (NCIT) - NCIT:C53170 + palatoglossus muscle (NCIT) @@ -24072,8 +21348,7 @@ - fibularis longus (NCIT) - NCIT:C53171 + fibularis longus (NCIT) @@ -24082,8 +21357,7 @@ - interosseous muscle of pes (NCIT) - NCIT:C53172 + interosseous muscle of pes (NCIT) @@ -24092,8 +21366,7 @@ - interosseous muscle of manus (NCIT) - NCIT:C53173 + interosseous muscle of manus (NCIT) @@ -24102,8 +21375,7 @@ - pronator teres (NCIT) - NCIT:C53174 + pronator teres (NCIT) @@ -24112,8 +21384,7 @@ - rectus femoris (NCIT) - NCIT:C53175 + rectus femoris (NCIT) @@ -24122,8 +21393,7 @@ - semitendinosus (NCIT) - NCIT:C53176 + semitendinosus (NCIT) @@ -24132,8 +21402,7 @@ - splenius (NCIT) - NCIT:C53177 + splenius (NCIT) @@ -24142,8 +21411,7 @@ - thyrohyoid muscle (NCIT) - NCIT:C53178 + thyrohyoid muscle (NCIT) @@ -24152,8 +21420,7 @@ - transversus abdominis muscle (NCIT) - NCIT:C53179 + transversus abdominis muscle (NCIT) @@ -24162,8 +21429,7 @@ - transversus thoracis (NCIT) - NCIT:C53180 + transversus thoracis (NCIT) @@ -24172,8 +21438,7 @@ - triceps surae (NCIT) - NCIT:C53181 + triceps surae (NCIT) @@ -24182,8 +21447,7 @@ - zygomaticus muscle (NCIT) - NCIT:C53182 + zygomaticus muscle (NCIT) @@ -24192,8 +21456,7 @@ - zygomaticus major muscle (NCIT) - NCIT:C53183 + zygomaticus major muscle (NCIT) @@ -24202,8 +21465,7 @@ - zygomaticus minor muscle (NCIT) - NCIT:C53184 + zygomaticus minor muscle (NCIT) @@ -24212,8 +21474,7 @@ - skin of limb (NCIT) - NCIT:C53276 + skin of limb (NCIT) @@ -24222,8 +21483,7 @@ - blood vessel endothelium (NCIT) - NCIT:C53395 + blood vessel endothelium (NCIT) @@ -24232,8 +21492,7 @@ - nerve root (NCIT) - NCIT:C54024 + nerve root (NCIT) @@ -24242,8 +21501,7 @@ - cerebellopontine angle (NCIT) - NCIT:C54057 + cerebellopontine angle (NCIT) @@ -24252,8 +21510,7 @@ - Rathke's pouch (NCIT) - NCIT:C54098 + Rathke's pouch (NCIT) @@ -24262,8 +21519,7 @@ - germ layer (NCIT) - NCIT:C54105 + germ layer (NCIT) @@ -24272,8 +21528,7 @@ - mouth floor (NCIT) - NCIT:C54187 + mouth floor (NCIT) @@ -24282,8 +21537,7 @@ - rectosigmoid junction (NCIT) - NCIT:C54188 + rectosigmoid junction (NCIT) @@ -24292,8 +21546,7 @@ - colorectum (NCIT) - NCIT:C54189 + colorectum (NCIT) @@ -24302,8 +21555,7 @@ - gingiva of lower jaw (NCIT) - NCIT:C54204 + gingiva of lower jaw (NCIT) @@ -24312,8 +21564,7 @@ - gingiva of upper jaw (NCIT) - NCIT:C54205 + gingiva of upper jaw (NCIT) @@ -24322,8 +21573,7 @@ - urachus epithelium (NCIT) - NCIT:C54210 + urachus epithelium (NCIT) @@ -24332,8 +21582,7 @@ - retromolar triangle (NCIT) - NCIT:C54223 + retromolar triangle (NCIT) @@ -24342,8 +21591,7 @@ - throat (NCIT) - NCIT:C54272 + throat (NCIT) @@ -24352,8 +21600,7 @@ - dental epithelium (NCIT) - NCIT:C54296 + dental epithelium (NCIT) @@ -24362,8 +21609,7 @@ - cervix glandular epithelium (NCIT) - NCIT:C54414 + cervix glandular epithelium (NCIT) @@ -24372,8 +21618,7 @@ - renal pelvis/ureter (NCIT) - NCIT:C54419 + renal pelvis/ureter (NCIT) @@ -24382,8 +21627,7 @@ - kidney pelvis urothelium (NCIT) - NCIT:C54556 + kidney pelvis urothelium (NCIT) @@ -24392,8 +21636,7 @@ - exorbital lacrimal gland (NCIT) - NCIT:C60564 + exorbital lacrimal gland (NCIT) @@ -24402,8 +21645,7 @@ - intraorbital lacrimal gland (NCIT) - NCIT:C60574 + intraorbital lacrimal gland (NCIT) @@ -24412,8 +21654,7 @@ - periampullary region of duodenum (NCIT) - NCIT:C60699 + periampullary region of duodenum (NCIT) @@ -24422,8 +21663,7 @@ - molar tooth 3 (NCIT) - NCIT:C60732 + molar tooth 3 (NCIT) @@ -24432,8 +21672,7 @@ - mucosa of anal canal (NCIT) - NCIT:C60784 + mucosa of anal canal (NCIT) @@ -24442,8 +21681,7 @@ - upper urinary tract (NCIT) - NCIT:C61107 + upper urinary tract (NCIT) @@ -24452,8 +21690,7 @@ - minor vestibular gland (NCIT) - NCIT:C61122 + minor vestibular gland (NCIT) @@ -24462,8 +21699,7 @@ - uterine ligament (NCIT) - NCIT:C61360 + uterine ligament (NCIT) @@ -24472,8 +21708,7 @@ - egg chamber (NCIT) - NCIT:C61362 + egg chamber (NCIT) @@ -24482,8 +21717,7 @@ - outflow part of right ventricle (NCIT) - NCIT:C61368 + outflow part of right ventricle (NCIT) @@ -24492,8 +21726,7 @@ - appendage (NCIT) - NCIT:C61460 + appendage (NCIT) @@ -24502,8 +21735,7 @@ - germinal epithelium of ovary (NCIT) - NCIT:C61518 + germinal epithelium of ovary (NCIT) @@ -24512,8 +21744,7 @@ - anatomical projection (NCIT) - NCIT:C61549 + anatomical projection (NCIT) @@ -24522,8 +21753,7 @@ - rete ovarii (NCIT) - NCIT:C61561 + rete ovarii (NCIT) @@ -24532,8 +21762,7 @@ - neck of femur (NCIT) - NCIT:C61563 + neck of femur (NCIT) @@ -24542,8 +21771,7 @@ - dermatome (NCIT) - NCIT:C61572 + dermatome (NCIT) @@ -24552,8 +21780,7 @@ - epidermal-dermal junction (NCIT) - NCIT:C62356 + epidermal-dermal junction (NCIT) @@ -24562,8 +21789,7 @@ - urinary bladder detrusor smooth muscle (NCIT) - NCIT:C62404 + urinary bladder detrusor smooth muscle (NCIT) @@ -24572,8 +21798,7 @@ - uncinate process of pancreas (NCIT) - NCIT:C62432 + uncinate process of pancreas (NCIT) @@ -24582,8 +21807,7 @@ - chest wall (NCIT) - NCIT:C62484 + chest wall (NCIT) @@ -24592,8 +21816,7 @@ - hair outer root sheath (NCIT) - NCIT:C62490 + hair outer root sheath (NCIT) @@ -24602,8 +21825,7 @@ - trigeminal ganglion (NCIT) - NCIT:C62642 + trigeminal ganglion (NCIT) @@ -24612,8 +21834,7 @@ - infraclavicular lymph node (NCIT) - NCIT:C63705 + infraclavicular lymph node (NCIT) @@ -24622,8 +21843,7 @@ - facial bone (NCIT) - NCIT:C63706 + facial bone (NCIT) @@ -24632,8 +21852,7 @@ - prostatic utricle (NCIT) - NCIT:C63862 + prostatic utricle (NCIT) @@ -24642,8 +21861,7 @@ - hip (NCIT) - NCIT:C64193 + hip (NCIT) @@ -24652,8 +21870,7 @@ - skin of knee (NCIT) - NCIT:C64859 + skin of knee (NCIT) @@ -24662,8 +21879,7 @@ - celiac lymph node (NCIT) - NCIT:C65166 + celiac lymph node (NCIT) @@ -24672,8 +21888,7 @@ - cell layer (NCIT) - NCIT:C66831 + cell layer (NCIT) @@ -24682,8 +21897,7 @@ - carotid body (NCIT) - NCIT:C66852 + carotid body (NCIT) @@ -24692,8 +21906,7 @@ - stroma (NCIT) - NCIT:C67387 + stroma (NCIT) @@ -24702,8 +21915,7 @@ - epicondyle (NCIT) - NCIT:C69300 + epicondyle (NCIT) @@ -24712,8 +21924,7 @@ - cervical region of vertebral column (NCIT) - NCIT:C69313 + cervical region of vertebral column (NCIT) @@ -24722,8 +21933,7 @@ - lumbar region of vertebral column (NCIT) - NCIT:C69314 + lumbar region of vertebral column (NCIT) @@ -24732,8 +21942,7 @@ - thoracic region of vertebral column (NCIT) - NCIT:C69315 + thoracic region of vertebral column (NCIT) @@ -24742,8 +21951,7 @@ - pore (NCIT) - NCIT:C70672 + pore (NCIT) @@ -24752,8 +21960,7 @@ - hilum (NCIT) - NCIT:C73467 + hilum (NCIT) @@ -24762,8 +21969,7 @@ - tonsillar ring (NCIT) - NCIT:C73468 + tonsillar ring (NCIT) @@ -24772,8 +21978,7 @@ - suprachiasmatic nucleus (NCIT) - NCIT:C74537 + suprachiasmatic nucleus (NCIT) @@ -24782,8 +21987,7 @@ - accessory lacrimal gland (NCIT) - NCIT:C74586 + accessory lacrimal gland (NCIT) @@ -24792,8 +21996,7 @@ - parenchyma (NCIT) - NCIT:C74601 + parenchyma (NCIT) @@ -24802,8 +22005,7 @@ - neurovascular bundle (NCIT) - NCIT:C74603 + neurovascular bundle (NCIT) @@ -24812,8 +22014,7 @@ - obturator foramen (NCIT) - NCIT:C75332 + obturator foramen (NCIT) @@ -24822,8 +22023,7 @@ - layer of muscle tissue (NCIT) - NCIT:C75444 + layer of muscle tissue (NCIT) @@ -24832,8 +22032,7 @@ - obturator nerve (NCIT) - NCIT:C75909 + obturator nerve (NCIT) @@ -24842,8 +22041,7 @@ - umbilicus (NCIT) - NCIT:C77533 + umbilicus (NCIT) @@ -24852,8 +22050,7 @@ - abdominal wall (NCIT) - NCIT:C77608 + abdominal wall (NCIT) @@ -24862,8 +22059,7 @@ - gizzard (NCIT) - NCIT:C77615 + gizzard (NCIT) @@ -24872,8 +22068,7 @@ - nictitans gland (NCIT) - NCIT:C77616 + nictitans gland (NCIT) @@ -24882,8 +22077,7 @@ - female preputial gland (NCIT) - NCIT:C77617 + female preputial gland (NCIT) @@ -24892,8 +22086,7 @@ - coagulating gland (NCIT) - NCIT:C77618 + coagulating gland (NCIT) @@ -24902,8 +22095,7 @@ - Harderian gland (NCIT) - NCIT:C77619 + Harderian gland (NCIT) @@ -24912,8 +22104,7 @@ - perianal sebaceous gland (NCIT) - NCIT:C77620 + perianal sebaceous gland (NCIT) @@ -24922,8 +22113,7 @@ - zygomatic gland (NCIT) - NCIT:C77624 + zygomatic gland (NCIT) @@ -24932,8 +22122,7 @@ - hindlimb (NCIT) - NCIT:C77625 + hindlimb (NCIT) @@ -24942,8 +22131,7 @@ - mouth mucosa (NCIT) - NCIT:C77637 + mouth mucosa (NCIT) @@ -24952,8 +22140,7 @@ - cranial cavity (NCIT) - NCIT:C77638 + cranial cavity (NCIT) @@ -24962,8 +22149,7 @@ - hepatic lymph node (NCIT) - NCIT:C77640 + hepatic lymph node (NCIT) @@ -24972,8 +22158,7 @@ - mesenteric lymph node (NCIT) - NCIT:C77641 + mesenteric lymph node (NCIT) @@ -24982,8 +22167,7 @@ - pancreatic lymph node (NCIT) - NCIT:C77642 + pancreatic lymph node (NCIT) @@ -24992,8 +22176,7 @@ - paraaortic lymph node (NCIT) - NCIT:C77643 + paraaortic lymph node (NCIT) @@ -25002,8 +22185,7 @@ - renal lymph node (NCIT) - NCIT:C77646 + renal lymph node (NCIT) @@ -25012,8 +22194,7 @@ - sacral lymph node (NCIT) - NCIT:C77647 + sacral lymph node (NCIT) @@ -25022,8 +22203,7 @@ - retropharyngeal lymph node (NCIT) - NCIT:C77649 + retropharyngeal lymph node (NCIT) @@ -25032,8 +22212,7 @@ - submandibular lymph node (NCIT) - NCIT:C77650 + submandibular lymph node (NCIT) @@ -25042,8 +22221,7 @@ - tracheobronchial lymph node (NCIT) - NCIT:C77651 + tracheobronchial lymph node (NCIT) @@ -25052,8 +22230,7 @@ - intercostal lymph node (NCIT) - NCIT:C77652 + intercostal lymph node (NCIT) @@ -25062,8 +22239,7 @@ - ileocolic lymph node (NCIT) - NCIT:C77653 + ileocolic lymph node (NCIT) @@ -25072,8 +22248,7 @@ - prescapular lymph node (NCIT) - NCIT:C77654 + prescapular lymph node (NCIT) @@ -25082,8 +22257,7 @@ - nictitating membrane (NCIT) - NCIT:C77657 + nictitating membrane (NCIT) @@ -25092,8 +22266,7 @@ - nasal-associated lymphoid tissue (NCIT) - NCIT:C77659 + nasal-associated lymphoid tissue (NCIT) @@ -25102,8 +22275,7 @@ - autopod region (NCIT) - NCIT:C77660 + autopod region (NCIT) @@ -25112,8 +22284,7 @@ - stomach glandular region (NCIT) - NCIT:C77661 + stomach glandular region (NCIT) @@ -25122,8 +22293,7 @@ - stomach non-glandular region (NCIT) - NCIT:C77662 + stomach non-glandular region (NCIT) @@ -25132,8 +22302,7 @@ - post-anal tail (NCIT) - NCIT:C77663 + post-anal tail (NCIT) @@ -25142,8 +22311,7 @@ - vomit (NCIT) - NCIT:C77666 + vomit (NCIT) @@ -25152,8 +22320,7 @@ - auricular vein (NCIT) - NCIT:C77673 + auricular vein (NCIT) @@ -25162,8 +22329,7 @@ - plantar nerve (NCIT) - NCIT:C77674 + plantar nerve (NCIT) @@ -25172,8 +22338,7 @@ - sural nerve (NCIT) - NCIT:C77675 + sural nerve (NCIT) @@ -25182,8 +22347,7 @@ - Zymbal's gland (NCIT) - NCIT:C77954 + Zymbal's gland (NCIT) @@ -25192,8 +22356,7 @@ - ampullary gland (NCIT) - NCIT:C77955 + ampullary gland (NCIT) @@ -25202,8 +22365,7 @@ - murine forestomach (NCIT) - NCIT:C77956 + murine forestomach (NCIT) @@ -25212,8 +22374,7 @@ - oviduct (NCIT) - NCIT:C77957 + oviduct (NCIT) @@ -25222,8 +22383,7 @@ - gluteal muscle (NCIT) - NCIT:C78205 + gluteal muscle (NCIT) @@ -25232,8 +22392,7 @@ - male preputial gland (NCIT) - NCIT:C79432 + male preputial gland (NCIT) @@ -25242,8 +22401,7 @@ - lesser sac (NCIT) - NCIT:C81014 + lesser sac (NCIT) @@ -25252,8 +22410,7 @@ - chin (NCIT) - NCIT:C81169 + chin (NCIT) @@ -25262,8 +22419,7 @@ - vault of skull (NCIT) - NCIT:C81188 + vault of skull (NCIT) @@ -25272,8 +22428,7 @@ - left ear (NCIT) - NCIT:C81259 + left ear (NCIT) @@ -25282,8 +22437,7 @@ - right ear (NCIT) - NCIT:C81285 + right ear (NCIT) @@ -25292,8 +22446,7 @@ - gubernaculum (male or female) (NCIT) - NCIT:C82952 + gubernaculum (male or female) (NCIT) @@ -25302,8 +22455,7 @@ - supraorbital ridge (NCIT) - NCIT:C82953 + supraorbital ridge (NCIT) @@ -25312,8 +22464,7 @@ - trabecular network of bone (NCIT) - NCIT:C82999 + trabecular network of bone (NCIT) @@ -25322,8 +22473,7 @@ - condyle (NCIT) - NCIT:C83002 + condyle (NCIT) @@ -25332,8 +22482,7 @@ - dermal papilla (NCIT) - NCIT:C83189 + dermal papilla (NCIT) @@ -25342,8 +22491,7 @@ - epithelium of crypt of Lieberkuhn (NCIT) - NCIT:C83191 + epithelium of crypt of Lieberkuhn (NCIT) @@ -25352,8 +22500,7 @@ - perivascular space (NCIT) - NCIT:C83196 + perivascular space (NCIT) @@ -25362,8 +22509,7 @@ - articular capsule (NCIT) - NCIT:C84388 + articular capsule (NCIT) @@ -25372,8 +22518,7 @@ - odontoid process of cervical vertebra 2 (NCIT) - NCIT:C86970 + odontoid process of cervical vertebra 2 (NCIT) @@ -25382,8 +22527,7 @@ - frenulum of tongue (NCIT) - NCIT:C87076 + frenulum of tongue (NCIT) @@ -25392,8 +22536,7 @@ - obturator lymph node (NCIT) - NCIT:C88141 + obturator lymph node (NCIT) @@ -25402,8 +22545,7 @@ - internal iliac lymph node (NCIT) - NCIT:C88142 + internal iliac lymph node (NCIT) @@ -25412,8 +22554,7 @@ - external iliac lymph node (NCIT) - NCIT:C88143 + external iliac lymph node (NCIT) @@ -25422,8 +22563,7 @@ - cerebellar peduncle (NCIT) - NCIT:C88147 + cerebellar peduncle (NCIT) @@ -25432,8 +22572,7 @@ - coat of hair (NCIT) - NCIT:C88212 + coat of hair (NCIT) @@ -25442,8 +22581,7 @@ - alveolar ridge (NCIT) - NCIT:C89749 + alveolar ridge (NCIT) @@ -25452,8 +22590,7 @@ - paracolic gutter (NCIT) - NCIT:C89787 + paracolic gutter (NCIT) @@ -25462,8 +22599,7 @@ - forehead (NCIT) - NCIT:C89803 + forehead (NCIT) @@ -25472,8 +22608,7 @@ - buttock (NCIT) - NCIT:C89806 + buttock (NCIT) @@ -25482,8 +22617,7 @@ - scalp (NCIT) - NCIT:C89807 + scalp (NCIT) @@ -25492,8 +22626,7 @@ - triceps brachii (NCIT) - NCIT:C90604 + triceps brachii (NCIT) @@ -25502,8 +22635,7 @@ - optic chiasma (NCIT) - NCIT:C90609 + optic chiasma (NCIT) @@ -25512,8 +22644,7 @@ - extraperitoneal space (NCIT) - NCIT:C92208 + extraperitoneal space (NCIT) @@ -25522,8 +22653,7 @@ - inferior cervical ganglion (NCIT) - NCIT:C92211 + inferior cervical ganglion (NCIT) @@ -25532,8 +22662,7 @@ - middle cervical ganglion (NCIT) - NCIT:C92212 + middle cervical ganglion (NCIT) @@ -25542,8 +22671,7 @@ - superior cervical ganglion (NCIT) - NCIT:C92213 + superior cervical ganglion (NCIT) @@ -25552,8 +22680,7 @@ - brachial lymph node (NCIT) - NCIT:C92221 + brachial lymph node (NCIT) @@ -25562,8 +22689,7 @@ - gastric lymph node (NCIT) - NCIT:C92222 + gastric lymph node (NCIT) @@ -25572,8 +22698,7 @@ - spiral colon (NCIT) - NCIT:C92438 + spiral colon (NCIT) @@ -25582,8 +22707,7 @@ - mesovarium (NCIT) - NCIT:C92440 + mesovarium (NCIT) @@ -25592,8 +22716,7 @@ - pharyngeal arch derived gill (NCIT) - NCIT:C92593 + pharyngeal arch derived gill (NCIT) @@ -25602,8 +22725,7 @@ - trunk region of vertebral column (NCIT) - NCIT:C92597 + trunk region of vertebral column (NCIT) @@ -25612,8 +22734,7 @@ - caudal vein (NCIT) - NCIT:C92598 + caudal vein (NCIT) @@ -25622,8 +22743,7 @@ - deep fibular nerve (NCIT) - NCIT:C92602 + deep fibular nerve (NCIT) @@ -25632,8 +22752,7 @@ - superficial fibular nerve (NCIT) - NCIT:C92603 + superficial fibular nerve (NCIT) @@ -25642,8 +22761,7 @@ - metapodial pad (NCIT) - NCIT:C92654 + metapodial pad (NCIT) @@ -25652,8 +22770,7 @@ - areolar gland (NCIT) - NCIT:C92833 + areolar gland (NCIT) @@ -25662,8 +22779,7 @@ - lateral lumbar region of abdomen (NCIT) - NCIT:C93028 + lateral lumbar region of abdomen (NCIT) @@ -25672,8 +22788,7 @@ - inguinal canal (NCIT) - NCIT:C93029 + inguinal canal (NCIT) @@ -25682,8 +22797,7 @@ - chyle (NCIT) - NCIT:C93166 + chyle (NCIT) @@ -25692,8 +22806,7 @@ - phlegm (NCIT) - NCIT:C93171 + phlegm (NCIT) @@ -25702,8 +22815,7 @@ - midbrain-hindbrain boundary (NCIT) - NCIT:C93172 + midbrain-hindbrain boundary (NCIT) @@ -25712,8 +22824,7 @@ - ascidian ampulla (NCIT) - NCIT:C93230 + ascidian ampulla (NCIT) @@ -25722,8 +22833,7 @@ - mammary lobe (NCIT) - NCIT:C93232 + mammary lobe (NCIT) @@ -25732,8 +22842,7 @@ - trophoblast (NCIT) - NCIT:C93292 + trophoblast (NCIT) @@ -25742,8 +22851,7 @@ - anatomical space (NCIT) - NCIT:C94478 + anatomical space (NCIT) @@ -25752,8 +22860,7 @@ - subserosa (NCIT) - NCIT:C94494 + subserosa (NCIT) @@ -25762,8 +22869,7 @@ - parietal serous pericardium (NCIT) - NCIT:C94500 + parietal serous pericardium (NCIT) @@ -25772,8 +22878,7 @@ - olfactory system (NCIT) - NCIT:C94501 + olfactory system (NCIT) @@ -25782,8 +22887,7 @@ - limbic system (NCIT) - NCIT:C94541 + limbic system (NCIT) @@ -25792,8 +22896,7 @@ - tooth socket (NCIT) - NCIT:C94543 + tooth socket (NCIT) @@ -25802,8 +22905,7 @@ - cusp of tooth (NCIT) - NCIT:C94568 + cusp of tooth (NCIT) @@ -25812,8 +22914,7 @@ - lower lip (NCIT) - NCIT:C94572 + lower lip (NCIT) @@ -25822,8 +22923,7 @@ - reticular layer of dermis (NCIT) - NCIT:C94818 + reticular layer of dermis (NCIT) @@ -25832,8 +22932,7 @@ - papillary layer of dermis (NCIT) - NCIT:C94819 + papillary layer of dermis (NCIT) @@ -25842,8 +22941,7 @@ - mediastinal pleura (NCIT) - NCIT:C94820 + mediastinal pleura (NCIT) @@ -25852,8 +22950,7 @@ - chromaffin paraganglion (NCIT) - NCIT:C94826 + chromaffin paraganglion (NCIT) @@ -25862,8 +22959,7 @@ - Brodmann area (NCIT) - NCIT:C94868 + Brodmann area (NCIT) @@ -25872,8 +22968,7 @@ - internal acoustic meatus (NCIT) - NCIT:C95443 + internal acoustic meatus (NCIT) @@ -25882,8 +22977,7 @@ - endocervical epithelium (NCIT) - NCIT:C96180 + endocervical epithelium (NCIT) @@ -25892,8 +22986,7 @@ - diaphysis of femur (NCIT) - NCIT:C96209 + diaphysis of femur (NCIT) @@ -25902,8 +22995,7 @@ - cingulate gyrus (NCIT) - NCIT:C96217 + cingulate gyrus (NCIT) @@ -25912,8 +23004,7 @@ - pedicle of vertebra (NCIT) - NCIT:C96274 + pedicle of vertebra (NCIT) @@ -25922,8 +23013,7 @@ - tendon sheath (NCIT) - NCIT:C96299 + tendon sheath (NCIT) @@ -25932,8 +23022,7 @@ - taste bud (NCIT) - NCIT:C96518 + taste bud (NCIT) @@ -25942,8 +23031,7 @@ - aortic body (NCIT) - NCIT:C97112 + aortic body (NCIT) @@ -25952,8 +23040,7 @@ - cervical squamo-columnar junction (NCIT) - NCIT:C97148 + cervical squamo-columnar junction (NCIT) @@ -25962,8 +23049,7 @@ - locus ceruleus (NCIT) - NCIT:C97333 + locus ceruleus (NCIT) @@ -25972,8 +23058,7 @@ - raphe nuclei (NCIT) - NCIT:C97335 + raphe nuclei (NCIT) @@ -25982,8 +23067,7 @@ - entorhinal cortex (NCIT) - NCIT:C97338 + entorhinal cortex (NCIT) @@ -25992,8 +23076,7 @@ - primary motor cortex (NCIT) - NCIT:C97339 + primary motor cortex (NCIT) @@ -26002,8 +23085,7 @@ - primary visual cortex (NCIT) - NCIT:C97340 + primary visual cortex (NCIT) @@ -26012,8 +23094,7 @@ - substantia nigra pars compacta (NCIT) - NCIT:C97341 + substantia nigra pars compacta (NCIT) @@ -26022,8 +23103,7 @@ - nucleus of diagonal band (NCIT) - NCIT:C97342 + nucleus of diagonal band (NCIT) @@ -26032,8 +23112,7 @@ - occipital lymph node (NCIT) - NCIT:C98188 + occipital lymph node (NCIT) @@ -26042,8 +23121,7 @@ - retroperitoneal lymph node (NCIT) - NCIT:C98189 + retroperitoneal lymph node (NCIT) @@ -26052,8 +23130,7 @@ - abomasum (NCIT) - NCIT:C98702 + abomasum (NCIT) @@ -26062,8 +23139,7 @@ - cerebral subcortex (NCIT) - NCIT:C98712 + cerebral subcortex (NCIT) @@ -26072,8 +23148,7 @@ - olfactory region (NCIT) - NCIT:C98765 + olfactory region (NCIT) @@ -26082,8 +23157,7 @@ - omasum (NCIT) - NCIT:C98766 + omasum (NCIT) @@ -26092,8 +23166,7 @@ - ruminant reticulum (NCIT) - NCIT:C98777 + ruminant reticulum (NCIT) @@ -26102,8 +23175,7 @@ - rumen (NCIT) - NCIT:C98778 + rumen (NCIT) @@ -26112,8 +23184,7 @@ - stifle joint (NCIT) - NCIT:C98784 + stifle joint (NCIT) @@ -26346,12 +23417,6 @@ - - - - - - @@ -27420,12 +24485,6 @@ - - - - - - @@ -32076,12 +29135,6 @@ - - - - - - @@ -34680,12 +31733,6 @@ - - - - - - @@ -34734,12 +31781,6 @@ - - - - - - @@ -35766,12 +32807,6 @@ - - - - - - @@ -35946,12 +32981,6 @@ - - - - - - @@ -36816,12 +33845,6 @@ - - - - - - @@ -36840,12 +33863,6 @@ - - - - - - @@ -37728,12 +34745,6 @@ - - - - - - @@ -39144,12 +36155,6 @@ - - - - - - @@ -39264,12 +36269,6 @@ - - - - - - @@ -41383,5 +38382,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-og.obo b/src/ontology/bridge/uberon-bridge-to-og.obo deleted file mode 100644 index 44fb0e3c1d..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-og.obo +++ /dev/null @@ -1,111 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-og -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-og.owl b/src/ontology/bridge/uberon-bridge-to-og.owl deleted file mode 100644 index 6ada695ac0..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-og.owl +++ /dev/null @@ -1,302 +0,0 @@ - - - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 - - - - - - - - - - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-oges.obo b/src/ontology/bridge/uberon-bridge-to-oges.obo deleted file mode 100644 index f251a4df05..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-oges.obo +++ /dev/null @@ -1,221 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-oges -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: OGES:000000 ! -property_value: IAO:0000589 "embryo stage (OGES)" xsd:string -is_a: UBERON:0000068 ! embryo stage - -[Term] -id: OGES:000022 ! -property_value: IAO:0000589 "embryo stage (OGES)" xsd:string -is_a: UBERON:0000068 ! embryo stage - -[Term] -id: OGES:000008 ! -property_value: IAO:0000589 "larval stage (OGES)" xsd:string -is_a: UBERON:0000069 ! larval stage - -[Term] -id: OGES:000010 ! -property_value: IAO:0000589 "post-embryonic stage (OGES)" xsd:string -is_a: UBERON:0000092 ! post-embryonic stage - -[Term] -id: OGES:000014 ! -property_value: IAO:0000589 "post-embryonic stage (OGES)" xsd:string -is_a: UBERON:0000092 ! post-embryonic stage - -[Term] -id: OGES:000024 ! -property_value: IAO:0000589 "post-embryonic stage (OGES)" xsd:string -is_a: UBERON:0000092 ! post-embryonic stage - -[Term] -id: OGES:000011 ! -property_value: IAO:0000589 "life cycle (OGES)" xsd:string -is_a: UBERON:0000104 ! life cycle - -[Term] -id: OGES:000015 ! -property_value: IAO:0000589 "cleavage stage (OGES)" xsd:string -is_a: UBERON:0000107 ! cleavage stage - -[Term] -id: OGES:000020 ! -property_value: IAO:0000589 "cleavage stage (OGES)" xsd:string -is_a: UBERON:0000107 ! cleavage stage - -[Term] -id: OGES:000003 ! -property_value: IAO:0000589 "blastula stage (OGES)" xsd:string -is_a: UBERON:0000108 ! blastula stage - -[Term] -id: OGES:000016 ! -property_value: IAO:0000589 "blastula stage (OGES)" xsd:string -is_a: UBERON:0000108 ! blastula stage - -[Term] -id: OGES:000021 ! -property_value: IAO:0000589 "blastula stage (OGES)" xsd:string -is_a: UBERON:0000108 ! blastula stage - -[Term] -id: OGES:000004 ! -property_value: IAO:0000589 "gastrula stage (OGES)" xsd:string -is_a: UBERON:0000109 ! gastrula stage - -[Term] -id: OGES:000019 ! -property_value: IAO:0000589 "gastrula stage (OGES)" xsd:string -is_a: UBERON:0000109 ! gastrula stage - -[Term] -id: OGES:000005 ! -property_value: IAO:0000589 "organogenesis stage (OGES)" xsd:string -is_a: UBERON:0000111 ! organogenesis stage - -[Term] -id: OGES:000032 ! -property_value: IAO:0000589 "organogenesis stage (OGES)" xsd:string -is_a: UBERON:0000111 ! organogenesis stage - -[Term] -id: OGES:000009 ! -property_value: IAO:0000589 "sexually immature stage (OGES)" xsd:string -is_a: UBERON:0000112 ! sexually immature stage - -[Term] -id: OGES:000026 ! -property_value: IAO:0000589 "post-juvenile adult stage (OGES)" xsd:string -is_a: UBERON:0000113 ! post-juvenile adult stage - -[Term] -id: OGES:000027 ! -property_value: IAO:0000589 "post-juvenile adult stage (OGES)" xsd:string -is_a: UBERON:0000113 ! post-juvenile adult stage - -[Term] -id: OGES:000006 ! -property_value: IAO:0000589 "pharyngula stage (OGES)" xsd:string -is_a: UBERON:0004707 ! pharyngula stage - -[Term] -id: OGES:000023 ! -property_value: IAO:0000589 "late embryonic stage (OGES)" xsd:string -is_a: UBERON:0007220 ! late embryonic stage - -[Term] -id: OGES:000025 ! -property_value: IAO:0000589 "neonate stage (OGES)" xsd:string -is_a: UBERON:0007221 ! neonate stage - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-oges.owl b/src/ontology/bridge/uberon-bridge-to-oges.owl index 738d9df901..c7d4dc0386 100644 --- a/src/ontology/bridge/uberon-bridge-to-oges.owl +++ b/src/ontology/bridge/uberon-bridge-to-oges.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,279 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - - - - + diff --git a/src/ontology/bridge/uberon-bridge-to-pba.obo b/src/ontology/bridge/uberon-bridge-to-pba.obo deleted file mode 100644 index ff9ac7a381..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-pba.obo +++ /dev/null @@ -1,703 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-pba -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: PBA:3999 ! -property_value: IAO:0000589 "brain (PBA)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128011354 ! -property_value: IAO:0000589 "cerebral cortex (PBA)" xsd:string -intersection_of: UBERON:0000956 ! cerebral cortex -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10125 ! -property_value: IAO:0000589 "medial vestibular nucleus (PBA)" xsd:string -intersection_of: UBERON:0001722 ! medial vestibular nucleus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10082 ! -property_value: IAO:0000589 "caudate nucleus (PBA)" xsd:string -intersection_of: UBERON:0001873 ! caudate nucleus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10086 ! -property_value: IAO:0000589 "putamen (PBA)" xsd:string -intersection_of: UBERON:0001874 ! putamen -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10097 ! -property_value: IAO:0000589 "globus pallidus (PBA)" xsd:string -intersection_of: UBERON:0001875 ! globus pallidus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:4002 ! -property_value: IAO:0000589 "amygdala (PBA)" xsd:string -intersection_of: UBERON:0001876 ! amygdala -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10095 ! -property_value: IAO:0000589 "island of Calleja (PBA)" xsd:string -intersection_of: UBERON:0001881 ! island of Calleja -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10092 ! -property_value: IAO:0000589 "nucleus accumbens (PBA)" xsd:string -intersection_of: UBERON:0001882 ! nucleus accumbens -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10096 ! -property_value: IAO:0000589 "olfactory tubercle (PBA)" xsd:string -intersection_of: UBERON:0001883 ! olfactory tubercle -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10102 ! -property_value: IAO:0000589 "internal capsule of telencephalon (PBA)" xsd:string -intersection_of: UBERON:0001887 ! internal capsule of telencephalon -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128011350 ! -property_value: IAO:0000589 "telencephalon (PBA)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128013010 ! -property_value: IAO:0000589 "diencephalon (PBA)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128013014 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (PBA)" xsd:string -intersection_of: UBERON:0001897 ! dorsal plus ventral thalamus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128013147 ! -property_value: IAO:0000589 "epithalamus (PBA)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012616 ! -property_value: IAO:0000589 "central medial nucleus (PBA)" xsd:string -intersection_of: UBERON:0001923 ! central medial nucleus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128013070 ! -property_value: IAO:0000589 "lateral geniculate body (PBA)" xsd:string -intersection_of: UBERON:0001926 ! lateral geniculate body -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021746 ! -property_value: IAO:0000589 "neocortex (PBA)" xsd:string -intersection_of: UBERON:0001950 ! neocortex -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012244 ! -property_value: IAO:0000589 "Ammon's horn (PBA)" xsd:string -intersection_of: UBERON:0001954 ! Ammon's horn -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012960 ! -property_value: IAO:0000589 "claustrum of brain (PBA)" xsd:string -intersection_of: UBERON:0002023 ! claustrum of brain -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10054 ! -property_value: IAO:0000589 "subiculum (PBA)" xsd:string -intersection_of: UBERON:0002191 ! subiculum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012354 ! -property_value: IAO:0000589 "subiculum (PBA)" xsd:string -intersection_of: UBERON:0002191 ! subiculum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294022044 ! -property_value: IAO:0000589 "white matter (PBA)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:4003 ! -property_value: IAO:0000589 "hippocampal formation (PBA)" xsd:string -intersection_of: UBERON:0002421 ! hippocampal formation -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10080 ! -property_value: IAO:0000589 "striatum (PBA)" xsd:string -intersection_of: UBERON:0002435 ! striatum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10099 ! -property_value: IAO:0000589 "lateral globus pallidus (PBA)" xsd:string -intersection_of: UBERON:0002476 ! lateral globus pallidus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10098 ! -property_value: IAO:0000589 "medial globus pallidus (PBA)" xsd:string -intersection_of: UBERON:0002477 ! medial globus pallidus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128013074 ! -property_value: IAO:0000589 "dorsal lateral geniculate nucleus (PBA)" xsd:string -intersection_of: UBERON:0002479 ! dorsal lateral geniculate nucleus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294022158 ! -property_value: IAO:0000589 "entorhinal cortex (PBA)" xsd:string -intersection_of: UBERON:0002728 ! entorhinal cortex -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012976 ! -property_value: IAO:0000589 "basal forebrain (PBA)" xsd:string -intersection_of: UBERON:0002743 ! basal forebrain -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10121 ! -property_value: IAO:0000589 "central amygdaloid nucleus (PBA)" xsd:string -intersection_of: UBERON:0002883 ! central amygdaloid nucleus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10132 ! -property_value: IAO:0000589 "intercalated amygdaloid nuclei (PBA)" xsd:string -intersection_of: UBERON:0002884 ! intercalated amygdaloid nuclei -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10116 ! -property_value: IAO:0000589 "lateral amygdaloid nucleus (PBA)" xsd:string -intersection_of: UBERON:0002886 ! lateral amygdaloid nucleus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10103 ! -property_value: IAO:0000589 "anterior amygdaloid area (PBA)" xsd:string -intersection_of: UBERON:0002890 ! anterior amygdaloid area -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294022030 ! -property_value: IAO:0000589 "ventricular zone (PBA)" xsd:string -intersection_of: UBERON:0003053 ! ventricular zone -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10058 ! -property_value: IAO:0000589 "CA1 field of hippocampus (PBA)" xsd:string -intersection_of: UBERON:0003881 ! CA1 field of hippocampus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10063 ! -property_value: IAO:0000589 "CA2 field of hippocampus (PBA)" xsd:string -intersection_of: UBERON:0003882 ! CA2 field of hippocampus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10068 ! -property_value: IAO:0000589 "CA3 field of hippocampus (PBA)" xsd:string -intersection_of: UBERON:0003883 ! CA3 field of hippocampus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10074 ! -property_value: IAO:0000589 "CA4 field of hippocampus (PBA)" xsd:string -intersection_of: UBERON:0003884 ! CA4 field of hippocampus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021942 ! -property_value: IAO:0000589 "cerebellum intermediate zone (PBA)" xsd:string -intersection_of: UBERON:0004006 ! cerebellum intermediate zone -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012818 ! -property_value: IAO:0000589 "ganglionic eminence (PBA)" xsd:string -intersection_of: UBERON:0004023 ! ganglionic eminence -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012834 ! -property_value: IAO:0000589 "medial ganglionic eminence (PBA)" xsd:string -intersection_of: UBERON:0004024 ! medial ganglionic eminence -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012822 ! -property_value: IAO:0000589 "lateral ganglionic eminence (PBA)" xsd:string -intersection_of: UBERON:0004025 ! lateral ganglionic eminence -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012846 ! -property_value: IAO:0000589 "caudal ganglionic eminence (PBA)" xsd:string -intersection_of: UBERON:0004026 ! caudal ganglionic eminence -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021932 ! -property_value: IAO:0000589 "cortical subplate (PBA)" xsd:string -intersection_of: UBERON:0004035 ! cortical subplate -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128013018 ! -property_value: IAO:0000589 "dorsal thalamus (PBA)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021970 ! -property_value: IAO:0000589 "postnatal subventricular zone (PBA)" xsd:string -intersection_of: UBERON:0004922 ! postnatal subventricular zone -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021914 ! -property_value: IAO:0000589 "cortical plate (PBA)" xsd:string -intersection_of: UBERON:0005343 ! cortical plate -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10081 ! -property_value: IAO:0000589 "dorsal striatum (PBA)" xsd:string -intersection_of: UBERON:0005382 ! dorsal striatum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021786 ! -property_value: IAO:0000589 "cortical layer I (PBA)" xsd:string -intersection_of: UBERON:0005390 ! cortical layer I -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021800 ! -property_value: IAO:0000589 "cortical layer II (PBA)" xsd:string -intersection_of: UBERON:0005391 ! cortical layer II -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021824 ! -property_value: IAO:0000589 "cortical layer III (PBA)" xsd:string -intersection_of: UBERON:0005392 ! cortical layer III -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021852 ! -property_value: IAO:0000589 "cortical layer IV (PBA)" xsd:string -intersection_of: UBERON:0005393 ! cortical layer IV -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021878 ! -property_value: IAO:0000589 "cortical layer V (PBA)" xsd:string -intersection_of: UBERON:0005394 ! cortical layer V -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021896 ! -property_value: IAO:0000589 "cortical layer VI (PBA)" xsd:string -intersection_of: UBERON:0005395 ! cortical layer VI -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10091 ! -property_value: IAO:0000589 "ventral striatum (PBA)" xsd:string -intersection_of: UBERON:0005403 ! ventral striatum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012080 ! -property_value: IAO:0000589 "perirhinal cortex (PBA)" xsd:string -intersection_of: UBERON:0006083 ! perirhinal cortex -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012678 ! -property_value: IAO:0000589 "basolateral amygdaloid nuclear complex (PBA)" xsd:string -intersection_of: UBERON:0006107 ! basolateral amygdaloid nuclear complex -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10039 ! -property_value: IAO:0000589 "Brodmann (1909) area 18 (PBA)" xsd:string -intersection_of: UBERON:0006473 ! Brodmann (1909) area 18 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128011936 ! -property_value: IAO:0000589 "medial entorhinal cortex (PBA)" xsd:string -intersection_of: UBERON:0007224 ! medial entorhinal cortex -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128011876 ! -property_value: IAO:0000589 "lateral entorhinal cortex (PBA)" xsd:string -intersection_of: UBERON:0007225 ! lateral entorhinal cortex -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012584 ! -property_value: IAO:0000589 "rostral migratory stream (PBA)" xsd:string -intersection_of: UBERON:0008881 ! rostral migratory stream -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10141 ! -property_value: IAO:0000589 "basal nucleus of telencephalon (PBA)" xsd:string -intersection_of: UBERON:0010010 ! basal nucleus of telencephalon -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012596 ! -property_value: IAO:0000589 "collection of basal ganglia (PBA)" xsd:string -intersection_of: UBERON:0010011 ! collection of basal ganglia -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:4001 ! -property_value: IAO:0000589 "collection of basal ganglia (PBA)" xsd:string -intersection_of: UBERON:0010011 ! collection of basal ganglia -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10093 ! -property_value: IAO:0000589 "core of nucleus accumbens (PBA)" xsd:string -intersection_of: UBERON:0012170 ! core of nucleus accumbens -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10094 ! -property_value: IAO:0000589 "shell of nucleus accumbens (PBA)" xsd:string -intersection_of: UBERON:0012171 ! shell of nucleus accumbens -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128013078 ! -property_value: IAO:0000589 "magnocellular layer of dorsal nucleus of lateral geniculate body (PBA)" xsd:string -intersection_of: UBERON:0013606 ! magnocellular layer of dorsal nucleus of lateral geniculate body -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128013091 ! -property_value: IAO:0000589 "parvocellular layer of dorsal nucleus of lateral geniculate body (PBA)" xsd:string -intersection_of: UBERON:0013607 ! parvocellular layer of dorsal nucleus of lateral geniculate body -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10060 ! -property_value: IAO:0000589 "pyramidal layer of CA1 (PBA)" xsd:string -intersection_of: UBERON:0014548 ! pyramidal layer of CA1 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10065 ! -property_value: IAO:0000589 "pyramidal layer of CA2 (PBA)" xsd:string -intersection_of: UBERON:0014549 ! pyramidal layer of CA2 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10070 ! -property_value: IAO:0000589 "pyramidal layer of CA3 (PBA)" xsd:string -intersection_of: UBERON:0014550 ! pyramidal layer of CA3 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10064 ! -property_value: IAO:0000589 "CA2 stratum oriens (PBA)" xsd:string -intersection_of: UBERON:0014551 ! CA2 stratum oriens -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10059 ! -property_value: IAO:0000589 "CA1 stratum oriens (PBA)" xsd:string -intersection_of: UBERON:0014552 ! CA1 stratum oriens -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10069 ! -property_value: IAO:0000589 "CA3 stratum oriens (PBA)" xsd:string -intersection_of: UBERON:0014553 ! CA3 stratum oriens -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10061 ! -property_value: IAO:0000589 "CA1 stratum radiatum (PBA)" xsd:string -intersection_of: UBERON:0014554 ! CA1 stratum radiatum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10066 ! -property_value: IAO:0000589 "CA2 stratum radiatum (PBA)" xsd:string -intersection_of: UBERON:0014555 ! CA2 stratum radiatum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10072 ! -property_value: IAO:0000589 "CA3 stratum radiatum (PBA)" xsd:string -intersection_of: UBERON:0014556 ! CA3 stratum radiatum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10062 ! -property_value: IAO:0000589 "CA1 stratum lacunosum moleculare (PBA)" xsd:string -intersection_of: UBERON:0014557 ! CA1 stratum lacunosum moleculare -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10067 ! -property_value: IAO:0000589 "CA2 stratum lacunosum moleculare (PBA)" xsd:string -intersection_of: UBERON:0014558 ! CA2 stratum lacunosum moleculare -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10073 ! -property_value: IAO:0000589 "CA3 stratum lacunosum moleculare (PBA)" xsd:string -intersection_of: UBERON:0014559 ! CA3 stratum lacunosum moleculare -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10071 ! -property_value: IAO:0000589 "CA3 stratum lucidum (PBA)" xsd:string -intersection_of: UBERON:0014560 ! CA3 stratum lucidum -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021774 ! -property_value: IAO:0000589 "cerebral cortex marginal layer (PBA)" xsd:string -intersection_of: UBERON:0014935 ! cerebral cortex marginal layer -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:294021970 ! -property_value: IAO:0000589 "cerebral cortex subventricular zone (PBA)" xsd:string -intersection_of: UBERON:0014940 ! cerebral cortex subventricular zone -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:4004 ! -property_value: IAO:0000589 "occipital cortex (PBA)" xsd:string -intersection_of: UBERON:0016540 ! occipital cortex -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10135 ! -property_value: IAO:0000589 "amygdalohippocampal area (PBA)" xsd:string -intersection_of: UBERON:0034673 ! amygdalohippocampal area -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10140 ! -property_value: IAO:0000589 "amygdalopiriform transition area (PBA)" xsd:string -intersection_of: UBERON:0034989 ! amygdalopiriform transition area -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10136 ! -property_value: IAO:0000589 "amygdalohippocampal area, magnocellular division (PBA)" xsd:string -intersection_of: UBERON:0035027 ! amygdalohippocampal area, magnocellular division -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10137 ! -property_value: IAO:0000589 "amygdalohippocampal area, parvocellular division (PBA)" xsd:string -intersection_of: UBERON:0035028 ! amygdalohippocampal area, parvocellular division -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:12986 ! -property_value: IAO:0000589 "dorsolateral prefrontal cortex layer 2 (PBA)" xsd:string -intersection_of: UBERON:0035154 ! dorsolateral prefrontal cortex layer 2 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:12987 ! -property_value: IAO:0000589 "dorsolateral prefrontal cortex layer 3 (PBA)" xsd:string -intersection_of: UBERON:0035155 ! dorsolateral prefrontal cortex layer 3 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:12988 ! -property_value: IAO:0000589 "dorsolateral prefrontal cortex layer 4 (PBA)" xsd:string -intersection_of: UBERON:0035156 ! dorsolateral prefrontal cortex layer 4 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:12989 ! -property_value: IAO:0000589 "dorsolateral prefrontal cortex layer 5 (PBA)" xsd:string -intersection_of: UBERON:0035157 ! dorsolateral prefrontal cortex layer 5 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:12990 ! -property_value: IAO:0000589 "dorsolateral prefrontal cortex layer 6 (PBA)" xsd:string -intersection_of: UBERON:0035158 ! dorsolateral prefrontal cortex layer 6 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:10026 ! -property_value: IAO:0000589 "Brodmann (1909) area 17 (PBA)" xsd:string -intersection_of: UBERON:8440010 ! Brodmann (1909) area 17 -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:128012596 ! -property_value: IAO:0000589 "cerebral nuclei (PBA)" xsd:string -intersection_of: UBERON:8440012 ! cerebral nuclei -intersection_of: part_of NCBITaxon:9443 - -[Term] -id: PBA:ENTITY -name: PBA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:9443 -relationship: only_in_taxon NCBITaxon:9443 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-pba.owl b/src/ontology/bridge/uberon-bridge-to-pba.owl index 6c18501c37..03d6309a89 100644 --- a/src/ontology/bridge/uberon-bridge-to-pba.owl +++ b/src/ontology/bridge/uberon-bridge-to-pba.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -345,8 +78,7 @@ - Brodmann (1909) area 17 (PBA) - PBA:10026 + Brodmann (1909) area 17 (primates) @@ -365,8 +97,7 @@ - Brodmann (1909) area 18 (PBA) - PBA:10039 + Brodmann (1909) area 18 (primates) @@ -385,8 +116,7 @@ - subiculum (PBA) - PBA:10054 + subiculum (primates) @@ -405,8 +135,7 @@ - CA1 field of hippocampus (PBA) - PBA:10058 + CA1 field of hippocampus (primates) @@ -425,8 +154,7 @@ - CA1 stratum oriens (PBA) - PBA:10059 + CA1 stratum oriens (primates) @@ -445,8 +173,7 @@ - pyramidal layer of CA1 (PBA) - PBA:10060 + pyramidal layer of CA1 (primates) @@ -465,8 +192,7 @@ - CA1 stratum radiatum (PBA) - PBA:10061 + CA1 stratum radiatum (primates) @@ -485,8 +211,7 @@ - CA1 stratum lacunosum moleculare (PBA) - PBA:10062 + CA1 stratum lacunosum moleculare (primates) @@ -505,8 +230,7 @@ - CA2 field of hippocampus (PBA) - PBA:10063 + CA2 field of hippocampus (primates) @@ -525,8 +249,7 @@ - CA2 stratum oriens (PBA) - PBA:10064 + CA2 stratum oriens (primates) @@ -545,8 +268,7 @@ - pyramidal layer of CA2 (PBA) - PBA:10065 + pyramidal layer of CA2 (primates) @@ -565,8 +287,7 @@ - CA2 stratum radiatum (PBA) - PBA:10066 + CA2 stratum radiatum (primates) @@ -585,8 +306,7 @@ - CA2 stratum lacunosum moleculare (PBA) - PBA:10067 + CA2 stratum lacunosum moleculare (primates) @@ -605,8 +325,7 @@ - CA3 field of hippocampus (PBA) - PBA:10068 + CA3 field of hippocampus (primates) @@ -625,8 +344,7 @@ - CA3 stratum oriens (PBA) - PBA:10069 + CA3 stratum oriens (primates) @@ -645,8 +363,7 @@ - pyramidal layer of CA3 (PBA) - PBA:10070 + pyramidal layer of CA3 (primates) @@ -665,8 +382,7 @@ - CA3 stratum lucidum (PBA) - PBA:10071 + CA3 stratum lucidum (primates) @@ -685,8 +401,7 @@ - CA3 stratum radiatum (PBA) - PBA:10072 + CA3 stratum radiatum (primates) @@ -705,8 +420,7 @@ - CA3 stratum lacunosum moleculare (PBA) - PBA:10073 + CA3 stratum lacunosum moleculare (primates) @@ -725,8 +439,7 @@ - CA4 field of hippocampus (PBA) - PBA:10074 + CA4 field of hippocampus (primates) @@ -745,8 +458,7 @@ - striatum (PBA) - PBA:10080 + striatum (primates) @@ -765,8 +477,7 @@ - dorsal striatum (PBA) - PBA:10081 + dorsal striatum (primates) @@ -785,8 +496,7 @@ - caudate nucleus (PBA) - PBA:10082 + caudate nucleus (primates) @@ -805,8 +515,7 @@ - putamen (PBA) - PBA:10086 + putamen (primates) @@ -825,8 +534,7 @@ - ventral striatum (PBA) - PBA:10091 + ventral striatum (primates) @@ -845,8 +553,7 @@ - nucleus accumbens (PBA) - PBA:10092 + nucleus accumbens (primates) @@ -865,8 +572,7 @@ - core of nucleus accumbens (PBA) - PBA:10093 + core of nucleus accumbens (primates) @@ -885,8 +591,7 @@ - shell of nucleus accumbens (PBA) - PBA:10094 + shell of nucleus accumbens (primates) @@ -905,8 +610,7 @@ - island of Calleja (PBA) - PBA:10095 + island of Calleja (primates) @@ -925,8 +629,7 @@ - olfactory tubercle (PBA) - PBA:10096 + olfactory tubercle (primates) @@ -945,8 +648,7 @@ - globus pallidus (PBA) - PBA:10097 + globus pallidus (primates) @@ -965,8 +667,7 @@ - medial globus pallidus (PBA) - PBA:10098 + medial globus pallidus (primates) @@ -985,8 +686,7 @@ - lateral globus pallidus (PBA) - PBA:10099 + lateral globus pallidus (primates) @@ -1005,8 +705,7 @@ - internal capsule of telencephalon (PBA) - PBA:10102 + internal capsule of telencephalon (primates) @@ -1025,8 +724,7 @@ - anterior amygdaloid area (PBA) - PBA:10103 + anterior amygdaloid area (primates) @@ -1045,8 +743,7 @@ - lateral amygdaloid nucleus (PBA) - PBA:10116 + lateral amygdaloid nucleus (primates) @@ -1065,8 +762,7 @@ - central amygdaloid nucleus (PBA) - PBA:10121 + central amygdaloid nucleus (primates) @@ -1085,8 +781,7 @@ - medial vestibular nucleus (PBA) - PBA:10125 + medial vestibular nucleus (primates) @@ -1105,8 +800,7 @@ - intercalated amygdaloid nuclei (PBA) - PBA:10132 + intercalated amygdaloid nuclei (primates) @@ -1125,8 +819,7 @@ - amygdalohippocampal area (PBA) - PBA:10135 + amygdalohippocampal area (primates) @@ -1145,8 +838,7 @@ - amygdalohippocampal area, magnocellular division (PBA) - PBA:10136 + amygdalohippocampal area, magnocellular division (primates) @@ -1165,8 +857,7 @@ - amygdalohippocampal area, parvocellular division (PBA) - PBA:10137 + amygdalohippocampal area, parvocellular division (primates) @@ -1185,8 +876,7 @@ - amygdalopiriform transition area (PBA) - PBA:10140 + amygdalopiriform transition area (primates) @@ -1205,8 +895,7 @@ - basal nucleus of telencephalon (PBA) - PBA:10141 + basal nucleus of telencephalon (primates) @@ -1225,8 +914,7 @@ - telencephalon (PBA) - PBA:128011350 + telencephalon (primates) @@ -1245,8 +933,7 @@ - cerebral cortex (PBA) - PBA:128011354 + cerebral cortex (primates) @@ -1265,8 +952,7 @@ - lateral entorhinal cortex (PBA) - PBA:128011876 + lateral entorhinal cortex (primates) @@ -1285,8 +971,7 @@ - medial entorhinal cortex (PBA) - PBA:128011936 + medial entorhinal cortex (primates) @@ -1305,8 +990,7 @@ - perirhinal cortex (PBA) - PBA:128012080 + perirhinal cortex (primates) @@ -1325,8 +1009,7 @@ - Ammon's horn (PBA) - PBA:128012244 + Ammon's horn (primates) @@ -1345,8 +1028,7 @@ - subiculum (PBA) - PBA:128012354 + subiculum (primates) @@ -1365,30 +1047,7 @@ - rostral migratory stream (PBA) - PBA:128012584 - - - - - - - - - - - - - - - - - - - - cerebral nuclei (PBA) - collection of basal ganglia (PBA) - PBA:128012596 + rostral migratory stream (primates) @@ -1407,8 +1066,7 @@ - central medial nucleus (PBA) - PBA:128012616 + central medial nucleus (primates) @@ -1427,8 +1085,7 @@ - basolateral amygdaloid nuclear complex (PBA) - PBA:128012678 + basolateral amygdaloid nuclear complex (primates) @@ -1447,8 +1104,7 @@ - ganglionic eminence (PBA) - PBA:128012818 + ganglionic eminence (primates) @@ -1467,8 +1123,7 @@ - lateral ganglionic eminence (PBA) - PBA:128012822 + lateral ganglionic eminence (primates) @@ -1487,8 +1142,7 @@ - medial ganglionic eminence (PBA) - PBA:128012834 + medial ganglionic eminence (primates) @@ -1507,8 +1161,7 @@ - caudal ganglionic eminence (PBA) - PBA:128012846 + caudal ganglionic eminence (primates) @@ -1527,8 +1180,7 @@ - claustrum of brain (PBA) - PBA:128012960 + claustrum of brain (primates) @@ -1547,8 +1199,7 @@ - basal forebrain (PBA) - PBA:128012976 + basal forebrain (primates) @@ -1567,8 +1218,7 @@ - diencephalon (PBA) - PBA:128013010 + diencephalon (primates) @@ -1587,8 +1237,7 @@ - dorsal plus ventral thalamus (PBA) - PBA:128013014 + dorsal plus ventral thalamus (primates) @@ -1607,8 +1256,7 @@ - dorsal thalamus (PBA) - PBA:128013018 + dorsal thalamus (primates) @@ -1627,8 +1275,7 @@ - lateral geniculate body (PBA) - PBA:128013070 + lateral geniculate body (primates) @@ -1647,8 +1294,7 @@ - dorsal lateral geniculate nucleus (PBA) - PBA:128013074 + dorsal lateral geniculate nucleus (primates) @@ -1667,8 +1313,7 @@ - magnocellular layer of dorsal nucleus of lateral geniculate body (PBA) - PBA:128013078 + magnocellular layer of dorsal nucleus of lateral geniculate body (primates) @@ -1687,8 +1332,7 @@ - parvocellular layer of dorsal nucleus of lateral geniculate body (PBA) - PBA:128013091 + parvocellular layer of dorsal nucleus of lateral geniculate body (primates) @@ -1707,8 +1351,7 @@ - epithalamus (PBA) - PBA:128013147 + epithalamus (primates) @@ -1727,8 +1370,7 @@ - dorsolateral prefrontal cortex layer 2 (PBA) - PBA:12986 + dorsolateral prefrontal cortex layer 2 (primates) @@ -1747,8 +1389,7 @@ - dorsolateral prefrontal cortex layer 3 (PBA) - PBA:12987 + dorsolateral prefrontal cortex layer 3 (primates) @@ -1767,8 +1408,7 @@ - dorsolateral prefrontal cortex layer 4 (PBA) - PBA:12988 + dorsolateral prefrontal cortex layer 4 (primates) @@ -1787,8 +1427,7 @@ - dorsolateral prefrontal cortex layer 5 (PBA) - PBA:12989 + dorsolateral prefrontal cortex layer 5 (primates) @@ -1807,8 +1446,7 @@ - dorsolateral prefrontal cortex layer 6 (PBA) - PBA:12990 + dorsolateral prefrontal cortex layer 6 (primates) @@ -1827,8 +1465,7 @@ - neocortex (PBA) - PBA:294021746 + neocortex (primates) @@ -1847,8 +1484,7 @@ - cerebral cortex marginal layer (PBA) - PBA:294021774 + cerebral cortex marginal layer (primates) @@ -1867,8 +1503,7 @@ - cortical layer I (PBA) - PBA:294021786 + cortical layer I (primates) @@ -1887,8 +1522,7 @@ - cortical layer II (PBA) - PBA:294021800 + cortical layer II (primates) @@ -1907,8 +1541,7 @@ - cortical layer III (PBA) - PBA:294021824 + cortical layer III (primates) @@ -1927,8 +1560,7 @@ - cortical layer IV (PBA) - PBA:294021852 + cortical layer IV (primates) @@ -1947,8 +1579,7 @@ - cortical layer V (PBA) - PBA:294021878 + cortical layer V (primates) @@ -1967,8 +1598,7 @@ - cortical layer VI (PBA) - PBA:294021896 + cortical layer VI (primates) @@ -1987,8 +1617,7 @@ - cortical plate (PBA) - PBA:294021914 + cortical plate (primates) @@ -2007,8 +1636,7 @@ - cortical subplate (PBA) - PBA:294021932 + cortical subplate (primates) @@ -2027,30 +1655,7 @@ - cerebellum intermediate zone (PBA) - PBA:294021942 - - - - - - - - - - - - - - - - - - - - cerebral cortex subventricular zone (PBA) - postnatal subventricular zone (PBA) - PBA:294021970 + cerebellum intermediate zone (primates) @@ -2069,8 +1674,7 @@ - ventricular zone (PBA) - PBA:294022030 + ventricular zone (primates) @@ -2089,8 +1693,7 @@ - white matter (PBA) - PBA:294022044 + white matter (primates) @@ -2109,8 +1712,7 @@ - entorhinal cortex (PBA) - PBA:294022158 + entorhinal cortex (primates) @@ -2129,8 +1731,7 @@ - brain (PBA) - PBA:3999 + brain (primates) @@ -2149,8 +1750,7 @@ - collection of basal ganglia (PBA) - PBA:4001 + collection of basal ganglia (primates) @@ -2169,8 +1769,7 @@ - amygdala (PBA) - PBA:4002 + amygdala (primates) @@ -2189,8 +1788,7 @@ - hippocampal formation (PBA) - PBA:4003 + hippocampal formation (primates) @@ -2209,34 +1807,7 @@ - occipital cortex (PBA) - PBA:4004 - - - - - - - - - - - - - - - - - - - - - - - - - PBA:ENTITY - PBA entity + occipital cortex (primates) @@ -2253,12 +1824,6 @@ - - - - - - @@ -2517,12 +2082,6 @@ - - - - - - @@ -2733,12 +2292,6 @@ - - - - - - @@ -2802,15 +2355,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/uberon-bridge-to-sctid.obo b/src/ontology/bridge/uberon-bridge-to-sctid.obo deleted file mode 100644 index 2e43456e2f..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-sctid.obo +++ /dev/null @@ -1,20796 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-sctid -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to SNOMED-CT" xsd:string -property_value: dc-description "Rough subclass axioms between SNOMED-CT and Uberon. Note that in SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree." xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "OBOL" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: SCTID:181453009 ! -property_value: IAO:0000589 "uterine cervix (SCTID)" xsd:string -is_a: UBERON:0000002 ! uterine cervix - -[Term] -id: SCTID:272650008 ! -property_value: IAO:0000589 "naris (SCTID)" xsd:string -is_a: UBERON:0000003 ! naris - -[Term] -id: SCTID:181195007 ! -property_value: IAO:0000589 "nose (SCTID)" xsd:string -is_a: UBERON:0000004 ! nose - -[Term] -id: SCTID:181125003 ! -property_value: IAO:0000589 "pituitary gland (SCTID)" xsd:string -is_a: UBERON:0000007 ! pituitary gland - -[Term] -id: SCTID:68439008 ! -property_value: IAO:0000589 "submucosa (SCTID)" xsd:string -is_a: UBERON:0000009 ! submucosa - -[Term] -id: SCTID:362292005 ! -property_value: IAO:0000589 "peripheral nervous system (SCTID)" xsd:string -is_a: UBERON:0000010 ! peripheral nervous system - -[Term] -id: SCTID:362496006 ! -property_value: IAO:0000589 "parasympathetic nervous system (SCTID)" xsd:string -is_a: UBERON:0000011 ! parasympathetic nervous system - -[Term] -id: SCTID:362484004 ! -property_value: IAO:0000589 "sympathetic nervous system (SCTID)" xsd:string -is_a: UBERON:0000013 ! sympathetic nervous system - -[Term] -id: SCTID:20795001 ! -property_value: IAO:0000589 "zone of skin (SCTID)" xsd:string -is_a: UBERON:0000014 ! zone of skin - -[Term] -id: SCTID:361339003 ! -property_value: IAO:0000589 "endocrine pancreas (SCTID)" xsd:string -is_a: UBERON:0000016 ! endocrine pancreas - -[Term] -id: SCTID:248202004 ! -property_value: IAO:0000589 "exocrine pancreas (SCTID)" xsd:string -is_a: UBERON:0000017 ! exocrine pancreas - -[Term] -id: SCTID:181143004 ! -property_value: IAO:0000589 "camera-type eye (SCTID)" xsd:string -is_a: UBERON:0000019 ! camera-type eye - -[Term] -id: SCTID:244485009 ! -property_value: IAO:0000589 "sense organ (SCTID)" xsd:string -is_a: UBERON:0000020 ! sense organ - -[Term] -id: SCTID:276160000 ! -property_value: IAO:0000589 "cutaneous appendage (SCTID)" xsd:string -is_a: UBERON:0000021 ! cutaneous appendage - -[Term] -id: SCTID:410027006 ! -property_value: IAO:0000589 "feather (SCTID)" xsd:string -is_a: UBERON:0000022 ! feather - -[Term] -id: SCTID:181756000 ! -property_value: IAO:0000589 "lymph node (SCTID)" xsd:string -is_a: UBERON:0000029 ! lymph node - -[Term] -id: SCTID:298225002 ! -property_value: IAO:0000589 "lamina propria (SCTID)" xsd:string -is_a: UBERON:0000030 ! lamina propria - -[Term] -id: SCTID:302548004 ! -property_value: IAO:0000589 "head (SCTID)" xsd:string -is_a: UBERON:0000033 ! head - -[Term] -id: SCTID:258665002 ! -property_value: IAO:0000589 "primary ovarian follicle (SCTID)" xsd:string -is_a: UBERON:0000035 ! primary ovarian follicle - -[Term] -id: SCTID:362261008 ! -property_value: IAO:0000589 "tertiary ovarian follicle (SCTID)" xsd:string -is_a: UBERON:0000037 ! tertiary ovarian follicle - -[Term] -id: SCTID:362878009 ! -property_value: IAO:0000589 "serous membrane (SCTID)" xsd:string -is_a: UBERON:0000042 ! serous membrane - -[Term] -id: SCTID:256667004 ! -property_value: IAO:0000589 "tendon (SCTID)" xsd:string -is_a: UBERON:0000043 ! tendon - -[Term] -id: SCTID:244455004 ! -property_value: IAO:0000589 "dorsal root ganglion (SCTID)" xsd:string -is_a: UBERON:0000044 ! dorsal root ganglion - -[Term] -id: SCTID:245475003 ! -property_value: IAO:0000589 "fornix of vagina (SCTID)" xsd:string -is_a: UBERON:0000051 ! fornix of vagina - -[Term] -id: SCTID:279302004 ! -property_value: IAO:0000589 "fornix of brain (SCTID)" xsd:string -is_a: UBERON:0000052 ! fornix of brain - -[Term] -id: SCTID:362517001 ! -property_value: IAO:0000589 "macula lutea (SCTID)" xsd:string -is_a: UBERON:0000053 ! macula lutea - -[Term] -id: SCTID:302511008 ! -property_value: IAO:0000589 "ureter (SCTID)" xsd:string -is_a: UBERON:0000056 ! ureter - -[Term] -id: SCTID:302513006 ! -property_value: IAO:0000589 "urethra (SCTID)" xsd:string -is_a: UBERON:0000057 ! urethra - -[Term] -id: SCTID:91726008 ! -property_value: IAO:0000589 "duct (SCTID)" xsd:string -is_a: UBERON:0000058 ! duct - -[Term] -id: SCTID:181254001 ! -property_value: IAO:0000589 "large intestine (SCTID)" xsd:string -is_a: UBERON:0000059 ! large intestine - -[Term] -id: SCTID:362889002 ! -property_value: IAO:0000589 "anatomical structure (SCTID)" xsd:string -is_a: UBERON:0000061 ! anatomical structure - -[Term] -id: SCTID:272625005 ! -property_value: IAO:0000589 "organ (SCTID)" xsd:string -is_a: UBERON:0000062 ! organ - -[Term] -id: SCTID:113343008 ! -property_value: IAO:0000589 "organ part (SCTID)" xsd:string -is_a: UBERON:0000064 ! organ part - -[Term] -id: SCTID:91717005 ! -property_value: IAO:0000589 "organ part (SCTID)" xsd:string -is_a: UBERON:0000064 ! organ part - -[Term] -id: SCTID:361110005 ! -property_value: IAO:0000589 "respiratory tract (SCTID)" xsd:string -is_a: UBERON:0000065 ! respiratory tract - -[Term] -id: SCTID:296280003 ! -property_value: IAO:0000589 "embryo stage (SCTID)" xsd:string -is_a: UBERON:0000068 ! embryo stage - -[Term] -id: SCTID:25087005 ! -property_value: IAO:0000589 "regional part of nervous system (SCTID)" xsd:string -is_a: UBERON:0000073 ! regional part of nervous system - -[Term] -id: SCTID:362217000 ! -property_value: IAO:0000589 "renal glomerulus (SCTID)" xsd:string -is_a: UBERON:0000074 ! renal glomerulus - -[Term] -id: SCTID:118966000 ! -property_value: IAO:0000589 "subdivision of skeletal system (SCTID)" xsd:string -is_a: UBERON:0000075 ! subdivision of skeletal system - -[Term] -id: SCTID:361340001 ! -property_value: IAO:0000589 "male reproductive system (SCTID)" xsd:string -is_a: UBERON:0000079 ! male reproductive system - -[Term] -id: SCTID:308799002 ! -property_value: IAO:0000589 "mesonephros (SCTID)" xsd:string -is_a: UBERON:0000080 ! mesonephros - -[Term] -id: SCTID:308797000 ! -property_value: IAO:0000589 "metanephros (SCTID)" xsd:string -is_a: UBERON:0000081 ! metanephros - -[Term] -id: SCTID:181414000 ! -property_value: IAO:0000589 "adult mammalian kidney (SCTID)" xsd:string -is_a: UBERON:0000082 ! adult mammalian kidney - -[Term] -id: SCTID:361528000 ! -property_value: IAO:0000589 "ureteric bud (SCTID)" xsd:string -is_a: UBERON:0000084 ! ureteric bud - -[Term] -id: SCTID:361474003 ! -property_value: IAO:0000589 "morula (SCTID)" xsd:string -is_a: UBERON:0000085 ! morula - -[Term] -id: SCTID:361456007 ! -property_value: IAO:0000589 "inner cell mass (SCTID)" xsd:string -is_a: UBERON:0000087 ! inner cell mass - -[Term] -id: SCTID:362839005 ! -property_value: IAO:0000589 "trophoblast (SCTID)" xsd:string -is_a: UBERON:0000088 ! trophoblast - -[Term] -id: SCTID:361455006 ! -property_value: IAO:0000589 "blastocele (SCTID)" xsd:string -is_a: UBERON:0000090 ! blastocele - -[Term] -id: SCTID:245524004 ! -property_value: IAO:0000589 "lobe of lung (SCTID)" xsd:string -is_a: UBERON:0000101 ! lobe of lung - -[Term] -id: SCTID:201609008 ! -property_value: IAO:0000589 "lung connective tissue (SCTID)" xsd:string -is_a: UBERON:0000114 ! lung connective tissue - -[Term] -id: SCTID:361427007 ! -property_value: IAO:0000589 "lung bud (SCTID)" xsd:string -is_a: UBERON:0000118 ! lung bud - -[Term] -id: SCTID:362299001 ! -property_value: IAO:0000589 "perineurium (SCTID)" xsd:string -is_a: UBERON:0000121 ! perineurium - -[Term] -id: SCTID:15931004 ! -property_value: IAO:0000589 "endoneurium (SCTID)" xsd:string -is_a: UBERON:0000123 ! endoneurium - -[Term] -id: SCTID:64482002 ! -property_value: IAO:0000589 "epineurium (SCTID)" xsd:string -is_a: UBERON:0000124 ! epineurium - -[Term] -id: SCTID:280160003 ! -property_value: IAO:0000589 "cranial nerve nucleus (SCTID)" xsd:string -is_a: UBERON:0000126 ! cranial nerve nucleus - -[Term] -id: SCTID:280166009 ! -property_value: IAO:0000589 "facial nucleus (SCTID)" xsd:string -is_a: UBERON:0000127 ! facial nucleus - -[Term] -id: SCTID:279293003 ! -property_value: IAO:0000589 "olivary body (SCTID)" xsd:string -is_a: UBERON:0000128 ! olivary body - -[Term] -id: SCTID:280735005 ! -property_value: IAO:0000589 "transverse foramen (SCTID)" xsd:string -is_a: UBERON:0000130 ! transverse foramen - -[Term] -id: SCTID:282817004 ! -property_value: IAO:0000589 "trochlea of humerus (SCTID)" xsd:string -is_a: UBERON:0000144 ! trochlea of humerus - -[Term] -id: SCTID:416982006 ! -property_value: IAO:0000589 "pectoral fin (SCTID)" xsd:string -is_a: UBERON:0000151 ! pectoral fin - -[Term] -id: SCTID:361385000 ! -property_value: IAO:0000589 "theca cell layer (SCTID)" xsd:string -is_a: UBERON:0000155 ! theca cell layer - -[Term] -id: SCTID:258767003 ! -property_value: IAO:0000589 "theca externa (SCTID)" xsd:string -is_a: UBERON:0000156 ! theca externa - -[Term] -id: SCTID:258869006 ! -property_value: IAO:0000589 "theca interna (SCTID)" xsd:string -is_a: UBERON:0000157 ! theca interna - -[Term] -id: SCTID:245438008 ! -property_value: IAO:0000589 "anal canal (SCTID)" xsd:string -is_a: UBERON:0000159 ! anal canal - -[Term] -id: SCTID:256876008 ! -property_value: IAO:0000589 "intestine (SCTID)" xsd:string -is_a: UBERON:0000160 ! intestine - -[Term] -id: SCTID:91837002 ! -property_value: IAO:0000589 "orifice (SCTID)" xsd:string -is_a: UBERON:0000161 ! orifice - -[Term] -id: SCTID:362857006 ! -property_value: IAO:0000589 "cloaca (SCTID)" xsd:string -is_a: UBERON:0000162 ! cloaca - -[Term] -id: SCTID:370631000 ! -property_value: IAO:0000589 "cloaca (SCTID)" xsd:string -is_a: UBERON:0000162 ! cloaca - -[Term] -id: SCTID:50961009 ! -property_value: IAO:0000589 "primitive urogenital sinus (SCTID)" xsd:string -is_a: UBERON:0000164 ! primitive urogenital sinus - -[Term] -id: SCTID:21082005 ! -property_value: IAO:0000589 "mouth (SCTID)" xsd:string -is_a: UBERON:0000165 ! mouth - -[Term] -id: SCTID:181220002 ! -property_value: IAO:0000589 "oral cavity (SCTID)" xsd:string -is_a: UBERON:0000167 ! oral cavity - -[Term] -id: SCTID:272626006 ! -property_value: IAO:0000589 "respiration organ (SCTID)" xsd:string -is_a: UBERON:0000171 ! respiration organ - -[Term] -id: SCTID:243329008 ! -property_value: IAO:0000589 "lateral lumbar region of abdomen (SCTID)" xsd:string -is_a: UBERON:0000180 ! lateral lumbar region of abdomen - -[Term] -id: SCTID:181942005 ! -property_value: IAO:0000589 "neck of radius (SCTID)" xsd:string -is_a: UBERON:0000199 ! neck of radius - -[Term] -id: SCTID:279165009 ! -property_value: IAO:0000589 "gyrus (SCTID)" xsd:string -is_a: UBERON:0000200 ! gyrus - -[Term] -id: SCTID:369224000 ! -property_value: IAO:0000589 "pallium (SCTID)" xsd:string -is_a: UBERON:0000203 ! pallium - -[Term] -id: SCTID:181793006 ! -property_value: IAO:0000589 "tetrapod frontal bone (SCTID)" xsd:string -is_a: UBERON:0000209 ! tetrapod frontal bone - -[Term] -id: SCTID:181794000 ! -property_value: IAO:0000589 "tetrapod parietal bone (SCTID)" xsd:string -is_a: UBERON:0000210 ! tetrapod parietal bone - -[Term] -id: SCTID:182358004 ! -property_value: IAO:0000589 "ligament (SCTID)" xsd:string -is_a: UBERON:0000211 ! ligament - -[Term] -id: SCTID:281228008 ! -property_value: IAO:0000589 "vertebral foramen of atlas (SCTID)" xsd:string -is_a: UBERON:0000219 ! vertebral foramen of atlas - -[Term] -id: SCTID:361831006 ! -property_value: IAO:0000589 "atlanto-occipital joint (SCTID)" xsd:string -is_a: UBERON:0000220 ! atlanto-occipital joint - -[Term] -id: SCTID:280366002 ! -property_value: IAO:0000589 "amniotic cavity (SCTID)" xsd:string -is_a: UBERON:0000301 ! amniotic cavity - -[Term] -id: SCTID:181686003 ! -property_value: IAO:0000589 "adductor longus (SCTID)" xsd:string -is_a: UBERON:0000303 ! adductor longus - -[Term] -id: SCTID:361885006 ! -property_value: IAO:0000589 "tendon sheath (SCTID)" xsd:string -is_a: UBERON:0000304 ! tendon sheath - -[Term] -id: SCTID:181457005 ! -property_value: IAO:0000589 "amnion (SCTID)" xsd:string -is_a: UBERON:0000305 ! amnion - -[Term] -id: SCTID:281483004 ! -property_value: IAO:0000589 "body wall (SCTID)" xsd:string -is_a: UBERON:0000309 ! body wall - -[Term] -id: SCTID:181131000 ! -property_value: IAO:0000589 "breast (SCTID)" xsd:string -is_a: UBERON:0000310 ! breast - -[Term] -id: SCTID:362311001 ! -property_value: IAO:0000589 "subarachnoid space (SCTID)" xsd:string -is_a: UBERON:0000315 ! subarachnoid space - -[Term] -id: SCTID:362157008 ! -property_value: IAO:0000589 "colonic mucosa (SCTID)" xsd:string -is_a: UBERON:0000317 ! colonic mucosa - -[Term] -id: SCTID:308841008 ! -property_value: IAO:0000589 "cytotrophoblast (SCTID)" xsd:string -is_a: UBERON:0000319 ! cytotrophoblast - -[Term] -id: SCTID:362146003 ! -property_value: IAO:0000589 "duodenal mucosa (SCTID)" xsd:string -is_a: UBERON:0000320 ! duodenal mucosa - -[Term] -id: SCTID:83418008 ! -property_value: IAO:0000589 "late embryo (SCTID)" xsd:string -is_a: UBERON:0000323 ! late embryo - -[Term] -id: SCTID:85458007 ! -property_value: IAO:0000589 "ileal mucosa (SCTID)" xsd:string -is_a: UBERON:0000331 ! ileal mucosa - -[Term] -id: SCTID:328639002 ! -property_value: IAO:0000589 "yellow bone marrow (SCTID)" xsd:string -is_a: UBERON:0000332 ! yellow bone marrow - -[Term] -id: SCTID:5023006 ! -property_value: IAO:0000589 "yellow bone marrow (SCTID)" xsd:string -is_a: UBERON:0000332 ! yellow bone marrow - -[Term] -id: SCTID:266297002 ! -property_value: IAO:0000589 "intestinal gland (SCTID)" xsd:string -is_a: UBERON:0000333 ! intestinal gland - -[Term] -id: SCTID:361693009 ! -property_value: IAO:0000589 "mucosa (SCTID)" xsd:string -is_a: UBERON:0000344 ! mucosa - -[Term] -id: SCTID:280210000 ! -property_value: IAO:0000589 "ophthalmic nerve (SCTID)" xsd:string -is_a: UBERON:0000348 ! ophthalmic nerve - -[Term] -id: SCTID:361342009 ! -property_value: IAO:0000589 "limbic system (SCTID)" xsd:string -is_a: UBERON:0000349 ! limbic system - -[Term] -id: SCTID:166962007 ! -property_value: IAO:0000589 "nuchal ligament (SCTID)" xsd:string -is_a: UBERON:0000351 ! nuchal ligament - -[Term] -id: SCTID:362121003 ! -property_value: IAO:0000589 "pharyngeal mucosa (SCTID)" xsd:string -is_a: UBERON:0000355 ! pharyngeal mucosa - -[Term] -id: SCTID:308837009 ! -property_value: IAO:0000589 "blastocyst (SCTID)" xsd:string -is_a: UBERON:0000358 ! blastocyst - -[Term] -id: SCTID:278916008 ! -property_value: IAO:0000589 "preputial gland (SCTID)" xsd:string -is_a: UBERON:0000359 ! preputial gland - -[Term] -id: SCTID:328538003 ! -property_value: IAO:0000589 "red bone marrow (SCTID)" xsd:string -is_a: UBERON:0000361 ! red bone marrow - -[Term] -id: SCTID:75330005 ! -property_value: IAO:0000589 "red bone marrow (SCTID)" xsd:string -is_a: UBERON:0000361 ! red bone marrow - -[Term] -id: SCTID:30737000 ! -property_value: IAO:0000589 "renal medulla (SCTID)" xsd:string -is_a: UBERON:0000362 ! renal medulla - -[Term] -id: SCTID:278874002 ! -property_value: IAO:0000589 "reticuloendothelial system (SCTID)" xsd:string -is_a: UBERON:0000363 ! reticuloendothelial system - -[Term] -id: SCTID:30117005 ! -property_value: IAO:0000589 "urothelium (SCTID)" xsd:string -is_a: UBERON:0000365 ! urothelium - -[Term] -id: SCTID:57789003 ! -property_value: IAO:0000589 "urothelium (SCTID)" xsd:string -is_a: UBERON:0000365 ! urothelium - -[Term] -id: SCTID:181687007 ! -property_value: IAO:0000589 "adductor brevis (SCTID)" xsd:string -is_a: UBERON:0000368 ! adductor brevis - -[Term] -id: SCTID:279318005 ! -property_value: IAO:0000589 "corpus striatum (SCTID)" xsd:string -is_a: UBERON:0000369 ! corpus striatum - -[Term] -id: SCTID:181688002 ! -property_value: IAO:0000589 "adductor magnus (SCTID)" xsd:string -is_a: UBERON:0000370 ! adductor magnus - -[Term] -id: SCTID:256965005 ! -property_value: IAO:0000589 "syncytiotrophoblast (SCTID)" xsd:string -is_a: UBERON:0000371 ! syncytiotrophoblast - -[Term] -id: SCTID:279312006 ! -property_value: IAO:0000589 "tapetum of corpus callosum (SCTID)" xsd:string -is_a: UBERON:0000373 ! tapetum of corpus callosum - -[Term] -id: SCTID:280212008 ! -property_value: IAO:0000589 "mandibular nerve (SCTID)" xsd:string -is_a: UBERON:0000375 ! mandibular nerve - -[Term] -id: SCTID:302544002 ! -property_value: IAO:0000589 "hindlimb stylopod (SCTID)" xsd:string -is_a: UBERON:0000376 ! hindlimb stylopod - -[Term] -id: SCTID:280211001 ! -property_value: IAO:0000589 "maxillary nerve (SCTID)" xsd:string -is_a: UBERON:0000377 ! maxillary nerve - -[Term] -id: SCTID:244781004 ! -property_value: IAO:0000589 "tongue muscle (SCTID)" xsd:string -is_a: UBERON:0000378 ! tongue muscle - -[Term] -id: SCTID:660006 ! -property_value: IAO:0000589 "tracheal mucosa (SCTID)" xsd:string -is_a: UBERON:0000379 ! tracheal mucosa - -[Term] -id: SCTID:279414008 ! -property_value: IAO:0000589 "urinary bladder detrusor smooth muscle (SCTID)" xsd:string -is_a: UBERON:0000381 ! urinary bladder detrusor smooth muscle - -[Term] -id: SCTID:399916008 ! -property_value: IAO:0000589 "apocrine sweat gland (SCTID)" xsd:string -is_a: UBERON:0000382 ! apocrine sweat gland - -[Term] -id: SCTID:245502004 ! -property_value: IAO:0000589 "epiglottis (SCTID)" xsd:string -is_a: UBERON:0000388 ! epiglottis - -[Term] -id: SCTID:280626006 ! -property_value: IAO:0000589 "lens cortex (SCTID)" xsd:string -is_a: UBERON:0000389 ! lens cortex - -[Term] -id: SCTID:280628007 ! -property_value: IAO:0000589 "lens nucleus (SCTID)" xsd:string -is_a: UBERON:0000390 ! lens nucleus - -[Term] -id: SCTID:362303006 ! -property_value: IAO:0000589 "leptomeninx (SCTID)" xsd:string -is_a: UBERON:0000391 ! leptomeninx - -[Term] -id: SCTID:244858006 ! -property_value: IAO:0000589 "longissimus muscle (SCTID)" xsd:string -is_a: UBERON:0000392 ! longissimus muscle - -[Term] -id: SCTID:368955007 ! -property_value: IAO:0000589 "cochlear ganglion (SCTID)" xsd:string -is_a: UBERON:0000395 ! cochlear ganglion - -[Term] -id: SCTID:69517000 ! -property_value: IAO:0000589 "vallate papilla (SCTID)" xsd:string -is_a: UBERON:0000396 ! vallate papilla - -[Term] -id: SCTID:42978003 ! -property_value: IAO:0000589 "colonic epithelium (SCTID)" xsd:string -is_a: UBERON:0000397 ! colonic epithelium - -[Term] -id: SCTID:362151009 ! -property_value: IAO:0000589 "jejunal mucosa (SCTID)" xsd:string -is_a: UBERON:0000399 ! jejunal mucosa - -[Term] -id: SCTID:57300004 ! -property_value: IAO:0000589 "jejunal epithelium (SCTID)" xsd:string -is_a: UBERON:0000400 ! jejunal epithelium - -[Term] -id: SCTID:361739000 ! -property_value: IAO:0000589 "mandibular ramus (SCTID)" xsd:string -is_a: UBERON:0000401 ! mandibular ramus - -[Term] -id: SCTID:278940000 ! -property_value: IAO:0000589 "nasal vestibule (SCTID)" xsd:string -is_a: UBERON:0000402 ! nasal vestibule - -[Term] -id: SCTID:181480002 ! -property_value: IAO:0000589 "scalp (SCTID)" xsd:string -is_a: UBERON:0000403 ! scalp - -[Term] -id: SCTID:181099004 ! -property_value: IAO:0000589 "sympathetic trunk (SCTID)" xsd:string -is_a: UBERON:0000407 ! sympathetic trunk - -[Term] -id: SCTID:176596009 ! -property_value: IAO:0000589 "vertebral ganglion (SCTID)" xsd:string -is_a: UBERON:0000408 ! vertebral ganglion - -[Term] -id: SCTID:30802009 ! -property_value: IAO:0000589 "bronchial mucosa (SCTID)" xsd:string -is_a: UBERON:0000410 ! bronchial mucosa - -[Term] -id: SCTID:320101005 ! -property_value: IAO:0000589 "dermal papilla (SCTID)" xsd:string -is_a: UBERON:0000412 ! dermal papilla - -[Term] -id: SCTID:362308002 ! -property_value: IAO:0000589 "subdural space (SCTID)" xsd:string -is_a: UBERON:0000416 ! subdural space - -[Term] -id: SCTID:361699008 ! -property_value: IAO:0000589 "eccrine sweat gland (SCTID)" xsd:string -is_a: UBERON:0000423 ! eccrine sweat gland - -[Term] -id: SCTID:268426007 ! -property_value: IAO:0000589 "gastric pit (SCTID)" xsd:string -is_a: UBERON:0000424 ! gastric pit - -[Term] -id: SCTID:82705008 ! -property_value: IAO:0000589 "endopeduncular nucleus (SCTID)" xsd:string -is_a: UBERON:0000432 ! endopeduncular nucleus - -[Term] -id: SCTID:53500001 ! -property_value: IAO:0000589 "right testicular vein (SCTID)" xsd:string -is_a: UBERON:0000442 ! right testicular vein - -[Term] -id: SCTID:90988008 ! -property_value: IAO:0000589 "left testicular vein (SCTID)" xsd:string -is_a: UBERON:0000443 ! left testicular vein - -[Term] -id: SCTID:64626006 ! -property_value: IAO:0000589 "lymphoid follicle (SCTID)" xsd:string -is_a: UBERON:0000444 ! lymphoid follicle - -[Term] -id: SCTID:258043001 ! -property_value: IAO:0000589 "corpus albicans (SCTID)" xsd:string -is_a: UBERON:0000450 ! corpus albicans - -[Term] -id: SCTID:362841006 ! -property_value: IAO:0000589 "decidua basalis (SCTID)" xsd:string -is_a: UBERON:0000453 ! decidua basalis - -[Term] -id: SCTID:264460007 ! -property_value: IAO:0000589 "endocervix (SCTID)" xsd:string -is_a: UBERON:0000458 ! endocervix - -[Term] -id: SCTID:245485002 ! -property_value: IAO:0000589 "uterine wall (SCTID)" xsd:string -is_a: UBERON:0000459 ! uterine wall - -[Term] -id: SCTID:362244005 ! -property_value: IAO:0000589 "major vestibular gland (SCTID)" xsd:string -is_a: UBERON:0000460 ! major vestibular gland - -[Term] -id: SCTID:279869001 ! -property_value: IAO:0000589 "minor vestibular gland (SCTID)" xsd:string -is_a: UBERON:0000461 ! minor vestibular gland - -[Term] -id: SCTID:278195005 ! -property_value: IAO:0000589 "anatomical system (SCTID)" xsd:string -is_a: UBERON:0000467 ! anatomical system - -[Term] -id: SCTID:243928005 ! -property_value: IAO:0000589 "multicellular organism (SCTID)" xsd:string -is_a: UBERON:0000468 ! multicellular organism - -[Term] -id: SCTID:181431007 ! -property_value: IAO:0000589 "testis (SCTID)" xsd:string -is_a: UBERON:0000473 ! testis - -[Term] -id: SCTID:361386004 ! -property_value: IAO:0000589 "female reproductive system (SCTID)" xsd:string -is_a: UBERON:0000474 ! female reproductive system - -[Term] -id: SCTID:314908006 ! -property_value: IAO:0000589 "extraembryonic structure (SCTID)" xsd:string -is_a: UBERON:0000478 ! extraembryonic structure - -[Term] -id: SCTID:31610004 ! -property_value: IAO:0000589 "epithelium (SCTID)" xsd:string -is_a: UBERON:0000483 ! epithelium - -[Term] -id: SCTID:32210007 ! -property_value: IAO:0000589 "simple columnar epithelium (SCTID)" xsd:string -is_a: UBERON:0000485 ! simple columnar epithelium - -[Term] -id: SCTID:309044005 ! -property_value: IAO:0000589 "multilaminar epithelium (SCTID)" xsd:string -is_a: UBERON:0000486 ! multilaminar epithelium - -[Term] -id: SCTID:309043004 ! -property_value: IAO:0000589 "unilaminar epithelium (SCTID)" xsd:string -is_a: UBERON:0000490 ! unilaminar epithelium - -[Term] -id: SCTID:362153007 ! -property_value: IAO:0000589 "ileocecal valve (SCTID)" xsd:string -is_a: UBERON:0000569 ! ileocecal valve - -[Term] -id: SCTID:279979000 ! -property_value: IAO:0000589 "suspensory ligament of duodenum (SCTID)" xsd:string -is_a: UBERON:0000642 ! suspensory ligament of duodenum - -[Term] -id: SCTID:244850004 ! -property_value: IAO:0000589 "splenius capitis (SCTID)" xsd:string -is_a: UBERON:0000711 ! splenius capitis - -[Term] -id: SCTID:369115003 ! -property_value: IAO:0000589 "hippocampal commissure (SCTID)" xsd:string -is_a: UBERON:0000908 ! hippocampal commissure - -[Term] -id: SCTID:302551006 ! -property_value: IAO:0000589 "thoracic segment of trunk (SCTID)" xsd:string -is_a: UBERON:0000915 ! thoracic segment of trunk - -[Term] -id: SCTID:302553009 ! -property_value: IAO:0000589 "abdomen (SCTID)" xsd:string -is_a: UBERON:0000916 ! abdomen - -[Term] -id: SCTID:57991002 ! -property_value: IAO:0000589 "embryo (SCTID)" xsd:string -is_a: UBERON:0000922 ! embryo - -[Term] -id: SCTID:362851007 ! -property_value: IAO:0000589 "ectoderm (SCTID)" xsd:string -is_a: UBERON:0000924 ! ectoderm - -[Term] -id: SCTID:362855003 ! -property_value: IAO:0000589 "endoderm (SCTID)" xsd:string -is_a: UBERON:0000925 ! endoderm - -[Term] -id: SCTID:362854004 ! -property_value: IAO:0000589 "mesoderm (SCTID)" xsd:string -is_a: UBERON:0000926 ! mesoderm - -[Term] -id: SCTID:280298006 ! -property_value: IAO:0000589 "pharyngeal branch of vagus nerve (SCTID)" xsd:string -is_a: UBERON:0000929 ! pharyngeal branch of vagus nerve - -[Term] -id: SCTID:244798004 ! -property_value: IAO:0000589 "chordate pharyngeal muscle (SCTID)" xsd:string -is_a: UBERON:0000933 ! chordate pharyngeal muscle - -[Term] -id: SCTID:279313001 ! -property_value: IAO:0000589 "anterior commissure (SCTID)" xsd:string -is_a: UBERON:0000935 ! anterior commissure - -[Term] -id: SCTID:369119009 ! -property_value: IAO:0000589 "anterior commissure (SCTID)" xsd:string -is_a: UBERON:0000935 ! anterior commissure - -[Term] -id: SCTID:180938001 ! -property_value: IAO:0000589 "cranial nerve II (SCTID)" xsd:string -is_a: UBERON:0000941 ! cranial nerve II - -[Term] -id: SCTID:280219004 ! -property_value: IAO:0000589 "frontal nerve (branch of ophthalmic) (SCTID)" xsd:string -is_a: UBERON:0000942 ! frontal nerve (branch of ophthalmic) - -[Term] -id: SCTID:181246003 ! -property_value: IAO:0000589 "stomach (SCTID)" xsd:string -is_a: UBERON:0000945 ! stomach - -[Term] -id: SCTID:181285005 ! -property_value: IAO:0000589 "cardiac valve (SCTID)" xsd:string -is_a: UBERON:0000946 ! cardiac valve - -[Term] -id: SCTID:181298001 ! -property_value: IAO:0000589 "aorta (SCTID)" xsd:string -is_a: UBERON:0000947 ! aorta - -[Term] -id: SCTID:302509004 ! -property_value: IAO:0000589 "heart (SCTID)" xsd:string -is_a: UBERON:0000948 ! heart - -[Term] -id: SCTID:278876000 ! -property_value: IAO:0000589 "endocrine system (SCTID)" xsd:string -is_a: UBERON:0000949 ! endocrine system - -[Term] -id: SCTID:181689005 ! -property_value: IAO:0000589 "gracilis (SCTID)" xsd:string -is_a: UBERON:0000950 ! gracilis - -[Term] -id: SCTID:244872002 ! -property_value: IAO:0000589 "rotator muscle of the vertebral column (SCTID)" xsd:string -is_a: UBERON:0000951 ! rotator muscle of the vertebral column - -[Term] -id: SCTID:258335003 ! -property_value: IAO:0000589 "brain (SCTID)" xsd:string -is_a: UBERON:0000955 ! brain - -[Term] -id: SCTID:362880003 ! -property_value: IAO:0000589 "cerebral cortex (SCTID)" xsd:string -is_a: UBERON:0000956 ! cerebral cortex - -[Term] -id: SCTID:244453006 ! -property_value: IAO:0000589 "optic chiasma (SCTID)" xsd:string -is_a: UBERON:0000959 ! optic chiasma - -[Term] -id: SCTID:181102004 ! -property_value: IAO:0000589 "thoracic ganglion (SCTID)" xsd:string -is_a: UBERON:0000961 ! thoracic ganglion - -[Term] -id: SCTID:360497008 ! -property_value: IAO:0000589 "nerve of cervical vertebra (SCTID)" xsd:string -is_a: UBERON:0000962 ! nerve of cervical vertebra - -[Term] -id: SCTID:181162001 ! -property_value: IAO:0000589 "cornea (SCTID)" xsd:string -is_a: UBERON:0000964 ! cornea - -[Term] -id: SCTID:181169005 ! -property_value: IAO:0000589 "lens of camera-type eye (SCTID)" xsd:string -is_a: UBERON:0000965 ! lens of camera-type eye - -[Term] -id: SCTID:181171005 ! -property_value: IAO:0000589 "retina (SCTID)" xsd:string -is_a: UBERON:0000966 ! retina - -[Term] -id: SCTID:302550007 ! -property_value: IAO:0000589 "neck (SCTID)" xsd:string -is_a: UBERON:0000974 ! neck - -[Term] -id: SCTID:302522007 ! -property_value: IAO:0000589 "sternum (SCTID)" xsd:string -is_a: UBERON:0000975 ! sternum - -[Term] -id: SCTID:181923006 ! -property_value: IAO:0000589 "humerus (SCTID)" xsd:string -is_a: UBERON:0000976 ! humerus - -[Term] -id: SCTID:181609007 ! -property_value: IAO:0000589 "pleura (SCTID)" xsd:string -is_a: UBERON:0000977 ! pleura - -[Term] -id: SCTID:182061009 ! -property_value: IAO:0000589 "tibia (SCTID)" xsd:string -is_a: UBERON:0000979 ! tibia - -[Term] -id: SCTID:182047004 ! -property_value: IAO:0000589 "trochanter (SCTID)" xsd:string -is_a: UBERON:0000980 ! trochanter - -[Term] -id: SCTID:182046008 ! -property_value: IAO:0000589 "femur (SCTID)" xsd:string -is_a: UBERON:0000981 ! femur - -[Term] -id: SCTID:302536002 ! -property_value: IAO:0000589 "skeletal joint (SCTID)" xsd:string -is_a: UBERON:0000982 ! skeletal joint - -[Term] -id: SCTID:280711000 ! -property_value: IAO:0000589 "metatarsus region (SCTID)" xsd:string -is_a: UBERON:0000983 ! metatarsus region - -[Term] -id: SCTID:370639003 ! -property_value: IAO:0000589 "metatarsus region (SCTID)" xsd:string -is_a: UBERON:0000983 ! metatarsus region - -[Term] -id: SCTID:181389002 ! -property_value: IAO:0000589 "axillary vein (SCTID)" xsd:string -is_a: UBERON:0000985 ! axillary vein - -[Term] -id: SCTID:279103004 ! -property_value: IAO:0000589 "pons (SCTID)" xsd:string -is_a: UBERON:0000988 ! pons - -[Term] -id: SCTID:265793009 ! -property_value: IAO:0000589 "penis (SCTID)" xsd:string -is_a: UBERON:0000989 ! penis - -[Term] -id: SCTID:278875001 ! -property_value: IAO:0000589 "reproductive system (SCTID)" xsd:string -is_a: UBERON:0000990 ! reproductive system - -[Term] -id: SCTID:304623008 ! -property_value: IAO:0000589 "gonad (SCTID)" xsd:string -is_a: UBERON:0000991 ! gonad - -[Term] -id: SCTID:181464007 ! -property_value: IAO:0000589 "ovary (SCTID)" xsd:string -is_a: UBERON:0000992 ! ovary - -[Term] -id: SCTID:181452004 ! -property_value: IAO:0000589 "uterus (SCTID)" xsd:string -is_a: UBERON:0000995 ! uterus - -[Term] -id: SCTID:181441005 ! -property_value: IAO:0000589 "vagina (SCTID)" xsd:string -is_a: UBERON:0000996 ! vagina - -[Term] -id: SCTID:265796001 ! -property_value: IAO:0000589 "mammalian vulva (SCTID)" xsd:string -is_a: UBERON:0000997 ! mammalian vulva - -[Term] -id: SCTID:181434004 ! -property_value: IAO:0000589 "seminal vesicle (SCTID)" xsd:string -is_a: UBERON:0000998 ! seminal vesicle - -[Term] -id: SCTID:279665005 ! -property_value: IAO:0000589 "ejaculatory duct (SCTID)" xsd:string -is_a: UBERON:0000999 ! ejaculatory duct - -[Term] -id: SCTID:245467009 ! -property_value: IAO:0000589 "vas deferens (SCTID)" xsd:string -is_a: UBERON:0001000 ! vas deferens - -[Term] -id: SCTID:361694003 ! -property_value: IAO:0000589 "skin epidermis (SCTID)" xsd:string -is_a: UBERON:0001003 ! skin epidermis - -[Term] -id: SCTID:278197002 ! -property_value: IAO:0000589 "respiratory system (SCTID)" xsd:string -is_a: UBERON:0001004 ! respiratory system - -[Term] -id: SCTID:361380005 ! -property_value: IAO:0000589 "respiratory airway (SCTID)" xsd:string -is_a: UBERON:0001005 ! respiratory airway - -[Term] -id: SCTID:278859004 ! -property_value: IAO:0000589 "digestive system (SCTID)" xsd:string -is_a: UBERON:0001007 ! digestive system - -[Term] -id: SCTID:362204003 ! -property_value: IAO:0000589 "renal system (SCTID)" xsd:string -is_a: UBERON:0001008 ! renal system - -[Term] -id: SCTID:302520004 ! -property_value: IAO:0000589 "diaphysis of ulna (SCTID)" xsd:string -is_a: UBERON:0001010 ! diaphysis of ulna - -[Term] -id: SCTID:181941003 ! -property_value: IAO:0000589 "head of radius (SCTID)" xsd:string -is_a: UBERON:0001012 ! head of radius - -[Term] -id: SCTID:55603005 ! -property_value: IAO:0000589 "adipose tissue (SCTID)" xsd:string -is_a: UBERON:0001013 ! adipose tissue - -[Term] -id: SCTID:278196006 ! -property_value: IAO:0000589 "nervous system (SCTID)" xsd:string -is_a: UBERON:0001016 ! nervous system - -[Term] -id: SCTID:278199004 ! -property_value: IAO:0000589 "central nervous system (SCTID)" xsd:string -is_a: UBERON:0001017 ! central nervous system - -[Term] -id: SCTID:244457007 ! -property_value: IAO:0000589 "nerve (SCTID)" xsd:string -is_a: UBERON:0001021 ! nerve - -[Term] -id: SCTID:256864008 ! -property_value: IAO:0000589 "nerve (SCTID)" xsd:string -is_a: UBERON:0001021 ! nerve - -[Term] -id: SCTID:302518002 ! -property_value: IAO:0000589 "diaphysis of radius (SCTID)" xsd:string -is_a: UBERON:0001028 ! diaphysis of radius - -[Term] -id: SCTID:423940004 ! -property_value: IAO:0000589 "gustatory system (SCTID)" xsd:string -is_a: UBERON:0001033 ! gustatory system - -[Term] -id: SCTID:50870008 ! -property_value: IAO:0000589 "dento-alveolar joint (SCTID)" xsd:string -is_a: UBERON:0001035 ! dento-alveolar joint - -[Term] -id: SCTID:361702001 ! -property_value: IAO:0000589 "strand of hair (SCTID)" xsd:string -is_a: UBERON:0001037 ! strand of hair - -[Term] -id: SCTID:362845002 ! -property_value: IAO:0000589 "yolk sac (SCTID)" xsd:string -is_a: UBERON:0001040 ! yolk sac - -[Term] -id: SCTID:361409009 ! -property_value: IAO:0000589 "foregut (SCTID)" xsd:string -is_a: UBERON:0001041 ! foregut - -[Term] -id: SCTID:181211006 ! -property_value: IAO:0000589 "chordate pharynx (SCTID)" xsd:string -is_a: UBERON:0001042 ! chordate pharynx - -[Term] -id: SCTID:181245004 ! -property_value: IAO:0000589 "esophagus (SCTID)" xsd:string -is_a: UBERON:0001043 ! esophagus - -[Term] -id: SCTID:181236000 ! -property_value: IAO:0000589 "saliva-secreting gland (SCTID)" xsd:string -is_a: UBERON:0001044 ! saliva-secreting gland - -[Term] -id: SCTID:361410004 ! -property_value: IAO:0000589 "midgut (SCTID)" xsd:string -is_a: UBERON:0001045 ! midgut - -[Term] -id: SCTID:362856002 ! -property_value: IAO:0000589 "hindgut (SCTID)" xsd:string -is_a: UBERON:0001046 ! hindgut - -[Term] -id: SCTID:362852000 ! -property_value: IAO:0000589 "neural tube (SCTID)" xsd:string -is_a: UBERON:0001049 ! neural tube - -[Term] -id: SCTID:281490009 ! -property_value: IAO:0000589 "hypopharynx (SCTID)" xsd:string -is_a: UBERON:0001051 ! hypopharynx - -[Term] -id: SCTID:181261002 ! -property_value: IAO:0000589 "rectum (SCTID)" xsd:string -is_a: UBERON:0001052 ! rectum - -[Term] -id: SCTID:41055008 ! -property_value: IAO:0000589 "Malpighian tubule (SCTID)" xsd:string -is_a: UBERON:0001054 ! Malpighian tubule - -[Term] -id: SCTID:279368002 ! -property_value: IAO:0000589 "flocculus (SCTID)" xsd:string -is_a: UBERON:0001063 ! flocculus - -[Term] -id: SCTID:30711003 ! -property_value: IAO:0000589 "flocculus (SCTID)" xsd:string -is_a: UBERON:0001063 ! flocculus - -[Term] -id: SCTID:245385001 ! -property_value: IAO:0000589 "ventral pancreatic duct (SCTID)" xsd:string -is_a: UBERON:0001064 ! ventral pancreatic duct - -[Term] -id: SCTID:362175009 ! -property_value: IAO:0000589 "parotid main excretory duct (SCTID)" xsd:string -is_a: UBERON:0001065 ! parotid main excretory duct - -[Term] -id: SCTID:244570000 ! -property_value: IAO:0000589 "intervertebral disk (SCTID)" xsd:string -is_a: UBERON:0001066 ! intervertebral disk - -[Term] -id: SCTID:89836005 ! -property_value: IAO:0000589 "vertebral arch joint (SCTID)" xsd:string -is_a: UBERON:0001067 ! vertebral arch joint - -[Term] -id: SCTID:181492002 ! -property_value: IAO:0000589 "skin of back (SCTID)" xsd:string -is_a: UBERON:0001068 ! skin of back - -[Term] -id: SCTID:362201006 ! -property_value: IAO:0000589 "head of pancreas (SCTID)" xsd:string -is_a: UBERON:0001069 ! head of pancreas - -[Term] -id: SCTID:362044002 ! -property_value: IAO:0000589 "external carotid artery (SCTID)" xsd:string -is_a: UBERON:0001070 ! external carotid artery - -[Term] -id: SCTID:161746006 ! -property_value: IAO:0000589 "superficial cervical artery (SCTID)" xsd:string -is_a: UBERON:0001071 ! superficial cervical artery - -[Term] -id: SCTID:181369003 ! -property_value: IAO:0000589 "posterior vena cava (SCTID)" xsd:string -is_a: UBERON:0001072 ! posterior vena cava - -[Term] -id: SCTID:264021000 ! -property_value: IAO:0000589 "ileocecal junction (SCTID)" xsd:string -is_a: UBERON:0001073 ! ileocecal junction - -[Term] -id: SCTID:362027001 ! -property_value: IAO:0000589 "pericardial cavity (SCTID)" xsd:string -is_a: UBERON:0001074 ! pericardial cavity - -[Term] -id: SCTID:361745008 ! -property_value: IAO:0000589 "bony vertebral centrum (SCTID)" xsd:string -is_a: UBERON:0001075 ! bony vertebral centrum - -[Term] -id: SCTID:362867001 ! -property_value: IAO:0000589 "bony vertebral centrum (SCTID)" xsd:string -is_a: UBERON:0001075 ! bony vertebral centrum - -[Term] -id: SCTID:264259004 ! -property_value: IAO:0000589 "neural spine (SCTID)" xsd:string -is_a: UBERON:0001076 ! neural spine - -[Term] -id: SCTID:264238006 ! -property_value: IAO:0000589 "transverse process of vertebra (SCTID)" xsd:string -is_a: UBERON:0001077 ! transverse process of vertebra - -[Term] -id: SCTID:277422007 ! -property_value: IAO:0000589 "pedicle of vertebra (SCTID)" xsd:string -is_a: UBERON:0001078 ! pedicle of vertebra - -[Term] -id: SCTID:42424006 ! -property_value: IAO:0000589 "prezygapophysis (SCTID)" xsd:string -is_a: UBERON:0001079 ! prezygapophysis - -[Term] -id: SCTID:30079000 ! -property_value: IAO:0000589 "postzygapophysis (SCTID)" xsd:string -is_a: UBERON:0001080 ! postzygapophysis - -[Term] -id: SCTID:192172004 ! -property_value: IAO:0000589 "endocardium of ventricle (SCTID)" xsd:string -is_a: UBERON:0001081 ! endocardium of ventricle - -[Term] -id: SCTID:192084000 ! -property_value: IAO:0000589 "myocardium of ventricle (SCTID)" xsd:string -is_a: UBERON:0001083 ! myocardium of ventricle - -[Term] -id: SCTID:181484006 ! -property_value: IAO:0000589 "skin of head (SCTID)" xsd:string -is_a: UBERON:0001084 ! skin of head - -[Term] -id: SCTID:181489001 ! -property_value: IAO:0000589 "skin of trunk (SCTID)" xsd:string -is_a: UBERON:0001085 ! skin of trunk - -[Term] -id: SCTID:302214001 ! -property_value: IAO:0000589 "calcareous tooth (SCTID)" xsd:string -is_a: UBERON:0001091 ! calcareous tooth - -[Term] -id: SCTID:181818007 ! -property_value: IAO:0000589 "vertebral bone 1 (SCTID)" xsd:string -is_a: UBERON:0001092 ! vertebral bone 1 - -[Term] -id: SCTID:181819004 ! -property_value: IAO:0000589 "vertebral bone 2 (SCTID)" xsd:string -is_a: UBERON:0001093 ! vertebral bone 2 - -[Term] -id: SCTID:361773005 ! -property_value: IAO:0000589 "sacral vertebra (SCTID)" xsd:string -is_a: UBERON:0001094 ! sacral vertebra - -[Term] -id: SCTID:361774004 ! -property_value: IAO:0000589 "caudal vertebra (SCTID)" xsd:string -is_a: UBERON:0001095 ! caudal vertebra - -[Term] -id: SCTID:181759007 ! -property_value: IAO:0000589 "axillary lymph node (SCTID)" xsd:string -is_a: UBERON:0001097 ! axillary lymph node - -[Term] -id: SCTID:420856006 ! -property_value: IAO:0000589 "incisor tooth (SCTID)" xsd:string -is_a: UBERON:0001098 ! incisor tooth - -[Term] -id: SCTID:25248001 ! -property_value: IAO:0000589 "subcostal vein (SCTID)" xsd:string -is_a: UBERON:0001099 ! subcostal vein - -[Term] -id: SCTID:181625002 ! -property_value: IAO:0000589 "pectoralis minor (SCTID)" xsd:string -is_a: UBERON:0001100 ! pectoralis minor - -[Term] -id: SCTID:181373000 ! -property_value: IAO:0000589 "external jugular vein (SCTID)" xsd:string -is_a: UBERON:0001101 ! external jugular vein - -[Term] -id: SCTID:181614006 ! -property_value: IAO:0000589 "diaphragm (SCTID)" xsd:string -is_a: UBERON:0001103 ! diaphragm - -[Term] -id: SCTID:65478008 ! -property_value: IAO:0000589 "anterior jugular vein (SCTID)" xsd:string -is_a: UBERON:0001104 ! anterior jugular vein - -[Term] -id: SCTID:181910004 ! -property_value: IAO:0000589 "clavicle bone (SCTID)" xsd:string -is_a: UBERON:0001105 ! clavicle bone - -[Term] -id: SCTID:181391005 ! -property_value: IAO:0000589 "cephalic vein (SCTID)" xsd:string -is_a: UBERON:0001106 ! cephalic vein - -[Term] -id: SCTID:244830003 ! -property_value: IAO:0000589 "sternohyoid muscle (SCTID)" xsd:string -is_a: UBERON:0001107 ! sternohyoid muscle - -[Term] -id: SCTID:244833001 ! -property_value: IAO:0000589 "omohyoid muscle (SCTID)" xsd:string -is_a: UBERON:0001108 ! omohyoid muscle - -[Term] -id: SCTID:244831004 ! -property_value: IAO:0000589 "sternothyroid muscle (SCTID)" xsd:string -is_a: UBERON:0001109 ! sternothyroid muscle - -[Term] -id: SCTID:244832006 ! -property_value: IAO:0000589 "thyrohyoid muscle (SCTID)" xsd:string -is_a: UBERON:0001110 ! thyrohyoid muscle - -[Term] -id: SCTID:181746004 ! -property_value: IAO:0000589 "intercostal muscle (SCTID)" xsd:string -is_a: UBERON:0001111 ! intercostal muscle - -[Term] -id: SCTID:181747008 ! -property_value: IAO:0000589 "latissimus dorsi muscle (SCTID)" xsd:string -is_a: UBERON:0001112 ! latissimus dorsi muscle - -[Term] -id: SCTID:245378000 ! -property_value: IAO:0000589 "lobe of liver (SCTID)" xsd:string -is_a: UBERON:0001113 ! lobe of liver - -[Term] -id: SCTID:362182008 ! -property_value: IAO:0000589 "right lobe of liver (SCTID)" xsd:string -is_a: UBERON:0001114 ! right lobe of liver - -[Term] -id: SCTID:362183003 ! -property_value: IAO:0000589 "left lobe of liver (SCTID)" xsd:string -is_a: UBERON:0001115 ! left lobe of liver - -[Term] -id: SCTID:279929003 ! -property_value: IAO:0000589 "quadrate lobe of liver (SCTID)" xsd:string -is_a: UBERON:0001116 ! quadrate lobe of liver - -[Term] -id: SCTID:362184009 ! -property_value: IAO:0000589 "caudate lobe of liver (SCTID)" xsd:string -is_a: UBERON:0001117 ! caudate lobe of liver - -[Term] -id: SCTID:245537001 ! -property_value: IAO:0000589 "lobe of thyroid gland (SCTID)" xsd:string -is_a: UBERON:0001118 ! lobe of thyroid gland - -[Term] -id: SCTID:170482008 ! -property_value: IAO:0000589 "right lobe of thyroid gland (SCTID)" xsd:string -is_a: UBERON:0001119 ! right lobe of thyroid gland - -[Term] -id: SCTID:170784008 ! -property_value: IAO:0000589 "left lobe of thyroid gland (SCTID)" xsd:string -is_a: UBERON:0001120 ! left lobe of thyroid gland - -[Term] -id: SCTID:244836009 ! -property_value: IAO:0000589 "longus colli muscle (SCTID)" xsd:string -is_a: UBERON:0001121 ! longus colli muscle - -[Term] -id: SCTID:244844009 ! -property_value: IAO:0000589 "scalenus medius (SCTID)" xsd:string -is_a: UBERON:0001122 ! scalenus medius - -[Term] -id: SCTID:181748003 ! -property_value: IAO:0000589 "serratus ventralis (SCTID)" xsd:string -is_a: UBERON:0001125 ! serratus ventralis - -[Term] -id: SCTID:244935007 ! -property_value: IAO:0000589 "serratus dorsalis superior muscle (SCTID)" xsd:string -is_a: UBERON:0001126 ! serratus dorsalis superior muscle - -[Term] -id: SCTID:244936008 ! -property_value: IAO:0000589 "serratus dorsalis inferior muscle (SCTID)" xsd:string -is_a: UBERON:0001127 ! serratus dorsalis inferior muscle - -[Term] -id: SCTID:181741009 ! -property_value: IAO:0000589 "sternocleidomastoid (SCTID)" xsd:string -is_a: UBERON:0001128 ! sternocleidomastoid - -[Term] -id: SCTID:277446000 ! -property_value: IAO:0000589 "subscapularis muscle (SCTID)" xsd:string -is_a: UBERON:0001129 ! subscapularis muscle - -[Term] -id: SCTID:44300000 ! -property_value: IAO:0000589 "vertebral column (SCTID)" xsd:string -is_a: UBERON:0001130 ! vertebral column - -[Term] -id: SCTID:280734009 ! -property_value: IAO:0000589 "vertebral foramen (SCTID)" xsd:string -is_a: UBERON:0001131 ! vertebral foramen - -[Term] -id: SCTID:181121007 ! -property_value: IAO:0000589 "parathyroid gland (SCTID)" xsd:string -is_a: UBERON:0001132 ! parathyroid gland - -[Term] -id: SCTID:426215008 ! -property_value: IAO:0000589 "skeletal muscle tissue (SCTID)" xsd:string -is_a: UBERON:0001134 ! skeletal muscle tissue - -[Term] -id: SCTID:361918002 ! -property_value: IAO:0000589 "mesothelium (SCTID)" xsd:string -is_a: UBERON:0001136 ! mesothelium - -[Term] -id: SCTID:123961009 ! -property_value: IAO:0000589 "dorsum (SCTID)" xsd:string -is_a: UBERON:0001137 ! dorsum - -[Term] -id: SCTID:278031001 ! -property_value: IAO:0000589 "superior mesenteric vein (SCTID)" xsd:string -is_a: UBERON:0001138 ! superior mesenteric vein - -[Term] -id: SCTID:181398004 ! -property_value: IAO:0000589 "common iliac vein (SCTID)" xsd:string -is_a: UBERON:0001139 ! common iliac vein - -[Term] -id: SCTID:116358006 ! -property_value: IAO:0000589 "renal vein (SCTID)" xsd:string -is_a: UBERON:0001140 ! renal vein - -[Term] -id: SCTID:116357001 ! -property_value: IAO:0000589 "right renal vein (SCTID)" xsd:string -is_a: UBERON:0001141 ! right renal vein - -[Term] -id: SCTID:116356005 ! -property_value: IAO:0000589 "left renal vein (SCTID)" xsd:string -is_a: UBERON:0001142 ! left renal vein - -[Term] -id: SCTID:278191001 ! -property_value: IAO:0000589 "hepatic vein (SCTID)" xsd:string -is_a: UBERON:0001143 ! hepatic vein - -[Term] -id: SCTID:264496006 ! -property_value: IAO:0000589 "testicular vein (SCTID)" xsd:string -is_a: UBERON:0001144 ! testicular vein - -[Term] -id: SCTID:278193003 ! -property_value: IAO:0000589 "ovarian vein (SCTID)" xsd:string -is_a: UBERON:0001145 ! ovarian vein - -[Term] -id: SCTID:278194009 ! -property_value: IAO:0000589 "suprarenal vein (SCTID)" xsd:string -is_a: UBERON:0001146 ! suprarenal vein - -[Term] -id: SCTID:181010001 ! -property_value: IAO:0000589 "median nerve (SCTID)" xsd:string -is_a: UBERON:0001148 ! median nerve - -[Term] -id: SCTID:279965008 ! -property_value: IAO:0000589 "bare area of liver (SCTID)" xsd:string -is_a: UBERON:0001149 ! bare area of liver - -[Term] -id: SCTID:362202004 ! -property_value: IAO:0000589 "body of pancreas (SCTID)" xsd:string -is_a: UBERON:0001150 ! body of pancreas - -[Term] -id: SCTID:245382003 ! -property_value: IAO:0000589 "tail of pancreas (SCTID)" xsd:string -is_a: UBERON:0001151 ! tail of pancreas - -[Term] -id: SCTID:245398005 ! -property_value: IAO:0000589 "cystic duct (SCTID)" xsd:string -is_a: UBERON:0001152 ! cystic duct - -[Term] -id: SCTID:181256004 ! -property_value: IAO:0000589 "caecum (SCTID)" xsd:string -is_a: UBERON:0001153 ! caecum - -[Term] -id: SCTID:181255000 ! -property_value: IAO:0000589 "vermiform appendix (SCTID)" xsd:string -is_a: UBERON:0001154 ! vermiform appendix - -[Term] -id: SCTID:302508007 ! -property_value: IAO:0000589 "colon (SCTID)" xsd:string -is_a: UBERON:0001155 ! colon - -[Term] -id: SCTID:362162009 ! -property_value: IAO:0000589 "ascending colon (SCTID)" xsd:string -is_a: UBERON:0001156 ! ascending colon - -[Term] -id: SCTID:362163004 ! -property_value: IAO:0000589 "transverse colon (SCTID)" xsd:string -is_a: UBERON:0001157 ! transverse colon - -[Term] -id: SCTID:362165006 ! -property_value: IAO:0000589 "descending colon (SCTID)" xsd:string -is_a: UBERON:0001158 ! descending colon - -[Term] -id: SCTID:362166007 ! -property_value: IAO:0000589 "sigmoid colon (SCTID)" xsd:string -is_a: UBERON:0001159 ! sigmoid colon - -[Term] -id: SCTID:362139007 ! -property_value: IAO:0000589 "fundus of stomach (SCTID)" xsd:string -is_a: UBERON:0001160 ! fundus of stomach - -[Term] -id: SCTID:362140009 ! -property_value: IAO:0000589 "body of stomach (SCTID)" xsd:string -is_a: UBERON:0001161 ! body of stomach - -[Term] -id: SCTID:362138004 ! -property_value: IAO:0000589 "cardia of stomach (SCTID)" xsd:string -is_a: UBERON:0001162 ! cardia of stomach - -[Term] -id: SCTID:362133008 ! -property_value: IAO:0000589 "lesser curvature of stomach (SCTID)" xsd:string -is_a: UBERON:0001163 ! lesser curvature of stomach - -[Term] -id: SCTID:362134002 ! -property_value: IAO:0000589 "greater curvature of stomach (SCTID)" xsd:string -is_a: UBERON:0001164 ! greater curvature of stomach - -[Term] -id: SCTID:362142001 ! -property_value: IAO:0000589 "pyloric antrum (SCTID)" xsd:string -is_a: UBERON:0001165 ! pyloric antrum - -[Term] -id: SCTID:362143006 ! -property_value: IAO:0000589 "pylorus (SCTID)" xsd:string -is_a: UBERON:0001166 ! pylorus - -[Term] -id: SCTID:279995000 ! -property_value: IAO:0000589 "wall of stomach (SCTID)" xsd:string -is_a: UBERON:0001167 ! wall of stomach - -[Term] -id: SCTID:245456008 ! -property_value: IAO:0000589 "mesentery of small intestine (SCTID)" xsd:string -is_a: UBERON:0001170 ! mesentery of small intestine - -[Term] -id: SCTID:272214009 ! -property_value: IAO:0000589 "hepatic acinus (SCTID)" xsd:string -is_a: UBERON:0001172 ! hepatic acinus - -[Term] -id: SCTID:181267003 ! -property_value: IAO:0000589 "biliary tree (SCTID)" xsd:string -is_a: UBERON:0001173 ! biliary tree - -[Term] -id: SCTID:362199009 ! -property_value: IAO:0000589 "common bile duct (SCTID)" xsd:string -is_a: UBERON:0001174 ! common bile duct - -[Term] -id: SCTID:245403006 ! -property_value: IAO:0000589 "common hepatic duct (SCTID)" xsd:string -is_a: UBERON:0001175 ! common hepatic duct - -[Term] -id: SCTID:245401008 ! -property_value: IAO:0000589 "right hepatic duct (SCTID)" xsd:string -is_a: UBERON:0001176 ! right hepatic duct - -[Term] -id: SCTID:245400009 ! -property_value: IAO:0000589 "left hepatic duct (SCTID)" xsd:string -is_a: UBERON:0001177 ! left hepatic duct - -[Term] -id: SCTID:362702003 ! -property_value: IAO:0000589 "visceral peritoneum (SCTID)" xsd:string -is_a: UBERON:0001178 ! visceral peritoneum - -[Term] -id: SCTID:181616008 ! -property_value: IAO:0000589 "peritoneal cavity (SCTID)" xsd:string -is_a: UBERON:0001179 ! peritoneal cavity - -[Term] -id: SCTID:263190002 ! -property_value: IAO:0000589 "superior recess of lesser sac (SCTID)" xsd:string -is_a: UBERON:0001180 ! superior recess of lesser sac - -[Term] -id: SCTID:263261002 ! -property_value: IAO:0000589 "inferior recess of lesser sac (SCTID)" xsd:string -is_a: UBERON:0001181 ! inferior recess of lesser sac - -[Term] -id: SCTID:362048004 ! -property_value: IAO:0000589 "superior mesenteric artery (SCTID)" xsd:string -is_a: UBERON:0001182 ! superior mesenteric artery - -[Term] -id: SCTID:181341006 ! -property_value: IAO:0000589 "inferior mesenteric artery (SCTID)" xsd:string -is_a: UBERON:0001183 ! inferior mesenteric artery - -[Term] -id: SCTID:181339005 ! -property_value: IAO:0000589 "renal artery (SCTID)" xsd:string -is_a: UBERON:0001184 ! renal artery - -[Term] -id: SCTID:36800007 ! -property_value: IAO:0000589 "right renal artery (SCTID)" xsd:string -is_a: UBERON:0001185 ! right renal artery - -[Term] -id: SCTID:19215005 ! -property_value: IAO:0000589 "left renal artery (SCTID)" xsd:string -is_a: UBERON:0001186 ! left renal artery - -[Term] -id: SCTID:244281003 ! -property_value: IAO:0000589 "testicular artery (SCTID)" xsd:string -is_a: UBERON:0001187 ! testicular artery - -[Term] -id: SCTID:244280002 ! -property_value: IAO:0000589 "ovarian artery (SCTID)" xsd:string -is_a: UBERON:0001190 ! ovarian artery - -[Term] -id: SCTID:362050007 ! -property_value: IAO:0000589 "common iliac artery (SCTID)" xsd:string -is_a: UBERON:0001191 ! common iliac artery - -[Term] -id: SCTID:244267000 ! -property_value: IAO:0000589 "left gastric artery (SCTID)" xsd:string -is_a: UBERON:0001192 ! left gastric artery - -[Term] -id: SCTID:76015000 ! -property_value: IAO:0000589 "hepatic artery (SCTID)" xsd:string -is_a: UBERON:0001193 ! hepatic artery - -[Term] -id: SCTID:244266009 ! -property_value: IAO:0000589 "splenic artery (SCTID)" xsd:string -is_a: UBERON:0001194 ! splenic artery - -[Term] -id: SCTID:244273004 ! -property_value: IAO:0000589 "inferior pancreaticoduodenal artery (SCTID)" xsd:string -is_a: UBERON:0001195 ! inferior pancreaticoduodenal artery - -[Term] -id: SCTID:244276007 ! -property_value: IAO:0000589 "middle colic artery (SCTID)" xsd:string -is_a: UBERON:0001196 ! middle colic artery - -[Term] -id: SCTID:244279000 ! -property_value: IAO:0000589 "ileocolic artery (SCTID)" xsd:string -is_a: UBERON:0001197 ! ileocolic artery - -[Term] -id: SCTID:303424001 ! -property_value: IAO:0000589 "superior suprarenal artery (SCTID)" xsd:string -is_a: UBERON:0001198 ! superior suprarenal artery - -[Term] -id: SCTID:362131005 ! -property_value: IAO:0000589 "mucosa of stomach (SCTID)" xsd:string -is_a: UBERON:0001199 ! mucosa of stomach - -[Term] -id: SCTID:52459002 ! -property_value: IAO:0000589 "submucosa of stomach (SCTID)" xsd:string -is_a: UBERON:0001200 ! submucosa of stomach - -[Term] -id: SCTID:1353004 ! -property_value: IAO:0000589 "serosa of stomach (SCTID)" xsd:string -is_a: UBERON:0001201 ! serosa of stomach - -[Term] -id: SCTID:268073008 ! -property_value: IAO:0000589 "pyloric sphincter (SCTID)" xsd:string -is_a: UBERON:0001202 ! pyloric sphincter - -[Term] -id: SCTID:64551004 ! -property_value: IAO:0000589 "muscularis mucosae of stomach (SCTID)" xsd:string -is_a: UBERON:0001203 ! muscularis mucosae of stomach - -[Term] -id: SCTID:362144000 ! -property_value: IAO:0000589 "mucosa of small intestine (SCTID)" xsd:string -is_a: UBERON:0001204 ! mucosa of small intestine - -[Term] -id: SCTID:691000 ! -property_value: IAO:0000589 "submucosa of small intestine (SCTID)" xsd:string -is_a: UBERON:0001205 ! submucosa of small intestine - -[Term] -id: SCTID:8266009 ! -property_value: IAO:0000589 "serosa of small intestine (SCTID)" xsd:string -is_a: UBERON:0001206 ! serosa of small intestine - -[Term] -id: SCTID:36401004 ! -property_value: IAO:0000589 "muscularis mucosae of small intestine (SCTID)" xsd:string -is_a: UBERON:0001210 ! muscularis mucosae of small intestine - -[Term] -id: SCTID:41298001 ! -property_value: IAO:0000589 "duodenal gland (SCTID)" xsd:string -is_a: UBERON:0001212 ! duodenal gland - -[Term] -id: SCTID:23230007 ! -property_value: IAO:0000589 "intestinal villus (SCTID)" xsd:string -is_a: UBERON:0001213 ! intestinal villus - -[Term] -id: SCTID:264492008 ! -property_value: IAO:0000589 "pancreatic tributary of splenic vein (SCTID)" xsd:string -is_a: UBERON:0001214 ! pancreatic tributary of splenic vein - -[Term] -id: SCTID:281055007 ! -property_value: IAO:0000589 "inferior mesenteric vein (SCTID)" xsd:string -is_a: UBERON:0001215 ! inferior mesenteric vein - -[Term] -id: SCTID:9018004 ! -property_value: IAO:0000589 "middle colic vein (SCTID)" xsd:string -is_a: UBERON:0001218 ! middle colic vein - -[Term] -id: SCTID:36208008 ! -property_value: IAO:0000589 "ileocolic vein (SCTID)" xsd:string -is_a: UBERON:0001219 ! ileocolic vein - -[Term] -id: SCTID:244949003 ! -property_value: IAO:0000589 "transversus abdominis muscle (SCTID)" xsd:string -is_a: UBERON:0001221 ! transversus abdominis muscle - -[Term] -id: SCTID:276251000 ! -property_value: IAO:0000589 "right ureter (SCTID)" xsd:string -is_a: UBERON:0001222 ! right ureter - -[Term] -id: SCTID:276340002 ! -property_value: IAO:0000589 "left ureter (SCTID)" xsd:string -is_a: UBERON:0001223 ! left ureter - -[Term] -id: SCTID:362221007 ! -property_value: IAO:0000589 "renal pelvis (SCTID)" xsd:string -is_a: UBERON:0001224 ! renal pelvis - -[Term] -id: SCTID:362211004 ! -property_value: IAO:0000589 "cortex of kidney (SCTID)" xsd:string -is_a: UBERON:0001225 ! cortex of kidney - -[Term] -id: SCTID:1106008 ! -property_value: IAO:0000589 "major calyx (SCTID)" xsd:string -is_a: UBERON:0001226 ! major calyx - -[Term] -id: SCTID:26293004 ! -property_value: IAO:0000589 "minor calyx (SCTID)" xsd:string -is_a: UBERON:0001227 ! minor calyx - -[Term] -id: SCTID:362214007 ! -property_value: IAO:0000589 "renal papilla (SCTID)" xsd:string -is_a: UBERON:0001228 ! renal papilla - -[Term] -id: SCTID:361329009 ! -property_value: IAO:0000589 "renal corpuscle (SCTID)" xsd:string -is_a: UBERON:0001229 ! renal corpuscle - -[Term] -id: SCTID:361331000 ! -property_value: IAO:0000589 "glomerular capsule (SCTID)" xsd:string -is_a: UBERON:0001230 ! glomerular capsule - -[Term] -id: SCTID:361332007 ! -property_value: IAO:0000589 "nephron tubule (SCTID)" xsd:string -is_a: UBERON:0001231 ! nephron tubule - -[Term] -id: SCTID:28202009 ! -property_value: IAO:0000589 "collecting duct of renal tubule (SCTID)" xsd:string -is_a: UBERON:0001232 ! collecting duct of renal tubule - -[Term] -id: SCTID:281625001 ! -property_value: IAO:0000589 "right adrenal gland (SCTID)" xsd:string -is_a: UBERON:0001233 ! right adrenal gland - -[Term] -id: SCTID:281626000 ! -property_value: IAO:0000589 "left adrenal gland (SCTID)" xsd:string -is_a: UBERON:0001234 ! left adrenal gland - -[Term] -id: SCTID:362584002 ! -property_value: IAO:0000589 "adrenal cortex (SCTID)" xsd:string -is_a: UBERON:0001235 ! adrenal cortex - -[Term] -id: SCTID:362585001 ! -property_value: IAO:0000589 "adrenal medulla (SCTID)" xsd:string -is_a: UBERON:0001236 ! adrenal medulla - -[Term] -id: SCTID:276159005 ! -property_value: IAO:0000589 "paraaortic body (SCTID)" xsd:string -is_a: UBERON:0001237 ! paraaortic body - -[Term] -id: SCTID:63588008 ! -property_value: IAO:0000589 "lamina propria of small intestine (SCTID)" xsd:string -is_a: UBERON:0001238 ! lamina propria of small intestine - -[Term] -id: SCTID:52688008 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of small intestine (SCTID)" xsd:string -is_a: UBERON:0001241 ! crypt of Lieberkuhn of small intestine - -[Term] -id: SCTID:362080002 ! -property_value: IAO:0000589 "intestinal mucosa (SCTID)" xsd:string -is_a: UBERON:0001242 ! intestinal mucosa - -[Term] -id: SCTID:181262009 ! -property_value: IAO:0000589 "anus (SCTID)" xsd:string -is_a: UBERON:0001245 ! anus - -[Term] -id: SCTID:83488001 ! -property_value: IAO:0000589 "interlobular bile duct (SCTID)" xsd:string -is_a: UBERON:0001246 ! interlobular bile duct - -[Term] -id: SCTID:362705001 ! -property_value: IAO:0000589 "falciform ligament (SCTID)" xsd:string -is_a: UBERON:0001247 ! falciform ligament - -[Term] -id: SCTID:245377005 ! -property_value: IAO:0000589 "hilum of spleen (SCTID)" xsd:string -is_a: UBERON:0001248 ! hilum of spleen - -[Term] -id: SCTID:35845000 ! -property_value: IAO:0000589 "spleen lymphoid follicle (SCTID)" xsd:string -is_a: UBERON:0001249 ! spleen lymphoid follicle - -[Term] -id: SCTID:27579002 ! -property_value: IAO:0000589 "red pulp of spleen (SCTID)" xsd:string -is_a: UBERON:0001250 ! red pulp of spleen - -[Term] -id: SCTID:392273001 ! -property_value: IAO:0000589 "adventitia of ureter (SCTID)" xsd:string -is_a: UBERON:0001252 ! adventitia of ureter - -[Term] -id: SCTID:47879001 ! -property_value: IAO:0000589 "adventitia of ureter (SCTID)" xsd:string -is_a: UBERON:0001252 ! adventitia of ureter - -[Term] -id: SCTID:2771005 ! -property_value: IAO:0000589 "lamina propria of ureter (SCTID)" xsd:string -is_a: UBERON:0001253 ! lamina propria of ureter - -[Term] -id: SCTID:302512001 ! -property_value: IAO:0000589 "urinary bladder (SCTID)" xsd:string -is_a: UBERON:0001255 ! urinary bladder - -[Term] -id: SCTID:362225003 ! -property_value: IAO:0000589 "wall of urinary bladder (SCTID)" xsd:string -is_a: UBERON:0001256 ! wall of urinary bladder - -[Term] -id: SCTID:272663002 ! -property_value: IAO:0000589 "trigone of urinary bladder (SCTID)" xsd:string -is_a: UBERON:0001257 ! trigone of urinary bladder - -[Term] -id: SCTID:362227006 ! -property_value: IAO:0000589 "neck of urinary bladder (SCTID)" xsd:string -is_a: UBERON:0001258 ! neck of urinary bladder - -[Term] -id: SCTID:362224004 ! -property_value: IAO:0000589 "mucosa of urinary bladder (SCTID)" xsd:string -is_a: UBERON:0001259 ! mucosa of urinary bladder - -[Term] -id: SCTID:5868002 ! -property_value: IAO:0000589 "serosa of urinary bladder (SCTID)" xsd:string -is_a: UBERON:0001260 ! serosa of urinary bladder - -[Term] -id: SCTID:247604006 ! -property_value: IAO:0000589 "pancreatic acinus (SCTID)" xsd:string -is_a: UBERON:0001263 ! pancreatic acinus - -[Term] -id: SCTID:181277001 ! -property_value: IAO:0000589 "pancreas (SCTID)" xsd:string -is_a: UBERON:0001264 ! pancreas - -[Term] -id: SCTID:61987002 ! -property_value: IAO:0000589 "trabecula of spleen (SCTID)" xsd:string -is_a: UBERON:0001265 ! trabecula of spleen - -[Term] -id: SCTID:181051004 ! -property_value: IAO:0000589 "femoral nerve (SCTID)" xsd:string -is_a: UBERON:0001267 ! femoral nerve - -[Term] -id: SCTID:182027007 ! -property_value: IAO:0000589 "acetabular part of hip bone (SCTID)" xsd:string -is_a: UBERON:0001269 ! acetabular part of hip bone - -[Term] -id: SCTID:46633002 ! -property_value: IAO:0000589 "bony pelvis (SCTID)" xsd:string -is_a: UBERON:0001270 ! bony pelvis - -[Term] -id: SCTID:360010001 ! -property_value: IAO:0000589 "pelvic girdle region (SCTID)" xsd:string -is_a: UBERON:0001271 ! pelvic girdle region - -[Term] -id: SCTID:361776002 ! -property_value: IAO:0000589 "innominate bone (SCTID)" xsd:string -is_a: UBERON:0001272 ! innominate bone - -[Term] -id: SCTID:182029005 ! -property_value: IAO:0000589 "ilium (SCTID)" xsd:string -is_a: UBERON:0001273 ! ilium - -[Term] -id: SCTID:182025004 ! -property_value: IAO:0000589 "ischium (SCTID)" xsd:string -is_a: UBERON:0001274 ! ischium - -[Term] -id: SCTID:182035005 ! -property_value: IAO:0000589 "pubis (SCTID)" xsd:string -is_a: UBERON:0001275 ! pubis - -[Term] -id: SCTID:64977002 ! -property_value: IAO:0000589 "epithelium of stomach (SCTID)" xsd:string -is_a: UBERON:0001276 ! epithelium of stomach - -[Term] -id: SCTID:266135004 ! -property_value: IAO:0000589 "intestinal epithelium (SCTID)" xsd:string -is_a: UBERON:0001277 ! intestinal epithelium - -[Term] -id: SCTID:362192000 ! -property_value: IAO:0000589 "portal triad (SCTID)" xsd:string -is_a: UBERON:0001279 ! portal triad - -[Term] -id: SCTID:363535004 ! -property_value: IAO:0000589 "liver parenchyma (SCTID)" xsd:string -is_a: UBERON:0001280 ! liver parenchyma - -[Term] -id: SCTID:67435004 ! -property_value: IAO:0000589 "hepatic sinusoid (SCTID)" xsd:string -is_a: UBERON:0001281 ! hepatic sinusoid - -[Term] -id: SCTID:227002 ! -property_value: IAO:0000589 "intralobular bile duct (SCTID)" xsd:string -is_a: UBERON:0001282 ! intralobular bile duct - -[Term] -id: SCTID:269922006 ! -property_value: IAO:0000589 "intralobular bile duct (SCTID)" xsd:string -is_a: UBERON:0001282 ! intralobular bile duct - -[Term] -id: SCTID:270023005 ! -property_value: IAO:0000589 "bile canaliculus (SCTID)" xsd:string -is_a: UBERON:0001283 ! bile canaliculus - -[Term] -id: SCTID:361337001 ! -property_value: IAO:0000589 "nephron (SCTID)" xsd:string -is_a: UBERON:0001285 ! nephron - -[Term] -id: SCTID:244284006 ! -property_value: IAO:0000589 "Bowman's space (SCTID)" xsd:string -is_a: UBERON:0001286 ! Bowman's space - -[Term] -id: SCTID:362220008 ! -property_value: IAO:0000589 "proximal convoluted tubule (SCTID)" xsd:string -is_a: UBERON:0001287 ! proximal convoluted tubule - -[Term] -id: SCTID:361335009 ! -property_value: IAO:0000589 "loop of Henle (SCTID)" xsd:string -is_a: UBERON:0001288 ! loop of Henle - -[Term] -id: SCTID:245350001 ! -property_value: IAO:0000589 "descending limb of loop of Henle (SCTID)" xsd:string -is_a: UBERON:0001289 ! descending limb of loop of Henle - -[Term] -id: SCTID:244953001 ! -property_value: IAO:0000589 "thick ascending limb of loop of Henle (SCTID)" xsd:string -is_a: UBERON:0001291 ! thick ascending limb of loop of Henle - -[Term] -id: SCTID:361336005 ! -property_value: IAO:0000589 "distal convoluted tubule (SCTID)" xsd:string -is_a: UBERON:0001292 ! distal convoluted tubule - -[Term] -id: SCTID:278867007 ! -property_value: IAO:0000589 "endometrium (SCTID)" xsd:string -is_a: UBERON:0001295 ! endometrium - -[Term] -id: SCTID:279879004 ! -property_value: IAO:0000589 "myometrium (SCTID)" xsd:string -is_a: UBERON:0001296 ! myometrium - -[Term] -id: SCTID:253705006 ! -property_value: IAO:0000589 "serosa of uterus (SCTID)" xsd:string -is_a: UBERON:0001297 ! serosa of uterus - -[Term] -id: SCTID:244952006 ! -property_value: IAO:0000589 "psoas major muscle (SCTID)" xsd:string -is_a: UBERON:0001298 ! psoas major muscle - -[Term] -id: SCTID:263378009 ! -property_value: IAO:0000589 "glans penis (SCTID)" xsd:string -is_a: UBERON:0001299 ! glans penis - -[Term] -id: SCTID:265794003 ! -property_value: IAO:0000589 "scrotum (SCTID)" xsd:string -is_a: UBERON:0001300 ! scrotum - -[Term] -id: SCTID:181432000 ! -property_value: IAO:0000589 "epididymis (SCTID)" xsd:string -is_a: UBERON:0001301 ! epididymis - -[Term] -id: SCTID:280106006 ! -property_value: IAO:0000589 "right uterine tube (SCTID)" xsd:string -is_a: UBERON:0001302 ! right uterine tube - -[Term] -id: SCTID:280107002 ! -property_value: IAO:0000589 "left uterine tube (SCTID)" xsd:string -is_a: UBERON:0001303 ! left uterine tube - -[Term] -id: SCTID:258308007 ! -property_value: IAO:0000589 "germinal epithelium of ovary (SCTID)" xsd:string -is_a: UBERON:0001304 ! germinal epithelium of ovary - -[Term] -id: SCTID:361111009 ! -property_value: IAO:0000589 "ovarian follicle (SCTID)" xsd:string -is_a: UBERON:0001305 ! ovarian follicle - -[Term] -id: SCTID:258586009 ! -property_value: IAO:0000589 "cumulus oophorus (SCTID)" xsd:string -is_a: UBERON:0001306 ! cumulus oophorus - -[Term] -id: SCTID:258491008 ! -property_value: IAO:0000589 "capsule of ovary (SCTID)" xsd:string -is_a: UBERON:0001307 ! capsule of ovary - -[Term] -id: SCTID:181352000 ! -property_value: IAO:0000589 "external iliac artery (SCTID)" xsd:string -is_a: UBERON:0001308 ! external iliac artery - -[Term] -id: SCTID:181346001 ! -property_value: IAO:0000589 "internal iliac artery (SCTID)" xsd:string -is_a: UBERON:0001309 ! internal iliac artery - -[Term] -id: SCTID:261404000 ! -property_value: IAO:0000589 "umbilical artery (SCTID)" xsd:string -is_a: UBERON:0001310 ! umbilical artery - -[Term] -id: SCTID:43210002 ! -property_value: IAO:0000589 "inferior vesical artery (SCTID)" xsd:string -is_a: UBERON:0001311 ! inferior vesical artery - -[Term] -id: SCTID:113268007 ! -property_value: IAO:0000589 "superior vesical artery (SCTID)" xsd:string -is_a: UBERON:0001312 ! superior vesical artery - -[Term] -id: SCTID:113267002 ! -property_value: IAO:0000589 "iliolumbar artery (SCTID)" xsd:string -is_a: UBERON:0001313 ! iliolumbar artery - -[Term] -id: SCTID:244302006 ! -property_value: IAO:0000589 "obturator artery (SCTID)" xsd:string -is_a: UBERON:0001314 ! obturator artery - -[Term] -id: SCTID:181354004 ! -property_value: IAO:0000589 "superior gluteal artery (SCTID)" xsd:string -is_a: UBERON:0001315 ! superior gluteal artery - -[Term] -id: SCTID:181400000 ! -property_value: IAO:0000589 "external iliac vein (SCTID)" xsd:string -is_a: UBERON:0001316 ! external iliac vein - -[Term] -id: SCTID:181399007 ! -property_value: IAO:0000589 "internal iliac vein (SCTID)" xsd:string -is_a: UBERON:0001317 ! internal iliac vein - -[Term] -id: SCTID:424336009 ! -property_value: IAO:0000589 "vaginal vein (SCTID)" xsd:string -is_a: UBERON:0001319 ! vaginal vein - -[Term] -id: SCTID:286793006 ! -property_value: IAO:0000589 "iliolumbar vein (SCTID)" xsd:string -is_a: UBERON:0001320 ! iliolumbar vein - -[Term] -id: SCTID:20146009 ! -property_value: IAO:0000589 "obturator vein (SCTID)" xsd:string -is_a: UBERON:0001321 ! obturator vein - -[Term] -id: SCTID:181050003 ! -property_value: IAO:0000589 "sciatic nerve (SCTID)" xsd:string -is_a: UBERON:0001322 ! sciatic nerve - -[Term] -id: SCTID:181078002 ! -property_value: IAO:0000589 "tibial nerve (SCTID)" xsd:string -is_a: UBERON:0001323 ! tibial nerve - -[Term] -id: SCTID:181077007 ! -property_value: IAO:0000589 "common fibular nerve (SCTID)" xsd:string -is_a: UBERON:0001324 ! common fibular nerve - -[Term] -id: SCTID:181753008 ! -property_value: IAO:0000589 "levator ani muscle (SCTID)" xsd:string -is_a: UBERON:0001326 ! levator ani muscle - -[Term] -id: SCTID:279692004 ! -property_value: IAO:0000589 "lobe of prostate (SCTID)" xsd:string -is_a: UBERON:0001328 ! lobe of prostate - -[Term] -id: SCTID:279693009 ! -property_value: IAO:0000589 "prostate gland anterior lobe (SCTID)" xsd:string -is_a: UBERON:0001329 ! prostate gland anterior lobe - -[Term] -id: SCTID:279661001 ! -property_value: IAO:0000589 "pampiniform plexus (SCTID)" xsd:string -is_a: UBERON:0001330 ! pampiniform plexus - -[Term] -id: SCTID:35900000 ! -property_value: IAO:0000589 "skin of penis (SCTID)" xsd:string -is_a: UBERON:0001331 ! skin of penis - -[Term] -id: SCTID:181426005 ! -property_value: IAO:0000589 "prepuce of penis (SCTID)" xsd:string -is_a: UBERON:0001332 ! prepuce of penis - -[Term] -id: SCTID:264085007 ! -property_value: IAO:0000589 "male urethra (SCTID)" xsd:string -is_a: UBERON:0001333 ! male urethra - -[Term] -id: SCTID:264469008 ! -property_value: IAO:0000589 "female urethra (SCTID)" xsd:string -is_a: UBERON:0001334 ! female urethra - -[Term] -id: SCTID:279434009 ! -property_value: IAO:0000589 "prostatic urethra (SCTID)" xsd:string -is_a: UBERON:0001335 ! prostatic urethra - -[Term] -id: SCTID:263341006 ! -property_value: IAO:0000589 "spongiose part of urethra (SCTID)" xsd:string -is_a: UBERON:0001337 ! spongiose part of urethra - -[Term] -id: SCTID:279477005 ! -property_value: IAO:0000589 "urethral gland (SCTID)" xsd:string -is_a: UBERON:0001338 ! urethral gland - -[Term] -id: SCTID:244975004 ! -property_value: IAO:0000589 "ischiocavernosus muscle (SCTID)" xsd:string -is_a: UBERON:0001339 ! ischiocavernosus muscle - -[Term] -id: SCTID:244294001 ! -property_value: IAO:0000589 "dorsal artery of penis (SCTID)" xsd:string -is_a: UBERON:0001340 ! dorsal artery of penis - -[Term] -id: SCTID:279914000 ! -property_value: IAO:0000589 "mesovarium (SCTID)" xsd:string -is_a: UBERON:0001342 ! mesovarium - -[Term] -id: SCTID:279614002 ! -property_value: IAO:0000589 "seminiferous tubule of testis (SCTID)" xsd:string -is_a: UBERON:0001343 ! seminiferous tubule of testis - -[Term] -id: SCTID:245473005 ! -property_value: IAO:0000589 "vaginal hymen (SCTID)" xsd:string -is_a: UBERON:0001346 ! vaginal hymen - -[Term] -id: SCTID:15965003 ! -property_value: IAO:0000589 "brown adipose tissue (SCTID)" xsd:string -is_a: UBERON:0001348 ! brown adipose tissue - -[Term] -id: SCTID:182028002 ! -property_value: IAO:0000589 "coccyx (SCTID)" xsd:string -is_a: UBERON:0001350 ! coccyx - -[Term] -id: SCTID:362534009 ! -property_value: IAO:0000589 "lacrimal sac (SCTID)" xsd:string -is_a: UBERON:0001351 ! lacrimal sac - -[Term] -id: SCTID:181178004 ! -property_value: IAO:0000589 "external acoustic meatus (SCTID)" xsd:string -is_a: UBERON:0001352 ! external acoustic meatus - -[Term] -id: SCTID:362680001 ! -property_value: IAO:0000589 "anal region (SCTID)" xsd:string -is_a: UBERON:0001353 ! anal region - -[Term] -id: SCTID:244288009 ! -property_value: IAO:0000589 "inferior epigastric artery (SCTID)" xsd:string -is_a: UBERON:0001354 ! inferior epigastric artery - -[Term] -id: SCTID:181348000 ! -property_value: IAO:0000589 "deep femoral artery (SCTID)" xsd:string -is_a: UBERON:0001355 ! deep femoral artery - -[Term] -id: SCTID:244326008 ! -property_value: IAO:0000589 "medial circumflex femoral artery (SCTID)" xsd:string -is_a: UBERON:0001356 ! medial circumflex femoral artery - -[Term] -id: SCTID:244304007 ! -property_value: IAO:0000589 "inferior rectal artery (SCTID)" xsd:string -is_a: UBERON:0001357 ! inferior rectal artery - -[Term] -id: SCTID:244303001 ! -property_value: IAO:0000589 "perineal artery (SCTID)" xsd:string -is_a: UBERON:0001358 ! perineal artery - -[Term] -id: SCTID:11653007 ! -property_value: IAO:0000589 "deep circumflex iliac vein (SCTID)" xsd:string -is_a: UBERON:0001360 ! deep circumflex iliac vein - -[Term] -id: SCTID:362071002 ! -property_value: IAO:0000589 "femoral vein (SCTID)" xsd:string -is_a: UBERON:0001361 ! femoral vein - -[Term] -id: SCTID:312507009 ! -property_value: IAO:0000589 "perineal vein (SCTID)" xsd:string -is_a: UBERON:0001362 ! perineal vein - -[Term] -id: SCTID:181402008 ! -property_value: IAO:0000589 "great saphenous vein (SCTID)" xsd:string -is_a: UBERON:0001363 ! great saphenous vein - -[Term] -id: SCTID:182199004 ! -property_value: IAO:0000589 "sacro-iliac joint (SCTID)" xsd:string -is_a: UBERON:0001365 ! sacro-iliac joint - -[Term] -id: SCTID:362700006 ! -property_value: IAO:0000589 "parietal peritoneum (SCTID)" xsd:string -is_a: UBERON:0001366 ! parietal peritoneum - -[Term] -id: SCTID:244969008 ! -property_value: IAO:0000589 "external anal sphincter (SCTID)" xsd:string -is_a: UBERON:0001367 ! external anal sphincter - -[Term] -id: SCTID:245026009 ! -property_value: IAO:0000589 "obturator externus (SCTID)" xsd:string -is_a: UBERON:0001368 ! obturator externus - -[Term] -id: SCTID:244956009 ! -property_value: IAO:0000589 "iliacus muscle (SCTID)" xsd:string -is_a: UBERON:0001369 ! iliacus muscle - -[Term] -id: SCTID:181674001 ! -property_value: IAO:0000589 "gluteus maximus (SCTID)" xsd:string -is_a: UBERON:0001370 ! gluteus maximus - -[Term] -id: SCTID:181675000 ! -property_value: IAO:0000589 "gluteus medius (SCTID)" xsd:string -is_a: UBERON:0001371 ! gluteus medius - -[Term] -id: SCTID:244954007 ! -property_value: IAO:0000589 "psoas minor muscle (SCTID)" xsd:string -is_a: UBERON:0001372 ! psoas minor muscle - -[Term] -id: SCTID:181683006 ! -property_value: IAO:0000589 "sartorius muscle (SCTID)" xsd:string -is_a: UBERON:0001373 ! sartorius muscle - -[Term] -id: SCTID:181672002 ! -property_value: IAO:0000589 "biceps femoris (SCTID)" xsd:string -is_a: UBERON:0001374 ! biceps femoris - -[Term] -id: SCTID:181685004 ! -property_value: IAO:0000589 "semitendinosus (SCTID)" xsd:string -is_a: UBERON:0001375 ! semitendinosus - -[Term] -id: SCTID:181671009 ! -property_value: IAO:0000589 "tensor fasciae latae muscle (SCTID)" xsd:string -is_a: UBERON:0001376 ! tensor fasciae latae muscle - -[Term] -id: SCTID:181669009 ! -property_value: IAO:0000589 "quadriceps femoris (SCTID)" xsd:string -is_a: UBERON:0001377 ! quadriceps femoris - -[Term] -id: SCTID:181679006 ! -property_value: IAO:0000589 "rectus femoris (SCTID)" xsd:string -is_a: UBERON:0001378 ! rectus femoris - -[Term] -id: SCTID:245017006 ! -property_value: IAO:0000589 "pectineus muscle (SCTID)" xsd:string -is_a: UBERON:0001382 ! pectineus muscle - -[Term] -id: SCTID:11931008 ! -property_value: IAO:0000589 "primary motor cortex (SCTID)" xsd:string -is_a: UBERON:0001384 ! primary motor cortex - -[Term] -id: SCTID:181696007 ! -property_value: IAO:0000589 "tibialis anterior (SCTID)" xsd:string -is_a: UBERON:0001385 ! tibialis anterior - -[Term] -id: SCTID:361825008 ! -property_value: IAO:0000589 "fibularis longus (SCTID)" xsd:string -is_a: UBERON:0001387 ! fibularis longus - -[Term] -id: SCTID:181700004 ! -property_value: IAO:0000589 "gastrocnemius (SCTID)" xsd:string -is_a: UBERON:0001388 ! gastrocnemius - -[Term] -id: SCTID:181702007 ! -property_value: IAO:0000589 "soleus muscle (SCTID)" xsd:string -is_a: UBERON:0001389 ! soleus muscle - -[Term] -id: SCTID:302693002 ! -property_value: IAO:0000589 "sural artery (SCTID)" xsd:string -is_a: UBERON:0001390 ! sural artery - -[Term] -id: SCTID:245032004 ! -property_value: IAO:0000589 "popliteus muscle (SCTID)" xsd:string -is_a: UBERON:0001391 ! popliteus muscle - -[Term] -id: SCTID:361826009 ! -property_value: IAO:0000589 "flexor hallucis longus (SCTID)" xsd:string -is_a: UBERON:0001392 ! flexor hallucis longus - -[Term] -id: SCTID:181321001 ! -property_value: IAO:0000589 "axillary artery (SCTID)" xsd:string -is_a: UBERON:0001394 ! axillary artery - -[Term] -id: SCTID:244315002 ! -property_value: IAO:0000589 "thoraco-acromial artery (SCTID)" xsd:string -is_a: UBERON:0001395 ! thoraco-acromial artery - -[Term] -id: SCTID:206135006 ! -property_value: IAO:0000589 "lateral thoracic artery (SCTID)" xsd:string -is_a: UBERON:0001396 ! lateral thoracic artery - -[Term] -id: SCTID:244311006 ! -property_value: IAO:0000589 "subscapular artery (SCTID)" xsd:string -is_a: UBERON:0001397 ! subscapular artery - -[Term] -id: SCTID:181322008 ! -property_value: IAO:0000589 "brachial artery (SCTID)" xsd:string -is_a: UBERON:0001398 ! brachial artery - -[Term] -id: SCTID:41065002 ! -property_value: IAO:0000589 "deep brachial artery (SCTID)" xsd:string -is_a: UBERON:0001399 ! deep brachial artery - -[Term] -id: SCTID:244856005 ! -property_value: IAO:0000589 "iliocostalis thoracis muscle (SCTID)" xsd:string -is_a: UBERON:0001400 ! iliocostalis thoracis muscle - -[Term] -id: SCTID:244859003 ! -property_value: IAO:0000589 "longissimus thoracis muscle (SCTID)" xsd:string -is_a: UBERON:0001401 ! longissimus thoracis muscle - -[Term] -id: SCTID:244860008 ! -property_value: IAO:0000589 "longissimus cervicis muscle (SCTID)" xsd:string -is_a: UBERON:0001402 ! longissimus cervicis muscle - -[Term] -id: SCTID:244861007 ! -property_value: IAO:0000589 "longissimus capitis (SCTID)" xsd:string -is_a: UBERON:0001403 ! longissimus capitis - -[Term] -id: SCTID:181332001 ! -property_value: IAO:0000589 "radial artery (SCTID)" xsd:string -is_a: UBERON:0001404 ! radial artery - -[Term] -id: SCTID:244863005 ! -property_value: IAO:0000589 "spinalis thoracis muscle (SCTID)" xsd:string -is_a: UBERON:0001405 ! spinalis thoracis muscle - -[Term] -id: SCTID:181333006 ! -property_value: IAO:0000589 "ulnar artery (SCTID)" xsd:string -is_a: UBERON:0001406 ! ulnar artery - -[Term] -id: SCTID:244868001 ! -property_value: IAO:0000589 "semispinalis thoracis (SCTID)" xsd:string -is_a: UBERON:0001407 ! semispinalis thoracis - -[Term] -id: SCTID:244869009 ! -property_value: IAO:0000589 "semispinalis cervicis (SCTID)" xsd:string -is_a: UBERON:0001408 ! semispinalis cervicis - -[Term] -id: SCTID:244870005 ! -property_value: IAO:0000589 "semispinalis capitis (SCTID)" xsd:string -is_a: UBERON:0001409 ! semispinalis capitis - -[Term] -id: SCTID:38396009 ! -property_value: IAO:0000589 "common palmar digital artery (SCTID)" xsd:string -is_a: UBERON:0001410 ! common palmar digital artery - -[Term] -id: SCTID:181393008 ! -property_value: IAO:0000589 "basilic vein (SCTID)" xsd:string -is_a: UBERON:0001411 ! basilic vein - -[Term] -id: SCTID:181390006 ! -property_value: IAO:0000589 "brachial vein (SCTID)" xsd:string -is_a: UBERON:0001413 ! brachial vein - -[Term] -id: SCTID:181392003 ! -property_value: IAO:0000589 "median basilic vein (SCTID)" xsd:string -is_a: UBERON:0001414 ! median basilic vein - -[Term] -id: SCTID:368496000 ! -property_value: IAO:0000589 "median basilic vein (SCTID)" xsd:string -is_a: UBERON:0001414 ! median basilic vein - -[Term] -id: SCTID:181517009 ! -property_value: IAO:0000589 "skin of pelvis (SCTID)" xsd:string -is_a: UBERON:0001415 ! skin of pelvis - -[Term] -id: SCTID:361707007 ! -property_value: IAO:0000589 "skin of abdomen (SCTID)" xsd:string -is_a: UBERON:0001416 ! skin of abdomen - -[Term] -id: SCTID:361705004 ! -property_value: IAO:0000589 "skin of neck (SCTID)" xsd:string -is_a: UBERON:0001417 ! skin of neck - -[Term] -id: SCTID:281723000 ! -property_value: IAO:0000589 "skin of thorax (SCTID)" xsd:string -is_a: UBERON:0001418 ! skin of thorax - -[Term] -id: SCTID:314403009 ! -property_value: IAO:0000589 "skin of limb (SCTID)" xsd:string -is_a: UBERON:0001419 ! skin of limb - -[Term] -id: SCTID:229759004 ! -property_value: IAO:0000589 "pectoral girdle region (SCTID)" xsd:string -is_a: UBERON:0001421 ! pectoral girdle region - -[Term] -id: SCTID:181940002 ! -property_value: IAO:0000589 "radius bone (SCTID)" xsd:string -is_a: UBERON:0001423 ! radius bone - -[Term] -id: SCTID:181948009 ! -property_value: IAO:0000589 "ulna (SCTID)" xsd:string -is_a: UBERON:0001424 ! ulna - -[Term] -id: SCTID:181958008 ! -property_value: IAO:0000589 "radiale (SCTID)" xsd:string -is_a: UBERON:0001427 ! radiale - -[Term] -id: SCTID:181959000 ! -property_value: IAO:0000589 "intermedium (SCTID)" xsd:string -is_a: UBERON:0001428 ! intermedium - -[Term] -id: SCTID:181966004 ! -property_value: IAO:0000589 "pisiform (SCTID)" xsd:string -is_a: UBERON:0001429 ! pisiform - -[Term] -id: SCTID:9181003 ! -property_value: IAO:0000589 "pisiform (SCTID)" xsd:string -is_a: UBERON:0001429 ! pisiform - -[Term] -id: SCTID:361780007 ! -property_value: IAO:0000589 "distal carpal bone 1 (SCTID)" xsd:string -is_a: UBERON:0001430 ! distal carpal bone 1 - -[Term] -id: SCTID:361781006 ! -property_value: IAO:0000589 "distal carpal bone 2 (SCTID)" xsd:string -is_a: UBERON:0001431 ! distal carpal bone 2 - -[Term] -id: SCTID:181964001 ! -property_value: IAO:0000589 "distal carpal bone 3 (SCTID)" xsd:string -is_a: UBERON:0001432 ! distal carpal bone 3 - -[Term] -id: SCTID:181967008 ! -property_value: IAO:0000589 "distal carpal bone 4 (SCTID)" xsd:string -is_a: UBERON:0001433 ! distal carpal bone 4 - -[Term] -id: SCTID:83936004 ! -property_value: IAO:0000589 "carpal bone (SCTID)" xsd:string -is_a: UBERON:0001435 ! carpal bone - -[Term] -id: SCTID:181976001 ! -property_value: IAO:0000589 "phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0001436 ! phalanx of manus - -[Term] -id: SCTID:361100001 ! -property_value: IAO:0000589 "phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0001436 ! phalanx of manus - -[Term] -id: SCTID:244701002 ! -property_value: IAO:0000589 "epiphysis (SCTID)" xsd:string -is_a: UBERON:0001437 ! epiphysis - -[Term] -id: SCTID:304581004 ! -property_value: IAO:0000589 "metaphysis (SCTID)" xsd:string -is_a: UBERON:0001438 ! metaphysis - -[Term] -id: SCTID:361728003 ! -property_value: IAO:0000589 "compact bone tissue (SCTID)" xsd:string -is_a: UBERON:0001439 ! compact bone tissue - -[Term] -id: SCTID:123852005 ! -property_value: IAO:0000589 "subdivision of head (SCTID)" xsd:string -is_a: UBERON:0001444 ! subdivision of head - -[Term] -id: SCTID:302529003 ! -property_value: IAO:0000589 "fibula (SCTID)" xsd:string -is_a: UBERON:0001446 ! fibula - -[Term] -id: SCTID:108372004 ! -property_value: IAO:0000589 "tarsal bone (SCTID)" xsd:string -is_a: UBERON:0001447 ! tarsal bone - -[Term] -id: SCTID:302532000 ! -property_value: IAO:0000589 "metatarsal bone (SCTID)" xsd:string -is_a: UBERON:0001448 ! metatarsal bone - -[Term] -id: SCTID:302533005 ! -property_value: IAO:0000589 "phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0001449 ! phalanx of pes - -[Term] -id: SCTID:182099002 ! -property_value: IAO:0000589 "calcaneus (SCTID)" xsd:string -is_a: UBERON:0001450 ! calcaneus - -[Term] -id: SCTID:182100005 ! -property_value: IAO:0000589 "navicular bone of pes (SCTID)" xsd:string -is_a: UBERON:0001451 ! navicular bone of pes - -[Term] -id: SCTID:182116007 ! -property_value: IAO:0000589 "distal tarsal bone 1 (SCTID)" xsd:string -is_a: UBERON:0001452 ! distal tarsal bone 1 - -[Term] -id: SCTID:179512006 ! -property_value: IAO:0000589 "distal tarsal bone 2 (SCTID)" xsd:string -is_a: UBERON:0001453 ! distal tarsal bone 2 - -[Term] -id: SCTID:182117003 ! -property_value: IAO:0000589 "distal tarsal bone 3 (SCTID)" xsd:string -is_a: UBERON:0001454 ! distal tarsal bone 3 - -[Term] -id: SCTID:182101009 ! -property_value: IAO:0000589 "cuboid bone (SCTID)" xsd:string -is_a: UBERON:0001455 ! cuboid bone - -[Term] -id: SCTID:302549007 ! -property_value: IAO:0000589 "face (SCTID)" xsd:string -is_a: UBERON:0001456 ! face - -[Term] -id: SCTID:245947005 ! -property_value: IAO:0000589 "skin of eyelid (SCTID)" xsd:string -is_a: UBERON:0001457 ! skin of eyelid - -[Term] -id: SCTID:244092005 ! -property_value: IAO:0000589 "skin of lip (SCTID)" xsd:string -is_a: UBERON:0001458 ! skin of lip - -[Term] -id: SCTID:244073008 ! -property_value: IAO:0000589 "skin of external ear (SCTID)" xsd:string -is_a: UBERON:0001459 ! skin of external ear - -[Term] -id: SCTID:76248009 ! -property_value: IAO:0000589 "elbow (SCTID)" xsd:string -is_a: UBERON:0001461 ! elbow - -[Term] -id: SCTID:302540006 ! -property_value: IAO:0000589 "manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0001463 ! manual digit 1 - -[Term] -id: SCTID:69603001 ! -property_value: IAO:0000589 "manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0001463 ! manual digit 1 - -[Term] -id: SCTID:302543008 ! -property_value: IAO:0000589 "hip (SCTID)" xsd:string -is_a: UBERON:0001464 ! hip - -[Term] -id: SCTID:361291001 ! -property_value: IAO:0000589 "knee (SCTID)" xsd:string -is_a: UBERON:0001465 ! knee - -[Term] -id: SCTID:116667001 ! -property_value: IAO:0000589 "pedal digit (SCTID)" xsd:string -is_a: UBERON:0001466 ! pedal digit - -[Term] -id: SCTID:361103004 ! -property_value: IAO:0000589 "shoulder (SCTID)" xsd:string -is_a: UBERON:0001467 ! shoulder - -[Term] -id: SCTID:244512000 ! -property_value: IAO:0000589 "intervertebral joint (SCTID)" xsd:string -is_a: UBERON:0001468 ! intervertebral joint - -[Term] -id: SCTID:182165002 ! -property_value: IAO:0000589 "sternoclavicular joint (SCTID)" xsd:string -is_a: UBERON:0001469 ! sternoclavicular joint - -[Term] -id: SCTID:182168000 ! -property_value: IAO:0000589 "glenohumeral joint (SCTID)" xsd:string -is_a: UBERON:0001470 ! glenohumeral joint - -[Term] -id: SCTID:39059001 ! -property_value: IAO:0000589 "skin of prepuce of penis (SCTID)" xsd:string -is_a: UBERON:0001471 ! skin of prepuce of penis - -[Term] -id: SCTID:294653003 ! -property_value: IAO:0000589 "vaginal venous plexus (SCTID)" xsd:string -is_a: UBERON:0001472 ! vaginal venous plexus - -[Term] -id: SCTID:279089004 ! -property_value: IAO:0000589 "lymphatic vessel (SCTID)" xsd:string -is_a: UBERON:0001473 ! lymphatic vessel - -[Term] -id: SCTID:90780006 ! -property_value: IAO:0000589 "bone element (SCTID)" xsd:string -is_a: UBERON:0001474 ! bone element - -[Term] -id: SCTID:181620007 ! -property_value: IAO:0000589 "deltoid (SCTID)" xsd:string -is_a: UBERON:0001476 ! deltoid - -[Term] -id: SCTID:277439009 ! -property_value: IAO:0000589 "infraspinatus muscle (SCTID)" xsd:string -is_a: UBERON:0001477 ! infraspinatus muscle - -[Term] -id: SCTID:277444002 ! -property_value: IAO:0000589 "teres major muscle (SCTID)" xsd:string -is_a: UBERON:0001478 ! teres major muscle - -[Term] -id: SCTID:362914002 ! -property_value: IAO:0000589 "sesamoid bone (SCTID)" xsd:string -is_a: UBERON:0001479 ! sesamoid bone - -[Term] -id: SCTID:306715004 ! -property_value: IAO:0000589 "proximal carpal bone (SCTID)" xsd:string -is_a: UBERON:0001480 ! proximal carpal bone - -[Term] -id: SCTID:306716003 ! -property_value: IAO:0000589 "distal carpal bone (SCTID)" xsd:string -is_a: UBERON:0001481 ! distal carpal bone - -[Term] -id: SCTID:244131002 ! -property_value: IAO:0000589 "skin of shoulder (SCTID)" xsd:string -is_a: UBERON:0001483 ! skin of shoulder - -[Term] -id: SCTID:182238002 ! -property_value: IAO:0000589 "articular capsule (SCTID)" xsd:string -is_a: UBERON:0001484 ! articular capsule - -[Term] -id: SCTID:182204005 ! -property_value: IAO:0000589 "knee joint (SCTID)" xsd:string -is_a: UBERON:0001485 ! knee joint - -[Term] -id: SCTID:182201002 ! -property_value: IAO:0000589 "hip joint (SCTID)" xsd:string -is_a: UBERON:0001486 ! hip joint - -[Term] -id: SCTID:244555001 ! -property_value: IAO:0000589 "pes joint (SCTID)" xsd:string -is_a: UBERON:0001487 ! pes joint - -[Term] -id: SCTID:182212002 ! -property_value: IAO:0000589 "ankle joint (SCTID)" xsd:string -is_a: UBERON:0001488 ! ankle joint - -[Term] -id: SCTID:244546004 ! -property_value: IAO:0000589 "manus joint (SCTID)" xsd:string -is_a: UBERON:0001489 ! manus joint - -[Term] -id: SCTID:182169008 ! -property_value: IAO:0000589 "elbow joint (SCTID)" xsd:string -is_a: UBERON:0001490 ! elbow joint - -[Term] -id: SCTID:182178002 ! -property_value: IAO:0000589 "wrist joint (SCTID)" xsd:string -is_a: UBERON:0001491 ! wrist joint - -[Term] -id: SCTID:181011002 ! -property_value: IAO:0000589 "radial nerve (SCTID)" xsd:string -is_a: UBERON:0001492 ! radial nerve - -[Term] -id: SCTID:181009006 ! -property_value: IAO:0000589 "axillary nerve (SCTID)" xsd:string -is_a: UBERON:0001493 ! axillary nerve - -[Term] -id: SCTID:181012009 ! -property_value: IAO:0000589 "ulnar nerve (SCTID)" xsd:string -is_a: UBERON:0001494 ! ulnar nerve - -[Term] -id: SCTID:181621006 ! -property_value: IAO:0000589 "pectoral muscle (SCTID)" xsd:string -is_a: UBERON:0001495 ! pectoral muscle - -[Term] -id: SCTID:181299009 ! -property_value: IAO:0000589 "ascending aorta (SCTID)" xsd:string -is_a: UBERON:0001496 ! ascending aorta - -[Term] -id: SCTID:67240005 ! -property_value: IAO:0000589 "muscle of pes (SCTID)" xsd:string -is_a: UBERON:0001498 ! muscle of pes - -[Term] -id: SCTID:110540008 ! -property_value: IAO:0000589 "muscle of manus (SCTID)" xsd:string -is_a: UBERON:0001500 ! muscle of manus - -[Term] -id: SCTID:181654008 ! -property_value: IAO:0000589 "lumbrical muscle of manus (SCTID)" xsd:string -is_a: UBERON:0001501 ! lumbrical muscle of manus - -[Term] -id: SCTID:265804003 ! -property_value: IAO:0000589 "interosseous muscle of manus (SCTID)" xsd:string -is_a: UBERON:0001502 ! interosseous muscle of manus - -[Term] -id: SCTID:245002007 ! -property_value: IAO:0000589 "dorsal interosseous of manus (SCTID)" xsd:string -is_a: UBERON:0001503 ! dorsal interosseous of manus - -[Term] -id: SCTID:181715003 ! -property_value: IAO:0000589 "lumbrical muscle of pes (SCTID)" xsd:string -is_a: UBERON:0001504 ! lumbrical muscle of pes - -[Term] -id: SCTID:244980008 ! -property_value: IAO:0000589 "coracobrachialis muscle (SCTID)" xsd:string -is_a: UBERON:0001505 ! coracobrachialis muscle - -[Term] -id: SCTID:244982000 ! -property_value: IAO:0000589 "brachialis muscle (SCTID)" xsd:string -is_a: UBERON:0001506 ! brachialis muscle - -[Term] -id: SCTID:265802004 ! -property_value: IAO:0000589 "biceps brachii (SCTID)" xsd:string -is_a: UBERON:0001507 ! biceps brachii - -[Term] -id: SCTID:181300001 ! -property_value: IAO:0000589 "arch of aorta (SCTID)" xsd:string -is_a: UBERON:0001508 ! arch of aorta - -[Term] -id: SCTID:181623009 ! -property_value: IAO:0000589 "triceps brachii (SCTID)" xsd:string -is_a: UBERON:0001509 ! triceps brachii - -[Term] -id: SCTID:181552001 ! -property_value: IAO:0000589 "skin of knee (SCTID)" xsd:string -is_a: UBERON:0001510 ! skin of knee - -[Term] -id: SCTID:181560000 ! -property_value: IAO:0000589 "skin of ankle (SCTID)" xsd:string -is_a: UBERON:0001512 ! skin of ankle - -[Term] -id: SCTID:181529000 ! -property_value: IAO:0000589 "skin of pes (SCTID)" xsd:string -is_a: UBERON:0001513 ! skin of pes - -[Term] -id: SCTID:261399002 ! -property_value: IAO:0000589 "descending aorta (SCTID)" xsd:string -is_a: UBERON:0001514 ! descending aorta - -[Term] -id: SCTID:302510009 ! -property_value: IAO:0000589 "thoracic aorta (SCTID)" xsd:string -is_a: UBERON:0001515 ! thoracic aorta - -[Term] -id: SCTID:244231007 ! -property_value: IAO:0000589 "abdominal aorta (SCTID)" xsd:string -is_a: UBERON:0001516 ! abdominal aorta - -[Term] -id: SCTID:181534001 ! -property_value: IAO:0000589 "skin of elbow (SCTID)" xsd:string -is_a: UBERON:0001517 ! skin of elbow - -[Term] -id: SCTID:181540008 ! -property_value: IAO:0000589 "skin of wrist (SCTID)" xsd:string -is_a: UBERON:0001518 ! skin of wrist - -[Term] -id: SCTID:181527003 ! -property_value: IAO:0000589 "skin of manus (SCTID)" xsd:string -is_a: UBERON:0001519 ! skin of manus - -[Term] -id: SCTID:302514000 ! -property_value: IAO:0000589 "pronator teres (SCTID)" xsd:string -is_a: UBERON:0001520 ! pronator teres - -[Term] -id: SCTID:361816002 ! -property_value: IAO:0000589 "flexor carpi radialis muscle (SCTID)" xsd:string -is_a: UBERON:0001521 ! flexor carpi radialis muscle - -[Term] -id: SCTID:244985003 ! -property_value: IAO:0000589 "flexor carpi ulnaris muscle (SCTID)" xsd:string -is_a: UBERON:0001522 ! flexor carpi ulnaris muscle - -[Term] -id: SCTID:244990000 ! -property_value: IAO:0000589 "extensor carpi radialis longus muscle (SCTID)" xsd:string -is_a: UBERON:0001524 ! extensor carpi radialis longus muscle - -[Term] -id: SCTID:244991001 ! -property_value: IAO:0000589 "extensor carpi radialis brevis muscle (SCTID)" xsd:string -is_a: UBERON:0001525 ! extensor carpi radialis brevis muscle - -[Term] -id: SCTID:244992008 ! -property_value: IAO:0000589 "extensor carpi ulnaris muscle (SCTID)" xsd:string -is_a: UBERON:0001526 ! extensor carpi ulnaris muscle - -[Term] -id: SCTID:256671001 ! -property_value: IAO:0000589 "abductor pollicis longus (SCTID)" xsd:string -is_a: UBERON:0001527 ! abductor pollicis longus - -[Term] -id: SCTID:264167003 ! -property_value: IAO:0000589 "radio-ulnar joint (SCTID)" xsd:string -is_a: UBERON:0001528 ! radio-ulnar joint - -[Term] -id: SCTID:244244002 ! -property_value: IAO:0000589 "brachiocephalic artery (SCTID)" xsd:string -is_a: UBERON:0001529 ! brachiocephalic artery - -[Term] -id: SCTID:362041005 ! -property_value: IAO:0000589 "common carotid artery plus branches (SCTID)" xsd:string -is_a: UBERON:0001530 ! common carotid artery plus branches - -[Term] -id: SCTID:362042003 ! -property_value: IAO:0000589 "right common carotid artery plus branches (SCTID)" xsd:string -is_a: UBERON:0001531 ! right common carotid artery plus branches - -[Term] -id: SCTID:362045001 ! -property_value: IAO:0000589 "internal carotid artery (SCTID)" xsd:string -is_a: UBERON:0001532 ! internal carotid artery - -[Term] -id: SCTID:265790007 ! -property_value: IAO:0000589 "subclavian artery (SCTID)" xsd:string -is_a: UBERON:0001533 ! subclavian artery - -[Term] -id: SCTID:244246000 ! -property_value: IAO:0000589 "right subclavian artery (SCTID)" xsd:string -is_a: UBERON:0001534 ! right subclavian artery - -[Term] -id: SCTID:181323003 ! -property_value: IAO:0000589 "vertebral artery (SCTID)" xsd:string -is_a: UBERON:0001535 ! vertebral artery - -[Term] -id: SCTID:362043008 ! -property_value: IAO:0000589 "left common carotid artery plus branches (SCTID)" xsd:string -is_a: UBERON:0001536 ! left common carotid artery plus branches - -[Term] -id: SCTID:181357006 ! -property_value: IAO:0000589 "anterior tibial artery (SCTID)" xsd:string -is_a: UBERON:0001537 ! anterior tibial artery - -[Term] -id: SCTID:181358001 ! -property_value: IAO:0000589 "posterior tibial artery (SCTID)" xsd:string -is_a: UBERON:0001538 ! posterior tibial artery - -[Term] -id: SCTID:181362007 ! -property_value: IAO:0000589 "dorsalis pedis artery (SCTID)" xsd:string -is_a: UBERON:0001539 ! dorsalis pedis artery - -[Term] -id: SCTID:181359009 ! -property_value: IAO:0000589 "peroneal artery (SCTID)" xsd:string -is_a: UBERON:0001540 ! peroneal artery - -[Term] -id: SCTID:181360004 ! -property_value: IAO:0000589 "medial plantar artery (SCTID)" xsd:string -is_a: UBERON:0001541 ! medial plantar artery - -[Term] -id: SCTID:181762005 ! -property_value: IAO:0000589 "inguinal lymph node (SCTID)" xsd:string -is_a: UBERON:0001542 ! inguinal lymph node - -[Term] -id: SCTID:279156002 ! -property_value: IAO:0000589 "popliteal lymph node (SCTID)" xsd:string -is_a: UBERON:0001543 ! popliteal lymph node - -[Term] -id: SCTID:281065001 ! -property_value: IAO:0000589 "popliteal vein (SCTID)" xsd:string -is_a: UBERON:0001544 ! popliteal vein - -[Term] -id: SCTID:281066000 ! -property_value: IAO:0000589 "anterior tibial vein (SCTID)" xsd:string -is_a: UBERON:0001545 ! anterior tibial vein - -[Term] -id: SCTID:281067009 ! -property_value: IAO:0000589 "posterior tibial vein (SCTID)" xsd:string -is_a: UBERON:0001546 ! posterior tibial vein - -[Term] -id: SCTID:181404009 ! -property_value: IAO:0000589 "small saphenous vein (SCTID)" xsd:string -is_a: UBERON:0001547 ! small saphenous vein - -[Term] -id: SCTID:67925000 ! -property_value: IAO:0000589 "medial tarsal artery (SCTID)" xsd:string -is_a: UBERON:0001553 ! medial tarsal artery - -[Term] -id: SCTID:181518004 ! -property_value: IAO:0000589 "skin of hip (SCTID)" xsd:string -is_a: UBERON:0001554 ! skin of hip - -[Term] -id: SCTID:181420004 ! -property_value: IAO:0000589 "lower urinary tract (SCTID)" xsd:string -is_a: UBERON:0001556 ! lower urinary tract - -[Term] -id: SCTID:361381009 ! -property_value: IAO:0000589 "upper respiratory tract (SCTID)" xsd:string -is_a: UBERON:0001557 ! upper respiratory tract - -[Term] -id: SCTID:281488008 ! -property_value: IAO:0000589 "lower respiratory tract (SCTID)" xsd:string -is_a: UBERON:0001558 ! lower respiratory tract - -[Term] -id: SCTID:244243008 ! -property_value: IAO:0000589 "subcostal artery (SCTID)" xsd:string -is_a: UBERON:0001561 ! subcostal artery - -[Term] -id: SCTID:244825002 ! -property_value: IAO:0000589 "digastric muscle group (SCTID)" xsd:string -is_a: UBERON:0001562 ! digastric muscle group - -[Term] -id: SCTID:244837000 ! -property_value: IAO:0000589 "longus capitis muscle (SCTID)" xsd:string -is_a: UBERON:0001563 ! longus capitis muscle - -[Term] -id: SCTID:244827005 ! -property_value: IAO:0000589 "mylohyoid muscle (SCTID)" xsd:string -is_a: UBERON:0001564 ! mylohyoid muscle - -[Term] -id: SCTID:244828000 ! -property_value: IAO:0000589 "geniohyoid muscle (SCTID)" xsd:string -is_a: UBERON:0001565 ! geniohyoid muscle - -[Term] -id: SCTID:244809007 ! -property_value: IAO:0000589 "cricothyroid muscle (SCTID)" xsd:string -is_a: UBERON:0001566 ! cricothyroid muscle - -[Term] -id: SCTID:182325008 ! -property_value: IAO:0000589 "cheek (SCTID)" xsd:string -is_a: UBERON:0001567 ! cheek - -[Term] -id: SCTID:181744001 ! -property_value: IAO:0000589 "muscle of larynx (SCTID)" xsd:string -is_a: UBERON:0001568 ! muscle of larynx - -[Term] -id: SCTID:244799007 ! -property_value: IAO:0000589 "constrictor muscle of pharynx (SCTID)" xsd:string -is_a: UBERON:0001569 ! constrictor muscle of pharynx - -[Term] -id: SCTID:244803008 ! -property_value: IAO:0000589 "inferior pharyngeal constrictor (SCTID)" xsd:string -is_a: UBERON:0001570 ! inferior pharyngeal constrictor - -[Term] -id: SCTID:244784007 ! -property_value: IAO:0000589 "genioglossus muscle (SCTID)" xsd:string -is_a: UBERON:0001571 ! genioglossus muscle - -[Term] -id: SCTID:244785008 ! -property_value: IAO:0000589 "hyoglossus muscle (SCTID)" xsd:string -is_a: UBERON:0001572 ! hyoglossus muscle - -[Term] -id: SCTID:244783001 ! -property_value: IAO:0000589 "palatoglossus muscle (SCTID)" xsd:string -is_a: UBERON:0001574 ! palatoglossus muscle - -[Term] -id: SCTID:244782006 ! -property_value: IAO:0000589 "extrinsic muscle of tongue (SCTID)" xsd:string -is_a: UBERON:0001575 ! extrinsic muscle of tongue - -[Term] -id: SCTID:244788005 ! -property_value: IAO:0000589 "intrinsic muscle of tongue (SCTID)" xsd:string -is_a: UBERON:0001576 ! intrinsic muscle of tongue - -[Term] -id: SCTID:25903009 ! -property_value: IAO:0000589 "facial muscle (SCTID)" xsd:string -is_a: UBERON:0001577 ! facial muscle - -[Term] -id: SCTID:244726006 ! -property_value: IAO:0000589 "orbicularis oculi muscle (SCTID)" xsd:string -is_a: UBERON:0001578 ! orbicularis oculi muscle - -[Term] -id: SCTID:180937006 ! -property_value: IAO:0000589 "olfactory nerve (SCTID)" xsd:string -is_a: UBERON:0001579 ! olfactory nerve - -[Term] -id: SCTID:244747005 ! -property_value: IAO:0000589 "buccinator muscle (SCTID)" xsd:string -is_a: UBERON:0001582 ! buccinator muscle - -[Term] -id: SCTID:244758001 ! -property_value: IAO:0000589 "extrinsic auricular muscle (SCTID)" xsd:string -is_a: UBERON:0001583 ! extrinsic auricular muscle - -[Term] -id: SCTID:244245001 ! -property_value: IAO:0000589 "left subclavian artery (SCTID)" xsd:string -is_a: UBERON:0001584 ! left subclavian artery - -[Term] -id: SCTID:181368006 ! -property_value: IAO:0000589 "anterior vena cava (SCTID)" xsd:string -is_a: UBERON:0001585 ! anterior vena cava - -[Term] -id: SCTID:181372005 ! -property_value: IAO:0000589 "internal jugular vein (SCTID)" xsd:string -is_a: UBERON:0001586 ! internal jugular vein - -[Term] -id: SCTID:181388005 ! -property_value: IAO:0000589 "subclavian vein (SCTID)" xsd:string -is_a: UBERON:0001587 ! subclavian vein - -[Term] -id: SCTID:303961000 ! -property_value: IAO:0000589 "vertebral vein (SCTID)" xsd:string -is_a: UBERON:0001588 ! vertebral vein - -[Term] -id: SCTID:281056008 ! -property_value: IAO:0000589 "internal thoracic vein (SCTID)" xsd:string -is_a: UBERON:0001589 ! internal thoracic vein - -[Term] -id: SCTID:361626007 ! -property_value: IAO:0000589 "pericardiacophrenic vein (SCTID)" xsd:string -is_a: UBERON:0001590 ! pericardiacophrenic vein - -[Term] -id: SCTID:303432009 ! -property_value: IAO:0000589 "thymic vein (SCTID)" xsd:string -is_a: UBERON:0001591 ! thymic vein - -[Term] -id: SCTID:198293000 ! -property_value: IAO:0000589 "bronchial vein (SCTID)" xsd:string -is_a: UBERON:0001592 ! bronchial vein - -[Term] -id: SCTID:322151008 ! -property_value: IAO:0000589 "venous plexus (SCTID)" xsd:string -is_a: UBERON:0001593 ! venous plexus - -[Term] -id: SCTID:244757006 ! -property_value: IAO:0000589 "auricular muscle (SCTID)" xsd:string -is_a: UBERON:0001595 ! auricular muscle - -[Term] -id: SCTID:244762007 ! -property_value: IAO:0000589 "intrinsic auricular muscle (SCTID)" xsd:string -is_a: UBERON:0001596 ! intrinsic auricular muscle - -[Term] -id: SCTID:181738000 ! -property_value: IAO:0000589 "masseter muscle (SCTID)" xsd:string -is_a: UBERON:0001597 ! masseter muscle - -[Term] -id: SCTID:181739008 ! -property_value: IAO:0000589 "temporalis muscle (SCTID)" xsd:string -is_a: UBERON:0001598 ! temporalis muscle - -[Term] -id: SCTID:244780003 ! -property_value: IAO:0000589 "stapedius muscle (SCTID)" xsd:string -is_a: UBERON:0001599 ! stapedius muscle - -[Term] -id: SCTID:244779001 ! -property_value: IAO:0000589 "tensor tympani (SCTID)" xsd:string -is_a: UBERON:0001600 ! tensor tympani - -[Term] -id: SCTID:181150000 ! -property_value: IAO:0000589 "extra-ocular muscle (SCTID)" xsd:string -is_a: UBERON:0001601 ! extra-ocular muscle - -[Term] -id: SCTID:181151001 ! -property_value: IAO:0000589 "medial rectus extraocular muscle (SCTID)" xsd:string -is_a: UBERON:0001602 ! medial rectus extraocular muscle - -[Term] -id: SCTID:181152008 ! -property_value: IAO:0000589 "lateral rectus extra-ocular muscle (SCTID)" xsd:string -is_a: UBERON:0001603 ! lateral rectus extra-ocular muscle - -[Term] -id: SCTID:244774006 ! -property_value: IAO:0000589 "levator palpebrae superioris (SCTID)" xsd:string -is_a: UBERON:0001604 ! levator palpebrae superioris - -[Term] -id: SCTID:280862009 ! -property_value: IAO:0000589 "ciliary muscle (SCTID)" xsd:string -is_a: UBERON:0001605 ! ciliary muscle - -[Term] -id: SCTID:280888007 ! -property_value: IAO:0000589 "muscle of iris (SCTID)" xsd:string -is_a: UBERON:0001606 ! muscle of iris - -[Term] -id: SCTID:280889004 ! -property_value: IAO:0000589 "sphincter pupillae (SCTID)" xsd:string -is_a: UBERON:0001607 ! sphincter pupillae - -[Term] -id: SCTID:280890008 ! -property_value: IAO:0000589 "dilatator pupillae (SCTID)" xsd:string -is_a: UBERON:0001608 ! dilatator pupillae - -[Term] -id: SCTID:245539003 ! -property_value: IAO:0000589 "isthmus of thyroid gland (SCTID)" xsd:string -is_a: UBERON:0001609 ! isthmus of thyroid gland - -[Term] -id: SCTID:181327002 ! -property_value: IAO:0000589 "lingual artery (SCTID)" xsd:string -is_a: UBERON:0001610 ! lingual artery - -[Term] -id: SCTID:368706006 ! -property_value: IAO:0000589 "sublingual artery (SCTID)" xsd:string -is_a: UBERON:0001611 ! sublingual artery - -[Term] -id: SCTID:181328007 ! -property_value: IAO:0000589 "facial artery (SCTID)" xsd:string -is_a: UBERON:0001612 ! facial artery - -[Term] -id: SCTID:244219005 ! -property_value: IAO:0000589 "occipital artery (SCTID)" xsd:string -is_a: UBERON:0001613 ! occipital artery - -[Term] -id: SCTID:181325005 ! -property_value: IAO:0000589 "superficial temporal artery (SCTID)" xsd:string -is_a: UBERON:0001614 ! superficial temporal artery - -[Term] -id: SCTID:146551008 ! -property_value: IAO:0000589 "transverse facial artery (SCTID)" xsd:string -is_a: UBERON:0001615 ! transverse facial artery - -[Term] -id: SCTID:181326006 ! -property_value: IAO:0000589 "maxillary artery (SCTID)" xsd:string -is_a: UBERON:0001616 ! maxillary artery - -[Term] -id: SCTID:147561008 ! -property_value: IAO:0000589 "mental artery (SCTID)" xsd:string -is_a: UBERON:0001617 ! mental artery - -[Term] -id: SCTID:148066005 ! -property_value: IAO:0000589 "buccal artery (SCTID)" xsd:string -is_a: UBERON:0001618 ! buccal artery - -[Term] -id: SCTID:181310005 ! -property_value: IAO:0000589 "ophthalmic artery (SCTID)" xsd:string -is_a: UBERON:0001619 ! ophthalmic artery - -[Term] -id: SCTID:277771001 ! -property_value: IAO:0000589 "central retinal artery (SCTID)" xsd:string -is_a: UBERON:0001620 ! central retinal artery - -[Term] -id: SCTID:181294004 ! -property_value: IAO:0000589 "coronary artery (SCTID)" xsd:string -is_a: UBERON:0001621 ! coronary artery - -[Term] -id: SCTID:369324002 ! -property_value: IAO:0000589 "lacrimal artery (SCTID)" xsd:string -is_a: UBERON:0001622 ! lacrimal artery - -[Term] -id: SCTID:369333000 ! -property_value: IAO:0000589 "dorsal nasal artery (SCTID)" xsd:string -is_a: UBERON:0001623 ! dorsal nasal artery - -[Term] -id: SCTID:181309000 ! -property_value: IAO:0000589 "anterior cerebral artery (SCTID)" xsd:string -is_a: UBERON:0001624 ! anterior cerebral artery - -[Term] -id: SCTID:362037006 ! -property_value: IAO:0000589 "right coronary artery (SCTID)" xsd:string -is_a: UBERON:0001625 ! right coronary artery - -[Term] -id: SCTID:362034004 ! -property_value: IAO:0000589 "left coronary artery (SCTID)" xsd:string -is_a: UBERON:0001626 ! left coronary artery - -[Term] -id: SCTID:181312002 ! -property_value: IAO:0000589 "middle cerebral artery (SCTID)" xsd:string -is_a: UBERON:0001627 ! middle cerebral artery - -[Term] -id: SCTID:181314001 ! -property_value: IAO:0000589 "posterior communicating artery (SCTID)" xsd:string -is_a: UBERON:0001628 ! posterior communicating artery - -[Term] -id: SCTID:362586000 ! -property_value: IAO:0000589 "carotid body (SCTID)" xsd:string -is_a: UBERON:0001629 ! carotid body - -[Term] -id: SCTID:71616004 ! -property_value: IAO:0000589 "muscle organ (SCTID)" xsd:string -is_a: UBERON:0001630 ! muscle organ - -[Term] -id: SCTID:362600004 ! -property_value: IAO:0000589 "thoracic duct (SCTID)" xsd:string -is_a: UBERON:0001631 ! thoracic duct - -[Term] -id: SCTID:244215004 ! -property_value: IAO:0000589 "basilar artery (SCTID)" xsd:string -is_a: UBERON:0001633 ! basilar artery - -[Term] -id: SCTID:244214000 ! -property_value: IAO:0000589 "superior cerebellar artery (SCTID)" xsd:string -is_a: UBERON:0001635 ! superior cerebellar artery - -[Term] -id: SCTID:181313007 ! -property_value: IAO:0000589 "posterior cerebral artery (SCTID)" xsd:string -is_a: UBERON:0001636 ! posterior cerebral artery - -[Term] -id: SCTID:362877004 ! -property_value: IAO:0000589 "artery (SCTID)" xsd:string -is_a: UBERON:0001637 ! artery - -[Term] -id: SCTID:181367001 ! -property_value: IAO:0000589 "vein (SCTID)" xsd:string -is_a: UBERON:0001638 ! vein - -[Term] -id: SCTID:181340007 ! -property_value: IAO:0000589 "celiac artery (SCTID)" xsd:string -is_a: UBERON:0001640 ! celiac artery - -[Term] -id: SCTID:279262004 ! -property_value: IAO:0000589 "transverse sinus (SCTID)" xsd:string -is_a: UBERON:0001641 ! transverse sinus - -[Term] -id: SCTID:362075006 ! -property_value: IAO:0000589 "superior sagittal sinus (SCTID)" xsd:string -is_a: UBERON:0001642 ! superior sagittal sinus - -[Term] -id: SCTID:362456009 ! -property_value: IAO:0000589 "oculomotor nerve (SCTID)" xsd:string -is_a: UBERON:0001643 ! oculomotor nerve - -[Term] -id: SCTID:180939009 ! -property_value: IAO:0000589 "trochlear nerve (SCTID)" xsd:string -is_a: UBERON:0001644 ! trochlear nerve - -[Term] -id: SCTID:362459002 ! -property_value: IAO:0000589 "trigeminal nerve (SCTID)" xsd:string -is_a: UBERON:0001645 ! trigeminal nerve - -[Term] -id: SCTID:180941005 ! -property_value: IAO:0000589 "abducens nerve (SCTID)" xsd:string -is_a: UBERON:0001646 ! abducens nerve - -[Term] -id: SCTID:362460007 ! -property_value: IAO:0000589 "facial nerve (SCTID)" xsd:string -is_a: UBERON:0001647 ! facial nerve - -[Term] -id: SCTID:180945001 ! -property_value: IAO:0000589 "vestibulocochlear nerve (SCTID)" xsd:string -is_a: UBERON:0001648 ! vestibulocochlear nerve - -[Term] -id: SCTID:362465002 ! -property_value: IAO:0000589 "glossopharyngeal nerve (SCTID)" xsd:string -is_a: UBERON:0001649 ! glossopharyngeal nerve - -[Term] -id: SCTID:362471008 ! -property_value: IAO:0000589 "hypoglossal nerve (SCTID)" xsd:string -is_a: UBERON:0001650 ! hypoglossal nerve - -[Term] -id: SCTID:244235003 ! -property_value: IAO:0000589 "right pulmonary artery (SCTID)" xsd:string -is_a: UBERON:0001651 ! right pulmonary artery - -[Term] -id: SCTID:244234004 ! -property_value: IAO:0000589 "left pulmonary artery (SCTID)" xsd:string -is_a: UBERON:0001652 ! left pulmonary artery - -[Term] -id: SCTID:181374006 ! -property_value: IAO:0000589 "facial vein (SCTID)" xsd:string -is_a: UBERON:0001653 ! facial vein - -[Term] -id: SCTID:152006005 ! -property_value: IAO:0000589 "supraorbital vein (SCTID)" xsd:string -is_a: UBERON:0001654 ! supraorbital vein - -[Term] -id: SCTID:152309009 ! -property_value: IAO:0000589 "submental vein (SCTID)" xsd:string -is_a: UBERON:0001655 ! submental vein - -[Term] -id: SCTID:151299003 ! -property_value: IAO:0000589 "retromandibular vein (SCTID)" xsd:string -is_a: UBERON:0001656 ! retromandibular vein - -[Term] -id: SCTID:150087005 ! -property_value: IAO:0000589 "superficial temporal vein (SCTID)" xsd:string -is_a: UBERON:0001657 ! superficial temporal vein - -[Term] -id: SCTID:151400007 ! -property_value: IAO:0000589 "middle temporal vein (SCTID)" xsd:string -is_a: UBERON:0001658 ! middle temporal vein - -[Term] -id: SCTID:151501009 ! -property_value: IAO:0000589 "transverse facial vein (SCTID)" xsd:string -is_a: UBERON:0001659 ! transverse facial vein - -[Term] -id: SCTID:29972009 ! -property_value: IAO:0000589 "maxillary vein (SCTID)" xsd:string -is_a: UBERON:0001660 ! maxillary vein - -[Term] -id: SCTID:798000 ! -property_value: IAO:0000589 "deep temporal vein (SCTID)" xsd:string -is_a: UBERON:0001661 ! deep temporal vein - -[Term] -id: SCTID:151602009 ! -property_value: IAO:0000589 "anterior auricular vein (SCTID)" xsd:string -is_a: UBERON:0001662 ! anterior auricular vein - -[Term] -id: SCTID:244392000 ! -property_value: IAO:0000589 "cerebral vein (SCTID)" xsd:string -is_a: UBERON:0001663 ! cerebral vein - -[Term] -id: SCTID:244395003 ! -property_value: IAO:0000589 "inferior cerebral vein (SCTID)" xsd:string -is_a: UBERON:0001664 ! inferior cerebral vein - -[Term] -id: SCTID:181703002 ! -property_value: IAO:0000589 "flexor digitorum longus (SCTID)" xsd:string -is_a: UBERON:0001666 ! flexor digitorum longus - -[Term] -id: SCTID:361824007 ! -property_value: IAO:0000589 "tibialis posterior (SCTID)" xsd:string -is_a: UBERON:0001667 ! tibialis posterior - -[Term] -id: SCTID:40693009 ! -property_value: IAO:0000589 "cerebellar vein (SCTID)" xsd:string -is_a: UBERON:0001668 ! cerebellar vein - -[Term] -id: SCTID:64307009 ! -property_value: IAO:0000589 "superior cerebellar vein (SCTID)" xsd:string -is_a: UBERON:0001669 ! superior cerebellar vein - -[Term] -id: SCTID:69104006 ! -property_value: IAO:0000589 "inferior cerebellar vein (SCTID)" xsd:string -is_a: UBERON:0001670 ! inferior cerebellar vein - -[Term] -id: SCTID:55155007 ! -property_value: IAO:0000589 "anterior cerebral vein (SCTID)" xsd:string -is_a: UBERON:0001672 ! anterior cerebral vein - -[Term] -id: SCTID:280913005 ! -property_value: IAO:0000589 "central retinal vein (SCTID)" xsd:string -is_a: UBERON:0001673 ! central retinal vein - -[Term] -id: SCTID:244449009 ! -property_value: IAO:0000589 "trigeminal ganglion (SCTID)" xsd:string -is_a: UBERON:0001675 ! trigeminal ganglion - -[Term] -id: SCTID:181796003 ! -property_value: IAO:0000589 "occipital bone (SCTID)" xsd:string -is_a: UBERON:0001676 ! occipital bone - -[Term] -id: SCTID:272676008 ! -property_value: IAO:0000589 "sphenoid bone (SCTID)" xsd:string -is_a: UBERON:0001677 ! sphenoid bone - -[Term] -id: SCTID:181795004 ! -property_value: IAO:0000589 "temporal bone (SCTID)" xsd:string -is_a: UBERON:0001678 ! temporal bone - -[Term] -id: SCTID:272674006 ! -property_value: IAO:0000589 "ethmoid bone (SCTID)" xsd:string -is_a: UBERON:0001679 ! ethmoid bone - -[Term] -id: SCTID:272675007 ! -property_value: IAO:0000589 "lacrimal bone (SCTID)" xsd:string -is_a: UBERON:0001680 ! lacrimal bone - -[Term] -id: SCTID:181801008 ! -property_value: IAO:0000589 "nasal bone (SCTID)" xsd:string -is_a: UBERON:0001681 ! nasal bone - -[Term] -id: SCTID:244654005 ! -property_value: IAO:0000589 "palatine bone (SCTID)" xsd:string -is_a: UBERON:0001682 ! palatine bone - -[Term] -id: SCTID:272683001 ! -property_value: IAO:0000589 "jugal bone (SCTID)" xsd:string -is_a: UBERON:0001683 ! jugal bone - -[Term] -id: SCTID:181812008 ! -property_value: IAO:0000589 "mandible (SCTID)" xsd:string -is_a: UBERON:0001684 ! mandible - -[Term] -id: SCTID:263352000 ! -property_value: IAO:0000589 "hyoid bone (SCTID)" xsd:string -is_a: UBERON:0001685 ! hyoid bone - -[Term] -id: SCTID:181184001 ! -property_value: IAO:0000589 "auditory ossicle bone (SCTID)" xsd:string -is_a: UBERON:0001686 ! auditory ossicle bone - -[Term] -id: SCTID:264199009 ! -property_value: IAO:0000589 "stapes bone (SCTID)" xsd:string -is_a: UBERON:0001687 ! stapes bone - -[Term] -id: SCTID:272649008 ! -property_value: IAO:0000589 "incus bone (SCTID)" xsd:string -is_a: UBERON:0001688 ! incus bone - -[Term] -id: SCTID:264090005 ! -property_value: IAO:0000589 "malleus bone (SCTID)" xsd:string -is_a: UBERON:0001689 ! malleus bone - -[Term] -id: SCTID:1910005 ! -property_value: IAO:0000589 "ear (SCTID)" xsd:string -is_a: UBERON:0001690 ! ear - -[Term] -id: SCTID:420893000 ! -property_value: IAO:0000589 "external ear (SCTID)" xsd:string -is_a: UBERON:0001691 ! external ear - -[Term] -id: SCTID:138976007 ! -property_value: IAO:0000589 "basioccipital bone (SCTID)" xsd:string -is_a: UBERON:0001692 ! basioccipital bone - -[Term] -id: SCTID:139279001 ! -property_value: IAO:0000589 "exoccipital bone (SCTID)" xsd:string -is_a: UBERON:0001693 ! exoccipital bone - -[Term] -id: SCTID:361733004 ! -property_value: IAO:0000589 "petrous part of temporal bone (SCTID)" xsd:string -is_a: UBERON:0001694 ! petrous part of temporal bone - -[Term] -id: SCTID:138672006 ! -property_value: IAO:0000589 "squamous part of temporal bone (SCTID)" xsd:string -is_a: UBERON:0001695 ! squamous part of temporal bone - -[Term] -id: SCTID:369441001 ! -property_value: IAO:0000589 "foramen ovale of skull (SCTID)" xsd:string -is_a: UBERON:0001698 ! foramen ovale of skull - -[Term] -id: SCTID:279927001 ! -property_value: IAO:0000589 "sensory root of facial nerve (SCTID)" xsd:string -is_a: UBERON:0001699 ! sensory root of facial nerve - -[Term] -id: SCTID:279076005 ! -property_value: IAO:0000589 "geniculate ganglion (SCTID)" xsd:string -is_a: UBERON:0001700 ! geniculate ganglion - -[Term] -id: SCTID:244451008 ! -property_value: IAO:0000589 "glossopharyngeal ganglion (SCTID)" xsd:string -is_a: UBERON:0001701 ! glossopharyngeal ganglion - -[Term] -id: SCTID:244201001 ! -property_value: IAO:0000589 "eyelash (SCTID)" xsd:string -is_a: UBERON:0001702 ! eyelash - -[Term] -id: SCTID:361731002 ! -property_value: IAO:0000589 "neurocranium (SCTID)" xsd:string -is_a: UBERON:0001703 ! neurocranium - -[Term] -id: SCTID:72651009 ! -property_value: IAO:0000589 "nail (SCTID)" xsd:string -is_a: UBERON:0001705 ! nail - -[Term] -id: SCTID:181197004 ! -property_value: IAO:0000589 "nasal septum (SCTID)" xsd:string -is_a: UBERON:0001706 ! nasal septum - -[Term] -id: SCTID:263481003 ! -property_value: IAO:0000589 "nasal cavity (SCTID)" xsd:string -is_a: UBERON:0001707 ! nasal cavity - -[Term] -id: SCTID:181811001 ! -property_value: IAO:0000589 "jaw skeleton (SCTID)" xsd:string -is_a: UBERON:0001708 ! jaw skeleton - -[Term] -id: SCTID:362636001 ! -property_value: IAO:0000589 "upper jaw region (SCTID)" xsd:string -is_a: UBERON:0001709 ! upper jaw region - -[Term] -id: SCTID:362637005 ! -property_value: IAO:0000589 "lower jaw region (SCTID)" xsd:string -is_a: UBERON:0001710 ! lower jaw region - -[Term] -id: SCTID:265782007 ! -property_value: IAO:0000589 "eyelid (SCTID)" xsd:string -is_a: UBERON:0001711 ! eyelid - -[Term] -id: SCTID:244499008 ! -property_value: IAO:0000589 "upper eyelid (SCTID)" xsd:string -is_a: UBERON:0001712 ! upper eyelid - -[Term] -id: SCTID:362528002 ! -property_value: IAO:0000589 "lower eyelid (SCTID)" xsd:string -is_a: UBERON:0001713 ! lower eyelid - -[Term] -id: SCTID:244448001 ! -property_value: IAO:0000589 "cranial ganglion (SCTID)" xsd:string -is_a: UBERON:0001714 ! cranial ganglion - -[Term] -id: SCTID:362457000 ! -property_value: IAO:0000589 "oculomotor nuclear complex (SCTID)" xsd:string -is_a: UBERON:0001715 ! oculomotor nuclear complex - -[Term] -id: SCTID:181227004 ! -property_value: IAO:0000589 "secondary palate (SCTID)" xsd:string -is_a: UBERON:0001716 ! secondary palate - -[Term] -id: SCTID:369033006 ! -property_value: IAO:0000589 "spinal nucleus of trigeminal nerve (SCTID)" xsd:string -is_a: UBERON:0001717 ! spinal nucleus of trigeminal nerve - -[Term] -id: SCTID:369032001 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (SCTID)" xsd:string -is_a: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve - -[Term] -id: SCTID:280184006 ! -property_value: IAO:0000589 "nucleus ambiguus (SCTID)" xsd:string -is_a: UBERON:0001719 ! nucleus ambiguus - -[Term] -id: SCTID:362463009 ! -property_value: IAO:0000589 "cochlear nucleus (SCTID)" xsd:string -is_a: UBERON:0001720 ! cochlear nucleus - -[Term] -id: SCTID:280175006 ! -property_value: IAO:0000589 "inferior vestibular nucleus (SCTID)" xsd:string -is_a: UBERON:0001721 ! inferior vestibular nucleus - -[Term] -id: SCTID:280174005 ! -property_value: IAO:0000589 "medial vestibular nucleus (SCTID)" xsd:string -is_a: UBERON:0001722 ! medial vestibular nucleus - -[Term] -id: SCTID:181226008 ! -property_value: IAO:0000589 "tongue (SCTID)" xsd:string -is_a: UBERON:0001723 ! tongue - -[Term] -id: SCTID:181207000 ! -property_value: IAO:0000589 "sphenoidal sinus (SCTID)" xsd:string -is_a: UBERON:0001724 ! sphenoidal sinus - -[Term] -id: SCTID:314228003 ! -property_value: IAO:0000589 "cranial synchondrosis (SCTID)" xsd:string -is_a: UBERON:0001725 ! cranial synchondrosis - -[Term] -id: SCTID:368728006 ! -property_value: IAO:0000589 "papilla of tongue (SCTID)" xsd:string -is_a: UBERON:0001726 ! papilla of tongue - -[Term] -id: SCTID:362099006 ! -property_value: IAO:0000589 "taste bud (SCTID)" xsd:string -is_a: UBERON:0001727 ! taste bud - -[Term] -id: SCTID:181200003 ! -property_value: IAO:0000589 "nasopharynx (SCTID)" xsd:string -is_a: UBERON:0001728 ! nasopharynx - -[Term] -id: SCTID:263376008 ! -property_value: IAO:0000589 "oropharynx (SCTID)" xsd:string -is_a: UBERON:0001729 ! oropharynx - -[Term] -id: SCTID:279550004 ! -property_value: IAO:0000589 "extrinsic ligament of larynx (SCTID)" xsd:string -is_a: UBERON:0001730 ! extrinsic ligament of larynx - -[Term] -id: SCTID:180543003 ! -property_value: IAO:0000589 "cavity of pharynx (SCTID)" xsd:string -is_a: UBERON:0001731 ! cavity of pharynx - -[Term] -id: SCTID:181199001 ! -property_value: IAO:0000589 "pharyngeal tonsil (SCTID)" xsd:string -is_a: UBERON:0001732 ! pharyngeal tonsil - -[Term] -id: SCTID:245784004 ! -property_value: IAO:0000589 "soft palate (SCTID)" xsd:string -is_a: UBERON:0001733 ! soft palate - -[Term] -id: SCTID:362082005 ! -property_value: IAO:0000589 "palatine uvula (SCTID)" xsd:string -is_a: UBERON:0001734 ! palatine uvula - -[Term] -id: SCTID:56411004 ! -property_value: IAO:0000589 "tonsillar ring (SCTID)" xsd:string -is_a: UBERON:0001735 ! tonsillar ring - -[Term] -id: SCTID:181235001 ! -property_value: IAO:0000589 "submandibular gland (SCTID)" xsd:string -is_a: UBERON:0001736 ! submandibular gland - -[Term] -id: SCTID:181212004 ! -property_value: IAO:0000589 "larynx (SCTID)" xsd:string -is_a: UBERON:0001737 ! larynx - -[Term] -id: SCTID:263483000 ! -property_value: IAO:0000589 "thyroid cartilage (SCTID)" xsd:string -is_a: UBERON:0001738 ! thyroid cartilage - -[Term] -id: SCTID:263482005 ! -property_value: IAO:0000589 "laryngeal cartilage (SCTID)" xsd:string -is_a: UBERON:0001739 ! laryngeal cartilage - -[Term] -id: SCTID:264446005 ! -property_value: IAO:0000589 "arytenoid cartilage (SCTID)" xsd:string -is_a: UBERON:0001740 ! arytenoid cartilage - -[Term] -id: SCTID:278989005 ! -property_value: IAO:0000589 "corniculate cartilage (SCTID)" xsd:string -is_a: UBERON:0001741 ! corniculate cartilage - -[Term] -id: SCTID:278990001 ! -property_value: IAO:0000589 "epiglottic cartilage (SCTID)" xsd:string -is_a: UBERON:0001742 ! epiglottic cartilage - -[Term] -id: SCTID:279508004 ! -property_value: IAO:0000589 "ligament of larynx (SCTID)" xsd:string -is_a: UBERON:0001743 ! ligament of larynx - -[Term] -id: SCTID:181768009 ! -property_value: IAO:0000589 "lymphoid tissue (SCTID)" xsd:string -is_a: UBERON:0001744 ! lymphoid tissue - -[Term] -id: SCTID:176859009 ! -property_value: IAO:0000589 "capsule of thyroid gland (SCTID)" xsd:string -is_a: UBERON:0001746 ! capsule of thyroid gland - -[Term] -id: SCTID:371402001 ! -property_value: IAO:0000589 "parenchyma of thyroid gland (SCTID)" xsd:string -is_a: UBERON:0001747 ! parenchyma of thyroid gland - -[Term] -id: SCTID:362112004 ! -property_value: IAO:0000589 "dentine (SCTID)" xsd:string -is_a: UBERON:0001751 ! dentine - -[Term] -id: SCTID:362113009 ! -property_value: IAO:0000589 "enamel (SCTID)" xsd:string -is_a: UBERON:0001752 ! enamel - -[Term] -id: SCTID:362114003 ! -property_value: IAO:0000589 "cementum (SCTID)" xsd:string -is_a: UBERON:0001753 ! cementum - -[Term] -id: SCTID:362110007 ! -property_value: IAO:0000589 "dental pulp (SCTID)" xsd:string -is_a: UBERON:0001754 ! dental pulp - -[Term] -id: SCTID:181185000 ! -property_value: IAO:0000589 "middle ear (SCTID)" xsd:string -is_a: UBERON:0001756 ! middle ear - -[Term] -id: SCTID:421159007 ! -property_value: IAO:0000589 "pinna (SCTID)" xsd:string -is_a: UBERON:0001757 ! pinna - -[Term] -id: SCTID:362466001 ! -property_value: IAO:0000589 "vagus nerve (SCTID)" xsd:string -is_a: UBERON:0001759 ! vagus nerve - -[Term] -id: SCTID:181205008 ! -property_value: IAO:0000589 "frontal sinus (SCTID)" xsd:string -is_a: UBERON:0001760 ! frontal sinus - -[Term] -id: SCTID:361931007 ! -property_value: IAO:0000589 "turbinate bone (SCTID)" xsd:string -is_a: UBERON:0001762 ! turbinate bone - -[Term] -id: SCTID:181204007 ! -property_value: IAO:0000589 "maxillary sinus (SCTID)" xsd:string -is_a: UBERON:0001764 ! maxillary sinus - -[Term] -id: SCTID:361719004 ! -property_value: IAO:0000589 "mammary duct (SCTID)" xsd:string -is_a: UBERON:0001765 ! mammary duct - -[Term] -id: SCTID:181160009 ! -property_value: IAO:0000589 "anterior chamber of eyeball (SCTID)" xsd:string -is_a: UBERON:0001766 ! anterior chamber of eyeball - -[Term] -id: SCTID:362504004 ! -property_value: IAO:0000589 "posterior chamber of eyeball (SCTID)" xsd:string -is_a: UBERON:0001767 ! posterior chamber of eyeball - -[Term] -id: SCTID:280648000 ! -property_value: IAO:0000589 "uvea (SCTID)" xsd:string -is_a: UBERON:0001768 ! uvea - -[Term] -id: SCTID:181164000 ! -property_value: IAO:0000589 "iris (SCTID)" xsd:string -is_a: UBERON:0001769 ! iris - -[Term] -id: SCTID:263348000 ! -property_value: IAO:0000589 "lacrimal canaliculus (SCTID)" xsd:string -is_a: UBERON:0001770 ! lacrimal canaliculus - -[Term] -id: SCTID:35146001 ! -property_value: IAO:0000589 "pupil (SCTID)" xsd:string -is_a: UBERON:0001771 ! pupil - -[Term] -id: SCTID:368825001 ! -property_value: IAO:0000589 "corneal epithelium (SCTID)" xsd:string -is_a: UBERON:0001772 ! corneal epithelium - -[Term] -id: SCTID:181163006 ! -property_value: IAO:0000589 "sclera (SCTID)" xsd:string -is_a: UBERON:0001773 ! sclera - -[Term] -id: SCTID:263340007 ! -property_value: IAO:0000589 "ciliary body (SCTID)" xsd:string -is_a: UBERON:0001775 ! ciliary body - -[Term] -id: SCTID:181172003 ! -property_value: IAO:0000589 "optic choroid (SCTID)" xsd:string -is_a: UBERON:0001776 ! optic choroid - -[Term] -id: SCTID:362511000 ! -property_value: IAO:0000589 "substantia propria of cornea (SCTID)" xsd:string -is_a: UBERON:0001777 ! substantia propria of cornea - -[Term] -id: SCTID:280870004 ! -property_value: IAO:0000589 "ciliary epithelium (SCTID)" xsd:string -is_a: UBERON:0001778 ! ciliary epithelium - -[Term] -id: SCTID:280882008 ! -property_value: IAO:0000589 "iris stroma (SCTID)" xsd:string -is_a: UBERON:0001779 ! iris stroma - -[Term] -id: SCTID:361099009 ! -property_value: IAO:0000589 "spinal nerve (SCTID)" xsd:string -is_a: UBERON:0001780 ! spinal nerve - -[Term] -id: SCTID:280657006 ! -property_value: IAO:0000589 "layer of retina (SCTID)" xsd:string -is_a: UBERON:0001781 ! layer of retina - -[Term] -id: SCTID:280662007 ! -property_value: IAO:0000589 "pigmented layer of retina (SCTID)" xsd:string -is_a: UBERON:0001782 ! pigmented layer of retina - -[Term] -id: SCTID:362518006 ! -property_value: IAO:0000589 "optic disc (SCTID)" xsd:string -is_a: UBERON:0001783 ! optic disc - -[Term] -id: SCTID:244447006 ! -property_value: IAO:0000589 "cranial nerve (SCTID)" xsd:string -is_a: UBERON:0001785 ! cranial nerve - -[Term] -id: SCTID:264479005 ! -property_value: IAO:0000589 "fovea centralis (SCTID)" xsd:string -is_a: UBERON:0001786 ! fovea centralis - -[Term] -id: SCTID:280676008 ! -property_value: IAO:0000589 "outer limiting layer of retina (SCTID)" xsd:string -is_a: UBERON:0001788 ! outer limiting layer of retina - -[Term] -id: SCTID:280678009 ! -property_value: IAO:0000589 "outer nuclear layer of retina (SCTID)" xsd:string -is_a: UBERON:0001789 ! outer nuclear layer of retina - -[Term] -id: SCTID:280684007 ! -property_value: IAO:0000589 "outer plexiform layer of retina (SCTID)" xsd:string -is_a: UBERON:0001790 ! outer plexiform layer of retina - -[Term] -id: SCTID:362520009 ! -property_value: IAO:0000589 "inner nuclear layer of retina (SCTID)" xsd:string -is_a: UBERON:0001791 ! inner nuclear layer of retina - -[Term] -id: SCTID:280670002 ! -property_value: IAO:0000589 "ganglionic layer of retina (SCTID)" xsd:string -is_a: UBERON:0001792 ! ganglionic layer of retina - -[Term] -id: SCTID:280671003 ! -property_value: IAO:0000589 "nerve fiber layer of retina (SCTID)" xsd:string -is_a: UBERON:0001793 ! nerve fiber layer of retina - -[Term] -id: SCTID:280677004 ! -property_value: IAO:0000589 "inner limiting layer of retina (SCTID)" xsd:string -is_a: UBERON:0001794 ! inner limiting layer of retina - -[Term] -id: SCTID:280682006 ! -property_value: IAO:0000589 "inner plexiform layer of retina (SCTID)" xsd:string -is_a: UBERON:0001795 ! inner plexiform layer of retina - -[Term] -id: SCTID:280587006 ! -property_value: IAO:0000589 "aqueous humor of eyeball (SCTID)" xsd:string -is_a: UBERON:0001796 ! aqueous humor of eyeball - -[Term] -id: SCTID:181170006 ! -property_value: IAO:0000589 "vitreous body (SCTID)" xsd:string -is_a: UBERON:0001798 ! vitreous body - -[Term] -id: SCTID:280658001 ! -property_value: IAO:0000589 "anterior segment of eyeball (SCTID)" xsd:string -is_a: UBERON:0001801 ! anterior segment of eyeball - -[Term] -id: SCTID:280659009 ! -property_value: IAO:0000589 "posterior segment of eyeball (SCTID)" xsd:string -is_a: UBERON:0001802 ! posterior segment of eyeball - -[Term] -id: SCTID:362523006 ! -property_value: IAO:0000589 "epithelium of lens (SCTID)" xsd:string -is_a: UBERON:0001803 ! epithelium of lens - -[Term] -id: SCTID:244500004 ! -property_value: IAO:0000589 "capsule of lens (SCTID)" xsd:string -is_a: UBERON:0001804 ! capsule of lens - -[Term] -id: SCTID:362485003 ! -property_value: IAO:0000589 "sympathetic ganglion (SCTID)" xsd:string -is_a: UBERON:0001806 ! sympathetic ganglion - -[Term] -id: SCTID:324478000 ! -property_value: IAO:0000589 "paravertebral ganglion (SCTID)" xsd:string -is_a: UBERON:0001807 ! paravertebral ganglion - -[Term] -id: SCTID:279284004 ! -property_value: IAO:0000589 "parasympathetic ganglion (SCTID)" xsd:string -is_a: UBERON:0001808 ! parasympathetic ganglion - -[Term] -id: SCTID:122455009 ! -property_value: IAO:0000589 "nerve plexus (SCTID)" xsd:string -is_a: UBERON:0001810 ! nerve plexus - -[Term] -id: SCTID:181161008 ! -property_value: IAO:0000589 "conjunctiva (SCTID)" xsd:string -is_a: UBERON:0001811 ! conjunctiva - -[Term] -id: SCTID:280666005 ! -property_value: IAO:0000589 "palpebral conjunctiva (SCTID)" xsd:string -is_a: UBERON:0001812 ! palpebral conjunctiva - -[Term] -id: SCTID:42280003 ! -property_value: IAO:0000589 "spinal nerve plexus (SCTID)" xsd:string -is_a: UBERON:0001813 ! spinal nerve plexus - -[Term] -id: SCTID:181002002 ! -property_value: IAO:0000589 "brachial nerve plexus (SCTID)" xsd:string -is_a: UBERON:0001814 ! brachial nerve plexus - -[Term] -id: SCTID:181049003 ! -property_value: IAO:0000589 "lumbosacral nerve plexus (SCTID)" xsd:string -is_a: UBERON:0001815 ! lumbosacral nerve plexus - -[Term] -id: SCTID:362482000 ! -property_value: IAO:0000589 "autonomic nerve plexus (SCTID)" xsd:string -is_a: UBERON:0001816 ! autonomic nerve plexus - -[Term] -id: SCTID:181147003 ! -property_value: IAO:0000589 "lacrimal gland (SCTID)" xsd:string -is_a: UBERON:0001817 ! lacrimal gland - -[Term] -id: SCTID:280585003 ! -property_value: IAO:0000589 "tarsal gland (SCTID)" xsd:string -is_a: UBERON:0001818 ! tarsal gland - -[Term] -id: SCTID:280576003 ! -property_value: IAO:0000589 "palpebral fissure (SCTID)" xsd:string -is_a: UBERON:0001819 ! palpebral fissure - -[Term] -id: SCTID:361700009 ! -property_value: IAO:0000589 "sweat gland (SCTID)" xsd:string -is_a: UBERON:0001820 ! sweat gland - -[Term] -id: SCTID:361697005 ! -property_value: IAO:0000589 "sebaceous gland (SCTID)" xsd:string -is_a: UBERON:0001821 ! sebaceous gland - -[Term] -id: SCTID:368859002 ! -property_value: IAO:0000589 "orbital septum (SCTID)" xsd:string -is_a: UBERON:0001822 ! orbital septum - -[Term] -id: SCTID:278941001 ! -property_value: IAO:0000589 "nasal cartilage (SCTID)" xsd:string -is_a: UBERON:0001823 ! nasal cartilage - -[Term] -id: SCTID:361940006 ! -property_value: IAO:0000589 "mucosa of larynx (SCTID)" xsd:string -is_a: UBERON:0001824 ! mucosa of larynx - -[Term] -id: SCTID:181203001 ! -property_value: IAO:0000589 "paranasal sinus (SCTID)" xsd:string -is_a: UBERON:0001825 ! paranasal sinus - -[Term] -id: SCTID:310211009 ! -property_value: IAO:0000589 "nasal cavity mucosa (SCTID)" xsd:string -is_a: UBERON:0001826 ! nasal cavity mucosa - -[Term] -id: SCTID:181224006 ! -property_value: IAO:0000589 "gingiva (SCTID)" xsd:string -is_a: UBERON:0001828 ! gingiva - -[Term] -id: SCTID:303049006 ! -property_value: IAO:0000589 "major salivary gland (SCTID)" xsd:string -is_a: UBERON:0001829 ! major salivary gland - -[Term] -id: SCTID:362177001 ! -property_value: IAO:0000589 "minor salivary gland (SCTID)" xsd:string -is_a: UBERON:0001830 ! minor salivary gland - -[Term] -id: SCTID:181234002 ! -property_value: IAO:0000589 "parotid gland (SCTID)" xsd:string -is_a: UBERON:0001831 ! parotid gland - -[Term] -id: SCTID:362176005 ! -property_value: IAO:0000589 "sublingual gland (SCTID)" xsd:string -is_a: UBERON:0001832 ! sublingual gland - -[Term] -id: SCTID:181221003 ! -property_value: IAO:0000589 "lip (SCTID)" xsd:string -is_a: UBERON:0001833 ! lip - -[Term] -id: SCTID:245776003 ! -property_value: IAO:0000589 "upper lip (SCTID)" xsd:string -is_a: UBERON:0001834 ! upper lip - -[Term] -id: SCTID:245777007 ! -property_value: IAO:0000589 "lower lip (SCTID)" xsd:string -is_a: UBERON:0001835 ! lower lip - -[Term] -id: SCTID:181238004 ! -property_value: IAO:0000589 "duct of salivary gland (SCTID)" xsd:string -is_a: UBERON:0001837 ! duct of salivary gland - -[Term] -id: SCTID:281000009 ! -property_value: IAO:0000589 "sublingual duct (SCTID)" xsd:string -is_a: UBERON:0001838 ! sublingual duct - -[Term] -id: SCTID:279727008 ! -property_value: IAO:0000589 "bony labyrinth (SCTID)" xsd:string -is_a: UBERON:0001839 ! bony labyrinth - -[Term] -id: SCTID:279757004 ! -property_value: IAO:0000589 "semicircular canal (SCTID)" xsd:string -is_a: UBERON:0001840 ! semicircular canal - -[Term] -id: SCTID:279764002 ! -property_value: IAO:0000589 "anterior semicircular canal (SCTID)" xsd:string -is_a: UBERON:0001841 ! anterior semicircular canal - -[Term] -id: SCTID:279762003 ! -property_value: IAO:0000589 "posterior semicircular canal (SCTID)" xsd:string -is_a: UBERON:0001842 ! posterior semicircular canal - -[Term] -id: SCTID:279761005 ! -property_value: IAO:0000589 "lateral semicircular canal (SCTID)" xsd:string -is_a: UBERON:0001843 ! lateral semicircular canal - -[Term] -id: SCTID:181187008 ! -property_value: IAO:0000589 "cochlea (SCTID)" xsd:string -is_a: UBERON:0001844 ! cochlea - -[Term] -id: SCTID:181189006 ! -property_value: IAO:0000589 "internal ear (SCTID)" xsd:string -is_a: UBERON:0001846 ! internal ear - -[Term] -id: SCTID:304982002 ! -property_value: IAO:0000589 "internal ear (SCTID)" xsd:string -is_a: UBERON:0001846 ! internal ear - -[Term] -id: SCTID:362544006 ! -property_value: IAO:0000589 "lobule of pinna (SCTID)" xsd:string -is_a: UBERON:0001847 ! lobule of pinna - -[Term] -id: SCTID:279627003 ! -property_value: IAO:0000589 "auricular cartilage (SCTID)" xsd:string -is_a: UBERON:0001848 ! auricular cartilage - -[Term] -id: SCTID:263790009 ! -property_value: IAO:0000589 "membranous labyrinth (SCTID)" xsd:string -is_a: UBERON:0001849 ! membranous labyrinth - -[Term] -id: SCTID:280426002 ! -property_value: IAO:0000589 "lacrimal drainage system (SCTID)" xsd:string -is_a: UBERON:0001850 ! lacrimal drainage system - -[Term] -id: SCTID:279817006 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (SCTID)" xsd:string -is_a: UBERON:0001853 ! utricle of membranous labyrinth - -[Term] -id: SCTID:279827000 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (SCTID)" xsd:string -is_a: UBERON:0001854 ! saccule of membranous labyrinth - -[Term] -id: SCTID:279849006 ! -property_value: IAO:0000589 "cochlear duct of membranous labyrinth (SCTID)" xsd:string -is_a: UBERON:0001855 ! cochlear duct of membranous labyrinth - -[Term] -id: SCTID:279833009 ! -property_value: IAO:0000589 "semicircular duct (SCTID)" xsd:string -is_a: UBERON:0001856 ! semicircular duct - -[Term] -id: SCTID:279836001 ! -property_value: IAO:0000589 "anterior semicircular duct (SCTID)" xsd:string -is_a: UBERON:0001857 ! anterior semicircular duct - -[Term] -id: SCTID:279835002 ! -property_value: IAO:0000589 "posterior semicircular duct (SCTID)" xsd:string -is_a: UBERON:0001858 ! posterior semicircular duct - -[Term] -id: SCTID:279834003 ! -property_value: IAO:0000589 "lateral semicircular duct (SCTID)" xsd:string -is_a: UBERON:0001859 ! lateral semicircular duct - -[Term] -id: SCTID:362567008 ! -property_value: IAO:0000589 "endolymphatic duct (SCTID)" xsd:string -is_a: UBERON:0001860 ! endolymphatic duct - -[Term] -id: SCTID:279805009 ! -property_value: IAO:0000589 "ductus reuniens (SCTID)" xsd:string -is_a: UBERON:0001861 ! ductus reuniens - -[Term] -id: SCTID:181188003 ! -property_value: IAO:0000589 "vestibular labyrinth (SCTID)" xsd:string -is_a: UBERON:0001862 ! vestibular labyrinth - -[Term] -id: SCTID:362578000 ! -property_value: IAO:0000589 "scala vestibuli (SCTID)" xsd:string -is_a: UBERON:0001863 ! scala vestibuli - -[Term] -id: SCTID:362579008 ! -property_value: IAO:0000589 "scala tympani (SCTID)" xsd:string -is_a: UBERON:0001864 ! scala tympani - -[Term] -id: SCTID:181496004 ! -property_value: IAO:0000589 "skin of chest (SCTID)" xsd:string -is_a: UBERON:0001868 ! skin of chest - -[Term] -id: SCTID:278251007 ! -property_value: IAO:0000589 "cerebral hemisphere (SCTID)" xsd:string -is_a: UBERON:0001869 ! cerebral hemisphere - -[Term] -id: SCTID:180921000 ! -property_value: IAO:0000589 "temporal lobe (SCTID)" xsd:string -is_a: UBERON:0001871 ! temporal lobe - -[Term] -id: SCTID:180922007 ! -property_value: IAO:0000589 "parietal lobe (SCTID)" xsd:string -is_a: UBERON:0001872 ! parietal lobe - -[Term] -id: SCTID:279297002 ! -property_value: IAO:0000589 "caudate nucleus (SCTID)" xsd:string -is_a: UBERON:0001873 ! caudate nucleus - -[Term] -id: SCTID:281512002 ! -property_value: IAO:0000589 "putamen (SCTID)" xsd:string -is_a: UBERON:0001874 ! putamen - -[Term] -id: SCTID:362361005 ! -property_value: IAO:0000589 "globus pallidus (SCTID)" xsd:string -is_a: UBERON:0001875 ! globus pallidus - -[Term] -id: SCTID:279404004 ! -property_value: IAO:0000589 "amygdala (SCTID)" xsd:string -is_a: UBERON:0001876 ! amygdala - -[Term] -id: SCTID:427667007 ! -property_value: IAO:0000589 "nucleus accumbens (SCTID)" xsd:string -is_a: UBERON:0001882 ! nucleus accumbens - -[Term] -id: SCTID:280344009 ! -property_value: IAO:0000589 "phrenic nerve (SCTID)" xsd:string -is_a: UBERON:0001884 ! phrenic nerve - -[Term] -id: SCTID:279211002 ! -property_value: IAO:0000589 "dentate gyrus of hippocampal formation (SCTID)" xsd:string -is_a: UBERON:0001885 ! dentate gyrus of hippocampal formation - -[Term] -id: SCTID:264450003 ! -property_value: IAO:0000589 "choroid plexus (SCTID)" xsd:string -is_a: UBERON:0001886 ! choroid plexus - -[Term] -id: SCTID:85637007 ! -property_value: IAO:0000589 "internal capsule of telencephalon (SCTID)" xsd:string -is_a: UBERON:0001887 ! internal capsule of telencephalon - -[Term] -id: SCTID:369107001 ! -property_value: IAO:0000589 "lateral olfactory stria (SCTID)" xsd:string -is_a: UBERON:0001888 ! lateral olfactory stria - -[Term] -id: SCTID:362291003 ! -property_value: IAO:0000589 "forebrain (SCTID)" xsd:string -is_a: UBERON:0001890 ! forebrain - -[Term] -id: SCTID:279099009 ! -property_value: IAO:0000589 "midbrain (SCTID)" xsd:string -is_a: UBERON:0001891 ! midbrain - -[Term] -id: SCTID:263353005 ! -property_value: IAO:0000589 "telencephalon (SCTID)" xsd:string -is_a: UBERON:0001893 ! telencephalon - -[Term] -id: SCTID:279328001 ! -property_value: IAO:0000589 "diencephalon (SCTID)" xsd:string -is_a: UBERON:0001894 ! diencephalon - -[Term] -id: SCTID:279104005 ! -property_value: IAO:0000589 "medulla oblongata (SCTID)" xsd:string -is_a: UBERON:0001896 ! medulla oblongata - -[Term] -id: SCTID:244433007 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (SCTID)" xsd:string -is_a: UBERON:0001897 ! dorsal plus ventral thalamus - -[Term] -id: SCTID:264483005 ! -property_value: IAO:0000589 "hypothalamus (SCTID)" xsd:string -is_a: UBERON:0001898 ! hypothalamus - -[Term] -id: SCTID:281487003 ! -property_value: IAO:0000589 "epithalamus (SCTID)" xsd:string -is_a: UBERON:0001899 ! epithalamus - -[Term] -id: SCTID:279332007 ! -property_value: IAO:0000589 "ventral thalamus (SCTID)" xsd:string -is_a: UBERON:0001900 ! ventral thalamus - -[Term] -id: SCTID:45480009 ! -property_value: IAO:0000589 "epithelium of small intestine (SCTID)" xsd:string -is_a: UBERON:0001902 ! epithelium of small intestine - -[Term] -id: SCTID:279164008 ! -property_value: IAO:0000589 "thalamic reticular nucleus (SCTID)" xsd:string -is_a: UBERON:0001903 ! thalamic reticular nucleus - -[Term] -id: SCTID:362389008 ! -property_value: IAO:0000589 "habenula (SCTID)" xsd:string -is_a: UBERON:0001904 ! habenula - -[Term] -id: SCTID:181126002 ! -property_value: IAO:0000589 "pineal body (SCTID)" xsd:string -is_a: UBERON:0001905 ! pineal body - -[Term] -id: SCTID:361575000 ! -property_value: IAO:0000589 "subthalamic nucleus (SCTID)" xsd:string -is_a: UBERON:0001906 ! subthalamic nucleus - -[Term] -id: SCTID:369186007 ! -property_value: IAO:0000589 "zona incerta (SCTID)" xsd:string -is_a: UBERON:0001907 ! zona incerta - -[Term] -id: SCTID:280952003 ! -property_value: IAO:0000589 "optic tract (SCTID)" xsd:string -is_a: UBERON:0001908 ! optic tract - -[Term] -id: SCTID:279335009 ! -property_value: IAO:0000589 "habenular commissure (SCTID)" xsd:string -is_a: UBERON:0001909 ! habenular commissure - -[Term] -id: SCTID:361720005 ! -property_value: IAO:0000589 "mammary gland (SCTID)" xsd:string -is_a: UBERON:0001911 ! mammary gland - -[Term] -id: SCTID:369163000 ! -property_value: IAO:0000589 "paraventricular nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0001920 ! paraventricular nucleus of thalamus - -[Term] -id: SCTID:369164006 ! -property_value: IAO:0000589 "reuniens nucleus (SCTID)" xsd:string -is_a: UBERON:0001921 ! reuniens nucleus - -[Term] -id: SCTID:279150008 ! -property_value: IAO:0000589 "parafascicular nucleus (SCTID)" xsd:string -is_a: UBERON:0001922 ! parafascicular nucleus - -[Term] -id: SCTID:279161000 ! -property_value: IAO:0000589 "central medial nucleus (SCTID)" xsd:string -is_a: UBERON:0001923 ! central medial nucleus - -[Term] -id: SCTID:279152000 ! -property_value: IAO:0000589 "paracentral nucleus (SCTID)" xsd:string -is_a: UBERON:0001924 ! paracentral nucleus - -[Term] -id: SCTID:279146001 ! -property_value: IAO:0000589 "ventral lateral nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0001925 ! ventral lateral nucleus of thalamus - -[Term] -id: SCTID:362377006 ! -property_value: IAO:0000589 "lateral geniculate body (SCTID)" xsd:string -is_a: UBERON:0001926 ! lateral geniculate body - -[Term] -id: SCTID:362378001 ! -property_value: IAO:0000589 "medial geniculate body (SCTID)" xsd:string -is_a: UBERON:0001927 ! medial geniculate body - -[Term] -id: SCTID:362382004 ! -property_value: IAO:0000589 "preoptic area (SCTID)" xsd:string -is_a: UBERON:0001928 ! preoptic area - -[Term] -id: SCTID:369130007 ! -property_value: IAO:0000589 "supraoptic nucleus (SCTID)" xsd:string -is_a: UBERON:0001929 ! supraoptic nucleus - -[Term] -id: SCTID:369131006 ! -property_value: IAO:0000589 "paraventricular nucleus of hypothalamus (SCTID)" xsd:string -is_a: UBERON:0001930 ! paraventricular nucleus of hypothalamus - -[Term] -id: SCTID:369129002 ! -property_value: IAO:0000589 "lateral preoptic nucleus (SCTID)" xsd:string -is_a: UBERON:0001931 ! lateral preoptic nucleus - -[Term] -id: SCTID:369134003 ! -property_value: IAO:0000589 "dorsomedial nucleus of hypothalamus (SCTID)" xsd:string -is_a: UBERON:0001934 ! dorsomedial nucleus of hypothalamus - -[Term] -id: SCTID:369124007 ! -property_value: IAO:0000589 "ventromedial nucleus of hypothalamus (SCTID)" xsd:string -is_a: UBERON:0001935 ! ventromedial nucleus of hypothalamus - -[Term] -id: SCTID:369122006 ! -property_value: IAO:0000589 "tuberomammillary nucleus (SCTID)" xsd:string -is_a: UBERON:0001936 ! tuberomammillary nucleus - -[Term] -id: SCTID:360452004 ! -property_value: IAO:0000589 "lateral hypothalamic nucleus (SCTID)" xsd:string -is_a: UBERON:0001937 ! lateral hypothalamic nucleus - -[Term] -id: SCTID:369143007 ! -property_value: IAO:0000589 "lateral mammillary nucleus (SCTID)" xsd:string -is_a: UBERON:0001938 ! lateral mammillary nucleus - -[Term] -id: SCTID:369141009 ! -property_value: IAO:0000589 "medial mammillary nucleus (SCTID)" xsd:string -is_a: UBERON:0001939 ! medial mammillary nucleus - -[Term] -id: SCTID:369144001 ! -property_value: IAO:0000589 "supramammillary nucleus (SCTID)" xsd:string -is_a: UBERON:0001940 ! supramammillary nucleus - -[Term] -id: SCTID:361538005 ! -property_value: IAO:0000589 "lateral habenular nucleus (SCTID)" xsd:string -is_a: UBERON:0001941 ! lateral habenular nucleus - -[Term] -id: SCTID:362392007 ! -property_value: IAO:0000589 "midbrain tegmentum (SCTID)" xsd:string -is_a: UBERON:0001943 ! midbrain tegmentum - -[Term] -id: SCTID:416333003 ! -property_value: IAO:0000589 "pretectal region (SCTID)" xsd:string -is_a: UBERON:0001944 ! pretectal region - -[Term] -id: SCTID:279287006 ! -property_value: IAO:0000589 "red nucleus (SCTID)" xsd:string -is_a: UBERON:0001947 ! red nucleus - -[Term] -id: SCTID:244437008 ! -property_value: IAO:0000589 "regional part of spinal cord (SCTID)" xsd:string -is_a: UBERON:0001948 ! regional part of spinal cord - -[Term] -id: SCTID:361561007 ! -property_value: IAO:0000589 "Ammon's horn (SCTID)" xsd:string -is_a: UBERON:0001954 ! Ammon's horn - -[Term] -id: SCTID:278980009 ! -property_value: IAO:0000589 "cartilage of bronchus (SCTID)" xsd:string -is_a: UBERON:0001956 ! cartilage of bronchus - -[Term] -id: SCTID:85546005 ! -property_value: IAO:0000589 "submucosa of bronchus (SCTID)" xsd:string -is_a: UBERON:0001957 ! submucosa of bronchus - -[Term] -id: SCTID:280506004 ! -property_value: IAO:0000589 "least splanchnic nerve (SCTID)" xsd:string -is_a: UBERON:0001964 ! least splanchnic nerve - -[Term] -id: SCTID:362128009 ! -property_value: IAO:0000589 "submucosa of esophagus (SCTID)" xsd:string -is_a: UBERON:0001972 ! submucosa of esophagus - -[Term] -id: SCTID:371401008 ! -property_value: IAO:0000589 "parenchyma of pancreas (SCTID)" xsd:string -is_a: UBERON:0001978 ! parenchyma of pancreas - -[Term] -id: SCTID:341687009 ! -property_value: IAO:0000589 "venule (SCTID)" xsd:string -is_a: UBERON:0001979 ! venule - -[Term] -id: SCTID:337724002 ! -property_value: IAO:0000589 "arteriole (SCTID)" xsd:string -is_a: UBERON:0001980 ! arteriole - -[Term] -id: SCTID:361097006 ! -property_value: IAO:0000589 "blood vessel (SCTID)" xsd:string -is_a: UBERON:0001981 ! blood vessel - -[Term] -id: SCTID:118652008 ! -property_value: IAO:0000589 "crypt of Lieberkuhn (SCTID)" xsd:string -is_a: UBERON:0001983 ! crypt of Lieberkuhn - -[Term] -id: SCTID:368827009 ! -property_value: IAO:0000589 "corneal endothelium (SCTID)" xsd:string -is_a: UBERON:0001985 ! corneal endothelium - -[Term] -id: SCTID:27168002 ! -property_value: IAO:0000589 "endothelium (SCTID)" xsd:string -is_a: UBERON:0001986 ! endothelium - -[Term] -id: SCTID:181455002 ! -property_value: IAO:0000589 "placenta (SCTID)" xsd:string -is_a: UBERON:0001987 ! placenta - -[Term] -id: SCTID:279278002 ! -property_value: IAO:0000589 "superior cervical ganglion (SCTID)" xsd:string -is_a: UBERON:0001989 ! superior cervical ganglion - -[Term] -id: SCTID:279279005 ! -property_value: IAO:0000589 "middle cervical ganglion (SCTID)" xsd:string -is_a: UBERON:0001990 ! middle cervical ganglion - -[Term] -id: SCTID:181100007 ! -property_value: IAO:0000589 "cervical ganglion (SCTID)" xsd:string -is_a: UBERON:0001991 ! cervical ganglion - -[Term] -id: SCTID:39298000 ! -property_value: IAO:0000589 "hyaline cartilage tissue (SCTID)" xsd:string -is_a: UBERON:0001994 ! hyaline cartilage tissue - -[Term] -id: SCTID:91685003 ! -property_value: IAO:0000589 "fibrocartilage (SCTID)" xsd:string -is_a: UBERON:0001995 ! fibrocartilage - -[Term] -id: SCTID:37623003 ! -property_value: IAO:0000589 "olfactory epithelium (SCTID)" xsd:string -is_a: UBERON:0001997 ! olfactory epithelium - -[Term] -id: SCTID:361860002 ! -property_value: IAO:0000589 "sternocostal joint (SCTID)" xsd:string -is_a: UBERON:0001998 ! sternocostal joint - -[Term] -id: SCTID:181668001 ! -property_value: IAO:0000589 "iliopsoas (SCTID)" xsd:string -is_a: UBERON:0001999 ! iliopsoas - -[Term] -id: SCTID:263314001 ! -property_value: IAO:0000589 "joint of rib (SCTID)" xsd:string -is_a: UBERON:0002001 ! joint of rib - -[Term] -id: SCTID:303101003 ! -property_value: IAO:0000589 "interchondral joint (SCTID)" xsd:string -is_a: UBERON:0002002 ! interchondral joint - -[Term] -id: SCTID:280511002 ! -property_value: IAO:0000589 "cardiac nerve plexus (SCTID)" xsd:string -is_a: UBERON:0002008 ! cardiac nerve plexus - -[Term] -id: SCTID:280512009 ! -property_value: IAO:0000589 "pulmonary nerve plexus (SCTID)" xsd:string -is_a: UBERON:0002009 ! pulmonary nerve plexus - -[Term] -id: SCTID:362494009 ! -property_value: IAO:0000589 "celiac nerve plexus (SCTID)" xsd:string -is_a: UBERON:0002010 ! celiac nerve plexus - -[Term] -id: SCTID:181380003 ! -property_value: IAO:0000589 "pulmonary artery (SCTID)" xsd:string -is_a: UBERON:0002012 ! pulmonary artery - -[Term] -id: SCTID:244484008 ! -property_value: IAO:0000589 "superior hypogastric nerve plexus (SCTID)" xsd:string -is_a: UBERON:0002013 ! superior hypogastric nerve plexus - -[Term] -id: SCTID:192608000 ! -property_value: IAO:0000589 "inferior hypogastric nerve plexus (SCTID)" xsd:string -is_a: UBERON:0002014 ! inferior hypogastric nerve plexus - -[Term] -id: SCTID:243657006 ! -property_value: IAO:0000589 "kidney capsule (SCTID)" xsd:string -is_a: UBERON:0002015 ! kidney capsule - -[Term] -id: SCTID:430160002 ! -property_value: IAO:0000589 "pulmonary vein (SCTID)" xsd:string -is_a: UBERON:0002016 ! pulmonary vein - -[Term] -id: SCTID:362064007 ! -property_value: IAO:0000589 "portal vein (SCTID)" xsd:string -is_a: UBERON:0002017 ! portal vein - -[Term] -id: SCTID:361828005 ! -property_value: IAO:0000589 "synovial membrane of synovial joint (SCTID)" xsd:string -is_a: UBERON:0002018 ! synovial membrane of synovial joint - -[Term] -id: SCTID:362469008 ! -property_value: IAO:0000589 "accessory XI nerve (SCTID)" xsd:string -is_a: UBERON:0002019 ! accessory XI nerve - -[Term] -id: SCTID:180923002 ! -property_value: IAO:0000589 "occipital lobe (SCTID)" xsd:string -is_a: UBERON:0002021 ! occipital lobe - -[Term] -id: SCTID:279201009 ! -property_value: IAO:0000589 "insula (SCTID)" xsd:string -is_a: UBERON:0002022 ! insula - -[Term] -id: SCTID:279410004 ! -property_value: IAO:0000589 "claustrum of brain (SCTID)" xsd:string -is_a: UBERON:0002023 ! claustrum of brain - -[Term] -id: SCTID:280509006 ! -property_value: IAO:0000589 "internal carotid nerve plexus (SCTID)" xsd:string -is_a: UBERON:0002024 ! internal carotid nerve plexus - -[Term] -id: SCTID:419481005 ! -property_value: IAO:0000589 "stratum basale of epidermis (SCTID)" xsd:string -is_a: UBERON:0002025 ! stratum basale of epidermis - -[Term] -id: SCTID:420086000 ! -property_value: IAO:0000589 "stratum spinosum of epidermis (SCTID)" xsd:string -is_a: UBERON:0002026 ! stratum spinosum of epidermis - -[Term] -id: SCTID:361695002 ! -property_value: IAO:0000589 "stratum corneum of epidermis (SCTID)" xsd:string -is_a: UBERON:0002027 ! stratum corneum of epidermis - -[Term] -id: SCTID:303456008 ! -property_value: IAO:0000589 "hindbrain (SCTID)" xsd:string -is_a: UBERON:0002028 ! hindbrain - -[Term] -id: SCTID:265780004 ! -property_value: IAO:0000589 "nipple (SCTID)" xsd:string -is_a: UBERON:0002030 ! nipple - -[Term] -id: SCTID:319910005 ! -property_value: IAO:0000589 "arrector muscle of hair (SCTID)" xsd:string -is_a: UBERON:0002033 ! arrector muscle of hair - -[Term] -id: SCTID:369132004 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (SCTID)" xsd:string -is_a: UBERON:0002034 ! suprachiasmatic nucleus - -[Term] -id: SCTID:369128005 ! -property_value: IAO:0000589 "medial preoptic nucleus (SCTID)" xsd:string -is_a: UBERON:0002035 ! medial preoptic nucleus - -[Term] -id: SCTID:180924008 ! -property_value: IAO:0000589 "cerebellum (SCTID)" xsd:string -is_a: UBERON:0002037 ! cerebellum - -[Term] -id: SCTID:279286002 ! -property_value: IAO:0000589 "substantia nigra (SCTID)" xsd:string -is_a: UBERON:0002038 ! substantia nigra - -[Term] -id: SCTID:286500002 ! -property_value: IAO:0000589 "inferior phrenic vein (SCTID)" xsd:string -is_a: UBERON:0002039 ! inferior phrenic vein - -[Term] -id: SCTID:244247009 ! -property_value: IAO:0000589 "bronchial artery (SCTID)" xsd:string -is_a: UBERON:0002040 ! bronchial artery - -[Term] -id: SCTID:369250001 ! -property_value: IAO:0000589 "ventral nucleus of posterior commissure (SCTID)" xsd:string -is_a: UBERON:0002044 ! ventral nucleus of posterior commissure - -[Term] -id: SCTID:369072005 ! -property_value: IAO:0000589 "cuneate nucleus (SCTID)" xsd:string -is_a: UBERON:0002045 ! cuneate nucleus - -[Term] -id: SCTID:181117000 ! -property_value: IAO:0000589 "thyroid gland (SCTID)" xsd:string -is_a: UBERON:0002046 ! thyroid gland - -[Term] -id: SCTID:181216001 ! -property_value: IAO:0000589 "lung (SCTID)" xsd:string -is_a: UBERON:0002048 ! lung - -[Term] -id: SCTID:667009 ! -property_value: IAO:0000589 "embryonic structure (SCTID)" xsd:string -is_a: UBERON:0002050 ! embryonic structure - -[Term] -id: SCTID:21476003 ! -property_value: IAO:0000589 "zona glomerulosa of adrenal gland (SCTID)" xsd:string -is_a: UBERON:0002053 ! zona glomerulosa of adrenal gland - -[Term] -id: SCTID:56069004 ! -property_value: IAO:0000589 "zona fasciculata of adrenal gland (SCTID)" xsd:string -is_a: UBERON:0002054 ! zona fasciculata of adrenal gland - -[Term] -id: SCTID:47325000 ! -property_value: IAO:0000589 "zona reticularis of adrenal gland (SCTID)" xsd:string -is_a: UBERON:0002055 ! zona reticularis of adrenal gland - -[Term] -id: SCTID:303426004 ! -property_value: IAO:0000589 "inferior suprarenal artery (SCTID)" xsd:string -is_a: UBERON:0002056 ! inferior suprarenal artery - -[Term] -id: SCTID:279281007 ! -property_value: IAO:0000589 "main ciliary ganglion (SCTID)" xsd:string -is_a: UBERON:0002058 ! main ciliary ganglion - -[Term] -id: SCTID:279282000 ! -property_value: IAO:0000589 "submandibular ganglion (SCTID)" xsd:string -is_a: UBERON:0002059 ! submandibular ganglion - -[Term] -id: SCTID:244332003 ! -property_value: IAO:0000589 "femoral artery (SCTID)" xsd:string -is_a: UBERON:0002060 ! femoral artery - -[Term] -id: SCTID:308828009 ! -property_value: IAO:0000589 "truncus arteriosus (SCTID)" xsd:string -is_a: UBERON:0002061 ! truncus arteriosus - -[Term] -id: SCTID:308783008 ! -property_value: IAO:0000589 "common cardinal vein (SCTID)" xsd:string -is_a: UBERON:0002064 ! common cardinal vein - -[Term] -id: SCTID:308781005 ! -property_value: IAO:0000589 "posterior cardinal vein (SCTID)" xsd:string -is_a: UBERON:0002065 ! posterior cardinal vein - -[Term] -id: SCTID:367567000 ! -property_value: IAO:0000589 "umbilical vein (SCTID)" xsd:string -is_a: UBERON:0002066 ! umbilical vein - -[Term] -id: SCTID:361696001 ! -property_value: IAO:0000589 "dermis (SCTID)" xsd:string -is_a: UBERON:0002067 ! dermis - -[Term] -id: SCTID:276858000 ! -property_value: IAO:0000589 "urachus (SCTID)" xsd:string -is_a: UBERON:0002068 ! urachus - -[Term] -id: SCTID:418563001 ! -property_value: IAO:0000589 "stratum granulosum of epidermis (SCTID)" xsd:string -is_a: UBERON:0002069 ! stratum granulosum of epidermis - -[Term] -id: SCTID:244272009 ! -property_value: IAO:0000589 "superior pancreaticoduodenal artery (SCTID)" xsd:string -is_a: UBERON:0002070 ! superior pancreaticoduodenal artery - -[Term] -id: SCTID:419156002 ! -property_value: IAO:0000589 "stratum lucidum of epidermis (SCTID)" xsd:string -is_a: UBERON:0002071 ! stratum lucidum of epidermis - -[Term] -id: SCTID:280830006 ! -property_value: IAO:0000589 "hair follicle (SCTID)" xsd:string -is_a: UBERON:0002073 ! hair follicle - -[Term] -id: SCTID:361359004 ! -property_value: IAO:0000589 "hair shaft (SCTID)" xsd:string -is_a: UBERON:0002074 ! hair shaft - -[Term] -id: SCTID:118760003 ! -property_value: IAO:0000589 "viscus (SCTID)" xsd:string -is_a: UBERON:0002075 ! viscus - -[Term] -id: SCTID:318832008 ! -property_value: IAO:0000589 "cortex of hair (SCTID)" xsd:string -is_a: UBERON:0002077 ! cortex of hair - -[Term] -id: SCTID:244383003 ! -property_value: IAO:0000589 "right cardiac atrium (SCTID)" xsd:string -is_a: UBERON:0002078 ! right cardiac atrium - -[Term] -id: SCTID:244387002 ! -property_value: IAO:0000589 "left cardiac atrium (SCTID)" xsd:string -is_a: UBERON:0002079 ! left cardiac atrium - -[Term] -id: SCTID:244384009 ! -property_value: IAO:0000589 "heart right ventricle (SCTID)" xsd:string -is_a: UBERON:0002080 ! heart right ventricle - -[Term] -id: SCTID:261405004 ! -property_value: IAO:0000589 "cardiac atrium (SCTID)" xsd:string -is_a: UBERON:0002081 ! cardiac atrium - -[Term] -id: SCTID:277699000 ! -property_value: IAO:0000589 "cardiac ventricle (SCTID)" xsd:string -is_a: UBERON:0002082 ! cardiac ventricle - -[Term] -id: SCTID:304829005 ! -property_value: IAO:0000589 "ductus venosus (SCTID)" xsd:string -is_a: UBERON:0002083 ! ductus venosus - -[Term] -id: SCTID:244385005 ! -property_value: IAO:0000589 "heart left ventricle (SCTID)" xsd:string -is_a: UBERON:0002084 ! heart left ventricle - -[Term] -id: SCTID:362016003 ! -property_value: IAO:0000589 "interatrial septum (SCTID)" xsd:string -is_a: UBERON:0002085 ! interatrial septum - -[Term] -id: SCTID:341079007 ! -property_value: IAO:0000589 "atrioventricular canal (SCTID)" xsd:string -is_a: UBERON:0002087 ! atrioventricular canal - -[Term] -id: SCTID:53595001 ! -property_value: IAO:0000589 "lateral thoracic vein (SCTID)" xsd:string -is_a: UBERON:0002088 ! lateral thoracic vein - -[Term] -id: SCTID:322050006 ! -property_value: IAO:0000589 "appendicular skeleton (SCTID)" xsd:string -is_a: UBERON:0002091 ! appendicular skeleton - -[Term] -id: SCTID:309321003 ! -property_value: IAO:0000589 "brain dura mater (SCTID)" xsd:string -is_a: UBERON:0002092 ! brain dura mater - -[Term] -id: SCTID:362302001 ! -property_value: IAO:0000589 "spinal dura mater (SCTID)" xsd:string -is_a: UBERON:0002093 ! spinal dura mater - -[Term] -id: SCTID:362019005 ! -property_value: IAO:0000589 "interventricular septum (SCTID)" xsd:string -is_a: UBERON:0002094 ! interventricular septum - -[Term] -id: SCTID:362707009 ! -property_value: IAO:0000589 "mesentery (SCTID)" xsd:string -is_a: UBERON:0002095 ! mesentery - -[Term] -id: SCTID:181469002 ! -property_value: IAO:0000589 "skin of body (SCTID)" xsd:string -is_a: UBERON:0002097 ! skin of body - -[Term] -id: SCTID:362009004 ! -property_value: IAO:0000589 "apex of heart (SCTID)" xsd:string -is_a: UBERON:0002098 ! apex of heart - -[Term] -id: SCTID:362014000 ! -property_value: IAO:0000589 "cardiac septum (SCTID)" xsd:string -is_a: UBERON:0002099 ! cardiac septum - -[Term] -id: SCTID:262225004 ! -property_value: IAO:0000589 "trunk (SCTID)" xsd:string -is_a: UBERON:0002100 ! trunk - -[Term] -id: SCTID:243996003 ! -property_value: IAO:0000589 "limb (SCTID)" xsd:string -is_a: UBERON:0002101 ! limb - -[Term] -id: SCTID:182245002 ! -property_value: IAO:0000589 "forelimb (SCTID)" xsd:string -is_a: UBERON:0002102 ! forelimb - -[Term] -id: SCTID:182281004 ! -property_value: IAO:0000589 "hindlimb (SCTID)" xsd:string -is_a: UBERON:0002103 ! hindlimb - -[Term] -id: SCTID:281831001 ! -property_value: IAO:0000589 "visual system (SCTID)" xsd:string -is_a: UBERON:0002104 ! visual system - -[Term] -id: SCTID:181279003 ! -property_value: IAO:0000589 "spleen (SCTID)" xsd:string -is_a: UBERON:0002106 ! spleen - -[Term] -id: SCTID:181268008 ! -property_value: IAO:0000589 "liver (SCTID)" xsd:string -is_a: UBERON:0002107 ! liver - -[Term] -id: SCTID:181250005 ! -property_value: IAO:0000589 "small intestine (SCTID)" xsd:string -is_a: UBERON:0002108 ! small intestine - -[Term] -id: SCTID:181269000 ! -property_value: IAO:0000589 "gallbladder (SCTID)" xsd:string -is_a: UBERON:0002110 ! gallbladder - -[Term] -id: SCTID:181414000 ! -property_value: IAO:0000589 "kidney (SCTID)" xsd:string -is_a: UBERON:0002113 ! kidney - -[Term] -id: SCTID:181247007 ! -property_value: IAO:0000589 "duodenum (SCTID)" xsd:string -is_a: UBERON:0002114 ! duodenum - -[Term] -id: SCTID:181248002 ! -property_value: IAO:0000589 "jejunum (SCTID)" xsd:string -is_a: UBERON:0002115 ! jejunum - -[Term] -id: SCTID:181249005 ! -property_value: IAO:0000589 "ileum (SCTID)" xsd:string -is_a: UBERON:0002116 ! ileum - -[Term] -id: SCTID:280123002 ! -property_value: IAO:0000589 "right ovary (SCTID)" xsd:string -is_a: UBERON:0002118 ! right ovary - -[Term] -id: SCTID:280124008 ! -property_value: IAO:0000589 "left ovary (SCTID)" xsd:string -is_a: UBERON:0002119 ! left ovary - -[Term] -id: SCTID:308804007 ! -property_value: IAO:0000589 "pronephros (SCTID)" xsd:string -is_a: UBERON:0002120 ! pronephros - -[Term] -id: SCTID:188181003 ! -property_value: IAO:0000589 "capsule of thymus (SCTID)" xsd:string -is_a: UBERON:0002122 ! capsule of thymus - -[Term] -id: SCTID:188262003 ! -property_value: IAO:0000589 "cortex of thymus (SCTID)" xsd:string -is_a: UBERON:0002123 ! cortex of thymus - -[Term] -id: SCTID:188344009 ! -property_value: IAO:0000589 "medulla of thymus (SCTID)" xsd:string -is_a: UBERON:0002124 ! medulla of thymus - -[Term] -id: SCTID:187882006 ! -property_value: IAO:0000589 "thymus lobule (SCTID)" xsd:string -is_a: UBERON:0002125 ! thymus lobule - -[Term] -id: SCTID:369080003 ! -property_value: IAO:0000589 "solitary tract nuclear complex (SCTID)" xsd:string -is_a: UBERON:0002126 ! solitary tract nuclear complex - -[Term] -id: SCTID:361593004 ! -property_value: IAO:0000589 "cerebellar cortex (SCTID)" xsd:string -is_a: UBERON:0002129 ! cerebellar cortex - -[Term] -id: SCTID:279359004 ! -property_value: IAO:0000589 "anterior lobe of cerebellum (SCTID)" xsd:string -is_a: UBERON:0002131 ! anterior lobe of cerebellum - -[Term] -id: SCTID:279221005 ! -property_value: IAO:0000589 "dentate nucleus (SCTID)" xsd:string -is_a: UBERON:0002132 ! dentate nucleus - -[Term] -id: SCTID:11124005 ! -property_value: IAO:0000589 "atrioventricular valve (SCTID)" xsd:string -is_a: UBERON:0002133 ! atrioventricular valve - -[Term] -id: SCTID:181288007 ! -property_value: IAO:0000589 "tricuspid valve (SCTID)" xsd:string -is_a: UBERON:0002134 ! tricuspid valve - -[Term] -id: SCTID:181286006 ! -property_value: IAO:0000589 "mitral valve (SCTID)" xsd:string -is_a: UBERON:0002135 ! mitral valve - -[Term] -id: SCTID:181287002 ! -property_value: IAO:0000589 "aortic valve (SCTID)" xsd:string -is_a: UBERON:0002137 ! aortic valve - -[Term] -id: SCTID:369194000 ! -property_value: IAO:0000589 "habenulo-interpeduncular tract (SCTID)" xsd:string -is_a: UBERON:0002138 ! habenulo-interpeduncular tract - -[Term] -id: SCTID:369193006 ! -property_value: IAO:0000589 "subcommissural organ (SCTID)" xsd:string -is_a: UBERON:0002139 ! subcommissural organ - -[Term] -id: SCTID:62088007 ! -property_value: IAO:0000589 "parvocellular oculomotor nucleus (SCTID)" xsd:string -is_a: UBERON:0002141 ! parvocellular oculomotor nucleus - -[Term] -id: SCTID:25949000 ! -property_value: IAO:0000589 "peripeduncular nucleus (SCTID)" xsd:string -is_a: UBERON:0002144 ! peripeduncular nucleus - -[Term] -id: SCTID:369240002 ! -property_value: IAO:0000589 "interpeduncular nucleus (SCTID)" xsd:string -is_a: UBERON:0002145 ! interpeduncular nucleus - -[Term] -id: SCTID:181289004 ! -property_value: IAO:0000589 "pulmonary valve (SCTID)" xsd:string -is_a: UBERON:0002146 ! pulmonary valve - -[Term] -id: SCTID:369016004 ! -property_value: IAO:0000589 "locus ceruleus (SCTID)" xsd:string -is_a: UBERON:0002148 ! locus ceruleus - -[Term] -id: SCTID:369028007 ! -property_value: IAO:0000589 "superior salivatory nucleus (SCTID)" xsd:string -is_a: UBERON:0002149 ! superior salivatory nucleus - -[Term] -id: SCTID:279218008 ! -property_value: IAO:0000589 "superior cerebellar peduncle (SCTID)" xsd:string -is_a: UBERON:0002150 ! superior cerebellar peduncle - -[Term] -id: SCTID:304942009 ! -property_value: IAO:0000589 "pontine nuclear group (SCTID)" xsd:string -is_a: UBERON:0002151 ! pontine nuclear group - -[Term] -id: SCTID:279219000 ! -property_value: IAO:0000589 "middle cerebellar peduncle (SCTID)" xsd:string -is_a: UBERON:0002152 ! middle cerebellar peduncle - -[Term] -id: SCTID:279224002 ! -property_value: IAO:0000589 "fastigial nucleus (SCTID)" xsd:string -is_a: UBERON:0002153 ! fastigial nucleus - -[Term] -id: SCTID:369069003 ! -property_value: IAO:0000589 "medial accessory inferior olivary nucleus (SCTID)" xsd:string -is_a: UBERON:0002159 ! medial accessory inferior olivary nucleus - -[Term] -id: SCTID:369078009 ! -property_value: IAO:0000589 "nucleus prepositus (SCTID)" xsd:string -is_a: UBERON:0002160 ! nucleus prepositus - -[Term] -id: SCTID:369071003 ! -property_value: IAO:0000589 "gracile nucleus (SCTID)" xsd:string -is_a: UBERON:0002161 ! gracile nucleus - -[Term] -id: SCTID:369039005 ! -property_value: IAO:0000589 "area postrema (SCTID)" xsd:string -is_a: UBERON:0002162 ! area postrema - -[Term] -id: SCTID:362418008 ! -property_value: IAO:0000589 "inferior cerebellar peduncle (SCTID)" xsd:string -is_a: UBERON:0002163 ! inferior cerebellar peduncle - -[Term] -id: SCTID:369265000 ! -property_value: IAO:0000589 "tectobulbar tract (SCTID)" xsd:string -is_a: UBERON:0002164 ! tectobulbar tract - -[Term] -id: SCTID:362013006 ! -property_value: IAO:0000589 "endocardium (SCTID)" xsd:string -is_a: UBERON:0002165 ! endocardium - -[Term] -id: SCTID:192001005 ! -property_value: IAO:0000589 "endocardium of atrium (SCTID)" xsd:string -is_a: UBERON:0002166 ! endocardium of atrium - -[Term] -id: SCTID:361967000 ! -property_value: IAO:0000589 "right lung (SCTID)" xsd:string -is_a: UBERON:0002167 ! right lung - -[Term] -id: SCTID:361982005 ! -property_value: IAO:0000589 "left lung (SCTID)" xsd:string -is_a: UBERON:0002168 ! left lung - -[Term] -id: SCTID:361964007 ! -property_value: IAO:0000589 "alveolar sac (SCTID)" xsd:string -is_a: UBERON:0002169 ! alveolar sac - -[Term] -id: SCTID:361969002 ! -property_value: IAO:0000589 "upper lobe of right lung (SCTID)" xsd:string -is_a: UBERON:0002170 ! upper lobe of right lung - -[Term] -id: SCTID:361976007 ! -property_value: IAO:0000589 "lower lobe of right lung (SCTID)" xsd:string -is_a: UBERON:0002171 ! lower lobe of right lung - -[Term] -id: SCTID:201806004 ! -property_value: IAO:0000589 "alveolar atrium (SCTID)" xsd:string -is_a: UBERON:0002172 ! alveolar atrium - -[Term] -id: SCTID:361973004 ! -property_value: IAO:0000589 "middle lobe of right lung (SCTID)" xsd:string -is_a: UBERON:0002174 ! middle lobe of right lung - -[Term] -id: SCTID:361955002 ! -property_value: IAO:0000589 "right main bronchus (SCTID)" xsd:string -is_a: UBERON:0002177 ! right main bronchus - -[Term] -id: SCTID:361959008 ! -property_value: IAO:0000589 "left main bronchus (SCTID)" xsd:string -is_a: UBERON:0002178 ! left main bronchus - -[Term] -id: SCTID:362434006 ! -property_value: IAO:0000589 "lateral funiculus of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002179 ! lateral funiculus of spinal cord - -[Term] -id: SCTID:362429007 ! -property_value: IAO:0000589 "ventral funiculus of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002180 ! ventral funiculus of spinal cord - -[Term] -id: SCTID:245508000 ! -property_value: IAO:0000589 "main bronchus (SCTID)" xsd:string -is_a: UBERON:0002182 ! main bronchus - -[Term] -id: SCTID:245509008 ! -property_value: IAO:0000589 "lobar bronchus (SCTID)" xsd:string -is_a: UBERON:0002183 ! lobar bronchus - -[Term] -id: SCTID:245513001 ! -property_value: IAO:0000589 "segmental bronchus (SCTID)" xsd:string -is_a: UBERON:0002184 ! segmental bronchus - -[Term] -id: SCTID:181215002 ! -property_value: IAO:0000589 "bronchus (SCTID)" xsd:string -is_a: UBERON:0002185 ! bronchus - -[Term] -id: SCTID:278982001 ! -property_value: IAO:0000589 "bronchiole (SCTID)" xsd:string -is_a: UBERON:0002186 ! bronchiole - -[Term] -id: SCTID:278981008 ! -property_value: IAO:0000589 "terminal bronchiole (SCTID)" xsd:string -is_a: UBERON:0002187 ! terminal bronchiole - -[Term] -id: SCTID:128517006 ! -property_value: IAO:0000589 "respiratory bronchiole (SCTID)" xsd:string -is_a: UBERON:0002188 ! respiratory bronchiole - -[Term] -id: SCTID:369097009 ! -property_value: IAO:0000589 "subiculum (SCTID)" xsd:string -is_a: UBERON:0002191 ! subiculum - -[Term] -id: SCTID:327532004 ! -property_value: IAO:0000589 "capsule of lymph node (SCTID)" xsd:string -is_a: UBERON:0002194 ! capsule of lymph node - -[Term] -id: SCTID:245532007 ! -property_value: IAO:0000589 "adenohypophysis (SCTID)" xsd:string -is_a: UBERON:0002196 ! adenohypophysis - -[Term] -id: SCTID:369121004 ! -property_value: IAO:0000589 "median eminence of neurohypophysis (SCTID)" xsd:string -is_a: UBERON:0002197 ! median eminence of neurohypophysis - -[Term] -id: SCTID:245527006 ! -property_value: IAO:0000589 "neurohypophysis (SCTID)" xsd:string -is_a: UBERON:0002198 ! neurohypophysis - -[Term] -id: SCTID:4419000 ! -property_value: IAO:0000589 "submucosa of trachea (SCTID)" xsd:string -is_a: UBERON:0002202 ! submucosa of trachea - -[Term] -id: SCTID:123846009 ! -property_value: IAO:0000589 "vasculature of eye (SCTID)" xsd:string -is_a: UBERON:0002203 ! vasculature of eye - -[Term] -id: SCTID:278858007 ! -property_value: IAO:0000589 "musculoskeletal system (SCTID)" xsd:string -is_a: UBERON:0002204 ! musculoskeletal system - -[Term] -id: SCTID:182014008 ! -property_value: IAO:0000589 "manubrium of sternum (SCTID)" xsd:string -is_a: UBERON:0002205 ! manubrium of sternum - -[Term] -id: SCTID:279306001 ! -property_value: IAO:0000589 "mammillary body (SCTID)" xsd:string -is_a: UBERON:0002206 ! mammillary body - -[Term] -id: SCTID:272711000 ! -property_value: IAO:0000589 "xiphoid process (SCTID)" xsd:string -is_a: UBERON:0002207 ! xiphoid process - -[Term] -id: SCTID:95955004 ! -property_value: IAO:0000589 "sternebra (SCTID)" xsd:string -is_a: UBERON:0002208 ! sternebra - -[Term] -id: SCTID:37772004 ! -property_value: IAO:0000589 "fibrous joint (SCTID)" xsd:string -is_a: UBERON:0002209 ! fibrous joint - -[Term] -id: SCTID:89358004 ! -property_value: IAO:0000589 "syndesmosis (SCTID)" xsd:string -is_a: UBERON:0002210 ! syndesmosis - -[Term] -id: SCTID:362295007 ! -property_value: IAO:0000589 "nerve root (SCTID)" xsd:string -is_a: UBERON:0002211 ! nerve root - -[Term] -id: SCTID:362572004 ! -property_value: IAO:0000589 "macula of saccule of membranous labyrinth (SCTID)" xsd:string -is_a: UBERON:0002212 ! macula of saccule of membranous labyrinth - -[Term] -id: SCTID:58442004 ! -property_value: IAO:0000589 "cartilaginous joint (SCTID)" xsd:string -is_a: UBERON:0002213 ! cartilaginous joint - -[Term] -id: SCTID:362568003 ! -property_value: IAO:0000589 "macula of utricle of membranous labyrinth (SCTID)" xsd:string -is_a: UBERON:0002214 ! macula of utricle of membranous labyrinth - -[Term] -id: SCTID:42903008 ! -property_value: IAO:0000589 "synchondrosis (SCTID)" xsd:string -is_a: UBERON:0002215 ! synchondrosis - -[Term] -id: SCTID:1584001 ! -property_value: IAO:0000589 "symphysis (SCTID)" xsd:string -is_a: UBERON:0002216 ! symphysis - -[Term] -id: SCTID:113234001 ! -property_value: IAO:0000589 "synovial joint (SCTID)" xsd:string -is_a: UBERON:0002217 ! synovial joint - -[Term] -id: SCTID:95952001 ! -property_value: IAO:0000589 "tympanic ring (SCTID)" xsd:string -is_a: UBERON:0002218 ! tympanic ring - -[Term] -id: SCTID:272681004 ! -property_value: IAO:0000589 "fontanelle (SCTID)" xsd:string -is_a: UBERON:0002221 ! fontanelle - -[Term] -id: SCTID:11881003 ! -property_value: IAO:0000589 "perichondrium (SCTID)" xsd:string -is_a: UBERON:0002222 ! perichondrium - -[Term] -id: SCTID:279810008 ! -property_value: IAO:0000589 "endolymphatic sac (SCTID)" xsd:string -is_a: UBERON:0002223 ! endolymphatic sac - -[Term] -id: SCTID:243949006 ! -property_value: IAO:0000589 "thoracic cavity (SCTID)" xsd:string -is_a: UBERON:0002224 ! thoracic cavity - -[Term] -id: SCTID:367767002 ! -property_value: IAO:0000589 "costal arch (SCTID)" xsd:string -is_a: UBERON:0002225 ! costal arch - -[Term] -id: SCTID:362574003 ! -property_value: IAO:0000589 "basilar membrane of cochlea (SCTID)" xsd:string -is_a: UBERON:0002226 ! basilar membrane of cochlea - -[Term] -id: SCTID:279841009 ! -property_value: IAO:0000589 "spiral organ of cochlea (SCTID)" xsd:string -is_a: UBERON:0002227 ! spiral organ of cochlea - -[Term] -id: SCTID:302523002 ! -property_value: IAO:0000589 "rib (SCTID)" xsd:string -is_a: UBERON:0002228 ! rib - -[Term] -id: SCTID:369438005 ! -property_value: IAO:0000589 "interparietal bone (SCTID)" xsd:string -is_a: UBERON:0002229 ! interparietal bone - -[Term] -id: SCTID:263358001 ! -property_value: IAO:0000589 "head of rib (SCTID)" xsd:string -is_a: UBERON:0002230 ! head of rib - -[Term] -id: SCTID:263361000 ! -property_value: IAO:0000589 "body of rib (SCTID)" xsd:string -is_a: UBERON:0002231 ! body of rib - -[Term] -id: SCTID:368891001 ! -property_value: IAO:0000589 "olfactory gland (SCTID)" xsd:string -is_a: UBERON:0002232 ! olfactory gland - -[Term] -id: SCTID:368960006 ! -property_value: IAO:0000589 "tectorial membrane of cochlea (SCTID)" xsd:string -is_a: UBERON:0002233 ! tectorial membrane of cochlea - -[Term] -id: SCTID:181986000 ! -property_value: IAO:0000589 "proximal phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0002234 ! proximal phalanx of manus - -[Term] -id: SCTID:361325003 ! -property_value: IAO:0000589 "proximal phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0002234 ! proximal phalanx of manus - -[Term] -id: SCTID:361104005 ! -property_value: IAO:0000589 "tubercle of rib (SCTID)" xsd:string -is_a: UBERON:0002235 ! tubercle of rib - -[Term] -id: SCTID:244703004 ! -property_value: IAO:0000589 "costal cartilage (SCTID)" xsd:string -is_a: UBERON:0002236 ! costal cartilage - -[Term] -id: SCTID:368044009 ! -property_value: IAO:0000589 "true rib (SCTID)" xsd:string -is_a: UBERON:0002237 ! true rib - -[Term] -id: SCTID:368045005 ! -property_value: IAO:0000589 "false rib (SCTID)" xsd:string -is_a: UBERON:0002238 ! false rib - -[Term] -id: SCTID:368046006 ! -property_value: IAO:0000589 "floating rib (SCTID)" xsd:string -is_a: UBERON:0002239 ! floating rib - -[Term] -id: SCTID:180959008 ! -property_value: IAO:0000589 "spinal cord (SCTID)" xsd:string -is_a: UBERON:0002240 ! spinal cord - -[Term] -id: SCTID:316586000 ! -property_value: IAO:0000589 "nucleus pulposus (SCTID)" xsd:string -is_a: UBERON:0002242 ! nucleus pulposus - -[Term] -id: SCTID:308884009 ! -property_value: IAO:0000589 "premaxilla (SCTID)" xsd:string -is_a: UBERON:0002244 ! premaxilla - -[Term] -id: SCTID:362411002 ! -property_value: IAO:0000589 "cerebellar hemisphere (SCTID)" xsd:string -is_a: UBERON:0002245 ! cerebellar hemisphere - -[Term] -id: SCTID:245480007 ! -property_value: IAO:0000589 "uterine horn (SCTID)" xsd:string -is_a: UBERON:0002247 ! uterine horn - -[Term] -id: SCTID:181350008 ! -property_value: IAO:0000589 "popliteal artery (SCTID)" xsd:string -is_a: UBERON:0002250 ! popliteal artery - -[Term] -id: SCTID:244854008 ! -property_value: IAO:0000589 "iliocostalis muscle (SCTID)" xsd:string -is_a: UBERON:0002251 ! iliocostalis muscle - -[Term] -id: SCTID:308822005 ! -property_value: IAO:0000589 "thyroglossal duct (SCTID)" xsd:string -is_a: UBERON:0002254 ! thyroglossal duct - -[Term] -id: SCTID:361346007 ! -property_value: IAO:0000589 "vomeronasal organ (SCTID)" xsd:string -is_a: UBERON:0002255 ! vomeronasal organ - -[Term] -id: SCTID:180961004 ! -property_value: IAO:0000589 "dorsal horn of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002256 ! dorsal horn of spinal cord - -[Term] -id: SCTID:279443000 ! -property_value: IAO:0000589 "ventral horn of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002257 ! ventral horn of spinal cord - -[Term] -id: SCTID:362432005 ! -property_value: IAO:0000589 "dorsal funiculus of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002258 ! dorsal funiculus of spinal cord - -[Term] -id: SCTID:361579006 ! -property_value: IAO:0000589 "corpora quadrigemina (SCTID)" xsd:string -is_a: UBERON:0002259 ! corpora quadrigemina - -[Term] -id: SCTID:362436008 ! -property_value: IAO:0000589 "dorsal root of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002261 ! dorsal root of spinal cord - -[Term] -id: SCTID:362492008 ! -property_value: IAO:0000589 "celiac ganglion (SCTID)" xsd:string -is_a: UBERON:0002262 ! celiac ganglion - -[Term] -id: SCTID:279319002 ! -property_value: IAO:0000589 "lentiform nucleus (SCTID)" xsd:string -is_a: UBERON:0002263 ! lentiform nucleus - -[Term] -id: SCTID:279394006 ! -property_value: IAO:0000589 "olfactory bulb (SCTID)" xsd:string -is_a: UBERON:0002264 ! olfactory bulb - -[Term] -id: SCTID:362356008 ! -property_value: IAO:0000589 "olfactory tract (SCTID)" xsd:string -is_a: UBERON:0002265 ! olfactory tract - -[Term] -id: SCTID:308790003 ! -property_value: IAO:0000589 "hyaloid artery (SCTID)" xsd:string -is_a: UBERON:0002270 ! hyaloid artery - -[Term] -id: SCTID:361552007 ! -property_value: IAO:0000589 "reticular formation (SCTID)" xsd:string -is_a: UBERON:0002275 ! reticular formation - -[Term] -id: SCTID:362576001 ! -property_value: IAO:0000589 "perilymphatic space (SCTID)" xsd:string -is_a: UBERON:0002278 ! perilymphatic space - -[Term] -id: SCTID:368951003 ! -property_value: IAO:0000589 "otolith (SCTID)" xsd:string -is_a: UBERON:0002280 ! otolith - -[Term] -id: SCTID:362575002 ! -property_value: IAO:0000589 "vestibular membrane of cochlear duct (SCTID)" xsd:string -is_a: UBERON:0002281 ! vestibular membrane of cochlear duct - -[Term] -id: SCTID:279842002 ! -property_value: IAO:0000589 "stria vascularis of cochlear duct (SCTID)" xsd:string -is_a: UBERON:0002282 ! stria vascularis of cochlear duct - -[Term] -id: SCTID:300918002 ! -property_value: IAO:0000589 "hyponychium (SCTID)" xsd:string -is_a: UBERON:0002284 ! hyponychium - -[Term] -id: SCTID:180930008 ! -property_value: IAO:0000589 "telencephalic ventricle (SCTID)" xsd:string -is_a: UBERON:0002285 ! telencephalic ventricle - -[Term] -id: SCTID:180931007 ! -property_value: IAO:0000589 "third ventricle (SCTID)" xsd:string -is_a: UBERON:0002286 ! third ventricle - -[Term] -id: SCTID:369279008 ! -property_value: IAO:0000589 "optic recess of third ventricle (SCTID)" xsd:string -is_a: UBERON:0002287 ! optic recess of third ventricle - -[Term] -id: SCTID:61576002 ! -property_value: IAO:0000589 "choroid plexus of third ventricle (SCTID)" xsd:string -is_a: UBERON:0002288 ! choroid plexus of third ventricle - -[Term] -id: SCTID:279249003 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (SCTID)" xsd:string -is_a: UBERON:0002289 ! midbrain cerebral aqueduct - -[Term] -id: SCTID:42214001 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (SCTID)" xsd:string -is_a: UBERON:0002290 ! choroid plexus of fourth ventricle - -[Term] -id: SCTID:279447004 ! -property_value: IAO:0000589 "central canal of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002291 ! central canal of spinal cord - -[Term] -id: SCTID:263315000 ! -property_value: IAO:0000589 "costovertebral joint (SCTID)" xsd:string -is_a: UBERON:0002292 ! costovertebral joint - -[Term] -id: SCTID:282413008 ! -property_value: IAO:0000589 "costochondral joint (SCTID)" xsd:string -is_a: UBERON:0002293 ! costochondral joint - -[Term] -id: SCTID:361354009 ! -property_value: IAO:0000589 "biliary system (SCTID)" xsd:string -is_a: UBERON:0002294 ! biliary system - -[Term] -id: SCTID:308823000 ! -property_value: IAO:0000589 "dorsal mesentery (SCTID)" xsd:string -is_a: UBERON:0002296 ! dorsal mesentery - -[Term] -id: SCTID:180925009 ! -property_value: IAO:0000589 "brainstem (SCTID)" xsd:string -is_a: UBERON:0002298 ! brainstem - -[Term] -id: SCTID:361364000 ! -property_value: IAO:0000589 "alveolus of lung (SCTID)" xsd:string -is_a: UBERON:0002299 ! alveolus of lung - -[Term] -id: SCTID:191910002 ! -property_value: IAO:0000589 "myocardium of atrium (SCTID)" xsd:string -is_a: UBERON:0002302 ! myocardium of atrium - -[Term] -id: SCTID:362219002 ! -property_value: IAO:0000589 "juxtaglomerular apparatus (SCTID)" xsd:string -is_a: UBERON:0002303 ! juxtaglomerular apparatus - -[Term] -id: SCTID:70064002 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (SCTID)" xsd:string -is_a: UBERON:0002307 ! choroid plexus of lateral ventricle - -[Term] -id: SCTID:426465002 ! -property_value: IAO:0000589 "nucleus of brain (SCTID)" xsd:string -is_a: UBERON:0002308 ! nucleus of brain - -[Term] -id: SCTID:362397001 ! -property_value: IAO:0000589 "medial longitudinal fasciculus (SCTID)" xsd:string -is_a: UBERON:0002309 ! medial longitudinal fasciculus - -[Term] -id: SCTID:369096000 ! -property_value: IAO:0000589 "hippocampus fimbria (SCTID)" xsd:string -is_a: UBERON:0002310 ! hippocampus fimbria - -[Term] -id: SCTID:362394008 ! -property_value: IAO:0000589 "midbrain tectum (SCTID)" xsd:string -is_a: UBERON:0002314 ! midbrain tectum - -[Term] -id: SCTID:279441003 ! -property_value: IAO:0000589 "gray matter of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002315 ! gray matter of spinal cord - -[Term] -id: SCTID:362412009 ! -property_value: IAO:0000589 "white matter of cerebellum (SCTID)" xsd:string -is_a: UBERON:0002317 ! white matter of cerebellum - -[Term] -id: SCTID:279436006 ! -property_value: IAO:0000589 "white matter of spinal cord (SCTID)" xsd:string -is_a: UBERON:0002318 ! white matter of spinal cord - -[Term] -id: SCTID:244574009 ! -property_value: IAO:0000589 "glomerular mesangium (SCTID)" xsd:string -is_a: UBERON:0002320 ! glomerular mesangium - -[Term] -id: SCTID:361348008 ! -property_value: IAO:0000589 "coelemic cavity lumen (SCTID)" xsd:string -is_a: UBERON:0002323 ! coelemic cavity lumen - -[Term] -id: SCTID:308820002 ! -property_value: IAO:0000589 "notochord (SCTID)" xsd:string -is_a: UBERON:0002328 ! notochord - -[Term] -id: SCTID:280644003 ! -property_value: IAO:0000589 "umbilical cord (SCTID)" xsd:string -is_a: UBERON:0002331 ! umbilical cord - -[Term] -id: SCTID:181237009 ! -property_value: IAO:0000589 "submandibular duct (SCTID)" xsd:string -is_a: UBERON:0002334 ! submandibular duct - -[Term] -id: SCTID:244657003 ! -property_value: IAO:0000589 "macula densa (SCTID)" xsd:string -is_a: UBERON:0002335 ! macula densa - -[Term] -id: SCTID:362354006 ! -property_value: IAO:0000589 "corpus callosum (SCTID)" xsd:string -is_a: UBERON:0002336 ! corpus callosum - -[Term] -id: SCTID:254115004 ! -property_value: IAO:0000589 "endometrial stroma (SCTID)" xsd:string -is_a: UBERON:0002337 ! endometrial stroma - -[Term] -id: SCTID:361462002 ! -property_value: IAO:0000589 "neural crest (SCTID)" xsd:string -is_a: UBERON:0002342 ! neural crest - -[Term] -id: SCTID:181301002 ! -property_value: IAO:0000589 "descending thoracic aorta (SCTID)" xsd:string -is_a: UBERON:0002345 ! descending thoracic aorta - -[Term] -id: SCTID:181821009 ! -property_value: IAO:0000589 "thoracic vertebra (SCTID)" xsd:string -is_a: UBERON:0002347 ! thoracic vertebra - -[Term] -id: SCTID:362012001 ! -property_value: IAO:0000589 "myocardium (SCTID)" xsd:string -is_a: UBERON:0002349 ! myocardium - -[Term] -id: SCTID:281489000 ! -property_value: IAO:0000589 "conducting system of heart (SCTID)" xsd:string -is_a: UBERON:0002350 ! conducting system of heart - -[Term] -id: SCTID:277687007 ! -property_value: IAO:0000589 "sinoatrial node (SCTID)" xsd:string -is_a: UBERON:0002351 ! sinoatrial node - -[Term] -id: SCTID:277688002 ! -property_value: IAO:0000589 "atrioventricular node (SCTID)" xsd:string -is_a: UBERON:0002352 ! atrioventricular node - -[Term] -id: SCTID:362022007 ! -property_value: IAO:0000589 "bundle of His (SCTID)" xsd:string -is_a: UBERON:0002353 ! bundle of His - -[Term] -id: SCTID:229765004 ! -property_value: IAO:0000589 "pelvic region of trunk (SCTID)" xsd:string -is_a: UBERON:0002355 ! pelvic region of trunk - -[Term] -id: SCTID:243990009 ! -property_value: IAO:0000589 "perineum (SCTID)" xsd:string -is_a: UBERON:0002356 ! perineum - -[Term] -id: SCTID:243954002 ! -property_value: IAO:0000589 "serous pericardium (SCTID)" xsd:string -is_a: UBERON:0002357 ! serous pericardium - -[Term] -id: SCTID:243953008 ! -property_value: IAO:0000589 "fibrous pericardium (SCTID)" xsd:string -is_a: UBERON:0002359 ! fibrous pericardium - -[Term] -id: SCTID:362305004 ! -property_value: IAO:0000589 "pia mater (SCTID)" xsd:string -is_a: UBERON:0002361 ! pia mater - -[Term] -id: SCTID:362304000 ! -property_value: IAO:0000589 "arachnoid mater (SCTID)" xsd:string -is_a: UBERON:0002362 ! arachnoid mater - -[Term] -id: SCTID:362301008 ! -property_value: IAO:0000589 "dura mater (SCTID)" xsd:string -is_a: UBERON:0002363 ! dura mater - -[Term] -id: SCTID:181180005 ! -property_value: IAO:0000589 "tympanic membrane (SCTID)" xsd:string -is_a: UBERON:0002364 ! tympanic membrane - -[Term] -id: SCTID:115976003 ! -property_value: IAO:0000589 "exocrine gland (SCTID)" xsd:string -is_a: UBERON:0002365 ! exocrine gland - -[Term] -id: SCTID:278918009 ! -property_value: IAO:0000589 "bulbo-urethral gland (SCTID)" xsd:string -is_a: UBERON:0002366 ! bulbo-urethral gland - -[Term] -id: SCTID:181422007 ! -property_value: IAO:0000589 "prostate gland (SCTID)" xsd:string -is_a: UBERON:0002367 ! prostate gland - -[Term] -id: SCTID:40818001 ! -property_value: IAO:0000589 "endocrine gland (SCTID)" xsd:string -is_a: UBERON:0002368 ! endocrine gland - -[Term] -id: SCTID:181127006 ! -property_value: IAO:0000589 "adrenal gland (SCTID)" xsd:string -is_a: UBERON:0002369 ! adrenal gland - -[Term] -id: SCTID:118507000 ! -property_value: IAO:0000589 "thymus (SCTID)" xsd:string -is_a: UBERON:0002370 ! thymus - -[Term] -id: SCTID:421320006 ! -property_value: IAO:0000589 "bone marrow (SCTID)" xsd:string -is_a: UBERON:0002371 ! bone marrow - -[Term] -id: SCTID:265787001 ! -property_value: IAO:0000589 "palatine tonsil (SCTID)" xsd:string -is_a: UBERON:0002373 ! palatine tonsil - -[Term] -id: SCTID:181977005 ! -property_value: IAO:0000589 "metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0002374 ! metacarpal bone - -[Term] -id: SCTID:425761003 ! -property_value: IAO:0000589 "metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0002374 ! metacarpal bone - -[Term] -id: SCTID:263484006 ! -property_value: IAO:0000589 "cricoid cartilage (SCTID)" xsd:string -is_a: UBERON:0002375 ! cricoid cartilage - -[Term] -id: SCTID:244718003 ! -property_value: IAO:0000589 "cranial muscle (SCTID)" xsd:string -is_a: UBERON:0002376 ! cranial muscle - -[Term] -id: SCTID:361352008 ! -property_value: IAO:0000589 "muscle of abdomen (SCTID)" xsd:string -is_a: UBERON:0002378 ! muscle of abdomen - -[Term] -id: SCTID:181740005 ! -property_value: IAO:0000589 "trapezius muscle (SCTID)" xsd:string -is_a: UBERON:0002380 ! trapezius muscle - -[Term] -id: SCTID:181624003 ! -property_value: IAO:0000589 "pectoralis major (SCTID)" xsd:string -is_a: UBERON:0002381 ! pectoralis major - -[Term] -id: SCTID:256672008 ! -property_value: IAO:0000589 "rectus abdominis muscle (SCTID)" xsd:string -is_a: UBERON:0002382 ! rectus abdominis muscle - -[Term] -id: SCTID:181626001 ! -property_value: IAO:0000589 "supraspinatus muscle (SCTID)" xsd:string -is_a: UBERON:0002383 ! supraspinatus muscle - -[Term] -id: SCTID:361919005 ! -property_value: IAO:0000589 "connective tissue (SCTID)" xsd:string -is_a: UBERON:0002384 ! connective tissue - -[Term] -id: SCTID:91727004 ! -property_value: IAO:0000589 "muscle tissue (SCTID)" xsd:string -is_a: UBERON:0002385 ! muscle tissue - -[Term] -id: SCTID:362741001 ! -property_value: IAO:0000589 "forelimb zeugopod (SCTID)" xsd:string -is_a: UBERON:0002386 ! forelimb zeugopod - -[Term] -id: SCTID:302545001 ! -property_value: IAO:0000589 "pes (SCTID)" xsd:string -is_a: UBERON:0002387 ! pes - -[Term] -id: SCTID:283992002 ! -property_value: IAO:0000589 "manual digit (SCTID)" xsd:string -is_a: UBERON:0002389 ! manual digit - -[Term] -id: SCTID:362587009 ! -property_value: IAO:0000589 "hematopoietic system (SCTID)" xsd:string -is_a: UBERON:0002390 ! hematopoietic system - -[Term] -id: SCTID:280643009 ! -property_value: IAO:0000589 "nasolacrimal duct (SCTID)" xsd:string -is_a: UBERON:0002392 ! nasolacrimal duct - -[Term] -id: SCTID:276157007 ! -property_value: IAO:0000589 "bile duct (SCTID)" xsd:string -is_a: UBERON:0002394 ! bile duct - -[Term] -id: SCTID:182098005 ! -property_value: IAO:0000589 "talus (SCTID)" xsd:string -is_a: UBERON:0002395 ! talus - -[Term] -id: SCTID:272678009 ! -property_value: IAO:0000589 "vomer (SCTID)" xsd:string -is_a: UBERON:0002396 ! vomer - -[Term] -id: SCTID:181813003 ! -property_value: IAO:0000589 "maxilla (SCTID)" xsd:string -is_a: UBERON:0002397 ! maxilla - -[Term] -id: SCTID:302539009 ! -property_value: IAO:0000589 "manus (SCTID)" xsd:string -is_a: UBERON:0002398 ! manus - -[Term] -id: SCTID:362712005 ! -property_value: IAO:0000589 "lesser omentum (SCTID)" xsd:string -is_a: UBERON:0002399 ! lesser omentum - -[Term] -id: SCTID:361998003 ! -property_value: IAO:0000589 "parietal pleura (SCTID)" xsd:string -is_a: UBERON:0002400 ! parietal pleura - -[Term] -id: SCTID:361997008 ! -property_value: IAO:0000589 "visceral pleura (SCTID)" xsd:string -is_a: UBERON:0002401 ! visceral pleura - -[Term] -id: SCTID:361999006 ! -property_value: IAO:0000589 "pleural cavity (SCTID)" xsd:string -is_a: UBERON:0002402 ! pleural cavity - -[Term] -id: SCTID:244890001 ! -property_value: IAO:0000589 "internal intercostal muscle (SCTID)" xsd:string -is_a: UBERON:0002403 ! internal intercostal muscle - -[Term] -id: SCTID:244933000 ! -property_value: IAO:0000589 "transversus thoracis (SCTID)" xsd:string -is_a: UBERON:0002404 ! transversus thoracis - -[Term] -id: SCTID:362590003 ! -property_value: IAO:0000589 "immune system (SCTID)" xsd:string -is_a: UBERON:0002405 ! immune system - -[Term] -id: SCTID:361326002 ! -property_value: IAO:0000589 "pericardial sac (SCTID)" xsd:string -is_a: UBERON:0002406 ! pericardial sac - -[Term] -id: SCTID:181295003 ! -property_value: IAO:0000589 "pericardium (SCTID)" xsd:string -is_a: UBERON:0002407 ! pericardium - -[Term] -id: SCTID:243956000 ! -property_value: IAO:0000589 "parietal serous pericardium (SCTID)" xsd:string -is_a: UBERON:0002408 ! parietal serous pericardium - -[Term] -id: SCTID:362481007 ! -property_value: IAO:0000589 "autonomic nervous system (SCTID)" xsd:string -is_a: UBERON:0002410 ! autonomic nervous system - -[Term] -id: SCTID:181442003 ! -property_value: IAO:0000589 "clitoris (SCTID)" xsd:string -is_a: UBERON:0002411 ! clitoris - -[Term] -id: SCTID:181817002 ! -property_value: IAO:0000589 "vertebra (SCTID)" xsd:string -is_a: UBERON:0002412 ! vertebra - -[Term] -id: SCTID:181820005 ! -property_value: IAO:0000589 "cervical vertebra (SCTID)" xsd:string -is_a: UBERON:0002413 ! cervical vertebra - -[Term] -id: SCTID:181822002 ! -property_value: IAO:0000589 "lumbar vertebra (SCTID)" xsd:string -is_a: UBERON:0002414 ! lumbar vertebra - -[Term] -id: SCTID:361692004 ! -property_value: IAO:0000589 "integumental system (SCTID)" xsd:string -is_a: UBERON:0002416 ! integumental system - -[Term] -id: SCTID:362875007 ! -property_value: IAO:0000589 "abdominal segment of trunk (SCTID)" xsd:string -is_a: UBERON:0002417 ! abdominal segment of trunk - -[Term] -id: SCTID:309312004 ! -property_value: IAO:0000589 "cartilage tissue (SCTID)" xsd:string -is_a: UBERON:0002418 ! cartilage tissue - -[Term] -id: SCTID:110485007 ! -property_value: IAO:0000589 "skin gland (SCTID)" xsd:string -is_a: UBERON:0002419 ! skin gland - -[Term] -id: SCTID:244434001 ! -property_value: IAO:0000589 "basal ganglion (SCTID)" xsd:string -is_a: UBERON:0002420 ! basal ganglion - -[Term] -id: SCTID:422867004 ! -property_value: IAO:0000589 "hippocampal formation (SCTID)" xsd:string -is_a: UBERON:0002421 ! hippocampal formation - -[Term] -id: SCTID:180932000 ! -property_value: IAO:0000589 "fourth ventricle (SCTID)" xsd:string -is_a: UBERON:0002422 ! fourth ventricle - -[Term] -id: SCTID:243955001 ! -property_value: IAO:0000589 "visceral serous pericardium (SCTID)" xsd:string -is_a: UBERON:0002425 ! visceral serous pericardium - -[Term] -id: SCTID:304149004 ! -property_value: IAO:0000589 "limb bone (SCTID)" xsd:string -is_a: UBERON:0002428 ! limb bone - -[Term] -id: SCTID:181757009 ! -property_value: IAO:0000589 "cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0002429 ! cervical lymph node - -[Term] -id: SCTID:245534008 ! -property_value: IAO:0000589 "pars intermedia of adenohypophysis (SCTID)" xsd:string -is_a: UBERON:0002432 ! pars intermedia of adenohypophysis - -[Term] -id: SCTID:245529009 ! -property_value: IAO:0000589 "pituitary stalk (SCTID)" xsd:string -is_a: UBERON:0002434 ! pituitary stalk - -[Term] -id: SCTID:425300001 ! -property_value: IAO:0000589 "pituitary stalk (SCTID)" xsd:string -is_a: UBERON:0002434 ! pituitary stalk - -[Term] -id: SCTID:361691006 ! -property_value: IAO:0000589 "cerebral hemisphere white matter (SCTID)" xsd:string -is_a: UBERON:0002437 ! cerebral hemisphere white matter - -[Term] -id: SCTID:369244006 ! -property_value: IAO:0000589 "ventral tegmental nucleus (SCTID)" xsd:string -is_a: UBERON:0002438 ! ventral tegmental nucleus - -[Term] -id: SCTID:267716001 ! -property_value: IAO:0000589 "myenteric nerve plexus (SCTID)" xsd:string -is_a: UBERON:0002439 ! myenteric nerve plexus - -[Term] -id: SCTID:279280008 ! -property_value: IAO:0000589 "inferior cervical ganglion (SCTID)" xsd:string -is_a: UBERON:0002440 ! inferior cervical ganglion - -[Term] -id: SCTID:181101006 ! -property_value: IAO:0000589 "cervicothoracic ganglion (SCTID)" xsd:string -is_a: UBERON:0002441 ! cervicothoracic ganglion - -[Term] -id: SCTID:181965000 ! -property_value: IAO:0000589 "ulnare (SCTID)" xsd:string -is_a: UBERON:0002445 ! ulnare - -[Term] -id: SCTID:182083008 ! -property_value: IAO:0000589 "patella (SCTID)" xsd:string -is_a: UBERON:0002446 ! patella - -[Term] -id: SCTID:13604002 ! -property_value: IAO:0000589 "palatine gland (SCTID)" xsd:string -is_a: UBERON:0002447 ! palatine gland - -[Term] -id: SCTID:80673002 ! -property_value: IAO:0000589 "fungiform papilla (SCTID)" xsd:string -is_a: UBERON:0002448 ! fungiform papilla - -[Term] -id: SCTID:362842004 ! -property_value: IAO:0000589 "decidua (SCTID)" xsd:string -is_a: UBERON:0002450 ! decidua - -[Term] -id: SCTID:361377009 ! -property_value: IAO:0000589 "endometrial gland (SCTID)" xsd:string -is_a: UBERON:0002451 ! endometrial gland - -[Term] -id: SCTID:181206009 ! -property_value: IAO:0000589 "ethmoid sinus (SCTID)" xsd:string -is_a: UBERON:0002453 ! ethmoid sinus - -[Term] -id: SCTID:244320002 ! -property_value: IAO:0000589 "dorsal metacarpal artery (SCTID)" xsd:string -is_a: UBERON:0002454 ! dorsal metacarpal artery - -[Term] -id: SCTID:244239009 ! -property_value: IAO:0000589 "internal thoracic artery (SCTID)" xsd:string -is_a: UBERON:0002456 ! internal thoracic artery - -[Term] -id: SCTID:360401001 ! -property_value: IAO:0000589 "intersomitic artery (SCTID)" xsd:string -is_a: UBERON:0002457 ! intersomitic artery - -[Term] -id: SCTID:244228006 ! -property_value: IAO:0000589 "spinal artery (SCTID)" xsd:string -is_a: UBERON:0002458 ! spinal artery - -[Term] -id: SCTID:422559003 ! -property_value: IAO:0000589 "inferior palpebral vein (SCTID)" xsd:string -is_a: UBERON:0002459 ! inferior palpebral vein - -[Term] -id: SCTID:12683000 ! -property_value: IAO:0000589 "vesical vein (SCTID)" xsd:string -is_a: UBERON:0002460 ! vesical vein - -[Term] -id: SCTID:244852007 ! -property_value: IAO:0000589 "erector spinae muscle group (SCTID)" xsd:string -is_a: UBERON:0002462 ! erector spinae muscle group - -[Term] -id: SCTID:281248001 ! -property_value: IAO:0000589 "nerve trunk (SCTID)" xsd:string -is_a: UBERON:0002464 ! nerve trunk - -[Term] -id: SCTID:362589007 ! -property_value: IAO:0000589 "lymphoid system (SCTID)" xsd:string -is_a: UBERON:0002465 ! lymphoid system - -[Term] -id: SCTID:58743008 ! -property_value: IAO:0000589 "filiform papilla (SCTID)" xsd:string -is_a: UBERON:0002467 ! filiform papilla - -[Term] -id: SCTID:362098003 ! -property_value: IAO:0000589 "foliate papilla (SCTID)" xsd:string -is_a: UBERON:0002468 ! foliate papilla - -[Term] -id: SCTID:362127004 ! -property_value: IAO:0000589 "esophagus mucosa (SCTID)" xsd:string -is_a: UBERON:0002469 ! esophagus mucosa - -[Term] -id: SCTID:95936004 ! -property_value: IAO:0000589 "autopod region (SCTID)" xsd:string -is_a: UBERON:0002470 ! autopod region - -[Term] -id: SCTID:360567002 ! -property_value: IAO:0000589 "intercerebral commissure (SCTID)" xsd:string -is_a: UBERON:0002473 ! intercerebral commissure - -[Term] -id: SCTID:181079005 ! -property_value: IAO:0000589 "saphenous nerve (SCTID)" xsd:string -is_a: UBERON:0002475 ! saphenous nerve - -[Term] -id: SCTID:361560008 ! -property_value: IAO:0000589 "lateral globus pallidus (SCTID)" xsd:string -is_a: UBERON:0002476 ! lateral globus pallidus - -[Term] -id: SCTID:361562000 ! -property_value: IAO:0000589 "medial globus pallidus (SCTID)" xsd:string -is_a: UBERON:0002477 ! medial globus pallidus - -[Term] -id: SCTID:361737003 ! -property_value: IAO:0000589 "orbitosphenoid (SCTID)" xsd:string -is_a: UBERON:0002478 ! orbitosphenoid - -[Term] -id: SCTID:362276000 ! -property_value: IAO:0000589 "prostate duct (SCTID)" xsd:string -is_a: UBERON:0002485 ! prostate duct - -[Term] -id: SCTID:264482000 ! -property_value: IAO:0000589 "glottis (SCTID)" xsd:string -is_a: UBERON:0002486 ! glottis - -[Term] -id: SCTID:362105008 ! -property_value: IAO:0000589 "tooth cavity (SCTID)" xsd:string -is_a: UBERON:0002487 ! tooth cavity - -[Term] -id: SCTID:279607004 ! -property_value: IAO:0000589 "helix of outer ear (SCTID)" xsd:string -is_a: UBERON:0002488 ! helix of outer ear - -[Term] -id: SCTID:244510008 ! -property_value: IAO:0000589 "coronal suture (SCTID)" xsd:string -is_a: UBERON:0002489 ! coronal suture - -[Term] -id: SCTID:136854008 ! -property_value: IAO:0000589 "frontal suture (SCTID)" xsd:string -is_a: UBERON:0002490 ! frontal suture - -[Term] -id: SCTID:361830007 ! -property_value: IAO:0000589 "lambdoid suture (SCTID)" xsd:string -is_a: UBERON:0002491 ! lambdoid suture - -[Term] -id: SCTID:244511007 ! -property_value: IAO:0000589 "sagittal suture (SCTID)" xsd:string -is_a: UBERON:0002492 ! sagittal suture - -[Term] -id: SCTID:244300003 ! -property_value: IAO:0000589 "uterine artery (SCTID)" xsd:string -is_a: UBERON:0002493 ! uterine artery - -[Term] -id: SCTID:279329009 ! -property_value: IAO:0000589 "papillary muscle of heart (SCTID)" xsd:string -is_a: UBERON:0002494 ! papillary muscle of heart - -[Term] -id: SCTID:332709000 ! -property_value: IAO:0000589 "long bone (SCTID)" xsd:string -is_a: UBERON:0002495 ! long bone - -[Term] -id: SCTID:279685009 ! -property_value: IAO:0000589 "stapes base (SCTID)" xsd:string -is_a: UBERON:0002496 ! stapes base - -[Term] -id: SCTID:181911000 ! -property_value: IAO:0000589 "acromion (SCTID)" xsd:string -is_a: UBERON:0002497 ! acromion - -[Term] -id: SCTID:272682006 ! -property_value: IAO:0000589 "zygomatic arch (SCTID)" xsd:string -is_a: UBERON:0002500 ! zygomatic arch - -[Term] -id: SCTID:362561009 ! -property_value: IAO:0000589 "oval window (SCTID)" xsd:string -is_a: UBERON:0002501 ! oval window - -[Term] -id: SCTID:279785002 ! -property_value: IAO:0000589 "round window of inner ear (SCTID)" xsd:string -is_a: UBERON:0002502 ! round window of inner ear - -[Term] -id: SCTID:182050001 ! -property_value: IAO:0000589 "greater trochanter (SCTID)" xsd:string -is_a: UBERON:0002503 ! greater trochanter - -[Term] -id: SCTID:182051002 ! -property_value: IAO:0000589 "lesser trochanter (SCTID)" xsd:string -is_a: UBERON:0002504 ! lesser trochanter - -[Term] -id: SCTID:149380004 ! -property_value: IAO:0000589 "spiral modiolar artery (SCTID)" xsd:string -is_a: UBERON:0002505 ! spiral modiolar artery - -[Term] -id: SCTID:245342005 ! -property_value: IAO:0000589 "abdominal lymph node (SCTID)" xsd:string -is_a: UBERON:0002507 ! abdominal lymph node - -[Term] -id: SCTID:245343000 ! -property_value: IAO:0000589 "celiac lymph node (SCTID)" xsd:string -is_a: UBERON:0002508 ! celiac lymph node - -[Term] -id: SCTID:244680006 ! -property_value: IAO:0000589 "anterior fontanel (SCTID)" xsd:string -is_a: UBERON:0002510 ! anterior fontanel - -[Term] -id: SCTID:118755002 ! -property_value: IAO:0000589 "trabecula carnea (SCTID)" xsd:string -is_a: UBERON:0002511 ! trabecula carnea - -[Term] -id: SCTID:257943001 ! -property_value: IAO:0000589 "corpus luteum (SCTID)" xsd:string -is_a: UBERON:0002512 ! corpus luteum - -[Term] -id: SCTID:33840008 ! -property_value: IAO:0000589 "periosteum (SCTID)" xsd:string -is_a: UBERON:0002515 ! periosteum - -[Term] -id: SCTID:84349008 ! -property_value: IAO:0000589 "epiphyseal plate (SCTID)" xsd:string -is_a: UBERON:0002516 ! epiphyseal plate - -[Term] -id: SCTID:181890004 ! -property_value: IAO:0000589 "basicranium (SCTID)" xsd:string -is_a: UBERON:0002517 ! basicranium - -[Term] -id: SCTID:362571006 ! -property_value: IAO:0000589 "otolithic part of statoconial membrane (SCTID)" xsd:string -is_a: UBERON:0002519 ! otolithic part of statoconial membrane - -[Term] -id: SCTID:245319003 ! -property_value: IAO:0000589 "submandibular lymph node (SCTID)" xsd:string -is_a: UBERON:0002520 ! submandibular lymph node - -[Term] -id: SCTID:27197004 ! -property_value: IAO:0000589 "elastic tissue (SCTID)" xsd:string -is_a: UBERON:0002521 ! elastic tissue - -[Term] -id: SCTID:61695000 ! -property_value: IAO:0000589 "tunica media (SCTID)" xsd:string -is_a: UBERON:0002522 ! tunica media - -[Term] -id: SCTID:8361002 ! -property_value: IAO:0000589 "tunica intima (SCTID)" xsd:string -is_a: UBERON:0002523 ! tunica intima - -[Term] -id: SCTID:87483006 ! -property_value: IAO:0000589 "tunica intima (SCTID)" xsd:string -is_a: UBERON:0002523 ! tunica intima - -[Term] -id: SCTID:181760002 ! -property_value: IAO:0000589 "mediastinal lymph node (SCTID)" xsd:string -is_a: UBERON:0002524 ! mediastinal lymph node - -[Term] -id: SCTID:281412000 ! -property_value: IAO:0000589 "lumbar lymph node (SCTID)" xsd:string -is_a: UBERON:0002526 ! lumbar lymph node - -[Term] -id: SCTID:276170003 ! -property_value: IAO:0000589 "pancreatic lymph node (SCTID)" xsd:string -is_a: UBERON:0002527 ! pancreatic lymph node - -[Term] -id: SCTID:279797001 ! -property_value: IAO:0000589 "sacral lymph node (SCTID)" xsd:string -is_a: UBERON:0002528 ! sacral lymph node - -[Term] -id: SCTID:134358001 ! -property_value: IAO:0000589 "gland (SCTID)" xsd:string -is_a: UBERON:0002530 ! gland - -[Term] -id: SCTID:308766004 ! -property_value: IAO:0000589 "pharyngeal arch (SCTID)" xsd:string -is_a: UBERON:0002539 ! pharyngeal arch - -[Term] -id: SCTID:361367007 ! -property_value: IAO:0000589 "digit (SCTID)" xsd:string -is_a: UBERON:0002544 ! digit - -[Term] -id: SCTID:369251002 ! -property_value: IAO:0000589 "interstitial nucleus of Cajal (SCTID)" xsd:string -is_a: UBERON:0002551 ! interstitial nucleus of Cajal - -[Term] -id: SCTID:362606005 ! -property_value: IAO:0000589 "organ cavity (SCTID)" xsd:string -is_a: UBERON:0002558 ! organ cavity - -[Term] -id: SCTID:369059009 ! -property_value: IAO:0000589 "medullary reticular formation (SCTID)" xsd:string -is_a: UBERON:0002559 ! medullary reticular formation - -[Term] -id: SCTID:369222001 ! -property_value: IAO:0000589 "temporal operculum (SCTID)" xsd:string -is_a: UBERON:0002560 ! temporal operculum - -[Term] -id: SCTID:279342009 ! -property_value: IAO:0000589 "superior frontal sulcus (SCTID)" xsd:string -is_a: UBERON:0002562 ! superior frontal sulcus - -[Term] -id: SCTID:279195001 ! -property_value: IAO:0000589 "lateral orbital gyrus (SCTID)" xsd:string -is_a: UBERON:0002564 ! lateral orbital gyrus - -[Term] -id: SCTID:361541001 ! -property_value: IAO:0000589 "basal part of pons (SCTID)" xsd:string -is_a: UBERON:0002567 ! basal part of pons - -[Term] -id: SCTID:42387003 ! -property_value: IAO:0000589 "transverse temporal sulcus (SCTID)" xsd:string -is_a: UBERON:0002569 ! transverse temporal sulcus - -[Term] -id: SCTID:279194002 ! -property_value: IAO:0000589 "medial orbital gyrus (SCTID)" xsd:string -is_a: UBERON:0002570 ! medial orbital gyrus - -[Term] -id: SCTID:362403007 ! -property_value: IAO:0000589 "pontine reticular formation (SCTID)" xsd:string -is_a: UBERON:0002573 ! pontine reticular formation - -[Term] -id: SCTID:279197009 ! -property_value: IAO:0000589 "posterior orbital gyrus (SCTID)" xsd:string -is_a: UBERON:0002575 ! posterior orbital gyrus - -[Term] -id: SCTID:314155002 ! -property_value: IAO:0000589 "temporal pole (SCTID)" xsd:string -is_a: UBERON:0002576 ! temporal pole - -[Term] -id: SCTID:279167001 ! -property_value: IAO:0000589 "postcentral gyrus (SCTID)" xsd:string -is_a: UBERON:0002581 ! postcentral gyrus - -[Term] -id: SCTID:369258008 ! -property_value: IAO:0000589 "commissure of superior colliculus (SCTID)" xsd:string -is_a: UBERON:0002583 ! commissure of superior colliculus - -[Term] -id: SCTID:369243000 ! -property_value: IAO:0000589 "central tegmental tract of midbrain (SCTID)" xsd:string -is_a: UBERON:0002585 ! central tegmental tract of midbrain - -[Term] -id: SCTID:279355005 ! -property_value: IAO:0000589 "calcarine sulcus (SCTID)" xsd:string -is_a: UBERON:0002586 ! calcarine sulcus - -[Term] -id: SCTID:369252009 ! -property_value: IAO:0000589 "decussation of superior cerebellar peduncle (SCTID)" xsd:string -is_a: UBERON:0002588 ! decussation of superior cerebellar peduncle - -[Term] -id: SCTID:369091005 ! -property_value: IAO:0000589 "lateral corticospinal tract (SCTID)" xsd:string -is_a: UBERON:0002589 ! lateral corticospinal tract - -[Term] -id: SCTID:369104008 ! -property_value: IAO:0000589 "prepyriform area (SCTID)" xsd:string -is_a: UBERON:0002590 ! prepyriform area - -[Term] -id: SCTID:110687007 ! -property_value: IAO:0000589 "juxtarestiform body (SCTID)" xsd:string -is_a: UBERON:0002592 ! juxtarestiform body - -[Term] -id: SCTID:314143008 ! -property_value: IAO:0000589 "orbital sulcus (SCTID)" xsd:string -is_a: UBERON:0002595 ! orbital sulcus - -[Term] -id: SCTID:279147005 ! -property_value: IAO:0000589 "ventral posterior nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002596 ! ventral posterior nucleus of thalamus - -[Term] -id: SCTID:369031008 ! -property_value: IAO:0000589 "principal sensory nucleus of trigeminal nerve (SCTID)" xsd:string -is_a: UBERON:0002597 ! principal sensory nucleus of trigeminal nerve - -[Term] -id: SCTID:369228002 ! -property_value: IAO:0000589 "paracentral sulcus (SCTID)" xsd:string -is_a: UBERON:0002598 ! paracentral sulcus - -[Term] -id: SCTID:369103002 ! -property_value: IAO:0000589 "medial olfactory gyrus (SCTID)" xsd:string -is_a: UBERON:0002599 ! medial olfactory gyrus - -[Term] -id: SCTID:279215006 ! -property_value: IAO:0000589 "limbic lobe (SCTID)" xsd:string -is_a: UBERON:0002600 ! limbic lobe - -[Term] -id: SCTID:279210001 ! -property_value: IAO:0000589 "fasciolar gyrus (SCTID)" xsd:string -is_a: UBERON:0002601 ! fasciolar gyrus - -[Term] -id: SCTID:279222003 ! -property_value: IAO:0000589 "emboliform nucleus (SCTID)" xsd:string -is_a: UBERON:0002602 ! emboliform nucleus - -[Term] -id: SCTID:67146008 ! -property_value: IAO:0000589 "neuropil (SCTID)" xsd:string -is_a: UBERON:0002606 ! neuropil - -[Term] -id: SCTID:369090006 ! -property_value: IAO:0000589 "spinothalamic tract of midbrain (SCTID)" xsd:string -is_a: UBERON:0002609 ! spinothalamic tract of midbrain - -[Term] -id: SCTID:279223008 ! -property_value: IAO:0000589 "cerebellum globose nucleus (SCTID)" xsd:string -is_a: UBERON:0002613 ! cerebellum globose nucleus - -[Term] -id: SCTID:369249001 ! -property_value: IAO:0000589 "ventral tegmental decussation (SCTID)" xsd:string -is_a: UBERON:0002615 ! ventral tegmental decussation - -[Term] -id: SCTID:384763002 ! -property_value: IAO:0000589 "regional part of brain (SCTID)" xsd:string -is_a: UBERON:0002616 ! regional part of brain - -[Term] -id: SCTID:362381006 ! -property_value: IAO:0000589 "tuber cinereum (SCTID)" xsd:string -is_a: UBERON:0002620 ! tuber cinereum - -[Term] -id: SCTID:369127000 ! -property_value: IAO:0000589 "preoptic periventricular nucleus (SCTID)" xsd:string -is_a: UBERON:0002622 ! preoptic periventricular nucleus - -[Term] -id: SCTID:362391000 ! -property_value: IAO:0000589 "cerebral peduncle (SCTID)" xsd:string -is_a: UBERON:0002623 ! cerebral peduncle - -[Term] -id: SCTID:279298007 ! -property_value: IAO:0000589 "head of caudate nucleus (SCTID)" xsd:string -is_a: UBERON:0002626 ! head of caudate nucleus - -[Term] -id: SCTID:279299004 ! -property_value: IAO:0000589 "tail of caudate nucleus (SCTID)" xsd:string -is_a: UBERON:0002628 ! tail of caudate nucleus - -[Term] -id: SCTID:314175006 ! -property_value: IAO:0000589 "body of caudate nucleus (SCTID)" xsd:string -is_a: UBERON:0002630 ! body of caudate nucleus - -[Term] -id: SCTID:38390003 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (SCTID)" xsd:string -is_a: UBERON:0002633 ! motor nucleus of trigeminal nerve - -[Term] -id: SCTID:369133009 ! -property_value: IAO:0000589 "anterior nucleus of hypothalamus (SCTID)" xsd:string -is_a: UBERON:0002634 ! anterior nucleus of hypothalamus - -[Term] -id: SCTID:279131008 ! -property_value: IAO:0000589 "ventral anterior nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002637 ! ventral anterior nucleus of thalamus - -[Term] -id: SCTID:369234009 ! -property_value: IAO:0000589 "midbrain reticular formation (SCTID)" xsd:string -is_a: UBERON:0002639 ! midbrain reticular formation - -[Term] -id: SCTID:369287009 ! -property_value: IAO:0000589 "dorsolateral fasciculus of medulla (SCTID)" xsd:string -is_a: UBERON:0002649 ! dorsolateral fasciculus of medulla - -[Term] -id: SCTID:279247001 ! -property_value: IAO:0000589 "anterior horn of lateral ventricle (SCTID)" xsd:string -is_a: UBERON:0002651 ! anterior horn of lateral ventricle - -[Term] -id: SCTID:279246005 ! -property_value: IAO:0000589 "body of lateral ventricle (SCTID)" xsd:string -is_a: UBERON:0002655 ! body of lateral ventricle - -[Term] -id: SCTID:279214005 ! -property_value: IAO:0000589 "periamygdaloid area (SCTID)" xsd:string -is_a: UBERON:0002656 ! periamygdaloid area - -[Term] -id: SCTID:361568001 ! -property_value: IAO:0000589 "medial lemniscus of midbrain (SCTID)" xsd:string -is_a: UBERON:0002658 ! medial lemniscus of midbrain - -[Term] -id: SCTID:369269006 ! -property_value: IAO:0000589 "superior medullary velum (SCTID)" xsd:string -is_a: UBERON:0002659 ! superior medullary velum - -[Term] -id: SCTID:279166005 ! -property_value: IAO:0000589 "superior frontal gyrus (SCTID)" xsd:string -is_a: UBERON:0002661 ! superior frontal gyrus - -[Term] -id: SCTID:369231001 ! -property_value: IAO:0000589 "supracallosal gyrus (SCTID)" xsd:string -is_a: UBERON:0002665 ! supracallosal gyrus - -[Term] -id: SCTID:369263007 ! -property_value: IAO:0000589 "mesencephalic tract of trigeminal nerve (SCTID)" xsd:string -is_a: UBERON:0002666 ! mesencephalic tract of trigeminal nerve - -[Term] -id: SCTID:279127002 ! -property_value: IAO:0000589 "anterodorsal nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002679 ! anterodorsal nucleus of thalamus - -[Term] -id: SCTID:279128007 ! -property_value: IAO:0000589 "anteromedial nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002681 ! anteromedial nucleus of thalamus - -[Term] -id: SCTID:280165008 ! -property_value: IAO:0000589 "abducens nucleus (SCTID)" xsd:string -is_a: UBERON:0002682 ! abducens nucleus - -[Term] -id: SCTID:279357002 ! -property_value: IAO:0000589 "rhinal sulcus (SCTID)" xsd:string -is_a: UBERON:0002683 ! rhinal sulcus - -[Term] -id: SCTID:279130009 ! -property_value: IAO:0000589 "anteroventral nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002685 ! anteroventral nucleus of thalamus - -[Term] -id: SCTID:279186009 ! -property_value: IAO:0000589 "angular gyrus (SCTID)" xsd:string -is_a: UBERON:0002686 ! angular gyrus - -[Term] -id: SCTID:279185008 ! -property_value: IAO:0000589 "supramarginal gyrus (SCTID)" xsd:string -is_a: UBERON:0002688 ! supramarginal gyrus - -[Term] -id: SCTID:362420006 ! -property_value: IAO:0000589 "medullary raphe nuclear complex (SCTID)" xsd:string -is_a: UBERON:0002692 ! medullary raphe nuclear complex - -[Term] -id: SCTID:369220009 ! -property_value: IAO:0000589 "occipitotemporal sulcus (SCTID)" xsd:string -is_a: UBERON:0002693 ! occipitotemporal sulcus - -[Term] -id: SCTID:279354009 ! -property_value: IAO:0000589 "parieto-occipital sulcus (SCTID)" xsd:string -is_a: UBERON:0002695 ! parieto-occipital sulcus - -[Term] -id: SCTID:369229005 ! -property_value: IAO:0000589 "preoccipital notch (SCTID)" xsd:string -is_a: UBERON:0002698 ! preoccipital notch - -[Term] -id: SCTID:362332009 ! -property_value: IAO:0000589 "middle frontal gyrus (SCTID)" xsd:string -is_a: UBERON:0002702 ! middle frontal gyrus - -[Term] -id: SCTID:361550004 ! -property_value: IAO:0000589 "metathalamus (SCTID)" xsd:string -is_a: UBERON:0002704 ! metathalamus - -[Term] -id: SCTID:279163002 ! -property_value: IAO:0000589 "midline nuclear group (SCTID)" xsd:string -is_a: UBERON:0002705 ! midline nuclear group - -[Term] -id: SCTID:362385002 ! -property_value: IAO:0000589 "posterior nucleus of hypothalamus (SCTID)" xsd:string -is_a: UBERON:0002706 ! posterior nucleus of hypothalamus - -[Term] -id: SCTID:362325000 ! -property_value: IAO:0000589 "corticospinal tract (SCTID)" xsd:string -is_a: UBERON:0002707 ! corticospinal tract - -[Term] -id: SCTID:424395006 ! -property_value: IAO:0000589 "posterior nuclear complex of thalamus (SCTID)" xsd:string -is_a: UBERON:0002709 ! posterior nuclear complex of thalamus - -[Term] -id: SCTID:279350000 ! -property_value: IAO:0000589 "cingulate sulcus (SCTID)" xsd:string -is_a: UBERON:0002710 ! cingulate sulcus - -[Term] -id: SCTID:369264001 ! -property_value: IAO:0000589 "rubrospinal tract (SCTID)" xsd:string -is_a: UBERON:0002714 ! rubrospinal tract - -[Term] -id: SCTID:279356006 ! -property_value: IAO:0000589 "collateral sulcus (SCTID)" xsd:string -is_a: UBERON:0002716 ! collateral sulcus - -[Term] -id: SCTID:362607001 ! -property_value: IAO:0000589 "spino-olivary tract (SCTID)" xsd:string -is_a: UBERON:0002719 ! spino-olivary tract - -[Term] -id: SCTID:369146004 ! -property_value: IAO:0000589 "mammillary peduncle (SCTID)" xsd:string -is_a: UBERON:0002720 ! mammillary peduncle - -[Term] -id: SCTID:369226003 ! -property_value: IAO:0000589 "lateral sulcus (SCTID)" xsd:string -is_a: UBERON:0002721 ! lateral sulcus - -[Term] -id: SCTID:280163001 ! -property_value: IAO:0000589 "trochlear nucleus (SCTID)" xsd:string -is_a: UBERON:0002722 ! trochlear nucleus - -[Term] -id: SCTID:369215009 ! -property_value: IAO:0000589 "limen of insula (SCTID)" xsd:string -is_a: UBERON:0002724 ! limen of insula - -[Term] -id: SCTID:180960003 ! -property_value: IAO:0000589 "cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0002726 ! cervical spinal cord - -[Term] -id: SCTID:369205003 ! -property_value: IAO:0000589 "medial medullary lamina of globus pallidus (SCTID)" xsd:string -is_a: UBERON:0002727 ! medial medullary lamina of globus pallidus - -[Term] -id: SCTID:369099007 ! -property_value: IAO:0000589 "entorhinal cortex (SCTID)" xsd:string -is_a: UBERON:0002728 ! entorhinal cortex - -[Term] -id: SCTID:361544009 ! -property_value: IAO:0000589 "longitudinal pontine fibers (SCTID)" xsd:string -is_a: UBERON:0002732 ! longitudinal pontine fibers - -[Term] -id: SCTID:279159009 ! -property_value: IAO:0000589 "intralaminar nuclear group (SCTID)" xsd:string -is_a: UBERON:0002733 ! intralaminar nuclear group - -[Term] -id: SCTID:279344005 ! -property_value: IAO:0000589 "superior temporal sulcus (SCTID)" xsd:string -is_a: UBERON:0002734 ! superior temporal sulcus - -[Term] -id: SCTID:79836003 ! -property_value: IAO:0000589 "transverse pontine fibers (SCTID)" xsd:string -is_a: UBERON:0002735 ! transverse pontine fibers - -[Term] -id: SCTID:279126006 ! -property_value: IAO:0000589 "lateral nuclear group of thalamus (SCTID)" xsd:string -is_a: UBERON:0002736 ! lateral nuclear group of thalamus - -[Term] -id: SCTID:279149008 ! -property_value: IAO:0000589 "medial dorsal nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002739 ! medial dorsal nucleus of thalamus - -[Term] -id: SCTID:12164006 ! -property_value: IAO:0000589 "lamina of septum pellucidum (SCTID)" xsd:string -is_a: UBERON:0002742 ! lamina of septum pellucidum - -[Term] -id: SCTID:369055003 ! -property_value: IAO:0000589 "hilum of dentate nucleus (SCTID)" xsd:string -is_a: UBERON:0002744 ! hilum of dentate nucleus - -[Term] -id: SCTID:279191005 ! -property_value: IAO:0000589 "inferior temporal gyrus (SCTID)" xsd:string -is_a: UBERON:0002751 ! inferior temporal gyrus - -[Term] -id: SCTID:369284002 ! -property_value: IAO:0000589 "posterior spinocerebellar tract (SCTID)" xsd:string -is_a: UBERON:0002753 ! posterior spinocerebellar tract - -[Term] -id: SCTID:369058001 ! -property_value: IAO:0000589 "pyramidal decussation (SCTID)" xsd:string -is_a: UBERON:0002755 ! pyramidal decussation - -[Term] -id: SCTID:369092003 ! -property_value: IAO:0000589 "ventral corticospinal tract (SCTID)" xsd:string -is_a: UBERON:0002760 ! ventral corticospinal tract - -[Term] -id: SCTID:279343004 ! -property_value: IAO:0000589 "inferior frontal sulcus (SCTID)" xsd:string -is_a: UBERON:0002761 ! inferior frontal sulcus - -[Term] -id: SCTID:369161003 ! -property_value: IAO:0000589 "internal medullary lamina of thalamus (SCTID)" xsd:string -is_a: UBERON:0002762 ! internal medullary lamina of thalamus - -[Term] -id: SCTID:369204004 ! -property_value: IAO:0000589 "lateral medullary lamina of globus pallidus (SCTID)" xsd:string -is_a: UBERON:0002765 ! lateral medullary lamina of globus pallidus - -[Term] -id: SCTID:110678003 ! -property_value: IAO:0000589 "fusiform gyrus (SCTID)" xsd:string -is_a: UBERON:0002766 ! fusiform gyrus - -[Term] -id: SCTID:369289007 ! -property_value: IAO:0000589 "vestibulospinal tract (SCTID)" xsd:string -is_a: UBERON:0002768 ! vestibulospinal tract - -[Term] -id: SCTID:362345008 ! -property_value: IAO:0000589 "superior temporal gyrus (SCTID)" xsd:string -is_a: UBERON:0002769 ! superior temporal gyrus - -[Term] -id: SCTID:279190006 ! -property_value: IAO:0000589 "middle temporal gyrus (SCTID)" xsd:string -is_a: UBERON:0002771 ! middle temporal gyrus - -[Term] -id: SCTID:279358007 ! -property_value: IAO:0000589 "olfactory sulcus (SCTID)" xsd:string -is_a: UBERON:0002772 ! olfactory sulcus - -[Term] -id: SCTID:279192003 ! -property_value: IAO:0000589 "anterior transverse temporal gyrus (SCTID)" xsd:string -is_a: UBERON:0002773 ! anterior transverse temporal gyrus - -[Term] -id: SCTID:279193008 ! -property_value: IAO:0000589 "posterior transverse temporal gyrus (SCTID)" xsd:string -is_a: UBERON:0002774 ! posterior transverse temporal gyrus - -[Term] -id: SCTID:369030009 ! -property_value: IAO:0000589 "olivocochlear bundle (SCTID)" xsd:string -is_a: UBERON:0002775 ! olivocochlear bundle - -[Term] -id: SCTID:279125005 ! -property_value: IAO:0000589 "ventral nuclear group (SCTID)" xsd:string -is_a: UBERON:0002776 ! ventral nuclear group - -[Term] -id: SCTID:360477003 ! -property_value: IAO:0000589 "lateral superior olivary nucleus (SCTID)" xsd:string -is_a: UBERON:0002779 ! lateral superior olivary nucleus - -[Term] -id: SCTID:279124009 ! -property_value: IAO:0000589 "anterior nuclear group (SCTID)" xsd:string -is_a: UBERON:0002788 ! anterior nuclear group - -[Term] -id: SCTID:180962006 ! -property_value: IAO:0000589 "lumbar spinal cord (SCTID)" xsd:string -is_a: UBERON:0002792 ! lumbar spinal cord - -[Term] -id: SCTID:314144002 ! -property_value: IAO:0000589 "frontal pole (SCTID)" xsd:string -is_a: UBERON:0002795 ! frontal pole - -[Term] -id: SCTID:280189001 ! -property_value: IAO:0000589 "motor root of trigeminal nerve (SCTID)" xsd:string -is_a: UBERON:0002796 ! motor root of trigeminal nerve - -[Term] -id: SCTID:369026006 ! -property_value: IAO:0000589 "spinothalamic tract of pons (SCTID)" xsd:string -is_a: UBERON:0002798 ! spinothalamic tract of pons - -[Term] -id: SCTID:369027002 ! -property_value: IAO:0000589 "spinal trigeminal tract of pons (SCTID)" xsd:string -is_a: UBERON:0002800 ! spinal trigeminal tract of pons - -[Term] -id: SCTID:314147009 ! -property_value: IAO:0000589 "left parietal lobe (SCTID)" xsd:string -is_a: UBERON:0002802 ! left parietal lobe - -[Term] -id: SCTID:314146000 ! -property_value: IAO:0000589 "right parietal lobe (SCTID)" xsd:string -is_a: UBERON:0002803 ! right parietal lobe - -[Term] -id: SCTID:314150007 ! -property_value: IAO:0000589 "left occipital lobe (SCTID)" xsd:string -is_a: UBERON:0002806 ! left occipital lobe - -[Term] -id: SCTID:314149007 ! -property_value: IAO:0000589 "right occipital lobe (SCTID)" xsd:string -is_a: UBERON:0002807 ! right occipital lobe - -[Term] -id: SCTID:314158000 ! -property_value: IAO:0000589 "left temporal lobe (SCTID)" xsd:string -is_a: UBERON:0002808 ! left temporal lobe - -[Term] -id: SCTID:314157005 ! -property_value: IAO:0000589 "right temporal lobe (SCTID)" xsd:string -is_a: UBERON:0002809 ! right temporal lobe - -[Term] -id: SCTID:314141005 ! -property_value: IAO:0000589 "right frontal lobe (SCTID)" xsd:string -is_a: UBERON:0002810 ! right frontal lobe - -[Term] -id: SCTID:314142003 ! -property_value: IAO:0000589 "left frontal lobe (SCTID)" xsd:string -is_a: UBERON:0002811 ! left frontal lobe - -[Term] -id: SCTID:362323007 ! -property_value: IAO:0000589 "left cerebral hemisphere (SCTID)" xsd:string -is_a: UBERON:0002812 ! left cerebral hemisphere - -[Term] -id: SCTID:362322002 ! -property_value: IAO:0000589 "right cerebral hemisphere (SCTID)" xsd:string -is_a: UBERON:0002813 ! right cerebral hemisphere - -[Term] -id: SCTID:314170001 ! -property_value: IAO:0000589 "posterior superior fissure of cerebellum (SCTID)" xsd:string -is_a: UBERON:0002814 ! posterior superior fissure of cerebellum - -[Term] -id: SCTID:314173004 ! -property_value: IAO:0000589 "horizontal fissure of cerebellum (SCTID)" xsd:string -is_a: UBERON:0002815 ! horizontal fissure of cerebellum - -[Term] -id: SCTID:314171002 ! -property_value: IAO:0000589 "prepyramidal fissure of cerebellum (SCTID)" xsd:string -is_a: UBERON:0002816 ! prepyramidal fissure of cerebellum - -[Term] -id: SCTID:314169002 ! -property_value: IAO:0000589 "secondary fissure of cerebellum (SCTID)" xsd:string -is_a: UBERON:0002817 ! secondary fissure of cerebellum - -[Term] -id: SCTID:314172009 ! -property_value: IAO:0000589 "posterolateral fissure of cerebellum (SCTID)" xsd:string -is_a: UBERON:0002818 ! posterolateral fissure of cerebellum - -[Term] -id: SCTID:279776002 ! -property_value: IAO:0000589 "apex of cochlea (SCTID)" xsd:string -is_a: UBERON:0002819 ! apex of cochlea - -[Term] -id: SCTID:279777006 ! -property_value: IAO:0000589 "apex of cochlea (SCTID)" xsd:string -is_a: UBERON:0002819 ! apex of cochlea - -[Term] -id: SCTID:368961005 ! -property_value: IAO:0000589 "zona arcuata of basilar membrane of cochlea (SCTID)" xsd:string -is_a: UBERON:0002820 ! zona arcuata of basilar membrane of cochlea - -[Term] -id: SCTID:244450009 ! -property_value: IAO:0000589 "vestibular ganglion (SCTID)" xsd:string -is_a: UBERON:0002824 ! vestibular ganglion - -[Term] -id: SCTID:280178008 ! -property_value: IAO:0000589 "ventral cochlear nucleus (SCTID)" xsd:string -is_a: UBERON:0002828 ! ventral cochlear nucleus - -[Term] -id: SCTID:280179000 ! -property_value: IAO:0000589 "dorsal cochlear nucleus (SCTID)" xsd:string -is_a: UBERON:0002829 ! dorsal cochlear nucleus - -[Term] -id: SCTID:369020000 ! -property_value: IAO:0000589 "ventral nucleus of trapezoid body (SCTID)" xsd:string -is_a: UBERON:0002832 ! ventral nucleus of trapezoid body - -[Term] -id: SCTID:278325008 ! -property_value: IAO:0000589 "cervical dorsal root ganglion (SCTID)" xsd:string -is_a: UBERON:0002834 ! cervical dorsal root ganglion - -[Term] -id: SCTID:278326009 ! -property_value: IAO:0000589 "thoracic dorsal root ganglion (SCTID)" xsd:string -is_a: UBERON:0002835 ! thoracic dorsal root ganglion - -[Term] -id: SCTID:278327000 ! -property_value: IAO:0000589 "lumbar dorsal root ganglion (SCTID)" xsd:string -is_a: UBERON:0002836 ! lumbar dorsal root ganglion - -[Term] -id: SCTID:278328005 ! -property_value: IAO:0000589 "sacral dorsal root ganglion (SCTID)" xsd:string -is_a: UBERON:0002837 ! sacral dorsal root ganglion - -[Term] -id: SCTID:15575006 ! -property_value: IAO:0000589 "accessory cuneate nucleus (SCTID)" xsd:string -is_a: UBERON:0002864 ! accessory cuneate nucleus - -[Term] -id: SCTID:52884007 ! -property_value: IAO:0000589 "dorsal motor nucleus of vagus nerve (SCTID)" xsd:string -is_a: UBERON:0002870 ! dorsal motor nucleus of vagus nerve - -[Term] -id: SCTID:47361005 ! -property_value: IAO:0000589 "hypoglossal nucleus (SCTID)" xsd:string -is_a: UBERON:0002871 ! hypoglossal nucleus - -[Term] -id: SCTID:369077004 ! -property_value: IAO:0000589 "nucleus intercalatus (SCTID)" xsd:string -is_a: UBERON:0002876 ! nucleus intercalatus - -[Term] -id: SCTID:369076008 ! -property_value: IAO:0000589 "sublingual nucleus (SCTID)" xsd:string -is_a: UBERON:0002881 ! sublingual nucleus - -[Term] -id: SCTID:12692002 ! -property_value: IAO:0000589 "cistern of lamina terminalis (SCTID)" xsd:string -is_a: UBERON:0002897 ! cistern of lamina terminalis - -[Term] -id: SCTID:47947006 ! -property_value: IAO:0000589 "chiasmatic cistern (SCTID)" xsd:string -is_a: UBERON:0002898 ! chiasmatic cistern - -[Term] -id: SCTID:369101000 ! -property_value: IAO:0000589 "hippocampal sulcus (SCTID)" xsd:string -is_a: UBERON:0002899 ! hippocampal sulcus - -[Term] -id: SCTID:314160003 ! -property_value: IAO:0000589 "occipital pole (SCTID)" xsd:string -is_a: UBERON:0002902 ! occipital pole - -[Term] -id: SCTID:369219003 ! -property_value: IAO:0000589 "lateral occipital sulcus (SCTID)" xsd:string -is_a: UBERON:0002904 ! lateral occipital sulcus - -[Term] -id: SCTID:279352008 ! -property_value: IAO:0000589 "subparietal sulcus (SCTID)" xsd:string -is_a: UBERON:0002908 ! subparietal sulcus - -[Term] -id: SCTID:362353000 ! -property_value: IAO:0000589 "parietal operculum (SCTID)" xsd:string -is_a: UBERON:0002911 ! parietal operculum - -[Term] -id: SCTID:279351001 ! -property_value: IAO:0000589 "marginal sulcus (SCTID)" xsd:string -is_a: UBERON:0002912 ! marginal sulcus - -[Term] -id: SCTID:279338006 ! -property_value: IAO:0000589 "intraparietal sulcus (SCTID)" xsd:string -is_a: UBERON:0002913 ! intraparietal sulcus - -[Term] -id: SCTID:279339003 ! -property_value: IAO:0000589 "postcentral sulcus of parietal lobe (SCTID)" xsd:string -is_a: UBERON:0002915 ! postcentral sulcus of parietal lobe - -[Term] -id: SCTID:279340001 ! -property_value: IAO:0000589 "central sulcus (SCTID)" xsd:string -is_a: UBERON:0002916 ! central sulcus - -[Term] -id: SCTID:279349000 ! -property_value: IAO:0000589 "callosal sulcus (SCTID)" xsd:string -is_a: UBERON:0002920 ! callosal sulcus - -[Term] -id: SCTID:369225004 ! -property_value: IAO:0000589 "longitudinal fissure (SCTID)" xsd:string -is_a: UBERON:0002921 ! longitudinal fissure - -[Term] -id: SCTID:369102007 ! -property_value: IAO:0000589 "olfactory trigone (SCTID)" xsd:string -is_a: UBERON:0002922 ! olfactory trigone - -[Term] -id: SCTID:280164007 ! -property_value: IAO:0000589 "trigeminal nucleus (SCTID)" xsd:string -is_a: UBERON:0002925 ! trigeminal nucleus - -[Term] -id: SCTID:3301002 ! -property_value: IAO:0000589 "tectopontine tract (SCTID)" xsd:string -is_a: UBERON:0002930 ! tectopontine tract - -[Term] -id: SCTID:369019006 ! -property_value: IAO:0000589 "trapezoid body (SCTID)" xsd:string -is_a: UBERON:0002932 ! trapezoid body - -[Term] -id: SCTID:369173003 ! -property_value: IAO:0000589 "ventral posteroinferior nucleus (SCTID)" xsd:string -is_a: UBERON:0002939 ! ventral posteroinferior nucleus - -[Term] -id: SCTID:369245007 ! -property_value: IAO:0000589 "capsule of red nucleus (SCTID)" xsd:string -is_a: UBERON:0002941 ! capsule of red nucleus - -[Term] -id: SCTID:369171001 ! -property_value: IAO:0000589 "ventral posterolateral nucleus (SCTID)" xsd:string -is_a: UBERON:0002942 ! ventral posterolateral nucleus - -[Term] -id: SCTID:279203007 ! -property_value: IAO:0000589 "lingual gyrus (SCTID)" xsd:string -is_a: UBERON:0002943 ! lingual gyrus - -[Term] -id: SCTID:360570003 ! -property_value: IAO:0000589 "spinothalamic tract of medulla (SCTID)" xsd:string -is_a: UBERON:0002944 ! spinothalamic tract of medulla - -[Term] -id: SCTID:369172008 ! -property_value: IAO:0000589 "ventral posteromedial nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002945 ! ventral posteromedial nucleus of thalamus - -[Term] -id: SCTID:362352005 ! -property_value: IAO:0000589 "frontal operculum (SCTID)" xsd:string -is_a: UBERON:0002947 ! frontal operculum - -[Term] -id: SCTID:279182006 ! -property_value: IAO:0000589 "superior occipital gyrus (SCTID)" xsd:string -is_a: UBERON:0002948 ! superior occipital gyrus - -[Term] -id: SCTID:362399003 ! -property_value: IAO:0000589 "lateral lemniscus (SCTID)" xsd:string -is_a: UBERON:0002953 ! lateral lemniscus - -[Term] -id: SCTID:369239004 ! -property_value: IAO:0000589 "caudal central oculomotor nucleus (SCTID)" xsd:string -is_a: UBERON:0002957 ! caudal central oculomotor nucleus - -[Term] -id: SCTID:361572002 ! -property_value: IAO:0000589 "medial lemniscus of pons (SCTID)" xsd:string -is_a: UBERON:0002958 ! medial lemniscus of pons - -[Term] -id: SCTID:423918008 ! -property_value: IAO:0000589 "archicortex (SCTID)" xsd:string -is_a: UBERON:0002961 ! archicortex - -[Term] -id: SCTID:181649004 ! -property_value: IAO:0000589 "adductor pollicis muscle (SCTID)" xsd:string -is_a: UBERON:0002962 ! adductor pollicis muscle - -[Term] -id: SCTID:279208003 ! -property_value: IAO:0000589 "cingulate gyrus (SCTID)" xsd:string -is_a: UBERON:0002967 ! cingulate gyrus - -[Term] -id: SCTID:279346007 ! -property_value: IAO:0000589 "inferior temporal sulcus (SCTID)" xsd:string -is_a: UBERON:0002969 ! inferior temporal sulcus - -[Term] -id: SCTID:279162007 ! -property_value: IAO:0000589 "centromedian nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002972 ! centromedian nucleus of thalamus - -[Term] -id: SCTID:279205000 ! -property_value: IAO:0000589 "parahippocampal gyrus (SCTID)" xsd:string -is_a: UBERON:0002973 ! parahippocampal gyrus - -[Term] -id: SCTID:369045002 ! -property_value: IAO:0000589 "molecular layer of cerebellar cortex (SCTID)" xsd:string -is_a: UBERON:0002974 ! molecular layer of cerebellar cortex - -[Term] -id: SCTID:369046001 ! -property_value: IAO:0000589 "Purkinje cell layer of cerebellar cortex (SCTID)" xsd:string -is_a: UBERON:0002979 ! Purkinje cell layer of cerebellar cortex - -[Term] -id: SCTID:279157006 ! -property_value: IAO:0000589 "pulvinar nucleus (SCTID)" xsd:string -is_a: UBERON:0002981 ! pulvinar nucleus - -[Term] -id: SCTID:279155003 ! -property_value: IAO:0000589 "lateral posterior nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0002983 ! lateral posterior nucleus of thalamus - -[Term] -id: SCTID:279154004 ! -property_value: IAO:0000589 "lateral dorsal nucleus (SCTID)" xsd:string -is_a: UBERON:0002984 ! lateral dorsal nucleus - -[Term] -id: SCTID:369285001 ! -property_value: IAO:0000589 "anterior spinocerebellar tract (SCTID)" xsd:string -is_a: UBERON:0002987 ! anterior spinocerebellar tract - -[Term] -id: SCTID:245003002 ! -property_value: IAO:0000589 "first dorsal interosseous of manus (SCTID)" xsd:string -is_a: UBERON:0002988 ! first dorsal interosseous of manus - -[Term] -id: SCTID:244993003 ! -property_value: IAO:0000589 "anconeus muscle (SCTID)" xsd:string -is_a: UBERON:0002989 ! anconeus muscle - -[Term] -id: SCTID:369139008 ! -property_value: IAO:0000589 "mammillothalamic tract of hypothalamus (SCTID)" xsd:string -is_a: UBERON:0002990 ! mammillothalamic tract of hypothalamus - -[Term] -id: SCTID:369148003 ! -property_value: IAO:0000589 "supramammillary commissure (SCTID)" xsd:string -is_a: UBERON:0002991 ! supramammillary commissure - -[Term] -id: SCTID:422800004 ! -property_value: IAO:0000589 "paratenial nucleus (SCTID)" xsd:string -is_a: UBERON:0002992 ! paratenial nucleus - -[Term] -id: SCTID:362333004 ! -property_value: IAO:0000589 "inferior frontal gyrus (SCTID)" xsd:string -is_a: UBERON:0002998 ! inferior frontal gyrus - -[Term] -id: SCTID:362398006 ! -property_value: IAO:0000589 "medial lemniscus (SCTID)" xsd:string -is_a: UBERON:0003002 ! medial lemniscus - -[Term] -id: SCTID:369248009 ! -property_value: IAO:0000589 "dorsal tegmental decussation (SCTID)" xsd:string -is_a: UBERON:0003009 ! dorsal tegmental decussation - -[Term] -id: SCTID:279361008 ! -property_value: IAO:0000589 "flocculonodular lobe (SCTID)" xsd:string -is_a: UBERON:0003012 ! flocculonodular lobe - -[Term] -id: SCTID:369041006 ! -property_value: IAO:0000589 "anterior quadrangular lobule (SCTID)" xsd:string -is_a: UBERON:0003015 ! anterior quadrangular lobule - -[Term] -id: SCTID:362357004 ! -property_value: IAO:0000589 "subcallosal area (SCTID)" xsd:string -is_a: UBERON:0003020 ! subcallosal area - -[Term] -id: SCTID:279383007 ! -property_value: IAO:0000589 "central lobule (SCTID)" xsd:string -is_a: UBERON:0003021 ! central lobule - -[Term] -id: SCTID:362401009 ! -property_value: IAO:0000589 "pontine tegmentum (SCTID)" xsd:string -is_a: UBERON:0003023 ! pontine tegmentum - -[Term] -id: SCTID:369181002 ! -property_value: IAO:0000589 "limitans nucleus (SCTID)" xsd:string -is_a: UBERON:0003026 ! limitans nucleus - -[Term] -id: SCTID:369260005 ! -property_value: IAO:0000589 "commissure of inferior colliculus (SCTID)" xsd:string -is_a: UBERON:0003028 ! commissure of inferior colliculus - -[Term] -id: SCTID:424901000 ! -property_value: IAO:0000589 "posterior nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0003030 ! posterior nucleus of thalamus - -[Term] -id: SCTID:279151007 ! -property_value: IAO:0000589 "submedial nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0003031 ! submedial nucleus of thalamus - -[Term] -id: SCTID:369180001 ! -property_value: IAO:0000589 "suprageniculate nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0003033 ! suprageniculate nucleus of thalamus - -[Term] -id: SCTID:279153005 ! -property_value: IAO:0000589 "central lateral nucleus (SCTID)" xsd:string -is_a: UBERON:0003036 ! central lateral nucleus - -[Term] -id: SCTID:278750009 ! -property_value: IAO:0000589 "thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0003038 ! thoracic spinal cord - -[Term] -id: SCTID:369233003 ! -property_value: IAO:0000589 "central gray substance of midbrain (SCTID)" xsd:string -is_a: UBERON:0003040 ! central gray substance of midbrain - -[Term] -id: SCTID:369083001 ! -property_value: IAO:0000589 "uncinate fasciculus (SCTID)" xsd:string -is_a: UBERON:0003044 ! uncinate fasciculus - -[Term] -id: SCTID:308792006 ! -property_value: IAO:0000589 "ear vesicle (SCTID)" xsd:string -is_a: UBERON:0003051 ! ear vesicle - -[Term] -id: SCTID:361406002 ! -property_value: IAO:0000589 "pronephric duct (SCTID)" xsd:string -is_a: UBERON:0003060 ! pronephric duct - -[Term] -id: SCTID:361464001 ! -property_value: IAO:0000589 "primitive knot (SCTID)" xsd:string -is_a: UBERON:0003062 ! primitive knot - -[Term] -id: SCTID:361476001 ! -property_value: IAO:0000589 "intermediate mesoderm (SCTID)" xsd:string -is_a: UBERON:0003064 ! intermediate mesoderm - -[Term] -id: SCTID:308768003 ! -property_value: IAO:0000589 "pharyngeal arch 2 (SCTID)" xsd:string -is_a: UBERON:0003066 ! pharyngeal arch 2 - -[Term] -id: SCTID:308789007 ! -property_value: IAO:0000589 "optic cup (SCTID)" xsd:string -is_a: UBERON:0003072 ! optic cup - -[Term] -id: SCTID:308800003 ! -property_value: IAO:0000589 "mesonephric duct (SCTID)" xsd:string -is_a: UBERON:0003074 ! mesonephric duct - -[Term] -id: SCTID:361475002 ! -property_value: IAO:0000589 "paraxial mesoderm (SCTID)" xsd:string -is_a: UBERON:0003077 ! paraxial mesoderm - -[Term] -id: SCTID:361477005 ! -property_value: IAO:0000589 "lateral plate mesoderm (SCTID)" xsd:string -is_a: UBERON:0003081 ! lateral plate mesoderm - -[Term] -id: SCTID:344535001 ! -property_value: IAO:0000589 "myotome (SCTID)" xsd:string -is_a: UBERON:0003082 ! myotome - -[Term] -id: SCTID:308780006 ! -property_value: IAO:0000589 "anterior cardinal vein (SCTID)" xsd:string -is_a: UBERON:0003087 ! anterior cardinal vein - -[Term] -id: SCTID:345552007 ! -property_value: IAO:0000589 "ultimobranchial body (SCTID)" xsd:string -is_a: UBERON:0003092 ! ultimobranchial body - -[Term] -id: SCTID:417127006 ! -property_value: IAO:0000589 "dorsal fin (SCTID)" xsd:string -is_a: UBERON:0003097 ! dorsal fin - -[Term] -id: SCTID:308788004 ! -property_value: IAO:0000589 "optic stalk (SCTID)" xsd:string -is_a: UBERON:0003098 ! optic stalk - -[Term] -id: SCTID:362608006 ! -property_value: IAO:0000589 "female organism (SCTID)" xsd:string -is_a: UBERON:0003100 ! female organism - -[Term] -id: SCTID:362609003 ! -property_value: IAO:0000589 "male organism (SCTID)" xsd:string -is_a: UBERON:0003101 ! male organism - -[Term] -id: SCTID:308773009 ! -property_value: IAO:0000589 "Meckel's cartilage (SCTID)" xsd:string -is_a: UBERON:0003107 ! Meckel's cartilage - -[Term] -id: SCTID:308769006 ! -property_value: IAO:0000589 "pharyngeal arch 3 (SCTID)" xsd:string -is_a: UBERON:0003114 ! pharyngeal arch 3 - -[Term] -id: SCTID:308770007 ! -property_value: IAO:0000589 "pharyngeal arch 4 (SCTID)" xsd:string -is_a: UBERON:0003115 ! pharyngeal arch 4 - -[Term] -id: SCTID:308771006 ! -property_value: IAO:0000589 "pharyngeal arch 5 (SCTID)" xsd:string -is_a: UBERON:0003116 ! pharyngeal arch 5 - -[Term] -id: SCTID:308772004 ! -property_value: IAO:0000589 "pharyngeal arch 6 (SCTID)" xsd:string -is_a: UBERON:0003117 ! pharyngeal arch 6 - -[Term] -id: SCTID:308774003 ! -property_value: IAO:0000589 "pharyngeal arch artery 1 (SCTID)" xsd:string -is_a: UBERON:0003118 ! pharyngeal arch artery 1 - -[Term] -id: SCTID:308775002 ! -property_value: IAO:0000589 "pharyngeal arch artery 2 (SCTID)" xsd:string -is_a: UBERON:0003119 ! pharyngeal arch artery 2 - -[Term] -id: SCTID:308776001 ! -property_value: IAO:0000589 "pharyngeal arch artery 3 (SCTID)" xsd:string -is_a: UBERON:0003120 ! pharyngeal arch artery 3 - -[Term] -id: SCTID:308777005 ! -property_value: IAO:0000589 "pharyngeal arch artery 4 (SCTID)" xsd:string -is_a: UBERON:0003121 ! pharyngeal arch artery 4 - -[Term] -id: SCTID:308778000 ! -property_value: IAO:0000589 "pharyngeal arch artery 5 (SCTID)" xsd:string -is_a: UBERON:0003122 ! pharyngeal arch artery 5 - -[Term] -id: SCTID:308779008 ! -property_value: IAO:0000589 "pharyngeal arch artery 6 (SCTID)" xsd:string -is_a: UBERON:0003123 ! pharyngeal arch artery 6 - -[Term] -id: SCTID:181213009 ! -property_value: IAO:0000589 "trachea (SCTID)" xsd:string -is_a: UBERON:0003126 ! trachea - -[Term] -id: SCTID:181889008 ! -property_value: IAO:0000589 "cranium (SCTID)" xsd:string -is_a: UBERON:0003128 ! cranium - -[Term] -id: SCTID:110530005 ! -property_value: IAO:0000589 "skull (SCTID)" xsd:string -is_a: UBERON:0003129 ! skull - -[Term] -id: SCTID:128181006 ! -property_value: IAO:0000589 "reproductive organ (SCTID)" xsd:string -is_a: UBERON:0003133 ! reproductive organ - -[Term] -id: SCTID:245778002 ! -property_value: IAO:0000589 "hard palate (SCTID)" xsd:string -is_a: UBERON:0003216 ! hard palate - -[Term] -id: SCTID:424523008 ! -property_value: IAO:0000589 "neural lobe of neurohypophysis (SCTID)" xsd:string -is_a: UBERON:0003217 ! neural lobe of neurohypophysis - -[Term] -id: SCTID:361529008 ! -property_value: IAO:0000589 "metanephric mesenchyme (SCTID)" xsd:string -is_a: UBERON:0003220 ! metanephric mesenchyme - -[Term] -id: SCTID:290029003 ! -property_value: IAO:0000589 "phalanx (SCTID)" xsd:string -is_a: UBERON:0003221 ! phalanx - -[Term] -id: SCTID:181634007 ! -property_value: IAO:0000589 "supinator muscle (SCTID)" xsd:string -is_a: UBERON:0003228 ! supinator muscle - -[Term] -id: SCTID:361820003 ! -property_value: IAO:0000589 "extensor pollicis longus muscle (SCTID)" xsd:string -is_a: UBERON:0003234 ! extensor pollicis longus muscle - -[Term] -id: SCTID:244841001 ! -property_value: IAO:0000589 "rectus capitis lateralis muscle (SCTID)" xsd:string -is_a: UBERON:0003250 ! rectus capitis lateralis muscle - -[Term] -id: SCTID:362620003 ! -property_value: IAO:0000589 "temporal part of head (SCTID)" xsd:string -is_a: UBERON:0003251 ! temporal part of head - -[Term] -id: SCTID:361741004 ! -property_value: IAO:0000589 "thoracic rib cage (SCTID)" xsd:string -is_a: UBERON:0003252 ! thoracic rib cage - -[Term] -id: SCTID:263359009 ! -property_value: IAO:0000589 "neck of rib (SCTID)" xsd:string -is_a: UBERON:0003253 ! neck of rib - -[Term] -id: SCTID:422279005 ! -property_value: IAO:0000589 "tooth of upper jaw (SCTID)" xsd:string -is_a: UBERON:0003267 ! tooth of upper jaw - -[Term] -id: SCTID:422032003 ! -property_value: IAO:0000589 "tooth of lower jaw (SCTID)" xsd:string -is_a: UBERON:0003268 ! tooth of lower jaw - -[Term] -id: SCTID:261623000 ! -property_value: IAO:0000589 "mesentery of stomach (SCTID)" xsd:string -is_a: UBERON:0003281 ! mesentery of stomach - -[Term] -id: SCTID:181097002 ! -property_value: IAO:0000589 "meninx of spinal cord (SCTID)" xsd:string -is_a: UBERON:0003292 ! meninx of spinal cord - -[Term] -id: SCTID:7892006 ! -property_value: IAO:0000589 "submucosa of anal canal (SCTID)" xsd:string -is_a: UBERON:0003329 ! submucosa of anal canal - -[Term] -id: SCTID:71683001 ! -property_value: IAO:0000589 "submucosa of rectum (SCTID)" xsd:string -is_a: UBERON:0003330 ! submucosa of rectum - -[Term] -id: SCTID:61647009 ! -property_value: IAO:0000589 "submucosa of colon (SCTID)" xsd:string -is_a: UBERON:0003331 ! submucosa of colon - -[Term] -id: SCTID:76519004 ! -property_value: IAO:0000589 "submucosa of duodenum (SCTID)" xsd:string -is_a: UBERON:0003332 ! submucosa of duodenum - -[Term] -id: SCTID:70192009 ! -property_value: IAO:0000589 "submucosa of jejunum (SCTID)" xsd:string -is_a: UBERON:0003333 ! submucosa of jejunum - -[Term] -id: SCTID:90132000 ! -property_value: IAO:0000589 "serosa of colon (SCTID)" xsd:string -is_a: UBERON:0003335 ! serosa of colon - -[Term] -id: SCTID:1236009 ! -property_value: IAO:0000589 "serosa of duodenum (SCTID)" xsd:string -is_a: UBERON:0003336 ! serosa of duodenum - -[Term] -id: SCTID:362170004 ! -property_value: IAO:0000589 "mucosa of anal canal (SCTID)" xsd:string -is_a: UBERON:0003342 ! mucosa of anal canal - -[Term] -id: SCTID:362083000 ! -property_value: IAO:0000589 "mucosa of oral region (SCTID)" xsd:string -is_a: UBERON:0003343 ! mucosa of oral region - -[Term] -id: SCTID:362167003 ! -property_value: IAO:0000589 "mucosa of rectum (SCTID)" xsd:string -is_a: UBERON:0003346 ! mucosa of rectum - -[Term] -id: SCTID:277719009 ! -property_value: IAO:0000589 "fossa ovalis of heart (SCTID)" xsd:string -is_a: UBERON:0003369 ! fossa ovalis of heart - -[Term] -id: SCTID:362018002 ! -property_value: IAO:0000589 "cardiac muscle of right atrium (SCTID)" xsd:string -is_a: UBERON:0003379 ! cardiac muscle of right atrium - -[Term] -id: SCTID:189936008 ! -property_value: IAO:0000589 "cardiac muscle of left atrium (SCTID)" xsd:string -is_a: UBERON:0003380 ! cardiac muscle of left atrium - -[Term] -id: SCTID:245457004 ! -property_value: IAO:0000589 "mesentery of colon (SCTID)" xsd:string -is_a: UBERON:0003396 ! mesentery of colon - -[Term] -id: SCTID:261286003 ! -property_value: IAO:0000589 "mesentery of jejunum (SCTID)" xsd:string -is_a: UBERON:0003398 ! mesentery of jejunum - -[Term] -id: SCTID:181537008 ! -property_value: IAO:0000589 "skin of forearm (SCTID)" xsd:string -is_a: UBERON:0003403 ! skin of forearm - -[Term] -id: SCTID:245511004 ! -property_value: IAO:0000589 "lobar bronchus of right lung (SCTID)" xsd:string -is_a: UBERON:0003404 ! lobar bronchus of right lung - -[Term] -id: SCTID:245510003 ! -property_value: IAO:0000589 "lobar bronchus of left lung (SCTID)" xsd:string -is_a: UBERON:0003405 ! lobar bronchus of left lung - -[Term] -id: SCTID:368069009 ! -property_value: IAO:0000589 "mesenchyme of umbilical cord (SCTID)" xsd:string -is_a: UBERON:0003422 ! mesenchyme of umbilical cord - -[Term] -id: SCTID:300056004 ! -property_value: IAO:0000589 "pedal digit nerve (SCTID)" xsd:string -is_a: UBERON:0003435 ! pedal digit nerve - -[Term] -id: SCTID:359923002 ! -property_value: IAO:0000589 "limb nerve (SCTID)" xsd:string -is_a: UBERON:0003440 ! limb nerve - -[Term] -id: SCTID:181015006 ! -property_value: IAO:0000589 "digit nerve of manus (SCTID)" xsd:string -is_a: UBERON:0003447 ! digit nerve of manus - -[Term] -id: SCTID:421578001 ! -property_value: IAO:0000589 "upper jaw incisor (SCTID)" xsd:string -is_a: UBERON:0003450 ! upper jaw incisor - -[Term] -id: SCTID:38986009 ! -property_value: IAO:0000589 "small intestine Peyer's patch (SCTID)" xsd:string -is_a: UBERON:0003454 ! small intestine Peyer's patch - -[Term] -id: SCTID:118646007 ! -property_value: IAO:0000589 "head bone (SCTID)" xsd:string -is_a: UBERON:0003457 ! head bone - -[Term] -id: SCTID:181799005 ! -property_value: IAO:0000589 "facial bone (SCTID)" xsd:string -is_a: UBERON:0003462 ! facial bone - -[Term] -id: SCTID:427358002 ! -property_value: IAO:0000589 "trunk bone (SCTID)" xsd:string -is_a: UBERON:0003463 ! trunk bone - -[Term] -id: SCTID:361370006 ! -property_value: IAO:0000589 "hindlimb bone (SCTID)" xsd:string -is_a: UBERON:0003464 ! hindlimb bone - -[Term] -id: SCTID:302749009 ! -property_value: IAO:0000589 "sesamoid bone of gastrocnemius (SCTID)" xsd:string -is_a: UBERON:0003467 ! sesamoid bone of gastrocnemius - -[Term] -id: SCTID:65376008 ! -property_value: IAO:0000589 "ureteric segment of renal artery (SCTID)" xsd:string -is_a: UBERON:0003468 ! ureteric segment of renal artery - -[Term] -id: SCTID:145137009 ! -property_value: IAO:0000589 "artery of upper lip (SCTID)" xsd:string -is_a: UBERON:0003470 ! artery of upper lip - -[Term] -id: SCTID:145036002 ! -property_value: IAO:0000589 "artery of lower lip (SCTID)" xsd:string -is_a: UBERON:0003471 ! artery of lower lip - -[Term] -id: SCTID:278102002 ! -property_value: IAO:0000589 "cerebellar artery (SCTID)" xsd:string -is_a: UBERON:0003472 ! cerebellar artery - -[Term] -id: SCTID:422755007 ! -property_value: IAO:0000589 "vein of upper lip (SCTID)" xsd:string -is_a: UBERON:0003477 ! vein of upper lip - -[Term] -id: SCTID:422955002 ! -property_value: IAO:0000589 "vein of lower lip (SCTID)" xsd:string -is_a: UBERON:0003478 ! vein of lower lip - -[Term] -id: SCTID:360819004 ! -property_value: IAO:0000589 "vein of clitoris (SCTID)" xsd:string -is_a: UBERON:0003480 ! vein of clitoris - -[Term] -id: SCTID:115977007 ! -property_value: IAO:0000589 "skin sebaceous gland (SCTID)" xsd:string -is_a: UBERON:0003487 ! skin sebaceous gland - -[Term] -id: SCTID:113191002 ! -property_value: IAO:0000589 "abdominal mammary gland (SCTID)" xsd:string -is_a: UBERON:0003488 ! abdominal mammary gland - -[Term] -id: SCTID:68037003 ! -property_value: IAO:0000589 "abdominal mammary gland (SCTID)" xsd:string -is_a: UBERON:0003488 ! abdominal mammary gland - -[Term] -id: SCTID:127865000 ! -property_value: IAO:0000589 "head blood vessel (SCTID)" xsd:string -is_a: UBERON:0003496 ! head blood vessel - -[Term] -id: SCTID:280692003 ! -property_value: IAO:0000589 "retina blood vessel (SCTID)" xsd:string -is_a: UBERON:0003501 ! retina blood vessel - -[Term] -id: SCTID:275409003 ! -property_value: IAO:0000589 "kidney capillary (SCTID)" xsd:string -is_a: UBERON:0003527 ! kidney capillary - -[Term] -id: SCTID:181530005 ! -property_value: IAO:0000589 "pedal digit skin (SCTID)" xsd:string -is_a: UBERON:0003530 ! pedal digit skin - -[Term] -id: SCTID:244130001 ! -property_value: IAO:0000589 "forelimb skin (SCTID)" xsd:string -is_a: UBERON:0003531 ! forelimb skin - -[Term] -id: SCTID:181528008 ! -property_value: IAO:0000589 "hindlimb skin (SCTID)" xsd:string -is_a: UBERON:0003532 ! hindlimb skin - -[Term] -id: SCTID:361711001 ! -property_value: IAO:0000589 "manual digit skin (SCTID)" xsd:string -is_a: UBERON:0003533 ! manual digit skin - -[Term] -id: SCTID:67214004 ! -property_value: IAO:0000589 "tail skin (SCTID)" xsd:string -is_a: UBERON:0003534 ! tail skin - -[Term] -id: SCTID:280308004 ! -property_value: IAO:0000589 "vagus X nerve trunk (SCTID)" xsd:string -is_a: UBERON:0003535 ! vagus X nerve trunk - -[Term] -id: SCTID:200089000 ! -property_value: IAO:0000589 "right lung bronchiole (SCTID)" xsd:string -is_a: UBERON:0003538 ! right lung bronchiole - -[Term] -id: SCTID:200484003 ! -property_value: IAO:0000589 "left lung bronchiole (SCTID)" xsd:string -is_a: UBERON:0003539 ! left lung bronchiole - -[Term] -id: SCTID:180949007 ! -property_value: IAO:0000589 "brain meninx (SCTID)" xsd:string -is_a: UBERON:0003547 ! brain meninx - -[Term] -id: SCTID:278979006 ! -property_value: IAO:0000589 "trachea cartilage (SCTID)" xsd:string -is_a: UBERON:0003604 ! trachea cartilage - -[Term] -id: SCTID:48467007 ! -property_value: IAO:0000589 "aorta tunica media (SCTID)" xsd:string -is_a: UBERON:0003618 ! aorta tunica media - -[Term] -id: SCTID:362031007 ! -property_value: IAO:0000589 "aorta tunica intima (SCTID)" xsd:string -is_a: UBERON:0003619 ! aorta tunica intima - -[Term] -id: SCTID:181975002 ! -property_value: IAO:0000589 "manual digit 1 phalanx (SCTID)" xsd:string -is_a: UBERON:0003620 ! manual digit 1 phalanx - -[Term] -id: SCTID:362758006 ! -property_value: IAO:0000589 "manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0003622 ! manual digit 2 - -[Term] -id: SCTID:362763005 ! -property_value: IAO:0000589 "manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0003623 ! manual digit 3 - -[Term] -id: SCTID:362768001 ! -property_value: IAO:0000589 "manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0003624 ! manual digit 4 - -[Term] -id: SCTID:362773007 ! -property_value: IAO:0000589 "manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0003625 ! manual digit 5 - -[Term] -id: SCTID:21699005 ! -property_value: IAO:0000589 "pedal digit 1 (SCTID)" xsd:string -is_a: UBERON:0003631 ! pedal digit 1 - -[Term] -id: SCTID:302546000 ! -property_value: IAO:0000589 "pedal digit 1 (SCTID)" xsd:string -is_a: UBERON:0003631 ! pedal digit 1 - -[Term] -id: SCTID:362817008 ! -property_value: IAO:0000589 "pedal digit 2 (SCTID)" xsd:string -is_a: UBERON:0003632 ! pedal digit 2 - -[Term] -id: SCTID:362821001 ! -property_value: IAO:0000589 "pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0003633 ! pedal digit 3 - -[Term] -id: SCTID:362826006 ! -property_value: IAO:0000589 "pedal digit 4 (SCTID)" xsd:string -is_a: UBERON:0003634 ! pedal digit 4 - -[Term] -id: SCTID:362830009 ! -property_value: IAO:0000589 "pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0003635 ! pedal digit 5 - -[Term] -id: SCTID:361783009 ! -property_value: IAO:0000589 "manual digit 2 phalanx (SCTID)" xsd:string -is_a: UBERON:0003636 ! manual digit 2 phalanx - -[Term] -id: SCTID:361785002 ! -property_value: IAO:0000589 "manual digit 3 phalanx (SCTID)" xsd:string -is_a: UBERON:0003637 ! manual digit 3 phalanx - -[Term] -id: SCTID:361787005 ! -property_value: IAO:0000589 "manual digit 4 phalanx (SCTID)" xsd:string -is_a: UBERON:0003638 ! manual digit 4 phalanx - -[Term] -id: SCTID:361789008 ! -property_value: IAO:0000589 "manual digit 5 phalanx (SCTID)" xsd:string -is_a: UBERON:0003639 ! manual digit 5 phalanx - -[Term] -id: SCTID:361798006 ! -property_value: IAO:0000589 "pedal digit 1 phalanx (SCTID)" xsd:string -is_a: UBERON:0003640 ! pedal digit 1 phalanx - -[Term] -id: SCTID:361800004 ! -property_value: IAO:0000589 "pedal digit 2 phalanx (SCTID)" xsd:string -is_a: UBERON:0003641 ! pedal digit 2 phalanx - -[Term] -id: SCTID:361802007 ! -property_value: IAO:0000589 "pedal digit 3 phalanx (SCTID)" xsd:string -is_a: UBERON:0003642 ! pedal digit 3 phalanx - -[Term] -id: SCTID:181973009 ! -property_value: IAO:0000589 "metacarpal bone of digit 1 (SCTID)" xsd:string -is_a: UBERON:0003645 ! metacarpal bone of digit 1 - -[Term] -id: SCTID:263399007 ! -property_value: IAO:0000589 "metacarpal bone of digit 2 (SCTID)" xsd:string -is_a: UBERON:0003646 ! metacarpal bone of digit 2 - -[Term] -id: SCTID:263400000 ! -property_value: IAO:0000589 "metacarpal bone of digit 3 (SCTID)" xsd:string -is_a: UBERON:0003647 ! metacarpal bone of digit 3 - -[Term] -id: SCTID:263401001 ! -property_value: IAO:0000589 "metacarpal bone of digit 4 (SCTID)" xsd:string -is_a: UBERON:0003648 ! metacarpal bone of digit 4 - -[Term] -id: SCTID:263402008 ! -property_value: IAO:0000589 "metacarpal bone of digit 5 (SCTID)" xsd:string -is_a: UBERON:0003649 ! metacarpal bone of digit 5 - -[Term] -id: SCTID:182121005 ! -property_value: IAO:0000589 "metatarsal bone of digit 1 (SCTID)" xsd:string -is_a: UBERON:0003650 ! metatarsal bone of digit 1 - -[Term] -id: SCTID:182128004 ! -property_value: IAO:0000589 "metatarsal bone of digit 2 (SCTID)" xsd:string -is_a: UBERON:0003651 ! metatarsal bone of digit 2 - -[Term] -id: SCTID:182134006 ! -property_value: IAO:0000589 "metatarsal bone of digit 3 (SCTID)" xsd:string -is_a: UBERON:0003652 ! metatarsal bone of digit 3 - -[Term] -id: SCTID:182139001 ! -property_value: IAO:0000589 "metatarsal bone of digit 4 (SCTID)" xsd:string -is_a: UBERON:0003653 ! metatarsal bone of digit 4 - -[Term] -id: SCTID:182144008 ! -property_value: IAO:0000589 "metatarsal bone of digit 5 (SCTID)" xsd:string -is_a: UBERON:0003654 ! metatarsal bone of digit 5 - -[Term] -id: SCTID:362115002 ! -property_value: IAO:0000589 "molar tooth (SCTID)" xsd:string -is_a: UBERON:0003655 ! molar tooth - -[Term] -id: SCTID:312683002 ! -property_value: IAO:0000589 "limb joint (SCTID)" xsd:string -is_a: UBERON:0003657 ! limb joint - -[Term] -id: SCTID:113230005 ! -property_value: IAO:0000589 "post-anal tail muscle (SCTID)" xsd:string -is_a: UBERON:0003665 ! post-anal tail muscle - -[Term] -id: SCTID:182483003 ! -property_value: IAO:0000589 "synovial bursa (SCTID)" xsd:string -is_a: UBERON:0003668 ! synovial bursa - -[Term] -id: SCTID:361911008 ! -property_value: IAO:0000589 "fascia lata (SCTID)" xsd:string -is_a: UBERON:0003669 ! fascia lata - -[Term] -id: SCTID:182443006 ! -property_value: IAO:0000589 "anterior cruciate ligament of knee joint (SCTID)" xsd:string -is_a: UBERON:0003671 ! anterior cruciate ligament of knee joint - -[Term] -id: SCTID:245543004 ! -property_value: IAO:0000589 "dentition (SCTID)" xsd:string -is_a: UBERON:0003672 ! dentition - -[Term] -id: SCTID:244598002 ! -property_value: IAO:0000589 "ligamentum flavum (SCTID)" xsd:string -is_a: UBERON:0003673 ! ligamentum flavum - -[Term] -id: SCTID:420817000 ! -property_value: IAO:0000589 "cuspid (SCTID)" xsd:string -is_a: UBERON:0003674 ! cuspid - -[Term] -id: SCTID:88719004 ! -property_value: IAO:0000589 "cuspid (SCTID)" xsd:string -is_a: UBERON:0003674 ! cuspid - -[Term] -id: SCTID:362106009 ! -property_value: IAO:0000589 "tooth crown (SCTID)" xsd:string -is_a: UBERON:0003675 ! tooth crown - -[Term] -id: SCTID:244639004 ! -property_value: IAO:0000589 "patellar ligament (SCTID)" xsd:string -is_a: UBERON:0003676 ! patellar ligament - -[Term] -id: SCTID:245728004 ! -property_value: IAO:0000589 "tooth root (SCTID)" xsd:string -is_a: UBERON:0003677 ! tooth root - -[Term] -id: SCTID:245786002 ! -property_value: IAO:0000589 "mouth floor (SCTID)" xsd:string -is_a: UBERON:0003679 ! mouth floor - -[Term] -id: SCTID:182445004 ! -property_value: IAO:0000589 "posterior cruciate ligament of knee joint (SCTID)" xsd:string -is_a: UBERON:0003680 ! posterior cruciate ligament of knee joint - -[Term] -id: SCTID:244769003 ! -property_value: IAO:0000589 "masticatory muscle (SCTID)" xsd:string -is_a: UBERON:0003681 ! masticatory muscle - -[Term] -id: SCTID:244794002 ! -property_value: IAO:0000589 "palatal muscle (SCTID)" xsd:string -is_a: UBERON:0003682 ! palatal muscle - -[Term] -id: SCTID:73711005 ! -property_value: IAO:0000589 "palatal muscle (SCTID)" xsd:string -is_a: UBERON:0003682 ! palatal muscle - -[Term] -id: SCTID:361294009 ! -property_value: IAO:0000589 "abdominal cavity (SCTID)" xsd:string -is_a: UBERON:0003684 ! abdominal cavity - -[Term] -id: SCTID:244509003 ! -property_value: IAO:0000589 "cranial suture (SCTID)" xsd:string -is_a: UBERON:0003685 ! cranial suture - -[Term] -id: SCTID:288323008 ! -property_value: IAO:0000589 "tooth socket (SCTID)" xsd:string -is_a: UBERON:0003686 ! tooth socket - -[Term] -id: SCTID:244679008 ! -property_value: IAO:0000589 "foramen magnum (SCTID)" xsd:string -is_a: UBERON:0003687 ! foramen magnum - -[Term] -id: SCTID:362710002 ! -property_value: IAO:0000589 "omentum (SCTID)" xsd:string -is_a: UBERON:0003688 ! omentum - -[Term] -id: SCTID:368554001 ! -property_value: IAO:0000589 "sella turcica (SCTID)" xsd:string -is_a: UBERON:0003689 ! sella turcica - -[Term] -id: SCTID:264186006 ! -property_value: IAO:0000589 "fused sacrum (SCTID)" xsd:string -is_a: UBERON:0003690 ! fused sacrum - -[Term] -id: SCTID:281866004 ! -property_value: IAO:0000589 "epidural space (SCTID)" xsd:string -is_a: UBERON:0003691 ! epidural space - -[Term] -id: SCTID:182166001 ! -property_value: IAO:0000589 "acromioclavicular joint (SCTID)" xsd:string -is_a: UBERON:0003692 ! acromioclavicular joint - -[Term] -id: SCTID:243983004 ! -property_value: IAO:0000589 "retroperitoneal space (SCTID)" xsd:string -is_a: UBERON:0003693 ! retroperitoneal space - -[Term] -id: SCTID:361832004 ! -property_value: IAO:0000589 "atlanto-axial joint (SCTID)" xsd:string -is_a: UBERON:0003694 ! atlanto-axial joint - -[Term] -id: SCTID:280995004 ! -property_value: IAO:0000589 "metacarpophalangeal joint (SCTID)" xsd:string -is_a: UBERON:0003695 ! metacarpophalangeal joint - -[Term] -id: SCTID:370651001 ! -property_value: IAO:0000589 "metacarpophalangeal joint (SCTID)" xsd:string -is_a: UBERON:0003695 ! metacarpophalangeal joint - -[Term] -id: SCTID:239747005 ! -property_value: IAO:0000589 "metatarsophalangeal joint (SCTID)" xsd:string -is_a: UBERON:0003696 ! metatarsophalangeal joint - -[Term] -id: SCTID:302535003 ! -property_value: IAO:0000589 "metatarsophalangeal joint (SCTID)" xsd:string -is_a: UBERON:0003696 ! metatarsophalangeal joint - -[Term] -id: SCTID:370752004 ! -property_value: IAO:0000589 "metatarsophalangeal joint (SCTID)" xsd:string -is_a: UBERON:0003696 ! metatarsophalangeal joint - -[Term] -id: SCTID:181613000 ! -property_value: IAO:0000589 "abdominal wall (SCTID)" xsd:string -is_a: UBERON:0003697 ! abdominal wall - -[Term] -id: SCTID:182213007 ! -property_value: IAO:0000589 "subtalar joint (SCTID)" xsd:string -is_a: UBERON:0003698 ! subtalar joint - -[Term] -id: SCTID:182200001 ! -property_value: IAO:0000589 "pubic symphysis (SCTID)" xsd:string -is_a: UBERON:0003699 ! pubic symphysis - -[Term] -id: SCTID:181814009 ! -property_value: IAO:0000589 "temporomandibular joint (SCTID)" xsd:string -is_a: UBERON:0003700 ! temporomandibular joint - -[Term] -id: SCTID:181705009 ! -property_value: IAO:0000589 "calcaneal tendon (SCTID)" xsd:string -is_a: UBERON:0003701 ! calcaneal tendon - -[Term] -id: SCTID:243966008 ! -property_value: IAO:0000589 "inguinal canal (SCTID)" xsd:string -is_a: UBERON:0003702 ! inguinal canal - -[Term] -id: SCTID:276158002 ! -property_value: IAO:0000589 "extrahepatic bile duct (SCTID)" xsd:string -is_a: UBERON:0003703 ! extrahepatic bile duct - -[Term] -id: SCTID:362193005 ! -property_value: IAO:0000589 "intrahepatic bile duct (SCTID)" xsd:string -is_a: UBERON:0003704 ! intrahepatic bile duct - -[Term] -id: SCTID:245504003 ! -property_value: IAO:0000589 "laryngeal vocal fold (SCTID)" xsd:string -is_a: UBERON:0003706 ! laryngeal vocal fold - -[Term] -id: SCTID:277732004 ! -property_value: IAO:0000589 "sinus of Valsalva (SCTID)" xsd:string -is_a: UBERON:0003707 ! sinus of Valsalva - -[Term] -id: SCTID:281137000 ! -property_value: IAO:0000589 "carotid sinus (SCTID)" xsd:string -is_a: UBERON:0003708 ! carotid sinus - -[Term] -id: SCTID:362047009 ! -property_value: IAO:0000589 "circle of Willis (SCTID)" xsd:string -is_a: UBERON:0003709 ! circle of Willis - -[Term] -id: SCTID:7524009 ! -property_value: IAO:0000589 "vasa vasorum (SCTID)" xsd:string -is_a: UBERON:0003710 ! vasa vasorum - -[Term] -id: SCTID:181371003 ! -property_value: IAO:0000589 "brachiocephalic vein (SCTID)" xsd:string -is_a: UBERON:0003711 ! brachiocephalic vein - -[Term] -id: SCTID:244402005 ! -property_value: IAO:0000589 "cavernous sinus (SCTID)" xsd:string -is_a: UBERON:0003712 ! cavernous sinus - -[Term] -id: SCTID:278029005 ! -property_value: IAO:0000589 "splenic vein (SCTID)" xsd:string -is_a: UBERON:0003713 ! splenic vein - -[Term] -id: SCTID:91728009 ! -property_value: IAO:0000589 "neural tissue (SCTID)" xsd:string -is_a: UBERON:0003714 ! neural tissue - -[Term] -id: SCTID:264198001 ! -property_value: IAO:0000589 "splanchnic nerve (SCTID)" xsd:string -is_a: UBERON:0003715 ! splanchnic nerve - -[Term] -id: SCTID:24227007 ! -property_value: IAO:0000589 "recurrent laryngeal nerve (SCTID)" xsd:string -is_a: UBERON:0003716 ! recurrent laryngeal nerve - -[Term] -id: SCTID:12945004 ! -property_value: IAO:0000589 "muscle spindle (SCTID)" xsd:string -is_a: UBERON:0003718 ! muscle spindle - -[Term] -id: SCTID:37419002 ! -property_value: IAO:0000589 "Pacinian corpuscle (SCTID)" xsd:string -is_a: UBERON:0003719 ! Pacinian corpuscle - -[Term] -id: SCTID:280260006 ! -property_value: IAO:0000589 "lingual nerve (SCTID)" xsd:string -is_a: UBERON:0003721 ! lingual nerve - -[Term] -id: SCTID:362464003 ! -property_value: IAO:0000589 "vestibular nerve (SCTID)" xsd:string -is_a: UBERON:0003723 ! vestibular nerve - -[Term] -id: SCTID:181019000 ! -property_value: IAO:0000589 "musculocutaneous nerve (SCTID)" xsd:string -is_a: UBERON:0003724 ! musculocutaneous nerve - -[Term] -id: SCTID:181107005 ! -property_value: IAO:0000589 "cervical nerve plexus (SCTID)" xsd:string -is_a: UBERON:0003725 ! cervical nerve plexus - -[Term] -id: SCTID:360498003 ! -property_value: IAO:0000589 "thoracic nerve (SCTID)" xsd:string -is_a: UBERON:0003726 ! thoracic nerve - -[Term] -id: SCTID:279568001 ! -property_value: IAO:0000589 "intercostal nerve (SCTID)" xsd:string -is_a: UBERON:0003727 ! intercostal nerve - -[Term] -id: SCTID:181217005 ! -property_value: IAO:0000589 "mediastinum (SCTID)" xsd:string -is_a: UBERON:0003728 ! mediastinum - -[Term] -id: SCTID:302538001 ! -property_value: IAO:0000589 "forelimb stylopod (SCTID)" xsd:string -is_a: UBERON:0003822 ! forelimb stylopod - -[Term] -id: SCTID:244015008 ! -property_value: IAO:0000589 "hindlimb zeugopod (SCTID)" xsd:string -is_a: UBERON:0003823 ! hindlimb zeugopod - -[Term] -id: SCTID:359876006 ! -property_value: IAO:0000589 "nerve of thoracic segment (SCTID)" xsd:string -is_a: UBERON:0003824 ! nerve of thoracic segment - -[Term] -id: SCTID:426649006 ! -property_value: IAO:0000589 "thoracic segment bone (SCTID)" xsd:string -is_a: UBERON:0003827 ! thoracic segment bone - -[Term] -id: SCTID:360961009 ! -property_value: IAO:0000589 "esophagus muscle (SCTID)" xsd:string -is_a: UBERON:0003832 ! esophagus muscle - -[Term] -id: SCTID:304573000 ! -property_value: IAO:0000589 "hindlimb joint (SCTID)" xsd:string -is_a: UBERON:0003840 ! hindlimb joint - -[Term] -id: SCTID:278192008 ! -property_value: IAO:0000589 "gonadal vein (SCTID)" xsd:string -is_a: UBERON:0003848 ! gonadal vein - -[Term] -id: SCTID:317373001 ! -property_value: IAO:0000589 "neural arch (SCTID)" xsd:string -is_a: UBERON:0003861 ! neural arch - -[Term] -id: SCTID:361804008 ! -property_value: IAO:0000589 "pedal digit 4 phalanx (SCTID)" xsd:string -is_a: UBERON:0003862 ! pedal digit 4 phalanx - -[Term] -id: SCTID:361806005 ! -property_value: IAO:0000589 "pedal digit 5 phalanx (SCTID)" xsd:string -is_a: UBERON:0003863 ! pedal digit 5 phalanx - -[Term] -id: SCTID:113223004 ! -property_value: IAO:0000589 "middle phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0003864 ! middle phalanx of manus - -[Term] -id: SCTID:371230003 ! -property_value: IAO:0000589 "middle phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0003864 ! middle phalanx of manus - -[Term] -id: SCTID:182001007 ! -property_value: IAO:0000589 "distal phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0003865 ! distal phalanx of manus - -[Term] -id: SCTID:361782004 ! -property_value: IAO:0000589 "distal phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0003865 ! distal phalanx of manus - -[Term] -id: SCTID:83207005 ! -property_value: IAO:0000589 "middle phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0003866 ! middle phalanx of pes - -[Term] -id: SCTID:361797001 ! -property_value: IAO:0000589 "distal phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0003867 ! distal phalanx of pes - -[Term] -id: SCTID:85533000 ! -property_value: IAO:0000589 "proximal phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0003868 ! proximal phalanx of pes - -[Term] -id: SCTID:250172001 ! -property_value: IAO:0000589 "mesometrium (SCTID)" xsd:string -is_a: UBERON:0003885 ! mesometrium - -[Term] -id: SCTID:296586008 ! -property_value: IAO:0000589 "extraembryonic coelomic cavity (SCTID)" xsd:string -is_a: UBERON:0003888 ! extraembryonic coelomic cavity - -[Term] -id: SCTID:362843009 ! -property_value: IAO:0000589 "extraembryonic coelomic cavity (SCTID)" xsd:string -is_a: UBERON:0003888 ! extraembryonic coelomic cavity - -[Term] -id: SCTID:181463001 ! -property_value: IAO:0000589 "fallopian tube (SCTID)" xsd:string -is_a: UBERON:0003889 ! fallopian tube - -[Term] -id: SCTID:308802006 ! -property_value: IAO:0000589 "Mullerian duct (SCTID)" xsd:string -is_a: UBERON:0003890 ! Mullerian duct - -[Term] -id: SCTID:244848007 ! -property_value: IAO:0000589 "skeletal muscle tissue of trunk (SCTID)" xsd:string -is_a: UBERON:0003898 ! skeletal muscle tissue of trunk - -[Term] -id: SCTID:86689007 ! -property_value: IAO:0000589 "bursa of Fabricius (SCTID)" xsd:string -is_a: UBERON:0003903 ! bursa of Fabricius - -[Term] -id: SCTID:340163004 ! -property_value: IAO:0000589 "sinusoid (SCTID)" xsd:string -is_a: UBERON:0003909 ! sinusoid - -[Term] -id: SCTID:9081000 ! -property_value: IAO:0000589 "splenic sinusoid (SCTID)" xsd:string -is_a: UBERON:0003910 ! splenic sinusoid - -[Term] -id: SCTID:360398004 ! -property_value: IAO:0000589 "pancreatic epithelial bud (SCTID)" xsd:string -is_a: UBERON:0003922 ! pancreatic epithelial bud - -[Term] -id: SCTID:361435005 ! -property_value: IAO:0000589 "dorsal pancreatic bud (SCTID)" xsd:string -is_a: UBERON:0003923 ! dorsal pancreatic bud - -[Term] -id: SCTID:361437002 ! -property_value: IAO:0000589 "ventral pancreatic bud (SCTID)" xsd:string -is_a: UBERON:0003924 ! ventral pancreatic bud - -[Term] -id: SCTID:314159008 ! -property_value: IAO:0000589 "transverse gyrus of Heschl (SCTID)" xsd:string -is_a: UBERON:0003939 ! transverse gyrus of Heschl - -[Term] -id: SCTID:143319002 ! -property_value: IAO:0000589 "tubal tonsil (SCTID)" xsd:string -is_a: UBERON:0003949 ! tubal tonsil - -[Term] -id: SCTID:362519003 ! -property_value: IAO:0000589 "ocular fundus (SCTID)" xsd:string -is_a: UBERON:0003951 ! ocular fundus - -[Term] -id: SCTID:136248004 ! -property_value: IAO:0000589 "squamoparietal suture (SCTID)" xsd:string -is_a: UBERON:0003954 ! squamoparietal suture - -[Term] -id: SCTID:334174000 ! -property_value: IAO:0000589 "squamoparietal suture (SCTID)" xsd:string -is_a: UBERON:0003954 ! squamoparietal suture - -[Term] -id: SCTID:280652000 ! -property_value: IAO:0000589 "Bruch's membrane (SCTID)" xsd:string -is_a: UBERON:0003957 ! Bruch's membrane - -[Term] -id: SCTID:279617009 ! -property_value: IAO:0000589 "rete testis (SCTID)" xsd:string -is_a: UBERON:0003959 ! rete testis - -[Term] -id: SCTID:138874009 ! -property_value: IAO:0000589 "styloid process of temporal bone (SCTID)" xsd:string -is_a: UBERON:0003960 ! styloid process of temporal bone - -[Term] -id: SCTID:369084007 ! -property_value: IAO:0000589 "cingulum of brain (SCTID)" xsd:string -is_a: UBERON:0003961 ! cingulum of brain - -[Term] -id: SCTID:280364004 ! -property_value: IAO:0000589 "pterygopalatine ganglion (SCTID)" xsd:string -is_a: UBERON:0003962 ! pterygopalatine ganglion - -[Term] -id: SCTID:279283005 ! -property_value: IAO:0000589 "otic ganglion (SCTID)" xsd:string -is_a: UBERON:0003963 ! otic ganglion - -[Term] -id: SCTID:362247003 ! -property_value: IAO:0000589 "upper part of vagina (SCTID)" xsd:string -is_a: UBERON:0003974 ! upper part of vagina - -[Term] -id: SCTID:303518005 ! -property_value: IAO:0000589 "internal female genitalia (SCTID)" xsd:string -is_a: UBERON:0003975 ! internal female genitalia - -[Term] -id: SCTID:279829002 ! -property_value: IAO:0000589 "saccule duct (SCTID)" xsd:string -is_a: UBERON:0003976 ! saccule duct - -[Term] -id: SCTID:279819009 ! -property_value: IAO:0000589 "utricle duct (SCTID)" xsd:string -is_a: UBERON:0003977 ! utricle duct - -[Term] -id: SCTID:314163001 ! -property_value: IAO:0000589 "cerebellum fissure (SCTID)" xsd:string -is_a: UBERON:0003980 ! cerebellum fissure - -[Term] -id: SCTID:362262001 ! -property_value: IAO:0000589 "uterine tube infundibulum (SCTID)" xsd:string -is_a: UBERON:0003984 ! uterine tube infundibulum - -[Term] -id: SCTID:25237008 ! -property_value: IAO:0000589 "major sublingual duct (SCTID)" xsd:string -is_a: UBERON:0003985 ! major sublingual duct - -[Term] -id: SCTID:34223001 ! -property_value: IAO:0000589 "Hassall's corpuscle (SCTID)" xsd:string -is_a: UBERON:0003987 ! Hassall's corpuscle - -[Term] -id: SCTID:279288001 ! -property_value: IAO:0000589 "medulla oblongata anterior median fissure (SCTID)" xsd:string -is_a: UBERON:0003989 ! medulla oblongata anterior median fissure - -[Term] -id: SCTID:279449001 ! -property_value: IAO:0000589 "fourth ventricle median aperture (SCTID)" xsd:string -is_a: UBERON:0003991 ! fourth ventricle median aperture - -[Term] -id: SCTID:63426007 ! -property_value: IAO:0000589 "fourth ventricle lateral aperture (SCTID)" xsd:string -is_a: UBERON:0003992 ! fourth ventricle lateral aperture - -[Term] -id: SCTID:279248006 ! -property_value: IAO:0000589 "interventricular foramen of CNS (SCTID)" xsd:string -is_a: UBERON:0003993 ! interventricular foramen of CNS - -[Term] -id: SCTID:181891000 ! -property_value: IAO:0000589 "cervical vertebra 1 arcus anterior (SCTID)" xsd:string -is_a: UBERON:0003996 ! cervical vertebra 1 arcus anterior - -[Term] -id: SCTID:369008008 ! -property_value: IAO:0000589 "hyoid bone greater horn (SCTID)" xsd:string -is_a: UBERON:0003997 ! hyoid bone greater horn - -[Term] -id: SCTID:369007003 ! -property_value: IAO:0000589 "hyoid bone lesser horn (SCTID)" xsd:string -is_a: UBERON:0003998 ! hyoid bone lesser horn - -[Term] -id: SCTID:369006007 ! -property_value: IAO:0000589 "hyoid bone body (SCTID)" xsd:string -is_a: UBERON:0003999 ! hyoid bone body - -[Term] -id: SCTID:279360009 ! -property_value: IAO:0000589 "posterior lobe of cerebellum (SCTID)" xsd:string -is_a: UBERON:0004002 ! posterior lobe of cerebellum - -[Term] -id: SCTID:362240001 ! -property_value: IAO:0000589 "labium minora (SCTID)" xsd:string -is_a: UBERON:0004014 ! labium minora - -[Term] -id: SCTID:256391000 ! -property_value: IAO:0000589 "chorionic plate (SCTID)" xsd:string -is_a: UBERON:0004027 ! chorionic plate - -[Term] -id: SCTID:280605006 ! -property_value: IAO:0000589 "canal of Schlemm (SCTID)" xsd:string -is_a: UBERON:0004029 ! canal of Schlemm - -[Term] -id: SCTID:279759001 ! -property_value: IAO:0000589 "semicircular canal ampulla (SCTID)" xsd:string -is_a: UBERON:0004043 ! semicircular canal ampulla - -[Term] -id: SCTID:314223007 ! -property_value: IAO:0000589 "subarachnoid cistern (SCTID)" xsd:string -is_a: UBERON:0004050 ! subarachnoid cistern - -[Term] -id: SCTID:56154003 ! -property_value: IAO:0000589 "quadrigeminal cistern (SCTID)" xsd:string -is_a: UBERON:0004052 ! quadrigeminal cistern - -[Term] -id: SCTID:362264000 ! -property_value: IAO:0000589 "external male genitalia (SCTID)" xsd:string -is_a: UBERON:0004053 ! external male genitalia - -[Term] -id: SCTID:310536002 ! -property_value: IAO:0000589 "internal male genitalia (SCTID)" xsd:string -is_a: UBERON:0004054 ! internal male genitalia - -[Term] -id: SCTID:361486000 ! -property_value: IAO:0000589 "frontonasal prominence (SCTID)" xsd:string -is_a: UBERON:0004066 ! frontonasal prominence - -[Term] -id: SCTID:308880000 ! -property_value: IAO:0000589 "lateral nasal prominence (SCTID)" xsd:string -is_a: UBERON:0004067 ! lateral nasal prominence - -[Term] -id: SCTID:308877001 ! -property_value: IAO:0000589 "medial nasal prominence (SCTID)" xsd:string -is_a: UBERON:0004068 ! medial nasal prominence - -[Term] -id: SCTID:279380005 ! -property_value: IAO:0000589 "cerebellum vermis lobule I (SCTID)" xsd:string -is_a: UBERON:0004074 ! cerebellum vermis lobule I - -[Term] -id: SCTID:77232000 ! -property_value: IAO:0000589 "cerebellum vermis lobule I (SCTID)" xsd:string -is_a: UBERON:0004074 ! cerebellum vermis lobule I - -[Term] -id: SCTID:279385000 ! -property_value: IAO:0000589 "cerebellum vermis lobule VI (SCTID)" xsd:string -is_a: UBERON:0004080 ! cerebellum vermis lobule VI - -[Term] -id: SCTID:369044003 ! -property_value: IAO:0000589 "cerebellum vermis lobule VII (SCTID)" xsd:string -is_a: UBERON:0004081 ! cerebellum vermis lobule VII - -[Term] -id: SCTID:362237001 ! -property_value: IAO:0000589 "labium majora (SCTID)" xsd:string -is_a: UBERON:0004085 ! labium majora - -[Term] -id: SCTID:180929003 ! -property_value: IAO:0000589 "brain ventricle (SCTID)" xsd:string -is_a: UBERON:0004086 ! brain ventricle - -[Term] -id: SCTID:244405007 ! -property_value: IAO:0000589 "vena cava (SCTID)" xsd:string -is_a: UBERON:0004087 ! vena cava - -[Term] -id: SCTID:362646004 ! -property_value: IAO:0000589 "periorbital region (SCTID)" xsd:string -is_a: UBERON:0004090 ! periorbital region - -[Term] -id: SCTID:181899003 ! -property_value: IAO:0000589 "odontoid process of cervical vertebra 2 (SCTID)" xsd:string -is_a: UBERON:0004096 ! odontoid process of cervical vertebra 2 - -[Term] -id: SCTID:279371005 ! -property_value: IAO:0000589 "renal collecting system (SCTID)" xsd:string -is_a: UBERON:0004100 ! renal collecting system - -[Term] -id: SCTID:245790000 ! -property_value: IAO:0000589 "alveolar ridge (SCTID)" xsd:string -is_a: UBERON:0004103 ! alveolar ridge - -[Term] -id: SCTID:362547004 ! -property_value: IAO:0000589 "crus of ear (SCTID)" xsd:string -is_a: UBERON:0004106 ! crus of ear - -[Term] -id: SCTID:361736007 ! -property_value: IAO:0000589 "clivus of occipital bone (SCTID)" xsd:string -is_a: UBERON:0004108 ! clivus of occipital bone - -[Term] -id: SCTID:346902003 ! -property_value: IAO:0000589 "anatomical conduit (SCTID)" xsd:string -is_a: UBERON:0004111 ! anatomical conduit - -[Term] -id: SCTID:244778009 ! -property_value: IAO:0000589 "muscle of auditory ossicle (SCTID)" xsd:string -is_a: UBERON:0004113 ! muscle of auditory ossicle - -[Term] -id: SCTID:362551002 ! -property_value: IAO:0000589 "tympanic cavity (SCTID)" xsd:string -is_a: UBERON:0004114 ! tympanic cavity - -[Term] -id: SCTID:34674002 ! -property_value: IAO:0000589 "pharyngeal pouch (SCTID)" xsd:string -is_a: UBERON:0004117 ! pharyngeal pouch - -[Term] -id: SCTID:278861008 ! -property_value: IAO:0000589 "genitourinary system (SCTID)" xsd:string -is_a: UBERON:0004122 ! genitourinary system - -[Term] -id: SCTID:362864008 ! -property_value: IAO:0000589 "optic vesicle (SCTID)" xsd:string -is_a: UBERON:0004128 ! optic vesicle - -[Term] -id: SCTID:360478008 ! -property_value: IAO:0000589 "cerebellar layer (SCTID)" xsd:string -is_a: UBERON:0004130 ! cerebellar layer - -[Term] -id: SCTID:280170001 ! -property_value: IAO:0000589 "trigeminal sensory nucleus (SCTID)" xsd:string -is_a: UBERON:0004132 ! trigeminal sensory nucleus - -[Term] -id: SCTID:277726009 ! -property_value: IAO:0000589 "cardiac vein (SCTID)" xsd:string -is_a: UBERON:0004148 ! cardiac vein - -[Term] -id: SCTID:277723001 ! -property_value: IAO:0000589 "coronary sinus valve (SCTID)" xsd:string -is_a: UBERON:0004150 ! coronary sinus valve - -[Term] -id: SCTID:276456008 ! -property_value: IAO:0000589 "cardiac chamber (SCTID)" xsd:string -is_a: UBERON:0004151 ! cardiac chamber - -[Term] -id: SCTID:361468003 ! -property_value: IAO:0000589 "ventricular septum intermedium (SCTID)" xsd:string -is_a: UBERON:0004153 ! ventricular septum intermedium - -[Term] -id: SCTID:362017007 ! -property_value: IAO:0000589 "atrial septum primum (SCTID)" xsd:string -is_a: UBERON:0004154 ! atrial septum primum - -[Term] -id: SCTID:308850005 ! -property_value: IAO:0000589 "atrial septum secundum (SCTID)" xsd:string -is_a: UBERON:0004155 ! atrial septum secundum - -[Term] -id: SCTID:308819008 ! -property_value: IAO:0000589 "septum transversum (SCTID)" xsd:string -is_a: UBERON:0004161 ! septum transversum - -[Term] -id: SCTID:424149007 ! -property_value: IAO:0000589 "spinal cord ventral commissure (SCTID)" xsd:string -is_a: UBERON:0004170 ! spinal cord ventral commissure - -[Term] -id: SCTID:362404001 ! -property_value: IAO:0000589 "pons reticulospinal tract (SCTID)" xsd:string -is_a: UBERON:0004172 ! pons reticulospinal tract - -[Term] -id: SCTID:362207005 ! -property_value: IAO:0000589 "external genitalia (SCTID)" xsd:string -is_a: UBERON:0004176 ! external genitalia - -[Term] -id: SCTID:361338006 ! -property_value: IAO:0000589 "hemopoietic organ (SCTID)" xsd:string -is_a: UBERON:0004177 ! hemopoietic organ - -[Term] -id: SCTID:41474005 ! -property_value: IAO:0000589 "Harderian gland (SCTID)" xsd:string -is_a: UBERON:0004187 ! Harderian gland - -[Term] -id: SCTID:361328001 ! -property_value: IAO:0000589 "kidney pyramid (SCTID)" xsd:string -is_a: UBERON:0004200 ! kidney pyramid - -[Term] -id: SCTID:362049007 ! -property_value: IAO:0000589 "glomerular capillary (SCTID)" xsd:string -is_a: UBERON:0004212 ! glomerular capillary - -[Term] -id: SCTID:299705008 ! -property_value: IAO:0000589 "muscular coat of vas deferens (SCTID)" xsd:string -is_a: UBERON:0004224 ! muscular coat of vas deferens - -[Term] -id: SCTID:245013005 ! -property_value: IAO:0000589 "hindlimb stylopod muscle (SCTID)" xsd:string -is_a: UBERON:0004252 ! hindlimb stylopod muscle - -[Term] -id: SCTID:181631004 ! -property_value: IAO:0000589 "forelimb zeugopod muscle (SCTID)" xsd:string -is_a: UBERON:0004254 ! forelimb zeugopod muscle - -[Term] -id: SCTID:244979005 ! -property_value: IAO:0000589 "forelimb stylopod muscle (SCTID)" xsd:string -is_a: UBERON:0004255 ! forelimb stylopod muscle - -[Term] -id: SCTID:265806001 ! -property_value: IAO:0000589 "hindlimb zeugopod muscle (SCTID)" xsd:string -is_a: UBERON:0004256 ! hindlimb zeugopod muscle - -[Term] -id: SCTID:181547006 ! -property_value: IAO:0000589 "upper leg skin (SCTID)" xsd:string -is_a: UBERON:0004262 ! upper leg skin - -[Term] -id: SCTID:181531009 ! -property_value: IAO:0000589 "upper arm skin (SCTID)" xsd:string -is_a: UBERON:0004263 ! upper arm skin - -[Term] -id: SCTID:244180007 ! -property_value: IAO:0000589 "lower leg skin (SCTID)" xsd:string -is_a: UBERON:0004264 ! lower leg skin - -[Term] -id: SCTID:361378004 ! -property_value: IAO:0000589 "skeleton (SCTID)" xsd:string -is_a: UBERON:0004288 ! skeleton - -[Term] -id: SCTID:276146002 ! -property_value: IAO:0000589 "parasympathetic nerve (SCTID)" xsd:string -is_a: UBERON:0004293 ! parasympathetic nerve - -[Term] -id: SCTID:243993006 ! -property_value: IAO:0000589 "glomerular capillary endothelium (SCTID)" xsd:string -is_a: UBERON:0004294 ! glomerular capillary endothelium - -[Term] -id: SCTID:299711006 ! -property_value: IAO:0000589 "distal phalanx (SCTID)" xsd:string -is_a: UBERON:0004300 ! distal phalanx - -[Term] -id: SCTID:299710007 ! -property_value: IAO:0000589 "middle phalanx (SCTID)" xsd:string -is_a: UBERON:0004301 ! middle phalanx - -[Term] -id: SCTID:299708005 ! -property_value: IAO:0000589 "proximal phalanx (SCTID)" xsd:string -is_a: UBERON:0004302 ! proximal phalanx - -[Term] -id: SCTID:361784003 ! -property_value: IAO:0000589 "distal phalanx of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0004311 ! distal phalanx of manual digit 2 - -[Term] -id: SCTID:361786001 ! -property_value: IAO:0000589 "distal phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004312 ! distal phalanx of manual digit 3 - -[Term] -id: SCTID:370674002 ! -property_value: IAO:0000589 "distal phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004312 ! distal phalanx of manual digit 3 - -[Term] -id: SCTID:361788000 ! -property_value: IAO:0000589 "distal phalanx of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0004313 ! distal phalanx of manual digit 4 - -[Term] -id: SCTID:361790004 ! -property_value: IAO:0000589 "distal phalanx of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0004314 ! distal phalanx of manual digit 5 - -[Term] -id: SCTID:361799003 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 1 (SCTID)" xsd:string -is_a: UBERON:0004315 ! distal phalanx of pedal digit 1 - -[Term] -id: SCTID:361801000 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 2 (SCTID)" xsd:string -is_a: UBERON:0004316 ! distal phalanx of pedal digit 2 - -[Term] -id: SCTID:361803002 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0004317 ! distal phalanx of pedal digit 3 - -[Term] -id: SCTID:370673008 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0004317 ! distal phalanx of pedal digit 3 - -[Term] -id: SCTID:361805009 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 4 (SCTID)" xsd:string -is_a: UBERON:0004318 ! distal phalanx of pedal digit 4 - -[Term] -id: SCTID:10770001 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0004319 ! distal phalanx of pedal digit 5 - -[Term] -id: SCTID:244674003 ! -property_value: IAO:0000589 "distal phalanx of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0004319 ! distal phalanx of pedal digit 5 - -[Term] -id: SCTID:263407002 ! -property_value: IAO:0000589 "middle phalanx of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0004320 ! middle phalanx of manual digit 2 - -[Term] -id: SCTID:263408007 ! -property_value: IAO:0000589 "middle phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004321 ! middle phalanx of manual digit 3 - -[Term] -id: SCTID:370729003 ! -property_value: IAO:0000589 "middle phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004321 ! middle phalanx of manual digit 3 - -[Term] -id: SCTID:263409004 ! -property_value: IAO:0000589 "middle phalanx of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0004322 ! middle phalanx of manual digit 4 - -[Term] -id: SCTID:263410009 ! -property_value: IAO:0000589 "middle phalanx of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0004323 ! middle phalanx of manual digit 5 - -[Term] -id: SCTID:182152006 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 2 (SCTID)" xsd:string -is_a: UBERON:0004324 ! middle phalanx of pedal digit 2 - -[Term] -id: SCTID:182154007 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0004325 ! middle phalanx of pedal digit 3 - -[Term] -id: SCTID:370677009 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0004325 ! middle phalanx of pedal digit 3 - -[Term] -id: SCTID:182156009 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 4 (SCTID)" xsd:string -is_a: UBERON:0004326 ! middle phalanx of pedal digit 4 - -[Term] -id: SCTID:182158005 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0004327 ! middle phalanx of pedal digit 5 - -[Term] -id: SCTID:244673009 ! -property_value: IAO:0000589 "middle phalanx of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0004327 ! middle phalanx of pedal digit 5 - -[Term] -id: SCTID:263403003 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0004328 ! proximal phalanx of manual digit 2 - -[Term] -id: SCTID:263404009 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004329 ! proximal phalanx of manual digit 3 - -[Term] -id: SCTID:370735003 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004329 ! proximal phalanx of manual digit 3 - -[Term] -id: SCTID:263405005 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0004330 ! proximal phalanx of manual digit 4 - -[Term] -id: SCTID:263406006 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0004331 ! proximal phalanx of manual digit 5 - -[Term] -id: SCTID:182150003 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 1 (SCTID)" xsd:string -is_a: UBERON:0004332 ! proximal phalanx of pedal digit 1 - -[Term] -id: SCTID:182151004 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 2 (SCTID)" xsd:string -is_a: UBERON:0004333 ! proximal phalanx of pedal digit 2 - -[Term] -id: SCTID:182153001 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0004334 ! proximal phalanx of pedal digit 3 - -[Term] -id: SCTID:370734004 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0004334 ! proximal phalanx of pedal digit 3 - -[Term] -id: SCTID:182155008 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 4 (SCTID)" xsd:string -is_a: UBERON:0004335 ! proximal phalanx of pedal digit 4 - -[Term] -id: SCTID:182157000 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0004336 ! proximal phalanx of pedal digit 5 - -[Term] -id: SCTID:244672004 ! -property_value: IAO:0000589 "proximal phalanx of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0004336 ! proximal phalanx of pedal digit 5 - -[Term] -id: SCTID:182007006 ! -property_value: IAO:0000589 "distal phalanx of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0004337 ! distal phalanx of manual digit 1 - -[Term] -id: SCTID:181992006 ! -property_value: IAO:0000589 "proximal phalanx of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0004338 ! proximal phalanx of manual digit 1 - -[Term] -id: SCTID:140592008 ! -property_value: IAO:0000589 "vault of skull (SCTID)" xsd:string -is_a: UBERON:0004339 ! vault of skull - -[Term] -id: SCTID:308825007 ! -property_value: IAO:0000589 "allantois (SCTID)" xsd:string -is_a: UBERON:0004340 ! allantois - -[Term] -id: SCTID:361438007 ! -property_value: IAO:0000589 "primitive streak (SCTID)" xsd:string -is_a: UBERON:0004341 ! primitive streak - -[Term] -id: SCTID:362860004 ! -property_value: IAO:0000589 "cardinal vein (SCTID)" xsd:string -is_a: UBERON:0004344 ! cardinal vein - -[Term] -id: SCTID:362282002 ! -property_value: IAO:0000589 "caput epididymis (SCTID)" xsd:string -is_a: UBERON:0004358 ! caput epididymis - -[Term] -id: SCTID:279620001 ! -property_value: IAO:0000589 "corpus epididymis (SCTID)" xsd:string -is_a: UBERON:0004359 ! corpus epididymis - -[Term] -id: SCTID:279621002 ! -property_value: IAO:0000589 "cauda epididymis (SCTID)" xsd:string -is_a: UBERON:0004360 ! cauda epididymis - -[Term] -id: SCTID:66275001 ! -property_value: IAO:0000589 "stylohyoid ligament (SCTID)" xsd:string -is_a: UBERON:0004361 ! stylohyoid ligament - -[Term] -id: SCTID:308767008 ! -property_value: IAO:0000589 "pharyngeal arch 1 (SCTID)" xsd:string -is_a: UBERON:0004362 ! pharyngeal arch 1 - -[Term] -id: SCTID:281076002 ! -property_value: IAO:0000589 "Descemet's membrane (SCTID)" xsd:string -is_a: UBERON:0004367 ! Descemet's membrane - -[Term] -id: SCTID:281075003 ! -property_value: IAO:0000589 "anterior limiting lamina of cornea (SCTID)" xsd:string -is_a: UBERON:0004370 ! anterior limiting lamina of cornea - -[Term] -id: SCTID:279999006 ! -property_value: IAO:0000589 "distal epiphysis (SCTID)" xsd:string -is_a: UBERON:0004379 ! distal epiphysis - -[Term] -id: SCTID:279998003 ! -property_value: IAO:0000589 "proximal epiphysis (SCTID)" xsd:string -is_a: UBERON:0004380 ! proximal epiphysis - -[Term] -id: SCTID:313054009 ! -property_value: IAO:0000589 "epiphysis of humerus (SCTID)" xsd:string -is_a: UBERON:0004382 ! epiphysis of humerus - -[Term] -id: SCTID:314626006 ! -property_value: IAO:0000589 "epiphysis of tibia (SCTID)" xsd:string -is_a: UBERON:0004383 ! epiphysis of tibia - -[Term] -id: SCTID:314625005 ! -property_value: IAO:0000589 "epiphysis of femur (SCTID)" xsd:string -is_a: UBERON:0004384 ! epiphysis of femur - -[Term] -id: SCTID:313055005 ! -property_value: IAO:0000589 "epiphysis of radius (SCTID)" xsd:string -is_a: UBERON:0004385 ! epiphysis of radius - -[Term] -id: SCTID:313056006 ! -property_value: IAO:0000589 "epiphysis of ulna (SCTID)" xsd:string -is_a: UBERON:0004386 ! epiphysis of ulna - -[Term] -id: SCTID:314620000 ! -property_value: IAO:0000589 "epiphysis of phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0004387 ! epiphysis of phalanx of manus - -[Term] -id: SCTID:313057002 ! -property_value: IAO:0000589 "epiphysis of metatarsal bone (SCTID)" xsd:string -is_a: UBERON:0004389 ! epiphysis of metatarsal bone - -[Term] -id: SCTID:314907001 ! -property_value: IAO:0000589 "epiphysis of metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0004390 ! epiphysis of metacarpal bone - -[Term] -id: SCTID:310655007 ! -property_value: IAO:0000589 "distal epiphysis of humerus (SCTID)" xsd:string -is_a: UBERON:0004404 ! distal epiphysis of humerus - -[Term] -id: SCTID:302527001 ! -property_value: IAO:0000589 "distal epiphysis of tibia (SCTID)" xsd:string -is_a: UBERON:0004405 ! distal epiphysis of tibia - -[Term] -id: SCTID:280016000 ! -property_value: IAO:0000589 "distal epiphysis of femur (SCTID)" xsd:string -is_a: UBERON:0004406 ! distal epiphysis of femur - -[Term] -id: SCTID:280013008 ! -property_value: IAO:0000589 "distal epiphysis of radius (SCTID)" xsd:string -is_a: UBERON:0004407 ! distal epiphysis of radius - -[Term] -id: SCTID:302521000 ! -property_value: IAO:0000589 "distal epiphysis of ulna (SCTID)" xsd:string -is_a: UBERON:0004408 ! distal epiphysis of ulna - -[Term] -id: SCTID:272707006 ! -property_value: IAO:0000589 "distal epiphysis of phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0004409 ! distal epiphysis of phalanx of manus - -[Term] -id: SCTID:129111008 ! -property_value: IAO:0000589 "distal epiphysis of fibula (SCTID)" xsd:string -is_a: UBERON:0004410 ! distal epiphysis of fibula - -[Term] -id: SCTID:280018004 ! -property_value: IAO:0000589 "distal epiphysis of fibula (SCTID)" xsd:string -is_a: UBERON:0004410 ! distal epiphysis of fibula - -[Term] -id: SCTID:280028008 ! -property_value: IAO:0000589 "proximal epiphysis of humerus (SCTID)" xsd:string -is_a: UBERON:0004411 ! proximal epiphysis of humerus - -[Term] -id: SCTID:244702009 ! -property_value: IAO:0000589 "proximal epiphysis of femur (SCTID)" xsd:string -is_a: UBERON:0004412 ! proximal epiphysis of femur - -[Term] -id: SCTID:280029000 ! -property_value: IAO:0000589 "proximal epiphysis of radius (SCTID)" xsd:string -is_a: UBERON:0004413 ! proximal epiphysis of radius - -[Term] -id: SCTID:272704004 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0004414 ! proximal epiphysis of phalanx of manus - -[Term] -id: SCTID:119545008 ! -property_value: IAO:0000589 "proximal epiphysis of metatarsal bone (SCTID)" xsd:string -is_a: UBERON:0004415 ! proximal epiphysis of metatarsal bone - -[Term] -id: SCTID:272695001 ! -property_value: IAO:0000589 "proximal epiphysis of metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0004416 ! proximal epiphysis of metacarpal bone - -[Term] -id: SCTID:272700008 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0004417 ! proximal epiphysis of phalanx of manual digit 1 - -[Term] -id: SCTID:368307004 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0004418 ! proximal epiphysis of phalanx of manual digit 2 - -[Term] -id: SCTID:181997000 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004419 ! proximal epiphysis of phalanx of manual digit 3 - -[Term] -id: SCTID:368337008 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0004420 ! proximal epiphysis of phalanx of manual digit 4 - -[Term] -id: SCTID:368351008 ! -property_value: IAO:0000589 "proximal epiphysis of phalanx of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0004421 ! proximal epiphysis of phalanx of manual digit 5 - -[Term] -id: SCTID:181978000 ! -property_value: IAO:0000589 "proximal epiphysis of first metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0004422 ! proximal epiphysis of first metacarpal bone - -[Term] -id: SCTID:263461004 ! -property_value: IAO:0000589 "proximal epiphysis of second metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0004423 ! proximal epiphysis of second metacarpal bone - -[Term] -id: SCTID:263465008 ! -property_value: IAO:0000589 "proximal epiphysis of third metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0004424 ! proximal epiphysis of third metacarpal bone - -[Term] -id: SCTID:263469002 ! -property_value: IAO:0000589 "proximal epiphysis of fourth metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0004425 ! proximal epiphysis of fourth metacarpal bone - -[Term] -id: SCTID:263473004 ! -property_value: IAO:0000589 "proximal epiphysis of fifth metacarpal bone (SCTID)" xsd:string -is_a: UBERON:0004426 ! proximal epiphysis of fifth metacarpal bone - -[Term] -id: SCTID:182124002 ! -property_value: IAO:0000589 "proximal epiphysis of first metatarsal bone (SCTID)" xsd:string -is_a: UBERON:0004427 ! proximal epiphysis of first metatarsal bone - -[Term] -id: SCTID:182130002 ! -property_value: IAO:0000589 "proximal epiphysis of second metatarsal bone (SCTID)" xsd:string -is_a: UBERON:0004428 ! proximal epiphysis of second metatarsal bone - -[Term] -id: SCTID:182135007 ! -property_value: IAO:0000589 "proximal epiphysis of third metatarsal bone (SCTID)" xsd:string -is_a: UBERON:0004429 ! proximal epiphysis of third metatarsal bone - -[Term] -id: SCTID:182140004 ! -property_value: IAO:0000589 "proximal epiphysis of fourth metatarsal bone (SCTID)" xsd:string -is_a: UBERON:0004430 ! proximal epiphysis of fourth metatarsal bone - -[Term] -id: SCTID:182145009 ! -property_value: IAO:0000589 "proximal epiphysis of fifth metatarsal bone (SCTID)" xsd:string -is_a: UBERON:0004431 ! proximal epiphysis of fifth metatarsal bone - -[Term] -id: SCTID:263445001 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0004432 ! proximal epiphysis of distal phalanx of manual digit 2 - -[Term] -id: SCTID:263446000 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004433 ! proximal epiphysis of distal phalanx of manual digit 3 - -[Term] -id: SCTID:263447009 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0004434 ! proximal epiphysis of distal phalanx of manual digit 4 - -[Term] -id: SCTID:263448004 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0004435 ! proximal epiphysis of distal phalanx of manual digit 5 - -[Term] -id: SCTID:263428006 ! -property_value: IAO:0000589 "proximal epiphysis of middle phalanx of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0004436 ! proximal epiphysis of middle phalanx of manual digit 2 - -[Term] -id: SCTID:263429003 ! -property_value: IAO:0000589 "proximal epiphysis of middle phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004437 ! proximal epiphysis of middle phalanx of manual digit 3 - -[Term] -id: SCTID:263430008 ! -property_value: IAO:0000589 "proximal epiphysis of middle phalanx of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0004438 ! proximal epiphysis of middle phalanx of manual digit 4 - -[Term] -id: SCTID:263431007 ! -property_value: IAO:0000589 "proximal epiphysis of middle phalanx of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0004439 ! proximal epiphysis of middle phalanx of manual digit 5 - -[Term] -id: SCTID:263412001 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0004440 ! proximal epiphysis of proximal phalanx of manual digit 2 - -[Term] -id: SCTID:263413006 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0004441 ! proximal epiphysis of proximal phalanx of manual digit 3 - -[Term] -id: SCTID:263414000 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0004442 ! proximal epiphysis of proximal phalanx of manual digit 4 - -[Term] -id: SCTID:263415004 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0004443 ! proximal epiphysis of proximal phalanx of manual digit 5 - -[Term] -id: SCTID:182008001 ! -property_value: IAO:0000589 "proximal epiphysis of distal phalanx of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0004444 ! proximal epiphysis of distal phalanx of manual digit 1 - -[Term] -id: SCTID:181993001 ! -property_value: IAO:0000589 "proximal epiphysis of proximal phalanx of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0004445 ! proximal epiphysis of proximal phalanx of manual digit 1 - -[Term] -id: SCTID:280033007 ! -property_value: IAO:0000589 "epiphysis of phalanx (SCTID)" xsd:string -is_a: UBERON:0004446 ! epiphysis of phalanx - -[Term] -id: SCTID:110520001 ! -property_value: IAO:0000589 "distal epiphysis of phalanx (SCTID)" xsd:string -is_a: UBERON:0004448 ! distal epiphysis of phalanx - -[Term] -id: SCTID:181308008 ! -property_value: IAO:0000589 "cerebral artery (SCTID)" xsd:string -is_a: UBERON:0004449 ! cerebral artery - -[Term] -id: SCTID:281060006 ! -property_value: IAO:0000589 "gastric vein (SCTID)" xsd:string -is_a: UBERON:0004450 ! gastric vein - -[Term] -id: SCTID:361289009 ! -property_value: IAO:0000589 "carpal region (SCTID)" xsd:string -is_a: UBERON:0004452 ! carpal region - -[Term] -id: SCTID:370638006 ! -property_value: IAO:0000589 "metacarpus region (SCTID)" xsd:string -is_a: UBERON:0004453 ! metacarpus region - -[Term] -id: SCTID:361292008 ! -property_value: IAO:0000589 "tarsal region (SCTID)" xsd:string -is_a: UBERON:0004454 ! tarsal region - -[Term] -id: SCTID:244356004 ! -property_value: IAO:0000589 "papillary muscle of right ventricle (SCTID)" xsd:string -is_a: UBERON:0004523 ! papillary muscle of right ventricle - -[Term] -id: SCTID:244347007 ! -property_value: IAO:0000589 "papillary muscle of left ventricle (SCTID)" xsd:string -is_a: UBERON:0004524 ! papillary muscle of left ventricle - -[Term] -id: SCTID:245795005 ! -property_value: IAO:0000589 "alveolar process of maxilla (SCTID)" xsd:string -is_a: UBERON:0004527 ! alveolar process of maxilla - -[Term] -id: SCTID:245791001 ! -property_value: IAO:0000589 "alveolar ridge of mandible (SCTID)" xsd:string -is_a: UBERON:0004528 ! alveolar ridge of mandible - -[Term] -id: SCTID:367720001 ! -property_value: IAO:0000589 "left testis (SCTID)" xsd:string -is_a: UBERON:0004533 ! left testis - -[Term] -id: SCTID:367719007 ! -property_value: IAO:0000589 "right testis (SCTID)" xsd:string -is_a: UBERON:0004534 ! right testis - -[Term] -id: SCTID:278198007 ! -property_value: IAO:0000589 "cardiovascular system (SCTID)" xsd:string -is_a: UBERON:0004535 ! cardiovascular system - -[Term] -id: SCTID:362209008 ! -property_value: IAO:0000589 "left kidney (SCTID)" xsd:string -is_a: UBERON:0004538 ! left kidney - -[Term] -id: SCTID:362208000 ! -property_value: IAO:0000589 "right kidney (SCTID)" xsd:string -is_a: UBERON:0004539 ! right kidney - -[Term] -id: SCTID:279300007 ! -property_value: IAO:0000589 "external capsule of telencephalon (SCTID)" xsd:string -is_a: UBERON:0004545 ! external capsule of telencephalon - -[Term] -id: SCTID:282814006 ! -property_value: IAO:0000589 "cribriform plate (SCTID)" xsd:string -is_a: UBERON:0004546 ! cribriform plate - -[Term] -id: SCTID:255498003 ! -property_value: IAO:0000589 "decidua capsularis (SCTID)" xsd:string -is_a: UBERON:0004547 ! decidua capsularis - -[Term] -id: SCTID:362503005 ! -property_value: IAO:0000589 "left eye (SCTID)" xsd:string -is_a: UBERON:0004548 ! left eye - -[Term] -id: SCTID:362502000 ! -property_value: IAO:0000589 "right eye (SCTID)" xsd:string -is_a: UBERON:0004549 ! right eye - -[Term] -id: SCTID:267809009 ! -property_value: IAO:0000589 "gastroesophageal sphincter (SCTID)" xsd:string -is_a: UBERON:0004550 ! gastroesophageal sphincter - -[Term] -id: SCTID:181335004 ! -property_value: IAO:0000589 "digital artery (SCTID)" xsd:string -is_a: UBERON:0004552 ! digital artery - -[Term] -id: SCTID:265791006 ! -property_value: IAO:0000589 "forelimb digital artery (SCTID)" xsd:string -is_a: UBERON:0004553 ! forelimb digital artery - -[Term] -id: SCTID:362030008 ! -property_value: IAO:0000589 "arterial system (SCTID)" xsd:string -is_a: UBERON:0004572 ! arterial system - -[Term] -id: SCTID:362060003 ! -property_value: IAO:0000589 "venous system (SCTID)" xsd:string -is_a: UBERON:0004582 ! venous system - -[Term] -id: SCTID:182016005 ! -property_value: IAO:0000589 "rib 1 (SCTID)" xsd:string -is_a: UBERON:0004601 ! rib 1 - -[Term] -id: SCTID:244656007 ! -property_value: IAO:0000589 "rib 2 (SCTID)" xsd:string -is_a: UBERON:0004602 ! rib 2 - -[Term] -id: SCTID:244658008 ! -property_value: IAO:0000589 "rib 3 (SCTID)" xsd:string -is_a: UBERON:0004603 ! rib 3 - -[Term] -id: SCTID:244659000 ! -property_value: IAO:0000589 "rib 4 (SCTID)" xsd:string -is_a: UBERON:0004604 ! rib 4 - -[Term] -id: SCTID:244660005 ! -property_value: IAO:0000589 "rib 5 (SCTID)" xsd:string -is_a: UBERON:0004605 ! rib 5 - -[Term] -id: SCTID:244661009 ! -property_value: IAO:0000589 "rib 6 (SCTID)" xsd:string -is_a: UBERON:0004606 ! rib 6 - -[Term] -id: SCTID:244662002 ! -property_value: IAO:0000589 "rib 7 (SCTID)" xsd:string -is_a: UBERON:0004607 ! rib 7 - -[Term] -id: SCTID:244664001 ! -property_value: IAO:0000589 "rib 9 (SCTID)" xsd:string -is_a: UBERON:0004608 ! rib 9 - -[Term] -id: SCTID:244665000 ! -property_value: IAO:0000589 "rib 10 (SCTID)" xsd:string -is_a: UBERON:0004609 ! rib 10 - -[Term] -id: SCTID:244666004 ! -property_value: IAO:0000589 "rib 11 (SCTID)" xsd:string -is_a: UBERON:0004610 ! rib 11 - -[Term] -id: SCTID:244667008 ! -property_value: IAO:0000589 "rib 12 (SCTID)" xsd:string -is_a: UBERON:0004611 ! rib 12 - -[Term] -id: SCTID:181823007 ! -property_value: IAO:0000589 "mammalian cervical vertebra 3 (SCTID)" xsd:string -is_a: UBERON:0004612 ! mammalian cervical vertebra 3 - -[Term] -id: SCTID:181824001 ! -property_value: IAO:0000589 "mammalian cervical vertebra 4 (SCTID)" xsd:string -is_a: UBERON:0004613 ! mammalian cervical vertebra 4 - -[Term] -id: SCTID:181825000 ! -property_value: IAO:0000589 "mammalian cervical vertebra 5 (SCTID)" xsd:string -is_a: UBERON:0004614 ! mammalian cervical vertebra 5 - -[Term] -id: SCTID:181826004 ! -property_value: IAO:0000589 "mammalian cervical vertebra 6 (SCTID)" xsd:string -is_a: UBERON:0004615 ! mammalian cervical vertebra 6 - -[Term] -id: SCTID:181827008 ! -property_value: IAO:0000589 "mammalian cervical vertebra 7 (SCTID)" xsd:string -is_a: UBERON:0004616 ! mammalian cervical vertebra 7 - -[Term] -id: SCTID:181841004 ! -property_value: IAO:0000589 "lumbar vertebra 1 (SCTID)" xsd:string -is_a: UBERON:0004617 ! lumbar vertebra 1 - -[Term] -id: SCTID:181842006 ! -property_value: IAO:0000589 "lumbar vertebra 2 (SCTID)" xsd:string -is_a: UBERON:0004618 ! lumbar vertebra 2 - -[Term] -id: SCTID:181843001 ! -property_value: IAO:0000589 "lumbar vertebra 3 (SCTID)" xsd:string -is_a: UBERON:0004619 ! lumbar vertebra 3 - -[Term] -id: SCTID:181844007 ! -property_value: IAO:0000589 "lumbar vertebra 4 (SCTID)" xsd:string -is_a: UBERON:0004620 ! lumbar vertebra 4 - -[Term] -id: SCTID:181845008 ! -property_value: IAO:0000589 "lumbar vertebra 5 (SCTID)" xsd:string -is_a: UBERON:0004621 ! lumbar vertebra 5 - -[Term] -id: SCTID:181846009 ! -property_value: IAO:0000589 "sacral vertebra 1 (SCTID)" xsd:string -is_a: UBERON:0004622 ! sacral vertebra 1 - -[Term] -id: SCTID:181847000 ! -property_value: IAO:0000589 "sacral vertebra 2 (SCTID)" xsd:string -is_a: UBERON:0004623 ! sacral vertebra 2 - -[Term] -id: SCTID:181848005 ! -property_value: IAO:0000589 "sacral vertebra 3 (SCTID)" xsd:string -is_a: UBERON:0004624 ! sacral vertebra 3 - -[Term] -id: SCTID:181849002 ! -property_value: IAO:0000589 "sacral vertebra 4 (SCTID)" xsd:string -is_a: UBERON:0004625 ! sacral vertebra 4 - -[Term] -id: SCTID:181828003 ! -property_value: IAO:0000589 "thoracic vertebra 1 (SCTID)" xsd:string -is_a: UBERON:0004626 ! thoracic vertebra 1 - -[Term] -id: SCTID:181829006 ! -property_value: IAO:0000589 "thoracic vertebra 2 (SCTID)" xsd:string -is_a: UBERON:0004627 ! thoracic vertebra 2 - -[Term] -id: SCTID:181830001 ! -property_value: IAO:0000589 "thoracic vertebra 3 (SCTID)" xsd:string -is_a: UBERON:0004628 ! thoracic vertebra 3 - -[Term] -id: SCTID:181831002 ! -property_value: IAO:0000589 "thoracic vertebra 4 (SCTID)" xsd:string -is_a: UBERON:0004629 ! thoracic vertebra 4 - -[Term] -id: SCTID:181832009 ! -property_value: IAO:0000589 "thoracic vertebra 5 (SCTID)" xsd:string -is_a: UBERON:0004630 ! thoracic vertebra 5 - -[Term] -id: SCTID:181834005 ! -property_value: IAO:0000589 "thoracic vertebra 6 (SCTID)" xsd:string -is_a: UBERON:0004631 ! thoracic vertebra 6 - -[Term] -id: SCTID:181835006 ! -property_value: IAO:0000589 "thoracic vertebra 7 (SCTID)" xsd:string -is_a: UBERON:0004632 ! thoracic vertebra 7 - -[Term] -id: SCTID:181837003 ! -property_value: IAO:0000589 "thoracic vertebra 9 (SCTID)" xsd:string -is_a: UBERON:0004633 ! thoracic vertebra 9 - -[Term] -id: SCTID:181838008 ! -property_value: IAO:0000589 "thoracic vertebra 10 (SCTID)" xsd:string -is_a: UBERON:0004634 ! thoracic vertebra 10 - -[Term] -id: SCTID:181839000 ! -property_value: IAO:0000589 "thoracic vertebra 11 (SCTID)" xsd:string -is_a: UBERON:0004635 ! thoracic vertebra 11 - -[Term] -id: SCTID:181840003 ! -property_value: IAO:0000589 "thoracic vertebra 12 (SCTID)" xsd:string -is_a: UBERON:0004636 ! thoracic vertebra 12 - -[Term] -id: SCTID:361515007 ! -property_value: IAO:0000589 "otic capsule (SCTID)" xsd:string -is_a: UBERON:0004637 ! otic capsule - -[Term] -id: SCTID:67498004 ! -property_value: IAO:0000589 "renal afferent arteriole (SCTID)" xsd:string -is_a: UBERON:0004639 ! renal afferent arteriole - -[Term] -id: SCTID:29926005 ! -property_value: IAO:0000589 "renal efferent arteriole (SCTID)" xsd:string -is_a: UBERON:0004640 ! renal efferent arteriole - -[Term] -id: SCTID:329635002 ! -property_value: IAO:0000589 "spleen capsule (SCTID)" xsd:string -is_a: UBERON:0004641 ! spleen capsule - -[Term] -id: SCTID:362316006 ! -property_value: IAO:0000589 "third ventricle ependyma (SCTID)" xsd:string -is_a: UBERON:0004642 ! third ventricle ependyma - -[Term] -id: SCTID:369275002 ! -property_value: IAO:0000589 "lateral ventricle ependyma (SCTID)" xsd:string -is_a: UBERON:0004643 ! lateral ventricle ependyma - -[Term] -id: SCTID:369277005 ! -property_value: IAO:0000589 "fourth ventricle ependyma (SCTID)" xsd:string -is_a: UBERON:0004644 ! fourth ventricle ependyma - -[Term] -id: SCTID:25631003 ! -property_value: IAO:0000589 "urinary bladder urothelium (SCTID)" xsd:string -is_a: UBERON:0004645 ! urinary bladder urothelium - -[Term] -id: SCTID:148167004 ! -property_value: IAO:0000589 "infraorbital artery (SCTID)" xsd:string -is_a: UBERON:0004646 ! infraorbital artery - -[Term] -id: SCTID:362194004 ! -property_value: IAO:0000589 "liver lobule (SCTID)" xsd:string -is_a: UBERON:0004647 ! liver lobule - -[Term] -id: SCTID:47720007 ! -property_value: IAO:0000589 "esophagus muscularis mucosa (SCTID)" xsd:string -is_a: UBERON:0004648 ! esophagus muscularis mucosa - -[Term] -id: SCTID:140390001 ! -property_value: IAO:0000589 "sphenoid bone pterygoid process (SCTID)" xsd:string -is_a: UBERON:0004649 ! sphenoid bone pterygoid process - -[Term] -id: SCTID:181916005 ! -property_value: IAO:0000589 "scapula spine (SCTID)" xsd:string -is_a: UBERON:0004651 ! scapula spine - -[Term] -id: SCTID:181927007 ! -property_value: IAO:0000589 "humerus diaphysis (SCTID)" xsd:string -is_a: UBERON:0004652 ! humerus diaphysis - -[Term] -id: SCTID:122772003 ! -property_value: IAO:0000589 "temporal process of zygomatic bone (SCTID)" xsd:string -is_a: UBERON:0004654 ! temporal process of zygomatic bone - -[Term] -id: SCTID:414110008 ! -property_value: IAO:0000589 "zygomatic process of temporal bone (SCTID)" xsd:string -is_a: UBERON:0004655 ! zygomatic process of temporal bone - -[Term] -id: SCTID:51354009 ! -property_value: IAO:0000589 "mandible head (SCTID)" xsd:string -is_a: UBERON:0004658 ! mandible head - -[Term] -id: SCTID:368875004 ! -property_value: IAO:0000589 "mandible neck (SCTID)" xsd:string -is_a: UBERON:0004659 ! mandible neck - -[Term] -id: SCTID:244691004 ! -property_value: IAO:0000589 "mandible coronoid process (SCTID)" xsd:string -is_a: UBERON:0004660 ! mandible coronoid process - -[Term] -id: SCTID:277423002 ! -property_value: IAO:0000589 "vertebra lamina (SCTID)" xsd:string -is_a: UBERON:0004662 ! vertebra lamina - -[Term] -id: SCTID:24996002 ! -property_value: IAO:0000589 "aorta tunica adventitia (SCTID)" xsd:string -is_a: UBERON:0004664 ! aorta tunica adventitia - -[Term] -id: SCTID:278228007 ! -property_value: IAO:0000589 "interventricular septum membranous part (SCTID)" xsd:string -is_a: UBERON:0004666 ! interventricular septum membranous part - -[Term] -id: SCTID:12766003 ! -property_value: IAO:0000589 "ependyma (SCTID)" xsd:string -is_a: UBERON:0004670 ! ependyma - -[Term] -id: SCTID:279206004 ! -property_value: IAO:0000589 "gyrus rectus (SCTID)" xsd:string -is_a: UBERON:0004671 ! gyrus rectus - -[Term] -id: SCTID:362314009 ! -property_value: IAO:0000589 "posterior horn lateral ventricle (SCTID)" xsd:string -is_a: UBERON:0004672 ! posterior horn lateral ventricle - -[Term] -id: SCTID:280185007 ! -property_value: IAO:0000589 "trigeminal nerve root (SCTID)" xsd:string -is_a: UBERON:0004673 ! trigeminal nerve root - -[Term] -id: SCTID:280186008 ! -property_value: IAO:0000589 "facial nerve root (SCTID)" xsd:string -is_a: UBERON:0004674 ! facial nerve root - -[Term] -id: SCTID:362427009 ! -property_value: IAO:0000589 "spinal cord gray commissure (SCTID)" xsd:string -is_a: UBERON:0004677 ! spinal cord gray commissure - -[Term] -id: SCTID:369117006 ! -property_value: IAO:0000589 "body of fornix (SCTID)" xsd:string -is_a: UBERON:0004680 ! body of fornix - -[Term] -id: SCTID:361533001 ! -property_value: IAO:0000589 "vestibular system (SCTID)" xsd:string -is_a: UBERON:0004681 ! vestibular system - -[Term] -id: SCTID:260636005 ! -property_value: IAO:0000589 "gastro-splenic ligament (SCTID)" xsd:string -is_a: UBERON:0004686 ! gastro-splenic ligament - -[Term] -id: SCTID:244225009 ! -property_value: IAO:0000589 "costo-cervical trunk (SCTID)" xsd:string -is_a: UBERON:0004688 ! costo-cervical trunk - -[Term] -id: SCTID:44840002 ! -property_value: IAO:0000589 "naso-frontal vein (SCTID)" xsd:string -is_a: UBERON:0004689 ! naso-frontal vein - -[Term] -id: SCTID:76262002 ! -property_value: IAO:0000589 "pancreaticoduodenal vein (SCTID)" xsd:string -is_a: UBERON:0004690 ! pancreaticoduodenal vein - -[Term] -id: SCTID:361525002 ! -property_value: IAO:0000589 "bulbus cordis (SCTID)" xsd:string -is_a: UBERON:0004706 ! bulbus cordis - -[Term] -id: SCTID:244403000 ! -property_value: IAO:0000589 "jugular vein (SCTID)" xsd:string -is_a: UBERON:0004711 ! jugular vein - -[Term] -id: SCTID:245468004 ! -property_value: IAO:0000589 "corpus cavernosum penis (SCTID)" xsd:string -is_a: UBERON:0004713 ! corpus cavernosum penis - -[Term] -id: SCTID:362313003 ! -property_value: IAO:0000589 "septum pellucidum (SCTID)" xsd:string -is_a: UBERON:0004714 ! septum pellucidum - -[Term] -id: SCTID:279105006 ! -property_value: IAO:0000589 "cerebellar vermis (SCTID)" xsd:string -is_a: UBERON:0004720 ! cerebellar vermis - -[Term] -id: SCTID:368953000 ! -property_value: IAO:0000589 "crista ampullaris (SCTID)" xsd:string -is_a: UBERON:0004721 ! crista ampullaris - -[Term] -id: SCTID:279145002 ! -property_value: IAO:0000589 "deep cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0004722 ! deep cervical lymph node - -[Term] -id: SCTID:76147008 ! -property_value: IAO:0000589 "interlobular artery (SCTID)" xsd:string -is_a: UBERON:0004723 ! interlobular artery - -[Term] -id: SCTID:280578002 ! -property_value: IAO:0000589 "medial palpebral ligament (SCTID)" xsd:string -is_a: UBERON:0004724 ! medial palpebral ligament - -[Term] -id: SCTID:369098004 ! -property_value: IAO:0000589 "piriform cortex (SCTID)" xsd:string -is_a: UBERON:0004725 ! piriform cortex - -[Term] -id: SCTID:280286001 ! -property_value: IAO:0000589 "cochlear nerve (SCTID)" xsd:string -is_a: UBERON:0004727 ! cochlear nerve - -[Term] -id: SCTID:360548001 ! -property_value: IAO:0000589 "pronephric glomerulus (SCTID)" xsd:string -is_a: UBERON:0004739 ! pronephric glomerulus - -[Term] -id: SCTID:95947006 ! -property_value: IAO:0000589 "supraoccipital bone (SCTID)" xsd:string -is_a: UBERON:0004747 ! supraoccipital bone - -[Term] -id: SCTID:362015004 ! -property_value: IAO:0000589 "foramen ovale of heart (SCTID)" xsd:string -is_a: UBERON:0004754 ! foramen ovale of heart - -[Term] -id: SCTID:309311006 ! -property_value: IAO:0000589 "skeletal tissue (SCTID)" xsd:string -is_a: UBERON:0004755 ! skeletal tissue - -[Term] -id: SCTID:80455007 ! -property_value: IAO:0000589 "rectal salt gland (SCTID)" xsd:string -is_a: UBERON:0004757 ! rectal salt gland - -[Term] -id: SCTID:245448005 ! -property_value: IAO:0000589 "gland of anal canal (SCTID)" xsd:string -is_a: UBERON:0004760 ! gland of anal canal - -[Term] -id: SCTID:155540009 ! -property_value: IAO:0000589 "cartilaginous neurocranium (SCTID)" xsd:string -is_a: UBERON:0004761 ! cartilaginous neurocranium - -[Term] -id: SCTID:181792001 ! -property_value: IAO:0000589 "cranial bone (SCTID)" xsd:string -is_a: UBERON:0004766 ! cranial bone - -[Term] -id: SCTID:361729006 ! -property_value: IAO:0000589 "diaphysis (SCTID)" xsd:string -is_a: UBERON:0004769 ! diaphysis - -[Term] -id: SCTID:361827000 ! -property_value: IAO:0000589 "articular system (SCTID)" xsd:string -is_a: UBERON:0004770 ! articular system - -[Term] -id: SCTID:244507001 ! -property_value: IAO:0000589 "posterior nasal aperture (SCTID)" xsd:string -is_a: UBERON:0004771 ! posterior nasal aperture - -[Term] -id: SCTID:362529005 ! -property_value: IAO:0000589 "eyelid tarsus (SCTID)" xsd:string -is_a: UBERON:0004772 ! eyelid tarsus - -[Term] -id: SCTID:368773004 ! -property_value: IAO:0000589 "superior eyelid tarsus (SCTID)" xsd:string -is_a: UBERON:0004773 ! superior eyelid tarsus - -[Term] -id: SCTID:368774005 ! -property_value: IAO:0000589 "inferior eyelid tarsus (SCTID)" xsd:string -is_a: UBERON:0004774 ! inferior eyelid tarsus - -[Term] -id: SCTID:361941005 ! -property_value: IAO:0000589 "larynx submucosa (SCTID)" xsd:string -is_a: UBERON:0004778 ! larynx submucosa - -[Term] -id: SCTID:362197006 ! -property_value: IAO:0000589 "gallbladder serosa (SCTID)" xsd:string -is_a: UBERON:0004783 ! gallbladder serosa - -[Term] -id: SCTID:410433007 ! -property_value: IAO:0000589 "gastrointestinal system mucosa (SCTID)" xsd:string -is_a: UBERON:0004786 ! gastrointestinal system mucosa - -[Term] -id: SCTID:321764001 ! -property_value: IAO:0000589 "respiratory tract epithelium (SCTID)" xsd:string -is_a: UBERON:0004802 ! respiratory tract epithelium - -[Term] -id: SCTID:253526009 ! -property_value: IAO:0000589 "endometrium epithelium (SCTID)" xsd:string -is_a: UBERON:0004811 ! endometrium epithelium - -[Term] -id: SCTID:362862007 ! -property_value: IAO:0000589 "dental lamina (SCTID)" xsd:string -is_a: UBERON:0004825 ! dental lamina - -[Term] -id: SCTID:81997001 ! -property_value: IAO:0000589 "cellular cartilage (SCTID)" xsd:string -is_a: UBERON:0004858 ! cellular cartilage - -[Term] -id: SCTID:280541000 ! -property_value: IAO:0000589 "orbital cavity (SCTID)" xsd:string -is_a: UBERON:0004867 ! orbital cavity - -[Term] -id: SCTID:279144003 ! -property_value: IAO:0000589 "superficial cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0004870 ! superficial cervical lymph node - -[Term] -id: SCTID:361405003 ! -property_value: IAO:0000589 "nephrogenic cord (SCTID)" xsd:string -is_a: UBERON:0004875 ! nephrogenic cord - -[Term] -id: SCTID:24631007 ! -property_value: IAO:0000589 "eponychium (SCTID)" xsd:string -is_a: UBERON:0004882 ! eponychium - -[Term] -id: SCTID:264017007 ! -property_value: IAO:0000589 "lung hilus (SCTID)" xsd:string -is_a: UBERON:0004886 ! lung hilus - -[Term] -id: SCTID:361983000 ! -property_value: IAO:0000589 "left lung hilus (SCTID)" xsd:string -is_a: UBERON:0004887 ! left lung hilus - -[Term] -id: SCTID:361968005 ! -property_value: IAO:0000589 "right lung hilus (SCTID)" xsd:string -is_a: UBERON:0004888 ! right lung hilus - -[Term] -id: SCTID:361965008 ! -property_value: IAO:0000589 "alveolar wall (SCTID)" xsd:string -is_a: UBERON:0004894 ! alveolar wall - -[Term] -id: SCTID:279973004 ! -property_value: IAO:0000589 "lower digestive tract (SCTID)" xsd:string -is_a: UBERON:0004907 ! lower digestive tract - -[Term] -id: SCTID:181244000 ! -property_value: IAO:0000589 "upper digestive tract (SCTID)" xsd:string -is_a: UBERON:0004908 ! upper digestive tract - -[Term] -id: SCTID:362200007 ! -property_value: IAO:0000589 "hepatopancreatic ampulla (SCTID)" xsd:string -is_a: UBERON:0004913 ! hepatopancreatic ampulla - -[Term] -id: SCTID:245389007 ! -property_value: IAO:0000589 "duodenal papilla (SCTID)" xsd:string -is_a: UBERON:0004914 ! duodenal papilla - -[Term] -id: SCTID:181271000 ! -property_value: IAO:0000589 "sphincter of hepatopancreatic ampulla (SCTID)" xsd:string -is_a: UBERON:0004915 ! sphincter of hepatopancreatic ampulla - -[Term] -id: SCTID:277855007 ! -property_value: IAO:0000589 "urethral sphincter (SCTID)" xsd:string -is_a: UBERON:0004917 ! urethral sphincter - -[Term] -id: SCTID:277857004 ! -property_value: IAO:0000589 "urethral sphincter (SCTID)" xsd:string -is_a: UBERON:0004917 ! urethral sphincter - -[Term] -id: SCTID:277856008 ! -property_value: IAO:0000589 "internal urethral sphincter (SCTID)" xsd:string -is_a: UBERON:0004918 ! internal urethral sphincter - -[Term] -id: SCTID:19101001 ! -property_value: IAO:0000589 "external urethral sphincter (SCTID)" xsd:string -is_a: UBERON:0004919 ! external urethral sphincter - -[Term] -id: SCTID:19594009 ! -property_value: IAO:0000589 "submucosa of pharynx (SCTID)" xsd:string -is_a: UBERON:0004924 ! submucosa of pharynx - -[Term] -id: SCTID:47496006 ! -property_value: IAO:0000589 "submucosa of laryngopharynx (SCTID)" xsd:string -is_a: UBERON:0004925 ! submucosa of laryngopharynx - -[Term] -id: SCTID:86833001 ! -property_value: IAO:0000589 "submucosa of appendix (SCTID)" xsd:string -is_a: UBERON:0004928 ! submucosa of appendix - -[Term] -id: SCTID:88384001 ! -property_value: IAO:0000589 "submucosa of urinary bladder (SCTID)" xsd:string -is_a: UBERON:0004943 ! submucosa of urinary bladder - -[Term] -id: SCTID:65374006 ! -property_value: IAO:0000589 "submucosa of ileum (SCTID)" xsd:string -is_a: UBERON:0004946 ! submucosa of ileum - -[Term] -id: SCTID:40476001 ! -property_value: IAO:0000589 "mucosa of ureter (SCTID)" xsd:string -is_a: UBERON:0004980 ! mucosa of ureter - -[Term] -id: SCTID:156751001 ! -property_value: IAO:0000589 "mucosa of epiglottis (SCTID)" xsd:string -is_a: UBERON:0004982 ! mucosa of epiglottis - -[Term] -id: SCTID:362245006 ! -property_value: IAO:0000589 "mucosa of vagina (SCTID)" xsd:string -is_a: UBERON:0004983 ! mucosa of vagina - -[Term] -id: SCTID:252260007 ! -property_value: IAO:0000589 "mucosa of seminal vesicle (SCTID)" xsd:string -is_a: UBERON:0004984 ! mucosa of seminal vesicle - -[Term] -id: SCTID:299626000 ! -property_value: IAO:0000589 "mucosa of deferent duct (SCTID)" xsd:string -is_a: UBERON:0004986 ! mucosa of deferent duct - -[Term] -id: SCTID:362126008 ! -property_value: IAO:0000589 "mucosa of laryngopharynx (SCTID)" xsd:string -is_a: UBERON:0004987 ! mucosa of laryngopharynx - -[Term] -id: SCTID:362155000 ! -property_value: IAO:0000589 "mucosa of appendix (SCTID)" xsd:string -is_a: UBERON:0004989 ! mucosa of appendix - -[Term] -id: SCTID:243482002 ! -property_value: IAO:0000589 "mucosa of renal pelvis (SCTID)" xsd:string -is_a: UBERON:0005006 ! mucosa of renal pelvis - -[Term] -id: SCTID:362229009 ! -property_value: IAO:0000589 "mucosa of intermediate urethra (SCTID)" xsd:string -is_a: UBERON:0005016 ! mucosa of intermediate urethra - -[Term] -id: SCTID:362092002 ! -property_value: IAO:0000589 "mucosa of tongue (SCTID)" xsd:string -is_a: UBERON:0005020 ! mucosa of tongue - -[Term] -id: SCTID:43774000 ! -property_value: IAO:0000589 "mucosa of sphenoidal sinus (SCTID)" xsd:string -is_a: UBERON:0005021 ! mucosa of sphenoidal sinus - -[Term] -id: SCTID:361938001 ! -property_value: IAO:0000589 "mucosa of nasopharynx (SCTID)" xsd:string -is_a: UBERON:0005022 ! mucosa of nasopharynx - -[Term] -id: SCTID:144632009 ! -property_value: IAO:0000589 "mucosa of oropharynx (SCTID)" xsd:string -is_a: UBERON:0005023 ! mucosa of oropharynx - -[Term] -id: SCTID:245842003 ! -property_value: IAO:0000589 "mucosa of soft palate (SCTID)" xsd:string -is_a: UBERON:0005024 ! mucosa of soft palate - -[Term] -id: SCTID:368909005 ! -property_value: IAO:0000589 "mucosa of frontal sinus (SCTID)" xsd:string -is_a: UBERON:0005027 ! mucosa of frontal sinus - -[Term] -id: SCTID:368908002 ! -property_value: IAO:0000589 "mucosa of maxillary sinus (SCTID)" xsd:string -is_a: UBERON:0005028 ! mucosa of maxillary sinus - -[Term] -id: SCTID:362088009 ! -property_value: IAO:0000589 "mucosa of upper lip (SCTID)" xsd:string -is_a: UBERON:0005031 ! mucosa of upper lip - -[Term] -id: SCTID:362089001 ! -property_value: IAO:0000589 "mucosa of lower lip (SCTID)" xsd:string -is_a: UBERON:0005032 ! mucosa of lower lip - -[Term] -id: SCTID:362196002 ! -property_value: IAO:0000589 "mucosa of gallbladder (SCTID)" xsd:string -is_a: UBERON:0005033 ! mucosa of gallbladder - -[Term] -id: SCTID:10887006 ! -property_value: IAO:0000589 "mucosa of bronchiole (SCTID)" xsd:string -is_a: UBERON:0005039 ! mucosa of bronchiole - -[Term] -id: SCTID:36411006 ! -property_value: IAO:0000589 "inner epithelial layer of tympanic membrane (SCTID)" xsd:string -is_a: UBERON:0005042 ! inner epithelial layer of tympanic membrane - -[Term] -id: SCTID:65501003 ! -property_value: IAO:0000589 "mucosa of ethmoidal sinus (SCTID)" xsd:string -is_a: UBERON:0005045 ! mucosa of ethmoidal sinus - -[Term] -id: SCTID:245841005 ! -property_value: IAO:0000589 "mucosa of hard palate (SCTID)" xsd:string -is_a: UBERON:0005046 ! mucosa of hard palate - -[Term] -id: SCTID:271187002 ! -property_value: IAO:0000589 "liver papillary process (SCTID)" xsd:string -is_a: UBERON:0005050 ! liver papillary process - -[Term] -id: SCTID:362279007 ! -property_value: IAO:0000589 "mediastinum testis (SCTID)" xsd:string -is_a: UBERON:0005051 ! mediastinum testis - -[Term] -id: SCTID:362234008 ! -property_value: IAO:0000589 "external female genitalia (SCTID)" xsd:string -is_a: UBERON:0005056 ! external female genitalia - -[Term] -id: SCTID:361463007 ! -property_value: IAO:0000589 "neural groove (SCTID)" xsd:string -is_a: UBERON:0005061 ! neural groove - -[Term] -id: SCTID:361461009 ! -property_value: IAO:0000589 "neural fold (SCTID)" xsd:string -is_a: UBERON:0005062 ! neural fold - -[Term] -id: SCTID:361478000 ! -property_value: IAO:0000589 "anterior neuropore (SCTID)" xsd:string -is_a: UBERON:0005070 ! anterior neuropore - -[Term] -id: SCTID:361479008 ! -property_value: IAO:0000589 "posterior neuropore (SCTID)" xsd:string -is_a: UBERON:0005071 ! posterior neuropore - -[Term] -id: SCTID:360408007 ! -property_value: IAO:0000589 "neuropore (SCTID)" xsd:string -is_a: UBERON:0005077 ! neuropore - -[Term] -id: SCTID:279289009 ! -property_value: IAO:0000589 "pyramid of medulla oblongata (SCTID)" xsd:string -is_a: UBERON:0005159 ! pyramid of medulla oblongata - -[Term] -id: SCTID:9535007 ! -property_value: IAO:0000589 "pyramid of medulla oblongata (SCTID)" xsd:string -is_a: UBERON:0005159 ! pyramid of medulla oblongata - -[Term] -id: SCTID:245434005 ! -property_value: IAO:0000589 "ascending limb of loop of Henle (SCTID)" xsd:string -is_a: UBERON:0005164 ! ascending limb of loop of Henle - -[Term] -id: SCTID:110623009 ! -property_value: IAO:0000589 "papillary duct (SCTID)" xsd:string -is_a: UBERON:0005167 ! papillary duct - -[Term] -id: SCTID:85293002 ! -property_value: IAO:0000589 "interstitial tissue (SCTID)" xsd:string -is_a: UBERON:0005169 ! interstitial tissue - -[Term] -id: SCTID:258971005 ! -property_value: IAO:0000589 "granulosa cell layer (SCTID)" xsd:string -is_a: UBERON:0005170 ! granulosa cell layer - -[Term] -id: SCTID:245399002 ! -property_value: IAO:0000589 "hepatic duct (SCTID)" xsd:string -is_a: UBERON:0005171 ! hepatic duct - -[Term] -id: SCTID:272631008 ! -property_value: IAO:0000589 "abdomen element (SCTID)" xsd:string -is_a: UBERON:0005172 ! abdomen element - -[Term] -id: SCTID:362863002 ! -property_value: IAO:0000589 "tooth enamel organ (SCTID)" xsd:string -is_a: UBERON:0005176 ! tooth enamel organ - -[Term] -id: SCTID:318929009 ! -property_value: IAO:0000589 "hair medulla (SCTID)" xsd:string -is_a: UBERON:0005184 ! hair medulla - -[Term] -id: SCTID:279659005 ! -property_value: IAO:0000589 "deferent duct artery (SCTID)" xsd:string -is_a: UBERON:0005192 ! deferent duct artery - -[Term] -id: SCTID:244222007 ! -property_value: IAO:0000589 "ethmoidal artery (SCTID)" xsd:string -is_a: UBERON:0005193 ! ethmoidal artery - -[Term] -id: SCTID:281472008 ! -property_value: IAO:0000589 "thoracic vein (SCTID)" xsd:string -is_a: UBERON:0005194 ! thoracic vein - -[Term] -id: SCTID:31448001 ! -property_value: IAO:0000589 "thoracic mammary gland (SCTID)" xsd:string -is_a: UBERON:0005200 ! thoracic mammary gland - -[Term] -id: SCTID:197423006 ! -property_value: IAO:0000589 "trachea gland (SCTID)" xsd:string -is_a: UBERON:0005203 ! trachea gland - -[Term] -id: SCTID:245693005 ! -property_value: IAO:0000589 "renal medulla interstitium (SCTID)" xsd:string -is_a: UBERON:0005211 ! renal medulla interstitium - -[Term] -id: SCTID:362280005 ! -property_value: IAO:0000589 "Leydig cell region of testis (SCTID)" xsd:string -is_a: UBERON:0005212 ! Leydig cell region of testis - -[Term] -id: SCTID:362210003 ! -property_value: IAO:0000589 "kidney interstitium (SCTID)" xsd:string -is_a: UBERON:0005215 ! kidney interstitium - -[Term] -id: SCTID:181188003 ! -property_value: IAO:0000589 "osseus labyrinth vestibule (SCTID)" xsd:string -is_a: UBERON:0005236 ! osseus labyrinth vestibule - -[Term] -id: SCTID:181806003 ! -property_value: IAO:0000589 "lobar bronchus of right lung cranial lobe (SCTID)" xsd:string -is_a: UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: SCTID:361956001 ! -property_value: IAO:0000589 "lobar bronchus of right lung cranial lobe (SCTID)" xsd:string -is_a: UBERON:0005244 ! lobar bronchus of right lung cranial lobe - -[Term] -id: SCTID:243707006 ! -property_value: IAO:0000589 "renal cortex interstitium (SCTID)" xsd:string -is_a: UBERON:0005270 ! renal cortex interstitium - -[Term] -id: SCTID:181578005 ! -property_value: IAO:0000589 "nail bed (SCTID)" xsd:string -is_a: UBERON:0005273 ! nail bed - -[Term] -id: SCTID:244199003 ! -property_value: IAO:0000589 "nail bed of finger (SCTID)" xsd:string -is_a: UBERON:0005278 ! nail bed of finger - -[Term] -id: SCTID:244200000 ! -property_value: IAO:0000589 "nail bed of toe (SCTID)" xsd:string -is_a: UBERON:0005279 ! nail bed of toe - -[Term] -id: SCTID:362321009 ! -property_value: IAO:0000589 "tela choroidea of fourth ventricle (SCTID)" xsd:string -is_a: UBERON:0005287 ! tela choroidea of fourth ventricle - -[Term] -id: SCTID:362320005 ! -property_value: IAO:0000589 "tela choroidea of third ventricle (SCTID)" xsd:string -is_a: UBERON:0005288 ! tela choroidea of third ventricle - -[Term] -id: SCTID:362319004 ! -property_value: IAO:0000589 "tela choroidea of telencephalic ventricle (SCTID)" xsd:string -is_a: UBERON:0005289 ! tela choroidea of telencephalic ventricle - -[Term] -id: SCTID:263971006 ! -property_value: IAO:0000589 "cerebellum lobe (SCTID)" xsd:string -is_a: UBERON:0005293 ! cerebellum lobe - -[Term] -id: SCTID:308801004 ! -property_value: IAO:0000589 "gonadal ridge (SCTID)" xsd:string -is_a: UBERON:0005294 ! gonadal ridge - -[Term] -id: SCTID:361399001 ! -property_value: IAO:0000589 "gonadal ridge (SCTID)" xsd:string -is_a: UBERON:0005294 ! gonadal ridge - -[Term] -id: SCTID:343823004 ! -property_value: IAO:0000589 "sex cord (SCTID)" xsd:string -is_a: UBERON:0005295 ! sex cord - -[Term] -id: SCTID:361374002 ! -property_value: IAO:0000589 "skin of clitoris (SCTID)" xsd:string -is_a: UBERON:0005298 ! skin of clitoris - -[Term] -id: SCTID:362242009 ! -property_value: IAO:0000589 "prepuce of clitoris (SCTID)" xsd:string -is_a: UBERON:0005299 ! prepuce of clitoris - -[Term] -id: SCTID:181061006 ! -property_value: IAO:0000589 "hypogastric nerve (SCTID)" xsd:string -is_a: UBERON:0005303 ! hypogastric nerve - -[Term] -id: SCTID:322349001 ! -property_value: IAO:0000589 "submucous nerve plexus (SCTID)" xsd:string -is_a: UBERON:0005304 ! submucous nerve plexus - -[Term] -id: SCTID:176685006 ! -property_value: IAO:0000589 "thyroid follicle (SCTID)" xsd:string -is_a: UBERON:0005305 ! thyroid follicle - -[Term] -id: SCTID:362217000 ! -property_value: IAO:0000589 "mesonephric glomerulus (SCTID)" xsd:string -is_a: UBERON:0005325 ! mesonephric glomerulus - -[Term] -id: SCTID:361407006 ! -property_value: IAO:0000589 "mesonephric renal vesicle (SCTID)" xsd:string -is_a: UBERON:0005331 ! mesonephric renal vesicle - -[Term] -id: SCTID:280899009 ! -property_value: IAO:0000589 "capillary layer of choroid (SCTID)" xsd:string -is_a: UBERON:0005336 ! capillary layer of choroid - -[Term] -id: SCTID:368926004 ! -property_value: IAO:0000589 "malleus head (SCTID)" xsd:string -is_a: UBERON:0005342 ! malleus head - -[Term] -id: SCTID:362726001 ! -property_value: IAO:0000589 "peritoneal vaginal process (SCTID)" xsd:string -is_a: UBERON:0005344 ! peritoneal vaginal process - -[Term] -id: SCTID:314174005 ! -property_value: IAO:0000589 "paraflocculus (SCTID)" xsd:string -is_a: UBERON:0005351 ! paraflocculus - -[Term] -id: SCTID:51969002 ! -property_value: IAO:0000589 "paraflocculus (SCTID)" xsd:string -is_a: UBERON:0005351 ! paraflocculus - -[Term] -id: SCTID:181433005 ! -property_value: IAO:0000589 "spermatic cord (SCTID)" xsd:string -is_a: UBERON:0005352 ! spermatic cord - -[Term] -id: SCTID:368927008 ! -property_value: IAO:0000589 "malleus neck (SCTID)" xsd:string -is_a: UBERON:0005355 ! malleus neck - -[Term] -id: SCTID:362583008 ! -property_value: IAO:0000589 "Rathke's pouch (SCTID)" xsd:string -is_a: UBERON:0005356 ! Rathke's pouch - -[Term] -id: SCTID:61127000 ! -property_value: IAO:0000589 "Rathke's pouch (SCTID)" xsd:string -is_a: UBERON:0005356 ! Rathke's pouch - -[Term] -id: SCTID:369278000 ! -property_value: IAO:0000589 "spinal cord ependyma (SCTID)" xsd:string -is_a: UBERON:0005359 ! spinal cord ependyma - -[Term] -id: SCTID:66031007 ! -property_value: IAO:0000589 "inferior glossopharyngeal IX ganglion (SCTID)" xsd:string -is_a: UBERON:0005360 ! inferior glossopharyngeal IX ganglion - -[Term] -id: SCTID:280362000 ! -property_value: IAO:0000589 "superior glossopharyngeal IX ganglion (SCTID)" xsd:string -is_a: UBERON:0005361 ! superior glossopharyngeal IX ganglion - -[Term] -id: SCTID:244452001 ! -property_value: IAO:0000589 "vagus X ganglion (SCTID)" xsd:string -is_a: UBERON:0005362 ! vagus X ganglion - -[Term] -id: SCTID:14420006 ! -property_value: IAO:0000589 "inferior vagus X ganglion (SCTID)" xsd:string -is_a: UBERON:0005363 ! inferior vagus X ganglion - -[Term] -id: SCTID:280197008 ! -property_value: IAO:0000589 "superior vagus X ganglion (SCTID)" xsd:string -is_a: UBERON:0005364 ! superior vagus X ganglion - -[Term] -id: SCTID:362040006 ! -property_value: IAO:0000589 "carotid artery segment (SCTID)" xsd:string -is_a: UBERON:0005396 ! carotid artery segment - -[Term] -id: SCTID:69105007 ! -property_value: IAO:0000589 "carotid artery segment (SCTID)" xsd:string -is_a: UBERON:0005396 ! carotid artery segment - -[Term] -id: SCTID:362087004 ! -property_value: IAO:0000589 "philtrum (SCTID)" xsd:string -is_a: UBERON:0005402 ! philtrum - -[Term] -id: SCTID:368982004 ! -property_value: IAO:0000589 "frontonasal suture (SCTID)" xsd:string -is_a: UBERON:0005404 ! frontonasal suture - -[Term] -id: SCTID:246901006 ! -property_value: IAO:0000589 "perirenal fat (SCTID)" xsd:string -is_a: UBERON:0005406 ! perirenal fat - -[Term] -id: SCTID:373871007 ! -property_value: IAO:0000589 "alimentary part of gastrointestinal system (SCTID)" xsd:string -is_a: UBERON:0005409 ! alimentary part of gastrointestinal system - -[Term] -id: SCTID:361508004 ! -property_value: IAO:0000589 "optic fissure (SCTID)" xsd:string -is_a: UBERON:0005412 ! optic fissure - -[Term] -id: SCTID:346062002 ! -property_value: IAO:0000589 "forelimb bud (SCTID)" xsd:string -is_a: UBERON:0005417 ! forelimb bud - -[Term] -id: SCTID:346164003 ! -property_value: IAO:0000589 "hindlimb bud (SCTID)" xsd:string -is_a: UBERON:0005418 ! hindlimb bud - -[Term] -id: SCTID:361510002 ! -property_value: IAO:0000589 "lens vesicle (SCTID)" xsd:string -is_a: UBERON:0005426 ! lens vesicle - -[Term] -id: SCTID:245386000 ! -property_value: IAO:0000589 "dorsal pancreatic duct (SCTID)" xsd:string -is_a: UBERON:0005429 ! dorsal pancreatic duct - -[Term] -id: SCTID:362474000 ! -property_value: IAO:0000589 "ansa cervicalis (SCTID)" xsd:string -is_a: UBERON:0005430 ! ansa cervicalis - -[Term] -id: SCTID:181329004 ! -property_value: IAO:0000589 "anterior spinal artery (SCTID)" xsd:string -is_a: UBERON:0005431 ! anterior spinal artery - -[Term] -id: SCTID:361527005 ! -property_value: IAO:0000589 "aortic sac (SCTID)" xsd:string -is_a: UBERON:0005432 ! aortic sac - -[Term] -id: SCTID:123958008 ! -property_value: IAO:0000589 "cervical region (SCTID)" xsd:string -is_a: UBERON:0005434 ! cervical region - -[Term] -id: SCTID:279088007 ! -property_value: IAO:0000589 "upper part of cisterna chyli (SCTID)" xsd:string -is_a: UBERON:0005435 ! upper part of cisterna chyli - -[Term] -id: SCTID:244263001 ! -property_value: IAO:0000589 "common hepatic artery (SCTID)" xsd:string -is_a: UBERON:0005436 ! common hepatic artery - -[Term] -id: SCTID:315472009 ! -property_value: IAO:0000589 "conus medullaris (SCTID)" xsd:string -is_a: UBERON:0005437 ! conus medullaris - -[Term] -id: SCTID:244386006 ! -property_value: IAO:0000589 "coronary sinus (SCTID)" xsd:string -is_a: UBERON:0005438 ! coronary sinus - -[Term] -id: SCTID:253684002 ! -property_value: IAO:0000589 "ductus arteriosus (SCTID)" xsd:string -is_a: UBERON:0005440 ! ductus arteriosus - -[Term] -id: SCTID:244878003 ! -property_value: IAO:0000589 "external intercostal muscle (SCTID)" xsd:string -is_a: UBERON:0005441 ! external intercostal muscle - -[Term] -id: SCTID:244946005 ! -property_value: IAO:0000589 "abdominal external oblique muscle (SCTID)" xsd:string -is_a: UBERON:0005442 ! abdominal external oblique muscle - -[Term] -id: SCTID:361344005 ! -property_value: IAO:0000589 "filum terminale (SCTID)" xsd:string -is_a: UBERON:0005443 ! filum terminale - -[Term] -id: SCTID:362887000 ! -property_value: IAO:0000589 "segment of pes (SCTID)" xsd:string -is_a: UBERON:0005445 ! segment of pes - -[Term] -id: SCTID:369439002 ! -property_value: IAO:0000589 "foramen rotundum (SCTID)" xsd:string -is_a: UBERON:0005446 ! foramen rotundum - -[Term] -id: SCTID:362711003 ! -property_value: IAO:0000589 "greater omentum (SCTID)" xsd:string -is_a: UBERON:0005448 ! greater omentum - -[Term] -id: SCTID:127950000 ! -property_value: IAO:0000589 "segment of manus (SCTID)" xsd:string -is_a: UBERON:0005451 ! segment of manus - -[Term] -id: SCTID:279277007 ! -property_value: IAO:0000589 "inferior mesenteric ganglion (SCTID)" xsd:string -is_a: UBERON:0005453 ! inferior mesenteric ganglion - -[Term] -id: SCTID:244947001 ! -property_value: IAO:0000589 "abdominal internal oblique muscle (SCTID)" xsd:string -is_a: UBERON:0005454 ! abdominal internal oblique muscle - -[Term] -id: SCTID:277708006 ! -property_value: IAO:0000589 "interventricular groove (SCTID)" xsd:string -is_a: UBERON:0005455 ! interventricular groove - -[Term] -id: SCTID:361735006 ! -property_value: IAO:0000589 "jugular foramen (SCTID)" xsd:string -is_a: UBERON:0005456 ! jugular foramen - -[Term] -id: SCTID:188079002 ! -property_value: IAO:0000589 "left thymus lobe (SCTID)" xsd:string -is_a: UBERON:0005457 ! left thymus lobe - -[Term] -id: SCTID:308833008 ! -property_value: IAO:0000589 "left umbilical vein (SCTID)" xsd:string -is_a: UBERON:0005459 ! left umbilical vein - -[Term] -id: SCTID:361446008 ! -property_value: IAO:0000589 "left vitelline vein (SCTID)" xsd:string -is_a: UBERON:0005460 ! left vitelline vein - -[Term] -id: SCTID:279236008 ! -property_value: IAO:0000589 "levator scapulae muscle (SCTID)" xsd:string -is_a: UBERON:0005461 ! levator scapulae muscle - -[Term] -id: SCTID:182343007 ! -property_value: IAO:0000589 "lower back (SCTID)" xsd:string -is_a: UBERON:0005462 ! lower back - -[Term] -id: SCTID:244282005 ! -property_value: IAO:0000589 "median sacral artery (SCTID)" xsd:string -is_a: UBERON:0005464 ! median sacral artery - -[Term] -id: SCTID:181052006 ! -property_value: IAO:0000589 "obturator nerve (SCTID)" xsd:string -is_a: UBERON:0005465 ! obturator nerve - -[Term] -id: SCTID:244754004 ! -property_value: IAO:0000589 "platysma (SCTID)" xsd:string -is_a: UBERON:0005467 ! platysma - -[Term] -id: SCTID:187981000 ! -property_value: IAO:0000589 "right thymus lobe (SCTID)" xsd:string -is_a: UBERON:0005469 ! right thymus lobe - -[Term] -id: SCTID:361447004 ! -property_value: IAO:0000589 "right umbilical vein (SCTID)" xsd:string -is_a: UBERON:0005471 ! right umbilical vein - -[Term] -id: SCTID:361445007 ! -property_value: IAO:0000589 "right vitelline vein (SCTID)" xsd:string -is_a: UBERON:0005472 ! right vitelline vein - -[Term] -id: SCTID:182344001 ! -property_value: IAO:0000589 "sacral region (SCTID)" xsd:string -is_a: UBERON:0005473 ! sacral region - -[Term] -id: SCTID:279264003 ! -property_value: IAO:0000589 "sigmoid sinus (SCTID)" xsd:string -is_a: UBERON:0005475 ! sigmoid sinus - -[Term] -id: SCTID:279276003 ! -property_value: IAO:0000589 "superior mesenteric ganglion (SCTID)" xsd:string -is_a: UBERON:0005479 ! superior mesenteric ganglion - -[Term] -id: SCTID:280559002 ! -property_value: IAO:0000589 "superior orbital fissure (SCTID)" xsd:string -is_a: UBERON:0005480 ! superior orbital fissure - -[Term] -id: SCTID:279261006 ! -property_value: IAO:0000589 "tentorial sinus (SCTID)" xsd:string -is_a: UBERON:0005481 ! tentorial sinus - -[Term] -id: SCTID:276830008 ! -property_value: IAO:0000589 "tricuspid valve leaflet (SCTID)" xsd:string -is_a: UBERON:0005484 ! tricuspid valve leaflet - -[Term] -id: SCTID:277722006 ! -property_value: IAO:0000589 "valve of inferior vena cava (SCTID)" xsd:string -is_a: UBERON:0005485 ! valve of inferior vena cava - -[Term] -id: SCTID:54944003 ! -property_value: IAO:0000589 "venous dural sinus (SCTID)" xsd:string -is_a: UBERON:0005486 ! venous dural sinus - -[Term] -id: SCTID:2730004 ! -property_value: IAO:0000589 "vitelline vein (SCTID)" xsd:string -is_a: UBERON:0005487 ! vitelline vein - -[Term] -id: SCTID:308832003 ! -property_value: IAO:0000589 "vitelline vein (SCTID)" xsd:string -is_a: UBERON:0005487 ! vitelline vein - -[Term] -id: SCTID:362493003 ! -property_value: IAO:0000589 "superior mesenteric plexus (SCTID)" xsd:string -is_a: UBERON:0005488 ! superior mesenteric plexus - -[Term] -id: SCTID:277710008 ! -property_value: IAO:0000589 "anterior interventricular sulcus (SCTID)" xsd:string -is_a: UBERON:0005489 ! anterior interventricular sulcus - -[Term] -id: SCTID:277711007 ! -property_value: IAO:0000589 "posterior interventricular sulcus (SCTID)" xsd:string -is_a: UBERON:0005490 ! posterior interventricular sulcus - -[Term] -id: SCTID:244823009 ! -property_value: IAO:0000589 "hyoid muscle (SCTID)" xsd:string -is_a: UBERON:0005493 ! hyoid muscle - -[Term] -id: SCTID:361522004 ! -property_value: IAO:0000589 "primitive heart tube (SCTID)" xsd:string -is_a: UBERON:0005498 ! primitive heart tube - -[Term] -id: SCTID:279758009 ! -property_value: IAO:0000589 "crus commune (SCTID)" xsd:string -is_a: UBERON:0005600 ! crus commune - -[Term] -id: SCTID:361454005 ! -property_value: IAO:0000589 "dorsal mesocardium (SCTID)" xsd:string -is_a: UBERON:0005601 ! dorsal mesocardium - -[Term] -id: SCTID:244330006 ! -property_value: IAO:0000589 "iliac artery (SCTID)" xsd:string -is_a: UBERON:0005609 ! iliac artery - -[Term] -id: SCTID:281481002 ! -property_value: IAO:0000589 "iliac vein (SCTID)" xsd:string -is_a: UBERON:0005610 ! iliac vein - -[Term] -id: SCTID:362526003 ! -property_value: IAO:0000589 "inner canthus (SCTID)" xsd:string -is_a: UBERON:0005611 ! inner canthus - -[Term] -id: SCTID:281134007 ! -property_value: IAO:0000589 "intercostal artery (SCTID)" xsd:string -is_a: UBERON:0005612 ! intercostal artery - -[Term] -id: SCTID:361403005 ! -property_value: IAO:0000589 "left dorsal aorta (SCTID)" xsd:string -is_a: UBERON:0005613 ! left dorsal aorta - -[Term] -id: SCTID:362521008 ! -property_value: IAO:0000589 "lens anterior epithelium (SCTID)" xsd:string -is_a: UBERON:0005614 ! lens anterior epithelium - -[Term] -id: SCTID:281084003 ! -property_value: IAO:0000589 "mesenteric artery (SCTID)" xsd:string -is_a: UBERON:0005616 ! mesenteric artery - -[Term] -id: SCTID:304045008 ! -property_value: IAO:0000589 "mesenteric vein (SCTID)" xsd:string -is_a: UBERON:0005617 ! mesenteric vein - -[Term] -id: SCTID:359541001 ! -property_value: IAO:0000589 "primary palate (SCTID)" xsd:string -is_a: UBERON:0005620 ! primary palate - -[Term] -id: SCTID:277441005 ! -property_value: IAO:0000589 "rhomboid (SCTID)" xsd:string -is_a: UBERON:0005621 ! rhomboid - -[Term] -id: SCTID:361404004 ! -property_value: IAO:0000589 "right dorsal aorta (SCTID)" xsd:string -is_a: UBERON:0005622 ! right dorsal aorta - -[Term] -id: SCTID:181342004 ! -property_value: IAO:0000589 "suprarenal artery (SCTID)" xsd:string -is_a: UBERON:0005624 ! suprarenal artery - -[Term] -id: SCTID:265479003 ! -property_value: IAO:0000589 "ileal artery (SCTID)" xsd:string -is_a: UBERON:0005628 ! ileal artery - -[Term] -id: SCTID:325510007 ! -property_value: IAO:0000589 "fetal membrane (SCTID)" xsd:string -is_a: UBERON:0005630 ! fetal membrane - -[Term] -id: SCTID:362840007 ! -property_value: IAO:0000589 "extraembryonic membrane (SCTID)" xsd:string -is_a: UBERON:0005631 ! extraembryonic membrane - -[Term] -id: SCTID:34073007 ! -property_value: IAO:0000589 "peritoneal cavity mesothelium (SCTID)" xsd:string -is_a: UBERON:0005669 ! peritoneal cavity mesothelium - -[Term] -id: SCTID:84841004 ! -property_value: IAO:0000589 "right lung upper lobe bronchiole (SCTID)" xsd:string -is_a: UBERON:0005681 ! right lung upper lobe bronchiole - -[Term] -id: SCTID:361434009 ! -property_value: IAO:0000589 "midgut dorsal mesentery (SCTID)" xsd:string -is_a: UBERON:0005685 ! midgut dorsal mesentery - -[Term] -id: SCTID:362290002 ! -property_value: IAO:0000589 "olfactory system (SCTID)" xsd:string -is_a: UBERON:0005725 ! olfactory system - -[Term] -id: SCTID:61066005 ! -property_value: IAO:0000589 "tunica adventitia of blood vessel (SCTID)" xsd:string -is_a: UBERON:0005734 ! tunica adventitia of blood vessel - -[Term] -id: SCTID:40022005 ! -property_value: IAO:0000589 "tunica intima of artery (SCTID)" xsd:string -is_a: UBERON:0005740 ! tunica intima of artery - -[Term] -id: SCTID:30180000 ! -property_value: IAO:0000589 "adventitia (SCTID)" xsd:string -is_a: UBERON:0005742 ! adventitia - -[Term] -id: SCTID:361732009 ! -property_value: IAO:0000589 "optic foramen (SCTID)" xsd:string -is_a: UBERON:0005745 ! optic foramen - -[Term] -id: SCTID:343518007 ! -property_value: IAO:0000589 "primary vitreous (SCTID)" xsd:string -is_a: UBERON:0005746 ! primary vitreous - -[Term] -id: SCTID:362217000 ! -property_value: IAO:0000589 "glomerular tuft (SCTID)" xsd:string -is_a: UBERON:0005749 ! glomerular tuft - -[Term] -id: SCTID:362218005 ! -property_value: IAO:0000589 "glomerular parietal epithelium (SCTID)" xsd:string -is_a: UBERON:0005750 ! glomerular parietal epithelium - -[Term] -id: SCTID:244093000 ! -property_value: IAO:0000589 "glomerular visceral epithelium (SCTID)" xsd:string -is_a: UBERON:0005751 ! glomerular visceral epithelium - -[Term] -id: SCTID:68989006 ! -property_value: IAO:0000589 "basement membrane of epithelium (SCTID)" xsd:string -is_a: UBERON:0005769 ! basement membrane of epithelium - -[Term] -id: SCTID:243897006 ! -property_value: IAO:0000589 "glomerular basement membrane (SCTID)" xsd:string -is_a: UBERON:0005777 ! glomerular basement membrane - -[Term] -id: SCTID:255782009 ! -property_value: IAO:0000589 "embryonic uterus (SCTID)" xsd:string -is_a: UBERON:0005795 ! embryonic uterus - -[Term] -id: SCTID:119203005 ! -property_value: IAO:0000589 "section of aorta (SCTID)" xsd:string -is_a: UBERON:0005800 ! section of aorta - -[Term] -id: SCTID:338637006 ! -property_value: IAO:0000589 "dorsal aorta (SCTID)" xsd:string -is_a: UBERON:0005805 ! dorsal aorta - -[Term] -id: SCTID:362063001 ! -property_value: IAO:0000589 "portal system (SCTID)" xsd:string -is_a: UBERON:0005806 ! portal system - -[Term] -id: SCTID:425475006 ! -property_value: IAO:0000589 "bone tissue of long bone (SCTID)" xsd:string -is_a: UBERON:0005808 ! bone tissue of long bone - -[Term] -id: SCTID:281224005 ! -property_value: IAO:0000589 "cervical vertebra 1 anterior tubercle (SCTID)" xsd:string -is_a: UBERON:0005810 ! cervical vertebra 1 anterior tubercle - -[Term] -id: SCTID:272708001 ! -property_value: IAO:0000589 "arch of atlas (SCTID)" xsd:string -is_a: UBERON:0005814 ! arch of atlas - -[Term] -id: SCTID:369079001 ! -property_value: IAO:0000589 "gracile fasciculus (SCTID)" xsd:string -is_a: UBERON:0005821 ! gracile fasciculus - -[Term] -id: SCTID:314792006 ! -property_value: IAO:0000589 "cuneate fasciculus of spinal cord (SCTID)" xsd:string -is_a: UBERON:0005835 ! cuneate fasciculus of spinal cord - -[Term] -id: SCTID:244438003 ! -property_value: IAO:0000589 "sacral spinal cord (SCTID)" xsd:string -is_a: UBERON:0005843 ! sacral spinal cord - -[Term] -id: SCTID:278748001 ! -property_value: IAO:0000589 "spinal cord segment (SCTID)" xsd:string -is_a: UBERON:0005844 ! spinal cord segment - -[Term] -id: SCTID:278753006 ! -property_value: IAO:0000589 "caudal segment of spinal cord (SCTID)" xsd:string -is_a: UBERON:0005845 ! caudal segment of spinal cord - -[Term] -id: SCTID:346355001 ! -property_value: IAO:0000589 "maxillary prominence (SCTID)" xsd:string -is_a: UBERON:0005868 ! maxillary prominence - -[Term] -id: SCTID:361485001 ! -property_value: IAO:0000589 "olfactory pit (SCTID)" xsd:string -is_a: UBERON:0005870 ! olfactory pit - -[Term] -id: SCTID:368870009 ! -property_value: IAO:0000589 "palatine process of maxilla (SCTID)" xsd:string -is_a: UBERON:0005871 ! palatine process of maxilla - -[Term] -id: SCTID:308798005 ! -property_value: IAO:0000589 "undifferentiated genital tubercle (SCTID)" xsd:string -is_a: UBERON:0005876 ! undifferentiated genital tubercle - -[Term] -id: SCTID:346439007 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch skeleton (SCTID)" xsd:string -is_a: UBERON:0005886 ! post-hyoid pharyngeal arch skeleton - -[Term] -id: SCTID:426741001 ! -property_value: IAO:0000589 "manus bone (SCTID)" xsd:string -is_a: UBERON:0005897 ! manus bone - -[Term] -id: SCTID:361371005 ! -property_value: IAO:0000589 "pes bone (SCTID)" xsd:string -is_a: UBERON:0005899 ! pes bone - -[Term] -id: SCTID:362618001 ! -property_value: IAO:0000589 "occipital region (SCTID)" xsd:string -is_a: UBERON:0005902 ! occipital region - -[Term] -id: SCTID:279675008 ! -property_value: IAO:0000589 "duct of seminal vesicle (SCTID)" xsd:string -is_a: UBERON:0005903 ! duct of seminal vesicle - -[Term] -id: SCTID:362890006 ! -property_value: IAO:0000589 "serous sac (SCTID)" xsd:string -is_a: UBERON:0005906 ! serous sac - -[Term] -id: SCTID:362531001 ! -property_value: IAO:0000589 "conjunctival sac (SCTID)" xsd:string -is_a: UBERON:0005908 ! conjunctival sac - -[Term] -id: SCTID:361935003 ! -property_value: IAO:0000589 "supreme nasal concha (SCTID)" xsd:string -is_a: UBERON:0005919 ! supreme nasal concha - -[Term] -id: SCTID:361934004 ! -property_value: IAO:0000589 "superior nasal concha (SCTID)" xsd:string -is_a: UBERON:0005920 ! superior nasal concha - -[Term] -id: SCTID:361933005 ! -property_value: IAO:0000589 "middle nasal concha (SCTID)" xsd:string -is_a: UBERON:0005921 ! middle nasal concha - -[Term] -id: SCTID:361932000 ! -property_value: IAO:0000589 "inferior nasal concha (SCTID)" xsd:string -is_a: UBERON:0005922 ! inferior nasal concha - -[Term] -id: SCTID:362882006 ! -property_value: IAO:0000589 "inferior nasal concha (SCTID)" xsd:string -is_a: UBERON:0005922 ! inferior nasal concha - -[Term] -id: SCTID:276165005 ! -property_value: IAO:0000589 "external naris (SCTID)" xsd:string -is_a: UBERON:0005928 ! external naris - -[Term] -id: SCTID:361360009 ! -property_value: IAO:0000589 "bulb of hair follicle (SCTID)" xsd:string -is_a: UBERON:0005932 ! bulb of hair follicle - -[Term] -id: SCTID:319224003 ! -property_value: IAO:0000589 "hair outer root sheath (SCTID)" xsd:string -is_a: UBERON:0005942 ! hair outer root sheath - -[Term] -id: SCTID:361725000 ! -property_value: IAO:0000589 "axial skeleton plus cranial skeleton (SCTID)" xsd:string -is_a: UBERON:0005944 ! axial skeleton plus cranial skeleton - -[Term] -id: SCTID:244379003 ! -property_value: IAO:0000589 "outflow part of right ventricle (SCTID)" xsd:string -is_a: UBERON:0005953 ! outflow part of right ventricle - -[Term] -id: SCTID:264070001 ! -property_value: IAO:0000589 "outflow part of left ventricle (SCTID)" xsd:string -is_a: UBERON:0005956 ! outflow part of left ventricle - -[Term] -id: SCTID:319522000 ! -property_value: IAO:0000589 "infundibulum of hair follicle (SCTID)" xsd:string -is_a: UBERON:0005968 ! infundibulum of hair follicle - -[Term] -id: SCTID:280694002 ! -property_value: IAO:0000589 "eye trabecular meshwork (SCTID)" xsd:string -is_a: UBERON:0005969 ! eye trabecular meshwork - -[Term] -id: SCTID:280391002 ! -property_value: IAO:0000589 "posterior cerebellomedullary cistern (SCTID)" xsd:string -is_a: UBERON:0005974 ! posterior cerebellomedullary cistern - -[Term] -id: SCTID:277693004 ! -property_value: IAO:0000589 "crista terminalis (SCTID)" xsd:string -is_a: UBERON:0005979 ! crista terminalis - -[Term] -id: SCTID:277718001 ! -property_value: IAO:0000589 "pectinate muscle (SCTID)" xsd:string -is_a: UBERON:0005980 ! pectinate muscle - -[Term] -id: SCTID:277690001 ! -property_value: IAO:0000589 "left bundle branch (SCTID)" xsd:string -is_a: UBERON:0005986 ! left bundle branch - -[Term] -id: SCTID:277689005 ! -property_value: IAO:0000589 "right bundle branch (SCTID)" xsd:string -is_a: UBERON:0005987 ! right bundle branch - -[Term] -id: SCTID:280151006 ! -property_value: IAO:0000589 "atrioventricular septum (SCTID)" xsd:string -is_a: UBERON:0005989 ! atrioventricular septum - -[Term] -id: SCTID:362026005 ! -property_value: IAO:0000589 "aortic valve cusp (SCTID)" xsd:string -is_a: UBERON:0005990 ! aortic valve cusp - -[Term] -id: SCTID:279330004 ! -property_value: IAO:0000589 "chorda tendineae (SCTID)" xsd:string -is_a: UBERON:0005994 ! chorda tendineae - -[Term] -id: SCTID:261417002 ! -property_value: IAO:0000589 "tricuspid valve cusp (SCTID)" xsd:string -is_a: UBERON:0005998 ! tricuspid valve cusp - -[Term] -id: SCTID:30822008 ! -property_value: IAO:0000589 "cusp of cardiac valve (SCTID)" xsd:string -is_a: UBERON:0006009 ! cusp of cardiac valve - -[Term] -id: SCTID:362506002 ! -property_value: IAO:0000589 "hyaloid canal (SCTID)" xsd:string -is_a: UBERON:0006010 ! hyaloid canal - -[Term] -id: SCTID:279275004 ! -property_value: IAO:0000589 "falx cerebri (SCTID)" xsd:string -is_a: UBERON:0006059 ! falx cerebri - -[Term] -id: SCTID:317570004 ! -property_value: IAO:0000589 "zygapophysis (SCTID)" xsd:string -is_a: UBERON:0006062 ! zygapophysis - -[Term] -id: SCTID:260488005 ! -property_value: IAO:0000589 "cervical region of vertebral column (SCTID)" xsd:string -is_a: UBERON:0006072 ! cervical region of vertebral column - -[Term] -id: SCTID:243931006 ! -property_value: IAO:0000589 "thoracic region of vertebral column (SCTID)" xsd:string -is_a: UBERON:0006073 ! thoracic region of vertebral column - -[Term] -id: SCTID:243932004 ! -property_value: IAO:0000589 "lumbar region of vertebral column (SCTID)" xsd:string -is_a: UBERON:0006074 ! lumbar region of vertebral column - -[Term] -id: SCTID:245391004 ! -property_value: IAO:0000589 "fundus of gallbladder (SCTID)" xsd:string -is_a: UBERON:0006081 ! fundus of gallbladder - -[Term] -id: SCTID:362226002 ! -property_value: IAO:0000589 "fundus of urinary bladder (SCTID)" xsd:string -is_a: UBERON:0006082 ! fundus of urinary bladder - -[Term] -id: SCTID:362368004 ! -property_value: IAO:0000589 "stria medullaris (SCTID)" xsd:string -is_a: UBERON:0006086 ! stria medullaris - -[Term] -id: SCTID:362336007 ! -property_value: IAO:0000589 "inferior parietal cortex (SCTID)" xsd:string -is_a: UBERON:0006088 ! inferior parietal cortex - -[Term] -id: SCTID:362315005 ! -property_value: IAO:0000589 "inferior horn of the lateral ventricle (SCTID)" xsd:string -is_a: UBERON:0006091 ! inferior horn of the lateral ventricle - -[Term] -id: SCTID:279199007 ! -property_value: IAO:0000589 "cuneus cortex (SCTID)" xsd:string -is_a: UBERON:0006092 ! cuneus cortex - -[Term] -id: SCTID:279200005 ! -property_value: IAO:0000589 "precuneus cortex (SCTID)" xsd:string -is_a: UBERON:0006093 ! precuneus cortex - -[Term] -id: SCTID:279168006 ! -property_value: IAO:0000589 "superior parietal cortex (SCTID)" xsd:string -is_a: UBERON:0006094 ! superior parietal cortex - -[Term] -id: SCTID:384790006 ! -property_value: IAO:0000589 "Brodmann (1909) area 35 (SCTID)" xsd:string -is_a: UBERON:0006102 ! Brodmann (1909) area 35 - -[Term] -id: SCTID:279779009 ! -property_value: IAO:0000589 "cochlear canal (SCTID)" xsd:string -is_a: UBERON:0006106 ! cochlear canal - -[Term] -id: SCTID:369218006 ! -property_value: IAO:0000589 "lateral occipital cortex (SCTID)" xsd:string -is_a: UBERON:0006114 ! lateral occipital cortex - -[Term] -id: SCTID:369116002 ! -property_value: IAO:0000589 "posterior column of fornix (SCTID)" xsd:string -is_a: UBERON:0006115 ! posterior column of fornix - -[Term] -id: SCTID:88545005 ! -property_value: IAO:0000589 "nerve fiber (SCTID)" xsd:string -is_a: UBERON:0006134 ! nerve fiber - -[Term] -id: SCTID:362296008 ! -property_value: IAO:0000589 "myelinated nerve fiber (SCTID)" xsd:string -is_a: UBERON:0006135 ! myelinated nerve fiber - -[Term] -id: SCTID:46920005 ! -property_value: IAO:0000589 "unmyelinated nerve fiber (SCTID)" xsd:string -is_a: UBERON:0006136 ! unmyelinated nerve fiber - -[Term] -id: SCTID:91778006 ! -property_value: IAO:0000589 "proper palmar digital artery (SCTID)" xsd:string -is_a: UBERON:0006137 ! proper palmar digital artery - -[Term] -id: SCTID:230727008 ! -property_value: IAO:0000589 "plantar digital artery (SCTID)" xsd:string -is_a: UBERON:0006138 ! plantar digital artery - -[Term] -id: SCTID:83229009 ! -property_value: IAO:0000589 "palmar digital vein (SCTID)" xsd:string -is_a: UBERON:0006140 ! palmar digital vein - -[Term] -id: SCTID:230173000 ! -property_value: IAO:0000589 "dorsal digital artery of pes (SCTID)" xsd:string -is_a: UBERON:0006145 ! dorsal digital artery of pes - -[Term] -id: SCTID:91793005 ! -property_value: IAO:0000589 "dorsal digital artery of manus (SCTID)" xsd:string -is_a: UBERON:0006146 ! dorsal digital artery of manus - -[Term] -id: SCTID:362222000 ! -property_value: IAO:0000589 "renal sinus (SCTID)" xsd:string -is_a: UBERON:0006171 ! renal sinus - -[Term] -id: SCTID:198427009 ! -property_value: IAO:0000589 "dorsal intercostal artery (SCTID)" xsd:string -is_a: UBERON:0006198 ! dorsal intercostal artery - -[Term] -id: SCTID:150188002 ! -property_value: IAO:0000589 "posterior auricular vein (SCTID)" xsd:string -is_a: UBERON:0006199 ! posterior auricular vein - -[Term] -id: SCTID:361900000 ! -property_value: IAO:0000589 "inguinal ligament (SCTID)" xsd:string -is_a: UBERON:0006204 ! inguinal ligament - -[Term] -id: SCTID:256661003 ! -property_value: IAO:0000589 "pectineal ligament (SCTID)" xsd:string -is_a: UBERON:0006205 ! pectineal ligament - -[Term] -id: SCTID:244498000 ! -property_value: IAO:0000589 "iridocorneal angle (SCTID)" xsd:string -is_a: UBERON:0006206 ! iridocorneal angle - -[Term] -id: SCTID:361412007 ! -property_value: IAO:0000589 "buccopharyngeal membrane (SCTID)" xsd:string -is_a: UBERON:0006211 ! buccopharyngeal membrane - -[Term] -id: SCTID:308826008 ! -property_value: IAO:0000589 "cloacal membrane (SCTID)" xsd:string -is_a: UBERON:0006217 ! cloacal membrane - -[Term] -id: SCTID:369280006 ! -property_value: IAO:0000589 "infundibular recess of 3rd ventricle (SCTID)" xsd:string -is_a: UBERON:0006250 ! infundibular recess of 3rd ventricle - -[Term] -id: SCTID:361426003 ! -property_value: IAO:0000589 "laryngotracheal groove (SCTID)" xsd:string -is_a: UBERON:0006257 ! laryngotracheal groove - -[Term] -id: SCTID:280546005 ! -property_value: IAO:0000589 "orbital fissure (SCTID)" xsd:string -is_a: UBERON:0006271 ! orbital fissure - -[Term] -id: SCTID:361428002 ! -property_value: IAO:0000589 "pericardio-peritoneal canal (SCTID)" xsd:string -is_a: UBERON:0006275 ! pericardio-peritoneal canal - -[Term] -id: SCTID:361413002 ! -property_value: IAO:0000589 "pleuroperitoneal canal (SCTID)" xsd:string -is_a: UBERON:0006279 ! pleuroperitoneal canal - -[Term] -id: SCTID:361524003 ! -property_value: IAO:0000589 "future cardiac ventricle (SCTID)" xsd:string -is_a: UBERON:0006283 ! future cardiac ventricle - -[Term] -id: SCTID:361480006 ! -property_value: IAO:0000589 "early prosencephalic vesicle (SCTID)" xsd:string -is_a: UBERON:0006284 ! early prosencephalic vesicle - -[Term] -id: SCTID:308830006 ! -property_value: IAO:0000589 "subcardinal vein (SCTID)" xsd:string -is_a: UBERON:0006296 ! subcardinal vein - -[Term] -id: SCTID:308829001 ! -property_value: IAO:0000589 "supracardinal vein (SCTID)" xsd:string -is_a: UBERON:0006300 ! supracardinal vein - -[Term] -id: SCTID:172994001 ! -property_value: IAO:0000589 "urogenital membrane (SCTID)" xsd:string -is_a: UBERON:0006307 ! urogenital membrane - -[Term] -id: SCTID:280540004 ! -property_value: IAO:0000589 "chamber of eyeball (SCTID)" xsd:string -is_a: UBERON:0006311 ! chamber of eyeball - -[Term] -id: SCTID:368790005 ! -property_value: IAO:0000589 "orbitalis muscle (SCTID)" xsd:string -is_a: UBERON:0006318 ! orbitalis muscle - -[Term] -id: SCTID:181156006 ! -property_value: IAO:0000589 "inferior oblique extraocular muscle (SCTID)" xsd:string -is_a: UBERON:0006320 ! inferior oblique extraocular muscle - -[Term] -id: SCTID:181155005 ! -property_value: IAO:0000589 "superior oblique extraocular muscle (SCTID)" xsd:string -is_a: UBERON:0006321 ! superior oblique extraocular muscle - -[Term] -id: SCTID:181154009 ! -property_value: IAO:0000589 "inferior rectus extraocular muscle (SCTID)" xsd:string -is_a: UBERON:0006322 ! inferior rectus extraocular muscle - -[Term] -id: SCTID:181153003 ! -property_value: IAO:0000589 "superior rectus extraocular muscle (SCTID)" xsd:string -is_a: UBERON:0006323 ! superior rectus extraocular muscle - -[Term] -id: SCTID:279557001 ! -property_value: IAO:0000589 "laryngeal intrinsic ligament (SCTID)" xsd:string -is_a: UBERON:0006325 ! laryngeal intrinsic ligament - -[Term] -id: SCTID:279532006 ! -property_value: IAO:0000589 "base of arytenoid (SCTID)" xsd:string -is_a: UBERON:0006326 ! base of arytenoid - -[Term] -id: SCTID:244808004 ! -property_value: IAO:0000589 "laryngeal extrinsic muscle (SCTID)" xsd:string -is_a: UBERON:0006327 ! laryngeal extrinsic muscle - -[Term] -id: SCTID:244810002 ! -property_value: IAO:0000589 "laryngeal intrinsic muscle (SCTID)" xsd:string -is_a: UBERON:0006328 ! laryngeal intrinsic muscle - -[Term] -id: SCTID:244800006 ! -property_value: IAO:0000589 "superior pharyngeal constrictor (SCTID)" xsd:string -is_a: UBERON:0006329 ! superior pharyngeal constrictor - -[Term] -id: SCTID:362179003 ! -property_value: IAO:0000589 "anterior lingual gland (SCTID)" xsd:string -is_a: UBERON:0006330 ! anterior lingual gland - -[Term] -id: SCTID:41127006 ! -property_value: IAO:0000589 "snout (SCTID)" xsd:string -is_a: UBERON:0006333 ! snout - -[Term] -id: SCTID:361518009 ! -property_value: IAO:0000589 "stapedial artery (SCTID)" xsd:string -is_a: UBERON:0006345 ! stapedial artery - -[Term] -id: SCTID:261400009 ! -property_value: IAO:0000589 "epigastric artery (SCTID)" xsd:string -is_a: UBERON:0006349 ! epigastric artery - -[Term] -id: SCTID:95945003 ! -property_value: IAO:0000589 "basisphenoid bone (SCTID)" xsd:string -is_a: UBERON:0006428 ! basisphenoid bone - -[Term] -id: SCTID:27962002 ! -property_value: IAO:0000589 "os penis (SCTID)" xsd:string -is_a: UBERON:0006435 ! os penis - -[Term] -id: SCTID:338130007 ! -property_value: IAO:0000589 "principal artery to forelimb (SCTID)" xsd:string -is_a: UBERON:0006436 ! principal artery to forelimb - -[Term] -id: SCTID:361443000 ! -property_value: IAO:0000589 "principal artery to hindlimb (SCTID)" xsd:string -is_a: UBERON:0006438 ! principal artery to hindlimb - -[Term] -id: SCTID:36051002 ! -property_value: IAO:0000589 "subhepatic recess (SCTID)" xsd:string -is_a: UBERON:0006442 ! subhepatic recess - -[Term] -id: SCTID:278775008 ! -property_value: IAO:0000589 "L5 segment of lumbar spinal cord (SCTID)" xsd:string -is_a: UBERON:0006447 ! L5 segment of lumbar spinal cord - -[Term] -id: SCTID:278776009 ! -property_value: IAO:0000589 "L1 segment of lumbar spinal cord (SCTID)" xsd:string -is_a: UBERON:0006448 ! L1 segment of lumbar spinal cord - -[Term] -id: SCTID:278778005 ! -property_value: IAO:0000589 "L3 segment of lumbar spinal cord (SCTID)" xsd:string -is_a: UBERON:0006449 ! L3 segment of lumbar spinal cord - -[Term] -id: SCTID:278777000 ! -property_value: IAO:0000589 "L2 segment of lumbar spinal cord (SCTID)" xsd:string -is_a: UBERON:0006450 ! L2 segment of lumbar spinal cord - -[Term] -id: SCTID:278779002 ! -property_value: IAO:0000589 "L4 segment of lumbar spinal cord (SCTID)" xsd:string -is_a: UBERON:0006451 ! L4 segment of lumbar spinal cord - -[Term] -id: SCTID:278766006 ! -property_value: IAO:0000589 "T4 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006452 ! T4 segment of thoracic spinal cord - -[Term] -id: SCTID:278767002 ! -property_value: IAO:0000589 "T5 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006453 ! T5 segment of thoracic spinal cord - -[Term] -id: SCTID:278768007 ! -property_value: IAO:0000589 "T6 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006454 ! T6 segment of thoracic spinal cord - -[Term] -id: SCTID:278769004 ! -property_value: IAO:0000589 "T7 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006455 ! T7 segment of thoracic spinal cord - -[Term] -id: SCTID:278770003 ! -property_value: IAO:0000589 "T8 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006456 ! T8 segment of thoracic spinal cord - -[Term] -id: SCTID:278762008 ! -property_value: IAO:0000589 "T1 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006457 ! T1 segment of thoracic spinal cord - -[Term] -id: SCTID:278763003 ! -property_value: IAO:0000589 "T2 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006458 ! T2 segment of thoracic spinal cord - -[Term] -id: SCTID:278764009 ! -property_value: IAO:0000589 "T3 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006459 ! T3 segment of thoracic spinal cord - -[Term] -id: SCTID:278780004 ! -property_value: IAO:0000589 "S1 segment of sacral spinal cord (SCTID)" xsd:string -is_a: UBERON:0006460 ! S1 segment of sacral spinal cord - -[Term] -id: SCTID:278781000 ! -property_value: IAO:0000589 "S2 segment of sacral spinal cord (SCTID)" xsd:string -is_a: UBERON:0006461 ! S2 segment of sacral spinal cord - -[Term] -id: SCTID:278782007 ! -property_value: IAO:0000589 "S3 segment of sacral spinal cord (SCTID)" xsd:string -is_a: UBERON:0006462 ! S3 segment of sacral spinal cord - -[Term] -id: SCTID:278783002 ! -property_value: IAO:0000589 "S4 segment of sacral spinal cord (SCTID)" xsd:string -is_a: UBERON:0006463 ! S4 segment of sacral spinal cord - -[Term] -id: SCTID:278784008 ! -property_value: IAO:0000589 "S5 segment of sacral spinal cord (SCTID)" xsd:string -is_a: UBERON:0006464 ! S5 segment of sacral spinal cord - -[Term] -id: SCTID:278771004 ! -property_value: IAO:0000589 "T9 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006465 ! T9 segment of thoracic spinal cord - -[Term] -id: SCTID:278772006 ! -property_value: IAO:0000589 "T10 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006466 ! T10 segment of thoracic spinal cord - -[Term] -id: SCTID:278773001 ! -property_value: IAO:0000589 "T11 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006467 ! T11 segment of thoracic spinal cord - -[Term] -id: SCTID:278774007 ! -property_value: IAO:0000589 "T12 segment of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0006468 ! T12 segment of thoracic spinal cord - -[Term] -id: SCTID:278754000 ! -property_value: IAO:0000589 "C1 segment of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0006469 ! C1 segment of cervical spinal cord - -[Term] -id: SCTID:278761001 ! -property_value: IAO:0000589 "C8 segment of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0006470 ! C8 segment of cervical spinal cord - -[Term] -id: SCTID:384764008 ! -property_value: IAO:0000589 "Brodmann (1909) area 5 (SCTID)" xsd:string -is_a: UBERON:0006471 ! Brodmann (1909) area 5 - -[Term] -id: SCTID:384765009 ! -property_value: IAO:0000589 "Brodmann (1909) area 6 (SCTID)" xsd:string -is_a: UBERON:0006472 ! Brodmann (1909) area 6 - -[Term] -id: SCTID:384773000 ! -property_value: IAO:0000589 "Brodmann (1909) area 18 (SCTID)" xsd:string -is_a: UBERON:0006473 ! Brodmann (1909) area 18 - -[Term] -id: SCTID:384784007 ! -property_value: IAO:0000589 "Brodmann (1909) area 30 (SCTID)" xsd:string -is_a: UBERON:0006474 ! Brodmann (1909) area 30 - -[Term] -id: SCTID:384785008 ! -property_value: IAO:0000589 "Brodmann (1909) area 31 (SCTID)" xsd:string -is_a: UBERON:0006475 ! Brodmann (1909) area 31 - -[Term] -id: SCTID:384788005 ! -property_value: IAO:0000589 "Brodmann (1909) area 33 (SCTID)" xsd:string -is_a: UBERON:0006476 ! Brodmann (1909) area 33 - -[Term] -id: SCTID:384789002 ! -property_value: IAO:0000589 "Brodmann (1909) area 34 (SCTID)" xsd:string -is_a: UBERON:0006477 ! Brodmann (1909) area 34 - -[Term] -id: SCTID:384792003 ! -property_value: IAO:0000589 "Brodmann (1909) area 37 (SCTID)" xsd:string -is_a: UBERON:0006478 ! Brodmann (1909) area 37 - -[Term] -id: SCTID:384793008 ! -property_value: IAO:0000589 "Brodmann (1909) area 38 (SCTID)" xsd:string -is_a: UBERON:0006479 ! Brodmann (1909) area 38 - -[Term] -id: SCTID:384794002 ! -property_value: IAO:0000589 "Brodmann (1909) area 39 (SCTID)" xsd:string -is_a: UBERON:0006480 ! Brodmann (1909) area 39 - -[Term] -id: SCTID:384803008 ! -property_value: IAO:0000589 "Brodmann (1909) area 44 (SCTID)" xsd:string -is_a: UBERON:0006481 ! Brodmann (1909) area 44 - -[Term] -id: SCTID:384805001 ! -property_value: IAO:0000589 "Brodmann (1909) area 45 (SCTID)" xsd:string -is_a: UBERON:0006482 ! Brodmann (1909) area 45 - -[Term] -id: SCTID:384806000 ! -property_value: IAO:0000589 "Brodmann (1909) area 46 (SCTID)" xsd:string -is_a: UBERON:0006483 ! Brodmann (1909) area 46 - -[Term] -id: SCTID:384807009 ! -property_value: IAO:0000589 "Brodmann (1909) area 47 (SCTID)" xsd:string -is_a: UBERON:0006484 ! Brodmann (1909) area 47 - -[Term] -id: SCTID:384808004 ! -property_value: IAO:0000589 "Brodmann (1909) area 48 (SCTID)" xsd:string -is_a: UBERON:0006485 ! Brodmann (1909) area 48 - -[Term] -id: SCTID:384809007 ! -property_value: IAO:0000589 "Brodmann (1909) area 52 (SCTID)" xsd:string -is_a: UBERON:0006486 ! Brodmann (1909) area 52 - -[Term] -id: SCTID:278756003 ! -property_value: IAO:0000589 "C3 segment of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0006488 ! C3 segment of cervical spinal cord - -[Term] -id: SCTID:278755004 ! -property_value: IAO:0000589 "C2 segment of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0006489 ! C2 segment of cervical spinal cord - -[Term] -id: SCTID:278757007 ! -property_value: IAO:0000589 "C4 segment of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0006490 ! C4 segment of cervical spinal cord - -[Term] -id: SCTID:278758002 ! -property_value: IAO:0000589 "C5 segment of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0006491 ! C5 segment of cervical spinal cord - -[Term] -id: SCTID:278759005 ! -property_value: IAO:0000589 "C6 segment of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0006492 ! C6 segment of cervical spinal cord - -[Term] -id: SCTID:278760000 ! -property_value: IAO:0000589 "C7 segment of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0006493 ! C7 segment of cervical spinal cord - -[Term] -id: SCTID:279534007 ! -property_value: IAO:0000589 "apex of arytenoid (SCTID)" xsd:string -is_a: UBERON:0006494 ! apex of arytenoid - -[Term] -id: SCTID:181714004 ! -property_value: IAO:0000589 "interosseous muscle of pes (SCTID)" xsd:string -is_a: UBERON:0006497 ! interosseous muscle of pes - -[Term] -id: SCTID:276832000 ! -property_value: IAO:0000589 "kidney calyx (SCTID)" xsd:string -is_a: UBERON:0006517 ! kidney calyx - -[Term] -id: SCTID:272654004 ! -property_value: IAO:0000589 "right lung lobe (SCTID)" xsd:string -is_a: UBERON:0006518 ! right lung lobe - -[Term] -id: SCTID:361333002 ! -property_value: IAO:0000589 "renal convoluted tubule (SCTID)" xsd:string -is_a: UBERON:0006534 ! renal convoluted tubule - -[Term] -id: SCTID:362597000 ! -property_value: IAO:0000589 "lymphatic part of lymphoid system (SCTID)" xsd:string -is_a: UBERON:0006558 ! lymphatic part of lymphoid system - -[Term] -id: SCTID:362051006 ! -property_value: IAO:0000589 "superficial palmar arch (SCTID)" xsd:string -is_a: UBERON:0006564 ! superficial palmar arch - -[Term] -id: SCTID:279479008 ! -property_value: IAO:0000589 "female urethral meatus (SCTID)" xsd:string -is_a: UBERON:0006565 ! female urethral meatus - -[Term] -id: SCTID:362021000 ! -property_value: IAO:0000589 "left ventricle myocardium (SCTID)" xsd:string -is_a: UBERON:0006566 ! left ventricle myocardium - -[Term] -id: SCTID:362020004 ! -property_value: IAO:0000589 "right ventricle myocardium (SCTID)" xsd:string -is_a: UBERON:0006567 ! right ventricle myocardium - -[Term] -id: SCTID:279304003 ! -property_value: IAO:0000589 "hypothalamic nucleus (SCTID)" xsd:string -is_a: UBERON:0006568 ! hypothalamic nucleus - -[Term] -id: SCTID:192373001 ! -property_value: IAO:0000589 "trabecula carnea of right ventricle (SCTID)" xsd:string -is_a: UBERON:0006570 ! trabecula carnea of right ventricle - -[Term] -id: SCTID:190344008 ! -property_value: IAO:0000589 "trabecula carnea of left ventricle (SCTID)" xsd:string -is_a: UBERON:0006571 ! trabecula carnea of left ventricle - -[Term] -id: SCTID:245445008 ! -property_value: IAO:0000589 "pectinate line (SCTID)" xsd:string -is_a: UBERON:0006574 ! pectinate line - -[Term] -id: SCTID:80391004 ! -property_value: IAO:0000589 "ligamentum venosum (SCTID)" xsd:string -is_a: UBERON:0006587 ! ligamentum venosum - -[Term] -id: SCTID:262209009 ! -property_value: IAO:0000589 "round ligament of liver (SCTID)" xsd:string -is_a: UBERON:0006588 ! round ligament of liver - -[Term] -id: SCTID:245495009 ! -property_value: IAO:0000589 "round ligament of uterus (SCTID)" xsd:string -is_a: UBERON:0006589 ! round ligament of uterus - -[Term] -id: SCTID:300350000 ! -property_value: IAO:0000589 "gubernacular cord (SCTID)" xsd:string -is_a: UBERON:0006594 ! gubernacular cord - -[Term] -id: SCTID:279427007 ! -property_value: IAO:0000589 "medial umbilical ligament (SCTID)" xsd:string -is_a: UBERON:0006607 ! medial umbilical ligament - -[Term] -id: SCTID:16657007 ! -property_value: IAO:0000589 "corpus cavernosum clitoridis (SCTID)" xsd:string -is_a: UBERON:0006608 ! corpus cavernosum clitoridis - -[Term] -id: SCTID:331712004 ! -property_value: IAO:0000589 "aponeurosis (SCTID)" xsd:string -is_a: UBERON:0006614 ! aponeurosis - -[Term] -id: SCTID:341586007 ! -property_value: IAO:0000589 "venous sinus (SCTID)" xsd:string -is_a: UBERON:0006615 ! venous sinus - -[Term] -id: SCTID:368567003 ! -property_value: IAO:0000589 "right external ear (SCTID)" xsd:string -is_a: UBERON:0006616 ! right external ear - -[Term] -id: SCTID:368589004 ! -property_value: IAO:0000589 "left external ear (SCTID)" xsd:string -is_a: UBERON:0006617 ! left external ear - -[Term] -id: SCTID:305223006 ! -property_value: IAO:0000589 "atrium auricular region (SCTID)" xsd:string -is_a: UBERON:0006618 ! atrium auricular region - -[Term] -id: SCTID:277930000 ! -property_value: IAO:0000589 "left atrium auricular region (SCTID)" xsd:string -is_a: UBERON:0006630 ! left atrium auricular region - -[Term] -id: SCTID:277713005 ! -property_value: IAO:0000589 "right atrium auricular region (SCTID)" xsd:string -is_a: UBERON:0006631 ! right atrium auricular region - -[Term] -id: SCTID:244242003 ! -property_value: IAO:0000589 "musculo-phrenic artery (SCTID)" xsd:string -is_a: UBERON:0006632 ! musculo-phrenic artery - -[Term] -id: SCTID:181912007 ! -property_value: IAO:0000589 "coracoid process of scapula (SCTID)" xsd:string -is_a: UBERON:0006633 ! coracoid process of scapula - -[Term] -id: SCTID:181375007 ! -property_value: IAO:0000589 "lingual vein (SCTID)" xsd:string -is_a: UBERON:0006634 ! lingual vein - -[Term] -id: SCTID:362696003 ! -property_value: IAO:0000589 "anterior abdominal wall (SCTID)" xsd:string -is_a: UBERON:0006635 ! anterior abdominal wall - -[Term] -id: SCTID:244285007 ! -property_value: IAO:0000589 "lumbar artery (SCTID)" xsd:string -is_a: UBERON:0006636 ! lumbar artery - -[Term] -id: SCTID:89583000 ! -property_value: IAO:0000589 "remnant of urachus (SCTID)" xsd:string -is_a: UBERON:0006638 ! remnant of urachus - -[Term] -id: SCTID:362270006 ! -property_value: IAO:0000589 "crus of penis (SCTID)" xsd:string -is_a: UBERON:0006639 ! crus of penis - -[Term] -id: SCTID:279860002 ! -property_value: IAO:0000589 "crus of clitoris (SCTID)" xsd:string -is_a: UBERON:0006640 ! crus of clitoris - -[Term] -id: SCTID:259488000 ! -property_value: IAO:0000589 "muscle layer of oviduct (SCTID)" xsd:string -is_a: UBERON:0006642 ! muscle layer of oviduct - -[Term] -id: SCTID:279604006 ! -property_value: IAO:0000589 "tunica albuginea of testis (SCTID)" xsd:string -is_a: UBERON:0006643 ! tunica albuginea of testis - -[Term] -id: SCTID:258409003 ! -property_value: IAO:0000589 "tunica albuginea of ovary (SCTID)" xsd:string -is_a: UBERON:0006644 ! tunica albuginea of ovary - -[Term] -id: SCTID:299803005 ! -property_value: IAO:0000589 "adventitia of ductus deferens (SCTID)" xsd:string -is_a: UBERON:0006647 ! adventitia of ductus deferens - -[Term] -id: SCTID:252406002 ! -property_value: IAO:0000589 "adventitia of seminal vesicle (SCTID)" xsd:string -is_a: UBERON:0006648 ! adventitia of seminal vesicle - -[Term] -id: SCTID:279917007 ! -property_value: IAO:0000589 "suspensory ligament of ovary (SCTID)" xsd:string -is_a: UBERON:0006649 ! suspensory ligament of ovary - -[Term] -id: SCTID:362281009 ! -property_value: IAO:0000589 "tunica vaginalis testis (SCTID)" xsd:string -is_a: UBERON:0006650 ! tunica vaginalis testis - -[Term] -id: SCTID:367713008 ! -property_value: IAO:0000589 "tunica vaginalis testis (SCTID)" xsd:string -is_a: UBERON:0006650 ! tunica vaginalis testis - -[Term] -id: SCTID:279601003 ! -property_value: IAO:0000589 "appendix testis (SCTID)" xsd:string -is_a: UBERON:0006651 ! appendix testis - -[Term] -id: SCTID:253069005 ! -property_value: IAO:0000589 "muscular layer of vagina (SCTID)" xsd:string -is_a: UBERON:0006652 ! muscular layer of vagina - -[Term] -id: SCTID:362241002 ! -property_value: IAO:0000589 "glans clitoris (SCTID)" xsd:string -is_a: UBERON:0006653 ! glans clitoris - -[Term] -id: SCTID:367754000 ! -property_value: IAO:0000589 "perineal body (SCTID)" xsd:string -is_a: UBERON:0006654 ! perineal body - -[Term] -id: SCTID:279591002 ! -property_value: IAO:0000589 "septum of scrotum (SCTID)" xsd:string -is_a: UBERON:0006655 ! septum of scrotum - -[Term] -id: SCTID:55433007 ! -property_value: IAO:0000589 "deep dorsal vein of penis (SCTID)" xsd:string -is_a: UBERON:0006656 ! deep dorsal vein of penis - -[Term] -id: SCTID:181914008 ! -property_value: IAO:0000589 "glenoid fossa (SCTID)" xsd:string -is_a: UBERON:0006657 ! glenoid fossa - -[Term] -id: SCTID:86915006 ! -property_value: IAO:0000589 "muscular coat (SCTID)" xsd:string -is_a: UBERON:0006660 ! muscular coat - -[Term] -id: SCTID:368677009 ! -property_value: IAO:0000589 "epicranial aponeurosis (SCTID)" xsd:string -is_a: UBERON:0006661 ! epicranial aponeurosis - -[Term] -id: SCTID:1895000 ! -property_value: IAO:0000589 "musculo-phrenic vein (SCTID)" xsd:string -is_a: UBERON:0006662 ! musculo-phrenic vein - -[Term] -id: SCTID:244408009 ! -property_value: IAO:0000589 "hemiazygos vein (SCTID)" xsd:string -is_a: UBERON:0006663 ! hemiazygos vein - -[Term] -id: SCTID:312163002 ! -property_value: IAO:0000589 "greater palatine artery (SCTID)" xsd:string -is_a: UBERON:0006664 ! greater palatine artery - -[Term] -id: SCTID:244396002 ! -property_value: IAO:0000589 "great cerebral vein (SCTID)" xsd:string -is_a: UBERON:0006666 ! great cerebral vein - -[Term] -id: SCTID:264194004 ! -property_value: IAO:0000589 "pituitary fossa (SCTID)" xsd:string -is_a: UBERON:0006667 ! pituitary fossa - -[Term] -id: SCTID:244943002 ! -property_value: IAO:0000589 "central tendon of diaphragm (SCTID)" xsd:string -is_a: UBERON:0006670 ! central tendon of diaphragm - -[Term] -id: SCTID:363656009 ! -property_value: IAO:0000589 "orbital fat pad (SCTID)" xsd:string -is_a: UBERON:0006671 ! orbital fat pad - -[Term] -id: SCTID:368876003 ! -property_value: IAO:0000589 "mandibular canal (SCTID)" xsd:string -is_a: UBERON:0006673 ! mandibular canal - -[Term] -id: SCTID:278830004 ! -property_value: IAO:0000589 "inguinal ring (SCTID)" xsd:string -is_a: UBERON:0006674 ! inguinal ring - -[Term] -id: SCTID:370140002 ! -property_value: IAO:0000589 "muscularis mucosa (SCTID)" xsd:string -is_a: UBERON:0006676 ! muscularis mucosa - -[Term] -id: SCTID:308854001 ! -property_value: IAO:0000589 "foramen secundum (SCTID)" xsd:string -is_a: UBERON:0006678 ! foramen secundum - -[Term] -id: SCTID:181214003 ! -property_value: IAO:0000589 "carina of trachea (SCTID)" xsd:string -is_a: UBERON:0006679 ! carina of trachea - -[Term] -id: SCTID:197333002 ! -property_value: IAO:0000589 "trachealis (SCTID)" xsd:string -is_a: UBERON:0006680 ! trachealis - -[Term] -id: SCTID:139380001 ! -property_value: IAO:0000589 "hypoglossal canal (SCTID)" xsd:string -is_a: UBERON:0006682 ! hypoglossal canal - -[Term] -id: SCTID:244681005 ! -property_value: IAO:0000589 "posterior fontanelle (SCTID)" xsd:string -is_a: UBERON:0006683 ! posterior fontanelle - -[Term] -id: SCTID:136955008 ! -property_value: IAO:0000589 "sphenoidal fontanelle (SCTID)" xsd:string -is_a: UBERON:0006684 ! sphenoidal fontanelle - -[Term] -id: SCTID:181376008 ! -property_value: IAO:0000589 "spinal vein (SCTID)" xsd:string -is_a: UBERON:0006686 ! spinal vein - -[Term] -id: SCTID:85139009 ! -property_value: IAO:0000589 "sublingual caruncle (SCTID)" xsd:string -is_a: UBERON:0006688 ! sublingual caruncle - -[Term] -id: SCTID:264113009 ! -property_value: IAO:0000589 "frenulum of tongue (SCTID)" xsd:string -is_a: UBERON:0006689 ! frenulum of tongue - -[Term] -id: SCTID:25834009 ! -property_value: IAO:0000589 "deep dorsal vein of clitoris (SCTID)" xsd:string -is_a: UBERON:0006690 ! deep dorsal vein of clitoris - -[Term] -id: SCTID:244428008 ! -property_value: IAO:0000589 "tentorium cerebelli (SCTID)" xsd:string -is_a: UBERON:0006691 ! tentorium cerebelli - -[Term] -id: SCTID:361746009 ! -property_value: IAO:0000589 "vertebral canal (SCTID)" xsd:string -is_a: UBERON:0006692 ! vertebral canal - -[Term] -id: SCTID:369140005 ! -property_value: IAO:0000589 "mammillotegmental axonal tract (SCTID)" xsd:string -is_a: UBERON:0006698 ! mammillotegmental axonal tract - -[Term] -id: SCTID:368738001 ! -property_value: IAO:0000589 "foramen cecum of tongue (SCTID)" xsd:string -is_a: UBERON:0006699 ! foramen cecum of tongue - -[Term] -id: SCTID:244771003 ! -property_value: IAO:0000589 "medial pterygoid muscle (SCTID)" xsd:string -is_a: UBERON:0006718 ! medial pterygoid muscle - -[Term] -id: SCTID:244772005 ! -property_value: IAO:0000589 "lateral pterygoid muscle (SCTID)" xsd:string -is_a: UBERON:0006719 ! lateral pterygoid muscle - -[Term] -id: SCTID:244770002 ! -property_value: IAO:0000589 "pterygoid muscle (SCTID)" xsd:string -is_a: UBERON:0006720 ! pterygoid muscle - -[Term] -id: SCTID:361298007 ! -property_value: IAO:0000589 "alisphenoid bone (SCTID)" xsd:string -is_a: UBERON:0006721 ! alisphenoid bone - -[Term] -id: SCTID:264091009 ! -property_value: IAO:0000589 "manubrium of malleus (SCTID)" xsd:string -is_a: UBERON:0006722 ! manubrium of malleus - -[Term] -id: SCTID:361314007 ! -property_value: IAO:0000589 "cochlear modiolus (SCTID)" xsd:string -is_a: UBERON:0006723 ! cochlear modiolus - -[Term] -id: SCTID:361315008 ! -property_value: IAO:0000589 "osseus spiral lamina (SCTID)" xsd:string -is_a: UBERON:0006724 ! osseus spiral lamina - -[Term] -id: SCTID:279840005 ! -property_value: IAO:0000589 "spiral ligament (SCTID)" xsd:string -is_a: UBERON:0006725 ! spiral ligament - -[Term] -id: SCTID:362525004 ! -property_value: IAO:0000589 "outer canthus (SCTID)" xsd:string -is_a: UBERON:0006726 ! outer canthus - -[Term] -id: SCTID:271288003 ! -property_value: IAO:0000589 "liver left lateral lobe (SCTID)" xsd:string -is_a: UBERON:0006727 ! liver left lateral lobe - -[Term] -id: SCTID:271085007 ! -property_value: IAO:0000589 "liver left medial lobe (SCTID)" xsd:string -is_a: UBERON:0006728 ! liver left medial lobe - -[Term] -id: SCTID:17779003 ! -property_value: IAO:0000589 "liver perisinusoidal space (SCTID)" xsd:string -is_a: UBERON:0006729 ! liver perisinusoidal space - -[Term] -id: SCTID:181145006 ! -property_value: IAO:0000589 "canthus (SCTID)" xsd:string -is_a: UBERON:0006742 ! canthus - -[Term] -id: SCTID:245540001 ! -property_value: IAO:0000589 "superior parathyroid gland (SCTID)" xsd:string -is_a: UBERON:0006749 ! superior parathyroid gland - -[Term] -id: SCTID:245542009 ! -property_value: IAO:0000589 "inferior parathyroid gland (SCTID)" xsd:string -is_a: UBERON:0006755 ! inferior parathyroid gland - -[Term] -id: SCTID:308821003 ! -property_value: IAO:0000589 "median lingual swelling (SCTID)" xsd:string -is_a: UBERON:0006756 ! median lingual swelling - -[Term] -id: SCTID:63716004 ! -property_value: IAO:0000589 "corneo-scleral junction (SCTID)" xsd:string -is_a: UBERON:0006761 ! corneo-scleral junction - -[Term] -id: SCTID:362524000 ! -property_value: IAO:0000589 "suspensory ligament of lens (SCTID)" xsd:string -is_a: UBERON:0006762 ! suspensory ligament of lens - -[Term] -id: SCTID:181311009 ! -property_value: IAO:0000589 "anterior communicating artery (SCTID)" xsd:string -is_a: UBERON:0006764 ! anterior communicating artery - -[Term] -id: SCTID:361791000 ! -property_value: IAO:0000589 "head of femur (SCTID)" xsd:string -is_a: UBERON:0006767 ! head of femur - -[Term] -id: SCTID:333108008 ! -property_value: IAO:0000589 "epiphyseal line (SCTID)" xsd:string -is_a: UBERON:0006768 ! epiphyseal line - -[Term] -id: SCTID:65000005 ! -property_value: IAO:0000589 "apophysis (SCTID)" xsd:string -is_a: UBERON:0006770 ! apophysis - -[Term] -id: SCTID:181924000 ! -property_value: IAO:0000589 "proximal head of humerus (SCTID)" xsd:string -is_a: UBERON:0006801 ! proximal head of humerus - -[Term] -id: SCTID:361777006 ! -property_value: IAO:0000589 "obturator foramen (SCTID)" xsd:string -is_a: UBERON:0006803 ! obturator foramen - -[Term] -id: SCTID:57987007 ! -property_value: IAO:0000589 "reticular tissue (SCTID)" xsd:string -is_a: UBERON:0006804 ! reticular tissue - -[Term] -id: SCTID:181920009 ! -property_value: IAO:0000589 "sternal end of clavicle (SCTID)" xsd:string -is_a: UBERON:0006805 ! sternal end of clavicle - -[Term] -id: SCTID:181929005 ! -property_value: IAO:0000589 "entepicondyle of humerus (SCTID)" xsd:string -is_a: UBERON:0006806 ! entepicondyle of humerus - -[Term] -id: SCTID:181933003 ! -property_value: IAO:0000589 "ectepicondyle of humerus (SCTID)" xsd:string -is_a: UBERON:0006807 ! ectepicondyle of humerus - -[Term] -id: SCTID:181949001 ! -property_value: IAO:0000589 "olecranon (SCTID)" xsd:string -is_a: UBERON:0006810 ! olecranon - -[Term] -id: SCTID:244686000 ! -property_value: IAO:0000589 "mental foramen (SCTID)" xsd:string -is_a: UBERON:0006812 ! mental foramen - -[Term] -id: SCTID:281486007 ! -property_value: IAO:0000589 "nasal skeleton (SCTID)" xsd:string -is_a: UBERON:0006813 ! nasal skeleton - -[Term] -id: SCTID:68477002 ! -property_value: IAO:0000589 "areolar connective tissue (SCTID)" xsd:string -is_a: UBERON:0006815 ! areolar connective tissue - -[Term] -id: SCTID:361743001 ! -property_value: IAO:0000589 "body of sternum (SCTID)" xsd:string -is_a: UBERON:0006820 ! body of sternum - -[Term] -id: SCTID:304590006 ! -property_value: IAO:0000589 "proximal epiphysis of ulna (SCTID)" xsd:string -is_a: UBERON:0006822 ! proximal epiphysis of ulna - -[Term] -id: SCTID:197486000 ! -property_value: IAO:0000589 "lumen of trachea (SCTID)" xsd:string -is_a: UBERON:0006833 ! lumen of trachea - -[Term] -id: SCTID:369023003 ! -property_value: IAO:0000589 "nucleus of lateral lemniscus (SCTID)" xsd:string -is_a: UBERON:0006840 ! nucleus of lateral lemniscus - -[Term] -id: SCTID:272023004 ! -property_value: IAO:0000589 "central vein of liver (SCTID)" xsd:string -is_a: UBERON:0006841 ! central vein of liver - -[Term] -id: SCTID:280161004 ! -property_value: IAO:0000589 "root of cranial nerve (SCTID)" xsd:string -is_a: UBERON:0006843 ! root of cranial nerve - -[Term] -id: SCTID:362107000 ! -property_value: IAO:0000589 "cusp of tooth (SCTID)" xsd:string -is_a: UBERON:0006844 ! cusp of tooth - -[Term] -id: SCTID:302517007 ! -property_value: IAO:0000589 "scapula (SCTID)" xsd:string -is_a: UBERON:0006849 ! scapula - -[Term] -id: SCTID:3563003 ! -property_value: IAO:0000589 "muscular coat of ureter (SCTID)" xsd:string -is_a: UBERON:0006855 ! muscular coat of ureter - -[Term] -id: SCTID:64748009 ! -property_value: IAO:0000589 "swim bladder (SCTID)" xsd:string -is_a: UBERON:0006860 ! swim bladder - -[Term] -id: SCTID:182048009 ! -property_value: IAO:0000589 "diaphysis of femur (SCTID)" xsd:string -is_a: UBERON:0006862 ! diaphysis of femur - -[Term] -id: SCTID:243995004 ! -property_value: IAO:0000589 "anal part of perineum (SCTID)" xsd:string -is_a: UBERON:0006867 ! anal part of perineum - -[Term] -id: SCTID:255413006 ! -property_value: IAO:0000589 "decidua parietalis (SCTID)" xsd:string -is_a: UBERON:0006878 ! decidua parietalis - -[Term] -id: SCTID:361345006 ! -property_value: IAO:0000589 "ala of nose (SCTID)" xsd:string -is_a: UBERON:0006906 ! ala of nose - -[Term] -id: SCTID:40118003 ! -property_value: IAO:0000589 "squamous epithelium (SCTID)" xsd:string -is_a: UBERON:0006914 ! squamous epithelium - -[Term] -id: SCTID:309045006 ! -property_value: IAO:0000589 "sensory epithelium (SCTID)" xsd:string -is_a: UBERON:0006934 ! sensory epithelium - -[Term] -id: SCTID:16811007 ! -property_value: IAO:0000589 "buccal mucosa (SCTID)" xsd:string -is_a: UBERON:0006956 ! buccal mucosa - -[Term] -id: SCTID:277728005 ! -property_value: IAO:0000589 "great vein of heart (SCTID)" xsd:string -is_a: UBERON:0006958 ! great vein of heart - -[Term] -id: SCTID:259306002 ! -property_value: IAO:0000589 "ovary stroma (SCTID)" xsd:string -is_a: UBERON:0006960 ! ovary stroma - -[Term] -id: SCTID:69221006 ! -property_value: IAO:0000589 "horn (SCTID)" xsd:string -is_a: UBERON:0006967 ! horn - -[Term] -id: SCTID:410034008 ! -property_value: IAO:0000589 "antler (SCTID)" xsd:string -is_a: UBERON:0006971 ! antler - -[Term] -id: SCTID:360387000 ! -property_value: IAO:0000589 "cardiogenic splanchnic mesoderm (SCTID)" xsd:string -is_a: UBERON:0007005 ! cardiogenic splanchnic mesoderm - -[Term] -id: SCTID:360394002 ! -property_value: IAO:0000589 "presumptive gut (SCTID)" xsd:string -is_a: UBERON:0007026 ! presumptive gut - -[Term] -id: SCTID:280701007 ! -property_value: IAO:0000589 "vitelline duct (SCTID)" xsd:string -is_a: UBERON:0007105 ! vitelline duct - -[Term] -id: SCTID:360403003 ! -property_value: IAO:0000589 "chorionic villus (SCTID)" xsd:string -is_a: UBERON:0007106 ! chorionic villus - -[Term] -id: SCTID:181447009 ! -property_value: IAO:0000589 "Douglas' pouch (SCTID)" xsd:string -is_a: UBERON:0007111 ! Douglas' pouch - -[Term] -id: SCTID:245612004 ! -property_value: IAO:0000589 "deciduous tooth (SCTID)" xsd:string -is_a: UBERON:0007115 ! deciduous tooth - -[Term] -id: SCTID:243961003 ! -property_value: IAO:0000589 "umbilicus (SCTID)" xsd:string -is_a: UBERON:0007118 ! umbilicus - -[Term] -id: SCTID:361792007 ! -property_value: IAO:0000589 "neck of femur (SCTID)" xsd:string -is_a: UBERON:0007119 ! neck of femur - -[Term] -id: SCTID:304572005 ! -property_value: IAO:0000589 "premolar tooth (SCTID)" xsd:string -is_a: UBERON:0007120 ! premolar tooth - -[Term] -id: SCTID:244023005 ! -property_value: IAO:0000589 "skin nerve field (SCTID)" xsd:string -is_a: UBERON:0007121 ! skin nerve field - -[Term] -id: SCTID:345248006 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (SCTID)" xsd:string -is_a: UBERON:0007122 ! pharyngeal pouch 1 - -[Term] -id: SCTID:345349000 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (SCTID)" xsd:string -is_a: UBERON:0007123 ! pharyngeal pouch 2 - -[Term] -id: SCTID:345450001 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (SCTID)" xsd:string -is_a: UBERON:0007124 ! pharyngeal pouch 3 - -[Term] -id: SCTID:362858001 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (SCTID)" xsd:string -is_a: UBERON:0007125 ! pharyngeal pouch 4 - -[Term] -id: SCTID:361301006 ! -property_value: IAO:0000589 "rectouterine fold (SCTID)" xsd:string -is_a: UBERON:0007136 ! rectouterine fold - -[Term] -id: SCTID:161452006 ! -property_value: IAO:0000589 "left internal carotid artery (SCTID)" xsd:string -is_a: UBERON:0007142 ! left internal carotid artery - -[Term] -id: SCTID:161251001 ! -property_value: IAO:0000589 "right internal carotid artery (SCTID)" xsd:string -is_a: UBERON:0007143 ! right internal carotid artery - -[Term] -id: SCTID:244940004 ! -property_value: IAO:0000589 "dome of diaphragm (SCTID)" xsd:string -is_a: UBERON:0007145 ! dome of diaphragm - -[Term] -id: SCTID:181330009 ! -property_value: IAO:0000589 "posterior spinal artery (SCTID)" xsd:string -is_a: UBERON:0007146 ! posterior spinal artery - -[Term] -id: SCTID:303419004 ! -property_value: IAO:0000589 "inferior thyroid artery (SCTID)" xsd:string -is_a: UBERON:0007149 ! inferior thyroid artery - -[Term] -id: SCTID:244218002 ! -property_value: IAO:0000589 "superior thyroid artery (SCTID)" xsd:string -is_a: UBERON:0007150 ! superior thyroid artery - -[Term] -id: SCTID:244353007 ! -property_value: IAO:0000589 "mitral valve leaflet (SCTID)" xsd:string -is_a: UBERON:0007151 ! mitral valve leaflet - -[Term] -id: SCTID:279260007 ! -property_value: IAO:0000589 "inferior sagittal sinus (SCTID)" xsd:string -is_a: UBERON:0007152 ! inferior sagittal sinus - -[Term] -id: SCTID:244287004 ! -property_value: IAO:0000589 "superior epigastric artery (SCTID)" xsd:string -is_a: UBERON:0007153 ! superior epigastric artery - -[Term] -id: SCTID:286872000 ! -property_value: IAO:0000589 "inferior epigastric vein (SCTID)" xsd:string -is_a: UBERON:0007154 ! inferior epigastric vein - -[Term] -id: SCTID:286596001 ! -property_value: IAO:0000589 "superior epigastric vein (SCTID)" xsd:string -is_a: UBERON:0007155 ! superior epigastric vein - -[Term] -id: SCTID:303423007 ! -property_value: IAO:0000589 "inferior thyroid vein (SCTID)" xsd:string -is_a: UBERON:0007156 ! inferior thyroid vein - -[Term] -id: SCTID:303421009 ! -property_value: IAO:0000589 "superior thyroid vein (SCTID)" xsd:string -is_a: UBERON:0007157 ! superior thyroid vein - -[Term] -id: SCTID:362156004 ! -property_value: IAO:0000589 "lumen of colon (SCTID)" xsd:string -is_a: UBERON:0007159 ! lumen of colon - -[Term] -id: SCTID:279263009 ! -property_value: IAO:0000589 "inferior petrosal sinus (SCTID)" xsd:string -is_a: UBERON:0007160 ! inferior petrosal sinus - -[Term] -id: SCTID:310213007 ! -property_value: IAO:0000589 "superior nasal meatus (SCTID)" xsd:string -is_a: UBERON:0007163 ! superior nasal meatus - -[Term] -id: SCTID:182170009 ! -property_value: IAO:0000589 "distal radio-ulnar joint (SCTID)" xsd:string -is_a: UBERON:0007164 ! distal radio-ulnar joint - -[Term] -id: SCTID:361837005 ! -property_value: IAO:0000589 "proximal radio-ulnar joint (SCTID)" xsd:string -is_a: UBERON:0007165 ! proximal radio-ulnar joint - -[Term] -id: SCTID:244941000 ! -property_value: IAO:0000589 "left dome of diaphragm (SCTID)" xsd:string -is_a: UBERON:0007166 ! left dome of diaphragm - -[Term] -id: SCTID:244942007 ! -property_value: IAO:0000589 "right dome of diaphragm (SCTID)" xsd:string -is_a: UBERON:0007167 ! right dome of diaphragm - -[Term] -id: SCTID:139077005 ! -property_value: IAO:0000589 "squamous part of occipital bone (SCTID)" xsd:string -is_a: UBERON:0007170 ! squamous part of occipital bone - -[Term] -id: SCTID:368187009 ! -property_value: IAO:0000589 "medial border of scapula (SCTID)" xsd:string -is_a: UBERON:0007174 ! medial border of scapula - -[Term] -id: SCTID:368188004 ! -property_value: IAO:0000589 "superior angle of scapula (SCTID)" xsd:string -is_a: UBERON:0007176 ! superior angle of scapula - -[Term] -id: SCTID:113284008 ! -property_value: IAO:0000589 "lamina propria of mucosa of colon (SCTID)" xsd:string -is_a: UBERON:0007177 ! lamina propria of mucosa of colon - -[Term] -id: SCTID:885000 ! -property_value: IAO:0000589 "muscularis mucosae of colon (SCTID)" xsd:string -is_a: UBERON:0007178 ! muscularis mucosae of colon - -[Term] -id: SCTID:259073003 ! -property_value: IAO:0000589 "atretic follicle of ovary (SCTID)" xsd:string -is_a: UBERON:0007180 ! atretic follicle of ovary - -[Term] -id: SCTID:67300002 ! -property_value: IAO:0000589 "mesothelium of serous pericardium (SCTID)" xsd:string -is_a: UBERON:0007188 ! mesothelium of serous pericardium - -[Term] -id: SCTID:280372002 ! -property_value: IAO:0000589 "orbital gyrus (SCTID)" xsd:string -is_a: UBERON:0007193 ! orbital gyrus - -[Term] -id: SCTID:361384001 ! -property_value: IAO:0000589 "tracheobronchial tree (SCTID)" xsd:string -is_a: UBERON:0007196 ! tracheobronchial tree - -[Term] -id: SCTID:367619004 ! -property_value: IAO:0000589 "late embryonic stage (SCTID)" xsd:string -is_a: UBERON:0007220 ! late embryonic stage - -[Term] -id: SCTID:362462004 ! -property_value: IAO:0000589 "vestibular nucleus (SCTID)" xsd:string -is_a: UBERON:0007228 ! vestibular nucleus - -[Term] -id: SCTID:280176007 ! -property_value: IAO:0000589 "lateral vestibular nucleus (SCTID)" xsd:string -is_a: UBERON:0007230 ! lateral vestibular nucleus - -[Term] -id: SCTID:84300001 ! -property_value: IAO:0000589 "tunica media of artery (SCTID)" xsd:string -is_a: UBERON:0007239 ! tunica media of artery - -[Term] -id: SCTID:113261001 ! -property_value: IAO:0000589 "tunica adventitia of artery (SCTID)" xsd:string -is_a: UBERON:0007240 ! tunica adventitia of artery - -[Term] -id: SCTID:13202006 ! -property_value: IAO:0000589 "tunica adventitia of vein (SCTID)" xsd:string -is_a: UBERON:0007241 ! tunica adventitia of vein - -[Term] -id: SCTID:2436009 ! -property_value: IAO:0000589 "tunica intima of vein (SCTID)" xsd:string -is_a: UBERON:0007242 ! tunica intima of vein - -[Term] -id: SCTID:42049001 ! -property_value: IAO:0000589 "tunica media of vein (SCTID)" xsd:string -is_a: UBERON:0007243 ! tunica media of vein - -[Term] -id: SCTID:369066005 ! -property_value: IAO:0000589 "inferior olivary nucleus (SCTID)" xsd:string -is_a: UBERON:0007244 ! inferior olivary nucleus - -[Term] -id: SCTID:369024009 ! -property_value: IAO:0000589 "nucleus of superior olivary complex (SCTID)" xsd:string -is_a: UBERON:0007247 ! nucleus of superior olivary complex - -[Term] -id: SCTID:369068006 ! -property_value: IAO:0000589 "dorsal accessory inferior olivary nucleus (SCTID)" xsd:string -is_a: UBERON:0007249 ! dorsal accessory inferior olivary nucleus - -[Term] -id: SCTID:276957006 ! -property_value: IAO:0000589 "lingual tonsil (SCTID)" xsd:string -is_a: UBERON:0007250 ! lingual tonsil - -[Term] -id: SCTID:68818006 ! -property_value: IAO:0000589 "intervertebral disk of cervical vertebra (SCTID)" xsd:string -is_a: UBERON:0007252 ! intervertebral disk of cervical vertebra - -[Term] -id: SCTID:361748005 ! -property_value: IAO:0000589 "intervertebral disk of fourth cervical vertebra (SCTID)" xsd:string -is_a: UBERON:0007261 ! intervertebral disk of fourth cervical vertebra - -[Term] -id: SCTID:361749002 ! -property_value: IAO:0000589 "intervertebral disk of fifth cervical vertebra (SCTID)" xsd:string -is_a: UBERON:0007262 ! intervertebral disk of fifth cervical vertebra - -[Term] -id: SCTID:277968003 ! -property_value: IAO:0000589 "pudendal artery (SCTID)" xsd:string -is_a: UBERON:0007312 ! pudendal artery - -[Term] -id: SCTID:244309002 ! -property_value: IAO:0000589 "internal pudendal artery (SCTID)" xsd:string -is_a: UBERON:0007315 ! internal pudendal artery - -[Term] -id: SCTID:31708008 ! -property_value: IAO:0000589 "deep external pudendal artery (SCTID)" xsd:string -is_a: UBERON:0007316 ! deep external pudendal artery - -[Term] -id: SCTID:47954000 ! -property_value: IAO:0000589 "superficial external pudendal artery (SCTID)" xsd:string -is_a: UBERON:0007317 ! superficial external pudendal artery - -[Term] -id: SCTID:181278006 ! -property_value: IAO:0000589 "pancreatic duct (SCTID)" xsd:string -is_a: UBERON:0007329 ! pancreatic duct - -[Term] -id: SCTID:362565000 ! -property_value: IAO:0000589 "cartilage of pharyngotympanic tube (SCTID)" xsd:string -is_a: UBERON:0007354 ! cartilage of pharyngotympanic tube - -[Term] -id: SCTID:362563007 ! -property_value: IAO:0000589 "bony part of pharyngotympanic tube (SCTID)" xsd:string -is_a: UBERON:0007355 ! bony part of pharyngotympanic tube - -[Term] -id: SCTID:68028003 ! -property_value: IAO:0000589 "crop (SCTID)" xsd:string -is_a: UBERON:0007356 ! crop - -[Term] -id: SCTID:63897003 ! -property_value: IAO:0000589 "proventriculus (SCTID)" xsd:string -is_a: UBERON:0007357 ! proventriculus - -[Term] -id: SCTID:410028001 ! -property_value: IAO:0000589 "abomasum (SCTID)" xsd:string -is_a: UBERON:0007358 ! abomasum - -[Term] -id: SCTID:23703003 ! -property_value: IAO:0000589 "ruminant reticulum (SCTID)" xsd:string -is_a: UBERON:0007361 ! ruminant reticulum - -[Term] -id: SCTID:410028001 ! -property_value: IAO:0000589 "omasum (SCTID)" xsd:string -is_a: UBERON:0007362 ! omasum - -[Term] -id: SCTID:45138000 ! -property_value: IAO:0000589 "rumen (SCTID)" xsd:string -is_a: UBERON:0007365 ! rumen - -[Term] -id: SCTID:314870004 ! -property_value: IAO:0000589 "surface of tongue (SCTID)" xsd:string -is_a: UBERON:0007367 ! surface of tongue - -[Term] -id: SCTID:362100003 ! -property_value: IAO:0000589 "inferior surface of tongue (SCTID)" xsd:string -is_a: UBERON:0007373 ! inferior surface of tongue - -[Term] -id: SCTID:362417003 ! -property_value: IAO:0000589 "cerebellar peduncle (SCTID)" xsd:string -is_a: UBERON:0007416 ! cerebellar peduncle - -[Term] -id: SCTID:362915001 ! -property_value: IAO:0000589 "smooth muscle sphincter (SCTID)" xsd:string -is_a: UBERON:0007521 ! smooth muscle sphincter - -[Term] -id: SCTID:181351007 ! -property_value: IAO:0000589 "tibial artery (SCTID)" xsd:string -is_a: UBERON:0007610 ! tibial artery - -[Term] -id: SCTID:361819009 ! -property_value: IAO:0000589 "extensor digiti minimi muscle (SCTID)" xsd:string -is_a: UBERON:0007614 ! extensor digiti minimi muscle - -[Term] -id: SCTID:280667001 ! -property_value: IAO:0000589 "limiting membrane of retina (SCTID)" xsd:string -is_a: UBERON:0007619 ! limiting membrane of retina - -[Term] -id: SCTID:37118002 ! -property_value: IAO:0000589 "comb and wattle (SCTID)" xsd:string -is_a: UBERON:0007623 ! comb and wattle - -[Term] -id: SCTID:362405000 ! -property_value: IAO:0000589 "nucleus of trapezoid body (SCTID)" xsd:string -is_a: UBERON:0007633 ! nucleus of trapezoid body - -[Term] -id: SCTID:304943004 ! -property_value: IAO:0000589 "nucleus of medulla oblongata (SCTID)" xsd:string -is_a: UBERON:0007635 ! nucleus of medulla oblongata - -[Term] -id: SCTID:419156002 ! -property_value: IAO:0000589 "hippocampus stratum lucidum (SCTID)" xsd:string -is_a: UBERON:0007637 ! hippocampus stratum lucidum - -[Term] -id: SCTID:369094002 ! -property_value: IAO:0000589 "hippocampus alveus (SCTID)" xsd:string -is_a: UBERON:0007639 ! hippocampus alveus - -[Term] -id: SCTID:198009004 ! -property_value: IAO:0000589 "ligamentum arteriosum (SCTID)" xsd:string -is_a: UBERON:0007642 ! ligamentum arteriosum - -[Term] -id: SCTID:196374005 ! -property_value: IAO:0000589 "thoracic lymph node (SCTID)" xsd:string -is_a: UBERON:0007644 ! thoracic lymph node - -[Term] -id: SCTID:362130006 ! -property_value: IAO:0000589 "esophagogastric junction (SCTID)" xsd:string -is_a: UBERON:0007650 ! esophagogastric junction - -[Term] -id: SCTID:91833003 ! -property_value: IAO:0000589 "anatomical junction (SCTID)" xsd:string -is_a: UBERON:0007651 ! anatomical junction - -[Term] -id: SCTID:277765007 ! -property_value: IAO:0000589 "esophageal sphincter (SCTID)" xsd:string -is_a: UBERON:0007652 ! esophageal sphincter - -[Term] -id: SCTID:369283008 ! -property_value: IAO:0000589 "lateral recess of fourth ventricle (SCTID)" xsd:string -is_a: UBERON:0007656 ! lateral recess of fourth ventricle - -[Term] -id: SCTID:182394000 ! -property_value: IAO:0000589 "anular ligament of radius (SCTID)" xsd:string -is_a: UBERON:0007657 ! anular ligament of radius - -[Term] -id: SCTID:361448009 ! -property_value: IAO:0000589 "intersomitic vein (SCTID)" xsd:string -is_a: UBERON:0007679 ! intersomitic vein - -[Term] -id: SCTID:368724008 ! -property_value: IAO:0000589 "gustatory pore (SCTID)" xsd:string -is_a: UBERON:0007691 ! gustatory pore - -[Term] -id: SCTID:279115000 ! -property_value: IAO:0000589 "nucleus of thalamus (SCTID)" xsd:string -is_a: UBERON:0007692 ! nucleus of thalamus - -[Term] -id: SCTID:148470005 ! -property_value: IAO:0000589 "caroticotympanic artery (SCTID)" xsd:string -is_a: UBERON:0007693 ! caroticotympanic artery - -[Term] -id: SCTID:280417000 ! -property_value: IAO:0000589 "spinothalamic tract (SCTID)" xsd:string -is_a: UBERON:0007703 ! spinothalamic tract - -[Term] -id: SCTID:278749009 ! -property_value: IAO:0000589 "cervical subsegment of spinal cord (SCTID)" xsd:string -is_a: UBERON:0007714 ! cervical subsegment of spinal cord - -[Term] -id: SCTID:278751008 ! -property_value: IAO:0000589 "lumbar subsegment of spinal cord (SCTID)" xsd:string -is_a: UBERON:0007716 ! lumbar subsegment of spinal cord - -[Term] -id: SCTID:278752001 ! -property_value: IAO:0000589 "sacral subsegment of spinal cord (SCTID)" xsd:string -is_a: UBERON:0007717 ! sacral subsegment of spinal cord - -[Term] -id: SCTID:182225005 ! -property_value: IAO:0000589 "interphalangeal joint of pes (SCTID)" xsd:string -is_a: UBERON:0007721 ! interphalangeal joint of pes - -[Term] -id: SCTID:303280009 ! -property_value: IAO:0000589 "interphalangeal joint of manus (SCTID)" xsd:string -is_a: UBERON:0007722 ! interphalangeal joint of manus - -[Term] -id: SCTID:182192008 ! -property_value: IAO:0000589 "interphalangeal joint of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0007723 ! interphalangeal joint of manual digit 1 - -[Term] -id: SCTID:363671008 ! -property_value: IAO:0000589 "interphalangeal joint of pedal digit 1 (SCTID)" xsd:string -is_a: UBERON:0007724 ! interphalangeal joint of pedal digit 1 - -[Term] -id: SCTID:361844001 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0007735 ! metacarpophalangeal joint of manual digit 1 - -[Term] -id: SCTID:361845000 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0007738 ! metacarpophalangeal joint of manual digit 2 - -[Term] -id: SCTID:361846004 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0007741 ! metacarpophalangeal joint of manual digit 3 - -[Term] -id: SCTID:361847008 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0007744 ! metacarpophalangeal joint of manual digit 4 - -[Term] -id: SCTID:361848003 ! -property_value: IAO:0000589 "metacarpophalangeal joint of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0007747 ! metacarpophalangeal joint of manual digit 5 - -[Term] -id: SCTID:182223003 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 1 (SCTID)" xsd:string -is_a: UBERON:0007750 ! metatarsophalangeal joint of pedal digit 1 - -[Term] -id: SCTID:361869001 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 2 (SCTID)" xsd:string -is_a: UBERON:0007753 ! metatarsophalangeal joint of pedal digit 2 - -[Term] -id: SCTID:361870000 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0007756 ! metatarsophalangeal joint of pedal digit 3 - -[Term] -id: SCTID:361871001 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 4 (SCTID)" xsd:string -is_a: UBERON:0007759 ! metatarsophalangeal joint of pedal digit 4 - -[Term] -id: SCTID:361872008 ! -property_value: IAO:0000589 "metatarsophalangeal joint of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0007762 ! metatarsophalangeal joint of pedal digit 5 - -[Term] -id: SCTID:279384001 ! -property_value: IAO:0000589 "cerebellum vermis culmen (SCTID)" xsd:string -is_a: UBERON:0007763 ! cerebellum vermis culmen - -[Term] -id: SCTID:89649002 ! -property_value: IAO:0000589 "cerebellum vermis culmen (SCTID)" xsd:string -is_a: UBERON:0007763 ! cerebellum vermis culmen - -[Term] -id: SCTID:245563006 ! -property_value: IAO:0000589 "secondary tooth (SCTID)" xsd:string -is_a: UBERON:0007775 ! secondary tooth - -[Term] -id: SCTID:245545006 ! -property_value: IAO:0000589 "mixed dentition (SCTID)" xsd:string -is_a: UBERON:0007799 ! mixed dentition - -[Term] -id: SCTID:416894001 ! -property_value: IAO:0000589 "pygostyle (SCTID)" xsd:string -is_a: UBERON:0007801 ! pygostyle - -[Term] -id: SCTID:48626006 ! -property_value: IAO:0000589 "uropygial gland (SCTID)" xsd:string -is_a: UBERON:0007802 ! uropygial gland - -[Term] -id: SCTID:67943001 ! -property_value: IAO:0000589 "synsacrum (SCTID)" xsd:string -is_a: UBERON:0007805 ! synsacrum - -[Term] -id: SCTID:361355005 ! -property_value: IAO:0000589 "craniocervical region (SCTID)" xsd:string -is_a: UBERON:0007811 ! craniocervical region - -[Term] -id: SCTID:361928006 ! -property_value: IAO:0000589 "major alar cartilage (SCTID)" xsd:string -is_a: UBERON:0007818 ! major alar cartilage - -[Term] -id: SCTID:368118006 ! -property_value: IAO:0000589 "minor alar cartilage (SCTID)" xsd:string -is_a: UBERON:0007819 ! minor alar cartilage - -[Term] -id: SCTID:368124000 ! -property_value: IAO:0000589 "accessory nasal cartilage (SCTID)" xsd:string -is_a: UBERON:0007820 ! accessory nasal cartilage - -[Term] -id: SCTID:278944009 ! -property_value: IAO:0000589 "lateral nasal cartilage (SCTID)" xsd:string -is_a: UBERON:0007821 ! lateral nasal cartilage - -[Term] -id: SCTID:368123006 ! -property_value: IAO:0000589 "vomeronasal cartilage (SCTID)" xsd:string -is_a: UBERON:0007822 ! vomeronasal cartilage - -[Term] -id: SCTID:265785009 ! -property_value: IAO:0000589 "external nose (SCTID)" xsd:string -is_a: UBERON:0007827 ! external nose - -[Term] -id: SCTID:426214007 ! -property_value: IAO:0000589 "pelvic girdle bone/zone (SCTID)" xsd:string -is_a: UBERON:0007830 ! pelvic girdle bone/zone - -[Term] -id: SCTID:423957000 ! -property_value: IAO:0000589 "spinal cord white commissure (SCTID)" xsd:string -is_a: UBERON:0007838 ! spinal cord white commissure - -[Term] -id: SCTID:424400007 ! -property_value: IAO:0000589 "spinal cord dorsal white commissure (SCTID)" xsd:string -is_a: UBERON:0007840 ! spinal cord dorsal white commissure - -[Term] -id: SCTID:22560007 ! -property_value: IAO:0000589 "dense regular connective tissue (SCTID)" xsd:string -is_a: UBERON:0007846 ! dense regular connective tissue - -[Term] -id: SCTID:26987000 ! -property_value: IAO:0000589 "central carpal bone (SCTID)" xsd:string -is_a: UBERON:0007958 ! central carpal bone - -[Term] -id: SCTID:368448000 ! -property_value: IAO:0000589 "sesamoid bone of manus (SCTID)" xsd:string -is_a: UBERON:0007997 ! sesamoid bone of manus - -[Term] -id: SCTID:244675002 ! -property_value: IAO:0000589 "sesamoid bone of pes (SCTID)" xsd:string -is_a: UBERON:0008000 ! sesamoid bone of pes - -[Term] -id: SCTID:421560006 ! -property_value: IAO:0000589 "irregular bone (SCTID)" xsd:string -is_a: UBERON:0008001 ! irregular bone - -[Term] -id: SCTID:361886007 ! -property_value: IAO:0000589 "tendon of biceps brachii (SCTID)" xsd:string -is_a: UBERON:0008188 ! tendon of biceps brachii - -[Term] -id: SCTID:245105007 ! -property_value: IAO:0000589 "tendon of triceps brachii (SCTID)" xsd:string -is_a: UBERON:0008192 ! tendon of triceps brachii - -[Term] -id: SCTID:333008005 ! -property_value: IAO:0000589 "pneumatized bone (SCTID)" xsd:string -is_a: UBERON:0008193 ! pneumatized bone - -[Term] -id: SCTID:372177002 ! -property_value: IAO:0000589 "nail plate (SCTID)" xsd:string -is_a: UBERON:0008198 ! nail plate - -[Term] -id: SCTID:362632004 ! -property_value: IAO:0000589 "chin (SCTID)" xsd:string -is_a: UBERON:0008199 ! chin - -[Term] -id: SCTID:362614004 ! -property_value: IAO:0000589 "forehead (SCTID)" xsd:string -is_a: UBERON:0008200 ! forehead - -[Term] -id: SCTID:17148007 ! -property_value: IAO:0000589 "scute (SCTID)" xsd:string -is_a: UBERON:0008201 ! scute - -[Term] -id: SCTID:304907005 ! -property_value: IAO:0000589 "bone of hip region (SCTID)" xsd:string -is_a: UBERON:0008202 ! bone of hip region - -[Term] -id: SCTID:281903009 ! -property_value: IAO:0000589 "pelvic cavity (SCTID)" xsd:string -is_a: UBERON:0008203 ! pelvic cavity - -[Term] -id: SCTID:362666008 ! -property_value: IAO:0000589 "dorsal thoracic segment of trunk (SCTID)" xsd:string -is_a: UBERON:0008231 ! dorsal thoracic segment of trunk - -[Term] -id: SCTID:317178000 ! -property_value: IAO:0000589 "lower back muscle (SCTID)" xsd:string -is_a: UBERON:0008242 ! lower back muscle - -[Term] -id: SCTID:305071003 ! -property_value: IAO:0000589 "upper back muscle (SCTID)" xsd:string -is_a: UBERON:0008243 ! upper back muscle - -[Term] -id: SCTID:280119005 ! -property_value: IAO:0000589 "pyloric stomach (SCTID)" xsd:string -is_a: UBERON:0008246 ! pyloric stomach - -[Term] -id: SCTID:245775004 ! -property_value: IAO:0000589 "periodontal ligament (SCTID)" xsd:string -is_a: UBERON:0008266 ! periodontal ligament - -[Term] -id: SCTID:361449001 ! -property_value: IAO:0000589 "left supracardinal vein (SCTID)" xsd:string -is_a: UBERON:0008267 ! left supracardinal vein - -[Term] -id: SCTID:361450001 ! -property_value: IAO:0000589 "right supracardinal vein (SCTID)" xsd:string -is_a: UBERON:0008268 ! right supracardinal vein - -[Term] -id: SCTID:33620004 ! -property_value: IAO:0000589 "carapace (SCTID)" xsd:string -is_a: UBERON:0008275 ! carapace - -[Term] -id: SCTID:64243001 ! -property_value: IAO:0000589 "plastron (SCTID)" xsd:string -is_a: UBERON:0008276 ! plastron - -[Term] -id: SCTID:53301001 ! -property_value: IAO:0000589 "tooth bud (SCTID)" xsd:string -is_a: UBERON:0008281 ! tooth bud - -[Term] -id: SCTID:178973008 ! -property_value: IAO:0000589 "nasopharyngeal gland (SCTID)" xsd:string -is_a: UBERON:0008310 ! nasopharyngeal gland - -[Term] -id: SCTID:293338009 ! -property_value: IAO:0000589 "penile bulb artery (SCTID)" xsd:string -is_a: UBERON:0008311 ! penile bulb artery - -[Term] -id: SCTID:282044005 ! -property_value: IAO:0000589 "common penile artery (SCTID)" xsd:string -is_a: UBERON:0008320 ! common penile artery - -[Term] -id: SCTID:244293007 ! -property_value: IAO:0000589 "deep artery of penis (SCTID)" xsd:string -is_a: UBERON:0008321 ! deep artery of penis - -[Term] -id: SCTID:244297008 ! -property_value: IAO:0000589 "deep artery of clitoris (SCTID)" xsd:string -is_a: UBERON:0008322 ! deep artery of clitoris - -[Term] -id: SCTID:244298003 ! -property_value: IAO:0000589 "dorsal artery of clitoris (SCTID)" xsd:string -is_a: UBERON:0008323 ! dorsal artery of clitoris - -[Term] -id: SCTID:181446000 ! -property_value: IAO:0000589 "vestibule of vagina (SCTID)" xsd:string -is_a: UBERON:0008330 ! vestibule of vagina - -[Term] -id: SCTID:279291001 ! -property_value: IAO:0000589 "ventrolateral sulcus of medulla oblongata (SCTID)" xsd:string -is_a: UBERON:0008335 ! ventrolateral sulcus of medulla oblongata - -[Term] -id: SCTID:243962005 ! -property_value: IAO:0000589 "inguinal part of abdomen (SCTID)" xsd:string -is_a: UBERON:0008337 ! inguinal part of abdomen - -[Term] -id: SCTID:57999000 ! -property_value: IAO:0000589 "plantar part of pes (SCTID)" xsd:string -is_a: UBERON:0008338 ! plantar part of pes - -[Term] -id: SCTID:361930008 ! -property_value: IAO:0000589 "columella nasi (SCTID)" xsd:string -is_a: UBERON:0008341 ! columella nasi - -[Term] -id: SCTID:47046000 ! -property_value: IAO:0000589 "ileal epithelium (SCTID)" xsd:string -is_a: UBERON:0008345 ! ileal epithelium - -[Term] -id: SCTID:66036002 ! -property_value: IAO:0000589 "duodenal epithelium (SCTID)" xsd:string -is_a: UBERON:0008346 ! duodenal epithelium - -[Term] -id: SCTID:66519003 ! -property_value: IAO:0000589 "inguinal mammary gland (SCTID)" xsd:string -is_a: UBERON:0008424 ! inguinal mammary gland - -[Term] -id: SCTID:281220001 ! -property_value: IAO:0000589 "transverse foramen of atlas (SCTID)" xsd:string -is_a: UBERON:0008426 ! transverse foramen of atlas - -[Term] -id: SCTID:281221002 ! -property_value: IAO:0000589 "transverse foramen of axis (SCTID)" xsd:string -is_a: UBERON:0008427 ! transverse foramen of axis - -[Term] -id: SCTID:280833008 ! -property_value: IAO:0000589 "cervical vertebral foramen (SCTID)" xsd:string -is_a: UBERON:0008429 ! cervical vertebral foramen - -[Term] -id: SCTID:280835001 ! -property_value: IAO:0000589 "lumbar vertebral foramen (SCTID)" xsd:string -is_a: UBERON:0008430 ! lumbar vertebral foramen - -[Term] -id: SCTID:280834002 ! -property_value: IAO:0000589 "thoracic vertebral foramen (SCTID)" xsd:string -is_a: UBERON:0008432 ! thoracic vertebral foramen - -[Term] -id: SCTID:312766000 ! -property_value: IAO:0000589 "lumbar vertebral arch (SCTID)" xsd:string -is_a: UBERON:0008433 ! lumbar vertebral arch - -[Term] -id: SCTID:165269004 ! -property_value: IAO:0000589 "cervical vertebral arch (SCTID)" xsd:string -is_a: UBERON:0008434 ! cervical vertebral arch - -[Term] -id: SCTID:312764002 ! -property_value: IAO:0000589 "thoracic vertebral arch (SCTID)" xsd:string -is_a: UBERON:0008436 ! thoracic vertebral arch - -[Term] -id: SCTID:181892007 ! -property_value: IAO:0000589 "posterior arch of atlas (SCTID)" xsd:string -is_a: UBERON:0008437 ! posterior arch of atlas - -[Term] -id: SCTID:361818001 ! -property_value: IAO:0000589 "flexor pollicis longus muscle (SCTID)" xsd:string -is_a: UBERON:0008446 ! flexor pollicis longus muscle - -[Term] -id: SCTID:182221001 ! -property_value: IAO:0000589 "intertarsal joint (SCTID)" xsd:string -is_a: UBERON:0008447 ! intertarsal joint - -[Term] -id: SCTID:361283005 ! -property_value: IAO:0000589 "intertarsal joint (SCTID)" xsd:string -is_a: UBERON:0008447 ! intertarsal joint - -[Term] -id: SCTID:276167002 ! -property_value: IAO:0000589 "psoas muscle (SCTID)" xsd:string -is_a: UBERON:0008450 ! psoas muscle - -[Term] -id: SCTID:244838005 ! -property_value: IAO:0000589 "rectus capitis anterior (SCTID)" xsd:string -is_a: UBERON:0008453 ! rectus capitis anterior - -[Term] -id: SCTID:245994002 ! -property_value: IAO:0000589 "rectus capitis posterior major (SCTID)" xsd:string -is_a: UBERON:0008454 ! rectus capitis posterior major - -[Term] -id: SCTID:245995001 ! -property_value: IAO:0000589 "rectus capitis posterior minor (SCTID)" xsd:string -is_a: UBERON:0008455 ! rectus capitis posterior minor - -[Term] -id: SCTID:305677003 ! -property_value: IAO:0000589 "prezygapophysis of lumbar vertebra (SCTID)" xsd:string -is_a: UBERON:0008456 ! prezygapophysis of lumbar vertebra - -[Term] -id: SCTID:57767002 ! -property_value: IAO:0000589 "prezygapophysis of cervical vertebra (SCTID)" xsd:string -is_a: UBERON:0008459 ! prezygapophysis of cervical vertebra - -[Term] -id: SCTID:367801006 ! -property_value: IAO:0000589 "prezygapophysis of thoracic vertebra (SCTID)" xsd:string -is_a: UBERON:0008460 ! prezygapophysis of thoracic vertebra - -[Term] -id: SCTID:306283004 ! -property_value: IAO:0000589 "postzygapophysis of lumbar vertebra (SCTID)" xsd:string -is_a: UBERON:0008461 ! postzygapophysis of lumbar vertebra - -[Term] -id: SCTID:61633005 ! -property_value: IAO:0000589 "postzygapophysis of cervical vertebra (SCTID)" xsd:string -is_a: UBERON:0008462 ! postzygapophysis of cervical vertebra - -[Term] -id: SCTID:367814007 ! -property_value: IAO:0000589 "postzygapophysis of thoracic vertebra (SCTID)" xsd:string -is_a: UBERON:0008463 ! postzygapophysis of thoracic vertebra - -[Term] -id: SCTID:181723001 ! -property_value: IAO:0000589 "abductor hallucis muscle (SCTID)" xsd:string -is_a: UBERON:0008464 ! abductor hallucis muscle - -[Term] -id: SCTID:181648007 ! -property_value: IAO:0000589 "abductor pollicis brevis muscle (SCTID)" xsd:string -is_a: UBERON:0008465 ! abductor pollicis brevis muscle - -[Term] -id: SCTID:244948006 ! -property_value: IAO:0000589 "cremaster muscle (SCTID)" xsd:string -is_a: UBERON:0008488 ! cremaster muscle - -[Term] -id: SCTID:181676004 ! -property_value: IAO:0000589 "gluteus minimus (SCTID)" xsd:string -is_a: UBERON:0008521 ! gluteus minimus - -[Term] -id: SCTID:244730009 ! -property_value: IAO:0000589 "nasal muscle (SCTID)" xsd:string -is_a: UBERON:0008522 ! nasal muscle - -[Term] -id: SCTID:244829008 ! -property_value: IAO:0000589 "infrahyoid muscle (SCTID)" xsd:string -is_a: UBERON:0008523 ! infrahyoid muscle - -[Term] -id: SCTID:245019009 ! -property_value: IAO:0000589 "piriformis muscle (SCTID)" xsd:string -is_a: UBERON:0008529 ! piriformis muscle - -[Term] -id: SCTID:245020003 ! -property_value: IAO:0000589 "quadratus femoris (SCTID)" xsd:string -is_a: UBERON:0008537 ! quadratus femoris - -[Term] -id: SCTID:244851000 ! -property_value: IAO:0000589 "iliocostalis cervicis muscle (SCTID)" xsd:string -is_a: UBERON:0008546 ! iliocostalis cervicis muscle - -[Term] -id: SCTID:244824003 ! -property_value: IAO:0000589 "suprahyoid muscle (SCTID)" xsd:string -is_a: UBERON:0008571 ! suprahyoid muscle - -[Term] -id: SCTID:244812005 ! -property_value: IAO:0000589 "posterior crico-arytenoid (SCTID)" xsd:string -is_a: UBERON:0008572 ! posterior crico-arytenoid - -[Term] -id: SCTID:244813000 ! -property_value: IAO:0000589 "lateral crico-arytenoid (SCTID)" xsd:string -is_a: UBERON:0008573 ! lateral crico-arytenoid - -[Term] -id: SCTID:244817004 ! -property_value: IAO:0000589 "oblique arytenoid (SCTID)" xsd:string -is_a: UBERON:0008575 ! oblique arytenoid - -[Term] -id: SCTID:361814004 ! -property_value: IAO:0000589 "thyro-arytenoid (SCTID)" xsd:string -is_a: UBERON:0008576 ! thyro-arytenoid - -[Term] -id: SCTID:244820007 ! -property_value: IAO:0000589 "vocalis muscle (SCTID)" xsd:string -is_a: UBERON:0008577 ! vocalis muscle - -[Term] -id: SCTID:244790006 ! -property_value: IAO:0000589 "superior longitudinal muscle of tongue (SCTID)" xsd:string -is_a: UBERON:0008582 ! superior longitudinal muscle of tongue - -[Term] -id: SCTID:244792003 ! -property_value: IAO:0000589 "transverse muscle of tongue (SCTID)" xsd:string -is_a: UBERON:0008583 ! transverse muscle of tongue - -[Term] -id: SCTID:244793008 ! -property_value: IAO:0000589 "vertical muscle of tongue (SCTID)" xsd:string -is_a: UBERON:0008584 ! vertical muscle of tongue - -[Term] -id: SCTID:244795001 ! -property_value: IAO:0000589 "levator veli palatini (SCTID)" xsd:string -is_a: UBERON:0008585 ! levator veli palatini - -[Term] -id: SCTID:361815003 ! -property_value: IAO:0000589 "tensor veli palatini (SCTID)" xsd:string -is_a: UBERON:0008586 ! tensor veli palatini - -[Term] -id: SCTID:244731008 ! -property_value: IAO:0000589 "procerus (SCTID)" xsd:string -is_a: UBERON:0008588 ! procerus - -[Term] -id: SCTID:244733006 ! -property_value: IAO:0000589 "depressor septi nasi (SCTID)" xsd:string -is_a: UBERON:0008589 ! depressor septi nasi - -[Term] -id: SCTID:244728007 ! -property_value: IAO:0000589 "depressor supercilii (SCTID)" xsd:string -is_a: UBERON:0008591 ! depressor supercilii - -[Term] -id: SCTID:244739005 ! -property_value: IAO:0000589 "zygomaticus major muscle (SCTID)" xsd:string -is_a: UBERON:0008593 ! zygomaticus major muscle - -[Term] -id: SCTID:244740007 ! -property_value: IAO:0000589 "zygomaticus major muscle (SCTID)" xsd:string -is_a: UBERON:0008593 ! zygomaticus major muscle - -[Term] -id: SCTID:244741006 ! -property_value: IAO:0000589 "zygomaticus minor muscle (SCTID)" xsd:string -is_a: UBERON:0008594 ! zygomaticus minor muscle - -[Term] -id: SCTID:141501002 ! -property_value: IAO:0000589 "levator anguli oris (SCTID)" xsd:string -is_a: UBERON:0008595 ! levator anguli oris - -[Term] -id: SCTID:244744003 ! -property_value: IAO:0000589 "mentalis muscle (SCTID)" xsd:string -is_a: UBERON:0008596 ! mentalis muscle - -[Term] -id: SCTID:361812000 ! -property_value: IAO:0000589 "depressor anguli oris muscle (SCTID)" xsd:string -is_a: UBERON:0008597 ! depressor anguli oris muscle - -[Term] -id: SCTID:244755003 ! -property_value: IAO:0000589 "risorius muscle (SCTID)" xsd:string -is_a: UBERON:0008598 ! risorius muscle - -[Term] -id: SCTID:244764008 ! -property_value: IAO:0000589 "helicis major (SCTID)" xsd:string -is_a: UBERON:0008603 ! helicis major - -[Term] -id: SCTID:244765009 ! -property_value: IAO:0000589 "helicis minor (SCTID)" xsd:string -is_a: UBERON:0008604 ! helicis minor - -[Term] -id: SCTID:244766005 ! -property_value: IAO:0000589 "tragicus muscle (SCTID)" xsd:string -is_a: UBERON:0008605 ! tragicus muscle - -[Term] -id: SCTID:63899000 ! -property_value: IAO:0000589 "antitragicus muscle (SCTID)" xsd:string -is_a: UBERON:0008606 ! antitragicus muscle - -[Term] -id: SCTID:244767001 ! -property_value: IAO:0000589 "transverse muscle of auricle (SCTID)" xsd:string -is_a: UBERON:0008607 ! transverse muscle of auricle - -[Term] -id: SCTID:244768006 ! -property_value: IAO:0000589 "oblique muscle of auricle (SCTID)" xsd:string -is_a: UBERON:0008608 ! oblique muscle of auricle - -[Term] -id: SCTID:244843003 ! -property_value: IAO:0000589 "scalene muscle (SCTID)" xsd:string -is_a: UBERON:0008611 ! scalene muscle - -[Term] -id: SCTID:367748001 ! -property_value: IAO:0000589 "muscle of pelvic diaphragm (SCTID)" xsd:string -is_a: UBERON:0008612 ! muscle of pelvic diaphragm - -[Term] -id: SCTID:368054008 ! -property_value: IAO:0000589 "innermost intercostal muscle (SCTID)" xsd:string -is_a: UBERON:0008617 ! innermost intercostal muscle - -[Term] -id: SCTID:244914005 ! -property_value: IAO:0000589 "subcostal muscle (SCTID)" xsd:string -is_a: UBERON:0008618 ! subcostal muscle - -[Term] -id: SCTID:181742002 ! -property_value: IAO:0000589 "scalenus anterior (SCTID)" xsd:string -is_a: UBERON:0008622 ! scalenus anterior - -[Term] -id: SCTID:244826001 ! -property_value: IAO:0000589 "stylohyoid muscle (SCTID)" xsd:string -is_a: UBERON:0008712 ! stylohyoid muscle - -[Term] -id: SCTID:251498008 ! -property_value: IAO:0000589 "muscle tissue of prostate (SCTID)" xsd:string -is_a: UBERON:0008715 ! muscle tissue of prostate - -[Term] -id: SCTID:279370006 ! -property_value: IAO:0000589 "hilum of kidney (SCTID)" xsd:string -is_a: UBERON:0008716 ! hilum of kidney - -[Term] -id: SCTID:302526005 ! -property_value: IAO:0000589 "proximal epiphysis of tibia (SCTID)" xsd:string -is_a: UBERON:0008772 ! proximal epiphysis of tibia - -[Term] -id: SCTID:182080006 ! -property_value: IAO:0000589 "proximal epiphysis of fibula (SCTID)" xsd:string -is_a: UBERON:0008775 ! proximal epiphysis of fibula - -[Term] -id: SCTID:231189006 ! -property_value: IAO:0000589 "dorsal venous arch (SCTID)" xsd:string -is_a: UBERON:0008783 ! dorsal venous arch - -[Term] -id: SCTID:268518001 ! -property_value: IAO:0000589 "rugal fold of stomach (SCTID)" xsd:string -is_a: UBERON:0008791 ! rugal fold of stomach - -[Term] -id: SCTID:31293007 ! -property_value: IAO:0000589 "cheek pouch (SCTID)" xsd:string -is_a: UBERON:0008802 ! cheek pouch - -[Term] -id: SCTID:181472009 ! -property_value: IAO:0000589 "skin of cheek (SCTID)" xsd:string -is_a: UBERON:0008803 ! skin of cheek - -[Term] -id: SCTID:244806000 ! -property_value: IAO:0000589 "stylopharyngeus muscle (SCTID)" xsd:string -is_a: UBERON:0008804 ! stylopharyngeus muscle - -[Term] -id: SCTID:245753001 ! -property_value: IAO:0000589 "gingival groove (SCTID)" xsd:string -is_a: UBERON:0008805 ! gingival groove - -[Term] -id: SCTID:78779004 ! -property_value: IAO:0000589 "coagulating gland (SCTID)" xsd:string -is_a: UBERON:0008807 ! coagulating gland - -[Term] -id: SCTID:27265006 ! -property_value: IAO:0000589 "hemipenis (SCTID)" xsd:string -is_a: UBERON:0008812 ! hemipenis - -[Term] -id: SCTID:279775003 ! -property_value: IAO:0000589 "helicotrema (SCTID)" xsd:string -is_a: UBERON:0008813 ! helicotrema - -[Term] -id: SCTID:362687003 ! -property_value: IAO:0000589 "superior mediastinum (SCTID)" xsd:string -is_a: UBERON:0008818 ! superior mediastinum - -[Term] -id: SCTID:243950006 ! -property_value: IAO:0000589 "inferior mediastinum (SCTID)" xsd:string -is_a: UBERON:0008819 ! inferior mediastinum - -[Term] -id: SCTID:261048003 ! -property_value: IAO:0000589 "anterior mediastinum (SCTID)" xsd:string -is_a: UBERON:0008820 ! anterior mediastinum - -[Term] -id: SCTID:362688008 ! -property_value: IAO:0000589 "middle mediastinum (SCTID)" xsd:string -is_a: UBERON:0008821 ! middle mediastinum - -[Term] -id: SCTID:243957009 ! -property_value: IAO:0000589 "posterior mediastinum (SCTID)" xsd:string -is_a: UBERON:0008822 ! posterior mediastinum - -[Term] -id: SCTID:279623004 ! -property_value: IAO:0000589 "duct of epididymis (SCTID)" xsd:string -is_a: UBERON:0008824 ! duct of epididymis - -[Term] -id: SCTID:95949009 ! -property_value: IAO:0000589 "presphenoid bone (SCTID)" xsd:string -is_a: UBERON:0008828 ! presphenoid bone - -[Term] -id: SCTID:181110003 ! -property_value: IAO:0000589 "great auricular nerve (SCTID)" xsd:string -is_a: UBERON:0008833 ! great auricular nerve - -[Term] -id: SCTID:279592009 ! -property_value: IAO:0000589 "suspensory ligament of testis (SCTID)" xsd:string -is_a: UBERON:0008842 ! suspensory ligament of testis - -[Term] -id: SCTID:299983007 ! -property_value: IAO:0000589 "gubernaculum testis (SCTID)" xsd:string -is_a: UBERON:0008843 ! gubernaculum testis - -[Term] -id: SCTID:410746001 ! -property_value: IAO:0000589 "nonskeletal ligament (SCTID)" xsd:string -is_a: UBERON:0008845 ! nonskeletal ligament - -[Term] -id: SCTID:410744003 ! -property_value: IAO:0000589 "skeletal ligament (SCTID)" xsd:string -is_a: UBERON:0008846 ! skeletal ligament - -[Term] -id: SCTID:279915004 ! -property_value: IAO:0000589 "ovarian ligament (SCTID)" xsd:string -is_a: UBERON:0008847 ! ovarian ligament - -[Term] -id: SCTID:362132003 ! -property_value: IAO:0000589 "stomach muscularis externa (SCTID)" xsd:string -is_a: UBERON:0008856 ! stomach muscularis externa - -[Term] -id: SCTID:2746007 ! -property_value: IAO:0000589 "stomach smooth muscle circular layer (SCTID)" xsd:string -is_a: UBERON:0008857 ! stomach smooth muscle circular layer - -[Term] -id: SCTID:245417002 ! -property_value: IAO:0000589 "pyloric canal (SCTID)" xsd:string -is_a: UBERON:0008858 ! pyloric canal - -[Term] -id: SCTID:8894005 ! -property_value: IAO:0000589 "cardiac gastric gland (SCTID)" xsd:string -is_a: UBERON:0008859 ! cardiac gastric gland - -[Term] -id: SCTID:70710007 ! -property_value: IAO:0000589 "pyloric gastric gland (SCTID)" xsd:string -is_a: UBERON:0008861 ! pyloric gastric gland - -[Term] -id: SCTID:361365004 ! -property_value: IAO:0000589 "pulmonary acinus (SCTID)" xsd:string -is_a: UBERON:0008874 ! pulmonary acinus - -[Term] -id: SCTID:51025007 ! -property_value: IAO:0000589 "epidermal-dermal junction (SCTID)" xsd:string -is_a: UBERON:0008877 ! epidermal-dermal junction - -[Term] -id: SCTID:362548009 ! -property_value: IAO:0000589 "ligament of pinna (SCTID)" xsd:string -is_a: UBERON:0008879 ! ligament of pinna - -[Term] -id: SCTID:39365008 ! -property_value: IAO:0000589 "osteoid (SCTID)" xsd:string -is_a: UBERON:0008883 ! osteoid - -[Term] -id: SCTID:303051005 ! -property_value: IAO:0000589 "rectal venous plexus (SCTID)" xsd:string -is_a: UBERON:0008887 ! rectal venous plexus - -[Term] -id: SCTID:31510008 ! -property_value: IAO:0000589 "vesical venous plexus (SCTID)" xsd:string -is_a: UBERON:0008888 ! vesical venous plexus - -[Term] -id: SCTID:294553007 ! -property_value: IAO:0000589 "uterine venous plexus (SCTID)" xsd:string -is_a: UBERON:0008889 ! uterine venous plexus - -[Term] -id: SCTID:308766004 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch (SCTID)" xsd:string -is_a: UBERON:0008896 ! post-hyoid pharyngeal arch - -[Term] -id: SCTID:73003005 ! -property_value: IAO:0000589 "fin (SCTID)" xsd:string -is_a: UBERON:0008897 ! fin - -[Term] -id: SCTID:279252006 ! -property_value: IAO:0000589 "somatosensory cortex (SCTID)" xsd:string -is_a: UBERON:0008930 ! somatosensory cortex - -[Term] -id: SCTID:201712001 ! -property_value: IAO:0000589 "lung parenchyma (SCTID)" xsd:string -is_a: UBERON:0008946 ! lung parenchyma - -[Term] -id: SCTID:303548008 ! -property_value: IAO:0000589 "upper lobe of lung (SCTID)" xsd:string -is_a: UBERON:0008948 ! upper lobe of lung - -[Term] -id: SCTID:303549000 ! -property_value: IAO:0000589 "lower lobe of lung (SCTID)" xsd:string -is_a: UBERON:0008949 ! lower lobe of lung - -[Term] -id: SCTID:272655003 ! -property_value: IAO:0000589 "left lung lobe (SCTID)" xsd:string -is_a: UBERON:0008951 ! left lung lobe - -[Term] -id: SCTID:361984006 ! -property_value: IAO:0000589 "upper lobe of left lung (SCTID)" xsd:string -is_a: UBERON:0008952 ! upper lobe of left lung - -[Term] -id: SCTID:361989001 ! -property_value: IAO:0000589 "lower lobe of left lung (SCTID)" xsd:string -is_a: UBERON:0008953 ! lower lobe of left lung - -[Term] -id: SCTID:184916009 ! -property_value: IAO:0000589 "lingula of left lung (SCTID)" xsd:string -is_a: UBERON:0008954 ! lingula of left lung - -[Term] -id: SCTID:362900002 ! -property_value: IAO:0000589 "middle lobe of lung (SCTID)" xsd:string -is_a: UBERON:0008955 ! middle lobe of lung - -[Term] -id: SCTID:368532003 ! -property_value: IAO:0000589 "forelimb bone (SCTID)" xsd:string -is_a: UBERON:0008962 ! forelimb bone - -[Term] -id: SCTID:410026002 ! -property_value: IAO:0000589 "hoof (SCTID)" xsd:string -is_a: UBERON:0008963 ! hoof - -[Term] -id: SCTID:369198002 ! -property_value: IAO:0000589 "centrum semiovale (SCTID)" xsd:string -is_a: UBERON:0008967 ! centrum semiovale - -[Term] -id: SCTID:110975002 ! -property_value: IAO:0000589 "dental follicle (SCTID)" xsd:string -is_a: UBERON:0008969 ! dental follicle - -[Term] -id: SCTID:362164005 ! -property_value: IAO:0000589 "left colon (SCTID)" xsd:string -is_a: UBERON:0008971 ! left colon - -[Term] -id: SCTID:362161002 ! -property_value: IAO:0000589 "right colon (SCTID)" xsd:string -is_a: UBERON:0008972 ! right colon - -[Term] -id: SCTID:361698000 ! -property_value: IAO:0000589 "apocrine gland (SCTID)" xsd:string -is_a: UBERON:0008974 ! apocrine gland - -[Term] -id: SCTID:14478002 ! -property_value: IAO:0000589 "oviduct shell gland (SCTID)" xsd:string -is_a: UBERON:0008975 ! oviduct shell gland - -[Term] -id: SCTID:23993002 ! -property_value: IAO:0000589 "snake venom gland (SCTID)" xsd:string -is_a: UBERON:0008976 ! snake venom gland - -[Term] -id: SCTID:360767004 ! -property_value: IAO:0000589 "pes anserinus of tibia (SCTID)" xsd:string -is_a: UBERON:0008977 ! pes anserinus of tibia - -[Term] -id: SCTID:362169000 ! -property_value: IAO:0000589 "anal sac (SCTID)" xsd:string -is_a: UBERON:0008978 ! anal sac - -[Term] -id: SCTID:127853004 ! -property_value: IAO:0000589 "carcass (SCTID)" xsd:string -is_a: UBERON:0008979 ! carcass - -[Term] -id: SCTID:181772008 ! -property_value: IAO:0000589 "fascia (SCTID)" xsd:string -is_a: UBERON:0008982 ! fascia - -[Term] -id: SCTID:29704000 ! -property_value: IAO:0000589 "renal parenchyma (SCTID)" xsd:string -is_a: UBERON:0008987 ! renal parenchyma - -[Term] -id: SCTID:322749003 ! -property_value: IAO:0000589 "submucosal esophageal gland (SCTID)" xsd:string -is_a: UBERON:0008989 ! submucosal esophageal gland - -[Term] -id: SCTID:37333001 ! -property_value: IAO:0000589 "chorion frondosum (SCTID)" xsd:string -is_a: UBERON:0008992 ! chorion frondosum - -[Term] -id: SCTID:279303009 ! -property_value: IAO:0000589 "habenular nucleus (SCTID)" xsd:string -is_a: UBERON:0008993 ! habenular nucleus - -[Term] -id: SCTID:279220006 ! -property_value: IAO:0000589 "nucleus of cerebellar nuclear complex (SCTID)" xsd:string -is_a: UBERON:0008995 ! nucleus of cerebellar nuclear complex - -[Term] -id: SCTID:362029003 ! -property_value: IAO:0000589 "vasculature of brain (SCTID)" xsd:string -is_a: UBERON:0008998 ! vasculature of brain - -[Term] -id: SCTID:370743008 ! -property_value: IAO:0000589 "hoof lamina (SCTID)" xsd:string -is_a: UBERON:0008999 ! hoof lamina - -[Term] -id: SCTID:18074002 ! -property_value: IAO:0000589 "ischial spine (SCTID)" xsd:string -is_a: UBERON:0009000 ! ischial spine - -[Term] -id: SCTID:256591004 ! -property_value: IAO:0000589 "placental membrane (SCTID)" xsd:string -is_a: UBERON:0009002 ! placental membrane - -[Term] -id: SCTID:182203004 ! -property_value: IAO:0000589 "femorotibial joint (SCTID)" xsd:string -is_a: UBERON:0009005 ! femorotibial joint - -[Term] -id: SCTID:65266007 ! -property_value: IAO:0000589 "deep inguinal lymph node (SCTID)" xsd:string -is_a: UBERON:0009006 ! deep inguinal lymph node - -[Term] -id: SCTID:113340006 ! -property_value: IAO:0000589 "superficial inguinal lymph node (SCTID)" xsd:string -is_a: UBERON:0009007 ! superficial inguinal lymph node - -[Term] -id: SCTID:50624003 ! -property_value: IAO:0000589 "carotid sinus nerve (SCTID)" xsd:string -is_a: UBERON:0009009 ! carotid sinus nerve - -[Term] -id: SCTID:256880003 ! -property_value: IAO:0000589 "periurethral tissue (SCTID)" xsd:string -is_a: UBERON:0009010 ! periurethral tissue - -[Term] -id: SCTID:3008003 ! -property_value: IAO:0000589 "white fibrocartilage (SCTID)" xsd:string -is_a: UBERON:0009013 ! white fibrocartilage - -[Term] -id: SCTID:286601005 ! -property_value: IAO:0000589 "lower back skin (SCTID)" xsd:string -is_a: UBERON:0009014 ! lower back skin - -[Term] -id: SCTID:304890003 ! -property_value: IAO:0000589 "upper back skin (SCTID)" xsd:string -is_a: UBERON:0009015 ! upper back skin - -[Term] -id: SCTID:280868008 ! -property_value: IAO:0000589 "ciliary stroma (SCTID)" xsd:string -is_a: UBERON:0009016 ! ciliary stroma - -[Term] -id: SCTID:245482004 ! -property_value: IAO:0000589 "left uterine horn (SCTID)" xsd:string -is_a: UBERON:0009020 ! left uterine horn - -[Term] -id: SCTID:245481006 ! -property_value: IAO:0000589 "right uterine horn (SCTID)" xsd:string -is_a: UBERON:0009022 ! right uterine horn - -[Term] -id: SCTID:24306004 ! -property_value: IAO:0000589 "adrenal gland X zone (SCTID)" xsd:string -is_a: UBERON:0009024 ! adrenal gland X zone - -[Term] -id: SCTID:261401008 ! -property_value: IAO:0000589 "gastroepiploic artery (SCTID)" xsd:string -is_a: UBERON:0009025 ! gastroepiploic artery - -[Term] -id: SCTID:244327004 ! -property_value: IAO:0000589 "iliac circumflex artery (SCTID)" xsd:string -is_a: UBERON:0009026 ! iliac circumflex artery - -[Term] -id: SCTID:244307000 ! -property_value: IAO:0000589 "vesical artery (SCTID)" xsd:string -is_a: UBERON:0009027 ! vesical artery - -[Term] -id: SCTID:395225000 ! -property_value: IAO:0000589 "pudendal vein (SCTID)" xsd:string -is_a: UBERON:0009029 ! pudendal vein - -[Term] -id: SCTID:304057004 ! -property_value: IAO:0000589 "left pulmonary vein (SCTID)" xsd:string -is_a: UBERON:0009030 ! left pulmonary vein - -[Term] -id: SCTID:304056008 ! -property_value: IAO:0000589 "right pulmonary vein (SCTID)" xsd:string -is_a: UBERON:0009032 ! right pulmonary vein - -[Term] -id: SCTID:245151008 ! -property_value: IAO:0000589 "renal straight tubule (SCTID)" xsd:string -is_a: UBERON:0009035 ! renal straight tubule - -[Term] -id: SCTID:368954006 ! -property_value: IAO:0000589 "sulcus ampullaris (SCTID)" xsd:string -is_a: UBERON:0009038 ! sulcus ampullaris - -[Term] -id: SCTID:327147000 ! -property_value: IAO:0000589 "lymph node germinal center (SCTID)" xsd:string -is_a: UBERON:0009039 ! lymph node germinal center - -[Term] -id: SCTID:181353005 ! -property_value: IAO:0000589 "deep circumflex iliac artery (SCTID)" xsd:string -is_a: UBERON:0009040 ! deep circumflex iliac artery - -[Term] -id: SCTID:303052003 ! -property_value: IAO:0000589 "prostatic venous plexus (SCTID)" xsd:string -is_a: UBERON:0009042 ! prostatic venous plexus - -[Term] -id: SCTID:65326006 ! -property_value: IAO:0000589 "pudendal venous plexus (SCTID)" xsd:string -is_a: UBERON:0009044 ! pudendal venous plexus - -[Term] -id: SCTID:369021001 ! -property_value: IAO:0000589 "dorsal nucleus of trapezoid body (SCTID)" xsd:string -is_a: UBERON:0009053 ! dorsal nucleus of trapezoid body - -[Term] -id: SCTID:49081009 ! -property_value: IAO:0000589 "air sac (SCTID)" xsd:string -is_a: UBERON:0009060 ! air sac - -[Term] -id: SCTID:62426003 ! -property_value: IAO:0000589 "cervical air sac (SCTID)" xsd:string -is_a: UBERON:0009064 ! cervical air sac - -[Term] -id: SCTID:17911004 ! -property_value: IAO:0000589 "anterior thoracic air sac (SCTID)" xsd:string -is_a: UBERON:0009065 ! anterior thoracic air sac - -[Term] -id: SCTID:10576005 ! -property_value: IAO:0000589 "posterior thoracic air sac (SCTID)" xsd:string -is_a: UBERON:0009066 ! posterior thoracic air sac - -[Term] -id: SCTID:43701009 ! -property_value: IAO:0000589 "abdominal air sac (SCTID)" xsd:string -is_a: UBERON:0009067 ! abdominal air sac - -[Term] -id: SCTID:362253003 ! -property_value: IAO:0000589 "gravid uterus (SCTID)" xsd:string -is_a: UBERON:0009098 ! gravid uterus - -[Term] -id: SCTID:3194006 ! -property_value: IAO:0000589 "right atrium endocardium (SCTID)" xsd:string -is_a: UBERON:0009129 ! right atrium endocardium - -[Term] -id: SCTID:361433003 ! -property_value: IAO:0000589 "dorsal meso-duodenum (SCTID)" xsd:string -is_a: UBERON:0009130 ! dorsal meso-duodenum - -[Term] -id: SCTID:181694005 ! -property_value: IAO:0000589 "peroneus (SCTID)" xsd:string -is_a: UBERON:0009132 ! peroneus - -[Term] -id: SCTID:361429005 ! -property_value: IAO:0000589 "pleuroperitoneal membrane (SCTID)" xsd:string -is_a: UBERON:0009133 ! pleuroperitoneal membrane - -[Term] -id: SCTID:361507009 ! -property_value: IAO:0000589 "right common cardinal vein (SCTID)" xsd:string -is_a: UBERON:0009138 ! right common cardinal vein - -[Term] -id: SCTID:361505001 ! -property_value: IAO:0000589 "right posterior cardinal vein (SCTID)" xsd:string -is_a: UBERON:0009139 ! right posterior cardinal vein - -[Term] -id: SCTID:361452009 ! -property_value: IAO:0000589 "right subcardinal vein (SCTID)" xsd:string -is_a: UBERON:0009140 ! right subcardinal vein - -[Term] -id: SCTID:32945007 ! -property_value: IAO:0000589 "craniocervical region vein (SCTID)" xsd:string -is_a: UBERON:0009141 ! craniocervical region vein - -[Term] -id: SCTID:308852002 ! -property_value: IAO:0000589 "foramen primum (SCTID)" xsd:string -is_a: UBERON:0009149 ! foramen primum - -[Term] -id: SCTID:344130000 ! -property_value: IAO:0000589 "anal membrane (SCTID)" xsd:string -is_a: UBERON:0009195 ! anal membrane - -[Term] -id: SCTID:368990004 ! -property_value: IAO:0000589 "internasal suture (SCTID)" xsd:string -is_a: UBERON:0009203 ! internasal suture - -[Term] -id: SCTID:317278007 ! -property_value: IAO:0000589 "cartilaginous vertebral centrum (SCTID)" xsd:string -is_a: UBERON:0009291 ! cartilaginous vertebral centrum - -[Term] -id: SCTID:308881001 ! -property_value: IAO:0000589 "embryonic nasal process (SCTID)" xsd:string -is_a: UBERON:0009292 ! embryonic nasal process - -[Term] -id: SCTID:346265009 ! -property_value: IAO:0000589 "embryonic frontal process (SCTID)" xsd:string -is_a: UBERON:0009293 ! embryonic frontal process - -[Term] -id: SCTID:95946002 ! -property_value: IAO:0000589 "basiotic bone (SCTID)" xsd:string -is_a: UBERON:0009468 ! basiotic bone - -[Term] -id: SCTID:95950009 ! -property_value: IAO:0000589 "postsphenoidal bone (SCTID)" xsd:string -is_a: UBERON:0009470 ! postsphenoidal bone - -[Term] -id: SCTID:66938003 ! -property_value: IAO:0000589 "dorsum of tongue (SCTID)" xsd:string -is_a: UBERON:0009471 ! dorsum of tongue - -[Term] -id: SCTID:362732006 ! -property_value: IAO:0000589 "axilla (SCTID)" xsd:string -is_a: UBERON:0009472 ! axilla - -[Term] -id: SCTID:312543003 ! -property_value: IAO:0000589 "distal segment of manual digit (SCTID)" xsd:string -is_a: UBERON:0009552 ! distal segment of manual digit - -[Term] -id: SCTID:370730008 ! -property_value: IAO:0000589 "short pastern bone (SCTID)" xsd:string -is_a: UBERON:0009555 ! short pastern bone - -[Term] -id: SCTID:370733005 ! -property_value: IAO:0000589 "long pastern bone (SCTID)" xsd:string -is_a: UBERON:0009556 ! long pastern bone - -[Term] -id: SCTID:370725009 ! -property_value: IAO:0000589 "pastern region of limb (SCTID)" xsd:string -is_a: UBERON:0009563 ! pastern region of limb - -[Term] -id: SCTID:244197001 ! -property_value: IAO:0000589 "nail of manual digit (SCTID)" xsd:string -is_a: UBERON:0009565 ! nail of manual digit - -[Term] -id: SCTID:244198006 ! -property_value: IAO:0000589 "nail of pedal digit (SCTID)" xsd:string -is_a: UBERON:0009567 ! nail of pedal digit - -[Term] -id: SCTID:281699004 ! -property_value: IAO:0000589 "trunk region of vertebral column (SCTID)" xsd:string -is_a: UBERON:0009568 ! trunk region of vertebral column - -[Term] -id: SCTID:22943007 ! -property_value: IAO:0000589 "subdivision of trunk (SCTID)" xsd:string -is_a: UBERON:0009569 ! subdivision of trunk - -[Term] -id: SCTID:362436008 ! -property_value: IAO:0000589 "spinal nerve root (SCTID)" xsd:string -is_a: UBERON:0009623 ! spinal nerve root - -[Term] -id: SCTID:361600002 ! -property_value: IAO:0000589 "lumbar nerve (SCTID)" xsd:string -is_a: UBERON:0009624 ! lumbar nerve - -[Term] -id: SCTID:361601003 ! -property_value: IAO:0000589 "sacral nerve (SCTID)" xsd:string -is_a: UBERON:0009625 ! sacral nerve - -[Term] -id: SCTID:287477006 ! -property_value: IAO:0000589 "coccygeal nerve (SCTID)" xsd:string -is_a: UBERON:0009629 ! coccygeal nerve - -[Term] -id: SCTID:180968005 ! -property_value: IAO:0000589 "root of lumbar spinal nerve (SCTID)" xsd:string -is_a: UBERON:0009631 ! root of lumbar spinal nerve - -[Term] -id: SCTID:180966009 ! -property_value: IAO:0000589 "root of cervical nerve (SCTID)" xsd:string -is_a: UBERON:0009632 ! root of cervical nerve - -[Term] -id: SCTID:244454000 ! -property_value: IAO:0000589 "root of sacral nerve (SCTID)" xsd:string -is_a: UBERON:0009633 ! root of sacral nerve - -[Term] -id: SCTID:140491003 ! -property_value: IAO:0000589 "body of sphenoid (SCTID)" xsd:string -is_a: UBERON:0009639 ! body of sphenoid - -[Term] -id: SCTID:37467007 ! -property_value: IAO:0000589 "ansa lenticularis (SCTID)" xsd:string -is_a: UBERON:0009641 ! ansa lenticularis - -[Term] -id: SCTID:369034000 ! -property_value: IAO:0000589 "central tegmental tract (SCTID)" xsd:string -is_a: UBERON:0009643 ! central tegmental tract - -[Term] -id: SCTID:280534006 ! -property_value: IAO:0000589 "lumbar sympathetic nerve trunk (SCTID)" xsd:string -is_a: UBERON:0009646 ! lumbar sympathetic nerve trunk - -[Term] -id: SCTID:70839004 ! -property_value: IAO:0000589 "tympanic membrane epithelium (SCTID)" xsd:string -is_a: UBERON:0009647 ! tympanic membrane epithelium - -[Term] -id: SCTID:245251000 ! -property_value: IAO:0000589 "nephron tubule basement membrane (SCTID)" xsd:string -is_a: UBERON:0009651 ! nephron tubule basement membrane - -[Term] -id: SCTID:279285003 ! -property_value: IAO:0000589 "midbrain nucleus (SCTID)" xsd:string -is_a: UBERON:0009661 ! midbrain nucleus - -[Term] -id: SCTID:361430000 ! -property_value: IAO:0000589 "ventral mesentery (SCTID)" xsd:string -is_a: UBERON:0009668 ! ventral mesentery - -[Term] -id: SCTID:259740004 ! -property_value: IAO:0000589 "rectal lumen (SCTID)" xsd:string -is_a: UBERON:0009670 ! rectal lumen - -[Term] -id: SCTID:280274004 ! -property_value: IAO:0000589 "chorda tympani branch of facial nerve (SCTID)" xsd:string -is_a: UBERON:0009675 ! chorda tympani branch of facial nerve - -[Term] -id: SCTID:277729002 ! -property_value: IAO:0000589 "middle cardiac vein (SCTID)" xsd:string -is_a: UBERON:0009687 ! middle cardiac vein - -[Term] -id: SCTID:244212001 ! -property_value: IAO:0000589 "posterior inferior cerebellar artery (SCTID)" xsd:string -is_a: UBERON:0009688 ! posterior inferior cerebellar artery - -[Term] -id: SCTID:244213006 ! -property_value: IAO:0000589 "anterior inferior cerebellar artery (SCTID)" xsd:string -is_a: UBERON:0009689 ! anterior inferior cerebellar artery - -[Term] -id: SCTID:8911002 ! -property_value: IAO:0000589 "endocardium of right ventricle (SCTID)" xsd:string -is_a: UBERON:0009712 ! endocardium of right ventricle - -[Term] -id: SCTID:191004004 ! -property_value: IAO:0000589 "endocardium of left ventricle (SCTID)" xsd:string -is_a: UBERON:0009713 ! endocardium of left ventricle - -[Term] -id: SCTID:361453004 ! -property_value: IAO:0000589 "head fold of embryonic disc (SCTID)" xsd:string -is_a: UBERON:0009746 ! head fold of embryonic disc - -[Term] -id: SCTID:361439004 ! -property_value: IAO:0000589 "tail fold of embryonic disc (SCTID)" xsd:string -is_a: UBERON:0009747 ! tail fold of embryonic disc - -[Term] -id: SCTID:68594002 ! -property_value: IAO:0000589 "adrenal gland cortex zone (SCTID)" xsd:string -is_a: UBERON:0009753 ! adrenal gland cortex zone - -[Term] -id: SCTID:83953006 ! -property_value: IAO:0000589 "blubber (SCTID)" xsd:string -is_a: UBERON:0009754 ! blubber - -[Term] -id: SCTID:280508003 ! -property_value: IAO:0000589 "abdominal ganglion (SCTID)" xsd:string -is_a: UBERON:0009758 ! abdominal ganglion - -[Term] -id: SCTID:361506000 ! -property_value: IAO:0000589 "left common cardinal vein (SCTID)" xsd:string -is_a: UBERON:0009769 ! left common cardinal vein - -[Term] -id: SCTID:361502003 ! -property_value: IAO:0000589 "left anterior cardinal vein (SCTID)" xsd:string -is_a: UBERON:0009771 ! left anterior cardinal vein - -[Term] -id: SCTID:361503008 ! -property_value: IAO:0000589 "right anterior cardinal vein (SCTID)" xsd:string -is_a: UBERON:0009772 ! right anterior cardinal vein - -[Term] -id: SCTID:361996004 ! -property_value: IAO:0000589 "pleural sac (SCTID)" xsd:string -is_a: UBERON:0009778 ! pleural sac - -[Term] -id: SCTID:279878007 ! -property_value: IAO:0000589 "body of uterus (SCTID)" xsd:string -is_a: UBERON:0009853 ! body of uterus - -[Term] -id: SCTID:180933005 ! -property_value: IAO:0000589 "cavum septum pellucidum (SCTID)" xsd:string -is_a: UBERON:0009857 ! cavum septum pellucidum - -[Term] -id: SCTID:57487002 ! -property_value: IAO:0000589 "endosteum (SCTID)" xsd:string -is_a: UBERON:0009859 ! endosteum - -[Term] -id: SCTID:245415005 ! -property_value: IAO:0000589 "zone of stomach (SCTID)" xsd:string -is_a: UBERON:0009870 ! zone of stomach - -[Term] -id: SCTID:370640001 ! -property_value: IAO:0000589 "metapodium region (SCTID)" xsd:string -is_a: UBERON:0009877 ! metapodium region - -[Term] -id: SCTID:264228001 ! -property_value: IAO:0000589 "tarsal skeleton (SCTID)" xsd:string -is_a: UBERON:0009879 ! tarsal skeleton - -[Term] -id: SCTID:361796005 ! -property_value: IAO:0000589 "tarsal skeleton (SCTID)" xsd:string -is_a: UBERON:0009879 ! tarsal skeleton - -[Term] -id: SCTID:245444007 ! -property_value: IAO:0000589 "anal column (SCTID)" xsd:string -is_a: UBERON:0009882 ! anal column - -[Term] -id: SCTID:62802007 ! -property_value: IAO:0000589 "interlobar artery (SCTID)" xsd:string -is_a: UBERON:0009885 ! interlobar artery - -[Term] -id: SCTID:280188009 ! -property_value: IAO:0000589 "sensory root of trigeminal nerve (SCTID)" xsd:string -is_a: UBERON:0009907 ! sensory root of trigeminal nerve - -[Term] -id: SCTID:361330004 ! -property_value: IAO:0000589 "renal lobule (SCTID)" xsd:string -is_a: UBERON:0009914 ! renal lobule - -[Term] -id: SCTID:279397004 ! -property_value: IAO:0000589 "wall of ureter (SCTID)" xsd:string -is_a: UBERON:0009916 ! wall of ureter - -[Term] -id: SCTID:2574004 ! -property_value: IAO:0000589 "clavicular air sac (SCTID)" xsd:string -is_a: UBERON:0009948 ! clavicular air sac - -[Term] -id: SCTID:279405003 ! -property_value: IAO:0000589 "bladder lumen (SCTID)" xsd:string -is_a: UBERON:0009958 ! bladder lumen - -[Term] -id: SCTID:264130006 ! -property_value: IAO:0000589 "ureteropelvic junction (SCTID)" xsd:string -is_a: UBERON:0009972 ! ureteropelvic junction - -[Term] -id: SCTID:261187001 ! -property_value: IAO:0000589 "ureterovesical junction (SCTID)" xsd:string -is_a: UBERON:0009973 ! ureterovesical junction - -[Term] -id: SCTID:333209006 ! -property_value: IAO:0000589 "epicondyle (SCTID)" xsd:string -is_a: UBERON:0009978 ! epicondyle - -[Term] -id: SCTID:91737009 ! -property_value: IAO:0000589 "condyle (SCTID)" xsd:string -is_a: UBERON:0009979 ! condyle - -[Term] -id: SCTID:304912006 ! -property_value: IAO:0000589 "condyle of femur (SCTID)" xsd:string -is_a: UBERON:0009980 ! condyle of femur - -[Term] -id: SCTID:182056007 ! -property_value: IAO:0000589 "medial condyle of femur (SCTID)" xsd:string -is_a: UBERON:0009984 ! medial condyle of femur - -[Term] -id: SCTID:182057003 ! -property_value: IAO:0000589 "lateral condyle of femur (SCTID)" xsd:string -is_a: UBERON:0009985 ! lateral condyle of femur - -[Term] -id: SCTID:209275007 ! -property_value: IAO:0000589 "lateral epicondyle of femur (SCTID)" xsd:string -is_a: UBERON:0009986 ! lateral epicondyle of femur - -[Term] -id: SCTID:209172001 ! -property_value: IAO:0000589 "medial epicondyle of femur (SCTID)" xsd:string -is_a: UBERON:0009987 ! medial epicondyle of femur - -[Term] -id: SCTID:361778001 ! -property_value: IAO:0000589 "condyle of humerus (SCTID)" xsd:string -is_a: UBERON:0009988 ! condyle of humerus - -[Term] -id: SCTID:182062002 ! -property_value: IAO:0000589 "condyle of tibia (SCTID)" xsd:string -is_a: UBERON:0009989 ! condyle of tibia - -[Term] -id: SCTID:182066004 ! -property_value: IAO:0000589 "medial condyle of tibia (SCTID)" xsd:string -is_a: UBERON:0009990 ! medial condyle of tibia - -[Term] -id: SCTID:182067008 ! -property_value: IAO:0000589 "lateral condyle of tibia (SCTID)" xsd:string -is_a: UBERON:0009991 ! lateral condyle of tibia - -[Term] -id: SCTID:256491001 ! -property_value: IAO:0000589 "placental cotyledon (SCTID)" xsd:string -is_a: UBERON:0010008 ! placental cotyledon - -[Term] -id: SCTID:369109003 ! -property_value: IAO:0000589 "basal nucleus of telencephalon (SCTID)" xsd:string -is_a: UBERON:0010010 ! basal nucleus of telencephalon - -[Term] -id: SCTID:270125000 ! -property_value: IAO:0000589 "spiral valve of cystic duct (SCTID)" xsd:string -is_a: UBERON:0010017 ! spiral valve of cystic duct - -[Term] -id: SCTID:361516008 ! -property_value: IAO:0000589 "tubotympanic recess epithelium (SCTID)" xsd:string -is_a: UBERON:0010020 ! tubotympanic recess epithelium - -[Term] -id: SCTID:362094001 ! -property_value: IAO:0000589 "posterior part of tongue (SCTID)" xsd:string -is_a: UBERON:0010033 ! posterior part of tongue - -[Term] -id: SCTID:361424000 ! -property_value: IAO:0000589 "copula linguae (SCTID)" xsd:string -is_a: UBERON:0010034 ! copula linguae - -[Term] -id: SCTID:268338004 ! -property_value: IAO:0000589 "fundic gastric gland (SCTID)" xsd:string -is_a: UBERON:0010038 ! fundic gastric gland - -[Term] -id: SCTID:245835003 ! -property_value: IAO:0000589 "mucosa of dorsum of tongue (SCTID)" xsd:string -is_a: UBERON:0010052 ! mucosa of dorsum of tongue - -[Term] -id: SCTID:361420009 ! -property_value: IAO:0000589 "hypopharyngeal eminence (SCTID)" xsd:string -is_a: UBERON:0010057 ! hypopharyngeal eminence - -[Term] -id: SCTID:368945008 ! -property_value: IAO:0000589 "pharyngeal opening of pharyngotympanic tube (SCTID)" xsd:string -is_a: UBERON:0010060 ! pharyngeal opening of pharyngotympanic tube - -[Term] -id: SCTID:138773005 ! -property_value: IAO:0000589 "tympanic plate (SCTID)" xsd:string -is_a: UBERON:0010066 ! tympanic plate - -[Term] -id: SCTID:39725007 ! -property_value: IAO:0000589 "outer epithelial layer of tympanic membrane (SCTID)" xsd:string -is_a: UBERON:0010069 ! outer epithelial layer of tympanic membrane - -[Term] -id: SCTID:44692008 ! -property_value: IAO:0000589 "intermediate layer of tympanic membrane (SCTID)" xsd:string -is_a: UBERON:0010070 ! intermediate layer of tympanic membrane - -[Term] -id: SCTID:244269002 ! -property_value: IAO:0000589 "gastroduodenal artery (SCTID)" xsd:string -is_a: UBERON:0010132 ! gastroduodenal artery - -[Term] -id: SCTID:264125007 ! -property_value: IAO:0000589 "paraurethral gland (SCTID)" xsd:string -is_a: UBERON:0010145 ! paraurethral gland - -[Term] -id: SCTID:279480006 ! -property_value: IAO:0000589 "paraurethral duct (SCTID)" xsd:string -is_a: UBERON:0010146 ! paraurethral duct - -[Term] -id: SCTID:279709005 ! -property_value: IAO:0000589 "duct of bulbourethral gland (SCTID)" xsd:string -is_a: UBERON:0010151 ! duct of bulbourethral gland - -[Term] -id: SCTID:43386000 ! -property_value: IAO:0000589 "rumen papilla (SCTID)" xsd:string -is_a: UBERON:0010153 ! rumen papilla - -[Term] -id: SCTID:136753005 ! -property_value: IAO:0000589 "parietomastoid suture (SCTID)" xsd:string -is_a: UBERON:0010155 ! parietomastoid suture - -[Term] -id: SCTID:136349005 ! -property_value: IAO:0000589 "sphenofrontal suture (SCTID)" xsd:string -is_a: UBERON:0010156 ! sphenofrontal suture - -[Term] -id: SCTID:136551005 ! -property_value: IAO:0000589 "sphenoparietal suture (SCTID)" xsd:string -is_a: UBERON:0010157 ! sphenoparietal suture - -[Term] -id: SCTID:368980007 ! -property_value: IAO:0000589 "sphenozygomatic suture (SCTID)" xsd:string -is_a: UBERON:0010158 ! sphenozygomatic suture - -[Term] -id: SCTID:134136005 ! -property_value: IAO:0000589 "occipitomastoid suture (SCTID)" xsd:string -is_a: UBERON:0010159 ! occipitomastoid suture - -[Term] -id: SCTID:91747007 ! -property_value: IAO:0000589 "lumen of blood vessel (SCTID)" xsd:string -is_a: UBERON:0010161 ! lumen of blood vessel - -[Term] -id: SCTID:265781000 ! -property_value: IAO:0000589 "eyebrow (SCTID)" xsd:string -is_a: UBERON:0010163 ! eyebrow - -[Term] -id: SCTID:256924005 ! -property_value: IAO:0000589 "beard (SCTID)" xsd:string -is_a: UBERON:0010167 ! beard - -[Term] -id: SCTID:367575006 ! -property_value: IAO:0000589 "collection of eyelashes (SCTID)" xsd:string -is_a: UBERON:0010168 ! collection of eyelashes - -[Term] -id: SCTID:256925006 ! -property_value: IAO:0000589 "moustache (SCTID)" xsd:string -is_a: UBERON:0010169 ! moustache - -[Term] -id: SCTID:368910000 ! -property_value: IAO:0000589 "strand of hair of face (SCTID)" xsd:string -is_a: UBERON:0010171 ! strand of hair of face - -[Term] -id: SCTID:362032000 ! -property_value: IAO:0000589 "bulb of aorta (SCTID)" xsd:string -is_a: UBERON:0010172 ! bulb of aorta - -[Term] -id: SCTID:337318006 ! -property_value: IAO:0000589 "nutrient foramen artery (SCTID)" xsd:string -is_a: UBERON:0010176 ! nutrient foramen artery - -[Term] -id: SCTID:245983001 ! -property_value: IAO:0000589 "straight venules of kidney (SCTID)" xsd:string -is_a: UBERON:0010181 ! straight venules of kidney - -[Term] -id: SCTID:259261007 ! -property_value: IAO:0000589 "rete ovarii (SCTID)" xsd:string -is_a: UBERON:0010185 ! rete ovarii - -[Term] -id: SCTID:303562001 ! -property_value: IAO:0000589 "male urethral gland (SCTID)" xsd:string -is_a: UBERON:0010186 ! male urethral gland - -[Term] -id: SCTID:279476001 ! -property_value: IAO:0000589 "female urethral gland (SCTID)" xsd:string -is_a: UBERON:0010187 ! female urethral gland - -[Term] -id: SCTID:340062006 ! -property_value: IAO:0000589 "carotid duct (SCTID)" xsd:string -is_a: UBERON:0010198 ! carotid duct - -[Term] -id: SCTID:43225002 ! -property_value: IAO:0000589 "mesencephalic vein (SCTID)" xsd:string -is_a: UBERON:0010205 ! mesencephalic vein - -[Term] -id: SCTID:113326005 ! -property_value: IAO:0000589 "nictitating membrane (SCTID)" xsd:string -is_a: UBERON:0010207 ! nictitating membrane - -[Term] -id: SCTID:280686009 ! -property_value: IAO:0000589 "plica semilunaris of conjunctiva (SCTID)" xsd:string -is_a: UBERON:0010209 ! plica semilunaris of conjunctiva - -[Term] -id: SCTID:368597006 ! -property_value: IAO:0000589 "left pupil (SCTID)" xsd:string -is_a: UBERON:0010223 ! left pupil - -[Term] -id: SCTID:368575009 ! -property_value: IAO:0000589 "right pupil (SCTID)" xsd:string -is_a: UBERON:0010224 ! right pupil - -[Term] -id: SCTID:86149002 ! -property_value: IAO:0000589 "ruminant esophageal groove (SCTID)" xsd:string -is_a: UBERON:0010229 ! ruminant esophageal groove - -[Term] -id: SCTID:244486005 ! -property_value: IAO:0000589 "eyeball of camera-type eye (SCTID)" xsd:string -is_a: UBERON:0010230 ! eyeball of camera-type eye - -[Term] -id: SCTID:157862000 ! -property_value: IAO:0000589 "stroma of thyroid gland (SCTID)" xsd:string -is_a: UBERON:0010233 ! stroma of thyroid gland - -[Term] -id: SCTID:244796000 ! -property_value: IAO:0000589 "palatopharyngeus muscle (SCTID)" xsd:string -is_a: UBERON:0010234 ! palatopharyngeus muscle - -[Term] -id: SCTID:244797009 ! -property_value: IAO:0000589 "uvular muscle (SCTID)" xsd:string -is_a: UBERON:0010235 ! uvular muscle - -[Term] -id: SCTID:14214007 ! -property_value: IAO:0000589 "torus pylorus (SCTID)" xsd:string -is_a: UBERON:0010238 ! torus pylorus - -[Term] -id: SCTID:59637006 ! -property_value: IAO:0000589 "molar gland (SCTID)" xsd:string -is_a: UBERON:0010241 ! molar gland - -[Term] -id: SCTID:3034006 ! -property_value: IAO:0000589 "choroid tapetum lucidum (SCTID)" xsd:string -is_a: UBERON:0010244 ! choroid tapetum lucidum - -[Term] -id: SCTID:278100005 ! -property_value: IAO:0000589 "middle meningeal artery (SCTID)" xsd:string -is_a: UBERON:0010250 ! middle meningeal artery - -[Term] -id: SCTID:369327009 ! -property_value: IAO:0000589 "anterior meningeal artery (SCTID)" xsd:string -is_a: UBERON:0010251 ! anterior meningeal artery - -[Term] -id: SCTID:408728001 ! -property_value: IAO:0000589 "umbilical blood vessel (SCTID)" xsd:string -is_a: UBERON:0010260 ! umbilical blood vessel - -[Term] -id: SCTID:362351003 ! -property_value: IAO:0000589 "operculum of brain (SCTID)" xsd:string -is_a: UBERON:0010262 ! operculum of brain - -[Term] -id: SCTID:315673007 ! -property_value: IAO:0000589 "filum terminale internum (SCTID)" xsd:string -is_a: UBERON:0010269 ! filum terminale internum - -[Term] -id: SCTID:315573001 ! -property_value: IAO:0000589 "filum terminale externum (SCTID)" xsd:string -is_a: UBERON:0010270 ! filum terminale externum - -[Term] -id: SCTID:410035009 ! -property_value: IAO:0000589 "hyoid apparatus (SCTID)" xsd:string -is_a: UBERON:0010272 ! hyoid apparatus - -[Term] -id: SCTID:119534005 ! -property_value: IAO:0000589 "zone of hyoid bone (SCTID)" xsd:string -is_a: UBERON:0010273 ! zone of hyoid bone - -[Term] -id: SCTID:314273005 ! -property_value: IAO:0000589 "pericardial sinus (SCTID)" xsd:string -is_a: UBERON:0010279 ! pericardial sinus - -[Term] -id: SCTID:263344003 ! -property_value: IAO:0000589 "lacrimal punctum (SCTID)" xsd:string -is_a: UBERON:0010284 ! lacrimal punctum - -[Term] -id: SCTID:280191009 ! -property_value: IAO:0000589 "motor root of facial nerve (SCTID)" xsd:string -is_a: UBERON:0010287 ! motor root of facial nerve - -[Term] -id: SCTID:45632000 ! -property_value: IAO:0000589 "scleral ossicle (SCTID)" xsd:string -is_a: UBERON:0010290 ! scleral ossicle - -[Term] -id: SCTID:368850003 ! -property_value: IAO:0000589 "episcleral layer of eyeball (SCTID)" xsd:string -is_a: UBERON:0010292 ! episcleral layer of eyeball - -[Term] -id: SCTID:280607003 ! -property_value: IAO:0000589 "suprachoroid lamina (SCTID)" xsd:string -is_a: UBERON:0010293 ! suprachoroid lamina - -[Term] -id: SCTID:368851004 ! -property_value: IAO:0000589 "substantia propria of sclera (SCTID)" xsd:string -is_a: UBERON:0010295 ! substantia propria of sclera - -[Term] -id: SCTID:29445007 ! -property_value: IAO:0000589 "subdivision of conjunctiva (SCTID)" xsd:string -is_a: UBERON:0010305 ! subdivision of conjunctiva - -[Term] -id: SCTID:264509009 ! -property_value: IAO:0000589 "bulbar conjunctiva (SCTID)" xsd:string -is_a: UBERON:0010306 ! bulbar conjunctiva - -[Term] -id: SCTID:276831007 ! -property_value: IAO:0000589 "conjunctival fornix (SCTID)" xsd:string -is_a: UBERON:0010307 ! conjunctival fornix - -[Term] -id: SCTID:1216008 ! -property_value: IAO:0000589 "synostosis (SCTID)" xsd:string -is_a: UBERON:0010361 ! synostosis - -[Term] -id: SCTID:149885003 ! -property_value: IAO:0000589 "conjunctival vein (SCTID)" xsd:string -is_a: UBERON:0010367 ! conjunctival vein - -[Term] -id: SCTID:306373001 ! -property_value: IAO:0000589 "uncinate process of ethmoid (SCTID)" xsd:string -is_a: UBERON:0010372 ! uncinate process of ethmoid - -[Term] -id: SCTID:245383008 ! -property_value: IAO:0000589 "uncinate process of pancreas (SCTID)" xsd:string -is_a: UBERON:0010373 ! uncinate process of pancreas - -[Term] -id: SCTID:244775007 ! -property_value: IAO:0000589 "superior tarsal muscle (SCTID)" xsd:string -is_a: UBERON:0010379 ! superior tarsal muscle - -[Term] -id: SCTID:415639001 ! -property_value: IAO:0000589 "pterygoid bone (SCTID)" xsd:string -is_a: UBERON:0010389 ! pterygoid bone - -[Term] -id: SCTID:279432008 ! -property_value: IAO:0000589 "lumen of urethra (SCTID)" xsd:string -is_a: UBERON:0010390 ! lumen of urethra - -[Term] -id: SCTID:280455005 ! -property_value: IAO:0000589 "parametrium (SCTID)" xsd:string -is_a: UBERON:0010391 ! parametrium - -[Term] -id: SCTID:145238006 ! -property_value: IAO:0000589 "ocular angle artery (SCTID)" xsd:string -is_a: UBERON:0010408 ! ocular angle artery - -[Term] -id: SCTID:326870003 ! -property_value: IAO:0000589 "lymph node T cell domain (SCTID)" xsd:string -is_a: UBERON:0010417 ! lymph node T cell domain - -[Term] -id: SCTID:280860001 ! -property_value: IAO:0000589 "ciliary processes (SCTID)" xsd:string -is_a: UBERON:0010427 ! ciliary processes - -[Term] -id: SCTID:332907008 ! -property_value: IAO:0000589 "flat bone (SCTID)" xsd:string -is_a: UBERON:0010428 ! flat bone - -[Term] -id: SCTID:277440006 ! -property_value: IAO:0000589 "teres muscle (SCTID)" xsd:string -is_a: UBERON:0010467 ! teres muscle - -[Term] -id: SCTID:277445001 ! -property_value: IAO:0000589 "teres minor muscle (SCTID)" xsd:string -is_a: UBERON:0010496 ! teres minor muscle - -[Term] -id: SCTID:181701000 ! -property_value: IAO:0000589 "fibularis tertius (SCTID)" xsd:string -is_a: UBERON:0010524 ! fibularis tertius - -[Term] -id: SCTID:181704008 ! -property_value: IAO:0000589 "fibularis brevis (SCTID)" xsd:string -is_a: UBERON:0010526 ! fibularis brevis - -[Term] -id: SCTID:110716002 ! -property_value: IAO:0000589 "pectoral complex (SCTID)" xsd:string -is_a: UBERON:0010708 ! pectoral complex - -[Term] -id: SCTID:416631005 ! -property_value: IAO:0000589 "pelvic complex (SCTID)" xsd:string -is_a: UBERON:0010709 ! pelvic complex - -[Term] -id: SCTID:182102002 ! -property_value: IAO:0000589 "distal tarsal bone (SCTID)" xsd:string -is_a: UBERON:0010721 ! distal tarsal bone - -[Term] -id: SCTID:182149003 ! -property_value: IAO:0000589 "os vesalianum pedis (SCTID)" xsd:string -is_a: UBERON:0010723 ! os vesalianum pedis - -[Term] -id: SCTID:87573005 ! -property_value: IAO:0000589 "lateral tubercle of talus (SCTID)" xsd:string -is_a: UBERON:0010724 ! lateral tubercle of talus - -[Term] -id: SCTID:118496000 ! -property_value: IAO:0000589 "accessory navicular bone (SCTID)" xsd:string -is_a: UBERON:0010725 ! accessory navicular bone - -[Term] -id: SCTID:272677004 ! -property_value: IAO:0000589 "sutural bone (SCTID)" xsd:string -is_a: UBERON:0010727 ! sutural bone - -[Term] -id: SCTID:362879001 ! -property_value: IAO:0000589 "meningeal cluster (SCTID)" xsd:string -is_a: UBERON:0010743 ! meningeal cluster - -[Term] -id: SCTID:182024000 ! -property_value: IAO:0000589 "iliac blade (SCTID)" xsd:string -is_a: UBERON:0010746 ! iliac blade - -[Term] -id: SCTID:292524005 ! -property_value: IAO:0000589 "body of ilium (SCTID)" xsd:string -is_a: UBERON:0010747 ! body of ilium - -[Term] -id: SCTID:244802003 ! -property_value: IAO:0000589 "middle pharyngeal constrictor (SCTID)" xsd:string -is_a: UBERON:0010749 ! middle pharyngeal constrictor - -[Term] -id: SCTID:64626006 ! -property_value: IAO:0000589 "germinal center (SCTID)" xsd:string -is_a: UBERON:0010754 ! germinal center - -[Term] -id: SCTID:244663007 ! -property_value: IAO:0000589 "rib 8 (SCTID)" xsd:string -is_a: UBERON:0010757 ! rib 8 - -[Term] -id: SCTID:370654009 ! -property_value: IAO:0000589 "equine distal sesamoid (SCTID)" xsd:string -is_a: UBERON:0010759 ! equine distal sesamoid - -[Term] -id: SCTID:282816008 ! -property_value: IAO:0000589 "capitulum of humerus (SCTID)" xsd:string -is_a: UBERON:0010853 ! capitulum of humerus - -[Term] -id: SCTID:181482005 ! -property_value: IAO:0000589 "skin of front of neck (SCTID)" xsd:string -is_a: UBERON:0010854 ! skin of front of neck - -[Term] -id: SCTID:54040005 ! -property_value: IAO:0000589 "tusk (SCTID)" xsd:string -is_a: UBERON:0010879 ! tusk - -[Term] -id: SCTID:362541003 ! -property_value: IAO:0000589 "tragus (SCTID)" xsd:string -is_a: UBERON:0010887 ! tragus - -[Term] -id: SCTID:129140006 ! -property_value: IAO:0000589 "subdivision of skeleton (SCTID)" xsd:string -is_a: UBERON:0010912 ! subdivision of skeleton - -[Term] -id: SCTID:279551000 ! -property_value: IAO:0000589 "thyrohyoid ligament (SCTID)" xsd:string -is_a: UBERON:0010921 ! thyrohyoid ligament - -[Term] -id: SCTID:279554008 ! -property_value: IAO:0000589 "median thyrohyoid ligament (SCTID)" xsd:string -is_a: UBERON:0010925 ! median thyrohyoid ligament - -[Term] -id: SCTID:279555009 ! -property_value: IAO:0000589 "lateral thyrohyoid ligament (SCTID)" xsd:string -is_a: UBERON:0010926 ! lateral thyrohyoid ligament - -[Term] -id: SCTID:244819001 ! -property_value: IAO:0000589 "thyroepiglotticus muscle (SCTID)" xsd:string -is_a: UBERON:0010927 ! thyroepiglotticus muscle - -[Term] -id: SCTID:244804002 ! -property_value: IAO:0000589 "cricopharyngeus muscle (SCTID)" xsd:string -is_a: UBERON:0010928 ! cricopharyngeus muscle - -[Term] -id: SCTID:244811003 ! -property_value: IAO:0000589 "crico-arytenoid muscle (SCTID)" xsd:string -is_a: UBERON:0010932 ! crico-arytenoid muscle - -[Term] -id: SCTID:244749008 ! -property_value: IAO:0000589 "orbicularis oris muscle (SCTID)" xsd:string -is_a: UBERON:0010933 ! orbicularis oris muscle - -[Term] -id: SCTID:244805001 ! -property_value: IAO:0000589 "thyropharyngeus muscle (SCTID)" xsd:string -is_a: UBERON:0010936 ! thyropharyngeus muscle - -[Term] -id: SCTID:244807009 ! -property_value: IAO:0000589 "salpingopharyngeus muscle (SCTID)" xsd:string -is_a: UBERON:0010937 ! salpingopharyngeus muscle - -[Term] -id: SCTID:29823001 ! -property_value: IAO:0000589 "muscle belly (SCTID)" xsd:string -is_a: UBERON:0010938 ! muscle belly - -[Term] -id: SCTID:360772008 ! -property_value: IAO:0000589 "muscle of digastric group (SCTID)" xsd:string -is_a: UBERON:0010940 ! muscle of digastric group - -[Term] -id: SCTID:141804004 ! -property_value: IAO:0000589 "anterior digastric muscle (SCTID)" xsd:string -is_a: UBERON:0010943 ! anterior digastric muscle - -[Term] -id: SCTID:141905002 ! -property_value: IAO:0000589 "posterior digastric muscle (SCTID)" xsd:string -is_a: UBERON:0010944 ! posterior digastric muscle - -[Term] -id: SCTID:361811007 ! -property_value: IAO:0000589 "occipitofrontalis muscle (SCTID)" xsd:string -is_a: UBERON:0010946 ! occipitofrontalis muscle - -[Term] -id: SCTID:21405000 ! -property_value: IAO:0000589 "occipitalis (SCTID)" xsd:string -is_a: UBERON:0010947 ! occipitalis - -[Term] -id: SCTID:368680005 ! -property_value: IAO:0000589 "frontalis muscle belly (SCTID)" xsd:string -is_a: UBERON:0010952 ! frontalis muscle belly - -[Term] -id: SCTID:244732001 ! -property_value: IAO:0000589 "nasalis muscle (SCTID)" xsd:string -is_a: UBERON:0010953 ! nasalis muscle - -[Term] -id: SCTID:244866002 ! -property_value: IAO:0000589 "transversospinales muscle (SCTID)" xsd:string -is_a: UBERON:0010990 ! transversospinales muscle - -[Term] -id: SCTID:181951002 ! -property_value: IAO:0000589 "coronoid process of ulna (SCTID)" xsd:string -is_a: UBERON:0010994 ! coronoid process of ulna - -[Term] -id: SCTID:142309002 ! -property_value: IAO:0000589 "deep part of masseter muscle (SCTID)" xsd:string -is_a: UBERON:0010995 ! deep part of masseter muscle - -[Term] -id: SCTID:305026006 ! -property_value: IAO:0000589 "articular cartilage of joint (SCTID)" xsd:string -is_a: UBERON:0010996 ! articular cartilage of joint - -[Term] -id: SCTID:244989009 ! -property_value: IAO:0000589 "brachioradialis (SCTID)" xsd:string -is_a: UBERON:0011011 ! brachioradialis - -[Term] -id: SCTID:181646006 ! -property_value: IAO:0000589 "flexor pollicis brevis muscle (SCTID)" xsd:string -is_a: UBERON:0011012 ! flexor pollicis brevis muscle - -[Term] -id: SCTID:244862000 ! -property_value: IAO:0000589 "spinalis muscle (SCTID)" xsd:string -is_a: UBERON:0011013 ! spinalis muscle - -[Term] -id: SCTID:244865003 ! -property_value: IAO:0000589 "spinalis capitis muscle (SCTID)" xsd:string -is_a: UBERON:0011014 ! spinalis capitis muscle - -[Term] -id: SCTID:182341009 ! -property_value: IAO:0000589 "iliac fossa (SCTID)" xsd:string -is_a: UBERON:0011015 ! iliac fossa - -[Term] -id: SCTID:244950003 ! -property_value: IAO:0000589 "pyramidalis (SCTID)" xsd:string -is_a: UBERON:0011016 ! pyramidalis - -[Term] -id: SCTID:244867006 ! -property_value: IAO:0000589 "semispinalis muscle (SCTID)" xsd:string -is_a: UBERON:0011017 ! semispinalis muscle - -[Term] -id: SCTID:181730007 ! -property_value: IAO:0000589 "flexor hallucis brevis muscle (SCTID)" xsd:string -is_a: UBERON:0011022 ! flexor hallucis brevis muscle - -[Term] -id: SCTID:244818009 ! -property_value: IAO:0000589 "aryepiglotticus muscle (SCTID)" xsd:string -is_a: UBERON:0011025 ! aryepiglotticus muscle - -[Term] -id: SCTID:245024007 ! -property_value: IAO:0000589 "obturator muscle (SCTID)" xsd:string -is_a: UBERON:0011043 ! obturator muscle - -[Term] -id: SCTID:245025008 ! -property_value: IAO:0000589 "obturator internus (SCTID)" xsd:string -is_a: UBERON:0011048 ! obturator internus - -[Term] -id: SCTID:249806003 ! -property_value: IAO:0000589 "uterovesical pouch (SCTID)" xsd:string -is_a: UBERON:0011049 ! uterovesical pouch - -[Term] -id: SCTID:181836007 ! -property_value: IAO:0000589 "thoracic vertebra 8 (SCTID)" xsd:string -is_a: UBERON:0011050 ! thoracic vertebra 8 - -[Term] -id: SCTID:368950002 ! -property_value: IAO:0000589 "perilymphatic channel (SCTID)" xsd:string -is_a: UBERON:0011060 ! perilymphatic channel - -[Term] -id: SCTID:279856000 ! -property_value: IAO:0000589 "endolymphatic space (SCTID)" xsd:string -is_a: UBERON:0011078 ! endolymphatic space - -[Term] -id: SCTID:182440009 ! -property_value: IAO:0000589 "ligament of knee joint (SCTID)" xsd:string -is_a: UBERON:0011088 ! ligament of knee joint - -[Term] -id: SCTID:280218007 ! -property_value: IAO:0000589 "lacrimal nerve (SCTID)" xsd:string -is_a: UBERON:0011096 ! lacrimal nerve - -[Term] -id: SCTID:182362005 ! -property_value: IAO:0000589 "cruciate ligament of atlas (SCTID)" xsd:string -is_a: UBERON:0011106 ! cruciate ligament of atlas - -[Term] -id: SCTID:303080001 ! -property_value: IAO:0000589 "synovial joint of pectoral girdle (SCTID)" xsd:string -is_a: UBERON:0011108 ! synovial joint of pectoral girdle - -[Term] -id: SCTID:303064006 ! -property_value: IAO:0000589 "humeroulnar joint (SCTID)" xsd:string -is_a: UBERON:0011110 ! humeroulnar joint - -[Term] -id: SCTID:182171008 ! -property_value: IAO:0000589 "humeroradial joint (SCTID)" xsd:string -is_a: UBERON:0011111 ! humeroradial joint - -[Term] -id: SCTID:244554002 ! -property_value: IAO:0000589 "tibiofibular joint (SCTID)" xsd:string -is_a: UBERON:0011112 ! tibiofibular joint - -[Term] -id: SCTID:182209000 ! -property_value: IAO:0000589 "inferior tibiofibular joint (SCTID)" xsd:string -is_a: UBERON:0011113 ! inferior tibiofibular joint - -[Term] -id: SCTID:182208008 ! -property_value: IAO:0000589 "superior tibiofibular joint (SCTID)" xsd:string -is_a: UBERON:0011117 ! superior tibiofibular joint - -[Term] -id: SCTID:182222008 ! -property_value: IAO:0000589 "tarsometatarsal joint (SCTID)" xsd:string -is_a: UBERON:0011118 ! tarsometatarsal joint - -[Term] -id: SCTID:361842002 ! -property_value: IAO:0000589 "carpometacarpal joint (SCTID)" xsd:string -is_a: UBERON:0011119 ! carpometacarpal joint - -[Term] -id: SCTID:361944002 ! -property_value: IAO:0000589 "cricothyroid joint (SCTID)" xsd:string -is_a: UBERON:0011121 ! cricothyroid joint - -[Term] -id: SCTID:361945001 ! -property_value: IAO:0000589 "cricoarytenoid joint (SCTID)" xsd:string -is_a: UBERON:0011122 ! cricoarytenoid joint - -[Term] -id: SCTID:116010006 ! -property_value: IAO:0000589 "stifle joint (SCTID)" xsd:string -is_a: UBERON:0011123 ! stifle joint - -[Term] -id: SCTID:118923007 ! -property_value: IAO:0000589 "xiphisternal joint (SCTID)" xsd:string -is_a: UBERON:0011124 ! xiphisternal joint - -[Term] -id: SCTID:118924001 ! -property_value: IAO:0000589 "xiphisternal joint (SCTID)" xsd:string -is_a: UBERON:0011124 ! xiphisternal joint - -[Term] -id: SCTID:303065007 ! -property_value: IAO:0000589 "intermetacarpal joint (SCTID)" xsd:string -is_a: UBERON:0011131 ! intermetacarpal joint - -[Term] -id: SCTID:182176003 ! -property_value: IAO:0000589 "intercarpal joint (SCTID)" xsd:string -is_a: UBERON:0011132 ! intercarpal joint - -[Term] -id: SCTID:361868009 ! -property_value: IAO:0000589 "intermetatarsal joint (SCTID)" xsd:string -is_a: UBERON:0011133 ! intermetatarsal joint - -[Term] -id: SCTID:244590009 ! -property_value: IAO:0000589 "ligament of vertebral column (SCTID)" xsd:string -is_a: UBERON:0011136 ! ligament of vertebral column - -[Term] -id: SCTID:142208007 ! -property_value: IAO:0000589 "superficial part of masseter muscle (SCTID)" xsd:string -is_a: UBERON:0011140 ! superficial part of masseter muscle - -[Term] -id: SCTID:181413006 ! -property_value: IAO:0000589 "upper urinary tract (SCTID)" xsd:string -is_a: UBERON:0011143 ! upper urinary tract - -[Term] -id: SCTID:181670005 ! -property_value: IAO:0000589 "adductor muscle of hip (SCTID)" xsd:string -is_a: UBERON:0011144 ! adductor muscle of hip - -[Term] -id: SCTID:368101007 ! -property_value: IAO:0000589 "adductor muscle of hip (SCTID)" xsd:string -is_a: UBERON:0011144 ! adductor muscle of hip - -[Term] -id: SCTID:264456009 ! -property_value: IAO:0000589 "cuneiform cartilage (SCTID)" xsd:string -is_a: UBERON:0011157 ! cuneiform cartilage - -[Term] -id: SCTID:368992007 ! -property_value: IAO:0000589 "nasal suture (SCTID)" xsd:string -is_a: UBERON:0011160 ! nasal suture - -[Term] -id: SCTID:140895003 ! -property_value: IAO:0000589 "spheno-occipital synchondrosis (SCTID)" xsd:string -is_a: UBERON:0011161 ! spheno-occipital synchondrosis - -[Term] -id: SCTID:120229002 ! -property_value: IAO:0000589 "neurocranium bone (SCTID)" xsd:string -is_a: UBERON:0011164 ! neurocranium bone - -[Term] -id: SCTID:322841005 ! -property_value: IAO:0000589 "crico-esophageal tendon (SCTID)" xsd:string -is_a: UBERON:0011165 ! crico-esophageal tendon - -[Term] -id: SCTID:182202009 ! -property_value: IAO:0000589 "patellofemoral joint (SCTID)" xsd:string -is_a: UBERON:0011166 ! patellofemoral joint - -[Term] -id: SCTID:279712008 ! -property_value: IAO:0000589 "corpus spongiosum of penis (SCTID)" xsd:string -is_a: UBERON:0011183 ! corpus spongiosum of penis - -[Term] -id: SCTID:23492003 ! -property_value: IAO:0000589 "Krause's gland (SCTID)" xsd:string -is_a: UBERON:0011186 ! Krause's gland - -[Term] -id: SCTID:278359007 ! -property_value: IAO:0000589 "Krause's gland (SCTID)" xsd:string -is_a: UBERON:0011186 ! Krause's gland - -[Term] -id: SCTID:181934009 ! -property_value: IAO:0000589 "ventral tubercle of humerus (SCTID)" xsd:string -is_a: UBERON:0011187 ! ventral tubercle of humerus - -[Term] -id: SCTID:181935005 ! -property_value: IAO:0000589 "lesser tubercle of humerus (SCTID)" xsd:string -is_a: UBERON:0011188 ! lesser tubercle of humerus - -[Term] -id: SCTID:300538005 ! -property_value: IAO:0000589 "lunule of nail (SCTID)" xsd:string -is_a: UBERON:0011190 ! lunule of nail - -[Term] -id: SCTID:149481004 ! -property_value: IAO:0000589 "superior ophthalmic vein (SCTID)" xsd:string -is_a: UBERON:0011192 ! superior ophthalmic vein - -[Term] -id: SCTID:149986001 ! -property_value: IAO:0000589 "inferior ophthalmic vein (SCTID)" xsd:string -is_a: UBERON:0011193 ! inferior ophthalmic vein - -[Term] -id: SCTID:197909004 ! -property_value: IAO:0000589 "prostatic utricle (SCTID)" xsd:string -is_a: UBERON:0011199 ! prostatic utricle - -[Term] -id: SCTID:362145004 ! -property_value: IAO:0000589 "muscle layer of small intestine (SCTID)" xsd:string -is_a: UBERON:0011201 ! muscle layer of small intestine - -[Term] -id: SCTID:261416006 ! -property_value: IAO:0000589 "rectovesical pouch (SCTID)" xsd:string -is_a: UBERON:0011204 ! rectovesical pouch - -[Term] -id: SCTID:335391000 ! -property_value: IAO:0000589 "hinge joint (SCTID)" xsd:string -is_a: UBERON:0011206 ! hinge joint - -[Term] -id: SCTID:244855009 ! -property_value: IAO:0000589 "iliocostalis lumborum (SCTID)" xsd:string -is_a: UBERON:0011207 ! iliocostalis lumborum - -[Term] -id: SCTID:91690000 ! -property_value: IAO:0000589 "organ system subdivision (SCTID)" xsd:string -is_a: UBERON:0011216 ! organ system subdivision - -[Term] -id: SCTID:244934006 ! -property_value: IAO:0000589 "serratus dorsalis muscle (SCTID)" xsd:string -is_a: UBERON:0011217 ! serratus dorsalis muscle - -[Term] -id: SCTID:244864004 ! -property_value: IAO:0000589 "spinalis cervicis muscle (SCTID)" xsd:string -is_a: UBERON:0011218 ! spinalis cervicis muscle - -[Term] -id: SCTID:304336002 ! -property_value: IAO:0000589 "mastoid process of temporal bone (SCTID)" xsd:string -is_a: UBERON:0011220 ! mastoid process of temporal bone - -[Term] -id: SCTID:280612002 ! -property_value: IAO:0000589 "ora serrata of retina (SCTID)" xsd:string -is_a: UBERON:0011221 ! ora serrata of retina - -[Term] -id: SCTID:369005006 ! -property_value: IAO:0000589 "perpendicular plate of ethmoid (SCTID)" xsd:string -is_a: UBERON:0011244 ! perpendicular plate of ethmoid - -[Term] -id: SCTID:91610001 ! -property_value: IAO:0000589 "gland of anal sac (SCTID)" xsd:string -is_a: UBERON:0011253 ! gland of anal sac - -[Term] -id: SCTID:361843007 ! -property_value: IAO:0000589 "carpometacarpal joint of digit 1 (SCTID)" xsd:string -is_a: UBERON:0011265 ! carpometacarpal joint of digit 1 - -[Term] -id: SCTID:181584008 ! -property_value: IAO:0000589 "nail of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0011273 ! nail of manual digit 1 - -[Term] -id: SCTID:181580004 ! -property_value: IAO:0000589 "nail of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0011274 ! nail of manual digit 2 - -[Term] -id: SCTID:181581000 ! -property_value: IAO:0000589 "nail of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0011275 ! nail of manual digit 3 - -[Term] -id: SCTID:181582007 ! -property_value: IAO:0000589 "nail of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0011276 ! nail of manual digit 4 - -[Term] -id: SCTID:181583002 ! -property_value: IAO:0000589 "nail of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0011277 ! nail of manual digit 5 - -[Term] -id: SCTID:181592004 ! -property_value: IAO:0000589 "nail of pedal digit 1 (SCTID)" xsd:string -is_a: UBERON:0011278 ! nail of pedal digit 1 - -[Term] -id: SCTID:181593009 ! -property_value: IAO:0000589 "nail of pedal digit 2 (SCTID)" xsd:string -is_a: UBERON:0011279 ! nail of pedal digit 2 - -[Term] -id: SCTID:181594003 ! -property_value: IAO:0000589 "nail of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0011280 ! nail of pedal digit 3 - -[Term] -id: SCTID:181595002 ! -property_value: IAO:0000589 "nail of pedal digit 4 (SCTID)" xsd:string -is_a: UBERON:0011281 ! nail of pedal digit 4 - -[Term] -id: SCTID:181596001 ! -property_value: IAO:0000589 "nail of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0011282 ! nail of pedal digit 5 - -[Term] -id: SCTID:16675008 ! -property_value: IAO:0000589 "pharyngobasilar fascia (SCTID)" xsd:string -is_a: UBERON:0011289 ! pharyngobasilar fascia - -[Term] -id: SCTID:245489008 ! -property_value: IAO:0000589 "submucosa of uterine tube (SCTID)" xsd:string -is_a: UBERON:0011298 ! submucosa of uterine tube - -[Term] -id: SCTID:244684002 ! -property_value: IAO:0000589 "body of mandible (SCTID)" xsd:string -is_a: UBERON:0011309 ! body of mandible - -[Term] -id: SCTID:279552007 ! -property_value: IAO:0000589 "hyoepiglottic ligament (SCTID)" xsd:string -is_a: UBERON:0011311 ! hyoepiglottic ligament - -[Term] -id: SCTID:17743006 ! -property_value: IAO:0000589 "digastric branch of facial nerve (SCTID)" xsd:string -is_a: UBERON:0011315 ! digastric branch of facial nerve - -[Term] -id: SCTID:89590005 ! -property_value: IAO:0000589 "nerve to stylohyoid from facial nerve (SCTID)" xsd:string -is_a: UBERON:0011316 ! nerve to stylohyoid from facial nerve - -[Term] -id: SCTID:280294008 ! -property_value: IAO:0000589 "nerve to stylopharyngeus from glossopharyngeal nerve (SCTID)" xsd:string -is_a: UBERON:0011317 ! nerve to stylopharyngeus from glossopharyngeal nerve - -[Term] -id: SCTID:303404000 ! -property_value: IAO:0000589 "capsule of temporomandibular joint (SCTID)" xsd:string -is_a: UBERON:0011318 ! capsule of temporomandibular joint - -[Term] -id: SCTID:282433007 ! -property_value: IAO:0000589 "disk of temporomandibular joint (SCTID)" xsd:string -is_a: UBERON:0011319 ! disk of temporomandibular joint - -[Term] -id: SCTID:127861009 ! -property_value: IAO:0000589 "ligament of temporomandibular joint (SCTID)" xsd:string -is_a: UBERON:0011320 ! ligament of temporomandibular joint - -[Term] -id: SCTID:280254006 ! -property_value: IAO:0000589 "masseteric nerve (SCTID)" xsd:string -is_a: UBERON:0011321 ! masseteric nerve - -[Term] -id: SCTID:280269007 ! -property_value: IAO:0000589 "mylohyoid nerve (SCTID)" xsd:string -is_a: UBERON:0011322 ! mylohyoid nerve - -[Term] -id: SCTID:369429008 ! -property_value: IAO:0000589 "pharyngeal nerve plexus (SCTID)" xsd:string -is_a: UBERON:0011325 ! pharyngeal nerve plexus - -[Term] -id: SCTID:279928006 ! -property_value: IAO:0000589 "superior laryngeal nerve (SCTID)" xsd:string -is_a: UBERON:0011326 ! superior laryngeal nerve - -[Term] -id: SCTID:280255007 ! -property_value: IAO:0000589 "deep temporal nerve (SCTID)" xsd:string -is_a: UBERON:0011327 ! deep temporal nerve - -[Term] -id: SCTID:179763009 ! -property_value: IAO:0000589 "pharyngeal raphe (SCTID)" xsd:string -is_a: UBERON:0011345 ! pharyngeal raphe - -[Term] -id: SCTID:368683007 ! -property_value: IAO:0000589 "raphe of hard palate (SCTID)" xsd:string -is_a: UBERON:0011347 ! raphe of hard palate - -[Term] -id: SCTID:245785003 ! -property_value: IAO:0000589 "raphe of soft palate (SCTID)" xsd:string -is_a: UBERON:0011348 ! raphe of soft palate - -[Term] -id: SCTID:142713007 ! -property_value: IAO:0000589 "pterygomandibular raphe (SCTID)" xsd:string -is_a: UBERON:0011349 ! pterygomandibular raphe - -[Term] -id: SCTID:181895009 ! -property_value: IAO:0000589 "transverse process of atlas (SCTID)" xsd:string -is_a: UBERON:0011370 ! transverse process of atlas - -[Term] -id: SCTID:21636001 ! -property_value: IAO:0000589 "sternocephalicus muscle (SCTID)" xsd:string -is_a: UBERON:0011371 ! sternocephalicus muscle - -[Term] -id: SCTID:367670008 ! -property_value: IAO:0000589 "skin of prepuce of clitoris (SCTID)" xsd:string -is_a: UBERON:0011375 ! skin of prepuce of clitoris - -[Term] -id: SCTID:244961006 ! -property_value: IAO:0000589 "constrictor vulvae muscle (SCTID)" xsd:string -is_a: UBERON:0011387 ! constrictor vulvae muscle - -[Term] -id: SCTID:244973006 ! -property_value: IAO:0000589 "male bulbospongiosus muscle (SCTID)" xsd:string -is_a: UBERON:0011388 ! male bulbospongiosus muscle - -[Term] -id: SCTID:244972001 ! -property_value: IAO:0000589 "bulbospongiosus muscle (SCTID)" xsd:string -is_a: UBERON:0011389 ! bulbospongiosus muscle - -[Term] -id: SCTID:181057000 ! -property_value: IAO:0000589 "pudendal nerve (SCTID)" xsd:string -is_a: UBERON:0011390 ! pudendal nerve - -[Term] -id: SCTID:303236009 ! -property_value: IAO:0000589 "perineal nerve (SCTID)" xsd:string -is_a: UBERON:0011391 ! perineal nerve - -[Term] -id: SCTID:86405007 ! -property_value: IAO:0000589 "blood vessel internal elastic membrane (SCTID)" xsd:string -is_a: UBERON:0011392 ! blood vessel internal elastic membrane - -[Term] -id: SCTID:244964003 ! -property_value: IAO:0000589 "iliococcygeus muscle (SCTID)" xsd:string -is_a: UBERON:0011511 ! iliococcygeus muscle - -[Term] -id: SCTID:244962004 ! -property_value: IAO:0000589 "puborectalis muscle (SCTID)" xsd:string -is_a: UBERON:0011512 ! puborectalis muscle - -[Term] -id: SCTID:244958005 ! -property_value: IAO:0000589 "pubococcygeus muscle (SCTID)" xsd:string -is_a: UBERON:0011528 ! pubococcygeus muscle - -[Term] -id: SCTID:71507008 ! -property_value: IAO:0000589 "male pubococcygeus muscle (SCTID)" xsd:string -is_a: UBERON:0011531 ! male pubococcygeus muscle - -[Term] -id: SCTID:208282000 ! -property_value: IAO:0000589 "female pubococcygeus muscle (SCTID)" xsd:string -is_a: UBERON:0011532 ! female pubococcygeus muscle - -[Term] -id: SCTID:368422008 ! -property_value: IAO:0000589 "abductor pollicis muscle (SCTID)" xsd:string -is_a: UBERON:0011534 ! abductor pollicis muscle - -[Term] -id: SCTID:244787000 ! -property_value: IAO:0000589 "chondroglossus muscle (SCTID)" xsd:string -is_a: UBERON:0011535 ! chondroglossus muscle - -[Term] -id: SCTID:432899004 ! -property_value: IAO:0000589 "lumen of gastrointestinal system (SCTID)" xsd:string -is_a: UBERON:0011565 ! lumen of gastrointestinal system - -[Term] -id: SCTID:322648002 ! -property_value: IAO:0000589 "lumen of esophagus (SCTID)" xsd:string -is_a: UBERON:0011566 ! lumen of esophagus - -[Term] -id: SCTID:181952009 ! -property_value: IAO:0000589 "styloid process of ulna (SCTID)" xsd:string -is_a: UBERON:0011575 ! styloid process of ulna - -[Term] -id: SCTID:280550003 ! -property_value: IAO:0000589 "supraorbital ridge (SCTID)" xsd:string -is_a: UBERON:0011576 ! supraorbital ridge - -[Term] -id: SCTID:362181001 ! -property_value: IAO:0000589 "venom gland (SCTID)" xsd:string -is_a: UBERON:0011579 ! venom gland - -[Term] -id: SCTID:422279005 ! -property_value: IAO:0000589 "maxillary tooth (SCTID)" xsd:string -is_a: UBERON:0011593 ! maxillary tooth - -[Term] -id: SCTID:245547003 ! -property_value: IAO:0000589 "dentary tooth (SCTID)" xsd:string -is_a: UBERON:0011594 ! dentary tooth - -[Term] -id: SCTID:368928003 ! -property_value: IAO:0000589 "lenticular process of incus bone (SCTID)" xsd:string -is_a: UBERON:0011599 ! lenticular process of incus bone - -[Term] -id: SCTID:304703001 ! -property_value: IAO:0000589 "gingiva of upper jaw (SCTID)" xsd:string -is_a: UBERON:0011601 ! gingiva of upper jaw - -[Term] -id: SCTID:304704007 ! -property_value: IAO:0000589 "gingiva of lower jaw (SCTID)" xsd:string -is_a: UBERON:0011602 ! gingiva of lower jaw - -[Term] -id: SCTID:370641002 ! -property_value: IAO:0000589 "ceratohyal bone (SCTID)" xsd:string -is_a: UBERON:0011611 ! ceratohyal bone - -[Term] -id: SCTID:370715004 ! -property_value: IAO:0000589 "stylohyoid bone (SCTID)" xsd:string -is_a: UBERON:0011619 ! stylohyoid bone - -[Term] -id: SCTID:370708007 ! -property_value: IAO:0000589 "thyrohyoid bone (SCTID)" xsd:string -is_a: UBERON:0011622 ! thyrohyoid bone - -[Term] -id: SCTID:279518009 ! -property_value: IAO:0000589 "horn of thyroid cartilage (SCTID)" xsd:string -is_a: UBERON:0011623 ! horn of thyroid cartilage - -[Term] -id: SCTID:279520007 ! -property_value: IAO:0000589 "superior horn of thyroid cartilage (SCTID)" xsd:string -is_a: UBERON:0011624 ! superior horn of thyroid cartilage - -[Term] -id: SCTID:279521006 ! -property_value: IAO:0000589 "inferior horn of thyroid cartilage (SCTID)" xsd:string -is_a: UBERON:0011625 ! inferior horn of thyroid cartilage - -[Term] -id: SCTID:370702008 ! -property_value: IAO:0000589 "tympanohyoid cartilage (SCTID)" xsd:string -is_a: UBERON:0011626 ! tympanohyoid cartilage - -[Term] -id: SCTID:276958001 ! -property_value: IAO:0000589 "palatoglossal arch (SCTID)" xsd:string -is_a: UBERON:0011640 ! palatoglossal arch - -[Term] -id: SCTID:280300006 ! -property_value: IAO:0000589 "left recurrent laryngeal nerve (SCTID)" xsd:string -is_a: UBERON:0011766 ! left recurrent laryngeal nerve - -[Term] -id: SCTID:280299003 ! -property_value: IAO:0000589 "right recurrent laryngeal nerve (SCTID)" xsd:string -is_a: UBERON:0011767 ! right recurrent laryngeal nerve - -[Term] -id: SCTID:279811007 ! -property_value: IAO:0000589 "utriculosaccular duct (SCTID)" xsd:string -is_a: UBERON:0011774 ! utriculosaccular duct - -[Term] -id: SCTID:362467005 ! -property_value: IAO:0000589 "vagus nerve nucleus (SCTID)" xsd:string -is_a: UBERON:0011775 ! vagus nerve nucleus - -[Term] -id: SCTID:68922000 ! -property_value: IAO:0000589 "feather follicle (SCTID)" xsd:string -is_a: UBERON:0011782 ! feather follicle - -[Term] -id: SCTID:66810005 ! -property_value: IAO:0000589 "feather shaft (SCTID)" xsd:string -is_a: UBERON:0011784 ! feather shaft - -[Term] -id: SCTID:361713003 ! -property_value: IAO:0000589 "superficial fascia (SCTID)" xsd:string -is_a: UBERON:0011818 ! superficial fascia - -[Term] -id: SCTID:363130003 ! -property_value: IAO:0000589 "fibrous connective tissue (SCTID)" xsd:string -is_a: UBERON:0011824 ! fibrous connective tissue - -[Term] -id: SCTID:279034002 ! -property_value: IAO:0000589 "areolar gland (SCTID)" xsd:string -is_a: UBERON:0011827 ! areolar gland - -[Term] -id: SCTID:46926004 ! -property_value: IAO:0000589 "acinus of parotid gland (SCTID)" xsd:string -is_a: UBERON:0011847 ! acinus of parotid gland - -[Term] -id: SCTID:264484004 ! -property_value: IAO:0000589 "internal acoustic meatus (SCTID)" xsd:string -is_a: UBERON:0011859 ! internal acoustic meatus - -[Term] -id: SCTID:335493003 ! -property_value: IAO:0000589 "condylar joint (SCTID)" xsd:string -is_a: UBERON:0011866 ! condylar joint - -[Term] -id: SCTID:276166006 ! -property_value: IAO:0000589 "extensor carpi radialis muscle (SCTID)" xsd:string -is_a: UBERON:0011867 ! extensor carpi radialis muscle - -[Term] -id: SCTID:361841009 ! -property_value: IAO:0000589 "midcarpal joint (SCTID)" xsd:string -is_a: UBERON:0011868 ! midcarpal joint - -[Term] -id: SCTID:182386007 ! -property_value: IAO:0000589 "ligament of sternoclavicular joint (SCTID)" xsd:string -is_a: UBERON:0011875 ! ligament of sternoclavicular joint - -[Term] -id: SCTID:362090005 ! -property_value: IAO:0000589 "body of tongue (SCTID)" xsd:string -is_a: UBERON:0011876 ! body of tongue - -[Term] -id: SCTID:368572007 ! -property_value: IAO:0000589 "margin of tongue (SCTID)" xsd:string -is_a: UBERON:0011877 ! margin of tongue - -[Term] -id: SCTID:368594004 ! -property_value: IAO:0000589 "margin of tongue (SCTID)" xsd:string -is_a: UBERON:0011877 ! margin of tongue - -[Term] -id: SCTID:280656002 ! -property_value: IAO:0000589 "anterior uvea (SCTID)" xsd:string -is_a: UBERON:0011892 ! anterior uvea - -[Term] -id: SCTID:91739007 ! -property_value: IAO:0000589 "endomysium (SCTID)" xsd:string -is_a: UBERON:0011895 ! endomysium - -[Term] -id: SCTID:63406008 ! -property_value: IAO:0000589 "perimysium (SCTID)" xsd:string -is_a: UBERON:0011900 ! perimysium - -[Term] -id: SCTID:213689008 ! -property_value: IAO:0000589 "gastrocnemius medialis (SCTID)" xsd:string -is_a: UBERON:0011907 ! gastrocnemius medialis - -[Term] -id: SCTID:213588009 ! -property_value: IAO:0000589 "gastrocnemius lateralis (SCTID)" xsd:string -is_a: UBERON:0011908 ! gastrocnemius lateralis - -[Term] -id: SCTID:323617002 ! -property_value: IAO:0000589 "postganglionic sympathetic fiber (SCTID)" xsd:string -is_a: UBERON:0011926 ! postganglionic sympathetic fiber - -[Term] -id: SCTID:323517007 ! -property_value: IAO:0000589 "preganglionic sympathetic fiber (SCTID)" xsd:string -is_a: UBERON:0011927 ! preganglionic sympathetic fiber - -[Term] -id: SCTID:368885003 ! -property_value: IAO:0000589 "nasal hair (SCTID)" xsd:string -is_a: UBERON:0011931 ! nasal hair - -[Term] -id: SCTID:27633001 ! -property_value: IAO:0000589 "stomach glandular region (SCTID)" xsd:string -is_a: UBERON:0011953 ! stomach glandular region - -[Term] -id: SCTID:55188000 ! -property_value: IAO:0000589 "left hepatic vein (SCTID)" xsd:string -is_a: UBERON:0011955 ! left hepatic vein - -[Term] -id: SCTID:18135006 ! -property_value: IAO:0000589 "right hepatic vein (SCTID)" xsd:string -is_a: UBERON:0011956 ! right hepatic vein - -[Term] -id: SCTID:54895000 ! -property_value: IAO:0000589 "middle hepatic vein (SCTID)" xsd:string -is_a: UBERON:0011957 ! middle hepatic vein - -[Term] -id: SCTID:182439007 ! -property_value: IAO:0000589 "acetabular labrum (SCTID)" xsd:string -is_a: UBERON:0011958 ! acetabular labrum - -[Term] -id: SCTID:263366005 ! -property_value: IAO:0000589 "acetabular labrum (SCTID)" xsd:string -is_a: UBERON:0011958 ! acetabular labrum - -[Term] -id: SCTID:182391008 ! -property_value: IAO:0000589 "glenoid labrum of scapula (SCTID)" xsd:string -is_a: UBERON:0011959 ! glenoid labrum of scapula - -[Term] -id: SCTID:361836001 ! -property_value: IAO:0000589 "articular capsule of glenohumeral joint (SCTID)" xsd:string -is_a: UBERON:0011960 ! articular capsule of glenohumeral joint - -[Term] -id: SCTID:263382006 ! -property_value: IAO:0000589 "articular capsule of hip joint (SCTID)" xsd:string -is_a: UBERON:0011961 ! articular capsule of hip joint - -[Term] -id: SCTID:182220000 ! -property_value: IAO:0000589 "transverse tarsal joint (SCTID)" xsd:string -is_a: UBERON:0011962 ! transverse tarsal joint - -[Term] -id: SCTID:182211009 ! -property_value: IAO:0000589 "talocalcaneonavicular joint (SCTID)" xsd:string -is_a: UBERON:0011963 ! talocalcaneonavicular joint - -[Term] -id: SCTID:361866008 ! -property_value: IAO:0000589 "calcaneocuboid joint (SCTID)" xsd:string -is_a: UBERON:0011964 ! calcaneocuboid joint - -[Term] -id: SCTID:23059003 ! -property_value: IAO:0000589 "saddle joint (SCTID)" xsd:string -is_a: UBERON:0011965 ! saddle joint - -[Term] -id: SCTID:263312002 ! -property_value: IAO:0000589 "manubriosternal joint (SCTID)" xsd:string -is_a: UBERON:0011966 ! manubriosternal joint - -[Term] -id: SCTID:263328007 ! -property_value: IAO:0000589 "costotransverse joint (SCTID)" xsd:string -is_a: UBERON:0011967 ! costotransverse joint - -[Term] -id: SCTID:361839008 ! -property_value: IAO:0000589 "radio-carpal joint (SCTID)" xsd:string -is_a: UBERON:0011968 ! radio-carpal joint - -[Term] -id: SCTID:244649001 ! -property_value: IAO:0000589 "talofibular ligament (SCTID)" xsd:string -is_a: UBERON:0011970 ! talofibular ligament - -[Term] -id: SCTID:244650001 ! -property_value: IAO:0000589 "calcaneofibular ligament (SCTID)" xsd:string -is_a: UBERON:0011971 ! calcaneofibular ligament - -[Term] -id: SCTID:41159004 ! -property_value: IAO:0000589 "medial ligament of ankle joint (SCTID)" xsd:string -is_a: UBERON:0011972 ! medial ligament of ankle joint - -[Term] -id: SCTID:314621001 ! -property_value: IAO:0000589 "epiphysis of phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0011973 ! epiphysis of phalanx of pes - -[Term] -id: SCTID:280047006 ! -property_value: IAO:0000589 "epiphysis of proximal phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0011974 ! epiphysis of proximal phalanx of pes - -[Term] -id: SCTID:280048001 ! -property_value: IAO:0000589 "epiphysis of middle phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0011975 ! epiphysis of middle phalanx of pes - -[Term] -id: SCTID:280049009 ! -property_value: IAO:0000589 "epiphysis of distal phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0011976 ! epiphysis of distal phalanx of pes - -[Term] -id: SCTID:280044004 ! -property_value: IAO:0000589 "epiphysis of proximal phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0011977 ! epiphysis of proximal phalanx of manus - -[Term] -id: SCTID:280045003 ! -property_value: IAO:0000589 "epiphysis of middle phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0011978 ! epiphysis of middle phalanx of manus - -[Term] -id: SCTID:280046002 ! -property_value: IAO:0000589 "epiphysis of distal phalanx of manus (SCTID)" xsd:string -is_a: UBERON:0011979 ! epiphysis of distal phalanx of manus - -[Term] -id: SCTID:80548008 ! -property_value: IAO:0000589 "left lung lower lobe bronchiole (SCTID)" xsd:string -is_a: UBERON:0012055 ! left lung lower lobe bronchiole - -[Term] -id: SCTID:72426004 ! -property_value: IAO:0000589 "left lung upper lobe bronchiole (SCTID)" xsd:string -is_a: UBERON:0012056 ! left lung upper lobe bronchiole - -[Term] -id: SCTID:15215000 ! -property_value: IAO:0000589 "right lung lower lobe bronchiole (SCTID)" xsd:string -is_a: UBERON:0012059 ! right lung lower lobe bronchiole - -[Term] -id: SCTID:361961004 ! -property_value: IAO:0000589 "lobar bronchus of left lung lower lobe (SCTID)" xsd:string -is_a: UBERON:0012066 ! lobar bronchus of left lung lower lobe - -[Term] -id: SCTID:69714005 ! -property_value: IAO:0000589 "right lung middle lobe bronchiole (SCTID)" xsd:string -is_a: UBERON:0012068 ! right lung middle lobe bronchiole - -[Term] -id: SCTID:361864006 ! -property_value: IAO:0000589 "tibiotalar joint (SCTID)" xsd:string -is_a: UBERON:0012076 ! tibiotalar joint - -[Term] -id: SCTID:199401001 ! -property_value: IAO:0000589 "bronchial lumen (SCTID)" xsd:string -is_a: UBERON:0012082 ! bronchial lumen - -[Term] -id: SCTID:279011006 ! -property_value: IAO:0000589 "suspensory ligament of breast (SCTID)" xsd:string -is_a: UBERON:0012103 ! suspensory ligament of breast - -[Term] -id: SCTID:427577001 ! -property_value: IAO:0000589 "zygomatic process of frontal bone (SCTID)" xsd:string -is_a: UBERON:0012109 ! zygomatic process of frontal bone - -[Term] -id: SCTID:116353002 ! -property_value: IAO:0000589 "frontal process of zygomatic bone (SCTID)" xsd:string -is_a: UBERON:0012110 ! frontal process of zygomatic bone - -[Term] -id: SCTID:410003009 ! -property_value: IAO:0000589 "diastema (SCTID)" xsd:string -is_a: UBERON:0012111 ! diastema - -[Term] -id: SCTID:110606000 ! -property_value: IAO:0000589 "cud (SCTID)" xsd:string -is_a: UBERON:0012114 ! cud - -[Term] -id: SCTID:29288001 ! -property_value: IAO:0000589 "lumen of nutrient foramen (SCTID)" xsd:string -is_a: UBERON:0012117 ! lumen of nutrient foramen - -[Term] -id: SCTID:360764006 ! -property_value: IAO:0000589 "vinculum of tendon (SCTID)" xsd:string -is_a: UBERON:0012120 ! vinculum of tendon - -[Term] -id: SCTID:361926005 ! -property_value: IAO:0000589 "nose tip (SCTID)" xsd:string -is_a: UBERON:0012128 ! nose tip - -[Term] -id: SCTID:25930004 ! -property_value: IAO:0000589 "buccal fat pad (SCTID)" xsd:string -is_a: UBERON:0012167 ! buccal fat pad - -[Term] -id: SCTID:303425000 ! -property_value: IAO:0000589 "middle suprarenal artery (SCTID)" xsd:string -is_a: UBERON:0012173 ! middle suprarenal artery - -[Term] -id: SCTID:361514006 ! -property_value: IAO:0000589 "acoustico-facial VII-VIII ganglion complex (SCTID)" xsd:string -is_a: UBERON:0012175 ! acoustico-facial VII-VIII ganglion complex - -[Term] -id: SCTID:3643003 ! -property_value: IAO:0000589 "comb (SCTID)" xsd:string -is_a: UBERON:0012176 ! comb - -[Term] -id: SCTID:143723007 ! -property_value: IAO:0000589 "tonsil crypt (SCTID)" xsd:string -is_a: UBERON:0012181 ! tonsil crypt - -[Term] -id: SCTID:369332005 ! -property_value: IAO:0000589 "frontal artery (SCTID)" xsd:string -is_a: UBERON:0012187 ! frontal artery - -[Term] -id: SCTID:27297006 ! -property_value: IAO:0000589 "left superior intercostal vein (SCTID)" xsd:string -is_a: UBERON:0012195 ! left superior intercostal vein - -[Term] -id: SCTID:80721005 ! -property_value: IAO:0000589 "right superior intercostal vein (SCTID)" xsd:string -is_a: UBERON:0012196 ! right superior intercostal vein - -[Term] -id: SCTID:281057004 ! -property_value: IAO:0000589 "intercostal vein (SCTID)" xsd:string -is_a: UBERON:0012197 ! intercostal vein - -[Term] -id: SCTID:243937005 ! -property_value: IAO:0000589 "intercostal space (SCTID)" xsd:string -is_a: UBERON:0012198 ! intercostal space - -[Term] -id: SCTID:89209000 ! -property_value: IAO:0000589 "posterior intercostal vein (SCTID)" xsd:string -is_a: UBERON:0012199 ! posterior intercostal vein - -[Term] -id: SCTID:15546000 ! -property_value: IAO:0000589 "anterior intercostal vein (SCTID)" xsd:string -is_a: UBERON:0012200 ! anterior intercostal vein - -[Term] -id: SCTID:204088001 ! -property_value: IAO:0000589 "intercostal lymph node (SCTID)" xsd:string -is_a: UBERON:0012236 ! intercostal lymph node - -[Term] -id: SCTID:198356008 ! -property_value: IAO:0000589 "superior phrenic vein (SCTID)" xsd:string -is_a: UBERON:0012237 ! superior phrenic vein - -[Term] -id: SCTID:181424008 ! -property_value: IAO:0000589 "urethral meatus (SCTID)" xsd:string -is_a: UBERON:0012240 ! urethral meatus - -[Term] -id: SCTID:279478000 ! -property_value: IAO:0000589 "male urethral meatus (SCTID)" xsd:string -is_a: UBERON:0012241 ! male urethral meatus - -[Term] -id: SCTID:362228001 ! -property_value: IAO:0000589 "internal urethral orifice (SCTID)" xsd:string -is_a: UBERON:0012242 ! internal urethral orifice - -[Term] -id: SCTID:280836000 ! -property_value: IAO:0000589 "cervical gland (SCTID)" xsd:string -is_a: UBERON:0012247 ! cervical gland - -[Term] -id: SCTID:264459002 ! -property_value: IAO:0000589 "ectocervix (SCTID)" xsd:string -is_a: UBERON:0012249 ! ectocervix - -[Term] -id: SCTID:361376000 ! -property_value: IAO:0000589 "ectocervical epithelium (SCTID)" xsd:string -is_a: UBERON:0012251 ! ectocervical epithelium - -[Term] -id: SCTID:362256006 ! -property_value: IAO:0000589 "endocervical epithelium (SCTID)" xsd:string -is_a: UBERON:0012252 ! endocervical epithelium - -[Term] -id: SCTID:280451001 ! -property_value: IAO:0000589 "cervical squamo-columnar junction (SCTID)" xsd:string -is_a: UBERON:0012253 ! cervical squamo-columnar junction - -[Term] -id: SCTID:281470000 ! -property_value: IAO:0000589 "abdominal aorta artery (SCTID)" xsd:string -is_a: UBERON:0012254 ! abdominal aorta artery - -[Term] -id: SCTID:244283000 ! -property_value: IAO:0000589 "inferior phrenic artery (SCTID)" xsd:string -is_a: UBERON:0012255 ! inferior phrenic artery - -[Term] -id: SCTID:67204008 ! -property_value: IAO:0000589 "forestomach-glandular stomach junction (SCTID)" xsd:string -is_a: UBERON:0012270 ! forestomach-glandular stomach junction - -[Term] -id: SCTID:181272007 ! -property_value: IAO:0000589 "major duodenal papilla (SCTID)" xsd:string -is_a: UBERON:0012271 ! major duodenal papilla - -[Term] -id: SCTID:245390003 ! -property_value: IAO:0000589 "minor duodenal papilla (SCTID)" xsd:string -is_a: UBERON:0012272 ! minor duodenal papilla - -[Term] -id: SCTID:368881007 ! -property_value: IAO:0000589 "gland of nasal mucosa (SCTID)" xsd:string -is_a: UBERON:0012278 ! gland of nasal mucosa - -[Term] -id: SCTID:361795009 ! -property_value: IAO:0000589 "lateral malleolus of fibula (SCTID)" xsd:string -is_a: UBERON:0012291 ! lateral malleolus of fibula - -[Term] -id: SCTID:362233002 ! -property_value: IAO:0000589 "navicular fossa of spongiose part of urethra (SCTID)" xsd:string -is_a: UBERON:0012294 ! navicular fossa of spongiose part of urethra - -[Term] -id: SCTID:367737008 ! -property_value: IAO:0000589 "Guérin's valve (SCTID)" xsd:string -is_a: UBERON:0012295 ! Guérin's valve - -[Term] -id: SCTID:362231000 ! -property_value: IAO:0000589 "urethral crest (SCTID)" xsd:string -is_a: UBERON:0012296 ! urethral crest - -[Term] -id: SCTID:279470007 ! -property_value: IAO:0000589 "male urethral crest (SCTID)" xsd:string -is_a: UBERON:0012297 ! male urethral crest - -[Term] -id: SCTID:279471006 ! -property_value: IAO:0000589 "female urethral crest (SCTID)" xsd:string -is_a: UBERON:0012298 ! female urethral crest - -[Term] -id: SCTID:362229009 ! -property_value: IAO:0000589 "mucosa of urethra (SCTID)" xsd:string -is_a: UBERON:0012299 ! mucosa of urethra - -[Term] -id: SCTID:263343009 ! -property_value: IAO:0000589 "male membranous urethra (SCTID)" xsd:string -is_a: UBERON:0012302 ! male membranous urethra - -[Term] -id: SCTID:181415004 ! -property_value: IAO:0000589 "ureteral orifice (SCTID)" xsd:string -is_a: UBERON:0012303 ! ureteral orifice - -[Term] -id: SCTID:167763000 ! -property_value: IAO:0000589 "lateral cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0012306 ! lateral cervical lymph node - -[Term] -id: SCTID:168259009 ! -property_value: IAO:0000589 "anterior cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0012307 ! anterior cervical lymph node - -[Term] -id: SCTID:50679006 ! -property_value: IAO:0000589 "superficial lateral cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0012308 ! superficial lateral cervical lymph node - -[Term] -id: SCTID:22993006 ! -property_value: IAO:0000589 "superficial anterior cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0012309 ! superficial anterior cervical lymph node - -[Term] -id: SCTID:61755005 ! -property_value: IAO:0000589 "deep lateral cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0012310 ! deep lateral cervical lymph node - -[Term] -id: SCTID:52363008 ! -property_value: IAO:0000589 "deep anterior cervical lymph node (SCTID)" xsd:string -is_a: UBERON:0012311 ! deep anterior cervical lymph node - -[Term] -id: SCTID:89066004 ! -property_value: IAO:0000589 "embryonic facial prominence (SCTID)" xsd:string -is_a: UBERON:0012314 ! embryonic facial prominence - -[Term] -id: SCTID:312160004 ! -property_value: IAO:0000589 "anterior ethmoidal artery (SCTID)" xsd:string -is_a: UBERON:0012318 ! anterior ethmoidal artery - -[Term] -id: SCTID:312161000 ! -property_value: IAO:0000589 "posterior ethmoidal artery (SCTID)" xsd:string -is_a: UBERON:0012319 ! posterior ethmoidal artery - -[Term] -id: SCTID:244223002 ! -property_value: IAO:0000589 "deep cervical artery (SCTID)" xsd:string -is_a: UBERON:0012321 ! deep cervical artery - -[Term] -id: SCTID:161846001 ! -property_value: IAO:0000589 "ascending cervical artery (SCTID)" xsd:string -is_a: UBERON:0012322 ! ascending cervical artery - -[Term] -id: SCTID:244224008 ! -property_value: IAO:0000589 "transverse cervical artery (SCTID)" xsd:string -is_a: UBERON:0012324 ! transverse cervical artery - -[Term] -id: SCTID:279900000 ! -property_value: IAO:0000589 "mesosalpinx (SCTID)" xsd:string -is_a: UBERON:0012331 ! mesosalpinx - -[Term] -id: SCTID:362723009 ! -property_value: IAO:0000589 "broad ligament of uterus (SCTID)" xsd:string -is_a: UBERON:0012332 ! broad ligament of uterus - -[Term] -id: SCTID:250080006 ! -property_value: IAO:0000589 "ovarian bursa (SCTID)" xsd:string -is_a: UBERON:0012333 ! ovarian bursa - -[Term] -id: SCTID:370660009 ! -property_value: IAO:0000589 "navicular bursa (SCTID)" xsd:string -is_a: UBERON:0012334 ! navicular bursa - -[Term] -id: SCTID:370736002 ! -property_value: IAO:0000589 "navicular bursa of manus (SCTID)" xsd:string -is_a: UBERON:0012335 ! navicular bursa of manus - -[Term] -id: SCTID:181522009 ! -property_value: IAO:0000589 "perianal skin (SCTID)" xsd:string -is_a: UBERON:0012336 ! perianal skin - -[Term] -id: SCTID:263377004 ! -property_value: IAO:0000589 "cauda equina (SCTID)" xsd:string -is_a: UBERON:0012337 ! cauda equina - -[Term] -id: SCTID:362835004 ! -property_value: IAO:0000589 "pedal acropodium region (SCTID)" xsd:string -is_a: UBERON:0012356 ! pedal acropodium region - -[Term] -id: SCTID:265809008 ! -property_value: IAO:0000589 "manual digitopodium bone (SCTID)" xsd:string -is_a: UBERON:0012358 ! manual digitopodium bone - -[Term] -id: SCTID:369003004 ! -property_value: IAO:0000589 "bone of jaw (SCTID)" xsd:string -is_a: UBERON:0012360 ! bone of jaw - -[Term] -id: SCTID:110699000 ! -property_value: IAO:0000589 "subserosal plexus (SCTID)" xsd:string -is_a: UBERON:0012374 ! subserosal plexus - -[Term] -id: SCTID:2255006 ! -property_value: IAO:0000589 "subserosa (SCTID)" xsd:string -is_a: UBERON:0012375 ! subserosa - -[Term] -id: SCTID:245830008 ! -property_value: IAO:0000589 "retromolar triangle (SCTID)" xsd:string -is_a: UBERON:0012376 ! retromolar triangle - -[Term] -id: SCTID:54658003 ! -property_value: IAO:0000589 "small intestine smooth muscle circular layer (SCTID)" xsd:string -is_a: UBERON:0012401 ! small intestine smooth muscle circular layer - -[Term] -id: SCTID:59150006 ! -property_value: IAO:0000589 "small intestine smooth muscle longitudinal layer (SCTID)" xsd:string -is_a: UBERON:0012402 ! small intestine smooth muscle longitudinal layer - -[Term] -id: SCTID:362160001 ! -property_value: IAO:0000589 "taenia coli (SCTID)" xsd:string -is_a: UBERON:0012419 ! taenia coli - -[Term] -id: SCTID:81191004 ! -property_value: IAO:0000589 "urodeum (SCTID)" xsd:string -is_a: UBERON:0012421 ! urodeum - -[Term] -id: SCTID:361318005 ! -property_value: IAO:0000589 "tunica fibrosa of eyeball (SCTID)" xsd:string -is_a: UBERON:0012430 ! tunica fibrosa of eyeball - -[Term] -id: SCTID:264473006 ! -property_value: IAO:0000589 "epiploic foramen (SCTID)" xsd:string -is_a: UBERON:0012442 ! epiploic foramen - -[Term] -id: SCTID:41421000 ! -property_value: IAO:0000589 "Meissner's corpuscle (SCTID)" xsd:string -is_a: UBERON:0012450 ! Meissner's corpuscle - -[Term] -id: SCTID:70402007 ! -property_value: IAO:0000589 "sensory receptor (SCTID)" xsd:string -is_a: UBERON:0012451 ! sensory receptor - -[Term] -id: SCTID:9317004 ! -property_value: IAO:0000589 "Merkel nerve ending (SCTID)" xsd:string -is_a: UBERON:0012456 ! Merkel nerve ending - -[Term] -id: SCTID:53140000 ! -property_value: IAO:0000589 "Ruffini nerve ending (SCTID)" xsd:string -is_a: UBERON:0012457 ! Ruffini nerve ending - -[Term] -id: SCTID:47282002 ! -property_value: IAO:0000589 "antler velvet (SCTID)" xsd:string -is_a: UBERON:0012458 ! antler velvet - -[Term] -id: SCTID:298233001 ! -property_value: IAO:0000589 "proctodeum portion of cloaca (SCTID)" xsd:string -is_a: UBERON:0012462 ! proctodeum portion of cloaca - -[Term] -id: SCTID:260825001 ! -property_value: IAO:0000589 "hepatogastric ligament (SCTID)" xsd:string -is_a: UBERON:0012471 ! hepatogastric ligament - -[Term] -id: SCTID:362706000 ! -property_value: IAO:0000589 "hepatoduodenal ligament (SCTID)" xsd:string -is_a: UBERON:0012472 ! hepatoduodenal ligament - -[Term] -id: SCTID:182326009 ! -property_value: IAO:0000589 "dorsal part of neck (SCTID)" xsd:string -is_a: UBERON:0012477 ! dorsal part of neck - -[Term] -id: SCTID:304036007 ! -property_value: IAO:0000589 "dorsal part of neck (SCTID)" xsd:string -is_a: UBERON:0012477 ! dorsal part of neck - -[Term] -id: SCTID:362147007 ! -property_value: IAO:0000589 "muscle layer of duodenum (SCTID)" xsd:string -is_a: UBERON:0012488 ! muscle layer of duodenum - -[Term] -id: SCTID:362158003 ! -property_value: IAO:0000589 "muscle layer of colon (SCTID)" xsd:string -is_a: UBERON:0012489 ! muscle layer of colon - -[Term] -id: SCTID:362171000 ! -property_value: IAO:0000589 "muscle layer of anal canal (SCTID)" xsd:string -is_a: UBERON:0012490 ! muscle layer of anal canal - -[Term] -id: SCTID:37457002 ! -property_value: IAO:0000589 "muscularis mucosae of duodenum (SCTID)" xsd:string -is_a: UBERON:0012494 ! muscularis mucosae of duodenum - -[Term] -id: SCTID:53420003 ! -property_value: IAO:0000589 "muscularis mucosae of rectum (SCTID)" xsd:string -is_a: UBERON:0012497 ! muscularis mucosae of rectum - -[Term] -id: SCTID:22488003 ! -property_value: IAO:0000589 "serosa of appendix (SCTID)" xsd:string -is_a: UBERON:0012498 ! serosa of appendix - -[Term] -id: SCTID:259593000 ! -property_value: IAO:0000589 "serosa of uterine tube (SCTID)" xsd:string -is_a: UBERON:0012499 ! serosa of uterine tube - -[Term] -id: SCTID:85950006 ! -property_value: IAO:0000589 "adventitia of esophagus (SCTID)" xsd:string -is_a: UBERON:0012504 ! adventitia of esophagus - -[Term] -id: SCTID:245497001 ! -property_value: IAO:0000589 "ampulla of uterine tube (SCTID)" xsd:string -is_a: UBERON:0012648 ! ampulla of uterine tube - -[Term] -id: SCTID:264014000 ! -property_value: IAO:0000589 "gastroduodenal junction (SCTID)" xsd:string -is_a: UBERON:0012650 ! gastroduodenal junction - -[Term] -id: SCTID:362791002 ! -property_value: IAO:0000589 "popliteal area (SCTID)" xsd:string -is_a: UBERON:0013069 ! popliteal area - -[Term] -id: SCTID:10734004 ! -property_value: IAO:0000589 "rattle (SCTID)" xsd:string -is_a: UBERON:0013073 ! rattle - -[Term] -id: SCTID:53994006 ! -property_value: IAO:0000589 "cornual diverticulum (SCTID)" xsd:string -is_a: UBERON:0013074 ! cornual diverticulum - -[Term] -id: SCTID:38124005 ! -property_value: IAO:0000589 "venom gland duct (SCTID)" xsd:string -is_a: UBERON:0013075 ! venom gland duct - -[Term] -id: SCTID:279337001 ! -property_value: IAO:0000589 "sulcus of brain (SCTID)" xsd:string -is_a: UBERON:0013118 ! sulcus of brain - -[Term] -id: SCTID:236801009 ! -property_value: IAO:0000589 "distal epiphysis of phalanx of pes (SCTID)" xsd:string -is_a: UBERON:0013122 ! distal epiphysis of phalanx of pes - -[Term] -id: SCTID:361504002 ! -property_value: IAO:0000589 "left posterior cardinal vein (SCTID)" xsd:string -is_a: UBERON:0013124 ! left posterior cardinal vein - -[Term] -id: SCTID:361451002 ! -property_value: IAO:0000589 "left subcardinal vein (SCTID)" xsd:string -is_a: UBERON:0013125 ! left subcardinal vein - -[Term] -id: SCTID:281473003 ! -property_value: IAO:0000589 "vein of abdomen (SCTID)" xsd:string -is_a: UBERON:0013126 ! vein of abdomen - -[Term] -id: SCTID:279873003 ! -property_value: IAO:0000589 "bulb of vestibule (SCTID)" xsd:string -is_a: UBERON:0013129 ! bulb of vestibule - -[Term] -id: SCTID:198521008 ! -property_value: IAO:0000589 "superior phrenic artery (SCTID)" xsd:string -is_a: UBERON:0013133 ! superior phrenic artery - -[Term] -id: SCTID:367664002 ! -property_value: IAO:0000589 "vein of lip (SCTID)" xsd:string -is_a: UBERON:0013136 ! vein of lip - -[Term] -id: SCTID:244308005 ! -property_value: IAO:0000589 "external pudendal artery (SCTID)" xsd:string -is_a: UBERON:0013137 ! external pudendal artery - -[Term] -id: SCTID:279967000 ! -property_value: IAO:0000589 "coronary ligament of liver (SCTID)" xsd:string -is_a: UBERON:0013138 ! coronary ligament of liver - -[Term] -id: SCTID:48536008 ! -property_value: IAO:0000589 "ligament of liver (SCTID)" xsd:string -is_a: UBERON:0013139 ! ligament of liver - -[Term] -id: SCTID:244389004 ! -property_value: IAO:0000589 "systemic vein (SCTID)" xsd:string -is_a: UBERON:0013140 ! systemic vein - -[Term] -id: SCTID:397427005 ! -property_value: IAO:0000589 "soleal vein (SCTID)" xsd:string -is_a: UBERON:0013142 ! soleal vein - -[Term] -id: SCTID:264481007 ! -property_value: IAO:0000589 "gastrocnemius vein (SCTID)" xsd:string -is_a: UBERON:0013143 ! gastrocnemius vein - -[Term] -id: SCTID:302677006 ! -property_value: IAO:0000589 "accessory saphenous vein (SCTID)" xsd:string -is_a: UBERON:0013145 ! accessory saphenous vein - -[Term] -id: SCTID:361481005 ! -property_value: IAO:0000589 "early midbrain vesicle (SCTID)" xsd:string -is_a: UBERON:0013148 ! early midbrain vesicle - -[Term] -id: SCTID:361482003 ! -property_value: IAO:0000589 "hindbrain vesicle (SCTID)" xsd:string -is_a: UBERON:0013149 ! hindbrain vesicle - -[Term] -id: SCTID:360409004 ! -property_value: IAO:0000589 "future brain vesicle (SCTID)" xsd:string -is_a: UBERON:0013150 ! future brain vesicle - -[Term] -id: SCTID:244210009 ! -property_value: IAO:0000589 "choroidal artery (SCTID)" xsd:string -is_a: UBERON:0013151 ! choroidal artery - -[Term] -id: SCTID:368593005 ! -property_value: IAO:0000589 "left lateral ventricle (SCTID)" xsd:string -is_a: UBERON:0013161 ! left lateral ventricle - -[Term] -id: SCTID:368571000 ! -property_value: IAO:0000589 "right lateral ventricle (SCTID)" xsd:string -is_a: UBERON:0013162 ! right lateral ventricle - -[Term] -id: SCTID:276955003 ! -property_value: IAO:0000589 "epiglottic vallecula (SCTID)" xsd:string -is_a: UBERON:0013165 ! epiglottic vallecula - -[Term] -id: SCTID:172455006 ! -property_value: IAO:0000589 "cricopharyngeal ligament (SCTID)" xsd:string -is_a: UBERON:0013167 ! cricopharyngeal ligament - -[Term] -id: SCTID:279562000 ! -property_value: IAO:0000589 "thyroepiglottic ligament (SCTID)" xsd:string -is_a: UBERON:0013168 ! thyroepiglottic ligament - -[Term] -id: SCTID:279561007 ! -property_value: IAO:0000589 "vestibular ligament (SCTID)" xsd:string -is_a: UBERON:0013169 ! vestibular ligament - -[Term] -id: SCTID:172533001 ! -property_value: IAO:0000589 "cricoarytenoid ligament (SCTID)" xsd:string -is_a: UBERON:0013170 ! cricoarytenoid ligament - -[Term] -id: SCTID:279558006 ! -property_value: IAO:0000589 "cricothyroid ligament (SCTID)" xsd:string -is_a: UBERON:0013171 ! cricothyroid ligament - -[Term] -id: SCTID:279553002 ! -property_value: IAO:0000589 "cricotracheal ligament (SCTID)" xsd:string -is_a: UBERON:0013172 ! cricotracheal ligament - -[Term] -id: SCTID:368942006 ! -property_value: IAO:0000589 "anterior part of tympanic bone (SCTID)" xsd:string -is_a: UBERON:0013173 ! anterior part of tympanic bone - -[Term] -id: SCTID:90080004 ! -property_value: IAO:0000589 "strand of wool (SCTID)" xsd:string -is_a: UBERON:0013196 ! strand of wool - -[Term] -id: SCTID:281148007 ! -property_value: IAO:0000589 "olfactory pathway (SCTID)" xsd:string -is_a: UBERON:0013201 ! olfactory pathway - -[Term] -id: SCTID:182348003 ! -property_value: IAO:0000589 "hypogastrium (SCTID)" xsd:string -is_a: UBERON:0013203 ! hypogastrium - -[Term] -id: SCTID:368648008 ! -property_value: IAO:0000589 "cerumen gland (SCTID)" xsd:string -is_a: UBERON:0013211 ! cerumen gland - -[Term] -id: SCTID:27528008 ! -property_value: IAO:0000589 "udder (SCTID)" xsd:string -is_a: UBERON:0013216 ! udder - -[Term] -id: SCTID:278361003 ! -property_value: IAO:0000589 "Ciaccio's gland (SCTID)" xsd:string -is_a: UBERON:0013224 ! Ciaccio's gland - -[Term] -id: SCTID:278360002 ! -property_value: IAO:0000589 "accessory lacrimal gland (SCTID)" xsd:string -is_a: UBERON:0013226 ! accessory lacrimal gland - -[Term] -id: SCTID:278362005 ! -property_value: IAO:0000589 "crypt of Henle (SCTID)" xsd:string -is_a: UBERON:0013227 ! crypt of Henle - -[Term] -id: SCTID:280586002 ! -property_value: IAO:0000589 "sweat gland of eyelid (SCTID)" xsd:string -is_a: UBERON:0013228 ! sweat gland of eyelid - -[Term] -id: SCTID:280574000 ! -property_value: IAO:0000589 "eyelid gland (SCTID)" xsd:string -is_a: UBERON:0013229 ! eyelid gland - -[Term] -id: SCTID:361531004 ! -property_value: IAO:0000589 "embryonic urethral groove (SCTID)" xsd:string -is_a: UBERON:0013241 ! embryonic urethral groove - -[Term] -id: SCTID:279643005 ! -property_value: IAO:0000589 "paradidymis (SCTID)" xsd:string -is_a: UBERON:0013248 ! paradidymis - -[Term] -id: SCTID:302528006 ! -property_value: IAO:0000589 "diaphysis of fibula (SCTID)" xsd:string -is_a: UBERON:0013279 ! diaphysis of fibula - -[Term] -id: SCTID:302525009 ! -property_value: IAO:0000589 "diaphysis of tibia (SCTID)" xsd:string -is_a: UBERON:0013280 ! diaphysis of tibia - -[Term] -id: SCTID:264452006 ! -property_value: IAO:0000589 "cranial cavity (SCTID)" xsd:string -is_a: UBERON:0013411 ! cranial cavity - -[Term] -id: SCTID:362625008 ! -property_value: IAO:0000589 "epicranium (SCTID)" xsd:string -is_a: UBERON:0013417 ! epicranium - -[Term] -id: SCTID:260616009 ! -property_value: IAO:0000589 "infratemporal fossa (SCTID)" xsd:string -is_a: UBERON:0013422 ! infratemporal fossa - -[Term] -id: SCTID:137157009 ! -property_value: IAO:0000589 "temporal fossa (SCTID)" xsd:string -is_a: UBERON:0013463 ! temporal fossa - -[Term] -id: SCTID:139582005 ! -property_value: IAO:0000589 "external occipital protuberance (SCTID)" xsd:string -is_a: UBERON:0013469 ! external occipital protuberance - -[Term] -id: SCTID:276801001 ! -property_value: IAO:0000589 "upper esophagus (SCTID)" xsd:string -is_a: UBERON:0013472 ! upper esophagus - -[Term] -id: SCTID:362129001 ! -property_value: IAO:0000589 "lower esophagus (SCTID)" xsd:string -is_a: UBERON:0013473 ! lower esophagus - -[Term] -id: SCTID:276802008 ! -property_value: IAO:0000589 "middle part of esophagus (SCTID)" xsd:string -is_a: UBERON:0013474 ! middle part of esophagus - -[Term] -id: SCTID:14239003 ! -property_value: IAO:0000589 "cecal tonsil (SCTID)" xsd:string -is_a: UBERON:0013478 ! cecal tonsil - -[Term] -id: SCTID:19447003 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of colon (SCTID)" xsd:string -is_a: UBERON:0013485 ! crypt of Lieberkuhn of colon - -[Term] -id: SCTID:21512007 ! -property_value: IAO:0000589 "crypt of Lieberkuhn of appendix (SCTID)" xsd:string -is_a: UBERON:0013486 ! crypt of Lieberkuhn of appendix - -[Term] -id: SCTID:175208005 ! -property_value: IAO:0000589 "superficial cervical fascia (SCTID)" xsd:string -is_a: UBERON:0013489 ! superficial cervical fascia - -[Term] -id: SCTID:361906006 ! -property_value: IAO:0000589 "cervical fascia (SCTID)" xsd:string -is_a: UBERON:0013491 ! cervical fascia - -[Term] -id: SCTID:175407002 ! -property_value: IAO:0000589 "prevertebral cervical fascia (SCTID)" xsd:string -is_a: UBERON:0013492 ! prevertebral cervical fascia - -[Term] -id: SCTID:306708007 ! -property_value: IAO:0000589 "abdominal fascia (SCTID)" xsd:string -is_a: UBERON:0013493 ! abdominal fascia - -[Term] -id: SCTID:384717008 ! -property_value: IAO:0000589 "Brodmann area (SCTID)" xsd:string -is_a: UBERON:0013529 ! Brodmann area - -[Term] -id: SCTID:368703003 ! -property_value: IAO:0000589 "primary molar tooth (SCTID)" xsd:string -is_a: UBERON:0013616 ! primary molar tooth - -[Term] -id: SCTID:422318005 ! -property_value: IAO:0000589 "upper primary molar tooth (SCTID)" xsd:string -is_a: UBERON:0013617 ! upper primary molar tooth - -[Term] -id: SCTID:421593002 ! -property_value: IAO:0000589 "secondary molar tooth (SCTID)" xsd:string -is_a: UBERON:0013618 ! secondary molar tooth - -[Term] -id: SCTID:421482001 ! -property_value: IAO:0000589 "lower primary molar tooth (SCTID)" xsd:string -is_a: UBERON:0013620 ! lower primary molar tooth - -[Term] -id: SCTID:332807009 ! -property_value: IAO:0000589 "short bone (SCTID)" xsd:string -is_a: UBERON:0013630 ! short bone - -[Term] -id: SCTID:362149005 ! -property_value: IAO:0000589 "duodenal ampulla (SCTID)" xsd:string -is_a: UBERON:0013644 ! duodenal ampulla - -[Term] -id: SCTID:280253000 ! -property_value: IAO:0000589 "buccal nerve (SCTID)" xsd:string -is_a: UBERON:0013646 ! buccal nerve - -[Term] -id: SCTID:48852002 ! -property_value: IAO:0000589 "lateral pterygoid nerve (SCTID)" xsd:string -is_a: UBERON:0013647 ! lateral pterygoid nerve - -[Term] -id: SCTID:147864007 ! -property_value: IAO:0000589 "masseteric artery (SCTID)" xsd:string -is_a: UBERON:0013648 ! masseteric artery - -[Term] -id: SCTID:264141008 ! -property_value: IAO:0000589 "peripheral region of retina (SCTID)" xsd:string -is_a: UBERON:0013682 ! peripheral region of retina - -[Term] -id: SCTID:276742007 ! -property_value: IAO:0000589 "foramen of skull (SCTID)" xsd:string -is_a: UBERON:0013685 ! foramen of skull - -[Term] -id: SCTID:362677002 ! -property_value: IAO:0000589 "buttock (SCTID)" xsd:string -is_a: UBERON:0013691 ! buttock - -[Term] -id: SCTID:280911007 ! -property_value: IAO:0000589 "strand of axillary hair (SCTID)" xsd:string -is_a: UBERON:0013699 ! strand of axillary hair - -[Term] -id: SCTID:272712007 ! -property_value: IAO:0000589 "iliac spine (SCTID)" xsd:string -is_a: UBERON:0013707 ! iliac spine - -[Term] -id: SCTID:182031001 ! -property_value: IAO:0000589 "anterior superior iliac spine (SCTID)" xsd:string -is_a: UBERON:0013708 ! anterior superior iliac spine - -[Term] -id: SCTID:182030000 ! -property_value: IAO:0000589 "anterior inferior iliac spine (SCTID)" xsd:string -is_a: UBERON:0013709 ! anterior inferior iliac spine - -[Term] -id: SCTID:182032008 ! -property_value: IAO:0000589 "posterior superior iliac spine (SCTID)" xsd:string -is_a: UBERON:0013710 ! posterior superior iliac spine - -[Term] -id: SCTID:182033003 ! -property_value: IAO:0000589 "posterior inferior iliac spine (SCTID)" xsd:string -is_a: UBERON:0013711 ! posterior inferior iliac spine - -[Term] -id: SCTID:361907002 ! -property_value: IAO:0000589 "superficial inguinal ring (SCTID)" xsd:string -is_a: UBERON:0013717 ! superficial inguinal ring - -[Term] -id: SCTID:279582001 ! -property_value: IAO:0000589 "dartos muscle of scrotum (SCTID)" xsd:string -is_a: UBERON:0013719 ! dartos muscle of scrotum - -[Term] -id: SCTID:278831000 ! -property_value: IAO:0000589 "deep inguinal ring (SCTID)" xsd:string -is_a: UBERON:0013721 ! deep inguinal ring - -[Term] -id: SCTID:242467001 ! -property_value: IAO:0000589 "anterior talofibular ligament (SCTID)" xsd:string -is_a: UBERON:0013725 ! anterior talofibular ligament - -[Term] -id: SCTID:242570004 ! -property_value: IAO:0000589 "posterior talofibular ligament (SCTID)" xsd:string -is_a: UBERON:0013726 ! posterior talofibular ligament - -[Term] -id: SCTID:314820002 ! -property_value: IAO:0000589 "integumentary system layer (SCTID)" xsd:string -is_a: UBERON:0013754 ! integumentary system layer - -[Term] -id: SCTID:279886007 ! -property_value: IAO:0000589 "internal cervical os (SCTID)" xsd:string -is_a: UBERON:0013759 ! internal cervical os - -[Term] -id: SCTID:362255005 ! -property_value: IAO:0000589 "external cervical os (SCTID)" xsd:string -is_a: UBERON:0013760 ! external cervical os - -[Term] -id: SCTID:272627002 ! -property_value: IAO:0000589 "digestive system element (SCTID)" xsd:string -is_a: UBERON:0013765 ! digestive system element - -[Term] -id: SCTID:74824007 ! -property_value: IAO:0000589 "epicanthal fold (SCTID)" xsd:string -is_a: UBERON:0013766 ! epicanthal fold - -[Term] -id: SCTID:368869008 ! -property_value: IAO:0000589 "frontal process of maxilla (SCTID)" xsd:string -is_a: UBERON:0013767 ! frontal process of maxilla - -[Term] -id: SCTID:304066000 ! -property_value: IAO:0000589 "great vessel of heart (SCTID)" xsd:string -is_a: UBERON:0013768 ! great vessel of heart - -[Term] -id: SCTID:181544004 ! -property_value: IAO:0000589 "skin of palm of manus (SCTID)" xsd:string -is_a: UBERON:0013777 ! skin of palm of manus - -[Term] -id: SCTID:181566006 ! -property_value: IAO:0000589 "skin of sole of pes (SCTID)" xsd:string -is_a: UBERON:0013778 ! skin of sole of pes - -[Term] -id: SCTID:361942003 ! -property_value: IAO:0000589 "fibroelastic membrane of larynx (SCTID)" xsd:string -is_a: UBERON:0014372 ! fibroelastic membrane of larynx - -[Term] -id: SCTID:244997002 ! -property_value: IAO:0000589 "intrinsic muscle of manus (SCTID)" xsd:string -is_a: UBERON:0014375 ! intrinsic muscle of manus - -[Term] -id: SCTID:181640000 ! -property_value: IAO:0000589 "thenar muscle (SCTID)" xsd:string -is_a: UBERON:0014376 ! thenar muscle - -[Term] -id: SCTID:181643003 ! -property_value: IAO:0000589 "hypothenar muscle (SCTID)" xsd:string -is_a: UBERON:0014377 ! hypothenar muscle - -[Term] -id: SCTID:181727000 ! -property_value: IAO:0000589 "adductor hallucis muscle (SCTID)" xsd:string -is_a: UBERON:0014379 ! adductor hallucis muscle - -[Term] -id: SCTID:181724007 ! -property_value: IAO:0000589 "flexor digitorum brevis muscle (SCTID)" xsd:string -is_a: UBERON:0014380 ! flexor digitorum brevis muscle - -[Term] -id: SCTID:79490000 ! -property_value: IAO:0000589 "flexor digitorum brevis muscle (SCTID)" xsd:string -is_a: UBERON:0014380 ! flexor digitorum brevis muscle - -[Term] -id: SCTID:245503009 ! -property_value: IAO:0000589 "aryepiglottic fold (SCTID)" xsd:string -is_a: UBERON:0014385 ! aryepiglottic fold - -[Term] -id: SCTID:368921009 ! -property_value: IAO:0000589 "lateral process of malleus (SCTID)" xsd:string -is_a: UBERON:0014397 ! lateral process of malleus - -[Term] -id: SCTID:292728005 ! -property_value: IAO:0000589 "greater sciatic notch (SCTID)" xsd:string -is_a: UBERON:0014411 ! greater sciatic notch - -[Term] -id: SCTID:360956007 ! -property_value: IAO:0000589 "sciatic notch (SCTID)" xsd:string -is_a: UBERON:0014430 ! sciatic notch - -[Term] -id: SCTID:292830001 ! -property_value: IAO:0000589 "lesser sciatic notch (SCTID)" xsd:string -is_a: UBERON:0014436 ! lesser sciatic notch - -[Term] -id: SCTID:182034009 ! -property_value: IAO:0000589 "iliac crest (SCTID)" xsd:string -is_a: UBERON:0014437 ! iliac crest - -[Term] -id: SCTID:182037002 ! -property_value: IAO:0000589 "superior pubic ramus (SCTID)" xsd:string -is_a: UBERON:0014438 ! superior pubic ramus - -[Term] -id: SCTID:182038007 ! -property_value: IAO:0000589 "inferior pubic ramus (SCTID)" xsd:string -is_a: UBERON:0014439 ! inferior pubic ramus - -[Term] -id: SCTID:182043000 ! -property_value: IAO:0000589 "ischial ramus (SCTID)" xsd:string -is_a: UBERON:0014441 ! ischial ramus - -[Term] -id: SCTID:292625002 ! -property_value: IAO:0000589 "superior ischial ramus (SCTID)" xsd:string -is_a: UBERON:0014442 ! superior ischial ramus - -[Term] -id: SCTID:361324004 ! -property_value: IAO:0000589 "inferior ischial ramus (SCTID)" xsd:string -is_a: UBERON:0014443 ! inferior ischial ramus - -[Term] -id: SCTID:182026003 ! -property_value: IAO:0000589 "pubic ramus (SCTID)" xsd:string -is_a: UBERON:0014444 ! pubic ramus - -[Term] -id: SCTID:289666003 ! -property_value: IAO:0000589 "acetabular fossa (SCTID)" xsd:string -is_a: UBERON:0014445 ! acetabular fossa - -[Term] -id: SCTID:289767000 ! -property_value: IAO:0000589 "acetabular notch (SCTID)" xsd:string -is_a: UBERON:0014446 ! acetabular notch - -[Term] -id: SCTID:416164009 ! -property_value: IAO:0000589 "pretectal nucleus (SCTID)" xsd:string -is_a: UBERON:0014450 ! pretectal nucleus - -[Term] -id: SCTID:368076004 ! -property_value: IAO:0000589 "extraperitoneal space (SCTID)" xsd:string -is_a: UBERON:0014456 ! extraperitoneal space - -[Term] -id: SCTID:244974000 ! -property_value: IAO:0000589 "female bulbospongiosus muscle (SCTID)" xsd:string -is_a: UBERON:0014458 ! female bulbospongiosus muscle - -[Term] -id: SCTID:57098005 ! -property_value: IAO:0000589 "cardiac ganglion (SCTID)" xsd:string -is_a: UBERON:0014463 ! cardiac ganglion - -[Term] -id: SCTID:314164007 ! -property_value: IAO:0000589 "primary fissure of cerebellum (SCTID)" xsd:string -is_a: UBERON:0014471 ! primary fissure of cerebellum - -[Term] -id: SCTID:18716004 ! -property_value: IAO:0000589 "precentral fissure of cerebellum (SCTID)" xsd:string -is_a: UBERON:0014473 ! precentral fissure of cerebellum - -[Term] -id: SCTID:41253007 ! -property_value: IAO:0000589 "elephant trunk (SCTID)" xsd:string -is_a: UBERON:0014479 ! elephant trunk - -[Term] -id: SCTID:413670006 ! -property_value: IAO:0000589 "blood feather (SCTID)" xsd:string -is_a: UBERON:0014480 ! blood feather - -[Term] -id: SCTID:113175000 ! -property_value: IAO:0000589 "sex skin (SCTID)" xsd:string -is_a: UBERON:0014481 ! sex skin - -[Term] -id: SCTID:370666003 ! -property_value: IAO:0000589 "distal phalanx of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014485 ! distal phalanx of digit 3 - -[Term] -id: SCTID:370671005 ! -property_value: IAO:0000589 "distal phalanx of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014485 ! distal phalanx of digit 3 - -[Term] -id: SCTID:410030004 ! -property_value: IAO:0000589 "distal phalanx of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014485 ! distal phalanx of digit 3 - -[Term] -id: SCTID:370667007 ! -property_value: IAO:0000589 "distal phalanx of digit 4 (SCTID)" xsd:string -is_a: UBERON:0014486 ! distal phalanx of digit 4 - -[Term] -id: SCTID:370670006 ! -property_value: IAO:0000589 "distal phalanx of digit 4 (SCTID)" xsd:string -is_a: UBERON:0014486 ! distal phalanx of digit 4 - -[Term] -id: SCTID:370676000 ! -property_value: IAO:0000589 "middle phalanx of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014489 ! middle phalanx of digit 3 - -[Term] -id: SCTID:370730008 ! -property_value: IAO:0000589 "middle phalanx of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014489 ! middle phalanx of digit 3 - -[Term] -id: SCTID:370675001 ! -property_value: IAO:0000589 "middle phalanx of digit 4 (SCTID)" xsd:string -is_a: UBERON:0014490 ! middle phalanx of digit 4 - -[Term] -id: SCTID:370732000 ! -property_value: IAO:0000589 "proximal phalanx of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014503 ! proximal phalanx of digit 3 - -[Term] -id: SCTID:370733005 ! -property_value: IAO:0000589 "proximal phalanx of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014503 ! proximal phalanx of digit 3 - -[Term] -id: SCTID:196392002 ! -property_value: IAO:0000589 "distal interphalangeal joint of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014506 ! distal interphalangeal joint of digit 3 - -[Term] -id: SCTID:370892008 ! -property_value: IAO:0000589 "distal interphalangeal joint of digit 3 (SCTID)" xsd:string -is_a: UBERON:0014506 ! distal interphalangeal joint of digit 3 - -[Term] -id: SCTID:361880001 ! -property_value: IAO:0000589 "distal interphalangeal joint of pedal digit 3 (SCTID)" xsd:string -is_a: UBERON:0014507 ! distal interphalangeal joint of pedal digit 3 - -[Term] -id: SCTID:361854002 ! -property_value: IAO:0000589 "distal interphalangeal joint of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0014508 ! distal interphalangeal joint of manual digit 3 - -[Term] -id: SCTID:370683007 ! -property_value: IAO:0000589 "distal interphalangeal joint of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0014508 ! distal interphalangeal joint of manual digit 3 - -[Term] -id: SCTID:370741005 ! -property_value: IAO:0000589 "distal sesamoid impar ligament (SCTID)" xsd:string -is_a: UBERON:0014509 ! distal sesamoid impar ligament - -[Term] -id: SCTID:24667000 ! -property_value: IAO:0000589 "lamina of omasum (SCTID)" xsd:string -is_a: UBERON:0014510 ! lamina of omasum - -[Term] -id: SCTID:369237002 ! -property_value: IAO:0000589 "dorsolateral oculomotor nucleus (SCTID)" xsd:string -is_a: UBERON:0014522 ! dorsolateral oculomotor nucleus - -[Term] -id: SCTID:119245007 ! -property_value: IAO:0000589 "limb of internal capsule of telencephalon (SCTID)" xsd:string -is_a: UBERON:0014525 ! limb of internal capsule of telencephalon - -[Term] -id: SCTID:279295005 ! -property_value: IAO:0000589 "anterior limb of internal capsule (SCTID)" xsd:string -is_a: UBERON:0014526 ! anterior limb of internal capsule - -[Term] -id: SCTID:279296006 ! -property_value: IAO:0000589 "posterior limb of internal capsule (SCTID)" xsd:string -is_a: UBERON:0014527 ! posterior limb of internal capsule - -[Term] -id: SCTID:279301006 ! -property_value: IAO:0000589 "extreme capsule (SCTID)" xsd:string -is_a: UBERON:0014528 ! extreme capsule - -[Term] -id: SCTID:5677006 ! -property_value: IAO:0000589 "lenticular fasciculus (SCTID)" xsd:string -is_a: UBERON:0014529 ! lenticular fasciculus - -[Term] -id: SCTID:369179004 ! -property_value: IAO:0000589 "external medullary lamina of thalamus (SCTID)" xsd:string -is_a: UBERON:0014534 ! external medullary lamina of thalamus - -[Term] -id: SCTID:362413004 ! -property_value: IAO:0000589 "white matter lamina of cerebellum (SCTID)" xsd:string -is_a: UBERON:0014540 ! white matter lamina of cerebellum - -[Term] -id: SCTID:71118002 ! -property_value: IAO:0000589 "thoracic division of spinal cord central canal (SCTID)" xsd:string -is_a: UBERON:0014541 ! thoracic division of spinal cord central canal - -[Term] -id: SCTID:280403009 ! -property_value: IAO:0000589 "cervical division of cord spinal central canal (SCTID)" xsd:string -is_a: UBERON:0014542 ! cervical division of cord spinal central canal - -[Term] -id: SCTID:280406001 ! -property_value: IAO:0000589 "lumbar division of spinal cord central canal (SCTID)" xsd:string -is_a: UBERON:0014543 ! lumbar division of spinal cord central canal - -[Term] -id: SCTID:362450003 ! -property_value: IAO:0000589 "sacral division of spinal cord central canal (SCTID)" xsd:string -is_a: UBERON:0014547 ! sacral division of spinal cord central canal - -[Term] -id: SCTID:367875001 ! -property_value: IAO:0000589 "thoracic spinal cord lateral horn (SCTID)" xsd:string -is_a: UBERON:0014607 ! thoracic spinal cord lateral horn - -[Term] -id: SCTID:279183001 ! -property_value: IAO:0000589 "inferior occipital gyrus (SCTID)" xsd:string -is_a: UBERON:0014608 ! inferior occipital gyrus - -[Term] -id: SCTID:362442007 ! -property_value: IAO:0000589 "thoracic spinal cord dorsal horn (SCTID)" xsd:string -is_a: UBERON:0014609 ! thoracic spinal cord dorsal horn - -[Term] -id: SCTID:367876000 ! -property_value: IAO:0000589 "thoracic spinal cord ventral horn (SCTID)" xsd:string -is_a: UBERON:0014610 ! thoracic spinal cord ventral horn - -[Term] -id: SCTID:367877009 ! -property_value: IAO:0000589 "apex of thoracic spinal cord dorsal horn (SCTID)" xsd:string -is_a: UBERON:0014611 ! apex of thoracic spinal cord dorsal horn - -[Term] -id: SCTID:367878004 ! -property_value: IAO:0000589 "substantia gelatinosa of thoracic spinal cord dorsal horn (SCTID)" xsd:string -is_a: UBERON:0014612 ! substantia gelatinosa of thoracic spinal cord dorsal horn - -[Term] -id: SCTID:362438009 ! -property_value: IAO:0000589 "cervical spinal cord gray matter (SCTID)" xsd:string -is_a: UBERON:0014613 ! cervical spinal cord gray matter - -[Term] -id: SCTID:174829001 ! -property_value: IAO:0000589 "cervical spinal cord white matter (SCTID)" xsd:string -is_a: UBERON:0014614 ! cervical spinal cord white matter - -[Term] -id: SCTID:280187004 ! -property_value: IAO:0000589 "accessory nerve root (SCTID)" xsd:string -is_a: UBERON:0014615 ! accessory nerve root - -[Term] -id: SCTID:367883007 ! -property_value: IAO:0000589 "dorsal nerve root of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0014616 ! dorsal nerve root of thoracic spinal cord - -[Term] -id: SCTID:367882002 ! -property_value: IAO:0000589 "ventral nerve root of thoracic spinal cord (SCTID)" xsd:string -is_a: UBERON:0014617 ! ventral nerve root of thoracic spinal cord - -[Term] -id: SCTID:369227007 ! -property_value: IAO:0000589 "middle frontal sulcus (SCTID)" xsd:string -is_a: UBERON:0014618 ! middle frontal sulcus - -[Term] -id: SCTID:174268004 ! -property_value: IAO:0000589 "cervical spinal cord lateral horn (SCTID)" xsd:string -is_a: UBERON:0014619 ! cervical spinal cord lateral horn - -[Term] -id: SCTID:362439001 ! -property_value: IAO:0000589 "cervical spinal cord dorsal horn (SCTID)" xsd:string -is_a: UBERON:0014620 ! cervical spinal cord dorsal horn - -[Term] -id: SCTID:174363005 ! -property_value: IAO:0000589 "cervical spinal cord ventral horn (SCTID)" xsd:string -is_a: UBERON:0014621 ! cervical spinal cord ventral horn - -[Term] -id: SCTID:174452008 ! -property_value: IAO:0000589 "apex of cervical spinal cord dorsal horn (SCTID)" xsd:string -is_a: UBERON:0014622 ! apex of cervical spinal cord dorsal horn - -[Term] -id: SCTID:174544008 ! -property_value: IAO:0000589 "substantia gelatinosa of cervical spinal cord dorsal horn (SCTID)" xsd:string -is_a: UBERON:0014623 ! substantia gelatinosa of cervical spinal cord dorsal horn - -[Term] -id: SCTID:279799003 ! -property_value: IAO:0000589 "basis modioli (SCTID)" xsd:string -is_a: UBERON:0014624 ! basis modioli - -[Term] -id: SCTID:279778001 ! -property_value: IAO:0000589 "base of cochlear canal (SCTID)" xsd:string -is_a: UBERON:0014626 ! base of cochlear canal - -[Term] -id: SCTID:279772000 ! -property_value: IAO:0000589 "vestibular fissure of the cochlear canal (SCTID)" xsd:string -is_a: UBERON:0014628 ! vestibular fissure of the cochlear canal - -[Term] -id: SCTID:279780007 ! -property_value: IAO:0000589 "terminal part of the cochlear canal (SCTID)" xsd:string -is_a: UBERON:0014629 ! terminal part of the cochlear canal - -[Term] -id: SCTID:88806005 ! -property_value: IAO:0000589 "ventral gray commissure of spinal cord (SCTID)" xsd:string -is_a: UBERON:0014630 ! ventral gray commissure of spinal cord - -[Term] -id: SCTID:21169000 ! -property_value: IAO:0000589 "dorsal gray commissure of spinal cord (SCTID)" xsd:string -is_a: UBERON:0014631 ! dorsal gray commissure of spinal cord - -[Term] -id: SCTID:314425003 ! -property_value: IAO:0000589 "apex of lumbar spinal cord dorsal horn (SCTID)" xsd:string -is_a: UBERON:0014632 ! apex of lumbar spinal cord dorsal horn - -[Term] -id: SCTID:314519000 ! -property_value: IAO:0000589 "substantia gelatinosa of lumbar spinal cord dorsal horn (SCTID)" xsd:string -is_a: UBERON:0014633 ! substantia gelatinosa of lumbar spinal cord dorsal horn - -[Term] -id: SCTID:174925008 ! -property_value: IAO:0000589 "ventral nerve root of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0014634 ! ventral nerve root of cervical spinal cord - -[Term] -id: SCTID:175023008 ! -property_value: IAO:0000589 "dorsal nerve root of cervical spinal cord (SCTID)" xsd:string -is_a: UBERON:0014635 ! dorsal nerve root of cervical spinal cord - -[Term] -id: SCTID:362441000 ! -property_value: IAO:0000589 "thoracic spinal cord gray matter (SCTID)" xsd:string -is_a: UBERON:0014636 ! thoracic spinal cord gray matter - -[Term] -id: SCTID:367881009 ! -property_value: IAO:0000589 "thoracic spinal cord white matter (SCTID)" xsd:string -is_a: UBERON:0014637 ! thoracic spinal cord white matter - -[Term] -id: SCTID:361852003 ! -property_value: IAO:0000589 "distal interphalangeal joint of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0014668 ! distal interphalangeal joint of manual digit 2 - -[Term] -id: SCTID:361856000 ! -property_value: IAO:0000589 "distal interphalangeal joint of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0014670 ! distal interphalangeal joint of manual digit 4 - -[Term] -id: SCTID:361858004 ! -property_value: IAO:0000589 "distal interphalangeal joint of manural digit 5 (SCTID)" xsd:string -is_a: UBERON:0014671 ! distal interphalangeal joint of manural digit 5 - -[Term] -id: SCTID:361878007 ! -property_value: IAO:0000589 "distal interphalangeal joint of pedal digit 2 (SCTID)" xsd:string -is_a: UBERON:0014672 ! distal interphalangeal joint of pedal digit 2 - -[Term] -id: SCTID:361882009 ! -property_value: IAO:0000589 "distal interphalangeal joint of pedal digit 4 (SCTID)" xsd:string -is_a: UBERON:0014674 ! distal interphalangeal joint of pedal digit 4 - -[Term] -id: SCTID:361884005 ! -property_value: IAO:0000589 "distal interphalangeal joint of pedal digit 5 (SCTID)" xsd:string -is_a: UBERON:0014675 ! distal interphalangeal joint of pedal digit 5 - -[Term] -id: SCTID:151804007 ! -property_value: IAO:0000589 "angular vein (SCTID)" xsd:string -is_a: UBERON:0014686 ! angular vein - -[Term] -id: SCTID:279345006 ! -property_value: IAO:0000589 "middle temporal sulcus (SCTID)" xsd:string -is_a: UBERON:0014689 ! middle temporal sulcus - -[Term] -id: SCTID:281061005 ! -property_value: IAO:0000589 "left gastric vein (SCTID)" xsd:string -is_a: UBERON:0014690 ! left gastric vein - -[Term] -id: SCTID:281062003 ! -property_value: IAO:0000589 "right gastric vein (SCTID)" xsd:string -is_a: UBERON:0014691 ! right gastric vein - -[Term] -id: SCTID:286971006 ! -property_value: IAO:0000589 "superficial epigastric vein (SCTID)" xsd:string -is_a: UBERON:0014692 ! superficial epigastric vein - -[Term] -id: SCTID:276151008 ! -property_value: IAO:0000589 "inferior alveolar artery (SCTID)" xsd:string -is_a: UBERON:0014693 ! inferior alveolar artery - -[Term] -id: SCTID:244220004 ! -property_value: IAO:0000589 "posterior auricular artery (SCTID)" xsd:string -is_a: UBERON:0014694 ! posterior auricular artery - -[Term] -id: SCTID:147157007 ! -property_value: IAO:0000589 "deep auricular artery (SCTID)" xsd:string -is_a: UBERON:0014695 ! deep auricular artery - -[Term] -id: SCTID:244211008 ! -property_value: IAO:0000589 "anterior choroidal artery (SCTID)" xsd:string -is_a: UBERON:0014696 ! anterior choroidal artery - -[Term] -id: SCTID:369342007 ! -property_value: IAO:0000589 "posterior choroidal artery (SCTID)" xsd:string -is_a: UBERON:0014697 ! posterior choroidal artery - -[Term] -id: SCTID:362530000 ! -property_value: IAO:0000589 "lacrimal caruncle (SCTID)" xsd:string -is_a: UBERON:0014698 ! lacrimal caruncle - -[Term] -id: SCTID:205214009 ! -property_value: IAO:0000589 "intralobular duct (SCTID)" xsd:string -is_a: UBERON:0014719 ! intralobular duct - -[Term] -id: SCTID:247520007 ! -property_value: IAO:0000589 "intercalated duct of pancreas (SCTID)" xsd:string -is_a: UBERON:0014726 ! intercalated duct of pancreas - -[Term] -id: SCTID:361726004 ! -property_value: IAO:0000589 "osteon (SCTID)" xsd:string -is_a: UBERON:0014730 ! osteon - -[Term] -id: SCTID:3336003 ! -property_value: IAO:0000589 "haversian canal (SCTID)" xsd:string -is_a: UBERON:0014731 ! haversian canal - -[Term] -id: SCTID:244668003 ! -property_value: IAO:0000589 "crus of diaphragm (SCTID)" xsd:string -is_a: UBERON:0014765 ! crus of diaphragm - -[Term] -id: SCTID:362690009 ! -property_value: IAO:0000589 "right crus of diaphragm (SCTID)" xsd:string -is_a: UBERON:0014766 ! right crus of diaphragm - -[Term] -id: SCTID:244937004 ! -property_value: IAO:0000589 "left crus of diaphragm (SCTID)" xsd:string -is_a: UBERON:0014767 ! left crus of diaphragm - -[Term] -id: SCTID:152208004 ! -property_value: IAO:0000589 "palpebral vein (SCTID)" xsd:string -is_a: UBERON:0014769 ! palpebral vein - -[Term] -id: SCTID:148571007 ! -property_value: IAO:0000589 "palpebral artery (SCTID)" xsd:string -is_a: UBERON:0014770 ! palpebral artery - -[Term] -id: SCTID:369323008 ! -property_value: IAO:0000589 "lateral palpebral artery (SCTID)" xsd:string -is_a: UBERON:0014772 ! lateral palpebral artery - -[Term] -id: SCTID:369331003 ! -property_value: IAO:0000589 "medial palpebral artery (SCTID)" xsd:string -is_a: UBERON:0014773 ! medial palpebral artery - -[Term] -id: SCTID:368727001 ! -property_value: IAO:0000589 "lingual septum (SCTID)" xsd:string -is_a: UBERON:0014790 ! lingual septum - -[Term] -id: SCTID:181682001 ! -property_value: IAO:0000589 "vastus intermedius (SCTID)" xsd:string -is_a: UBERON:0014847 ! vastus intermedius - -[Term] -id: SCTID:245175008 ! -property_value: IAO:0000589 "tendon of quadriceps femoris (SCTID)" xsd:string -is_a: UBERON:0014848 ! tendon of quadriceps femoris - -[Term] -id: SCTID:244354001 ! -property_value: IAO:0000589 "anterior leaflet of mitral valve (SCTID)" xsd:string -is_a: UBERON:0014854 ! anterior leaflet of mitral valve - -[Term] -id: SCTID:244355000 ! -property_value: IAO:0000589 "posterior leaflet of mitral valve (SCTID)" xsd:string -is_a: UBERON:0014855 ! posterior leaflet of mitral valve - -[Term] -id: SCTID:280560007 ! -property_value: IAO:0000589 "inferior orbital fissure (SCTID)" xsd:string -is_a: UBERON:0014870 ! inferior orbital fissure - -[Term] -id: SCTID:182011000 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 1 (SCTID)" xsd:string -is_a: UBERON:0014881 ! distal epiphysis of distal phalanx of manual digit 1 - -[Term] -id: SCTID:263457005 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 2 (SCTID)" xsd:string -is_a: UBERON:0014882 ! distal epiphysis of distal phalanx of manual digit 2 - -[Term] -id: SCTID:263458000 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 3 (SCTID)" xsd:string -is_a: UBERON:0014883 ! distal epiphysis of distal phalanx of manual digit 3 - -[Term] -id: SCTID:263459008 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 4 (SCTID)" xsd:string -is_a: UBERON:0014884 ! distal epiphysis of distal phalanx of manual digit 4 - -[Term] -id: SCTID:263460003 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit 5 (SCTID)" xsd:string -is_a: UBERON:0014885 ! distal epiphysis of distal phalanx of manual digit 5 - -[Term] -id: SCTID:182006002 ! -property_value: IAO:0000589 "distal epiphysis of distal phalanx of manual digit (SCTID)" xsd:string -is_a: UBERON:0014886 ! distal epiphysis of distal phalanx of manual digit - -[Term] -id: SCTID:360442003 ! -property_value: IAO:0000589 "brainstem white matter (SCTID)" xsd:string -is_a: UBERON:0014891 ! brainstem white matter - -[Term] -id: SCTID:369037007 ! -property_value: IAO:0000589 "cerebellopontine angle (SCTID)" xsd:string -is_a: UBERON:0014908 ! cerebellopontine angle - -[Term] -id: SCTID:342298001 ! -property_value: IAO:0000589 "perivascular space (SCTID)" xsd:string -is_a: UBERON:0014930 ! perivascular space - -[Term] -id: SCTID:280418005 ! -property_value: IAO:0000589 "periungual skin (SCTID)" xsd:string -is_a: UBERON:0014931 ! periungual skin - -[Term] -id: SCTID:37065005 ! -property_value: IAO:0000589 "periventricular white matter (SCTID)" xsd:string -is_a: UBERON:0014932 ! periventricular white matter - -[Term] -id: SCTID:89530008 ! -property_value: IAO:0000589 "periventricular gray matter (SCTID)" xsd:string -is_a: UBERON:0014933 ! periventricular gray matter - -[Term] -id: SCTID:361483008 ! -property_value: IAO:0000589 "lamina terminalis of cerebral hemisphere (SCTID)" xsd:string -is_a: UBERON:0015117 ! lamina terminalis of cerebral hemisphere - -[Term] -id: SCTID:42267001 ! -property_value: IAO:0000589 "epicardial fat (SCTID)" xsd:string -is_a: UBERON:0015129 ! epicardial fat - -[Term] -id: SCTID:280957009 ! -property_value: IAO:0000589 "conjunctival space (SCTID)" xsd:string -is_a: UBERON:0015155 ! conjunctival space - -[Term] -id: SCTID:146753008 ! -property_value: IAO:0000589 "zygomatico-orbital artery (SCTID)" xsd:string -is_a: UBERON:0015157 ! zygomatico-orbital artery - -[Term] -id: SCTID:369330002 ! -property_value: IAO:0000589 "supraorbital artery (SCTID)" xsd:string -is_a: UBERON:0015160 ! supraorbital artery - -[Term] -id: SCTID:280206003 ! -property_value: IAO:0000589 "inferior branch of oculomotor nerve (SCTID)" xsd:string -is_a: UBERON:0015161 ! inferior branch of oculomotor nerve - -[Term] -id: SCTID:280205004 ! -property_value: IAO:0000589 "superior branch of oculomotor nerve (SCTID)" xsd:string -is_a: UBERON:0015162 ! superior branch of oculomotor nerve - -[Term] -id: SCTID:24628006 ! -property_value: IAO:0000589 "uterine spiral artery (SCTID)" xsd:string -is_a: UBERON:0015171 ! uterine spiral artery - -[Term] -id: SCTID:254200009 ! -property_value: IAO:0000589 "endometrial blood vessel (SCTID)" xsd:string -is_a: UBERON:0015172 ! endometrial blood vessel - -[Term] -id: SCTID:279924008 ! -property_value: IAO:0000589 "helicine artery of penis (SCTID)" xsd:string -is_a: UBERON:0015174 ! helicine artery of penis - -[Term] -id: SCTID:279924008 ! -property_value: IAO:0000589 "helicine artery (SCTID)" xsd:string -is_a: UBERON:0015177 ! helicine artery - -[Term] -id: SCTID:182104001 ! -property_value: IAO:0000589 "neck of talus (SCTID)" xsd:string -is_a: UBERON:0015180 ! neck of talus - -[Term] -id: SCTID:28638008 ! -property_value: IAO:0000589 "neck of tooth (SCTID)" xsd:string -is_a: UBERON:0015181 ! neck of tooth - -[Term] -id: SCTID:310212002 ! -property_value: IAO:0000589 "nasal meatus (SCTID)" xsd:string -is_a: UBERON:0015216 ! nasal meatus - -[Term] -id: SCTID:361925009 ! -property_value: IAO:0000589 "middle nasal meatus (SCTID)" xsd:string -is_a: UBERON:0015219 ! middle nasal meatus - -[Term] -id: SCTID:310214001 ! -property_value: IAO:0000589 "inferior nasal meatus (SCTID)" xsd:string -is_a: UBERON:0015220 ! inferior nasal meatus - -[Term] -id: SCTID:361469006 ! -property_value: IAO:0000589 "bulbar spiral septum (SCTID)" xsd:string -is_a: UBERON:0015226 ! bulbar spiral septum - -[Term] -id: SCTID:362252008 ! -property_value: IAO:0000589 "lower part of vagina (SCTID)" xsd:string -is_a: UBERON:0015243 ! lower part of vagina - -[Term] -id: SCTID:361954003 ! -property_value: IAO:0000589 "bifurcation of trachea (SCTID)" xsd:string -is_a: UBERON:0015247 ! bifurcation of trachea - -[Term] -id: SCTID:362180000 ! -property_value: IAO:0000589 "anterior lingual gland duct (SCTID)" xsd:string -is_a: UBERON:0015445 ! anterior lingual gland duct - -[Term] -id: SCTID:80088008 ! -property_value: IAO:0000589 "splenic lymph node (SCTID)" xsd:string -is_a: UBERON:0015469 ! splenic lymph node - -[Term] -id: SCTID:245341003 ! -property_value: IAO:0000589 "tracheobronchial lymph node (SCTID)" xsd:string -is_a: UBERON:0015472 ! tracheobronchial lymph node - -[Term] -id: SCTID:361710000 ! -property_value: IAO:0000589 "scrotum skin (SCTID)" xsd:string -is_a: UBERON:0015479 ! scrotum skin - -[Term] -id: SCTID:244262006 ! -property_value: IAO:0000589 "proper hepatic artery (SCTID)" xsd:string -is_a: UBERON:0015480 ! proper hepatic artery - -[Term] -id: SCTID:181073006 ! -property_value: IAO:0000589 "sural nerve (SCTID)" xsd:string -is_a: UBERON:0015488 ! sural nerve - -[Term] -id: SCTID:279307005 ! -property_value: IAO:0000589 "body of corpus callosum (SCTID)" xsd:string -is_a: UBERON:0015510 ! body of corpus callosum - -[Term] -id: SCTID:279310003 ! -property_value: IAO:0000589 "genu of corpus callosum (SCTID)" xsd:string -is_a: UBERON:0015599 ! genu of corpus callosum - -[Term] -id: SCTID:279311004 ! -property_value: IAO:0000589 "rostrum of corpus callosum (SCTID)" xsd:string -is_a: UBERON:0015703 ! rostrum of corpus callosum - -[Term] -id: SCTID:244400002 ! -property_value: IAO:0000589 "sagittal sinus (SCTID)" xsd:string -is_a: UBERON:0015704 ! sagittal sinus - -[Term] -id: SCTID:362355007 ! -property_value: IAO:0000589 "splenium of the corpus callosum (SCTID)" xsd:string -is_a: UBERON:0015708 ! splenium of the corpus callosum - -[Term] -id: SCTID:368783000 ! -property_value: IAO:0000589 "inferior tarsal muscle (SCTID)" xsd:string -is_a: UBERON:0015751 ! inferior tarsal muscle - -[Term] -id: SCTID:245585000 ! -property_value: IAO:0000589 "upper left incisor tooth (SCTID)" xsd:string -is_a: UBERON:0015847 ! upper left incisor tooth - -[Term] -id: SCTID:279140007 ! -property_value: IAO:0000589 "parotid lymph node (SCTID)" xsd:string -is_a: UBERON:0015857 ! parotid lymph node - -[Term] -id: SCTID:280480005 ! -property_value: IAO:0000589 "hepatic lymph node (SCTID)" xsd:string -is_a: UBERON:0015859 ! hepatic lymph node - -[Term] -id: SCTID:280723006 ! -property_value: IAO:0000589 "pancreaticosplenic lymph node (SCTID)" xsd:string -is_a: UBERON:0015865 ! pancreaticosplenic lymph node - -[Term] -id: SCTID:280127001 ! -property_value: IAO:0000589 "pyloric lymph node (SCTID)" xsd:string -is_a: UBERON:0015866 ! pyloric lymph node - -[Term] -id: SCTID:46081008 ! -property_value: IAO:0000589 "cystic lymph node (SCTID)" xsd:string -is_a: UBERON:0015867 ! cystic lymph node - -[Term] -id: SCTID:167263004 ! -property_value: IAO:0000589 "retropharyngeal lymph node (SCTID)" xsd:string -is_a: UBERON:0015869 ! retropharyngeal lymph node - -[Term] -id: SCTID:155136006 ! -property_value: IAO:0000589 "lymph node of head (SCTID)" xsd:string -is_a: UBERON:0015870 ! lymph node of head - -[Term] -id: SCTID:279139005 ! -property_value: IAO:0000589 "facial lymph node (SCTID)" xsd:string -is_a: UBERON:0015871 ! facial lymph node - -[Term] -id: SCTID:10664000 ! -property_value: IAO:0000589 "mandibular lymph node (SCTID)" xsd:string -is_a: UBERON:0015872 ! mandibular lymph node - -[Term] -id: SCTID:244185002 ! -property_value: IAO:0000589 "heel skin (SCTID)" xsd:string -is_a: UBERON:0015873 ! heel skin - -[Term] -id: SCTID:362804005 ! -property_value: IAO:0000589 "heel (SCTID)" xsd:string -is_a: UBERON:0015875 ! heel - -[Term] -id: SCTID:245352009 ! -property_value: IAO:0000589 "pelvic lymph node (SCTID)" xsd:string -is_a: UBERON:0015876 ! pelvic lymph node - -[Term] -id: SCTID:314889004 ! -property_value: IAO:0000589 "common iliac lymph node (SCTID)" xsd:string -is_a: UBERON:0015878 ! common iliac lymph node - -[Term] -id: SCTID:245358008 ! -property_value: IAO:0000589 "external iliac lymph node (SCTID)" xsd:string -is_a: UBERON:0015880 ! external iliac lymph node - -[Term] -id: SCTID:245357003 ! -property_value: IAO:0000589 "internal iliac lymph node (SCTID)" xsd:string -is_a: UBERON:0015881 ! internal iliac lymph node - -[Term] -id: SCTID:276154000 ! -property_value: IAO:0000589 "gluteal lymph node (SCTID)" xsd:string -is_a: UBERON:0015883 ! gluteal lymph node - -[Term] -id: SCTID:279448009 ! -property_value: IAO:0000589 "presymphysial lymph node (SCTID)" xsd:string -is_a: UBERON:0015884 ! presymphysial lymph node - -[Term] -id: SCTID:362545007 ! -property_value: IAO:0000589 "cymba conchae of pinna (SCTID)" xsd:string -is_a: UBERON:0015885 ! cymba conchae of pinna - -[Term] -id: SCTID:300732009 ! -property_value: IAO:0000589 "root of nail (SCTID)" xsd:string -is_a: UBERON:0015886 ! root of nail - -[Term] -id: SCTID:279141006 ! -property_value: IAO:0000589 "superficial parotid lymph node (SCTID)" xsd:string -is_a: UBERON:0015923 ! superficial parotid lymph node - -[Term] -id: SCTID:68339009 ! -property_value: IAO:0000589 "superficial intraparotid lymph node (SCTID)" xsd:string -is_a: UBERON:0015925 ! superficial intraparotid lymph node - -[Term] -id: SCTID:29180003 ! -property_value: IAO:0000589 "ileocolic lymph node (SCTID)" xsd:string -is_a: UBERON:0016378 ! ileocolic lymph node - -[Term] -id: SCTID:245328002 ! -property_value: IAO:0000589 "mastoid lymph node (SCTID)" xsd:string -is_a: UBERON:0016392 ! mastoid lymph node - -[Term] -id: SCTID:279143009 ! -property_value: IAO:0000589 "mastoid lymph node (SCTID)" xsd:string -is_a: UBERON:0016392 ! mastoid lymph node - -[Term] -id: SCTID:279142004 ! -property_value: IAO:0000589 "deep parotid lymph node (SCTID)" xsd:string -is_a: UBERON:0016393 ! deep parotid lymph node - -[Term] -id: SCTID:245327007 ! -property_value: IAO:0000589 "anterior auricular lymph node (SCTID)" xsd:string -is_a: UBERON:0016394 ! anterior auricular lymph node - -[Term] -id: SCTID:22509006 ! -property_value: IAO:0000589 "infra-auricular lymph node (SCTID)" xsd:string -is_a: UBERON:0016395 ! infra-auricular lymph node - -[Term] -id: SCTID:245318006 ! -property_value: IAO:0000589 "submental lymph node (SCTID)" xsd:string -is_a: UBERON:0016397 ! submental lymph node - -[Term] -id: SCTID:361109000 ! -property_value: IAO:0000589 "lymph node of lower limb (SCTID)" xsd:string -is_a: UBERON:0016398 ! lymph node of lower limb - -[Term] -id: SCTID:276155004 ! -property_value: IAO:0000589 "lymph node of upper limb (SCTID)" xsd:string -is_a: UBERON:0016399 ! lymph node of upper limb - -[Term] -id: SCTID:282128003 ! -property_value: IAO:0000589 "infrapatellar fat pad (SCTID)" xsd:string -is_a: UBERON:0016400 ! infrapatellar fat pad - -[Term] -id: SCTID:281152007 ! -property_value: IAO:0000589 "pancreaticoduodenal lymph node (SCTID)" xsd:string -is_a: UBERON:0016401 ! pancreaticoduodenal lymph node - -[Term] -id: SCTID:362274002 ! -property_value: IAO:0000589 "corona of glans penis (SCTID)" xsd:string -is_a: UBERON:0016408 ! corona of glans penis - -[Term] -id: SCTID:182331006 ! -property_value: IAO:0000589 "anterior chest (SCTID)" xsd:string -is_a: UBERON:0016416 ! anterior chest - -[Term] -id: SCTID:181608004 ! -property_value: IAO:0000589 "chest wall (SCTID)" xsd:string -is_a: UBERON:0016435 ! chest wall - -[Term] -id: SCTID:137561005 ! -property_value: IAO:0000589 "glabella region of bone (SCTID)" xsd:string -is_a: UBERON:0016440 ! glabella region of bone - -[Term] -id: SCTID:302144008 ! -property_value: IAO:0000589 "posterior pole of lens (SCTID)" xsd:string -is_a: UBERON:0016459 ! posterior pole of lens - -[Term] -id: SCTID:368114008 ! -property_value: IAO:0000589 "dorsum of nose (SCTID)" xsd:string -is_a: UBERON:0016464 ! dorsum of nose - -[Term] -id: SCTID:279612003 ! -property_value: IAO:0000589 "antihelix (SCTID)" xsd:string -is_a: UBERON:0016466 ! antihelix - -[Term] -id: SCTID:362543000 ! -property_value: IAO:0000589 "antitragus (SCTID)" xsd:string -is_a: UBERON:0016467 ! antitragus - -[Term] -id: SCTID:51528000 ! -property_value: IAO:0000589 "primary incisor tooth (SCTID)" xsd:string -is_a: UBERON:0016476 ! primary incisor tooth - -[Term] -id: SCTID:272684007 ! -property_value: IAO:0000589 "zygomatic process of maxilla (SCTID)" xsd:string -is_a: UBERON:0016477 ! zygomatic process of maxilla - -[Term] -id: SCTID:362185005 ! -property_value: IAO:0000589 "capsule of liver (SCTID)" xsd:string -is_a: UBERON:0016479 ! capsule of liver - -[Term] -id: SCTID:245477006 ! -property_value: IAO:0000589 "posterior fornix of vagina (SCTID)" xsd:string -is_a: UBERON:0016486 ! posterior fornix of vagina - -[Term] -id: SCTID:245476002 ! -property_value: IAO:0000589 "anterior fornix of vagina (SCTID)" xsd:string -is_a: UBERON:0016487 ! anterior fornix of vagina - -[Term] -id: SCTID:369440000 ! -property_value: IAO:0000589 "foramen spinosum of sphenoid bone (SCTID)" xsd:string -is_a: UBERON:0016492 ! foramen spinosum of sphenoid bone - -[Term] -id: SCTID:181636009 ! -property_value: IAO:0000589 "palmaris longus muscle (SCTID)" xsd:string -is_a: UBERON:0016493 ! palmaris longus muscle - -[Term] -id: SCTID:272693008 ! -property_value: IAO:0000589 "epicondyle of humerus (SCTID)" xsd:string -is_a: UBERON:0016497 ! epicondyle of humerus - -[Term] -id: SCTID:368065003 ! -property_value: IAO:0000589 "umbilical ring (SCTID)" xsd:string -is_a: UBERON:0016504 ! umbilical ring - -[Term] -id: SCTID:324760006 ! -property_value: IAO:0000589 "pelvic ganglion (SCTID)" xsd:string -is_a: UBERON:0016508 ! pelvic ganglion - -[Term] -id: SCTID:180920004 ! -property_value: IAO:0000589 "frontal lobe (SCTID)" xsd:string -is_a: UBERON:0016525 ! frontal lobe - -[Term] -id: SCTID:272632001 ! -property_value: IAO:0000589 "lobe of cerebral hemisphere (SCTID)" xsd:string -is_a: UBERON:0016526 ! lobe of cerebral hemisphere - -[Term] -id: SCTID:362331002 ! -property_value: IAO:0000589 "white matter of frontal lobe (SCTID)" xsd:string -is_a: UBERON:0016528 ! white matter of frontal lobe - -[Term] -id: SCTID:369217001 ! -property_value: IAO:0000589 "parietal cortex (SCTID)" xsd:string -is_a: UBERON:0016530 ! parietal cortex - -[Term] -id: SCTID:369200008 ! -property_value: IAO:0000589 "white matter of parietal lobe (SCTID)" xsd:string -is_a: UBERON:0016531 ! white matter of parietal lobe - -[Term] -id: SCTID:362344007 ! -property_value: IAO:0000589 "white matter of temporal lobe (SCTID)" xsd:string -is_a: UBERON:0016534 ! white matter of temporal lobe - -[Term] -id: SCTID:362339000 ! -property_value: IAO:0000589 "white matter of occipital lobe (SCTID)" xsd:string -is_a: UBERON:0016535 ! white matter of occipital lobe - -[Term] -id: SCTID:362343001 ! -property_value: IAO:0000589 "temporal cortex (SCTID)" xsd:string -is_a: UBERON:0016538 ! temporal cortex - -[Term] -id: SCTID:90928005 ! -property_value: IAO:0000589 "premotor cortex (SCTID)" xsd:string -is_a: UBERON:0016634 ! premotor cortex - -[Term] -id: SCTID:67740006 ! -property_value: IAO:0000589 "skin scent gland (SCTID)" xsd:string -is_a: UBERON:0016852 ! skin scent gland - -[Term] -id: SCTID:441008 ! -property_value: IAO:0000589 "interdigital gland (SCTID)" xsd:string -is_a: UBERON:0016853 ! interdigital gland - -[Term] -id: SCTID:264453001 ! -property_value: IAO:0000589 "craniopharyngeal canal (SCTID)" xsd:string -is_a: UBERON:0016881 ! craniopharyngeal canal - -[Term] -id: SCTID:361835002 ! -property_value: IAO:0000589 "shoulder joint (SCTID)" xsd:string -is_a: UBERON:0016884 ! shoulder joint - -[Term] -id: SCTID:304373004 ! -property_value: IAO:0000589 "intrahepatic branch of portal vein (SCTID)" xsd:string -is_a: UBERON:0016890 ! intrahepatic branch of portal vein - -[Term] -id: SCTID:264053009 ! -property_value: IAO:0000589 "frenulum of lip (SCTID)" xsd:string -is_a: UBERON:0016910 ! frenulum of lip - -[Term] -id: SCTID:264488001 ! -property_value: IAO:0000589 "frenulum of upper lip (SCTID)" xsd:string -is_a: UBERON:0016912 ! frenulum of upper lip - -[Term] -id: SCTID:277191003 ! -property_value: IAO:0000589 "frenulum of lower lip (SCTID)" xsd:string -is_a: UBERON:0016913 ! frenulum of lower lip - -[Term] -id: SCTID:362086008 ! -property_value: IAO:0000589 "vermilion (SCTID)" xsd:string -is_a: UBERON:0016915 ! vermilion - -[Term] -id: SCTID:245799004 ! -property_value: IAO:0000589 "upper vermilion (SCTID)" xsd:string -is_a: UBERON:0016918 ! upper vermilion - -[Term] -id: SCTID:245800000 ! -property_value: IAO:0000589 "lower vermilion (SCTID)" xsd:string -is_a: UBERON:0016919 ! lower vermilion - -[Term] -id: SCTID:197773005 ! -property_value: IAO:0000589 "preductal region of aortic arch (SCTID)" xsd:string -is_a: UBERON:0016923 ! preductal region of aortic arch - -[Term] -id: SCTID:197852003 ! -property_value: IAO:0000589 "postductal region of aortic arch (SCTID)" xsd:string -is_a: UBERON:0016924 ! postductal region of aortic arch - -[Term] -id: SCTID:197677000 ! -property_value: IAO:0000589 "juxtaductal region of aortic arch (SCTID)" xsd:string -is_a: UBERON:0016925 ! juxtaductal region of aortic arch - -[Term] -id: SCTID:197932000 ! -property_value: IAO:0000589 "juxtaductal region of aortic arch (SCTID)" xsd:string -is_a: UBERON:0016925 ! juxtaductal region of aortic arch - -[Term] -id: SCTID:245720006 ! -property_value: IAO:0000589 "lingual cusp of tooth (SCTID)" xsd:string -is_a: UBERON:0016929 ! lingual cusp of tooth - -[Term] -id: SCTID:245699009 ! -property_value: IAO:0000589 "ridge of tooth (SCTID)" xsd:string -is_a: UBERON:0016930 ! ridge of tooth - -[Term] -id: SCTID:245701009 ! -property_value: IAO:0000589 "oblique ridge of tooth (SCTID)" xsd:string -is_a: UBERON:0016933 ! oblique ridge of tooth - -[Term] -id: SCTID:245700005 ! -property_value: IAO:0000589 "marginal ridge of tooth (SCTID)" xsd:string -is_a: UBERON:0016934 ! marginal ridge of tooth - -[Term] -id: SCTID:245702002 ! -property_value: IAO:0000589 "transverse marginal ridge of tooth (SCTID)" xsd:string -is_a: UBERON:0016937 ! transverse marginal ridge of tooth - -[Term] -id: SCTID:278475009 ! -property_value: IAO:0000589 "mesial marginal ridge of tooth (SCTID)" xsd:string -is_a: UBERON:0016938 ! mesial marginal ridge of tooth - -[Term] -id: SCTID:278476005 ! -property_value: IAO:0000589 "distal marginal ridge of tooth (SCTID)" xsd:string -is_a: UBERON:0016939 ! distal marginal ridge of tooth - -[Term] -id: SCTID:421227007 ! -property_value: IAO:0000589 "primary premolar tooth (SCTID)" xsd:string -is_a: UBERON:0017269 ! primary premolar tooth - -[Term] -id: SCTID:422038004 ! -property_value: IAO:0000589 "secondary premolar tooth (SCTID)" xsd:string -is_a: UBERON:0017270 ! secondary premolar tooth - -[Term] -id: SCTID:245650005 ! -property_value: IAO:0000589 "cingulum of tooth (SCTID)" xsd:string -is_a: UBERON:0017295 ! cingulum of tooth - -[Term] -id: SCTID:244995005 ! -property_value: IAO:0000589 "extensor pollicis brevis muscle (SCTID)" xsd:string -is_a: UBERON:0017618 ! extensor pollicis brevis muscle - -[Term] -id: SCTID:369232008 ! -property_value: IAO:0000589 "pineal corpora arenacea (SCTID)" xsd:string -is_a: UBERON:0017632 ! pineal corpora arenacea - -[Term] -id: SCTID:361511003 ! -property_value: IAO:0000589 "sinus of von Szily (SCTID)" xsd:string -is_a: UBERON:0017639 ! sinus of von Szily - -[Term] -id: SCTID:308794007 ! -property_value: IAO:0000589 "meningeal branch of spinal nerve (SCTID)" xsd:string -is_a: UBERON:0017641 ! meningeal branch of spinal nerve - -[Term] -id: SCTID:310727003 ! -property_value: IAO:0000589 "communicating branch of spinal nerve (SCTID)" xsd:string -is_a: UBERON:0017642 ! communicating branch of spinal nerve - -[Term] -id: SCTID:25421004 ! -property_value: IAO:0000589 "buccal gland (SCTID)" xsd:string -is_a: UBERON:0017654 ! buccal gland - -[Term] -id: SCTID:362748007 ! -property_value: IAO:0000589 "thenar eminence (SCTID)" xsd:string -is_a: UBERON:0017716 ! thenar eminence - -[Term] -id: SCTID:362749004 ! -property_value: IAO:0000589 "hypothenar eminence (SCTID)" xsd:string -is_a: UBERON:0017717 ! hypothenar eminence - -[Term] -id: SCTID:279583006 ! -property_value: IAO:0000589 "raphe of scrotum (SCTID)" xsd:string -is_a: UBERON:0017732 ! raphe of scrotum - -[Term] -id: SCTID:420793009 ! -property_value: IAO:0000589 "lower primary incisor tooth (SCTID)" xsd:string -is_a: UBERON:0017748 ! lower primary incisor tooth - -[Term] -id: SCTID:89778005 ! -property_value: IAO:0000589 "withers (SCTID)" xsd:string -is_a: UBERON:0017749 ! withers - -[Term] -id: SCTID:244801005 ! -property_value: IAO:0000589 "posterior fascicle of palatopharyngeus (SCTID)" xsd:string -is_a: UBERON:0018103 ! posterior fascicle of palatopharyngeus - -[Term] -id: SCTID:264120002 ! -property_value: IAO:0000589 "parafoveal part of retina (SCTID)" xsd:string -is_a: UBERON:0018104 ! parafoveal part of retina - -[Term] -id: SCTID:280617008 ! -property_value: IAO:0000589 "perifoveal part of retina (SCTID)" xsd:string -is_a: UBERON:0018105 ! perifoveal part of retina - -[Term] -id: SCTID:399857002 ! -property_value: IAO:0000589 "foveola of retina (SCTID)" xsd:string -is_a: UBERON:0018107 ! foveola of retina - -[Term] -id: SCTID:244759009 ! -property_value: IAO:0000589 "superior auricular muscle (SCTID)" xsd:string -is_a: UBERON:0018108 ! superior auricular muscle - -[Term] -id: SCTID:244761000 ! -property_value: IAO:0000589 "posterior auricular muscle (SCTID)" xsd:string -is_a: UBERON:0018110 ! posterior auricular muscle - -[Term] -id: SCTID:243436005 ! -property_value: IAO:0000589 "left renal pelvis (SCTID)" xsd:string -is_a: UBERON:0018115 ! left renal pelvis - -[Term] -id: SCTID:243419002 ! -property_value: IAO:0000589 "right renal pelvis (SCTID)" xsd:string -is_a: UBERON:0018116 ! right renal pelvis - -[Term] -id: SCTID:369108006 ! -property_value: IAO:0000589 "anterior perforated substance (SCTID)" xsd:string -is_a: UBERON:0018141 ! anterior perforated substance - -[Term] -id: SCTID:280730000 ! -property_value: IAO:0000589 "transverse process of cervical vertebra (SCTID)" xsd:string -is_a: UBERON:0018143 ! transverse process of cervical vertebra - -[Term] -id: SCTID:280733003 ! -property_value: IAO:0000589 "transverse process of lumbar vertebra (SCTID)" xsd:string -is_a: UBERON:0018146 ! transverse process of lumbar vertebra - -[Term] -id: SCTID:263940002 ! -property_value: IAO:0000589 "angle of oral opening (SCTID)" xsd:string -is_a: UBERON:0018149 ! angle of oral opening - -[Term] -id: SCTID:281630002 ! -property_value: IAO:0000589 "skin of lower lip (SCTID)" xsd:string -is_a: UBERON:0018150 ! skin of lower lip - -[Term] -id: SCTID:281629007 ! -property_value: IAO:0000589 "skin of upper lip (SCTID)" xsd:string -is_a: UBERON:0018151 ! skin of upper lip - -[Term] -id: SCTID:279594005 ! -property_value: IAO:0000589 "pars flaccida of tympanic membrane (SCTID)" xsd:string -is_a: UBERON:0018152 ! pars flaccida of tympanic membrane - -[Term] -id: SCTID:362555006 ! -property_value: IAO:0000589 "pars tensa of tympanic membrane (SCTID)" xsd:string -is_a: UBERON:0018153 ! pars tensa of tympanic membrane - -[Term] -id: SCTID:368922002 ! -property_value: IAO:0000589 "anterior process of malleus (SCTID)" xsd:string -is_a: UBERON:0018160 ! anterior process of malleus - -[Term] -id: SCTID:368936007 ! -property_value: IAO:0000589 "annular ligament of stapes (SCTID)" xsd:string -is_a: UBERON:0018161 ! annular ligament of stapes - -[Term] -id: SCTID:321862009 ! -property_value: IAO:0000589 "pulmonary lymphatic vessel (SCTID)" xsd:string -is_a: UBERON:0018227 ! pulmonary lymphatic vessel - -[Term] -id: SCTID:273304006 ! -property_value: IAO:0000589 "extrahepatic branch of portal vein (SCTID)" xsd:string -is_a: UBERON:0018228 ! extrahepatic branch of portal vein - -[Term] -id: SCTID:361912001 ! -property_value: IAO:0000589 "femoral canal (SCTID)" xsd:string -is_a: UBERON:0018230 ! femoral canal - -[Term] -id: SCTID:148672009 ! -property_value: IAO:0000589 "labyrinthine artery (SCTID)" xsd:string -is_a: UBERON:0018231 ! labyrinthine artery - -[Term] -id: SCTID:281070008 ! -property_value: IAO:0000589 "gland of Zeis (SCTID)" xsd:string -is_a: UBERON:0018233 ! gland of Zeis - -[Term] -id: SCTID:368686004 ! -property_value: IAO:0000589 "palatine bone horizontal plate (SCTID)" xsd:string -is_a: UBERON:0018242 ! palatine bone horizontal plate - -[Term] -id: SCTID:76543001 ! -property_value: IAO:0000589 "thymic artery (SCTID)" xsd:string -is_a: UBERON:0018243 ! thymic artery - -[Term] -id: SCTID:303420005 ! -property_value: IAO:0000589 "thyroid vein (SCTID)" xsd:string -is_a: UBERON:0018246 ! thyroid vein - -[Term] -id: SCTID:84842006 ! -property_value: IAO:0000589 "meningeal vein (SCTID)" xsd:string -is_a: UBERON:0018251 ! meningeal vein - -[Term] -id: SCTID:14885008 ! -property_value: IAO:0000589 "internal pudendal vein (SCTID)" xsd:string -is_a: UBERON:0018252 ! internal pudendal vein - -[Term] -id: SCTID:9231002 ! -property_value: IAO:0000589 "external pudendal vein (SCTID)" xsd:string -is_a: UBERON:0018253 ! external pudendal vein - -[Term] -id: SCTID:265391008 ! -property_value: IAO:0000589 "jejunal artery (SCTID)" xsd:string -is_a: UBERON:0018255 ! jejunal artery - -[Term] -id: SCTID:149582008 ! -property_value: IAO:0000589 "lacrimal vein (SCTID)" xsd:string -is_a: UBERON:0018256 ! lacrimal vein - -[Term] -id: SCTID:422368002 ! -property_value: IAO:0000589 "premolar 1 (SCTID)" xsd:string -is_a: UBERON:0018294 ! premolar 1 - -[Term] -id: SCTID:422372003 ! -property_value: IAO:0000589 "molar tooth 1 (SCTID)" xsd:string -is_a: UBERON:0018376 ! molar tooth 1 - -[Term] -id: SCTID:181222005 ! -property_value: IAO:0000589 "molar tooth 3 (SCTID)" xsd:string -is_a: UBERON:0018377 ! molar tooth 3 - -[Term] -id: SCTID:280235006 ! -property_value: IAO:0000589 "superior alveolar nerve (SCTID)" xsd:string -is_a: UBERON:0018398 ! superior alveolar nerve - -[Term] -id: SCTID:280239000 ! -property_value: IAO:0000589 "superior alveolar nerve (SCTID)" xsd:string -is_a: UBERON:0018398 ! superior alveolar nerve - -[Term] -id: SCTID:280261005 ! -property_value: IAO:0000589 "inferior alveolar nerve (SCTID)" xsd:string -is_a: UBERON:0018405 ! inferior alveolar nerve - -[Term] -id: SCTID:280138001 ! -property_value: IAO:0000589 "mental nerve (SCTID)" xsd:string -is_a: UBERON:0018406 ! mental nerve - -[Term] -id: SCTID:280360008 ! -property_value: IAO:0000589 "infra-orbital nerve (SCTID)" xsd:string -is_a: UBERON:0018408 ! infra-orbital nerve - -[Term] -id: SCTID:282414002 ! -property_value: IAO:0000589 "lacteal (SCTID)" xsd:string -is_a: UBERON:0018410 ! lacteal - -[Term] -id: SCTID:182435001 ! -property_value: IAO:0000589 "ligament of hip joint (SCTID)" xsd:string -is_a: UBERON:0018411 ! ligament of hip joint - -[Term] -id: SCTID:280273005 ! -property_value: IAO:0000589 "vidian nerve (SCTID)" xsd:string -is_a: UBERON:0018412 ! vidian nerve - -[Term] -id: SCTID:304571003 ! -property_value: IAO:0000589 "secondary incisor tooth (SCTID)" xsd:string -is_a: UBERON:0018550 ! secondary incisor tooth - -[Term] -id: SCTID:422364000 ! -property_value: IAO:0000589 "central incisor tooth (SCTID)" xsd:string -is_a: UBERON:0018551 ! central incisor tooth - -[Term] -id: SCTID:422366003 ! -property_value: IAO:0000589 "lateral incisor tooth (SCTID)" xsd:string -is_a: UBERON:0018552 ! lateral incisor tooth - -[Term] -id: SCTID:15819002 ! -property_value: IAO:0000589 "primary canine tooth (SCTID)" xsd:string -is_a: UBERON:0018583 ! primary canine tooth - -[Term] -id: SCTID:134340007 ! -property_value: IAO:0000589 "secondary canine tooth (SCTID)" xsd:string -is_a: UBERON:0018584 ! secondary canine tooth - -[Term] -id: SCTID:421810006 ! -property_value: IAO:0000589 "upper primary canine tooth (SCTID)" xsd:string -is_a: UBERON:0018597 ! upper primary canine tooth - -[Term] -id: SCTID:420326009 ! -property_value: IAO:0000589 "lower primary canine tooth (SCTID)" xsd:string -is_a: UBERON:0018598 ! lower primary canine tooth - -[Term] -id: SCTID:422374002 ! -property_value: IAO:0000589 "molar tooth 2 (SCTID)" xsd:string -is_a: UBERON:0018606 ! molar tooth 2 - -[Term] -id: SCTID:420479003 ! -property_value: IAO:0000589 "permanent molar tooth 2 (SCTID)" xsd:string -is_a: UBERON:0018607 ! permanent molar tooth 2 - -[Term] -id: SCTID:304565009 ! -property_value: IAO:0000589 "permanent molar tooth 1 (SCTID)" xsd:string -is_a: UBERON:0018608 ! permanent molar tooth 1 - -[Term] -id: SCTID:245564000 ! -property_value: IAO:0000589 "secondary upper tooth (SCTID)" xsd:string -is_a: UBERON:0018613 ! secondary upper tooth - -[Term] -id: SCTID:245588003 ! -property_value: IAO:0000589 "permanent lower tooth (SCTID)" xsd:string -is_a: UBERON:0018614 ! permanent lower tooth - -[Term] -id: SCTID:245613009 ! -property_value: IAO:0000589 "primary upper tooth (SCTID)" xsd:string -is_a: UBERON:0018616 ! primary upper tooth - -[Term] -id: SCTID:245628009 ! -property_value: IAO:0000589 "primary lower tooth (SCTID)" xsd:string -is_a: UBERON:0018617 ! primary lower tooth - -[Term] -id: SCTID:422370006 ! -property_value: IAO:0000589 "premolar 2 (SCTID)" xsd:string -is_a: UBERON:0018640 ! premolar 2 - -[Term] -id: SCTID:422595006 ! -property_value: IAO:0000589 "deciduous molar tooth 2 (SCTID)" xsd:string -is_a: UBERON:0018643 ! deciduous molar tooth 2 - -[Term] -id: SCTID:423890001 ! -property_value: IAO:0000589 "deciduous molar tooth 1 (SCTID)" xsd:string -is_a: UBERON:0018644 ! deciduous molar tooth 1 - -[Term] -id: SCTID:369444009 ! -property_value: IAO:0000589 "foramen lacerum (SCTID)" xsd:string -is_a: UBERON:0018651 ! foramen lacerum - -[Term] -id: SCTID:181915009 ! -property_value: IAO:0000589 "neck of scapula (SCTID)" xsd:string -is_a: UBERON:0018667 ! neck of scapula - -[Term] -id: SCTID:311223006 ! -property_value: IAO:0000589 "pelvic splanchnic nerve (SCTID)" xsd:string -is_a: UBERON:0018675 ! pelvic splanchnic nerve - -[Term] -id: SCTID:280526000 ! -property_value: IAO:0000589 "renal nerve plexus (SCTID)" xsd:string -is_a: UBERON:0018676 ! renal nerve plexus - -[Term] -id: SCTID:280503007 ! -property_value: IAO:0000589 "greater splanchnic nerve (SCTID)" xsd:string -is_a: UBERON:0018680 ! greater splanchnic nerve - -[Term] -id: SCTID:280505000 ! -property_value: IAO:0000589 "lesser splanchnic nerve (SCTID)" xsd:string -is_a: UBERON:0018681 ! lesser splanchnic nerve - -[Term] -id: SCTID:280507008 ! -property_value: IAO:0000589 "lumbar splanchnic nerve (SCTID)" xsd:string -is_a: UBERON:0018683 ! lumbar splanchnic nerve - -[Term] -id: SCTID:88410004 ! -property_value: IAO:0000589 "mucous gland of lung (SCTID)" xsd:string -is_a: UBERON:0019190 ! mucous gland of lung - -[Term] -id: SCTID:306800005 ! -property_value: IAO:0000589 "dorsal nerve of penis (SCTID)" xsd:string -is_a: UBERON:0019197 ! dorsal nerve of penis - -[Term] -id: SCTID:367687005 ! -property_value: IAO:0000589 "dorsal nerve of clitoris (SCTID)" xsd:string -is_a: UBERON:0019198 ! dorsal nerve of clitoris - -[Term] -id: SCTID:182332004 ! -property_value: IAO:0000589 "lateral side of chest (SCTID)" xsd:string -is_a: UBERON:0019199 ! lateral side of chest - -[Term] -id: SCTID:245021004 ! -property_value: IAO:0000589 "gemellus muscle (SCTID)" xsd:string -is_a: UBERON:0019201 ! gemellus muscle - -[Term] -id: SCTID:245022006 ! -property_value: IAO:0000589 "superior gemellus muscle (SCTID)" xsd:string -is_a: UBERON:0019203 ! superior gemellus muscle - -[Term] -id: SCTID:110701000 ! -property_value: IAO:0000589 "chorioretinal region (SCTID)" xsd:string -is_a: UBERON:0019207 ! chorioretinal region - -[Term] -id: SCTID:302143002 ! -property_value: IAO:0000589 "anterior pole of lens (SCTID)" xsd:string -is_a: UBERON:0019208 ! anterior pole of lens - -[Term] -id: SCTID:280630009 ! -property_value: IAO:0000589 "pole of lens (SCTID)" xsd:string -is_a: UBERON:0019210 ! pole of lens - -[Term] -id: SCTID:280385004 ! -property_value: IAO:0000589 "skin crease (SCTID)" xsd:string -is_a: UBERON:0019243 ! skin crease - -[Term] -id: SCTID:244159001 ! -property_value: IAO:0000589 "palmar skin crease (SCTID)" xsd:string -is_a: UBERON:0019246 ! palmar skin crease - -[Term] -id: SCTID:244192007 ! -property_value: IAO:0000589 "plantar skin crease (SCTID)" xsd:string -is_a: UBERON:0019247 ! plantar skin crease - -[Term] -id: SCTID:314148004 ! -property_value: IAO:0000589 "occipital sulcus (SCTID)" xsd:string -is_a: UBERON:0019303 ! occipital sulcus - -[Term] -id: SCTID:279231003 ! -property_value: IAO:0000589 "precordial region (SCTID)" xsd:string -is_a: UBERON:0019320 ! precordial region - -[Term] -id: SCTID:280621001 ! -property_value: IAO:0000589 "orbital lobe of lacrimal gland (SCTID)" xsd:string -is_a: UBERON:0019327 ! orbital lobe of lacrimal gland - -[Term] -id: SCTID:280622008 ! -property_value: IAO:0000589 "palpebral lobe of lacrimal gland (SCTID)" xsd:string -is_a: UBERON:0019328 ! palpebral lobe of lacrimal gland - -[Term] -id: SCTID:279196000 ! -property_value: IAO:0000589 "anterior orbital gyrus (SCTID)" xsd:string -is_a: UBERON:0022244 ! anterior orbital gyrus - -[Term] -id: SCTID:369082006 ! -property_value: IAO:0000589 "superior longitudinal fasciculus (SCTID)" xsd:string -is_a: UBERON:0022246 ! superior longitudinal fasciculus - -[Term] -id: SCTID:369086009 ! -property_value: IAO:0000589 "subcallosal fasciculus (SCTID)" xsd:string -is_a: UBERON:0022250 ! subcallosal fasciculus - -[Term] -id: SCTID:279341002 ! -property_value: IAO:0000589 "precentral sulcus (SCTID)" xsd:string -is_a: UBERON:0022252 ! precentral sulcus - -[Term] -id: SCTID:369185006 ! -property_value: IAO:0000589 "ventral thalamic fasciculus (SCTID)" xsd:string -is_a: UBERON:0022254 ! ventral thalamic fasciculus - -[Term] -id: SCTID:369187003 ! -property_value: IAO:0000589 "subthalamic fasciculus (SCTID)" xsd:string -is_a: UBERON:0022256 ! subthalamic fasciculus - -[Term] -id: SCTID:280953008 ! -property_value: IAO:0000589 "optic radiation (SCTID)" xsd:string -is_a: UBERON:0022264 ! optic radiation - -[Term] -id: SCTID:91366009 ! -property_value: IAO:0000589 "corticopontine fibers (SCTID)" xsd:string -is_a: UBERON:0022271 ! corticopontine fibers - -[Term] -id: SCTID:368792002 ! -property_value: IAO:0000589 "lacrimal lake (SCTID)" xsd:string -is_a: UBERON:0022273 ! lacrimal lake - -[Term] -id: SCTID:362533003 ! -property_value: IAO:0000589 "lacrimal papilla (SCTID)" xsd:string -is_a: UBERON:0022274 ! lacrimal papilla - -[Term] -id: SCTID:245426004 ! -property_value: IAO:0000589 "colic flexure (SCTID)" xsd:string -is_a: UBERON:0022275 ! colic flexure - -[Term] -id: SCTID:245428003 ! -property_value: IAO:0000589 "splenic flexure of colon (SCTID)" xsd:string -is_a: UBERON:0022276 ! splenic flexure of colon - -[Term] -id: SCTID:245427008 ! -property_value: IAO:0000589 "hepatic flexure of colon (SCTID)" xsd:string -is_a: UBERON:0022277 ! hepatic flexure of colon - -[Term] -id: SCTID:280070003 ! -property_value: IAO:0000589 "pineal recess of third ventricle (SCTID)" xsd:string -is_a: UBERON:0022283 ! pineal recess of third ventricle - -[Term] -id: SCTID:369281005 ! -property_value: IAO:0000589 "pineal recess of third ventricle (SCTID)" xsd:string -is_a: UBERON:0022283 ! pineal recess of third ventricle - -[Term] -id: SCTID:282511007 ! -property_value: IAO:0000589 "splenic arteriole (SCTID)" xsd:string -is_a: UBERON:0022292 ! splenic arteriole - -[Term] -id: SCTID:280236007 ! -property_value: IAO:0000589 "palpebral branch of infra-orbital nerve (SCTID)" xsd:string -is_a: UBERON:0022297 ! palpebral branch of infra-orbital nerve - -[Term] -id: SCTID:280220005 ! -property_value: IAO:0000589 "nasociliary nerve (SCTID)" xsd:string -is_a: UBERON:0022300 ! nasociliary nerve - -[Term] -id: SCTID:280228003 ! -property_value: IAO:0000589 "long ciliary nerve (SCTID)" xsd:string -is_a: UBERON:0022301 ! long ciliary nerve - -[Term] -id: SCTID:417598000 ! -property_value: IAO:0000589 "short ciliary nerve (SCTID)" xsd:string -is_a: UBERON:0022302 ! short ciliary nerve - -[Term] -id: SCTID:280716005 ! -property_value: IAO:0000589 "placenta blood vessel (SCTID)" xsd:string -is_a: UBERON:0022358 ! placenta blood vessel - -[Term] -id: SCTID:34922002 ! -property_value: IAO:0000589 "lung field (SCTID)" xsd:string -is_a: UBERON:0022361 ! lung field - -[Term] -id: SCTID:360457005 ! -property_value: IAO:0000589 "pontocerebellar tract (SCTID)" xsd:string -is_a: UBERON:0022421 ! pontocerebellar tract - -[Term] -id: SCTID:279736007 ! -property_value: IAO:0000589 "vestibular canal (SCTID)" xsd:string -is_a: UBERON:0026586 ! vestibular canal - -[Term] -id: SCTID:279843007 ! -property_value: IAO:0000589 "spiral prominence of cochlear duct (SCTID)" xsd:string -is_a: UBERON:0028194 ! spiral prominence of cochlear duct - -[Term] -id: SCTID:369201007 ! -property_value: IAO:0000589 "forceps major of corpus callosum (SCTID)" xsd:string -is_a: UBERON:0034676 ! forceps major of corpus callosum - -[Term] -id: SCTID:369199005 ! -property_value: IAO:0000589 "forceps minor of corpus callosum (SCTID)" xsd:string -is_a: UBERON:0034678 ! forceps minor of corpus callosum - -[Term] -id: SCTID:362648003 ! -property_value: IAO:0000589 "laryngeal prominence (SCTID)" xsd:string -is_a: UBERON:0034680 ! laryngeal prominence - -[Term] -id: SCTID:279652001 ! -property_value: IAO:0000589 "spermatic fascia (SCTID)" xsd:string -is_a: UBERON:0034688 ! spermatic fascia - -[Term] -id: SCTID:279588002 ! -property_value: IAO:0000589 "external spermatic fascia (SCTID)" xsd:string -is_a: UBERON:0034690 ! external spermatic fascia - -[Term] -id: SCTID:279586003 ! -property_value: IAO:0000589 "internal spermatic fascia (SCTID)" xsd:string -is_a: UBERON:0034691 ! internal spermatic fascia - -[Term] -id: SCTID:279658002 ! -property_value: IAO:0000589 "cremasteric artery (SCTID)" xsd:string -is_a: UBERON:0034693 ! cremasteric artery - -[Term] -id: SCTID:261922008 ! -property_value: IAO:0000589 "fold of peritoneum (SCTID)" xsd:string -is_a: UBERON:0034696 ! fold of peritoneum - -[Term] -id: SCTID:278950004 ! -property_value: IAO:0000589 "inflow tract of right ventricle (SCTID)" xsd:string -is_a: UBERON:0034703 ! inflow tract of right ventricle - -[Term] -id: SCTID:278960008 ! -property_value: IAO:0000589 "inflow tract of left ventricle (SCTID)" xsd:string -is_a: UBERON:0034704 ! inflow tract of left ventricle - -[Term] -id: SCTID:1456008 ! -property_value: IAO:0000589 "yellow fibrocartilage (SCTID)" xsd:string -is_a: UBERON:0034712 ! yellow fibrocartilage - -[Term] -id: SCTID:58267004 ! -property_value: IAO:0000589 "pterygopalatine nerve (SCTID)" xsd:string -is_a: UBERON:0034725 ! pterygopalatine nerve - -[Term] -id: SCTID:293541004 ! -property_value: IAO:0000589 "vestibular bulb artery (SCTID)" xsd:string -is_a: UBERON:0034727 ! vestibular bulb artery - -[Term] -id: SCTID:276145003 ! -property_value: IAO:0000589 "autonomic nerve (SCTID)" xsd:string -is_a: UBERON:0034728 ! autonomic nerve - -[Term] -id: SCTID:181098007 ! -property_value: IAO:0000589 "sympathetic nerve (SCTID)" xsd:string -is_a: UBERON:0034729 ! sympathetic nerve - -[Term] -id: SCTID:369105009 ! -property_value: IAO:0000589 "medial olfactory stria (SCTID)" xsd:string -is_a: UBERON:0034734 ! medial olfactory stria - -[Term] -id: SCTID:361899005 ! -property_value: IAO:0000589 "coracoclavicular ligament (SCTID)" xsd:string -is_a: UBERON:0034736 ! coracoclavicular ligament - -[Term] -id: SCTID:369085008 ! -property_value: IAO:0000589 "inferior longitudinal fasciculus (SCTID)" xsd:string -is_a: UBERON:0034743 ! inferior longitudinal fasciculus - -[Term] -id: SCTID:362363008 ! -property_value: IAO:0000589 "retrolenticular part of internal capsule (SCTID)" xsd:string -is_a: UBERON:0034749 ! retrolenticular part of internal capsule - -[Term] -id: SCTID:369087000 ! -property_value: IAO:0000589 "inferior occipitofrontal fasciculus (SCTID)" xsd:string -is_a: UBERON:0034753 ! inferior occipitofrontal fasciculus - -[Term] -id: SCTID:244083007 ! -property_value: IAO:0000589 "glabella skin (SCTID)" xsd:string -is_a: UBERON:0034765 ! glabella skin - -[Term] -id: SCTID:362527007 ! -property_value: IAO:0000589 "margin of eyelid (SCTID)" xsd:string -is_a: UBERON:0034772 ! margin of eyelid - -[Term] -id: SCTID:279213004 ! -property_value: IAO:0000589 "uncus of parahippocampal gyrus (SCTID)" xsd:string -is_a: UBERON:0034773 ! uncus of parahippocampal gyrus - -[Term] -id: SCTID:369221008 ! -property_value: IAO:0000589 "insular cortex (SCTID)" xsd:string -is_a: UBERON:0034891 ! insular cortex - -[Term] -id: SCTID:280533000 ! -property_value: IAO:0000589 "cervical sympathetic nerve trunk (SCTID)" xsd:string -is_a: UBERON:0034901 ! cervical sympathetic nerve trunk - -[Term] -id: SCTID:190064008 ! -property_value: IAO:0000589 "left atrium endocardium (SCTID)" xsd:string -is_a: UBERON:0034903 ! left atrium endocardium - -[Term] -id: SCTID:244331005 ! -property_value: IAO:0000589 "arcuate artery of foot (SCTID)" xsd:string -is_a: UBERON:0034927 ! arcuate artery of foot - -[Term] -id: SCTID:280859006 ! -property_value: IAO:0000589 "pars plicata of ciliary body (SCTID)" xsd:string -is_a: UBERON:0034935 ! pars plicata of ciliary body - -[Term] -id: SCTID:368830002 ! -property_value: IAO:0000589 "pars plana of ciliary body (SCTID)" xsd:string -is_a: UBERON:0034936 ! pars plana of ciliary body - -[Term] -id: SCTID:330419002 ! -property_value: IAO:0000589 "subcutaneous lymph sac (SCTID)" xsd:string -is_a: UBERON:0034951 ! subcutaneous lymph sac - -[Term] -id: SCTID:368079006 ! -property_value: IAO:0000589 "superficial epigastric artery (SCTID)" xsd:string -is_a: UBERON:0034964 ! superficial epigastric artery - -[Term] -id: SCTID:303422002 ! -property_value: IAO:0000589 "middle thyroid vein (SCTID)" xsd:string -is_a: UBERON:0034965 ! middle thyroid vein - -[Term] -id: SCTID:75061007 ! -property_value: IAO:0000589 "aortic body (SCTID)" xsd:string -is_a: UBERON:0034971 ! aortic body - -[Term] -id: SCTID:181381004 ! -property_value: IAO:0000589 "jugular body (SCTID)" xsd:string -is_a: UBERON:0034972 ! jugular body - -[Term] -id: SCTID:80595007 ! -property_value: IAO:0000589 "jugular body (SCTID)" xsd:string -is_a: UBERON:0034972 ! jugular body - -[Term] -id: SCTID:281695005 ! -property_value: IAO:0000589 "paraganglion (generic) (SCTID)" xsd:string -is_a: UBERON:0034978 ! paraganglion (generic) - -[Term] -id: SCTID:158945007 ! -property_value: IAO:0000589 "superior bulb of internal jugular vein (SCTID)" xsd:string -is_a: UBERON:0034981 ! superior bulb of internal jugular vein - -[Term] -id: SCTID:159029003 ! -property_value: IAO:0000589 "inferior bulb of internal jugular vein (SCTID)" xsd:string -is_a: UBERON:0034982 ! inferior bulb of internal jugular vein - -[Term] -id: SCTID:182041003 ! -property_value: IAO:0000589 "ischial tuberosity (SCTID)" xsd:string -is_a: UBERON:0034983 ! ischial tuberosity - -[Term] -id: SCTID:280351000 ! -property_value: IAO:0000589 "nerve to quadratus femoris (SCTID)" xsd:string -is_a: UBERON:0034984 ! nerve to quadratus femoris - -[Term] -id: SCTID:181056009 ! -property_value: IAO:0000589 "sacral nerve plexus (SCTID)" xsd:string -is_a: UBERON:0034986 ! sacral nerve plexus - -[Term] -id: SCTID:302506006 ! -property_value: IAO:0000589 "lumbar nerve plexus (SCTID)" xsd:string -is_a: UBERON:0034987 ! lumbar nerve plexus - -[Term] -id: SCTID:245172006 ! -property_value: IAO:0000589 "tendon of obturator internus (SCTID)" xsd:string -is_a: UBERON:0034988 ! tendon of obturator internus - -[Term] -id: SCTID:277967008 ! -property_value: IAO:0000589 "rectal artery (SCTID)" xsd:string -is_a: UBERON:0035039 ! rectal artery - -[Term] -id: SCTID:244278008 ! -property_value: IAO:0000589 "superior rectal artery (SCTID)" xsd:string -is_a: UBERON:0035040 ! superior rectal artery - -[Term] -id: SCTID:147965009 ! -property_value: IAO:0000589 "deep temporal artery (SCTID)" xsd:string -is_a: UBERON:0035041 ! deep temporal artery - -[Term] -id: SCTID:146854006 ! -property_value: IAO:0000589 "middle temporal artery (SCTID)" xsd:string -is_a: UBERON:0035042 ! middle temporal artery - -[Term] -id: SCTID:75040000 ! -property_value: IAO:0000589 "deep intraparotid lymph node (SCTID)" xsd:string -is_a: UBERON:0035079 ! deep intraparotid lymph node - -[Term] -id: SCTID:27053001 ! -property_value: IAO:0000589 "intraparotid lymph node (SCTID)" xsd:string -is_a: UBERON:0035080 ! intraparotid lymph node - -[Term] -id: SCTID:181074000 ! -property_value: IAO:0000589 "plantar nerve (SCTID)" xsd:string -is_a: UBERON:0035109 ! plantar nerve - -[Term] -id: SCTID:181083005 ! -property_value: IAO:0000589 "lateral plantar nerve (SCTID)" xsd:string -is_a: UBERON:0035110 ! lateral plantar nerve - -[Term] -id: SCTID:181082000 ! -property_value: IAO:0000589 "medial plantar nerve (SCTID)" xsd:string -is_a: UBERON:0035111 ! medial plantar nerve - -[Term] -id: SCTID:361362001 ! -property_value: IAO:0000589 "fauces (SCTID)" xsd:string -is_a: UBERON:0035120 ! fauces - -[Term] -id: SCTID:245781007 ! -property_value: IAO:0000589 "interincisive suture (SCTID)" xsd:string -is_a: UBERON:0035122 ! interincisive suture - -[Term] -id: SCTID:85036004 ! -property_value: IAO:0000589 "gingival epithelial attachment (SCTID)" xsd:string -is_a: UBERON:0035149 ! gingival epithelial attachment - -[Term] -id: SCTID:244393005 ! -property_value: IAO:0000589 "superior cerebral vein (SCTID)" xsd:string -is_a: UBERON:0035150 ! superior cerebral vein - -[Term] -id: SCTID:244397006 ! -property_value: IAO:0000589 "internal cerebral vein (SCTID)" xsd:string -is_a: UBERON:0035152 ! internal cerebral vein - -[Term] -id: SCTID:261060002 ! -property_value: IAO:0000589 "entire surface of organism (SCTID)" xsd:string -is_a: UBERON:0035159 ! entire surface of organism - -[Term] -id: SCTID:9659009 ! -property_value: IAO:0000589 "infraclavicular lymph node (SCTID)" xsd:string -is_a: UBERON:0035162 ! infraclavicular lymph node - -[Term] -id: SCTID:279697005 ! -property_value: IAO:0000589 "posterior surface of prostate (SCTID)" xsd:string -is_a: UBERON:0035165 ! posterior surface of prostate - -[Term] -id: SCTID:181036008 ! -property_value: IAO:0000589 "infraclavicular region (SCTID)" xsd:string -is_a: UBERON:0035168 ! infraclavicular region - -[Term] -id: SCTID:245368003 ! -property_value: IAO:0000589 "obturator lymph node (SCTID)" xsd:string -is_a: UBERON:0035171 ! obturator lymph node - -[Term] -id: SCTID:368570004 ! -property_value: IAO:0000589 "right ear (SCTID)" xsd:string -is_a: UBERON:0035174 ! right ear - -[Term] -id: SCTID:245407007 ! -property_value: IAO:0000589 "abdominal part of esophagus (SCTID)" xsd:string -is_a: UBERON:0035177 ! abdominal part of esophagus - -[Term] -id: SCTID:265956005 ! -property_value: IAO:0000589 "sigmoid artery (SCTID)" xsd:string -is_a: UBERON:0035180 ! sigmoid artery - -[Term] -id: SCTID:2703009 ! -property_value: IAO:0000589 "calcarine artery (SCTID)" xsd:string -is_a: UBERON:0035183 ! calcarine artery - -[Term] -id: SCTID:188958004 ! -property_value: IAO:0000589 "valve of foramen ovale (SCTID)" xsd:string -is_a: UBERON:0035186 ! valve of foramen ovale - -[Term] -id: SCTID:244343006 ! -property_value: IAO:0000589 "plantar metatarsal artery (SCTID)" xsd:string -is_a: UBERON:0035195 ! plantar metatarsal artery - -[Term] -id: SCTID:20315002 ! -property_value: IAO:0000589 "superficial lymphatic vessel (SCTID)" xsd:string -is_a: UBERON:0035198 ! superficial lymphatic vessel - -[Term] -id: SCTID:260539007 ! -property_value: IAO:0000589 "gastrocolic ligament (SCTID)" xsd:string -is_a: UBERON:0035201 ! gastrocolic ligament - -[Term] -id: SCTID:245326003 ! -property_value: IAO:0000589 "occipital lymph node (SCTID)" xsd:string -is_a: UBERON:0035204 ! occipital lymph node - -[Term] -id: SCTID:181081007 ! -property_value: IAO:0000589 "deep fibular nerve (SCTID)" xsd:string -is_a: UBERON:0035207 ! deep fibular nerve - -[Term] -id: SCTID:243980001 ! -property_value: IAO:0000589 "paracolic gutter (SCTID)" xsd:string -is_a: UBERON:0035210 ! paracolic gutter - -[Term] -id: SCTID:277701000 ! -property_value: IAO:0000589 "basal zone of heart (SCTID)" xsd:string -is_a: UBERON:0035213 ! basal zone of heart - -[Term] -id: SCTID:245406003 ! -property_value: IAO:0000589 "thoracic part of esophagus (SCTID)" xsd:string -is_a: UBERON:0035216 ! thoracic part of esophagus - -[Term] -id: SCTID:421997006 ! -property_value: IAO:0000589 "parasternal lymph node (SCTID)" xsd:string -is_a: UBERON:0035219 ! parasternal lymph node - -[Term] -id: SCTID:44894007 ! -property_value: IAO:0000589 "posterior parietal artery (SCTID)" xsd:string -is_a: UBERON:0035222 ! posterior parietal artery - -[Term] -id: SCTID:44310009 ! -property_value: IAO:0000589 "anterior temporal artery (SCTID)" xsd:string -is_a: UBERON:0035225 ! anterior temporal artery - -[Term] -id: SCTID:362596009 ! -property_value: IAO:0000589 "tonsillar fossa (SCTID)" xsd:string -is_a: UBERON:0035228 ! tonsillar fossa - -[Term] -id: SCTID:308729005 ! -property_value: IAO:0000589 "superficial middle cerebral vein (SCTID)" xsd:string -is_a: UBERON:0035231 ! superficial middle cerebral vein - -[Term] -id: SCTID:35235007 ! -property_value: IAO:0000589 "medial circumflex femoral vein (SCTID)" xsd:string -is_a: UBERON:0035234 ! medial circumflex femoral vein - -[Term] -id: SCTID:360629008 ! -property_value: IAO:0000589 "branch of internal carotid artery (SCTID)" xsd:string -is_a: UBERON:0035237 ! branch of internal carotid artery - -[Term] -id: SCTID:276960004 ! -property_value: IAO:0000589 "posterior wall of oropharynx (SCTID)" xsd:string -is_a: UBERON:0035240 ! posterior wall of oropharynx - -[Term] -id: SCTID:245447000 ! -property_value: IAO:0000589 "anal sinus (SCTID)" xsd:string -is_a: UBERON:0035243 ! anal sinus - -[Term] -id: SCTID:244603005 ! -property_value: IAO:0000589 "posterior longitudinal ligament (SCTID)" xsd:string -is_a: UBERON:0035246 ! posterior longitudinal ligament - -[Term] -id: SCTID:59579009 ! -property_value: IAO:0000589 "posterior external jugular vein (SCTID)" xsd:string -is_a: UBERON:0035249 ! posterior external jugular vein - -[Term] -id: SCTID:361639006 ! -property_value: IAO:0000589 "left subcostal vein (SCTID)" xsd:string -is_a: UBERON:0035252 ! left subcostal vein - -[Term] -id: SCTID:362695004 ! -property_value: IAO:0000589 "mons pubis (SCTID)" xsd:string -is_a: UBERON:0035258 ! mons pubis - -[Term] -id: SCTID:23830002 ! -property_value: IAO:0000589 "posterior temporal artery (SCTID)" xsd:string -is_a: UBERON:0035261 ! posterior temporal artery - -[Term] -id: SCTID:245394007 ! -property_value: IAO:0000589 "neck of gallbladder (SCTID)" xsd:string -is_a: UBERON:0035267 ! neck of gallbladder - -[Term] -id: SCTID:179268001 ! -property_value: IAO:0000589 "roof of nasopharynx (SCTID)" xsd:string -is_a: UBERON:0035270 ! roof of nasopharynx - -[Term] -id: SCTID:198713000 ! -property_value: IAO:0000589 "superior thoracic artery (SCTID)" xsd:string -is_a: UBERON:0035273 ! superior thoracic artery - -[Term] -id: SCTID:362693006 ! -property_value: IAO:0000589 "epigastrium (SCTID)" xsd:string -is_a: UBERON:0035276 ! epigastrium - -[Term] -id: SCTID:245325004 ! -property_value: IAO:0000589 "supraclavicular lymph node (SCTID)" xsd:string -is_a: UBERON:0035279 ! supraclavicular lymph node - -[Term] -id: SCTID:362125007 ! -property_value: IAO:0000589 "lateral wall of oropharynx (SCTID)" xsd:string -is_a: UBERON:0035286 ! lateral wall of oropharynx - -[Term] -id: SCTID:181137001 ! -property_value: IAO:0000589 "axillary tail of breast (SCTID)" xsd:string -is_a: UBERON:0035289 ! axillary tail of breast - -[Term] -id: SCTID:314363005 ! -property_value: IAO:0000589 "branch of posterior tibial artery (SCTID)" xsd:string -is_a: UBERON:0035292 ! branch of posterior tibial artery - -[Term] -id: SCTID:368592000 ! -property_value: IAO:0000589 "left ear (SCTID)" xsd:string -is_a: UBERON:0035295 ! left ear - -[Term] -id: SCTID:139784008 ! -property_value: IAO:0000589 "tuberculum sellae (SCTID)" xsd:string -is_a: UBERON:0035298 ! tuberculum sellae - -[Term] -id: SCTID:360551008 ! -property_value: IAO:0000589 "branch of ulnar artery (SCTID)" xsd:string -is_a: UBERON:0035304 ! branch of ulnar artery - -[Term] -id: SCTID:360535000 ! -property_value: IAO:0000589 "branch of vertebral artery (SCTID)" xsd:string -is_a: UBERON:0035307 ! branch of vertebral artery - -[Term] -id: SCTID:279698000 ! -property_value: IAO:0000589 "inferolateral surface of prostate (SCTID)" xsd:string -is_a: UBERON:0035310 ! inferolateral surface of prostate - -[Term] -id: SCTID:276966005 ! -property_value: IAO:0000589 "posterior wall of laryngopharynx (SCTID)" xsd:string -is_a: UBERON:0035313 ! posterior wall of laryngopharynx - -[Term] -id: SCTID:279682007 ! -property_value: IAO:0000589 "prostatic capsule (SCTID)" xsd:string -is_a: UBERON:0035316 ! prostatic capsule - -[Term] -id: SCTID:314225000 ! -property_value: IAO:0000589 "anterior median fissure of spinal cord (SCTID)" xsd:string -is_a: UBERON:0035319 ! anterior median fissure of spinal cord - -[Term] -id: SCTID:283392005 ! -property_value: IAO:0000589 "right common iliac artery (SCTID)" xsd:string -is_a: UBERON:0035322 ! right common iliac artery - -[Term] -id: SCTID:181134008 ! -property_value: IAO:0000589 "upper outer quadrant of breast (SCTID)" xsd:string -is_a: UBERON:0035328 ! upper outer quadrant of breast - -[Term] -id: SCTID:279702001 ! -property_value: IAO:0000589 "base of prostate (SCTID)" xsd:string -is_a: UBERON:0035331 ! base of prostate - -[Term] -id: SCTID:279266001 ! -property_value: IAO:0000589 "sphenoparietal sinus (SCTID)" xsd:string -is_a: UBERON:0035338 ! sphenoparietal sinus - -[Term] -id: SCTID:66012001 ! -property_value: IAO:0000589 "posterior lobe of prostate (SCTID)" xsd:string -is_a: UBERON:0035341 ! posterior lobe of prostate - -[Term] -id: SCTID:314302003 ! -property_value: IAO:0000589 "branch of middle cerebral artery (SCTID)" xsd:string -is_a: UBERON:0035350 ! branch of middle cerebral artery - -[Term] -id: SCTID:360543005 ! -property_value: IAO:0000589 "branch of brachial artery (SCTID)" xsd:string -is_a: UBERON:0035359 ! branch of brachial artery - -[Term] -id: SCTID:181136005 ! -property_value: IAO:0000589 "lower outer quadrant of breast (SCTID)" xsd:string -is_a: UBERON:0035365 ! lower outer quadrant of breast - -[Term] -id: SCTID:279375001 ! -property_value: IAO:0000589 "anterior surface of kidney (SCTID)" xsd:string -is_a: UBERON:0035368 ! anterior surface of kidney - -[Term] -id: SCTID:249613000 ! -property_value: IAO:0000589 "retroperitoneal lymph node (SCTID)" xsd:string -is_a: UBERON:0035371 ! retroperitoneal lymph node - -[Term] -id: SCTID:277730007 ! -property_value: IAO:0000589 "small cardiac vein (SCTID)" xsd:string -is_a: UBERON:0035374 ! small cardiac vein - -[Term] -id: SCTID:259687002 ! -property_value: IAO:0000589 "transverse fold of rectum (SCTID)" xsd:string -is_a: UBERON:0035377 ! transverse fold of rectum - -[Term] -id: SCTID:314304002 ! -property_value: IAO:0000589 "branch of anterior cerebral artery (SCTID)" xsd:string -is_a: UBERON:0035380 ! branch of anterior cerebral artery - -[Term] -id: SCTID:361937006 ! -property_value: IAO:0000589 "lateral wall of nasopharynx (SCTID)" xsd:string -is_a: UBERON:0035383 ! lateral wall of nasopharynx - -[Term] -id: SCTID:89510009 ! -property_value: IAO:0000589 "space of Mall (SCTID)" xsd:string -is_a: UBERON:0035386 ! space of Mall - -[Term] -id: SCTID:281059001 ! -property_value: IAO:0000589 "cystic vein (SCTID)" xsd:string -is_a: UBERON:0035392 ! cystic vein - -[Term] -id: SCTID:244248004 ! -property_value: IAO:0000589 "branch of left coronary artery (SCTID)" xsd:string -is_a: UBERON:0035395 ! branch of left coronary artery - -[Term] -id: SCTID:244216003 ! -property_value: IAO:0000589 "branch of external carotid artery (SCTID)" xsd:string -is_a: UBERON:0035398 ! branch of external carotid artery - -[Term] -id: SCTID:361936002 ! -property_value: IAO:0000589 "posterior wall of nasopharynx (SCTID)" xsd:string -is_a: UBERON:0035401 ! posterior wall of nasopharynx - -[Term] -id: SCTID:303427008 ! -property_value: IAO:0000589 "superior hypophysial artery (SCTID)" xsd:string -is_a: UBERON:0035404 ! superior hypophysial artery - -[Term] -id: SCTID:362725002 ! -property_value: IAO:0000589 "left inguinal part of abdomen (SCTID)" xsd:string -is_a: UBERON:0035410 ! left inguinal part of abdomen - -[Term] -id: SCTID:32967008 ! -property_value: IAO:0000589 "diaphragma sellae (SCTID)" xsd:string -is_a: UBERON:0035416 ! diaphragma sellae - -[Term] -id: SCTID:244601007 ! -property_value: IAO:0000589 "anterior longitudinal ligament (SCTID)" xsd:string -is_a: UBERON:0035419 ! anterior longitudinal ligament - -[Term] -id: SCTID:362036002 ! -property_value: IAO:0000589 "circumflex branch of left coronary artery (SCTID)" xsd:string -is_a: UBERON:0035422 ! circumflex branch of left coronary artery - -[Term] -id: SCTID:280380009 ! -property_value: IAO:0000589 "falx cerebelli (SCTID)" xsd:string -is_a: UBERON:0035425 ! falx cerebelli - -[Term] -id: SCTID:6216007 ! -property_value: IAO:0000589 "postcapillary venule (SCTID)" xsd:string -is_a: UBERON:0035428 ! postcapillary venule - -[Term] -id: SCTID:362002008 ! -property_value: IAO:0000589 "mediastinal pleura (SCTID)" xsd:string -is_a: UBERON:0035431 ! mediastinal pleura - -[Term] -id: SCTID:69354005 ! -property_value: IAO:0000589 "right suprarenal vein (SCTID)" xsd:string -is_a: UBERON:0035435 ! right suprarenal vein - -[Term] -id: SCTID:61115003 ! -property_value: IAO:0000589 "mucoid tissue (SCTID)" xsd:string -is_a: UBERON:0035438 ! mucoid tissue - -[Term] -id: SCTID:279703006 ! -property_value: IAO:0000589 "apex of prostate (SCTID)" xsd:string -is_a: UBERON:0035441 ! apex of prostate - -[Term] -id: SCTID:279968005 ! -property_value: IAO:0000589 "triangular ligament of liver (SCTID)" xsd:string -is_a: UBERON:0035444 ! triangular ligament of liver - -[Term] -id: SCTID:245405004 ! -property_value: IAO:0000589 "cervical part of esophagus (SCTID)" xsd:string -is_a: UBERON:0035450 ! cervical part of esophagus - -[Term] -id: SCTID:361949007 ! -property_value: IAO:0000589 "laryngeal ventricle (SCTID)" xsd:string -is_a: UBERON:0035453 ! laryngeal ventricle - -[Term] -id: SCTID:78499006 ! -property_value: IAO:0000589 "anterior parietal artery (SCTID)" xsd:string -is_a: UBERON:0035462 ! anterior parietal artery - -[Term] -id: SCTID:362257002 ! -property_value: IAO:0000589 "endometrial cavity (SCTID)" xsd:string -is_a: UBERON:0035465 ! endometrial cavity - -[Term] -id: SCTID:46297007 ! -property_value: IAO:0000589 "costodiaphragmatic recess (SCTID)" xsd:string -is_a: UBERON:0035468 ! costodiaphragmatic recess - -[Term] -id: SCTID:279376000 ! -property_value: IAO:0000589 "posterior surface of kidney (SCTID)" xsd:string -is_a: UBERON:0035471 ! posterior surface of kidney - -[Term] -id: SCTID:361638003 ! -property_value: IAO:0000589 "right subcostal vein (SCTID)" xsd:string -is_a: UBERON:0035474 ! right subcostal vein - -[Term] -id: SCTID:181135009 ! -property_value: IAO:0000589 "lower inner quadrant of breast (SCTID)" xsd:string -is_a: UBERON:0035477 ! lower inner quadrant of breast - -[Term] -id: SCTID:279694003 ! -property_value: IAO:0000589 "surface of prostate (SCTID)" xsd:string -is_a: UBERON:0035480 ! surface of prostate - -[Term] -id: SCTID:85087001 ! -property_value: IAO:0000589 "left suprarenal vein (SCTID)" xsd:string -is_a: UBERON:0035483 ! left suprarenal vein - -[Term] -id: SCTID:360537008 ! -property_value: IAO:0000589 "branch of basilar artery (SCTID)" xsd:string -is_a: UBERON:0035489 ! branch of basilar artery - -[Term] -id: SCTID:303428003 ! -property_value: IAO:0000589 "inferior hypophysial artery (SCTID)" xsd:string -is_a: UBERON:0035492 ! inferior hypophysial artery - -[Term] -id: SCTID:327052008 ! -property_value: IAO:0000589 "hilum of lymph node (SCTID)" xsd:string -is_a: UBERON:0035495 ! hilum of lymph node - -[Term] -id: SCTID:260725009 ! -property_value: IAO:0000589 "gastrophrenic ligament (SCTID)" xsd:string -is_a: UBERON:0035498 ! gastrophrenic ligament - -[Term] -id: SCTID:38005009 ! -property_value: IAO:0000589 "unencapsulated tactile receptor (SCTID)" xsd:string -is_a: UBERON:0035501 ! unencapsulated tactile receptor - -[Term] -id: SCTID:362724003 ! -property_value: IAO:0000589 "right inguinal part of abdomen (SCTID)" xsd:string -is_a: UBERON:0035505 ! right inguinal part of abdomen - -[Term] -id: SCTID:314305001 ! -property_value: IAO:0000589 "branch of posterior cerebral artery (SCTID)" xsd:string -is_a: UBERON:0035508 ! branch of posterior cerebral artery - -[Term] -id: SCTID:276152001 ! -property_value: IAO:0000589 "special sense organ system (SCTID)" xsd:string -is_a: UBERON:0035514 ! special sense organ system - -[Term] -id: SCTID:245335005 ! -property_value: IAO:0000589 "anterior mediastinal lymph node (SCTID)" xsd:string -is_a: UBERON:0035520 ! anterior mediastinal lymph node - -[Term] -id: SCTID:279696001 ! -property_value: IAO:0000589 "anterior surface of prostate (SCTID)" xsd:string -is_a: UBERON:0035523 ! anterior surface of prostate - -[Term] -id: SCTID:181080008 ! -property_value: IAO:0000589 "superficial fibular nerve (SCTID)" xsd:string -is_a: UBERON:0035526 ! superficial fibular nerve - -[Term] -id: SCTID:283493001 ! -property_value: IAO:0000589 "left common iliac artery (SCTID)" xsd:string -is_a: UBERON:0035529 ! left common iliac artery - -[Term] -id: SCTID:244398001 ! -property_value: IAO:0000589 "basal vein (SCTID)" xsd:string -is_a: UBERON:0035530 ! basal vein - -[Term] -id: SCTID:279272001 ! -property_value: IAO:0000589 "deep middle cerebral vein (SCTID)" xsd:string -is_a: UBERON:0035532 ! deep middle cerebral vein - -[Term] -id: SCTID:245392006 ! -property_value: IAO:0000589 "body of gallbladder (SCTID)" xsd:string -is_a: UBERON:0035536 ! body of gallbladder - -[Term] -id: SCTID:56548006 ! -property_value: IAO:0000589 "esophageal artery (SCTID)" xsd:string -is_a: UBERON:0035539 ! esophageal artery - -[Term] -id: SCTID:181132007 ! -property_value: IAO:0000589 "upper inner quadrant of breast (SCTID)" xsd:string -is_a: UBERON:0035542 ! upper inner quadrant of breast - -[Term] -id: SCTID:14033005 ! -property_value: IAO:0000589 "deep lymphatic vessel (SCTID)" xsd:string -is_a: UBERON:0035545 ! deep lymphatic vessel - -[Term] -id: SCTID:149683007 ! -property_value: IAO:0000589 "uveal vein (SCTID)" xsd:string -is_a: UBERON:0035546 ! uveal vein - -[Term] -id: SCTID:361319002 ! -property_value: IAO:0000589 "posterior ciliary vein (SCTID)" xsd:string -is_a: UBERON:0035547 ! posterior ciliary vein - -[Term] -id: SCTID:368813004 ! -property_value: IAO:0000589 "posterior ciliary vein (SCTID)" xsd:string -is_a: UBERON:0035547 ! posterior ciliary vein - -[Term] -id: SCTID:77852007 ! -property_value: IAO:0000589 "colic artery (SCTID)" xsd:string -is_a: UBERON:0035548 ! colic artery - -[Term] -id: SCTID:341382008 ! -property_value: IAO:0000589 "superficial vein (SCTID)" xsd:string -is_a: UBERON:0035550 ! superficial vein - -[Term] -id: SCTID:341484008 ! -property_value: IAO:0000589 "deep vein (SCTID)" xsd:string -is_a: UBERON:0035552 ! deep vein - -[Term] -id: SCTID:362008007 ! -property_value: IAO:0000589 "left cardiac chamber (SCTID)" xsd:string -is_a: UBERON:0035553 ! left cardiac chamber - -[Term] -id: SCTID:362007002 ! -property_value: IAO:0000589 "right cardiac chamber (SCTID)" xsd:string -is_a: UBERON:0035554 ! right cardiac chamber - -[Term] -id: SCTID:314725004 ! -property_value: IAO:0000589 "peripharyngeal space (SCTID)" xsd:string -is_a: UBERON:0035617 ! peripharyngeal space - -[Term] -id: SCTID:180439004 ! -property_value: IAO:0000589 "parapharyngeal space (SCTID)" xsd:string -is_a: UBERON:0035618 ! parapharyngeal space - -[Term] -id: SCTID:280190005 ! -property_value: IAO:0000589 "parapharyngeal space (SCTID)" xsd:string -is_a: UBERON:0035618 ! parapharyngeal space - -[Term] -id: SCTID:120612006 ! -property_value: IAO:0000589 "ocular adnexa (SCTID)" xsd:string -is_a: UBERON:0035639 ! ocular adnexa - -[Term] -id: SCTID:307013006 ! -property_value: IAO:0000589 "laryngeal nerve (SCTID)" xsd:string -is_a: UBERON:0035642 ! laryngeal nerve - -[Term] -id: SCTID:280241004 ! -property_value: IAO:0000589 "anterior superior alveolar nerve (SCTID)" xsd:string -is_a: UBERON:0035646 ! anterior superior alveolar nerve - -[Term] -id: SCTID:280277006 ! -property_value: IAO:0000589 "posterior auricular nerve (SCTID)" xsd:string -is_a: UBERON:0035647 ! posterior auricular nerve - -[Term] -id: SCTID:286094009 ! -property_value: IAO:0000589 "paraumbilical vein (SCTID)" xsd:string -is_a: UBERON:0035655 ! paraumbilical vein - -[Term] -id: SCTID:36447007 ! -property_value: IAO:0000589 "peritubular capillary plexus of kidney (SCTID)" xsd:string -is_a: UBERON:0035758 ! peritubular capillary plexus of kidney - -[Term] -id: SCTID:245466000 ! -property_value: IAO:0000589 "median lobe of prostate (SCTID)" xsd:string -is_a: UBERON:0035766 ! median lobe of prostate - -[Term] -id: SCTID:280355009 ! -property_value: IAO:0000589 "coccygeal nerve plexus (SCTID)" xsd:string -is_a: UBERON:0035768 ! coccygeal nerve plexus - -[Term] -id: SCTID:314754005 ! -property_value: IAO:0000589 "mesenteric ganglion (SCTID)" xsd:string -is_a: UBERON:0035769 ! mesenteric ganglion - -[Term] -id: SCTID:362495005 ! -property_value: IAO:0000589 "inferior mesenteric nerve plexus (SCTID)" xsd:string -is_a: UBERON:0035770 ! inferior mesenteric nerve plexus - -[Term] -id: SCTID:314752009 ! -property_value: IAO:0000589 "mesenteric plexus (SCTID)" xsd:string -is_a: UBERON:0035771 ! mesenteric plexus - -[Term] -id: SCTID:362491001 ! -property_value: IAO:0000589 "abdominal nerve plexus (SCTID)" xsd:string -is_a: UBERON:0035773 ! abdominal nerve plexus - -[Term] -id: SCTID:362288003 ! -property_value: IAO:0000589 "extrapyramidal tract system (SCTID)" xsd:string -is_a: UBERON:0035803 ! extrapyramidal tract system - -[Term] -id: SCTID:362400005 ! -property_value: IAO:0000589 "extrapyramidal tract system (SCTID)" xsd:string -is_a: UBERON:0035803 ! extrapyramidal tract system - -[Term] -id: SCTID:304404008 ! -property_value: IAO:0000589 "serous cavity (SCTID)" xsd:string -is_a: UBERON:0035809 ! serous cavity - -[Term] -id: SCTID:42267001 ! -property_value: IAO:0000589 "pericardial fat (SCTID)" xsd:string -is_a: UBERON:0035814 ! pericardial fat - -[Term] -id: SCTID:244271002 ! -property_value: IAO:0000589 "right gastroepiploic artery (SCTID)" xsd:string -is_a: UBERON:0035829 ! right gastroepiploic artery - -[Term] -id: SCTID:244270001 ! -property_value: IAO:0000589 "left gastroepiploic artery (SCTID)" xsd:string -is_a: UBERON:0035830 ! left gastroepiploic artery - -[Term] -id: SCTID:368048007 ! -property_value: IAO:0000589 "costal diaphragm (SCTID)" xsd:string -is_a: UBERON:0035831 ! costal diaphragm - -[Term] -id: SCTID:264843009 ! -property_value: IAO:0000589 "apical region of left ventricle (SCTID)" xsd:string -is_a: UBERON:0035835 ! apical region of left ventricle - -[Term] -id: SCTID:264913008 ! -property_value: IAO:0000589 "apical region of right ventricle (SCTID)" xsd:string -is_a: UBERON:0035836 ! apical region of right ventricle - -[Term] -id: SCTID:410054009 ! -property_value: IAO:0000589 "enthesis (SCTID)" xsd:string -is_a: UBERON:0035845 ! enthesis - -[Term] -id: SCTID:362642002 ! -property_value: IAO:0000589 "infraorbital margin (SCTID)" xsd:string -is_a: UBERON:0035848 ! infraorbital margin - -[Term] -id: SCTID:362641009 ! -property_value: IAO:0000589 "orbital margin (SCTID)" xsd:string -is_a: UBERON:0035849 ! orbital margin - -[Term] -id: SCTID:369052000 ! -property_value: IAO:0000589 "intraculminate fissure of cerebellum (SCTID)" xsd:string -is_a: UBERON:0035922 ! intraculminate fissure of cerebellum - -[Term] -id: SCTID:279308000 ! -property_value: IAO:0000589 "radiation of corpus callosum (SCTID)" xsd:string -is_a: UBERON:0035924 ! radiation of corpus callosum - -[Term] -id: SCTID:279348008 ! -property_value: IAO:0000589 "central sulcus of insula (SCTID)" xsd:string -is_a: UBERON:0035925 ! central sulcus of insula - -[Term] -id: SCTID:314145001 ! -property_value: IAO:0000589 "sulcus of parietal lobe (SCTID)" xsd:string -is_a: UBERON:0035927 ! sulcus of parietal lobe - -[Term] -id: SCTID:279202002 ! -property_value: IAO:0000589 "paracentral lobule (SCTID)" xsd:string -is_a: UBERON:0035933 ! paracentral lobule - -[Term] -id: SCTID:367722009 ! -property_value: IAO:0000589 "epididymal lumen (SCTID)" xsd:string -is_a: UBERON:0035956 ! epididymal lumen - -[Term] -id: SCTID:281086001 ! -property_value: IAO:0000589 "scleral lamina cribrosa (SCTID)" xsd:string -is_a: UBERON:0035966 ! scleral lamina cribrosa - -[Term] -id: SCTID:369271006 ! -property_value: IAO:0000589 "calcar avis of the lateral ventricle (SCTID)" xsd:string -is_a: UBERON:0035970 ! calcar avis of the lateral ventricle - -[Term] -id: SCTID:362679004 ! -property_value: IAO:0000589 "gluteal sulcus (SCTID)" xsd:string -is_a: UBERON:0036014 ! gluteal sulcus - -[Term] -id: SCTID:281511009 ! -property_value: IAO:0000589 "subglottis (SCTID)" xsd:string -is_a: UBERON:0036068 ! subglottis - -[Term] -id: SCTID:280249002 ! -property_value: IAO:0000589 "meningeal branch of mandibular nerve (SCTID)" xsd:string -is_a: UBERON:0036143 ! meningeal branch of mandibular nerve - -[Term] -id: SCTID:181650004 ! -property_value: IAO:0000589 "palmaris brevis (SCTID)" xsd:string -is_a: UBERON:0036172 ! palmaris brevis - -[Term] -id: SCTID:181651000 ! -property_value: IAO:0000589 "abductor digiti minimi of hand (SCTID)" xsd:string -is_a: UBERON:0036173 ! abductor digiti minimi of hand - -[Term] -id: SCTID:181653002 ! -property_value: IAO:0000589 "flexor digiti minimi brevis of hand (SCTID)" xsd:string -is_a: UBERON:0036174 ! flexor digiti minimi brevis of hand - -[Term] -id: SCTID:181652007 ! -property_value: IAO:0000589 "opponens digiti minimi of hand (SCTID)" xsd:string -is_a: UBERON:0036176 ! opponens digiti minimi of hand - -[Term] -id: SCTID:362542005 ! -property_value: IAO:0000589 "intertragic incisure (SCTID)" xsd:string -is_a: UBERON:0036212 ! intertragic incisure - -[Term] -id: SCTID:245429006 ! -property_value: IAO:0000589 "rectosigmoid junction (SCTID)" xsd:string -is_a: UBERON:0036214 ! rectosigmoid junction - -[Term] -id: SCTID:280289008 ! -property_value: IAO:0000589 "tympanic nerve (SCTID)" xsd:string -is_a: UBERON:0036216 ! tympanic nerve - -[Term] -id: SCTID:370753009 ! -property_value: IAO:0000589 "ungulate coronary band (SCTID)" xsd:string -is_a: UBERON:0036219 ! ungulate coronary band - -[Term] -id: SCTID:5695009 ! -property_value: IAO:0000589 "ungulate coronary band (SCTID)" xsd:string -is_a: UBERON:0036219 ! ungulate coronary band - -[Term] -id: SCTID:368962003 ! -property_value: IAO:0000589 "zona pectinata of basilar membrane of cochlea (SCTID)" xsd:string -is_a: UBERON:0036249 ! zona pectinata of basilar membrane of cochlea - -[Term] -id: SCTID:361065006 ! -property_value: IAO:0000589 "zone of basilar membrane of cochlea (SCTID)" xsd:string -is_a: UBERON:0036250 ! zone of basilar membrane of cochlea - -[Term] -id: SCTID:272668006 ! -property_value: IAO:0000589 "uterine ligament (SCTID)" xsd:string -is_a: UBERON:0036262 ! uterine ligament - -[Term] -id: SCTID:361953009 ! -property_value: IAO:0000589 "supraglottic part of larynx (SCTID)" xsd:string -is_a: UBERON:0036263 ! supraglottic part of larynx - -[Term] -id: SCTID:280243001 ! -property_value: IAO:0000589 "zygomaticotemporal nerve (SCTID)" xsd:string -is_a: UBERON:0036264 ! zygomaticotemporal nerve - -[Term] -id: SCTID:280681004 ! -property_value: IAO:0000589 "conjunctival papilla (SCTID)" xsd:string -is_a: UBERON:0036265 ! conjunctival papilla - -[Term] -id: SCTID:705098005 ! -property_value: IAO:0000589 "pars interarticularis of vertebra (SCTID)" xsd:string -is_a: UBERON:0036266 ! pars interarticularis of vertebra - -[Term] -id: SCTID:279975006 ! -property_value: IAO:0000589 "vulval vein (SCTID)" xsd:string -is_a: UBERON:0036267 ! vulval vein - -[Term] -id: SCTID:13152008 ! -property_value: IAO:0000589 "pelvic vein (SCTID)" xsd:string -is_a: UBERON:0036268 ! pelvic vein - -[Term] -id: SCTID:363673006 ! -property_value: IAO:0000589 "penis blood vessel (SCTID)" xsd:string -is_a: UBERON:0036269 ! penis blood vessel - -[Term] -id: SCTID:361373008 ! -property_value: IAO:0000589 "adnexa of uterus (SCTID)" xsd:string -is_a: UBERON:0036292 ! adnexa of uterus - -[Term] -id: SCTID:303771008 ! -property_value: IAO:0000589 "oral frenulum (SCTID)" xsd:string -is_a: UBERON:0036293 ! oral frenulum - -[Term] -id: SCTID:731368004 ! -property_value: IAO:0000589 "tributary of central retinal vein (SCTID)" xsd:string -is_a: UBERON:0036300 ! tributary of central retinal vein - -[Term] -id: SCTID:297287005 ! -property_value: IAO:0000589 "vasculature of spleen (SCTID)" xsd:string -is_a: UBERON:0036301 ! vasculature of spleen - -[Term] -id: SCTID:281593008 ! -property_value: IAO:0000589 "colic lymph node (SCTID)" xsd:string -is_a: UBERON:0039168 ! colic lymph node - -[Term] -id: SCTID:13622004 ! -property_value: IAO:0000589 "dewlap (SCTID)" xsd:string -is_a: UBERON:1000003 ! dewlap - -[Term] -id: SCTID:362616002 ! -property_value: IAO:0000589 "top of head (SCTID)" xsd:string -is_a: UBERON:1000019 ! top of head - -[Term] -id: SCTID:361703006 ! -property_value: IAO:0000589 "skin of face (SCTID)" xsd:string -is_a: UBERON:1000021 ! skin of face - -[Term] -id: SCTID:105587007 ! -property_value: IAO:0000589 "Zymbal's gland (SCTID)" xsd:string -is_a: UBERON:1000022 ! Zymbal's gland - -[Term] -id: SCTID:13515001 ! -property_value: IAO:0000589 "spleen pulp (SCTID)" xsd:string -is_a: UBERON:1000023 ! spleen pulp - -[Term] -id: SCTID:384772005 ! -property_value: IAO:0000589 "Brodmann (1909) area 17 (SCTID)" xsd:string -is_a: UBERON:8440010 ! Brodmann (1909) area 17 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-sctid.owl b/src/ontology/bridge/uberon-bridge-to-sctid.owl index 44a4cc76ef..b459ba92fc 100644 --- a/src/ontology/bridge/uberon-bridge-to-sctid.owl +++ b/src/ontology/bridge/uberon-bridge-to-sctid.owl @@ -7,19 +7,13 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - OBOL - Uberon editors - Rough subclass axioms between SNOMED-CT and Uberon. Note that in SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree. - Uberon bridge to SNOMED-CT - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + OBOL + Uberon editors + Rough subclass axioms between SNOMED-CT and Uberon. Note that SNOMED is not open, unlike other ontologies used in bridges here. Consequently, the mappings here are not verified to the same degree. + Uberon bridge to SNOMED-CT @@ -35,18 +29,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -55,256 +37,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -323,8 +74,7 @@ - Zymbal's gland (SCTID) - SCTID:105587007 + Zymbal's gland (SCTID) @@ -333,8 +83,7 @@ - posterior thoracic air sac (SCTID) - SCTID:10576005 + posterior thoracic air sac (SCTID) @@ -343,8 +92,7 @@ - mandibular lymph node (SCTID) - SCTID:10664000 + mandibular lymph node (SCTID) @@ -353,8 +101,7 @@ - rattle (SCTID) - SCTID:10734004 + rattle (SCTID) @@ -363,8 +110,7 @@ - distal phalanx of pedal digit 5 (SCTID) - SCTID:10770001 + distal phalanx of pedal digit 5 (SCTID) @@ -373,8 +119,7 @@ - tarsal bone (SCTID) - SCTID:108372004 + tarsal bone (SCTID) @@ -383,8 +128,7 @@ - mucosa of bronchiole (SCTID) - SCTID:10887006 + mucosa of bronchiole (SCTID) @@ -393,8 +137,7 @@ - skin gland (SCTID) - SCTID:110485007 + skin gland (SCTID) @@ -403,8 +146,7 @@ - distal epiphysis of phalanx (SCTID) - SCTID:110520001 + distal epiphysis of phalanx (SCTID) @@ -413,8 +155,7 @@ - skull (SCTID) - SCTID:110530005 + skull (SCTID) @@ -423,8 +164,7 @@ - muscle of manus (SCTID) - SCTID:110540008 + muscle of manus (SCTID) @@ -433,8 +173,7 @@ - major calyx (SCTID) - SCTID:1106008 + major calyx (SCTID) @@ -443,8 +182,7 @@ - cud (SCTID) - SCTID:110606000 + cud (SCTID) @@ -453,8 +191,7 @@ - papillary duct (SCTID) - SCTID:110623009 + papillary duct (SCTID) @@ -463,8 +200,7 @@ - fusiform gyrus (SCTID) - SCTID:110678003 + fusiform gyrus (SCTID) @@ -473,8 +209,7 @@ - juxtarestiform body (SCTID) - SCTID:110687007 + juxtarestiform body (SCTID) @@ -483,8 +218,7 @@ - subserosal plexus (SCTID) - SCTID:110699000 + subserosal plexus (SCTID) @@ -493,8 +227,7 @@ - chorioretinal region (SCTID) - SCTID:110701000 + chorioretinal region (SCTID) @@ -503,8 +236,7 @@ - pectoral complex (SCTID) - SCTID:110716002 + pectoral complex (SCTID) @@ -513,8 +245,7 @@ - dental follicle (SCTID) - SCTID:110975002 + dental follicle (SCTID) @@ -523,8 +254,7 @@ - atrioventricular valve (SCTID) - SCTID:11124005 + atrioventricular valve (SCTID) @@ -533,8 +263,7 @@ - sex skin (SCTID) - SCTID:113175000 + sex skin (SCTID) @@ -543,8 +272,7 @@ - abdominal mammary gland (SCTID) - SCTID:113191002 + abdominal mammary gland (SCTID) @@ -553,8 +281,7 @@ - middle phalanx of manus (SCTID) - SCTID:113223004 + middle phalanx of manus (SCTID) @@ -563,8 +290,7 @@ - post-anal tail muscle (SCTID) - SCTID:113230005 + post-anal tail muscle (SCTID) @@ -573,8 +299,7 @@ - synovial joint (SCTID) - SCTID:113234001 + synovial joint (SCTID) @@ -583,8 +308,7 @@ - tunica adventitia of artery (SCTID) - SCTID:113261001 + tunica adventitia of artery (SCTID) @@ -593,8 +317,7 @@ - iliolumbar artery (SCTID) - SCTID:113267002 + iliolumbar artery (SCTID) @@ -603,8 +326,7 @@ - superior vesical artery (SCTID) - SCTID:113268007 + superior vesical artery (SCTID) @@ -613,8 +335,7 @@ - lamina propria of mucosa of colon (SCTID) - SCTID:113284008 + lamina propria of mucosa of colon (SCTID) @@ -623,8 +344,7 @@ - nictitating membrane (SCTID) - SCTID:113326005 + nictitating membrane (SCTID) @@ -633,8 +353,7 @@ - superficial inguinal lymph node (SCTID) - SCTID:113340006 + superficial inguinal lymph node (SCTID) @@ -643,8 +362,7 @@ - organ part (SCTID) - SCTID:113343008 + organ part (SCTID) @@ -653,8 +371,7 @@ - exocrine gland (SCTID) - SCTID:115976003 + exocrine gland (SCTID) @@ -663,8 +380,7 @@ - skin sebaceous gland (SCTID) - SCTID:115977007 + skin sebaceous gland (SCTID) @@ -673,8 +389,7 @@ - stifle joint (SCTID) - SCTID:116010006 + stifle joint (SCTID) @@ -683,8 +398,7 @@ - frontal process of zygomatic bone (SCTID) - SCTID:116353002 + frontal process of zygomatic bone (SCTID) @@ -693,8 +407,7 @@ - left renal vein (SCTID) - SCTID:116356005 + left renal vein (SCTID) @@ -703,8 +416,7 @@ - right renal vein (SCTID) - SCTID:116357001 + right renal vein (SCTID) @@ -713,8 +425,7 @@ - renal vein (SCTID) - SCTID:116358006 + renal vein (SCTID) @@ -723,8 +434,7 @@ - deep circumflex iliac vein (SCTID) - SCTID:11653007 + deep circumflex iliac vein (SCTID) @@ -733,8 +443,7 @@ - pedal digit (SCTID) - SCTID:116667001 + pedal digit (SCTID) @@ -743,8 +452,7 @@ - accessory navicular bone (SCTID) - SCTID:118496000 + accessory navicular bone (SCTID) @@ -753,8 +461,7 @@ - thymus (SCTID) - SCTID:118507000 + thymus (SCTID) @@ -763,8 +470,7 @@ - head bone (SCTID) - SCTID:118646007 + head bone (SCTID) @@ -773,8 +479,7 @@ - crypt of Lieberkuhn (SCTID) - SCTID:118652008 + crypt of Lieberkuhn (SCTID) @@ -783,8 +488,7 @@ - trabecula carnea (SCTID) - SCTID:118755002 + trabecula carnea (SCTID) @@ -793,8 +497,7 @@ - viscus (SCTID) - SCTID:118760003 + viscus (SCTID) @@ -803,8 +506,7 @@ - perichondrium (SCTID) - SCTID:11881003 + perichondrium (SCTID) @@ -813,8 +515,7 @@ - xiphisternal joint (SCTID) - SCTID:118923007 + xiphisternal joint (SCTID) @@ -823,8 +524,7 @@ - xiphisternal joint (SCTID) - SCTID:118924001 + xiphisternal joint (SCTID) @@ -833,8 +533,7 @@ - subdivision of skeletal system (SCTID) - SCTID:118966000 + subdivision of skeletal system (SCTID) @@ -843,8 +542,7 @@ - section of aorta (SCTID) - SCTID:119203005 + section of aorta (SCTID) @@ -853,8 +551,7 @@ - limb of internal capsule of telencephalon (SCTID) - SCTID:119245007 + limb of internal capsule of telencephalon (SCTID) @@ -863,8 +560,7 @@ - primary motor cortex (SCTID) - SCTID:11931008 + primary motor cortex (SCTID) @@ -873,8 +569,7 @@ - zone of hyoid bone (SCTID) - SCTID:119534005 + zone of hyoid bone (SCTID) @@ -883,8 +578,7 @@ - proximal epiphysis of metatarsal bone (SCTID) - SCTID:119545008 + proximal epiphysis of metatarsal bone (SCTID) @@ -893,8 +587,7 @@ - neurocranium bone (SCTID) - SCTID:120229002 + neurocranium bone (SCTID) @@ -903,8 +596,7 @@ - ocular adnexa (SCTID) - SCTID:120612006 + ocular adnexa (SCTID) @@ -913,8 +605,7 @@ - synostosis (SCTID) - SCTID:1216008 + synostosis (SCTID) @@ -923,8 +614,7 @@ - lamina of septum pellucidum (SCTID) - SCTID:12164006 + lamina of septum pellucidum (SCTID) @@ -933,8 +623,7 @@ - nerve plexus (SCTID) - SCTID:122455009 + nerve plexus (SCTID) @@ -943,8 +632,7 @@ - temporal process of zygomatic bone (SCTID) - SCTID:122772003 + temporal process of zygomatic bone (SCTID) @@ -953,8 +641,7 @@ - serosa of duodenum (SCTID) - SCTID:1236009 + serosa of duodenum (SCTID) @@ -963,8 +650,7 @@ - vasculature of eye (SCTID) - SCTID:123846009 + vasculature of eye (SCTID) @@ -973,8 +659,7 @@ - subdivision of head (SCTID) - SCTID:123852005 + subdivision of head (SCTID) @@ -983,8 +668,7 @@ - cervical region (SCTID) - SCTID:123958008 + cervical region (SCTID) @@ -993,8 +677,7 @@ - dorsum (SCTID) - SCTID:123961009 + dorsum (SCTID) @@ -1003,8 +686,7 @@ - vesical vein (SCTID) - SCTID:12683000 + vesical vein (SCTID) @@ -1013,8 +695,7 @@ - cistern of lamina terminalis (SCTID) - SCTID:12692002 + cistern of lamina terminalis (SCTID) @@ -1023,8 +704,7 @@ - ependyma (SCTID) - SCTID:12766003 + ependyma (SCTID) @@ -1033,8 +713,7 @@ - carcass (SCTID) - SCTID:127853004 + carcass (SCTID) @@ -1043,8 +722,7 @@ - ligament of temporomandibular joint (SCTID) - SCTID:127861009 + ligament of temporomandibular joint (SCTID) @@ -1053,8 +731,7 @@ - head blood vessel (SCTID) - SCTID:127865000 + head blood vessel (SCTID) @@ -1063,8 +740,7 @@ - segment of manus (SCTID) - SCTID:127950000 + segment of manus (SCTID) @@ -1073,8 +749,7 @@ - reproductive organ (SCTID) - SCTID:128181006 + reproductive organ (SCTID) @@ -1083,8 +758,7 @@ - respiratory bronchiole (SCTID) - SCTID:128517006 + respiratory bronchiole (SCTID) @@ -1093,8 +767,7 @@ - distal epiphysis of fibula (SCTID) - SCTID:129111008 + distal epiphysis of fibula (SCTID) @@ -1103,8 +776,7 @@ - subdivision of skeleton (SCTID) - SCTID:129140006 + subdivision of skeleton (SCTID) @@ -1113,8 +785,7 @@ - muscle spindle (SCTID) - SCTID:12945004 + muscle spindle (SCTID) @@ -1123,8 +794,7 @@ - pelvic vein (SCTID) - SCTID:13152008 + pelvic vein (SCTID) @@ -1133,8 +803,7 @@ - tunica adventitia of vein (SCTID) - SCTID:13202006 + tunica adventitia of vein (SCTID) @@ -1143,8 +812,7 @@ - occipitomastoid suture (SCTID) - SCTID:134136005 + occipitomastoid suture (SCTID) @@ -1153,8 +821,7 @@ - secondary canine tooth (SCTID) - SCTID:134340007 + secondary canine tooth (SCTID) @@ -1163,8 +830,7 @@ - gland (SCTID) - SCTID:134358001 + gland (SCTID) @@ -1173,8 +839,7 @@ - spleen pulp (SCTID) - SCTID:13515001 + spleen pulp (SCTID) @@ -1183,8 +848,7 @@ - serosa of stomach (SCTID) - SCTID:1353004 + serosa of stomach (SCTID) @@ -1193,8 +857,7 @@ - palatine gland (SCTID) - SCTID:13604002 + palatine gland (SCTID) @@ -1203,8 +866,7 @@ - dewlap (SCTID) - SCTID:13622004 + dewlap (SCTID) @@ -1213,8 +875,7 @@ - squamoparietal suture (SCTID) - SCTID:136248004 + squamoparietal suture (SCTID) @@ -1223,8 +884,7 @@ - sphenofrontal suture (SCTID) - SCTID:136349005 + sphenofrontal suture (SCTID) @@ -1233,8 +893,7 @@ - sphenoparietal suture (SCTID) - SCTID:136551005 + sphenoparietal suture (SCTID) @@ -1243,8 +902,7 @@ - parietomastoid suture (SCTID) - SCTID:136753005 + parietomastoid suture (SCTID) @@ -1253,8 +911,7 @@ - frontal suture (SCTID) - SCTID:136854008 + frontal suture (SCTID) @@ -1263,8 +920,7 @@ - sphenoidal fontanelle (SCTID) - SCTID:136955008 + sphenoidal fontanelle (SCTID) @@ -1273,8 +929,7 @@ - temporal fossa (SCTID) - SCTID:137157009 + temporal fossa (SCTID) @@ -1283,8 +938,7 @@ - glabella region of bone (SCTID) - SCTID:137561005 + glabella region of bone (SCTID) @@ -1293,8 +947,7 @@ - squamous part of temporal bone (SCTID) - SCTID:138672006 + squamous part of temporal bone (SCTID) @@ -1303,8 +956,7 @@ - tympanic plate (SCTID) - SCTID:138773005 + tympanic plate (SCTID) @@ -1313,8 +965,7 @@ - styloid process of temporal bone (SCTID) - SCTID:138874009 + styloid process of temporal bone (SCTID) @@ -1323,8 +974,7 @@ - basioccipital bone (SCTID) - SCTID:138976007 + basioccipital bone (SCTID) @@ -1333,8 +983,7 @@ - squamous part of occipital bone (SCTID) - SCTID:139077005 + squamous part of occipital bone (SCTID) @@ -1343,8 +992,7 @@ - exoccipital bone (SCTID) - SCTID:139279001 + exoccipital bone (SCTID) @@ -1353,8 +1001,7 @@ - hypoglossal canal (SCTID) - SCTID:139380001 + hypoglossal canal (SCTID) @@ -1363,8 +1010,7 @@ - external occipital protuberance (SCTID) - SCTID:139582005 + external occipital protuberance (SCTID) @@ -1373,8 +1019,7 @@ - tuberculum sellae (SCTID) - SCTID:139784008 + tuberculum sellae (SCTID) @@ -1383,8 +1028,7 @@ - deep lymphatic vessel (SCTID) - SCTID:14033005 + deep lymphatic vessel (SCTID) @@ -1393,8 +1037,7 @@ - sphenoid bone pterygoid process (SCTID) - SCTID:140390001 + sphenoid bone pterygoid process (SCTID) @@ -1403,8 +1046,7 @@ - body of sphenoid (SCTID) - SCTID:140491003 + body of sphenoid (SCTID) @@ -1413,8 +1055,7 @@ - vault of skull (SCTID) - SCTID:140592008 + vault of skull (SCTID) @@ -1423,8 +1064,7 @@ - spheno-occipital synchondrosis (SCTID) - SCTID:140895003 + spheno-occipital synchondrosis (SCTID) @@ -1433,8 +1073,7 @@ - levator anguli oris (SCTID) - SCTID:141501002 + levator anguli oris (SCTID) @@ -1443,8 +1082,7 @@ - anterior digastric muscle (SCTID) - SCTID:141804004 + anterior digastric muscle (SCTID) @@ -1453,8 +1091,7 @@ - posterior digastric muscle (SCTID) - SCTID:141905002 + posterior digastric muscle (SCTID) @@ -1463,8 +1100,7 @@ - torus pylorus (SCTID) - SCTID:14214007 + torus pylorus (SCTID) @@ -1473,8 +1109,7 @@ - superficial part of masseter muscle (SCTID) - SCTID:142208007 + superficial part of masseter muscle (SCTID) @@ -1483,8 +1118,7 @@ - deep part of masseter muscle (SCTID) - SCTID:142309002 + deep part of masseter muscle (SCTID) @@ -1493,8 +1127,7 @@ - cecal tonsil (SCTID) - SCTID:14239003 + cecal tonsil (SCTID) @@ -1503,8 +1136,7 @@ - pterygomandibular raphe (SCTID) - SCTID:142713007 + pterygomandibular raphe (SCTID) @@ -1513,8 +1145,7 @@ - tubal tonsil (SCTID) - SCTID:143319002 + tubal tonsil (SCTID) @@ -1523,8 +1154,7 @@ - tonsil crypt (SCTID) - SCTID:143723007 + tonsil crypt (SCTID) @@ -1533,8 +1163,7 @@ - inferior vagus X ganglion (SCTID) - SCTID:14420006 + inferior vagus X ganglion (SCTID) @@ -1543,8 +1172,7 @@ - mucosa of oropharynx (SCTID) - SCTID:144632009 + mucosa of oropharynx (SCTID) @@ -1553,8 +1181,7 @@ - oviduct shell gland (SCTID) - SCTID:14478002 + oviduct shell gland (SCTID) @@ -1563,8 +1190,7 @@ - artery of lower lip (SCTID) - SCTID:145036002 + artery of lower lip (SCTID) @@ -1573,8 +1199,7 @@ - artery of upper lip (SCTID) - SCTID:145137009 + artery of upper lip (SCTID) @@ -1583,8 +1208,7 @@ - ocular angle artery (SCTID) - SCTID:145238006 + ocular angle artery (SCTID) @@ -1593,8 +1217,7 @@ - yellow fibrocartilage (SCTID) - SCTID:1456008 + yellow fibrocartilage (SCTID) @@ -1603,8 +1226,7 @@ - transverse facial artery (SCTID) - SCTID:146551008 + transverse facial artery (SCTID) @@ -1613,8 +1235,7 @@ - zygomatico-orbital artery (SCTID) - SCTID:146753008 + zygomatico-orbital artery (SCTID) @@ -1623,8 +1244,7 @@ - middle temporal artery (SCTID) - SCTID:146854006 + middle temporal artery (SCTID) @@ -1633,8 +1253,7 @@ - deep auricular artery (SCTID) - SCTID:147157007 + deep auricular artery (SCTID) @@ -1643,8 +1262,7 @@ - mental artery (SCTID) - SCTID:147561008 + mental artery (SCTID) @@ -1653,8 +1271,7 @@ - masseteric artery (SCTID) - SCTID:147864007 + masseteric artery (SCTID) @@ -1663,8 +1280,7 @@ - deep temporal artery (SCTID) - SCTID:147965009 + deep temporal artery (SCTID) @@ -1673,8 +1289,7 @@ - buccal artery (SCTID) - SCTID:148066005 + buccal artery (SCTID) @@ -1683,8 +1298,7 @@ - infraorbital artery (SCTID) - SCTID:148167004 + infraorbital artery (SCTID) @@ -1693,8 +1307,7 @@ - caroticotympanic artery (SCTID) - SCTID:148470005 + caroticotympanic artery (SCTID) @@ -1703,8 +1316,7 @@ - palpebral artery (SCTID) - SCTID:148571007 + palpebral artery (SCTID) @@ -1713,8 +1325,7 @@ - labyrinthine artery (SCTID) - SCTID:148672009 + labyrinthine artery (SCTID) @@ -1723,8 +1334,7 @@ - internal pudendal vein (SCTID) - SCTID:14885008 + internal pudendal vein (SCTID) @@ -1733,8 +1343,7 @@ - spiral modiolar artery (SCTID) - SCTID:149380004 + spiral modiolar artery (SCTID) @@ -1743,8 +1352,7 @@ - superior ophthalmic vein (SCTID) - SCTID:149481004 + superior ophthalmic vein (SCTID) @@ -1753,8 +1361,7 @@ - lacrimal vein (SCTID) - SCTID:149582008 + lacrimal vein (SCTID) @@ -1763,8 +1370,7 @@ - uveal vein (SCTID) - SCTID:149683007 + uveal vein (SCTID) @@ -1773,8 +1379,7 @@ - conjunctival vein (SCTID) - SCTID:149885003 + conjunctival vein (SCTID) @@ -1783,8 +1388,7 @@ - inferior ophthalmic vein (SCTID) - SCTID:149986001 + inferior ophthalmic vein (SCTID) @@ -1793,8 +1397,7 @@ - superficial temporal vein (SCTID) - SCTID:150087005 + superficial temporal vein (SCTID) @@ -1803,8 +1406,7 @@ - posterior auricular vein (SCTID) - SCTID:150188002 + posterior auricular vein (SCTID) @@ -1813,8 +1415,7 @@ - retromandibular vein (SCTID) - SCTID:151299003 + retromandibular vein (SCTID) @@ -1823,8 +1424,7 @@ - middle temporal vein (SCTID) - SCTID:151400007 + middle temporal vein (SCTID) @@ -1833,8 +1433,7 @@ - transverse facial vein (SCTID) - SCTID:151501009 + transverse facial vein (SCTID) @@ -1843,8 +1442,7 @@ - anterior auricular vein (SCTID) - SCTID:151602009 + anterior auricular vein (SCTID) @@ -1853,8 +1451,7 @@ - angular vein (SCTID) - SCTID:151804007 + angular vein (SCTID) @@ -1863,8 +1460,7 @@ - supraorbital vein (SCTID) - SCTID:152006005 + supraorbital vein (SCTID) @@ -1873,8 +1469,7 @@ - right lung lower lobe bronchiole (SCTID) - SCTID:15215000 + right lung lower lobe bronchiole (SCTID) @@ -1883,8 +1478,7 @@ - palpebral vein (SCTID) - SCTID:152208004 + palpebral vein (SCTID) @@ -1893,8 +1487,7 @@ - submental vein (SCTID) - SCTID:152309009 + submental vein (SCTID) @@ -1903,8 +1496,7 @@ - lymph node of head (SCTID) - SCTID:155136006 + lymph node of head (SCTID) @@ -1913,8 +1505,7 @@ - anterior intercostal vein (SCTID) - SCTID:15546000 + anterior intercostal vein (SCTID) @@ -1923,8 +1514,7 @@ - cartilaginous neurocranium (SCTID) - SCTID:155540009 + cartilaginous neurocranium (SCTID) @@ -1933,8 +1523,7 @@ - accessory cuneate nucleus (SCTID) - SCTID:15575006 + accessory cuneate nucleus (SCTID) @@ -1943,8 +1532,7 @@ - mucosa of epiglottis (SCTID) - SCTID:156751001 + mucosa of epiglottis (SCTID) @@ -1953,8 +1541,7 @@ - stroma of thyroid gland (SCTID) - SCTID:157862000 + stroma of thyroid gland (SCTID) @@ -1963,8 +1550,7 @@ - primary canine tooth (SCTID) - SCTID:15819002 + primary canine tooth (SCTID) @@ -1973,8 +1559,7 @@ - symphysis (SCTID) - SCTID:1584001 + symphysis (SCTID) @@ -1983,8 +1568,7 @@ - superior bulb of internal jugular vein (SCTID) - SCTID:158945007 + superior bulb of internal jugular vein (SCTID) @@ -1993,8 +1577,7 @@ - inferior bulb of internal jugular vein (SCTID) - SCTID:159029003 + inferior bulb of internal jugular vein (SCTID) @@ -2003,8 +1586,7 @@ - endoneurium (SCTID) - SCTID:15931004 + endoneurium (SCTID) @@ -2013,8 +1595,7 @@ - brown adipose tissue (SCTID) - SCTID:15965003 + brown adipose tissue (SCTID) @@ -2023,8 +1604,7 @@ - right internal carotid artery (SCTID) - SCTID:161251001 + right internal carotid artery (SCTID) @@ -2033,8 +1613,7 @@ - left internal carotid artery (SCTID) - SCTID:161452006 + left internal carotid artery (SCTID) @@ -2043,8 +1622,7 @@ - superficial cervical artery (SCTID) - SCTID:161746006 + superficial cervical artery (SCTID) @@ -2053,8 +1631,7 @@ - ascending cervical artery (SCTID) - SCTID:161846001 + ascending cervical artery (SCTID) @@ -2063,8 +1640,7 @@ - cervical vertebral arch (SCTID) - SCTID:165269004 + cervical vertebral arch (SCTID) @@ -2073,8 +1649,7 @@ - corpus cavernosum clitoridis (SCTID) - SCTID:16657007 + corpus cavernosum clitoridis (SCTID) @@ -2083,8 +1658,7 @@ - pharyngobasilar fascia (SCTID) - SCTID:16675008 + pharyngobasilar fascia (SCTID) @@ -2093,8 +1667,7 @@ - nuchal ligament (SCTID) - SCTID:166962007 + nuchal ligament (SCTID) @@ -2103,8 +1676,7 @@ - retropharyngeal lymph node (SCTID) - SCTID:167263004 + retropharyngeal lymph node (SCTID) @@ -2113,8 +1685,7 @@ - lateral cervical lymph node (SCTID) - SCTID:167763000 + lateral cervical lymph node (SCTID) @@ -2123,8 +1694,7 @@ - buccal mucosa (SCTID) - SCTID:16811007 + buccal mucosa (SCTID) @@ -2133,8 +1703,7 @@ - anterior cervical lymph node (SCTID) - SCTID:168259009 + anterior cervical lymph node (SCTID) @@ -2143,8 +1712,7 @@ - right lobe of thyroid gland (SCTID) - SCTID:170482008 + right lobe of thyroid gland (SCTID) @@ -2153,8 +1721,7 @@ - left lobe of thyroid gland (SCTID) - SCTID:170784008 + left lobe of thyroid gland (SCTID) @@ -2163,8 +1730,7 @@ - scute (SCTID) - SCTID:17148007 + scute (SCTID) @@ -2173,8 +1739,7 @@ - cricopharyngeal ligament (SCTID) - SCTID:172455006 + cricopharyngeal ligament (SCTID) @@ -2183,8 +1748,7 @@ - cricoarytenoid ligament (SCTID) - SCTID:172533001 + cricoarytenoid ligament (SCTID) @@ -2193,8 +1757,7 @@ - urogenital membrane (SCTID) - SCTID:172994001 + urogenital membrane (SCTID) @@ -2203,8 +1766,7 @@ - cervical spinal cord lateral horn (SCTID) - SCTID:174268004 + cervical spinal cord lateral horn (SCTID) @@ -2213,8 +1775,7 @@ - cervical spinal cord ventral horn (SCTID) - SCTID:174363005 + cervical spinal cord ventral horn (SCTID) @@ -2223,8 +1784,7 @@ - apex of cervical spinal cord dorsal horn (SCTID) - SCTID:174452008 + apex of cervical spinal cord dorsal horn (SCTID) @@ -2233,8 +1793,7 @@ - substantia gelatinosa of cervical spinal cord dorsal horn (SCTID) - SCTID:174544008 + substantia gelatinosa of cervical spinal cord dorsal horn (SCTID) @@ -2243,8 +1802,7 @@ - cervical spinal cord white matter (SCTID) - SCTID:174829001 + cervical spinal cord white matter (SCTID) @@ -2253,8 +1811,7 @@ - ventral nerve root of cervical spinal cord (SCTID) - SCTID:174925008 + ventral nerve root of cervical spinal cord (SCTID) @@ -2263,8 +1820,7 @@ - dorsal nerve root of cervical spinal cord (SCTID) - SCTID:175023008 + dorsal nerve root of cervical spinal cord (SCTID) @@ -2273,8 +1829,7 @@ - superficial cervical fascia (SCTID) - SCTID:175208005 + superficial cervical fascia (SCTID) @@ -2283,8 +1838,7 @@ - prevertebral cervical fascia (SCTID) - SCTID:175407002 + prevertebral cervical fascia (SCTID) @@ -2293,8 +1847,7 @@ - vertebral ganglion (SCTID) - SCTID:176596009 + vertebral ganglion (SCTID) @@ -2303,8 +1856,7 @@ - thyroid follicle (SCTID) - SCTID:176685006 + thyroid follicle (SCTID) @@ -2313,8 +1865,7 @@ - capsule of thyroid gland (SCTID) - SCTID:176859009 + capsule of thyroid gland (SCTID) @@ -2323,8 +1874,7 @@ - digastric branch of facial nerve (SCTID) - SCTID:17743006 + digastric branch of facial nerve (SCTID) @@ -2333,8 +1883,7 @@ - liver perisinusoidal space (SCTID) - SCTID:17779003 + liver perisinusoidal space (SCTID) @@ -2343,8 +1892,7 @@ - nasopharyngeal gland (SCTID) - SCTID:178973008 + nasopharyngeal gland (SCTID) @@ -2353,8 +1901,7 @@ - anterior thoracic air sac (SCTID) - SCTID:17911004 + anterior thoracic air sac (SCTID) @@ -2363,8 +1910,7 @@ - roof of nasopharynx (SCTID) - SCTID:179268001 + roof of nasopharynx (SCTID) @@ -2373,8 +1919,7 @@ - distal tarsal bone 2 (SCTID) - SCTID:179512006 + distal tarsal bone 2 (SCTID) @@ -2383,8 +1928,7 @@ - pharyngeal raphe (SCTID) - SCTID:179763009 + pharyngeal raphe (SCTID) @@ -2393,8 +1937,7 @@ - parapharyngeal space (SCTID) - SCTID:180439004 + parapharyngeal space (SCTID) @@ -2403,8 +1946,7 @@ - cavity of pharynx (SCTID) - SCTID:180543003 + cavity of pharynx (SCTID) @@ -2413,8 +1955,7 @@ - ischial spine (SCTID) - SCTID:18074002 + ischial spine (SCTID) @@ -2423,8 +1964,7 @@ - frontal lobe (SCTID) - SCTID:180920004 + frontal lobe (SCTID) @@ -2433,8 +1973,7 @@ - temporal lobe (SCTID) - SCTID:180921000 + temporal lobe (SCTID) @@ -2443,8 +1982,7 @@ - parietal lobe (SCTID) - SCTID:180922007 + parietal lobe (SCTID) @@ -2453,8 +1991,7 @@ - occipital lobe (SCTID) - SCTID:180923002 + occipital lobe (SCTID) @@ -2463,8 +2000,7 @@ - cerebellum (SCTID) - SCTID:180924008 + cerebellum (SCTID) @@ -2473,8 +2009,7 @@ - brainstem (SCTID) - SCTID:180925009 + brainstem (SCTID) @@ -2483,8 +2018,7 @@ - brain ventricle (SCTID) - SCTID:180929003 + brain ventricle (SCTID) @@ -2493,8 +2027,7 @@ - telencephalic ventricle (SCTID) - SCTID:180930008 + telencephalic ventricle (SCTID) @@ -2503,8 +2036,7 @@ - third ventricle (SCTID) - SCTID:180931007 + third ventricle (SCTID) @@ -2513,8 +2045,7 @@ - fourth ventricle (SCTID) - SCTID:180932000 + fourth ventricle (SCTID) @@ -2523,8 +2054,7 @@ - cavum septum pellucidum (SCTID) - SCTID:180933005 + cavum septum pellucidum (SCTID) @@ -2533,8 +2063,7 @@ - olfactory nerve (SCTID) - SCTID:180937006 + olfactory nerve (SCTID) @@ -2543,8 +2072,7 @@ - cranial nerve II (SCTID) - SCTID:180938001 + cranial nerve II (SCTID) @@ -2553,8 +2081,7 @@ - trochlear nerve (SCTID) - SCTID:180939009 + trochlear nerve (SCTID) @@ -2563,8 +2090,7 @@ - abducens nerve (SCTID) - SCTID:180941005 + abducens nerve (SCTID) @@ -2573,8 +2099,7 @@ - vestibulocochlear nerve (SCTID) - SCTID:180945001 + vestibulocochlear nerve (SCTID) @@ -2583,8 +2108,7 @@ - brain meninx (SCTID) - SCTID:180949007 + brain meninx (SCTID) @@ -2593,8 +2117,7 @@ - spinal cord (SCTID) - SCTID:180959008 + spinal cord (SCTID) @@ -2603,8 +2126,7 @@ - cervical spinal cord (SCTID) - SCTID:180960003 + cervical spinal cord (SCTID) @@ -2613,8 +2135,7 @@ - dorsal horn of spinal cord (SCTID) - SCTID:180961004 + dorsal horn of spinal cord (SCTID) @@ -2623,8 +2144,7 @@ - lumbar spinal cord (SCTID) - SCTID:180962006 + lumbar spinal cord (SCTID) @@ -2633,8 +2153,7 @@ - root of cervical nerve (SCTID) - SCTID:180966009 + root of cervical nerve (SCTID) @@ -2643,8 +2162,7 @@ - root of lumbar spinal nerve (SCTID) - SCTID:180968005 + root of lumbar spinal nerve (SCTID) @@ -2653,8 +2171,7 @@ - brachial nerve plexus (SCTID) - SCTID:181002002 + brachial nerve plexus (SCTID) @@ -2663,8 +2180,7 @@ - axillary nerve (SCTID) - SCTID:181009006 + axillary nerve (SCTID) @@ -2673,8 +2189,7 @@ - median nerve (SCTID) - SCTID:181010001 + median nerve (SCTID) @@ -2683,8 +2198,7 @@ - radial nerve (SCTID) - SCTID:181011002 + radial nerve (SCTID) @@ -2693,8 +2207,7 @@ - ulnar nerve (SCTID) - SCTID:181012009 + ulnar nerve (SCTID) @@ -2703,8 +2216,7 @@ - digit nerve of manus (SCTID) - SCTID:181015006 + digit nerve of manus (SCTID) @@ -2713,8 +2225,7 @@ - musculocutaneous nerve (SCTID) - SCTID:181019000 + musculocutaneous nerve (SCTID) @@ -2723,8 +2234,7 @@ - infraclavicular region (SCTID) - SCTID:181036008 + infraclavicular region (SCTID) @@ -2733,8 +2243,7 @@ - lumbosacral nerve plexus (SCTID) - SCTID:181049003 + lumbosacral nerve plexus (SCTID) @@ -2743,8 +2252,7 @@ - sciatic nerve (SCTID) - SCTID:181050003 + sciatic nerve (SCTID) @@ -2753,8 +2261,7 @@ - femoral nerve (SCTID) - SCTID:181051004 + femoral nerve (SCTID) @@ -2763,8 +2270,7 @@ - obturator nerve (SCTID) - SCTID:181052006 + obturator nerve (SCTID) @@ -2773,8 +2279,7 @@ - sacral nerve plexus (SCTID) - SCTID:181056009 + sacral nerve plexus (SCTID) @@ -2783,8 +2288,7 @@ - pudendal nerve (SCTID) - SCTID:181057000 + pudendal nerve (SCTID) @@ -2793,8 +2297,7 @@ - hypogastric nerve (SCTID) - SCTID:181061006 + hypogastric nerve (SCTID) @@ -2803,8 +2306,7 @@ - sural nerve (SCTID) - SCTID:181073006 + sural nerve (SCTID) @@ -2813,8 +2315,7 @@ - plantar nerve (SCTID) - SCTID:181074000 + plantar nerve (SCTID) @@ -2823,8 +2324,7 @@ - common fibular nerve (SCTID) - SCTID:181077007 + common fibular nerve (SCTID) @@ -2833,8 +2333,7 @@ - tibial nerve (SCTID) - SCTID:181078002 + tibial nerve (SCTID) @@ -2843,8 +2342,7 @@ - saphenous nerve (SCTID) - SCTID:181079005 + saphenous nerve (SCTID) @@ -2853,8 +2351,7 @@ - superficial fibular nerve (SCTID) - SCTID:181080008 + superficial fibular nerve (SCTID) @@ -2863,8 +2360,7 @@ - deep fibular nerve (SCTID) - SCTID:181081007 + deep fibular nerve (SCTID) @@ -2873,8 +2369,7 @@ - medial plantar nerve (SCTID) - SCTID:181082000 + medial plantar nerve (SCTID) @@ -2883,8 +2378,7 @@ - lateral plantar nerve (SCTID) - SCTID:181083005 + lateral plantar nerve (SCTID) @@ -2893,8 +2387,7 @@ - meninx of spinal cord (SCTID) - SCTID:181097002 + meninx of spinal cord (SCTID) @@ -2903,8 +2396,7 @@ - sympathetic nerve (SCTID) - SCTID:181098007 + sympathetic nerve (SCTID) @@ -2913,8 +2405,7 @@ - sympathetic trunk (SCTID) - SCTID:181099004 + sympathetic trunk (SCTID) @@ -2923,8 +2414,7 @@ - cervical ganglion (SCTID) - SCTID:181100007 + cervical ganglion (SCTID) @@ -2933,8 +2423,7 @@ - cervicothoracic ganglion (SCTID) - SCTID:181101006 + cervicothoracic ganglion (SCTID) @@ -2943,8 +2432,7 @@ - thoracic ganglion (SCTID) - SCTID:181102004 + thoracic ganglion (SCTID) @@ -2953,8 +2441,7 @@ - cervical nerve plexus (SCTID) - SCTID:181107005 + cervical nerve plexus (SCTID) @@ -2963,8 +2450,7 @@ - great auricular nerve (SCTID) - SCTID:181110003 + great auricular nerve (SCTID) @@ -2973,8 +2459,7 @@ - thyroid gland (SCTID) - SCTID:181117000 + thyroid gland (SCTID) @@ -2983,8 +2468,7 @@ - parathyroid gland (SCTID) - SCTID:181121007 + parathyroid gland (SCTID) @@ -2993,8 +2477,7 @@ - pituitary gland (SCTID) - SCTID:181125003 + pituitary gland (SCTID) @@ -3003,8 +2486,7 @@ - pineal body (SCTID) - SCTID:181126002 + pineal body (SCTID) @@ -3013,8 +2495,7 @@ - adrenal gland (SCTID) - SCTID:181127006 + adrenal gland (SCTID) @@ -3023,8 +2504,7 @@ - breast (SCTID) - SCTID:181131000 + breast (SCTID) @@ -3033,8 +2513,7 @@ - upper inner quadrant of breast (SCTID) - SCTID:181132007 + upper inner quadrant of breast (SCTID) @@ -3043,8 +2522,7 @@ - upper outer quadrant of breast (SCTID) - SCTID:181134008 + upper outer quadrant of breast (SCTID) @@ -3053,8 +2531,7 @@ - lower inner quadrant of breast (SCTID) - SCTID:181135009 + lower inner quadrant of breast (SCTID) @@ -3063,8 +2540,7 @@ - lower outer quadrant of breast (SCTID) - SCTID:181136005 + lower outer quadrant of breast (SCTID) @@ -3073,8 +2549,7 @@ - axillary tail of breast (SCTID) - SCTID:181137001 + axillary tail of breast (SCTID) @@ -3083,8 +2558,7 @@ - camera-type eye (SCTID) - SCTID:181143004 + camera-type eye (SCTID) @@ -3093,8 +2567,7 @@ - canthus (SCTID) - SCTID:181145006 + canthus (SCTID) @@ -3103,8 +2576,7 @@ - lacrimal gland (SCTID) - SCTID:181147003 + lacrimal gland (SCTID) @@ -3113,8 +2585,7 @@ - extra-ocular muscle (SCTID) - SCTID:181150000 + extra-ocular muscle (SCTID) @@ -3123,8 +2594,7 @@ - medial rectus extraocular muscle (SCTID) - SCTID:181151001 + medial rectus extraocular muscle (SCTID) @@ -3133,8 +2603,7 @@ - lateral rectus extra-ocular muscle (SCTID) - SCTID:181152008 + lateral rectus extra-ocular muscle (SCTID) @@ -3143,8 +2612,7 @@ - superior rectus extraocular muscle (SCTID) - SCTID:181153003 + superior rectus extraocular muscle (SCTID) @@ -3153,8 +2621,7 @@ - inferior rectus extraocular muscle (SCTID) - SCTID:181154009 + inferior rectus extraocular muscle (SCTID) @@ -3163,8 +2630,7 @@ - superior oblique extraocular muscle (SCTID) - SCTID:181155005 + superior oblique extraocular muscle (SCTID) @@ -3173,8 +2639,7 @@ - inferior oblique extraocular muscle (SCTID) - SCTID:181156006 + inferior oblique extraocular muscle (SCTID) @@ -3183,8 +2648,7 @@ - anterior chamber of eyeball (SCTID) - SCTID:181160009 + anterior chamber of eyeball (SCTID) @@ -3193,8 +2657,7 @@ - conjunctiva (SCTID) - SCTID:181161008 + conjunctiva (SCTID) @@ -3203,8 +2666,7 @@ - cornea (SCTID) - SCTID:181162001 + cornea (SCTID) @@ -3213,8 +2675,7 @@ - sclera (SCTID) - SCTID:181163006 + sclera (SCTID) @@ -3223,8 +2684,7 @@ - iris (SCTID) - SCTID:181164000 + iris (SCTID) @@ -3233,8 +2693,7 @@ - lens of camera-type eye (SCTID) - SCTID:181169005 + lens of camera-type eye (SCTID) @@ -3243,8 +2702,7 @@ - vitreous body (SCTID) - SCTID:181170006 + vitreous body (SCTID) @@ -3253,8 +2711,7 @@ - retina (SCTID) - SCTID:181171005 + retina (SCTID) @@ -3263,8 +2720,7 @@ - optic choroid (SCTID) - SCTID:181172003 + optic choroid (SCTID) @@ -3273,8 +2729,7 @@ - external acoustic meatus (SCTID) - SCTID:181178004 + external acoustic meatus (SCTID) @@ -3283,8 +2738,7 @@ - tympanic membrane (SCTID) - SCTID:181180005 + tympanic membrane (SCTID) @@ -3293,8 +2747,7 @@ - auditory ossicle bone (SCTID) - SCTID:181184001 + auditory ossicle bone (SCTID) @@ -3303,8 +2756,7 @@ - middle ear (SCTID) - SCTID:181185000 + middle ear (SCTID) @@ -3313,20 +2765,7 @@ - cochlea (SCTID) - SCTID:181187008 - - - - - - - - - - osseus labyrinth vestibule (SCTID) - vestibular labyrinth (SCTID) - SCTID:181188003 + cochlea (SCTID) @@ -3335,8 +2774,7 @@ - internal ear (SCTID) - SCTID:181189006 + internal ear (SCTID) @@ -3345,8 +2783,7 @@ - nose (SCTID) - SCTID:181195007 + nose (SCTID) @@ -3355,8 +2792,7 @@ - nasal septum (SCTID) - SCTID:181197004 + nasal septum (SCTID) @@ -3365,8 +2801,7 @@ - pharyngeal tonsil (SCTID) - SCTID:181199001 + pharyngeal tonsil (SCTID) @@ -3375,8 +2810,7 @@ - nasopharynx (SCTID) - SCTID:181200003 + nasopharynx (SCTID) @@ -3385,8 +2819,7 @@ - paranasal sinus (SCTID) - SCTID:181203001 + paranasal sinus (SCTID) @@ -3395,8 +2828,7 @@ - maxillary sinus (SCTID) - SCTID:181204007 + maxillary sinus (SCTID) @@ -3405,8 +2837,7 @@ - frontal sinus (SCTID) - SCTID:181205008 + frontal sinus (SCTID) @@ -3415,8 +2846,7 @@ - ethmoid sinus (SCTID) - SCTID:181206009 + ethmoid sinus (SCTID) @@ -3425,8 +2855,7 @@ - sphenoidal sinus (SCTID) - SCTID:181207000 + sphenoidal sinus (SCTID) @@ -3435,8 +2864,7 @@ - chordate pharynx (SCTID) - SCTID:181211006 + chordate pharynx (SCTID) @@ -3445,8 +2873,7 @@ - larynx (SCTID) - SCTID:181212004 + larynx (SCTID) @@ -3455,8 +2882,7 @@ - trachea (SCTID) - SCTID:181213009 + trachea (SCTID) @@ -3465,8 +2891,7 @@ - carina of trachea (SCTID) - SCTID:181214003 + carina of trachea (SCTID) @@ -3475,8 +2900,7 @@ - bronchus (SCTID) - SCTID:181215002 + bronchus (SCTID) @@ -3485,8 +2909,7 @@ - lung (SCTID) - SCTID:181216001 + lung (SCTID) @@ -3495,8 +2918,7 @@ - mediastinum (SCTID) - SCTID:181217005 + mediastinum (SCTID) @@ -3505,8 +2927,7 @@ - oral cavity (SCTID) - SCTID:181220002 + oral cavity (SCTID) @@ -3515,8 +2936,7 @@ - lip (SCTID) - SCTID:181221003 + lip (SCTID) @@ -3525,8 +2945,7 @@ - molar tooth 3 (SCTID) - SCTID:181222005 + molar tooth 3 (SCTID) @@ -3535,8 +2954,7 @@ - gingiva (SCTID) - SCTID:181224006 + gingiva (SCTID) @@ -3545,8 +2963,7 @@ - tongue (SCTID) - SCTID:181226008 + tongue (SCTID) @@ -3555,8 +2972,7 @@ - secondary palate (SCTID) - SCTID:181227004 + secondary palate (SCTID) @@ -3565,8 +2981,7 @@ - parotid gland (SCTID) - SCTID:181234002 + parotid gland (SCTID) @@ -3575,8 +2990,7 @@ - submandibular gland (SCTID) - SCTID:181235001 + submandibular gland (SCTID) @@ -3585,8 +2999,7 @@ - saliva-secreting gland (SCTID) - SCTID:181236000 + saliva-secreting gland (SCTID) @@ -3595,8 +3008,7 @@ - submandibular duct (SCTID) - SCTID:181237009 + submandibular duct (SCTID) @@ -3605,8 +3017,7 @@ - duct of salivary gland (SCTID) - SCTID:181238004 + duct of salivary gland (SCTID) @@ -3615,8 +3026,7 @@ - upper digestive tract (SCTID) - SCTID:181244000 + upper digestive tract (SCTID) @@ -3625,8 +3035,7 @@ - esophagus (SCTID) - SCTID:181245004 + esophagus (SCTID) @@ -3635,8 +3044,7 @@ - stomach (SCTID) - SCTID:181246003 + stomach (SCTID) @@ -3645,8 +3053,7 @@ - duodenum (SCTID) - SCTID:181247007 + duodenum (SCTID) @@ -3655,8 +3062,7 @@ - jejunum (SCTID) - SCTID:181248002 + jejunum (SCTID) @@ -3665,8 +3071,7 @@ - ileum (SCTID) - SCTID:181249005 + ileum (SCTID) @@ -3675,8 +3080,7 @@ - small intestine (SCTID) - SCTID:181250005 + small intestine (SCTID) @@ -3685,8 +3089,7 @@ - large intestine (SCTID) - SCTID:181254001 + large intestine (SCTID) @@ -3695,8 +3098,7 @@ - vermiform appendix (SCTID) - SCTID:181255000 + vermiform appendix (SCTID) @@ -3705,8 +3107,7 @@ - caecum (SCTID) - SCTID:181256004 + caecum (SCTID) @@ -3715,8 +3116,7 @@ - rectum (SCTID) - SCTID:181261002 + rectum (SCTID) @@ -3725,8 +3125,7 @@ - anus (SCTID) - SCTID:181262009 + anus (SCTID) @@ -3735,8 +3134,7 @@ - biliary tree (SCTID) - SCTID:181267003 + biliary tree (SCTID) @@ -3745,8 +3143,7 @@ - liver (SCTID) - SCTID:181268008 + liver (SCTID) @@ -3755,8 +3152,7 @@ - gallbladder (SCTID) - SCTID:181269000 + gallbladder (SCTID) @@ -3765,8 +3161,7 @@ - sphincter of hepatopancreatic ampulla (SCTID) - SCTID:181271000 + sphincter of hepatopancreatic ampulla (SCTID) @@ -3775,8 +3170,7 @@ - major duodenal papilla (SCTID) - SCTID:181272007 + major duodenal papilla (SCTID) @@ -3785,8 +3179,7 @@ - pancreas (SCTID) - SCTID:181277001 + pancreas (SCTID) @@ -3795,8 +3188,7 @@ - pancreatic duct (SCTID) - SCTID:181278006 + pancreatic duct (SCTID) @@ -3805,8 +3197,7 @@ - spleen (SCTID) - SCTID:181279003 + spleen (SCTID) @@ -3815,8 +3206,7 @@ - cardiac valve (SCTID) - SCTID:181285005 + cardiac valve (SCTID) @@ -3825,8 +3215,7 @@ - mitral valve (SCTID) - SCTID:181286006 + mitral valve (SCTID) @@ -3835,8 +3224,7 @@ - aortic valve (SCTID) - SCTID:181287002 + aortic valve (SCTID) @@ -3845,8 +3233,7 @@ - tricuspid valve (SCTID) - SCTID:181288007 + tricuspid valve (SCTID) @@ -3855,8 +3242,7 @@ - pulmonary valve (SCTID) - SCTID:181289004 + pulmonary valve (SCTID) @@ -3865,8 +3251,7 @@ - coronary artery (SCTID) - SCTID:181294004 + coronary artery (SCTID) @@ -3875,8 +3260,7 @@ - pericardium (SCTID) - SCTID:181295003 + pericardium (SCTID) @@ -3885,8 +3269,7 @@ - aorta (SCTID) - SCTID:181298001 + aorta (SCTID) @@ -3895,8 +3278,7 @@ - ascending aorta (SCTID) - SCTID:181299009 + ascending aorta (SCTID) @@ -3905,8 +3287,7 @@ - arch of aorta (SCTID) - SCTID:181300001 + arch of aorta (SCTID) @@ -3915,8 +3296,7 @@ - descending thoracic aorta (SCTID) - SCTID:181301002 + descending thoracic aorta (SCTID) @@ -3925,8 +3305,7 @@ - cerebral artery (SCTID) - SCTID:181308008 + cerebral artery (SCTID) @@ -3935,8 +3314,7 @@ - anterior cerebral artery (SCTID) - SCTID:181309000 + anterior cerebral artery (SCTID) @@ -3945,8 +3323,7 @@ - ophthalmic artery (SCTID) - SCTID:181310005 + ophthalmic artery (SCTID) @@ -3955,8 +3332,7 @@ - anterior communicating artery (SCTID) - SCTID:181311009 + anterior communicating artery (SCTID) @@ -3965,8 +3341,7 @@ - middle cerebral artery (SCTID) - SCTID:181312002 + middle cerebral artery (SCTID) @@ -3975,8 +3350,7 @@ - posterior cerebral artery (SCTID) - SCTID:181313007 + posterior cerebral artery (SCTID) @@ -3985,8 +3359,7 @@ - posterior communicating artery (SCTID) - SCTID:181314001 + posterior communicating artery (SCTID) @@ -3995,8 +3368,7 @@ - axillary artery (SCTID) - SCTID:181321001 + axillary artery (SCTID) @@ -4005,8 +3377,7 @@ - brachial artery (SCTID) - SCTID:181322008 + brachial artery (SCTID) @@ -4015,8 +3386,7 @@ - vertebral artery (SCTID) - SCTID:181323003 + vertebral artery (SCTID) @@ -4025,8 +3395,7 @@ - superficial temporal artery (SCTID) - SCTID:181325005 + superficial temporal artery (SCTID) @@ -4035,8 +3404,7 @@ - maxillary artery (SCTID) - SCTID:181326006 + maxillary artery (SCTID) @@ -4045,8 +3413,7 @@ - lingual artery (SCTID) - SCTID:181327002 + lingual artery (SCTID) @@ -4055,8 +3422,7 @@ - facial artery (SCTID) - SCTID:181328007 + facial artery (SCTID) @@ -4065,8 +3431,7 @@ - anterior spinal artery (SCTID) - SCTID:181329004 + anterior spinal artery (SCTID) @@ -4075,8 +3440,7 @@ - posterior spinal artery (SCTID) - SCTID:181330009 + posterior spinal artery (SCTID) @@ -4085,8 +3449,7 @@ - radial artery (SCTID) - SCTID:181332001 + radial artery (SCTID) @@ -4095,8 +3458,7 @@ - ulnar artery (SCTID) - SCTID:181333006 + ulnar artery (SCTID) @@ -4105,8 +3467,7 @@ - digital artery (SCTID) - SCTID:181335004 + digital artery (SCTID) @@ -4115,8 +3476,7 @@ - renal artery (SCTID) - SCTID:181339005 + renal artery (SCTID) @@ -4125,8 +3485,7 @@ - celiac artery (SCTID) - SCTID:181340007 + celiac artery (SCTID) @@ -4135,8 +3494,7 @@ - inferior mesenteric artery (SCTID) - SCTID:181341006 + inferior mesenteric artery (SCTID) @@ -4145,8 +3503,7 @@ - suprarenal artery (SCTID) - SCTID:181342004 + suprarenal artery (SCTID) @@ -4155,8 +3512,7 @@ - internal iliac artery (SCTID) - SCTID:181346001 + internal iliac artery (SCTID) @@ -4165,8 +3521,7 @@ - deep femoral artery (SCTID) - SCTID:181348000 + deep femoral artery (SCTID) @@ -4175,8 +3530,7 @@ - popliteal artery (SCTID) - SCTID:181350008 + popliteal artery (SCTID) @@ -4185,8 +3539,7 @@ - right hepatic vein (SCTID) - SCTID:18135006 + right hepatic vein (SCTID) @@ -4195,8 +3548,7 @@ - tibial artery (SCTID) - SCTID:181351007 + tibial artery (SCTID) @@ -4205,8 +3557,7 @@ - external iliac artery (SCTID) - SCTID:181352000 + external iliac artery (SCTID) @@ -4215,8 +3566,7 @@ - deep circumflex iliac artery (SCTID) - SCTID:181353005 + deep circumflex iliac artery (SCTID) @@ -4225,8 +3575,7 @@ - superior gluteal artery (SCTID) - SCTID:181354004 + superior gluteal artery (SCTID) @@ -4235,8 +3584,7 @@ - anterior tibial artery (SCTID) - SCTID:181357006 + anterior tibial artery (SCTID) @@ -4245,8 +3593,7 @@ - posterior tibial artery (SCTID) - SCTID:181358001 + posterior tibial artery (SCTID) @@ -4255,8 +3602,7 @@ - peroneal artery (SCTID) - SCTID:181359009 + peroneal artery (SCTID) @@ -4265,8 +3611,7 @@ - medial plantar artery (SCTID) - SCTID:181360004 + medial plantar artery (SCTID) @@ -4275,8 +3620,7 @@ - dorsalis pedis artery (SCTID) - SCTID:181362007 + dorsalis pedis artery (SCTID) @@ -4285,8 +3629,7 @@ - vein (SCTID) - SCTID:181367001 + vein (SCTID) @@ -4295,8 +3638,7 @@ - anterior vena cava (SCTID) - SCTID:181368006 + anterior vena cava (SCTID) @@ -4305,8 +3647,7 @@ - posterior vena cava (SCTID) - SCTID:181369003 + posterior vena cava (SCTID) @@ -4315,8 +3656,7 @@ - brachiocephalic vein (SCTID) - SCTID:181371003 + brachiocephalic vein (SCTID) @@ -4325,8 +3665,7 @@ - internal jugular vein (SCTID) - SCTID:181372005 + internal jugular vein (SCTID) @@ -4335,8 +3674,7 @@ - external jugular vein (SCTID) - SCTID:181373000 + external jugular vein (SCTID) @@ -4345,8 +3683,7 @@ - facial vein (SCTID) - SCTID:181374006 + facial vein (SCTID) @@ -4355,8 +3692,7 @@ - lingual vein (SCTID) - SCTID:181375007 + lingual vein (SCTID) @@ -4365,8 +3701,7 @@ - spinal vein (SCTID) - SCTID:181376008 + spinal vein (SCTID) @@ -4375,8 +3710,7 @@ - pulmonary artery (SCTID) - SCTID:181380003 + pulmonary artery (SCTID) @@ -4385,8 +3719,7 @@ - jugular body (SCTID) - SCTID:181381004 + jugular body (SCTID) @@ -4395,8 +3728,7 @@ - subclavian vein (SCTID) - SCTID:181388005 + subclavian vein (SCTID) @@ -4405,8 +3737,7 @@ - axillary vein (SCTID) - SCTID:181389002 + axillary vein (SCTID) @@ -4415,8 +3746,7 @@ - brachial vein (SCTID) - SCTID:181390006 + brachial vein (SCTID) @@ -4425,8 +3755,7 @@ - cephalic vein (SCTID) - SCTID:181391005 + cephalic vein (SCTID) @@ -4435,8 +3764,7 @@ - median basilic vein (SCTID) - SCTID:181392003 + median basilic vein (SCTID) @@ -4445,8 +3773,7 @@ - basilic vein (SCTID) - SCTID:181393008 + basilic vein (SCTID) @@ -4455,8 +3782,7 @@ - common iliac vein (SCTID) - SCTID:181398004 + common iliac vein (SCTID) @@ -4465,8 +3791,7 @@ - internal iliac vein (SCTID) - SCTID:181399007 + internal iliac vein (SCTID) @@ -4475,8 +3800,7 @@ - external iliac vein (SCTID) - SCTID:181400000 + external iliac vein (SCTID) @@ -4485,8 +3809,7 @@ - great saphenous vein (SCTID) - SCTID:181402008 + great saphenous vein (SCTID) @@ -4495,8 +3818,7 @@ - small saphenous vein (SCTID) - SCTID:181404009 + small saphenous vein (SCTID) @@ -4505,20 +3827,7 @@ - upper urinary tract (SCTID) - SCTID:181413006 - - - - - - - - - - adult mammalian kidney (SCTID) - kidney (SCTID) - SCTID:181414000 + upper urinary tract (SCTID) @@ -4527,8 +3836,7 @@ - ureteral orifice (SCTID) - SCTID:181415004 + ureteral orifice (SCTID) @@ -4537,8 +3845,7 @@ - lower urinary tract (SCTID) - SCTID:181420004 + lower urinary tract (SCTID) @@ -4547,8 +3854,7 @@ - prostate gland (SCTID) - SCTID:181422007 + prostate gland (SCTID) @@ -4557,8 +3863,7 @@ - urethral meatus (SCTID) - SCTID:181424008 + urethral meatus (SCTID) @@ -4567,8 +3872,7 @@ - prepuce of penis (SCTID) - SCTID:181426005 + prepuce of penis (SCTID) @@ -4577,8 +3881,7 @@ - testis (SCTID) - SCTID:181431007 + testis (SCTID) @@ -4587,8 +3890,7 @@ - epididymis (SCTID) - SCTID:181432000 + epididymis (SCTID) @@ -4597,8 +3899,7 @@ - spermatic cord (SCTID) - SCTID:181433005 + spermatic cord (SCTID) @@ -4607,8 +3908,7 @@ - seminal vesicle (SCTID) - SCTID:181434004 + seminal vesicle (SCTID) @@ -4617,8 +3917,7 @@ - vagina (SCTID) - SCTID:181441005 + vagina (SCTID) @@ -4627,8 +3926,7 @@ - clitoris (SCTID) - SCTID:181442003 + clitoris (SCTID) @@ -4637,8 +3935,7 @@ - vestibule of vagina (SCTID) - SCTID:181446000 + vestibule of vagina (SCTID) @@ -4647,8 +3944,7 @@ - Douglas' pouch (SCTID) - SCTID:181447009 + Douglas' pouch (SCTID) @@ -4657,8 +3953,7 @@ - uterus (SCTID) - SCTID:181452004 + uterus (SCTID) @@ -4667,8 +3962,7 @@ - uterine cervix (SCTID) - SCTID:181453009 + uterine cervix (SCTID) @@ -4677,8 +3971,7 @@ - placenta (SCTID) - SCTID:181455002 + placenta (SCTID) @@ -4687,8 +3980,7 @@ - amnion (SCTID) - SCTID:181457005 + amnion (SCTID) @@ -4697,8 +3989,7 @@ - fallopian tube (SCTID) - SCTID:181463001 + fallopian tube (SCTID) @@ -4707,8 +3998,7 @@ - ovary (SCTID) - SCTID:181464007 + ovary (SCTID) @@ -4717,8 +4007,7 @@ - skin of body (SCTID) - SCTID:181469002 + skin of body (SCTID) @@ -4727,8 +4016,7 @@ - skin of cheek (SCTID) - SCTID:181472009 + skin of cheek (SCTID) @@ -4737,8 +4025,7 @@ - scalp (SCTID) - SCTID:181480002 + scalp (SCTID) @@ -4747,8 +4034,7 @@ - skin of front of neck (SCTID) - SCTID:181482005 + skin of front of neck (SCTID) @@ -4757,8 +4043,7 @@ - skin of head (SCTID) - SCTID:181484006 + skin of head (SCTID) @@ -4767,8 +4052,7 @@ - skin of trunk (SCTID) - SCTID:181489001 + skin of trunk (SCTID) @@ -4777,8 +4061,7 @@ - skin of back (SCTID) - SCTID:181492002 + skin of back (SCTID) @@ -4787,8 +4070,7 @@ - skin of chest (SCTID) - SCTID:181496004 + skin of chest (SCTID) @@ -4797,8 +4079,7 @@ - skin of pelvis (SCTID) - SCTID:181517009 + skin of pelvis (SCTID) @@ -4807,8 +4088,7 @@ - skin of hip (SCTID) - SCTID:181518004 + skin of hip (SCTID) @@ -4817,8 +4097,7 @@ - perianal skin (SCTID) - SCTID:181522009 + perianal skin (SCTID) @@ -4827,8 +4106,7 @@ - skin of manus (SCTID) - SCTID:181527003 + skin of manus (SCTID) @@ -4837,8 +4115,7 @@ - hindlimb skin (SCTID) - SCTID:181528008 + hindlimb skin (SCTID) @@ -4847,8 +4124,7 @@ - skin of pes (SCTID) - SCTID:181529000 + skin of pes (SCTID) @@ -4857,8 +4133,7 @@ - pedal digit skin (SCTID) - SCTID:181530005 + pedal digit skin (SCTID) @@ -4867,8 +4142,7 @@ - upper arm skin (SCTID) - SCTID:181531009 + upper arm skin (SCTID) @@ -4877,8 +4151,7 @@ - skin of elbow (SCTID) - SCTID:181534001 + skin of elbow (SCTID) @@ -4887,8 +4160,7 @@ - skin of forearm (SCTID) - SCTID:181537008 + skin of forearm (SCTID) @@ -4897,8 +4169,7 @@ - skin of wrist (SCTID) - SCTID:181540008 + skin of wrist (SCTID) @@ -4907,8 +4178,7 @@ - skin of palm of manus (SCTID) - SCTID:181544004 + skin of palm of manus (SCTID) @@ -4917,8 +4187,7 @@ - upper leg skin (SCTID) - SCTID:181547006 + upper leg skin (SCTID) @@ -4927,8 +4196,7 @@ - skin of knee (SCTID) - SCTID:181552001 + skin of knee (SCTID) @@ -4937,8 +4205,7 @@ - skin of ankle (SCTID) - SCTID:181560000 + skin of ankle (SCTID) @@ -4947,8 +4214,7 @@ - skin of sole of pes (SCTID) - SCTID:181566006 + skin of sole of pes (SCTID) @@ -4957,8 +4223,7 @@ - nail bed (SCTID) - SCTID:181578005 + nail bed (SCTID) @@ -4967,8 +4232,7 @@ - nail of manual digit 2 (SCTID) - SCTID:181580004 + nail of manual digit 2 (SCTID) @@ -4977,8 +4241,7 @@ - nail of manual digit 3 (SCTID) - SCTID:181581000 + nail of manual digit 3 (SCTID) @@ -4987,8 +4250,7 @@ - nail of manual digit 4 (SCTID) - SCTID:181582007 + nail of manual digit 4 (SCTID) @@ -4997,8 +4259,7 @@ - nail of manual digit 5 (SCTID) - SCTID:181583002 + nail of manual digit 5 (SCTID) @@ -5007,8 +4268,7 @@ - nail of manual digit 1 (SCTID) - SCTID:181584008 + nail of manual digit 1 (SCTID) @@ -5017,8 +4277,7 @@ - nail of pedal digit 1 (SCTID) - SCTID:181592004 + nail of pedal digit 1 (SCTID) @@ -5027,8 +4286,7 @@ - nail of pedal digit 2 (SCTID) - SCTID:181593009 + nail of pedal digit 2 (SCTID) @@ -5037,8 +4295,7 @@ - nail of pedal digit 3 (SCTID) - SCTID:181594003 + nail of pedal digit 3 (SCTID) @@ -5047,8 +4304,7 @@ - nail of pedal digit 4 (SCTID) - SCTID:181595002 + nail of pedal digit 4 (SCTID) @@ -5057,8 +4313,7 @@ - nail of pedal digit 5 (SCTID) - SCTID:181596001 + nail of pedal digit 5 (SCTID) @@ -5067,8 +4322,7 @@ - chest wall (SCTID) - SCTID:181608004 + chest wall (SCTID) @@ -5077,8 +4331,7 @@ - pleura (SCTID) - SCTID:181609007 + pleura (SCTID) @@ -5087,8 +4340,7 @@ - abdominal wall (SCTID) - SCTID:181613000 + abdominal wall (SCTID) @@ -5097,8 +4349,7 @@ - diaphragm (SCTID) - SCTID:181614006 + diaphragm (SCTID) @@ -5107,8 +4358,7 @@ - peritoneal cavity (SCTID) - SCTID:181616008 + peritoneal cavity (SCTID) @@ -5117,8 +4367,7 @@ - deltoid (SCTID) - SCTID:181620007 + deltoid (SCTID) @@ -5127,8 +4376,7 @@ - pectoral muscle (SCTID) - SCTID:181621006 + pectoral muscle (SCTID) @@ -5137,8 +4385,7 @@ - triceps brachii (SCTID) - SCTID:181623009 + triceps brachii (SCTID) @@ -5147,8 +4394,7 @@ - pectoralis major (SCTID) - SCTID:181624003 + pectoralis major (SCTID) @@ -5157,8 +4403,7 @@ - pectoralis minor (SCTID) - SCTID:181625002 + pectoralis minor (SCTID) @@ -5167,8 +4412,7 @@ - supraspinatus muscle (SCTID) - SCTID:181626001 + supraspinatus muscle (SCTID) @@ -5177,8 +4421,7 @@ - forelimb zeugopod muscle (SCTID) - SCTID:181631004 + forelimb zeugopod muscle (SCTID) @@ -5187,8 +4430,7 @@ - supinator muscle (SCTID) - SCTID:181634007 + supinator muscle (SCTID) @@ -5197,8 +4439,7 @@ - palmaris longus muscle (SCTID) - SCTID:181636009 + palmaris longus muscle (SCTID) @@ -5207,8 +4448,7 @@ - thenar muscle (SCTID) - SCTID:181640000 + thenar muscle (SCTID) @@ -5217,8 +4457,7 @@ - hypothenar muscle (SCTID) - SCTID:181643003 + hypothenar muscle (SCTID) @@ -5227,8 +4466,7 @@ - flexor pollicis brevis muscle (SCTID) - SCTID:181646006 + flexor pollicis brevis muscle (SCTID) @@ -5237,8 +4475,7 @@ - abductor pollicis brevis muscle (SCTID) - SCTID:181648007 + abductor pollicis brevis muscle (SCTID) @@ -5247,8 +4484,7 @@ - adductor pollicis muscle (SCTID) - SCTID:181649004 + adductor pollicis muscle (SCTID) @@ -5257,8 +4493,7 @@ - palmaris brevis (SCTID) - SCTID:181650004 + palmaris brevis (SCTID) @@ -5267,8 +4502,7 @@ - abductor digiti minimi of hand (SCTID) - SCTID:181651000 + abductor digiti minimi of hand (SCTID) @@ -5277,8 +4511,7 @@ - opponens digiti minimi of hand (SCTID) - SCTID:181652007 + opponens digiti minimi of hand (SCTID) @@ -5287,8 +4520,7 @@ - flexor digiti minimi brevis of hand (SCTID) - SCTID:181653002 + flexor digiti minimi brevis of hand (SCTID) @@ -5297,8 +4529,7 @@ - lumbrical muscle of manus (SCTID) - SCTID:181654008 + lumbrical muscle of manus (SCTID) @@ -5307,8 +4538,7 @@ - iliopsoas (SCTID) - SCTID:181668001 + iliopsoas (SCTID) @@ -5317,8 +4547,7 @@ - quadriceps femoris (SCTID) - SCTID:181669009 + quadriceps femoris (SCTID) @@ -5327,8 +4556,7 @@ - adductor muscle of hip (SCTID) - SCTID:181670005 + adductor muscle of hip (SCTID) @@ -5337,8 +4565,7 @@ - tensor fasciae latae muscle (SCTID) - SCTID:181671009 + tensor fasciae latae muscle (SCTID) @@ -5347,8 +4574,7 @@ - biceps femoris (SCTID) - SCTID:181672002 + biceps femoris (SCTID) @@ -5357,8 +4583,7 @@ - gluteus maximus (SCTID) - SCTID:181674001 + gluteus maximus (SCTID) @@ -5367,8 +4592,7 @@ - gluteus medius (SCTID) - SCTID:181675000 + gluteus medius (SCTID) @@ -5377,8 +4601,7 @@ - gluteus minimus (SCTID) - SCTID:181676004 + gluteus minimus (SCTID) @@ -5387,8 +4610,7 @@ - rectus femoris (SCTID) - SCTID:181679006 + rectus femoris (SCTID) @@ -5397,8 +4619,7 @@ - vastus intermedius (SCTID) - SCTID:181682001 + vastus intermedius (SCTID) @@ -5407,8 +4628,7 @@ - sartorius muscle (SCTID) - SCTID:181683006 + sartorius muscle (SCTID) @@ -5417,8 +4637,7 @@ - semitendinosus (SCTID) - SCTID:181685004 + semitendinosus (SCTID) @@ -5427,8 +4646,7 @@ - adductor longus (SCTID) - SCTID:181686003 + adductor longus (SCTID) @@ -5437,8 +4655,7 @@ - adductor brevis (SCTID) - SCTID:181687007 + adductor brevis (SCTID) @@ -5447,8 +4664,7 @@ - adductor magnus (SCTID) - SCTID:181688002 + adductor magnus (SCTID) @@ -5457,8 +4673,7 @@ - gracilis (SCTID) - SCTID:181689005 + gracilis (SCTID) @@ -5467,8 +4682,7 @@ - peroneus (SCTID) - SCTID:181694005 + peroneus (SCTID) @@ -5477,8 +4691,7 @@ - tibialis anterior (SCTID) - SCTID:181696007 + tibialis anterior (SCTID) @@ -5487,8 +4700,7 @@ - gastrocnemius (SCTID) - SCTID:181700004 + gastrocnemius (SCTID) @@ -5497,8 +4709,7 @@ - fibularis tertius (SCTID) - SCTID:181701000 + fibularis tertius (SCTID) @@ -5507,8 +4718,7 @@ - soleus muscle (SCTID) - SCTID:181702007 + soleus muscle (SCTID) @@ -5517,8 +4727,7 @@ - flexor digitorum longus (SCTID) - SCTID:181703002 + flexor digitorum longus (SCTID) @@ -5527,8 +4736,7 @@ - fibularis brevis (SCTID) - SCTID:181704008 + fibularis brevis (SCTID) @@ -5537,8 +4745,7 @@ - calcaneal tendon (SCTID) - SCTID:181705009 + calcaneal tendon (SCTID) @@ -5547,8 +4754,7 @@ - interosseous muscle of pes (SCTID) - SCTID:181714004 + interosseous muscle of pes (SCTID) @@ -5557,8 +4763,7 @@ - lumbrical muscle of pes (SCTID) - SCTID:181715003 + lumbrical muscle of pes (SCTID) @@ -5567,8 +4772,7 @@ - abductor hallucis muscle (SCTID) - SCTID:181723001 + abductor hallucis muscle (SCTID) @@ -5577,8 +4781,7 @@ - flexor digitorum brevis muscle (SCTID) - SCTID:181724007 + flexor digitorum brevis muscle (SCTID) @@ -5587,8 +4790,7 @@ - adductor hallucis muscle (SCTID) - SCTID:181727000 + adductor hallucis muscle (SCTID) @@ -5597,8 +4799,7 @@ - flexor hallucis brevis muscle (SCTID) - SCTID:181730007 + flexor hallucis brevis muscle (SCTID) @@ -5607,8 +4808,7 @@ - masseter muscle (SCTID) - SCTID:181738000 + masseter muscle (SCTID) @@ -5617,8 +4817,7 @@ - temporalis muscle (SCTID) - SCTID:181739008 + temporalis muscle (SCTID) @@ -5627,8 +4826,7 @@ - trapezius muscle (SCTID) - SCTID:181740005 + trapezius muscle (SCTID) @@ -5637,8 +4835,7 @@ - sternocleidomastoid (SCTID) - SCTID:181741009 + sternocleidomastoid (SCTID) @@ -5647,8 +4844,7 @@ - scalenus anterior (SCTID) - SCTID:181742002 + scalenus anterior (SCTID) @@ -5657,8 +4853,7 @@ - muscle of larynx (SCTID) - SCTID:181744001 + muscle of larynx (SCTID) @@ -5667,8 +4862,7 @@ - intercostal muscle (SCTID) - SCTID:181746004 + intercostal muscle (SCTID) @@ -5677,8 +4871,7 @@ - latissimus dorsi muscle (SCTID) - SCTID:181747008 + latissimus dorsi muscle (SCTID) @@ -5687,8 +4880,7 @@ - serratus ventralis (SCTID) - SCTID:181748003 + serratus ventralis (SCTID) @@ -5697,8 +4889,7 @@ - levator ani muscle (SCTID) - SCTID:181753008 + levator ani muscle (SCTID) @@ -5707,8 +4898,7 @@ - lymph node (SCTID) - SCTID:181756000 + lymph node (SCTID) @@ -5717,8 +4907,7 @@ - cervical lymph node (SCTID) - SCTID:181757009 + cervical lymph node (SCTID) @@ -5727,8 +4916,7 @@ - axillary lymph node (SCTID) - SCTID:181759007 + axillary lymph node (SCTID) @@ -5737,8 +4925,7 @@ - mediastinal lymph node (SCTID) - SCTID:181760002 + mediastinal lymph node (SCTID) @@ -5747,8 +4934,7 @@ - inguinal lymph node (SCTID) - SCTID:181762005 + inguinal lymph node (SCTID) @@ -5757,8 +4943,7 @@ - lymphoid tissue (SCTID) - SCTID:181768009 + lymphoid tissue (SCTID) @@ -5767,8 +4952,7 @@ - fascia (SCTID) - SCTID:181772008 + fascia (SCTID) @@ -5777,8 +4961,7 @@ - cranial bone (SCTID) - SCTID:181792001 + cranial bone (SCTID) @@ -5787,8 +4970,7 @@ - tetrapod frontal bone (SCTID) - SCTID:181793006 + tetrapod frontal bone (SCTID) @@ -5797,8 +4979,7 @@ - tetrapod parietal bone (SCTID) - SCTID:181794000 + tetrapod parietal bone (SCTID) @@ -5807,8 +4988,7 @@ - temporal bone (SCTID) - SCTID:181795004 + temporal bone (SCTID) @@ -5817,8 +4997,7 @@ - occipital bone (SCTID) - SCTID:181796003 + occipital bone (SCTID) @@ -5827,8 +5006,7 @@ - facial bone (SCTID) - SCTID:181799005 + facial bone (SCTID) @@ -5837,8 +5015,7 @@ - nasal bone (SCTID) - SCTID:181801008 + nasal bone (SCTID) @@ -5847,8 +5024,7 @@ - lobar bronchus of right lung cranial lobe (SCTID) - SCTID:181806003 + lobar bronchus of right lung cranial lobe (SCTID) @@ -5857,8 +5033,7 @@ - jaw skeleton (SCTID) - SCTID:181811001 + jaw skeleton (SCTID) @@ -5867,8 +5042,7 @@ - mandible (SCTID) - SCTID:181812008 + mandible (SCTID) @@ -5877,8 +5051,7 @@ - maxilla (SCTID) - SCTID:181813003 + maxilla (SCTID) @@ -5887,8 +5060,7 @@ - temporomandibular joint (SCTID) - SCTID:181814009 + temporomandibular joint (SCTID) @@ -5897,8 +5069,7 @@ - vertebra (SCTID) - SCTID:181817002 + vertebra (SCTID) @@ -5907,8 +5078,7 @@ - vertebral bone 1 (SCTID) - SCTID:181818007 + vertebral bone 1 (SCTID) @@ -5917,8 +5087,7 @@ - vertebral bone 2 (SCTID) - SCTID:181819004 + vertebral bone 2 (SCTID) @@ -5927,8 +5096,7 @@ - cervical vertebra (SCTID) - SCTID:181820005 + cervical vertebra (SCTID) @@ -5937,8 +5105,7 @@ - thoracic vertebra (SCTID) - SCTID:181821009 + thoracic vertebra (SCTID) @@ -5947,8 +5114,7 @@ - lumbar vertebra (SCTID) - SCTID:181822002 + lumbar vertebra (SCTID) @@ -5957,8 +5123,7 @@ - mammalian cervical vertebra 3 (SCTID) - SCTID:181823007 + mammalian cervical vertebra 3 (SCTID) @@ -5967,8 +5132,7 @@ - mammalian cervical vertebra 4 (SCTID) - SCTID:181824001 + mammalian cervical vertebra 4 (SCTID) @@ -5977,8 +5141,7 @@ - mammalian cervical vertebra 5 (SCTID) - SCTID:181825000 + mammalian cervical vertebra 5 (SCTID) @@ -5987,8 +5150,7 @@ - mammalian cervical vertebra 6 (SCTID) - SCTID:181826004 + mammalian cervical vertebra 6 (SCTID) @@ -5997,8 +5159,7 @@ - mammalian cervical vertebra 7 (SCTID) - SCTID:181827008 + mammalian cervical vertebra 7 (SCTID) @@ -6007,8 +5168,7 @@ - thoracic vertebra 1 (SCTID) - SCTID:181828003 + thoracic vertebra 1 (SCTID) @@ -6017,8 +5177,7 @@ - thoracic vertebra 2 (SCTID) - SCTID:181829006 + thoracic vertebra 2 (SCTID) @@ -6027,8 +5186,7 @@ - thoracic vertebra 3 (SCTID) - SCTID:181830001 + thoracic vertebra 3 (SCTID) @@ -6037,8 +5195,7 @@ - thoracic vertebra 4 (SCTID) - SCTID:181831002 + thoracic vertebra 4 (SCTID) @@ -6047,8 +5204,7 @@ - thoracic vertebra 5 (SCTID) - SCTID:181832009 + thoracic vertebra 5 (SCTID) @@ -6057,8 +5213,7 @@ - thoracic vertebra 6 (SCTID) - SCTID:181834005 + thoracic vertebra 6 (SCTID) @@ -6067,8 +5222,7 @@ - thoracic vertebra 7 (SCTID) - SCTID:181835006 + thoracic vertebra 7 (SCTID) @@ -6077,8 +5231,7 @@ - thoracic vertebra 8 (SCTID) - SCTID:181836007 + thoracic vertebra 8 (SCTID) @@ -6087,8 +5240,7 @@ - thoracic vertebra 9 (SCTID) - SCTID:181837003 + thoracic vertebra 9 (SCTID) @@ -6097,8 +5249,7 @@ - thoracic vertebra 10 (SCTID) - SCTID:181838008 + thoracic vertebra 10 (SCTID) @@ -6107,8 +5258,7 @@ - thoracic vertebra 11 (SCTID) - SCTID:181839000 + thoracic vertebra 11 (SCTID) @@ -6117,8 +5267,7 @@ - thoracic vertebra 12 (SCTID) - SCTID:181840003 + thoracic vertebra 12 (SCTID) @@ -6127,8 +5276,7 @@ - lumbar vertebra 1 (SCTID) - SCTID:181841004 + lumbar vertebra 1 (SCTID) @@ -6137,8 +5285,7 @@ - lumbar vertebra 2 (SCTID) - SCTID:181842006 + lumbar vertebra 2 (SCTID) @@ -6147,8 +5294,7 @@ - lumbar vertebra 3 (SCTID) - SCTID:181843001 + lumbar vertebra 3 (SCTID) @@ -6157,8 +5303,7 @@ - lumbar vertebra 4 (SCTID) - SCTID:181844007 + lumbar vertebra 4 (SCTID) @@ -6167,8 +5312,7 @@ - lumbar vertebra 5 (SCTID) - SCTID:181845008 + lumbar vertebra 5 (SCTID) @@ -6177,8 +5321,7 @@ - sacral vertebra 1 (SCTID) - SCTID:181846009 + sacral vertebra 1 (SCTID) @@ -6187,8 +5330,7 @@ - sacral vertebra 2 (SCTID) - SCTID:181847000 + sacral vertebra 2 (SCTID) @@ -6197,8 +5339,7 @@ - sacral vertebra 3 (SCTID) - SCTID:181848005 + sacral vertebra 3 (SCTID) @@ -6207,8 +5348,7 @@ - sacral vertebra 4 (SCTID) - SCTID:181849002 + sacral vertebra 4 (SCTID) @@ -6217,8 +5357,7 @@ - cranium (SCTID) - SCTID:181889008 + cranium (SCTID) @@ -6227,8 +5366,7 @@ - basicranium (SCTID) - SCTID:181890004 + basicranium (SCTID) @@ -6237,8 +5375,7 @@ - cervical vertebra 1 arcus anterior (SCTID) - SCTID:181891000 + cervical vertebra 1 arcus anterior (SCTID) @@ -6247,8 +5384,7 @@ - posterior arch of atlas (SCTID) - SCTID:181892007 + posterior arch of atlas (SCTID) @@ -6257,8 +5393,7 @@ - transverse process of atlas (SCTID) - SCTID:181895009 + transverse process of atlas (SCTID) @@ -6267,8 +5402,7 @@ - odontoid process of cervical vertebra 2 (SCTID) - SCTID:181899003 + odontoid process of cervical vertebra 2 (SCTID) @@ -6277,8 +5411,7 @@ - clavicle bone (SCTID) - SCTID:181910004 + clavicle bone (SCTID) @@ -6287,8 +5420,7 @@ - acromion (SCTID) - SCTID:181911000 + acromion (SCTID) @@ -6297,8 +5429,7 @@ - coracoid process of scapula (SCTID) - SCTID:181912007 + coracoid process of scapula (SCTID) @@ -6307,8 +5438,7 @@ - glenoid fossa (SCTID) - SCTID:181914008 + glenoid fossa (SCTID) @@ -6317,8 +5447,7 @@ - neck of scapula (SCTID) - SCTID:181915009 + neck of scapula (SCTID) @@ -6327,8 +5456,7 @@ - scapula spine (SCTID) - SCTID:181916005 + scapula spine (SCTID) @@ -6337,8 +5465,7 @@ - sternal end of clavicle (SCTID) - SCTID:181920009 + sternal end of clavicle (SCTID) @@ -6347,8 +5474,7 @@ - humerus (SCTID) - SCTID:181923006 + humerus (SCTID) @@ -6357,8 +5483,7 @@ - proximal head of humerus (SCTID) - SCTID:181924000 + proximal head of humerus (SCTID) @@ -6367,8 +5492,7 @@ - humerus diaphysis (SCTID) - SCTID:181927007 + humerus diaphysis (SCTID) @@ -6377,8 +5501,7 @@ - entepicondyle of humerus (SCTID) - SCTID:181929005 + entepicondyle of humerus (SCTID) @@ -6387,8 +5510,7 @@ - ectepicondyle of humerus (SCTID) - SCTID:181933003 + ectepicondyle of humerus (SCTID) @@ -6397,8 +5519,7 @@ - ventral tubercle of humerus (SCTID) - SCTID:181934009 + ventral tubercle of humerus (SCTID) @@ -6407,8 +5528,7 @@ - lesser tubercle of humerus (SCTID) - SCTID:181935005 + lesser tubercle of humerus (SCTID) @@ -6417,8 +5537,7 @@ - radius bone (SCTID) - SCTID:181940002 + radius bone (SCTID) @@ -6427,8 +5546,7 @@ - head of radius (SCTID) - SCTID:181941003 + head of radius (SCTID) @@ -6437,8 +5555,7 @@ - neck of radius (SCTID) - SCTID:181942005 + neck of radius (SCTID) @@ -6447,8 +5564,7 @@ - ulna (SCTID) - SCTID:181948009 + ulna (SCTID) @@ -6457,8 +5573,7 @@ - olecranon (SCTID) - SCTID:181949001 + olecranon (SCTID) @@ -6467,8 +5582,7 @@ - coronoid process of ulna (SCTID) - SCTID:181951002 + coronoid process of ulna (SCTID) @@ -6477,8 +5591,7 @@ - styloid process of ulna (SCTID) - SCTID:181952009 + styloid process of ulna (SCTID) @@ -6487,8 +5600,7 @@ - radiale (SCTID) - SCTID:181958008 + radiale (SCTID) @@ -6497,8 +5609,7 @@ - intermedium (SCTID) - SCTID:181959000 + intermedium (SCTID) @@ -6507,8 +5618,7 @@ - distal carpal bone 3 (SCTID) - SCTID:181964001 + distal carpal bone 3 (SCTID) @@ -6517,8 +5627,7 @@ - ulnare (SCTID) - SCTID:181965000 + ulnare (SCTID) @@ -6527,8 +5636,7 @@ - pisiform (SCTID) - SCTID:181966004 + pisiform (SCTID) @@ -6537,8 +5645,7 @@ - distal carpal bone 4 (SCTID) - SCTID:181967008 + distal carpal bone 4 (SCTID) @@ -6547,8 +5654,7 @@ - metacarpal bone of digit 1 (SCTID) - SCTID:181973009 + metacarpal bone of digit 1 (SCTID) @@ -6557,8 +5663,7 @@ - manual digit 1 phalanx (SCTID) - SCTID:181975002 + manual digit 1 phalanx (SCTID) @@ -6567,8 +5672,7 @@ - phalanx of manus (SCTID) - SCTID:181976001 + phalanx of manus (SCTID) @@ -6577,8 +5681,7 @@ - metacarpal bone (SCTID) - SCTID:181977005 + metacarpal bone (SCTID) @@ -6587,8 +5690,7 @@ - proximal epiphysis of first metacarpal bone (SCTID) - SCTID:181978000 + proximal epiphysis of first metacarpal bone (SCTID) @@ -6597,8 +5699,7 @@ - proximal phalanx of manus (SCTID) - SCTID:181986000 + proximal phalanx of manus (SCTID) @@ -6607,8 +5708,7 @@ - proximal phalanx of manual digit 1 (SCTID) - SCTID:181992006 + proximal phalanx of manual digit 1 (SCTID) @@ -6617,8 +5717,7 @@ - proximal epiphysis of proximal phalanx of manual digit 1 (SCTID) - SCTID:181993001 + proximal epiphysis of proximal phalanx of manual digit 1 (SCTID) @@ -6627,8 +5726,7 @@ - proximal epiphysis of phalanx of manual digit 3 (SCTID) - SCTID:181997000 + proximal epiphysis of phalanx of manual digit 3 (SCTID) @@ -6637,8 +5735,7 @@ - distal phalanx of manus (SCTID) - SCTID:182001007 + distal phalanx of manus (SCTID) @@ -6647,8 +5744,7 @@ - distal epiphysis of distal phalanx of manual digit (SCTID) - SCTID:182006002 + distal epiphysis of distal phalanx of manual digit (SCTID) @@ -6657,8 +5753,7 @@ - distal phalanx of manual digit 1 (SCTID) - SCTID:182007006 + distal phalanx of manual digit 1 (SCTID) @@ -6667,8 +5762,7 @@ - proximal epiphysis of distal phalanx of manual digit 1 (SCTID) - SCTID:182008001 + proximal epiphysis of distal phalanx of manual digit 1 (SCTID) @@ -6677,8 +5771,7 @@ - distal epiphysis of distal phalanx of manual digit 1 (SCTID) - SCTID:182011000 + distal epiphysis of distal phalanx of manual digit 1 (SCTID) @@ -6687,8 +5780,7 @@ - manubrium of sternum (SCTID) - SCTID:182014008 + manubrium of sternum (SCTID) @@ -6697,8 +5789,7 @@ - rib 1 (SCTID) - SCTID:182016005 + rib 1 (SCTID) @@ -6707,8 +5798,7 @@ - iliac blade (SCTID) - SCTID:182024000 + iliac blade (SCTID) @@ -6717,8 +5807,7 @@ - ischium (SCTID) - SCTID:182025004 + ischium (SCTID) @@ -6727,8 +5816,7 @@ - pubic ramus (SCTID) - SCTID:182026003 + pubic ramus (SCTID) @@ -6737,8 +5825,7 @@ - acetabular part of hip bone (SCTID) - SCTID:182027007 + acetabular part of hip bone (SCTID) @@ -6747,8 +5834,7 @@ - coccyx (SCTID) - SCTID:182028002 + coccyx (SCTID) @@ -6757,8 +5843,7 @@ - ilium (SCTID) - SCTID:182029005 + ilium (SCTID) @@ -6767,8 +5852,7 @@ - anterior inferior iliac spine (SCTID) - SCTID:182030000 + anterior inferior iliac spine (SCTID) @@ -6777,8 +5861,7 @@ - anterior superior iliac spine (SCTID) - SCTID:182031001 + anterior superior iliac spine (SCTID) @@ -6787,8 +5870,7 @@ - posterior superior iliac spine (SCTID) - SCTID:182032008 + posterior superior iliac spine (SCTID) @@ -6797,8 +5879,7 @@ - posterior inferior iliac spine (SCTID) - SCTID:182033003 + posterior inferior iliac spine (SCTID) @@ -6807,8 +5888,7 @@ - iliac crest (SCTID) - SCTID:182034009 + iliac crest (SCTID) @@ -6817,8 +5897,7 @@ - pubis (SCTID) - SCTID:182035005 + pubis (SCTID) @@ -6827,8 +5906,7 @@ - superior pubic ramus (SCTID) - SCTID:182037002 + superior pubic ramus (SCTID) @@ -6837,8 +5915,7 @@ - inferior pubic ramus (SCTID) - SCTID:182038007 + inferior pubic ramus (SCTID) @@ -6847,8 +5924,7 @@ - ischial tuberosity (SCTID) - SCTID:182041003 + ischial tuberosity (SCTID) @@ -6857,8 +5933,7 @@ - ischial ramus (SCTID) - SCTID:182043000 + ischial ramus (SCTID) @@ -6867,8 +5942,7 @@ - femur (SCTID) - SCTID:182046008 + femur (SCTID) @@ -6877,8 +5951,7 @@ - trochanter (SCTID) - SCTID:182047004 + trochanter (SCTID) @@ -6887,8 +5960,7 @@ - diaphysis of femur (SCTID) - SCTID:182048009 + diaphysis of femur (SCTID) @@ -6897,8 +5969,7 @@ - greater trochanter (SCTID) - SCTID:182050001 + greater trochanter (SCTID) @@ -6907,8 +5978,7 @@ - lesser trochanter (SCTID) - SCTID:182051002 + lesser trochanter (SCTID) @@ -6917,8 +5987,7 @@ - medial condyle of femur (SCTID) - SCTID:182056007 + medial condyle of femur (SCTID) @@ -6927,8 +5996,7 @@ - lateral condyle of femur (SCTID) - SCTID:182057003 + lateral condyle of femur (SCTID) @@ -6937,8 +6005,7 @@ - tibia (SCTID) - SCTID:182061009 + tibia (SCTID) @@ -6947,8 +6014,7 @@ - condyle of tibia (SCTID) - SCTID:182062002 + condyle of tibia (SCTID) @@ -6957,8 +6023,7 @@ - medial condyle of tibia (SCTID) - SCTID:182066004 + medial condyle of tibia (SCTID) @@ -6967,8 +6032,7 @@ - lateral condyle of tibia (SCTID) - SCTID:182067008 + lateral condyle of tibia (SCTID) @@ -6977,8 +6041,7 @@ - proximal epiphysis of fibula (SCTID) - SCTID:182080006 + proximal epiphysis of fibula (SCTID) @@ -6987,8 +6050,7 @@ - patella (SCTID) - SCTID:182083008 + patella (SCTID) @@ -6997,8 +6059,7 @@ - talus (SCTID) - SCTID:182098005 + talus (SCTID) @@ -7007,8 +6068,7 @@ - calcaneus (SCTID) - SCTID:182099002 + calcaneus (SCTID) @@ -7017,8 +6077,7 @@ - navicular bone of pes (SCTID) - SCTID:182100005 + navicular bone of pes (SCTID) @@ -7027,8 +6086,7 @@ - cuboid bone (SCTID) - SCTID:182101009 + cuboid bone (SCTID) @@ -7037,8 +6095,7 @@ - distal tarsal bone (SCTID) - SCTID:182102002 + distal tarsal bone (SCTID) @@ -7047,8 +6104,7 @@ - neck of talus (SCTID) - SCTID:182104001 + neck of talus (SCTID) @@ -7057,8 +6113,7 @@ - distal tarsal bone 1 (SCTID) - SCTID:182116007 + distal tarsal bone 1 (SCTID) @@ -7067,8 +6122,7 @@ - distal tarsal bone 3 (SCTID) - SCTID:182117003 + distal tarsal bone 3 (SCTID) @@ -7077,8 +6131,7 @@ - metatarsal bone of digit 1 (SCTID) - SCTID:182121005 + metatarsal bone of digit 1 (SCTID) @@ -7087,8 +6140,7 @@ - proximal epiphysis of first metatarsal bone (SCTID) - SCTID:182124002 + proximal epiphysis of first metatarsal bone (SCTID) @@ -7097,8 +6149,7 @@ - metatarsal bone of digit 2 (SCTID) - SCTID:182128004 + metatarsal bone of digit 2 (SCTID) @@ -7107,8 +6158,7 @@ - proximal epiphysis of second metatarsal bone (SCTID) - SCTID:182130002 + proximal epiphysis of second metatarsal bone (SCTID) @@ -7117,8 +6167,7 @@ - metatarsal bone of digit 3 (SCTID) - SCTID:182134006 + metatarsal bone of digit 3 (SCTID) @@ -7127,8 +6176,7 @@ - proximal epiphysis of third metatarsal bone (SCTID) - SCTID:182135007 + proximal epiphysis of third metatarsal bone (SCTID) @@ -7137,8 +6185,7 @@ - metatarsal bone of digit 4 (SCTID) - SCTID:182139001 + metatarsal bone of digit 4 (SCTID) @@ -7147,8 +6194,7 @@ - proximal epiphysis of fourth metatarsal bone (SCTID) - SCTID:182140004 + proximal epiphysis of fourth metatarsal bone (SCTID) @@ -7157,8 +6203,7 @@ - metatarsal bone of digit 5 (SCTID) - SCTID:182144008 + metatarsal bone of digit 5 (SCTID) @@ -7167,8 +6212,7 @@ - proximal epiphysis of fifth metatarsal bone (SCTID) - SCTID:182145009 + proximal epiphysis of fifth metatarsal bone (SCTID) @@ -7177,8 +6221,7 @@ - os vesalianum pedis (SCTID) - SCTID:182149003 + os vesalianum pedis (SCTID) @@ -7187,8 +6230,7 @@ - proximal phalanx of pedal digit 1 (SCTID) - SCTID:182150003 + proximal phalanx of pedal digit 1 (SCTID) @@ -7197,8 +6239,7 @@ - proximal phalanx of pedal digit 2 (SCTID) - SCTID:182151004 + proximal phalanx of pedal digit 2 (SCTID) @@ -7207,8 +6248,7 @@ - middle phalanx of pedal digit 2 (SCTID) - SCTID:182152006 + middle phalanx of pedal digit 2 (SCTID) @@ -7217,8 +6257,7 @@ - proximal phalanx of pedal digit 3 (SCTID) - SCTID:182153001 + proximal phalanx of pedal digit 3 (SCTID) @@ -7227,8 +6266,7 @@ - middle phalanx of pedal digit 3 (SCTID) - SCTID:182154007 + middle phalanx of pedal digit 3 (SCTID) @@ -7237,8 +6275,7 @@ - proximal phalanx of pedal digit 4 (SCTID) - SCTID:182155008 + proximal phalanx of pedal digit 4 (SCTID) @@ -7247,8 +6284,7 @@ - middle phalanx of pedal digit 4 (SCTID) - SCTID:182156009 + middle phalanx of pedal digit 4 (SCTID) @@ -7257,8 +6293,7 @@ - proximal phalanx of pedal digit 5 (SCTID) - SCTID:182157000 + proximal phalanx of pedal digit 5 (SCTID) @@ -7267,8 +6302,7 @@ - middle phalanx of pedal digit 5 (SCTID) - SCTID:182158005 + middle phalanx of pedal digit 5 (SCTID) @@ -7277,8 +6311,7 @@ - sternoclavicular joint (SCTID) - SCTID:182165002 + sternoclavicular joint (SCTID) @@ -7287,8 +6320,7 @@ - acromioclavicular joint (SCTID) - SCTID:182166001 + acromioclavicular joint (SCTID) @@ -7297,8 +6329,7 @@ - glenohumeral joint (SCTID) - SCTID:182168000 + glenohumeral joint (SCTID) @@ -7307,8 +6338,7 @@ - elbow joint (SCTID) - SCTID:182169008 + elbow joint (SCTID) @@ -7317,8 +6347,7 @@ - distal radio-ulnar joint (SCTID) - SCTID:182170009 + distal radio-ulnar joint (SCTID) @@ -7327,8 +6356,7 @@ - humeroradial joint (SCTID) - SCTID:182171008 + humeroradial joint (SCTID) @@ -7337,8 +6365,7 @@ - intercarpal joint (SCTID) - SCTID:182176003 + intercarpal joint (SCTID) @@ -7347,8 +6374,7 @@ - wrist joint (SCTID) - SCTID:182178002 + wrist joint (SCTID) @@ -7357,8 +6383,7 @@ - interphalangeal joint of manual digit 1 (SCTID) - SCTID:182192008 + interphalangeal joint of manual digit 1 (SCTID) @@ -7367,8 +6392,7 @@ - sacro-iliac joint (SCTID) - SCTID:182199004 + sacro-iliac joint (SCTID) @@ -7377,8 +6401,7 @@ - pubic symphysis (SCTID) - SCTID:182200001 + pubic symphysis (SCTID) @@ -7387,8 +6410,7 @@ - hip joint (SCTID) - SCTID:182201002 + hip joint (SCTID) @@ -7397,8 +6419,7 @@ - patellofemoral joint (SCTID) - SCTID:182202009 + patellofemoral joint (SCTID) @@ -7407,8 +6428,7 @@ - femorotibial joint (SCTID) - SCTID:182203004 + femorotibial joint (SCTID) @@ -7417,8 +6437,7 @@ - knee joint (SCTID) - SCTID:182204005 + knee joint (SCTID) @@ -7427,8 +6446,7 @@ - superior tibiofibular joint (SCTID) - SCTID:182208008 + superior tibiofibular joint (SCTID) @@ -7437,8 +6455,7 @@ - inferior tibiofibular joint (SCTID) - SCTID:182209000 + inferior tibiofibular joint (SCTID) @@ -7447,8 +6464,7 @@ - talocalcaneonavicular joint (SCTID) - SCTID:182211009 + talocalcaneonavicular joint (SCTID) @@ -7457,8 +6473,7 @@ - ankle joint (SCTID) - SCTID:182212002 + ankle joint (SCTID) @@ -7467,8 +6482,7 @@ - subtalar joint (SCTID) - SCTID:182213007 + subtalar joint (SCTID) @@ -7477,8 +6491,7 @@ - transverse tarsal joint (SCTID) - SCTID:182220000 + transverse tarsal joint (SCTID) @@ -7487,8 +6500,7 @@ - intertarsal joint (SCTID) - SCTID:182221001 + intertarsal joint (SCTID) @@ -7497,8 +6509,7 @@ - tarsometatarsal joint (SCTID) - SCTID:182222008 + tarsometatarsal joint (SCTID) @@ -7507,8 +6518,7 @@ - metatarsophalangeal joint of pedal digit 1 (SCTID) - SCTID:182223003 + metatarsophalangeal joint of pedal digit 1 (SCTID) @@ -7517,8 +6527,7 @@ - interphalangeal joint of pes (SCTID) - SCTID:182225005 + interphalangeal joint of pes (SCTID) @@ -7527,8 +6536,7 @@ - articular capsule (SCTID) - SCTID:182238002 + articular capsule (SCTID) @@ -7537,8 +6545,7 @@ - forelimb (SCTID) - SCTID:182245002 + forelimb (SCTID) @@ -7547,8 +6554,7 @@ - hindlimb (SCTID) - SCTID:182281004 + hindlimb (SCTID) @@ -7557,8 +6563,7 @@ - cheek (SCTID) - SCTID:182325008 + cheek (SCTID) @@ -7567,8 +6572,7 @@ - dorsal part of neck (SCTID) - SCTID:182326009 + dorsal part of neck (SCTID) @@ -7577,8 +6581,7 @@ - anterior chest (SCTID) - SCTID:182331006 + anterior chest (SCTID) @@ -7587,8 +6590,7 @@ - lateral side of chest (SCTID) - SCTID:182332004 + lateral side of chest (SCTID) @@ -7597,8 +6599,7 @@ - iliac fossa (SCTID) - SCTID:182341009 + iliac fossa (SCTID) @@ -7607,8 +6608,7 @@ - lower back (SCTID) - SCTID:182343007 + lower back (SCTID) @@ -7617,8 +6617,7 @@ - sacral region (SCTID) - SCTID:182344001 + sacral region (SCTID) @@ -7627,8 +6626,7 @@ - hypogastrium (SCTID) - SCTID:182348003 + hypogastrium (SCTID) @@ -7637,8 +6635,7 @@ - ligament (SCTID) - SCTID:182358004 + ligament (SCTID) @@ -7647,8 +6644,7 @@ - cruciate ligament of atlas (SCTID) - SCTID:182362005 + cruciate ligament of atlas (SCTID) @@ -7657,8 +6653,7 @@ - ligament of sternoclavicular joint (SCTID) - SCTID:182386007 + ligament of sternoclavicular joint (SCTID) @@ -7667,8 +6662,7 @@ - glenoid labrum of scapula (SCTID) - SCTID:182391008 + glenoid labrum of scapula (SCTID) @@ -7677,8 +6671,7 @@ - anular ligament of radius (SCTID) - SCTID:182394000 + anular ligament of radius (SCTID) @@ -7687,8 +6680,7 @@ - ligament of hip joint (SCTID) - SCTID:182435001 + ligament of hip joint (SCTID) @@ -7697,8 +6689,7 @@ - acetabular labrum (SCTID) - SCTID:182439007 + acetabular labrum (SCTID) @@ -7707,8 +6698,7 @@ - ligament of knee joint (SCTID) - SCTID:182440009 + ligament of knee joint (SCTID) @@ -7717,8 +6707,7 @@ - anterior cruciate ligament of knee joint (SCTID) - SCTID:182443006 + anterior cruciate ligament of knee joint (SCTID) @@ -7727,8 +6716,7 @@ - posterior cruciate ligament of knee joint (SCTID) - SCTID:182445004 + posterior cruciate ligament of knee joint (SCTID) @@ -7737,8 +6725,7 @@ - synovial bursa (SCTID) - SCTID:182483003 + synovial bursa (SCTID) @@ -7747,8 +6734,7 @@ - lingula of left lung (SCTID) - SCTID:184916009 + lingula of left lung (SCTID) @@ -7757,8 +6743,7 @@ - precentral fissure of cerebellum (SCTID) - SCTID:18716004 + precentral fissure of cerebellum (SCTID) @@ -7767,8 +6752,7 @@ - thymus lobule (SCTID) - SCTID:187882006 + thymus lobule (SCTID) @@ -7777,8 +6761,7 @@ - right thymus lobe (SCTID) - SCTID:187981000 + right thymus lobe (SCTID) @@ -7787,8 +6770,7 @@ - left thymus lobe (SCTID) - SCTID:188079002 + left thymus lobe (SCTID) @@ -7797,8 +6779,7 @@ - capsule of thymus (SCTID) - SCTID:188181003 + capsule of thymus (SCTID) @@ -7807,8 +6788,7 @@ - cortex of thymus (SCTID) - SCTID:188262003 + cortex of thymus (SCTID) @@ -7817,8 +6797,7 @@ - medulla of thymus (SCTID) - SCTID:188344009 + medulla of thymus (SCTID) @@ -7827,8 +6806,7 @@ - valve of foramen ovale (SCTID) - SCTID:188958004 + valve of foramen ovale (SCTID) @@ -7837,8 +6815,7 @@ - musculo-phrenic vein (SCTID) - SCTID:1895000 + musculo-phrenic vein (SCTID) @@ -7847,8 +6824,7 @@ - cardiac muscle of left atrium (SCTID) - SCTID:189936008 + cardiac muscle of left atrium (SCTID) @@ -7857,8 +6833,7 @@ - left atrium endocardium (SCTID) - SCTID:190064008 + left atrium endocardium (SCTID) @@ -7867,8 +6842,7 @@ - trabecula carnea of left ventricle (SCTID) - SCTID:190344008 + trabecula carnea of left ventricle (SCTID) @@ -7877,8 +6851,7 @@ - ear (SCTID) - SCTID:1910005 + ear (SCTID) @@ -7887,8 +6860,7 @@ - endocardium of left ventricle (SCTID) - SCTID:191004004 + endocardium of left ventricle (SCTID) @@ -7897,8 +6869,7 @@ - external urethral sphincter (SCTID) - SCTID:19101001 + external urethral sphincter (SCTID) @@ -7907,8 +6878,7 @@ - myocardium of atrium (SCTID) - SCTID:191910002 + myocardium of atrium (SCTID) @@ -7917,8 +6887,7 @@ - endocardium of atrium (SCTID) - SCTID:192001005 + endocardium of atrium (SCTID) @@ -7927,8 +6896,7 @@ - myocardium of ventricle (SCTID) - SCTID:192084000 + myocardium of ventricle (SCTID) @@ -7937,8 +6905,7 @@ - left renal artery (SCTID) - SCTID:19215005 + left renal artery (SCTID) @@ -7947,8 +6914,7 @@ - endocardium of ventricle (SCTID) - SCTID:192172004 + endocardium of ventricle (SCTID) @@ -7957,8 +6923,7 @@ - trabecula carnea of right ventricle (SCTID) - SCTID:192373001 + trabecula carnea of right ventricle (SCTID) @@ -7967,8 +6932,7 @@ - inferior hypogastric nerve plexus (SCTID) - SCTID:192608000 + inferior hypogastric nerve plexus (SCTID) @@ -7977,8 +6941,7 @@ - crypt of Lieberkuhn of colon (SCTID) - SCTID:19447003 + crypt of Lieberkuhn of colon (SCTID) @@ -7987,8 +6950,7 @@ - submucosa of pharynx (SCTID) - SCTID:19594009 + submucosa of pharynx (SCTID) @@ -7997,8 +6959,7 @@ - thoracic lymph node (SCTID) - SCTID:196374005 + thoracic lymph node (SCTID) @@ -8007,8 +6968,7 @@ - distal interphalangeal joint of digit 3 (SCTID) - SCTID:196392002 + distal interphalangeal joint of digit 3 (SCTID) @@ -8017,8 +6977,7 @@ - trachealis (SCTID) - SCTID:197333002 + trachealis (SCTID) @@ -8027,8 +6986,7 @@ - trachea gland (SCTID) - SCTID:197423006 + trachea gland (SCTID) @@ -8037,8 +6995,7 @@ - lumen of trachea (SCTID) - SCTID:197486000 + lumen of trachea (SCTID) @@ -8047,8 +7004,7 @@ - juxtaductal region of aortic arch (SCTID) - SCTID:197677000 + juxtaductal region of aortic arch (SCTID) @@ -8057,8 +7013,7 @@ - preductal region of aortic arch (SCTID) - SCTID:197773005 + preductal region of aortic arch (SCTID) @@ -8067,8 +7022,7 @@ - postductal region of aortic arch (SCTID) - SCTID:197852003 + postductal region of aortic arch (SCTID) @@ -8077,8 +7031,7 @@ - prostatic utricle (SCTID) - SCTID:197909004 + prostatic utricle (SCTID) @@ -8087,8 +7040,7 @@ - juxtaductal region of aortic arch (SCTID) - SCTID:197932000 + juxtaductal region of aortic arch (SCTID) @@ -8097,8 +7049,7 @@ - ligamentum arteriosum (SCTID) - SCTID:198009004 + ligamentum arteriosum (SCTID) @@ -8107,8 +7058,7 @@ - bronchial vein (SCTID) - SCTID:198293000 + bronchial vein (SCTID) @@ -8117,8 +7067,7 @@ - superior phrenic vein (SCTID) - SCTID:198356008 + superior phrenic vein (SCTID) @@ -8127,8 +7076,7 @@ - dorsal intercostal artery (SCTID) - SCTID:198427009 + dorsal intercostal artery (SCTID) @@ -8137,8 +7085,7 @@ - superior phrenic artery (SCTID) - SCTID:198521008 + superior phrenic artery (SCTID) @@ -8147,8 +7094,7 @@ - superior thoracic artery (SCTID) - SCTID:198713000 + superior thoracic artery (SCTID) @@ -8157,8 +7103,7 @@ - bronchial lumen (SCTID) - SCTID:199401001 + bronchial lumen (SCTID) @@ -8167,8 +7112,7 @@ - right lung bronchiole (SCTID) - SCTID:200089000 + right lung bronchiole (SCTID) @@ -8177,8 +7121,7 @@ - left lung bronchiole (SCTID) - SCTID:200484003 + left lung bronchiole (SCTID) @@ -8187,8 +7130,7 @@ - obturator vein (SCTID) - SCTID:20146009 + obturator vein (SCTID) @@ -8197,8 +7139,7 @@ - lung connective tissue (SCTID) - SCTID:201609008 + lung connective tissue (SCTID) @@ -8207,8 +7148,7 @@ - lung parenchyma (SCTID) - SCTID:201712001 + lung parenchyma (SCTID) @@ -8217,8 +7157,7 @@ - alveolar atrium (SCTID) - SCTID:201806004 + alveolar atrium (SCTID) @@ -8227,8 +7166,7 @@ - superficial lymphatic vessel (SCTID) - SCTID:20315002 + superficial lymphatic vessel (SCTID) @@ -8237,8 +7175,7 @@ - intercostal lymph node (SCTID) - SCTID:204088001 + intercostal lymph node (SCTID) @@ -8247,8 +7184,7 @@ - intralobular duct (SCTID) - SCTID:205214009 + intralobular duct (SCTID) @@ -8257,8 +7193,7 @@ - lateral thoracic artery (SCTID) - SCTID:206135006 + lateral thoracic artery (SCTID) @@ -8267,8 +7202,7 @@ - zone of skin (SCTID) - SCTID:20795001 + zone of skin (SCTID) @@ -8277,8 +7211,7 @@ - female pubococcygeus muscle (SCTID) - SCTID:208282000 + female pubococcygeus muscle (SCTID) @@ -8287,8 +7220,7 @@ - medial epicondyle of femur (SCTID) - SCTID:209172001 + medial epicondyle of femur (SCTID) @@ -8297,8 +7229,7 @@ - lateral epicondyle of femur (SCTID) - SCTID:209275007 + lateral epicondyle of femur (SCTID) @@ -8307,8 +7238,7 @@ - mouth (SCTID) - SCTID:21082005 + mouth (SCTID) @@ -8317,8 +7247,7 @@ - dorsal gray commissure of spinal cord (SCTID) - SCTID:21169000 + dorsal gray commissure of spinal cord (SCTID) @@ -8327,8 +7256,7 @@ - gastrocnemius lateralis (SCTID) - SCTID:213588009 + gastrocnemius lateralis (SCTID) @@ -8337,8 +7265,7 @@ - gastrocnemius medialis (SCTID) - SCTID:213689008 + gastrocnemius medialis (SCTID) @@ -8347,8 +7274,7 @@ - occipitalis (SCTID) - SCTID:21405000 + occipitalis (SCTID) @@ -8357,8 +7283,7 @@ - zona glomerulosa of adrenal gland (SCTID) - SCTID:21476003 + zona glomerulosa of adrenal gland (SCTID) @@ -8367,8 +7292,7 @@ - crypt of Lieberkuhn of appendix (SCTID) - SCTID:21512007 + crypt of Lieberkuhn of appendix (SCTID) @@ -8377,8 +7301,7 @@ - sternocephalicus muscle (SCTID) - SCTID:21636001 + sternocephalicus muscle (SCTID) @@ -8387,8 +7310,7 @@ - pedal digit 1 (SCTID) - SCTID:21699005 + pedal digit 1 (SCTID) @@ -8397,8 +7319,7 @@ - serosa of appendix (SCTID) - SCTID:22488003 + serosa of appendix (SCTID) @@ -8407,8 +7328,7 @@ - infra-auricular lymph node (SCTID) - SCTID:22509006 + infra-auricular lymph node (SCTID) @@ -8417,8 +7337,7 @@ - subserosa (SCTID) - SCTID:2255006 + subserosa (SCTID) @@ -8427,8 +7346,7 @@ - dense regular connective tissue (SCTID) - SCTID:22560007 + dense regular connective tissue (SCTID) @@ -8437,8 +7355,7 @@ - intralobular bile duct (SCTID) - SCTID:227002 + intralobular bile duct (SCTID) @@ -8447,8 +7364,7 @@ - subdivision of trunk (SCTID) - SCTID:22943007 + subdivision of trunk (SCTID) @@ -8457,8 +7373,7 @@ - pectoral girdle region (SCTID) - SCTID:229759004 + pectoral girdle region (SCTID) @@ -8467,8 +7382,7 @@ - pelvic region of trunk (SCTID) - SCTID:229765004 + pelvic region of trunk (SCTID) @@ -8477,8 +7391,7 @@ - superficial anterior cervical lymph node (SCTID) - SCTID:22993006 + superficial anterior cervical lymph node (SCTID) @@ -8487,8 +7400,7 @@ - dorsal digital artery of pes (SCTID) - SCTID:230173000 + dorsal digital artery of pes (SCTID) @@ -8497,8 +7409,7 @@ - saddle joint (SCTID) - SCTID:23059003 + saddle joint (SCTID) @@ -8507,8 +7418,7 @@ - plantar digital artery (SCTID) - SCTID:230727008 + plantar digital artery (SCTID) @@ -8517,8 +7427,7 @@ - dorsal venous arch (SCTID) - SCTID:231189006 + dorsal venous arch (SCTID) @@ -8527,8 +7436,7 @@ - intestinal villus (SCTID) - SCTID:23230007 + intestinal villus (SCTID) @@ -8537,8 +7445,7 @@ - Krause's gland (SCTID) - SCTID:23492003 + Krause's gland (SCTID) @@ -8547,8 +7454,7 @@ - distal epiphysis of phalanx of pes (SCTID) - SCTID:236801009 + distal epiphysis of phalanx of pes (SCTID) @@ -8557,8 +7463,7 @@ - ruminant reticulum (SCTID) - SCTID:23703003 + ruminant reticulum (SCTID) @@ -8567,8 +7472,7 @@ - posterior temporal artery (SCTID) - SCTID:23830002 + posterior temporal artery (SCTID) @@ -8577,8 +7481,7 @@ - metatarsophalangeal joint (SCTID) - SCTID:239747005 + metatarsophalangeal joint (SCTID) @@ -8587,8 +7490,7 @@ - snake venom gland (SCTID) - SCTID:23993002 + snake venom gland (SCTID) @@ -8597,8 +7499,7 @@ - recurrent laryngeal nerve (SCTID) - SCTID:24227007 + recurrent laryngeal nerve (SCTID) @@ -8607,8 +7508,7 @@ - anterior talofibular ligament (SCTID) - SCTID:242467001 + anterior talofibular ligament (SCTID) @@ -8617,8 +7517,7 @@ - posterior talofibular ligament (SCTID) - SCTID:242570004 + posterior talofibular ligament (SCTID) @@ -8627,8 +7526,7 @@ - adrenal gland X zone (SCTID) - SCTID:24306004 + adrenal gland X zone (SCTID) @@ -8637,8 +7535,7 @@ - lateral lumbar region of abdomen (SCTID) - SCTID:243329008 + lateral lumbar region of abdomen (SCTID) @@ -8647,8 +7544,7 @@ - right renal pelvis (SCTID) - SCTID:243419002 + right renal pelvis (SCTID) @@ -8657,8 +7553,7 @@ - left renal pelvis (SCTID) - SCTID:243436005 + left renal pelvis (SCTID) @@ -8667,8 +7562,7 @@ - mucosa of renal pelvis (SCTID) - SCTID:243482002 + mucosa of renal pelvis (SCTID) @@ -8677,8 +7571,7 @@ - tunica intima of vein (SCTID) - SCTID:2436009 + tunica intima of vein (SCTID) @@ -8687,8 +7580,7 @@ - kidney capsule (SCTID) - SCTID:243657006 + kidney capsule (SCTID) @@ -8697,8 +7589,7 @@ - renal cortex interstitium (SCTID) - SCTID:243707006 + renal cortex interstitium (SCTID) @@ -8707,8 +7598,7 @@ - glomerular basement membrane (SCTID) - SCTID:243897006 + glomerular basement membrane (SCTID) @@ -8717,8 +7607,7 @@ - multicellular organism (SCTID) - SCTID:243928005 + multicellular organism (SCTID) @@ -8727,8 +7616,7 @@ - thoracic region of vertebral column (SCTID) - SCTID:243931006 + thoracic region of vertebral column (SCTID) @@ -8737,8 +7625,7 @@ - lumbar region of vertebral column (SCTID) - SCTID:243932004 + lumbar region of vertebral column (SCTID) @@ -8747,8 +7634,7 @@ - intercostal space (SCTID) - SCTID:243937005 + intercostal space (SCTID) @@ -8757,8 +7643,7 @@ - thoracic cavity (SCTID) - SCTID:243949006 + thoracic cavity (SCTID) @@ -8767,8 +7652,7 @@ - inferior mediastinum (SCTID) - SCTID:243950006 + inferior mediastinum (SCTID) @@ -8777,8 +7661,7 @@ - fibrous pericardium (SCTID) - SCTID:243953008 + fibrous pericardium (SCTID) @@ -8787,8 +7670,7 @@ - serous pericardium (SCTID) - SCTID:243954002 + serous pericardium (SCTID) @@ -8797,8 +7679,7 @@ - visceral serous pericardium (SCTID) - SCTID:243955001 + visceral serous pericardium (SCTID) @@ -8807,8 +7688,7 @@ - parietal serous pericardium (SCTID) - SCTID:243956000 + parietal serous pericardium (SCTID) @@ -8817,8 +7697,7 @@ - posterior mediastinum (SCTID) - SCTID:243957009 + posterior mediastinum (SCTID) @@ -8827,8 +7706,7 @@ - umbilicus (SCTID) - SCTID:243961003 + umbilicus (SCTID) @@ -8837,8 +7715,7 @@ - inguinal part of abdomen (SCTID) - SCTID:243962005 + inguinal part of abdomen (SCTID) @@ -8847,8 +7724,7 @@ - inguinal canal (SCTID) - SCTID:243966008 + inguinal canal (SCTID) @@ -8857,8 +7733,7 @@ - paracolic gutter (SCTID) - SCTID:243980001 + paracolic gutter (SCTID) @@ -8867,8 +7742,7 @@ - retroperitoneal space (SCTID) - SCTID:243983004 + retroperitoneal space (SCTID) @@ -8877,8 +7751,7 @@ - perineum (SCTID) - SCTID:243990009 + perineum (SCTID) @@ -8887,8 +7760,7 @@ - glomerular capillary endothelium (SCTID) - SCTID:243993006 + glomerular capillary endothelium (SCTID) @@ -8897,8 +7769,7 @@ - anal part of perineum (SCTID) - SCTID:243995004 + anal part of perineum (SCTID) @@ -8907,8 +7778,7 @@ - limb (SCTID) - SCTID:243996003 + limb (SCTID) @@ -8917,8 +7787,7 @@ - hindlimb zeugopod (SCTID) - SCTID:244015008 + hindlimb zeugopod (SCTID) @@ -8927,8 +7796,7 @@ - skin nerve field (SCTID) - SCTID:244023005 + skin nerve field (SCTID) @@ -8937,8 +7805,7 @@ - skin of external ear (SCTID) - SCTID:244073008 + skin of external ear (SCTID) @@ -8947,8 +7814,7 @@ - glabella skin (SCTID) - SCTID:244083007 + glabella skin (SCTID) @@ -8957,8 +7823,7 @@ - skin of lip (SCTID) - SCTID:244092005 + skin of lip (SCTID) @@ -8967,8 +7832,7 @@ - glomerular visceral epithelium (SCTID) - SCTID:244093000 + glomerular visceral epithelium (SCTID) @@ -8977,8 +7841,7 @@ - forelimb skin (SCTID) - SCTID:244130001 + forelimb skin (SCTID) @@ -8987,8 +7850,7 @@ - skin of shoulder (SCTID) - SCTID:244131002 + skin of shoulder (SCTID) @@ -8997,8 +7859,7 @@ - palmar skin crease (SCTID) - SCTID:244159001 + palmar skin crease (SCTID) @@ -9007,8 +7868,7 @@ - lower leg skin (SCTID) - SCTID:244180007 + lower leg skin (SCTID) @@ -9017,8 +7877,7 @@ - heel skin (SCTID) - SCTID:244185002 + heel skin (SCTID) @@ -9027,8 +7886,7 @@ - plantar skin crease (SCTID) - SCTID:244192007 + plantar skin crease (SCTID) @@ -9037,8 +7895,7 @@ - nail of manual digit (SCTID) - SCTID:244197001 + nail of manual digit (SCTID) @@ -9047,8 +7904,7 @@ - nail of pedal digit (SCTID) - SCTID:244198006 + nail of pedal digit (SCTID) @@ -9057,8 +7913,7 @@ - nail bed of finger (SCTID) - SCTID:244199003 + nail bed of finger (SCTID) @@ -9067,8 +7922,7 @@ - nail bed of toe (SCTID) - SCTID:244200000 + nail bed of toe (SCTID) @@ -9077,8 +7931,7 @@ - eyelash (SCTID) - SCTID:244201001 + eyelash (SCTID) @@ -9087,8 +7940,7 @@ - choroidal artery (SCTID) - SCTID:244210009 + choroidal artery (SCTID) @@ -9097,8 +7949,7 @@ - anterior choroidal artery (SCTID) - SCTID:244211008 + anterior choroidal artery (SCTID) @@ -9107,8 +7958,7 @@ - posterior inferior cerebellar artery (SCTID) - SCTID:244212001 + posterior inferior cerebellar artery (SCTID) @@ -9117,8 +7967,7 @@ - anterior inferior cerebellar artery (SCTID) - SCTID:244213006 + anterior inferior cerebellar artery (SCTID) @@ -9127,8 +7976,7 @@ - superior cerebellar artery (SCTID) - SCTID:244214000 + superior cerebellar artery (SCTID) @@ -9137,8 +7985,7 @@ - basilar artery (SCTID) - SCTID:244215004 + basilar artery (SCTID) @@ -9147,8 +7994,7 @@ - branch of external carotid artery (SCTID) - SCTID:244216003 + branch of external carotid artery (SCTID) @@ -9157,8 +8003,7 @@ - superior thyroid artery (SCTID) - SCTID:244218002 + superior thyroid artery (SCTID) @@ -9167,8 +8012,7 @@ - occipital artery (SCTID) - SCTID:244219005 + occipital artery (SCTID) @@ -9177,8 +8021,7 @@ - posterior auricular artery (SCTID) - SCTID:244220004 + posterior auricular artery (SCTID) @@ -9187,8 +8030,7 @@ - ethmoidal artery (SCTID) - SCTID:244222007 + ethmoidal artery (SCTID) @@ -9197,8 +8039,7 @@ - deep cervical artery (SCTID) - SCTID:244223002 + deep cervical artery (SCTID) @@ -9207,8 +8048,7 @@ - transverse cervical artery (SCTID) - SCTID:244224008 + transverse cervical artery (SCTID) @@ -9217,8 +8057,7 @@ - costo-cervical trunk (SCTID) - SCTID:244225009 + costo-cervical trunk (SCTID) @@ -9227,8 +8066,7 @@ - spinal artery (SCTID) - SCTID:244228006 + spinal artery (SCTID) @@ -9237,8 +8075,7 @@ - abdominal aorta (SCTID) - SCTID:244231007 + abdominal aorta (SCTID) @@ -9247,8 +8084,7 @@ - left pulmonary artery (SCTID) - SCTID:244234004 + left pulmonary artery (SCTID) @@ -9257,8 +8093,7 @@ - right pulmonary artery (SCTID) - SCTID:244235003 + right pulmonary artery (SCTID) @@ -9267,8 +8102,7 @@ - internal thoracic artery (SCTID) - SCTID:244239009 + internal thoracic artery (SCTID) @@ -9277,8 +8111,7 @@ - musculo-phrenic artery (SCTID) - SCTID:244242003 + musculo-phrenic artery (SCTID) @@ -9287,8 +8120,7 @@ - subcostal artery (SCTID) - SCTID:244243008 + subcostal artery (SCTID) @@ -9297,8 +8129,7 @@ - brachiocephalic artery (SCTID) - SCTID:244244002 + brachiocephalic artery (SCTID) @@ -9307,8 +8138,7 @@ - left subclavian artery (SCTID) - SCTID:244245001 + left subclavian artery (SCTID) @@ -9317,8 +8147,7 @@ - right subclavian artery (SCTID) - SCTID:244246000 + right subclavian artery (SCTID) @@ -9327,8 +8156,7 @@ - bronchial artery (SCTID) - SCTID:244247009 + bronchial artery (SCTID) @@ -9337,8 +8165,7 @@ - branch of left coronary artery (SCTID) - SCTID:244248004 + branch of left coronary artery (SCTID) @@ -9347,8 +8174,7 @@ - proper hepatic artery (SCTID) - SCTID:244262006 + proper hepatic artery (SCTID) @@ -9357,8 +8183,7 @@ - common hepatic artery (SCTID) - SCTID:244263001 + common hepatic artery (SCTID) @@ -9367,8 +8192,7 @@ - splenic artery (SCTID) - SCTID:244266009 + splenic artery (SCTID) @@ -9377,8 +8201,7 @@ - left gastric artery (SCTID) - SCTID:244267000 + left gastric artery (SCTID) @@ -9387,8 +8210,7 @@ - gastroduodenal artery (SCTID) - SCTID:244269002 + gastroduodenal artery (SCTID) @@ -9397,8 +8219,7 @@ - left gastroepiploic artery (SCTID) - SCTID:244270001 + left gastroepiploic artery (SCTID) @@ -9407,8 +8228,7 @@ - right gastroepiploic artery (SCTID) - SCTID:244271002 + right gastroepiploic artery (SCTID) @@ -9417,8 +8237,7 @@ - superior pancreaticoduodenal artery (SCTID) - SCTID:244272009 + superior pancreaticoduodenal artery (SCTID) @@ -9427,8 +8246,7 @@ - inferior pancreaticoduodenal artery (SCTID) - SCTID:244273004 + inferior pancreaticoduodenal artery (SCTID) @@ -9437,8 +8255,7 @@ - middle colic artery (SCTID) - SCTID:244276007 + middle colic artery (SCTID) @@ -9447,8 +8264,7 @@ - superior rectal artery (SCTID) - SCTID:244278008 + superior rectal artery (SCTID) @@ -9457,8 +8273,7 @@ - ileocolic artery (SCTID) - SCTID:244279000 + ileocolic artery (SCTID) @@ -9467,8 +8282,7 @@ - ovarian artery (SCTID) - SCTID:244280002 + ovarian artery (SCTID) @@ -9477,8 +8291,7 @@ - testicular artery (SCTID) - SCTID:244281003 + testicular artery (SCTID) @@ -9487,8 +8300,7 @@ - median sacral artery (SCTID) - SCTID:244282005 + median sacral artery (SCTID) @@ -9497,8 +8309,7 @@ - inferior phrenic artery (SCTID) - SCTID:244283000 + inferior phrenic artery (SCTID) @@ -9507,8 +8318,7 @@ - Bowman's space (SCTID) - SCTID:244284006 + Bowman's space (SCTID) @@ -9517,8 +8327,7 @@ - lumbar artery (SCTID) - SCTID:244285007 + lumbar artery (SCTID) @@ -9527,8 +8336,7 @@ - superior epigastric artery (SCTID) - SCTID:244287004 + superior epigastric artery (SCTID) @@ -9537,8 +8345,7 @@ - inferior epigastric artery (SCTID) - SCTID:244288009 + inferior epigastric artery (SCTID) @@ -9547,8 +8354,7 @@ - deep artery of penis (SCTID) - SCTID:244293007 + deep artery of penis (SCTID) @@ -9557,8 +8363,7 @@ - dorsal artery of penis (SCTID) - SCTID:244294001 + dorsal artery of penis (SCTID) @@ -9567,8 +8372,7 @@ - deep artery of clitoris (SCTID) - SCTID:244297008 + deep artery of clitoris (SCTID) @@ -9577,8 +8381,7 @@ - dorsal artery of clitoris (SCTID) - SCTID:244298003 + dorsal artery of clitoris (SCTID) @@ -9587,8 +8390,7 @@ - uterine artery (SCTID) - SCTID:244300003 + uterine artery (SCTID) @@ -9597,8 +8399,7 @@ - obturator artery (SCTID) - SCTID:244302006 + obturator artery (SCTID) @@ -9607,8 +8408,7 @@ - perineal artery (SCTID) - SCTID:244303001 + perineal artery (SCTID) @@ -9617,8 +8417,7 @@ - inferior rectal artery (SCTID) - SCTID:244304007 + inferior rectal artery (SCTID) @@ -9627,8 +8426,7 @@ - vesical artery (SCTID) - SCTID:244307000 + vesical artery (SCTID) @@ -9637,8 +8435,7 @@ - external pudendal artery (SCTID) - SCTID:244308005 + external pudendal artery (SCTID) @@ -9647,8 +8444,7 @@ - internal pudendal artery (SCTID) - SCTID:244309002 + internal pudendal artery (SCTID) @@ -9657,8 +8453,7 @@ - subscapular artery (SCTID) - SCTID:244311006 + subscapular artery (SCTID) @@ -9667,8 +8462,7 @@ - thoraco-acromial artery (SCTID) - SCTID:244315002 + thoraco-acromial artery (SCTID) @@ -9677,8 +8471,7 @@ - dorsal metacarpal artery (SCTID) - SCTID:244320002 + dorsal metacarpal artery (SCTID) @@ -9687,8 +8480,7 @@ - medial circumflex femoral artery (SCTID) - SCTID:244326008 + medial circumflex femoral artery (SCTID) @@ -9697,8 +8489,7 @@ - iliac circumflex artery (SCTID) - SCTID:244327004 + iliac circumflex artery (SCTID) @@ -9707,8 +8498,7 @@ - iliac artery (SCTID) - SCTID:244330006 + iliac artery (SCTID) @@ -9717,8 +8507,7 @@ - arcuate artery of foot (SCTID) - SCTID:244331005 + arcuate artery of foot (SCTID) @@ -9727,8 +8516,7 @@ - femoral artery (SCTID) - SCTID:244332003 + femoral artery (SCTID) @@ -9737,8 +8525,7 @@ - plantar metatarsal artery (SCTID) - SCTID:244343006 + plantar metatarsal artery (SCTID) @@ -9747,8 +8534,7 @@ - papillary muscle of left ventricle (SCTID) - SCTID:244347007 + papillary muscle of left ventricle (SCTID) @@ -9757,8 +8543,7 @@ - mitral valve leaflet (SCTID) - SCTID:244353007 + mitral valve leaflet (SCTID) @@ -9767,8 +8552,7 @@ - anterior leaflet of mitral valve (SCTID) - SCTID:244354001 + anterior leaflet of mitral valve (SCTID) @@ -9777,8 +8561,7 @@ - posterior leaflet of mitral valve (SCTID) - SCTID:244355000 + posterior leaflet of mitral valve (SCTID) @@ -9787,8 +8570,7 @@ - papillary muscle of right ventricle (SCTID) - SCTID:244356004 + papillary muscle of right ventricle (SCTID) @@ -9797,8 +8579,7 @@ - outflow part of right ventricle (SCTID) - SCTID:244379003 + outflow part of right ventricle (SCTID) @@ -9807,8 +8588,7 @@ - right cardiac atrium (SCTID) - SCTID:244383003 + right cardiac atrium (SCTID) @@ -9817,8 +8597,7 @@ - heart right ventricle (SCTID) - SCTID:244384009 + heart right ventricle (SCTID) @@ -9827,8 +8606,7 @@ - heart left ventricle (SCTID) - SCTID:244385005 + heart left ventricle (SCTID) @@ -9837,8 +8615,7 @@ - coronary sinus (SCTID) - SCTID:244386006 + coronary sinus (SCTID) @@ -9847,8 +8624,7 @@ - left cardiac atrium (SCTID) - SCTID:244387002 + left cardiac atrium (SCTID) @@ -9857,8 +8633,7 @@ - systemic vein (SCTID) - SCTID:244389004 + systemic vein (SCTID) @@ -9867,8 +8642,7 @@ - cerebral vein (SCTID) - SCTID:244392000 + cerebral vein (SCTID) @@ -9877,8 +8651,7 @@ - superior cerebral vein (SCTID) - SCTID:244393005 + superior cerebral vein (SCTID) @@ -9887,8 +8660,7 @@ - inferior cerebral vein (SCTID) - SCTID:244395003 + inferior cerebral vein (SCTID) @@ -9897,8 +8669,7 @@ - great cerebral vein (SCTID) - SCTID:244396002 + great cerebral vein (SCTID) @@ -9907,8 +8678,7 @@ - internal cerebral vein (SCTID) - SCTID:244397006 + internal cerebral vein (SCTID) @@ -9917,8 +8687,7 @@ - basal vein (SCTID) - SCTID:244398001 + basal vein (SCTID) @@ -9927,8 +8696,7 @@ - sagittal sinus (SCTID) - SCTID:244400002 + sagittal sinus (SCTID) @@ -9937,8 +8705,7 @@ - cavernous sinus (SCTID) - SCTID:244402005 + cavernous sinus (SCTID) @@ -9947,8 +8714,7 @@ - jugular vein (SCTID) - SCTID:244403000 + jugular vein (SCTID) @@ -9957,8 +8723,7 @@ - vena cava (SCTID) - SCTID:244405007 + vena cava (SCTID) @@ -9967,8 +8732,7 @@ - hemiazygos vein (SCTID) - SCTID:244408009 + hemiazygos vein (SCTID) @@ -9977,8 +8741,7 @@ - tentorium cerebelli (SCTID) - SCTID:244428008 + tentorium cerebelli (SCTID) @@ -9987,8 +8750,7 @@ - dorsal plus ventral thalamus (SCTID) - SCTID:244433007 + dorsal plus ventral thalamus (SCTID) @@ -9997,8 +8759,7 @@ - basal ganglion (SCTID) - SCTID:244434001 + basal ganglion (SCTID) @@ -10007,8 +8768,7 @@ - regional part of spinal cord (SCTID) - SCTID:244437008 + regional part of spinal cord (SCTID) @@ -10017,8 +8777,7 @@ - sacral spinal cord (SCTID) - SCTID:244438003 + sacral spinal cord (SCTID) @@ -10027,8 +8786,7 @@ - cranial nerve (SCTID) - SCTID:244447006 + cranial nerve (SCTID) @@ -10037,8 +8795,7 @@ - cranial ganglion (SCTID) - SCTID:244448001 + cranial ganglion (SCTID) @@ -10047,8 +8804,7 @@ - trigeminal ganglion (SCTID) - SCTID:244449009 + trigeminal ganglion (SCTID) @@ -10057,8 +8813,7 @@ - vestibular ganglion (SCTID) - SCTID:244450009 + vestibular ganglion (SCTID) @@ -10067,8 +8822,7 @@ - glossopharyngeal ganglion (SCTID) - SCTID:244451008 + glossopharyngeal ganglion (SCTID) @@ -10077,8 +8831,7 @@ - vagus X ganglion (SCTID) - SCTID:244452001 + vagus X ganglion (SCTID) @@ -10087,8 +8840,7 @@ - optic chiasma (SCTID) - SCTID:244453006 + optic chiasma (SCTID) @@ -10097,8 +8849,7 @@ - root of sacral nerve (SCTID) - SCTID:244454000 + root of sacral nerve (SCTID) @@ -10107,8 +8858,7 @@ - dorsal root ganglion (SCTID) - SCTID:244455004 + dorsal root ganglion (SCTID) @@ -10117,8 +8867,7 @@ - nerve (SCTID) - SCTID:244457007 + nerve (SCTID) @@ -10127,8 +8876,7 @@ - superior hypogastric nerve plexus (SCTID) - SCTID:244484008 + superior hypogastric nerve plexus (SCTID) @@ -10137,8 +8885,7 @@ - sense organ (SCTID) - SCTID:244485009 + sense organ (SCTID) @@ -10147,8 +8894,7 @@ - eyeball of camera-type eye (SCTID) - SCTID:244486005 + eyeball of camera-type eye (SCTID) @@ -10157,8 +8903,7 @@ - iridocorneal angle (SCTID) - SCTID:244498000 + iridocorneal angle (SCTID) @@ -10167,8 +8912,7 @@ - upper eyelid (SCTID) - SCTID:244499008 + upper eyelid (SCTID) @@ -10177,8 +8921,7 @@ - capsule of lens (SCTID) - SCTID:244500004 + capsule of lens (SCTID) @@ -10187,8 +8930,7 @@ - posterior nasal aperture (SCTID) - SCTID:244507001 + posterior nasal aperture (SCTID) @@ -10197,8 +8939,7 @@ - cranial suture (SCTID) - SCTID:244509003 + cranial suture (SCTID) @@ -10207,8 +8948,7 @@ - coronal suture (SCTID) - SCTID:244510008 + coronal suture (SCTID) @@ -10217,8 +8957,7 @@ - sagittal suture (SCTID) - SCTID:244511007 + sagittal suture (SCTID) @@ -10227,8 +8966,7 @@ - intervertebral joint (SCTID) - SCTID:244512000 + intervertebral joint (SCTID) @@ -10237,8 +8975,7 @@ - manus joint (SCTID) - SCTID:244546004 + manus joint (SCTID) @@ -10247,8 +8984,7 @@ - tibiofibular joint (SCTID) - SCTID:244554002 + tibiofibular joint (SCTID) @@ -10257,8 +8993,7 @@ - pes joint (SCTID) - SCTID:244555001 + pes joint (SCTID) @@ -10267,8 +9002,7 @@ - intervertebral disk (SCTID) - SCTID:244570000 + intervertebral disk (SCTID) @@ -10277,8 +9011,7 @@ - glomerular mesangium (SCTID) - SCTID:244574009 + glomerular mesangium (SCTID) @@ -10287,8 +9020,7 @@ - ligament of vertebral column (SCTID) - SCTID:244590009 + ligament of vertebral column (SCTID) @@ -10297,8 +9029,7 @@ - ligamentum flavum (SCTID) - SCTID:244598002 + ligamentum flavum (SCTID) @@ -10307,8 +9038,7 @@ - anterior longitudinal ligament (SCTID) - SCTID:244601007 + anterior longitudinal ligament (SCTID) @@ -10317,8 +9047,7 @@ - posterior longitudinal ligament (SCTID) - SCTID:244603005 + posterior longitudinal ligament (SCTID) @@ -10327,8 +9056,7 @@ - patellar ligament (SCTID) - SCTID:244639004 + patellar ligament (SCTID) @@ -10337,8 +9065,7 @@ - talofibular ligament (SCTID) - SCTID:244649001 + talofibular ligament (SCTID) @@ -10347,8 +9074,7 @@ - calcaneofibular ligament (SCTID) - SCTID:244650001 + calcaneofibular ligament (SCTID) @@ -10357,8 +9083,7 @@ - palatine bone (SCTID) - SCTID:244654005 + palatine bone (SCTID) @@ -10367,8 +9092,7 @@ - rib 2 (SCTID) - SCTID:244656007 + rib 2 (SCTID) @@ -10377,8 +9101,7 @@ - macula densa (SCTID) - SCTID:244657003 + macula densa (SCTID) @@ -10387,8 +9110,7 @@ - rib 3 (SCTID) - SCTID:244658008 + rib 3 (SCTID) @@ -10397,8 +9119,7 @@ - rib 4 (SCTID) - SCTID:244659000 + rib 4 (SCTID) @@ -10407,8 +9128,7 @@ - rib 5 (SCTID) - SCTID:244660005 + rib 5 (SCTID) @@ -10417,8 +9137,7 @@ - rib 6 (SCTID) - SCTID:244661009 + rib 6 (SCTID) @@ -10427,8 +9146,7 @@ - rib 7 (SCTID) - SCTID:244662002 + rib 7 (SCTID) @@ -10437,8 +9155,7 @@ - rib 8 (SCTID) - SCTID:244663007 + rib 8 (SCTID) @@ -10447,8 +9164,7 @@ - rib 9 (SCTID) - SCTID:244664001 + rib 9 (SCTID) @@ -10457,8 +9173,7 @@ - rib 10 (SCTID) - SCTID:244665000 + rib 10 (SCTID) @@ -10467,8 +9182,7 @@ - rib 11 (SCTID) - SCTID:244666004 + rib 11 (SCTID) @@ -10477,8 +9191,7 @@ - rib 12 (SCTID) - SCTID:244667008 + rib 12 (SCTID) @@ -10487,8 +9200,7 @@ - crus of diaphragm (SCTID) - SCTID:244668003 + crus of diaphragm (SCTID) @@ -10497,8 +9209,7 @@ - proximal phalanx of pedal digit 5 (SCTID) - SCTID:244672004 + proximal phalanx of pedal digit 5 (SCTID) @@ -10507,8 +9218,7 @@ - middle phalanx of pedal digit 5 (SCTID) - SCTID:244673009 + middle phalanx of pedal digit 5 (SCTID) @@ -10517,8 +9227,7 @@ - distal phalanx of pedal digit 5 (SCTID) - SCTID:244674003 + distal phalanx of pedal digit 5 (SCTID) @@ -10527,8 +9236,7 @@ - sesamoid bone of pes (SCTID) - SCTID:244675002 + sesamoid bone of pes (SCTID) @@ -10537,8 +9245,7 @@ - foramen magnum (SCTID) - SCTID:244679008 + foramen magnum (SCTID) @@ -10547,8 +9254,7 @@ - anterior fontanel (SCTID) - SCTID:244680006 + anterior fontanel (SCTID) @@ -10557,8 +9263,7 @@ - posterior fontanelle (SCTID) - SCTID:244681005 + posterior fontanelle (SCTID) @@ -10567,8 +9272,7 @@ - body of mandible (SCTID) - SCTID:244684002 + body of mandible (SCTID) @@ -10577,8 +9281,7 @@ - mental foramen (SCTID) - SCTID:244686000 + mental foramen (SCTID) @@ -10587,8 +9290,7 @@ - mandible coronoid process (SCTID) - SCTID:244691004 + mandible coronoid process (SCTID) @@ -10597,8 +9299,7 @@ - epiphysis (SCTID) - SCTID:244701002 + epiphysis (SCTID) @@ -10607,8 +9308,7 @@ - proximal epiphysis of femur (SCTID) - SCTID:244702009 + proximal epiphysis of femur (SCTID) @@ -10617,8 +9317,7 @@ - costal cartilage (SCTID) - SCTID:244703004 + costal cartilage (SCTID) @@ -10627,8 +9326,7 @@ - cranial muscle (SCTID) - SCTID:244718003 + cranial muscle (SCTID) @@ -10637,8 +9335,7 @@ - orbicularis oculi muscle (SCTID) - SCTID:244726006 + orbicularis oculi muscle (SCTID) @@ -10647,8 +9344,7 @@ - depressor supercilii (SCTID) - SCTID:244728007 + depressor supercilii (SCTID) @@ -10657,8 +9353,7 @@ - nasal muscle (SCTID) - SCTID:244730009 + nasal muscle (SCTID) @@ -10667,8 +9362,7 @@ - procerus (SCTID) - SCTID:244731008 + procerus (SCTID) @@ -10677,8 +9371,7 @@ - nasalis muscle (SCTID) - SCTID:244732001 + nasalis muscle (SCTID) @@ -10687,8 +9380,7 @@ - depressor septi nasi (SCTID) - SCTID:244733006 + depressor septi nasi (SCTID) @@ -10697,8 +9389,7 @@ - zygomaticus major muscle (SCTID) - SCTID:244739005 + zygomaticus major muscle (SCTID) @@ -10707,8 +9398,7 @@ - zygomaticus major muscle (SCTID) - SCTID:244740007 + zygomaticus major muscle (SCTID) @@ -10717,8 +9407,7 @@ - zygomaticus minor muscle (SCTID) - SCTID:244741006 + zygomaticus minor muscle (SCTID) @@ -10727,8 +9416,7 @@ - mentalis muscle (SCTID) - SCTID:244744003 + mentalis muscle (SCTID) @@ -10737,8 +9425,7 @@ - buccinator muscle (SCTID) - SCTID:244747005 + buccinator muscle (SCTID) @@ -10747,8 +9434,7 @@ - orbicularis oris muscle (SCTID) - SCTID:244749008 + orbicularis oris muscle (SCTID) @@ -10757,8 +9443,7 @@ - platysma (SCTID) - SCTID:244754004 + platysma (SCTID) @@ -10767,8 +9452,7 @@ - risorius muscle (SCTID) - SCTID:244755003 + risorius muscle (SCTID) @@ -10777,8 +9461,7 @@ - auricular muscle (SCTID) - SCTID:244757006 + auricular muscle (SCTID) @@ -10787,8 +9470,7 @@ - extrinsic auricular muscle (SCTID) - SCTID:244758001 + extrinsic auricular muscle (SCTID) @@ -10797,8 +9479,7 @@ - superior auricular muscle (SCTID) - SCTID:244759009 + superior auricular muscle (SCTID) @@ -10807,8 +9488,7 @@ - posterior auricular muscle (SCTID) - SCTID:244761000 + posterior auricular muscle (SCTID) @@ -10817,8 +9497,7 @@ - intrinsic auricular muscle (SCTID) - SCTID:244762007 + intrinsic auricular muscle (SCTID) @@ -10827,8 +9506,7 @@ - helicis major (SCTID) - SCTID:244764008 + helicis major (SCTID) @@ -10837,8 +9515,7 @@ - helicis minor (SCTID) - SCTID:244765009 + helicis minor (SCTID) @@ -10847,8 +9524,7 @@ - tragicus muscle (SCTID) - SCTID:244766005 + tragicus muscle (SCTID) @@ -10857,8 +9533,7 @@ - transverse muscle of auricle (SCTID) - SCTID:244767001 + transverse muscle of auricle (SCTID) @@ -10867,8 +9542,7 @@ - oblique muscle of auricle (SCTID) - SCTID:244768006 + oblique muscle of auricle (SCTID) @@ -10877,8 +9551,7 @@ - masticatory muscle (SCTID) - SCTID:244769003 + masticatory muscle (SCTID) @@ -10887,8 +9560,7 @@ - pterygoid muscle (SCTID) - SCTID:244770002 + pterygoid muscle (SCTID) @@ -10897,8 +9569,7 @@ - medial pterygoid muscle (SCTID) - SCTID:244771003 + medial pterygoid muscle (SCTID) @@ -10907,8 +9578,7 @@ - lateral pterygoid muscle (SCTID) - SCTID:244772005 + lateral pterygoid muscle (SCTID) @@ -10917,8 +9587,7 @@ - levator palpebrae superioris (SCTID) - SCTID:244774006 + levator palpebrae superioris (SCTID) @@ -10927,8 +9596,7 @@ - superior tarsal muscle (SCTID) - SCTID:244775007 + superior tarsal muscle (SCTID) @@ -10937,8 +9605,7 @@ - muscle of auditory ossicle (SCTID) - SCTID:244778009 + muscle of auditory ossicle (SCTID) @@ -10947,8 +9614,7 @@ - tensor tympani (SCTID) - SCTID:244779001 + tensor tympani (SCTID) @@ -10957,8 +9623,7 @@ - stapedius muscle (SCTID) - SCTID:244780003 + stapedius muscle (SCTID) @@ -10967,8 +9632,7 @@ - tongue muscle (SCTID) - SCTID:244781004 + tongue muscle (SCTID) @@ -10977,8 +9641,7 @@ - extrinsic muscle of tongue (SCTID) - SCTID:244782006 + extrinsic muscle of tongue (SCTID) @@ -10987,8 +9650,7 @@ - palatoglossus muscle (SCTID) - SCTID:244783001 + palatoglossus muscle (SCTID) @@ -10997,8 +9659,7 @@ - genioglossus muscle (SCTID) - SCTID:244784007 + genioglossus muscle (SCTID) @@ -11007,8 +9668,7 @@ - hyoglossus muscle (SCTID) - SCTID:244785008 + hyoglossus muscle (SCTID) @@ -11017,8 +9677,7 @@ - chondroglossus muscle (SCTID) - SCTID:244787000 + chondroglossus muscle (SCTID) @@ -11027,8 +9686,7 @@ - intrinsic muscle of tongue (SCTID) - SCTID:244788005 + intrinsic muscle of tongue (SCTID) @@ -11037,8 +9695,7 @@ - superior longitudinal muscle of tongue (SCTID) - SCTID:244790006 + superior longitudinal muscle of tongue (SCTID) @@ -11047,8 +9704,7 @@ - transverse muscle of tongue (SCTID) - SCTID:244792003 + transverse muscle of tongue (SCTID) @@ -11057,8 +9713,7 @@ - vertical muscle of tongue (SCTID) - SCTID:244793008 + vertical muscle of tongue (SCTID) @@ -11067,8 +9722,7 @@ - palatal muscle (SCTID) - SCTID:244794002 + palatal muscle (SCTID) @@ -11077,8 +9731,7 @@ - levator veli palatini (SCTID) - SCTID:244795001 + levator veli palatini (SCTID) @@ -11087,8 +9740,7 @@ - palatopharyngeus muscle (SCTID) - SCTID:244796000 + palatopharyngeus muscle (SCTID) @@ -11097,8 +9749,7 @@ - uvular muscle (SCTID) - SCTID:244797009 + uvular muscle (SCTID) @@ -11107,8 +9758,7 @@ - chordate pharyngeal muscle (SCTID) - SCTID:244798004 + chordate pharyngeal muscle (SCTID) @@ -11117,8 +9767,7 @@ - constrictor muscle of pharynx (SCTID) - SCTID:244799007 + constrictor muscle of pharynx (SCTID) @@ -11127,8 +9776,7 @@ - superior pharyngeal constrictor (SCTID) - SCTID:244800006 + superior pharyngeal constrictor (SCTID) @@ -11137,8 +9785,7 @@ - posterior fascicle of palatopharyngeus (SCTID) - SCTID:244801005 + posterior fascicle of palatopharyngeus (SCTID) @@ -11147,8 +9794,7 @@ - middle pharyngeal constrictor (SCTID) - SCTID:244802003 + middle pharyngeal constrictor (SCTID) @@ -11157,8 +9803,7 @@ - inferior pharyngeal constrictor (SCTID) - SCTID:244803008 + inferior pharyngeal constrictor (SCTID) @@ -11167,8 +9812,7 @@ - cricopharyngeus muscle (SCTID) - SCTID:244804002 + cricopharyngeus muscle (SCTID) @@ -11177,8 +9821,7 @@ - thyropharyngeus muscle (SCTID) - SCTID:244805001 + thyropharyngeus muscle (SCTID) @@ -11187,8 +9830,7 @@ - stylopharyngeus muscle (SCTID) - SCTID:244806000 + stylopharyngeus muscle (SCTID) @@ -11197,8 +9839,7 @@ - salpingopharyngeus muscle (SCTID) - SCTID:244807009 + salpingopharyngeus muscle (SCTID) @@ -11207,8 +9848,7 @@ - laryngeal extrinsic muscle (SCTID) - SCTID:244808004 + laryngeal extrinsic muscle (SCTID) @@ -11217,8 +9857,7 @@ - cricothyroid muscle (SCTID) - SCTID:244809007 + cricothyroid muscle (SCTID) @@ -11227,8 +9866,7 @@ - laryngeal intrinsic muscle (SCTID) - SCTID:244810002 + laryngeal intrinsic muscle (SCTID) @@ -11237,8 +9875,7 @@ - crico-arytenoid muscle (SCTID) - SCTID:244811003 + crico-arytenoid muscle (SCTID) @@ -11247,8 +9884,7 @@ - posterior crico-arytenoid (SCTID) - SCTID:244812005 + posterior crico-arytenoid (SCTID) @@ -11257,8 +9893,7 @@ - lateral crico-arytenoid (SCTID) - SCTID:244813000 + lateral crico-arytenoid (SCTID) @@ -11267,8 +9902,7 @@ - oblique arytenoid (SCTID) - SCTID:244817004 + oblique arytenoid (SCTID) @@ -11277,8 +9911,7 @@ - aryepiglotticus muscle (SCTID) - SCTID:244818009 + aryepiglotticus muscle (SCTID) @@ -11287,8 +9920,7 @@ - thyroepiglotticus muscle (SCTID) - SCTID:244819001 + thyroepiglotticus muscle (SCTID) @@ -11297,8 +9929,7 @@ - vocalis muscle (SCTID) - SCTID:244820007 + vocalis muscle (SCTID) @@ -11307,8 +9938,7 @@ - hyoid muscle (SCTID) - SCTID:244823009 + hyoid muscle (SCTID) @@ -11317,8 +9947,7 @@ - suprahyoid muscle (SCTID) - SCTID:244824003 + suprahyoid muscle (SCTID) @@ -11327,8 +9956,7 @@ - digastric muscle group (SCTID) - SCTID:244825002 + digastric muscle group (SCTID) @@ -11337,8 +9965,7 @@ - stylohyoid muscle (SCTID) - SCTID:244826001 + stylohyoid muscle (SCTID) @@ -11347,8 +9974,7 @@ - mylohyoid muscle (SCTID) - SCTID:244827005 + mylohyoid muscle (SCTID) @@ -11357,8 +9983,7 @@ - geniohyoid muscle (SCTID) - SCTID:244828000 + geniohyoid muscle (SCTID) @@ -11367,8 +9992,7 @@ - infrahyoid muscle (SCTID) - SCTID:244829008 + infrahyoid muscle (SCTID) @@ -11377,8 +10001,7 @@ - sternohyoid muscle (SCTID) - SCTID:244830003 + sternohyoid muscle (SCTID) @@ -11387,8 +10010,7 @@ - sternothyroid muscle (SCTID) - SCTID:244831004 + sternothyroid muscle (SCTID) @@ -11397,8 +10019,7 @@ - thyrohyoid muscle (SCTID) - SCTID:244832006 + thyrohyoid muscle (SCTID) @@ -11407,8 +10028,7 @@ - omohyoid muscle (SCTID) - SCTID:244833001 + omohyoid muscle (SCTID) @@ -11417,8 +10037,7 @@ - longus colli muscle (SCTID) - SCTID:244836009 + longus colli muscle (SCTID) @@ -11427,8 +10046,7 @@ - longus capitis muscle (SCTID) - SCTID:244837000 + longus capitis muscle (SCTID) @@ -11437,8 +10055,7 @@ - rectus capitis anterior (SCTID) - SCTID:244838005 + rectus capitis anterior (SCTID) @@ -11447,8 +10064,7 @@ - rectus capitis lateralis muscle (SCTID) - SCTID:244841001 + rectus capitis lateralis muscle (SCTID) @@ -11457,8 +10073,7 @@ - scalene muscle (SCTID) - SCTID:244843003 + scalene muscle (SCTID) @@ -11467,8 +10082,7 @@ - scalenus medius (SCTID) - SCTID:244844009 + scalenus medius (SCTID) @@ -11477,8 +10091,7 @@ - skeletal muscle tissue of trunk (SCTID) - SCTID:244848007 + skeletal muscle tissue of trunk (SCTID) @@ -11487,8 +10100,7 @@ - splenius capitis (SCTID) - SCTID:244850004 + splenius capitis (SCTID) @@ -11497,8 +10109,7 @@ - iliocostalis cervicis muscle (SCTID) - SCTID:244851000 + iliocostalis cervicis muscle (SCTID) @@ -11507,8 +10118,7 @@ - erector spinae muscle group (SCTID) - SCTID:244852007 + erector spinae muscle group (SCTID) @@ -11517,8 +10127,7 @@ - iliocostalis muscle (SCTID) - SCTID:244854008 + iliocostalis muscle (SCTID) @@ -11527,8 +10136,7 @@ - iliocostalis lumborum (SCTID) - SCTID:244855009 + iliocostalis lumborum (SCTID) @@ -11537,8 +10145,7 @@ - iliocostalis thoracis muscle (SCTID) - SCTID:244856005 + iliocostalis thoracis muscle (SCTID) @@ -11547,8 +10154,7 @@ - longissimus muscle (SCTID) - SCTID:244858006 + longissimus muscle (SCTID) @@ -11557,8 +10163,7 @@ - longissimus thoracis muscle (SCTID) - SCTID:244859003 + longissimus thoracis muscle (SCTID) @@ -11567,8 +10172,7 @@ - longissimus cervicis muscle (SCTID) - SCTID:244860008 + longissimus cervicis muscle (SCTID) @@ -11577,8 +10181,7 @@ - longissimus capitis (SCTID) - SCTID:244861007 + longissimus capitis (SCTID) @@ -11587,8 +10190,7 @@ - spinalis muscle (SCTID) - SCTID:244862000 + spinalis muscle (SCTID) @@ -11597,8 +10199,7 @@ - spinalis thoracis muscle (SCTID) - SCTID:244863005 + spinalis thoracis muscle (SCTID) @@ -11607,8 +10208,7 @@ - spinalis cervicis muscle (SCTID) - SCTID:244864004 + spinalis cervicis muscle (SCTID) @@ -11617,8 +10217,7 @@ - spinalis capitis muscle (SCTID) - SCTID:244865003 + spinalis capitis muscle (SCTID) @@ -11627,8 +10226,7 @@ - transversospinales muscle (SCTID) - SCTID:244866002 + transversospinales muscle (SCTID) @@ -11637,8 +10235,7 @@ - semispinalis muscle (SCTID) - SCTID:244867006 + semispinalis muscle (SCTID) @@ -11647,8 +10244,7 @@ - semispinalis thoracis (SCTID) - SCTID:244868001 + semispinalis thoracis (SCTID) @@ -11657,8 +10253,7 @@ - semispinalis cervicis (SCTID) - SCTID:244869009 + semispinalis cervicis (SCTID) @@ -11667,8 +10262,7 @@ - semispinalis capitis (SCTID) - SCTID:244870005 + semispinalis capitis (SCTID) @@ -11677,8 +10271,7 @@ - rotator muscle of the vertebral column (SCTID) - SCTID:244872002 + rotator muscle of the vertebral column (SCTID) @@ -11687,8 +10280,7 @@ - external intercostal muscle (SCTID) - SCTID:244878003 + external intercostal muscle (SCTID) @@ -11697,8 +10289,7 @@ - internal intercostal muscle (SCTID) - SCTID:244890001 + internal intercostal muscle (SCTID) @@ -11707,8 +10298,7 @@ - subcostal muscle (SCTID) - SCTID:244914005 + subcostal muscle (SCTID) @@ -11717,8 +10307,7 @@ - transversus thoracis (SCTID) - SCTID:244933000 + transversus thoracis (SCTID) @@ -11727,8 +10316,7 @@ - serratus dorsalis muscle (SCTID) - SCTID:244934006 + serratus dorsalis muscle (SCTID) @@ -11737,8 +10325,7 @@ - serratus dorsalis superior muscle (SCTID) - SCTID:244935007 + serratus dorsalis superior muscle (SCTID) @@ -11747,8 +10334,7 @@ - serratus dorsalis inferior muscle (SCTID) - SCTID:244936008 + serratus dorsalis inferior muscle (SCTID) @@ -11757,8 +10343,7 @@ - left crus of diaphragm (SCTID) - SCTID:244937004 + left crus of diaphragm (SCTID) @@ -11767,8 +10352,7 @@ - dome of diaphragm (SCTID) - SCTID:244940004 + dome of diaphragm (SCTID) @@ -11777,8 +10361,7 @@ - left dome of diaphragm (SCTID) - SCTID:244941000 + left dome of diaphragm (SCTID) @@ -11787,8 +10370,7 @@ - right dome of diaphragm (SCTID) - SCTID:244942007 + right dome of diaphragm (SCTID) @@ -11797,8 +10379,7 @@ - central tendon of diaphragm (SCTID) - SCTID:244943002 + central tendon of diaphragm (SCTID) @@ -11807,8 +10388,7 @@ - abdominal external oblique muscle (SCTID) - SCTID:244946005 + abdominal external oblique muscle (SCTID) @@ -11817,8 +10397,7 @@ - abdominal internal oblique muscle (SCTID) - SCTID:244947001 + abdominal internal oblique muscle (SCTID) @@ -11827,8 +10406,7 @@ - cremaster muscle (SCTID) - SCTID:244948006 + cremaster muscle (SCTID) @@ -11837,8 +10415,7 @@ - transversus abdominis muscle (SCTID) - SCTID:244949003 + transversus abdominis muscle (SCTID) @@ -11847,8 +10424,7 @@ - pyramidalis (SCTID) - SCTID:244950003 + pyramidalis (SCTID) @@ -11857,8 +10433,7 @@ - psoas major muscle (SCTID) - SCTID:244952006 + psoas major muscle (SCTID) @@ -11867,8 +10442,7 @@ - thick ascending limb of loop of Henle (SCTID) - SCTID:244953001 + thick ascending limb of loop of Henle (SCTID) @@ -11877,8 +10451,7 @@ - psoas minor muscle (SCTID) - SCTID:244954007 + psoas minor muscle (SCTID) @@ -11887,8 +10460,7 @@ - iliacus muscle (SCTID) - SCTID:244956009 + iliacus muscle (SCTID) @@ -11897,8 +10469,7 @@ - pubococcygeus muscle (SCTID) - SCTID:244958005 + pubococcygeus muscle (SCTID) @@ -11907,8 +10478,7 @@ - constrictor vulvae muscle (SCTID) - SCTID:244961006 + constrictor vulvae muscle (SCTID) @@ -11917,8 +10487,7 @@ - puborectalis muscle (SCTID) - SCTID:244962004 + puborectalis muscle (SCTID) @@ -11927,8 +10496,7 @@ - iliococcygeus muscle (SCTID) - SCTID:244964003 + iliococcygeus muscle (SCTID) @@ -11937,8 +10505,7 @@ - external anal sphincter (SCTID) - SCTID:244969008 + external anal sphincter (SCTID) @@ -11947,8 +10514,7 @@ - bulbospongiosus muscle (SCTID) - SCTID:244972001 + bulbospongiosus muscle (SCTID) @@ -11957,8 +10523,7 @@ - male bulbospongiosus muscle (SCTID) - SCTID:244973006 + male bulbospongiosus muscle (SCTID) @@ -11967,8 +10532,7 @@ - female bulbospongiosus muscle (SCTID) - SCTID:244974000 + female bulbospongiosus muscle (SCTID) @@ -11977,8 +10541,7 @@ - ischiocavernosus muscle (SCTID) - SCTID:244975004 + ischiocavernosus muscle (SCTID) @@ -11987,8 +10550,7 @@ - forelimb stylopod muscle (SCTID) - SCTID:244979005 + forelimb stylopod muscle (SCTID) @@ -11997,8 +10559,7 @@ - coracobrachialis muscle (SCTID) - SCTID:244980008 + coracobrachialis muscle (SCTID) @@ -12007,8 +10568,7 @@ - brachialis muscle (SCTID) - SCTID:244982000 + brachialis muscle (SCTID) @@ -12017,8 +10577,7 @@ - flexor carpi ulnaris muscle (SCTID) - SCTID:244985003 + flexor carpi ulnaris muscle (SCTID) @@ -12027,8 +10586,7 @@ - brachioradialis (SCTID) - SCTID:244989009 + brachioradialis (SCTID) @@ -12037,8 +10595,7 @@ - extensor carpi radialis longus muscle (SCTID) - SCTID:244990000 + extensor carpi radialis longus muscle (SCTID) @@ -12047,8 +10604,7 @@ - extensor carpi radialis brevis muscle (SCTID) - SCTID:244991001 + extensor carpi radialis brevis muscle (SCTID) @@ -12057,8 +10613,7 @@ - extensor carpi ulnaris muscle (SCTID) - SCTID:244992008 + extensor carpi ulnaris muscle (SCTID) @@ -12067,8 +10622,7 @@ - anconeus muscle (SCTID) - SCTID:244993003 + anconeus muscle (SCTID) @@ -12077,8 +10631,7 @@ - extensor pollicis brevis muscle (SCTID) - SCTID:244995005 + extensor pollicis brevis muscle (SCTID) @@ -12087,8 +10640,7 @@ - intrinsic muscle of manus (SCTID) - SCTID:244997002 + intrinsic muscle of manus (SCTID) @@ -12097,8 +10649,7 @@ - dorsal interosseous of manus (SCTID) - SCTID:245002007 + dorsal interosseous of manus (SCTID) @@ -12107,8 +10658,7 @@ - first dorsal interosseous of manus (SCTID) - SCTID:245003002 + first dorsal interosseous of manus (SCTID) @@ -12117,8 +10667,7 @@ - hindlimb stylopod muscle (SCTID) - SCTID:245013005 + hindlimb stylopod muscle (SCTID) @@ -12127,8 +10676,7 @@ - pectineus muscle (SCTID) - SCTID:245017006 + pectineus muscle (SCTID) @@ -12137,8 +10685,7 @@ - piriformis muscle (SCTID) - SCTID:245019009 + piriformis muscle (SCTID) @@ -12147,8 +10694,7 @@ - quadratus femoris (SCTID) - SCTID:245020003 + quadratus femoris (SCTID) @@ -12157,8 +10703,7 @@ - gemellus muscle (SCTID) - SCTID:245021004 + gemellus muscle (SCTID) @@ -12167,8 +10712,7 @@ - superior gemellus muscle (SCTID) - SCTID:245022006 + superior gemellus muscle (SCTID) @@ -12177,8 +10721,7 @@ - obturator muscle (SCTID) - SCTID:245024007 + obturator muscle (SCTID) @@ -12187,8 +10730,7 @@ - obturator internus (SCTID) - SCTID:245025008 + obturator internus (SCTID) @@ -12197,8 +10739,7 @@ - obturator externus (SCTID) - SCTID:245026009 + obturator externus (SCTID) @@ -12207,8 +10748,7 @@ - popliteus muscle (SCTID) - SCTID:245032004 + popliteus muscle (SCTID) @@ -12217,8 +10757,7 @@ - tendon of triceps brachii (SCTID) - SCTID:245105007 + tendon of triceps brachii (SCTID) @@ -12227,8 +10766,7 @@ - renal straight tubule (SCTID) - SCTID:245151008 + renal straight tubule (SCTID) @@ -12237,8 +10775,7 @@ - tendon of obturator internus (SCTID) - SCTID:245172006 + tendon of obturator internus (SCTID) @@ -12247,8 +10784,7 @@ - tendon of quadriceps femoris (SCTID) - SCTID:245175008 + tendon of quadriceps femoris (SCTID) @@ -12257,8 +10793,7 @@ - nephron tubule basement membrane (SCTID) - SCTID:245251000 + nephron tubule basement membrane (SCTID) @@ -12267,8 +10802,7 @@ - submental lymph node (SCTID) - SCTID:245318006 + submental lymph node (SCTID) @@ -12277,8 +10811,7 @@ - submandibular lymph node (SCTID) - SCTID:245319003 + submandibular lymph node (SCTID) @@ -12287,8 +10820,7 @@ - supraclavicular lymph node (SCTID) - SCTID:245325004 + supraclavicular lymph node (SCTID) @@ -12297,8 +10829,7 @@ - occipital lymph node (SCTID) - SCTID:245326003 + occipital lymph node (SCTID) @@ -12307,8 +10838,7 @@ - anterior auricular lymph node (SCTID) - SCTID:245327007 + anterior auricular lymph node (SCTID) @@ -12317,8 +10847,7 @@ - mastoid lymph node (SCTID) - SCTID:245328002 + mastoid lymph node (SCTID) @@ -12327,8 +10856,7 @@ - anterior mediastinal lymph node (SCTID) - SCTID:245335005 + anterior mediastinal lymph node (SCTID) @@ -12337,8 +10865,7 @@ - tracheobronchial lymph node (SCTID) - SCTID:245341003 + tracheobronchial lymph node (SCTID) @@ -12347,8 +10874,7 @@ - abdominal lymph node (SCTID) - SCTID:245342005 + abdominal lymph node (SCTID) @@ -12357,8 +10883,7 @@ - celiac lymph node (SCTID) - SCTID:245343000 + celiac lymph node (SCTID) @@ -12367,8 +10892,7 @@ - descending limb of loop of Henle (SCTID) - SCTID:245350001 + descending limb of loop of Henle (SCTID) @@ -12377,8 +10901,7 @@ - pelvic lymph node (SCTID) - SCTID:245352009 + pelvic lymph node (SCTID) @@ -12387,8 +10910,7 @@ - internal iliac lymph node (SCTID) - SCTID:245357003 + internal iliac lymph node (SCTID) @@ -12397,8 +10919,7 @@ - external iliac lymph node (SCTID) - SCTID:245358008 + external iliac lymph node (SCTID) @@ -12407,8 +10928,7 @@ - obturator lymph node (SCTID) - SCTID:245368003 + obturator lymph node (SCTID) @@ -12417,8 +10937,7 @@ - hilum of spleen (SCTID) - SCTID:245377005 + hilum of spleen (SCTID) @@ -12427,8 +10946,7 @@ - lobe of liver (SCTID) - SCTID:245378000 + lobe of liver (SCTID) @@ -12437,8 +10955,7 @@ - tail of pancreas (SCTID) - SCTID:245382003 + tail of pancreas (SCTID) @@ -12447,8 +10964,7 @@ - uncinate process of pancreas (SCTID) - SCTID:245383008 + uncinate process of pancreas (SCTID) @@ -12457,8 +10973,7 @@ - ventral pancreatic duct (SCTID) - SCTID:245385001 + ventral pancreatic duct (SCTID) @@ -12467,8 +10982,7 @@ - dorsal pancreatic duct (SCTID) - SCTID:245386000 + dorsal pancreatic duct (SCTID) @@ -12477,8 +10991,7 @@ - duodenal papilla (SCTID) - SCTID:245389007 + duodenal papilla (SCTID) @@ -12487,8 +11000,7 @@ - minor duodenal papilla (SCTID) - SCTID:245390003 + minor duodenal papilla (SCTID) @@ -12497,8 +11009,7 @@ - fundus of gallbladder (SCTID) - SCTID:245391004 + fundus of gallbladder (SCTID) @@ -12507,8 +11018,7 @@ - body of gallbladder (SCTID) - SCTID:245392006 + body of gallbladder (SCTID) @@ -12517,8 +11027,7 @@ - neck of gallbladder (SCTID) - SCTID:245394007 + neck of gallbladder (SCTID) @@ -12527,8 +11036,7 @@ - cystic duct (SCTID) - SCTID:245398005 + cystic duct (SCTID) @@ -12537,8 +11045,7 @@ - hepatic duct (SCTID) - SCTID:245399002 + hepatic duct (SCTID) @@ -12547,8 +11054,7 @@ - left hepatic duct (SCTID) - SCTID:245400009 + left hepatic duct (SCTID) @@ -12557,8 +11063,7 @@ - right hepatic duct (SCTID) - SCTID:245401008 + right hepatic duct (SCTID) @@ -12567,8 +11072,7 @@ - common hepatic duct (SCTID) - SCTID:245403006 + common hepatic duct (SCTID) @@ -12577,8 +11081,7 @@ - cervical part of esophagus (SCTID) - SCTID:245405004 + cervical part of esophagus (SCTID) @@ -12587,8 +11090,7 @@ - thoracic part of esophagus (SCTID) - SCTID:245406003 + thoracic part of esophagus (SCTID) @@ -12597,8 +11099,7 @@ - abdominal part of esophagus (SCTID) - SCTID:245407007 + abdominal part of esophagus (SCTID) @@ -12607,8 +11108,7 @@ - zone of stomach (SCTID) - SCTID:245415005 + zone of stomach (SCTID) @@ -12617,8 +11117,7 @@ - pyloric canal (SCTID) - SCTID:245417002 + pyloric canal (SCTID) @@ -12627,8 +11126,7 @@ - colic flexure (SCTID) - SCTID:245426004 + colic flexure (SCTID) @@ -12637,8 +11135,7 @@ - hepatic flexure of colon (SCTID) - SCTID:245427008 + hepatic flexure of colon (SCTID) @@ -12647,8 +11144,7 @@ - splenic flexure of colon (SCTID) - SCTID:245428003 + splenic flexure of colon (SCTID) @@ -12657,8 +11153,7 @@ - rectosigmoid junction (SCTID) - SCTID:245429006 + rectosigmoid junction (SCTID) @@ -12667,8 +11162,7 @@ - ascending limb of loop of Henle (SCTID) - SCTID:245434005 + ascending limb of loop of Henle (SCTID) @@ -12677,8 +11171,7 @@ - anal canal (SCTID) - SCTID:245438008 + anal canal (SCTID) @@ -12687,8 +11180,7 @@ - anal column (SCTID) - SCTID:245444007 + anal column (SCTID) @@ -12697,8 +11189,7 @@ - pectinate line (SCTID) - SCTID:245445008 + pectinate line (SCTID) @@ -12707,8 +11198,7 @@ - anal sinus (SCTID) - SCTID:245447000 + anal sinus (SCTID) @@ -12717,8 +11207,7 @@ - gland of anal canal (SCTID) - SCTID:245448005 + gland of anal canal (SCTID) @@ -12727,8 +11216,7 @@ - mesentery of small intestine (SCTID) - SCTID:245456008 + mesentery of small intestine (SCTID) @@ -12737,8 +11225,7 @@ - mesentery of colon (SCTID) - SCTID:245457004 + mesentery of colon (SCTID) @@ -12747,8 +11234,7 @@ - median lobe of prostate (SCTID) - SCTID:245466000 + median lobe of prostate (SCTID) @@ -12757,8 +11243,7 @@ - vas deferens (SCTID) - SCTID:245467009 + vas deferens (SCTID) @@ -12767,8 +11252,7 @@ - corpus cavernosum penis (SCTID) - SCTID:245468004 + corpus cavernosum penis (SCTID) @@ -12777,8 +11261,7 @@ - vaginal hymen (SCTID) - SCTID:245473005 + vaginal hymen (SCTID) @@ -12787,8 +11270,7 @@ - fornix of vagina (SCTID) - SCTID:245475003 + fornix of vagina (SCTID) @@ -12797,8 +11279,7 @@ - anterior fornix of vagina (SCTID) - SCTID:245476002 + anterior fornix of vagina (SCTID) @@ -12807,8 +11288,7 @@ - posterior fornix of vagina (SCTID) - SCTID:245477006 + posterior fornix of vagina (SCTID) @@ -12817,8 +11297,7 @@ - uterine horn (SCTID) - SCTID:245480007 + uterine horn (SCTID) @@ -12827,8 +11306,7 @@ - right uterine horn (SCTID) - SCTID:245481006 + right uterine horn (SCTID) @@ -12837,8 +11315,7 @@ - left uterine horn (SCTID) - SCTID:245482004 + left uterine horn (SCTID) @@ -12847,8 +11324,7 @@ - uterine wall (SCTID) - SCTID:245485002 + uterine wall (SCTID) @@ -12857,8 +11333,7 @@ - submucosa of uterine tube (SCTID) - SCTID:245489008 + submucosa of uterine tube (SCTID) @@ -12867,8 +11342,7 @@ - round ligament of uterus (SCTID) - SCTID:245495009 + round ligament of uterus (SCTID) @@ -12877,8 +11351,7 @@ - ampulla of uterine tube (SCTID) - SCTID:245497001 + ampulla of uterine tube (SCTID) @@ -12887,8 +11360,7 @@ - epiglottis (SCTID) - SCTID:245502004 + epiglottis (SCTID) @@ -12897,8 +11369,7 @@ - aryepiglottic fold (SCTID) - SCTID:245503009 + aryepiglottic fold (SCTID) @@ -12907,8 +11378,7 @@ - laryngeal vocal fold (SCTID) - SCTID:245504003 + laryngeal vocal fold (SCTID) @@ -12917,8 +11387,7 @@ - main bronchus (SCTID) - SCTID:245508000 + main bronchus (SCTID) @@ -12927,8 +11396,7 @@ - lobar bronchus (SCTID) - SCTID:245509008 + lobar bronchus (SCTID) @@ -12937,8 +11405,7 @@ - lobar bronchus of left lung (SCTID) - SCTID:245510003 + lobar bronchus of left lung (SCTID) @@ -12947,8 +11414,7 @@ - lobar bronchus of right lung (SCTID) - SCTID:245511004 + lobar bronchus of right lung (SCTID) @@ -12957,8 +11423,7 @@ - segmental bronchus (SCTID) - SCTID:245513001 + segmental bronchus (SCTID) @@ -12967,8 +11432,7 @@ - lobe of lung (SCTID) - SCTID:245524004 + lobe of lung (SCTID) @@ -12977,8 +11441,7 @@ - neurohypophysis (SCTID) - SCTID:245527006 + neurohypophysis (SCTID) @@ -12987,8 +11450,7 @@ - pituitary stalk (SCTID) - SCTID:245529009 + pituitary stalk (SCTID) @@ -12997,8 +11459,7 @@ - adenohypophysis (SCTID) - SCTID:245532007 + adenohypophysis (SCTID) @@ -13007,8 +11468,7 @@ - pars intermedia of adenohypophysis (SCTID) - SCTID:245534008 + pars intermedia of adenohypophysis (SCTID) @@ -13017,8 +11477,7 @@ - lobe of thyroid gland (SCTID) - SCTID:245537001 + lobe of thyroid gland (SCTID) @@ -13027,8 +11486,7 @@ - isthmus of thyroid gland (SCTID) - SCTID:245539003 + isthmus of thyroid gland (SCTID) @@ -13037,8 +11495,7 @@ - superior parathyroid gland (SCTID) - SCTID:245540001 + superior parathyroid gland (SCTID) @@ -13047,8 +11504,7 @@ - inferior parathyroid gland (SCTID) - SCTID:245542009 + inferior parathyroid gland (SCTID) @@ -13057,8 +11513,7 @@ - dentition (SCTID) - SCTID:245543004 + dentition (SCTID) @@ -13067,8 +11522,7 @@ - mixed dentition (SCTID) - SCTID:245545006 + mixed dentition (SCTID) @@ -13077,8 +11531,7 @@ - dentary tooth (SCTID) - SCTID:245547003 + dentary tooth (SCTID) @@ -13087,8 +11540,7 @@ - secondary tooth (SCTID) - SCTID:245563006 + secondary tooth (SCTID) @@ -13097,8 +11549,7 @@ - secondary upper tooth (SCTID) - SCTID:245564000 + secondary upper tooth (SCTID) @@ -13107,8 +11558,7 @@ - upper left incisor tooth (SCTID) - SCTID:245585000 + upper left incisor tooth (SCTID) @@ -13117,8 +11567,7 @@ - permanent lower tooth (SCTID) - SCTID:245588003 + permanent lower tooth (SCTID) @@ -13127,8 +11576,7 @@ - deciduous tooth (SCTID) - SCTID:245612004 + deciduous tooth (SCTID) @@ -13137,8 +11585,7 @@ - primary upper tooth (SCTID) - SCTID:245613009 + primary upper tooth (SCTID) @@ -13147,8 +11594,7 @@ - primary lower tooth (SCTID) - SCTID:245628009 + primary lower tooth (SCTID) @@ -13157,8 +11603,7 @@ - cingulum of tooth (SCTID) - SCTID:245650005 + cingulum of tooth (SCTID) @@ -13167,8 +11612,7 @@ - renal medulla interstitium (SCTID) - SCTID:245693005 + renal medulla interstitium (SCTID) @@ -13177,8 +11621,7 @@ - ridge of tooth (SCTID) - SCTID:245699009 + ridge of tooth (SCTID) @@ -13187,8 +11630,7 @@ - marginal ridge of tooth (SCTID) - SCTID:245700005 + marginal ridge of tooth (SCTID) @@ -13197,8 +11639,7 @@ - oblique ridge of tooth (SCTID) - SCTID:245701009 + oblique ridge of tooth (SCTID) @@ -13207,8 +11648,7 @@ - transverse marginal ridge of tooth (SCTID) - SCTID:245702002 + transverse marginal ridge of tooth (SCTID) @@ -13217,8 +11657,7 @@ - lingual cusp of tooth (SCTID) - SCTID:245720006 + lingual cusp of tooth (SCTID) @@ -13227,8 +11666,7 @@ - tooth root (SCTID) - SCTID:245728004 + tooth root (SCTID) @@ -13237,8 +11675,7 @@ - gingival groove (SCTID) - SCTID:245753001 + gingival groove (SCTID) @@ -13247,8 +11684,7 @@ - periodontal ligament (SCTID) - SCTID:245775004 + periodontal ligament (SCTID) @@ -13257,8 +11693,7 @@ - upper lip (SCTID) - SCTID:245776003 + upper lip (SCTID) @@ -13267,8 +11702,7 @@ - lower lip (SCTID) - SCTID:245777007 + lower lip (SCTID) @@ -13277,8 +11711,7 @@ - hard palate (SCTID) - SCTID:245778002 + hard palate (SCTID) @@ -13287,8 +11720,7 @@ - interincisive suture (SCTID) - SCTID:245781007 + interincisive suture (SCTID) @@ -13297,8 +11729,7 @@ - soft palate (SCTID) - SCTID:245784004 + soft palate (SCTID) @@ -13307,8 +11738,7 @@ - raphe of soft palate (SCTID) - SCTID:245785003 + raphe of soft palate (SCTID) @@ -13317,8 +11747,7 @@ - mouth floor (SCTID) - SCTID:245786002 + mouth floor (SCTID) @@ -13327,8 +11756,7 @@ - alveolar ridge (SCTID) - SCTID:245790000 + alveolar ridge (SCTID) @@ -13337,8 +11765,7 @@ - alveolar ridge of mandible (SCTID) - SCTID:245791001 + alveolar ridge of mandible (SCTID) @@ -13347,8 +11774,7 @@ - alveolar process of maxilla (SCTID) - SCTID:245795005 + alveolar process of maxilla (SCTID) @@ -13357,8 +11783,7 @@ - upper vermilion (SCTID) - SCTID:245799004 + upper vermilion (SCTID) @@ -13367,8 +11792,7 @@ - lower vermilion (SCTID) - SCTID:245800000 + lower vermilion (SCTID) @@ -13377,8 +11801,7 @@ - retromolar triangle (SCTID) - SCTID:245830008 + retromolar triangle (SCTID) @@ -13387,8 +11810,7 @@ - mucosa of dorsum of tongue (SCTID) - SCTID:245835003 + mucosa of dorsum of tongue (SCTID) @@ -13397,8 +11819,7 @@ - mucosa of hard palate (SCTID) - SCTID:245841005 + mucosa of hard palate (SCTID) @@ -13407,8 +11828,7 @@ - mucosa of soft palate (SCTID) - SCTID:245842003 + mucosa of soft palate (SCTID) @@ -13417,8 +11837,7 @@ - skin of eyelid (SCTID) - SCTID:245947005 + skin of eyelid (SCTID) @@ -13427,8 +11846,7 @@ - straight venules of kidney (SCTID) - SCTID:245983001 + straight venules of kidney (SCTID) @@ -13437,8 +11855,7 @@ - rectus capitis posterior major (SCTID) - SCTID:245994002 + rectus capitis posterior major (SCTID) @@ -13447,8 +11864,7 @@ - rectus capitis posterior minor (SCTID) - SCTID:245995001 + rectus capitis posterior minor (SCTID) @@ -13457,8 +11873,7 @@ - uterine spiral artery (SCTID) - SCTID:24628006 + uterine spiral artery (SCTID) @@ -13467,8 +11882,7 @@ - eponychium (SCTID) - SCTID:24631007 + eponychium (SCTID) @@ -13477,8 +11891,7 @@ - lamina of omasum (SCTID) - SCTID:24667000 + lamina of omasum (SCTID) @@ -13487,8 +11900,7 @@ - perirenal fat (SCTID) - SCTID:246901006 + perirenal fat (SCTID) @@ -13497,8 +11909,7 @@ - intercalated duct of pancreas (SCTID) - SCTID:247520007 + intercalated duct of pancreas (SCTID) @@ -13507,8 +11918,7 @@ - pancreatic acinus (SCTID) - SCTID:247604006 + pancreatic acinus (SCTID) @@ -13517,8 +11927,7 @@ - exocrine pancreas (SCTID) - SCTID:248202004 + exocrine pancreas (SCTID) @@ -13527,8 +11936,7 @@ - retroperitoneal lymph node (SCTID) - SCTID:249613000 + retroperitoneal lymph node (SCTID) @@ -13537,8 +11945,7 @@ - uterovesical pouch (SCTID) - SCTID:249806003 + uterovesical pouch (SCTID) @@ -13547,8 +11954,7 @@ - aorta tunica adventitia (SCTID) - SCTID:24996002 + aorta tunica adventitia (SCTID) @@ -13557,8 +11963,7 @@ - ovarian bursa (SCTID) - SCTID:250080006 + ovarian bursa (SCTID) @@ -13567,8 +11972,7 @@ - mesometrium (SCTID) - SCTID:250172001 + mesometrium (SCTID) @@ -13577,8 +11981,7 @@ - regional part of nervous system (SCTID) - SCTID:25087005 + regional part of nervous system (SCTID) @@ -13587,8 +11990,7 @@ - muscle tissue of prostate (SCTID) - SCTID:251498008 + muscle tissue of prostate (SCTID) @@ -13597,8 +11999,7 @@ - mucosa of seminal vesicle (SCTID) - SCTID:252260007 + mucosa of seminal vesicle (SCTID) @@ -13607,8 +12008,7 @@ - major sublingual duct (SCTID) - SCTID:25237008 + major sublingual duct (SCTID) @@ -13617,8 +12017,7 @@ - adventitia of seminal vesicle (SCTID) - SCTID:252406002 + adventitia of seminal vesicle (SCTID) @@ -13627,8 +12026,7 @@ - subcostal vein (SCTID) - SCTID:25248001 + subcostal vein (SCTID) @@ -13637,8 +12035,7 @@ - muscular layer of vagina (SCTID) - SCTID:253069005 + muscular layer of vagina (SCTID) @@ -13647,8 +12044,7 @@ - endometrium epithelium (SCTID) - SCTID:253526009 + endometrium epithelium (SCTID) @@ -13657,8 +12053,7 @@ - ductus arteriosus (SCTID) - SCTID:253684002 + ductus arteriosus (SCTID) @@ -13667,8 +12062,7 @@ - serosa of uterus (SCTID) - SCTID:253705006 + serosa of uterus (SCTID) @@ -13677,8 +12071,7 @@ - endometrial stroma (SCTID) - SCTID:254115004 + endometrial stroma (SCTID) @@ -13687,8 +12080,7 @@ - endometrial blood vessel (SCTID) - SCTID:254200009 + endometrial blood vessel (SCTID) @@ -13697,8 +12089,7 @@ - buccal gland (SCTID) - SCTID:25421004 + buccal gland (SCTID) @@ -13707,8 +12098,7 @@ - decidua parietalis (SCTID) - SCTID:255413006 + decidua parietalis (SCTID) @@ -13717,8 +12107,7 @@ - decidua capsularis (SCTID) - SCTID:255498003 + decidua capsularis (SCTID) @@ -13727,8 +12116,7 @@ - embryonic uterus (SCTID) - SCTID:255782009 + embryonic uterus (SCTID) @@ -13737,8 +12125,7 @@ - urinary bladder urothelium (SCTID) - SCTID:25631003 + urinary bladder urothelium (SCTID) @@ -13747,8 +12134,7 @@ - chorionic plate (SCTID) - SCTID:256391000 + chorionic plate (SCTID) @@ -13757,8 +12143,7 @@ - placental cotyledon (SCTID) - SCTID:256491001 + placental cotyledon (SCTID) @@ -13767,8 +12152,7 @@ - placental membrane (SCTID) - SCTID:256591004 + placental membrane (SCTID) @@ -13777,8 +12161,7 @@ - pectineal ligament (SCTID) - SCTID:256661003 + pectineal ligament (SCTID) @@ -13787,8 +12170,7 @@ - tendon (SCTID) - SCTID:256667004 + tendon (SCTID) @@ -13797,8 +12179,7 @@ - abductor pollicis longus (SCTID) - SCTID:256671001 + abductor pollicis longus (SCTID) @@ -13807,8 +12188,7 @@ - rectus abdominis muscle (SCTID) - SCTID:256672008 + rectus abdominis muscle (SCTID) @@ -13817,8 +12197,7 @@ - nerve (SCTID) - SCTID:256864008 + nerve (SCTID) @@ -13827,8 +12206,7 @@ - intestine (SCTID) - SCTID:256876008 + intestine (SCTID) @@ -13837,8 +12215,7 @@ - periurethral tissue (SCTID) - SCTID:256880003 + periurethral tissue (SCTID) @@ -13847,8 +12224,7 @@ - beard (SCTID) - SCTID:256924005 + beard (SCTID) @@ -13857,8 +12233,7 @@ - moustache (SCTID) - SCTID:256925006 + moustache (SCTID) @@ -13867,8 +12242,7 @@ - syncytiotrophoblast (SCTID) - SCTID:256965005 + syncytiotrophoblast (SCTID) @@ -13877,8 +12251,7 @@ - clavicular air sac (SCTID) - SCTID:2574004 + clavicular air sac (SCTID) @@ -13887,8 +12260,7 @@ - corpus luteum (SCTID) - SCTID:257943001 + corpus luteum (SCTID) @@ -13897,8 +12269,7 @@ - corpus albicans (SCTID) - SCTID:258043001 + corpus albicans (SCTID) @@ -13907,8 +12278,7 @@ - germinal epithelium of ovary (SCTID) - SCTID:258308007 + germinal epithelium of ovary (SCTID) @@ -13917,8 +12287,7 @@ - brain (SCTID) - SCTID:258335003 + brain (SCTID) @@ -13927,8 +12296,7 @@ - deep dorsal vein of clitoris (SCTID) - SCTID:25834009 + deep dorsal vein of clitoris (SCTID) @@ -13937,8 +12305,7 @@ - tunica albuginea of ovary (SCTID) - SCTID:258409003 + tunica albuginea of ovary (SCTID) @@ -13947,8 +12314,7 @@ - capsule of ovary (SCTID) - SCTID:258491008 + capsule of ovary (SCTID) @@ -13957,8 +12323,7 @@ - cumulus oophorus (SCTID) - SCTID:258586009 + cumulus oophorus (SCTID) @@ -13967,8 +12332,7 @@ - primary ovarian follicle (SCTID) - SCTID:258665002 + primary ovarian follicle (SCTID) @@ -13977,8 +12341,7 @@ - theca externa (SCTID) - SCTID:258767003 + theca externa (SCTID) @@ -13987,8 +12350,7 @@ - theca interna (SCTID) - SCTID:258869006 + theca interna (SCTID) @@ -13997,8 +12359,7 @@ - granulosa cell layer (SCTID) - SCTID:258971005 + granulosa cell layer (SCTID) @@ -14007,8 +12368,7 @@ - facial muscle (SCTID) - SCTID:25903009 + facial muscle (SCTID) @@ -14017,8 +12377,7 @@ - atretic follicle of ovary (SCTID) - SCTID:259073003 + atretic follicle of ovary (SCTID) @@ -14027,8 +12386,7 @@ - rete ovarii (SCTID) - SCTID:259261007 + rete ovarii (SCTID) @@ -14037,8 +12395,7 @@ - buccal fat pad (SCTID) - SCTID:25930004 + buccal fat pad (SCTID) @@ -14047,8 +12404,7 @@ - ovary stroma (SCTID) - SCTID:259306002 + ovary stroma (SCTID) @@ -14057,8 +12413,7 @@ - muscle layer of oviduct (SCTID) - SCTID:259488000 + muscle layer of oviduct (SCTID) @@ -14067,8 +12422,7 @@ - peripeduncular nucleus (SCTID) - SCTID:25949000 + peripeduncular nucleus (SCTID) @@ -14077,8 +12431,7 @@ - serosa of uterine tube (SCTID) - SCTID:259593000 + serosa of uterine tube (SCTID) @@ -14087,8 +12440,7 @@ - transverse fold of rectum (SCTID) - SCTID:259687002 + transverse fold of rectum (SCTID) @@ -14097,8 +12449,7 @@ - rectal lumen (SCTID) - SCTID:259740004 + rectal lumen (SCTID) @@ -14107,8 +12458,7 @@ - cervical region of vertebral column (SCTID) - SCTID:260488005 + cervical region of vertebral column (SCTID) @@ -14117,8 +12467,7 @@ - gastrocolic ligament (SCTID) - SCTID:260539007 + gastrocolic ligament (SCTID) @@ -14127,8 +12476,7 @@ - infratemporal fossa (SCTID) - SCTID:260616009 + infratemporal fossa (SCTID) @@ -14137,8 +12485,7 @@ - gastro-splenic ligament (SCTID) - SCTID:260636005 + gastro-splenic ligament (SCTID) @@ -14147,8 +12494,7 @@ - gastrophrenic ligament (SCTID) - SCTID:260725009 + gastrophrenic ligament (SCTID) @@ -14157,8 +12503,7 @@ - hepatogastric ligament (SCTID) - SCTID:260825001 + hepatogastric ligament (SCTID) @@ -14167,8 +12512,7 @@ - anterior mediastinum (SCTID) - SCTID:261048003 + anterior mediastinum (SCTID) @@ -14177,8 +12521,7 @@ - entire surface of organism (SCTID) - SCTID:261060002 + entire surface of organism (SCTID) @@ -14187,8 +12530,7 @@ - ureterovesical junction (SCTID) - SCTID:261187001 + ureterovesical junction (SCTID) @@ -14197,8 +12539,7 @@ - mesentery of jejunum (SCTID) - SCTID:261286003 + mesentery of jejunum (SCTID) @@ -14207,8 +12548,7 @@ - descending aorta (SCTID) - SCTID:261399002 + descending aorta (SCTID) @@ -14217,8 +12557,7 @@ - epigastric artery (SCTID) - SCTID:261400009 + epigastric artery (SCTID) @@ -14227,8 +12566,7 @@ - gastroepiploic artery (SCTID) - SCTID:261401008 + gastroepiploic artery (SCTID) @@ -14237,8 +12575,7 @@ - umbilical artery (SCTID) - SCTID:261404000 + umbilical artery (SCTID) @@ -14247,8 +12584,7 @@ - cardiac atrium (SCTID) - SCTID:261405004 + cardiac atrium (SCTID) @@ -14257,8 +12593,7 @@ - rectovesical pouch (SCTID) - SCTID:261416006 + rectovesical pouch (SCTID) @@ -14267,8 +12602,7 @@ - tricuspid valve cusp (SCTID) - SCTID:261417002 + tricuspid valve cusp (SCTID) @@ -14277,8 +12611,7 @@ - mesentery of stomach (SCTID) - SCTID:261623000 + mesentery of stomach (SCTID) @@ -14287,8 +12620,7 @@ - fold of peritoneum (SCTID) - SCTID:261922008 + fold of peritoneum (SCTID) @@ -14297,8 +12629,7 @@ - round ligament of liver (SCTID) - SCTID:262209009 + round ligament of liver (SCTID) @@ -14307,8 +12638,7 @@ - trunk (SCTID) - SCTID:262225004 + trunk (SCTID) @@ -14317,8 +12647,7 @@ - minor calyx (SCTID) - SCTID:26293004 + minor calyx (SCTID) @@ -14327,8 +12656,7 @@ - superior recess of lesser sac (SCTID) - SCTID:263190002 + superior recess of lesser sac (SCTID) @@ -14337,8 +12665,7 @@ - inferior recess of lesser sac (SCTID) - SCTID:263261002 + inferior recess of lesser sac (SCTID) @@ -14347,8 +12674,7 @@ - manubriosternal joint (SCTID) - SCTID:263312002 + manubriosternal joint (SCTID) @@ -14357,8 +12683,7 @@ - joint of rib (SCTID) - SCTID:263314001 + joint of rib (SCTID) @@ -14367,8 +12692,7 @@ - costovertebral joint (SCTID) - SCTID:263315000 + costovertebral joint (SCTID) @@ -14377,8 +12701,7 @@ - costotransverse joint (SCTID) - SCTID:263328007 + costotransverse joint (SCTID) @@ -14387,8 +12710,7 @@ - ciliary body (SCTID) - SCTID:263340007 + ciliary body (SCTID) @@ -14397,8 +12719,7 @@ - spongiose part of urethra (SCTID) - SCTID:263341006 + spongiose part of urethra (SCTID) @@ -14407,8 +12728,7 @@ - male membranous urethra (SCTID) - SCTID:263343009 + male membranous urethra (SCTID) @@ -14417,8 +12737,7 @@ - lacrimal punctum (SCTID) - SCTID:263344003 + lacrimal punctum (SCTID) @@ -14427,8 +12746,7 @@ - lacrimal canaliculus (SCTID) - SCTID:263348000 + lacrimal canaliculus (SCTID) @@ -14437,8 +12755,7 @@ - hyoid bone (SCTID) - SCTID:263352000 + hyoid bone (SCTID) @@ -14447,8 +12764,7 @@ - telencephalon (SCTID) - SCTID:263353005 + telencephalon (SCTID) @@ -14457,8 +12773,7 @@ - head of rib (SCTID) - SCTID:263358001 + head of rib (SCTID) @@ -14467,8 +12782,7 @@ - neck of rib (SCTID) - SCTID:263359009 + neck of rib (SCTID) @@ -14477,8 +12791,7 @@ - body of rib (SCTID) - SCTID:263361000 + body of rib (SCTID) @@ -14487,8 +12800,7 @@ - acetabular labrum (SCTID) - SCTID:263366005 + acetabular labrum (SCTID) @@ -14497,8 +12809,7 @@ - oropharynx (SCTID) - SCTID:263376008 + oropharynx (SCTID) @@ -14507,8 +12818,7 @@ - cauda equina (SCTID) - SCTID:263377004 + cauda equina (SCTID) @@ -14517,8 +12827,7 @@ - glans penis (SCTID) - SCTID:263378009 + glans penis (SCTID) @@ -14527,8 +12836,7 @@ - articular capsule of hip joint (SCTID) - SCTID:263382006 + articular capsule of hip joint (SCTID) @@ -14537,8 +12845,7 @@ - metacarpal bone of digit 2 (SCTID) - SCTID:263399007 + metacarpal bone of digit 2 (SCTID) @@ -14547,8 +12854,7 @@ - metacarpal bone of digit 3 (SCTID) - SCTID:263400000 + metacarpal bone of digit 3 (SCTID) @@ -14557,8 +12863,7 @@ - metacarpal bone of digit 4 (SCTID) - SCTID:263401001 + metacarpal bone of digit 4 (SCTID) @@ -14567,8 +12872,7 @@ - metacarpal bone of digit 5 (SCTID) - SCTID:263402008 + metacarpal bone of digit 5 (SCTID) @@ -14577,8 +12881,7 @@ - proximal phalanx of manual digit 2 (SCTID) - SCTID:263403003 + proximal phalanx of manual digit 2 (SCTID) @@ -14587,8 +12890,7 @@ - proximal phalanx of manual digit 3 (SCTID) - SCTID:263404009 + proximal phalanx of manual digit 3 (SCTID) @@ -14597,8 +12899,7 @@ - proximal phalanx of manual digit 4 (SCTID) - SCTID:263405005 + proximal phalanx of manual digit 4 (SCTID) @@ -14607,8 +12908,7 @@ - proximal phalanx of manual digit 5 (SCTID) - SCTID:263406006 + proximal phalanx of manual digit 5 (SCTID) @@ -14617,8 +12917,7 @@ - middle phalanx of manual digit 2 (SCTID) - SCTID:263407002 + middle phalanx of manual digit 2 (SCTID) @@ -14627,8 +12926,7 @@ - middle phalanx of manual digit 3 (SCTID) - SCTID:263408007 + middle phalanx of manual digit 3 (SCTID) @@ -14637,8 +12935,7 @@ - middle phalanx of manual digit 4 (SCTID) - SCTID:263409004 + middle phalanx of manual digit 4 (SCTID) @@ -14647,8 +12944,7 @@ - middle phalanx of manual digit 5 (SCTID) - SCTID:263410009 + middle phalanx of manual digit 5 (SCTID) @@ -14657,8 +12953,7 @@ - proximal epiphysis of proximal phalanx of manual digit 2 (SCTID) - SCTID:263412001 + proximal epiphysis of proximal phalanx of manual digit 2 (SCTID) @@ -14667,8 +12962,7 @@ - proximal epiphysis of proximal phalanx of manual digit 3 (SCTID) - SCTID:263413006 + proximal epiphysis of proximal phalanx of manual digit 3 (SCTID) @@ -14677,8 +12971,7 @@ - proximal epiphysis of proximal phalanx of manual digit 4 (SCTID) - SCTID:263414000 + proximal epiphysis of proximal phalanx of manual digit 4 (SCTID) @@ -14687,8 +12980,7 @@ - proximal epiphysis of proximal phalanx of manual digit 5 (SCTID) - SCTID:263415004 + proximal epiphysis of proximal phalanx of manual digit 5 (SCTID) @@ -14697,8 +12989,7 @@ - proximal epiphysis of middle phalanx of manual digit 2 (SCTID) - SCTID:263428006 + proximal epiphysis of middle phalanx of manual digit 2 (SCTID) @@ -14707,8 +12998,7 @@ - proximal epiphysis of middle phalanx of manual digit 3 (SCTID) - SCTID:263429003 + proximal epiphysis of middle phalanx of manual digit 3 (SCTID) @@ -14717,8 +13007,7 @@ - proximal epiphysis of middle phalanx of manual digit 4 (SCTID) - SCTID:263430008 + proximal epiphysis of middle phalanx of manual digit 4 (SCTID) @@ -14727,8 +13016,7 @@ - proximal epiphysis of middle phalanx of manual digit 5 (SCTID) - SCTID:263431007 + proximal epiphysis of middle phalanx of manual digit 5 (SCTID) @@ -14737,8 +13025,7 @@ - proximal epiphysis of distal phalanx of manual digit 2 (SCTID) - SCTID:263445001 + proximal epiphysis of distal phalanx of manual digit 2 (SCTID) @@ -14747,8 +13034,7 @@ - proximal epiphysis of distal phalanx of manual digit 3 (SCTID) - SCTID:263446000 + proximal epiphysis of distal phalanx of manual digit 3 (SCTID) @@ -14757,8 +13043,7 @@ - proximal epiphysis of distal phalanx of manual digit 4 (SCTID) - SCTID:263447009 + proximal epiphysis of distal phalanx of manual digit 4 (SCTID) @@ -14767,8 +13052,7 @@ - proximal epiphysis of distal phalanx of manual digit 5 (SCTID) - SCTID:263448004 + proximal epiphysis of distal phalanx of manual digit 5 (SCTID) @@ -14777,8 +13061,7 @@ - distal epiphysis of distal phalanx of manual digit 2 (SCTID) - SCTID:263457005 + distal epiphysis of distal phalanx of manual digit 2 (SCTID) @@ -14787,8 +13070,7 @@ - distal epiphysis of distal phalanx of manual digit 3 (SCTID) - SCTID:263458000 + distal epiphysis of distal phalanx of manual digit 3 (SCTID) @@ -14797,8 +13079,7 @@ - distal epiphysis of distal phalanx of manual digit 4 (SCTID) - SCTID:263459008 + distal epiphysis of distal phalanx of manual digit 4 (SCTID) @@ -14807,8 +13088,7 @@ - distal epiphysis of distal phalanx of manual digit 5 (SCTID) - SCTID:263460003 + distal epiphysis of distal phalanx of manual digit 5 (SCTID) @@ -14817,8 +13097,7 @@ - proximal epiphysis of second metacarpal bone (SCTID) - SCTID:263461004 + proximal epiphysis of second metacarpal bone (SCTID) @@ -14827,8 +13106,7 @@ - proximal epiphysis of third metacarpal bone (SCTID) - SCTID:263465008 + proximal epiphysis of third metacarpal bone (SCTID) @@ -14837,8 +13115,7 @@ - proximal epiphysis of fourth metacarpal bone (SCTID) - SCTID:263469002 + proximal epiphysis of fourth metacarpal bone (SCTID) @@ -14847,8 +13124,7 @@ - proximal epiphysis of fifth metacarpal bone (SCTID) - SCTID:263473004 + proximal epiphysis of fifth metacarpal bone (SCTID) @@ -14857,8 +13133,7 @@ - nasal cavity (SCTID) - SCTID:263481003 + nasal cavity (SCTID) @@ -14867,8 +13142,7 @@ - laryngeal cartilage (SCTID) - SCTID:263482005 + laryngeal cartilage (SCTID) @@ -14877,8 +13151,7 @@ - thyroid cartilage (SCTID) - SCTID:263483000 + thyroid cartilage (SCTID) @@ -14887,8 +13160,7 @@ - cricoid cartilage (SCTID) - SCTID:263484006 + cricoid cartilage (SCTID) @@ -14897,8 +13169,7 @@ - membranous labyrinth (SCTID) - SCTID:263790009 + membranous labyrinth (SCTID) @@ -14907,8 +13178,7 @@ - angle of oral opening (SCTID) - SCTID:263940002 + angle of oral opening (SCTID) @@ -14917,8 +13187,7 @@ - cerebellum lobe (SCTID) - SCTID:263971006 + cerebellum lobe (SCTID) @@ -14927,8 +13196,7 @@ - gastroduodenal junction (SCTID) - SCTID:264014000 + gastroduodenal junction (SCTID) @@ -14937,8 +13205,7 @@ - lung hilus (SCTID) - SCTID:264017007 + lung hilus (SCTID) @@ -14947,8 +13214,7 @@ - ileocecal junction (SCTID) - SCTID:264021000 + ileocecal junction (SCTID) @@ -14957,8 +13223,7 @@ - frenulum of lip (SCTID) - SCTID:264053009 + frenulum of lip (SCTID) @@ -14967,8 +13232,7 @@ - outflow part of left ventricle (SCTID) - SCTID:264070001 + outflow part of left ventricle (SCTID) @@ -14977,8 +13241,7 @@ - male urethra (SCTID) - SCTID:264085007 + male urethra (SCTID) @@ -14987,8 +13250,7 @@ - malleus bone (SCTID) - SCTID:264090005 + malleus bone (SCTID) @@ -14997,8 +13259,7 @@ - manubrium of malleus (SCTID) - SCTID:264091009 + manubrium of malleus (SCTID) @@ -15007,8 +13268,7 @@ - frenulum of tongue (SCTID) - SCTID:264113009 + frenulum of tongue (SCTID) @@ -15017,8 +13277,7 @@ - parafoveal part of retina (SCTID) - SCTID:264120002 + parafoveal part of retina (SCTID) @@ -15027,8 +13286,7 @@ - paraurethral gland (SCTID) - SCTID:264125007 + paraurethral gland (SCTID) @@ -15037,8 +13295,7 @@ - ureteropelvic junction (SCTID) - SCTID:264130006 + ureteropelvic junction (SCTID) @@ -15047,8 +13304,7 @@ - peripheral region of retina (SCTID) - SCTID:264141008 + peripheral region of retina (SCTID) @@ -15057,8 +13313,7 @@ - radio-ulnar joint (SCTID) - SCTID:264167003 + radio-ulnar joint (SCTID) @@ -15067,8 +13322,7 @@ - fused sacrum (SCTID) - SCTID:264186006 + fused sacrum (SCTID) @@ -15077,8 +13331,7 @@ - pituitary fossa (SCTID) - SCTID:264194004 + pituitary fossa (SCTID) @@ -15087,8 +13340,7 @@ - splanchnic nerve (SCTID) - SCTID:264198001 + splanchnic nerve (SCTID) @@ -15097,8 +13349,7 @@ - stapes bone (SCTID) - SCTID:264199009 + stapes bone (SCTID) @@ -15107,8 +13358,7 @@ - tarsal skeleton (SCTID) - SCTID:264228001 + tarsal skeleton (SCTID) @@ -15117,8 +13367,7 @@ - transverse process of vertebra (SCTID) - SCTID:264238006 + transverse process of vertebra (SCTID) @@ -15127,8 +13376,7 @@ - neural spine (SCTID) - SCTID:264259004 + neural spine (SCTID) @@ -15137,8 +13385,7 @@ - arytenoid cartilage (SCTID) - SCTID:264446005 + arytenoid cartilage (SCTID) @@ -15147,8 +13394,7 @@ - choroid plexus (SCTID) - SCTID:264450003 + choroid plexus (SCTID) @@ -15157,8 +13403,7 @@ - cranial cavity (SCTID) - SCTID:264452006 + cranial cavity (SCTID) @@ -15167,8 +13412,7 @@ - craniopharyngeal canal (SCTID) - SCTID:264453001 + craniopharyngeal canal (SCTID) @@ -15177,8 +13421,7 @@ - cuneiform cartilage (SCTID) - SCTID:264456009 + cuneiform cartilage (SCTID) @@ -15187,8 +13430,7 @@ - ectocervix (SCTID) - SCTID:264459002 + ectocervix (SCTID) @@ -15197,8 +13439,7 @@ - endocervix (SCTID) - SCTID:264460007 + endocervix (SCTID) @@ -15207,8 +13448,7 @@ - female urethra (SCTID) - SCTID:264469008 + female urethra (SCTID) @@ -15217,8 +13457,7 @@ - epiploic foramen (SCTID) - SCTID:264473006 + epiploic foramen (SCTID) @@ -15227,8 +13466,7 @@ - fovea centralis (SCTID) - SCTID:264479005 + fovea centralis (SCTID) @@ -15237,8 +13475,7 @@ - gastrocnemius vein (SCTID) - SCTID:264481007 + gastrocnemius vein (SCTID) @@ -15247,8 +13484,7 @@ - glottis (SCTID) - SCTID:264482000 + glottis (SCTID) @@ -15257,8 +13493,7 @@ - hypothalamus (SCTID) - SCTID:264483005 + hypothalamus (SCTID) @@ -15267,8 +13502,7 @@ - internal acoustic meatus (SCTID) - SCTID:264484004 + internal acoustic meatus (SCTID) @@ -15277,8 +13511,7 @@ - frenulum of upper lip (SCTID) - SCTID:264488001 + frenulum of upper lip (SCTID) @@ -15287,8 +13520,7 @@ - pancreatic tributary of splenic vein (SCTID) - SCTID:264492008 + pancreatic tributary of splenic vein (SCTID) @@ -15297,8 +13529,7 @@ - testicular vein (SCTID) - SCTID:264496006 + testicular vein (SCTID) @@ -15307,8 +13538,7 @@ - bulbar conjunctiva (SCTID) - SCTID:264509009 + bulbar conjunctiva (SCTID) @@ -15317,8 +13547,7 @@ - apical region of left ventricle (SCTID) - SCTID:264843009 + apical region of left ventricle (SCTID) @@ -15327,8 +13556,7 @@ - apical region of right ventricle (SCTID) - SCTID:264913008 + apical region of right ventricle (SCTID) @@ -15337,8 +13565,7 @@ - jejunal artery (SCTID) - SCTID:265391008 + jejunal artery (SCTID) @@ -15347,8 +13574,7 @@ - ileal artery (SCTID) - SCTID:265479003 + ileal artery (SCTID) @@ -15357,8 +13583,7 @@ - nipple (SCTID) - SCTID:265780004 + nipple (SCTID) @@ -15367,8 +13592,7 @@ - eyebrow (SCTID) - SCTID:265781000 + eyebrow (SCTID) @@ -15377,8 +13601,7 @@ - eyelid (SCTID) - SCTID:265782007 + eyelid (SCTID) @@ -15387,8 +13610,7 @@ - external nose (SCTID) - SCTID:265785009 + external nose (SCTID) @@ -15397,8 +13619,7 @@ - palatine tonsil (SCTID) - SCTID:265787001 + palatine tonsil (SCTID) @@ -15407,8 +13628,7 @@ - subclavian artery (SCTID) - SCTID:265790007 + subclavian artery (SCTID) @@ -15417,8 +13637,7 @@ - forelimb digital artery (SCTID) - SCTID:265791006 + forelimb digital artery (SCTID) @@ -15427,8 +13646,7 @@ - penis (SCTID) - SCTID:265793009 + penis (SCTID) @@ -15437,8 +13655,7 @@ - scrotum (SCTID) - SCTID:265794003 + scrotum (SCTID) @@ -15447,8 +13664,7 @@ - mammalian vulva (SCTID) - SCTID:265796001 + mammalian vulva (SCTID) @@ -15457,8 +13673,7 @@ - biceps brachii (SCTID) - SCTID:265802004 + biceps brachii (SCTID) @@ -15467,8 +13682,7 @@ - interosseous muscle of manus (SCTID) - SCTID:265804003 + interosseous muscle of manus (SCTID) @@ -15477,8 +13691,7 @@ - hindlimb zeugopod muscle (SCTID) - SCTID:265806001 + hindlimb zeugopod muscle (SCTID) @@ -15487,8 +13700,7 @@ - manual digitopodium bone (SCTID) - SCTID:265809008 + manual digitopodium bone (SCTID) @@ -15497,8 +13709,7 @@ - sigmoid artery (SCTID) - SCTID:265956005 + sigmoid artery (SCTID) @@ -15507,8 +13718,7 @@ - intestinal epithelium (SCTID) - SCTID:266135004 + intestinal epithelium (SCTID) @@ -15517,8 +13727,7 @@ - intestinal gland (SCTID) - SCTID:266297002 + intestinal gland (SCTID) @@ -15527,8 +13736,7 @@ - myenteric nerve plexus (SCTID) - SCTID:267716001 + myenteric nerve plexus (SCTID) @@ -15537,8 +13745,7 @@ - gastroesophageal sphincter (SCTID) - SCTID:267809009 + gastroesophageal sphincter (SCTID) @@ -15547,8 +13754,7 @@ - pyloric sphincter (SCTID) - SCTID:268073008 + pyloric sphincter (SCTID) @@ -15557,8 +13763,7 @@ - fundic gastric gland (SCTID) - SCTID:268338004 + fundic gastric gland (SCTID) @@ -15567,8 +13772,7 @@ - gastric pit (SCTID) - SCTID:268426007 + gastric pit (SCTID) @@ -15577,8 +13781,7 @@ - rugal fold of stomach (SCTID) - SCTID:268518001 + rugal fold of stomach (SCTID) @@ -15587,8 +13790,7 @@ - central carpal bone (SCTID) - SCTID:26987000 + central carpal bone (SCTID) @@ -15597,8 +13799,7 @@ - intralobular bile duct (SCTID) - SCTID:269922006 + intralobular bile duct (SCTID) @@ -15607,8 +13808,7 @@ - bile canaliculus (SCTID) - SCTID:270023005 + bile canaliculus (SCTID) @@ -15617,8 +13817,7 @@ - spiral valve of cystic duct (SCTID) - SCTID:270125000 + spiral valve of cystic duct (SCTID) @@ -15627,8 +13826,7 @@ - calcarine artery (SCTID) - SCTID:2703009 + calcarine artery (SCTID) @@ -15637,8 +13835,7 @@ - intraparotid lymph node (SCTID) - SCTID:27053001 + intraparotid lymph node (SCTID) @@ -15647,8 +13844,7 @@ - liver left medial lobe (SCTID) - SCTID:271085007 + liver left medial lobe (SCTID) @@ -15657,8 +13853,7 @@ - liver papillary process (SCTID) - SCTID:271187002 + liver papillary process (SCTID) @@ -15667,8 +13862,7 @@ - liver left lateral lobe (SCTID) - SCTID:271288003 + liver left lateral lobe (SCTID) @@ -15677,8 +13871,7 @@ - endothelium (SCTID) - SCTID:27168002 + endothelium (SCTID) @@ -15687,8 +13880,7 @@ - elastic tissue (SCTID) - SCTID:27197004 + elastic tissue (SCTID) @@ -15697,8 +13889,7 @@ - central vein of liver (SCTID) - SCTID:272023004 + central vein of liver (SCTID) @@ -15707,8 +13898,7 @@ - hepatic acinus (SCTID) - SCTID:272214009 + hepatic acinus (SCTID) @@ -15717,8 +13907,7 @@ - organ (SCTID) - SCTID:272625005 + organ (SCTID) @@ -15727,8 +13916,7 @@ - respiration organ (SCTID) - SCTID:272626006 + respiration organ (SCTID) @@ -15737,8 +13925,7 @@ - digestive system element (SCTID) - SCTID:272627002 + digestive system element (SCTID) @@ -15747,8 +13934,7 @@ - abdomen element (SCTID) - SCTID:272631008 + abdomen element (SCTID) @@ -15757,8 +13943,7 @@ - lobe of cerebral hemisphere (SCTID) - SCTID:272632001 + lobe of cerebral hemisphere (SCTID) @@ -15767,8 +13952,7 @@ - incus bone (SCTID) - SCTID:272649008 + incus bone (SCTID) @@ -15777,8 +13961,7 @@ - naris (SCTID) - SCTID:272650008 + naris (SCTID) @@ -15787,8 +13970,7 @@ - hemipenis (SCTID) - SCTID:27265006 + hemipenis (SCTID) @@ -15797,8 +13979,7 @@ - right lung lobe (SCTID) - SCTID:272654004 + right lung lobe (SCTID) @@ -15807,8 +13988,7 @@ - left lung lobe (SCTID) - SCTID:272655003 + left lung lobe (SCTID) @@ -15817,8 +13997,7 @@ - trigone of urinary bladder (SCTID) - SCTID:272663002 + trigone of urinary bladder (SCTID) @@ -15827,8 +14006,7 @@ - uterine ligament (SCTID) - SCTID:272668006 + uterine ligament (SCTID) @@ -15837,8 +14015,7 @@ - ethmoid bone (SCTID) - SCTID:272674006 + ethmoid bone (SCTID) @@ -15847,8 +14024,7 @@ - lacrimal bone (SCTID) - SCTID:272675007 + lacrimal bone (SCTID) @@ -15857,8 +14033,7 @@ - sphenoid bone (SCTID) - SCTID:272676008 + sphenoid bone (SCTID) @@ -15867,8 +14042,7 @@ - sutural bone (SCTID) - SCTID:272677004 + sutural bone (SCTID) @@ -15877,8 +14051,7 @@ - vomer (SCTID) - SCTID:272678009 + vomer (SCTID) @@ -15887,8 +14060,7 @@ - fontanelle (SCTID) - SCTID:272681004 + fontanelle (SCTID) @@ -15897,8 +14069,7 @@ - zygomatic arch (SCTID) - SCTID:272682006 + zygomatic arch (SCTID) @@ -15907,8 +14078,7 @@ - jugal bone (SCTID) - SCTID:272683001 + jugal bone (SCTID) @@ -15917,8 +14087,7 @@ - zygomatic process of maxilla (SCTID) - SCTID:272684007 + zygomatic process of maxilla (SCTID) @@ -15927,8 +14096,7 @@ - epicondyle of humerus (SCTID) - SCTID:272693008 + epicondyle of humerus (SCTID) @@ -15937,8 +14105,7 @@ - proximal epiphysis of metacarpal bone (SCTID) - SCTID:272695001 + proximal epiphysis of metacarpal bone (SCTID) @@ -15947,8 +14114,7 @@ - proximal epiphysis of phalanx of manual digit 1 (SCTID) - SCTID:272700008 + proximal epiphysis of phalanx of manual digit 1 (SCTID) @@ -15957,8 +14123,7 @@ - proximal epiphysis of phalanx of manus (SCTID) - SCTID:272704004 + proximal epiphysis of phalanx of manus (SCTID) @@ -15967,8 +14132,7 @@ - distal epiphysis of phalanx of manus (SCTID) - SCTID:272707006 + distal epiphysis of phalanx of manus (SCTID) @@ -15977,8 +14141,7 @@ - arch of atlas (SCTID) - SCTID:272708001 + arch of atlas (SCTID) @@ -15987,8 +14150,7 @@ - xiphoid process (SCTID) - SCTID:272711000 + xiphoid process (SCTID) @@ -15997,8 +14159,7 @@ - iliac spine (SCTID) - SCTID:272712007 + iliac spine (SCTID) @@ -16007,8 +14168,7 @@ - left superior intercostal vein (SCTID) - SCTID:27297006 + left superior intercostal vein (SCTID) @@ -16017,8 +14177,7 @@ - vitelline vein (SCTID) - SCTID:2730004 + vitelline vein (SCTID) @@ -16027,8 +14186,7 @@ - extrahepatic branch of portal vein (SCTID) - SCTID:273304006 + extrahepatic branch of portal vein (SCTID) @@ -16037,8 +14195,7 @@ - stomach smooth muscle circular layer (SCTID) - SCTID:2746007 + stomach smooth muscle circular layer (SCTID) @@ -16047,8 +14204,7 @@ - udder (SCTID) - SCTID:27528008 + udder (SCTID) @@ -16057,8 +14213,7 @@ - kidney capillary (SCTID) - SCTID:275409003 + kidney capillary (SCTID) @@ -16067,8 +14222,7 @@ - red pulp of spleen (SCTID) - SCTID:27579002 + red pulp of spleen (SCTID) @@ -16077,8 +14231,7 @@ - autonomic nerve (SCTID) - SCTID:276145003 + autonomic nerve (SCTID) @@ -16087,8 +14240,7 @@ - parasympathetic nerve (SCTID) - SCTID:276146002 + parasympathetic nerve (SCTID) @@ -16097,8 +14249,7 @@ - inferior alveolar artery (SCTID) - SCTID:276151008 + inferior alveolar artery (SCTID) @@ -16107,8 +14258,7 @@ - special sense organ system (SCTID) - SCTID:276152001 + special sense organ system (SCTID) @@ -16117,8 +14267,7 @@ - gluteal lymph node (SCTID) - SCTID:276154000 + gluteal lymph node (SCTID) @@ -16127,8 +14276,7 @@ - lymph node of upper limb (SCTID) - SCTID:276155004 + lymph node of upper limb (SCTID) @@ -16137,8 +14285,7 @@ - bile duct (SCTID) - SCTID:276157007 + bile duct (SCTID) @@ -16147,8 +14294,7 @@ - extrahepatic bile duct (SCTID) - SCTID:276158002 + extrahepatic bile duct (SCTID) @@ -16157,8 +14303,7 @@ - paraaortic body (SCTID) - SCTID:276159005 + paraaortic body (SCTID) @@ -16167,8 +14312,7 @@ - cutaneous appendage (SCTID) - SCTID:276160000 + cutaneous appendage (SCTID) @@ -16177,8 +14321,7 @@ - external naris (SCTID) - SCTID:276165005 + external naris (SCTID) @@ -16187,8 +14330,7 @@ - extensor carpi radialis muscle (SCTID) - SCTID:276166006 + extensor carpi radialis muscle (SCTID) @@ -16197,8 +14339,7 @@ - psoas muscle (SCTID) - SCTID:276167002 + psoas muscle (SCTID) @@ -16207,8 +14348,7 @@ - pancreatic lymph node (SCTID) - SCTID:276170003 + pancreatic lymph node (SCTID) @@ -16217,8 +14357,7 @@ - right ureter (SCTID) - SCTID:276251000 + right ureter (SCTID) @@ -16227,8 +14366,7 @@ - stomach glandular region (SCTID) - SCTID:27633001 + stomach glandular region (SCTID) @@ -16237,8 +14375,7 @@ - left ureter (SCTID) - SCTID:276340002 + left ureter (SCTID) @@ -16247,8 +14384,7 @@ - cardiac chamber (SCTID) - SCTID:276456008 + cardiac chamber (SCTID) @@ -16257,8 +14393,7 @@ - foramen of skull (SCTID) - SCTID:276742007 + foramen of skull (SCTID) @@ -16267,8 +14402,7 @@ - upper esophagus (SCTID) - SCTID:276801001 + upper esophagus (SCTID) @@ -16277,8 +14411,7 @@ - middle part of esophagus (SCTID) - SCTID:276802008 + middle part of esophagus (SCTID) @@ -16287,8 +14420,7 @@ - tricuspid valve leaflet (SCTID) - SCTID:276830008 + tricuspid valve leaflet (SCTID) @@ -16297,8 +14429,7 @@ - conjunctival fornix (SCTID) - SCTID:276831007 + conjunctival fornix (SCTID) @@ -16307,8 +14438,7 @@ - kidney calyx (SCTID) - SCTID:276832000 + kidney calyx (SCTID) @@ -16317,8 +14447,7 @@ - urachus (SCTID) - SCTID:276858000 + urachus (SCTID) @@ -16327,8 +14456,7 @@ - epiglottic vallecula (SCTID) - SCTID:276955003 + epiglottic vallecula (SCTID) @@ -16337,8 +14465,7 @@ - lingual tonsil (SCTID) - SCTID:276957006 + lingual tonsil (SCTID) @@ -16347,8 +14474,7 @@ - palatoglossal arch (SCTID) - SCTID:276958001 + palatoglossal arch (SCTID) @@ -16357,8 +14483,7 @@ - posterior wall of oropharynx (SCTID) - SCTID:276960004 + posterior wall of oropharynx (SCTID) @@ -16367,8 +14492,7 @@ - posterior wall of laryngopharynx (SCTID) - SCTID:276966005 + posterior wall of laryngopharynx (SCTID) @@ -16377,8 +14501,7 @@ - lamina propria of ureter (SCTID) - SCTID:2771005 + lamina propria of ureter (SCTID) @@ -16387,8 +14510,7 @@ - frenulum of lower lip (SCTID) - SCTID:277191003 + frenulum of lower lip (SCTID) @@ -16397,8 +14519,7 @@ - pedicle of vertebra (SCTID) - SCTID:277422007 + pedicle of vertebra (SCTID) @@ -16407,8 +14528,7 @@ - vertebra lamina (SCTID) - SCTID:277423002 + vertebra lamina (SCTID) @@ -16417,8 +14537,7 @@ - infraspinatus muscle (SCTID) - SCTID:277439009 + infraspinatus muscle (SCTID) @@ -16427,8 +14546,7 @@ - teres muscle (SCTID) - SCTID:277440006 + teres muscle (SCTID) @@ -16437,8 +14555,7 @@ - rhomboid (SCTID) - SCTID:277441005 + rhomboid (SCTID) @@ -16447,8 +14564,7 @@ - teres major muscle (SCTID) - SCTID:277444002 + teres major muscle (SCTID) @@ -16457,8 +14573,7 @@ - teres minor muscle (SCTID) - SCTID:277445001 + teres minor muscle (SCTID) @@ -16467,8 +14582,7 @@ - subscapularis muscle (SCTID) - SCTID:277446000 + subscapularis muscle (SCTID) @@ -16477,8 +14591,7 @@ - sinoatrial node (SCTID) - SCTID:277687007 + sinoatrial node (SCTID) @@ -16487,8 +14600,7 @@ - atrioventricular node (SCTID) - SCTID:277688002 + atrioventricular node (SCTID) @@ -16497,8 +14609,7 @@ - right bundle branch (SCTID) - SCTID:277689005 + right bundle branch (SCTID) @@ -16507,8 +14618,7 @@ - left bundle branch (SCTID) - SCTID:277690001 + left bundle branch (SCTID) @@ -16517,8 +14627,7 @@ - crista terminalis (SCTID) - SCTID:277693004 + crista terminalis (SCTID) @@ -16527,8 +14636,7 @@ - cardiac ventricle (SCTID) - SCTID:277699000 + cardiac ventricle (SCTID) @@ -16537,8 +14645,7 @@ - basal zone of heart (SCTID) - SCTID:277701000 + basal zone of heart (SCTID) @@ -16547,8 +14654,7 @@ - interventricular groove (SCTID) - SCTID:277708006 + interventricular groove (SCTID) @@ -16557,8 +14663,7 @@ - anterior interventricular sulcus (SCTID) - SCTID:277710008 + anterior interventricular sulcus (SCTID) @@ -16567,8 +14672,7 @@ - posterior interventricular sulcus (SCTID) - SCTID:277711007 + posterior interventricular sulcus (SCTID) @@ -16577,8 +14681,7 @@ - right atrium auricular region (SCTID) - SCTID:277713005 + right atrium auricular region (SCTID) @@ -16587,8 +14690,7 @@ - pectinate muscle (SCTID) - SCTID:277718001 + pectinate muscle (SCTID) @@ -16597,8 +14699,7 @@ - fossa ovalis of heart (SCTID) - SCTID:277719009 + fossa ovalis of heart (SCTID) @@ -16607,8 +14708,7 @@ - valve of inferior vena cava (SCTID) - SCTID:277722006 + valve of inferior vena cava (SCTID) @@ -16617,8 +14717,7 @@ - coronary sinus valve (SCTID) - SCTID:277723001 + coronary sinus valve (SCTID) @@ -16627,8 +14726,7 @@ - cardiac vein (SCTID) - SCTID:277726009 + cardiac vein (SCTID) @@ -16637,8 +14735,7 @@ - great vein of heart (SCTID) - SCTID:277728005 + great vein of heart (SCTID) @@ -16647,8 +14744,7 @@ - middle cardiac vein (SCTID) - SCTID:277729002 + middle cardiac vein (SCTID) @@ -16657,8 +14753,7 @@ - small cardiac vein (SCTID) - SCTID:277730007 + small cardiac vein (SCTID) @@ -16667,8 +14762,7 @@ - sinus of Valsalva (SCTID) - SCTID:277732004 + sinus of Valsalva (SCTID) @@ -16677,8 +14771,7 @@ - esophageal sphincter (SCTID) - SCTID:277765007 + esophageal sphincter (SCTID) @@ -16687,8 +14780,7 @@ - central retinal artery (SCTID) - SCTID:277771001 + central retinal artery (SCTID) @@ -16697,8 +14789,7 @@ - urethral sphincter (SCTID) - SCTID:277855007 + urethral sphincter (SCTID) @@ -16707,8 +14798,7 @@ - internal urethral sphincter (SCTID) - SCTID:277856008 + internal urethral sphincter (SCTID) @@ -16717,8 +14807,7 @@ - urethral sphincter (SCTID) - SCTID:277857004 + urethral sphincter (SCTID) @@ -16727,8 +14816,7 @@ - left atrium auricular region (SCTID) - SCTID:277930000 + left atrium auricular region (SCTID) @@ -16737,8 +14825,7 @@ - rectal artery (SCTID) - SCTID:277967008 + rectal artery (SCTID) @@ -16747,8 +14834,7 @@ - pudendal artery (SCTID) - SCTID:277968003 + pudendal artery (SCTID) @@ -16757,8 +14843,7 @@ - splenic vein (SCTID) - SCTID:278029005 + splenic vein (SCTID) @@ -16767,8 +14852,7 @@ - superior mesenteric vein (SCTID) - SCTID:278031001 + superior mesenteric vein (SCTID) @@ -16777,8 +14861,7 @@ - middle meningeal artery (SCTID) - SCTID:278100005 + middle meningeal artery (SCTID) @@ -16787,8 +14870,7 @@ - cerebellar artery (SCTID) - SCTID:278102002 + cerebellar artery (SCTID) @@ -16797,8 +14879,7 @@ - hepatic vein (SCTID) - SCTID:278191001 + hepatic vein (SCTID) @@ -16807,8 +14888,7 @@ - gonadal vein (SCTID) - SCTID:278192008 + gonadal vein (SCTID) @@ -16817,8 +14897,7 @@ - ovarian vein (SCTID) - SCTID:278193003 + ovarian vein (SCTID) @@ -16827,8 +14906,7 @@ - suprarenal vein (SCTID) - SCTID:278194009 + suprarenal vein (SCTID) @@ -16837,8 +14915,7 @@ - anatomical system (SCTID) - SCTID:278195005 + anatomical system (SCTID) @@ -16847,8 +14924,7 @@ - nervous system (SCTID) - SCTID:278196006 + nervous system (SCTID) @@ -16857,8 +14933,7 @@ - respiratory system (SCTID) - SCTID:278197002 + respiratory system (SCTID) @@ -16867,8 +14942,7 @@ - cardiovascular system (SCTID) - SCTID:278198007 + cardiovascular system (SCTID) @@ -16877,8 +14951,7 @@ - central nervous system (SCTID) - SCTID:278199004 + central nervous system (SCTID) @@ -16887,8 +14960,7 @@ - interventricular septum membranous part (SCTID) - SCTID:278228007 + interventricular septum membranous part (SCTID) @@ -16897,8 +14969,7 @@ - cerebral hemisphere (SCTID) - SCTID:278251007 + cerebral hemisphere (SCTID) @@ -16907,8 +14978,7 @@ - cervical dorsal root ganglion (SCTID) - SCTID:278325008 + cervical dorsal root ganglion (SCTID) @@ -16917,8 +14987,7 @@ - thoracic dorsal root ganglion (SCTID) - SCTID:278326009 + thoracic dorsal root ganglion (SCTID) @@ -16927,8 +14996,7 @@ - lumbar dorsal root ganglion (SCTID) - SCTID:278327000 + lumbar dorsal root ganglion (SCTID) @@ -16937,8 +15005,7 @@ - sacral dorsal root ganglion (SCTID) - SCTID:278328005 + sacral dorsal root ganglion (SCTID) @@ -16947,8 +15014,7 @@ - Krause's gland (SCTID) - SCTID:278359007 + Krause's gland (SCTID) @@ -16957,8 +15023,7 @@ - accessory lacrimal gland (SCTID) - SCTID:278360002 + accessory lacrimal gland (SCTID) @@ -16967,8 +15032,7 @@ - Ciaccio's gland (SCTID) - SCTID:278361003 + Ciaccio's gland (SCTID) @@ -16977,8 +15041,7 @@ - crypt of Henle (SCTID) - SCTID:278362005 + crypt of Henle (SCTID) @@ -16987,8 +15050,7 @@ - mesial marginal ridge of tooth (SCTID) - SCTID:278475009 + mesial marginal ridge of tooth (SCTID) @@ -16997,8 +15059,7 @@ - distal marginal ridge of tooth (SCTID) - SCTID:278476005 + distal marginal ridge of tooth (SCTID) @@ -17007,8 +15068,7 @@ - spinal cord segment (SCTID) - SCTID:278748001 + spinal cord segment (SCTID) @@ -17017,8 +15077,7 @@ - cervical subsegment of spinal cord (SCTID) - SCTID:278749009 + cervical subsegment of spinal cord (SCTID) @@ -17027,8 +15086,7 @@ - thoracic spinal cord (SCTID) - SCTID:278750009 + thoracic spinal cord (SCTID) @@ -17037,8 +15095,7 @@ - lumbar subsegment of spinal cord (SCTID) - SCTID:278751008 + lumbar subsegment of spinal cord (SCTID) @@ -17047,8 +15104,7 @@ - sacral subsegment of spinal cord (SCTID) - SCTID:278752001 + sacral subsegment of spinal cord (SCTID) @@ -17057,8 +15113,7 @@ - caudal segment of spinal cord (SCTID) - SCTID:278753006 + caudal segment of spinal cord (SCTID) @@ -17067,8 +15122,7 @@ - C1 segment of cervical spinal cord (SCTID) - SCTID:278754000 + C1 segment of cervical spinal cord (SCTID) @@ -17077,8 +15131,7 @@ - C2 segment of cervical spinal cord (SCTID) - SCTID:278755004 + C2 segment of cervical spinal cord (SCTID) @@ -17087,8 +15140,7 @@ - C3 segment of cervical spinal cord (SCTID) - SCTID:278756003 + C3 segment of cervical spinal cord (SCTID) @@ -17097,8 +15149,7 @@ - C4 segment of cervical spinal cord (SCTID) - SCTID:278757007 + C4 segment of cervical spinal cord (SCTID) @@ -17107,8 +15158,7 @@ - C5 segment of cervical spinal cord (SCTID) - SCTID:278758002 + C5 segment of cervical spinal cord (SCTID) @@ -17117,8 +15167,7 @@ - C6 segment of cervical spinal cord (SCTID) - SCTID:278759005 + C6 segment of cervical spinal cord (SCTID) @@ -17127,8 +15176,7 @@ - C7 segment of cervical spinal cord (SCTID) - SCTID:278760000 + C7 segment of cervical spinal cord (SCTID) @@ -17137,8 +15185,7 @@ - C8 segment of cervical spinal cord (SCTID) - SCTID:278761001 + C8 segment of cervical spinal cord (SCTID) @@ -17147,8 +15194,7 @@ - T1 segment of thoracic spinal cord (SCTID) - SCTID:278762008 + T1 segment of thoracic spinal cord (SCTID) @@ -17157,8 +15203,7 @@ - T2 segment of thoracic spinal cord (SCTID) - SCTID:278763003 + T2 segment of thoracic spinal cord (SCTID) @@ -17167,8 +15212,7 @@ - T3 segment of thoracic spinal cord (SCTID) - SCTID:278764009 + T3 segment of thoracic spinal cord (SCTID) @@ -17177,8 +15221,7 @@ - T4 segment of thoracic spinal cord (SCTID) - SCTID:278766006 + T4 segment of thoracic spinal cord (SCTID) @@ -17187,8 +15230,7 @@ - T5 segment of thoracic spinal cord (SCTID) - SCTID:278767002 + T5 segment of thoracic spinal cord (SCTID) @@ -17197,8 +15239,7 @@ - T6 segment of thoracic spinal cord (SCTID) - SCTID:278768007 + T6 segment of thoracic spinal cord (SCTID) @@ -17207,8 +15248,7 @@ - T7 segment of thoracic spinal cord (SCTID) - SCTID:278769004 + T7 segment of thoracic spinal cord (SCTID) @@ -17217,8 +15257,7 @@ - T8 segment of thoracic spinal cord (SCTID) - SCTID:278770003 + T8 segment of thoracic spinal cord (SCTID) @@ -17227,8 +15266,7 @@ - T9 segment of thoracic spinal cord (SCTID) - SCTID:278771004 + T9 segment of thoracic spinal cord (SCTID) @@ -17237,8 +15275,7 @@ - T10 segment of thoracic spinal cord (SCTID) - SCTID:278772006 + T10 segment of thoracic spinal cord (SCTID) @@ -17247,8 +15284,7 @@ - T11 segment of thoracic spinal cord (SCTID) - SCTID:278773001 + T11 segment of thoracic spinal cord (SCTID) @@ -17257,8 +15293,7 @@ - T12 segment of thoracic spinal cord (SCTID) - SCTID:278774007 + T12 segment of thoracic spinal cord (SCTID) @@ -17267,8 +15302,7 @@ - L5 segment of lumbar spinal cord (SCTID) - SCTID:278775008 + L5 segment of lumbar spinal cord (SCTID) @@ -17277,8 +15311,7 @@ - L1 segment of lumbar spinal cord (SCTID) - SCTID:278776009 + L1 segment of lumbar spinal cord (SCTID) @@ -17287,8 +15320,7 @@ - L2 segment of lumbar spinal cord (SCTID) - SCTID:278777000 + L2 segment of lumbar spinal cord (SCTID) @@ -17297,8 +15329,7 @@ - L3 segment of lumbar spinal cord (SCTID) - SCTID:278778005 + L3 segment of lumbar spinal cord (SCTID) @@ -17307,8 +15338,7 @@ - L4 segment of lumbar spinal cord (SCTID) - SCTID:278779002 + L4 segment of lumbar spinal cord (SCTID) @@ -17317,8 +15347,7 @@ - S1 segment of sacral spinal cord (SCTID) - SCTID:278780004 + S1 segment of sacral spinal cord (SCTID) @@ -17327,8 +15356,7 @@ - S2 segment of sacral spinal cord (SCTID) - SCTID:278781000 + S2 segment of sacral spinal cord (SCTID) @@ -17337,8 +15365,7 @@ - S3 segment of sacral spinal cord (SCTID) - SCTID:278782007 + S3 segment of sacral spinal cord (SCTID) @@ -17347,8 +15374,7 @@ - S4 segment of sacral spinal cord (SCTID) - SCTID:278783002 + S4 segment of sacral spinal cord (SCTID) @@ -17357,8 +15383,7 @@ - S5 segment of sacral spinal cord (SCTID) - SCTID:278784008 + S5 segment of sacral spinal cord (SCTID) @@ -17367,8 +15392,7 @@ - inguinal ring (SCTID) - SCTID:278830004 + inguinal ring (SCTID) @@ -17377,8 +15401,7 @@ - deep inguinal ring (SCTID) - SCTID:278831000 + deep inguinal ring (SCTID) @@ -17387,8 +15410,7 @@ - musculoskeletal system (SCTID) - SCTID:278858007 + musculoskeletal system (SCTID) @@ -17397,8 +15419,7 @@ - digestive system (SCTID) - SCTID:278859004 + digestive system (SCTID) @@ -17407,8 +15428,7 @@ - genitourinary system (SCTID) - SCTID:278861008 + genitourinary system (SCTID) @@ -17417,8 +15437,7 @@ - endometrium (SCTID) - SCTID:278867007 + endometrium (SCTID) @@ -17427,8 +15446,7 @@ - reticuloendothelial system (SCTID) - SCTID:278874002 + reticuloendothelial system (SCTID) @@ -17437,8 +15455,7 @@ - reproductive system (SCTID) - SCTID:278875001 + reproductive system (SCTID) @@ -17447,8 +15464,7 @@ - endocrine system (SCTID) - SCTID:278876000 + endocrine system (SCTID) @@ -17457,8 +15473,7 @@ - preputial gland (SCTID) - SCTID:278916008 + preputial gland (SCTID) @@ -17467,8 +15482,7 @@ - bulbo-urethral gland (SCTID) - SCTID:278918009 + bulbo-urethral gland (SCTID) @@ -17477,8 +15491,7 @@ - nasal vestibule (SCTID) - SCTID:278940000 + nasal vestibule (SCTID) @@ -17487,8 +15500,7 @@ - nasal cartilage (SCTID) - SCTID:278941001 + nasal cartilage (SCTID) @@ -17497,8 +15509,7 @@ - lateral nasal cartilage (SCTID) - SCTID:278944009 + lateral nasal cartilage (SCTID) @@ -17507,8 +15518,7 @@ - inflow tract of right ventricle (SCTID) - SCTID:278950004 + inflow tract of right ventricle (SCTID) @@ -17517,8 +15527,7 @@ - inflow tract of left ventricle (SCTID) - SCTID:278960008 + inflow tract of left ventricle (SCTID) @@ -17527,8 +15536,7 @@ - trachea cartilage (SCTID) - SCTID:278979006 + trachea cartilage (SCTID) @@ -17537,8 +15545,7 @@ - cartilage of bronchus (SCTID) - SCTID:278980009 + cartilage of bronchus (SCTID) @@ -17547,8 +15554,7 @@ - terminal bronchiole (SCTID) - SCTID:278981008 + terminal bronchiole (SCTID) @@ -17557,8 +15563,7 @@ - bronchiole (SCTID) - SCTID:278982001 + bronchiole (SCTID) @@ -17567,8 +15572,7 @@ - corniculate cartilage (SCTID) - SCTID:278989005 + corniculate cartilage (SCTID) @@ -17577,8 +15581,7 @@ - epiglottic cartilage (SCTID) - SCTID:278990001 + epiglottic cartilage (SCTID) @@ -17587,8 +15590,7 @@ - suspensory ligament of breast (SCTID) - SCTID:279011006 + suspensory ligament of breast (SCTID) @@ -17597,8 +15599,7 @@ - areolar gland (SCTID) - SCTID:279034002 + areolar gland (SCTID) @@ -17607,8 +15608,7 @@ - geniculate ganglion (SCTID) - SCTID:279076005 + geniculate ganglion (SCTID) @@ -17617,8 +15617,7 @@ - upper part of cisterna chyli (SCTID) - SCTID:279088007 + upper part of cisterna chyli (SCTID) @@ -17627,8 +15626,7 @@ - lymphatic vessel (SCTID) - SCTID:279089004 + lymphatic vessel (SCTID) @@ -17637,8 +15635,7 @@ - midbrain (SCTID) - SCTID:279099009 + midbrain (SCTID) @@ -17647,8 +15644,7 @@ - pons (SCTID) - SCTID:279103004 + pons (SCTID) @@ -17657,8 +15653,7 @@ - medulla oblongata (SCTID) - SCTID:279104005 + medulla oblongata (SCTID) @@ -17667,8 +15662,7 @@ - cerebellar vermis (SCTID) - SCTID:279105006 + cerebellar vermis (SCTID) @@ -17677,8 +15671,7 @@ - nucleus of thalamus (SCTID) - SCTID:279115000 + nucleus of thalamus (SCTID) @@ -17687,8 +15680,7 @@ - anterior nuclear group (SCTID) - SCTID:279124009 + anterior nuclear group (SCTID) @@ -17697,8 +15689,7 @@ - ventral nuclear group (SCTID) - SCTID:279125005 + ventral nuclear group (SCTID) @@ -17707,8 +15698,7 @@ - lateral nuclear group of thalamus (SCTID) - SCTID:279126006 + lateral nuclear group of thalamus (SCTID) @@ -17717,8 +15707,7 @@ - anterodorsal nucleus of thalamus (SCTID) - SCTID:279127002 + anterodorsal nucleus of thalamus (SCTID) @@ -17727,8 +15716,7 @@ - anteromedial nucleus of thalamus (SCTID) - SCTID:279128007 + anteromedial nucleus of thalamus (SCTID) @@ -17737,8 +15725,7 @@ - anteroventral nucleus of thalamus (SCTID) - SCTID:279130009 + anteroventral nucleus of thalamus (SCTID) @@ -17747,8 +15734,7 @@ - ventral anterior nucleus of thalamus (SCTID) - SCTID:279131008 + ventral anterior nucleus of thalamus (SCTID) @@ -17757,8 +15743,7 @@ - facial lymph node (SCTID) - SCTID:279139005 + facial lymph node (SCTID) @@ -17767,8 +15752,7 @@ - parotid lymph node (SCTID) - SCTID:279140007 + parotid lymph node (SCTID) @@ -17777,8 +15761,7 @@ - superficial parotid lymph node (SCTID) - SCTID:279141006 + superficial parotid lymph node (SCTID) @@ -17787,8 +15770,7 @@ - deep parotid lymph node (SCTID) - SCTID:279142004 + deep parotid lymph node (SCTID) @@ -17797,8 +15779,7 @@ - mastoid lymph node (SCTID) - SCTID:279143009 + mastoid lymph node (SCTID) @@ -17807,8 +15788,7 @@ - superficial cervical lymph node (SCTID) - SCTID:279144003 + superficial cervical lymph node (SCTID) @@ -17817,8 +15797,7 @@ - deep cervical lymph node (SCTID) - SCTID:279145002 + deep cervical lymph node (SCTID) @@ -17827,8 +15806,7 @@ - ventral lateral nucleus of thalamus (SCTID) - SCTID:279146001 + ventral lateral nucleus of thalamus (SCTID) @@ -17837,8 +15815,7 @@ - ventral posterior nucleus of thalamus (SCTID) - SCTID:279147005 + ventral posterior nucleus of thalamus (SCTID) @@ -17847,8 +15824,7 @@ - medial dorsal nucleus of thalamus (SCTID) - SCTID:279149008 + medial dorsal nucleus of thalamus (SCTID) @@ -17857,8 +15833,7 @@ - parafascicular nucleus (SCTID) - SCTID:279150008 + parafascicular nucleus (SCTID) @@ -17867,8 +15842,7 @@ - submedial nucleus of thalamus (SCTID) - SCTID:279151007 + submedial nucleus of thalamus (SCTID) @@ -17877,8 +15851,7 @@ - paracentral nucleus (SCTID) - SCTID:279152000 + paracentral nucleus (SCTID) @@ -17887,8 +15860,7 @@ - central lateral nucleus (SCTID) - SCTID:279153005 + central lateral nucleus (SCTID) @@ -17897,8 +15869,7 @@ - lateral dorsal nucleus (SCTID) - SCTID:279154004 + lateral dorsal nucleus (SCTID) @@ -17907,8 +15878,7 @@ - lateral posterior nucleus of thalamus (SCTID) - SCTID:279155003 + lateral posterior nucleus of thalamus (SCTID) @@ -17917,8 +15887,7 @@ - popliteal lymph node (SCTID) - SCTID:279156002 + popliteal lymph node (SCTID) @@ -17927,8 +15896,7 @@ - pulvinar nucleus (SCTID) - SCTID:279157006 + pulvinar nucleus (SCTID) @@ -17937,8 +15905,7 @@ - intralaminar nuclear group (SCTID) - SCTID:279159009 + intralaminar nuclear group (SCTID) @@ -17947,8 +15914,7 @@ - central medial nucleus (SCTID) - SCTID:279161000 + central medial nucleus (SCTID) @@ -17957,8 +15923,7 @@ - centromedian nucleus of thalamus (SCTID) - SCTID:279162007 + centromedian nucleus of thalamus (SCTID) @@ -17967,8 +15932,7 @@ - midline nuclear group (SCTID) - SCTID:279163002 + midline nuclear group (SCTID) @@ -17977,8 +15941,7 @@ - thalamic reticular nucleus (SCTID) - SCTID:279164008 + thalamic reticular nucleus (SCTID) @@ -17987,8 +15950,7 @@ - gyrus (SCTID) - SCTID:279165009 + gyrus (SCTID) @@ -17997,8 +15959,7 @@ - superior frontal gyrus (SCTID) - SCTID:279166005 + superior frontal gyrus (SCTID) @@ -18007,8 +15968,7 @@ - postcentral gyrus (SCTID) - SCTID:279167001 + postcentral gyrus (SCTID) @@ -18017,8 +15977,7 @@ - superior parietal cortex (SCTID) - SCTID:279168006 + superior parietal cortex (SCTID) @@ -18027,8 +15986,7 @@ - superior occipital gyrus (SCTID) - SCTID:279182006 + superior occipital gyrus (SCTID) @@ -18037,8 +15995,7 @@ - inferior occipital gyrus (SCTID) - SCTID:279183001 + inferior occipital gyrus (SCTID) @@ -18047,8 +16004,7 @@ - supramarginal gyrus (SCTID) - SCTID:279185008 + supramarginal gyrus (SCTID) @@ -18057,8 +16013,7 @@ - angular gyrus (SCTID) - SCTID:279186009 + angular gyrus (SCTID) @@ -18067,8 +16022,7 @@ - middle temporal gyrus (SCTID) - SCTID:279190006 + middle temporal gyrus (SCTID) @@ -18077,8 +16031,7 @@ - inferior temporal gyrus (SCTID) - SCTID:279191005 + inferior temporal gyrus (SCTID) @@ -18087,8 +16040,7 @@ - anterior transverse temporal gyrus (SCTID) - SCTID:279192003 + anterior transverse temporal gyrus (SCTID) @@ -18097,8 +16049,7 @@ - posterior transverse temporal gyrus (SCTID) - SCTID:279193008 + posterior transverse temporal gyrus (SCTID) @@ -18107,8 +16058,7 @@ - medial orbital gyrus (SCTID) - SCTID:279194002 + medial orbital gyrus (SCTID) @@ -18117,8 +16067,7 @@ - lateral orbital gyrus (SCTID) - SCTID:279195001 + lateral orbital gyrus (SCTID) @@ -18127,8 +16076,7 @@ - anterior orbital gyrus (SCTID) - SCTID:279196000 + anterior orbital gyrus (SCTID) @@ -18137,8 +16085,7 @@ - posterior orbital gyrus (SCTID) - SCTID:279197009 + posterior orbital gyrus (SCTID) @@ -18147,8 +16094,7 @@ - cuneus cortex (SCTID) - SCTID:279199007 + cuneus cortex (SCTID) @@ -18157,8 +16103,7 @@ - precuneus cortex (SCTID) - SCTID:279200005 + precuneus cortex (SCTID) @@ -18167,8 +16112,7 @@ - insula (SCTID) - SCTID:279201009 + insula (SCTID) @@ -18177,8 +16121,7 @@ - paracentral lobule (SCTID) - SCTID:279202002 + paracentral lobule (SCTID) @@ -18187,8 +16130,7 @@ - lingual gyrus (SCTID) - SCTID:279203007 + lingual gyrus (SCTID) @@ -18197,8 +16139,7 @@ - parahippocampal gyrus (SCTID) - SCTID:279205000 + parahippocampal gyrus (SCTID) @@ -18207,8 +16148,7 @@ - gyrus rectus (SCTID) - SCTID:279206004 + gyrus rectus (SCTID) @@ -18217,8 +16157,7 @@ - cingulate gyrus (SCTID) - SCTID:279208003 + cingulate gyrus (SCTID) @@ -18227,8 +16166,7 @@ - fasciolar gyrus (SCTID) - SCTID:279210001 + fasciolar gyrus (SCTID) @@ -18237,8 +16175,7 @@ - dentate gyrus of hippocampal formation (SCTID) - SCTID:279211002 + dentate gyrus of hippocampal formation (SCTID) @@ -18247,8 +16184,7 @@ - uncus of parahippocampal gyrus (SCTID) - SCTID:279213004 + uncus of parahippocampal gyrus (SCTID) @@ -18257,8 +16193,7 @@ - periamygdaloid area (SCTID) - SCTID:279214005 + periamygdaloid area (SCTID) @@ -18267,8 +16202,7 @@ - limbic lobe (SCTID) - SCTID:279215006 + limbic lobe (SCTID) @@ -18277,8 +16211,7 @@ - superior cerebellar peduncle (SCTID) - SCTID:279218008 + superior cerebellar peduncle (SCTID) @@ -18287,8 +16220,7 @@ - middle cerebellar peduncle (SCTID) - SCTID:279219000 + middle cerebellar peduncle (SCTID) @@ -18297,8 +16229,7 @@ - nucleus of cerebellar nuclear complex (SCTID) - SCTID:279220006 + nucleus of cerebellar nuclear complex (SCTID) @@ -18307,8 +16238,7 @@ - dentate nucleus (SCTID) - SCTID:279221005 + dentate nucleus (SCTID) @@ -18317,8 +16247,7 @@ - emboliform nucleus (SCTID) - SCTID:279222003 + emboliform nucleus (SCTID) @@ -18327,8 +16256,7 @@ - cerebellum globose nucleus (SCTID) - SCTID:279223008 + cerebellum globose nucleus (SCTID) @@ -18337,8 +16265,7 @@ - fastigial nucleus (SCTID) - SCTID:279224002 + fastigial nucleus (SCTID) @@ -18347,8 +16274,7 @@ - precordial region (SCTID) - SCTID:279231003 + precordial region (SCTID) @@ -18357,8 +16283,7 @@ - levator scapulae muscle (SCTID) - SCTID:279236008 + levator scapulae muscle (SCTID) @@ -18367,8 +16292,7 @@ - body of lateral ventricle (SCTID) - SCTID:279246005 + body of lateral ventricle (SCTID) @@ -18377,8 +16301,7 @@ - anterior horn of lateral ventricle (SCTID) - SCTID:279247001 + anterior horn of lateral ventricle (SCTID) @@ -18387,8 +16310,7 @@ - interventricular foramen of CNS (SCTID) - SCTID:279248006 + interventricular foramen of CNS (SCTID) @@ -18397,8 +16319,7 @@ - midbrain cerebral aqueduct (SCTID) - SCTID:279249003 + midbrain cerebral aqueduct (SCTID) @@ -18407,8 +16328,7 @@ - somatosensory cortex (SCTID) - SCTID:279252006 + somatosensory cortex (SCTID) @@ -18417,8 +16337,7 @@ - inferior sagittal sinus (SCTID) - SCTID:279260007 + inferior sagittal sinus (SCTID) @@ -18427,8 +16346,7 @@ - tentorial sinus (SCTID) - SCTID:279261006 + tentorial sinus (SCTID) @@ -18437,8 +16355,7 @@ - transverse sinus (SCTID) - SCTID:279262004 + transverse sinus (SCTID) @@ -18447,8 +16364,7 @@ - inferior petrosal sinus (SCTID) - SCTID:279263009 + inferior petrosal sinus (SCTID) @@ -18457,8 +16373,7 @@ - sigmoid sinus (SCTID) - SCTID:279264003 + sigmoid sinus (SCTID) @@ -18467,8 +16382,7 @@ - sphenoparietal sinus (SCTID) - SCTID:279266001 + sphenoparietal sinus (SCTID) @@ -18477,8 +16391,7 @@ - deep middle cerebral vein (SCTID) - SCTID:279272001 + deep middle cerebral vein (SCTID) @@ -18487,8 +16400,7 @@ - falx cerebri (SCTID) - SCTID:279275004 + falx cerebri (SCTID) @@ -18497,8 +16409,7 @@ - superior mesenteric ganglion (SCTID) - SCTID:279276003 + superior mesenteric ganglion (SCTID) @@ -18507,8 +16418,7 @@ - inferior mesenteric ganglion (SCTID) - SCTID:279277007 + inferior mesenteric ganglion (SCTID) @@ -18517,8 +16427,7 @@ - superior cervical ganglion (SCTID) - SCTID:279278002 + superior cervical ganglion (SCTID) @@ -18527,8 +16436,7 @@ - middle cervical ganglion (SCTID) - SCTID:279279005 + middle cervical ganglion (SCTID) @@ -18537,8 +16445,7 @@ - inferior cervical ganglion (SCTID) - SCTID:279280008 + inferior cervical ganglion (SCTID) @@ -18547,8 +16454,7 @@ - main ciliary ganglion (SCTID) - SCTID:279281007 + main ciliary ganglion (SCTID) @@ -18557,8 +16463,7 @@ - submandibular ganglion (SCTID) - SCTID:279282000 + submandibular ganglion (SCTID) @@ -18567,8 +16472,7 @@ - otic ganglion (SCTID) - SCTID:279283005 + otic ganglion (SCTID) @@ -18577,8 +16481,7 @@ - parasympathetic ganglion (SCTID) - SCTID:279284004 + parasympathetic ganglion (SCTID) @@ -18587,8 +16490,7 @@ - midbrain nucleus (SCTID) - SCTID:279285003 + midbrain nucleus (SCTID) @@ -18597,8 +16499,7 @@ - substantia nigra (SCTID) - SCTID:279286002 + substantia nigra (SCTID) @@ -18607,8 +16508,7 @@ - red nucleus (SCTID) - SCTID:279287006 + red nucleus (SCTID) @@ -18617,8 +16517,7 @@ - medulla oblongata anterior median fissure (SCTID) - SCTID:279288001 + medulla oblongata anterior median fissure (SCTID) @@ -18627,8 +16526,7 @@ - pyramid of medulla oblongata (SCTID) - SCTID:279289009 + pyramid of medulla oblongata (SCTID) @@ -18637,8 +16535,7 @@ - ventrolateral sulcus of medulla oblongata (SCTID) - SCTID:279291001 + ventrolateral sulcus of medulla oblongata (SCTID) @@ -18647,8 +16544,7 @@ - olivary body (SCTID) - SCTID:279293003 + olivary body (SCTID) @@ -18657,8 +16553,7 @@ - anterior limb of internal capsule (SCTID) - SCTID:279295005 + anterior limb of internal capsule (SCTID) @@ -18667,8 +16562,7 @@ - posterior limb of internal capsule (SCTID) - SCTID:279296006 + posterior limb of internal capsule (SCTID) @@ -18677,8 +16571,7 @@ - caudate nucleus (SCTID) - SCTID:279297002 + caudate nucleus (SCTID) @@ -18687,8 +16580,7 @@ - head of caudate nucleus (SCTID) - SCTID:279298007 + head of caudate nucleus (SCTID) @@ -18697,8 +16589,7 @@ - tail of caudate nucleus (SCTID) - SCTID:279299004 + tail of caudate nucleus (SCTID) @@ -18707,8 +16598,7 @@ - external capsule of telencephalon (SCTID) - SCTID:279300007 + external capsule of telencephalon (SCTID) @@ -18717,8 +16607,7 @@ - extreme capsule (SCTID) - SCTID:279301006 + extreme capsule (SCTID) @@ -18727,8 +16616,7 @@ - fornix of brain (SCTID) - SCTID:279302004 + fornix of brain (SCTID) @@ -18737,8 +16625,7 @@ - habenular nucleus (SCTID) - SCTID:279303009 + habenular nucleus (SCTID) @@ -18747,8 +16634,7 @@ - hypothalamic nucleus (SCTID) - SCTID:279304003 + hypothalamic nucleus (SCTID) @@ -18757,8 +16643,7 @@ - mammillary body (SCTID) - SCTID:279306001 + mammillary body (SCTID) @@ -18767,8 +16652,7 @@ - body of corpus callosum (SCTID) - SCTID:279307005 + body of corpus callosum (SCTID) @@ -18777,8 +16661,7 @@ - radiation of corpus callosum (SCTID) - SCTID:279308000 + radiation of corpus callosum (SCTID) @@ -18787,8 +16670,7 @@ - genu of corpus callosum (SCTID) - SCTID:279310003 + genu of corpus callosum (SCTID) @@ -18797,8 +16679,7 @@ - rostrum of corpus callosum (SCTID) - SCTID:279311004 + rostrum of corpus callosum (SCTID) @@ -18807,8 +16688,7 @@ - tapetum of corpus callosum (SCTID) - SCTID:279312006 + tapetum of corpus callosum (SCTID) @@ -18817,8 +16697,7 @@ - anterior commissure (SCTID) - SCTID:279313001 + anterior commissure (SCTID) @@ -18827,8 +16706,7 @@ - corpus striatum (SCTID) - SCTID:279318005 + corpus striatum (SCTID) @@ -18837,8 +16715,7 @@ - lentiform nucleus (SCTID) - SCTID:279319002 + lentiform nucleus (SCTID) @@ -18847,8 +16724,7 @@ - diencephalon (SCTID) - SCTID:279328001 + diencephalon (SCTID) @@ -18857,8 +16733,7 @@ - papillary muscle of heart (SCTID) - SCTID:279329009 + papillary muscle of heart (SCTID) @@ -18867,8 +16742,7 @@ - chorda tendineae (SCTID) - SCTID:279330004 + chorda tendineae (SCTID) @@ -18877,8 +16751,7 @@ - ventral thalamus (SCTID) - SCTID:279332007 + ventral thalamus (SCTID) @@ -18887,8 +16760,7 @@ - habenular commissure (SCTID) - SCTID:279335009 + habenular commissure (SCTID) @@ -18897,8 +16769,7 @@ - sulcus of brain (SCTID) - SCTID:279337001 + sulcus of brain (SCTID) @@ -18907,8 +16778,7 @@ - intraparietal sulcus (SCTID) - SCTID:279338006 + intraparietal sulcus (SCTID) @@ -18917,8 +16787,7 @@ - postcentral sulcus of parietal lobe (SCTID) - SCTID:279339003 + postcentral sulcus of parietal lobe (SCTID) @@ -18927,8 +16796,7 @@ - central sulcus (SCTID) - SCTID:279340001 + central sulcus (SCTID) @@ -18937,8 +16805,7 @@ - precentral sulcus (SCTID) - SCTID:279341002 + precentral sulcus (SCTID) @@ -18947,8 +16814,7 @@ - superior frontal sulcus (SCTID) - SCTID:279342009 + superior frontal sulcus (SCTID) @@ -18957,8 +16823,7 @@ - inferior frontal sulcus (SCTID) - SCTID:279343004 + inferior frontal sulcus (SCTID) @@ -18967,8 +16832,7 @@ - superior temporal sulcus (SCTID) - SCTID:279344005 + superior temporal sulcus (SCTID) @@ -18977,8 +16841,7 @@ - middle temporal sulcus (SCTID) - SCTID:279345006 + middle temporal sulcus (SCTID) @@ -18987,8 +16850,7 @@ - inferior temporal sulcus (SCTID) - SCTID:279346007 + inferior temporal sulcus (SCTID) @@ -18997,8 +16859,7 @@ - central sulcus of insula (SCTID) - SCTID:279348008 + central sulcus of insula (SCTID) @@ -19007,8 +16868,7 @@ - callosal sulcus (SCTID) - SCTID:279349000 + callosal sulcus (SCTID) @@ -19017,8 +16877,7 @@ - cingulate sulcus (SCTID) - SCTID:279350000 + cingulate sulcus (SCTID) @@ -19027,8 +16886,7 @@ - marginal sulcus (SCTID) - SCTID:279351001 + marginal sulcus (SCTID) @@ -19037,8 +16895,7 @@ - subparietal sulcus (SCTID) - SCTID:279352008 + subparietal sulcus (SCTID) @@ -19047,8 +16904,7 @@ - parieto-occipital sulcus (SCTID) - SCTID:279354009 + parieto-occipital sulcus (SCTID) @@ -19057,8 +16913,7 @@ - calcarine sulcus (SCTID) - SCTID:279355005 + calcarine sulcus (SCTID) @@ -19067,8 +16922,7 @@ - collateral sulcus (SCTID) - SCTID:279356006 + collateral sulcus (SCTID) @@ -19077,8 +16931,7 @@ - rhinal sulcus (SCTID) - SCTID:279357002 + rhinal sulcus (SCTID) @@ -19087,8 +16940,7 @@ - olfactory sulcus (SCTID) - SCTID:279358007 + olfactory sulcus (SCTID) @@ -19097,8 +16949,7 @@ - anterior lobe of cerebellum (SCTID) - SCTID:279359004 + anterior lobe of cerebellum (SCTID) @@ -19107,8 +16958,7 @@ - posterior lobe of cerebellum (SCTID) - SCTID:279360009 + posterior lobe of cerebellum (SCTID) @@ -19117,8 +16967,7 @@ - flocculonodular lobe (SCTID) - SCTID:279361008 + flocculonodular lobe (SCTID) @@ -19127,8 +16976,7 @@ - flocculus (SCTID) - SCTID:279368002 + flocculus (SCTID) @@ -19137,8 +16985,7 @@ - hilum of kidney (SCTID) - SCTID:279370006 + hilum of kidney (SCTID) @@ -19147,8 +16994,7 @@ - renal collecting system (SCTID) - SCTID:279371005 + renal collecting system (SCTID) @@ -19157,8 +17003,7 @@ - anterior surface of kidney (SCTID) - SCTID:279375001 + anterior surface of kidney (SCTID) @@ -19167,8 +17012,7 @@ - posterior surface of kidney (SCTID) - SCTID:279376000 + posterior surface of kidney (SCTID) @@ -19177,8 +17021,7 @@ - cerebellum vermis lobule I (SCTID) - SCTID:279380005 + cerebellum vermis lobule I (SCTID) @@ -19187,8 +17030,7 @@ - central lobule (SCTID) - SCTID:279383007 + central lobule (SCTID) @@ -19197,8 +17039,7 @@ - cerebellum vermis culmen (SCTID) - SCTID:279384001 + cerebellum vermis culmen (SCTID) @@ -19207,8 +17048,7 @@ - cerebellum vermis lobule VI (SCTID) - SCTID:279385000 + cerebellum vermis lobule VI (SCTID) @@ -19217,8 +17057,7 @@ - olfactory bulb (SCTID) - SCTID:279394006 + olfactory bulb (SCTID) @@ -19227,8 +17066,7 @@ - wall of ureter (SCTID) - SCTID:279397004 + wall of ureter (SCTID) @@ -19237,8 +17075,7 @@ - amygdala (SCTID) - SCTID:279404004 + amygdala (SCTID) @@ -19247,8 +17084,7 @@ - bladder lumen (SCTID) - SCTID:279405003 + bladder lumen (SCTID) @@ -19257,8 +17093,7 @@ - claustrum of brain (SCTID) - SCTID:279410004 + claustrum of brain (SCTID) @@ -19267,8 +17102,7 @@ - urinary bladder detrusor smooth muscle (SCTID) - SCTID:279414008 + urinary bladder detrusor smooth muscle (SCTID) @@ -19277,8 +17111,7 @@ - medial umbilical ligament (SCTID) - SCTID:279427007 + medial umbilical ligament (SCTID) @@ -19287,8 +17120,7 @@ - lumen of urethra (SCTID) - SCTID:279432008 + lumen of urethra (SCTID) @@ -19297,8 +17129,7 @@ - prostatic urethra (SCTID) - SCTID:279434009 + prostatic urethra (SCTID) @@ -19307,8 +17138,7 @@ - white matter of spinal cord (SCTID) - SCTID:279436006 + white matter of spinal cord (SCTID) @@ -19317,8 +17147,7 @@ - gray matter of spinal cord (SCTID) - SCTID:279441003 + gray matter of spinal cord (SCTID) @@ -19327,8 +17156,7 @@ - ventral horn of spinal cord (SCTID) - SCTID:279443000 + ventral horn of spinal cord (SCTID) @@ -19337,8 +17165,7 @@ - central canal of spinal cord (SCTID) - SCTID:279447004 + central canal of spinal cord (SCTID) @@ -19347,8 +17174,7 @@ - presymphysial lymph node (SCTID) - SCTID:279448009 + presymphysial lymph node (SCTID) @@ -19357,8 +17183,7 @@ - fourth ventricle median aperture (SCTID) - SCTID:279449001 + fourth ventricle median aperture (SCTID) @@ -19367,8 +17192,7 @@ - male urethral crest (SCTID) - SCTID:279470007 + male urethral crest (SCTID) @@ -19377,8 +17201,7 @@ - female urethral crest (SCTID) - SCTID:279471006 + female urethral crest (SCTID) @@ -19387,8 +17210,7 @@ - female urethral gland (SCTID) - SCTID:279476001 + female urethral gland (SCTID) @@ -19397,8 +17219,7 @@ - urethral gland (SCTID) - SCTID:279477005 + urethral gland (SCTID) @@ -19407,8 +17228,7 @@ - male urethral meatus (SCTID) - SCTID:279478000 + male urethral meatus (SCTID) @@ -19417,8 +17237,7 @@ - female urethral meatus (SCTID) - SCTID:279479008 + female urethral meatus (SCTID) @@ -19427,8 +17246,7 @@ - paraurethral duct (SCTID) - SCTID:279480006 + paraurethral duct (SCTID) @@ -19437,8 +17255,7 @@ - ligament of larynx (SCTID) - SCTID:279508004 + ligament of larynx (SCTID) @@ -19447,8 +17264,7 @@ - horn of thyroid cartilage (SCTID) - SCTID:279518009 + horn of thyroid cartilage (SCTID) @@ -19457,8 +17273,7 @@ - superior horn of thyroid cartilage (SCTID) - SCTID:279520007 + superior horn of thyroid cartilage (SCTID) @@ -19467,8 +17282,7 @@ - inferior horn of thyroid cartilage (SCTID) - SCTID:279521006 + inferior horn of thyroid cartilage (SCTID) @@ -19477,8 +17291,7 @@ - base of arytenoid (SCTID) - SCTID:279532006 + base of arytenoid (SCTID) @@ -19487,8 +17300,7 @@ - apex of arytenoid (SCTID) - SCTID:279534007 + apex of arytenoid (SCTID) @@ -19497,8 +17309,7 @@ - extrinsic ligament of larynx (SCTID) - SCTID:279550004 + extrinsic ligament of larynx (SCTID) @@ -19507,8 +17318,7 @@ - thyrohyoid ligament (SCTID) - SCTID:279551000 + thyrohyoid ligament (SCTID) @@ -19517,8 +17327,7 @@ - hyoepiglottic ligament (SCTID) - SCTID:279552007 + hyoepiglottic ligament (SCTID) @@ -19527,8 +17336,7 @@ - cricotracheal ligament (SCTID) - SCTID:279553002 + cricotracheal ligament (SCTID) @@ -19537,8 +17345,7 @@ - median thyrohyoid ligament (SCTID) - SCTID:279554008 + median thyrohyoid ligament (SCTID) @@ -19547,8 +17354,7 @@ - lateral thyrohyoid ligament (SCTID) - SCTID:279555009 + lateral thyrohyoid ligament (SCTID) @@ -19557,8 +17363,7 @@ - laryngeal intrinsic ligament (SCTID) - SCTID:279557001 + laryngeal intrinsic ligament (SCTID) @@ -19567,8 +17372,7 @@ - cricothyroid ligament (SCTID) - SCTID:279558006 + cricothyroid ligament (SCTID) @@ -19577,8 +17381,7 @@ - vestibular ligament (SCTID) - SCTID:279561007 + vestibular ligament (SCTID) @@ -19587,8 +17390,7 @@ - thyroepiglottic ligament (SCTID) - SCTID:279562000 + thyroepiglottic ligament (SCTID) @@ -19597,8 +17399,7 @@ - intercostal nerve (SCTID) - SCTID:279568001 + intercostal nerve (SCTID) @@ -19607,8 +17408,7 @@ - dartos muscle of scrotum (SCTID) - SCTID:279582001 + dartos muscle of scrotum (SCTID) @@ -19617,8 +17417,7 @@ - raphe of scrotum (SCTID) - SCTID:279583006 + raphe of scrotum (SCTID) @@ -19627,8 +17426,7 @@ - internal spermatic fascia (SCTID) - SCTID:279586003 + internal spermatic fascia (SCTID) @@ -19637,8 +17435,7 @@ - external spermatic fascia (SCTID) - SCTID:279588002 + external spermatic fascia (SCTID) @@ -19647,8 +17444,7 @@ - septum of scrotum (SCTID) - SCTID:279591002 + septum of scrotum (SCTID) @@ -19657,8 +17453,7 @@ - suspensory ligament of testis (SCTID) - SCTID:279592009 + suspensory ligament of testis (SCTID) @@ -19667,8 +17462,7 @@ - pars flaccida of tympanic membrane (SCTID) - SCTID:279594005 + pars flaccida of tympanic membrane (SCTID) @@ -19677,8 +17471,7 @@ - appendix testis (SCTID) - SCTID:279601003 + appendix testis (SCTID) @@ -19687,8 +17480,7 @@ - tunica albuginea of testis (SCTID) - SCTID:279604006 + tunica albuginea of testis (SCTID) @@ -19697,8 +17489,7 @@ - helix of outer ear (SCTID) - SCTID:279607004 + helix of outer ear (SCTID) @@ -19707,8 +17498,7 @@ - antihelix (SCTID) - SCTID:279612003 + antihelix (SCTID) @@ -19717,8 +17507,7 @@ - seminiferous tubule of testis (SCTID) - SCTID:279614002 + seminiferous tubule of testis (SCTID) @@ -19727,8 +17516,7 @@ - rete testis (SCTID) - SCTID:279617009 + rete testis (SCTID) @@ -19737,8 +17525,7 @@ - corpus epididymis (SCTID) - SCTID:279620001 + corpus epididymis (SCTID) @@ -19747,8 +17534,7 @@ - os penis (SCTID) - SCTID:27962002 + os penis (SCTID) @@ -19757,8 +17543,7 @@ - cauda epididymis (SCTID) - SCTID:279621002 + cauda epididymis (SCTID) @@ -19767,8 +17552,7 @@ - duct of epididymis (SCTID) - SCTID:279623004 + duct of epididymis (SCTID) @@ -19777,8 +17561,7 @@ - auricular cartilage (SCTID) - SCTID:279627003 + auricular cartilage (SCTID) @@ -19787,8 +17570,7 @@ - paradidymis (SCTID) - SCTID:279643005 + paradidymis (SCTID) @@ -19797,8 +17579,7 @@ - spermatic fascia (SCTID) - SCTID:279652001 + spermatic fascia (SCTID) @@ -19807,8 +17588,7 @@ - cremasteric artery (SCTID) - SCTID:279658002 + cremasteric artery (SCTID) @@ -19817,8 +17597,7 @@ - deferent duct artery (SCTID) - SCTID:279659005 + deferent duct artery (SCTID) @@ -19827,8 +17606,7 @@ - pampiniform plexus (SCTID) - SCTID:279661001 + pampiniform plexus (SCTID) @@ -19837,8 +17615,7 @@ - ejaculatory duct (SCTID) - SCTID:279665005 + ejaculatory duct (SCTID) @@ -19847,8 +17624,7 @@ - duct of seminal vesicle (SCTID) - SCTID:279675008 + duct of seminal vesicle (SCTID) @@ -19857,8 +17633,7 @@ - prostatic capsule (SCTID) - SCTID:279682007 + prostatic capsule (SCTID) @@ -19867,8 +17642,7 @@ - stapes base (SCTID) - SCTID:279685009 + stapes base (SCTID) @@ -19877,8 +17651,7 @@ - lobe of prostate (SCTID) - SCTID:279692004 + lobe of prostate (SCTID) @@ -19887,8 +17660,7 @@ - prostate gland anterior lobe (SCTID) - SCTID:279693009 + prostate gland anterior lobe (SCTID) @@ -19897,8 +17669,7 @@ - surface of prostate (SCTID) - SCTID:279694003 + surface of prostate (SCTID) @@ -19907,8 +17678,7 @@ - anterior surface of prostate (SCTID) - SCTID:279696001 + anterior surface of prostate (SCTID) @@ -19917,8 +17687,7 @@ - posterior surface of prostate (SCTID) - SCTID:279697005 + posterior surface of prostate (SCTID) @@ -19927,8 +17696,7 @@ - inferolateral surface of prostate (SCTID) - SCTID:279698000 + inferolateral surface of prostate (SCTID) @@ -19937,8 +17705,7 @@ - base of prostate (SCTID) - SCTID:279702001 + base of prostate (SCTID) @@ -19947,8 +17714,7 @@ - apex of prostate (SCTID) - SCTID:279703006 + apex of prostate (SCTID) @@ -19957,8 +17723,7 @@ - duct of bulbourethral gland (SCTID) - SCTID:279709005 + duct of bulbourethral gland (SCTID) @@ -19967,8 +17732,7 @@ - corpus spongiosum of penis (SCTID) - SCTID:279712008 + corpus spongiosum of penis (SCTID) @@ -19977,8 +17741,7 @@ - bony labyrinth (SCTID) - SCTID:279727008 + bony labyrinth (SCTID) @@ -19987,8 +17750,7 @@ - vestibular canal (SCTID) - SCTID:279736007 + vestibular canal (SCTID) @@ -19997,8 +17759,7 @@ - semicircular canal (SCTID) - SCTID:279757004 + semicircular canal (SCTID) @@ -20007,8 +17768,7 @@ - crus commune (SCTID) - SCTID:279758009 + crus commune (SCTID) @@ -20017,8 +17777,7 @@ - semicircular canal ampulla (SCTID) - SCTID:279759001 + semicircular canal ampulla (SCTID) @@ -20027,8 +17786,7 @@ - lateral semicircular canal (SCTID) - SCTID:279761005 + lateral semicircular canal (SCTID) @@ -20037,8 +17795,7 @@ - posterior semicircular canal (SCTID) - SCTID:279762003 + posterior semicircular canal (SCTID) @@ -20047,8 +17804,7 @@ - anterior semicircular canal (SCTID) - SCTID:279764002 + anterior semicircular canal (SCTID) @@ -20057,8 +17813,7 @@ - vestibular fissure of the cochlear canal (SCTID) - SCTID:279772000 + vestibular fissure of the cochlear canal (SCTID) @@ -20067,8 +17822,7 @@ - helicotrema (SCTID) - SCTID:279775003 + helicotrema (SCTID) @@ -20077,8 +17831,7 @@ - apex of cochlea (SCTID) - SCTID:279776002 + apex of cochlea (SCTID) @@ -20087,8 +17840,7 @@ - apex of cochlea (SCTID) - SCTID:279777006 + apex of cochlea (SCTID) @@ -20097,8 +17849,7 @@ - base of cochlear canal (SCTID) - SCTID:279778001 + base of cochlear canal (SCTID) @@ -20107,8 +17858,7 @@ - cochlear canal (SCTID) - SCTID:279779009 + cochlear canal (SCTID) @@ -20117,8 +17867,7 @@ - terminal part of the cochlear canal (SCTID) - SCTID:279780007 + terminal part of the cochlear canal (SCTID) @@ -20127,8 +17876,7 @@ - round window of inner ear (SCTID) - SCTID:279785002 + round window of inner ear (SCTID) @@ -20137,8 +17885,7 @@ - sacral lymph node (SCTID) - SCTID:279797001 + sacral lymph node (SCTID) @@ -20147,8 +17894,7 @@ - basis modioli (SCTID) - SCTID:279799003 + basis modioli (SCTID) @@ -20157,8 +17903,7 @@ - ductus reuniens (SCTID) - SCTID:279805009 + ductus reuniens (SCTID) @@ -20167,8 +17912,7 @@ - endolymphatic sac (SCTID) - SCTID:279810008 + endolymphatic sac (SCTID) @@ -20177,8 +17921,7 @@ - utriculosaccular duct (SCTID) - SCTID:279811007 + utriculosaccular duct (SCTID) @@ -20187,8 +17930,7 @@ - utricle of membranous labyrinth (SCTID) - SCTID:279817006 + utricle of membranous labyrinth (SCTID) @@ -20197,8 +17939,7 @@ - utricle duct (SCTID) - SCTID:279819009 + utricle duct (SCTID) @@ -20207,8 +17948,7 @@ - saccule of membranous labyrinth (SCTID) - SCTID:279827000 + saccule of membranous labyrinth (SCTID) @@ -20217,8 +17957,7 @@ - saccule duct (SCTID) - SCTID:279829002 + saccule duct (SCTID) @@ -20227,8 +17966,7 @@ - semicircular duct (SCTID) - SCTID:279833009 + semicircular duct (SCTID) @@ -20237,8 +17975,7 @@ - lateral semicircular duct (SCTID) - SCTID:279834003 + lateral semicircular duct (SCTID) @@ -20247,8 +17984,7 @@ - posterior semicircular duct (SCTID) - SCTID:279835002 + posterior semicircular duct (SCTID) @@ -20257,8 +17993,7 @@ - anterior semicircular duct (SCTID) - SCTID:279836001 + anterior semicircular duct (SCTID) @@ -20267,8 +18002,7 @@ - spiral ligament (SCTID) - SCTID:279840005 + spiral ligament (SCTID) @@ -20277,8 +18011,7 @@ - spiral organ of cochlea (SCTID) - SCTID:279841009 + spiral organ of cochlea (SCTID) @@ -20287,8 +18020,7 @@ - stria vascularis of cochlear duct (SCTID) - SCTID:279842002 + stria vascularis of cochlear duct (SCTID) @@ -20297,8 +18029,7 @@ - spiral prominence of cochlear duct (SCTID) - SCTID:279843007 + spiral prominence of cochlear duct (SCTID) @@ -20307,8 +18038,7 @@ - cochlear duct of membranous labyrinth (SCTID) - SCTID:279849006 + cochlear duct of membranous labyrinth (SCTID) @@ -20317,8 +18047,7 @@ - endolymphatic space (SCTID) - SCTID:279856000 + endolymphatic space (SCTID) @@ -20327,8 +18056,7 @@ - crus of clitoris (SCTID) - SCTID:279860002 + crus of clitoris (SCTID) @@ -20337,8 +18065,7 @@ - minor vestibular gland (SCTID) - SCTID:279869001 + minor vestibular gland (SCTID) @@ -20347,8 +18074,7 @@ - bulb of vestibule (SCTID) - SCTID:279873003 + bulb of vestibule (SCTID) @@ -20357,8 +18083,7 @@ - body of uterus (SCTID) - SCTID:279878007 + body of uterus (SCTID) @@ -20367,8 +18092,7 @@ - myometrium (SCTID) - SCTID:279879004 + myometrium (SCTID) @@ -20377,8 +18101,7 @@ - internal cervical os (SCTID) - SCTID:279886007 + internal cervical os (SCTID) @@ -20387,8 +18110,7 @@ - mesosalpinx (SCTID) - SCTID:279900000 + mesosalpinx (SCTID) @@ -20397,8 +18119,7 @@ - mesovarium (SCTID) - SCTID:279914000 + mesovarium (SCTID) @@ -20407,8 +18128,7 @@ - ovarian ligament (SCTID) - SCTID:279915004 + ovarian ligament (SCTID) @@ -20417,20 +18137,7 @@ - suspensory ligament of ovary (SCTID) - SCTID:279917007 - - - - - - - - - - helicine artery (SCTID) - helicine artery of penis (SCTID) - SCTID:279924008 + suspensory ligament of ovary (SCTID) @@ -20439,8 +18146,7 @@ - sensory root of facial nerve (SCTID) - SCTID:279927001 + sensory root of facial nerve (SCTID) @@ -20449,8 +18155,7 @@ - superior laryngeal nerve (SCTID) - SCTID:279928006 + superior laryngeal nerve (SCTID) @@ -20459,8 +18164,7 @@ - quadrate lobe of liver (SCTID) - SCTID:279929003 + quadrate lobe of liver (SCTID) @@ -20469,8 +18173,7 @@ - bare area of liver (SCTID) - SCTID:279965008 + bare area of liver (SCTID) @@ -20479,8 +18182,7 @@ - coronary ligament of liver (SCTID) - SCTID:279967000 + coronary ligament of liver (SCTID) @@ -20489,8 +18191,7 @@ - triangular ligament of liver (SCTID) - SCTID:279968005 + triangular ligament of liver (SCTID) @@ -20499,8 +18200,7 @@ - lower digestive tract (SCTID) - SCTID:279973004 + lower digestive tract (SCTID) @@ -20509,8 +18209,7 @@ - vulval vein (SCTID) - SCTID:279975006 + vulval vein (SCTID) @@ -20519,8 +18218,7 @@ - suspensory ligament of duodenum (SCTID) - SCTID:279979000 + suspensory ligament of duodenum (SCTID) @@ -20529,8 +18227,7 @@ - wall of stomach (SCTID) - SCTID:279995000 + wall of stomach (SCTID) @@ -20539,8 +18236,7 @@ - proximal epiphysis (SCTID) - SCTID:279998003 + proximal epiphysis (SCTID) @@ -20549,8 +18245,7 @@ - distal epiphysis (SCTID) - SCTID:279999006 + distal epiphysis (SCTID) @@ -20559,8 +18254,7 @@ - distal epiphysis of radius (SCTID) - SCTID:280013008 + distal epiphysis of radius (SCTID) @@ -20569,8 +18263,7 @@ - distal epiphysis of femur (SCTID) - SCTID:280016000 + distal epiphysis of femur (SCTID) @@ -20579,8 +18272,7 @@ - distal epiphysis of fibula (SCTID) - SCTID:280018004 + distal epiphysis of fibula (SCTID) @@ -20589,8 +18281,7 @@ - proximal epiphysis of humerus (SCTID) - SCTID:280028008 + proximal epiphysis of humerus (SCTID) @@ -20599,8 +18290,7 @@ - proximal epiphysis of radius (SCTID) - SCTID:280029000 + proximal epiphysis of radius (SCTID) @@ -20609,8 +18299,7 @@ - epiphysis of phalanx (SCTID) - SCTID:280033007 + epiphysis of phalanx (SCTID) @@ -20619,8 +18308,7 @@ - epiphysis of proximal phalanx of manus (SCTID) - SCTID:280044004 + epiphysis of proximal phalanx of manus (SCTID) @@ -20629,8 +18317,7 @@ - epiphysis of middle phalanx of manus (SCTID) - SCTID:280045003 + epiphysis of middle phalanx of manus (SCTID) @@ -20639,8 +18326,7 @@ - epiphysis of distal phalanx of manus (SCTID) - SCTID:280046002 + epiphysis of distal phalanx of manus (SCTID) @@ -20649,8 +18335,7 @@ - epiphysis of proximal phalanx of pes (SCTID) - SCTID:280047006 + epiphysis of proximal phalanx of pes (SCTID) @@ -20659,8 +18344,7 @@ - epiphysis of middle phalanx of pes (SCTID) - SCTID:280048001 + epiphysis of middle phalanx of pes (SCTID) @@ -20669,8 +18353,7 @@ - epiphysis of distal phalanx of pes (SCTID) - SCTID:280049009 + epiphysis of distal phalanx of pes (SCTID) @@ -20679,8 +18362,7 @@ - pineal recess of third ventricle (SCTID) - SCTID:280070003 + pineal recess of third ventricle (SCTID) @@ -20689,8 +18371,7 @@ - right uterine tube (SCTID) - SCTID:280106006 + right uterine tube (SCTID) @@ -20699,8 +18380,7 @@ - left uterine tube (SCTID) - SCTID:280107002 + left uterine tube (SCTID) @@ -20709,8 +18389,7 @@ - pyloric stomach (SCTID) - SCTID:280119005 + pyloric stomach (SCTID) @@ -20719,8 +18398,7 @@ - right ovary (SCTID) - SCTID:280123002 + right ovary (SCTID) @@ -20729,8 +18407,7 @@ - left ovary (SCTID) - SCTID:280124008 + left ovary (SCTID) @@ -20739,8 +18416,7 @@ - pyloric lymph node (SCTID) - SCTID:280127001 + pyloric lymph node (SCTID) @@ -20749,8 +18425,7 @@ - mental nerve (SCTID) - SCTID:280138001 + mental nerve (SCTID) @@ -20759,8 +18434,7 @@ - atrioventricular septum (SCTID) - SCTID:280151006 + atrioventricular septum (SCTID) @@ -20769,8 +18443,7 @@ - cranial nerve nucleus (SCTID) - SCTID:280160003 + cranial nerve nucleus (SCTID) @@ -20779,8 +18452,7 @@ - root of cranial nerve (SCTID) - SCTID:280161004 + root of cranial nerve (SCTID) @@ -20789,8 +18461,7 @@ - trochlear nucleus (SCTID) - SCTID:280163001 + trochlear nucleus (SCTID) @@ -20799,8 +18470,7 @@ - trigeminal nucleus (SCTID) - SCTID:280164007 + trigeminal nucleus (SCTID) @@ -20809,8 +18479,7 @@ - abducens nucleus (SCTID) - SCTID:280165008 + abducens nucleus (SCTID) @@ -20819,8 +18488,7 @@ - facial nucleus (SCTID) - SCTID:280166009 + facial nucleus (SCTID) @@ -20829,8 +18497,7 @@ - trigeminal sensory nucleus (SCTID) - SCTID:280170001 + trigeminal sensory nucleus (SCTID) @@ -20839,8 +18506,7 @@ - medial vestibular nucleus (SCTID) - SCTID:280174005 + medial vestibular nucleus (SCTID) @@ -20849,8 +18515,7 @@ - inferior vestibular nucleus (SCTID) - SCTID:280175006 + inferior vestibular nucleus (SCTID) @@ -20859,8 +18524,7 @@ - lateral vestibular nucleus (SCTID) - SCTID:280176007 + lateral vestibular nucleus (SCTID) @@ -20869,8 +18533,7 @@ - ventral cochlear nucleus (SCTID) - SCTID:280178008 + ventral cochlear nucleus (SCTID) @@ -20879,8 +18542,7 @@ - dorsal cochlear nucleus (SCTID) - SCTID:280179000 + dorsal cochlear nucleus (SCTID) @@ -20889,8 +18551,7 @@ - nucleus ambiguus (SCTID) - SCTID:280184006 + nucleus ambiguus (SCTID) @@ -20899,8 +18560,7 @@ - trigeminal nerve root (SCTID) - SCTID:280185007 + trigeminal nerve root (SCTID) @@ -20909,8 +18569,7 @@ - facial nerve root (SCTID) - SCTID:280186008 + facial nerve root (SCTID) @@ -20919,8 +18578,7 @@ - accessory nerve root (SCTID) - SCTID:280187004 + accessory nerve root (SCTID) @@ -20929,8 +18587,7 @@ - sensory root of trigeminal nerve (SCTID) - SCTID:280188009 + sensory root of trigeminal nerve (SCTID) @@ -20939,8 +18596,7 @@ - motor root of trigeminal nerve (SCTID) - SCTID:280189001 + motor root of trigeminal nerve (SCTID) @@ -20949,8 +18605,7 @@ - parapharyngeal space (SCTID) - SCTID:280190005 + parapharyngeal space (SCTID) @@ -20959,8 +18614,7 @@ - motor root of facial nerve (SCTID) - SCTID:280191009 + motor root of facial nerve (SCTID) @@ -20969,8 +18623,7 @@ - superior vagus X ganglion (SCTID) - SCTID:280197008 + superior vagus X ganglion (SCTID) @@ -20979,8 +18632,7 @@ - superior branch of oculomotor nerve (SCTID) - SCTID:280205004 + superior branch of oculomotor nerve (SCTID) @@ -20989,8 +18641,7 @@ - inferior branch of oculomotor nerve (SCTID) - SCTID:280206003 + inferior branch of oculomotor nerve (SCTID) @@ -20999,8 +18650,7 @@ - ophthalmic nerve (SCTID) - SCTID:280210000 + ophthalmic nerve (SCTID) @@ -21009,8 +18659,7 @@ - maxillary nerve (SCTID) - SCTID:280211001 + maxillary nerve (SCTID) @@ -21019,8 +18668,7 @@ - mandibular nerve (SCTID) - SCTID:280212008 + mandibular nerve (SCTID) @@ -21029,8 +18677,7 @@ - lacrimal nerve (SCTID) - SCTID:280218007 + lacrimal nerve (SCTID) @@ -21039,8 +18686,7 @@ - frontal nerve (branch of ophthalmic) (SCTID) - SCTID:280219004 + frontal nerve (branch of ophthalmic) (SCTID) @@ -21049,8 +18695,7 @@ - nasociliary nerve (SCTID) - SCTID:280220005 + nasociliary nerve (SCTID) @@ -21059,8 +18704,7 @@ - long ciliary nerve (SCTID) - SCTID:280228003 + long ciliary nerve (SCTID) @@ -21069,8 +18713,7 @@ - superior alveolar nerve (SCTID) - SCTID:280235006 + superior alveolar nerve (SCTID) @@ -21079,8 +18722,7 @@ - palpebral branch of infra-orbital nerve (SCTID) - SCTID:280236007 + palpebral branch of infra-orbital nerve (SCTID) @@ -21089,8 +18731,7 @@ - superior alveolar nerve (SCTID) - SCTID:280239000 + superior alveolar nerve (SCTID) @@ -21099,8 +18740,7 @@ - anterior superior alveolar nerve (SCTID) - SCTID:280241004 + anterior superior alveolar nerve (SCTID) @@ -21109,8 +18749,7 @@ - zygomaticotemporal nerve (SCTID) - SCTID:280243001 + zygomaticotemporal nerve (SCTID) @@ -21119,8 +18758,7 @@ - meningeal branch of mandibular nerve (SCTID) - SCTID:280249002 + meningeal branch of mandibular nerve (SCTID) @@ -21129,8 +18767,7 @@ - buccal nerve (SCTID) - SCTID:280253000 + buccal nerve (SCTID) @@ -21139,8 +18776,7 @@ - masseteric nerve (SCTID) - SCTID:280254006 + masseteric nerve (SCTID) @@ -21149,8 +18785,7 @@ - deep temporal nerve (SCTID) - SCTID:280255007 + deep temporal nerve (SCTID) @@ -21159,8 +18794,7 @@ - lingual nerve (SCTID) - SCTID:280260006 + lingual nerve (SCTID) @@ -21169,8 +18803,7 @@ - inferior alveolar nerve (SCTID) - SCTID:280261005 + inferior alveolar nerve (SCTID) @@ -21179,8 +18812,7 @@ - mylohyoid nerve (SCTID) - SCTID:280269007 + mylohyoid nerve (SCTID) @@ -21189,8 +18821,7 @@ - vidian nerve (SCTID) - SCTID:280273005 + vidian nerve (SCTID) @@ -21199,8 +18830,7 @@ - chorda tympani branch of facial nerve (SCTID) - SCTID:280274004 + chorda tympani branch of facial nerve (SCTID) @@ -21209,8 +18839,7 @@ - posterior auricular nerve (SCTID) - SCTID:280277006 + posterior auricular nerve (SCTID) @@ -21219,8 +18848,7 @@ - cochlear nerve (SCTID) - SCTID:280286001 + cochlear nerve (SCTID) @@ -21229,8 +18857,7 @@ - tympanic nerve (SCTID) - SCTID:280289008 + tympanic nerve (SCTID) @@ -21239,8 +18866,7 @@ - nerve to stylopharyngeus from glossopharyngeal nerve (SCTID) - SCTID:280294008 + nerve to stylopharyngeus from glossopharyngeal nerve (SCTID) @@ -21249,8 +18875,7 @@ - pharyngeal branch of vagus nerve (SCTID) - SCTID:280298006 + pharyngeal branch of vagus nerve (SCTID) @@ -21259,8 +18884,7 @@ - right recurrent laryngeal nerve (SCTID) - SCTID:280299003 + right recurrent laryngeal nerve (SCTID) @@ -21269,8 +18893,7 @@ - left recurrent laryngeal nerve (SCTID) - SCTID:280300006 + left recurrent laryngeal nerve (SCTID) @@ -21279,8 +18902,7 @@ - vagus X nerve trunk (SCTID) - SCTID:280308004 + vagus X nerve trunk (SCTID) @@ -21289,8 +18911,7 @@ - phrenic nerve (SCTID) - SCTID:280344009 + phrenic nerve (SCTID) @@ -21299,8 +18920,7 @@ - nerve to quadratus femoris (SCTID) - SCTID:280351000 + nerve to quadratus femoris (SCTID) @@ -21309,8 +18929,7 @@ - coccygeal nerve plexus (SCTID) - SCTID:280355009 + coccygeal nerve plexus (SCTID) @@ -21319,8 +18938,7 @@ - infra-orbital nerve (SCTID) - SCTID:280360008 + infra-orbital nerve (SCTID) @@ -21329,8 +18947,7 @@ - superior glossopharyngeal IX ganglion (SCTID) - SCTID:280362000 + superior glossopharyngeal IX ganglion (SCTID) @@ -21339,8 +18956,7 @@ - pterygopalatine ganglion (SCTID) - SCTID:280364004 + pterygopalatine ganglion (SCTID) @@ -21349,8 +18965,7 @@ - amniotic cavity (SCTID) - SCTID:280366002 + amniotic cavity (SCTID) @@ -21359,8 +18974,7 @@ - orbital gyrus (SCTID) - SCTID:280372002 + orbital gyrus (SCTID) @@ -21369,8 +18983,7 @@ - falx cerebelli (SCTID) - SCTID:280380009 + falx cerebelli (SCTID) @@ -21379,8 +18992,7 @@ - skin crease (SCTID) - SCTID:280385004 + skin crease (SCTID) @@ -21389,8 +19001,7 @@ - posterior cerebellomedullary cistern (SCTID) - SCTID:280391002 + posterior cerebellomedullary cistern (SCTID) @@ -21399,8 +19010,7 @@ - cervical division of cord spinal central canal (SCTID) - SCTID:280403009 + cervical division of cord spinal central canal (SCTID) @@ -21409,8 +19019,7 @@ - lumbar division of spinal cord central canal (SCTID) - SCTID:280406001 + lumbar division of spinal cord central canal (SCTID) @@ -21419,8 +19028,7 @@ - spinothalamic tract (SCTID) - SCTID:280417000 + spinothalamic tract (SCTID) @@ -21429,8 +19037,7 @@ - periungual skin (SCTID) - SCTID:280418005 + periungual skin (SCTID) @@ -21439,8 +19046,7 @@ - lacrimal drainage system (SCTID) - SCTID:280426002 + lacrimal drainage system (SCTID) @@ -21449,8 +19055,7 @@ - cervical squamo-columnar junction (SCTID) - SCTID:280451001 + cervical squamo-columnar junction (SCTID) @@ -21459,8 +19064,7 @@ - parametrium (SCTID) - SCTID:280455005 + parametrium (SCTID) @@ -21469,8 +19073,7 @@ - hepatic lymph node (SCTID) - SCTID:280480005 + hepatic lymph node (SCTID) @@ -21479,8 +19082,7 @@ - greater splanchnic nerve (SCTID) - SCTID:280503007 + greater splanchnic nerve (SCTID) @@ -21489,8 +19091,7 @@ - lesser splanchnic nerve (SCTID) - SCTID:280505000 + lesser splanchnic nerve (SCTID) @@ -21499,8 +19100,7 @@ - least splanchnic nerve (SCTID) - SCTID:280506004 + least splanchnic nerve (SCTID) @@ -21509,8 +19109,7 @@ - lumbar splanchnic nerve (SCTID) - SCTID:280507008 + lumbar splanchnic nerve (SCTID) @@ -21519,8 +19118,7 @@ - abdominal ganglion (SCTID) - SCTID:280508003 + abdominal ganglion (SCTID) @@ -21529,8 +19127,7 @@ - internal carotid nerve plexus (SCTID) - SCTID:280509006 + internal carotid nerve plexus (SCTID) @@ -21539,8 +19136,7 @@ - cardiac nerve plexus (SCTID) - SCTID:280511002 + cardiac nerve plexus (SCTID) @@ -21549,8 +19145,7 @@ - pulmonary nerve plexus (SCTID) - SCTID:280512009 + pulmonary nerve plexus (SCTID) @@ -21559,8 +19154,7 @@ - renal nerve plexus (SCTID) - SCTID:280526000 + renal nerve plexus (SCTID) @@ -21569,8 +19163,7 @@ - cervical sympathetic nerve trunk (SCTID) - SCTID:280533000 + cervical sympathetic nerve trunk (SCTID) @@ -21579,8 +19172,7 @@ - lumbar sympathetic nerve trunk (SCTID) - SCTID:280534006 + lumbar sympathetic nerve trunk (SCTID) @@ -21589,8 +19181,7 @@ - chamber of eyeball (SCTID) - SCTID:280540004 + chamber of eyeball (SCTID) @@ -21599,8 +19190,7 @@ - orbital cavity (SCTID) - SCTID:280541000 + orbital cavity (SCTID) @@ -21609,8 +19199,7 @@ - orbital fissure (SCTID) - SCTID:280546005 + orbital fissure (SCTID) @@ -21619,8 +19208,7 @@ - supraorbital ridge (SCTID) - SCTID:280550003 + supraorbital ridge (SCTID) @@ -21629,8 +19217,7 @@ - superior orbital fissure (SCTID) - SCTID:280559002 + superior orbital fissure (SCTID) @@ -21639,8 +19226,7 @@ - inferior orbital fissure (SCTID) - SCTID:280560007 + inferior orbital fissure (SCTID) @@ -21649,8 +19235,7 @@ - eyelid gland (SCTID) - SCTID:280574000 + eyelid gland (SCTID) @@ -21659,8 +19244,7 @@ - palpebral fissure (SCTID) - SCTID:280576003 + palpebral fissure (SCTID) @@ -21669,8 +19253,7 @@ - medial palpebral ligament (SCTID) - SCTID:280578002 + medial palpebral ligament (SCTID) @@ -21679,8 +19262,7 @@ - tarsal gland (SCTID) - SCTID:280585003 + tarsal gland (SCTID) @@ -21689,8 +19271,7 @@ - sweat gland of eyelid (SCTID) - SCTID:280586002 + sweat gland of eyelid (SCTID) @@ -21699,8 +19280,7 @@ - aqueous humor of eyeball (SCTID) - SCTID:280587006 + aqueous humor of eyeball (SCTID) @@ -21709,8 +19289,7 @@ - canal of Schlemm (SCTID) - SCTID:280605006 + canal of Schlemm (SCTID) @@ -21719,8 +19298,7 @@ - suprachoroid lamina (SCTID) - SCTID:280607003 + suprachoroid lamina (SCTID) @@ -21729,8 +19307,7 @@ - ora serrata of retina (SCTID) - SCTID:280612002 + ora serrata of retina (SCTID) @@ -21739,8 +19316,7 @@ - perifoveal part of retina (SCTID) - SCTID:280617008 + perifoveal part of retina (SCTID) @@ -21749,8 +19325,7 @@ - orbital lobe of lacrimal gland (SCTID) - SCTID:280621001 + orbital lobe of lacrimal gland (SCTID) @@ -21759,8 +19334,7 @@ - palpebral lobe of lacrimal gland (SCTID) - SCTID:280622008 + palpebral lobe of lacrimal gland (SCTID) @@ -21769,8 +19343,7 @@ - lens cortex (SCTID) - SCTID:280626006 + lens cortex (SCTID) @@ -21779,8 +19352,7 @@ - lens nucleus (SCTID) - SCTID:280628007 + lens nucleus (SCTID) @@ -21789,8 +19361,7 @@ - pole of lens (SCTID) - SCTID:280630009 + pole of lens (SCTID) @@ -21799,8 +19370,7 @@ - nasolacrimal duct (SCTID) - SCTID:280643009 + nasolacrimal duct (SCTID) @@ -21809,8 +19379,7 @@ - umbilical cord (SCTID) - SCTID:280644003 + umbilical cord (SCTID) @@ -21819,8 +19388,7 @@ - uvea (SCTID) - SCTID:280648000 + uvea (SCTID) @@ -21829,8 +19397,7 @@ - Bruch's membrane (SCTID) - SCTID:280652000 + Bruch's membrane (SCTID) @@ -21839,8 +19406,7 @@ - anterior uvea (SCTID) - SCTID:280656002 + anterior uvea (SCTID) @@ -21849,8 +19415,7 @@ - layer of retina (SCTID) - SCTID:280657006 + layer of retina (SCTID) @@ -21859,8 +19424,7 @@ - anterior segment of eyeball (SCTID) - SCTID:280658001 + anterior segment of eyeball (SCTID) @@ -21869,8 +19433,7 @@ - posterior segment of eyeball (SCTID) - SCTID:280659009 + posterior segment of eyeball (SCTID) @@ -21879,8 +19442,7 @@ - pigmented layer of retina (SCTID) - SCTID:280662007 + pigmented layer of retina (SCTID) @@ -21889,8 +19451,7 @@ - palpebral conjunctiva (SCTID) - SCTID:280666005 + palpebral conjunctiva (SCTID) @@ -21899,8 +19460,7 @@ - limiting membrane of retina (SCTID) - SCTID:280667001 + limiting membrane of retina (SCTID) @@ -21909,8 +19469,7 @@ - ganglionic layer of retina (SCTID) - SCTID:280670002 + ganglionic layer of retina (SCTID) @@ -21919,8 +19478,7 @@ - nerve fiber layer of retina (SCTID) - SCTID:280671003 + nerve fiber layer of retina (SCTID) @@ -21929,8 +19487,7 @@ - outer limiting layer of retina (SCTID) - SCTID:280676008 + outer limiting layer of retina (SCTID) @@ -21939,8 +19496,7 @@ - inner limiting layer of retina (SCTID) - SCTID:280677004 + inner limiting layer of retina (SCTID) @@ -21949,8 +19505,7 @@ - outer nuclear layer of retina (SCTID) - SCTID:280678009 + outer nuclear layer of retina (SCTID) @@ -21959,8 +19514,7 @@ - conjunctival papilla (SCTID) - SCTID:280681004 + conjunctival papilla (SCTID) @@ -21969,8 +19523,7 @@ - inner plexiform layer of retina (SCTID) - SCTID:280682006 + inner plexiform layer of retina (SCTID) @@ -21979,8 +19532,7 @@ - outer plexiform layer of retina (SCTID) - SCTID:280684007 + outer plexiform layer of retina (SCTID) @@ -21989,8 +19541,7 @@ - plica semilunaris of conjunctiva (SCTID) - SCTID:280686009 + plica semilunaris of conjunctiva (SCTID) @@ -21999,8 +19550,7 @@ - retina blood vessel (SCTID) - SCTID:280692003 + retina blood vessel (SCTID) @@ -22009,8 +19559,7 @@ - eye trabecular meshwork (SCTID) - SCTID:280694002 + eye trabecular meshwork (SCTID) @@ -22019,8 +19568,7 @@ - vitelline duct (SCTID) - SCTID:280701007 + vitelline duct (SCTID) @@ -22029,8 +19577,7 @@ - metatarsus region (SCTID) - SCTID:280711000 + metatarsus region (SCTID) @@ -22039,8 +19586,7 @@ - placenta blood vessel (SCTID) - SCTID:280716005 + placenta blood vessel (SCTID) @@ -22049,8 +19595,7 @@ - pancreaticosplenic lymph node (SCTID) - SCTID:280723006 + pancreaticosplenic lymph node (SCTID) @@ -22059,8 +19604,7 @@ - transverse process of cervical vertebra (SCTID) - SCTID:280730000 + transverse process of cervical vertebra (SCTID) @@ -22069,8 +19613,7 @@ - transverse process of lumbar vertebra (SCTID) - SCTID:280733003 + transverse process of lumbar vertebra (SCTID) @@ -22079,8 +19622,7 @@ - vertebral foramen (SCTID) - SCTID:280734009 + vertebral foramen (SCTID) @@ -22089,8 +19631,7 @@ - transverse foramen (SCTID) - SCTID:280735005 + transverse foramen (SCTID) @@ -22099,8 +19640,7 @@ - hair follicle (SCTID) - SCTID:280830006 + hair follicle (SCTID) @@ -22109,8 +19649,7 @@ - cervical vertebral foramen (SCTID) - SCTID:280833008 + cervical vertebral foramen (SCTID) @@ -22119,8 +19658,7 @@ - thoracic vertebral foramen (SCTID) - SCTID:280834002 + thoracic vertebral foramen (SCTID) @@ -22129,8 +19667,7 @@ - lumbar vertebral foramen (SCTID) - SCTID:280835001 + lumbar vertebral foramen (SCTID) @@ -22139,8 +19676,7 @@ - cervical gland (SCTID) - SCTID:280836000 + cervical gland (SCTID) @@ -22149,8 +19685,7 @@ - pars plicata of ciliary body (SCTID) - SCTID:280859006 + pars plicata of ciliary body (SCTID) @@ -22159,8 +19694,7 @@ - ciliary processes (SCTID) - SCTID:280860001 + ciliary processes (SCTID) @@ -22169,8 +19703,7 @@ - ciliary muscle (SCTID) - SCTID:280862009 + ciliary muscle (SCTID) @@ -22179,8 +19712,7 @@ - ciliary stroma (SCTID) - SCTID:280868008 + ciliary stroma (SCTID) @@ -22189,8 +19721,7 @@ - ciliary epithelium (SCTID) - SCTID:280870004 + ciliary epithelium (SCTID) @@ -22199,8 +19730,7 @@ - iris stroma (SCTID) - SCTID:280882008 + iris stroma (SCTID) @@ -22209,8 +19739,7 @@ - muscle of iris (SCTID) - SCTID:280888007 + muscle of iris (SCTID) @@ -22219,8 +19748,7 @@ - sphincter pupillae (SCTID) - SCTID:280889004 + sphincter pupillae (SCTID) @@ -22229,8 +19757,7 @@ - dilatator pupillae (SCTID) - SCTID:280890008 + dilatator pupillae (SCTID) @@ -22239,8 +19766,7 @@ - capillary layer of choroid (SCTID) - SCTID:280899009 + capillary layer of choroid (SCTID) @@ -22249,8 +19775,7 @@ - strand of axillary hair (SCTID) - SCTID:280911007 + strand of axillary hair (SCTID) @@ -22259,8 +19784,7 @@ - central retinal vein (SCTID) - SCTID:280913005 + central retinal vein (SCTID) @@ -22269,8 +19793,7 @@ - optic tract (SCTID) - SCTID:280952003 + optic tract (SCTID) @@ -22279,8 +19802,7 @@ - optic radiation (SCTID) - SCTID:280953008 + optic radiation (SCTID) @@ -22289,8 +19811,7 @@ - conjunctival space (SCTID) - SCTID:280957009 + conjunctival space (SCTID) @@ -22299,8 +19820,7 @@ - metacarpophalangeal joint (SCTID) - SCTID:280995004 + metacarpophalangeal joint (SCTID) @@ -22309,8 +19829,7 @@ - sublingual duct (SCTID) - SCTID:281000009 + sublingual duct (SCTID) @@ -22319,8 +19838,7 @@ - inferior mesenteric vein (SCTID) - SCTID:281055007 + inferior mesenteric vein (SCTID) @@ -22329,8 +19847,7 @@ - internal thoracic vein (SCTID) - SCTID:281056008 + internal thoracic vein (SCTID) @@ -22339,8 +19856,7 @@ - intercostal vein (SCTID) - SCTID:281057004 + intercostal vein (SCTID) @@ -22349,8 +19865,7 @@ - cystic vein (SCTID) - SCTID:281059001 + cystic vein (SCTID) @@ -22359,8 +19874,7 @@ - gastric vein (SCTID) - SCTID:281060006 + gastric vein (SCTID) @@ -22369,8 +19883,7 @@ - left gastric vein (SCTID) - SCTID:281061005 + left gastric vein (SCTID) @@ -22379,8 +19892,7 @@ - right gastric vein (SCTID) - SCTID:281062003 + right gastric vein (SCTID) @@ -22389,8 +19901,7 @@ - popliteal vein (SCTID) - SCTID:281065001 + popliteal vein (SCTID) @@ -22399,8 +19910,7 @@ - anterior tibial vein (SCTID) - SCTID:281066000 + anterior tibial vein (SCTID) @@ -22409,8 +19919,7 @@ - posterior tibial vein (SCTID) - SCTID:281067009 + posterior tibial vein (SCTID) @@ -22419,8 +19928,7 @@ - gland of Zeis (SCTID) - SCTID:281070008 + gland of Zeis (SCTID) @@ -22429,8 +19937,7 @@ - anterior limiting lamina of cornea (SCTID) - SCTID:281075003 + anterior limiting lamina of cornea (SCTID) @@ -22439,8 +19946,7 @@ - Descemet's membrane (SCTID) - SCTID:281076002 + Descemet's membrane (SCTID) @@ -22449,8 +19955,7 @@ - mesenteric artery (SCTID) - SCTID:281084003 + mesenteric artery (SCTID) @@ -22459,8 +19964,7 @@ - scleral lamina cribrosa (SCTID) - SCTID:281086001 + scleral lamina cribrosa (SCTID) @@ -22469,8 +19973,7 @@ - intercostal artery (SCTID) - SCTID:281134007 + intercostal artery (SCTID) @@ -22479,8 +19982,7 @@ - carotid sinus (SCTID) - SCTID:281137000 + carotid sinus (SCTID) @@ -22489,8 +19991,7 @@ - olfactory pathway (SCTID) - SCTID:281148007 + olfactory pathway (SCTID) @@ -22499,8 +20000,7 @@ - pancreaticoduodenal lymph node (SCTID) - SCTID:281152007 + pancreaticoduodenal lymph node (SCTID) @@ -22509,8 +20009,7 @@ - transverse foramen of atlas (SCTID) - SCTID:281220001 + transverse foramen of atlas (SCTID) @@ -22519,8 +20018,7 @@ - transverse foramen of axis (SCTID) - SCTID:281221002 + transverse foramen of axis (SCTID) @@ -22529,8 +20027,7 @@ - cervical vertebra 1 anterior tubercle (SCTID) - SCTID:281224005 + cervical vertebra 1 anterior tubercle (SCTID) @@ -22539,8 +20036,7 @@ - vertebral foramen of atlas (SCTID) - SCTID:281228008 + vertebral foramen of atlas (SCTID) @@ -22549,8 +20045,7 @@ - nerve trunk (SCTID) - SCTID:281248001 + nerve trunk (SCTID) @@ -22559,8 +20054,7 @@ - lumbar lymph node (SCTID) - SCTID:281412000 + lumbar lymph node (SCTID) @@ -22569,8 +20063,7 @@ - abdominal aorta artery (SCTID) - SCTID:281470000 + abdominal aorta artery (SCTID) @@ -22579,8 +20072,7 @@ - thoracic vein (SCTID) - SCTID:281472008 + thoracic vein (SCTID) @@ -22589,8 +20081,7 @@ - vein of abdomen (SCTID) - SCTID:281473003 + vein of abdomen (SCTID) @@ -22599,8 +20090,7 @@ - iliac vein (SCTID) - SCTID:281481002 + iliac vein (SCTID) @@ -22609,8 +20099,7 @@ - body wall (SCTID) - SCTID:281483004 + body wall (SCTID) @@ -22619,8 +20108,7 @@ - nasal skeleton (SCTID) - SCTID:281486007 + nasal skeleton (SCTID) @@ -22629,8 +20117,7 @@ - epithalamus (SCTID) - SCTID:281487003 + epithalamus (SCTID) @@ -22639,8 +20126,7 @@ - lower respiratory tract (SCTID) - SCTID:281488008 + lower respiratory tract (SCTID) @@ -22649,8 +20135,7 @@ - conducting system of heart (SCTID) - SCTID:281489000 + conducting system of heart (SCTID) @@ -22659,8 +20144,7 @@ - hypopharynx (SCTID) - SCTID:281490009 + hypopharynx (SCTID) @@ -22669,8 +20153,7 @@ - subglottis (SCTID) - SCTID:281511009 + subglottis (SCTID) @@ -22679,8 +20162,7 @@ - putamen (SCTID) - SCTID:281512002 + putamen (SCTID) @@ -22689,8 +20171,7 @@ - colic lymph node (SCTID) - SCTID:281593008 + colic lymph node (SCTID) @@ -22699,8 +20180,7 @@ - right adrenal gland (SCTID) - SCTID:281625001 + right adrenal gland (SCTID) @@ -22709,8 +20189,7 @@ - left adrenal gland (SCTID) - SCTID:281626000 + left adrenal gland (SCTID) @@ -22719,8 +20198,7 @@ - skin of upper lip (SCTID) - SCTID:281629007 + skin of upper lip (SCTID) @@ -22729,8 +20207,7 @@ - skin of lower lip (SCTID) - SCTID:281630002 + skin of lower lip (SCTID) @@ -22739,8 +20216,7 @@ - paraganglion (generic) (SCTID) - SCTID:281695005 + paraganglion (generic) (SCTID) @@ -22749,8 +20225,7 @@ - trunk region of vertebral column (SCTID) - SCTID:281699004 + trunk region of vertebral column (SCTID) @@ -22759,8 +20234,7 @@ - skin of thorax (SCTID) - SCTID:281723000 + skin of thorax (SCTID) @@ -22769,8 +20243,7 @@ - visual system (SCTID) - SCTID:281831001 + visual system (SCTID) @@ -22779,8 +20252,7 @@ - epidural space (SCTID) - SCTID:281866004 + epidural space (SCTID) @@ -22789,8 +20261,7 @@ - pelvic cavity (SCTID) - SCTID:281903009 + pelvic cavity (SCTID) @@ -22799,8 +20270,7 @@ - collecting duct of renal tubule (SCTID) - SCTID:28202009 + collecting duct of renal tubule (SCTID) @@ -22809,8 +20279,7 @@ - common penile artery (SCTID) - SCTID:282044005 + common penile artery (SCTID) @@ -22819,8 +20288,7 @@ - infrapatellar fat pad (SCTID) - SCTID:282128003 + infrapatellar fat pad (SCTID) @@ -22829,8 +20297,7 @@ - costochondral joint (SCTID) - SCTID:282413008 + costochondral joint (SCTID) @@ -22839,8 +20306,7 @@ - lacteal (SCTID) - SCTID:282414002 + lacteal (SCTID) @@ -22849,8 +20315,7 @@ - disk of temporomandibular joint (SCTID) - SCTID:282433007 + disk of temporomandibular joint (SCTID) @@ -22859,8 +20324,7 @@ - splenic arteriole (SCTID) - SCTID:282511007 + splenic arteriole (SCTID) @@ -22869,8 +20333,7 @@ - cribriform plate (SCTID) - SCTID:282814006 + cribriform plate (SCTID) @@ -22879,8 +20342,7 @@ - capitulum of humerus (SCTID) - SCTID:282816008 + capitulum of humerus (SCTID) @@ -22889,8 +20351,7 @@ - trochlea of humerus (SCTID) - SCTID:282817004 + trochlea of humerus (SCTID) @@ -22899,8 +20360,7 @@ - right common iliac artery (SCTID) - SCTID:283392005 + right common iliac artery (SCTID) @@ -22909,8 +20369,7 @@ - left common iliac artery (SCTID) - SCTID:283493001 + left common iliac artery (SCTID) @@ -22919,8 +20378,7 @@ - manual digit (SCTID) - SCTID:283992002 + manual digit (SCTID) @@ -22929,8 +20387,7 @@ - paraumbilical vein (SCTID) - SCTID:286094009 + paraumbilical vein (SCTID) @@ -22939,8 +20396,7 @@ - neck of tooth (SCTID) - SCTID:28638008 + neck of tooth (SCTID) @@ -22949,8 +20405,7 @@ - inferior phrenic vein (SCTID) - SCTID:286500002 + inferior phrenic vein (SCTID) @@ -22959,8 +20414,7 @@ - superior epigastric vein (SCTID) - SCTID:286596001 + superior epigastric vein (SCTID) @@ -22969,8 +20423,7 @@ - lower back skin (SCTID) - SCTID:286601005 + lower back skin (SCTID) @@ -22979,8 +20432,7 @@ - iliolumbar vein (SCTID) - SCTID:286793006 + iliolumbar vein (SCTID) @@ -22989,8 +20441,7 @@ - inferior epigastric vein (SCTID) - SCTID:286872000 + inferior epigastric vein (SCTID) @@ -22999,8 +20450,7 @@ - superficial epigastric vein (SCTID) - SCTID:286971006 + superficial epigastric vein (SCTID) @@ -23009,8 +20459,7 @@ - coccygeal nerve (SCTID) - SCTID:287477006 + coccygeal nerve (SCTID) @@ -23019,8 +20468,7 @@ - tooth socket (SCTID) - SCTID:288323008 + tooth socket (SCTID) @@ -23029,8 +20477,7 @@ - acetabular fossa (SCTID) - SCTID:289666003 + acetabular fossa (SCTID) @@ -23039,8 +20486,7 @@ - acetabular notch (SCTID) - SCTID:289767000 + acetabular notch (SCTID) @@ -23049,8 +20495,7 @@ - phalanx (SCTID) - SCTID:290029003 + phalanx (SCTID) @@ -23059,8 +20504,7 @@ - ileocolic lymph node (SCTID) - SCTID:29180003 + ileocolic lymph node (SCTID) @@ -23069,8 +20513,7 @@ - body of ilium (SCTID) - SCTID:292524005 + body of ilium (SCTID) @@ -23079,8 +20522,7 @@ - superior ischial ramus (SCTID) - SCTID:292625002 + superior ischial ramus (SCTID) @@ -23089,8 +20531,7 @@ - greater sciatic notch (SCTID) - SCTID:292728005 + greater sciatic notch (SCTID) @@ -23099,8 +20540,7 @@ - lesser sciatic notch (SCTID) - SCTID:292830001 + lesser sciatic notch (SCTID) @@ -23109,8 +20549,7 @@ - lumen of nutrient foramen (SCTID) - SCTID:29288001 + lumen of nutrient foramen (SCTID) @@ -23119,8 +20558,7 @@ - penile bulb artery (SCTID) - SCTID:293338009 + penile bulb artery (SCTID) @@ -23129,8 +20567,7 @@ - vestibular bulb artery (SCTID) - SCTID:293541004 + vestibular bulb artery (SCTID) @@ -23139,8 +20576,7 @@ - subdivision of conjunctiva (SCTID) - SCTID:29445007 + subdivision of conjunctiva (SCTID) @@ -23149,8 +20585,7 @@ - uterine venous plexus (SCTID) - SCTID:294553007 + uterine venous plexus (SCTID) @@ -23159,8 +20594,7 @@ - vaginal venous plexus (SCTID) - SCTID:294653003 + vaginal venous plexus (SCTID) @@ -23169,8 +20603,7 @@ - embryo stage (SCTID) - SCTID:296280003 + embryo stage (SCTID) @@ -23179,8 +20612,7 @@ - extraembryonic coelomic cavity (SCTID) - SCTID:296586008 + extraembryonic coelomic cavity (SCTID) @@ -23189,8 +20621,7 @@ - renal parenchyma (SCTID) - SCTID:29704000 + renal parenchyma (SCTID) @@ -23199,8 +20630,7 @@ - vasculature of spleen (SCTID) - SCTID:297287005 + vasculature of spleen (SCTID) @@ -23209,8 +20639,7 @@ - lamina propria (SCTID) - SCTID:298225002 + lamina propria (SCTID) @@ -23219,8 +20648,7 @@ - muscle belly (SCTID) - SCTID:29823001 + muscle belly (SCTID) @@ -23229,8 +20657,7 @@ - proctodeum portion of cloaca (SCTID) - SCTID:298233001 + proctodeum portion of cloaca (SCTID) @@ -23239,8 +20666,7 @@ - renal efferent arteriole (SCTID) - SCTID:29926005 + renal efferent arteriole (SCTID) @@ -23249,8 +20675,7 @@ - mucosa of deferent duct (SCTID) - SCTID:299626000 + mucosa of deferent duct (SCTID) @@ -23259,8 +20684,7 @@ - muscular coat of vas deferens (SCTID) - SCTID:299705008 + muscular coat of vas deferens (SCTID) @@ -23269,8 +20693,7 @@ - proximal phalanx (SCTID) - SCTID:299708005 + proximal phalanx (SCTID) @@ -23279,8 +20702,7 @@ - middle phalanx (SCTID) - SCTID:299710007 + middle phalanx (SCTID) @@ -23289,8 +20711,7 @@ - distal phalanx (SCTID) - SCTID:299711006 + distal phalanx (SCTID) @@ -23299,8 +20720,7 @@ - maxillary vein (SCTID) - SCTID:29972009 + maxillary vein (SCTID) @@ -23309,8 +20729,7 @@ - adventitia of ductus deferens (SCTID) - SCTID:299803005 + adventitia of ductus deferens (SCTID) @@ -23319,8 +20738,7 @@ - gubernaculum testis (SCTID) - SCTID:299983007 + gubernaculum testis (SCTID) @@ -23329,8 +20747,7 @@ - pedal digit nerve (SCTID) - SCTID:300056004 + pedal digit nerve (SCTID) @@ -23339,8 +20756,7 @@ - gubernacular cord (SCTID) - SCTID:300350000 + gubernacular cord (SCTID) @@ -23349,8 +20765,7 @@ - lunule of nail (SCTID) - SCTID:300538005 + lunule of nail (SCTID) @@ -23359,8 +20774,7 @@ - root of nail (SCTID) - SCTID:300732009 + root of nail (SCTID) @@ -23369,8 +20783,7 @@ - postzygapophysis (SCTID) - SCTID:30079000 + postzygapophysis (SCTID) @@ -23379,8 +20792,7 @@ - white fibrocartilage (SCTID) - SCTID:3008003 + white fibrocartilage (SCTID) @@ -23389,8 +20801,7 @@ - hyponychium (SCTID) - SCTID:300918002 + hyponychium (SCTID) @@ -23399,8 +20810,7 @@ - urothelium (SCTID) - SCTID:30117005 + urothelium (SCTID) @@ -23409,8 +20819,7 @@ - adventitia (SCTID) - SCTID:30180000 + adventitia (SCTID) @@ -23419,8 +20828,7 @@ - anterior pole of lens (SCTID) - SCTID:302143002 + anterior pole of lens (SCTID) @@ -23429,8 +20837,7 @@ - posterior pole of lens (SCTID) - SCTID:302144008 + posterior pole of lens (SCTID) @@ -23439,8 +20846,7 @@ - calcareous tooth (SCTID) - SCTID:302214001 + calcareous tooth (SCTID) @@ -23449,8 +20855,7 @@ - lumbar nerve plexus (SCTID) - SCTID:302506006 + lumbar nerve plexus (SCTID) @@ -23459,8 +20864,7 @@ - colon (SCTID) - SCTID:302508007 + colon (SCTID) @@ -23469,8 +20873,7 @@ - heart (SCTID) - SCTID:302509004 + heart (SCTID) @@ -23479,8 +20882,7 @@ - thoracic aorta (SCTID) - SCTID:302510009 + thoracic aorta (SCTID) @@ -23489,8 +20891,7 @@ - ureter (SCTID) - SCTID:302511008 + ureter (SCTID) @@ -23499,8 +20900,7 @@ - urinary bladder (SCTID) - SCTID:302512001 + urinary bladder (SCTID) @@ -23509,8 +20909,7 @@ - urethra (SCTID) - SCTID:302513006 + urethra (SCTID) @@ -23519,8 +20918,7 @@ - pronator teres (SCTID) - SCTID:302514000 + pronator teres (SCTID) @@ -23529,8 +20927,7 @@ - scapula (SCTID) - SCTID:302517007 + scapula (SCTID) @@ -23539,8 +20936,7 @@ - diaphysis of radius (SCTID) - SCTID:302518002 + diaphysis of radius (SCTID) @@ -23549,8 +20945,7 @@ - diaphysis of ulna (SCTID) - SCTID:302520004 + diaphysis of ulna (SCTID) @@ -23559,8 +20954,7 @@ - distal epiphysis of ulna (SCTID) - SCTID:302521000 + distal epiphysis of ulna (SCTID) @@ -23569,8 +20963,7 @@ - sternum (SCTID) - SCTID:302522007 + sternum (SCTID) @@ -23579,8 +20972,7 @@ - rib (SCTID) - SCTID:302523002 + rib (SCTID) @@ -23589,8 +20981,7 @@ - diaphysis of tibia (SCTID) - SCTID:302525009 + diaphysis of tibia (SCTID) @@ -23599,8 +20990,7 @@ - proximal epiphysis of tibia (SCTID) - SCTID:302526005 + proximal epiphysis of tibia (SCTID) @@ -23609,8 +20999,7 @@ - distal epiphysis of tibia (SCTID) - SCTID:302527001 + distal epiphysis of tibia (SCTID) @@ -23619,8 +21008,7 @@ - diaphysis of fibula (SCTID) - SCTID:302528006 + diaphysis of fibula (SCTID) @@ -23629,8 +21017,7 @@ - fibula (SCTID) - SCTID:302529003 + fibula (SCTID) @@ -23639,8 +21026,7 @@ - metatarsal bone (SCTID) - SCTID:302532000 + metatarsal bone (SCTID) @@ -23649,8 +21035,7 @@ - phalanx of pes (SCTID) - SCTID:302533005 + phalanx of pes (SCTID) @@ -23659,8 +21044,7 @@ - metatarsophalangeal joint (SCTID) - SCTID:302535003 + metatarsophalangeal joint (SCTID) @@ -23669,8 +21053,7 @@ - skeletal joint (SCTID) - SCTID:302536002 + skeletal joint (SCTID) @@ -23679,8 +21062,7 @@ - forelimb stylopod (SCTID) - SCTID:302538001 + forelimb stylopod (SCTID) @@ -23689,8 +21071,7 @@ - manus (SCTID) - SCTID:302539009 + manus (SCTID) @@ -23699,8 +21080,7 @@ - manual digit 1 (SCTID) - SCTID:302540006 + manual digit 1 (SCTID) @@ -23709,8 +21089,7 @@ - hip (SCTID) - SCTID:302543008 + hip (SCTID) @@ -23719,8 +21098,7 @@ - hindlimb stylopod (SCTID) - SCTID:302544002 + hindlimb stylopod (SCTID) @@ -23729,8 +21107,7 @@ - pes (SCTID) - SCTID:302545001 + pes (SCTID) @@ -23739,8 +21116,7 @@ - pedal digit 1 (SCTID) - SCTID:302546000 + pedal digit 1 (SCTID) @@ -23749,8 +21125,7 @@ - head (SCTID) - SCTID:302548004 + head (SCTID) @@ -23759,8 +21134,7 @@ - face (SCTID) - SCTID:302549007 + face (SCTID) @@ -23769,8 +21143,7 @@ - neck (SCTID) - SCTID:302550007 + neck (SCTID) @@ -23779,8 +21152,7 @@ - thoracic segment of trunk (SCTID) - SCTID:302551006 + thoracic segment of trunk (SCTID) @@ -23789,8 +21161,7 @@ - abdomen (SCTID) - SCTID:302553009 + abdomen (SCTID) @@ -23799,8 +21170,7 @@ - accessory saphenous vein (SCTID) - SCTID:302677006 + accessory saphenous vein (SCTID) @@ -23809,8 +21179,7 @@ - sural artery (SCTID) - SCTID:302693002 + sural artery (SCTID) @@ -23819,8 +21188,7 @@ - sesamoid bone of gastrocnemius (SCTID) - SCTID:302749009 + sesamoid bone of gastrocnemius (SCTID) @@ -23829,8 +21197,7 @@ - major salivary gland (SCTID) - SCTID:303049006 + major salivary gland (SCTID) @@ -23839,8 +21206,7 @@ - rectal venous plexus (SCTID) - SCTID:303051005 + rectal venous plexus (SCTID) @@ -23849,8 +21215,7 @@ - prostatic venous plexus (SCTID) - SCTID:303052003 + prostatic venous plexus (SCTID) @@ -23859,8 +21224,7 @@ - humeroulnar joint (SCTID) - SCTID:303064006 + humeroulnar joint (SCTID) @@ -23869,8 +21233,7 @@ - intermetacarpal joint (SCTID) - SCTID:303065007 + intermetacarpal joint (SCTID) @@ -23879,8 +21242,7 @@ - synovial joint of pectoral girdle (SCTID) - SCTID:303080001 + synovial joint of pectoral girdle (SCTID) @@ -23889,8 +21251,7 @@ - interchondral joint (SCTID) - SCTID:303101003 + interchondral joint (SCTID) @@ -23899,8 +21260,7 @@ - perineal nerve (SCTID) - SCTID:303236009 + perineal nerve (SCTID) @@ -23909,8 +21269,7 @@ - interphalangeal joint of manus (SCTID) - SCTID:303280009 + interphalangeal joint of manus (SCTID) @@ -23919,8 +21278,7 @@ - choroid tapetum lucidum (SCTID) - SCTID:3034006 + choroid tapetum lucidum (SCTID) @@ -23929,8 +21287,7 @@ - capsule of temporomandibular joint (SCTID) - SCTID:303404000 + capsule of temporomandibular joint (SCTID) @@ -23939,8 +21296,7 @@ - inferior thyroid artery (SCTID) - SCTID:303419004 + inferior thyroid artery (SCTID) @@ -23949,8 +21305,7 @@ - thyroid vein (SCTID) - SCTID:303420005 + thyroid vein (SCTID) @@ -23959,8 +21314,7 @@ - superior thyroid vein (SCTID) - SCTID:303421009 + superior thyroid vein (SCTID) @@ -23969,8 +21323,7 @@ - middle thyroid vein (SCTID) - SCTID:303422002 + middle thyroid vein (SCTID) @@ -23979,8 +21332,7 @@ - inferior thyroid vein (SCTID) - SCTID:303423007 + inferior thyroid vein (SCTID) @@ -23989,8 +21341,7 @@ - superior suprarenal artery (SCTID) - SCTID:303424001 + superior suprarenal artery (SCTID) @@ -23999,8 +21350,7 @@ - middle suprarenal artery (SCTID) - SCTID:303425000 + middle suprarenal artery (SCTID) @@ -24009,8 +21359,7 @@ - inferior suprarenal artery (SCTID) - SCTID:303426004 + inferior suprarenal artery (SCTID) @@ -24019,8 +21368,7 @@ - superior hypophysial artery (SCTID) - SCTID:303427008 + superior hypophysial artery (SCTID) @@ -24029,8 +21377,7 @@ - inferior hypophysial artery (SCTID) - SCTID:303428003 + inferior hypophysial artery (SCTID) @@ -24039,8 +21386,7 @@ - thymic vein (SCTID) - SCTID:303432009 + thymic vein (SCTID) @@ -24049,8 +21395,7 @@ - hindbrain (SCTID) - SCTID:303456008 + hindbrain (SCTID) @@ -24059,8 +21404,7 @@ - internal female genitalia (SCTID) - SCTID:303518005 + internal female genitalia (SCTID) @@ -24069,8 +21413,7 @@ - upper lobe of lung (SCTID) - SCTID:303548008 + upper lobe of lung (SCTID) @@ -24079,8 +21422,7 @@ - lower lobe of lung (SCTID) - SCTID:303549000 + lower lobe of lung (SCTID) @@ -24089,8 +21431,7 @@ - male urethral gland (SCTID) - SCTID:303562001 + male urethral gland (SCTID) @@ -24099,8 +21440,7 @@ - oral frenulum (SCTID) - SCTID:303771008 + oral frenulum (SCTID) @@ -24109,8 +21449,7 @@ - vertebral vein (SCTID) - SCTID:303961000 + vertebral vein (SCTID) @@ -24119,8 +21458,7 @@ - dorsal part of neck (SCTID) - SCTID:304036007 + dorsal part of neck (SCTID) @@ -24129,8 +21467,7 @@ - mesenteric vein (SCTID) - SCTID:304045008 + mesenteric vein (SCTID) @@ -24139,8 +21476,7 @@ - right pulmonary vein (SCTID) - SCTID:304056008 + right pulmonary vein (SCTID) @@ -24149,8 +21485,7 @@ - left pulmonary vein (SCTID) - SCTID:304057004 + left pulmonary vein (SCTID) @@ -24159,8 +21494,7 @@ - great vessel of heart (SCTID) - SCTID:304066000 + great vessel of heart (SCTID) @@ -24169,8 +21503,7 @@ - limb bone (SCTID) - SCTID:304149004 + limb bone (SCTID) @@ -24179,8 +21512,7 @@ - mastoid process of temporal bone (SCTID) - SCTID:304336002 + mastoid process of temporal bone (SCTID) @@ -24189,8 +21521,7 @@ - intrahepatic branch of portal vein (SCTID) - SCTID:304373004 + intrahepatic branch of portal vein (SCTID) @@ -24199,8 +21530,7 @@ - serous cavity (SCTID) - SCTID:304404008 + serous cavity (SCTID) @@ -24209,8 +21539,7 @@ - permanent molar tooth 1 (SCTID) - SCTID:304565009 + permanent molar tooth 1 (SCTID) @@ -24219,8 +21548,7 @@ - secondary incisor tooth (SCTID) - SCTID:304571003 + secondary incisor tooth (SCTID) @@ -24229,8 +21557,7 @@ - premolar tooth (SCTID) - SCTID:304572005 + premolar tooth (SCTID) @@ -24239,8 +21566,7 @@ - hindlimb joint (SCTID) - SCTID:304573000 + hindlimb joint (SCTID) @@ -24249,8 +21575,7 @@ - metaphysis (SCTID) - SCTID:304581004 + metaphysis (SCTID) @@ -24259,8 +21584,7 @@ - proximal epiphysis of ulna (SCTID) - SCTID:304590006 + proximal epiphysis of ulna (SCTID) @@ -24269,8 +21593,7 @@ - gonad (SCTID) - SCTID:304623008 + gonad (SCTID) @@ -24279,8 +21602,7 @@ - gingiva of upper jaw (SCTID) - SCTID:304703001 + gingiva of upper jaw (SCTID) @@ -24289,8 +21611,7 @@ - gingiva of lower jaw (SCTID) - SCTID:304704007 + gingiva of lower jaw (SCTID) @@ -24299,8 +21620,7 @@ - ductus venosus (SCTID) - SCTID:304829005 + ductus venosus (SCTID) @@ -24309,8 +21629,7 @@ - upper back skin (SCTID) - SCTID:304890003 + upper back skin (SCTID) @@ -24319,8 +21638,7 @@ - bone of hip region (SCTID) - SCTID:304907005 + bone of hip region (SCTID) @@ -24329,8 +21647,7 @@ - condyle of femur (SCTID) - SCTID:304912006 + condyle of femur (SCTID) @@ -24339,8 +21656,7 @@ - pontine nuclear group (SCTID) - SCTID:304942009 + pontine nuclear group (SCTID) @@ -24349,8 +21665,7 @@ - nucleus of medulla oblongata (SCTID) - SCTID:304943004 + nucleus of medulla oblongata (SCTID) @@ -24359,8 +21674,7 @@ - internal ear (SCTID) - SCTID:304982002 + internal ear (SCTID) @@ -24369,8 +21683,7 @@ - articular cartilage of joint (SCTID) - SCTID:305026006 + articular cartilage of joint (SCTID) @@ -24379,8 +21692,7 @@ - upper back muscle (SCTID) - SCTID:305071003 + upper back muscle (SCTID) @@ -24389,8 +21701,7 @@ - atrium auricular region (SCTID) - SCTID:305223006 + atrium auricular region (SCTID) @@ -24399,8 +21710,7 @@ - prezygapophysis of lumbar vertebra (SCTID) - SCTID:305677003 + prezygapophysis of lumbar vertebra (SCTID) @@ -24409,8 +21719,7 @@ - postzygapophysis of lumbar vertebra (SCTID) - SCTID:306283004 + postzygapophysis of lumbar vertebra (SCTID) @@ -24419,8 +21728,7 @@ - uncinate process of ethmoid (SCTID) - SCTID:306373001 + uncinate process of ethmoid (SCTID) @@ -24429,8 +21737,7 @@ - abdominal fascia (SCTID) - SCTID:306708007 + abdominal fascia (SCTID) @@ -24439,8 +21746,7 @@ - proximal carpal bone (SCTID) - SCTID:306715004 + proximal carpal bone (SCTID) @@ -24449,8 +21755,7 @@ - distal carpal bone (SCTID) - SCTID:306716003 + distal carpal bone (SCTID) @@ -24459,8 +21764,7 @@ - dorsal nerve of penis (SCTID) - SCTID:306800005 + dorsal nerve of penis (SCTID) @@ -24469,8 +21773,7 @@ - laryngeal nerve (SCTID) - SCTID:307013006 + laryngeal nerve (SCTID) @@ -24479,8 +21782,7 @@ - flocculus (SCTID) - SCTID:30711003 + flocculus (SCTID) @@ -24489,8 +21791,7 @@ - renal medulla (SCTID) - SCTID:30737000 + renal medulla (SCTID) @@ -24499,8 +21800,7 @@ - bronchial mucosa (SCTID) - SCTID:30802009 + bronchial mucosa (SCTID) @@ -24509,8 +21809,7 @@ - cusp of cardiac valve (SCTID) - SCTID:30822008 + cusp of cardiac valve (SCTID) @@ -24519,20 +21818,7 @@ - superficial middle cerebral vein (SCTID) - SCTID:308729005 - - - - - - - - - - pharyngeal arch (SCTID) - post-hyoid pharyngeal arch (SCTID) - SCTID:308766004 + superficial middle cerebral vein (SCTID) @@ -24541,8 +21827,7 @@ - pharyngeal arch 1 (SCTID) - SCTID:308767008 + pharyngeal arch 1 (SCTID) @@ -24551,8 +21836,7 @@ - pharyngeal arch 2 (SCTID) - SCTID:308768003 + pharyngeal arch 2 (SCTID) @@ -24561,8 +21845,7 @@ - pharyngeal arch 3 (SCTID) - SCTID:308769006 + pharyngeal arch 3 (SCTID) @@ -24571,8 +21854,7 @@ - pharyngeal arch 4 (SCTID) - SCTID:308770007 + pharyngeal arch 4 (SCTID) @@ -24581,8 +21863,7 @@ - pharyngeal arch 5 (SCTID) - SCTID:308771006 + pharyngeal arch 5 (SCTID) @@ -24591,8 +21872,7 @@ - pharyngeal arch 6 (SCTID) - SCTID:308772004 + pharyngeal arch 6 (SCTID) @@ -24601,8 +21881,7 @@ - Meckel's cartilage (SCTID) - SCTID:308773009 + Meckel's cartilage (SCTID) @@ -24611,8 +21890,7 @@ - pharyngeal arch artery 1 (SCTID) - SCTID:308774003 + pharyngeal arch artery 1 (SCTID) @@ -24621,8 +21899,7 @@ - pharyngeal arch artery 2 (SCTID) - SCTID:308775002 + pharyngeal arch artery 2 (SCTID) @@ -24631,8 +21908,7 @@ - pharyngeal arch artery 3 (SCTID) - SCTID:308776001 + pharyngeal arch artery 3 (SCTID) @@ -24641,8 +21917,7 @@ - pharyngeal arch artery 4 (SCTID) - SCTID:308777005 + pharyngeal arch artery 4 (SCTID) @@ -24651,8 +21926,7 @@ - pharyngeal arch artery 5 (SCTID) - SCTID:308778000 + pharyngeal arch artery 5 (SCTID) @@ -24661,8 +21935,7 @@ - pharyngeal arch artery 6 (SCTID) - SCTID:308779008 + pharyngeal arch artery 6 (SCTID) @@ -24671,8 +21944,7 @@ - anterior cardinal vein (SCTID) - SCTID:308780006 + anterior cardinal vein (SCTID) @@ -24681,8 +21953,7 @@ - posterior cardinal vein (SCTID) - SCTID:308781005 + posterior cardinal vein (SCTID) @@ -24691,8 +21962,7 @@ - common cardinal vein (SCTID) - SCTID:308783008 + common cardinal vein (SCTID) @@ -24701,8 +21971,7 @@ - optic stalk (SCTID) - SCTID:308788004 + optic stalk (SCTID) @@ -24711,8 +21980,7 @@ - optic cup (SCTID) - SCTID:308789007 + optic cup (SCTID) @@ -24721,8 +21989,7 @@ - hyaloid artery (SCTID) - SCTID:308790003 + hyaloid artery (SCTID) @@ -24731,8 +21998,7 @@ - ear vesicle (SCTID) - SCTID:308792006 + ear vesicle (SCTID) @@ -24741,8 +22007,7 @@ - meningeal branch of spinal nerve (SCTID) - SCTID:308794007 + meningeal branch of spinal nerve (SCTID) @@ -24751,8 +22016,7 @@ - metanephros (SCTID) - SCTID:308797000 + metanephros (SCTID) @@ -24761,8 +22025,7 @@ - undifferentiated genital tubercle (SCTID) - SCTID:308798005 + undifferentiated genital tubercle (SCTID) @@ -24771,8 +22034,7 @@ - mesonephros (SCTID) - SCTID:308799002 + mesonephros (SCTID) @@ -24781,8 +22043,7 @@ - mesonephric duct (SCTID) - SCTID:308800003 + mesonephric duct (SCTID) @@ -24791,8 +22052,7 @@ - gonadal ridge (SCTID) - SCTID:308801004 + gonadal ridge (SCTID) @@ -24801,8 +22061,7 @@ - Mullerian duct (SCTID) - SCTID:308802006 + Mullerian duct (SCTID) @@ -24811,8 +22070,7 @@ - pronephros (SCTID) - SCTID:308804007 + pronephros (SCTID) @@ -24821,8 +22079,7 @@ - septum transversum (SCTID) - SCTID:308819008 + septum transversum (SCTID) @@ -24831,8 +22088,7 @@ - notochord (SCTID) - SCTID:308820002 + notochord (SCTID) @@ -24841,8 +22097,7 @@ - median lingual swelling (SCTID) - SCTID:308821003 + median lingual swelling (SCTID) @@ -24851,8 +22106,7 @@ - thyroglossal duct (SCTID) - SCTID:308822005 + thyroglossal duct (SCTID) @@ -24861,8 +22115,7 @@ - dorsal mesentery (SCTID) - SCTID:308823000 + dorsal mesentery (SCTID) @@ -24871,8 +22124,7 @@ - allantois (SCTID) - SCTID:308825007 + allantois (SCTID) @@ -24881,8 +22133,7 @@ - cloacal membrane (SCTID) - SCTID:308826008 + cloacal membrane (SCTID) @@ -24891,8 +22142,7 @@ - truncus arteriosus (SCTID) - SCTID:308828009 + truncus arteriosus (SCTID) @@ -24901,8 +22151,7 @@ - supracardinal vein (SCTID) - SCTID:308829001 + supracardinal vein (SCTID) @@ -24911,8 +22160,7 @@ - subcardinal vein (SCTID) - SCTID:308830006 + subcardinal vein (SCTID) @@ -24921,8 +22169,7 @@ - vitelline vein (SCTID) - SCTID:308832003 + vitelline vein (SCTID) @@ -24931,8 +22178,7 @@ - left umbilical vein (SCTID) - SCTID:308833008 + left umbilical vein (SCTID) @@ -24941,8 +22187,7 @@ - blastocyst (SCTID) - SCTID:308837009 + blastocyst (SCTID) @@ -24951,8 +22196,7 @@ - cytotrophoblast (SCTID) - SCTID:308841008 + cytotrophoblast (SCTID) @@ -24961,8 +22205,7 @@ - atrial septum secundum (SCTID) - SCTID:308850005 + atrial septum secundum (SCTID) @@ -24971,8 +22214,7 @@ - foramen primum (SCTID) - SCTID:308852002 + foramen primum (SCTID) @@ -24981,8 +22223,7 @@ - foramen secundum (SCTID) - SCTID:308854001 + foramen secundum (SCTID) @@ -24991,8 +22232,7 @@ - medial nasal prominence (SCTID) - SCTID:308877001 + medial nasal prominence (SCTID) @@ -25001,8 +22241,7 @@ - lateral nasal prominence (SCTID) - SCTID:308880000 + lateral nasal prominence (SCTID) @@ -25011,8 +22250,7 @@ - embryonic nasal process (SCTID) - SCTID:308881001 + embryonic nasal process (SCTID) @@ -25021,8 +22259,7 @@ - premaxilla (SCTID) - SCTID:308884009 + premaxilla (SCTID) @@ -25031,8 +22268,7 @@ - unilaminar epithelium (SCTID) - SCTID:309043004 + unilaminar epithelium (SCTID) @@ -25041,8 +22277,7 @@ - multilaminar epithelium (SCTID) - SCTID:309044005 + multilaminar epithelium (SCTID) @@ -25051,8 +22286,7 @@ - sensory epithelium (SCTID) - SCTID:309045006 + sensory epithelium (SCTID) @@ -25061,8 +22295,7 @@ - skeletal tissue (SCTID) - SCTID:309311006 + skeletal tissue (SCTID) @@ -25071,8 +22304,7 @@ - cartilage tissue (SCTID) - SCTID:309312004 + cartilage tissue (SCTID) @@ -25081,8 +22313,7 @@ - brain dura mater (SCTID) - SCTID:309321003 + brain dura mater (SCTID) @@ -25091,8 +22322,7 @@ - nasal cavity mucosa (SCTID) - SCTID:310211009 + nasal cavity mucosa (SCTID) @@ -25101,8 +22331,7 @@ - nasal meatus (SCTID) - SCTID:310212002 + nasal meatus (SCTID) @@ -25111,8 +22340,7 @@ - superior nasal meatus (SCTID) - SCTID:310213007 + superior nasal meatus (SCTID) @@ -25121,8 +22349,7 @@ - inferior nasal meatus (SCTID) - SCTID:310214001 + inferior nasal meatus (SCTID) @@ -25131,8 +22358,7 @@ - internal male genitalia (SCTID) - SCTID:310536002 + internal male genitalia (SCTID) @@ -25141,8 +22367,7 @@ - distal epiphysis of humerus (SCTID) - SCTID:310655007 + distal epiphysis of humerus (SCTID) @@ -25151,8 +22376,7 @@ - communicating branch of spinal nerve (SCTID) - SCTID:310727003 + communicating branch of spinal nerve (SCTID) @@ -25161,8 +22385,7 @@ - pelvic splanchnic nerve (SCTID) - SCTID:311223006 + pelvic splanchnic nerve (SCTID) @@ -25171,8 +22394,7 @@ - anterior ethmoidal artery (SCTID) - SCTID:312160004 + anterior ethmoidal artery (SCTID) @@ -25181,8 +22403,7 @@ - posterior ethmoidal artery (SCTID) - SCTID:312161000 + posterior ethmoidal artery (SCTID) @@ -25191,8 +22412,7 @@ - greater palatine artery (SCTID) - SCTID:312163002 + greater palatine artery (SCTID) @@ -25201,8 +22421,7 @@ - perineal vein (SCTID) - SCTID:312507009 + perineal vein (SCTID) @@ -25211,8 +22430,7 @@ - distal segment of manual digit (SCTID) - SCTID:312543003 + distal segment of manual digit (SCTID) @@ -25221,8 +22439,7 @@ - limb joint (SCTID) - SCTID:312683002 + limb joint (SCTID) @@ -25231,8 +22448,7 @@ - thoracic vertebral arch (SCTID) - SCTID:312764002 + thoracic vertebral arch (SCTID) @@ -25241,8 +22457,7 @@ - lumbar vertebral arch (SCTID) - SCTID:312766000 + lumbar vertebral arch (SCTID) @@ -25251,8 +22466,7 @@ - cheek pouch (SCTID) - SCTID:31293007 + cheek pouch (SCTID) @@ -25261,8 +22475,7 @@ - epiphysis of humerus (SCTID) - SCTID:313054009 + epiphysis of humerus (SCTID) @@ -25271,8 +22484,7 @@ - epiphysis of radius (SCTID) - SCTID:313055005 + epiphysis of radius (SCTID) @@ -25281,8 +22493,7 @@ - epiphysis of ulna (SCTID) - SCTID:313056006 + epiphysis of ulna (SCTID) @@ -25291,8 +22502,7 @@ - epiphysis of metatarsal bone (SCTID) - SCTID:313057002 + epiphysis of metatarsal bone (SCTID) @@ -25301,8 +22511,7 @@ - right frontal lobe (SCTID) - SCTID:314141005 + right frontal lobe (SCTID) @@ -25311,8 +22520,7 @@ - left frontal lobe (SCTID) - SCTID:314142003 + left frontal lobe (SCTID) @@ -25321,8 +22529,7 @@ - orbital sulcus (SCTID) - SCTID:314143008 + orbital sulcus (SCTID) @@ -25331,8 +22538,7 @@ - frontal pole (SCTID) - SCTID:314144002 + frontal pole (SCTID) @@ -25341,8 +22547,7 @@ - sulcus of parietal lobe (SCTID) - SCTID:314145001 + sulcus of parietal lobe (SCTID) @@ -25351,8 +22556,7 @@ - right parietal lobe (SCTID) - SCTID:314146000 + right parietal lobe (SCTID) @@ -25361,8 +22565,7 @@ - left parietal lobe (SCTID) - SCTID:314147009 + left parietal lobe (SCTID) @@ -25371,8 +22574,7 @@ - occipital sulcus (SCTID) - SCTID:314148004 + occipital sulcus (SCTID) @@ -25381,8 +22583,7 @@ - right occipital lobe (SCTID) - SCTID:314149007 + right occipital lobe (SCTID) @@ -25391,8 +22592,7 @@ - left occipital lobe (SCTID) - SCTID:314150007 + left occipital lobe (SCTID) @@ -25401,8 +22601,7 @@ - temporal pole (SCTID) - SCTID:314155002 + temporal pole (SCTID) @@ -25411,8 +22610,7 @@ - right temporal lobe (SCTID) - SCTID:314157005 + right temporal lobe (SCTID) @@ -25421,8 +22619,7 @@ - left temporal lobe (SCTID) - SCTID:314158000 + left temporal lobe (SCTID) @@ -25431,8 +22628,7 @@ - transverse gyrus of Heschl (SCTID) - SCTID:314159008 + transverse gyrus of Heschl (SCTID) @@ -25441,8 +22637,7 @@ - occipital pole (SCTID) - SCTID:314160003 + occipital pole (SCTID) @@ -25451,8 +22646,7 @@ - cerebellum fissure (SCTID) - SCTID:314163001 + cerebellum fissure (SCTID) @@ -25461,8 +22655,7 @@ - primary fissure of cerebellum (SCTID) - SCTID:314164007 + primary fissure of cerebellum (SCTID) @@ -25471,8 +22664,7 @@ - secondary fissure of cerebellum (SCTID) - SCTID:314169002 + secondary fissure of cerebellum (SCTID) @@ -25481,8 +22673,7 @@ - posterior superior fissure of cerebellum (SCTID) - SCTID:314170001 + posterior superior fissure of cerebellum (SCTID) @@ -25491,8 +22682,7 @@ - prepyramidal fissure of cerebellum (SCTID) - SCTID:314171002 + prepyramidal fissure of cerebellum (SCTID) @@ -25501,8 +22691,7 @@ - posterolateral fissure of cerebellum (SCTID) - SCTID:314172009 + posterolateral fissure of cerebellum (SCTID) @@ -25511,8 +22700,7 @@ - horizontal fissure of cerebellum (SCTID) - SCTID:314173004 + horizontal fissure of cerebellum (SCTID) @@ -25521,8 +22709,7 @@ - paraflocculus (SCTID) - SCTID:314174005 + paraflocculus (SCTID) @@ -25531,8 +22718,7 @@ - body of caudate nucleus (SCTID) - SCTID:314175006 + body of caudate nucleus (SCTID) @@ -25541,8 +22727,7 @@ - subarachnoid cistern (SCTID) - SCTID:314223007 + subarachnoid cistern (SCTID) @@ -25551,8 +22736,7 @@ - anterior median fissure of spinal cord (SCTID) - SCTID:314225000 + anterior median fissure of spinal cord (SCTID) @@ -25561,8 +22745,7 @@ - cranial synchondrosis (SCTID) - SCTID:314228003 + cranial synchondrosis (SCTID) @@ -25571,8 +22754,7 @@ - pericardial sinus (SCTID) - SCTID:314273005 + pericardial sinus (SCTID) @@ -25581,8 +22763,7 @@ - branch of middle cerebral artery (SCTID) - SCTID:314302003 + branch of middle cerebral artery (SCTID) @@ -25591,8 +22772,7 @@ - branch of anterior cerebral artery (SCTID) - SCTID:314304002 + branch of anterior cerebral artery (SCTID) @@ -25601,8 +22781,7 @@ - branch of posterior cerebral artery (SCTID) - SCTID:314305001 + branch of posterior cerebral artery (SCTID) @@ -25611,8 +22790,7 @@ - branch of posterior tibial artery (SCTID) - SCTID:314363005 + branch of posterior tibial artery (SCTID) @@ -25621,8 +22799,7 @@ - skin of limb (SCTID) - SCTID:314403009 + skin of limb (SCTID) @@ -25631,8 +22808,7 @@ - apex of lumbar spinal cord dorsal horn (SCTID) - SCTID:314425003 + apex of lumbar spinal cord dorsal horn (SCTID) @@ -25641,8 +22817,7 @@ - thoracic mammary gland (SCTID) - SCTID:31448001 + thoracic mammary gland (SCTID) @@ -25651,8 +22826,7 @@ - substantia gelatinosa of lumbar spinal cord dorsal horn (SCTID) - SCTID:314519000 + substantia gelatinosa of lumbar spinal cord dorsal horn (SCTID) @@ -25661,8 +22835,7 @@ - epiphysis of phalanx of manus (SCTID) - SCTID:314620000 + epiphysis of phalanx of manus (SCTID) @@ -25671,8 +22844,7 @@ - epiphysis of phalanx of pes (SCTID) - SCTID:314621001 + epiphysis of phalanx of pes (SCTID) @@ -25681,8 +22853,7 @@ - epiphysis of femur (SCTID) - SCTID:314625005 + epiphysis of femur (SCTID) @@ -25691,8 +22862,7 @@ - epiphysis of tibia (SCTID) - SCTID:314626006 + epiphysis of tibia (SCTID) @@ -25701,8 +22871,7 @@ - peripharyngeal space (SCTID) - SCTID:314725004 + peripharyngeal space (SCTID) @@ -25711,8 +22880,7 @@ - mesenteric plexus (SCTID) - SCTID:314752009 + mesenteric plexus (SCTID) @@ -25721,8 +22889,7 @@ - mesenteric ganglion (SCTID) - SCTID:314754005 + mesenteric ganglion (SCTID) @@ -25731,8 +22898,7 @@ - cuneate fasciculus of spinal cord (SCTID) - SCTID:314792006 + cuneate fasciculus of spinal cord (SCTID) @@ -25741,8 +22907,7 @@ - integumentary system layer (SCTID) - SCTID:314820002 + integumentary system layer (SCTID) @@ -25751,8 +22916,7 @@ - surface of tongue (SCTID) - SCTID:314870004 + surface of tongue (SCTID) @@ -25761,8 +22925,7 @@ - common iliac lymph node (SCTID) - SCTID:314889004 + common iliac lymph node (SCTID) @@ -25771,8 +22934,7 @@ - epiphysis of metacarpal bone (SCTID) - SCTID:314907001 + epiphysis of metacarpal bone (SCTID) @@ -25781,8 +22943,7 @@ - extraembryonic structure (SCTID) - SCTID:314908006 + extraembryonic structure (SCTID) @@ -25791,8 +22952,7 @@ - vesical venous plexus (SCTID) - SCTID:31510008 + vesical venous plexus (SCTID) @@ -25801,8 +22961,7 @@ - conus medullaris (SCTID) - SCTID:315472009 + conus medullaris (SCTID) @@ -25811,8 +22970,7 @@ - filum terminale externum (SCTID) - SCTID:315573001 + filum terminale externum (SCTID) @@ -25821,8 +22979,7 @@ - filum terminale internum (SCTID) - SCTID:315673007 + filum terminale internum (SCTID) @@ -25831,8 +22988,7 @@ - epithelium (SCTID) - SCTID:31610004 + epithelium (SCTID) @@ -25841,8 +22997,7 @@ - nucleus pulposus (SCTID) - SCTID:316586000 + nucleus pulposus (SCTID) @@ -25851,8 +23006,7 @@ - deep external pudendal artery (SCTID) - SCTID:31708008 + deep external pudendal artery (SCTID) @@ -25861,8 +23015,7 @@ - lower back muscle (SCTID) - SCTID:317178000 + lower back muscle (SCTID) @@ -25871,8 +23024,7 @@ - cartilaginous vertebral centrum (SCTID) - SCTID:317278007 + cartilaginous vertebral centrum (SCTID) @@ -25881,8 +23033,7 @@ - neural arch (SCTID) - SCTID:317373001 + neural arch (SCTID) @@ -25891,8 +23042,7 @@ - zygapophysis (SCTID) - SCTID:317570004 + zygapophysis (SCTID) @@ -25901,8 +23051,7 @@ - cortex of hair (SCTID) - SCTID:318832008 + cortex of hair (SCTID) @@ -25911,8 +23060,7 @@ - hair medulla (SCTID) - SCTID:318929009 + hair medulla (SCTID) @@ -25921,8 +23069,7 @@ - hair outer root sheath (SCTID) - SCTID:319224003 + hair outer root sheath (SCTID) @@ -25931,8 +23078,7 @@ - right atrium endocardium (SCTID) - SCTID:3194006 + right atrium endocardium (SCTID) @@ -25941,8 +23087,7 @@ - infundibulum of hair follicle (SCTID) - SCTID:319522000 + infundibulum of hair follicle (SCTID) @@ -25951,8 +23096,7 @@ - arrector muscle of hair (SCTID) - SCTID:319910005 + arrector muscle of hair (SCTID) @@ -25961,8 +23105,7 @@ - dermal papilla (SCTID) - SCTID:320101005 + dermal papilla (SCTID) @@ -25971,8 +23114,7 @@ - respiratory tract epithelium (SCTID) - SCTID:321764001 + respiratory tract epithelium (SCTID) @@ -25981,8 +23123,7 @@ - pulmonary lymphatic vessel (SCTID) - SCTID:321862009 + pulmonary lymphatic vessel (SCTID) @@ -25991,8 +23132,7 @@ - appendicular skeleton (SCTID) - SCTID:322050006 + appendicular skeleton (SCTID) @@ -26001,8 +23141,7 @@ - simple columnar epithelium (SCTID) - SCTID:32210007 + simple columnar epithelium (SCTID) @@ -26011,8 +23150,7 @@ - venous plexus (SCTID) - SCTID:322151008 + venous plexus (SCTID) @@ -26021,8 +23159,7 @@ - submucous nerve plexus (SCTID) - SCTID:322349001 + submucous nerve plexus (SCTID) @@ -26031,8 +23168,7 @@ - lumen of esophagus (SCTID) - SCTID:322648002 + lumen of esophagus (SCTID) @@ -26041,8 +23177,7 @@ - submucosal esophageal gland (SCTID) - SCTID:322749003 + submucosal esophageal gland (SCTID) @@ -26051,8 +23186,7 @@ - crico-esophageal tendon (SCTID) - SCTID:322841005 + crico-esophageal tendon (SCTID) @@ -26061,8 +23195,7 @@ - preganglionic sympathetic fiber (SCTID) - SCTID:323517007 + preganglionic sympathetic fiber (SCTID) @@ -26071,8 +23204,7 @@ - postganglionic sympathetic fiber (SCTID) - SCTID:323617002 + postganglionic sympathetic fiber (SCTID) @@ -26081,8 +23213,7 @@ - paravertebral ganglion (SCTID) - SCTID:324478000 + paravertebral ganglion (SCTID) @@ -26091,8 +23222,7 @@ - pelvic ganglion (SCTID) - SCTID:324760006 + pelvic ganglion (SCTID) @@ -26101,8 +23231,7 @@ - fetal membrane (SCTID) - SCTID:325510007 + fetal membrane (SCTID) @@ -26111,8 +23240,7 @@ - lymph node T cell domain (SCTID) - SCTID:326870003 + lymph node T cell domain (SCTID) @@ -26121,8 +23249,7 @@ - hilum of lymph node (SCTID) - SCTID:327052008 + hilum of lymph node (SCTID) @@ -26131,8 +23258,7 @@ - lymph node germinal center (SCTID) - SCTID:327147000 + lymph node germinal center (SCTID) @@ -26141,8 +23267,7 @@ - capsule of lymph node (SCTID) - SCTID:327532004 + capsule of lymph node (SCTID) @@ -26151,8 +23276,7 @@ - red bone marrow (SCTID) - SCTID:328538003 + red bone marrow (SCTID) @@ -26161,8 +23285,7 @@ - yellow bone marrow (SCTID) - SCTID:328639002 + yellow bone marrow (SCTID) @@ -26171,8 +23294,7 @@ - craniocervical region vein (SCTID) - SCTID:32945007 + craniocervical region vein (SCTID) @@ -26181,8 +23303,7 @@ - spleen capsule (SCTID) - SCTID:329635002 + spleen capsule (SCTID) @@ -26191,8 +23312,7 @@ - diaphragma sellae (SCTID) - SCTID:32967008 + diaphragma sellae (SCTID) @@ -26201,8 +23321,7 @@ - tectopontine tract (SCTID) - SCTID:3301002 + tectopontine tract (SCTID) @@ -26211,8 +23330,7 @@ - subcutaneous lymph sac (SCTID) - SCTID:330419002 + subcutaneous lymph sac (SCTID) @@ -26221,8 +23339,7 @@ - aponeurosis (SCTID) - SCTID:331712004 + aponeurosis (SCTID) @@ -26231,8 +23348,7 @@ - long bone (SCTID) - SCTID:332709000 + long bone (SCTID) @@ -26241,8 +23357,7 @@ - short bone (SCTID) - SCTID:332807009 + short bone (SCTID) @@ -26251,8 +23366,7 @@ - flat bone (SCTID) - SCTID:332907008 + flat bone (SCTID) @@ -26261,8 +23375,7 @@ - pneumatized bone (SCTID) - SCTID:333008005 + pneumatized bone (SCTID) @@ -26271,8 +23384,7 @@ - epiphyseal line (SCTID) - SCTID:333108008 + epiphyseal line (SCTID) @@ -26281,8 +23393,7 @@ - epicondyle (SCTID) - SCTID:333209006 + epicondyle (SCTID) @@ -26291,8 +23402,7 @@ - haversian canal (SCTID) - SCTID:3336003 + haversian canal (SCTID) @@ -26301,8 +23411,7 @@ - squamoparietal suture (SCTID) - SCTID:334174000 + squamoparietal suture (SCTID) @@ -26311,8 +23420,7 @@ - hinge joint (SCTID) - SCTID:335391000 + hinge joint (SCTID) @@ -26321,8 +23429,7 @@ - condylar joint (SCTID) - SCTID:335493003 + condylar joint (SCTID) @@ -26331,8 +23438,7 @@ - carapace (SCTID) - SCTID:33620004 + carapace (SCTID) @@ -26341,8 +23447,7 @@ - nutrient foramen artery (SCTID) - SCTID:337318006 + nutrient foramen artery (SCTID) @@ -26351,8 +23456,7 @@ - arteriole (SCTID) - SCTID:337724002 + arteriole (SCTID) @@ -26361,8 +23465,7 @@ - principal artery to forelimb (SCTID) - SCTID:338130007 + principal artery to forelimb (SCTID) @@ -26371,8 +23474,7 @@ - periosteum (SCTID) - SCTID:33840008 + periosteum (SCTID) @@ -26381,8 +23483,7 @@ - dorsal aorta (SCTID) - SCTID:338637006 + dorsal aorta (SCTID) @@ -26391,8 +23492,7 @@ - carotid duct (SCTID) - SCTID:340062006 + carotid duct (SCTID) @@ -26401,8 +23501,7 @@ - sinusoid (SCTID) - SCTID:340163004 + sinusoid (SCTID) @@ -26411,8 +23510,7 @@ - peritoneal cavity mesothelium (SCTID) - SCTID:34073007 + peritoneal cavity mesothelium (SCTID) @@ -26421,8 +23519,7 @@ - atrioventricular canal (SCTID) - SCTID:341079007 + atrioventricular canal (SCTID) @@ -26431,8 +23528,7 @@ - superficial vein (SCTID) - SCTID:341382008 + superficial vein (SCTID) @@ -26441,8 +23537,7 @@ - deep vein (SCTID) - SCTID:341484008 + deep vein (SCTID) @@ -26451,8 +23546,7 @@ - venous sinus (SCTID) - SCTID:341586007 + venous sinus (SCTID) @@ -26461,8 +23555,7 @@ - venule (SCTID) - SCTID:341687009 + venule (SCTID) @@ -26471,8 +23564,7 @@ - Hassall's corpuscle (SCTID) - SCTID:34223001 + Hassall's corpuscle (SCTID) @@ -26481,8 +23573,7 @@ - perivascular space (SCTID) - SCTID:342298001 + perivascular space (SCTID) @@ -26491,8 +23582,7 @@ - primary vitreous (SCTID) - SCTID:343518007 + primary vitreous (SCTID) @@ -26501,8 +23591,7 @@ - sex cord (SCTID) - SCTID:343823004 + sex cord (SCTID) @@ -26511,8 +23600,7 @@ - anal membrane (SCTID) - SCTID:344130000 + anal membrane (SCTID) @@ -26521,8 +23609,7 @@ - myotome (SCTID) - SCTID:344535001 + myotome (SCTID) @@ -26531,8 +23618,7 @@ - pharyngeal pouch 1 (SCTID) - SCTID:345248006 + pharyngeal pouch 1 (SCTID) @@ -26541,8 +23627,7 @@ - pharyngeal pouch 2 (SCTID) - SCTID:345349000 + pharyngeal pouch 2 (SCTID) @@ -26551,8 +23636,7 @@ - pharyngeal pouch 3 (SCTID) - SCTID:345450001 + pharyngeal pouch 3 (SCTID) @@ -26561,8 +23645,7 @@ - ultimobranchial body (SCTID) - SCTID:345552007 + ultimobranchial body (SCTID) @@ -26571,8 +23654,7 @@ - forelimb bud (SCTID) - SCTID:346062002 + forelimb bud (SCTID) @@ -26581,8 +23663,7 @@ - hindlimb bud (SCTID) - SCTID:346164003 + hindlimb bud (SCTID) @@ -26591,8 +23672,7 @@ - embryonic frontal process (SCTID) - SCTID:346265009 + embryonic frontal process (SCTID) @@ -26601,8 +23681,7 @@ - maxillary prominence (SCTID) - SCTID:346355001 + maxillary prominence (SCTID) @@ -26611,8 +23690,7 @@ - post-hyoid pharyngeal arch skeleton (SCTID) - SCTID:346439007 + post-hyoid pharyngeal arch skeleton (SCTID) @@ -26621,8 +23699,7 @@ - pharyngeal pouch (SCTID) - SCTID:34674002 + pharyngeal pouch (SCTID) @@ -26631,8 +23708,7 @@ - anatomical conduit (SCTID) - SCTID:346902003 + anatomical conduit (SCTID) @@ -26641,8 +23717,7 @@ - lung field (SCTID) - SCTID:34922002 + lung field (SCTID) @@ -26651,8 +23726,7 @@ - pupil (SCTID) - SCTID:35146001 + pupil (SCTID) @@ -26661,8 +23735,7 @@ - medial circumflex femoral vein (SCTID) - SCTID:35235007 + medial circumflex femoral vein (SCTID) @@ -26671,8 +23744,7 @@ - muscular coat of ureter (SCTID) - SCTID:3563003 + muscular coat of ureter (SCTID) @@ -26681,8 +23753,7 @@ - spleen lymphoid follicle (SCTID) - SCTID:35845000 + spleen lymphoid follicle (SCTID) @@ -26691,8 +23762,7 @@ - skin of penis (SCTID) - SCTID:35900000 + skin of penis (SCTID) @@ -26701,8 +23771,7 @@ - primary palate (SCTID) - SCTID:359541001 + primary palate (SCTID) @@ -26711,8 +23780,7 @@ - nerve of thoracic segment (SCTID) - SCTID:359876006 + nerve of thoracic segment (SCTID) @@ -26721,8 +23789,7 @@ - limb nerve (SCTID) - SCTID:359923002 + limb nerve (SCTID) @@ -26731,8 +23798,7 @@ - pelvic girdle region (SCTID) - SCTID:360010001 + pelvic girdle region (SCTID) @@ -26741,8 +23807,7 @@ - cardiogenic splanchnic mesoderm (SCTID) - SCTID:360387000 + cardiogenic splanchnic mesoderm (SCTID) @@ -26751,8 +23816,7 @@ - presumptive gut (SCTID) - SCTID:360394002 + presumptive gut (SCTID) @@ -26761,8 +23825,7 @@ - pancreatic epithelial bud (SCTID) - SCTID:360398004 + pancreatic epithelial bud (SCTID) @@ -26771,8 +23834,7 @@ - intersomitic artery (SCTID) - SCTID:360401001 + intersomitic artery (SCTID) @@ -26781,8 +23843,7 @@ - chorionic villus (SCTID) - SCTID:360403003 + chorionic villus (SCTID) @@ -26791,8 +23852,7 @@ - neuropore (SCTID) - SCTID:360408007 + neuropore (SCTID) @@ -26801,8 +23861,7 @@ - future brain vesicle (SCTID) - SCTID:360409004 + future brain vesicle (SCTID) @@ -26811,8 +23870,7 @@ - brainstem white matter (SCTID) - SCTID:360442003 + brainstem white matter (SCTID) @@ -26821,8 +23879,7 @@ - lateral hypothalamic nucleus (SCTID) - SCTID:360452004 + lateral hypothalamic nucleus (SCTID) @@ -26831,8 +23888,7 @@ - pontocerebellar tract (SCTID) - SCTID:360457005 + pontocerebellar tract (SCTID) @@ -26841,8 +23897,7 @@ - lateral superior olivary nucleus (SCTID) - SCTID:360477003 + lateral superior olivary nucleus (SCTID) @@ -26851,8 +23906,7 @@ - cerebellar layer (SCTID) - SCTID:360478008 + cerebellar layer (SCTID) @@ -26861,8 +23915,7 @@ - nerve of cervical vertebra (SCTID) - SCTID:360497008 + nerve of cervical vertebra (SCTID) @@ -26871,8 +23924,7 @@ - thoracic nerve (SCTID) - SCTID:360498003 + thoracic nerve (SCTID) @@ -26881,8 +23933,7 @@ - subhepatic recess (SCTID) - SCTID:36051002 + subhepatic recess (SCTID) @@ -26891,8 +23942,7 @@ - branch of vertebral artery (SCTID) - SCTID:360535000 + branch of vertebral artery (SCTID) @@ -26901,8 +23951,7 @@ - branch of basilar artery (SCTID) - SCTID:360537008 + branch of basilar artery (SCTID) @@ -26911,8 +23960,7 @@ - branch of brachial artery (SCTID) - SCTID:360543005 + branch of brachial artery (SCTID) @@ -26921,8 +23969,7 @@ - pronephric glomerulus (SCTID) - SCTID:360548001 + pronephric glomerulus (SCTID) @@ -26931,8 +23978,7 @@ - branch of ulnar artery (SCTID) - SCTID:360551008 + branch of ulnar artery (SCTID) @@ -26941,8 +23987,7 @@ - intercerebral commissure (SCTID) - SCTID:360567002 + intercerebral commissure (SCTID) @@ -26951,8 +23996,7 @@ - spinothalamic tract of medulla (SCTID) - SCTID:360570003 + spinothalamic tract of medulla (SCTID) @@ -26961,8 +24005,7 @@ - branch of internal carotid artery (SCTID) - SCTID:360629008 + branch of internal carotid artery (SCTID) @@ -26971,8 +24014,7 @@ - vinculum of tendon (SCTID) - SCTID:360764006 + vinculum of tendon (SCTID) @@ -26981,8 +24023,7 @@ - pes anserinus of tibia (SCTID) - SCTID:360767004 + pes anserinus of tibia (SCTID) @@ -26991,8 +24032,7 @@ - muscle of digastric group (SCTID) - SCTID:360772008 + muscle of digastric group (SCTID) @@ -27001,8 +24041,7 @@ - vein of clitoris (SCTID) - SCTID:360819004 + vein of clitoris (SCTID) @@ -27011,8 +24050,7 @@ - sciatic notch (SCTID) - SCTID:360956007 + sciatic notch (SCTID) @@ -27021,8 +24059,7 @@ - esophagus muscle (SCTID) - SCTID:360961009 + esophagus muscle (SCTID) @@ -27031,8 +24068,7 @@ - zone of basilar membrane of cochlea (SCTID) - SCTID:361065006 + zone of basilar membrane of cochlea (SCTID) @@ -27041,8 +24077,7 @@ - blood vessel (SCTID) - SCTID:361097006 + blood vessel (SCTID) @@ -27051,8 +24086,7 @@ - spinal nerve (SCTID) - SCTID:361099009 + spinal nerve (SCTID) @@ -27061,8 +24095,7 @@ - phalanx of manus (SCTID) - SCTID:361100001 + phalanx of manus (SCTID) @@ -27071,8 +24104,7 @@ - shoulder (SCTID) - SCTID:361103004 + shoulder (SCTID) @@ -27081,8 +24113,7 @@ - tubercle of rib (SCTID) - SCTID:361104005 + tubercle of rib (SCTID) @@ -27091,8 +24122,7 @@ - lymph node of lower limb (SCTID) - SCTID:361109000 + lymph node of lower limb (SCTID) @@ -27101,8 +24131,7 @@ - respiratory tract (SCTID) - SCTID:361110005 + respiratory tract (SCTID) @@ -27111,8 +24140,7 @@ - ovarian follicle (SCTID) - SCTID:361111009 + ovarian follicle (SCTID) @@ -27121,8 +24149,7 @@ - intertarsal joint (SCTID) - SCTID:361283005 + intertarsal joint (SCTID) @@ -27131,8 +24158,7 @@ - carpal region (SCTID) - SCTID:361289009 + carpal region (SCTID) @@ -27141,8 +24167,7 @@ - knee (SCTID) - SCTID:361291001 + knee (SCTID) @@ -27151,8 +24176,7 @@ - tarsal region (SCTID) - SCTID:361292008 + tarsal region (SCTID) @@ -27161,8 +24185,7 @@ - abdominal cavity (SCTID) - SCTID:361294009 + abdominal cavity (SCTID) @@ -27171,8 +24194,7 @@ - alisphenoid bone (SCTID) - SCTID:361298007 + alisphenoid bone (SCTID) @@ -27181,8 +24203,7 @@ - rectouterine fold (SCTID) - SCTID:361301006 + rectouterine fold (SCTID) @@ -27191,8 +24212,7 @@ - cochlear modiolus (SCTID) - SCTID:361314007 + cochlear modiolus (SCTID) @@ -27201,8 +24221,7 @@ - osseus spiral lamina (SCTID) - SCTID:361315008 + osseus spiral lamina (SCTID) @@ -27211,8 +24230,7 @@ - tunica fibrosa of eyeball (SCTID) - SCTID:361318005 + tunica fibrosa of eyeball (SCTID) @@ -27221,8 +24239,7 @@ - posterior ciliary vein (SCTID) - SCTID:361319002 + posterior ciliary vein (SCTID) @@ -27231,8 +24248,7 @@ - inferior ischial ramus (SCTID) - SCTID:361324004 + inferior ischial ramus (SCTID) @@ -27241,8 +24257,7 @@ - proximal phalanx of manus (SCTID) - SCTID:361325003 + proximal phalanx of manus (SCTID) @@ -27251,8 +24266,7 @@ - pericardial sac (SCTID) - SCTID:361326002 + pericardial sac (SCTID) @@ -27261,8 +24275,7 @@ - kidney pyramid (SCTID) - SCTID:361328001 + kidney pyramid (SCTID) @@ -27271,8 +24284,7 @@ - renal corpuscle (SCTID) - SCTID:361329009 + renal corpuscle (SCTID) @@ -27281,8 +24293,7 @@ - renal lobule (SCTID) - SCTID:361330004 + renal lobule (SCTID) @@ -27291,8 +24302,7 @@ - glomerular capsule (SCTID) - SCTID:361331000 + glomerular capsule (SCTID) @@ -27301,8 +24311,7 @@ - nephron tubule (SCTID) - SCTID:361332007 + nephron tubule (SCTID) @@ -27311,8 +24320,7 @@ - renal convoluted tubule (SCTID) - SCTID:361333002 + renal convoluted tubule (SCTID) @@ -27321,8 +24329,7 @@ - loop of Henle (SCTID) - SCTID:361335009 + loop of Henle (SCTID) @@ -27331,8 +24338,7 @@ - distal convoluted tubule (SCTID) - SCTID:361336005 + distal convoluted tubule (SCTID) @@ -27341,8 +24347,7 @@ - nephron (SCTID) - SCTID:361337001 + nephron (SCTID) @@ -27351,8 +24356,7 @@ - hemopoietic organ (SCTID) - SCTID:361338006 + hemopoietic organ (SCTID) @@ -27361,8 +24365,7 @@ - endocrine pancreas (SCTID) - SCTID:361339003 + endocrine pancreas (SCTID) @@ -27371,8 +24374,7 @@ - male reproductive system (SCTID) - SCTID:361340001 + male reproductive system (SCTID) @@ -27381,8 +24383,7 @@ - limbic system (SCTID) - SCTID:361342009 + limbic system (SCTID) @@ -27391,8 +24392,7 @@ - filum terminale (SCTID) - SCTID:361344005 + filum terminale (SCTID) @@ -27401,8 +24401,7 @@ - ala of nose (SCTID) - SCTID:361345006 + ala of nose (SCTID) @@ -27411,8 +24410,7 @@ - vomeronasal organ (SCTID) - SCTID:361346007 + vomeronasal organ (SCTID) @@ -27421,8 +24419,7 @@ - coelemic cavity lumen (SCTID) - SCTID:361348008 + coelemic cavity lumen (SCTID) @@ -27431,8 +24428,7 @@ - muscle of abdomen (SCTID) - SCTID:361352008 + muscle of abdomen (SCTID) @@ -27441,8 +24437,7 @@ - biliary system (SCTID) - SCTID:361354009 + biliary system (SCTID) @@ -27451,8 +24446,7 @@ - craniocervical region (SCTID) - SCTID:361355005 + craniocervical region (SCTID) @@ -27461,8 +24455,7 @@ - hair shaft (SCTID) - SCTID:361359004 + hair shaft (SCTID) @@ -27471,8 +24464,7 @@ - bulb of hair follicle (SCTID) - SCTID:361360009 + bulb of hair follicle (SCTID) @@ -27481,8 +24473,7 @@ - fauces (SCTID) - SCTID:361362001 + fauces (SCTID) @@ -27491,8 +24482,7 @@ - alveolus of lung (SCTID) - SCTID:361364000 + alveolus of lung (SCTID) @@ -27501,8 +24491,7 @@ - pulmonary acinus (SCTID) - SCTID:361365004 + pulmonary acinus (SCTID) @@ -27511,8 +24500,7 @@ - digit (SCTID) - SCTID:361367007 + digit (SCTID) @@ -27521,8 +24509,7 @@ - hindlimb bone (SCTID) - SCTID:361370006 + hindlimb bone (SCTID) @@ -27531,8 +24518,7 @@ - pes bone (SCTID) - SCTID:361371005 + pes bone (SCTID) @@ -27541,8 +24527,7 @@ - adnexa of uterus (SCTID) - SCTID:361373008 + adnexa of uterus (SCTID) @@ -27551,8 +24536,7 @@ - skin of clitoris (SCTID) - SCTID:361374002 + skin of clitoris (SCTID) @@ -27561,8 +24545,7 @@ - ectocervical epithelium (SCTID) - SCTID:361376000 + ectocervical epithelium (SCTID) @@ -27571,8 +24554,7 @@ - endometrial gland (SCTID) - SCTID:361377009 + endometrial gland (SCTID) @@ -27581,8 +24563,7 @@ - skeleton (SCTID) - SCTID:361378004 + skeleton (SCTID) @@ -27591,8 +24572,7 @@ - respiratory airway (SCTID) - SCTID:361380005 + respiratory airway (SCTID) @@ -27601,8 +24581,7 @@ - upper respiratory tract (SCTID) - SCTID:361381009 + upper respiratory tract (SCTID) @@ -27611,8 +24590,7 @@ - tracheobronchial tree (SCTID) - SCTID:361384001 + tracheobronchial tree (SCTID) @@ -27621,8 +24599,7 @@ - theca cell layer (SCTID) - SCTID:361385000 + theca cell layer (SCTID) @@ -27631,8 +24608,7 @@ - female reproductive system (SCTID) - SCTID:361386004 + female reproductive system (SCTID) @@ -27641,8 +24617,7 @@ - gonadal ridge (SCTID) - SCTID:361399001 + gonadal ridge (SCTID) @@ -27651,8 +24626,7 @@ - left dorsal aorta (SCTID) - SCTID:361403005 + left dorsal aorta (SCTID) @@ -27661,8 +24635,7 @@ - right dorsal aorta (SCTID) - SCTID:361404004 + right dorsal aorta (SCTID) @@ -27671,8 +24644,7 @@ - nephrogenic cord (SCTID) - SCTID:361405003 + nephrogenic cord (SCTID) @@ -27681,8 +24653,7 @@ - pronephric duct (SCTID) - SCTID:361406002 + pronephric duct (SCTID) @@ -27691,8 +24662,7 @@ - mesonephric renal vesicle (SCTID) - SCTID:361407006 + mesonephric renal vesicle (SCTID) @@ -27701,8 +24671,7 @@ - foregut (SCTID) - SCTID:361409009 + foregut (SCTID) @@ -27711,8 +24680,7 @@ - midgut (SCTID) - SCTID:361410004 + midgut (SCTID) @@ -27721,8 +24689,7 @@ - buccopharyngeal membrane (SCTID) - SCTID:361412007 + buccopharyngeal membrane (SCTID) @@ -27731,8 +24698,7 @@ - pleuroperitoneal canal (SCTID) - SCTID:361413002 + pleuroperitoneal canal (SCTID) @@ -27741,8 +24707,7 @@ - hypopharyngeal eminence (SCTID) - SCTID:361420009 + hypopharyngeal eminence (SCTID) @@ -27751,8 +24716,7 @@ - copula linguae (SCTID) - SCTID:361424000 + copula linguae (SCTID) @@ -27761,8 +24725,7 @@ - laryngotracheal groove (SCTID) - SCTID:361426003 + laryngotracheal groove (SCTID) @@ -27771,8 +24734,7 @@ - lung bud (SCTID) - SCTID:361427007 + lung bud (SCTID) @@ -27781,8 +24743,7 @@ - pericardio-peritoneal canal (SCTID) - SCTID:361428002 + pericardio-peritoneal canal (SCTID) @@ -27791,8 +24752,7 @@ - pleuroperitoneal membrane (SCTID) - SCTID:361429005 + pleuroperitoneal membrane (SCTID) @@ -27801,8 +24761,7 @@ - ventral mesentery (SCTID) - SCTID:361430000 + ventral mesentery (SCTID) @@ -27811,8 +24770,7 @@ - dorsal meso-duodenum (SCTID) - SCTID:361433003 + dorsal meso-duodenum (SCTID) @@ -27821,8 +24779,7 @@ - midgut dorsal mesentery (SCTID) - SCTID:361434009 + midgut dorsal mesentery (SCTID) @@ -27831,8 +24788,7 @@ - dorsal pancreatic bud (SCTID) - SCTID:361435005 + dorsal pancreatic bud (SCTID) @@ -27841,8 +24797,7 @@ - ventral pancreatic bud (SCTID) - SCTID:361437002 + ventral pancreatic bud (SCTID) @@ -27851,8 +24806,7 @@ - primitive streak (SCTID) - SCTID:361438007 + primitive streak (SCTID) @@ -27861,8 +24815,7 @@ - tail fold of embryonic disc (SCTID) - SCTID:361439004 + tail fold of embryonic disc (SCTID) @@ -27871,8 +24824,7 @@ - principal artery to hindlimb (SCTID) - SCTID:361443000 + principal artery to hindlimb (SCTID) @@ -27881,8 +24833,7 @@ - right vitelline vein (SCTID) - SCTID:361445007 + right vitelline vein (SCTID) @@ -27891,8 +24842,7 @@ - left vitelline vein (SCTID) - SCTID:361446008 + left vitelline vein (SCTID) @@ -27901,8 +24851,7 @@ - right umbilical vein (SCTID) - SCTID:361447004 + right umbilical vein (SCTID) @@ -27911,8 +24860,7 @@ - intersomitic vein (SCTID) - SCTID:361448009 + intersomitic vein (SCTID) @@ -27921,8 +24869,7 @@ - left supracardinal vein (SCTID) - SCTID:361449001 + left supracardinal vein (SCTID) @@ -27931,8 +24878,7 @@ - right supracardinal vein (SCTID) - SCTID:361450001 + right supracardinal vein (SCTID) @@ -27941,8 +24887,7 @@ - left subcardinal vein (SCTID) - SCTID:361451002 + left subcardinal vein (SCTID) @@ -27951,8 +24896,7 @@ - right subcardinal vein (SCTID) - SCTID:361452009 + right subcardinal vein (SCTID) @@ -27961,8 +24905,7 @@ - head fold of embryonic disc (SCTID) - SCTID:361453004 + head fold of embryonic disc (SCTID) @@ -27971,8 +24914,7 @@ - dorsal mesocardium (SCTID) - SCTID:361454005 + dorsal mesocardium (SCTID) @@ -27981,8 +24923,7 @@ - blastocele (SCTID) - SCTID:361455006 + blastocele (SCTID) @@ -27991,8 +24932,7 @@ - inner cell mass (SCTID) - SCTID:361456007 + inner cell mass (SCTID) @@ -28001,8 +24941,7 @@ - neural fold (SCTID) - SCTID:361461009 + neural fold (SCTID) @@ -28011,8 +24950,7 @@ - neural crest (SCTID) - SCTID:361462002 + neural crest (SCTID) @@ -28021,8 +24959,7 @@ - neural groove (SCTID) - SCTID:361463007 + neural groove (SCTID) @@ -28031,8 +24968,7 @@ - primitive knot (SCTID) - SCTID:361464001 + primitive knot (SCTID) @@ -28041,8 +24977,7 @@ - ventricular septum intermedium (SCTID) - SCTID:361468003 + ventricular septum intermedium (SCTID) @@ -28051,8 +24986,7 @@ - bulbar spiral septum (SCTID) - SCTID:361469006 + bulbar spiral septum (SCTID) @@ -28061,8 +24995,7 @@ - morula (SCTID) - SCTID:361474003 + morula (SCTID) @@ -28071,8 +25004,7 @@ - paraxial mesoderm (SCTID) - SCTID:361475002 + paraxial mesoderm (SCTID) @@ -28081,8 +25013,7 @@ - intermediate mesoderm (SCTID) - SCTID:361476001 + intermediate mesoderm (SCTID) @@ -28091,8 +25022,7 @@ - lateral plate mesoderm (SCTID) - SCTID:361477005 + lateral plate mesoderm (SCTID) @@ -28101,8 +25031,7 @@ - anterior neuropore (SCTID) - SCTID:361478000 + anterior neuropore (SCTID) @@ -28111,8 +25040,7 @@ - posterior neuropore (SCTID) - SCTID:361479008 + posterior neuropore (SCTID) @@ -28121,8 +25049,7 @@ - early prosencephalic vesicle (SCTID) - SCTID:361480006 + early prosencephalic vesicle (SCTID) @@ -28131,8 +25058,7 @@ - early midbrain vesicle (SCTID) - SCTID:361481005 + early midbrain vesicle (SCTID) @@ -28141,8 +25067,7 @@ - hindbrain vesicle (SCTID) - SCTID:361482003 + hindbrain vesicle (SCTID) @@ -28151,8 +25076,7 @@ - lamina terminalis of cerebral hemisphere (SCTID) - SCTID:361483008 + lamina terminalis of cerebral hemisphere (SCTID) @@ -28161,8 +25085,7 @@ - olfactory pit (SCTID) - SCTID:361485001 + olfactory pit (SCTID) @@ -28171,8 +25094,7 @@ - frontonasal prominence (SCTID) - SCTID:361486000 + frontonasal prominence (SCTID) @@ -28181,8 +25103,7 @@ - left anterior cardinal vein (SCTID) - SCTID:361502003 + left anterior cardinal vein (SCTID) @@ -28191,8 +25112,7 @@ - right anterior cardinal vein (SCTID) - SCTID:361503008 + right anterior cardinal vein (SCTID) @@ -28201,8 +25121,7 @@ - left posterior cardinal vein (SCTID) - SCTID:361504002 + left posterior cardinal vein (SCTID) @@ -28211,8 +25130,7 @@ - right posterior cardinal vein (SCTID) - SCTID:361505001 + right posterior cardinal vein (SCTID) @@ -28221,8 +25139,7 @@ - left common cardinal vein (SCTID) - SCTID:361506000 + left common cardinal vein (SCTID) @@ -28231,8 +25148,7 @@ - right common cardinal vein (SCTID) - SCTID:361507009 + right common cardinal vein (SCTID) @@ -28241,8 +25157,7 @@ - optic fissure (SCTID) - SCTID:361508004 + optic fissure (SCTID) @@ -28251,8 +25166,7 @@ - lens vesicle (SCTID) - SCTID:361510002 + lens vesicle (SCTID) @@ -28261,8 +25175,7 @@ - sinus of von Szily (SCTID) - SCTID:361511003 + sinus of von Szily (SCTID) @@ -28271,8 +25184,7 @@ - acoustico-facial VII-VIII ganglion complex (SCTID) - SCTID:361514006 + acoustico-facial VII-VIII ganglion complex (SCTID) @@ -28281,8 +25193,7 @@ - otic capsule (SCTID) - SCTID:361515007 + otic capsule (SCTID) @@ -28291,8 +25202,7 @@ - tubotympanic recess epithelium (SCTID) - SCTID:361516008 + tubotympanic recess epithelium (SCTID) @@ -28301,8 +25211,7 @@ - stapedial artery (SCTID) - SCTID:361518009 + stapedial artery (SCTID) @@ -28311,8 +25220,7 @@ - primitive heart tube (SCTID) - SCTID:361522004 + primitive heart tube (SCTID) @@ -28321,8 +25229,7 @@ - future cardiac ventricle (SCTID) - SCTID:361524003 + future cardiac ventricle (SCTID) @@ -28331,8 +25238,7 @@ - bulbus cordis (SCTID) - SCTID:361525002 + bulbus cordis (SCTID) @@ -28341,8 +25247,7 @@ - aortic sac (SCTID) - SCTID:361527005 + aortic sac (SCTID) @@ -28351,8 +25256,7 @@ - ureteric bud (SCTID) - SCTID:361528000 + ureteric bud (SCTID) @@ -28361,8 +25265,7 @@ - metanephric mesenchyme (SCTID) - SCTID:361529008 + metanephric mesenchyme (SCTID) @@ -28371,8 +25274,7 @@ - embryonic urethral groove (SCTID) - SCTID:361531004 + embryonic urethral groove (SCTID) @@ -28381,8 +25283,7 @@ - vestibular system (SCTID) - SCTID:361533001 + vestibular system (SCTID) @@ -28391,8 +25292,7 @@ - lateral habenular nucleus (SCTID) - SCTID:361538005 + lateral habenular nucleus (SCTID) @@ -28401,8 +25301,7 @@ - basal part of pons (SCTID) - SCTID:361541001 + basal part of pons (SCTID) @@ -28411,8 +25310,7 @@ - longitudinal pontine fibers (SCTID) - SCTID:361544009 + longitudinal pontine fibers (SCTID) @@ -28421,8 +25319,7 @@ - metathalamus (SCTID) - SCTID:361550004 + metathalamus (SCTID) @@ -28431,8 +25328,7 @@ - reticular formation (SCTID) - SCTID:361552007 + reticular formation (SCTID) @@ -28441,8 +25337,7 @@ - lateral globus pallidus (SCTID) - SCTID:361560008 + lateral globus pallidus (SCTID) @@ -28451,8 +25346,7 @@ - Ammon's horn (SCTID) - SCTID:361561007 + Ammon's horn (SCTID) @@ -28461,8 +25355,7 @@ - medial globus pallidus (SCTID) - SCTID:361562000 + medial globus pallidus (SCTID) @@ -28471,8 +25364,7 @@ - medial lemniscus of midbrain (SCTID) - SCTID:361568001 + medial lemniscus of midbrain (SCTID) @@ -28481,8 +25373,7 @@ - medial lemniscus of pons (SCTID) - SCTID:361572002 + medial lemniscus of pons (SCTID) @@ -28491,8 +25382,7 @@ - subthalamic nucleus (SCTID) - SCTID:361575000 + subthalamic nucleus (SCTID) @@ -28501,8 +25391,7 @@ - corpora quadrigemina (SCTID) - SCTID:361579006 + corpora quadrigemina (SCTID) @@ -28511,8 +25400,7 @@ - cerebellar cortex (SCTID) - SCTID:361593004 + cerebellar cortex (SCTID) @@ -28521,8 +25409,7 @@ - lumbar nerve (SCTID) - SCTID:361600002 + lumbar nerve (SCTID) @@ -28531,8 +25418,7 @@ - sacral nerve (SCTID) - SCTID:361601003 + sacral nerve (SCTID) @@ -28541,8 +25427,7 @@ - pericardiacophrenic vein (SCTID) - SCTID:361626007 + pericardiacophrenic vein (SCTID) @@ -28551,8 +25436,7 @@ - right subcostal vein (SCTID) - SCTID:361638003 + right subcostal vein (SCTID) @@ -28561,8 +25445,7 @@ - left subcostal vein (SCTID) - SCTID:361639006 + left subcostal vein (SCTID) @@ -28571,8 +25454,7 @@ - cerebral hemisphere white matter (SCTID) - SCTID:361691006 + cerebral hemisphere white matter (SCTID) @@ -28581,8 +25463,7 @@ - integumental system (SCTID) - SCTID:361692004 + integumental system (SCTID) @@ -28591,8 +25472,7 @@ - mucosa (SCTID) - SCTID:361693009 + mucosa (SCTID) @@ -28601,8 +25481,7 @@ - skin epidermis (SCTID) - SCTID:361694003 + skin epidermis (SCTID) @@ -28611,8 +25490,7 @@ - stratum corneum of epidermis (SCTID) - SCTID:361695002 + stratum corneum of epidermis (SCTID) @@ -28621,8 +25499,7 @@ - dermis (SCTID) - SCTID:361696001 + dermis (SCTID) @@ -28631,8 +25508,7 @@ - sebaceous gland (SCTID) - SCTID:361697005 + sebaceous gland (SCTID) @@ -28641,8 +25517,7 @@ - apocrine gland (SCTID) - SCTID:361698000 + apocrine gland (SCTID) @@ -28651,8 +25526,7 @@ - eccrine sweat gland (SCTID) - SCTID:361699008 + eccrine sweat gland (SCTID) @@ -28661,8 +25535,7 @@ - sweat gland (SCTID) - SCTID:361700009 + sweat gland (SCTID) @@ -28671,8 +25544,7 @@ - strand of hair (SCTID) - SCTID:361702001 + strand of hair (SCTID) @@ -28681,8 +25553,7 @@ - skin of face (SCTID) - SCTID:361703006 + skin of face (SCTID) @@ -28691,8 +25562,7 @@ - skin of neck (SCTID) - SCTID:361705004 + skin of neck (SCTID) @@ -28701,8 +25571,7 @@ - skin of abdomen (SCTID) - SCTID:361707007 + skin of abdomen (SCTID) @@ -28711,8 +25580,7 @@ - scrotum skin (SCTID) - SCTID:361710000 + scrotum skin (SCTID) @@ -28721,8 +25589,7 @@ - manual digit skin (SCTID) - SCTID:361711001 + manual digit skin (SCTID) @@ -28731,8 +25598,7 @@ - superficial fascia (SCTID) - SCTID:361713003 + superficial fascia (SCTID) @@ -28741,8 +25607,7 @@ - mammary duct (SCTID) - SCTID:361719004 + mammary duct (SCTID) @@ -28751,8 +25616,7 @@ - mammary gland (SCTID) - SCTID:361720005 + mammary gland (SCTID) @@ -28761,8 +25625,7 @@ - axial skeleton plus cranial skeleton (SCTID) - SCTID:361725000 + axial skeleton plus cranial skeleton (SCTID) @@ -28771,8 +25634,7 @@ - osteon (SCTID) - SCTID:361726004 + osteon (SCTID) @@ -28781,8 +25643,7 @@ - compact bone tissue (SCTID) - SCTID:361728003 + compact bone tissue (SCTID) @@ -28791,8 +25652,7 @@ - diaphysis (SCTID) - SCTID:361729006 + diaphysis (SCTID) @@ -28801,8 +25661,7 @@ - neurocranium (SCTID) - SCTID:361731002 + neurocranium (SCTID) @@ -28811,8 +25670,7 @@ - optic foramen (SCTID) - SCTID:361732009 + optic foramen (SCTID) @@ -28821,8 +25679,7 @@ - petrous part of temporal bone (SCTID) - SCTID:361733004 + petrous part of temporal bone (SCTID) @@ -28831,8 +25688,7 @@ - jugular foramen (SCTID) - SCTID:361735006 + jugular foramen (SCTID) @@ -28841,8 +25697,7 @@ - clivus of occipital bone (SCTID) - SCTID:361736007 + clivus of occipital bone (SCTID) @@ -28851,8 +25706,7 @@ - orbitosphenoid (SCTID) - SCTID:361737003 + orbitosphenoid (SCTID) @@ -28861,8 +25715,7 @@ - mandibular ramus (SCTID) - SCTID:361739000 + mandibular ramus (SCTID) @@ -28871,8 +25724,7 @@ - thoracic rib cage (SCTID) - SCTID:361741004 + thoracic rib cage (SCTID) @@ -28881,8 +25733,7 @@ - body of sternum (SCTID) - SCTID:361743001 + body of sternum (SCTID) @@ -28891,8 +25742,7 @@ - bony vertebral centrum (SCTID) - SCTID:361745008 + bony vertebral centrum (SCTID) @@ -28901,8 +25751,7 @@ - vertebral canal (SCTID) - SCTID:361746009 + vertebral canal (SCTID) @@ -28911,8 +25760,7 @@ - intervertebral disk of fourth cervical vertebra (SCTID) - SCTID:361748005 + intervertebral disk of fourth cervical vertebra (SCTID) @@ -28921,8 +25769,7 @@ - intervertebral disk of fifth cervical vertebra (SCTID) - SCTID:361749002 + intervertebral disk of fifth cervical vertebra (SCTID) @@ -28931,8 +25778,7 @@ - sacral vertebra (SCTID) - SCTID:361773005 + sacral vertebra (SCTID) @@ -28941,8 +25787,7 @@ - caudal vertebra (SCTID) - SCTID:361774004 + caudal vertebra (SCTID) @@ -28951,8 +25796,7 @@ - innominate bone (SCTID) - SCTID:361776002 + innominate bone (SCTID) @@ -28961,8 +25805,7 @@ - obturator foramen (SCTID) - SCTID:361777006 + obturator foramen (SCTID) @@ -28971,8 +25814,7 @@ - condyle of humerus (SCTID) - SCTID:361778001 + condyle of humerus (SCTID) @@ -28981,8 +25823,7 @@ - distal carpal bone 1 (SCTID) - SCTID:361780007 + distal carpal bone 1 (SCTID) @@ -28991,8 +25832,7 @@ - distal carpal bone 2 (SCTID) - SCTID:361781006 + distal carpal bone 2 (SCTID) @@ -29001,8 +25841,7 @@ - distal phalanx of manus (SCTID) - SCTID:361782004 + distal phalanx of manus (SCTID) @@ -29011,8 +25850,7 @@ - manual digit 2 phalanx (SCTID) - SCTID:361783009 + manual digit 2 phalanx (SCTID) @@ -29021,8 +25859,7 @@ - distal phalanx of manual digit 2 (SCTID) - SCTID:361784003 + distal phalanx of manual digit 2 (SCTID) @@ -29031,8 +25868,7 @@ - manual digit 3 phalanx (SCTID) - SCTID:361785002 + manual digit 3 phalanx (SCTID) @@ -29041,8 +25877,7 @@ - distal phalanx of manual digit 3 (SCTID) - SCTID:361786001 + distal phalanx of manual digit 3 (SCTID) @@ -29051,8 +25886,7 @@ - manual digit 4 phalanx (SCTID) - SCTID:361787005 + manual digit 4 phalanx (SCTID) @@ -29061,8 +25895,7 @@ - distal phalanx of manual digit 4 (SCTID) - SCTID:361788000 + distal phalanx of manual digit 4 (SCTID) @@ -29071,8 +25904,7 @@ - manual digit 5 phalanx (SCTID) - SCTID:361789008 + manual digit 5 phalanx (SCTID) @@ -29081,8 +25913,7 @@ - distal phalanx of manual digit 5 (SCTID) - SCTID:361790004 + distal phalanx of manual digit 5 (SCTID) @@ -29091,8 +25922,7 @@ - head of femur (SCTID) - SCTID:361791000 + head of femur (SCTID) @@ -29101,8 +25931,7 @@ - neck of femur (SCTID) - SCTID:361792007 + neck of femur (SCTID) @@ -29111,8 +25940,7 @@ - lateral malleolus of fibula (SCTID) - SCTID:361795009 + lateral malleolus of fibula (SCTID) @@ -29121,8 +25949,7 @@ - tarsal skeleton (SCTID) - SCTID:361796005 + tarsal skeleton (SCTID) @@ -29131,8 +25958,7 @@ - distal phalanx of pes (SCTID) - SCTID:361797001 + distal phalanx of pes (SCTID) @@ -29141,8 +25967,7 @@ - pedal digit 1 phalanx (SCTID) - SCTID:361798006 + pedal digit 1 phalanx (SCTID) @@ -29151,8 +25976,7 @@ - distal phalanx of pedal digit 1 (SCTID) - SCTID:361799003 + distal phalanx of pedal digit 1 (SCTID) @@ -29161,8 +25985,7 @@ - pedal digit 2 phalanx (SCTID) - SCTID:361800004 + pedal digit 2 phalanx (SCTID) @@ -29171,8 +25994,7 @@ - distal phalanx of pedal digit 2 (SCTID) - SCTID:361801000 + distal phalanx of pedal digit 2 (SCTID) @@ -29181,8 +26003,7 @@ - pedal digit 3 phalanx (SCTID) - SCTID:361802007 + pedal digit 3 phalanx (SCTID) @@ -29191,8 +26012,7 @@ - distal phalanx of pedal digit 3 (SCTID) - SCTID:361803002 + distal phalanx of pedal digit 3 (SCTID) @@ -29201,8 +26021,7 @@ - pedal digit 4 phalanx (SCTID) - SCTID:361804008 + pedal digit 4 phalanx (SCTID) @@ -29211,8 +26030,7 @@ - distal phalanx of pedal digit 4 (SCTID) - SCTID:361805009 + distal phalanx of pedal digit 4 (SCTID) @@ -29221,8 +26039,7 @@ - pedal digit 5 phalanx (SCTID) - SCTID:361806005 + pedal digit 5 phalanx (SCTID) @@ -29231,8 +26048,7 @@ - occipitofrontalis muscle (SCTID) - SCTID:361811007 + occipitofrontalis muscle (SCTID) @@ -29241,8 +26057,7 @@ - depressor anguli oris muscle (SCTID) - SCTID:361812000 + depressor anguli oris muscle (SCTID) @@ -29251,8 +26066,7 @@ - thyro-arytenoid (SCTID) - SCTID:361814004 + thyro-arytenoid (SCTID) @@ -29261,8 +26075,7 @@ - tensor veli palatini (SCTID) - SCTID:361815003 + tensor veli palatini (SCTID) @@ -29271,8 +26084,7 @@ - flexor carpi radialis muscle (SCTID) - SCTID:361816002 + flexor carpi radialis muscle (SCTID) @@ -29281,8 +26093,7 @@ - flexor pollicis longus muscle (SCTID) - SCTID:361818001 + flexor pollicis longus muscle (SCTID) @@ -29291,8 +26102,7 @@ - extensor digiti minimi muscle (SCTID) - SCTID:361819009 + extensor digiti minimi muscle (SCTID) @@ -29301,8 +26111,7 @@ - extensor pollicis longus muscle (SCTID) - SCTID:361820003 + extensor pollicis longus muscle (SCTID) @@ -29311,8 +26120,7 @@ - tibialis posterior (SCTID) - SCTID:361824007 + tibialis posterior (SCTID) @@ -29321,8 +26129,7 @@ - fibularis longus (SCTID) - SCTID:361825008 + fibularis longus (SCTID) @@ -29331,8 +26138,7 @@ - flexor hallucis longus (SCTID) - SCTID:361826009 + flexor hallucis longus (SCTID) @@ -29341,8 +26147,7 @@ - articular system (SCTID) - SCTID:361827000 + articular system (SCTID) @@ -29351,8 +26156,7 @@ - synovial membrane of synovial joint (SCTID) - SCTID:361828005 + synovial membrane of synovial joint (SCTID) @@ -29361,8 +26165,7 @@ - lambdoid suture (SCTID) - SCTID:361830007 + lambdoid suture (SCTID) @@ -29371,8 +26174,7 @@ - atlanto-occipital joint (SCTID) - SCTID:361831006 + atlanto-occipital joint (SCTID) @@ -29381,8 +26183,7 @@ - atlanto-axial joint (SCTID) - SCTID:361832004 + atlanto-axial joint (SCTID) @@ -29391,8 +26192,7 @@ - shoulder joint (SCTID) - SCTID:361835002 + shoulder joint (SCTID) @@ -29401,8 +26201,7 @@ - articular capsule of glenohumeral joint (SCTID) - SCTID:361836001 + articular capsule of glenohumeral joint (SCTID) @@ -29411,8 +26210,7 @@ - proximal radio-ulnar joint (SCTID) - SCTID:361837005 + proximal radio-ulnar joint (SCTID) @@ -29421,8 +26219,7 @@ - radio-carpal joint (SCTID) - SCTID:361839008 + radio-carpal joint (SCTID) @@ -29431,8 +26228,7 @@ - midcarpal joint (SCTID) - SCTID:361841009 + midcarpal joint (SCTID) @@ -29441,8 +26237,7 @@ - carpometacarpal joint (SCTID) - SCTID:361842002 + carpometacarpal joint (SCTID) @@ -29451,8 +26246,7 @@ - carpometacarpal joint of digit 1 (SCTID) - SCTID:361843007 + carpometacarpal joint of digit 1 (SCTID) @@ -29461,8 +26255,7 @@ - metacarpophalangeal joint of manual digit 1 (SCTID) - SCTID:361844001 + metacarpophalangeal joint of manual digit 1 (SCTID) @@ -29471,8 +26264,7 @@ - metacarpophalangeal joint of manual digit 2 (SCTID) - SCTID:361845000 + metacarpophalangeal joint of manual digit 2 (SCTID) @@ -29481,8 +26273,7 @@ - metacarpophalangeal joint of manual digit 3 (SCTID) - SCTID:361846004 + metacarpophalangeal joint of manual digit 3 (SCTID) @@ -29491,8 +26282,7 @@ - metacarpophalangeal joint of manual digit 4 (SCTID) - SCTID:361847008 + metacarpophalangeal joint of manual digit 4 (SCTID) @@ -29501,8 +26291,7 @@ - metacarpophalangeal joint of manual digit 5 (SCTID) - SCTID:361848003 + metacarpophalangeal joint of manual digit 5 (SCTID) @@ -29511,8 +26300,7 @@ - distal interphalangeal joint of manual digit 2 (SCTID) - SCTID:361852003 + distal interphalangeal joint of manual digit 2 (SCTID) @@ -29521,8 +26309,7 @@ - distal interphalangeal joint of manual digit 3 (SCTID) - SCTID:361854002 + distal interphalangeal joint of manual digit 3 (SCTID) @@ -29531,8 +26318,7 @@ - distal interphalangeal joint of manual digit 4 (SCTID) - SCTID:361856000 + distal interphalangeal joint of manual digit 4 (SCTID) @@ -29541,8 +26327,7 @@ - distal interphalangeal joint of manural digit 5 (SCTID) - SCTID:361858004 + distal interphalangeal joint of manural digit 5 (SCTID) @@ -29551,8 +26336,7 @@ - sternocostal joint (SCTID) - SCTID:361860002 + sternocostal joint (SCTID) @@ -29561,8 +26345,7 @@ - tibiotalar joint (SCTID) - SCTID:361864006 + tibiotalar joint (SCTID) @@ -29571,8 +26354,7 @@ - calcaneocuboid joint (SCTID) - SCTID:361866008 + calcaneocuboid joint (SCTID) @@ -29581,8 +26363,7 @@ - intermetatarsal joint (SCTID) - SCTID:361868009 + intermetatarsal joint (SCTID) @@ -29591,8 +26372,7 @@ - metatarsophalangeal joint of pedal digit 2 (SCTID) - SCTID:361869001 + metatarsophalangeal joint of pedal digit 2 (SCTID) @@ -29601,8 +26381,7 @@ - metatarsophalangeal joint of pedal digit 3 (SCTID) - SCTID:361870000 + metatarsophalangeal joint of pedal digit 3 (SCTID) @@ -29611,8 +26390,7 @@ - metatarsophalangeal joint of pedal digit 4 (SCTID) - SCTID:361871001 + metatarsophalangeal joint of pedal digit 4 (SCTID) @@ -29621,8 +26399,7 @@ - metatarsophalangeal joint of pedal digit 5 (SCTID) - SCTID:361872008 + metatarsophalangeal joint of pedal digit 5 (SCTID) @@ -29631,8 +26408,7 @@ - distal interphalangeal joint of pedal digit 2 (SCTID) - SCTID:361878007 + distal interphalangeal joint of pedal digit 2 (SCTID) @@ -29641,8 +26417,7 @@ - distal interphalangeal joint of pedal digit 3 (SCTID) - SCTID:361880001 + distal interphalangeal joint of pedal digit 3 (SCTID) @@ -29651,8 +26426,7 @@ - distal interphalangeal joint of pedal digit 4 (SCTID) - SCTID:361882009 + distal interphalangeal joint of pedal digit 4 (SCTID) @@ -29661,8 +26435,7 @@ - distal interphalangeal joint of pedal digit 5 (SCTID) - SCTID:361884005 + distal interphalangeal joint of pedal digit 5 (SCTID) @@ -29671,8 +26444,7 @@ - tendon sheath (SCTID) - SCTID:361885006 + tendon sheath (SCTID) @@ -29681,8 +26453,7 @@ - tendon of biceps brachii (SCTID) - SCTID:361886007 + tendon of biceps brachii (SCTID) @@ -29691,8 +26462,7 @@ - coracoclavicular ligament (SCTID) - SCTID:361899005 + coracoclavicular ligament (SCTID) @@ -29701,8 +26471,7 @@ - inguinal ligament (SCTID) - SCTID:361900000 + inguinal ligament (SCTID) @@ -29711,8 +26480,7 @@ - cervical fascia (SCTID) - SCTID:361906006 + cervical fascia (SCTID) @@ -29721,8 +26489,7 @@ - superficial inguinal ring (SCTID) - SCTID:361907002 + superficial inguinal ring (SCTID) @@ -29731,8 +26498,7 @@ - fascia lata (SCTID) - SCTID:361911008 + fascia lata (SCTID) @@ -29741,8 +26507,7 @@ - femoral canal (SCTID) - SCTID:361912001 + femoral canal (SCTID) @@ -29751,8 +26516,7 @@ - mesothelium (SCTID) - SCTID:361918002 + mesothelium (SCTID) @@ -29761,8 +26525,7 @@ - connective tissue (SCTID) - SCTID:361919005 + connective tissue (SCTID) @@ -29771,8 +26534,7 @@ - middle nasal meatus (SCTID) - SCTID:361925009 + middle nasal meatus (SCTID) @@ -29781,8 +26543,7 @@ - nose tip (SCTID) - SCTID:361926005 + nose tip (SCTID) @@ -29791,8 +26552,7 @@ - major alar cartilage (SCTID) - SCTID:361928006 + major alar cartilage (SCTID) @@ -29801,8 +26561,7 @@ - columella nasi (SCTID) - SCTID:361930008 + columella nasi (SCTID) @@ -29811,8 +26570,7 @@ - turbinate bone (SCTID) - SCTID:361931007 + turbinate bone (SCTID) @@ -29821,8 +26579,7 @@ - inferior nasal concha (SCTID) - SCTID:361932000 + inferior nasal concha (SCTID) @@ -29831,8 +26588,7 @@ - middle nasal concha (SCTID) - SCTID:361933005 + middle nasal concha (SCTID) @@ -29841,8 +26597,7 @@ - superior nasal concha (SCTID) - SCTID:361934004 + superior nasal concha (SCTID) @@ -29851,8 +26606,7 @@ - supreme nasal concha (SCTID) - SCTID:361935003 + supreme nasal concha (SCTID) @@ -29861,8 +26615,7 @@ - posterior wall of nasopharynx (SCTID) - SCTID:361936002 + posterior wall of nasopharynx (SCTID) @@ -29871,8 +26624,7 @@ - lateral wall of nasopharynx (SCTID) - SCTID:361937006 + lateral wall of nasopharynx (SCTID) @@ -29881,8 +26633,7 @@ - mucosa of nasopharynx (SCTID) - SCTID:361938001 + mucosa of nasopharynx (SCTID) @@ -29891,8 +26642,7 @@ - mucosa of larynx (SCTID) - SCTID:361940006 + mucosa of larynx (SCTID) @@ -29901,8 +26651,7 @@ - larynx submucosa (SCTID) - SCTID:361941005 + larynx submucosa (SCTID) @@ -29911,8 +26660,7 @@ - fibroelastic membrane of larynx (SCTID) - SCTID:361942003 + fibroelastic membrane of larynx (SCTID) @@ -29921,8 +26669,7 @@ - cricothyroid joint (SCTID) - SCTID:361944002 + cricothyroid joint (SCTID) @@ -29931,8 +26678,7 @@ - cricoarytenoid joint (SCTID) - SCTID:361945001 + cricoarytenoid joint (SCTID) @@ -29941,8 +26687,7 @@ - laryngeal ventricle (SCTID) - SCTID:361949007 + laryngeal ventricle (SCTID) @@ -29951,8 +26696,7 @@ - supraglottic part of larynx (SCTID) - SCTID:361953009 + supraglottic part of larynx (SCTID) @@ -29961,8 +26705,7 @@ - bifurcation of trachea (SCTID) - SCTID:361954003 + bifurcation of trachea (SCTID) @@ -29971,8 +26714,7 @@ - right main bronchus (SCTID) - SCTID:361955002 + right main bronchus (SCTID) @@ -29981,8 +26723,7 @@ - lobar bronchus of right lung cranial lobe (SCTID) - SCTID:361956001 + lobar bronchus of right lung cranial lobe (SCTID) @@ -29991,8 +26732,7 @@ - left main bronchus (SCTID) - SCTID:361959008 + left main bronchus (SCTID) @@ -30001,8 +26741,7 @@ - lobar bronchus of left lung lower lobe (SCTID) - SCTID:361961004 + lobar bronchus of left lung lower lobe (SCTID) @@ -30011,8 +26750,7 @@ - alveolar sac (SCTID) - SCTID:361964007 + alveolar sac (SCTID) @@ -30021,8 +26759,7 @@ - alveolar wall (SCTID) - SCTID:361965008 + alveolar wall (SCTID) @@ -30031,8 +26768,7 @@ - right lung (SCTID) - SCTID:361967000 + right lung (SCTID) @@ -30041,8 +26777,7 @@ - right lung hilus (SCTID) - SCTID:361968005 + right lung hilus (SCTID) @@ -30051,8 +26786,7 @@ - upper lobe of right lung (SCTID) - SCTID:361969002 + upper lobe of right lung (SCTID) @@ -30061,8 +26795,7 @@ - middle lobe of right lung (SCTID) - SCTID:361973004 + middle lobe of right lung (SCTID) @@ -30071,8 +26804,7 @@ - lower lobe of right lung (SCTID) - SCTID:361976007 + lower lobe of right lung (SCTID) @@ -30081,8 +26813,7 @@ - left lung (SCTID) - SCTID:361982005 + left lung (SCTID) @@ -30091,8 +26822,7 @@ - left lung hilus (SCTID) - SCTID:361983000 + left lung hilus (SCTID) @@ -30101,8 +26831,7 @@ - upper lobe of left lung (SCTID) - SCTID:361984006 + upper lobe of left lung (SCTID) @@ -30111,8 +26840,7 @@ - lower lobe of left lung (SCTID) - SCTID:361989001 + lower lobe of left lung (SCTID) @@ -30121,8 +26849,7 @@ - pleural sac (SCTID) - SCTID:361996004 + pleural sac (SCTID) @@ -30131,8 +26858,7 @@ - visceral pleura (SCTID) - SCTID:361997008 + visceral pleura (SCTID) @@ -30141,8 +26867,7 @@ - parietal pleura (SCTID) - SCTID:361998003 + parietal pleura (SCTID) @@ -30151,8 +26876,7 @@ - pleural cavity (SCTID) - SCTID:361999006 + pleural cavity (SCTID) @@ -30161,8 +26885,7 @@ - mediastinal pleura (SCTID) - SCTID:362002008 + mediastinal pleura (SCTID) @@ -30171,8 +26894,7 @@ - right cardiac chamber (SCTID) - SCTID:362007002 + right cardiac chamber (SCTID) @@ -30181,8 +26903,7 @@ - left cardiac chamber (SCTID) - SCTID:362008007 + left cardiac chamber (SCTID) @@ -30191,8 +26912,7 @@ - apex of heart (SCTID) - SCTID:362009004 + apex of heart (SCTID) @@ -30201,8 +26921,7 @@ - myocardium (SCTID) - SCTID:362012001 + myocardium (SCTID) @@ -30211,8 +26930,7 @@ - endocardium (SCTID) - SCTID:362013006 + endocardium (SCTID) @@ -30221,8 +26939,7 @@ - cardiac septum (SCTID) - SCTID:362014000 + cardiac septum (SCTID) @@ -30231,8 +26948,7 @@ - foramen ovale of heart (SCTID) - SCTID:362015004 + foramen ovale of heart (SCTID) @@ -30241,8 +26957,7 @@ - interatrial septum (SCTID) - SCTID:362016003 + interatrial septum (SCTID) @@ -30251,8 +26966,7 @@ - atrial septum primum (SCTID) - SCTID:362017007 + atrial septum primum (SCTID) @@ -30261,8 +26975,7 @@ - cardiac muscle of right atrium (SCTID) - SCTID:362018002 + cardiac muscle of right atrium (SCTID) @@ -30271,8 +26984,7 @@ - interventricular septum (SCTID) - SCTID:362019005 + interventricular septum (SCTID) @@ -30281,8 +26993,7 @@ - right ventricle myocardium (SCTID) - SCTID:362020004 + right ventricle myocardium (SCTID) @@ -30291,8 +27002,7 @@ - left ventricle myocardium (SCTID) - SCTID:362021000 + left ventricle myocardium (SCTID) @@ -30301,8 +27011,7 @@ - bundle of His (SCTID) - SCTID:362022007 + bundle of His (SCTID) @@ -30311,8 +27020,7 @@ - aortic valve cusp (SCTID) - SCTID:362026005 + aortic valve cusp (SCTID) @@ -30321,8 +27029,7 @@ - pericardial cavity (SCTID) - SCTID:362027001 + pericardial cavity (SCTID) @@ -30331,8 +27038,7 @@ - vasculature of brain (SCTID) - SCTID:362029003 + vasculature of brain (SCTID) @@ -30341,8 +27047,7 @@ - arterial system (SCTID) - SCTID:362030008 + arterial system (SCTID) @@ -30351,8 +27056,7 @@ - aorta tunica intima (SCTID) - SCTID:362031007 + aorta tunica intima (SCTID) @@ -30361,8 +27065,7 @@ - bulb of aorta (SCTID) - SCTID:362032000 + bulb of aorta (SCTID) @@ -30371,8 +27074,7 @@ - left coronary artery (SCTID) - SCTID:362034004 + left coronary artery (SCTID) @@ -30381,8 +27083,7 @@ - circumflex branch of left coronary artery (SCTID) - SCTID:362036002 + circumflex branch of left coronary artery (SCTID) @@ -30391,8 +27092,7 @@ - right coronary artery (SCTID) - SCTID:362037006 + right coronary artery (SCTID) @@ -30401,8 +27101,7 @@ - carotid artery segment (SCTID) - SCTID:362040006 + carotid artery segment (SCTID) @@ -30411,8 +27110,7 @@ - common carotid artery plus branches (SCTID) - SCTID:362041005 + common carotid artery plus branches (SCTID) @@ -30421,8 +27119,7 @@ - right common carotid artery plus branches (SCTID) - SCTID:362042003 + right common carotid artery plus branches (SCTID) @@ -30431,8 +27128,7 @@ - left common carotid artery plus branches (SCTID) - SCTID:362043008 + left common carotid artery plus branches (SCTID) @@ -30441,8 +27137,7 @@ - external carotid artery (SCTID) - SCTID:362044002 + external carotid artery (SCTID) @@ -30451,8 +27146,7 @@ - internal carotid artery (SCTID) - SCTID:362045001 + internal carotid artery (SCTID) @@ -30461,8 +27155,7 @@ - circle of Willis (SCTID) - SCTID:362047009 + circle of Willis (SCTID) @@ -30471,8 +27164,7 @@ - superior mesenteric artery (SCTID) - SCTID:362048004 + superior mesenteric artery (SCTID) @@ -30481,8 +27173,7 @@ - glomerular capillary (SCTID) - SCTID:362049007 + glomerular capillary (SCTID) @@ -30491,8 +27182,7 @@ - common iliac artery (SCTID) - SCTID:362050007 + common iliac artery (SCTID) @@ -30501,8 +27191,7 @@ - superficial palmar arch (SCTID) - SCTID:362051006 + superficial palmar arch (SCTID) @@ -30511,8 +27200,7 @@ - venous system (SCTID) - SCTID:362060003 + venous system (SCTID) @@ -30521,8 +27209,7 @@ - portal system (SCTID) - SCTID:362063001 + portal system (SCTID) @@ -30531,8 +27218,7 @@ - portal vein (SCTID) - SCTID:362064007 + portal vein (SCTID) @@ -30541,8 +27227,7 @@ - femoral vein (SCTID) - SCTID:362071002 + femoral vein (SCTID) @@ -30551,8 +27236,7 @@ - superior sagittal sinus (SCTID) - SCTID:362075006 + superior sagittal sinus (SCTID) @@ -30561,8 +27245,7 @@ - intestinal mucosa (SCTID) - SCTID:362080002 + intestinal mucosa (SCTID) @@ -30571,8 +27254,7 @@ - ileocolic vein (SCTID) - SCTID:36208008 + ileocolic vein (SCTID) @@ -30581,8 +27263,7 @@ - palatine uvula (SCTID) - SCTID:362082005 + palatine uvula (SCTID) @@ -30591,8 +27272,7 @@ - mucosa of oral region (SCTID) - SCTID:362083000 + mucosa of oral region (SCTID) @@ -30601,8 +27281,7 @@ - vermilion (SCTID) - SCTID:362086008 + vermilion (SCTID) @@ -30611,8 +27290,7 @@ - philtrum (SCTID) - SCTID:362087004 + philtrum (SCTID) @@ -30621,8 +27299,7 @@ - mucosa of upper lip (SCTID) - SCTID:362088009 + mucosa of upper lip (SCTID) @@ -30631,8 +27308,7 @@ - mucosa of lower lip (SCTID) - SCTID:362089001 + mucosa of lower lip (SCTID) @@ -30641,8 +27317,7 @@ - body of tongue (SCTID) - SCTID:362090005 + body of tongue (SCTID) @@ -30651,8 +27326,7 @@ - mucosa of tongue (SCTID) - SCTID:362092002 + mucosa of tongue (SCTID) @@ -30661,8 +27335,7 @@ - posterior part of tongue (SCTID) - SCTID:362094001 + posterior part of tongue (SCTID) @@ -30671,8 +27344,7 @@ - foliate papilla (SCTID) - SCTID:362098003 + foliate papilla (SCTID) @@ -30681,8 +27353,7 @@ - taste bud (SCTID) - SCTID:362099006 + taste bud (SCTID) @@ -30691,8 +27362,7 @@ - inferior surface of tongue (SCTID) - SCTID:362100003 + inferior surface of tongue (SCTID) @@ -30701,8 +27371,7 @@ - tooth cavity (SCTID) - SCTID:362105008 + tooth cavity (SCTID) @@ -30711,8 +27380,7 @@ - tooth crown (SCTID) - SCTID:362106009 + tooth crown (SCTID) @@ -30721,8 +27389,7 @@ - cusp of tooth (SCTID) - SCTID:362107000 + cusp of tooth (SCTID) @@ -30731,8 +27398,7 @@ - dental pulp (SCTID) - SCTID:362110007 + dental pulp (SCTID) @@ -30741,8 +27407,7 @@ - dentine (SCTID) - SCTID:362112004 + dentine (SCTID) @@ -30751,8 +27416,7 @@ - enamel (SCTID) - SCTID:362113009 + enamel (SCTID) @@ -30761,8 +27425,7 @@ - cementum (SCTID) - SCTID:362114003 + cementum (SCTID) @@ -30771,8 +27434,7 @@ - molar tooth (SCTID) - SCTID:362115002 + molar tooth (SCTID) @@ -30781,8 +27443,7 @@ - pharyngeal mucosa (SCTID) - SCTID:362121003 + pharyngeal mucosa (SCTID) @@ -30791,8 +27452,7 @@ - lateral wall of oropharynx (SCTID) - SCTID:362125007 + lateral wall of oropharynx (SCTID) @@ -30801,8 +27461,7 @@ - mucosa of laryngopharynx (SCTID) - SCTID:362126008 + mucosa of laryngopharynx (SCTID) @@ -30811,8 +27470,7 @@ - esophagus mucosa (SCTID) - SCTID:362127004 + esophagus mucosa (SCTID) @@ -30821,8 +27479,7 @@ - submucosa of esophagus (SCTID) - SCTID:362128009 + submucosa of esophagus (SCTID) @@ -30831,8 +27488,7 @@ - lower esophagus (SCTID) - SCTID:362129001 + lower esophagus (SCTID) @@ -30841,8 +27497,7 @@ - esophagogastric junction (SCTID) - SCTID:362130006 + esophagogastric junction (SCTID) @@ -30851,8 +27506,7 @@ - mucosa of stomach (SCTID) - SCTID:362131005 + mucosa of stomach (SCTID) @@ -30861,8 +27515,7 @@ - stomach muscularis externa (SCTID) - SCTID:362132003 + stomach muscularis externa (SCTID) @@ -30871,8 +27524,7 @@ - lesser curvature of stomach (SCTID) - SCTID:362133008 + lesser curvature of stomach (SCTID) @@ -30881,8 +27533,7 @@ - greater curvature of stomach (SCTID) - SCTID:362134002 + greater curvature of stomach (SCTID) @@ -30891,8 +27542,7 @@ - cardia of stomach (SCTID) - SCTID:362138004 + cardia of stomach (SCTID) @@ -30901,8 +27551,7 @@ - fundus of stomach (SCTID) - SCTID:362139007 + fundus of stomach (SCTID) @@ -30911,8 +27560,7 @@ - body of stomach (SCTID) - SCTID:362140009 + body of stomach (SCTID) @@ -30921,8 +27569,7 @@ - pyloric antrum (SCTID) - SCTID:362142001 + pyloric antrum (SCTID) @@ -30931,8 +27578,7 @@ - pylorus (SCTID) - SCTID:362143006 + pylorus (SCTID) @@ -30941,8 +27587,7 @@ - mucosa of small intestine (SCTID) - SCTID:362144000 + mucosa of small intestine (SCTID) @@ -30951,8 +27596,7 @@ - muscle layer of small intestine (SCTID) - SCTID:362145004 + muscle layer of small intestine (SCTID) @@ -30961,8 +27605,7 @@ - duodenal mucosa (SCTID) - SCTID:362146003 + duodenal mucosa (SCTID) @@ -30971,8 +27614,7 @@ - muscle layer of duodenum (SCTID) - SCTID:362147007 + muscle layer of duodenum (SCTID) @@ -30981,8 +27623,7 @@ - duodenal ampulla (SCTID) - SCTID:362149005 + duodenal ampulla (SCTID) @@ -30991,8 +27632,7 @@ - jejunal mucosa (SCTID) - SCTID:362151009 + jejunal mucosa (SCTID) @@ -31001,8 +27641,7 @@ - ileocecal valve (SCTID) - SCTID:362153007 + ileocecal valve (SCTID) @@ -31011,8 +27650,7 @@ - mucosa of appendix (SCTID) - SCTID:362155000 + mucosa of appendix (SCTID) @@ -31021,8 +27659,7 @@ - lumen of colon (SCTID) - SCTID:362156004 + lumen of colon (SCTID) @@ -31031,8 +27668,7 @@ - colonic mucosa (SCTID) - SCTID:362157008 + colonic mucosa (SCTID) @@ -31041,8 +27677,7 @@ - muscle layer of colon (SCTID) - SCTID:362158003 + muscle layer of colon (SCTID) @@ -31051,8 +27686,7 @@ - taenia coli (SCTID) - SCTID:362160001 + taenia coli (SCTID) @@ -31061,8 +27695,7 @@ - right colon (SCTID) - SCTID:362161002 + right colon (SCTID) @@ -31071,8 +27704,7 @@ - ascending colon (SCTID) - SCTID:362162009 + ascending colon (SCTID) @@ -31081,8 +27713,7 @@ - transverse colon (SCTID) - SCTID:362163004 + transverse colon (SCTID) @@ -31091,8 +27722,7 @@ - left colon (SCTID) - SCTID:362164005 + left colon (SCTID) @@ -31101,8 +27731,7 @@ - descending colon (SCTID) - SCTID:362165006 + descending colon (SCTID) @@ -31111,8 +27740,7 @@ - sigmoid colon (SCTID) - SCTID:362166007 + sigmoid colon (SCTID) @@ -31121,8 +27749,7 @@ - mucosa of rectum (SCTID) - SCTID:362167003 + mucosa of rectum (SCTID) @@ -31131,8 +27758,7 @@ - anal sac (SCTID) - SCTID:362169000 + anal sac (SCTID) @@ -31141,8 +27767,7 @@ - mucosa of anal canal (SCTID) - SCTID:362170004 + mucosa of anal canal (SCTID) @@ -31151,8 +27776,7 @@ - muscle layer of anal canal (SCTID) - SCTID:362171000 + muscle layer of anal canal (SCTID) @@ -31161,8 +27785,7 @@ - parotid main excretory duct (SCTID) - SCTID:362175009 + parotid main excretory duct (SCTID) @@ -31171,8 +27794,7 @@ - sublingual gland (SCTID) - SCTID:362176005 + sublingual gland (SCTID) @@ -31181,8 +27803,7 @@ - minor salivary gland (SCTID) - SCTID:362177001 + minor salivary gland (SCTID) @@ -31191,8 +27812,7 @@ - anterior lingual gland (SCTID) - SCTID:362179003 + anterior lingual gland (SCTID) @@ -31201,8 +27821,7 @@ - anterior lingual gland duct (SCTID) - SCTID:362180000 + anterior lingual gland duct (SCTID) @@ -31211,8 +27830,7 @@ - venom gland (SCTID) - SCTID:362181001 + venom gland (SCTID) @@ -31221,8 +27839,7 @@ - right lobe of liver (SCTID) - SCTID:362182008 + right lobe of liver (SCTID) @@ -31231,8 +27848,7 @@ - left lobe of liver (SCTID) - SCTID:362183003 + left lobe of liver (SCTID) @@ -31241,8 +27857,7 @@ - caudate lobe of liver (SCTID) - SCTID:362184009 + caudate lobe of liver (SCTID) @@ -31251,8 +27866,7 @@ - capsule of liver (SCTID) - SCTID:362185005 + capsule of liver (SCTID) @@ -31261,8 +27875,7 @@ - portal triad (SCTID) - SCTID:362192000 + portal triad (SCTID) @@ -31271,8 +27884,7 @@ - intrahepatic bile duct (SCTID) - SCTID:362193005 + intrahepatic bile duct (SCTID) @@ -31281,8 +27893,7 @@ - liver lobule (SCTID) - SCTID:362194004 + liver lobule (SCTID) @@ -31291,8 +27902,7 @@ - mucosa of gallbladder (SCTID) - SCTID:362196002 + mucosa of gallbladder (SCTID) @@ -31301,8 +27911,7 @@ - gallbladder serosa (SCTID) - SCTID:362197006 + gallbladder serosa (SCTID) @@ -31311,8 +27920,7 @@ - common bile duct (SCTID) - SCTID:362199009 + common bile duct (SCTID) @@ -31321,8 +27929,7 @@ - hepatopancreatic ampulla (SCTID) - SCTID:362200007 + hepatopancreatic ampulla (SCTID) @@ -31331,8 +27938,7 @@ - head of pancreas (SCTID) - SCTID:362201006 + head of pancreas (SCTID) @@ -31341,8 +27947,7 @@ - body of pancreas (SCTID) - SCTID:362202004 + body of pancreas (SCTID) @@ -31351,8 +27956,7 @@ - renal system (SCTID) - SCTID:362204003 + renal system (SCTID) @@ -31361,8 +27965,7 @@ - external genitalia (SCTID) - SCTID:362207005 + external genitalia (SCTID) @@ -31371,8 +27974,7 @@ - right kidney (SCTID) - SCTID:362208000 + right kidney (SCTID) @@ -31381,8 +27983,7 @@ - left kidney (SCTID) - SCTID:362209008 + left kidney (SCTID) @@ -31391,8 +27992,7 @@ - kidney interstitium (SCTID) - SCTID:362210003 + kidney interstitium (SCTID) @@ -31401,8 +28001,7 @@ - cortex of kidney (SCTID) - SCTID:362211004 + cortex of kidney (SCTID) @@ -31411,22 +28010,7 @@ - renal papilla (SCTID) - SCTID:362214007 - - - - - - - - - - - glomerular tuft (SCTID) - mesonephric glomerulus (SCTID) - renal glomerulus (SCTID) - SCTID:362217000 + renal papilla (SCTID) @@ -31435,8 +28019,7 @@ - glomerular parietal epithelium (SCTID) - SCTID:362218005 + glomerular parietal epithelium (SCTID) @@ -31445,8 +28028,7 @@ - juxtaglomerular apparatus (SCTID) - SCTID:362219002 + juxtaglomerular apparatus (SCTID) @@ -31455,8 +28037,7 @@ - proximal convoluted tubule (SCTID) - SCTID:362220008 + proximal convoluted tubule (SCTID) @@ -31465,8 +28046,7 @@ - renal pelvis (SCTID) - SCTID:362221007 + renal pelvis (SCTID) @@ -31475,8 +28055,7 @@ - renal sinus (SCTID) - SCTID:362222000 + renal sinus (SCTID) @@ -31485,8 +28064,7 @@ - mucosa of urinary bladder (SCTID) - SCTID:362224004 + mucosa of urinary bladder (SCTID) @@ -31495,8 +28073,7 @@ - wall of urinary bladder (SCTID) - SCTID:362225003 + wall of urinary bladder (SCTID) @@ -31505,8 +28082,7 @@ - fundus of urinary bladder (SCTID) - SCTID:362226002 + fundus of urinary bladder (SCTID) @@ -31515,8 +28091,7 @@ - neck of urinary bladder (SCTID) - SCTID:362227006 + neck of urinary bladder (SCTID) @@ -31525,20 +28100,7 @@ - internal urethral orifice (SCTID) - SCTID:362228001 - - - - - - - - - - mucosa of intermediate urethra (SCTID) - mucosa of urethra (SCTID) - SCTID:362229009 + internal urethral orifice (SCTID) @@ -31547,8 +28109,7 @@ - urethral crest (SCTID) - SCTID:362231000 + urethral crest (SCTID) @@ -31557,8 +28118,7 @@ - navicular fossa of spongiose part of urethra (SCTID) - SCTID:362233002 + navicular fossa of spongiose part of urethra (SCTID) @@ -31567,8 +28127,7 @@ - external female genitalia (SCTID) - SCTID:362234008 + external female genitalia (SCTID) @@ -31577,8 +28136,7 @@ - labium majora (SCTID) - SCTID:362237001 + labium majora (SCTID) @@ -31587,8 +28145,7 @@ - labium minora (SCTID) - SCTID:362240001 + labium minora (SCTID) @@ -31597,8 +28154,7 @@ - glans clitoris (SCTID) - SCTID:362241002 + glans clitoris (SCTID) @@ -31607,8 +28163,7 @@ - prepuce of clitoris (SCTID) - SCTID:362242009 + prepuce of clitoris (SCTID) @@ -31617,8 +28172,7 @@ - major vestibular gland (SCTID) - SCTID:362244005 + major vestibular gland (SCTID) @@ -31627,8 +28181,7 @@ - mucosa of vagina (SCTID) - SCTID:362245006 + mucosa of vagina (SCTID) @@ -31637,8 +28190,7 @@ - upper part of vagina (SCTID) - SCTID:362247003 + upper part of vagina (SCTID) @@ -31647,8 +28199,7 @@ - lower part of vagina (SCTID) - SCTID:362252008 + lower part of vagina (SCTID) @@ -31657,8 +28208,7 @@ - gravid uterus (SCTID) - SCTID:362253003 + gravid uterus (SCTID) @@ -31667,8 +28217,7 @@ - external cervical os (SCTID) - SCTID:362255005 + external cervical os (SCTID) @@ -31677,8 +28226,7 @@ - endocervical epithelium (SCTID) - SCTID:362256006 + endocervical epithelium (SCTID) @@ -31687,8 +28235,7 @@ - endometrial cavity (SCTID) - SCTID:362257002 + endometrial cavity (SCTID) @@ -31697,8 +28244,7 @@ - tertiary ovarian follicle (SCTID) - SCTID:362261008 + tertiary ovarian follicle (SCTID) @@ -31707,8 +28253,7 @@ - uterine tube infundibulum (SCTID) - SCTID:362262001 + uterine tube infundibulum (SCTID) @@ -31717,8 +28262,7 @@ - external male genitalia (SCTID) - SCTID:362264000 + external male genitalia (SCTID) @@ -31727,8 +28271,7 @@ - crus of penis (SCTID) - SCTID:362270006 + crus of penis (SCTID) @@ -31737,8 +28280,7 @@ - corona of glans penis (SCTID) - SCTID:362274002 + corona of glans penis (SCTID) @@ -31747,8 +28289,7 @@ - prostate duct (SCTID) - SCTID:362276000 + prostate duct (SCTID) @@ -31757,8 +28298,7 @@ - mediastinum testis (SCTID) - SCTID:362279007 + mediastinum testis (SCTID) @@ -31767,8 +28307,7 @@ - Leydig cell region of testis (SCTID) - SCTID:362280005 + Leydig cell region of testis (SCTID) @@ -31777,8 +28316,7 @@ - tunica vaginalis testis (SCTID) - SCTID:362281009 + tunica vaginalis testis (SCTID) @@ -31787,8 +28325,7 @@ - caput epididymis (SCTID) - SCTID:362282002 + caput epididymis (SCTID) @@ -31797,8 +28334,7 @@ - extrapyramidal tract system (SCTID) - SCTID:362288003 + extrapyramidal tract system (SCTID) @@ -31807,8 +28343,7 @@ - olfactory system (SCTID) - SCTID:362290002 + olfactory system (SCTID) @@ -31817,8 +28352,7 @@ - forebrain (SCTID) - SCTID:362291003 + forebrain (SCTID) @@ -31827,8 +28361,7 @@ - peripheral nervous system (SCTID) - SCTID:362292005 + peripheral nervous system (SCTID) @@ -31837,8 +28370,7 @@ - nerve root (SCTID) - SCTID:362295007 + nerve root (SCTID) @@ -31847,8 +28379,7 @@ - myelinated nerve fiber (SCTID) - SCTID:362296008 + myelinated nerve fiber (SCTID) @@ -31857,8 +28388,7 @@ - perineurium (SCTID) - SCTID:362299001 + perineurium (SCTID) @@ -31867,8 +28397,7 @@ - dura mater (SCTID) - SCTID:362301008 + dura mater (SCTID) @@ -31877,8 +28406,7 @@ - spinal dura mater (SCTID) - SCTID:362302001 + spinal dura mater (SCTID) @@ -31887,8 +28415,7 @@ - leptomeninx (SCTID) - SCTID:362303006 + leptomeninx (SCTID) @@ -31897,8 +28424,7 @@ - arachnoid mater (SCTID) - SCTID:362304000 + arachnoid mater (SCTID) @@ -31907,8 +28433,7 @@ - pia mater (SCTID) - SCTID:362305004 + pia mater (SCTID) @@ -31917,8 +28442,7 @@ - subdural space (SCTID) - SCTID:362308002 + subdural space (SCTID) @@ -31927,8 +28451,7 @@ - subarachnoid space (SCTID) - SCTID:362311001 + subarachnoid space (SCTID) @@ -31937,8 +28460,7 @@ - septum pellucidum (SCTID) - SCTID:362313003 + septum pellucidum (SCTID) @@ -31947,8 +28469,7 @@ - posterior horn lateral ventricle (SCTID) - SCTID:362314009 + posterior horn lateral ventricle (SCTID) @@ -31957,8 +28478,7 @@ - inferior horn of the lateral ventricle (SCTID) - SCTID:362315005 + inferior horn of the lateral ventricle (SCTID) @@ -31967,8 +28487,7 @@ - third ventricle ependyma (SCTID) - SCTID:362316006 + third ventricle ependyma (SCTID) @@ -31977,8 +28496,7 @@ - tela choroidea of telencephalic ventricle (SCTID) - SCTID:362319004 + tela choroidea of telencephalic ventricle (SCTID) @@ -31987,8 +28505,7 @@ - tela choroidea of third ventricle (SCTID) - SCTID:362320005 + tela choroidea of third ventricle (SCTID) @@ -31997,8 +28514,7 @@ - tela choroidea of fourth ventricle (SCTID) - SCTID:362321009 + tela choroidea of fourth ventricle (SCTID) @@ -32007,8 +28523,7 @@ - right cerebral hemisphere (SCTID) - SCTID:362322002 + right cerebral hemisphere (SCTID) @@ -32017,8 +28532,7 @@ - left cerebral hemisphere (SCTID) - SCTID:362323007 + left cerebral hemisphere (SCTID) @@ -32027,8 +28541,7 @@ - corticospinal tract (SCTID) - SCTID:362325000 + corticospinal tract (SCTID) @@ -32037,8 +28550,7 @@ - white matter of frontal lobe (SCTID) - SCTID:362331002 + white matter of frontal lobe (SCTID) @@ -32047,8 +28559,7 @@ - middle frontal gyrus (SCTID) - SCTID:362332009 + middle frontal gyrus (SCTID) @@ -32057,8 +28568,7 @@ - inferior frontal gyrus (SCTID) - SCTID:362333004 + inferior frontal gyrus (SCTID) @@ -32067,8 +28577,7 @@ - inferior parietal cortex (SCTID) - SCTID:362336007 + inferior parietal cortex (SCTID) @@ -32077,8 +28586,7 @@ - white matter of occipital lobe (SCTID) - SCTID:362339000 + white matter of occipital lobe (SCTID) @@ -32087,8 +28595,7 @@ - temporal cortex (SCTID) - SCTID:362343001 + temporal cortex (SCTID) @@ -32097,8 +28604,7 @@ - white matter of temporal lobe (SCTID) - SCTID:362344007 + white matter of temporal lobe (SCTID) @@ -32107,8 +28613,7 @@ - superior temporal gyrus (SCTID) - SCTID:362345008 + superior temporal gyrus (SCTID) @@ -32117,8 +28622,7 @@ - operculum of brain (SCTID) - SCTID:362351003 + operculum of brain (SCTID) @@ -32127,8 +28631,7 @@ - frontal operculum (SCTID) - SCTID:362352005 + frontal operculum (SCTID) @@ -32137,8 +28640,7 @@ - parietal operculum (SCTID) - SCTID:362353000 + parietal operculum (SCTID) @@ -32147,8 +28649,7 @@ - corpus callosum (SCTID) - SCTID:362354006 + corpus callosum (SCTID) @@ -32157,8 +28658,7 @@ - splenium of the corpus callosum (SCTID) - SCTID:362355007 + splenium of the corpus callosum (SCTID) @@ -32167,8 +28667,7 @@ - olfactory tract (SCTID) - SCTID:362356008 + olfactory tract (SCTID) @@ -32177,8 +28676,7 @@ - subcallosal area (SCTID) - SCTID:362357004 + subcallosal area (SCTID) @@ -32187,8 +28685,7 @@ - globus pallidus (SCTID) - SCTID:362361005 + globus pallidus (SCTID) @@ -32197,8 +28694,7 @@ - retrolenticular part of internal capsule (SCTID) - SCTID:362363008 + retrolenticular part of internal capsule (SCTID) @@ -32207,8 +28703,7 @@ - stria medullaris (SCTID) - SCTID:362368004 + stria medullaris (SCTID) @@ -32217,8 +28712,7 @@ - lateral geniculate body (SCTID) - SCTID:362377006 + lateral geniculate body (SCTID) @@ -32227,8 +28721,7 @@ - medial geniculate body (SCTID) - SCTID:362378001 + medial geniculate body (SCTID) @@ -32237,8 +28730,7 @@ - tuber cinereum (SCTID) - SCTID:362381006 + tuber cinereum (SCTID) @@ -32247,8 +28739,7 @@ - preoptic area (SCTID) - SCTID:362382004 + preoptic area (SCTID) @@ -32257,8 +28748,7 @@ - posterior nucleus of hypothalamus (SCTID) - SCTID:362385002 + posterior nucleus of hypothalamus (SCTID) @@ -32267,8 +28757,7 @@ - habenula (SCTID) - SCTID:362389008 + habenula (SCTID) @@ -32277,8 +28766,7 @@ - cerebral peduncle (SCTID) - SCTID:362391000 + cerebral peduncle (SCTID) @@ -32287,8 +28775,7 @@ - midbrain tegmentum (SCTID) - SCTID:362392007 + midbrain tegmentum (SCTID) @@ -32297,8 +28784,7 @@ - midbrain tectum (SCTID) - SCTID:362394008 + midbrain tectum (SCTID) @@ -32307,8 +28793,7 @@ - medial longitudinal fasciculus (SCTID) - SCTID:362397001 + medial longitudinal fasciculus (SCTID) @@ -32317,8 +28802,7 @@ - medial lemniscus (SCTID) - SCTID:362398006 + medial lemniscus (SCTID) @@ -32327,8 +28811,7 @@ - lateral lemniscus (SCTID) - SCTID:362399003 + lateral lemniscus (SCTID) @@ -32337,8 +28820,7 @@ - extrapyramidal tract system (SCTID) - SCTID:362400005 + extrapyramidal tract system (SCTID) @@ -32347,8 +28829,7 @@ - pontine tegmentum (SCTID) - SCTID:362401009 + pontine tegmentum (SCTID) @@ -32357,8 +28838,7 @@ - pontine reticular formation (SCTID) - SCTID:362403007 + pontine reticular formation (SCTID) @@ -32367,8 +28847,7 @@ - pons reticulospinal tract (SCTID) - SCTID:362404001 + pons reticulospinal tract (SCTID) @@ -32377,8 +28856,7 @@ - nucleus of trapezoid body (SCTID) - SCTID:362405000 + nucleus of trapezoid body (SCTID) @@ -32387,8 +28865,7 @@ - cerebellar hemisphere (SCTID) - SCTID:362411002 + cerebellar hemisphere (SCTID) @@ -32397,8 +28874,7 @@ - white matter of cerebellum (SCTID) - SCTID:362412009 + white matter of cerebellum (SCTID) @@ -32407,8 +28883,7 @@ - white matter lamina of cerebellum (SCTID) - SCTID:362413004 + white matter lamina of cerebellum (SCTID) @@ -32417,8 +28892,7 @@ - cerebellar peduncle (SCTID) - SCTID:362417003 + cerebellar peduncle (SCTID) @@ -32427,8 +28901,7 @@ - inferior cerebellar peduncle (SCTID) - SCTID:362418008 + inferior cerebellar peduncle (SCTID) @@ -32437,8 +28910,7 @@ - medullary raphe nuclear complex (SCTID) - SCTID:362420006 + medullary raphe nuclear complex (SCTID) @@ -32447,8 +28919,7 @@ - spinal cord gray commissure (SCTID) - SCTID:362427009 + spinal cord gray commissure (SCTID) @@ -32457,8 +28928,7 @@ - ventral funiculus of spinal cord (SCTID) - SCTID:362429007 + ventral funiculus of spinal cord (SCTID) @@ -32467,8 +28937,7 @@ - dorsal funiculus of spinal cord (SCTID) - SCTID:362432005 + dorsal funiculus of spinal cord (SCTID) @@ -32477,20 +28946,7 @@ - lateral funiculus of spinal cord (SCTID) - SCTID:362434006 - - - - - - - - - - dorsal root of spinal cord (SCTID) - spinal nerve root (SCTID) - SCTID:362436008 + lateral funiculus of spinal cord (SCTID) @@ -32499,8 +28955,7 @@ - cervical spinal cord gray matter (SCTID) - SCTID:362438009 + cervical spinal cord gray matter (SCTID) @@ -32509,8 +28964,7 @@ - cervical spinal cord dorsal horn (SCTID) - SCTID:362439001 + cervical spinal cord dorsal horn (SCTID) @@ -32519,8 +28973,7 @@ - thoracic spinal cord gray matter (SCTID) - SCTID:362441000 + thoracic spinal cord gray matter (SCTID) @@ -32529,8 +28982,7 @@ - thoracic spinal cord dorsal horn (SCTID) - SCTID:362442007 + thoracic spinal cord dorsal horn (SCTID) @@ -32539,8 +28991,7 @@ - sacral division of spinal cord central canal (SCTID) - SCTID:362450003 + sacral division of spinal cord central canal (SCTID) @@ -32549,8 +29000,7 @@ - oculomotor nerve (SCTID) - SCTID:362456009 + oculomotor nerve (SCTID) @@ -32559,8 +29009,7 @@ - oculomotor nuclear complex (SCTID) - SCTID:362457000 + oculomotor nuclear complex (SCTID) @@ -32569,8 +29018,7 @@ - trigeminal nerve (SCTID) - SCTID:362459002 + trigeminal nerve (SCTID) @@ -32579,8 +29027,7 @@ - facial nerve (SCTID) - SCTID:362460007 + facial nerve (SCTID) @@ -32589,8 +29036,7 @@ - vestibular nucleus (SCTID) - SCTID:362462004 + vestibular nucleus (SCTID) @@ -32599,8 +29045,7 @@ - cochlear nucleus (SCTID) - SCTID:362463009 + cochlear nucleus (SCTID) @@ -32609,8 +29054,7 @@ - vestibular nerve (SCTID) - SCTID:362464003 + vestibular nerve (SCTID) @@ -32619,8 +29063,7 @@ - glossopharyngeal nerve (SCTID) - SCTID:362465002 + glossopharyngeal nerve (SCTID) @@ -32629,8 +29072,7 @@ - vagus nerve (SCTID) - SCTID:362466001 + vagus nerve (SCTID) @@ -32639,8 +29081,7 @@ - vagus nerve nucleus (SCTID) - SCTID:362467005 + vagus nerve nucleus (SCTID) @@ -32649,8 +29090,7 @@ - accessory XI nerve (SCTID) - SCTID:362469008 + accessory XI nerve (SCTID) @@ -32659,8 +29099,7 @@ - hypoglossal nerve (SCTID) - SCTID:362471008 + hypoglossal nerve (SCTID) @@ -32669,8 +29108,7 @@ - ansa cervicalis (SCTID) - SCTID:362474000 + ansa cervicalis (SCTID) @@ -32679,8 +29117,7 @@ - autonomic nervous system (SCTID) - SCTID:362481007 + autonomic nervous system (SCTID) @@ -32689,8 +29126,7 @@ - autonomic nerve plexus (SCTID) - SCTID:362482000 + autonomic nerve plexus (SCTID) @@ -32699,8 +29135,7 @@ - sympathetic nervous system (SCTID) - SCTID:362484004 + sympathetic nervous system (SCTID) @@ -32709,8 +29144,7 @@ - sympathetic ganglion (SCTID) - SCTID:362485003 + sympathetic ganglion (SCTID) @@ -32719,8 +29153,7 @@ - abdominal nerve plexus (SCTID) - SCTID:362491001 + abdominal nerve plexus (SCTID) @@ -32729,8 +29162,7 @@ - celiac ganglion (SCTID) - SCTID:362492008 + celiac ganglion (SCTID) @@ -32739,8 +29171,7 @@ - superior mesenteric plexus (SCTID) - SCTID:362493003 + superior mesenteric plexus (SCTID) @@ -32749,8 +29180,7 @@ - celiac nerve plexus (SCTID) - SCTID:362494009 + celiac nerve plexus (SCTID) @@ -32759,8 +29189,7 @@ - inferior mesenteric nerve plexus (SCTID) - SCTID:362495005 + inferior mesenteric nerve plexus (SCTID) @@ -32769,8 +29198,7 @@ - parasympathetic nervous system (SCTID) - SCTID:362496006 + parasympathetic nervous system (SCTID) @@ -32779,8 +29207,7 @@ - right eye (SCTID) - SCTID:362502000 + right eye (SCTID) @@ -32789,8 +29216,7 @@ - left eye (SCTID) - SCTID:362503005 + left eye (SCTID) @@ -32799,8 +29225,7 @@ - posterior chamber of eyeball (SCTID) - SCTID:362504004 + posterior chamber of eyeball (SCTID) @@ -32809,8 +29234,7 @@ - hyaloid canal (SCTID) - SCTID:362506002 + hyaloid canal (SCTID) @@ -32819,8 +29243,7 @@ - substantia propria of cornea (SCTID) - SCTID:362511000 + substantia propria of cornea (SCTID) @@ -32829,8 +29252,7 @@ - macula lutea (SCTID) - SCTID:362517001 + macula lutea (SCTID) @@ -32839,8 +29261,7 @@ - optic disc (SCTID) - SCTID:362518006 + optic disc (SCTID) @@ -32849,8 +29270,7 @@ - ocular fundus (SCTID) - SCTID:362519003 + ocular fundus (SCTID) @@ -32859,8 +29279,7 @@ - inner nuclear layer of retina (SCTID) - SCTID:362520009 + inner nuclear layer of retina (SCTID) @@ -32869,8 +29288,7 @@ - lens anterior epithelium (SCTID) - SCTID:362521008 + lens anterior epithelium (SCTID) @@ -32879,8 +29297,7 @@ - epithelium of lens (SCTID) - SCTID:362523006 + epithelium of lens (SCTID) @@ -32889,8 +29306,7 @@ - suspensory ligament of lens (SCTID) - SCTID:362524000 + suspensory ligament of lens (SCTID) @@ -32899,8 +29315,7 @@ - outer canthus (SCTID) - SCTID:362525004 + outer canthus (SCTID) @@ -32909,8 +29324,7 @@ - inner canthus (SCTID) - SCTID:362526003 + inner canthus (SCTID) @@ -32919,8 +29333,7 @@ - margin of eyelid (SCTID) - SCTID:362527007 + margin of eyelid (SCTID) @@ -32929,8 +29342,7 @@ - lower eyelid (SCTID) - SCTID:362528002 + lower eyelid (SCTID) @@ -32939,8 +29351,7 @@ - eyelid tarsus (SCTID) - SCTID:362529005 + eyelid tarsus (SCTID) @@ -32949,8 +29360,7 @@ - lacrimal caruncle (SCTID) - SCTID:362530000 + lacrimal caruncle (SCTID) @@ -32959,8 +29369,7 @@ - conjunctival sac (SCTID) - SCTID:362531001 + conjunctival sac (SCTID) @@ -32969,8 +29378,7 @@ - lacrimal papilla (SCTID) - SCTID:362533003 + lacrimal papilla (SCTID) @@ -32979,8 +29387,7 @@ - lacrimal sac (SCTID) - SCTID:362534009 + lacrimal sac (SCTID) @@ -32989,8 +29396,7 @@ - tragus (SCTID) - SCTID:362541003 + tragus (SCTID) @@ -32999,8 +29405,7 @@ - intertragic incisure (SCTID) - SCTID:362542005 + intertragic incisure (SCTID) @@ -33009,8 +29414,7 @@ - antitragus (SCTID) - SCTID:362543000 + antitragus (SCTID) @@ -33019,8 +29423,7 @@ - lobule of pinna (SCTID) - SCTID:362544006 + lobule of pinna (SCTID) @@ -33029,8 +29432,7 @@ - cymba conchae of pinna (SCTID) - SCTID:362545007 + cymba conchae of pinna (SCTID) @@ -33039,8 +29441,7 @@ - crus of ear (SCTID) - SCTID:362547004 + crus of ear (SCTID) @@ -33049,8 +29450,7 @@ - ligament of pinna (SCTID) - SCTID:362548009 + ligament of pinna (SCTID) @@ -33059,8 +29459,7 @@ - tympanic cavity (SCTID) - SCTID:362551002 + tympanic cavity (SCTID) @@ -33069,8 +29468,7 @@ - pars tensa of tympanic membrane (SCTID) - SCTID:362555006 + pars tensa of tympanic membrane (SCTID) @@ -33079,8 +29477,7 @@ - oval window (SCTID) - SCTID:362561009 + oval window (SCTID) @@ -33089,8 +29486,7 @@ - bony part of pharyngotympanic tube (SCTID) - SCTID:362563007 + bony part of pharyngotympanic tube (SCTID) @@ -33099,8 +29495,7 @@ - cartilage of pharyngotympanic tube (SCTID) - SCTID:362565000 + cartilage of pharyngotympanic tube (SCTID) @@ -33109,8 +29504,7 @@ - endolymphatic duct (SCTID) - SCTID:362567008 + endolymphatic duct (SCTID) @@ -33119,8 +29513,7 @@ - macula of utricle of membranous labyrinth (SCTID) - SCTID:362568003 + macula of utricle of membranous labyrinth (SCTID) @@ -33129,8 +29522,7 @@ - otolithic part of statoconial membrane (SCTID) - SCTID:362571006 + otolithic part of statoconial membrane (SCTID) @@ -33139,8 +29531,7 @@ - macula of saccule of membranous labyrinth (SCTID) - SCTID:362572004 + macula of saccule of membranous labyrinth (SCTID) @@ -33149,8 +29540,7 @@ - basilar membrane of cochlea (SCTID) - SCTID:362574003 + basilar membrane of cochlea (SCTID) @@ -33159,8 +29549,7 @@ - vestibular membrane of cochlear duct (SCTID) - SCTID:362575002 + vestibular membrane of cochlear duct (SCTID) @@ -33169,8 +29558,7 @@ - perilymphatic space (SCTID) - SCTID:362576001 + perilymphatic space (SCTID) @@ -33179,8 +29567,7 @@ - scala vestibuli (SCTID) - SCTID:362578000 + scala vestibuli (SCTID) @@ -33189,8 +29576,7 @@ - scala tympani (SCTID) - SCTID:362579008 + scala tympani (SCTID) @@ -33199,8 +29585,7 @@ - Rathke's pouch (SCTID) - SCTID:362583008 + Rathke's pouch (SCTID) @@ -33209,8 +29594,7 @@ - adrenal cortex (SCTID) - SCTID:362584002 + adrenal cortex (SCTID) @@ -33219,8 +29603,7 @@ - adrenal medulla (SCTID) - SCTID:362585001 + adrenal medulla (SCTID) @@ -33229,8 +29612,7 @@ - carotid body (SCTID) - SCTID:362586000 + carotid body (SCTID) @@ -33239,8 +29621,7 @@ - hematopoietic system (SCTID) - SCTID:362587009 + hematopoietic system (SCTID) @@ -33249,8 +29630,7 @@ - lymphoid system (SCTID) - SCTID:362589007 + lymphoid system (SCTID) @@ -33259,8 +29639,7 @@ - immune system (SCTID) - SCTID:362590003 + immune system (SCTID) @@ -33269,8 +29648,7 @@ - tonsillar fossa (SCTID) - SCTID:362596009 + tonsillar fossa (SCTID) @@ -33279,8 +29657,7 @@ - lymphatic part of lymphoid system (SCTID) - SCTID:362597000 + lymphatic part of lymphoid system (SCTID) @@ -33289,8 +29666,7 @@ - thoracic duct (SCTID) - SCTID:362600004 + thoracic duct (SCTID) @@ -33299,8 +29675,7 @@ - organ cavity (SCTID) - SCTID:362606005 + organ cavity (SCTID) @@ -33309,8 +29684,7 @@ - spino-olivary tract (SCTID) - SCTID:362607001 + spino-olivary tract (SCTID) @@ -33319,8 +29693,7 @@ - female organism (SCTID) - SCTID:362608006 + female organism (SCTID) @@ -33329,8 +29702,7 @@ - male organism (SCTID) - SCTID:362609003 + male organism (SCTID) @@ -33339,8 +29711,7 @@ - forehead (SCTID) - SCTID:362614004 + forehead (SCTID) @@ -33349,8 +29720,7 @@ - top of head (SCTID) - SCTID:362616002 + top of head (SCTID) @@ -33359,8 +29729,7 @@ - occipital region (SCTID) - SCTID:362618001 + occipital region (SCTID) @@ -33369,8 +29738,7 @@ - temporal part of head (SCTID) - SCTID:362620003 + temporal part of head (SCTID) @@ -33379,8 +29747,7 @@ - epicranium (SCTID) - SCTID:362625008 + epicranium (SCTID) @@ -33389,8 +29756,7 @@ - chin (SCTID) - SCTID:362632004 + chin (SCTID) @@ -33399,8 +29765,7 @@ - upper jaw region (SCTID) - SCTID:362636001 + upper jaw region (SCTID) @@ -33409,8 +29774,7 @@ - lower jaw region (SCTID) - SCTID:362637005 + lower jaw region (SCTID) @@ -33419,8 +29783,7 @@ - orbital margin (SCTID) - SCTID:362641009 + orbital margin (SCTID) @@ -33429,8 +29792,7 @@ - infraorbital margin (SCTID) - SCTID:362642002 + infraorbital margin (SCTID) @@ -33439,8 +29801,7 @@ - periorbital region (SCTID) - SCTID:362646004 + periorbital region (SCTID) @@ -33449,8 +29810,7 @@ - laryngeal prominence (SCTID) - SCTID:362648003 + laryngeal prominence (SCTID) @@ -33459,8 +29819,7 @@ - dorsal thoracic segment of trunk (SCTID) - SCTID:362666008 + dorsal thoracic segment of trunk (SCTID) @@ -33469,8 +29828,7 @@ - buttock (SCTID) - SCTID:362677002 + buttock (SCTID) @@ -33479,8 +29837,7 @@ - gluteal sulcus (SCTID) - SCTID:362679004 + gluteal sulcus (SCTID) @@ -33489,8 +29846,7 @@ - anal region (SCTID) - SCTID:362680001 + anal region (SCTID) @@ -33499,8 +29855,7 @@ - superior mediastinum (SCTID) - SCTID:362687003 + superior mediastinum (SCTID) @@ -33509,8 +29864,7 @@ - middle mediastinum (SCTID) - SCTID:362688008 + middle mediastinum (SCTID) @@ -33519,8 +29873,7 @@ - right crus of diaphragm (SCTID) - SCTID:362690009 + right crus of diaphragm (SCTID) @@ -33529,8 +29882,7 @@ - epigastrium (SCTID) - SCTID:362693006 + epigastrium (SCTID) @@ -33539,8 +29891,7 @@ - mons pubis (SCTID) - SCTID:362695004 + mons pubis (SCTID) @@ -33549,8 +29900,7 @@ - anterior abdominal wall (SCTID) - SCTID:362696003 + anterior abdominal wall (SCTID) @@ -33559,8 +29909,7 @@ - parietal peritoneum (SCTID) - SCTID:362700006 + parietal peritoneum (SCTID) @@ -33569,8 +29918,7 @@ - visceral peritoneum (SCTID) - SCTID:362702003 + visceral peritoneum (SCTID) @@ -33579,8 +29927,7 @@ - falciform ligament (SCTID) - SCTID:362705001 + falciform ligament (SCTID) @@ -33589,8 +29936,7 @@ - hepatoduodenal ligament (SCTID) - SCTID:362706000 + hepatoduodenal ligament (SCTID) @@ -33599,8 +29945,7 @@ - mesentery (SCTID) - SCTID:362707009 + mesentery (SCTID) @@ -33609,8 +29954,7 @@ - omentum (SCTID) - SCTID:362710002 + omentum (SCTID) @@ -33619,8 +29963,7 @@ - greater omentum (SCTID) - SCTID:362711003 + greater omentum (SCTID) @@ -33629,8 +29972,7 @@ - lesser omentum (SCTID) - SCTID:362712005 + lesser omentum (SCTID) @@ -33639,8 +29981,7 @@ - broad ligament of uterus (SCTID) - SCTID:362723009 + broad ligament of uterus (SCTID) @@ -33649,8 +29990,7 @@ - right inguinal part of abdomen (SCTID) - SCTID:362724003 + right inguinal part of abdomen (SCTID) @@ -33659,8 +29999,7 @@ - left inguinal part of abdomen (SCTID) - SCTID:362725002 + left inguinal part of abdomen (SCTID) @@ -33669,8 +30008,7 @@ - peritoneal vaginal process (SCTID) - SCTID:362726001 + peritoneal vaginal process (SCTID) @@ -33679,8 +30017,7 @@ - axilla (SCTID) - SCTID:362732006 + axilla (SCTID) @@ -33689,8 +30026,7 @@ - forelimb zeugopod (SCTID) - SCTID:362741001 + forelimb zeugopod (SCTID) @@ -33699,8 +30035,7 @@ - thenar eminence (SCTID) - SCTID:362748007 + thenar eminence (SCTID) @@ -33709,8 +30044,7 @@ - hypothenar eminence (SCTID) - SCTID:362749004 + hypothenar eminence (SCTID) @@ -33719,8 +30053,7 @@ - manual digit 2 (SCTID) - SCTID:362758006 + manual digit 2 (SCTID) @@ -33729,8 +30062,7 @@ - manual digit 3 (SCTID) - SCTID:362763005 + manual digit 3 (SCTID) @@ -33739,8 +30071,7 @@ - manual digit 4 (SCTID) - SCTID:362768001 + manual digit 4 (SCTID) @@ -33749,8 +30080,7 @@ - manual digit 5 (SCTID) - SCTID:362773007 + manual digit 5 (SCTID) @@ -33759,8 +30089,7 @@ - popliteal area (SCTID) - SCTID:362791002 + popliteal area (SCTID) @@ -33769,8 +30098,7 @@ - heel (SCTID) - SCTID:362804005 + heel (SCTID) @@ -33779,8 +30107,7 @@ - pedal digit 2 (SCTID) - SCTID:362817008 + pedal digit 2 (SCTID) @@ -33789,8 +30116,7 @@ - pedal digit 3 (SCTID) - SCTID:362821001 + pedal digit 3 (SCTID) @@ -33799,8 +30125,7 @@ - pedal digit 4 (SCTID) - SCTID:362826006 + pedal digit 4 (SCTID) @@ -33809,8 +30134,7 @@ - pedal digit 5 (SCTID) - SCTID:362830009 + pedal digit 5 (SCTID) @@ -33819,8 +30143,7 @@ - pedal acropodium region (SCTID) - SCTID:362835004 + pedal acropodium region (SCTID) @@ -33829,8 +30152,7 @@ - trophoblast (SCTID) - SCTID:362839005 + trophoblast (SCTID) @@ -33839,8 +30161,7 @@ - extraembryonic membrane (SCTID) - SCTID:362840007 + extraembryonic membrane (SCTID) @@ -33849,8 +30170,7 @@ - decidua basalis (SCTID) - SCTID:362841006 + decidua basalis (SCTID) @@ -33859,8 +30179,7 @@ - decidua (SCTID) - SCTID:362842004 + decidua (SCTID) @@ -33869,8 +30188,7 @@ - extraembryonic coelomic cavity (SCTID) - SCTID:362843009 + extraembryonic coelomic cavity (SCTID) @@ -33879,8 +30197,7 @@ - yolk sac (SCTID) - SCTID:362845002 + yolk sac (SCTID) @@ -33889,8 +30206,7 @@ - ectoderm (SCTID) - SCTID:362851007 + ectoderm (SCTID) @@ -33899,8 +30215,7 @@ - neural tube (SCTID) - SCTID:362852000 + neural tube (SCTID) @@ -33909,8 +30224,7 @@ - mesoderm (SCTID) - SCTID:362854004 + mesoderm (SCTID) @@ -33919,8 +30233,7 @@ - endoderm (SCTID) - SCTID:362855003 + endoderm (SCTID) @@ -33929,8 +30242,7 @@ - hindgut (SCTID) - SCTID:362856002 + hindgut (SCTID) @@ -33939,8 +30251,7 @@ - cloaca (SCTID) - SCTID:362857006 + cloaca (SCTID) @@ -33949,8 +30260,7 @@ - pharyngeal pouch 4 (SCTID) - SCTID:362858001 + pharyngeal pouch 4 (SCTID) @@ -33959,8 +30269,7 @@ - cardinal vein (SCTID) - SCTID:362860004 + cardinal vein (SCTID) @@ -33969,8 +30278,7 @@ - dental lamina (SCTID) - SCTID:362862007 + dental lamina (SCTID) @@ -33979,8 +30287,7 @@ - tooth enamel organ (SCTID) - SCTID:362863002 + tooth enamel organ (SCTID) @@ -33989,8 +30296,7 @@ - optic vesicle (SCTID) - SCTID:362864008 + optic vesicle (SCTID) @@ -33999,8 +30305,7 @@ - bony vertebral centrum (SCTID) - SCTID:362867001 + bony vertebral centrum (SCTID) @@ -34009,8 +30314,7 @@ - abdominal segment of trunk (SCTID) - SCTID:362875007 + abdominal segment of trunk (SCTID) @@ -34019,8 +30323,7 @@ - artery (SCTID) - SCTID:362877004 + artery (SCTID) @@ -34029,8 +30332,7 @@ - serous membrane (SCTID) - SCTID:362878009 + serous membrane (SCTID) @@ -34039,8 +30341,7 @@ - meningeal cluster (SCTID) - SCTID:362879001 + meningeal cluster (SCTID) @@ -34049,8 +30350,7 @@ - cerebral cortex (SCTID) - SCTID:362880003 + cerebral cortex (SCTID) @@ -34059,8 +30359,7 @@ - inferior nasal concha (SCTID) - SCTID:362882006 + inferior nasal concha (SCTID) @@ -34069,8 +30368,7 @@ - segment of pes (SCTID) - SCTID:362887000 + segment of pes (SCTID) @@ -34079,8 +30377,7 @@ - anatomical structure (SCTID) - SCTID:362889002 + anatomical structure (SCTID) @@ -34089,8 +30386,7 @@ - serous sac (SCTID) - SCTID:362890006 + serous sac (SCTID) @@ -34099,8 +30395,7 @@ - middle lobe of lung (SCTID) - SCTID:362900002 + middle lobe of lung (SCTID) @@ -34109,8 +30404,7 @@ - sesamoid bone (SCTID) - SCTID:362914002 + sesamoid bone (SCTID) @@ -34119,8 +30413,7 @@ - smooth muscle sphincter (SCTID) - SCTID:362915001 + smooth muscle sphincter (SCTID) @@ -34129,8 +30422,7 @@ - fibrous connective tissue (SCTID) - SCTID:363130003 + fibrous connective tissue (SCTID) @@ -34139,8 +30431,7 @@ - liver parenchyma (SCTID) - SCTID:363535004 + liver parenchyma (SCTID) @@ -34149,8 +30440,7 @@ - orbital fat pad (SCTID) - SCTID:363656009 + orbital fat pad (SCTID) @@ -34159,8 +30449,7 @@ - interphalangeal joint of pedal digit 1 (SCTID) - SCTID:363671008 + interphalangeal joint of pedal digit 1 (SCTID) @@ -34169,8 +30458,7 @@ - penis blood vessel (SCTID) - SCTID:363673006 + penis blood vessel (SCTID) @@ -34179,8 +30467,7 @@ - muscularis mucosae of small intestine (SCTID) - SCTID:36401004 + muscularis mucosae of small intestine (SCTID) @@ -34189,8 +30476,7 @@ - inner epithelial layer of tympanic membrane (SCTID) - SCTID:36411006 + inner epithelial layer of tympanic membrane (SCTID) @@ -34199,8 +30485,7 @@ - comb (SCTID) - SCTID:3643003 + comb (SCTID) @@ -34209,8 +30494,7 @@ - peritubular capillary plexus of kidney (SCTID) - SCTID:36447007 + peritubular capillary plexus of kidney (SCTID) @@ -34219,8 +30503,7 @@ - umbilical vein (SCTID) - SCTID:367567000 + umbilical vein (SCTID) @@ -34229,8 +30512,7 @@ - collection of eyelashes (SCTID) - SCTID:367575006 + collection of eyelashes (SCTID) @@ -34239,8 +30521,7 @@ - late embryonic stage (SCTID) - SCTID:367619004 + late embryonic stage (SCTID) @@ -34249,8 +30530,7 @@ - vein of lip (SCTID) - SCTID:367664002 + vein of lip (SCTID) @@ -34259,8 +30539,7 @@ - skin of prepuce of clitoris (SCTID) - SCTID:367670008 + skin of prepuce of clitoris (SCTID) @@ -34269,8 +30548,7 @@ - dorsal nerve of clitoris (SCTID) - SCTID:367687005 + dorsal nerve of clitoris (SCTID) @@ -34279,8 +30557,7 @@ - tunica vaginalis testis (SCTID) - SCTID:367713008 + tunica vaginalis testis (SCTID) @@ -34289,8 +30566,7 @@ - right testis (SCTID) - SCTID:367719007 + right testis (SCTID) @@ -34299,8 +30575,7 @@ - left testis (SCTID) - SCTID:367720001 + left testis (SCTID) @@ -34309,8 +30584,7 @@ - epididymal lumen (SCTID) - SCTID:367722009 + epididymal lumen (SCTID) @@ -34319,8 +30593,7 @@ - Guérin's valve (SCTID) - SCTID:367737008 + Guérin's valve (SCTID) @@ -34329,8 +30602,7 @@ - muscle of pelvic diaphragm (SCTID) - SCTID:367748001 + muscle of pelvic diaphragm (SCTID) @@ -34339,8 +30611,7 @@ - perineal body (SCTID) - SCTID:367754000 + perineal body (SCTID) @@ -34349,8 +30620,7 @@ - costal arch (SCTID) - SCTID:367767002 + costal arch (SCTID) @@ -34359,8 +30629,7 @@ - prezygapophysis of thoracic vertebra (SCTID) - SCTID:367801006 + prezygapophysis of thoracic vertebra (SCTID) @@ -34369,8 +30638,7 @@ - postzygapophysis of thoracic vertebra (SCTID) - SCTID:367814007 + postzygapophysis of thoracic vertebra (SCTID) @@ -34379,8 +30647,7 @@ - thoracic spinal cord lateral horn (SCTID) - SCTID:367875001 + thoracic spinal cord lateral horn (SCTID) @@ -34389,8 +30656,7 @@ - thoracic spinal cord ventral horn (SCTID) - SCTID:367876000 + thoracic spinal cord ventral horn (SCTID) @@ -34399,8 +30665,7 @@ - apex of thoracic spinal cord dorsal horn (SCTID) - SCTID:367877009 + apex of thoracic spinal cord dorsal horn (SCTID) @@ -34409,8 +30674,7 @@ - substantia gelatinosa of thoracic spinal cord dorsal horn (SCTID) - SCTID:367878004 + substantia gelatinosa of thoracic spinal cord dorsal horn (SCTID) @@ -34419,8 +30683,7 @@ - thoracic spinal cord white matter (SCTID) - SCTID:367881009 + thoracic spinal cord white matter (SCTID) @@ -34429,8 +30692,7 @@ - ventral nerve root of thoracic spinal cord (SCTID) - SCTID:367882002 + ventral nerve root of thoracic spinal cord (SCTID) @@ -34439,8 +30701,7 @@ - dorsal nerve root of thoracic spinal cord (SCTID) - SCTID:367883007 + dorsal nerve root of thoracic spinal cord (SCTID) @@ -34449,8 +30710,7 @@ - right renal artery (SCTID) - SCTID:36800007 + right renal artery (SCTID) @@ -34459,8 +30719,7 @@ - true rib (SCTID) - SCTID:368044009 + true rib (SCTID) @@ -34469,8 +30728,7 @@ - false rib (SCTID) - SCTID:368045005 + false rib (SCTID) @@ -34479,8 +30737,7 @@ - floating rib (SCTID) - SCTID:368046006 + floating rib (SCTID) @@ -34489,8 +30746,7 @@ - costal diaphragm (SCTID) - SCTID:368048007 + costal diaphragm (SCTID) @@ -34499,8 +30755,7 @@ - innermost intercostal muscle (SCTID) - SCTID:368054008 + innermost intercostal muscle (SCTID) @@ -34509,8 +30764,7 @@ - umbilical ring (SCTID) - SCTID:368065003 + umbilical ring (SCTID) @@ -34519,8 +30773,7 @@ - mesenchyme of umbilical cord (SCTID) - SCTID:368069009 + mesenchyme of umbilical cord (SCTID) @@ -34529,8 +30782,7 @@ - extraperitoneal space (SCTID) - SCTID:368076004 + extraperitoneal space (SCTID) @@ -34539,8 +30791,7 @@ - superficial epigastric artery (SCTID) - SCTID:368079006 + superficial epigastric artery (SCTID) @@ -34549,8 +30800,7 @@ - adductor muscle of hip (SCTID) - SCTID:368101007 + adductor muscle of hip (SCTID) @@ -34559,8 +30809,7 @@ - dorsum of nose (SCTID) - SCTID:368114008 + dorsum of nose (SCTID) @@ -34569,8 +30818,7 @@ - minor alar cartilage (SCTID) - SCTID:368118006 + minor alar cartilage (SCTID) @@ -34579,8 +30827,7 @@ - vomeronasal cartilage (SCTID) - SCTID:368123006 + vomeronasal cartilage (SCTID) @@ -34589,8 +30836,7 @@ - accessory nasal cartilage (SCTID) - SCTID:368124000 + accessory nasal cartilage (SCTID) @@ -34599,8 +30845,7 @@ - medial border of scapula (SCTID) - SCTID:368187009 + medial border of scapula (SCTID) @@ -34609,8 +30854,7 @@ - superior angle of scapula (SCTID) - SCTID:368188004 + superior angle of scapula (SCTID) @@ -34619,8 +30863,7 @@ - proximal epiphysis of phalanx of manual digit 2 (SCTID) - SCTID:368307004 + proximal epiphysis of phalanx of manual digit 2 (SCTID) @@ -34629,8 +30872,7 @@ - proximal epiphysis of phalanx of manual digit 4 (SCTID) - SCTID:368337008 + proximal epiphysis of phalanx of manual digit 4 (SCTID) @@ -34639,8 +30881,7 @@ - proximal epiphysis of phalanx of manual digit 5 (SCTID) - SCTID:368351008 + proximal epiphysis of phalanx of manual digit 5 (SCTID) @@ -34649,8 +30890,7 @@ - abductor pollicis muscle (SCTID) - SCTID:368422008 + abductor pollicis muscle (SCTID) @@ -34659,8 +30899,7 @@ - sesamoid bone of manus (SCTID) - SCTID:368448000 + sesamoid bone of manus (SCTID) @@ -34669,8 +30908,7 @@ - median basilic vein (SCTID) - SCTID:368496000 + median basilic vein (SCTID) @@ -34679,8 +30917,7 @@ - forelimb bone (SCTID) - SCTID:368532003 + forelimb bone (SCTID) @@ -34689,8 +30926,7 @@ - sella turcica (SCTID) - SCTID:368554001 + sella turcica (SCTID) @@ -34699,8 +30935,7 @@ - right external ear (SCTID) - SCTID:368567003 + right external ear (SCTID) @@ -34709,8 +30944,7 @@ - right ear (SCTID) - SCTID:368570004 + right ear (SCTID) @@ -34719,8 +30953,7 @@ - right lateral ventricle (SCTID) - SCTID:368571000 + right lateral ventricle (SCTID) @@ -34729,8 +30962,7 @@ - margin of tongue (SCTID) - SCTID:368572007 + margin of tongue (SCTID) @@ -34739,8 +30971,7 @@ - right pupil (SCTID) - SCTID:368575009 + right pupil (SCTID) @@ -34749,8 +30980,7 @@ - left external ear (SCTID) - SCTID:368589004 + left external ear (SCTID) @@ -34759,8 +30989,7 @@ - left ear (SCTID) - SCTID:368592000 + left ear (SCTID) @@ -34769,8 +30998,7 @@ - left lateral ventricle (SCTID) - SCTID:368593005 + left lateral ventricle (SCTID) @@ -34779,8 +31007,7 @@ - margin of tongue (SCTID) - SCTID:368594004 + margin of tongue (SCTID) @@ -34789,8 +31016,7 @@ - left pupil (SCTID) - SCTID:368597006 + left pupil (SCTID) @@ -34799,8 +31025,7 @@ - cerumen gland (SCTID) - SCTID:368648008 + cerumen gland (SCTID) @@ -34809,8 +31034,7 @@ - epicranial aponeurosis (SCTID) - SCTID:368677009 + epicranial aponeurosis (SCTID) @@ -34819,8 +31043,7 @@ - frontalis muscle belly (SCTID) - SCTID:368680005 + frontalis muscle belly (SCTID) @@ -34829,8 +31052,7 @@ - raphe of hard palate (SCTID) - SCTID:368683007 + raphe of hard palate (SCTID) @@ -34839,8 +31061,7 @@ - palatine bone horizontal plate (SCTID) - SCTID:368686004 + palatine bone horizontal plate (SCTID) @@ -34849,8 +31070,7 @@ - primary molar tooth (SCTID) - SCTID:368703003 + primary molar tooth (SCTID) @@ -34859,8 +31079,7 @@ - sublingual artery (SCTID) - SCTID:368706006 + sublingual artery (SCTID) @@ -34869,8 +31088,7 @@ - gustatory pore (SCTID) - SCTID:368724008 + gustatory pore (SCTID) @@ -34879,8 +31097,7 @@ - lingual septum (SCTID) - SCTID:368727001 + lingual septum (SCTID) @@ -34889,8 +31106,7 @@ - papilla of tongue (SCTID) - SCTID:368728006 + papilla of tongue (SCTID) @@ -34899,8 +31115,7 @@ - foramen cecum of tongue (SCTID) - SCTID:368738001 + foramen cecum of tongue (SCTID) @@ -34909,8 +31124,7 @@ - superior eyelid tarsus (SCTID) - SCTID:368773004 + superior eyelid tarsus (SCTID) @@ -34919,8 +31133,7 @@ - inferior eyelid tarsus (SCTID) - SCTID:368774005 + inferior eyelid tarsus (SCTID) @@ -34929,8 +31142,7 @@ - inferior tarsal muscle (SCTID) - SCTID:368783000 + inferior tarsal muscle (SCTID) @@ -34939,8 +31151,7 @@ - orbitalis muscle (SCTID) - SCTID:368790005 + orbitalis muscle (SCTID) @@ -34949,8 +31160,7 @@ - lacrimal lake (SCTID) - SCTID:368792002 + lacrimal lake (SCTID) @@ -34959,8 +31169,7 @@ - posterior ciliary vein (SCTID) - SCTID:368813004 + posterior ciliary vein (SCTID) @@ -34969,8 +31178,7 @@ - corneal epithelium (SCTID) - SCTID:368825001 + corneal epithelium (SCTID) @@ -34979,8 +31187,7 @@ - corneal endothelium (SCTID) - SCTID:368827009 + corneal endothelium (SCTID) @@ -34989,8 +31196,7 @@ - pars plana of ciliary body (SCTID) - SCTID:368830002 + pars plana of ciliary body (SCTID) @@ -34999,8 +31205,7 @@ - episcleral layer of eyeball (SCTID) - SCTID:368850003 + episcleral layer of eyeball (SCTID) @@ -35009,8 +31214,7 @@ - substantia propria of sclera (SCTID) - SCTID:368851004 + substantia propria of sclera (SCTID) @@ -35019,8 +31223,7 @@ - orbital septum (SCTID) - SCTID:368859002 + orbital septum (SCTID) @@ -35029,8 +31232,7 @@ - frontal process of maxilla (SCTID) - SCTID:368869008 + frontal process of maxilla (SCTID) @@ -35039,8 +31241,7 @@ - palatine process of maxilla (SCTID) - SCTID:368870009 + palatine process of maxilla (SCTID) @@ -35049,8 +31250,7 @@ - mandible neck (SCTID) - SCTID:368875004 + mandible neck (SCTID) @@ -35059,8 +31259,7 @@ - mandibular canal (SCTID) - SCTID:368876003 + mandibular canal (SCTID) @@ -35069,8 +31268,7 @@ - gland of nasal mucosa (SCTID) - SCTID:368881007 + gland of nasal mucosa (SCTID) @@ -35079,8 +31277,7 @@ - nasal hair (SCTID) - SCTID:368885003 + nasal hair (SCTID) @@ -35089,8 +31286,7 @@ - olfactory gland (SCTID) - SCTID:368891001 + olfactory gland (SCTID) @@ -35099,8 +31295,7 @@ - mucosa of maxillary sinus (SCTID) - SCTID:368908002 + mucosa of maxillary sinus (SCTID) @@ -35109,8 +31304,7 @@ - mucosa of frontal sinus (SCTID) - SCTID:368909005 + mucosa of frontal sinus (SCTID) @@ -35119,8 +31313,7 @@ - strand of hair of face (SCTID) - SCTID:368910000 + strand of hair of face (SCTID) @@ -35129,8 +31322,7 @@ - lateral process of malleus (SCTID) - SCTID:368921009 + lateral process of malleus (SCTID) @@ -35139,8 +31331,7 @@ - anterior process of malleus (SCTID) - SCTID:368922002 + anterior process of malleus (SCTID) @@ -35149,8 +31340,7 @@ - malleus head (SCTID) - SCTID:368926004 + malleus head (SCTID) @@ -35159,8 +31349,7 @@ - malleus neck (SCTID) - SCTID:368927008 + malleus neck (SCTID) @@ -35169,8 +31358,7 @@ - lenticular process of incus bone (SCTID) - SCTID:368928003 + lenticular process of incus bone (SCTID) @@ -35179,8 +31367,7 @@ - annular ligament of stapes (SCTID) - SCTID:368936007 + annular ligament of stapes (SCTID) @@ -35189,8 +31376,7 @@ - anterior part of tympanic bone (SCTID) - SCTID:368942006 + anterior part of tympanic bone (SCTID) @@ -35199,8 +31385,7 @@ - pharyngeal opening of pharyngotympanic tube (SCTID) - SCTID:368945008 + pharyngeal opening of pharyngotympanic tube (SCTID) @@ -35209,8 +31394,7 @@ - perilymphatic channel (SCTID) - SCTID:368950002 + perilymphatic channel (SCTID) @@ -35219,8 +31403,7 @@ - otolith (SCTID) - SCTID:368951003 + otolith (SCTID) @@ -35229,8 +31412,7 @@ - crista ampullaris (SCTID) - SCTID:368953000 + crista ampullaris (SCTID) @@ -35239,8 +31421,7 @@ - sulcus ampullaris (SCTID) - SCTID:368954006 + sulcus ampullaris (SCTID) @@ -35249,8 +31430,7 @@ - cochlear ganglion (SCTID) - SCTID:368955007 + cochlear ganglion (SCTID) @@ -35259,8 +31439,7 @@ - tectorial membrane of cochlea (SCTID) - SCTID:368960006 + tectorial membrane of cochlea (SCTID) @@ -35269,8 +31448,7 @@ - zona arcuata of basilar membrane of cochlea (SCTID) - SCTID:368961005 + zona arcuata of basilar membrane of cochlea (SCTID) @@ -35279,8 +31457,7 @@ - zona pectinata of basilar membrane of cochlea (SCTID) - SCTID:368962003 + zona pectinata of basilar membrane of cochlea (SCTID) @@ -35289,8 +31466,7 @@ - sphenozygomatic suture (SCTID) - SCTID:368980007 + sphenozygomatic suture (SCTID) @@ -35299,8 +31475,7 @@ - frontonasal suture (SCTID) - SCTID:368982004 + frontonasal suture (SCTID) @@ -35309,8 +31484,7 @@ - internasal suture (SCTID) - SCTID:368990004 + internasal suture (SCTID) @@ -35319,8 +31493,7 @@ - nasal suture (SCTID) - SCTID:368992007 + nasal suture (SCTID) @@ -35329,8 +31502,7 @@ - bone of jaw (SCTID) - SCTID:369003004 + bone of jaw (SCTID) @@ -35339,8 +31511,7 @@ - perpendicular plate of ethmoid (SCTID) - SCTID:369005006 + perpendicular plate of ethmoid (SCTID) @@ -35349,8 +31520,7 @@ - hyoid bone body (SCTID) - SCTID:369006007 + hyoid bone body (SCTID) @@ -35359,8 +31529,7 @@ - hyoid bone lesser horn (SCTID) - SCTID:369007003 + hyoid bone lesser horn (SCTID) @@ -35369,8 +31538,7 @@ - hyoid bone greater horn (SCTID) - SCTID:369008008 + hyoid bone greater horn (SCTID) @@ -35379,8 +31547,7 @@ - locus ceruleus (SCTID) - SCTID:369016004 + locus ceruleus (SCTID) @@ -35389,8 +31556,7 @@ - trapezoid body (SCTID) - SCTID:369019006 + trapezoid body (SCTID) @@ -35399,8 +31565,7 @@ - ventral nucleus of trapezoid body (SCTID) - SCTID:369020000 + ventral nucleus of trapezoid body (SCTID) @@ -35409,8 +31574,7 @@ - dorsal nucleus of trapezoid body (SCTID) - SCTID:369021001 + dorsal nucleus of trapezoid body (SCTID) @@ -35419,8 +31583,7 @@ - nucleus of lateral lemniscus (SCTID) - SCTID:369023003 + nucleus of lateral lemniscus (SCTID) @@ -35429,8 +31592,7 @@ - nucleus of superior olivary complex (SCTID) - SCTID:369024009 + nucleus of superior olivary complex (SCTID) @@ -35439,8 +31601,7 @@ - spinothalamic tract of pons (SCTID) - SCTID:369026006 + spinothalamic tract of pons (SCTID) @@ -35449,8 +31610,7 @@ - spinal trigeminal tract of pons (SCTID) - SCTID:369027002 + spinal trigeminal tract of pons (SCTID) @@ -35459,8 +31619,7 @@ - superior salivatory nucleus (SCTID) - SCTID:369028007 + superior salivatory nucleus (SCTID) @@ -35469,8 +31628,7 @@ - olivocochlear bundle (SCTID) - SCTID:369030009 + olivocochlear bundle (SCTID) @@ -35479,8 +31637,7 @@ - principal sensory nucleus of trigeminal nerve (SCTID) - SCTID:369031008 + principal sensory nucleus of trigeminal nerve (SCTID) @@ -35489,8 +31646,7 @@ - mesencephalic nucleus of trigeminal nerve (SCTID) - SCTID:369032001 + mesencephalic nucleus of trigeminal nerve (SCTID) @@ -35499,8 +31655,7 @@ - spinal nucleus of trigeminal nerve (SCTID) - SCTID:369033006 + spinal nucleus of trigeminal nerve (SCTID) @@ -35509,8 +31664,7 @@ - central tegmental tract (SCTID) - SCTID:369034000 + central tegmental tract (SCTID) @@ -35519,8 +31673,7 @@ - cerebellopontine angle (SCTID) - SCTID:369037007 + cerebellopontine angle (SCTID) @@ -35529,8 +31682,7 @@ - area postrema (SCTID) - SCTID:369039005 + area postrema (SCTID) @@ -35539,8 +31691,7 @@ - anterior quadrangular lobule (SCTID) - SCTID:369041006 + anterior quadrangular lobule (SCTID) @@ -35549,8 +31700,7 @@ - cerebellum vermis lobule VII (SCTID) - SCTID:369044003 + cerebellum vermis lobule VII (SCTID) @@ -35559,8 +31709,7 @@ - molecular layer of cerebellar cortex (SCTID) - SCTID:369045002 + molecular layer of cerebellar cortex (SCTID) @@ -35569,8 +31718,7 @@ - Purkinje cell layer of cerebellar cortex (SCTID) - SCTID:369046001 + Purkinje cell layer of cerebellar cortex (SCTID) @@ -35579,8 +31727,7 @@ - intraculminate fissure of cerebellum (SCTID) - SCTID:369052000 + intraculminate fissure of cerebellum (SCTID) @@ -35589,8 +31736,7 @@ - hilum of dentate nucleus (SCTID) - SCTID:369055003 + hilum of dentate nucleus (SCTID) @@ -35599,8 +31745,7 @@ - pyramidal decussation (SCTID) - SCTID:369058001 + pyramidal decussation (SCTID) @@ -35609,8 +31754,7 @@ - medullary reticular formation (SCTID) - SCTID:369059009 + medullary reticular formation (SCTID) @@ -35619,8 +31763,7 @@ - inferior olivary nucleus (SCTID) - SCTID:369066005 + inferior olivary nucleus (SCTID) @@ -35629,8 +31772,7 @@ - dorsal accessory inferior olivary nucleus (SCTID) - SCTID:369068006 + dorsal accessory inferior olivary nucleus (SCTID) @@ -35639,8 +31781,7 @@ - medial accessory inferior olivary nucleus (SCTID) - SCTID:369069003 + medial accessory inferior olivary nucleus (SCTID) @@ -35649,8 +31790,7 @@ - gracile nucleus (SCTID) - SCTID:369071003 + gracile nucleus (SCTID) @@ -35659,8 +31799,7 @@ - cuneate nucleus (SCTID) - SCTID:369072005 + cuneate nucleus (SCTID) @@ -35669,8 +31808,7 @@ - sublingual nucleus (SCTID) - SCTID:369076008 + sublingual nucleus (SCTID) @@ -35679,8 +31817,7 @@ - nucleus intercalatus (SCTID) - SCTID:369077004 + nucleus intercalatus (SCTID) @@ -35689,8 +31826,7 @@ - nucleus prepositus (SCTID) - SCTID:369078009 + nucleus prepositus (SCTID) @@ -35699,8 +31835,7 @@ - gracile fasciculus (SCTID) - SCTID:369079001 + gracile fasciculus (SCTID) @@ -35709,8 +31844,7 @@ - solitary tract nuclear complex (SCTID) - SCTID:369080003 + solitary tract nuclear complex (SCTID) @@ -35719,8 +31853,7 @@ - superior longitudinal fasciculus (SCTID) - SCTID:369082006 + superior longitudinal fasciculus (SCTID) @@ -35729,8 +31862,7 @@ - uncinate fasciculus (SCTID) - SCTID:369083001 + uncinate fasciculus (SCTID) @@ -35739,8 +31871,7 @@ - cingulum of brain (SCTID) - SCTID:369084007 + cingulum of brain (SCTID) @@ -35749,8 +31880,7 @@ - inferior longitudinal fasciculus (SCTID) - SCTID:369085008 + inferior longitudinal fasciculus (SCTID) @@ -35759,8 +31889,7 @@ - subcallosal fasciculus (SCTID) - SCTID:369086009 + subcallosal fasciculus (SCTID) @@ -35769,8 +31898,7 @@ - inferior occipitofrontal fasciculus (SCTID) - SCTID:369087000 + inferior occipitofrontal fasciculus (SCTID) @@ -35779,8 +31907,7 @@ - spinothalamic tract of midbrain (SCTID) - SCTID:369090006 + spinothalamic tract of midbrain (SCTID) @@ -35789,8 +31916,7 @@ - lateral corticospinal tract (SCTID) - SCTID:369091005 + lateral corticospinal tract (SCTID) @@ -35799,8 +31925,7 @@ - ventral corticospinal tract (SCTID) - SCTID:369092003 + ventral corticospinal tract (SCTID) @@ -35809,8 +31934,7 @@ - hippocampus alveus (SCTID) - SCTID:369094002 + hippocampus alveus (SCTID) @@ -35819,8 +31943,7 @@ - hippocampus fimbria (SCTID) - SCTID:369096000 + hippocampus fimbria (SCTID) @@ -35829,8 +31952,7 @@ - subiculum (SCTID) - SCTID:369097009 + subiculum (SCTID) @@ -35839,8 +31961,7 @@ - piriform cortex (SCTID) - SCTID:369098004 + piriform cortex (SCTID) @@ -35849,8 +31970,7 @@ - entorhinal cortex (SCTID) - SCTID:369099007 + entorhinal cortex (SCTID) @@ -35859,8 +31979,7 @@ - hippocampal sulcus (SCTID) - SCTID:369101000 + hippocampal sulcus (SCTID) @@ -35869,8 +31988,7 @@ - olfactory trigone (SCTID) - SCTID:369102007 + olfactory trigone (SCTID) @@ -35879,8 +31997,7 @@ - medial olfactory gyrus (SCTID) - SCTID:369103002 + medial olfactory gyrus (SCTID) @@ -35889,8 +32006,7 @@ - prepyriform area (SCTID) - SCTID:369104008 + prepyriform area (SCTID) @@ -35899,8 +32015,7 @@ - medial olfactory stria (SCTID) - SCTID:369105009 + medial olfactory stria (SCTID) @@ -35909,8 +32024,7 @@ - lateral olfactory stria (SCTID) - SCTID:369107001 + lateral olfactory stria (SCTID) @@ -35919,8 +32033,7 @@ - anterior perforated substance (SCTID) - SCTID:369108006 + anterior perforated substance (SCTID) @@ -35929,8 +32042,7 @@ - basal nucleus of telencephalon (SCTID) - SCTID:369109003 + basal nucleus of telencephalon (SCTID) @@ -35939,8 +32051,7 @@ - hippocampal commissure (SCTID) - SCTID:369115003 + hippocampal commissure (SCTID) @@ -35949,8 +32060,7 @@ - posterior column of fornix (SCTID) - SCTID:369116002 + posterior column of fornix (SCTID) @@ -35959,8 +32069,7 @@ - body of fornix (SCTID) - SCTID:369117006 + body of fornix (SCTID) @@ -35969,8 +32078,7 @@ - anterior commissure (SCTID) - SCTID:369119009 + anterior commissure (SCTID) @@ -35979,8 +32087,7 @@ - median eminence of neurohypophysis (SCTID) - SCTID:369121004 + median eminence of neurohypophysis (SCTID) @@ -35989,8 +32096,7 @@ - tuberomammillary nucleus (SCTID) - SCTID:369122006 + tuberomammillary nucleus (SCTID) @@ -35999,8 +32105,7 @@ - ventromedial nucleus of hypothalamus (SCTID) - SCTID:369124007 + ventromedial nucleus of hypothalamus (SCTID) @@ -36009,8 +32114,7 @@ - preoptic periventricular nucleus (SCTID) - SCTID:369127000 + preoptic periventricular nucleus (SCTID) @@ -36019,8 +32123,7 @@ - medial preoptic nucleus (SCTID) - SCTID:369128005 + medial preoptic nucleus (SCTID) @@ -36029,8 +32132,7 @@ - lateral preoptic nucleus (SCTID) - SCTID:369129002 + lateral preoptic nucleus (SCTID) @@ -36039,8 +32141,7 @@ - supraoptic nucleus (SCTID) - SCTID:369130007 + supraoptic nucleus (SCTID) @@ -36049,8 +32150,7 @@ - paraventricular nucleus of hypothalamus (SCTID) - SCTID:369131006 + paraventricular nucleus of hypothalamus (SCTID) @@ -36059,8 +32159,7 @@ - suprachiasmatic nucleus (SCTID) - SCTID:369132004 + suprachiasmatic nucleus (SCTID) @@ -36069,8 +32168,7 @@ - anterior nucleus of hypothalamus (SCTID) - SCTID:369133009 + anterior nucleus of hypothalamus (SCTID) @@ -36079,8 +32177,7 @@ - dorsomedial nucleus of hypothalamus (SCTID) - SCTID:369134003 + dorsomedial nucleus of hypothalamus (SCTID) @@ -36089,8 +32186,7 @@ - mammillothalamic tract of hypothalamus (SCTID) - SCTID:369139008 + mammillothalamic tract of hypothalamus (SCTID) @@ -36099,8 +32195,7 @@ - mammillotegmental axonal tract (SCTID) - SCTID:369140005 + mammillotegmental axonal tract (SCTID) @@ -36109,8 +32204,7 @@ - medial mammillary nucleus (SCTID) - SCTID:369141009 + medial mammillary nucleus (SCTID) @@ -36119,8 +32213,7 @@ - lateral mammillary nucleus (SCTID) - SCTID:369143007 + lateral mammillary nucleus (SCTID) @@ -36129,8 +32222,7 @@ - supramammillary nucleus (SCTID) - SCTID:369144001 + supramammillary nucleus (SCTID) @@ -36139,8 +32231,7 @@ - mammillary peduncle (SCTID) - SCTID:369146004 + mammillary peduncle (SCTID) @@ -36149,8 +32240,7 @@ - supramammillary commissure (SCTID) - SCTID:369148003 + supramammillary commissure (SCTID) @@ -36159,8 +32249,7 @@ - internal medullary lamina of thalamus (SCTID) - SCTID:369161003 + internal medullary lamina of thalamus (SCTID) @@ -36169,8 +32258,7 @@ - paraventricular nucleus of thalamus (SCTID) - SCTID:369163000 + paraventricular nucleus of thalamus (SCTID) @@ -36179,8 +32267,7 @@ - reuniens nucleus (SCTID) - SCTID:369164006 + reuniens nucleus (SCTID) @@ -36189,8 +32276,7 @@ - ventral posterolateral nucleus (SCTID) - SCTID:369171001 + ventral posterolateral nucleus (SCTID) @@ -36199,8 +32285,7 @@ - ventral posteromedial nucleus of thalamus (SCTID) - SCTID:369172008 + ventral posteromedial nucleus of thalamus (SCTID) @@ -36209,8 +32294,7 @@ - ventral posteroinferior nucleus (SCTID) - SCTID:369173003 + ventral posteroinferior nucleus (SCTID) @@ -36219,8 +32303,7 @@ - external medullary lamina of thalamus (SCTID) - SCTID:369179004 + external medullary lamina of thalamus (SCTID) @@ -36229,8 +32312,7 @@ - suprageniculate nucleus of thalamus (SCTID) - SCTID:369180001 + suprageniculate nucleus of thalamus (SCTID) @@ -36239,8 +32321,7 @@ - limitans nucleus (SCTID) - SCTID:369181002 + limitans nucleus (SCTID) @@ -36249,8 +32330,7 @@ - ventral thalamic fasciculus (SCTID) - SCTID:369185006 + ventral thalamic fasciculus (SCTID) @@ -36259,8 +32339,7 @@ - zona incerta (SCTID) - SCTID:369186007 + zona incerta (SCTID) @@ -36269,8 +32348,7 @@ - subthalamic fasciculus (SCTID) - SCTID:369187003 + subthalamic fasciculus (SCTID) @@ -36279,8 +32357,7 @@ - subcommissural organ (SCTID) - SCTID:369193006 + subcommissural organ (SCTID) @@ -36289,8 +32366,7 @@ - habenulo-interpeduncular tract (SCTID) - SCTID:369194000 + habenulo-interpeduncular tract (SCTID) @@ -36299,8 +32375,7 @@ - centrum semiovale (SCTID) - SCTID:369198002 + centrum semiovale (SCTID) @@ -36309,8 +32384,7 @@ - forceps minor of corpus callosum (SCTID) - SCTID:369199005 + forceps minor of corpus callosum (SCTID) @@ -36319,8 +32393,7 @@ - white matter of parietal lobe (SCTID) - SCTID:369200008 + white matter of parietal lobe (SCTID) @@ -36329,8 +32402,7 @@ - forceps major of corpus callosum (SCTID) - SCTID:369201007 + forceps major of corpus callosum (SCTID) @@ -36339,8 +32411,7 @@ - lateral medullary lamina of globus pallidus (SCTID) - SCTID:369204004 + lateral medullary lamina of globus pallidus (SCTID) @@ -36349,8 +32420,7 @@ - medial medullary lamina of globus pallidus (SCTID) - SCTID:369205003 + medial medullary lamina of globus pallidus (SCTID) @@ -36359,8 +32429,7 @@ - limen of insula (SCTID) - SCTID:369215009 + limen of insula (SCTID) @@ -36369,8 +32438,7 @@ - parietal cortex (SCTID) - SCTID:369217001 + parietal cortex (SCTID) @@ -36379,8 +32447,7 @@ - lateral occipital cortex (SCTID) - SCTID:369218006 + lateral occipital cortex (SCTID) @@ -36389,8 +32456,7 @@ - lateral occipital sulcus (SCTID) - SCTID:369219003 + lateral occipital sulcus (SCTID) @@ -36399,8 +32465,7 @@ - occipitotemporal sulcus (SCTID) - SCTID:369220009 + occipitotemporal sulcus (SCTID) @@ -36409,8 +32474,7 @@ - insular cortex (SCTID) - SCTID:369221008 + insular cortex (SCTID) @@ -36419,8 +32483,7 @@ - temporal operculum (SCTID) - SCTID:369222001 + temporal operculum (SCTID) @@ -36429,8 +32492,7 @@ - pallium (SCTID) - SCTID:369224000 + pallium (SCTID) @@ -36439,8 +32501,7 @@ - longitudinal fissure (SCTID) - SCTID:369225004 + longitudinal fissure (SCTID) @@ -36449,8 +32510,7 @@ - lateral sulcus (SCTID) - SCTID:369226003 + lateral sulcus (SCTID) @@ -36459,8 +32519,7 @@ - middle frontal sulcus (SCTID) - SCTID:369227007 + middle frontal sulcus (SCTID) @@ -36469,8 +32528,7 @@ - paracentral sulcus (SCTID) - SCTID:369228002 + paracentral sulcus (SCTID) @@ -36479,8 +32537,7 @@ - preoccipital notch (SCTID) - SCTID:369229005 + preoccipital notch (SCTID) @@ -36489,8 +32546,7 @@ - supracallosal gyrus (SCTID) - SCTID:369231001 + supracallosal gyrus (SCTID) @@ -36499,8 +32555,7 @@ - pineal corpora arenacea (SCTID) - SCTID:369232008 + pineal corpora arenacea (SCTID) @@ -36509,8 +32564,7 @@ - central gray substance of midbrain (SCTID) - SCTID:369233003 + central gray substance of midbrain (SCTID) @@ -36519,8 +32573,7 @@ - midbrain reticular formation (SCTID) - SCTID:369234009 + midbrain reticular formation (SCTID) @@ -36529,8 +32582,7 @@ - dorsolateral oculomotor nucleus (SCTID) - SCTID:369237002 + dorsolateral oculomotor nucleus (SCTID) @@ -36539,8 +32591,7 @@ - caudal central oculomotor nucleus (SCTID) - SCTID:369239004 + caudal central oculomotor nucleus (SCTID) @@ -36549,8 +32600,7 @@ - interpeduncular nucleus (SCTID) - SCTID:369240002 + interpeduncular nucleus (SCTID) @@ -36559,8 +32609,7 @@ - central tegmental tract of midbrain (SCTID) - SCTID:369243000 + central tegmental tract of midbrain (SCTID) @@ -36569,8 +32618,7 @@ - ventral tegmental nucleus (SCTID) - SCTID:369244006 + ventral tegmental nucleus (SCTID) @@ -36579,8 +32627,7 @@ - capsule of red nucleus (SCTID) - SCTID:369245007 + capsule of red nucleus (SCTID) @@ -36589,8 +32636,7 @@ - dorsal tegmental decussation (SCTID) - SCTID:369248009 + dorsal tegmental decussation (SCTID) @@ -36599,8 +32645,7 @@ - ventral tegmental decussation (SCTID) - SCTID:369249001 + ventral tegmental decussation (SCTID) @@ -36609,8 +32654,7 @@ - ventral nucleus of posterior commissure (SCTID) - SCTID:369250001 + ventral nucleus of posterior commissure (SCTID) @@ -36619,8 +32663,7 @@ - interstitial nucleus of Cajal (SCTID) - SCTID:369251002 + interstitial nucleus of Cajal (SCTID) @@ -36629,8 +32672,7 @@ - decussation of superior cerebellar peduncle (SCTID) - SCTID:369252009 + decussation of superior cerebellar peduncle (SCTID) @@ -36639,8 +32681,7 @@ - commissure of superior colliculus (SCTID) - SCTID:369258008 + commissure of superior colliculus (SCTID) @@ -36649,8 +32690,7 @@ - commissure of inferior colliculus (SCTID) - SCTID:369260005 + commissure of inferior colliculus (SCTID) @@ -36659,8 +32699,7 @@ - mesencephalic tract of trigeminal nerve (SCTID) - SCTID:369263007 + mesencephalic tract of trigeminal nerve (SCTID) @@ -36669,8 +32708,7 @@ - rubrospinal tract (SCTID) - SCTID:369264001 + rubrospinal tract (SCTID) @@ -36679,8 +32717,7 @@ - tectobulbar tract (SCTID) - SCTID:369265000 + tectobulbar tract (SCTID) @@ -36689,8 +32726,7 @@ - superior medullary velum (SCTID) - SCTID:369269006 + superior medullary velum (SCTID) @@ -36699,8 +32735,7 @@ - calcar avis of the lateral ventricle (SCTID) - SCTID:369271006 + calcar avis of the lateral ventricle (SCTID) @@ -36709,8 +32744,7 @@ - lateral ventricle ependyma (SCTID) - SCTID:369275002 + lateral ventricle ependyma (SCTID) @@ -36719,8 +32753,7 @@ - fourth ventricle ependyma (SCTID) - SCTID:369277005 + fourth ventricle ependyma (SCTID) @@ -36729,8 +32762,7 @@ - spinal cord ependyma (SCTID) - SCTID:369278000 + spinal cord ependyma (SCTID) @@ -36739,8 +32771,7 @@ - optic recess of third ventricle (SCTID) - SCTID:369279008 + optic recess of third ventricle (SCTID) @@ -36749,8 +32780,7 @@ - infundibular recess of 3rd ventricle (SCTID) - SCTID:369280006 + infundibular recess of 3rd ventricle (SCTID) @@ -36759,8 +32789,7 @@ - pineal recess of third ventricle (SCTID) - SCTID:369281005 + pineal recess of third ventricle (SCTID) @@ -36769,8 +32798,7 @@ - lateral recess of fourth ventricle (SCTID) - SCTID:369283008 + lateral recess of fourth ventricle (SCTID) @@ -36779,8 +32807,7 @@ - posterior spinocerebellar tract (SCTID) - SCTID:369284002 + posterior spinocerebellar tract (SCTID) @@ -36789,8 +32816,7 @@ - anterior spinocerebellar tract (SCTID) - SCTID:369285001 + anterior spinocerebellar tract (SCTID) @@ -36799,8 +32825,7 @@ - dorsolateral fasciculus of medulla (SCTID) - SCTID:369287009 + dorsolateral fasciculus of medulla (SCTID) @@ -36809,8 +32834,7 @@ - vestibulospinal tract (SCTID) - SCTID:369289007 + vestibulospinal tract (SCTID) @@ -36819,8 +32843,7 @@ - lateral palpebral artery (SCTID) - SCTID:369323008 + lateral palpebral artery (SCTID) @@ -36829,8 +32852,7 @@ - lacrimal artery (SCTID) - SCTID:369324002 + lacrimal artery (SCTID) @@ -36839,8 +32861,7 @@ - anterior meningeal artery (SCTID) - SCTID:369327009 + anterior meningeal artery (SCTID) @@ -36849,8 +32870,7 @@ - supraorbital artery (SCTID) - SCTID:369330002 + supraorbital artery (SCTID) @@ -36859,8 +32879,7 @@ - medial palpebral artery (SCTID) - SCTID:369331003 + medial palpebral artery (SCTID) @@ -36869,8 +32888,7 @@ - frontal artery (SCTID) - SCTID:369332005 + frontal artery (SCTID) @@ -36879,8 +32897,7 @@ - dorsal nasal artery (SCTID) - SCTID:369333000 + dorsal nasal artery (SCTID) @@ -36889,8 +32906,7 @@ - posterior choroidal artery (SCTID) - SCTID:369342007 + posterior choroidal artery (SCTID) @@ -36899,8 +32915,7 @@ - pharyngeal nerve plexus (SCTID) - SCTID:369429008 + pharyngeal nerve plexus (SCTID) @@ -36909,8 +32924,7 @@ - interparietal bone (SCTID) - SCTID:369438005 + interparietal bone (SCTID) @@ -36919,8 +32933,7 @@ - foramen rotundum (SCTID) - SCTID:369439002 + foramen rotundum (SCTID) @@ -36929,8 +32942,7 @@ - foramen spinosum of sphenoid bone (SCTID) - SCTID:369440000 + foramen spinosum of sphenoid bone (SCTID) @@ -36939,8 +32951,7 @@ - foramen ovale of skull (SCTID) - SCTID:369441001 + foramen ovale of skull (SCTID) @@ -36949,8 +32960,7 @@ - foramen lacerum (SCTID) - SCTID:369444009 + foramen lacerum (SCTID) @@ -36959,8 +32969,7 @@ - muscularis mucosa (SCTID) - SCTID:370140002 + muscularis mucosa (SCTID) @@ -36969,8 +32978,7 @@ - cloaca (SCTID) - SCTID:370631000 + cloaca (SCTID) @@ -36979,8 +32987,7 @@ - metacarpus region (SCTID) - SCTID:370638006 + metacarpus region (SCTID) @@ -36989,8 +32996,7 @@ - metatarsus region (SCTID) - SCTID:370639003 + metatarsus region (SCTID) @@ -36999,8 +33005,7 @@ - metapodium region (SCTID) - SCTID:370640001 + metapodium region (SCTID) @@ -37009,8 +33014,7 @@ - ceratohyal bone (SCTID) - SCTID:370641002 + ceratohyal bone (SCTID) @@ -37019,8 +33023,7 @@ - periventricular white matter (SCTID) - SCTID:37065005 + periventricular white matter (SCTID) @@ -37029,8 +33032,7 @@ - metacarpophalangeal joint (SCTID) - SCTID:370651001 + metacarpophalangeal joint (SCTID) @@ -37039,8 +33041,7 @@ - equine distal sesamoid (SCTID) - SCTID:370654009 + equine distal sesamoid (SCTID) @@ -37049,8 +33050,7 @@ - navicular bursa (SCTID) - SCTID:370660009 + navicular bursa (SCTID) @@ -37059,8 +33059,7 @@ - distal phalanx of digit 3 (SCTID) - SCTID:370666003 + distal phalanx of digit 3 (SCTID) @@ -37069,8 +33068,7 @@ - distal phalanx of digit 4 (SCTID) - SCTID:370667007 + distal phalanx of digit 4 (SCTID) @@ -37079,8 +33077,7 @@ - distal phalanx of digit 4 (SCTID) - SCTID:370670006 + distal phalanx of digit 4 (SCTID) @@ -37089,8 +33086,7 @@ - distal phalanx of digit 3 (SCTID) - SCTID:370671005 + distal phalanx of digit 3 (SCTID) @@ -37099,8 +33095,7 @@ - distal phalanx of pedal digit 3 (SCTID) - SCTID:370673008 + distal phalanx of pedal digit 3 (SCTID) @@ -37109,8 +33104,7 @@ - distal phalanx of manual digit 3 (SCTID) - SCTID:370674002 + distal phalanx of manual digit 3 (SCTID) @@ -37119,8 +33113,7 @@ - middle phalanx of digit 4 (SCTID) - SCTID:370675001 + middle phalanx of digit 4 (SCTID) @@ -37129,8 +33122,7 @@ - middle phalanx of digit 3 (SCTID) - SCTID:370676000 + middle phalanx of digit 3 (SCTID) @@ -37139,8 +33131,7 @@ - middle phalanx of pedal digit 3 (SCTID) - SCTID:370677009 + middle phalanx of pedal digit 3 (SCTID) @@ -37149,8 +33140,7 @@ - distal interphalangeal joint of manual digit 3 (SCTID) - SCTID:370683007 + distal interphalangeal joint of manual digit 3 (SCTID) @@ -37159,8 +33149,7 @@ - tympanohyoid cartilage (SCTID) - SCTID:370702008 + tympanohyoid cartilage (SCTID) @@ -37169,8 +33158,7 @@ - thyrohyoid bone (SCTID) - SCTID:370708007 + thyrohyoid bone (SCTID) @@ -37179,8 +33167,7 @@ - stylohyoid bone (SCTID) - SCTID:370715004 + stylohyoid bone (SCTID) @@ -37189,8 +33176,7 @@ - pastern region of limb (SCTID) - SCTID:370725009 + pastern region of limb (SCTID) @@ -37199,20 +33185,7 @@ - middle phalanx of manual digit 3 (SCTID) - SCTID:370729003 - - - - - - - - - - middle phalanx of digit 3 (SCTID) - short pastern bone (SCTID) - SCTID:370730008 + middle phalanx of manual digit 3 (SCTID) @@ -37221,20 +33194,7 @@ - proximal phalanx of digit 3 (SCTID) - SCTID:370732000 - - - - - - - - - - long pastern bone (SCTID) - proximal phalanx of digit 3 (SCTID) - SCTID:370733005 + proximal phalanx of digit 3 (SCTID) @@ -37243,8 +33203,7 @@ - proximal phalanx of pedal digit 3 (SCTID) - SCTID:370734004 + proximal phalanx of pedal digit 3 (SCTID) @@ -37253,8 +33212,7 @@ - proximal phalanx of manual digit 3 (SCTID) - SCTID:370735003 + proximal phalanx of manual digit 3 (SCTID) @@ -37263,8 +33221,7 @@ - navicular bursa of manus (SCTID) - SCTID:370736002 + navicular bursa of manus (SCTID) @@ -37273,8 +33230,7 @@ - distal sesamoid impar ligament (SCTID) - SCTID:370741005 + distal sesamoid impar ligament (SCTID) @@ -37283,8 +33239,7 @@ - hoof lamina (SCTID) - SCTID:370743008 + hoof lamina (SCTID) @@ -37293,8 +33248,7 @@ - metatarsophalangeal joint (SCTID) - SCTID:370752004 + metatarsophalangeal joint (SCTID) @@ -37303,8 +33257,7 @@ - ungulate coronary band (SCTID) - SCTID:370753009 + ungulate coronary band (SCTID) @@ -37313,8 +33266,7 @@ - distal interphalangeal joint of digit 3 (SCTID) - SCTID:370892008 + distal interphalangeal joint of digit 3 (SCTID) @@ -37323,8 +33275,7 @@ - comb and wattle (SCTID) - SCTID:37118002 + comb and wattle (SCTID) @@ -37333,8 +33284,7 @@ - middle phalanx of manus (SCTID) - SCTID:371230003 + middle phalanx of manus (SCTID) @@ -37343,8 +33293,7 @@ - parenchyma of pancreas (SCTID) - SCTID:371401008 + parenchyma of pancreas (SCTID) @@ -37353,8 +33302,7 @@ - parenchyma of thyroid gland (SCTID) - SCTID:371402001 + parenchyma of thyroid gland (SCTID) @@ -37363,8 +33311,7 @@ - nail plate (SCTID) - SCTID:372177002 + nail plate (SCTID) @@ -37373,8 +33320,7 @@ - chorion frondosum (SCTID) - SCTID:37333001 + chorion frondosum (SCTID) @@ -37383,8 +33329,7 @@ - alimentary part of gastrointestinal system (SCTID) - SCTID:373871007 + alimentary part of gastrointestinal system (SCTID) @@ -37393,8 +33338,7 @@ - Pacinian corpuscle (SCTID) - SCTID:37419002 + Pacinian corpuscle (SCTID) @@ -37403,8 +33347,7 @@ - muscularis mucosae of duodenum (SCTID) - SCTID:37457002 + muscularis mucosae of duodenum (SCTID) @@ -37413,8 +33356,7 @@ - ansa lenticularis (SCTID) - SCTID:37467007 + ansa lenticularis (SCTID) @@ -37423,8 +33365,7 @@ - olfactory epithelium (SCTID) - SCTID:37623003 + olfactory epithelium (SCTID) @@ -37433,8 +33374,7 @@ - fibrous joint (SCTID) - SCTID:37772004 + fibrous joint (SCTID) @@ -37443,8 +33383,7 @@ - unencapsulated tactile receptor (SCTID) - SCTID:38005009 + unencapsulated tactile receptor (SCTID) @@ -37453,8 +33392,7 @@ - venom gland duct (SCTID) - SCTID:38124005 + venom gland duct (SCTID) @@ -37463,8 +33401,7 @@ - motor nucleus of trigeminal nerve (SCTID) - SCTID:38390003 + motor nucleus of trigeminal nerve (SCTID) @@ -37473,8 +33410,7 @@ - common palmar digital artery (SCTID) - SCTID:38396009 + common palmar digital artery (SCTID) @@ -37483,8 +33419,7 @@ - Brodmann area (SCTID) - SCTID:384717008 + Brodmann area (SCTID) @@ -37493,8 +33428,7 @@ - regional part of brain (SCTID) - SCTID:384763002 + regional part of brain (SCTID) @@ -37503,8 +33437,7 @@ - Brodmann (1909) area 5 (SCTID) - SCTID:384764008 + Brodmann (1909) area 5 (SCTID) @@ -37513,8 +33446,7 @@ - Brodmann (1909) area 6 (SCTID) - SCTID:384765009 + Brodmann (1909) area 6 (SCTID) @@ -37523,8 +33455,7 @@ - Brodmann (1909) area 17 (SCTID) - SCTID:384772005 + Brodmann (1909) area 17 (SCTID) @@ -37533,8 +33464,7 @@ - Brodmann (1909) area 18 (SCTID) - SCTID:384773000 + Brodmann (1909) area 18 (SCTID) @@ -37543,8 +33473,7 @@ - Brodmann (1909) area 30 (SCTID) - SCTID:384784007 + Brodmann (1909) area 30 (SCTID) @@ -37553,8 +33482,7 @@ - Brodmann (1909) area 31 (SCTID) - SCTID:384785008 + Brodmann (1909) area 31 (SCTID) @@ -37563,8 +33491,7 @@ - Brodmann (1909) area 33 (SCTID) - SCTID:384788005 + Brodmann (1909) area 33 (SCTID) @@ -37573,8 +33500,7 @@ - Brodmann (1909) area 34 (SCTID) - SCTID:384789002 + Brodmann (1909) area 34 (SCTID) @@ -37583,8 +33509,7 @@ - Brodmann (1909) area 35 (SCTID) - SCTID:384790006 + Brodmann (1909) area 35 (SCTID) @@ -37593,8 +33518,7 @@ - Brodmann (1909) area 37 (SCTID) - SCTID:384792003 + Brodmann (1909) area 37 (SCTID) @@ -37603,8 +33527,7 @@ - Brodmann (1909) area 38 (SCTID) - SCTID:384793008 + Brodmann (1909) area 38 (SCTID) @@ -37613,8 +33536,7 @@ - Brodmann (1909) area 39 (SCTID) - SCTID:384794002 + Brodmann (1909) area 39 (SCTID) @@ -37623,8 +33545,7 @@ - Brodmann (1909) area 44 (SCTID) - SCTID:384803008 + Brodmann (1909) area 44 (SCTID) @@ -37633,8 +33554,7 @@ - Brodmann (1909) area 45 (SCTID) - SCTID:384805001 + Brodmann (1909) area 45 (SCTID) @@ -37643,8 +33563,7 @@ - Brodmann (1909) area 46 (SCTID) - SCTID:384806000 + Brodmann (1909) area 46 (SCTID) @@ -37653,8 +33572,7 @@ - Brodmann (1909) area 47 (SCTID) - SCTID:384807009 + Brodmann (1909) area 47 (SCTID) @@ -37663,8 +33581,7 @@ - Brodmann (1909) area 48 (SCTID) - SCTID:384808004 + Brodmann (1909) area 48 (SCTID) @@ -37673,8 +33590,7 @@ - Brodmann (1909) area 52 (SCTID) - SCTID:384809007 + Brodmann (1909) area 52 (SCTID) @@ -37683,8 +33599,7 @@ - small intestine Peyer's patch (SCTID) - SCTID:38986009 + small intestine Peyer's patch (SCTID) @@ -37693,8 +33608,7 @@ - skin of prepuce of penis (SCTID) - SCTID:39059001 + skin of prepuce of penis (SCTID) @@ -37703,8 +33617,7 @@ - adventitia of ureter (SCTID) - SCTID:392273001 + adventitia of ureter (SCTID) @@ -37713,8 +33626,7 @@ - hyaline cartilage tissue (SCTID) - SCTID:39298000 + hyaline cartilage tissue (SCTID) @@ -37723,8 +33635,7 @@ - osteoid (SCTID) - SCTID:39365008 + osteoid (SCTID) @@ -37733,8 +33644,7 @@ - pudendal vein (SCTID) - SCTID:395225000 + pudendal vein (SCTID) @@ -37743,8 +33653,7 @@ - outer epithelial layer of tympanic membrane (SCTID) - SCTID:39725007 + outer epithelial layer of tympanic membrane (SCTID) @@ -37753,8 +33662,7 @@ - soleal vein (SCTID) - SCTID:397427005 + soleal vein (SCTID) @@ -37763,8 +33671,7 @@ - foveola of retina (SCTID) - SCTID:399857002 + foveola of retina (SCTID) @@ -37773,8 +33680,7 @@ - apocrine sweat gland (SCTID) - SCTID:399916008 + apocrine sweat gland (SCTID) @@ -37783,8 +33689,7 @@ - tunica intima of artery (SCTID) - SCTID:40022005 + tunica intima of artery (SCTID) @@ -37793,8 +33698,7 @@ - squamous epithelium (SCTID) - SCTID:40118003 + squamous epithelium (SCTID) @@ -37803,8 +33707,7 @@ - mucosa of ureter (SCTID) - SCTID:40476001 + mucosa of ureter (SCTID) @@ -37813,8 +33716,7 @@ - cerebellar vein (SCTID) - SCTID:40693009 + cerebellar vein (SCTID) @@ -37823,8 +33725,7 @@ - endocrine gland (SCTID) - SCTID:40818001 + endocrine gland (SCTID) @@ -37833,8 +33734,7 @@ - umbilical blood vessel (SCTID) - SCTID:408728001 + umbilical blood vessel (SCTID) @@ -37843,8 +33743,7 @@ - diastema (SCTID) - SCTID:410003009 + diastema (SCTID) @@ -37853,8 +33752,7 @@ - hoof (SCTID) - SCTID:410026002 + hoof (SCTID) @@ -37863,20 +33761,7 @@ - feather (SCTID) - SCTID:410027006 - - - - - - - - - - abomasum (SCTID) - omasum (SCTID) - SCTID:410028001 + feather (SCTID) @@ -37885,8 +33770,7 @@ - distal phalanx of digit 3 (SCTID) - SCTID:410030004 + distal phalanx of digit 3 (SCTID) @@ -37895,8 +33779,7 @@ - antler (SCTID) - SCTID:410034008 + antler (SCTID) @@ -37905,8 +33788,7 @@ - hyoid apparatus (SCTID) - SCTID:410035009 + hyoid apparatus (SCTID) @@ -37915,8 +33797,7 @@ - enthesis (SCTID) - SCTID:410054009 + enthesis (SCTID) @@ -37925,8 +33806,7 @@ - gastrointestinal system mucosa (SCTID) - SCTID:410433007 + gastrointestinal system mucosa (SCTID) @@ -37935,8 +33815,7 @@ - Malpighian tubule (SCTID) - SCTID:41055008 + Malpighian tubule (SCTID) @@ -37945,8 +33824,7 @@ - deep brachial artery (SCTID) - SCTID:41065002 + deep brachial artery (SCTID) @@ -37955,8 +33833,7 @@ - skeletal ligament (SCTID) - SCTID:410744003 + skeletal ligament (SCTID) @@ -37965,8 +33842,7 @@ - nonskeletal ligament (SCTID) - SCTID:410746001 + nonskeletal ligament (SCTID) @@ -37975,8 +33851,7 @@ - snout (SCTID) - SCTID:41127006 + snout (SCTID) @@ -37985,8 +33860,7 @@ - medial ligament of ankle joint (SCTID) - SCTID:41159004 + medial ligament of ankle joint (SCTID) @@ -37995,8 +33869,7 @@ - elephant trunk (SCTID) - SCTID:41253007 + elephant trunk (SCTID) @@ -38005,8 +33878,7 @@ - duodenal gland (SCTID) - SCTID:41298001 + duodenal gland (SCTID) @@ -38015,8 +33887,7 @@ - blood feather (SCTID) - SCTID:413670006 + blood feather (SCTID) @@ -38025,8 +33896,7 @@ - zygomatic process of temporal bone (SCTID) - SCTID:414110008 + zygomatic process of temporal bone (SCTID) @@ -38035,8 +33905,7 @@ - Meissner's corpuscle (SCTID) - SCTID:41421000 + Meissner's corpuscle (SCTID) @@ -38045,8 +33914,7 @@ - Harderian gland (SCTID) - SCTID:41474005 + Harderian gland (SCTID) @@ -38055,8 +33923,7 @@ - pterygoid bone (SCTID) - SCTID:415639001 + pterygoid bone (SCTID) @@ -38065,8 +33932,7 @@ - pretectal nucleus (SCTID) - SCTID:416164009 + pretectal nucleus (SCTID) @@ -38075,8 +33941,7 @@ - pretectal region (SCTID) - SCTID:416333003 + pretectal region (SCTID) @@ -38085,8 +33950,7 @@ - pelvic complex (SCTID) - SCTID:416631005 + pelvic complex (SCTID) @@ -38095,8 +33959,7 @@ - pygostyle (SCTID) - SCTID:416894001 + pygostyle (SCTID) @@ -38105,8 +33968,7 @@ - pectoral fin (SCTID) - SCTID:416982006 + pectoral fin (SCTID) @@ -38115,8 +33977,7 @@ - dorsal fin (SCTID) - SCTID:417127006 + dorsal fin (SCTID) @@ -38125,8 +33986,7 @@ - short ciliary nerve (SCTID) - SCTID:417598000 + short ciliary nerve (SCTID) @@ -38135,20 +33995,7 @@ - stratum granulosum of epidermis (SCTID) - SCTID:418563001 - - - - - - - - - - hippocampus stratum lucidum (SCTID) - stratum lucidum of epidermis (SCTID) - SCTID:419156002 + stratum granulosum of epidermis (SCTID) @@ -38157,8 +34004,7 @@ - stratum basale of epidermis (SCTID) - SCTID:419481005 + stratum basale of epidermis (SCTID) @@ -38167,8 +34013,7 @@ - stratum spinosum of epidermis (SCTID) - SCTID:420086000 + stratum spinosum of epidermis (SCTID) @@ -38177,8 +34022,7 @@ - lower primary canine tooth (SCTID) - SCTID:420326009 + lower primary canine tooth (SCTID) @@ -38187,8 +34031,7 @@ - permanent molar tooth 2 (SCTID) - SCTID:420479003 + permanent molar tooth 2 (SCTID) @@ -38197,8 +34040,7 @@ - tunica media of vein (SCTID) - SCTID:42049001 + tunica media of vein (SCTID) @@ -38207,8 +34049,7 @@ - lower primary incisor tooth (SCTID) - SCTID:420793009 + lower primary incisor tooth (SCTID) @@ -38217,8 +34058,7 @@ - cuspid (SCTID) - SCTID:420817000 + cuspid (SCTID) @@ -38227,8 +34067,7 @@ - incisor tooth (SCTID) - SCTID:420856006 + incisor tooth (SCTID) @@ -38237,8 +34076,7 @@ - external ear (SCTID) - SCTID:420893000 + external ear (SCTID) @@ -38247,8 +34085,7 @@ - pinna (SCTID) - SCTID:421159007 + pinna (SCTID) @@ -38257,8 +34094,7 @@ - primary premolar tooth (SCTID) - SCTID:421227007 + primary premolar tooth (SCTID) @@ -38267,8 +34103,7 @@ - bone marrow (SCTID) - SCTID:421320006 + bone marrow (SCTID) @@ -38277,8 +34112,7 @@ - lower primary molar tooth (SCTID) - SCTID:421482001 + lower primary molar tooth (SCTID) @@ -38287,8 +34121,7 @@ - irregular bone (SCTID) - SCTID:421560006 + irregular bone (SCTID) @@ -38297,8 +34130,7 @@ - upper jaw incisor (SCTID) - SCTID:421578001 + upper jaw incisor (SCTID) @@ -38307,8 +34139,7 @@ - secondary molar tooth (SCTID) - SCTID:421593002 + secondary molar tooth (SCTID) @@ -38317,8 +34148,7 @@ - upper primary canine tooth (SCTID) - SCTID:421810006 + upper primary canine tooth (SCTID) @@ -38327,8 +34157,7 @@ - parasternal lymph node (SCTID) - SCTID:421997006 + parasternal lymph node (SCTID) @@ -38337,8 +34166,7 @@ - tooth of lower jaw (SCTID) - SCTID:422032003 + tooth of lower jaw (SCTID) @@ -38347,8 +34175,7 @@ - secondary premolar tooth (SCTID) - SCTID:422038004 + secondary premolar tooth (SCTID) @@ -38357,20 +34184,7 @@ - choroid plexus of fourth ventricle (SCTID) - SCTID:42214001 - - - - - - - - - - maxillary tooth (SCTID) - tooth of upper jaw (SCTID) - SCTID:422279005 + choroid plexus of fourth ventricle (SCTID) @@ -38379,8 +34193,7 @@ - upper primary molar tooth (SCTID) - SCTID:422318005 + upper primary molar tooth (SCTID) @@ -38389,8 +34202,7 @@ - central incisor tooth (SCTID) - SCTID:422364000 + central incisor tooth (SCTID) @@ -38399,8 +34211,7 @@ - lateral incisor tooth (SCTID) - SCTID:422366003 + lateral incisor tooth (SCTID) @@ -38409,8 +34220,7 @@ - premolar 1 (SCTID) - SCTID:422368002 + premolar 1 (SCTID) @@ -38419,8 +34229,7 @@ - premolar 2 (SCTID) - SCTID:422370006 + premolar 2 (SCTID) @@ -38429,8 +34238,7 @@ - molar tooth 1 (SCTID) - SCTID:422372003 + molar tooth 1 (SCTID) @@ -38439,8 +34247,7 @@ - molar tooth 2 (SCTID) - SCTID:422374002 + molar tooth 2 (SCTID) @@ -38449,8 +34256,7 @@ - inferior palpebral vein (SCTID) - SCTID:422559003 + inferior palpebral vein (SCTID) @@ -38459,20 +34265,7 @@ - deciduous molar tooth 2 (SCTID) - SCTID:422595006 - - - - - - - - - - epicardial fat (SCTID) - pericardial fat (SCTID) - SCTID:42267001 + deciduous molar tooth 2 (SCTID) @@ -38481,8 +34274,7 @@ - vein of upper lip (SCTID) - SCTID:422755007 + vein of upper lip (SCTID) @@ -38491,8 +34283,7 @@ - paratenial nucleus (SCTID) - SCTID:422800004 + paratenial nucleus (SCTID) @@ -38501,8 +34292,7 @@ - spinal nerve plexus (SCTID) - SCTID:42280003 + spinal nerve plexus (SCTID) @@ -38511,8 +34301,7 @@ - hippocampal formation (SCTID) - SCTID:422867004 + hippocampal formation (SCTID) @@ -38521,8 +34310,7 @@ - vein of lower lip (SCTID) - SCTID:422955002 + vein of lower lip (SCTID) @@ -38531,8 +34319,7 @@ - transverse temporal sulcus (SCTID) - SCTID:42387003 + transverse temporal sulcus (SCTID) @@ -38541,8 +34328,7 @@ - deciduous molar tooth 1 (SCTID) - SCTID:423890001 + deciduous molar tooth 1 (SCTID) @@ -38551,8 +34337,7 @@ - archicortex (SCTID) - SCTID:423918008 + archicortex (SCTID) @@ -38561,8 +34346,7 @@ - gustatory system (SCTID) - SCTID:423940004 + gustatory system (SCTID) @@ -38571,8 +34355,7 @@ - spinal cord white commissure (SCTID) - SCTID:423957000 + spinal cord white commissure (SCTID) @@ -38581,8 +34364,7 @@ - spinal cord ventral commissure (SCTID) - SCTID:424149007 + spinal cord ventral commissure (SCTID) @@ -38591,8 +34373,7 @@ - prezygapophysis (SCTID) - SCTID:42424006 + prezygapophysis (SCTID) @@ -38601,8 +34382,7 @@ - vaginal vein (SCTID) - SCTID:424336009 + vaginal vein (SCTID) @@ -38611,8 +34391,7 @@ - posterior nuclear complex of thalamus (SCTID) - SCTID:424395006 + posterior nuclear complex of thalamus (SCTID) @@ -38621,8 +34400,7 @@ - spinal cord dorsal white commissure (SCTID) - SCTID:424400007 + spinal cord dorsal white commissure (SCTID) @@ -38631,8 +34409,7 @@ - neural lobe of neurohypophysis (SCTID) - SCTID:424523008 + neural lobe of neurohypophysis (SCTID) @@ -38641,8 +34418,7 @@ - posterior nucleus of thalamus (SCTID) - SCTID:424901000 + posterior nucleus of thalamus (SCTID) @@ -38651,8 +34427,7 @@ - pituitary stalk (SCTID) - SCTID:425300001 + pituitary stalk (SCTID) @@ -38661,8 +34436,7 @@ - bone tissue of long bone (SCTID) - SCTID:425475006 + bone tissue of long bone (SCTID) @@ -38671,8 +34445,7 @@ - metacarpal bone (SCTID) - SCTID:425761003 + metacarpal bone (SCTID) @@ -38681,8 +34454,7 @@ - pelvic girdle bone/zone (SCTID) - SCTID:426214007 + pelvic girdle bone/zone (SCTID) @@ -38691,8 +34463,7 @@ - skeletal muscle tissue (SCTID) - SCTID:426215008 + skeletal muscle tissue (SCTID) @@ -38701,8 +34472,7 @@ - nucleus of brain (SCTID) - SCTID:426465002 + nucleus of brain (SCTID) @@ -38711,8 +34481,7 @@ - thoracic segment bone (SCTID) - SCTID:426649006 + thoracic segment bone (SCTID) @@ -38721,8 +34490,7 @@ - manus bone (SCTID) - SCTID:426741001 + manus bone (SCTID) @@ -38731,8 +34499,7 @@ - trunk bone (SCTID) - SCTID:427358002 + trunk bone (SCTID) @@ -38741,8 +34508,7 @@ - zygomatic process of frontal bone (SCTID) - SCTID:427577001 + zygomatic process of frontal bone (SCTID) @@ -38751,8 +34517,7 @@ - nucleus accumbens (SCTID) - SCTID:427667007 + nucleus accumbens (SCTID) @@ -38761,8 +34526,7 @@ - synchondrosis (SCTID) - SCTID:42903008 + synchondrosis (SCTID) @@ -38771,8 +34535,7 @@ - colonic epithelium (SCTID) - SCTID:42978003 + colonic epithelium (SCTID) @@ -38781,8 +34544,7 @@ - pulmonary vein (SCTID) - SCTID:430160002 + pulmonary vein (SCTID) @@ -38791,8 +34553,7 @@ - inferior vesical artery (SCTID) - SCTID:43210002 + inferior vesical artery (SCTID) @@ -38801,8 +34562,7 @@ - mesencephalic vein (SCTID) - SCTID:43225002 + mesencephalic vein (SCTID) @@ -38811,8 +34571,7 @@ - lumen of gastrointestinal system (SCTID) - SCTID:432899004 + lumen of gastrointestinal system (SCTID) @@ -38821,8 +34580,7 @@ - rumen papilla (SCTID) - SCTID:43386000 + rumen papilla (SCTID) @@ -38831,8 +34589,7 @@ - abdominal air sac (SCTID) - SCTID:43701009 + abdominal air sac (SCTID) @@ -38841,8 +34598,7 @@ - mucosa of sphenoidal sinus (SCTID) - SCTID:43774000 + mucosa of sphenoidal sinus (SCTID) @@ -38851,8 +34607,7 @@ - interdigital gland (SCTID) - SCTID:441008 + interdigital gland (SCTID) @@ -38861,8 +34616,7 @@ - submucosa of trachea (SCTID) - SCTID:4419000 + submucosa of trachea (SCTID) @@ -38871,8 +34625,7 @@ - vertebral column (SCTID) - SCTID:44300000 + vertebral column (SCTID) @@ -38881,8 +34634,7 @@ - anterior temporal artery (SCTID) - SCTID:44310009 + anterior temporal artery (SCTID) @@ -38891,8 +34643,7 @@ - intermediate layer of tympanic membrane (SCTID) - SCTID:44692008 + intermediate layer of tympanic membrane (SCTID) @@ -38901,8 +34652,7 @@ - naso-frontal vein (SCTID) - SCTID:44840002 + naso-frontal vein (SCTID) @@ -38911,8 +34661,7 @@ - posterior parietal artery (SCTID) - SCTID:44894007 + posterior parietal artery (SCTID) @@ -38921,8 +34670,7 @@ - rumen (SCTID) - SCTID:45138000 + rumen (SCTID) @@ -38931,8 +34679,7 @@ - epithelium of small intestine (SCTID) - SCTID:45480009 + epithelium of small intestine (SCTID) @@ -38941,8 +34688,7 @@ - scleral ossicle (SCTID) - SCTID:45632000 + scleral ossicle (SCTID) @@ -38951,8 +34697,7 @@ - cystic lymph node (SCTID) - SCTID:46081008 + cystic lymph node (SCTID) @@ -38961,8 +34706,7 @@ - costodiaphragmatic recess (SCTID) - SCTID:46297007 + costodiaphragmatic recess (SCTID) @@ -38971,8 +34715,7 @@ - bony pelvis (SCTID) - SCTID:46633002 + bony pelvis (SCTID) @@ -38981,8 +34724,7 @@ - unmyelinated nerve fiber (SCTID) - SCTID:46920005 + unmyelinated nerve fiber (SCTID) @@ -38991,8 +34733,7 @@ - acinus of parotid gland (SCTID) - SCTID:46926004 + acinus of parotid gland (SCTID) @@ -39001,8 +34742,7 @@ - ileal epithelium (SCTID) - SCTID:47046000 + ileal epithelium (SCTID) @@ -39011,8 +34751,7 @@ - antler velvet (SCTID) - SCTID:47282002 + antler velvet (SCTID) @@ -39021,8 +34760,7 @@ - zona reticularis of adrenal gland (SCTID) - SCTID:47325000 + zona reticularis of adrenal gland (SCTID) @@ -39031,8 +34769,7 @@ - hypoglossal nucleus (SCTID) - SCTID:47361005 + hypoglossal nucleus (SCTID) @@ -39041,8 +34778,7 @@ - submucosa of laryngopharynx (SCTID) - SCTID:47496006 + submucosa of laryngopharynx (SCTID) @@ -39051,8 +34787,7 @@ - esophagus muscularis mucosa (SCTID) - SCTID:47720007 + esophagus muscularis mucosa (SCTID) @@ -39061,8 +34796,7 @@ - adventitia of ureter (SCTID) - SCTID:47879001 + adventitia of ureter (SCTID) @@ -39071,8 +34805,7 @@ - chiasmatic cistern (SCTID) - SCTID:47947006 + chiasmatic cistern (SCTID) @@ -39081,8 +34814,7 @@ - superficial external pudendal artery (SCTID) - SCTID:47954000 + superficial external pudendal artery (SCTID) @@ -39091,8 +34823,7 @@ - aorta tunica media (SCTID) - SCTID:48467007 + aorta tunica media (SCTID) @@ -39101,8 +34832,7 @@ - ligament of liver (SCTID) - SCTID:48536008 + ligament of liver (SCTID) @@ -39111,8 +34841,7 @@ - uropygial gland (SCTID) - SCTID:48626006 + uropygial gland (SCTID) @@ -39121,8 +34850,7 @@ - lateral pterygoid nerve (SCTID) - SCTID:48852002 + lateral pterygoid nerve (SCTID) @@ -39131,8 +34859,7 @@ - air sac (SCTID) - SCTID:49081009 + air sac (SCTID) @@ -39141,8 +34868,7 @@ - yellow bone marrow (SCTID) - SCTID:5023006 + yellow bone marrow (SCTID) @@ -39151,8 +34877,7 @@ - carotid sinus nerve (SCTID) - SCTID:50624003 + carotid sinus nerve (SCTID) @@ -39161,8 +34886,7 @@ - superficial lateral cervical lymph node (SCTID) - SCTID:50679006 + superficial lateral cervical lymph node (SCTID) @@ -39171,8 +34895,7 @@ - dento-alveolar joint (SCTID) - SCTID:50870008 + dento-alveolar joint (SCTID) @@ -39181,8 +34904,7 @@ - primitive urogenital sinus (SCTID) - SCTID:50961009 + primitive urogenital sinus (SCTID) @@ -39191,8 +34913,7 @@ - epidermal-dermal junction (SCTID) - SCTID:51025007 + epidermal-dermal junction (SCTID) @@ -39201,8 +34922,7 @@ - mandible head (SCTID) - SCTID:51354009 + mandible head (SCTID) @@ -39211,8 +34931,7 @@ - primary incisor tooth (SCTID) - SCTID:51528000 + primary incisor tooth (SCTID) @@ -39221,8 +34940,7 @@ - paraflocculus (SCTID) - SCTID:51969002 + paraflocculus (SCTID) @@ -39231,8 +34949,7 @@ - deep anterior cervical lymph node (SCTID) - SCTID:52363008 + deep anterior cervical lymph node (SCTID) @@ -39241,8 +34958,7 @@ - submucosa of stomach (SCTID) - SCTID:52459002 + submucosa of stomach (SCTID) @@ -39251,8 +34967,7 @@ - crypt of Lieberkuhn of small intestine (SCTID) - SCTID:52688008 + crypt of Lieberkuhn of small intestine (SCTID) @@ -39261,8 +34976,7 @@ - dorsal motor nucleus of vagus nerve (SCTID) - SCTID:52884007 + dorsal motor nucleus of vagus nerve (SCTID) @@ -39271,8 +34985,7 @@ - Ruffini nerve ending (SCTID) - SCTID:53140000 + Ruffini nerve ending (SCTID) @@ -39281,8 +34994,7 @@ - tooth bud (SCTID) - SCTID:53301001 + tooth bud (SCTID) @@ -39291,8 +35003,7 @@ - muscularis mucosae of rectum (SCTID) - SCTID:53420003 + muscularis mucosae of rectum (SCTID) @@ -39301,8 +35012,7 @@ - right testicular vein (SCTID) - SCTID:53500001 + right testicular vein (SCTID) @@ -39311,8 +35021,7 @@ - lateral thoracic vein (SCTID) - SCTID:53595001 + lateral thoracic vein (SCTID) @@ -39321,8 +35030,7 @@ - cornual diverticulum (SCTID) - SCTID:53994006 + cornual diverticulum (SCTID) @@ -39331,8 +35039,7 @@ - tusk (SCTID) - SCTID:54040005 + tusk (SCTID) @@ -39341,8 +35048,7 @@ - small intestine smooth muscle circular layer (SCTID) - SCTID:54658003 + small intestine smooth muscle circular layer (SCTID) @@ -39351,8 +35057,7 @@ - middle hepatic vein (SCTID) - SCTID:54895000 + middle hepatic vein (SCTID) @@ -39361,8 +35066,7 @@ - venous dural sinus (SCTID) - SCTID:54944003 + venous dural sinus (SCTID) @@ -39371,8 +35075,7 @@ - anterior cerebral vein (SCTID) - SCTID:55155007 + anterior cerebral vein (SCTID) @@ -39381,8 +35084,7 @@ - left hepatic vein (SCTID) - SCTID:55188000 + left hepatic vein (SCTID) @@ -39391,8 +35093,7 @@ - deep dorsal vein of penis (SCTID) - SCTID:55433007 + deep dorsal vein of penis (SCTID) @@ -39401,8 +35102,7 @@ - adipose tissue (SCTID) - SCTID:55603005 + adipose tissue (SCTID) @@ -39411,8 +35111,7 @@ - zona fasciculata of adrenal gland (SCTID) - SCTID:56069004 + zona fasciculata of adrenal gland (SCTID) @@ -39421,8 +35120,7 @@ - quadrigeminal cistern (SCTID) - SCTID:56154003 + quadrigeminal cistern (SCTID) @@ -39431,8 +35129,7 @@ - tonsillar ring (SCTID) - SCTID:56411004 + tonsillar ring (SCTID) @@ -39441,8 +35138,7 @@ - esophageal artery (SCTID) - SCTID:56548006 + esophageal artery (SCTID) @@ -39451,8 +35147,7 @@ - lenticular fasciculus (SCTID) - SCTID:5677006 + lenticular fasciculus (SCTID) @@ -39461,8 +35156,7 @@ - ungulate coronary band (SCTID) - SCTID:5695009 + ungulate coronary band (SCTID) @@ -39471,8 +35165,7 @@ - cardiac ganglion (SCTID) - SCTID:57098005 + cardiac ganglion (SCTID) @@ -39481,8 +35174,7 @@ - jejunal epithelium (SCTID) - SCTID:57300004 + jejunal epithelium (SCTID) @@ -39491,8 +35183,7 @@ - endosteum (SCTID) - SCTID:57487002 + endosteum (SCTID) @@ -39501,8 +35192,7 @@ - prezygapophysis of cervical vertebra (SCTID) - SCTID:57767002 + prezygapophysis of cervical vertebra (SCTID) @@ -39511,8 +35201,7 @@ - urothelium (SCTID) - SCTID:57789003 + urothelium (SCTID) @@ -39521,8 +35210,7 @@ - reticular tissue (SCTID) - SCTID:57987007 + reticular tissue (SCTID) @@ -39531,8 +35219,7 @@ - embryo (SCTID) - SCTID:57991002 + embryo (SCTID) @@ -39541,8 +35228,7 @@ - plantar part of pes (SCTID) - SCTID:57999000 + plantar part of pes (SCTID) @@ -39551,8 +35237,7 @@ - pterygopalatine nerve (SCTID) - SCTID:58267004 + pterygopalatine nerve (SCTID) @@ -39561,8 +35246,7 @@ - cartilaginous joint (SCTID) - SCTID:58442004 + cartilaginous joint (SCTID) @@ -39571,8 +35255,7 @@ - serosa of urinary bladder (SCTID) - SCTID:5868002 + serosa of urinary bladder (SCTID) @@ -39581,8 +35264,7 @@ - filiform papilla (SCTID) - SCTID:58743008 + filiform papilla (SCTID) @@ -39591,8 +35273,7 @@ - small intestine smooth muscle longitudinal layer (SCTID) - SCTID:59150006 + small intestine smooth muscle longitudinal layer (SCTID) @@ -39601,8 +35282,7 @@ - posterior external jugular vein (SCTID) - SCTID:59579009 + posterior external jugular vein (SCTID) @@ -39611,8 +35291,7 @@ - molar gland (SCTID) - SCTID:59637006 + molar gland (SCTID) @@ -39621,8 +35300,7 @@ - tunica adventitia of blood vessel (SCTID) - SCTID:61066005 + tunica adventitia of blood vessel (SCTID) @@ -39631,8 +35309,7 @@ - mucoid tissue (SCTID) - SCTID:61115003 + mucoid tissue (SCTID) @@ -39641,8 +35318,7 @@ - Rathke's pouch (SCTID) - SCTID:61127000 + Rathke's pouch (SCTID) @@ -39651,8 +35327,7 @@ - choroid plexus of third ventricle (SCTID) - SCTID:61576002 + choroid plexus of third ventricle (SCTID) @@ -39661,8 +35336,7 @@ - postzygapophysis of cervical vertebra (SCTID) - SCTID:61633005 + postzygapophysis of cervical vertebra (SCTID) @@ -39671,8 +35345,7 @@ - submucosa of colon (SCTID) - SCTID:61647009 + submucosa of colon (SCTID) @@ -39681,8 +35354,7 @@ - tunica media (SCTID) - SCTID:61695000 + tunica media (SCTID) @@ -39691,8 +35363,7 @@ - deep lateral cervical lymph node (SCTID) - SCTID:61755005 + deep lateral cervical lymph node (SCTID) @@ -39701,8 +35372,7 @@ - trabecula of spleen (SCTID) - SCTID:61987002 + trabecula of spleen (SCTID) @@ -39711,8 +35381,7 @@ - parvocellular oculomotor nucleus (SCTID) - SCTID:62088007 + parvocellular oculomotor nucleus (SCTID) @@ -39721,8 +35390,7 @@ - postcapillary venule (SCTID) - SCTID:6216007 + postcapillary venule (SCTID) @@ -39731,8 +35399,7 @@ - cervical air sac (SCTID) - SCTID:62426003 + cervical air sac (SCTID) @@ -39741,8 +35408,7 @@ - interlobar artery (SCTID) - SCTID:62802007 + interlobar artery (SCTID) @@ -39751,8 +35417,7 @@ - perimysium (SCTID) - SCTID:63406008 + perimysium (SCTID) @@ -39761,8 +35426,7 @@ - fourth ventricle lateral aperture (SCTID) - SCTID:63426007 + fourth ventricle lateral aperture (SCTID) @@ -39771,8 +35435,7 @@ - lamina propria of small intestine (SCTID) - SCTID:63588008 + lamina propria of small intestine (SCTID) @@ -39781,8 +35444,7 @@ - corneo-scleral junction (SCTID) - SCTID:63716004 + corneo-scleral junction (SCTID) @@ -39791,8 +35453,7 @@ - proventriculus (SCTID) - SCTID:63897003 + proventriculus (SCTID) @@ -39801,8 +35462,7 @@ - antitragicus muscle (SCTID) - SCTID:63899000 + antitragicus muscle (SCTID) @@ -39811,8 +35471,7 @@ - plastron (SCTID) - SCTID:64243001 + plastron (SCTID) @@ -39821,8 +35480,7 @@ - superior cerebellar vein (SCTID) - SCTID:64307009 + superior cerebellar vein (SCTID) @@ -39831,8 +35489,7 @@ - epineurium (SCTID) - SCTID:64482002 + epineurium (SCTID) @@ -39841,20 +35498,7 @@ - muscularis mucosae of stomach (SCTID) - SCTID:64551004 - - - - - - - - - - germinal center (SCTID) - lymphoid follicle (SCTID) - SCTID:64626006 + muscularis mucosae of stomach (SCTID) @@ -39863,8 +35507,7 @@ - swim bladder (SCTID) - SCTID:64748009 + swim bladder (SCTID) @@ -39873,8 +35516,7 @@ - epithelium of stomach (SCTID) - SCTID:64977002 + epithelium of stomach (SCTID) @@ -39883,8 +35525,7 @@ - apophysis (SCTID) - SCTID:65000005 + apophysis (SCTID) @@ -39893,8 +35534,7 @@ - deep inguinal lymph node (SCTID) - SCTID:65266007 + deep inguinal lymph node (SCTID) @@ -39903,8 +35543,7 @@ - pudendal venous plexus (SCTID) - SCTID:65326006 + pudendal venous plexus (SCTID) @@ -39913,8 +35552,7 @@ - submucosa of ileum (SCTID) - SCTID:65374006 + submucosa of ileum (SCTID) @@ -39923,8 +35561,7 @@ - ureteric segment of renal artery (SCTID) - SCTID:65376008 + ureteric segment of renal artery (SCTID) @@ -39933,8 +35570,7 @@ - anterior jugular vein (SCTID) - SCTID:65478008 + anterior jugular vein (SCTID) @@ -39943,8 +35579,7 @@ - mucosa of ethmoidal sinus (SCTID) - SCTID:65501003 + mucosa of ethmoidal sinus (SCTID) @@ -39953,8 +35588,7 @@ - tracheal mucosa (SCTID) - SCTID:660006 + tracheal mucosa (SCTID) @@ -39963,8 +35597,7 @@ - posterior lobe of prostate (SCTID) - SCTID:66012001 + posterior lobe of prostate (SCTID) @@ -39973,8 +35606,7 @@ - inferior glossopharyngeal IX ganglion (SCTID) - SCTID:66031007 + inferior glossopharyngeal IX ganglion (SCTID) @@ -39983,8 +35615,7 @@ - duodenal epithelium (SCTID) - SCTID:66036002 + duodenal epithelium (SCTID) @@ -39993,8 +35624,7 @@ - stylohyoid ligament (SCTID) - SCTID:66275001 + stylohyoid ligament (SCTID) @@ -40003,8 +35633,7 @@ - inguinal mammary gland (SCTID) - SCTID:66519003 + inguinal mammary gland (SCTID) @@ -40013,8 +35642,7 @@ - embryonic structure (SCTID) - SCTID:667009 + embryonic structure (SCTID) @@ -40023,8 +35651,7 @@ - feather shaft (SCTID) - SCTID:66810005 + feather shaft (SCTID) @@ -40033,8 +35660,7 @@ - dorsum of tongue (SCTID) - SCTID:66938003 + dorsum of tongue (SCTID) @@ -40043,8 +35669,7 @@ - neuropil (SCTID) - SCTID:67146008 + neuropil (SCTID) @@ -40053,8 +35678,7 @@ - forestomach-glandular stomach junction (SCTID) - SCTID:67204008 + forestomach-glandular stomach junction (SCTID) @@ -40063,8 +35687,7 @@ - tail skin (SCTID) - SCTID:67214004 + tail skin (SCTID) @@ -40073,8 +35696,7 @@ - muscle of pes (SCTID) - SCTID:67240005 + muscle of pes (SCTID) @@ -40083,8 +35705,7 @@ - mesothelium of serous pericardium (SCTID) - SCTID:67300002 + mesothelium of serous pericardium (SCTID) @@ -40093,8 +35714,7 @@ - hepatic sinusoid (SCTID) - SCTID:67435004 + hepatic sinusoid (SCTID) @@ -40103,8 +35723,7 @@ - renal afferent arteriole (SCTID) - SCTID:67498004 + renal afferent arteriole (SCTID) @@ -40113,8 +35732,7 @@ - skin scent gland (SCTID) - SCTID:67740006 + skin scent gland (SCTID) @@ -40123,8 +35741,7 @@ - medial tarsal artery (SCTID) - SCTID:67925000 + medial tarsal artery (SCTID) @@ -40133,8 +35750,7 @@ - synsacrum (SCTID) - SCTID:67943001 + synsacrum (SCTID) @@ -40143,8 +35759,7 @@ - crop (SCTID) - SCTID:68028003 + crop (SCTID) @@ -40153,8 +35768,7 @@ - abdominal mammary gland (SCTID) - SCTID:68037003 + abdominal mammary gland (SCTID) @@ -40163,8 +35777,7 @@ - superficial intraparotid lymph node (SCTID) - SCTID:68339009 + superficial intraparotid lymph node (SCTID) @@ -40173,8 +35786,7 @@ - submucosa (SCTID) - SCTID:68439008 + submucosa (SCTID) @@ -40183,8 +35795,7 @@ - areolar connective tissue (SCTID) - SCTID:68477002 + areolar connective tissue (SCTID) @@ -40193,8 +35804,7 @@ - adrenal gland cortex zone (SCTID) - SCTID:68594002 + adrenal gland cortex zone (SCTID) @@ -40203,8 +35813,7 @@ - intervertebral disk of cervical vertebra (SCTID) - SCTID:68818006 + intervertebral disk of cervical vertebra (SCTID) @@ -40213,8 +35822,7 @@ - feather follicle (SCTID) - SCTID:68922000 + feather follicle (SCTID) @@ -40223,8 +35831,7 @@ - basement membrane of epithelium (SCTID) - SCTID:68989006 + basement membrane of epithelium (SCTID) @@ -40233,8 +35840,7 @@ - submucosa of small intestine (SCTID) - SCTID:691000 + submucosa of small intestine (SCTID) @@ -40243,8 +35849,7 @@ - inferior cerebellar vein (SCTID) - SCTID:69104006 + inferior cerebellar vein (SCTID) @@ -40253,8 +35858,7 @@ - carotid artery segment (SCTID) - SCTID:69105007 + carotid artery segment (SCTID) @@ -40263,8 +35867,7 @@ - horn (SCTID) - SCTID:69221006 + horn (SCTID) @@ -40273,8 +35876,7 @@ - right suprarenal vein (SCTID) - SCTID:69354005 + right suprarenal vein (SCTID) @@ -40283,8 +35885,7 @@ - vallate papilla (SCTID) - SCTID:69517000 + vallate papilla (SCTID) @@ -40293,8 +35894,7 @@ - manual digit 1 (SCTID) - SCTID:69603001 + manual digit 1 (SCTID) @@ -40303,8 +35903,7 @@ - right lung middle lobe bronchiole (SCTID) - SCTID:69714005 + right lung middle lobe bronchiole (SCTID) @@ -40313,8 +35912,7 @@ - choroid plexus of lateral ventricle (SCTID) - SCTID:70064002 + choroid plexus of lateral ventricle (SCTID) @@ -40323,8 +35921,7 @@ - submucosa of jejunum (SCTID) - SCTID:70192009 + submucosa of jejunum (SCTID) @@ -40333,8 +35930,7 @@ - sensory receptor (SCTID) - SCTID:70402007 + sensory receptor (SCTID) @@ -40343,8 +35939,7 @@ - pars interarticularis of vertebra (SCTID) - SCTID:705098005 + pars interarticularis of vertebra (SCTID) @@ -40353,8 +35948,7 @@ - pyloric gastric gland (SCTID) - SCTID:70710007 + pyloric gastric gland (SCTID) @@ -40363,8 +35957,7 @@ - tympanic membrane epithelium (SCTID) - SCTID:70839004 + tympanic membrane epithelium (SCTID) @@ -40373,8 +35966,7 @@ - thoracic division of spinal cord central canal (SCTID) - SCTID:71118002 + thoracic division of spinal cord central canal (SCTID) @@ -40383,8 +35975,7 @@ - male pubococcygeus muscle (SCTID) - SCTID:71507008 + male pubococcygeus muscle (SCTID) @@ -40393,8 +35984,7 @@ - muscle organ (SCTID) - SCTID:71616004 + muscle organ (SCTID) @@ -40403,8 +35993,7 @@ - submucosa of rectum (SCTID) - SCTID:71683001 + submucosa of rectum (SCTID) @@ -40413,8 +36002,7 @@ - left lung upper lobe bronchiole (SCTID) - SCTID:72426004 + left lung upper lobe bronchiole (SCTID) @@ -40423,8 +36011,7 @@ - nail (SCTID) - SCTID:72651009 + nail (SCTID) @@ -40433,8 +36020,7 @@ - fin (SCTID) - SCTID:73003005 + fin (SCTID) @@ -40443,8 +36029,7 @@ - tributary of central retinal vein (SCTID) - SCTID:731368004 + tributary of central retinal vein (SCTID) @@ -40453,8 +36038,7 @@ - palatal muscle (SCTID) - SCTID:73711005 + palatal muscle (SCTID) @@ -40463,8 +36047,7 @@ - epicanthal fold (SCTID) - SCTID:74824007 + epicanthal fold (SCTID) @@ -40473,8 +36056,7 @@ - deep intraparotid lymph node (SCTID) - SCTID:75040000 + deep intraparotid lymph node (SCTID) @@ -40483,8 +36065,7 @@ - aortic body (SCTID) - SCTID:75061007 + aortic body (SCTID) @@ -40493,8 +36074,7 @@ - vasa vasorum (SCTID) - SCTID:7524009 + vasa vasorum (SCTID) @@ -40503,8 +36083,7 @@ - red bone marrow (SCTID) - SCTID:75330005 + red bone marrow (SCTID) @@ -40513,8 +36092,7 @@ - hepatic artery (SCTID) - SCTID:76015000 + hepatic artery (SCTID) @@ -40523,8 +36101,7 @@ - interlobular artery (SCTID) - SCTID:76147008 + interlobular artery (SCTID) @@ -40533,8 +36110,7 @@ - elbow (SCTID) - SCTID:76248009 + elbow (SCTID) @@ -40543,8 +36119,7 @@ - pancreaticoduodenal vein (SCTID) - SCTID:76262002 + pancreaticoduodenal vein (SCTID) @@ -40553,8 +36128,7 @@ - submucosa of duodenum (SCTID) - SCTID:76519004 + submucosa of duodenum (SCTID) @@ -40563,8 +36137,7 @@ - thymic artery (SCTID) - SCTID:76543001 + thymic artery (SCTID) @@ -40573,8 +36146,7 @@ - cerebellum vermis lobule I (SCTID) - SCTID:77232000 + cerebellum vermis lobule I (SCTID) @@ -40583,8 +36155,7 @@ - colic artery (SCTID) - SCTID:77852007 + colic artery (SCTID) @@ -40593,8 +36164,7 @@ - anterior parietal artery (SCTID) - SCTID:78499006 + anterior parietal artery (SCTID) @@ -40603,8 +36173,7 @@ - coagulating gland (SCTID) - SCTID:78779004 + coagulating gland (SCTID) @@ -40613,8 +36182,7 @@ - submucosa of anal canal (SCTID) - SCTID:7892006 + submucosa of anal canal (SCTID) @@ -40623,8 +36191,7 @@ - flexor digitorum brevis muscle (SCTID) - SCTID:79490000 + flexor digitorum brevis muscle (SCTID) @@ -40633,8 +36200,7 @@ - deep temporal vein (SCTID) - SCTID:798000 + deep temporal vein (SCTID) @@ -40643,8 +36209,7 @@ - transverse pontine fibers (SCTID) - SCTID:79836003 + transverse pontine fibers (SCTID) @@ -40653,8 +36218,7 @@ - splenic lymph node (SCTID) - SCTID:80088008 + splenic lymph node (SCTID) @@ -40663,8 +36227,7 @@ - ligamentum venosum (SCTID) - SCTID:80391004 + ligamentum venosum (SCTID) @@ -40673,8 +36236,7 @@ - rectal salt gland (SCTID) - SCTID:80455007 + rectal salt gland (SCTID) @@ -40683,8 +36245,7 @@ - left lung lower lobe bronchiole (SCTID) - SCTID:80548008 + left lung lower lobe bronchiole (SCTID) @@ -40693,8 +36254,7 @@ - jugular body (SCTID) - SCTID:80595007 + jugular body (SCTID) @@ -40703,8 +36263,7 @@ - fungiform papilla (SCTID) - SCTID:80673002 + fungiform papilla (SCTID) @@ -40713,8 +36272,7 @@ - right superior intercostal vein (SCTID) - SCTID:80721005 + right superior intercostal vein (SCTID) @@ -40723,8 +36281,7 @@ - urodeum (SCTID) - SCTID:81191004 + urodeum (SCTID) @@ -40733,8 +36290,7 @@ - cellular cartilage (SCTID) - SCTID:81997001 + cellular cartilage (SCTID) @@ -40743,8 +36299,7 @@ - serosa of small intestine (SCTID) - SCTID:8266009 + serosa of small intestine (SCTID) @@ -40753,8 +36308,7 @@ - endopeduncular nucleus (SCTID) - SCTID:82705008 + endopeduncular nucleus (SCTID) @@ -40763,8 +36317,7 @@ - middle phalanx of pes (SCTID) - SCTID:83207005 + middle phalanx of pes (SCTID) @@ -40773,8 +36326,7 @@ - palmar digital vein (SCTID) - SCTID:83229009 + palmar digital vein (SCTID) @@ -40783,8 +36335,7 @@ - late embryo (SCTID) - SCTID:83418008 + late embryo (SCTID) @@ -40793,8 +36344,7 @@ - interlobular bile duct (SCTID) - SCTID:83488001 + interlobular bile duct (SCTID) @@ -40803,8 +36353,7 @@ - tunica intima (SCTID) - SCTID:8361002 + tunica intima (SCTID) @@ -40813,8 +36362,7 @@ - carpal bone (SCTID) - SCTID:83936004 + carpal bone (SCTID) @@ -40823,8 +36371,7 @@ - blubber (SCTID) - SCTID:83953006 + blubber (SCTID) @@ -40833,8 +36380,7 @@ - tunica media of artery (SCTID) - SCTID:84300001 + tunica media of artery (SCTID) @@ -40843,8 +36389,7 @@ - epiphyseal plate (SCTID) - SCTID:84349008 + epiphyseal plate (SCTID) @@ -40853,8 +36398,7 @@ - right lung upper lobe bronchiole (SCTID) - SCTID:84841004 + right lung upper lobe bronchiole (SCTID) @@ -40863,8 +36407,7 @@ - meningeal vein (SCTID) - SCTID:84842006 + meningeal vein (SCTID) @@ -40873,8 +36416,7 @@ - gingival epithelial attachment (SCTID) - SCTID:85036004 + gingival epithelial attachment (SCTID) @@ -40883,8 +36425,7 @@ - left suprarenal vein (SCTID) - SCTID:85087001 + left suprarenal vein (SCTID) @@ -40893,8 +36434,7 @@ - sublingual caruncle (SCTID) - SCTID:85139009 + sublingual caruncle (SCTID) @@ -40903,8 +36443,7 @@ - interstitial tissue (SCTID) - SCTID:85293002 + interstitial tissue (SCTID) @@ -40913,8 +36452,7 @@ - ileal mucosa (SCTID) - SCTID:85458007 + ileal mucosa (SCTID) @@ -40923,8 +36461,7 @@ - proximal phalanx of pes (SCTID) - SCTID:85533000 + proximal phalanx of pes (SCTID) @@ -40933,8 +36470,7 @@ - submucosa of bronchus (SCTID) - SCTID:85546005 + submucosa of bronchus (SCTID) @@ -40943,8 +36479,7 @@ - internal capsule of telencephalon (SCTID) - SCTID:85637007 + internal capsule of telencephalon (SCTID) @@ -40953,8 +36488,7 @@ - adventitia of esophagus (SCTID) - SCTID:85950006 + adventitia of esophagus (SCTID) @@ -40963,8 +36497,7 @@ - ruminant esophageal groove (SCTID) - SCTID:86149002 + ruminant esophageal groove (SCTID) @@ -40973,8 +36506,7 @@ - blood vessel internal elastic membrane (SCTID) - SCTID:86405007 + blood vessel internal elastic membrane (SCTID) @@ -40983,8 +36515,7 @@ - bursa of Fabricius (SCTID) - SCTID:86689007 + bursa of Fabricius (SCTID) @@ -40993,8 +36524,7 @@ - submucosa of appendix (SCTID) - SCTID:86833001 + submucosa of appendix (SCTID) @@ -41003,8 +36533,7 @@ - muscular coat (SCTID) - SCTID:86915006 + muscular coat (SCTID) @@ -41013,8 +36542,7 @@ - tunica intima (SCTID) - SCTID:87483006 + tunica intima (SCTID) @@ -41023,8 +36551,7 @@ - lateral tubercle of talus (SCTID) - SCTID:87573005 + lateral tubercle of talus (SCTID) @@ -41033,8 +36560,7 @@ - submucosa of urinary bladder (SCTID) - SCTID:88384001 + submucosa of urinary bladder (SCTID) @@ -41043,8 +36569,7 @@ - mucous gland of lung (SCTID) - SCTID:88410004 + mucous gland of lung (SCTID) @@ -41053,8 +36578,7 @@ - muscularis mucosae of colon (SCTID) - SCTID:885000 + muscularis mucosae of colon (SCTID) @@ -41063,8 +36587,7 @@ - nerve fiber (SCTID) - SCTID:88545005 + nerve fiber (SCTID) @@ -41073,8 +36596,7 @@ - cuspid (SCTID) - SCTID:88719004 + cuspid (SCTID) @@ -41083,8 +36605,7 @@ - ventral gray commissure of spinal cord (SCTID) - SCTID:88806005 + ventral gray commissure of spinal cord (SCTID) @@ -41093,8 +36614,7 @@ - cardiac gastric gland (SCTID) - SCTID:8894005 + cardiac gastric gland (SCTID) @@ -41103,8 +36623,7 @@ - embryonic facial prominence (SCTID) - SCTID:89066004 + embryonic facial prominence (SCTID) @@ -41113,8 +36632,7 @@ - endocardium of right ventricle (SCTID) - SCTID:8911002 + endocardium of right ventricle (SCTID) @@ -41123,8 +36641,7 @@ - posterior intercostal vein (SCTID) - SCTID:89209000 + posterior intercostal vein (SCTID) @@ -41133,8 +36650,7 @@ - syndesmosis (SCTID) - SCTID:89358004 + syndesmosis (SCTID) @@ -41143,8 +36659,7 @@ - space of Mall (SCTID) - SCTID:89510009 + space of Mall (SCTID) @@ -41153,8 +36668,7 @@ - periventricular gray matter (SCTID) - SCTID:89530008 + periventricular gray matter (SCTID) @@ -41163,8 +36677,7 @@ - remnant of urachus (SCTID) - SCTID:89583000 + remnant of urachus (SCTID) @@ -41173,8 +36686,7 @@ - nerve to stylohyoid from facial nerve (SCTID) - SCTID:89590005 + nerve to stylohyoid from facial nerve (SCTID) @@ -41183,8 +36695,7 @@ - cerebellum vermis culmen (SCTID) - SCTID:89649002 + cerebellum vermis culmen (SCTID) @@ -41193,8 +36704,7 @@ - withers (SCTID) - SCTID:89778005 + withers (SCTID) @@ -41203,8 +36713,7 @@ - vertebral arch joint (SCTID) - SCTID:89836005 + vertebral arch joint (SCTID) @@ -41213,8 +36722,7 @@ - strand of wool (SCTID) - SCTID:90080004 + strand of wool (SCTID) @@ -41223,8 +36731,7 @@ - serosa of colon (SCTID) - SCTID:90132000 + serosa of colon (SCTID) @@ -41233,8 +36740,7 @@ - middle colic vein (SCTID) - SCTID:9018004 + middle colic vein (SCTID) @@ -41243,8 +36749,7 @@ - bone element (SCTID) - SCTID:90780006 + bone element (SCTID) @@ -41253,8 +36758,7 @@ - splenic sinusoid (SCTID) - SCTID:9081000 + splenic sinusoid (SCTID) @@ -41263,8 +36767,7 @@ - premotor cortex (SCTID) - SCTID:90928005 + premotor cortex (SCTID) @@ -41273,8 +36776,7 @@ - left testicular vein (SCTID) - SCTID:90988008 + left testicular vein (SCTID) @@ -41283,8 +36785,7 @@ - corticopontine fibers (SCTID) - SCTID:91366009 + corticopontine fibers (SCTID) @@ -41293,8 +36794,7 @@ - gland of anal sac (SCTID) - SCTID:91610001 + gland of anal sac (SCTID) @@ -41303,8 +36803,7 @@ - fibrocartilage (SCTID) - SCTID:91685003 + fibrocartilage (SCTID) @@ -41313,8 +36812,7 @@ - organ system subdivision (SCTID) - SCTID:91690000 + organ system subdivision (SCTID) @@ -41323,8 +36821,7 @@ - organ part (SCTID) - SCTID:91717005 + organ part (SCTID) @@ -41333,8 +36830,7 @@ - duct (SCTID) - SCTID:91726008 + duct (SCTID) @@ -41343,8 +36839,7 @@ - muscle tissue (SCTID) - SCTID:91727004 + muscle tissue (SCTID) @@ -41353,8 +36848,7 @@ - neural tissue (SCTID) - SCTID:91728009 + neural tissue (SCTID) @@ -41363,8 +36857,7 @@ - condyle (SCTID) - SCTID:91737009 + condyle (SCTID) @@ -41373,8 +36866,7 @@ - endomysium (SCTID) - SCTID:91739007 + endomysium (SCTID) @@ -41383,8 +36875,7 @@ - lumen of blood vessel (SCTID) - SCTID:91747007 + lumen of blood vessel (SCTID) @@ -41393,8 +36884,7 @@ - proper palmar digital artery (SCTID) - SCTID:91778006 + proper palmar digital artery (SCTID) @@ -41403,8 +36893,7 @@ - dorsal digital artery of manus (SCTID) - SCTID:91793005 + dorsal digital artery of manus (SCTID) @@ -41413,8 +36902,7 @@ - pisiform (SCTID) - SCTID:9181003 + pisiform (SCTID) @@ -41423,8 +36911,7 @@ - anatomical junction (SCTID) - SCTID:91833003 + anatomical junction (SCTID) @@ -41433,8 +36920,7 @@ - orifice (SCTID) - SCTID:91837002 + orifice (SCTID) @@ -41443,8 +36929,7 @@ - external pudendal vein (SCTID) - SCTID:9231002 + external pudendal vein (SCTID) @@ -41453,8 +36938,7 @@ - Merkel nerve ending (SCTID) - SCTID:9317004 + Merkel nerve ending (SCTID) @@ -41463,8 +36947,7 @@ - pyramid of medulla oblongata (SCTID) - SCTID:9535007 + pyramid of medulla oblongata (SCTID) @@ -41473,8 +36956,7 @@ - autopod region (SCTID) - SCTID:95936004 + autopod region (SCTID) @@ -41483,8 +36965,7 @@ - basisphenoid bone (SCTID) - SCTID:95945003 + basisphenoid bone (SCTID) @@ -41493,8 +36974,7 @@ - basiotic bone (SCTID) - SCTID:95946002 + basiotic bone (SCTID) @@ -41503,8 +36983,7 @@ - supraoccipital bone (SCTID) - SCTID:95947006 + supraoccipital bone (SCTID) @@ -41513,8 +36992,7 @@ - presphenoid bone (SCTID) - SCTID:95949009 + presphenoid bone (SCTID) @@ -41523,8 +37001,7 @@ - postsphenoidal bone (SCTID) - SCTID:95950009 + postsphenoidal bone (SCTID) @@ -41533,8 +37010,7 @@ - tympanic ring (SCTID) - SCTID:95952001 + tympanic ring (SCTID) @@ -41543,8 +37019,7 @@ - sternebra (SCTID) - SCTID:95955004 + sternebra (SCTID) @@ -41553,8 +37028,7 @@ - infraclavicular lymph node (SCTID) - SCTID:9659009 + infraclavicular lymph node (SCTID) @@ -41775,12 +37249,6 @@ - - - - - - @@ -41805,12 +37273,6 @@ - - - - - - @@ -42393,12 +37855,6 @@ - - - - - - @@ -47037,12 +42493,6 @@ - - - - - - @@ -47811,12 +43261,6 @@ - - - - - - @@ -48003,12 +43447,6 @@ - - - - - - @@ -48669,12 +44107,6 @@ - - - - - - @@ -49755,12 +45187,6 @@ - - - - - - @@ -51231,12 +46657,6 @@ - - - - - - @@ -54237,12 +49657,6 @@ - - - - - - @@ -54477,12 +49891,6 @@ - - - - - - @@ -54579,12 +49987,6 @@ - - - - - - @@ -55155,12 +50557,6 @@ - - - - - - @@ -57291,24 +52687,12 @@ - - - - - - - - - - - - @@ -57375,12 +52759,6 @@ - - - - - - @@ -58485,12 +53863,6 @@ - - - - - - @@ -58983,18 +54355,6 @@ - - - - - - - - - - - - @@ -59025,12 +54385,6 @@ - - - - - - @@ -59931,12 +55285,6 @@ - - - - - - @@ -60783,12 +56131,6 @@ - - - - - - @@ -61455,12 +56797,6 @@ - - - - - - @@ -63105,12 +58441,6 @@ - - - - - - @@ -63153,18 +58483,6 @@ - - - - - - - - - - - - @@ -65595,12 +60913,6 @@ - - - - - - @@ -65890,5 +61202,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-spd.obo b/src/ontology/bridge/uberon-bridge-to-spd.obo deleted file mode 100644 index 1c2b76eb96..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-spd.obo +++ /dev/null @@ -1,193 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-spd -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: SPD:0000016 ! -property_value: IAO:0000589 "head (spider)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000428 ! -property_value: IAO:0000589 "respiration organ (spider)" xsd:string -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000008 ! -property_value: IAO:0000589 "organism substance (spider)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000434 ! -property_value: IAO:0000589 "open tracheal system trachea (spider)" xsd:string -intersection_of: UBERON:0003127 ! open tracheal system trachea -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000427 ! -property_value: IAO:0000589 "open tracheal system (spider)" xsd:string -intersection_of: UBERON:0005155 ! open tracheal system -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000130 ! -property_value: IAO:0000589 "primary circulatory organ (spider)" xsd:string -intersection_of: UBERON:0007100 ! primary circulatory organ -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000116 ! -property_value: IAO:0000589 "coxal gland (spider)" xsd:string -intersection_of: UBERON:0009965 ! coxal gland -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000547 ! -property_value: IAO:0000589 "mating plug (spider)" xsd:string -intersection_of: UBERON:0010148 ! mating plug -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000318 ! -property_value: IAO:0000589 "silk (spider)" xsd:string -intersection_of: UBERON:0012245 ! silk -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000343 ! -property_value: IAO:0000589 "tapetum (spider)" xsd:string -intersection_of: UBERON:0015169 ! tapetum -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:0000130 ! -property_value: IAO:0000589 "circulatory organ (spider)" xsd:string -intersection_of: UBERON:0015228 ! circulatory organ -intersection_of: part_of NCBITaxon:6893 - -[Term] -id: SPD:ENTITY -name: SPD entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6893 -relationship: only_in_taxon NCBITaxon:6893 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-spd.owl b/src/ontology/bridge/uberon-bridge-to-spd.owl index 5154944d72..5f604e1a37 100644 --- a/src/ontology/bridge/uberon-bridge-to-spd.owl +++ b/src/ontology/bridge/uberon-bridge-to-spd.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -345,8 +78,7 @@ - organism substance (spider) - SPD:0000008 + organism substance (spider) @@ -365,8 +97,7 @@ - head (spider) - SPD:0000016 + head (spider) @@ -385,30 +116,7 @@ - coxal gland (spider) - SPD:0000116 - - - - - - - - - - - - - - - - - - - - circulatory organ (spider) - primary circulatory organ (spider) - SPD:0000130 + coxal gland (spider) @@ -427,8 +135,7 @@ - silk (spider) - SPD:0000318 + silk (spider) @@ -447,8 +154,7 @@ - tapetum (spider) - SPD:0000343 + tapetum (spider) @@ -467,8 +173,7 @@ - open tracheal system (spider) - SPD:0000427 + open tracheal system (spider) @@ -487,8 +192,7 @@ - respiration organ (spider) - SPD:0000428 + respiration organ (spider) @@ -507,8 +211,7 @@ - open tracheal system trachea (spider) - SPD:0000434 + open tracheal system trachea (spider) @@ -527,34 +230,7 @@ - mating plug (spider) - SPD:0000547 - - - - - - - - - - - - - - - - - - - - - - - - - SPD:ENTITY - SPD entity + mating plug (spider) @@ -577,12 +253,6 @@ - - - - - - @@ -595,12 +265,6 @@ - - - - - - @@ -622,15 +286,9 @@ - - - - - - - + diff --git a/src/ontology/bridge/uberon-bridge-to-tads.obo b/src/ontology/bridge/uberon-bridge-to-tads.obo deleted file mode 100644 index f8e58b1bf1..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-tads.obo +++ /dev/null @@ -1,277 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-tads -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: TADS:0000040 ! -property_value: IAO:0000589 "mouth (TADS)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000304 ! -property_value: IAO:0000589 "compound eye corneal lens (TADS)" xsd:string -intersection_of: UBERON:0000207 ! compound eye corneal lens -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000001 ! -property_value: IAO:0000589 "multicellular organism (TADS)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000170 ! -property_value: IAO:0000589 "digestive system (TADS)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000162 ! -property_value: IAO:0000589 "renal system (TADS)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000201 ! -property_value: IAO:0000589 "nervous system commissure (TADS)" xsd:string -intersection_of: UBERON:0001020 ! nervous system commissure -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000163 ! -property_value: IAO:0000589 "Malpighian tubule (TADS)" xsd:string -intersection_of: UBERON:0001054 ! Malpighian tubule -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000066 ! -property_value: IAO:0000589 "anus (TADS)" xsd:string -intersection_of: UBERON:0001245 ! anus -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000108 ! -property_value: IAO:0000589 "integumental system (TADS)" xsd:string -intersection_of: UBERON:0002416 ! integumental system -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000598 ! -property_value: IAO:0000589 "compound organ (TADS)" xsd:string -intersection_of: UBERON:0003103 ! compound organ -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000315 ! -property_value: IAO:0000589 "open tracheal system trachea (TADS)" xsd:string -intersection_of: UBERON:0003127 ! open tracheal system trachea -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000281 ! -property_value: IAO:0000589 "arthropod tibia (TADS)" xsd:string -intersection_of: UBERON:0003131 ! arthropod tibia -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000321 ! -property_value: IAO:0000589 "arthropod fat body (TADS)" xsd:string -intersection_of: UBERON:0003917 ! arthropod fat body -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000232 ! -property_value: IAO:0000589 "neuron projection bundle connecting eye with brain (TADS)" xsd:string -intersection_of: UBERON:0004904 ! neuron projection bundle connecting eye with brain -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000043 ! -property_value: IAO:0000589 "open tracheal system (TADS)" xsd:string -intersection_of: UBERON:0005155 ! open tracheal system -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000039 ! -property_value: IAO:0000589 "insect labrum (TADS)" xsd:string -intersection_of: UBERON:0005905 ! insect labrum -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000421 ! -property_value: IAO:0000589 "uterus or analog (TADS)" xsd:string -intersection_of: UBERON:0006834 ! uterus or analog -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000147 ! -property_value: IAO:0000589 "primary circulatory organ (TADS)" xsd:string -intersection_of: UBERON:0007100 ! primary circulatory organ -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000601 ! -property_value: IAO:0000589 "hermaphroditic organism (TADS)" xsd:string -intersection_of: UBERON:0007197 ! hermaphroditic organism -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000109 ! -property_value: IAO:0000589 "outer epithelium (TADS)" xsd:string -intersection_of: UBERON:0007376 ! outer epithelium -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000080 ! -property_value: IAO:0000589 "coxal gland (TADS)" xsd:string -intersection_of: UBERON:0009965 ! coxal gland -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000172 ! -property_value: IAO:0000589 "food storage organ (TADS)" xsd:string -intersection_of: UBERON:0010039 ! food storage organ -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000608 ! -property_value: IAO:0000589 "sequential hermaphroditic organism (TADS)" xsd:string -intersection_of: UBERON:0010895 ! sequential hermaphroditic organism -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000609 ! -property_value: IAO:0000589 "synchronous hermaphroditic organism (TADS)" xsd:string -intersection_of: UBERON:0010899 ! synchronous hermaphroditic organism -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:0000495 ! -property_value: IAO:0000589 "lumen of intestine (TADS)" xsd:string -intersection_of: UBERON:0018543 ! lumen of intestine -intersection_of: part_of NCBITaxon:6939 - -[Term] -id: TADS:ENTITY -name: TADS entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6939 -relationship: only_in_taxon NCBITaxon:6939 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-tads.owl b/src/ontology/bridge/uberon-bridge-to-tads.owl index db5ae50641..faf366f38a 100644 --- a/src/ontology/bridge/uberon-bridge-to-tads.owl +++ b/src/ontology/bridge/uberon-bridge-to-tads.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -345,8 +78,7 @@ - multicellular organism (TADS) - TADS:0000001 + multicellular organism (hardbacked ticks) @@ -365,8 +97,7 @@ - insect labrum (TADS) - TADS:0000039 + insect labrum (hardbacked ticks) @@ -385,8 +116,7 @@ - mouth (TADS) - TADS:0000040 + mouth (hardbacked ticks) @@ -405,8 +135,7 @@ - open tracheal system (TADS) - TADS:0000043 + open tracheal system (hardbacked ticks) @@ -425,8 +154,7 @@ - anus (TADS) - TADS:0000066 + anus (hardbacked ticks) @@ -445,8 +173,7 @@ - coxal gland (TADS) - TADS:0000080 + coxal gland (hardbacked ticks) @@ -465,8 +192,7 @@ - integumental system (TADS) - TADS:0000108 + integumental system (hardbacked ticks) @@ -485,8 +211,7 @@ - outer epithelium (TADS) - TADS:0000109 + outer epithelium (hardbacked ticks) @@ -505,8 +230,7 @@ - primary circulatory organ (TADS) - TADS:0000147 + primary circulatory organ (hardbacked ticks) @@ -525,8 +249,7 @@ - renal system (TADS) - TADS:0000162 + renal system (hardbacked ticks) @@ -545,8 +268,7 @@ - Malpighian tubule (TADS) - TADS:0000163 + Malpighian tubule (hardbacked ticks) @@ -565,8 +287,7 @@ - digestive system (TADS) - TADS:0000170 + digestive system (hardbacked ticks) @@ -585,8 +306,7 @@ - food storage organ (TADS) - TADS:0000172 + food storage organ (hardbacked ticks) @@ -605,8 +325,7 @@ - nervous system commissure (TADS) - TADS:0000201 + nervous system commissure (hardbacked ticks) @@ -625,8 +344,7 @@ - neuron projection bundle connecting eye with brain (TADS) - TADS:0000232 + neuron projection bundle connecting eye with brain (hardbacked ticks) @@ -645,8 +363,7 @@ - arthropod tibia (TADS) - TADS:0000281 + arthropod tibia (hardbacked ticks) @@ -665,8 +382,7 @@ - compound eye corneal lens (TADS) - TADS:0000304 + compound eye corneal lens (hardbacked ticks) @@ -685,8 +401,7 @@ - open tracheal system trachea (TADS) - TADS:0000315 + open tracheal system trachea (hardbacked ticks) @@ -705,8 +420,7 @@ - arthropod fat body (TADS) - TADS:0000321 + arthropod fat body (hardbacked ticks) @@ -725,8 +439,7 @@ - uterus or analog (TADS) - TADS:0000421 + uterus or analog (hardbacked ticks) @@ -745,8 +458,7 @@ - lumen of intestine (TADS) - TADS:0000495 + lumen of intestine (hardbacked ticks) @@ -765,8 +477,7 @@ - compound organ (TADS) - TADS:0000598 + compound organ (hardbacked ticks) @@ -785,8 +496,7 @@ - hermaphroditic organism (TADS) - TADS:0000601 + hermaphroditic organism (hardbacked ticks) @@ -805,8 +515,7 @@ - sequential hermaphroditic organism (TADS) - TADS:0000608 + sequential hermaphroditic organism (hardbacked ticks) @@ -825,34 +534,7 @@ - synchronous hermaphroditic organism (TADS) - TADS:0000609 - - - - - - - - - - - - - - - - - - - - - - - - - TADS:ENTITY - TADS entity + synchronous hermaphroditic organism (hardbacked ticks) @@ -899,12 +581,6 @@ - - - - - - @@ -1014,5 +690,5 @@ - + diff --git a/src/ontology/bridge/uberon-bridge-to-tgma.obo b/src/ontology/bridge/uberon-bridge-to-tgma.obo deleted file mode 100644 index bf248237a5..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-tgma.obo +++ /dev/null @@ -1,439 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-tgma -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: TGMA:0000024 ! -property_value: IAO:0000589 "compound eye (TGMA)" xsd:string -intersection_of: UBERON:0000018 ! compound eye -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000002 ! -property_value: IAO:0000589 "head (TGMA)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001016 ! -property_value: IAO:0000589 "ganglion (TGMA)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000729 ! -property_value: IAO:0000589 "simple eye (TGMA)" xsd:string -intersection_of: UBERON:0000047 ! simple eye -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001823 ! -property_value: IAO:0000589 "anatomical structure (TGMA)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000634 ! -property_value: IAO:0000589 "male reproductive system (TGMA)" xsd:string -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000131 ! -property_value: IAO:0000589 "mouth (TGMA)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000102 ! -property_value: IAO:0000589 "oral cavity (TGMA)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001247 ! -property_value: IAO:0000589 "respiration organ (TGMA)" xsd:string -intersection_of: UBERON:0000171 ! respiration organ -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001824 ! -property_value: IAO:0000589 "organism substance (TGMA)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001825 ! -property_value: IAO:0000589 "anatomical space (TGMA)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001826 ! -property_value: IAO:0000589 "material anatomical entity (TGMA)" xsd:string -intersection_of: UBERON:0000465 ! material anatomical entity -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001827 ! -property_value: IAO:0000589 "immaterial anatomical entity (TGMA)" xsd:string -intersection_of: UBERON:0000466 ! immaterial anatomical entity -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001831 ! -property_value: IAO:0000589 "anatomical system (TGMA)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001832 ! -property_value: IAO:0000589 "multicellular organism (TGMA)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001835 ! -property_value: IAO:0000589 "compound organ component (TGMA)" xsd:string -intersection_of: UBERON:0000471 ! compound organ component -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001836 ! -property_value: IAO:0000589 "simple organ (TGMA)" xsd:string -intersection_of: UBERON:0000472 ! simple organ -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000635 ! -property_value: IAO:0000589 "female reproductive system (TGMA)" xsd:string -intersection_of: UBERON:0000474 ! female reproductive system -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001840 ! -property_value: IAO:0000589 "organism subdivision (TGMA)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001841 ! -property_value: IAO:0000589 "acellular anatomical structure (TGMA)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001843 ! -property_value: IAO:0000589 "extraembryonic structure (TGMA)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001844 ! -property_value: IAO:0000589 "tissue (TGMA)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001846 ! -property_value: IAO:0000589 "anatomical group (TGMA)" xsd:string -intersection_of: UBERON:0000480 ! anatomical group -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001847 ! -property_value: IAO:0000589 "multi-tissue structure (TGMA)" xsd:string -intersection_of: UBERON:0000481 ! multi-tissue structure -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001850 ! -property_value: IAO:0000589 "basal lamina of epithelium (TGMA)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001857 ! -property_value: IAO:0000589 "cavitated compound organ (TGMA)" xsd:string -intersection_of: UBERON:0000489 ! cavitated compound organ -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001859 ! -property_value: IAO:0000589 "solid compound organ (TGMA)" xsd:string -intersection_of: UBERON:0000491 ! solid compound organ -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000681 ! -property_value: IAO:0000589 "egg chorion (TGMA)" xsd:string -intersection_of: UBERON:0000920 ! egg chorion -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000135 ! -property_value: IAO:0000589 "stomodeum (TGMA)" xsd:string -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000007 ! -property_value: IAO:0000589 "antenna (TGMA)" xsd:string -intersection_of: UBERON:0000972 ! antenna -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000196 ! -property_value: IAO:0000589 "imaginal disc-derived wing (TGMA)" xsd:string -intersection_of: UBERON:0000984 ! imaginal disc-derived wing -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000560 ! -property_value: IAO:0000589 "spermathecum (TGMA)" xsd:string -intersection_of: UBERON:0000994 ! spermathecum -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000000 ! -property_value: IAO:0000589 "hemolymph (TGMA)" xsd:string -intersection_of: UBERON:0001011 ! hemolymph -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000088 ! -property_value: IAO:0000589 "nerve fasciculus (TGMA)" xsd:string -intersection_of: UBERON:0001019 ! nerve fasciculus -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001014 ! -property_value: IAO:0000589 "foregut (TGMA)" xsd:string -intersection_of: UBERON:0001041 ! foregut -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001036 ! -property_value: IAO:0000589 "midgut (TGMA)" xsd:string -intersection_of: UBERON:0001045 ! midgut -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001020 ! -property_value: IAO:0000589 "hindgut (TGMA)" xsd:string -intersection_of: UBERON:0001046 ! hindgut -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001038 ! -property_value: IAO:0000589 "Malpighian tubule (TGMA)" xsd:string -intersection_of: UBERON:0001054 ! Malpighian tubule -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001822 ! -property_value: IAO:0000589 "anatomical entity (TGMA)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001279 ! -property_value: IAO:0000589 "anus (TGMA)" xsd:string -intersection_of: UBERON:0001245 ! anus -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001819 ! -property_value: IAO:0000589 "digestive tract (TGMA)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000540 ! -property_value: IAO:0000589 "arthropod sensillum (TGMA)" xsd:string -intersection_of: UBERON:0002536 ! arthropod sensillum -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001839 ! -property_value: IAO:0000589 "female organism (TGMA)" xsd:string -intersection_of: UBERON:0003100 ! female organism -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001838 ! -property_value: IAO:0000589 "male organism (TGMA)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001837 ! -property_value: IAO:0000589 "compound organ (TGMA)" xsd:string -intersection_of: UBERON:0003103 ! compound organ -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000591 ! -property_value: IAO:0000589 "reproductive organ (TGMA)" xsd:string -intersection_of: UBERON:0003133 ! reproductive organ -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000041 ! -property_value: IAO:0000589 "arthropod occiput (TGMA)" xsd:string -intersection_of: UBERON:0003155 ! arthropod occiput -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001856 ! -property_value: IAO:0000589 "arthropod fat body (TGMA)" xsd:string -intersection_of: UBERON:0003917 ! arthropod fat body -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000164 ! -property_value: IAO:0000589 "insect leg (TGMA)" xsd:string -intersection_of: UBERON:0005895 ! insect leg -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001828 ! -property_value: IAO:0000589 "anatomical line (TGMA)" xsd:string -intersection_of: UBERON:0006800 ! anatomical line -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0000585 ! -property_value: IAO:0000589 "intromittent organ (TGMA)" xsd:string -intersection_of: UBERON:0008811 ! intromittent organ -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:0001041 ! -property_value: IAO:0000589 "food storage organ (TGMA)" xsd:string -intersection_of: UBERON:0010039 ! food storage organ -intersection_of: part_of NCBITaxon:44484 - -[Term] -id: TGMA:ENTITY -name: TGMA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:44484 -relationship: only_in_taxon NCBITaxon:44484 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-tgma.owl b/src/ontology/bridge/uberon-bridge-to-tgma.owl index a4818ba48b..a76300006b 100644 --- a/src/ontology/bridge/uberon-bridge-to-tgma.owl +++ b/src/ontology/bridge/uberon-bridge-to-tgma.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -345,8 +84,7 @@ - hemolymph (TGMA) - TGMA:0000000 + hemolymph (mosquitos) @@ -365,8 +103,7 @@ - head (TGMA) - TGMA:0000002 + head (mosquitos) @@ -385,8 +122,7 @@ - antenna (TGMA) - TGMA:0000007 + antenna (mosquitos) @@ -405,8 +141,7 @@ - compound eye (TGMA) - TGMA:0000024 + compound eye (mosquitos) @@ -425,8 +160,7 @@ - arthropod occiput (TGMA) - TGMA:0000041 + arthropod occiput (mosquitos) @@ -445,8 +179,7 @@ - nerve fasciculus (TGMA) - TGMA:0000088 + nerve fasciculus (mosquitos) @@ -465,8 +198,7 @@ - oral cavity (TGMA) - TGMA:0000102 + oral cavity (mosquitos) @@ -485,8 +217,7 @@ - mouth (TGMA) - TGMA:0000131 + mouth (mosquitos) @@ -505,8 +236,7 @@ - stomodeum (TGMA) - TGMA:0000135 + stomodeum (mosquitos) @@ -525,8 +255,7 @@ - insect leg (TGMA) - TGMA:0000164 + insect leg (mosquitos) @@ -545,8 +274,7 @@ - imaginal disc-derived wing (TGMA) - TGMA:0000196 + imaginal disc-derived wing (mosquitos) @@ -565,8 +293,7 @@ - arthropod sensillum (TGMA) - TGMA:0000540 + arthropod sensillum (mosquitos) @@ -585,8 +312,7 @@ - spermathecum (TGMA) - TGMA:0000560 + spermathecum (mosquitos) @@ -605,8 +331,7 @@ - intromittent organ (TGMA) - TGMA:0000585 + intromittent organ (mosquitos) @@ -625,8 +350,7 @@ - reproductive organ (TGMA) - TGMA:0000591 + reproductive organ (mosquitos) @@ -645,8 +369,7 @@ - male reproductive system (TGMA) - TGMA:0000634 + male reproductive system (mosquitos) @@ -665,8 +388,7 @@ - female reproductive system (TGMA) - TGMA:0000635 + female reproductive system (mosquitos) @@ -685,8 +407,7 @@ - egg chorion (TGMA) - TGMA:0000681 + egg chorion (mosquitos) @@ -705,8 +426,7 @@ - simple eye (TGMA) - TGMA:0000729 + simple eye (mosquitos) @@ -725,8 +445,7 @@ - foregut (TGMA) - TGMA:0001014 + foregut (mosquitos) @@ -745,8 +464,7 @@ - ganglion (TGMA) - TGMA:0001016 + ganglion (mosquitos) @@ -765,8 +483,7 @@ - hindgut (TGMA) - TGMA:0001020 + hindgut (mosquitos) @@ -785,8 +502,7 @@ - midgut (TGMA) - TGMA:0001036 + midgut (mosquitos) @@ -805,8 +521,7 @@ - Malpighian tubule (TGMA) - TGMA:0001038 + Malpighian tubule (mosquitos) @@ -825,8 +540,7 @@ - food storage organ (TGMA) - TGMA:0001041 + food storage organ (mosquitos) @@ -845,8 +559,7 @@ - respiration organ (TGMA) - TGMA:0001247 + respiration organ (mosquitos) @@ -865,8 +578,7 @@ - anus (TGMA) - TGMA:0001279 + anus (mosquitos) @@ -885,8 +597,7 @@ - digestive tract (TGMA) - TGMA:0001819 + digestive tract (mosquitos) @@ -905,8 +616,7 @@ - anatomical entity (TGMA) - TGMA:0001822 + anatomical entity (mosquitos) @@ -925,8 +635,7 @@ - anatomical structure (TGMA) - TGMA:0001823 + anatomical structure (mosquitos) @@ -945,8 +654,7 @@ - organism substance (TGMA) - TGMA:0001824 + organism substance (mosquitos) @@ -965,8 +673,7 @@ - anatomical space (TGMA) - TGMA:0001825 + anatomical space (mosquitos) @@ -985,8 +692,7 @@ - material anatomical entity (TGMA) - TGMA:0001826 + material anatomical entity (mosquitos) @@ -1005,8 +711,7 @@ - immaterial anatomical entity (TGMA) - TGMA:0001827 + immaterial anatomical entity (mosquitos) @@ -1025,8 +730,7 @@ - anatomical line (TGMA) - TGMA:0001828 + anatomical line (mosquitos) @@ -1045,8 +749,7 @@ - anatomical system (TGMA) - TGMA:0001831 + anatomical system (mosquitos) @@ -1065,8 +768,7 @@ - multicellular organism (TGMA) - TGMA:0001832 + multicellular organism (mosquitos) @@ -1085,8 +787,7 @@ - compound organ component (TGMA) - TGMA:0001835 + compound organ component (mosquitos) @@ -1105,8 +806,7 @@ - simple organ (TGMA) - TGMA:0001836 + simple organ (mosquitos) @@ -1125,8 +825,7 @@ - compound organ (TGMA) - TGMA:0001837 + compound organ (mosquitos) @@ -1145,8 +844,7 @@ - male organism (TGMA) - TGMA:0001838 + male organism (mosquitos) @@ -1165,8 +863,7 @@ - female organism (TGMA) - TGMA:0001839 + female organism (mosquitos) @@ -1185,8 +882,7 @@ - organism subdivision (TGMA) - TGMA:0001840 + organism subdivision (mosquitos) @@ -1205,8 +901,7 @@ - acellular anatomical structure (TGMA) - TGMA:0001841 + acellular anatomical structure (mosquitos) @@ -1225,8 +920,7 @@ - extraembryonic structure (TGMA) - TGMA:0001843 + extraembryonic structure (mosquitos) @@ -1245,8 +939,7 @@ - tissue (TGMA) - TGMA:0001844 + tissue (mosquitos) @@ -1265,8 +958,7 @@ - anatomical group (TGMA) - TGMA:0001846 + anatomical group (mosquitos) @@ -1285,8 +977,7 @@ - multi-tissue structure (TGMA) - TGMA:0001847 + multi-tissue structure (mosquitos) @@ -1305,8 +996,7 @@ - basal lamina of epithelium (TGMA) - TGMA:0001850 + basal lamina of epithelium (mosquitos) @@ -1325,8 +1015,7 @@ - arthropod fat body (TGMA) - TGMA:0001856 + arthropod fat body (mosquitos) @@ -1345,8 +1034,7 @@ - cavitated compound organ (TGMA) - TGMA:0001857 + cavitated compound organ (mosquitos) @@ -1365,34 +1053,7 @@ - solid compound organ (TGMA) - TGMA:0001859 - - - - - - - - - - - - - - - - - - - - - - - - - TGMA:ENTITY - TGMA entity + solid compound organ (mosquitos) @@ -1706,9 +1367,35 @@ + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/ontology/bridge/uberon-bridge-to-wbbt.obo b/src/ontology/bridge/uberon-bridge-to-wbbt.obo deleted file mode 100644 index 90847447b5..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-wbbt.obo +++ /dev/null @@ -1,415 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-wbbt -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: WBbt:0006929 ! -property_value: IAO:0000589 "sense organ (worm)" xsd:string -intersection_of: UBERON:0000020 ! sense organ -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005739 ! -property_value: IAO:0000589 "head (worm)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005189 ! -property_value: IAO:0000589 "ganglion (worm)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0003760 ! -property_value: IAO:0000589 "organ (worm)" xsd:string -intersection_of: UBERON:0000062 ! organ -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005772 ! -property_value: IAO:0000589 "intestine (worm)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005255 ! -property_value: IAO:0000589 "oral cavity (worm)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005746 ! -property_value: IAO:0000589 "anatomical system (worm)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005763 ! -property_value: IAO:0000589 "anatomical system (worm)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0007833 ! -property_value: IAO:0000589 "multicellular organism (worm)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006794 ! -property_value: IAO:0000589 "testis (worm)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005729 ! -property_value: IAO:0000589 "tissue (worm)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005756 ! -property_value: IAO:0000589 "basal lamina of epithelium (worm)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005829 ! -property_value: IAO:0000589 "ventral nerve cord (worm)" xsd:string -intersection_of: UBERON:0000934 ! ventral nerve cord -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005747 ! -property_value: IAO:0000589 "reproductive system (worm)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005175 ! -property_value: IAO:0000589 "gonad (worm)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005319 ! -property_value: IAO:0000589 "spermathecum (worm)" xsd:string -intersection_of: UBERON:0000994 ! spermathecum -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005748 ! -property_value: IAO:0000589 "digestive system (worm)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005736 ! -property_value: IAO:0000589 "renal system (worm)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005737 ! -property_value: IAO:0000589 "musculature (worm)" xsd:string -intersection_of: UBERON:0001015 ! musculature -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005735 ! -property_value: IAO:0000589 "nervous system (worm)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0000100 ! -property_value: IAO:0000589 "anatomical entity (worm)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005781 ! -property_value: IAO:0000589 "smooth muscle tissue (worm)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005364 ! -property_value: IAO:0000589 "anus (worm)" xsd:string -intersection_of: UBERON:0001245 ! anus -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006919 ! -property_value: IAO:0000589 "anal region (worm)" xsd:string -intersection_of: UBERON:0001353 ! anal region -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005743 ! -property_value: IAO:0000589 "digestive tract (worm)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005779 ! -property_value: IAO:0000589 "striated muscle tissue (worm)" xsd:string -intersection_of: UBERON:0002036 ! striated muscle tissue -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005741 ! -property_value: IAO:0000589 "tail (worm)" xsd:string -intersection_of: UBERON:0002415 ! tail -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005178 ! -property_value: IAO:0000589 "hermaphrodite gonad (worm)" xsd:string -intersection_of: UBERON:0002537 ! hermaphrodite gonad -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005755 ! -property_value: IAO:0000589 "collagen and cuticulin-based cuticle (worm)" xsd:string -intersection_of: UBERON:0003049 ! collagen and cuticulin-based cuticle -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0007850 ! -property_value: IAO:0000589 "male organism (worm)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0008422 ! -property_value: IAO:0000589 "reproductive organ (worm)" xsd:string -intersection_of: UBERON:0003133 ! reproductive organ -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0008423 ! -property_value: IAO:0000589 "male reproductive organ (worm)" xsd:string -intersection_of: UBERON:0003135 ! male reproductive organ -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005813 ! -property_value: IAO:0000589 "musculature of body wall (worm)" xsd:string -intersection_of: UBERON:0004462 ! musculature of body wall -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005391 ! -property_value: IAO:0000589 "amphid sensory organ (worm)" xsd:string -intersection_of: UBERON:0005067 ! amphid sensory organ -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005843 ! -property_value: IAO:0000589 "eggshell (worm)" xsd:string -intersection_of: UBERON:0005079 ! eggshell -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0008366 ! -property_value: IAO:0000589 "gonad primordium (worm)" xsd:string -intersection_of: UBERON:0005564 ! gonad primordium -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006760 ! -property_value: IAO:0000589 "uterus or analog (worm)" xsd:string -intersection_of: UBERON:0006834 ! uterus or analog -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005773 ! -property_value: IAO:0000589 "terminal part of digestive tract (worm)" xsd:string -intersection_of: UBERON:0006866 ! terminal part of digestive tract -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006870 ! -property_value: IAO:0000589 "seminal fluid secreting gland (worm)" xsd:string -intersection_of: UBERON:0006868 ! seminal fluid secreting gland -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0007849 ! -property_value: IAO:0000589 "hermaphroditic organism (worm)" xsd:string -intersection_of: UBERON:0007197 ! hermaphroditic organism -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005758 ! -property_value: IAO:0000589 "hermaphrodite anatomical structure (worm)" xsd:string -intersection_of: UBERON:0007198 ! hermaphrodite anatomical structure -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005733 ! -property_value: IAO:0000589 "outer epithelium (worm)" xsd:string -intersection_of: UBERON:0007376 ! outer epithelium -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005752 ! -property_value: IAO:0000589 "sex-specific anatomical structure (worm)" xsd:string -intersection_of: UBERON:0014402 ! sex-specific anatomical structure -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005757 ! -property_value: IAO:0000589 "male anatomical structure (worm)" xsd:string -intersection_of: UBERON:0014403 ! male anatomical structure -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0003681 ! -property_value: IAO:0000589 "nematode pharynx (worm)" xsd:string -intersection_of: UBERON:0015232 ! nematode pharynx -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005800 ! -property_value: IAO:0000589 "epithelium of terminal part of digestive tract (worm)" xsd:string -intersection_of: UBERON:0016885 ! epithelium of terminal part of digestive tract -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0005791 ! -property_value: IAO:0000589 "lumen of intestine (worm)" xsd:string -intersection_of: UBERON:0018543 ! lumen of intestine -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:0006750 ! -property_value: IAO:0000589 "accessory nerve cord of dorsal region (worm)" xsd:string -intersection_of: UBERON:0035607 ! accessory nerve cord of dorsal region -intersection_of: part_of NCBITaxon:6237 - -[Term] -id: WBbt:ENTITY -name: WBbt entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6237 -relationship: only_in_taxon NCBITaxon:6237 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-wbbt.owl b/src/ontology/bridge/uberon-bridge-to-wbbt.owl index 32ca908ffd..39238920ab 100644 --- a/src/ontology/bridge/uberon-bridge-to-wbbt.owl +++ b/src/ontology/bridge/uberon-bridge-to-wbbt.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -627,8 +366,7 @@ - anatomical entity (worm) - WBbt:0000100 + anatomical entity (worm) @@ -647,8 +385,7 @@ - nematode pharynx (worm) - WBbt:0003681 + nematode pharynx (worm) @@ -667,8 +404,7 @@ - organ (worm) - WBbt:0003760 + organ (worm) @@ -687,8 +423,7 @@ - gonad (worm) - WBbt:0005175 + gonad (worm) @@ -707,8 +442,7 @@ - hermaphrodite gonad (worm) - WBbt:0005178 + hermaphrodite gonad (worm) @@ -727,8 +461,7 @@ - ganglion (worm) - WBbt:0005189 + ganglion (worm) @@ -747,8 +480,7 @@ - oral cavity (worm) - WBbt:0005255 + oral cavity (worm) @@ -767,8 +499,7 @@ - spermathecum (worm) - WBbt:0005319 + spermathecum (worm) @@ -787,8 +518,7 @@ - anus (worm) - WBbt:0005364 + anus (worm) @@ -807,8 +537,7 @@ - amphid sensory organ (worm) - WBbt:0005391 + amphid sensory organ (worm) @@ -827,8 +556,7 @@ - tissue (worm) - WBbt:0005729 + tissue (worm) @@ -847,8 +575,7 @@ - outer epithelium (worm) - WBbt:0005733 + outer epithelium (worm) @@ -867,8 +594,7 @@ - nervous system (worm) - WBbt:0005735 + nervous system (worm) @@ -887,8 +613,7 @@ - renal system (worm) - WBbt:0005736 + renal system (worm) @@ -907,8 +632,7 @@ - musculature (worm) - WBbt:0005737 + musculature (worm) @@ -927,8 +651,7 @@ - head (worm) - WBbt:0005739 + head (worm) @@ -947,8 +670,7 @@ - tail (worm) - WBbt:0005741 + tail (worm) @@ -967,8 +689,7 @@ - digestive tract (worm) - WBbt:0005743 + digestive tract (worm) @@ -987,8 +708,7 @@ - anatomical system (worm) - WBbt:0005746 + anatomical system (worm) @@ -1007,8 +727,7 @@ - reproductive system (worm) - WBbt:0005747 + reproductive system (worm) @@ -1027,8 +746,7 @@ - digestive system (worm) - WBbt:0005748 + digestive system (worm) @@ -1047,8 +765,7 @@ - sex-specific anatomical structure (worm) - WBbt:0005752 + sex-specific anatomical structure (worm) @@ -1067,8 +784,7 @@ - collagen and cuticulin-based cuticle (worm) - WBbt:0005755 + collagen and cuticulin-based cuticle (worm) @@ -1087,8 +803,7 @@ - basal lamina of epithelium (worm) - WBbt:0005756 + basal lamina of epithelium (worm) @@ -1107,8 +822,7 @@ - male anatomical structure (worm) - WBbt:0005757 + male anatomical structure (worm) @@ -1127,8 +841,7 @@ - hermaphrodite anatomical structure (worm) - WBbt:0005758 + hermaphrodite anatomical structure (worm) @@ -1147,8 +860,7 @@ - anatomical system (worm) - WBbt:0005763 + anatomical system (worm) @@ -1167,8 +879,7 @@ - intestine (worm) - WBbt:0005772 + intestine (worm) @@ -1187,8 +898,7 @@ - terminal part of digestive tract (worm) - WBbt:0005773 + terminal part of digestive tract (worm) @@ -1207,8 +917,7 @@ - striated muscle tissue (worm) - WBbt:0005779 + striated muscle tissue (worm) @@ -1227,8 +936,7 @@ - smooth muscle tissue (worm) - WBbt:0005781 + smooth muscle tissue (worm) @@ -1247,8 +955,7 @@ - lumen of intestine (worm) - WBbt:0005791 + lumen of intestine (worm) @@ -1267,8 +974,7 @@ - epithelium of terminal part of digestive tract (worm) - WBbt:0005800 + epithelium of terminal part of digestive tract (worm) @@ -1287,8 +993,7 @@ - musculature of body wall (worm) - WBbt:0005813 + musculature of body wall (worm) @@ -1307,8 +1012,7 @@ - ventral nerve cord (worm) - WBbt:0005829 + ventral nerve cord (worm) @@ -1327,8 +1031,7 @@ - eggshell (worm) - WBbt:0005843 + eggshell (worm) @@ -1347,8 +1050,7 @@ - accessory nerve cord of dorsal region (worm) - WBbt:0006750 + accessory nerve cord of dorsal region (worm) @@ -1367,8 +1069,7 @@ - uterus or analog (worm) - WBbt:0006760 + uterus or analog (worm) @@ -1387,8 +1088,7 @@ - testis (worm) - WBbt:0006794 + testis (worm) @@ -1407,8 +1107,7 @@ - seminal fluid secreting gland (worm) - WBbt:0006870 + seminal fluid secreting gland (worm) @@ -1427,8 +1126,7 @@ - anal region (worm) - WBbt:0006919 + anal region (worm) @@ -1447,8 +1145,7 @@ - sense organ (worm) - WBbt:0006929 + sense organ (worm) @@ -1467,8 +1164,7 @@ - multicellular organism (worm) - WBbt:0007833 + multicellular organism (worm) @@ -1487,8 +1183,7 @@ - hermaphroditic organism (worm) - WBbt:0007849 + hermaphroditic organism (worm) @@ -1507,8 +1202,7 @@ - male organism (worm) - WBbt:0007850 + male organism (worm) @@ -1527,8 +1221,7 @@ - gonad primordium (worm) - WBbt:0008366 + gonad primordium (worm) @@ -1547,8 +1240,7 @@ - reproductive organ (worm) - WBbt:0008422 + reproductive organ (worm) @@ -1567,38 +1259,37 @@ - male reproductive organ (worm) - WBbt:0008423 + male reproductive organ (worm) - + - - - - - - - - - - - - + + + + + + + + - WBbt:ENTITY - WBbt entity - + diff --git a/src/ontology/bridge/uberon-bridge-to-wbls.obo b/src/ontology/bridge/uberon-bridge-to-wbls.obo deleted file mode 100644 index 69a0a2feee..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-wbls.obo +++ /dev/null @@ -1,193 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-wbls -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: WBls:0000041 ! -property_value: IAO:0000589 "fully formed stage (worm)" xsd:string -intersection_of: UBERON:0000066 ! fully formed stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000003 ! -property_value: IAO:0000589 "embryo stage (worm)" xsd:string -intersection_of: UBERON:0000068 ! embryo stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000092 ! -property_value: IAO:0000589 "embryo stage (worm)" xsd:string -intersection_of: UBERON:0000068 ! embryo stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000102 ! -property_value: IAO:0000589 "embryo stage (worm)" xsd:string -intersection_of: UBERON:0000068 ! embryo stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000022 ! -property_value: IAO:0000589 "post-embryonic stage (worm)" xsd:string -intersection_of: UBERON:0000092 ! post-embryonic stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000093 ! -property_value: IAO:0000589 "post-embryonic stage (worm)" xsd:string -intersection_of: UBERON:0000092 ! post-embryonic stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000103 ! -property_value: IAO:0000589 "post-embryonic stage (worm)" xsd:string -intersection_of: UBERON:0000092 ! post-embryonic stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000002 ! -property_value: IAO:0000589 "life cycle stage (worm)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000005 ! -property_value: IAO:0000589 "blastula stage (worm)" xsd:string -intersection_of: UBERON:0000108 ! blastula stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000010 ! -property_value: IAO:0000589 "gastrula stage (worm)" xsd:string -intersection_of: UBERON:0000109 ! gastrula stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:0000023 ! -property_value: IAO:0000589 "nematode larval stage (worm)" xsd:string -intersection_of: UBERON:0004729 ! nematode larval stage -intersection_of: occurs_in NCBITaxon:6237 - -[Term] -id: WBls:ENTITY -name: WBls entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:6237 -relationship: only_in_taxon NCBITaxon:6237 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-wbls.owl b/src/ontology/bridge/uberon-bridge-to-wbls.owl index 11a9292649..321a1052eb 100644 --- a/src/ontology/bridge/uberon-bridge-to-wbls.owl +++ b/src/ontology/bridge/uberon-bridge-to-wbls.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -367,12 +100,6 @@ - - - - - - @@ -393,8 +120,7 @@ - life cycle stage (worm) - WBls:0000002 + life cycle stage (worm) @@ -413,8 +139,7 @@ - embryo stage (worm) - WBls:0000003 + embryo stage (worm) @@ -433,8 +158,7 @@ - blastula stage (worm) - WBls:0000005 + blastula stage (worm) @@ -453,8 +177,7 @@ - gastrula stage (worm) - WBls:0000010 + gastrula stage (worm) @@ -473,8 +196,7 @@ - post-embryonic stage (worm) - WBls:0000022 + post-embryonic stage (worm) @@ -493,8 +215,7 @@ - nematode larval stage (worm) - WBls:0000023 + nematode larval stage (worm) @@ -513,8 +234,7 @@ - fully formed stage (worm) - WBls:0000041 + fully formed stage (worm) @@ -533,8 +253,7 @@ - embryo stage (worm) - WBls:0000092 + embryo stage (worm) @@ -553,8 +272,7 @@ - post-embryonic stage (worm) - WBls:0000093 + post-embryonic stage (worm) @@ -573,8 +291,7 @@ - embryo stage (worm) - WBls:0000102 + embryo stage (worm) @@ -593,38 +310,11 @@ - post-embryonic stage (worm) - WBls:0000103 - - - - - - - - - - - - - - - - - - - - - - - - - WBls:ENTITY - WBls entity + post-embryonic stage (worm) - + diff --git a/src/ontology/bridge/uberon-bridge-to-xao.obo b/src/ontology/bridge/uberon-bridge-to-xao.obo deleted file mode 100644 index 46753ca2c3..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-xao.obo +++ /dev/null @@ -1,3746 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-xao -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to xao" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between XAO and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Erik Segerdell" xsd:string -property_value: dc-contributor "VG Ponferrada" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/xao.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: XAO:0000159 ! -property_value: IAO:0000589 "islet of Langerhans (xenopus)" xsd:string -intersection_of: UBERON:0000006 ! islet of Langerhans -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000017 ! -property_value: IAO:0000589 "pituitary gland (xenopus)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000178 ! -property_value: IAO:0000589 "peripheral nervous system (xenopus)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000137 ! -property_value: IAO:0000589 "exocrine pancreas (xenopus)" xsd:string -intersection_of: UBERON:0000017 ! exocrine pancreas -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000179 ! -property_value: IAO:0000589 "camera-type eye (xenopus)" xsd:string -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000218 ! -property_value: IAO:0000589 "appendage (xenopus)" xsd:string -intersection_of: UBERON:0000026 ! appendage -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003024 ! -property_value: IAO:0000589 "head (xenopus)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000173 ! -property_value: IAO:0000589 "tendon (xenopus)" xsd:string -intersection_of: UBERON:0000043 ! tendon -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000210 ! -property_value: IAO:0000589 "dorsal root ganglion (xenopus)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000209 ! -property_value: IAO:0000589 "ganglion (xenopus)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000144 ! -property_value: IAO:0000589 "ureter (xenopus)" xsd:string -intersection_of: UBERON:0000056 ! ureter -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000153 ! -property_value: IAO:0000589 "urethra (xenopus)" xsd:string -intersection_of: UBERON:0000057 ! urethra -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004000 ! -property_value: IAO:0000589 "duct (xenopus)" xsd:string -intersection_of: UBERON:0000058 ! duct -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000131 ! -property_value: IAO:0000589 "large intestine (xenopus)" xsd:string -intersection_of: UBERON:0000059 ! large intestine -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003000 ! -property_value: IAO:0000589 "anatomical structure (xenopus)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:1000012 ! -property_value: IAO:0000589 "embryo stage (xenopus)" xsd:string -intersection_of: UBERON:0000068 ! embryo stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:0000437 ! -property_value: IAO:0000589 "death stage (xenopus)" xsd:string -intersection_of: UBERON:0000071 ! death stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:0000155 ! -property_value: IAO:0000589 "male reproductive system (xenopus)" xsd:string -intersection_of: UBERON:0000079 ! male reproductive system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000141 ! -property_value: IAO:0000589 "mesonephros (xenopus)" xsd:string -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000148 ! -property_value: IAO:0000589 "mesonephric tubule (xenopus)" xsd:string -intersection_of: UBERON:0000083 ! mesonephric tubule -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003044 ! -property_value: IAO:0000589 "hypoblast (generic) (xenopus)" xsd:string -intersection_of: UBERON:0000089 ! hypoblast (generic) -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000294 ! -property_value: IAO:0000589 "blastocele (xenopus)" xsd:string -intersection_of: UBERON:0000090 ! blastocele -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004190 ! -property_value: IAO:0000589 "cardiac neural crest (xenopus)" xsd:string -intersection_of: UBERON:0000095 ! cardiac neural crest -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000208 ! -property_value: IAO:0000589 "blastopore (xenopus)" xsd:string -intersection_of: UBERON:0000100 ! blastopore -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:1000000 ! -property_value: IAO:0000589 "life cycle stage (xenopus)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000001 ! -property_value: IAO:0000589 "zygote stage (xenopus)" xsd:string -intersection_of: UBERON:0000106 ! zygote stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000004 ! -property_value: IAO:0000589 "cleavage stage (xenopus)" xsd:string -intersection_of: UBERON:0000107 ! cleavage stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000003 ! -property_value: IAO:0000589 "blastula stage (xenopus)" xsd:string -intersection_of: UBERON:0000108 ! blastula stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000005 ! -property_value: IAO:0000589 "gastrula stage (xenopus)" xsd:string -intersection_of: UBERON:0000109 ! gastrula stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000006 ! -property_value: IAO:0000589 "neurula stage (xenopus)" xsd:string -intersection_of: UBERON:0000110 ! neurula stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000010 ! -property_value: IAO:0000589 "sexually immature stage (xenopus)" xsd:string -intersection_of: UBERON:0000112 ! sexually immature stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000093 ! -property_value: IAO:0000589 "post-juvenile adult stage (xenopus)" xsd:string -intersection_of: UBERON:0000113 ! post-juvenile adult stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:0000129 ! -property_value: IAO:0000589 "intestine (xenopus)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000244 ! -property_value: IAO:0000589 "cloaca (xenopus)" xsd:string -intersection_of: UBERON:0000162 ! cloaca -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003029 ! -property_value: IAO:0000589 "mouth (xenopus)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000126 ! -property_value: IAO:0000589 "oral cavity (xenopus)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000124 ! -property_value: IAO:0000589 "blood (xenopus)" xsd:string -intersection_of: UBERON:0000178 ! blood -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004031 ! -property_value: IAO:0000589 "ligament (xenopus)" xsd:string -intersection_of: UBERON:0000211 ! ligament -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004042 ! -property_value: IAO:0000589 "musculature of body (xenopus)" xsd:string -intersection_of: UBERON:0000383 ! musculature of body -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000211 ! -property_value: IAO:0000589 "sympathetic trunk (xenopus)" xsd:string -intersection_of: UBERON:0000407 ! sympathetic trunk -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004001 ! -property_value: IAO:0000589 "organism substance (xenopus)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003190 ! -property_value: IAO:0000589 "anatomical space (xenopus)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003002 ! -property_value: IAO:0000589 "anatomical system (xenopus)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003004 ! -property_value: IAO:0000589 "multicellular organism (xenopus)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003039 ! -property_value: IAO:0000589 "compound organ component (xenopus)" xsd:string -intersection_of: UBERON:0000471 ! compound organ component -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003038 ! -property_value: IAO:0000589 "simple organ (xenopus)" xsd:string -intersection_of: UBERON:0000472 ! simple organ -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000157 ! -property_value: IAO:0000589 "testis (xenopus)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000156 ! -property_value: IAO:0000589 "female reproductive system (xenopus)" xsd:string -intersection_of: UBERON:0000474 ! female reproductive system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003013 ! -property_value: IAO:0000589 "organism subdivision (xenopus)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003162 ! -property_value: IAO:0000589 "acellular anatomical structure (xenopus)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004005 ! -property_value: IAO:0000589 "extraembryonic structure (xenopus)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003040 ! -property_value: IAO:0000589 "tissue (xenopus)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003001 ! -property_value: IAO:0000589 "anatomical group (xenopus)" xsd:string -intersection_of: UBERON:0000480 ! anatomical group -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003037 ! -property_value: IAO:0000589 "multi-tissue structure (xenopus)" xsd:string -intersection_of: UBERON:0000481 ! multi-tissue structure -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003163 ! -property_value: IAO:0000589 "basal lamina of epithelium (xenopus)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003045 ! -property_value: IAO:0000589 "epithelium (xenopus)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004009 ! -property_value: IAO:0000589 "simple cuboidal epithelium (xenopus)" xsd:string -intersection_of: UBERON:0000484 ! simple cuboidal epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004008 ! -property_value: IAO:0000589 "simple columnar epithelium (xenopus)" xsd:string -intersection_of: UBERON:0000485 ! simple columnar epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004006 ! -property_value: IAO:0000589 "multilaminar epithelium (xenopus)" xsd:string -intersection_of: UBERON:0000486 ! multilaminar epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004010 ! -property_value: IAO:0000589 "simple squamous epithelium (xenopus)" xsd:string -intersection_of: UBERON:0000487 ! simple squamous epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004004 ! -property_value: IAO:0000589 "atypical epithelium (xenopus)" xsd:string -intersection_of: UBERON:0000488 ! atypical epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003165 ! -property_value: IAO:0000589 "cavitated compound organ (xenopus)" xsd:string -intersection_of: UBERON:0000489 ! cavitated compound organ -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004007 ! -property_value: IAO:0000589 "unilaminar epithelium (xenopus)" xsd:string -intersection_of: UBERON:0000490 ! unilaminar epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003164 ! -property_value: IAO:0000589 "solid compound organ (xenopus)" xsd:string -intersection_of: UBERON:0000491 ! solid compound organ -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000113 ! -property_value: IAO:0000589 "embryo (xenopus)" xsd:string -intersection_of: UBERON:0000922 ! embryo -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003011 ! -property_value: IAO:0000589 "germ layer (xenopus)" xsd:string -intersection_of: UBERON:0000923 ! germ layer -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000001 ! -property_value: IAO:0000589 "ectoderm (xenopus)" xsd:string -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000090 ! -property_value: IAO:0000589 "endoderm (xenopus)" xsd:string -intersection_of: UBERON:0000925 ! endoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000050 ! -property_value: IAO:0000589 "mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000269 ! -property_value: IAO:0000589 "stomodeum (xenopus)" xsd:string -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001019 ! -property_value: IAO:0000589 "proctodeum (xenopus)" xsd:string -intersection_of: UBERON:0000931 ! proctodeum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000188 ! -property_value: IAO:0000589 "cranial nerve II (xenopus)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000128 ! -property_value: IAO:0000589 "stomach (xenopus)" xsd:string -intersection_of: UBERON:0000945 ! stomach -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004126 ! -property_value: IAO:0000589 "cardiac valve (xenopus)" xsd:string -intersection_of: UBERON:0000946 ! cardiac valve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003010 ! -property_value: IAO:0000589 "aorta (xenopus)" xsd:string -intersection_of: UBERON:0000947 ! aorta -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000064 ! -property_value: IAO:0000589 "heart (xenopus)" xsd:string -intersection_of: UBERON:0000948 ! heart -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000158 ! -property_value: IAO:0000589 "endocrine system (xenopus)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000010 ! -property_value: IAO:0000589 "brain (xenopus)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004071 ! -property_value: IAO:0000589 "optic chiasma (xenopus)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000180 ! -property_value: IAO:0000589 "cornea (xenopus)" xsd:string -intersection_of: UBERON:0000964 ! cornea -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000008 ! -property_value: IAO:0000589 "lens of camera-type eye (xenopus)" xsd:string -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000009 ! -property_value: IAO:0000589 "retina (xenopus)" xsd:string -intersection_of: UBERON:0000966 ! retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003210 ! -property_value: IAO:0000589 "humerus (xenopus)" xsd:string -intersection_of: UBERON:0000976 ! humerus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003214 ! -property_value: IAO:0000589 "femur (xenopus)" xsd:string -intersection_of: UBERON:0000981 ! femur -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000171 ! -property_value: IAO:0000589 "skeletal joint (xenopus)" xsd:string -intersection_of: UBERON:0000982 ! skeletal joint -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000142 ! -property_value: IAO:0000589 "reproductive system (xenopus)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003146 ! -property_value: IAO:0000589 "gonad (xenopus)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000258 ! -property_value: IAO:0000589 "ovary (xenopus)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003052 ! -property_value: IAO:0000589 "oviduct (xenopus)" xsd:string -intersection_of: UBERON:0000993 ! oviduct -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000028 ! -property_value: IAO:0000589 "skin epidermis (xenopus)" xsd:string -intersection_of: UBERON:0001003 ! skin epidermis -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000117 ! -property_value: IAO:0000589 "respiratory system (xenopus)" xsd:string -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000125 ! -property_value: IAO:0000589 "digestive system (xenopus)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000143 ! -property_value: IAO:0000589 "renal system (xenopus)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003049 ! -property_value: IAO:0000589 "adipose tissue (xenopus)" xsd:string -intersection_of: UBERON:0001013 ! adipose tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000177 ! -property_value: IAO:0000589 "nervous system (xenopus)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000215 ! -property_value: IAO:0000589 "central nervous system (xenopus)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000204 ! -property_value: IAO:0000589 "nerve (xenopus)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003047 ! -property_value: IAO:0000589 "nerve (xenopus)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003194 ! -property_value: IAO:0000589 "sensory system (xenopus)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003197 ! -property_value: IAO:0000589 "gustatory system (xenopus)" xsd:string -intersection_of: UBERON:0001033 ! gustatory system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000232 ! -property_value: IAO:0000589 "foregut (xenopus)" xsd:string -intersection_of: UBERON:0001041 ! foregut -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003227 ! -property_value: IAO:0000589 "chordate pharynx (xenopus)" xsd:string -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000127 ! -property_value: IAO:0000589 "esophagus (xenopus)" xsd:string -intersection_of: UBERON:0001043 ! esophagus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000103 ! -property_value: IAO:0000589 "midgut (xenopus)" xsd:string -intersection_of: UBERON:0001045 ! midgut -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000104 ! -property_value: IAO:0000589 "hindgut (xenopus)" xsd:string -intersection_of: UBERON:0001046 ! hindgut -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003043 ! -property_value: IAO:0000589 "primordium (xenopus)" xsd:string -intersection_of: UBERON:0001048 ! primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003204 ! -property_value: IAO:0000589 "neural tube (xenopus)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000238 ! -property_value: IAO:0000589 "rectum (xenopus)" xsd:string -intersection_of: UBERON:0001052 ! rectum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000000 ! -property_value: IAO:0000589 "anatomical entity (xenopus)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000345 ! -property_value: IAO:0000589 "external carotid artery (xenopus)" xsd:string -intersection_of: UBERON:0001070 ! external carotid artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000388 ! -property_value: IAO:0000589 "posterior vena cava (xenopus)" xsd:string -intersection_of: UBERON:0001072 ! posterior vena cava -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003102 ! -property_value: IAO:0000589 "transverse process of vertebra (xenopus)" xsd:string -intersection_of: UBERON:0001077 ! transverse process of vertebra -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000431 ! -property_value: IAO:0000589 "calcareous tooth (xenopus)" xsd:string -intersection_of: UBERON:0001091 ! calcareous tooth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003078 ! -property_value: IAO:0000589 "sacral vertebra (xenopus)" xsd:string -intersection_of: UBERON:0001094 ! sacral vertebra -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003079 ! -property_value: IAO:0000589 "caudal vertebra (xenopus)" xsd:string -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000379 ! -property_value: IAO:0000589 "external jugular vein (xenopus)" xsd:string -intersection_of: UBERON:0001101 ! external jugular vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003074 ! -property_value: IAO:0000589 "vertebral column (xenopus)" xsd:string -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000167 ! -property_value: IAO:0000589 "parathyroid gland (xenopus)" xsd:string -intersection_of: UBERON:0001132 ! parathyroid gland -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000175 ! -property_value: IAO:0000589 "smooth muscle tissue (xenopus)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000387 ! -property_value: IAO:0000589 "hepatic vein (xenopus)" xsd:string -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000243 ! -property_value: IAO:0000589 "colon (xenopus)" xsd:string -intersection_of: UBERON:0001155 ! colon -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000455 ! -property_value: IAO:0000589 "biliary tree (xenopus)" xsd:string -intersection_of: UBERON:0001173 ! biliary tree -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000457 ! -property_value: IAO:0000589 "pyloric sphincter (xenopus)" xsd:string -intersection_of: UBERON:0001202 ! pyloric sphincter -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000165 ! -property_value: IAO:0000589 "adrenal cortex (xenopus)" xsd:string -intersection_of: UBERON:0001235 ! adrenal cortex -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000166 ! -property_value: IAO:0000589 "adrenal medulla (xenopus)" xsd:string -intersection_of: UBERON:0001236 ! adrenal medulla -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000154 ! -property_value: IAO:0000589 "urinary bladder (xenopus)" xsd:string -intersection_of: UBERON:0001255 ! urinary bladder -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000136 ! -property_value: IAO:0000589 "pancreas (xenopus)" xsd:string -intersection_of: UBERON:0001264 ! pancreas -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000454 ! -property_value: IAO:0000589 "liver parenchyma (xenopus)" xsd:string -intersection_of: UBERON:0001280 ! liver parenchyma -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003088 ! -property_value: IAO:0000589 "seminiferous tubule of testis (xenopus)" xsd:string -intersection_of: UBERON:0001343 ! seminiferous tubule of testis -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003060 ! -property_value: IAO:0000589 "skeletal system (xenopus)" xsd:string -intersection_of: UBERON:0001434 ! skeletal system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003061 ! -property_value: IAO:0000589 "forelimb skeleton (xenopus)" xsd:string -intersection_of: UBERON:0001440 ! forelimb skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003062 ! -property_value: IAO:0000589 "hindlimb skeleton (xenopus)" xsd:string -intersection_of: UBERON:0001441 ! hindlimb skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000040 ! -property_value: IAO:0000589 "subdivision of head (xenopus)" xsd:string -intersection_of: UBERON:0001444 ! subdivision of head -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003035 ! -property_value: IAO:0000589 "pedal digit (xenopus)" xsd:string -intersection_of: UBERON:0001466 ! pedal digit -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000375 ! -property_value: IAO:0000589 "lymphatic vessel (xenopus)" xsd:string -intersection_of: UBERON:0001473 ! lymphatic vessel -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000169 ! -property_value: IAO:0000589 "bone element (xenopus)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000366 ! -property_value: IAO:0000589 "internal carotid artery (xenopus)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000365 ! -property_value: IAO:0000589 "subclavian artery (xenopus)" xsd:string -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001013 ! -property_value: IAO:0000589 "facial muscle (xenopus)" xsd:string -intersection_of: UBERON:0001577 ! facial muscle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000426 ! -property_value: IAO:0000589 "olfactory nerve (xenopus)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000382 ! -property_value: IAO:0000589 "internal jugular vein (xenopus)" xsd:string -intersection_of: UBERON:0001586 ! internal jugular vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000368 ! -property_value: IAO:0000589 "ophthalmic artery (xenopus)" xsd:string -intersection_of: UBERON:0001619 ! ophthalmic artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000172 ! -property_value: IAO:0000589 "muscle organ (xenopus)" xsd:string -intersection_of: UBERON:0001630 ! muscle organ -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004173 ! -property_value: IAO:0000589 "mesencephalic artery (xenopus)" xsd:string -intersection_of: UBERON:0001634 ! mesencephalic artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000114 ! -property_value: IAO:0000589 "artery (xenopus)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000115 ! -property_value: IAO:0000589 "vein (xenopus)" xsd:string -intersection_of: UBERON:0001638 ! vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003090 ! -property_value: IAO:0000589 "oculomotor nerve (xenopus)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003091 ! -property_value: IAO:0000589 "trochlear nerve (xenopus)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003092 ! -property_value: IAO:0000589 "trigeminal nerve (xenopus)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003093 ! -property_value: IAO:0000589 "abducens nerve (xenopus)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003094 ! -property_value: IAO:0000589 "facial nerve (xenopus)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003095 ! -property_value: IAO:0000589 "vestibulocochlear nerve (xenopus)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003096 ! -property_value: IAO:0000589 "glossopharyngeal nerve (xenopus)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004215 ! -property_value: IAO:0000589 "hypoglossal nerve (xenopus)" xsd:string -intersection_of: UBERON:0001650 ! hypoglossal nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004160 ! -property_value: IAO:0000589 "cerebral vein (xenopus)" xsd:string -intersection_of: UBERON:0001663 ! cerebral vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004158 ! -property_value: IAO:0000589 "anterior cerebral vein (xenopus)" xsd:string -intersection_of: UBERON:0001672 ! anterior cerebral vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000427 ! -property_value: IAO:0000589 "trigeminal ganglion (xenopus)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000428 ! -property_value: IAO:0000589 "trigeminal ganglion (xenopus)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000214 ! -property_value: IAO:0000589 "auditory ossicle bone (xenopus)" xsd:string -intersection_of: UBERON:0001686 ! auditory ossicle bone -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000189 ! -property_value: IAO:0000589 "ear (xenopus)" xsd:string -intersection_of: UBERON:0001690 ! ear -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000190 ! -property_value: IAO:0000589 "external ear (xenopus)" xsd:string -intersection_of: UBERON:0001691 ! external ear -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003171 ! -property_value: IAO:0000589 "orbit of skull (xenopus)" xsd:string -intersection_of: UBERON:0001697 ! orbit of skull -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003170 ! -property_value: IAO:0000589 "neurocranium (xenopus)" xsd:string -intersection_of: UBERON:0001703 ! neurocranium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000007 ! -property_value: IAO:0000589 "lower eyelid (xenopus)" xsd:string -intersection_of: UBERON:0001713 ! lower eyelid -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000027 ! -property_value: IAO:0000589 "cranial ganglion (xenopus)" xsd:string -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004389 ! -property_value: IAO:0000589 "oculomotor nuclear complex (xenopus)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000446 ! -property_value: IAO:0000589 "tongue (xenopus)" xsd:string -intersection_of: UBERON:0001723 ! tongue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000445 ! -property_value: IAO:0000589 "taste bud (xenopus)" xsd:string -intersection_of: UBERON:0001727 ! taste bud -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004048 ! -property_value: IAO:0000589 "oropharynx (xenopus)" xsd:string -intersection_of: UBERON:0001729 ! oropharynx -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000105 ! -property_value: IAO:0000589 "cavity of pharynx (xenopus)" xsd:string -intersection_of: UBERON:0001731 ! cavity of pharynx -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003081 ! -property_value: IAO:0000589 "larynx (xenopus)" xsd:string -intersection_of: UBERON:0001737 ! larynx -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004051 ! -property_value: IAO:0000589 "dentine (xenopus)" xsd:string -intersection_of: UBERON:0001751 ! dentine -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004198 ! -property_value: IAO:0000589 "enamel (xenopus)" xsd:string -intersection_of: UBERON:0001752 ! enamel -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004196 ! -property_value: IAO:0000589 "cementum (xenopus)" xsd:string -intersection_of: UBERON:0001753 ! cementum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000191 ! -property_value: IAO:0000589 "middle ear (xenopus)" xsd:string -intersection_of: UBERON:0001756 ! middle ear -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003097 ! -property_value: IAO:0000589 "vagus nerve (xenopus)" xsd:string -intersection_of: UBERON:0001759 ! vagus nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004045 ! -property_value: IAO:0000589 "odontogenic papilla (xenopus)" xsd:string -intersection_of: UBERON:0001763 ! odontogenic papilla -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000185 ! -property_value: IAO:0000589 "iris (xenopus)" xsd:string -intersection_of: UBERON:0001769 ! iris -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000283 ! -property_value: IAO:0000589 "pupil (xenopus)" xsd:string -intersection_of: UBERON:0001771 ! pupil -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000183 ! -property_value: IAO:0000589 "sclera (xenopus)" xsd:string -intersection_of: UBERON:0001773 ! sclera -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003230 ! -property_value: IAO:0000589 "skeletal muscle of trunk (xenopus)" xsd:string -intersection_of: UBERON:0001774 ! skeletal muscle of trunk -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000186 ! -property_value: IAO:0000589 "ciliary body (xenopus)" xsd:string -intersection_of: UBERON:0001775 ! ciliary body -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003101 ! -property_value: IAO:0000589 "spinal nerve (xenopus)" xsd:string -intersection_of: UBERON:0001780 ! spinal nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000266 ! -property_value: IAO:0000589 "layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001781 ! layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003217 ! -property_value: IAO:0000589 "pigmented layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000429 ! -property_value: IAO:0000589 "cranial nerve (xenopus)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003089 ! -property_value: IAO:0000589 "cranial nerve (xenopus)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003215 ! -property_value: IAO:0000589 "photoreceptor layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001787 ! photoreceptor layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003224 ! -property_value: IAO:0000589 "outer limiting layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001788 ! outer limiting layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003219 ! -property_value: IAO:0000589 "outer nuclear layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001789 ! outer nuclear layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003218 ! -property_value: IAO:0000589 "outer plexiform layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001790 ! outer plexiform layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003221 ! -property_value: IAO:0000589 "inner nuclear layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001791 ! inner nuclear layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003223 ! -property_value: IAO:0000589 "ganglionic layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001792 ! ganglionic layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003220 ! -property_value: IAO:0000589 "nerve fiber layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003222 ! -property_value: IAO:0000589 "inner limiting layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001794 ! inner limiting layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003225 ! -property_value: IAO:0000589 "inner plexiform layer of retina (xenopus)" xsd:string -intersection_of: UBERON:0001795 ! inner plexiform layer of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004094 ! -property_value: IAO:0000589 "epithelium of lens (xenopus)" xsd:string -intersection_of: UBERON:0001803 ! epithelium of lens -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000182 ! -property_value: IAO:0000589 "conjunctiva (xenopus)" xsd:string -intersection_of: UBERON:0001811 ! conjunctiva -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000193 ! -property_value: IAO:0000589 "bony labyrinth (xenopus)" xsd:string -intersection_of: UBERON:0001839 ! bony labyrinth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000198 ! -property_value: IAO:0000589 "semicircular canal (xenopus)" xsd:string -intersection_of: UBERON:0001840 ! semicircular canal -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000197 ! -property_value: IAO:0000589 "cochlea (xenopus)" xsd:string -intersection_of: UBERON:0001844 ! cochlea -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000192 ! -property_value: IAO:0000589 "internal ear (xenopus)" xsd:string -intersection_of: UBERON:0001846 ! internal ear -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000194 ! -property_value: IAO:0000589 "membranous labyrinth (xenopus)" xsd:string -intersection_of: UBERON:0001849 ! membranous labyrinth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000195 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (xenopus)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000196 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (xenopus)" xsd:string -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004145 ! -property_value: IAO:0000589 "vestibular labyrinth (xenopus)" xsd:string -intersection_of: UBERON:0001862 ! vestibular labyrinth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004541 ! -property_value: IAO:0000589 "bed nucleus of stria terminalis (xenopus)" xsd:string -intersection_of: UBERON:0001880 ! bed nucleus of stria terminalis -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000011 ! -property_value: IAO:0000589 "forebrain (xenopus)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000014 ! -property_value: IAO:0000589 "midbrain (xenopus)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004079 ! -property_value: IAO:0000589 "rhombomere (xenopus)" xsd:string -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000012 ! -property_value: IAO:0000589 "telencephalon (xenopus)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000013 ! -property_value: IAO:0000589 "diencephalon (xenopus)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003100 ! -property_value: IAO:0000589 "medulla oblongata (xenopus)" xsd:string -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004070 ! -property_value: IAO:0000589 "hypothalamus (xenopus)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000160 ! -property_value: IAO:0000589 "pineal body (xenopus)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004101 ! -property_value: IAO:0000589 "optic tract (xenopus)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000357 ! -property_value: IAO:0000589 "endothelium of artery (xenopus)" xsd:string -intersection_of: UBERON:0001917 ! endothelium of artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000358 ! -property_value: IAO:0000589 "endothelium of vein (xenopus)" xsd:string -intersection_of: UBERON:0001919 ! endothelium of vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004271 ! -property_value: IAO:0000589 "midbrain tegmentum (xenopus)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004303 ! -property_value: IAO:0000589 "pretectal region (xenopus)" xsd:string -intersection_of: UBERON:0001944 ! pretectal region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003226 ! -property_value: IAO:0000589 "superior colliculus (xenopus)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001011 ! -property_value: IAO:0000589 "blood vessel (xenopus)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000116 ! -property_value: IAO:0000589 "capillary (xenopus)" xsd:string -intersection_of: UBERON:0001982 ! capillary -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004029 ! -property_value: IAO:0000589 "hyaline cartilage tissue (xenopus)" xsd:string -intersection_of: UBERON:0001994 ! hyaline cartilage tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004028 ! -property_value: IAO:0000589 "fibrocartilage (xenopus)" xsd:string -intersection_of: UBERON:0001995 ! fibrocartilage -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004197 ! -property_value: IAO:0000589 "elastic cartilage tissue (xenopus)" xsd:string -intersection_of: UBERON:0001996 ! elastic cartilage tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004162 ! -property_value: IAO:0000589 "pulmonary artery (xenopus)" xsd:string -intersection_of: UBERON:0002012 ! pulmonary artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000394 ! -property_value: IAO:0000589 "pulmonary vein (xenopus)" xsd:string -intersection_of: UBERON:0002016 ! pulmonary vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000392 ! -property_value: IAO:0000589 "portal vein (xenopus)" xsd:string -intersection_of: UBERON:0002017 ! portal vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004214 ! -property_value: IAO:0000589 "accessory XI nerve (xenopus)" xsd:string -intersection_of: UBERON:0002019 ! accessory XI nerve -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000041 ! -property_value: IAO:0000589 "stratum basale of epidermis (xenopus)" xsd:string -intersection_of: UBERON:0002025 ! stratum basale of epidermis -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000015 ! -property_value: IAO:0000589 "hindbrain (xenopus)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004072 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (xenopus)" xsd:string -intersection_of: UBERON:0002034 ! suprachiasmatic nucleus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003098 ! -property_value: IAO:0000589 "cerebellum (xenopus)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000162 ! -property_value: IAO:0000589 "thyroid gland (xenopus)" xsd:string -intersection_of: UBERON:0002046 ! thyroid gland -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000119 ! -property_value: IAO:0000589 "lung (xenopus)" xsd:string -intersection_of: UBERON:0002048 ! lung -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003042 ! -property_value: IAO:0000589 "embryonic structure (xenopus)" xsd:string -intersection_of: UBERON:0002050 ! embryonic structure -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004189 ! -property_value: IAO:0000589 "endocardial cushion (xenopus)" xsd:string -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000373 ! -property_value: IAO:0000589 "common cardinal vein (xenopus)" xsd:string -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000241 ! -property_value: IAO:0000589 "posterior cardinal vein (xenopus)" xsd:string -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000217 ! -property_value: IAO:0000589 "dermis (xenopus)" xsd:string -intersection_of: UBERON:0002067 ! dermis -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003034 ! -property_value: IAO:0000589 "viscus (xenopus)" xsd:string -intersection_of: UBERON:0002075 ! viscus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003192 ! -property_value: IAO:0000589 "right cardiac atrium (xenopus)" xsd:string -intersection_of: UBERON:0002078 ! right cardiac atrium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003191 ! -property_value: IAO:0000589 "left cardiac atrium (xenopus)" xsd:string -intersection_of: UBERON:0002079 ! left cardiac atrium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003193 ! -property_value: IAO:0000589 "cardiac ventricle (xenopus)" xsd:string -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004123 ! -property_value: IAO:0000589 "atrioventricular canal (xenopus)" xsd:string -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003073 ! -property_value: IAO:0000589 "postcranial axial skeleton (xenopus)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003166 ! -property_value: IAO:0000589 "appendicular skeleton (xenopus)" xsd:string -intersection_of: UBERON:0002091 ! appendicular skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000023 ! -property_value: IAO:0000589 "skin of body (xenopus)" xsd:string -intersection_of: UBERON:0002097 ! skin of body -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000054 ! -property_value: IAO:0000589 "trunk (xenopus)" xsd:string -intersection_of: UBERON:0002100 ! trunk -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003025 ! -property_value: IAO:0000589 "trunk (xenopus)" xsd:string -intersection_of: UBERON:0002100 ! trunk -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003027 ! -property_value: IAO:0000589 "limb (xenopus)" xsd:string -intersection_of: UBERON:0002101 ! limb -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003030 ! -property_value: IAO:0000589 "forelimb (xenopus)" xsd:string -intersection_of: UBERON:0002102 ! forelimb -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003031 ! -property_value: IAO:0000589 "hindlimb (xenopus)" xsd:string -intersection_of: UBERON:0002103 ! hindlimb -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003198 ! -property_value: IAO:0000589 "visual system (xenopus)" xsd:string -intersection_of: UBERON:0002104 ! visual system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003195 ! -property_value: IAO:0000589 "vestibulo-auditory system (xenopus)" xsd:string -intersection_of: UBERON:0002105 ! vestibulo-auditory system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000328 ! -property_value: IAO:0000589 "spleen (xenopus)" xsd:string -intersection_of: UBERON:0002106 ! spleen -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000133 ! -property_value: IAO:0000589 "liver (xenopus)" xsd:string -intersection_of: UBERON:0002107 ! liver -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000130 ! -property_value: IAO:0000589 "small intestine (xenopus)" xsd:string -intersection_of: UBERON:0002108 ! small intestine -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000135 ! -property_value: IAO:0000589 "gallbladder (xenopus)" xsd:string -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003267 ! -property_value: IAO:0000589 "kidney (xenopus)" xsd:string -intersection_of: UBERON:0002113 ! kidney -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000236 ! -property_value: IAO:0000589 "duodenum (xenopus)" xsd:string -intersection_of: UBERON:0002114 ! duodenum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000237 ! -property_value: IAO:0000589 "ileum (xenopus)" xsd:string -intersection_of: UBERON:0002116 ! ileum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0002000 ! -property_value: IAO:0000589 "pronephros (xenopus)" xsd:string -intersection_of: UBERON:0002120 ! pronephros -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000066 ! -property_value: IAO:0000589 "endocardium (xenopus)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000121 ! -property_value: IAO:0000589 "bronchus (xenopus)" xsd:string -intersection_of: UBERON:0002185 ! bronchus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004152 ! -property_value: IAO:0000589 "vasculature of head (xenopus)" xsd:string -intersection_of: UBERON:0002200 ! vasculature of head -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000168 ! -property_value: IAO:0000589 "musculoskeletal system (xenopus)" xsd:string -intersection_of: UBERON:0002204 ! musculoskeletal system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004136 ! -property_value: IAO:0000589 "macula of saccule of membranous labyrinth (xenopus)" xsd:string -intersection_of: UBERON:0002212 ! macula of saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004049 ! -property_value: IAO:0000589 "perichondrium (xenopus)" xsd:string -intersection_of: UBERON:0002222 ! perichondrium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000020 ! -property_value: IAO:0000589 "spinal cord (xenopus)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000272 ! -property_value: IAO:0000589 "vomeronasal organ (xenopus)" xsd:string -intersection_of: UBERON:0002255 ! vomeronasal organ -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004180 ! -property_value: IAO:0000589 "olfactory bulb (xenopus)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000273 ! -property_value: IAO:0000589 "olfactory organ (xenopus)" xsd:string -intersection_of: UBERON:0002268 ! olfactory organ -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004155 ! -property_value: IAO:0000589 "hyaloid artery (xenopus)" xsd:string -intersection_of: UBERON:0002270 ! hyaloid artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000055 ! -property_value: IAO:0000589 "notochord (xenopus)" xsd:string -intersection_of: UBERON:0002328 ! notochord -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000058 ! -property_value: IAO:0000589 "somite (xenopus)" xsd:string -intersection_of: UBERON:0002329 ! somite -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000048 ! -property_value: IAO:0000589 "neural crest (xenopus)" xsd:string -intersection_of: UBERON:0002342 ! neural crest -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000042 ! -property_value: IAO:0000589 "neurectoderm (xenopus)" xsd:string -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000316 ! -property_value: IAO:0000589 "epicardium (xenopus)" xsd:string -intersection_of: UBERON:0002348 ! epicardium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000065 ! -property_value: IAO:0000589 "myocardium (xenopus)" xsd:string -intersection_of: UBERON:0002349 ! myocardium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000139 ! -property_value: IAO:0000589 "peritoneum (xenopus)" xsd:string -intersection_of: UBERON:0002358 ! peritoneum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000212 ! -property_value: IAO:0000589 "tympanic membrane (xenopus)" xsd:string -intersection_of: UBERON:0002364 ! tympanic membrane -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000164 ! -property_value: IAO:0000589 "adrenal gland (xenopus)" xsd:string -intersection_of: UBERON:0002369 ! adrenal gland -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000163 ! -property_value: IAO:0000589 "thymus (xenopus)" xsd:string -intersection_of: UBERON:0002370 ! thymus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000123 ! -property_value: IAO:0000589 "bone marrow (xenopus)" xsd:string -intersection_of: UBERON:0002371 ! bone marrow -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004128 ! -property_value: IAO:0000589 "rectus abdominis muscle (xenopus)" xsd:string -intersection_of: UBERON:0002382 ! rectus abdominis muscle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001017 ! -property_value: IAO:0000589 "connective tissue (xenopus)" xsd:string -intersection_of: UBERON:0002384 ! connective tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003036 ! -property_value: IAO:0000589 "manual digit (xenopus)" xsd:string -intersection_of: UBERON:0002389 ! manual digit -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000122 ! -property_value: IAO:0000589 "hematopoietic system (xenopus)" xsd:string -intersection_of: UBERON:0002390 ! hematopoietic system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000213 ! -property_value: IAO:0000589 "pharyngotympanic tube (xenopus)" xsd:string -intersection_of: UBERON:0002393 ! pharyngotympanic tube -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000134 ! -property_value: IAO:0000589 "bile duct (xenopus)" xsd:string -intersection_of: UBERON:0002394 ! bile duct -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003152 ! -property_value: IAO:0000589 "immune system (xenopus)" xsd:string -intersection_of: UBERON:0002405 ! immune system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004182 ! -property_value: IAO:0000589 "pericardium (xenopus)" xsd:string -intersection_of: UBERON:0002407 ! pericardium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004019 ! -property_value: IAO:0000589 "vertebra (xenopus)" xsd:string -intersection_of: UBERON:0002412 ! vertebra -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003076 ! -property_value: IAO:0000589 "cervical vertebra (xenopus)" xsd:string -intersection_of: UBERON:0002413 ! cervical vertebra -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000176 ! -property_value: IAO:0000589 "integumental system (xenopus)" xsd:string -intersection_of: UBERON:0002416 ! integumental system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000170 ! -property_value: IAO:0000589 "cartilage tissue (xenopus)" xsd:string -intersection_of: UBERON:0002418 ! cartilage tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003099 ! -property_value: IAO:0000589 "fourth ventricle (xenopus)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000132 ! -property_value: IAO:0000589 "hepatobiliary system (xenopus)" xsd:string -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003201 ! -property_value: IAO:0000589 "oral epithelium (xenopus)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004210 ! -property_value: IAO:0000589 "pituitary stalk (xenopus)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004096 ! -property_value: IAO:0000589 "lens fiber (xenopus)" xsd:string -intersection_of: UBERON:0002444 ! lens fiber -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004165 ! -property_value: IAO:0000589 "intersomitic artery (xenopus)" xsd:string -intersection_of: UBERON:0002457 ! intersomitic artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003199 ! -property_value: IAO:0000589 "lymphoid system (xenopus)" xsd:string -intersection_of: UBERON:0002465 ! lymphoid system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004040 ! -property_value: IAO:0000589 "bone tissue (xenopus)" xsd:string -intersection_of: UBERON:0002481 ! bone tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004018 ! -property_value: IAO:0000589 "endochondral bone (xenopus)" xsd:string -intersection_of: UBERON:0002513 ! endochondral bone -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000107 ! -property_value: IAO:0000589 "post-anal tail bud (xenopus)" xsd:string -intersection_of: UBERON:0002533 ! post-anal tail bud -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000034 ! -property_value: IAO:0000589 "hatching gland (xenopus)" xsd:string -intersection_of: UBERON:0002538 ! hatching gland -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000096 ! -property_value: IAO:0000589 "pharyngeal arch (xenopus)" xsd:string -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000095 ! -property_value: IAO:0000589 "lateral line system (xenopus)" xsd:string -intersection_of: UBERON:0002540 ! lateral line system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003032 ! -property_value: IAO:0000589 "digit (xenopus)" xsd:string -intersection_of: UBERON:0002544 ! digit -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000305 ! -property_value: IAO:0000589 "cranial placode (xenopus)" xsd:string -intersection_of: UBERON:0002546 ! cranial placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004226 ! -property_value: IAO:0000589 "ventral tegmental area (xenopus)" xsd:string -intersection_of: UBERON:0002691 ! ventral tegmental area -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004142 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (xenopus)" xsd:string -intersection_of: UBERON:0002827 ! vestibulocochlear ganglion -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004542 ! -property_value: IAO:0000589 "central amygdaloid nucleus (xenopus)" xsd:string -intersection_of: UBERON:0002883 ! central amygdaloid nucleus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000005 ! -property_value: IAO:0000589 "olfactory placode (xenopus)" xsd:string -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000006 ! -property_value: IAO:0000589 "ear vesicle (xenopus)" xsd:string -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000016 ! -property_value: IAO:0000589 "midbrain-hindbrain boundary (xenopus)" xsd:string -intersection_of: UBERON:0003052 ! midbrain-hindbrain boundary -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000021 ! -property_value: IAO:0000589 "ventricular zone (xenopus)" xsd:string -intersection_of: UBERON:0003053 ! ventricular zone -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000029 ! -property_value: IAO:0000589 "periderm (xenopus)" xsd:string -intersection_of: UBERON:0003055 ! periderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000045 ! -property_value: IAO:0000589 "pre-chordal neural plate (xenopus)" xsd:string -intersection_of: UBERON:0003056 ! pre-chordal neural plate -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000046 ! -property_value: IAO:0000589 "chordal neural plate (xenopus)" xsd:string -intersection_of: UBERON:0003057 ! chordal neural plate -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000056 ! -property_value: IAO:0000589 "hypochord (xenopus)" xsd:string -intersection_of: UBERON:0003058 ! hypochord -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000057 ! -property_value: IAO:0000589 "presomitic mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0003059 ! presomitic mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000063 ! -property_value: IAO:0000589 "pronephric duct (xenopus)" xsd:string -intersection_of: UBERON:0003060 ! pronephric duct -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000067 ! -property_value: IAO:0000589 "blood island (xenopus)" xsd:string -intersection_of: UBERON:0003061 ! blood island -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000072 ! -property_value: IAO:0000589 "primitive knot (xenopus)" xsd:string -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000079 ! -property_value: IAO:0000589 "prechordal plate (xenopus)" xsd:string -intersection_of: UBERON:0003063 ! prechordal plate -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000085 ! -property_value: IAO:0000589 "intermediate mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000086 ! -property_value: IAO:0000589 "ciliary marginal zone (xenopus)" xsd:string -intersection_of: UBERON:0003065 ! ciliary marginal zone -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000098 ! -property_value: IAO:0000589 "pharyngeal arch 2 (xenopus)" xsd:string -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000187 ! -property_value: IAO:0000589 "dorsolateral placode (xenopus)" xsd:string -intersection_of: UBERON:0003067 ! dorsolateral placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000205 ! -property_value: IAO:0000589 "axial mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0003068 ! axial mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000223 ! -property_value: IAO:0000589 "otic placode (xenopus)" xsd:string -intersection_of: UBERON:0003069 ! otic placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000225 ! -property_value: IAO:0000589 "trigeminal placode complex (xenopus)" xsd:string -intersection_of: UBERON:0003070 ! trigeminal placode complex -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000227 ! -property_value: IAO:0000589 "eye primordium (xenopus)" xsd:string -intersection_of: UBERON:0003071 ! eye primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004090 ! -property_value: IAO:0000589 "eye primordium (xenopus)" xsd:string -intersection_of: UBERON:0003071 ! eye primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000240 ! -property_value: IAO:0000589 "lens placode (xenopus)" xsd:string -intersection_of: UBERON:0003073 ! lens placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000242 ! -property_value: IAO:0000589 "mesonephric duct (xenopus)" xsd:string -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000249 ! -property_value: IAO:0000589 "neural plate (xenopus)" xsd:string -intersection_of: UBERON:0003075 ! neural plate -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000250 ! -property_value: IAO:0000589 "posterior neural tube (xenopus)" xsd:string -intersection_of: UBERON:0003076 ! posterior neural tube -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000259 ! -property_value: IAO:0000589 "paraxial mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000284 ! -property_value: IAO:0000589 "epibranchial placode (xenopus)" xsd:string -intersection_of: UBERON:0003078 ! epibranchial placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000307 ! -property_value: IAO:0000589 "anterior neural tube (xenopus)" xsd:string -intersection_of: UBERON:0003080 ! anterior neural tube -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000311 ! -property_value: IAO:0000589 "lateral plate mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000315 ! -property_value: IAO:0000589 "myotome (xenopus)" xsd:string -intersection_of: UBERON:0003082 ! myotome -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000319 ! -property_value: IAO:0000589 "trunk neural crest (xenopus)" xsd:string -intersection_of: UBERON:0003083 ! trunk neural crest -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000336 ! -property_value: IAO:0000589 "heart primordium (xenopus)" xsd:string -intersection_of: UBERON:0003084 ! heart primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000338 ! -property_value: IAO:0000589 "ventral aorta (xenopus)" xsd:string -intersection_of: UBERON:0003085 ! ventral aorta -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000364 ! -property_value: IAO:0000589 "caudal artery (xenopus)" xsd:string -intersection_of: UBERON:0003086 ! caudal artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000383 ! -property_value: IAO:0000589 "anterior cardinal vein (xenopus)" xsd:string -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000390 ! -property_value: IAO:0000589 "caudal vein (xenopus)" xsd:string -intersection_of: UBERON:0003088 ! caudal vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000397 ! -property_value: IAO:0000589 "sclerotome (xenopus)" xsd:string -intersection_of: UBERON:0003089 ! sclerotome -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000442 ! -property_value: IAO:0000589 "supraorbital lateral line (xenopus)" xsd:string -intersection_of: UBERON:0003090 ! supraorbital lateral line -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000444 ! -property_value: IAO:0000589 "thyroid primordium (xenopus)" xsd:string -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000452 ! -property_value: IAO:0000589 "ultimobranchial body (xenopus)" xsd:string -intersection_of: UBERON:0003092 ! ultimobranchial body -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000458 ! -property_value: IAO:0000589 "occipital lateral line (xenopus)" xsd:string -intersection_of: UBERON:0003093 ! occipital lateral line -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000459 ! -property_value: IAO:0000589 "infraorbital lateral line (xenopus)" xsd:string -intersection_of: UBERON:0003094 ! infraorbital lateral line -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000462 ! -property_value: IAO:0000589 "dorsal lateral line (xenopus)" xsd:string -intersection_of: UBERON:0003095 ! dorsal lateral line -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000463 ! -property_value: IAO:0000589 "middle lateral line (xenopus)" xsd:string -intersection_of: UBERON:0003096 ! middle lateral line -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000469 ! -property_value: IAO:0000589 "dorsal fin (xenopus)" xsd:string -intersection_of: UBERON:0003097 ! dorsal fin -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000475 ! -property_value: IAO:0000589 "optic stalk (xenopus)" xsd:string -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001001 ! -property_value: IAO:0000589 "cranial neural crest (xenopus)" xsd:string -intersection_of: UBERON:0003099 ! cranial neural crest -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003005 ! -property_value: IAO:0000589 "female organism (xenopus)" xsd:string -intersection_of: UBERON:0003100 ! female organism -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003006 ! -property_value: IAO:0000589 "male organism (xenopus)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003028 ! -property_value: IAO:0000589 "surface structure (xenopus)" xsd:string -intersection_of: UBERON:0003102 ! surface structure -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003041 ! -property_value: IAO:0000589 "compound organ (xenopus)" xsd:string -intersection_of: UBERON:0003103 ! compound organ -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003046 ! -property_value: IAO:0000589 "mesenchyme (xenopus)" xsd:string -intersection_of: UBERON:0003104 ! mesenchyme -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003051 ! -property_value: IAO:0000589 "dorsal lateral plate region (xenopus)" xsd:string -intersection_of: UBERON:0003105 ! dorsal lateral plate region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003080 ! -property_value: IAO:0000589 "urostyle (xenopus)" xsd:string -intersection_of: UBERON:0003106 ! urostyle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003085 ! -property_value: IAO:0000589 "Meckel's cartilage (xenopus)" xsd:string -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003086 ! -property_value: IAO:0000589 "suspensorium (xenopus)" xsd:string -intersection_of: UBERON:0003108 ! suspensorium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003175 ! -property_value: IAO:0000589 "otic region (xenopus)" xsd:string -intersection_of: UBERON:0003110 ! otic region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003174 ! -property_value: IAO:0000589 "sphenoid region (xenopus)" xsd:string -intersection_of: UBERON:0003111 ! sphenoid region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003172 ! -property_value: IAO:0000589 "olfactory region (xenopus)" xsd:string -intersection_of: UBERON:0003112 ! olfactory region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003169 ! -property_value: IAO:0000589 "dermatocranium (xenopus)" xsd:string -intersection_of: UBERON:0003113 ! dermatocranium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000447 ! -property_value: IAO:0000589 "pharyngeal arch 3 (xenopus)" xsd:string -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000449 ! -property_value: IAO:0000589 "pharyngeal arch 4 (xenopus)" xsd:string -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000451 ! -property_value: IAO:0000589 "pharyngeal arch 5 (xenopus)" xsd:string -intersection_of: UBERON:0003116 ! pharyngeal arch 5 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000453 ! -property_value: IAO:0000589 "pharyngeal arch 6 (xenopus)" xsd:string -intersection_of: UBERON:0003117 ! pharyngeal arch 6 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000342 ! -property_value: IAO:0000589 "pharyngeal arch artery 1 (xenopus)" xsd:string -intersection_of: UBERON:0003118 ! pharyngeal arch artery 1 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000343 ! -property_value: IAO:0000589 "pharyngeal arch artery 2 (xenopus)" xsd:string -intersection_of: UBERON:0003119 ! pharyngeal arch artery 2 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000344 ! -property_value: IAO:0000589 "pharyngeal arch artery 3 (xenopus)" xsd:string -intersection_of: UBERON:0003120 ! pharyngeal arch artery 3 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000355 ! -property_value: IAO:0000589 "pharyngeal arch artery 4 (xenopus)" xsd:string -intersection_of: UBERON:0003121 ! pharyngeal arch artery 4 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000352 ! -property_value: IAO:0000589 "pharyngeal arch artery 5 (xenopus)" xsd:string -intersection_of: UBERON:0003122 ! pharyngeal arch artery 5 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000353 ! -property_value: IAO:0000589 "pharyngeal arch artery 6 (xenopus)" xsd:string -intersection_of: UBERON:0003123 ! pharyngeal arch artery 6 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000030 ! -property_value: IAO:0000589 "vitelline membrane (xenopus)" xsd:string -intersection_of: UBERON:0003125 ! vitelline membrane -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000118 ! -property_value: IAO:0000589 "trachea (xenopus)" xsd:string -intersection_of: UBERON:0003126 ! trachea -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003087 ! -property_value: IAO:0000589 "skeleton of upper jaw (xenopus)" xsd:string -intersection_of: UBERON:0003277 ! skeleton of upper jaw -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003084 ! -property_value: IAO:0000589 "skeleton of lower jaw (xenopus)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003202 ! -property_value: IAO:0000589 "pharyngeal epithelium (xenopus)" xsd:string -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003050 ! -property_value: IAO:0000589 "gonadal fat pad (xenopus)" xsd:string -intersection_of: UBERON:0003428 ! gonadal fat pad -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000393 ! -property_value: IAO:0000589 "tail vein (xenopus)" xsd:string -intersection_of: UBERON:0003481 ! tail vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004153 ! -property_value: IAO:0000589 "retina blood vessel (xenopus)" xsd:string -intersection_of: UBERON:0003501 ! retina blood vessel -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000252 ! -property_value: IAO:0000589 "neural tube lumen (xenopus)" xsd:string -intersection_of: UBERON:0003842 ! neural tube lumen -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003203 ! -property_value: IAO:0000589 "dental epithelium (xenopus)" xsd:string -intersection_of: UBERON:0003843 ! dental epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000330 ! -property_value: IAO:0000589 "Mullerian duct (xenopus)" xsd:string -intersection_of: UBERON:0003890 ! Mullerian duct -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003266 ! -property_value: IAO:0000589 "liver primordium (xenopus)" xsd:string -intersection_of: UBERON:0003894 ! liver primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003216 ! -property_value: IAO:0000589 "retinal neural layer (xenopus)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004120 ! -property_value: IAO:0000589 "cardiac jelly (xenopus)" xsd:string -intersection_of: UBERON:0003906 ! cardiac jelly -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001101 ! -property_value: IAO:0000589 "pancreas primordium (xenopus)" xsd:string -intersection_of: UBERON:0003921 ! pancreas primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000467 ! -property_value: IAO:0000589 "dorsal pancreatic bud (xenopus)" xsd:string -intersection_of: UBERON:0003923 ! dorsal pancreatic bud -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001103 ! -property_value: IAO:0000589 "ventral pancreatic bud (xenopus)" xsd:string -intersection_of: UBERON:0003924 ! ventral pancreatic bud -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003200 ! -property_value: IAO:0000589 "digestive tract epithelium (xenopus)" xsd:string -intersection_of: UBERON:0003929 ! digestive tract epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004124 ! -property_value: IAO:0000589 "atrioventricular canal endocardium (xenopus)" xsd:string -intersection_of: UBERON:0003930 ! atrioventricular canal endocardium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000220 ! -property_value: IAO:0000589 "dermatome (xenopus)" xsd:string -intersection_of: UBERON:0004016 ! dermatome -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004089 ! -property_value: IAO:0000589 "periocular mesenchyme (xenopus)" xsd:string -intersection_of: UBERON:0004017 ! periocular mesenchyme -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000282 ! -property_value: IAO:0000589 "pharyngeal pouch (xenopus)" xsd:string -intersection_of: UBERON:0004117 ! pharyngeal pouch -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000140 ! -property_value: IAO:0000589 "genitourinary system (xenopus)" xsd:string -intersection_of: UBERON:0004122 ! genitourinary system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000228 ! -property_value: IAO:0000589 "optic vesicle (xenopus)" xsd:string -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004185 ! -property_value: IAO:0000589 "primary heart field (xenopus)" xsd:string -intersection_of: UBERON:0004140 ! primary heart field -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000337 ! -property_value: IAO:0000589 "heart tube (xenopus)" xsd:string -intersection_of: UBERON:0004141 ! heart tube -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004141 ! -property_value: IAO:0000589 "outflow tract septum (xenopus)" xsd:string -intersection_of: UBERON:0004142 ! outflow tract septum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004139 ! -property_value: IAO:0000589 "outflow tract (xenopus)" xsd:string -intersection_of: UBERON:0004145 ! outflow tract -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004325 ! -property_value: IAO:0000589 "branchiomeric muscle (xenopus)" xsd:string -intersection_of: UBERON:0004164 ! branchiomeric muscle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004053 ! -property_value: IAO:0000589 "skeleton (xenopus)" xsd:string -intersection_of: UBERON:0004288 ! skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000052 ! -property_value: IAO:0000589 "cardinal vein (xenopus)" xsd:string -intersection_of: UBERON:0004344 ! cardinal vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003161 ! -property_value: IAO:0000589 "limb bud (xenopus)" xsd:string -intersection_of: UBERON:0004347 ! limb bud -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004121 ! -property_value: IAO:0000589 "apical ectodermal ridge (xenopus)" xsd:string -intersection_of: UBERON:0004356 ! apical ectodermal ridge -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000097 ! -property_value: IAO:0000589 "pharyngeal arch 1 (xenopus)" xsd:string -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000341 ! -property_value: IAO:0000589 "pharyngeal arch artery (xenopus)" xsd:string -intersection_of: UBERON:0004363 ! pharyngeal arch artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000367 ! -property_value: IAO:0000589 "cerebral artery (xenopus)" xsd:string -intersection_of: UBERON:0004449 ! cerebral artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000389 ! -property_value: IAO:0000589 "gastric vein (xenopus)" xsd:string -intersection_of: UBERON:0004450 ! gastric vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003077 ! -property_value: IAO:0000589 "trunk or cervical vertebra (xenopus)" xsd:string -intersection_of: UBERON:0004451 ! trunk or cervical vertebra -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004020 ! -property_value: IAO:0000589 "anatomical projection (xenopus)" xsd:string -intersection_of: UBERON:0004529 ! anatomical projection -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000100 ! -property_value: IAO:0000589 "cardiovascular system (xenopus)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001010 ! -property_value: IAO:0000589 "cardiovascular system (xenopus)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:1000008 ! -property_value: IAO:0000589 "amphibian larval stage (xenopus)" xsd:string -intersection_of: UBERON:0004728 ! amphibian larval stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:0000092 ! -property_value: IAO:0000589 "archenteron (xenopus)" xsd:string -intersection_of: UBERON:0004735 ! archenteron -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000318 ! -property_value: IAO:0000589 "pronephric glomerulus (xenopus)" xsd:string -intersection_of: UBERON:0004739 ! pronephric glomerulus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004038 ! -property_value: IAO:0000589 "skeletal tissue (xenopus)" xsd:string -intersection_of: UBERON:0004755 ! skeletal tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003059 ! -property_value: IAO:0000589 "cartilaginous neurocranium (xenopus)" xsd:string -intersection_of: UBERON:0004761 ! cartilaginous neurocranium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004012 ! -property_value: IAO:0000589 "skeletal element (xenopus)" xsd:string -intersection_of: UBERON:0004765 ! skeletal element -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000277 ! -property_value: IAO:0000589 "posterior nasal aperture (xenopus)" xsd:string -intersection_of: UBERON:0004771 ! posterior nasal aperture -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000356 ! -property_value: IAO:0000589 "cardiovascular system endothelium (xenopus)" xsd:string -intersection_of: UBERON:0004852 ! cardiovascular system endothelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004153 ! -property_value: IAO:0000589 "vasculature of retina (xenopus)" xsd:string -intersection_of: UBERON:0004864 ! vasculature of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000271 ! -property_value: IAO:0000589 "somatic layer of lateral plate mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0004871 ! somatic layer of lateral plate mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000276 ! -property_value: IAO:0000589 "splanchnic layer of lateral plate mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0004872 ! splanchnic layer of lateral plate mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000068 ! -property_value: IAO:0000589 "marginal zone of embryo (xenopus)" xsd:string -intersection_of: UBERON:0004879 ! marginal zone of embryo -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000248 ! -property_value: IAO:0000589 "neural groove (xenopus)" xsd:string -intersection_of: UBERON:0005061 ! neural groove -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004087 ! -property_value: IAO:0000589 "neural fold (xenopus)" xsd:string -intersection_of: UBERON:0005062 ! neural fold -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000033 ! -property_value: IAO:0000589 "embryonic cement gland (xenopus)" xsd:string -intersection_of: UBERON:0005093 ! embryonic cement gland -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000199 ! -property_value: IAO:0000589 "osseus labyrinth vestibule (xenopus)" xsd:string -intersection_of: UBERON:0005236 ! osseus labyrinth vestibule -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000018 ! -property_value: IAO:0000589 "gonadal ridge (xenopus)" xsd:string -intersection_of: UBERON:0005294 ! gonadal ridge -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004060 ! -property_value: IAO:0000589 "blastema (xenopus)" xsd:string -intersection_of: UBERON:0005306 ! blastema -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000062 ! -property_value: IAO:0000589 "nephrostome (xenopus)" xsd:string -intersection_of: UBERON:0005308 ! nephrostome -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000285 ! -property_value: IAO:0000589 "pronephric nephron (xenopus)" xsd:string -intersection_of: UBERON:0005309 ! pronephric nephron -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004105 ! -property_value: IAO:0000589 "pronephric nephron tubule (xenopus)" xsd:string -intersection_of: UBERON:0005310 ! pronephric nephron tubule -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000151 ! -property_value: IAO:0000589 "mesonephric collecting duct (xenopus)" xsd:string -intersection_of: UBERON:0005319 ! mesonephric collecting duct -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000292 ! -property_value: IAO:0000589 "mesonephric nephron (xenopus)" xsd:string -intersection_of: UBERON:0005322 ! mesonephric nephron -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000291 ! -property_value: IAO:0000589 "mesonephric mesenchyme (xenopus)" xsd:string -intersection_of: UBERON:0005323 ! mesonephric mesenchyme -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000146 ! -property_value: IAO:0000589 "mesonephric glomerulus (xenopus)" xsd:string -intersection_of: UBERON:0005325 ! mesonephric glomerulus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004140 ! -property_value: IAO:0000589 "outflow tract of ventricle (xenopus)" xsd:string -intersection_of: UBERON:0005337 ! outflow tract of ventricle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000430 ! -property_value: IAO:0000589 "Rathke's pouch (xenopus)" xsd:string -intersection_of: UBERON:0005356 ! Rathke's pouch -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000474 ! -property_value: IAO:0000589 "optic fissure (xenopus)" xsd:string -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003065 ! -property_value: IAO:0000589 "forelimb bud (xenopus)" xsd:string -intersection_of: UBERON:0005417 ! forelimb bud -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003066 ! -property_value: IAO:0000589 "hindlimb bud (xenopus)" xsd:string -intersection_of: UBERON:0005418 ! hindlimb bud -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004191 ! -property_value: IAO:0000589 "vagal neural crest (xenopus)" xsd:string -intersection_of: UBERON:0005428 ! vagal neural crest -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000376 ! -property_value: IAO:0000589 "vitelline vein (xenopus)" xsd:string -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004147 ! -property_value: IAO:0000589 "vitelline vein (xenopus)" xsd:string -intersection_of: UBERON:0005487 ! vitelline vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004154 ! -property_value: IAO:0000589 "hyaloid vessel (xenopus)" xsd:string -intersection_of: UBERON:0005492 ! hyaloid vessel -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004091 ! -property_value: IAO:0000589 "non-neural ectoderm (xenopus)" xsd:string -intersection_of: UBERON:0005497 ! non-neural ectoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004081 ! -property_value: IAO:0000589 "rhombomere 3 (xenopus)" xsd:string -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004082 ! -property_value: IAO:0000589 "rhombomere 4 (xenopus)" xsd:string -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004083 ! -property_value: IAO:0000589 "rhombomere 5 (xenopus)" xsd:string -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004084 ! -property_value: IAO:0000589 "rhombomere 6 (xenopus)" xsd:string -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004080 ! -property_value: IAO:0000589 "rhombomere 2 (xenopus)" xsd:string -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000313 ! -property_value: IAO:0000589 "head somite (xenopus)" xsd:string -intersection_of: UBERON:0005594 ! head somite -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001002 ! -property_value: IAO:0000589 "lung primordium (xenopus)" xsd:string -intersection_of: UBERON:0005597 ! lung primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000314 ! -property_value: IAO:0000589 "trunk somite (xenopus)" xsd:string -intersection_of: UBERON:0005598 ! trunk somite -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004157 ! -property_value: IAO:0000589 "hyaloid vascular plexus (xenopus)" xsd:string -intersection_of: UBERON:0005607 ! hyaloid vascular plexus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000361 ! -property_value: IAO:0000589 "iliac artery (xenopus)" xsd:string -intersection_of: UBERON:0005609 ! iliac artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000370 ! -property_value: IAO:0000589 "mesenteric artery (xenopus)" xsd:string -intersection_of: UBERON:0005616 ! mesenteric artery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004143 ! -property_value: IAO:0000589 "vascular plexus (xenopus)" xsd:string -intersection_of: UBERON:0005629 ! vascular plexus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000264 ! -property_value: IAO:0000589 "pronephric mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0005721 ! pronephric mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000306 ! -property_value: IAO:0000589 "floor plate spinal cord region (xenopus)" xsd:string -intersection_of: UBERON:0005723 ! floor plate spinal cord region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000022 ! -property_value: IAO:0000589 "roof plate spinal cord region (xenopus)" xsd:string -intersection_of: UBERON:0005724 ! roof plate spinal cord region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003196 ! -property_value: IAO:0000589 "olfactory system (xenopus)" xsd:string -intersection_of: UBERON:0005725 ! olfactory system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000051 ! -property_value: IAO:0000589 "dorsal aorta (xenopus)" xsd:string -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004022 ! -property_value: IAO:0000589 "cartilaginous condensation (xenopus)" xsd:string -intersection_of: UBERON:0005863 ! cartilaginous condensation -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000275 ! -property_value: IAO:0000589 "olfactory pit (xenopus)" xsd:string -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004073 ! -property_value: IAO:0000589 "olfactory pit (xenopus)" xsd:string -intersection_of: UBERON:0005870 ! olfactory pit -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003177 ! -property_value: IAO:0000589 "hyoid arch skeleton (xenopus)" xsd:string -intersection_of: UBERON:0005884 ! hyoid arch skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003180 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch skeleton (xenopus)" xsd:string -intersection_of: UBERON:0005886 ! post-hyoid pharyngeal arch skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000329 ! -property_value: IAO:0000589 "coelomic epithelium (xenopus)" xsd:string -intersection_of: UBERON:0005891 ! coelomic epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000333 ! -property_value: IAO:0000589 "mesonephric early distal tubule (xenopus)" xsd:string -intersection_of: UBERON:0005892 ! mesonephric early distal tubule -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003173 ! -property_value: IAO:0000589 "occipital region (xenopus)" xsd:string -intersection_of: UBERON:0005902 ! occipital region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003033 ! -property_value: IAO:0000589 "external naris (xenopus)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004011 ! -property_value: IAO:0000589 "axial skeleton plus cranial skeleton (xenopus)" xsd:string -intersection_of: UBERON:0005944 ! axial skeleton plus cranial skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004156 ! -property_value: IAO:0000589 "hyaloid vein (xenopus)" xsd:string -intersection_of: UBERON:0006011 ! hyaloid vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004316 ! -property_value: IAO:0000589 "interdigital region (xenopus)" xsd:string -intersection_of: UBERON:0006012 ! interdigital region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000087 ! -property_value: IAO:0000589 "caudal region (xenopus)" xsd:string -intersection_of: UBERON:0006071 ! caudal region -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001015 ! -property_value: IAO:0000589 "rectal diverticulum (xenopus)" xsd:string -intersection_of: UBERON:0006172 ! rectal diverticulum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000385 ! -property_value: IAO:0000589 "pronephric sinus (xenopus)" xsd:string -intersection_of: UBERON:0006174 ! pronephric sinus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000381 ! -property_value: IAO:0000589 "mesonephric sinus (xenopus)" xsd:string -intersection_of: UBERON:0006196 ! mesonephric sinus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004135 ! -property_value: IAO:0000589 "rhombic lip (xenopus)" xsd:string -intersection_of: UBERON:0006215 ! rhombic lip -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004205 ! -property_value: IAO:0000589 "gallbladder primordium (xenopus)" xsd:string -intersection_of: UBERON:0006242 ! gallbladder primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000326 ! -property_value: IAO:0000589 "spleen primordium (xenopus)" xsd:string -intersection_of: UBERON:0006293 ! spleen primordium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000465 ! -property_value: IAO:0000589 "posterior lateral line (xenopus)" xsd:string -intersection_of: UBERON:0006334 ! posterior lateral line -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000287 ! -property_value: IAO:0000589 "distal early tubule (xenopus)" xsd:string -intersection_of: UBERON:0006337 ! distal early tubule -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004132 ! -property_value: IAO:0000589 "presumptive ectoderm (xenopus)" xsd:string -intersection_of: UBERON:0006601 ! presumptive ectoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003213 ! -property_value: IAO:0000589 "tibiofibula (xenopus)" xsd:string -intersection_of: UBERON:0006714 ! tibiofibula -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003209 ! -property_value: IAO:0000589 "radio-ulna (xenopus)" xsd:string -intersection_of: UBERON:0006715 ! radio-ulna -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004003 ! -property_value: IAO:0000589 "anatomical line (xenopus)" xsd:string -intersection_of: UBERON:0006800 ! anatomical line -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000053 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000235 ! -property_value: IAO:0000589 "cardiogenic splanchnic mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0007005 ! cardiogenic splanchnic mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000108 ! -property_value: IAO:0000589 "chordo neural hinge (xenopus)" xsd:string -intersection_of: UBERON:0007097 ! chordo neural hinge -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000024 ! -property_value: IAO:0000589 "mandibular neural crest (xenopus)" xsd:string -intersection_of: UBERON:0007098 ! mandibular neural crest -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000025 ! -property_value: IAO:0000589 "hyoid neural crest (xenopus)" xsd:string -intersection_of: UBERON:0007099 ! hyoid neural crest -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000102 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (xenopus)" xsd:string -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000247 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (xenopus)" xsd:string -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000251 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (xenopus)" xsd:string -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000254 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (xenopus)" xsd:string -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000255 ! -property_value: IAO:0000589 "pharyngeal pouch 5 (xenopus)" xsd:string -intersection_of: UBERON:0007126 ! pharyngeal pouch 5 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000265 ! -property_value: IAO:0000589 "pharyngeal pouch 6 (xenopus)" xsd:string -intersection_of: UBERON:0007127 ! pharyngeal pouch 6 -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000110 ! -property_value: IAO:0000589 "glomeral mesenchyme (xenopus)" xsd:string -intersection_of: UBERON:0007128 ! glomeral mesenchyme -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:1000011 ! -property_value: IAO:0000589 "2 cell stage (xenopus)" xsd:string -intersection_of: UBERON:0007232 ! 2 cell stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000013 ! -property_value: IAO:0000589 "4 cell stage (xenopus)" xsd:string -intersection_of: UBERON:0007233 ! 4 cell stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:1000014 ! -property_value: IAO:0000589 "8 cell stage (xenopus)" xsd:string -intersection_of: UBERON:0007236 ! 8 cell stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:0004137 ! -property_value: IAO:0000589 "crista of ampulla of anterior semicircular duct of membranous laybrinth (xenopus)" xsd:string -intersection_of: UBERON:0007274 ! crista of ampulla of anterior semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004133 ! -property_value: IAO:0000589 "crista of ampulla of posterior semicircular duct of membranous laybrinth (xenopus)" xsd:string -intersection_of: UBERON:0007275 ! crista of ampulla of posterior semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004086 ! -property_value: IAO:0000589 "presumptive midbrain hindbrain boundary (xenopus)" xsd:string -intersection_of: UBERON:0007281 ! presumptive midbrain hindbrain boundary -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004134 ! -property_value: IAO:0000589 "presumptive paraxial mesoderm (xenopus)" xsd:string -intersection_of: UBERON:0007285 ! presumptive paraxial mesoderm -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004059 ! -property_value: IAO:0000589 "regenerating anatomical structure (xenopus)" xsd:string -intersection_of: UBERON:0007567 ! regenerating anatomical structure -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003026 ! -property_value: IAO:0000589 "post-anal tail (xenopus)" xsd:string -intersection_of: UBERON:0007812 ! post-anal tail -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000138 ! -property_value: IAO:0000589 "peritoneal mesentery (xenopus)" xsd:string -intersection_of: UBERON:0007826 ! peritoneal mesentery -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003063 ! -property_value: IAO:0000589 "pectoral girdle skeleton (xenopus)" xsd:string -intersection_of: UBERON:0007831 ! pectoral girdle skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003064 ! -property_value: IAO:0000589 "pelvic girdle skeleton (xenopus)" xsd:string -intersection_of: UBERON:0007832 ! pelvic girdle skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004014 ! -property_value: IAO:0000589 "membrane bone (xenopus)" xsd:string -intersection_of: UBERON:0007842 ! membrane bone -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004013 ! -property_value: IAO:0000589 "cartilage element (xenopus)" xsd:string -intersection_of: UBERON:0007844 ! cartilage element -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004030 ! -property_value: IAO:0000589 "dense regular connective tissue (xenopus)" xsd:string -intersection_of: UBERON:0007846 ! dense regular connective tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004050 ! -property_value: IAO:0000589 "perichordal tissue (xenopus)" xsd:string -intersection_of: UBERON:0007862 ! perichordal tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003228 ! -property_value: IAO:0000589 "hypaxial musculature (xenopus)" xsd:string -intersection_of: UBERON:0008777 ! hypaxial musculature -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003229 ! -property_value: IAO:0000589 "epaxial musculature (xenopus)" xsd:string -intersection_of: UBERON:0008778 ! epaxial musculature -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000101 ! -property_value: IAO:0000589 "hepatic diverticulum (xenopus)" xsd:string -intersection_of: UBERON:0008835 ! hepatic diverticulum -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004035 ! -property_value: IAO:0000589 "osteoid (xenopus)" xsd:string -intersection_of: UBERON:0008883 ! osteoid -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000120 ! -property_value: IAO:0000589 "external gill (xenopus)" xsd:string -intersection_of: UBERON:0008891 ! external gill -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000448 ! -property_value: IAO:0000589 "pharyngeal gill precursor (xenopus)" xsd:string -intersection_of: UBERON:0008894 ! pharyngeal gill precursor -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003176 ! -property_value: IAO:0000589 "splanchnocranium (xenopus)" xsd:string -intersection_of: UBERON:0008895 ! splanchnocranium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000099 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch (xenopus)" xsd:string -intersection_of: UBERON:0008896 ! post-hyoid pharyngeal arch -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000002 ! -property_value: IAO:0000589 "fin (xenopus)" xsd:string -intersection_of: UBERON:0008897 ! fin -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004015 ! -property_value: IAO:0000589 "dermal bone (xenopus)" xsd:string -intersection_of: UBERON:0008907 ! dermal bone -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004208 ! -property_value: IAO:0000589 "adenohypophyseal placode (xenopus)" xsd:string -intersection_of: UBERON:0009122 ! adenohypophyseal placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004211 ! -property_value: IAO:0000589 "geniculate placode (xenopus)" xsd:string -intersection_of: UBERON:0009124 ! geniculate placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004212 ! -property_value: IAO:0000589 "petrosal placode (xenopus)" xsd:string -intersection_of: UBERON:0009125 ! petrosal placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004213 ! -property_value: IAO:0000589 "nodosal placode (xenopus)" xsd:string -intersection_of: UBERON:0009126 ! nodosal placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000440 ! -property_value: IAO:0000589 "lateral line placode (xenopus)" xsd:string -intersection_of: UBERON:0009128 ! lateral line placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004474 ! -property_value: IAO:0000589 "periotic mesenchyme (xenopus)" xsd:string -intersection_of: UBERON:0009500 ! periotic mesenchyme -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003103 ! -property_value: IAO:0000589 "nail of pedal digit (xenopus)" xsd:string -intersection_of: UBERON:0009567 ! nail of pedal digit -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003143 ! -property_value: IAO:0000589 "tail somite (xenopus)" xsd:string -intersection_of: UBERON:0009621 ! tail somite -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004305 ! -property_value: IAO:0000589 "zona limitans intrathalamica (xenopus)" xsd:string -intersection_of: UBERON:0009848 ! zona limitans intrathalamica -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:1000008 ! -property_value: IAO:0000589 "tadpole stage (xenopus)" xsd:string -intersection_of: UBERON:0009849 ! tadpole stage -intersection_of: occurs_in NCBITaxon:8353 - -[Term] -id: XAO:0003211 ! -property_value: IAO:0000589 "tarsal skeleton (xenopus)" xsd:string -intersection_of: UBERON:0009879 ! tarsal skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003207 ! -property_value: IAO:0000589 "carpal skeleton (xenopus)" xsd:string -intersection_of: UBERON:0009880 ! carpal skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004186 ! -property_value: IAO:0000589 "secondary heart field (xenopus)" xsd:string -intersection_of: UBERON:0009889 ! secondary heart field -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004620 ! -property_value: IAO:0000589 "neurogenic placode (xenopus)" xsd:string -intersection_of: UBERON:0009955 ! neurogenic placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004524 ! -property_value: IAO:0000589 "entire pharyngeal arch associated mesenchyme (xenopus)" xsd:string -intersection_of: UBERON:0010046 ! entire pharyngeal arch associated mesenchyme -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004192 ! -property_value: IAO:0000589 "sacral neural crest (xenopus)" xsd:string -intersection_of: UBERON:0010075 ! sacral neural crest -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004176 ! -property_value: IAO:0000589 "optic choroid vascular plexus (xenopus)" xsd:string -intersection_of: UBERON:0010078 ! optic choroid vascular plexus -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004057 ! -property_value: IAO:0000589 "post-anal tail tip (xenopus)" xsd:string -intersection_of: UBERON:0010162 ! post-anal tail tip -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004002 ! -property_value: IAO:0000589 "lateral line (xenopus)" xsd:string -intersection_of: UBERON:0010202 ! lateral line -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004151 ! -property_value: IAO:0000589 "tail vasculature (xenopus)" xsd:string -intersection_of: UBERON:0010204 ! tail vasculature -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004174 ! -property_value: IAO:0000589 "mesencephalic vein (xenopus)" xsd:string -intersection_of: UBERON:0010205 ! mesencephalic vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003075 ! -property_value: IAO:0000589 "cranial skeletal system (xenopus)" xsd:string -intersection_of: UBERON:0010323 ! cranial skeletal system -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004026 ! -property_value: IAO:0000589 "endoskeleton (xenopus)" xsd:string -intersection_of: UBERON:0010362 ! endoskeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004017 ! -property_value: IAO:0000589 "endochondral element (xenopus)" xsd:string -intersection_of: UBERON:0010363 ! endochondral element -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004025 ! -property_value: IAO:0000589 "dermal skeleton (xenopus)" xsd:string -intersection_of: UBERON:0010364 ! dermal skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004046 ! -property_value: IAO:0000589 "odontoid tissue (xenopus)" xsd:string -intersection_of: UBERON:0010365 ! odontoid tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004016 ! -property_value: IAO:0000589 "replacement element (xenopus)" xsd:string -intersection_of: UBERON:0010522 ! replacement element -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003208 ! -property_value: IAO:0000589 "metacarpus skeleton (xenopus)" xsd:string -intersection_of: UBERON:0010544 ! metacarpus skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003212 ! -property_value: IAO:0000589 "metatarsus skeleton (xenopus)" xsd:string -intersection_of: UBERON:0010545 ! metatarsus skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004194 ! -property_value: IAO:0000589 "appendicular ossicle (xenopus)" xsd:string -intersection_of: UBERON:0011141 ! appendicular ossicle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000120 ! -property_value: IAO:0000589 "pharyngeal arch derived gill (xenopus)" xsd:string -intersection_of: UBERON:0011150 ! pharyngeal arch derived gill -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004127 ! -property_value: IAO:0000589 "jaw depressor muscle (xenopus)" xsd:string -intersection_of: UBERON:0011151 ! jaw depressor muscle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003178 ! -property_value: IAO:0000589 "dorsal hyoid arch skeleton (xenopus)" xsd:string -intersection_of: UBERON:0011152 ! dorsal hyoid arch skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003179 ! -property_value: IAO:0000589 "ventral hyoid arch skeleton (xenopus)" xsd:string -intersection_of: UBERON:0011153 ! ventral hyoid arch skeleton -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004169 ! -property_value: IAO:0000589 "ophthalmic vein (xenopus)" xsd:string -intersection_of: UBERON:0011191 ! ophthalmic vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004021 ! -property_value: IAO:0000589 "cell condensation (xenopus)" xsd:string -intersection_of: UBERON:0011585 ! cell condensation -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004052 ! -property_value: IAO:0000589 "pre-dentine (xenopus)" xsd:string -intersection_of: UBERON:0011587 ! pre-dentine -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004202 ! -property_value: IAO:0000589 "pre-enamel (xenopus)" xsd:string -intersection_of: UBERON:0011588 ! pre-enamel -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004044 ! -property_value: IAO:0000589 "non-mineralized cartilage tissue (xenopus)" xsd:string -intersection_of: UBERON:0011589 ! non-mineralized cartilage tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003269 ! -property_value: IAO:0000589 "jaw muscle (xenopus)" xsd:string -intersection_of: UBERON:0011648 ! jaw muscle -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004203 ! -property_value: IAO:0000589 "pre-enameloid (xenopus)" xsd:string -intersection_of: UBERON:0011688 ! pre-enameloid -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004199 ! -property_value: IAO:0000589 "enameloid (xenopus)" xsd:string -intersection_of: UBERON:0011692 ! enameloid -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004172 ! -property_value: IAO:0000589 "subintestinal vein (xenopus)" xsd:string -intersection_of: UBERON:0011944 ! subintestinal vein -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000202 ! -property_value: IAO:0000589 "animal hemisphere (xenopus)" xsd:string -intersection_of: UBERON:0012284 ! animal hemisphere -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000280 ! -property_value: IAO:0000589 "vegetal hemisphere (xenopus)" xsd:string -intersection_of: UBERON:0012285 ! vegetal hemisphere -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0001020 ! -property_value: IAO:0000589 "elastica externa of notochord (xenopus)" xsd:string -intersection_of: UBERON:0013655 ! elastica externa of notochord -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004458 ! -property_value: IAO:0000589 "peripheral region of retina (xenopus)" xsd:string -intersection_of: UBERON:0013682 ! peripheral region of retina -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0003145 ! -property_value: IAO:0000589 "basilar papilla (xenopus)" xsd:string -intersection_of: UBERON:0013731 ! basilar papilla -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000174 ! -property_value: IAO:0000589 "skeletal muscle organ (xenopus)" xsd:string -intersection_of: UBERON:0014892 ! skeletal muscle organ -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004075 ! -property_value: IAO:0000589 "intersomitic vessel (xenopus)" xsd:string -intersection_of: UBERON:0014907 ! intersomitic vessel -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004301 ! -property_value: IAO:0000589 "thalamic eminence (xenopus)" xsd:string -intersection_of: UBERON:0014912 ! thalamic eminence -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004074 ! -property_value: IAO:0000589 "somite border (xenopus)" xsd:string -intersection_of: UBERON:0015178 ! somite border -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004077 ! -property_value: IAO:0000589 "somite boundary epithelium (xenopus)" xsd:string -intersection_of: UBERON:0015179 ! somite boundary epithelium -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000371 ! -property_value: IAO:0000589 "right lymph heart (xenopus)" xsd:string -intersection_of: UBERON:0034959 ! right lymph heart -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0000372 ! -property_value: IAO:0000589 "left lymph heart (xenopus)" xsd:string -intersection_of: UBERON:0034960 ! left lymph heart -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004093 ! -property_value: IAO:0000589 "profundal placode (xenopus)" xsd:string -intersection_of: UBERON:0035597 ! profundal placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004457 ! -property_value: IAO:0000589 "lateral line ganglion (xenopus)" xsd:string -intersection_of: UBERON:2000120 ! lateral line ganglion -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004221 ! -property_value: IAO:0000589 "anterior lateral line placode (xenopus)" xsd:string -intersection_of: UBERON:2001316 ! anterior lateral line placode -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:0004039 ! -property_value: IAO:0000589 "mineralized skeletal tissue (xenopus)" xsd:string -intersection_of: UBERON:4000013 ! mineralized skeletal tissue -intersection_of: part_of NCBITaxon:8353 - -[Term] -id: XAO:ENTITY -name: XAO entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:8353 -relationship: only_in_taxon NCBITaxon:8353 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-xao.owl b/src/ontology/bridge/uberon-bridge-to-xao.owl index 6a7aafff23..a53018efa7 100644 --- a/src/ontology/bridge/uberon-bridge-to-xao.owl +++ b/src/ontology/bridge/uberon-bridge-to-xao.owl @@ -7,21 +7,14 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Erik Segerdell - VG Ponferrada - Uberon editors - Taxonomic equivalence axioms between XAO and Uberon - Uberon bridge to xao - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Erik Segerdell + VG Ponferrada + Uberon editors + Taxonomic equivalence axioms between XAO and Uberon. + Uberon bridge to xao @@ -37,18 +30,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -57,215 +38,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -282,42 +73,19 @@ - - - BFO:0000050 - part_of - part_of - + - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -2672,12 +2440,6 @@ - - - - - - @@ -2870,12 +2632,6 @@ - - - - - - @@ -2918,12 +2674,6 @@ - - - - - - @@ -3512,12 +3262,6 @@ - - - - - - @@ -3602,12 +3346,6 @@ - - - - - - @@ -3728,12 +3466,6 @@ - - - - - - @@ -3916,8 +3648,7 @@ - anatomical entity (xenopus) - XAO:0000000 + anatomical entity (xenopus) @@ -3936,8 +3667,7 @@ - ectoderm (xenopus) - XAO:0000001 + ectoderm (xenopus) @@ -3956,8 +3686,7 @@ - fin (xenopus) - XAO:0000002 + fin (xenopus) @@ -3976,8 +3705,7 @@ - olfactory placode (xenopus) - XAO:0000005 + olfactory placode (xenopus) @@ -3996,8 +3724,7 @@ - ear vesicle (xenopus) - XAO:0000006 + ear vesicle (xenopus) @@ -4016,8 +3743,7 @@ - lower eyelid (xenopus) - XAO:0000007 + lower eyelid (xenopus) @@ -4036,8 +3762,7 @@ - lens of camera-type eye (xenopus) - XAO:0000008 + lens of camera-type eye (xenopus) @@ -4056,8 +3781,7 @@ - retina (xenopus) - XAO:0000009 + retina (xenopus) @@ -4076,8 +3800,7 @@ - brain (xenopus) - XAO:0000010 + brain (xenopus) @@ -4096,8 +3819,7 @@ - forebrain (xenopus) - XAO:0000011 + forebrain (xenopus) @@ -4116,8 +3838,7 @@ - telencephalon (xenopus) - XAO:0000012 + telencephalon (xenopus) @@ -4136,8 +3857,7 @@ - diencephalon (xenopus) - XAO:0000013 + diencephalon (xenopus) @@ -4156,8 +3876,7 @@ - midbrain (xenopus) - XAO:0000014 + midbrain (xenopus) @@ -4176,8 +3895,7 @@ - hindbrain (xenopus) - XAO:0000015 + hindbrain (xenopus) @@ -4196,8 +3914,7 @@ - midbrain-hindbrain boundary (xenopus) - XAO:0000016 + midbrain-hindbrain boundary (xenopus) @@ -4216,8 +3933,7 @@ - pituitary gland (xenopus) - XAO:0000017 + pituitary gland (xenopus) @@ -4236,8 +3952,7 @@ - gonadal ridge (xenopus) - XAO:0000018 + gonadal ridge (xenopus) @@ -4256,8 +3971,7 @@ - spinal cord (xenopus) - XAO:0000020 + spinal cord (xenopus) @@ -4276,8 +3990,7 @@ - ventricular zone (xenopus) - XAO:0000021 + ventricular zone (xenopus) @@ -4296,8 +4009,7 @@ - roof plate spinal cord region (xenopus) - XAO:0000022 + roof plate spinal cord region (xenopus) @@ -4316,8 +4028,7 @@ - skin of body (xenopus) - XAO:0000023 + skin of body (xenopus) @@ -4336,8 +4047,7 @@ - mandibular neural crest (xenopus) - XAO:0000024 + mandibular neural crest (xenopus) @@ -4356,8 +4066,7 @@ - hyoid neural crest (xenopus) - XAO:0000025 + hyoid neural crest (xenopus) @@ -4376,8 +4085,7 @@ - cranial ganglion (xenopus) - XAO:0000027 + cranial ganglion (xenopus) @@ -4396,8 +4104,7 @@ - skin epidermis (xenopus) - XAO:0000028 + skin epidermis (xenopus) @@ -4416,8 +4123,7 @@ - periderm (xenopus) - XAO:0000029 + periderm (xenopus) @@ -4436,8 +4142,7 @@ - vitelline membrane (xenopus) - XAO:0000030 + vitelline membrane (xenopus) @@ -4456,8 +4161,7 @@ - embryonic cement gland (xenopus) - XAO:0000033 + embryonic cement gland (xenopus) @@ -4476,8 +4180,7 @@ - hatching gland (xenopus) - XAO:0000034 + hatching gland (xenopus) @@ -4496,8 +4199,7 @@ - subdivision of head (xenopus) - XAO:0000040 + subdivision of head (xenopus) @@ -4516,8 +4218,7 @@ - stratum basale of epidermis (xenopus) - XAO:0000041 + stratum basale of epidermis (xenopus) @@ -4536,8 +4237,7 @@ - neurectoderm (xenopus) - XAO:0000042 + neurectoderm (xenopus) @@ -4556,8 +4256,7 @@ - pre-chordal neural plate (xenopus) - XAO:0000045 + pre-chordal neural plate (xenopus) @@ -4576,8 +4275,7 @@ - chordal neural plate (xenopus) - XAO:0000046 + chordal neural plate (xenopus) @@ -4596,8 +4294,7 @@ - neural crest (xenopus) - XAO:0000048 + neural crest (xenopus) @@ -4616,8 +4313,7 @@ - mesoderm (xenopus) - XAO:0000050 + mesoderm (xenopus) @@ -4636,8 +4332,7 @@ - dorsal aorta (xenopus) - XAO:0000051 + dorsal aorta (xenopus) @@ -4656,8 +4351,7 @@ - cardinal vein (xenopus) - XAO:0000052 + cardinal vein (xenopus) @@ -4676,8 +4370,7 @@ - head mesenchyme from mesoderm (xenopus) - XAO:0000053 + head mesenchyme from mesoderm (xenopus) @@ -4696,8 +4389,7 @@ - trunk (xenopus) - XAO:0000054 + trunk (xenopus) @@ -4716,8 +4408,7 @@ - notochord (xenopus) - XAO:0000055 + notochord (xenopus) @@ -4736,8 +4427,7 @@ - hypochord (xenopus) - XAO:0000056 + hypochord (xenopus) @@ -4756,8 +4446,7 @@ - presomitic mesoderm (xenopus) - XAO:0000057 + presomitic mesoderm (xenopus) @@ -4776,8 +4465,7 @@ - somite (xenopus) - XAO:0000058 + somite (xenopus) @@ -4796,8 +4484,7 @@ - nephrostome (xenopus) - XAO:0000062 + nephrostome (xenopus) @@ -4816,8 +4503,7 @@ - pronephric duct (xenopus) - XAO:0000063 + pronephric duct (xenopus) @@ -4836,8 +4522,7 @@ - heart (xenopus) - XAO:0000064 + heart (xenopus) @@ -4856,8 +4541,7 @@ - myocardium (xenopus) - XAO:0000065 + myocardium (xenopus) @@ -4876,8 +4560,7 @@ - endocardium (xenopus) - XAO:0000066 + endocardium (xenopus) @@ -4896,8 +4579,7 @@ - blood island (xenopus) - XAO:0000067 + blood island (xenopus) @@ -4916,8 +4598,7 @@ - marginal zone of embryo (xenopus) - XAO:0000068 + marginal zone of embryo (xenopus) @@ -4936,8 +4617,7 @@ - primitive knot (xenopus) - XAO:0000072 + primitive knot (xenopus) @@ -4956,8 +4636,7 @@ - prechordal plate (xenopus) - XAO:0000079 + prechordal plate (xenopus) @@ -4976,8 +4655,7 @@ - intermediate mesoderm (xenopus) - XAO:0000085 + intermediate mesoderm (xenopus) @@ -4996,8 +4674,7 @@ - ciliary marginal zone (xenopus) - XAO:0000086 + ciliary marginal zone (xenopus) @@ -5016,8 +4693,7 @@ - caudal region (xenopus) - XAO:0000087 + caudal region (xenopus) @@ -5036,8 +4712,7 @@ - endoderm (xenopus) - XAO:0000090 + endoderm (xenopus) @@ -5056,8 +4731,7 @@ - archenteron (xenopus) - XAO:0000092 + archenteron (xenopus) @@ -5076,8 +4750,7 @@ - lateral line system (xenopus) - XAO:0000095 + lateral line system (xenopus) @@ -5096,8 +4769,7 @@ - pharyngeal arch (xenopus) - XAO:0000096 + pharyngeal arch (xenopus) @@ -5116,8 +4788,7 @@ - pharyngeal arch 1 (xenopus) - XAO:0000097 + pharyngeal arch 1 (xenopus) @@ -5136,8 +4807,7 @@ - pharyngeal arch 2 (xenopus) - XAO:0000098 + pharyngeal arch 2 (xenopus) @@ -5156,8 +4826,7 @@ - post-hyoid pharyngeal arch (xenopus) - XAO:0000099 + post-hyoid pharyngeal arch (xenopus) @@ -5176,8 +4845,7 @@ - cardiovascular system (xenopus) - XAO:0000100 + cardiovascular system (xenopus) @@ -5196,8 +4864,7 @@ - hepatic diverticulum (xenopus) - XAO:0000101 + hepatic diverticulum (xenopus) @@ -5216,8 +4883,7 @@ - pharyngeal pouch 1 (xenopus) - XAO:0000102 + pharyngeal pouch 1 (xenopus) @@ -5236,8 +4902,7 @@ - midgut (xenopus) - XAO:0000103 + midgut (xenopus) @@ -5256,8 +4921,7 @@ - hindgut (xenopus) - XAO:0000104 + hindgut (xenopus) @@ -5276,8 +4940,7 @@ - cavity of pharynx (xenopus) - XAO:0000105 + cavity of pharynx (xenopus) @@ -5296,8 +4959,7 @@ - post-anal tail bud (xenopus) - XAO:0000107 + post-anal tail bud (xenopus) @@ -5316,8 +4978,7 @@ - chordo neural hinge (xenopus) - XAO:0000108 + chordo neural hinge (xenopus) @@ -5336,8 +4997,7 @@ - glomeral mesenchyme (xenopus) - XAO:0000110 + glomeral mesenchyme (xenopus) @@ -5356,8 +5016,7 @@ - embryo (xenopus) - XAO:0000113 + embryo (xenopus) @@ -5376,8 +5035,7 @@ - artery (xenopus) - XAO:0000114 + artery (xenopus) @@ -5396,8 +5054,7 @@ - vein (xenopus) - XAO:0000115 + vein (xenopus) @@ -5416,8 +5073,7 @@ - capillary (xenopus) - XAO:0000116 + capillary (xenopus) @@ -5436,8 +5092,7 @@ - respiratory system (xenopus) - XAO:0000117 + respiratory system (xenopus) @@ -5456,8 +5111,7 @@ - trachea (xenopus) - XAO:0000118 + trachea (xenopus) @@ -5476,30 +5130,7 @@ - lung (xenopus) - XAO:0000119 - - - - - - - - - - - - - - - - - - - - external gill (xenopus) - pharyngeal arch derived gill (xenopus) - XAO:0000120 + lung (xenopus) @@ -5518,8 +5149,7 @@ - bronchus (xenopus) - XAO:0000121 + bronchus (xenopus) @@ -5538,8 +5168,7 @@ - hematopoietic system (xenopus) - XAO:0000122 + hematopoietic system (xenopus) @@ -5558,8 +5187,7 @@ - bone marrow (xenopus) - XAO:0000123 + bone marrow (xenopus) @@ -5578,8 +5206,7 @@ - blood (xenopus) - XAO:0000124 + blood (xenopus) @@ -5598,8 +5225,7 @@ - digestive system (xenopus) - XAO:0000125 + digestive system (xenopus) @@ -5618,8 +5244,7 @@ - oral cavity (xenopus) - XAO:0000126 + oral cavity (xenopus) @@ -5638,8 +5263,7 @@ - esophagus (xenopus) - XAO:0000127 + esophagus (xenopus) @@ -5658,8 +5282,7 @@ - stomach (xenopus) - XAO:0000128 + stomach (xenopus) @@ -5678,8 +5301,7 @@ - intestine (xenopus) - XAO:0000129 + intestine (xenopus) @@ -5698,8 +5320,7 @@ - small intestine (xenopus) - XAO:0000130 + small intestine (xenopus) @@ -5718,8 +5339,7 @@ - large intestine (xenopus) - XAO:0000131 + large intestine (xenopus) @@ -5738,8 +5358,7 @@ - hepatobiliary system (xenopus) - XAO:0000132 + hepatobiliary system (xenopus) @@ -5758,8 +5377,7 @@ - liver (xenopus) - XAO:0000133 + liver (xenopus) @@ -5778,8 +5396,7 @@ - bile duct (xenopus) - XAO:0000134 + bile duct (xenopus) @@ -5798,8 +5415,7 @@ - gallbladder (xenopus) - XAO:0000135 + gallbladder (xenopus) @@ -5818,8 +5434,7 @@ - pancreas (xenopus) - XAO:0000136 + pancreas (xenopus) @@ -5838,8 +5453,7 @@ - exocrine pancreas (xenopus) - XAO:0000137 + exocrine pancreas (xenopus) @@ -5858,8 +5472,7 @@ - peritoneal mesentery (xenopus) - XAO:0000138 + peritoneal mesentery (xenopus) @@ -5878,8 +5491,7 @@ - peritoneum (xenopus) - XAO:0000139 + peritoneum (xenopus) @@ -5898,8 +5510,7 @@ - genitourinary system (xenopus) - XAO:0000140 + genitourinary system (xenopus) @@ -5918,8 +5529,7 @@ - mesonephros (xenopus) - XAO:0000141 + mesonephros (xenopus) @@ -5938,8 +5548,7 @@ - reproductive system (xenopus) - XAO:0000142 + reproductive system (xenopus) @@ -5958,8 +5567,7 @@ - renal system (xenopus) - XAO:0000143 + renal system (xenopus) @@ -5978,8 +5586,7 @@ - ureter (xenopus) - XAO:0000144 + ureter (xenopus) @@ -5998,8 +5605,7 @@ - mesonephric glomerulus (xenopus) - XAO:0000146 + mesonephric glomerulus (xenopus) @@ -6018,8 +5624,7 @@ - mesonephric tubule (xenopus) - XAO:0000148 + mesonephric tubule (xenopus) @@ -6038,8 +5643,7 @@ - mesonephric collecting duct (xenopus) - XAO:0000151 + mesonephric collecting duct (xenopus) @@ -6058,8 +5662,7 @@ - urethra (xenopus) - XAO:0000153 + urethra (xenopus) @@ -6078,8 +5681,7 @@ - urinary bladder (xenopus) - XAO:0000154 + urinary bladder (xenopus) @@ -6098,8 +5700,7 @@ - male reproductive system (xenopus) - XAO:0000155 + male reproductive system (xenopus) @@ -6118,8 +5719,7 @@ - female reproductive system (xenopus) - XAO:0000156 + female reproductive system (xenopus) @@ -6138,8 +5738,7 @@ - testis (xenopus) - XAO:0000157 + testis (xenopus) @@ -6158,8 +5757,7 @@ - endocrine system (xenopus) - XAO:0000158 + endocrine system (xenopus) @@ -6178,8 +5776,7 @@ - islet of Langerhans (xenopus) - XAO:0000159 + islet of Langerhans (xenopus) @@ -6198,8 +5795,7 @@ - pineal body (xenopus) - XAO:0000160 + pineal body (xenopus) @@ -6218,8 +5814,7 @@ - thyroid gland (xenopus) - XAO:0000162 + thyroid gland (xenopus) @@ -6238,8 +5833,7 @@ - thymus (xenopus) - XAO:0000163 + thymus (xenopus) @@ -6258,8 +5852,7 @@ - adrenal gland (xenopus) - XAO:0000164 + adrenal gland (xenopus) @@ -6278,8 +5871,7 @@ - adrenal cortex (xenopus) - XAO:0000165 + adrenal cortex (xenopus) @@ -6298,8 +5890,7 @@ - adrenal medulla (xenopus) - XAO:0000166 + adrenal medulla (xenopus) @@ -6318,8 +5909,7 @@ - parathyroid gland (xenopus) - XAO:0000167 + parathyroid gland (xenopus) @@ -6338,8 +5928,7 @@ - musculoskeletal system (xenopus) - XAO:0000168 + musculoskeletal system (xenopus) @@ -6358,8 +5947,7 @@ - bone element (xenopus) - XAO:0000169 + bone element (xenopus) @@ -6378,8 +5966,7 @@ - cartilage tissue (xenopus) - XAO:0000170 + cartilage tissue (xenopus) @@ -6398,8 +5985,7 @@ - skeletal joint (xenopus) - XAO:0000171 + skeletal joint (xenopus) @@ -6418,8 +6004,7 @@ - muscle organ (xenopus) - XAO:0000172 + muscle organ (xenopus) @@ -6438,8 +6023,7 @@ - tendon (xenopus) - XAO:0000173 + tendon (xenopus) @@ -6458,8 +6042,7 @@ - skeletal muscle organ (xenopus) - XAO:0000174 + skeletal muscle organ (xenopus) @@ -6478,8 +6061,7 @@ - smooth muscle tissue (xenopus) - XAO:0000175 + smooth muscle tissue (xenopus) @@ -6498,8 +6080,7 @@ - integumental system (xenopus) - XAO:0000176 + integumental system (xenopus) @@ -6518,8 +6099,7 @@ - nervous system (xenopus) - XAO:0000177 + nervous system (xenopus) @@ -6538,8 +6118,7 @@ - peripheral nervous system (xenopus) - XAO:0000178 + peripheral nervous system (xenopus) @@ -6558,8 +6137,7 @@ - camera-type eye (xenopus) - XAO:0000179 + camera-type eye (xenopus) @@ -6578,8 +6156,7 @@ - cornea (xenopus) - XAO:0000180 + cornea (xenopus) @@ -6598,8 +6175,7 @@ - conjunctiva (xenopus) - XAO:0000182 + conjunctiva (xenopus) @@ -6618,8 +6194,7 @@ - sclera (xenopus) - XAO:0000183 + sclera (xenopus) @@ -6638,8 +6213,7 @@ - iris (xenopus) - XAO:0000185 + iris (xenopus) @@ -6658,8 +6232,7 @@ - ciliary body (xenopus) - XAO:0000186 + ciliary body (xenopus) @@ -6678,8 +6251,7 @@ - dorsolateral placode (xenopus) - XAO:0000187 + dorsolateral placode (xenopus) @@ -6698,8 +6270,7 @@ - cranial nerve II (xenopus) - XAO:0000188 + cranial nerve II (xenopus) @@ -6718,8 +6289,7 @@ - ear (xenopus) - XAO:0000189 + ear (xenopus) @@ -6738,8 +6308,7 @@ - external ear (xenopus) - XAO:0000190 + external ear (xenopus) @@ -6758,8 +6327,7 @@ - middle ear (xenopus) - XAO:0000191 + middle ear (xenopus) @@ -6778,8 +6346,7 @@ - internal ear (xenopus) - XAO:0000192 + internal ear (xenopus) @@ -6798,8 +6365,7 @@ - bony labyrinth (xenopus) - XAO:0000193 + bony labyrinth (xenopus) @@ -6818,8 +6384,7 @@ - membranous labyrinth (xenopus) - XAO:0000194 + membranous labyrinth (xenopus) @@ -6838,8 +6403,7 @@ - utricle of membranous labyrinth (xenopus) - XAO:0000195 + utricle of membranous labyrinth (xenopus) @@ -6858,8 +6422,7 @@ - saccule of membranous labyrinth (xenopus) - XAO:0000196 + saccule of membranous labyrinth (xenopus) @@ -6878,8 +6441,7 @@ - cochlea (xenopus) - XAO:0000197 + cochlea (xenopus) @@ -6898,8 +6460,7 @@ - semicircular canal (xenopus) - XAO:0000198 + semicircular canal (xenopus) @@ -6918,8 +6479,7 @@ - osseus labyrinth vestibule (xenopus) - XAO:0000199 + osseus labyrinth vestibule (xenopus) @@ -6938,8 +6498,7 @@ - animal hemisphere (xenopus) - XAO:0000202 + animal hemisphere (xenopus) @@ -6958,8 +6517,7 @@ - nerve (xenopus) - XAO:0000204 + nerve (xenopus) @@ -6978,8 +6536,7 @@ - axial mesoderm (xenopus) - XAO:0000205 + axial mesoderm (xenopus) @@ -6998,8 +6555,7 @@ - blastopore (xenopus) - XAO:0000208 + blastopore (xenopus) @@ -7018,8 +6574,7 @@ - ganglion (xenopus) - XAO:0000209 + ganglion (xenopus) @@ -7038,8 +6593,7 @@ - dorsal root ganglion (xenopus) - XAO:0000210 + dorsal root ganglion (xenopus) @@ -7058,8 +6612,7 @@ - sympathetic trunk (xenopus) - XAO:0000211 + sympathetic trunk (xenopus) @@ -7078,8 +6631,7 @@ - tympanic membrane (xenopus) - XAO:0000212 + tympanic membrane (xenopus) @@ -7098,8 +6650,7 @@ - pharyngotympanic tube (xenopus) - XAO:0000213 + pharyngotympanic tube (xenopus) @@ -7118,8 +6669,7 @@ - auditory ossicle bone (xenopus) - XAO:0000214 + auditory ossicle bone (xenopus) @@ -7138,8 +6688,7 @@ - central nervous system (xenopus) - XAO:0000215 + central nervous system (xenopus) @@ -7158,8 +6707,7 @@ - dermis (xenopus) - XAO:0000217 + dermis (xenopus) @@ -7178,8 +6726,7 @@ - appendage (xenopus) - XAO:0000218 + appendage (xenopus) @@ -7198,8 +6745,7 @@ - dermatome (xenopus) - XAO:0000220 + dermatome (xenopus) @@ -7218,8 +6764,7 @@ - otic placode (xenopus) - XAO:0000223 + otic placode (xenopus) @@ -7238,8 +6783,7 @@ - trigeminal placode complex (xenopus) - XAO:0000225 + trigeminal placode complex (xenopus) @@ -7258,8 +6802,7 @@ - eye primordium (xenopus) - XAO:0000227 + eye primordium (xenopus) @@ -7278,8 +6821,7 @@ - optic vesicle (xenopus) - XAO:0000228 + optic vesicle (xenopus) @@ -7298,8 +6840,7 @@ - foregut (xenopus) - XAO:0000232 + foregut (xenopus) @@ -7318,8 +6859,7 @@ - cardiogenic splanchnic mesoderm (xenopus) - XAO:0000235 + cardiogenic splanchnic mesoderm (xenopus) @@ -7338,8 +6878,7 @@ - duodenum (xenopus) - XAO:0000236 + duodenum (xenopus) @@ -7358,8 +6897,7 @@ - ileum (xenopus) - XAO:0000237 + ileum (xenopus) @@ -7378,8 +6916,7 @@ - rectum (xenopus) - XAO:0000238 + rectum (xenopus) @@ -7398,8 +6935,7 @@ - lens placode (xenopus) - XAO:0000240 + lens placode (xenopus) @@ -7418,8 +6954,7 @@ - posterior cardinal vein (xenopus) - XAO:0000241 + posterior cardinal vein (xenopus) @@ -7438,8 +6973,7 @@ - mesonephric duct (xenopus) - XAO:0000242 + mesonephric duct (xenopus) @@ -7458,8 +6992,7 @@ - colon (xenopus) - XAO:0000243 + colon (xenopus) @@ -7478,8 +7011,7 @@ - cloaca (xenopus) - XAO:0000244 + cloaca (xenopus) @@ -7498,8 +7030,7 @@ - pharyngeal pouch 2 (xenopus) - XAO:0000247 + pharyngeal pouch 2 (xenopus) @@ -7518,8 +7049,7 @@ - neural groove (xenopus) - XAO:0000248 + neural groove (xenopus) @@ -7538,8 +7068,7 @@ - neural plate (xenopus) - XAO:0000249 + neural plate (xenopus) @@ -7558,8 +7087,7 @@ - posterior neural tube (xenopus) - XAO:0000250 + posterior neural tube (xenopus) @@ -7578,8 +7106,7 @@ - pharyngeal pouch 3 (xenopus) - XAO:0000251 + pharyngeal pouch 3 (xenopus) @@ -7598,8 +7125,7 @@ - neural tube lumen (xenopus) - XAO:0000252 + neural tube lumen (xenopus) @@ -7618,8 +7144,7 @@ - pharyngeal pouch 4 (xenopus) - XAO:0000254 + pharyngeal pouch 4 (xenopus) @@ -7638,8 +7163,7 @@ - pharyngeal pouch 5 (xenopus) - XAO:0000255 + pharyngeal pouch 5 (xenopus) @@ -7658,8 +7182,7 @@ - ovary (xenopus) - XAO:0000258 + ovary (xenopus) @@ -7678,8 +7201,7 @@ - paraxial mesoderm (xenopus) - XAO:0000259 + paraxial mesoderm (xenopus) @@ -7698,8 +7220,7 @@ - pronephric mesoderm (xenopus) - XAO:0000264 + pronephric mesoderm (xenopus) @@ -7718,8 +7239,7 @@ - pharyngeal pouch 6 (xenopus) - XAO:0000265 + pharyngeal pouch 6 (xenopus) @@ -7738,8 +7258,7 @@ - layer of retina (xenopus) - XAO:0000266 + layer of retina (xenopus) @@ -7758,8 +7277,7 @@ - stomodeum (xenopus) - XAO:0000269 + stomodeum (xenopus) @@ -7778,8 +7296,7 @@ - somatic layer of lateral plate mesoderm (xenopus) - XAO:0000271 + somatic layer of lateral plate mesoderm (xenopus) @@ -7798,8 +7315,7 @@ - vomeronasal organ (xenopus) - XAO:0000272 + vomeronasal organ (xenopus) @@ -7818,8 +7334,7 @@ - olfactory organ (xenopus) - XAO:0000273 + olfactory organ (xenopus) @@ -7838,8 +7353,7 @@ - olfactory pit (xenopus) - XAO:0000275 + olfactory pit (xenopus) @@ -7858,8 +7372,7 @@ - splanchnic layer of lateral plate mesoderm (xenopus) - XAO:0000276 + splanchnic layer of lateral plate mesoderm (xenopus) @@ -7878,8 +7391,7 @@ - posterior nasal aperture (xenopus) - XAO:0000277 + posterior nasal aperture (xenopus) @@ -7898,8 +7410,7 @@ - vegetal hemisphere (xenopus) - XAO:0000280 + vegetal hemisphere (xenopus) @@ -7918,8 +7429,7 @@ - pharyngeal pouch (xenopus) - XAO:0000282 + pharyngeal pouch (xenopus) @@ -7938,8 +7448,7 @@ - pupil (xenopus) - XAO:0000283 + pupil (xenopus) @@ -7958,8 +7467,7 @@ - epibranchial placode (xenopus) - XAO:0000284 + epibranchial placode (xenopus) @@ -7978,8 +7486,7 @@ - pronephric nephron (xenopus) - XAO:0000285 + pronephric nephron (xenopus) @@ -7998,8 +7505,7 @@ - distal early tubule (xenopus) - XAO:0000287 + distal early tubule (xenopus) @@ -8018,8 +7524,7 @@ - mesonephric mesenchyme (xenopus) - XAO:0000291 + mesonephric mesenchyme (xenopus) @@ -8038,8 +7543,7 @@ - mesonephric nephron (xenopus) - XAO:0000292 + mesonephric nephron (xenopus) @@ -8058,8 +7562,7 @@ - blastocele (xenopus) - XAO:0000294 + blastocele (xenopus) @@ -8078,8 +7581,7 @@ - cranial placode (xenopus) - XAO:0000305 + cranial placode (xenopus) @@ -8098,8 +7600,7 @@ - floor plate spinal cord region (xenopus) - XAO:0000306 + floor plate spinal cord region (xenopus) @@ -8118,8 +7619,7 @@ - anterior neural tube (xenopus) - XAO:0000307 + anterior neural tube (xenopus) @@ -8138,8 +7638,7 @@ - lateral plate mesoderm (xenopus) - XAO:0000311 + lateral plate mesoderm (xenopus) @@ -8158,8 +7657,7 @@ - head somite (xenopus) - XAO:0000313 + head somite (xenopus) @@ -8178,8 +7676,7 @@ - trunk somite (xenopus) - XAO:0000314 + trunk somite (xenopus) @@ -8198,8 +7695,7 @@ - myotome (xenopus) - XAO:0000315 + myotome (xenopus) @@ -8218,8 +7714,7 @@ - epicardium (xenopus) - XAO:0000316 + epicardium (xenopus) @@ -8238,8 +7733,7 @@ - pronephric glomerulus (xenopus) - XAO:0000318 + pronephric glomerulus (xenopus) @@ -8258,8 +7752,7 @@ - trunk neural crest (xenopus) - XAO:0000319 + trunk neural crest (xenopus) @@ -8278,8 +7771,7 @@ - spleen primordium (xenopus) - XAO:0000326 + spleen primordium (xenopus) @@ -8298,8 +7790,7 @@ - spleen (xenopus) - XAO:0000328 + spleen (xenopus) @@ -8318,8 +7809,7 @@ - coelomic epithelium (xenopus) - XAO:0000329 + coelomic epithelium (xenopus) @@ -8338,8 +7828,7 @@ - Mullerian duct (xenopus) - XAO:0000330 + Mullerian duct (xenopus) @@ -8358,8 +7847,7 @@ - mesonephric early distal tubule (xenopus) - XAO:0000333 + mesonephric early distal tubule (xenopus) @@ -8378,8 +7866,7 @@ - heart primordium (xenopus) - XAO:0000336 + heart primordium (xenopus) @@ -8398,8 +7885,7 @@ - heart tube (xenopus) - XAO:0000337 + heart tube (xenopus) @@ -8418,8 +7904,7 @@ - ventral aorta (xenopus) - XAO:0000338 + ventral aorta (xenopus) @@ -8438,8 +7923,7 @@ - pharyngeal arch artery (xenopus) - XAO:0000341 + pharyngeal arch artery (xenopus) @@ -8458,8 +7942,7 @@ - pharyngeal arch artery 1 (xenopus) - XAO:0000342 + pharyngeal arch artery 1 (xenopus) @@ -8478,8 +7961,7 @@ - pharyngeal arch artery 2 (xenopus) - XAO:0000343 + pharyngeal arch artery 2 (xenopus) @@ -8498,8 +7980,7 @@ - pharyngeal arch artery 3 (xenopus) - XAO:0000344 + pharyngeal arch artery 3 (xenopus) @@ -8518,8 +7999,7 @@ - external carotid artery (xenopus) - XAO:0000345 + external carotid artery (xenopus) @@ -8538,8 +8018,7 @@ - pharyngeal arch artery 5 (xenopus) - XAO:0000352 + pharyngeal arch artery 5 (xenopus) @@ -8558,8 +8037,7 @@ - pharyngeal arch artery 6 (xenopus) - XAO:0000353 + pharyngeal arch artery 6 (xenopus) @@ -8578,8 +8056,7 @@ - pharyngeal arch artery 4 (xenopus) - XAO:0000355 + pharyngeal arch artery 4 (xenopus) @@ -8598,8 +8075,7 @@ - cardiovascular system endothelium (xenopus) - XAO:0000356 + cardiovascular system endothelium (xenopus) @@ -8618,8 +8094,7 @@ - endothelium of artery (xenopus) - XAO:0000357 + endothelium of artery (xenopus) @@ -8638,8 +8113,7 @@ - endothelium of vein (xenopus) - XAO:0000358 + endothelium of vein (xenopus) @@ -8658,8 +8132,7 @@ - iliac artery (xenopus) - XAO:0000361 + iliac artery (xenopus) @@ -8678,8 +8151,7 @@ - caudal artery (xenopus) - XAO:0000364 + caudal artery (xenopus) @@ -8698,8 +8170,7 @@ - subclavian artery (xenopus) - XAO:0000365 + subclavian artery (xenopus) @@ -8718,8 +8189,7 @@ - internal carotid artery (xenopus) - XAO:0000366 + internal carotid artery (xenopus) @@ -8738,8 +8208,7 @@ - cerebral artery (xenopus) - XAO:0000367 + cerebral artery (xenopus) @@ -8758,8 +8227,7 @@ - ophthalmic artery (xenopus) - XAO:0000368 + ophthalmic artery (xenopus) @@ -8778,8 +8246,7 @@ - mesenteric artery (xenopus) - XAO:0000370 + mesenteric artery (xenopus) @@ -8798,8 +8265,7 @@ - right lymph heart (xenopus) - XAO:0000371 + right lymph heart (xenopus) @@ -8818,8 +8284,7 @@ - left lymph heart (xenopus) - XAO:0000372 + left lymph heart (xenopus) @@ -8838,8 +8303,7 @@ - common cardinal vein (xenopus) - XAO:0000373 + common cardinal vein (xenopus) @@ -8858,8 +8322,7 @@ - lymphatic vessel (xenopus) - XAO:0000375 + lymphatic vessel (xenopus) @@ -8878,8 +8341,7 @@ - vitelline vein (xenopus) - XAO:0000376 + vitelline vein (xenopus) @@ -8898,8 +8360,7 @@ - external jugular vein (xenopus) - XAO:0000379 + external jugular vein (xenopus) @@ -8918,8 +8379,7 @@ - mesonephric sinus (xenopus) - XAO:0000381 + mesonephric sinus (xenopus) @@ -8938,8 +8398,7 @@ - internal jugular vein (xenopus) - XAO:0000382 + internal jugular vein (xenopus) @@ -8958,8 +8417,7 @@ - anterior cardinal vein (xenopus) - XAO:0000383 + anterior cardinal vein (xenopus) @@ -8978,8 +8436,7 @@ - pronephric sinus (xenopus) - XAO:0000385 + pronephric sinus (xenopus) @@ -8998,8 +8455,7 @@ - hepatic vein (xenopus) - XAO:0000387 + hepatic vein (xenopus) @@ -9018,8 +8474,7 @@ - posterior vena cava (xenopus) - XAO:0000388 + posterior vena cava (xenopus) @@ -9038,8 +8493,7 @@ - gastric vein (xenopus) - XAO:0000389 + gastric vein (xenopus) @@ -9058,8 +8512,7 @@ - caudal vein (xenopus) - XAO:0000390 + caudal vein (xenopus) @@ -9078,8 +8531,7 @@ - portal vein (xenopus) - XAO:0000392 + portal vein (xenopus) @@ -9098,8 +8550,7 @@ - tail vein (xenopus) - XAO:0000393 + tail vein (xenopus) @@ -9118,8 +8569,7 @@ - pulmonary vein (xenopus) - XAO:0000394 + pulmonary vein (xenopus) @@ -9138,8 +8588,7 @@ - sclerotome (xenopus) - XAO:0000397 + sclerotome (xenopus) @@ -9158,8 +8607,7 @@ - olfactory nerve (xenopus) - XAO:0000426 + olfactory nerve (xenopus) @@ -9178,8 +8626,7 @@ - trigeminal ganglion (xenopus) - XAO:0000427 + trigeminal ganglion (xenopus) @@ -9198,8 +8645,7 @@ - trigeminal ganglion (xenopus) - XAO:0000428 + trigeminal ganglion (xenopus) @@ -9218,8 +8664,7 @@ - cranial nerve (xenopus) - XAO:0000429 + cranial nerve (xenopus) @@ -9238,8 +8683,7 @@ - Rathke's pouch (xenopus) - XAO:0000430 + Rathke's pouch (xenopus) @@ -9258,8 +8702,7 @@ - calcareous tooth (xenopus) - XAO:0000431 + calcareous tooth (xenopus) @@ -9278,8 +8721,7 @@ - death stage (xenopus) - XAO:0000437 + death stage (xenopus) @@ -9298,8 +8740,7 @@ - lateral line placode (xenopus) - XAO:0000440 + lateral line placode (xenopus) @@ -9318,8 +8759,7 @@ - supraorbital lateral line (xenopus) - XAO:0000442 + supraorbital lateral line (xenopus) @@ -9338,8 +8778,7 @@ - thyroid primordium (xenopus) - XAO:0000444 + thyroid primordium (xenopus) @@ -9358,8 +8797,7 @@ - taste bud (xenopus) - XAO:0000445 + taste bud (xenopus) @@ -9378,8 +8816,7 @@ - tongue (xenopus) - XAO:0000446 + tongue (xenopus) @@ -9398,8 +8835,7 @@ - pharyngeal arch 3 (xenopus) - XAO:0000447 + pharyngeal arch 3 (xenopus) @@ -9418,8 +8854,7 @@ - pharyngeal gill precursor (xenopus) - XAO:0000448 + pharyngeal gill precursor (xenopus) @@ -9438,8 +8873,7 @@ - pharyngeal arch 4 (xenopus) - XAO:0000449 + pharyngeal arch 4 (xenopus) @@ -9458,8 +8892,7 @@ - pharyngeal arch 5 (xenopus) - XAO:0000451 + pharyngeal arch 5 (xenopus) @@ -9478,8 +8911,7 @@ - ultimobranchial body (xenopus) - XAO:0000452 + ultimobranchial body (xenopus) @@ -9498,8 +8930,7 @@ - pharyngeal arch 6 (xenopus) - XAO:0000453 + pharyngeal arch 6 (xenopus) @@ -9518,8 +8949,7 @@ - liver parenchyma (xenopus) - XAO:0000454 + liver parenchyma (xenopus) @@ -9538,8 +8968,7 @@ - biliary tree (xenopus) - XAO:0000455 + biliary tree (xenopus) @@ -9558,8 +8987,7 @@ - pyloric sphincter (xenopus) - XAO:0000457 + pyloric sphincter (xenopus) @@ -9578,8 +9006,7 @@ - occipital lateral line (xenopus) - XAO:0000458 + occipital lateral line (xenopus) @@ -9598,8 +9025,7 @@ - infraorbital lateral line (xenopus) - XAO:0000459 + infraorbital lateral line (xenopus) @@ -9618,8 +9044,7 @@ - dorsal lateral line (xenopus) - XAO:0000462 + dorsal lateral line (xenopus) @@ -9638,8 +9063,7 @@ - middle lateral line (xenopus) - XAO:0000463 + middle lateral line (xenopus) @@ -9658,8 +9082,7 @@ - posterior lateral line (xenopus) - XAO:0000465 + posterior lateral line (xenopus) @@ -9678,8 +9101,7 @@ - dorsal pancreatic bud (xenopus) - XAO:0000467 + dorsal pancreatic bud (xenopus) @@ -9698,8 +9120,7 @@ - dorsal fin (xenopus) - XAO:0000469 + dorsal fin (xenopus) @@ -9718,8 +9139,7 @@ - optic fissure (xenopus) - XAO:0000474 + optic fissure (xenopus) @@ -9738,8 +9158,7 @@ - optic stalk (xenopus) - XAO:0000475 + optic stalk (xenopus) @@ -9758,8 +9177,7 @@ - cranial neural crest (xenopus) - XAO:0001001 + cranial neural crest (xenopus) @@ -9778,8 +9196,7 @@ - lung primordium (xenopus) - XAO:0001002 + lung primordium (xenopus) @@ -9798,8 +9215,7 @@ - cardiovascular system (xenopus) - XAO:0001010 + cardiovascular system (xenopus) @@ -9818,8 +9234,7 @@ - blood vessel (xenopus) - XAO:0001011 + blood vessel (xenopus) @@ -9838,8 +9253,7 @@ - facial muscle (xenopus) - XAO:0001013 + facial muscle (xenopus) @@ -9858,8 +9272,7 @@ - rectal diverticulum (xenopus) - XAO:0001015 + rectal diverticulum (xenopus) @@ -9878,8 +9291,7 @@ - connective tissue (xenopus) - XAO:0001017 + connective tissue (xenopus) @@ -9898,8 +9310,7 @@ - proctodeum (xenopus) - XAO:0001019 + proctodeum (xenopus) @@ -9918,8 +9329,7 @@ - elastica externa of notochord (xenopus) - XAO:0001020 + elastica externa of notochord (xenopus) @@ -9938,8 +9348,7 @@ - pancreas primordium (xenopus) - XAO:0001101 + pancreas primordium (xenopus) @@ -9958,8 +9367,7 @@ - ventral pancreatic bud (xenopus) - XAO:0001103 + ventral pancreatic bud (xenopus) @@ -9978,8 +9386,7 @@ - pronephros (xenopus) - XAO:0002000 + pronephros (xenopus) @@ -9998,8 +9405,7 @@ - anatomical structure (xenopus) - XAO:0003000 + anatomical structure (xenopus) @@ -10018,8 +9424,7 @@ - anatomical group (xenopus) - XAO:0003001 + anatomical group (xenopus) @@ -10038,8 +9443,7 @@ - anatomical system (xenopus) - XAO:0003002 + anatomical system (xenopus) @@ -10058,8 +9462,7 @@ - multicellular organism (xenopus) - XAO:0003004 + multicellular organism (xenopus) @@ -10078,8 +9481,7 @@ - female organism (xenopus) - XAO:0003005 + female organism (xenopus) @@ -10098,8 +9500,7 @@ - male organism (xenopus) - XAO:0003006 + male organism (xenopus) @@ -10118,8 +9519,7 @@ - aorta (xenopus) - XAO:0003010 + aorta (xenopus) @@ -10138,8 +9538,7 @@ - germ layer (xenopus) - XAO:0003011 + germ layer (xenopus) @@ -10158,8 +9557,7 @@ - organism subdivision (xenopus) - XAO:0003013 + organism subdivision (xenopus) @@ -10178,8 +9576,7 @@ - head (xenopus) - XAO:0003024 + head (xenopus) @@ -10198,8 +9595,7 @@ - trunk (xenopus) - XAO:0003025 + trunk (xenopus) @@ -10218,8 +9614,7 @@ - post-anal tail (xenopus) - XAO:0003026 + post-anal tail (xenopus) @@ -10238,8 +9633,7 @@ - limb (xenopus) - XAO:0003027 + limb (xenopus) @@ -10258,8 +9652,7 @@ - surface structure (xenopus) - XAO:0003028 + surface structure (xenopus) @@ -10278,8 +9671,7 @@ - mouth (xenopus) - XAO:0003029 + mouth (xenopus) @@ -10298,8 +9690,7 @@ - forelimb (xenopus) - XAO:0003030 + forelimb (xenopus) @@ -10318,8 +9709,7 @@ - hindlimb (xenopus) - XAO:0003031 + hindlimb (xenopus) @@ -10338,8 +9728,7 @@ - digit (xenopus) - XAO:0003032 + digit (xenopus) @@ -10358,8 +9747,7 @@ - external naris (xenopus) - XAO:0003033 + external naris (xenopus) @@ -10378,8 +9766,7 @@ - viscus (xenopus) - XAO:0003034 + viscus (xenopus) @@ -10398,8 +9785,7 @@ - pedal digit (xenopus) - XAO:0003035 + pedal digit (xenopus) @@ -10418,8 +9804,7 @@ - manual digit (xenopus) - XAO:0003036 + manual digit (xenopus) @@ -10438,8 +9823,7 @@ - multi-tissue structure (xenopus) - XAO:0003037 + multi-tissue structure (xenopus) @@ -10458,8 +9842,7 @@ - simple organ (xenopus) - XAO:0003038 + simple organ (xenopus) @@ -10478,8 +9861,7 @@ - compound organ component (xenopus) - XAO:0003039 + compound organ component (xenopus) @@ -10498,8 +9880,7 @@ - tissue (xenopus) - XAO:0003040 + tissue (xenopus) @@ -10518,8 +9899,7 @@ - compound organ (xenopus) - XAO:0003041 + compound organ (xenopus) @@ -10538,8 +9918,7 @@ - embryonic structure (xenopus) - XAO:0003042 + embryonic structure (xenopus) @@ -10558,8 +9937,7 @@ - primordium (xenopus) - XAO:0003043 + primordium (xenopus) @@ -10578,8 +9956,7 @@ - hypoblast (generic) (xenopus) - XAO:0003044 + hypoblast (generic) (xenopus) @@ -10598,8 +9975,7 @@ - epithelium (xenopus) - XAO:0003045 + epithelium (xenopus) @@ -10618,8 +9994,7 @@ - mesenchyme (xenopus) - XAO:0003046 + mesenchyme (xenopus) @@ -10638,8 +10013,7 @@ - nerve (xenopus) - XAO:0003047 + nerve (xenopus) @@ -10658,8 +10032,7 @@ - adipose tissue (xenopus) - XAO:0003049 + adipose tissue (xenopus) @@ -10678,8 +10051,7 @@ - gonadal fat pad (xenopus) - XAO:0003050 + gonadal fat pad (xenopus) @@ -10698,8 +10070,7 @@ - dorsal lateral plate region (xenopus) - XAO:0003051 + dorsal lateral plate region (xenopus) @@ -10718,8 +10089,7 @@ - oviduct (xenopus) - XAO:0003052 + oviduct (xenopus) @@ -10738,8 +10108,7 @@ - cartilaginous neurocranium (xenopus) - XAO:0003059 + cartilaginous neurocranium (xenopus) @@ -10758,8 +10127,7 @@ - skeletal system (xenopus) - XAO:0003060 + skeletal system (xenopus) @@ -10778,8 +10146,7 @@ - forelimb skeleton (xenopus) - XAO:0003061 + forelimb skeleton (xenopus) @@ -10798,8 +10165,7 @@ - hindlimb skeleton (xenopus) - XAO:0003062 + hindlimb skeleton (xenopus) @@ -10818,8 +10184,7 @@ - pectoral girdle skeleton (xenopus) - XAO:0003063 + pectoral girdle skeleton (xenopus) @@ -10838,8 +10203,7 @@ - pelvic girdle skeleton (xenopus) - XAO:0003064 + pelvic girdle skeleton (xenopus) @@ -10858,8 +10222,7 @@ - forelimb bud (xenopus) - XAO:0003065 + forelimb bud (xenopus) @@ -10878,8 +10241,7 @@ - hindlimb bud (xenopus) - XAO:0003066 + hindlimb bud (xenopus) @@ -10898,8 +10260,7 @@ - postcranial axial skeleton (xenopus) - XAO:0003073 + postcranial axial skeleton (xenopus) @@ -10918,8 +10279,7 @@ - vertebral column (xenopus) - XAO:0003074 + vertebral column (xenopus) @@ -10938,8 +10298,7 @@ - cranial skeletal system (xenopus) - XAO:0003075 + cranial skeletal system (xenopus) @@ -10958,8 +10317,7 @@ - cervical vertebra (xenopus) - XAO:0003076 + cervical vertebra (xenopus) @@ -10978,8 +10336,7 @@ - trunk or cervical vertebra (xenopus) - XAO:0003077 + trunk or cervical vertebra (xenopus) @@ -10998,8 +10355,7 @@ - sacral vertebra (xenopus) - XAO:0003078 + sacral vertebra (xenopus) @@ -11018,8 +10374,7 @@ - caudal vertebra (xenopus) - XAO:0003079 + caudal vertebra (xenopus) @@ -11038,8 +10393,7 @@ - urostyle (xenopus) - XAO:0003080 + urostyle (xenopus) @@ -11058,8 +10412,7 @@ - larynx (xenopus) - XAO:0003081 + larynx (xenopus) @@ -11078,8 +10431,7 @@ - skeleton of lower jaw (xenopus) - XAO:0003084 + skeleton of lower jaw (xenopus) @@ -11098,8 +10450,7 @@ - Meckel's cartilage (xenopus) - XAO:0003085 + Meckel's cartilage (xenopus) @@ -11118,8 +10469,7 @@ - suspensorium (xenopus) - XAO:0003086 + suspensorium (xenopus) @@ -11138,8 +10488,7 @@ - skeleton of upper jaw (xenopus) - XAO:0003087 + skeleton of upper jaw (xenopus) @@ -11158,8 +10507,7 @@ - seminiferous tubule of testis (xenopus) - XAO:0003088 + seminiferous tubule of testis (xenopus) @@ -11178,8 +10526,7 @@ - cranial nerve (xenopus) - XAO:0003089 + cranial nerve (xenopus) @@ -11198,8 +10545,7 @@ - oculomotor nerve (xenopus) - XAO:0003090 + oculomotor nerve (xenopus) @@ -11218,8 +10564,7 @@ - trochlear nerve (xenopus) - XAO:0003091 + trochlear nerve (xenopus) @@ -11238,8 +10583,7 @@ - trigeminal nerve (xenopus) - XAO:0003092 + trigeminal nerve (xenopus) @@ -11258,8 +10602,7 @@ - abducens nerve (xenopus) - XAO:0003093 + abducens nerve (xenopus) @@ -11278,8 +10621,7 @@ - facial nerve (xenopus) - XAO:0003094 + facial nerve (xenopus) @@ -11298,8 +10640,7 @@ - vestibulocochlear nerve (xenopus) - XAO:0003095 + vestibulocochlear nerve (xenopus) @@ -11318,8 +10659,7 @@ - glossopharyngeal nerve (xenopus) - XAO:0003096 + glossopharyngeal nerve (xenopus) @@ -11338,8 +10678,7 @@ - vagus nerve (xenopus) - XAO:0003097 + vagus nerve (xenopus) @@ -11358,8 +10697,7 @@ - cerebellum (xenopus) - XAO:0003098 + cerebellum (xenopus) @@ -11378,8 +10716,7 @@ - fourth ventricle (xenopus) - XAO:0003099 + fourth ventricle (xenopus) @@ -11398,8 +10735,7 @@ - medulla oblongata (xenopus) - XAO:0003100 + medulla oblongata (xenopus) @@ -11418,8 +10754,7 @@ - spinal nerve (xenopus) - XAO:0003101 + spinal nerve (xenopus) @@ -11438,8 +10773,7 @@ - transverse process of vertebra (xenopus) - XAO:0003102 + transverse process of vertebra (xenopus) @@ -11458,8 +10792,7 @@ - nail of pedal digit (xenopus) - XAO:0003103 + nail of pedal digit (xenopus) @@ -11478,8 +10811,7 @@ - tail somite (xenopus) - XAO:0003143 + tail somite (xenopus) @@ -11498,8 +10830,7 @@ - basilar papilla (xenopus) - XAO:0003145 + basilar papilla (xenopus) @@ -11518,8 +10849,7 @@ - gonad (xenopus) - XAO:0003146 + gonad (xenopus) @@ -11538,8 +10868,7 @@ - immune system (xenopus) - XAO:0003152 + immune system (xenopus) @@ -11558,8 +10887,7 @@ - limb bud (xenopus) - XAO:0003161 + limb bud (xenopus) @@ -11578,8 +10906,7 @@ - acellular anatomical structure (xenopus) - XAO:0003162 + acellular anatomical structure (xenopus) @@ -11598,8 +10925,7 @@ - basal lamina of epithelium (xenopus) - XAO:0003163 + basal lamina of epithelium (xenopus) @@ -11618,8 +10944,7 @@ - solid compound organ (xenopus) - XAO:0003164 + solid compound organ (xenopus) @@ -11638,8 +10963,7 @@ - cavitated compound organ (xenopus) - XAO:0003165 + cavitated compound organ (xenopus) @@ -11658,8 +10982,7 @@ - appendicular skeleton (xenopus) - XAO:0003166 + appendicular skeleton (xenopus) @@ -11678,8 +11001,7 @@ - dermatocranium (xenopus) - XAO:0003169 + dermatocranium (xenopus) @@ -11698,8 +11020,7 @@ - neurocranium (xenopus) - XAO:0003170 + neurocranium (xenopus) @@ -11718,8 +11039,7 @@ - orbit of skull (xenopus) - XAO:0003171 + orbit of skull (xenopus) @@ -11738,8 +11058,7 @@ - olfactory region (xenopus) - XAO:0003172 + olfactory region (xenopus) @@ -11758,8 +11077,7 @@ - occipital region (xenopus) - XAO:0003173 + occipital region (xenopus) @@ -11778,8 +11096,7 @@ - sphenoid region (xenopus) - XAO:0003174 + sphenoid region (xenopus) @@ -11798,8 +11115,7 @@ - otic region (xenopus) - XAO:0003175 + otic region (xenopus) @@ -11818,8 +11134,7 @@ - splanchnocranium (xenopus) - XAO:0003176 + splanchnocranium (xenopus) @@ -11838,8 +11153,7 @@ - hyoid arch skeleton (xenopus) - XAO:0003177 + hyoid arch skeleton (xenopus) @@ -11858,8 +11172,7 @@ - dorsal hyoid arch skeleton (xenopus) - XAO:0003178 + dorsal hyoid arch skeleton (xenopus) @@ -11878,8 +11191,7 @@ - ventral hyoid arch skeleton (xenopus) - XAO:0003179 + ventral hyoid arch skeleton (xenopus) @@ -11898,8 +11210,7 @@ - post-hyoid pharyngeal arch skeleton (xenopus) - XAO:0003180 + post-hyoid pharyngeal arch skeleton (xenopus) @@ -11918,8 +11229,7 @@ - anatomical space (xenopus) - XAO:0003190 + anatomical space (xenopus) @@ -11938,8 +11248,7 @@ - left cardiac atrium (xenopus) - XAO:0003191 + left cardiac atrium (xenopus) @@ -11958,8 +11267,7 @@ - right cardiac atrium (xenopus) - XAO:0003192 + right cardiac atrium (xenopus) @@ -11978,8 +11286,7 @@ - cardiac ventricle (xenopus) - XAO:0003193 + cardiac ventricle (xenopus) @@ -11998,8 +11305,7 @@ - sensory system (xenopus) - XAO:0003194 + sensory system (xenopus) @@ -12018,8 +11324,7 @@ - vestibulo-auditory system (xenopus) - XAO:0003195 + vestibulo-auditory system (xenopus) @@ -12038,8 +11343,7 @@ - olfactory system (xenopus) - XAO:0003196 + olfactory system (xenopus) @@ -12058,8 +11362,7 @@ - gustatory system (xenopus) - XAO:0003197 + gustatory system (xenopus) @@ -12078,8 +11381,7 @@ - visual system (xenopus) - XAO:0003198 + visual system (xenopus) @@ -12098,8 +11400,7 @@ - lymphoid system (xenopus) - XAO:0003199 + lymphoid system (xenopus) @@ -12118,8 +11419,7 @@ - digestive tract epithelium (xenopus) - XAO:0003200 + digestive tract epithelium (xenopus) @@ -12138,8 +11438,7 @@ - oral epithelium (xenopus) - XAO:0003201 + oral epithelium (xenopus) @@ -12158,8 +11457,7 @@ - pharyngeal epithelium (xenopus) - XAO:0003202 + pharyngeal epithelium (xenopus) @@ -12178,8 +11476,7 @@ - dental epithelium (xenopus) - XAO:0003203 + dental epithelium (xenopus) @@ -12198,8 +11495,7 @@ - neural tube (xenopus) - XAO:0003204 + neural tube (xenopus) @@ -12218,8 +11514,7 @@ - carpal skeleton (xenopus) - XAO:0003207 + carpal skeleton (xenopus) @@ -12238,8 +11533,7 @@ - metacarpus skeleton (xenopus) - XAO:0003208 + metacarpus skeleton (xenopus) @@ -12258,8 +11552,7 @@ - radio-ulna (xenopus) - XAO:0003209 + radio-ulna (xenopus) @@ -12278,8 +11571,7 @@ - humerus (xenopus) - XAO:0003210 + humerus (xenopus) @@ -12298,8 +11590,7 @@ - tarsal skeleton (xenopus) - XAO:0003211 + tarsal skeleton (xenopus) @@ -12318,8 +11609,7 @@ - metatarsus skeleton (xenopus) - XAO:0003212 + metatarsus skeleton (xenopus) @@ -12338,8 +11628,7 @@ - tibiofibula (xenopus) - XAO:0003213 + tibiofibula (xenopus) @@ -12358,8 +11647,7 @@ - femur (xenopus) - XAO:0003214 + femur (xenopus) @@ -12378,8 +11666,7 @@ - photoreceptor layer of retina (xenopus) - XAO:0003215 + photoreceptor layer of retina (xenopus) @@ -12398,8 +11685,7 @@ - retinal neural layer (xenopus) - XAO:0003216 + retinal neural layer (xenopus) @@ -12418,8 +11704,7 @@ - pigmented layer of retina (xenopus) - XAO:0003217 + pigmented layer of retina (xenopus) @@ -12438,8 +11723,7 @@ - outer plexiform layer of retina (xenopus) - XAO:0003218 + outer plexiform layer of retina (xenopus) @@ -12458,8 +11742,7 @@ - outer nuclear layer of retina (xenopus) - XAO:0003219 + outer nuclear layer of retina (xenopus) @@ -12478,8 +11761,7 @@ - nerve fiber layer of retina (xenopus) - XAO:0003220 + nerve fiber layer of retina (xenopus) @@ -12498,8 +11780,7 @@ - inner nuclear layer of retina (xenopus) - XAO:0003221 + inner nuclear layer of retina (xenopus) @@ -12518,8 +11799,7 @@ - inner limiting layer of retina (xenopus) - XAO:0003222 + inner limiting layer of retina (xenopus) @@ -12538,8 +11818,7 @@ - ganglionic layer of retina (xenopus) - XAO:0003223 + ganglionic layer of retina (xenopus) @@ -12558,8 +11837,7 @@ - outer limiting layer of retina (xenopus) - XAO:0003224 + outer limiting layer of retina (xenopus) @@ -12578,8 +11856,7 @@ - inner plexiform layer of retina (xenopus) - XAO:0003225 + inner plexiform layer of retina (xenopus) @@ -12598,8 +11875,7 @@ - superior colliculus (xenopus) - XAO:0003226 + superior colliculus (xenopus) @@ -12618,8 +11894,7 @@ - chordate pharynx (xenopus) - XAO:0003227 + chordate pharynx (xenopus) @@ -12638,8 +11913,7 @@ - hypaxial musculature (xenopus) - XAO:0003228 + hypaxial musculature (xenopus) @@ -12658,8 +11932,7 @@ - epaxial musculature (xenopus) - XAO:0003229 + epaxial musculature (xenopus) @@ -12678,8 +11951,7 @@ - skeletal muscle of trunk (xenopus) - XAO:0003230 + skeletal muscle of trunk (xenopus) @@ -12698,8 +11970,7 @@ - liver primordium (xenopus) - XAO:0003266 + liver primordium (xenopus) @@ -12718,8 +11989,7 @@ - kidney (xenopus) - XAO:0003267 + kidney (xenopus) @@ -12738,8 +12008,7 @@ - jaw muscle (xenopus) - XAO:0003269 + jaw muscle (xenopus) @@ -12758,8 +12027,7 @@ - duct (xenopus) - XAO:0004000 + duct (xenopus) @@ -12778,8 +12046,7 @@ - organism substance (xenopus) - XAO:0004001 + organism substance (xenopus) @@ -12798,8 +12065,7 @@ - lateral line (xenopus) - XAO:0004002 + lateral line (xenopus) @@ -12818,8 +12084,7 @@ - anatomical line (xenopus) - XAO:0004003 + anatomical line (xenopus) @@ -12838,8 +12103,7 @@ - atypical epithelium (xenopus) - XAO:0004004 + atypical epithelium (xenopus) @@ -12858,8 +12122,7 @@ - extraembryonic structure (xenopus) - XAO:0004005 + extraembryonic structure (xenopus) @@ -12878,8 +12141,7 @@ - multilaminar epithelium (xenopus) - XAO:0004006 + multilaminar epithelium (xenopus) @@ -12898,8 +12160,7 @@ - unilaminar epithelium (xenopus) - XAO:0004007 + unilaminar epithelium (xenopus) @@ -12918,8 +12179,7 @@ - simple columnar epithelium (xenopus) - XAO:0004008 + simple columnar epithelium (xenopus) @@ -12938,8 +12198,7 @@ - simple cuboidal epithelium (xenopus) - XAO:0004009 + simple cuboidal epithelium (xenopus) @@ -12958,8 +12217,7 @@ - simple squamous epithelium (xenopus) - XAO:0004010 + simple squamous epithelium (xenopus) @@ -12978,8 +12236,7 @@ - axial skeleton plus cranial skeleton (xenopus) - XAO:0004011 + axial skeleton plus cranial skeleton (xenopus) @@ -12998,8 +12255,7 @@ - skeletal element (xenopus) - XAO:0004012 + skeletal element (xenopus) @@ -13018,8 +12274,7 @@ - cartilage element (xenopus) - XAO:0004013 + cartilage element (xenopus) @@ -13038,8 +12293,7 @@ - membrane bone (xenopus) - XAO:0004014 + membrane bone (xenopus) @@ -13058,8 +12312,7 @@ - dermal bone (xenopus) - XAO:0004015 + dermal bone (xenopus) @@ -13078,8 +12331,7 @@ - replacement element (xenopus) - XAO:0004016 + replacement element (xenopus) @@ -13098,8 +12350,7 @@ - endochondral element (xenopus) - XAO:0004017 + endochondral element (xenopus) @@ -13118,8 +12369,7 @@ - endochondral bone (xenopus) - XAO:0004018 + endochondral bone (xenopus) @@ -13138,8 +12388,7 @@ - vertebra (xenopus) - XAO:0004019 + vertebra (xenopus) @@ -13158,8 +12407,7 @@ - anatomical projection (xenopus) - XAO:0004020 + anatomical projection (xenopus) @@ -13178,8 +12426,7 @@ - cell condensation (xenopus) - XAO:0004021 + cell condensation (xenopus) @@ -13198,8 +12445,7 @@ - cartilaginous condensation (xenopus) - XAO:0004022 + cartilaginous condensation (xenopus) @@ -13218,8 +12464,7 @@ - dermal skeleton (xenopus) - XAO:0004025 + dermal skeleton (xenopus) @@ -13238,8 +12483,7 @@ - endoskeleton (xenopus) - XAO:0004026 + endoskeleton (xenopus) @@ -13258,8 +12502,7 @@ - fibrocartilage (xenopus) - XAO:0004028 + fibrocartilage (xenopus) @@ -13278,8 +12521,7 @@ - hyaline cartilage tissue (xenopus) - XAO:0004029 + hyaline cartilage tissue (xenopus) @@ -13298,8 +12540,7 @@ - dense regular connective tissue (xenopus) - XAO:0004030 + dense regular connective tissue (xenopus) @@ -13318,8 +12559,7 @@ - ligament (xenopus) - XAO:0004031 + ligament (xenopus) @@ -13338,8 +12578,7 @@ - osteoid (xenopus) - XAO:0004035 + osteoid (xenopus) @@ -13358,8 +12597,7 @@ - skeletal tissue (xenopus) - XAO:0004038 + skeletal tissue (xenopus) @@ -13378,8 +12616,7 @@ - mineralized skeletal tissue (xenopus) - XAO:0004039 + mineralized skeletal tissue (xenopus) @@ -13398,8 +12635,7 @@ - bone tissue (xenopus) - XAO:0004040 + bone tissue (xenopus) @@ -13418,8 +12654,7 @@ - musculature of body (xenopus) - XAO:0004042 + musculature of body (xenopus) @@ -13438,8 +12673,7 @@ - non-mineralized cartilage tissue (xenopus) - XAO:0004044 + non-mineralized cartilage tissue (xenopus) @@ -13458,8 +12692,7 @@ - odontogenic papilla (xenopus) - XAO:0004045 + odontogenic papilla (xenopus) @@ -13478,8 +12711,7 @@ - odontoid tissue (xenopus) - XAO:0004046 + odontoid tissue (xenopus) @@ -13498,8 +12730,7 @@ - oropharynx (xenopus) - XAO:0004048 + oropharynx (xenopus) @@ -13518,8 +12749,7 @@ - perichondrium (xenopus) - XAO:0004049 + perichondrium (xenopus) @@ -13538,8 +12768,7 @@ - perichordal tissue (xenopus) - XAO:0004050 + perichordal tissue (xenopus) @@ -13558,8 +12787,7 @@ - dentine (xenopus) - XAO:0004051 + dentine (xenopus) @@ -13578,8 +12806,7 @@ - pre-dentine (xenopus) - XAO:0004052 + pre-dentine (xenopus) @@ -13598,8 +12825,7 @@ - skeleton (xenopus) - XAO:0004053 + skeleton (xenopus) @@ -13618,8 +12844,7 @@ - post-anal tail tip (xenopus) - XAO:0004057 + post-anal tail tip (xenopus) @@ -13638,8 +12863,7 @@ - regenerating anatomical structure (xenopus) - XAO:0004059 + regenerating anatomical structure (xenopus) @@ -13658,8 +12882,7 @@ - blastema (xenopus) - XAO:0004060 + blastema (xenopus) @@ -13678,8 +12901,7 @@ - hypothalamus (xenopus) - XAO:0004070 + hypothalamus (xenopus) @@ -13698,8 +12920,7 @@ - optic chiasma (xenopus) - XAO:0004071 + optic chiasma (xenopus) @@ -13718,8 +12939,7 @@ - suprachiasmatic nucleus (xenopus) - XAO:0004072 + suprachiasmatic nucleus (xenopus) @@ -13738,8 +12958,7 @@ - olfactory pit (xenopus) - XAO:0004073 + olfactory pit (xenopus) @@ -13758,8 +12977,7 @@ - somite border (xenopus) - XAO:0004074 + somite border (xenopus) @@ -13778,8 +12996,7 @@ - intersomitic vessel (xenopus) - XAO:0004075 + intersomitic vessel (xenopus) @@ -13798,8 +13015,7 @@ - somite boundary epithelium (xenopus) - XAO:0004077 + somite boundary epithelium (xenopus) @@ -13818,8 +13034,7 @@ - rhombomere (xenopus) - XAO:0004079 + rhombomere (xenopus) @@ -13838,8 +13053,7 @@ - rhombomere 2 (xenopus) - XAO:0004080 + rhombomere 2 (xenopus) @@ -13858,8 +13072,7 @@ - rhombomere 3 (xenopus) - XAO:0004081 + rhombomere 3 (xenopus) @@ -13878,8 +13091,7 @@ - rhombomere 4 (xenopus) - XAO:0004082 + rhombomere 4 (xenopus) @@ -13898,8 +13110,7 @@ - rhombomere 5 (xenopus) - XAO:0004083 + rhombomere 5 (xenopus) @@ -13918,8 +13129,7 @@ - rhombomere 6 (xenopus) - XAO:0004084 + rhombomere 6 (xenopus) @@ -13938,8 +13148,7 @@ - presumptive midbrain hindbrain boundary (xenopus) - XAO:0004086 + presumptive midbrain hindbrain boundary (xenopus) @@ -13958,8 +13167,7 @@ - neural fold (xenopus) - XAO:0004087 + neural fold (xenopus) @@ -13978,8 +13186,7 @@ - periocular mesenchyme (xenopus) - XAO:0004089 + periocular mesenchyme (xenopus) @@ -13998,8 +13205,7 @@ - eye primordium (xenopus) - XAO:0004090 + eye primordium (xenopus) @@ -14018,8 +13224,7 @@ - non-neural ectoderm (xenopus) - XAO:0004091 + non-neural ectoderm (xenopus) @@ -14038,8 +13243,7 @@ - profundal placode (xenopus) - XAO:0004093 + profundal placode (xenopus) @@ -14058,8 +13262,7 @@ - epithelium of lens (xenopus) - XAO:0004094 + epithelium of lens (xenopus) @@ -14078,8 +13281,7 @@ - lens fiber (xenopus) - XAO:0004096 + lens fiber (xenopus) @@ -14098,8 +13300,7 @@ - optic tract (xenopus) - XAO:0004101 + optic tract (xenopus) @@ -14118,8 +13319,7 @@ - pronephric nephron tubule (xenopus) - XAO:0004105 + pronephric nephron tubule (xenopus) @@ -14138,8 +13338,7 @@ - cardiac jelly (xenopus) - XAO:0004120 + cardiac jelly (xenopus) @@ -14158,8 +13357,7 @@ - apical ectodermal ridge (xenopus) - XAO:0004121 + apical ectodermal ridge (xenopus) @@ -14178,8 +13376,7 @@ - atrioventricular canal (xenopus) - XAO:0004123 + atrioventricular canal (xenopus) @@ -14198,8 +13395,7 @@ - atrioventricular canal endocardium (xenopus) - XAO:0004124 + atrioventricular canal endocardium (xenopus) @@ -14218,8 +13414,7 @@ - cardiac valve (xenopus) - XAO:0004126 + cardiac valve (xenopus) @@ -14238,8 +13433,7 @@ - jaw depressor muscle (xenopus) - XAO:0004127 + jaw depressor muscle (xenopus) @@ -14258,8 +13452,7 @@ - rectus abdominis muscle (xenopus) - XAO:0004128 + rectus abdominis muscle (xenopus) @@ -14278,8 +13471,7 @@ - presumptive ectoderm (xenopus) - XAO:0004132 + presumptive ectoderm (xenopus) @@ -14298,8 +13490,7 @@ - crista of ampulla of posterior semicircular duct of membranous laybrinth (xenopus) - XAO:0004133 + crista of ampulla of posterior semicircular duct of membranous laybrinth (xenopus) @@ -14318,8 +13509,7 @@ - presumptive paraxial mesoderm (xenopus) - XAO:0004134 + presumptive paraxial mesoderm (xenopus) @@ -14338,8 +13528,7 @@ - rhombic lip (xenopus) - XAO:0004135 + rhombic lip (xenopus) @@ -14358,8 +13547,7 @@ - macula of saccule of membranous labyrinth (xenopus) - XAO:0004136 + macula of saccule of membranous labyrinth (xenopus) @@ -14378,8 +13566,7 @@ - crista of ampulla of anterior semicircular duct of membranous laybrinth (xenopus) - XAO:0004137 + crista of ampulla of anterior semicircular duct of membranous laybrinth (xenopus) @@ -14398,8 +13585,7 @@ - outflow tract (xenopus) - XAO:0004139 + outflow tract (xenopus) @@ -14418,8 +13604,7 @@ - outflow tract of ventricle (xenopus) - XAO:0004140 + outflow tract of ventricle (xenopus) @@ -14438,8 +13623,7 @@ - outflow tract septum (xenopus) - XAO:0004141 + outflow tract septum (xenopus) @@ -14458,8 +13642,7 @@ - vestibulocochlear ganglion (xenopus) - XAO:0004142 + vestibulocochlear ganglion (xenopus) @@ -14478,8 +13661,7 @@ - vascular plexus (xenopus) - XAO:0004143 + vascular plexus (xenopus) @@ -14498,8 +13680,7 @@ - vestibular labyrinth (xenopus) - XAO:0004145 + vestibular labyrinth (xenopus) @@ -14518,8 +13699,7 @@ - vitelline vein (xenopus) - XAO:0004147 + vitelline vein (xenopus) @@ -14538,8 +13718,7 @@ - tail vasculature (xenopus) - XAO:0004151 + tail vasculature (xenopus) @@ -14558,30 +13737,7 @@ - vasculature of head (xenopus) - XAO:0004152 - - - - - - - - - - - - - - - - - - - - retina blood vessel (xenopus) - vasculature of retina (xenopus) - XAO:0004153 + vasculature of head (xenopus) @@ -14600,8 +13756,7 @@ - hyaloid vessel (xenopus) - XAO:0004154 + hyaloid vessel (xenopus) @@ -14620,8 +13775,7 @@ - hyaloid artery (xenopus) - XAO:0004155 + hyaloid artery (xenopus) @@ -14640,8 +13794,7 @@ - hyaloid vein (xenopus) - XAO:0004156 + hyaloid vein (xenopus) @@ -14660,8 +13813,7 @@ - hyaloid vascular plexus (xenopus) - XAO:0004157 + hyaloid vascular plexus (xenopus) @@ -14680,8 +13832,7 @@ - anterior cerebral vein (xenopus) - XAO:0004158 + anterior cerebral vein (xenopus) @@ -14700,8 +13851,7 @@ - cerebral vein (xenopus) - XAO:0004160 + cerebral vein (xenopus) @@ -14720,8 +13870,7 @@ - pulmonary artery (xenopus) - XAO:0004162 + pulmonary artery (xenopus) @@ -14740,8 +13889,7 @@ - intersomitic artery (xenopus) - XAO:0004165 + intersomitic artery (xenopus) @@ -14760,8 +13908,7 @@ - ophthalmic vein (xenopus) - XAO:0004169 + ophthalmic vein (xenopus) @@ -14780,8 +13927,7 @@ - subintestinal vein (xenopus) - XAO:0004172 + subintestinal vein (xenopus) @@ -14800,8 +13946,7 @@ - mesencephalic artery (xenopus) - XAO:0004173 + mesencephalic artery (xenopus) @@ -14820,8 +13965,7 @@ - mesencephalic vein (xenopus) - XAO:0004174 + mesencephalic vein (xenopus) @@ -14840,8 +13984,7 @@ - optic choroid vascular plexus (xenopus) - XAO:0004176 + optic choroid vascular plexus (xenopus) @@ -14860,8 +14003,7 @@ - olfactory bulb (xenopus) - XAO:0004180 + olfactory bulb (xenopus) @@ -14880,8 +14022,7 @@ - pericardium (xenopus) - XAO:0004182 + pericardium (xenopus) @@ -14900,8 +14041,7 @@ - primary heart field (xenopus) - XAO:0004185 + primary heart field (xenopus) @@ -14920,8 +14060,7 @@ - secondary heart field (xenopus) - XAO:0004186 + secondary heart field (xenopus) @@ -14940,8 +14079,7 @@ - endocardial cushion (xenopus) - XAO:0004189 + endocardial cushion (xenopus) @@ -14960,8 +14098,7 @@ - cardiac neural crest (xenopus) - XAO:0004190 + cardiac neural crest (xenopus) @@ -14980,8 +14117,7 @@ - vagal neural crest (xenopus) - XAO:0004191 + vagal neural crest (xenopus) @@ -15000,8 +14136,7 @@ - sacral neural crest (xenopus) - XAO:0004192 + sacral neural crest (xenopus) @@ -15020,8 +14155,7 @@ - appendicular ossicle (xenopus) - XAO:0004194 + appendicular ossicle (xenopus) @@ -15040,8 +14174,7 @@ - cementum (xenopus) - XAO:0004196 + cementum (xenopus) @@ -15060,8 +14193,7 @@ - elastic cartilage tissue (xenopus) - XAO:0004197 + elastic cartilage tissue (xenopus) @@ -15080,8 +14212,7 @@ - enamel (xenopus) - XAO:0004198 + enamel (xenopus) @@ -15100,8 +14231,7 @@ - enameloid (xenopus) - XAO:0004199 + enameloid (xenopus) @@ -15120,8 +14250,7 @@ - pre-enamel (xenopus) - XAO:0004202 + pre-enamel (xenopus) @@ -15140,8 +14269,7 @@ - pre-enameloid (xenopus) - XAO:0004203 + pre-enameloid (xenopus) @@ -15160,8 +14288,7 @@ - gallbladder primordium (xenopus) - XAO:0004205 + gallbladder primordium (xenopus) @@ -15180,8 +14307,7 @@ - adenohypophyseal placode (xenopus) - XAO:0004208 + adenohypophyseal placode (xenopus) @@ -15200,8 +14326,7 @@ - pituitary stalk (xenopus) - XAO:0004210 + pituitary stalk (xenopus) @@ -15220,8 +14345,7 @@ - geniculate placode (xenopus) - XAO:0004211 + geniculate placode (xenopus) @@ -15240,8 +14364,7 @@ - petrosal placode (xenopus) - XAO:0004212 + petrosal placode (xenopus) @@ -15260,8 +14383,7 @@ - nodosal placode (xenopus) - XAO:0004213 + nodosal placode (xenopus) @@ -15280,8 +14402,7 @@ - accessory XI nerve (xenopus) - XAO:0004214 + accessory XI nerve (xenopus) @@ -15300,8 +14421,7 @@ - hypoglossal nerve (xenopus) - XAO:0004215 + hypoglossal nerve (xenopus) @@ -15320,8 +14440,7 @@ - anterior lateral line placode (xenopus) - XAO:0004221 + anterior lateral line placode (xenopus) @@ -15340,8 +14459,7 @@ - ventral tegmental area (xenopus) - XAO:0004226 + ventral tegmental area (xenopus) @@ -15360,8 +14478,7 @@ - midbrain tegmentum (xenopus) - XAO:0004271 + midbrain tegmentum (xenopus) @@ -15380,8 +14497,7 @@ - thalamic eminence (xenopus) - XAO:0004301 + thalamic eminence (xenopus) @@ -15400,8 +14516,7 @@ - pretectal region (xenopus) - XAO:0004303 + pretectal region (xenopus) @@ -15420,8 +14535,7 @@ - zona limitans intrathalamica (xenopus) - XAO:0004305 + zona limitans intrathalamica (xenopus) @@ -15440,8 +14554,7 @@ - interdigital region (xenopus) - XAO:0004316 + interdigital region (xenopus) @@ -15460,8 +14573,7 @@ - branchiomeric muscle (xenopus) - XAO:0004325 + branchiomeric muscle (xenopus) @@ -15480,8 +14592,7 @@ - oculomotor nuclear complex (xenopus) - XAO:0004389 + oculomotor nuclear complex (xenopus) @@ -15500,8 +14611,7 @@ - lateral line ganglion (xenopus) - XAO:0004457 + lateral line ganglion (xenopus) @@ -15520,8 +14630,7 @@ - peripheral region of retina (xenopus) - XAO:0004458 + peripheral region of retina (xenopus) @@ -15540,8 +14649,7 @@ - periotic mesenchyme (xenopus) - XAO:0004474 + periotic mesenchyme (xenopus) @@ -15560,8 +14668,7 @@ - entire pharyngeal arch associated mesenchyme (xenopus) - XAO:0004524 + entire pharyngeal arch associated mesenchyme (xenopus) @@ -15580,8 +14687,7 @@ - bed nucleus of stria terminalis (xenopus) - XAO:0004541 + bed nucleus of stria terminalis (xenopus) @@ -15600,8 +14706,7 @@ - central amygdaloid nucleus (xenopus) - XAO:0004542 + central amygdaloid nucleus (xenopus) @@ -15620,8 +14725,7 @@ - neurogenic placode (xenopus) - XAO:0004620 + neurogenic placode (xenopus) @@ -15640,8 +14744,7 @@ - life cycle stage (xenopus) - XAO:1000000 + life cycle stage (xenopus) @@ -15660,8 +14763,7 @@ - zygote stage (xenopus) - XAO:1000001 + zygote stage (xenopus) @@ -15680,8 +14782,7 @@ - blastula stage (xenopus) - XAO:1000003 + blastula stage (xenopus) @@ -15700,8 +14801,7 @@ - cleavage stage (xenopus) - XAO:1000004 + cleavage stage (xenopus) @@ -15720,8 +14820,7 @@ - gastrula stage (xenopus) - XAO:1000005 + gastrula stage (xenopus) @@ -15740,30 +14839,7 @@ - neurula stage (xenopus) - XAO:1000006 - - - - - - - - - - - - - - - - - - - - amphibian larval stage (xenopus) - tadpole stage (xenopus) - XAO:1000008 + neurula stage (xenopus) @@ -15782,8 +14858,7 @@ - sexually immature stage (xenopus) - XAO:1000010 + sexually immature stage (xenopus) @@ -15802,8 +14877,7 @@ - 2 cell stage (xenopus) - XAO:1000011 + 2 cell stage (xenopus) @@ -15822,8 +14896,7 @@ - embryo stage (xenopus) - XAO:1000012 + embryo stage (xenopus) @@ -15842,8 +14915,7 @@ - 4 cell stage (xenopus) - XAO:1000013 + 4 cell stage (xenopus) @@ -15862,8 +14934,7 @@ - 8 cell stage (xenopus) - XAO:1000014 + 8 cell stage (xenopus) @@ -15882,38 +14953,37 @@ - post-juvenile adult stage (xenopus) - XAO:1000093 + post-juvenile adult stage (xenopus) - + - - - - - - - - - - - - + + + + + + + + - XAO:ENTITY - XAO entity - + diff --git a/src/ontology/bridge/uberon-bridge-to-zfa.obo b/src/ontology/bridge/uberon-bridge-to-zfa.obo deleted file mode 100644 index ddbfd820ae..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-zfa.obo +++ /dev/null @@ -1,12549 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-zfa -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI -property_value: dc-title "Uberon bridge to zfa" xsd:string -property_value: dc-description "Taxonomic equivalence axioms between ZFA and Uberon" xsd:string -property_value: dc-creator "Uberon editors" xsd:string -property_value: dc-contributor "Ceri Van Slyke" xsd:string -property_value: dc-contributor "Yvonne Bradford" xsd:string -property_value: dc-contributor "Melissa Haendel" xsd:string -property_value: dcterms-references http://purl.obolibrary.org/obo/zfa.owl -property_value: dcterms-references http://purl.obolibrary.org/obo/uberon.owl - -[Term] -id: ZFA:0000047 ! -property_value: IAO:0000589 "nose (zebrafish)" xsd:string -intersection_of: UBERON:0000004 ! nose -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000118 ! -property_value: IAO:0000589 "pituitary gland (zebrafish)" xsd:string -intersection_of: UBERON:0000007 ! pituitary gland -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000142 ! -property_value: IAO:0000589 "peripheral nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0000010 ! peripheral nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001575 ! -property_value: IAO:0000589 "parasympathetic nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0000011 ! parasympathetic nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001576 ! -property_value: IAO:0000589 "sympathetic nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0000013 ! sympathetic nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001260 ! -property_value: IAO:0000589 "endocrine pancreas (zebrafish)" xsd:string -intersection_of: UBERON:0000016 ! endocrine pancreas -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001249 ! -property_value: IAO:0000589 "exocrine pancreas (zebrafish)" xsd:string -intersection_of: UBERON:0000017 ! exocrine pancreas -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000107 ! -property_value: IAO:0000589 "camera-type eye (zebrafish)" xsd:string -intersection_of: UBERON:0000019 ! camera-type eye -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001114 ! -property_value: IAO:0000589 "head (zebrafish)" xsd:string -intersection_of: UBERON:0000033 ! head -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005425 ! -property_value: IAO:0000589 "serous membrane (zebrafish)" xsd:string -intersection_of: UBERON:0000042 ! serous membrane -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005647 ! -property_value: IAO:0000589 "tendon (zebrafish)" xsd:string -intersection_of: UBERON:0000043 ! tendon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000200 ! -property_value: IAO:0000589 "dorsal root ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0000044 ! dorsal root ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000190 ! -property_value: IAO:0000589 "ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0000045 ! ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000386 ! -property_value: IAO:0000589 "macula (zebrafish)" xsd:string -intersection_of: UBERON:0000054 ! macula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005171 ! -property_value: IAO:0000589 "duct (zebrafish)" xsd:string -intersection_of: UBERON:0000058 ! duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000037 ! -property_value: IAO:0000589 "anatomical structure (zebrafish)" xsd:string -intersection_of: UBERON:0000061 ! anatomical structure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001288 ! -property_value: IAO:0000589 "renal glomerulus (zebrafish)" xsd:string -intersection_of: UBERON:0000074 ! renal glomerulus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000529 ! -property_value: IAO:0000589 "mesonephros (zebrafish)" xsd:string -intersection_of: UBERON:0000080 ! mesonephros -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001111 ! -property_value: IAO:0000589 "zona pellucida (zebrafish)" xsd:string -intersection_of: UBERON:0000086 ! zona pellucida -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000117 ! -property_value: IAO:0000589 "hypoblast (generic) (zebrafish)" xsd:string -intersection_of: UBERON:0000089 ! hypoblast (generic) -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001648 ! -property_value: IAO:0000589 "cardiac neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0000095 ! cardiac neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001161 ! -property_value: IAO:0000589 "pectoral fin (zebrafish)" xsd:string -intersection_of: UBERON:0000151 ! pectoral fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001184 ! -property_value: IAO:0000589 "pelvic fin (zebrafish)" xsd:string -intersection_of: UBERON:0000152 ! pelvic fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001113 ! -property_value: IAO:0000589 "theca cell layer (zebrafish)" xsd:string -intersection_of: UBERON:0000155 ! theca cell layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001338 ! -property_value: IAO:0000589 "intestine (zebrafish)" xsd:string -intersection_of: UBERON:0000160 ! intestine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005781 ! -property_value: IAO:0000589 "cloaca (zebrafish)" xsd:string -intersection_of: UBERON:0000162 ! cloaca -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000547 ! -property_value: IAO:0000589 "mouth (zebrafish)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000590 ! -property_value: IAO:0000589 "mouth (zebrafish)" xsd:string -intersection_of: UBERON:0000165 ! mouth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001027 ! -property_value: IAO:0000589 "oral cavity (zebrafish)" xsd:string -intersection_of: UBERON:0000167 ! oral cavity -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000007 ! -property_value: IAO:0000589 "blood (zebrafish)" xsd:string -intersection_of: UBERON:0000178 ! blood -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000505 ! -property_value: IAO:0000589 "pallium (zebrafish)" xsd:string -intersection_of: UBERON:0000203 ! pallium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000304 ! -property_value: IAO:0000589 "ventral part of telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0000204 ! ventral part of telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001675 ! -property_value: IAO:0000589 "ligament (zebrafish)" xsd:string -intersection_of: UBERON:0000211 ! ligament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005271 ! -property_value: IAO:0000589 "flexor muscle (zebrafish)" xsd:string -intersection_of: UBERON:0000366 ! flexor muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005128 ! -property_value: IAO:0000589 "colonic epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000397 ! colonic epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000370 ! -property_value: IAO:0000589 "ventral intermediate nucleus of thalamus (zebrafish)" xsd:string -intersection_of: UBERON:0000430 ! ventral intermediate nucleus of thalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001487 ! -property_value: IAO:0000589 "organism substance (zebrafish)" xsd:string -intersection_of: UBERON:0000463 ! organism substance -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001643 ! -property_value: IAO:0000589 "anatomical space (zebrafish)" xsd:string -intersection_of: UBERON:0000464 ! anatomical space -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001439 ! -property_value: IAO:0000589 "anatomical system (zebrafish)" xsd:string -intersection_of: UBERON:0000467 ! anatomical system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001094 ! -property_value: IAO:0000589 "multicellular organism (zebrafish)" xsd:string -intersection_of: UBERON:0000468 ! multicellular organism -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001489 ! -property_value: IAO:0000589 "compound organ component (zebrafish)" xsd:string -intersection_of: UBERON:0000471 ! compound organ component -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001492 ! -property_value: IAO:0000589 "simple organ (zebrafish)" xsd:string -intersection_of: UBERON:0000472 ! simple organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000598 ! -property_value: IAO:0000589 "testis (zebrafish)" xsd:string -intersection_of: UBERON:0000473 ! testis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001308 ! -property_value: IAO:0000589 "organism subdivision (zebrafish)" xsd:string -intersection_of: UBERON:0000475 ! organism subdivision -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000382 ! -property_value: IAO:0000589 "acellular anatomical structure (zebrafish)" xsd:string -intersection_of: UBERON:0000476 ! acellular anatomical structure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000020 ! -property_value: IAO:0000589 "extraembryonic structure (zebrafish)" xsd:string -intersection_of: UBERON:0000478 ! extraembryonic structure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001477 ! -property_value: IAO:0000589 "tissue (zebrafish)" xsd:string -intersection_of: UBERON:0000479 ! tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001512 ! -property_value: IAO:0000589 "anatomical group (zebrafish)" xsd:string -intersection_of: UBERON:0000480 ! anatomical group -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001488 ! -property_value: IAO:0000589 "multi-tissue structure (zebrafish)" xsd:string -intersection_of: UBERON:0000481 ! multi-tissue structure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001485 ! -property_value: IAO:0000589 "basal lamina of epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000482 ! basal lamina of epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001486 ! -property_value: IAO:0000589 "epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000483 ! epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001497 ! -property_value: IAO:0000589 "simple cuboidal epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000484 ! simple cuboidal epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001496 ! -property_value: IAO:0000589 "simple columnar epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000485 ! simple columnar epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001494 ! -property_value: IAO:0000589 "multilaminar epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000486 ! multilaminar epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001498 ! -property_value: IAO:0000589 "simple squamous epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000487 ! simple squamous epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001493 ! -property_value: IAO:0000589 "atypical epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000488 ! atypical epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001490 ! -property_value: IAO:0000589 "cavitated compound organ (zebrafish)" xsd:string -intersection_of: UBERON:0000489 ! cavitated compound organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001495 ! -property_value: IAO:0000589 "unilaminar epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0000490 ! unilaminar epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001491 ! -property_value: IAO:0000589 "solid compound organ (zebrafish)" xsd:string -intersection_of: UBERON:0000491 ! solid compound organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000329 ! -property_value: IAO:0000589 "egg chorion (zebrafish)" xsd:string -intersection_of: UBERON:0000920 ! egg chorion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000103 ! -property_value: IAO:0000589 "embryo (zebrafish)" xsd:string -intersection_of: UBERON:0000922 ! embryo -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001122 ! -property_value: IAO:0000589 "germ layer (zebrafish)" xsd:string -intersection_of: UBERON:0000923 ! germ layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000016 ! -property_value: IAO:0000589 "ectoderm (zebrafish)" xsd:string -intersection_of: UBERON:0000924 ! ectoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000017 ! -property_value: IAO:0000589 "endoderm (zebrafish)" xsd:string -intersection_of: UBERON:0000925 ! endoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000041 ! -property_value: IAO:0000589 "mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0000926 ! mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001290 ! -property_value: IAO:0000589 "stomodeum (zebrafish)" xsd:string -intersection_of: UBERON:0000930 ! stomodeum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000066 ! -property_value: IAO:0000589 "proctodeum (zebrafish)" xsd:string -intersection_of: UBERON:0000931 ! proctodeum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000172 ! -property_value: IAO:0000589 "chordate pharyngeal muscle (zebrafish)" xsd:string -intersection_of: UBERON:0000933 ! chordate pharyngeal muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001108 ! -property_value: IAO:0000589 "anterior commissure (zebrafish)" xsd:string -intersection_of: UBERON:0000935 ! anterior commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000320 ! -property_value: IAO:0000589 "posterior commissure (zebrafish)" xsd:string -intersection_of: UBERON:0000936 ! posterior commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000435 ! -property_value: IAO:0000589 "cranial nerve II (zebrafish)" xsd:string -intersection_of: UBERON:0000941 ! cranial nerve II -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005065 ! -property_value: IAO:0000589 "cardiac valve (zebrafish)" xsd:string -intersection_of: UBERON:0000946 ! cardiac valve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000114 ! -property_value: IAO:0000589 "heart (zebrafish)" xsd:string -intersection_of: UBERON:0000948 ! heart -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001158 ! -property_value: IAO:0000589 "endocrine system (zebrafish)" xsd:string -intersection_of: UBERON:0000949 ! endocrine system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000008 ! -property_value: IAO:0000589 "brain (zebrafish)" xsd:string -intersection_of: UBERON:0000955 ! brain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000556 ! -property_value: IAO:0000589 "optic chiasma (zebrafish)" xsd:string -intersection_of: UBERON:0000959 ! optic chiasma -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000640 ! -property_value: IAO:0000589 "cornea (zebrafish)" xsd:string -intersection_of: UBERON:0000964 ! cornea -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000035 ! -property_value: IAO:0000589 "lens of camera-type eye (zebrafish)" xsd:string -intersection_of: UBERON:0000965 ! lens of camera-type eye -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000152 ! -property_value: IAO:0000589 "retina (zebrafish)" xsd:string -intersection_of: UBERON:0000966 ! retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001596 ! -property_value: IAO:0000589 "skeletal joint (zebrafish)" xsd:string -intersection_of: UBERON:0000982 ! skeletal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000632 ! -property_value: IAO:0000589 "reproductive system (zebrafish)" xsd:string -intersection_of: UBERON:0000990 ! reproductive system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000413 ! -property_value: IAO:0000589 "gonad (zebrafish)" xsd:string -intersection_of: UBERON:0000991 ! gonad -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000403 ! -property_value: IAO:0000589 "ovary (zebrafish)" xsd:string -intersection_of: UBERON:0000992 ! ovary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000560 ! -property_value: IAO:0000589 "oviduct (zebrafish)" xsd:string -intersection_of: UBERON:0000993 ! oviduct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000105 ! -property_value: IAO:0000589 "skin epidermis (zebrafish)" xsd:string -intersection_of: UBERON:0001003 ! skin epidermis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000272 ! -property_value: IAO:0000589 "respiratory system (zebrafish)" xsd:string -intersection_of: UBERON:0001004 ! respiratory system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000339 ! -property_value: IAO:0000589 "digestive system (zebrafish)" xsd:string -intersection_of: UBERON:0001007 ! digestive system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000163 ! -property_value: IAO:0000589 "renal system (zebrafish)" xsd:string -intersection_of: UBERON:0001008 ! renal system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005345 ! -property_value: IAO:0000589 "adipose tissue (zebrafish)" xsd:string -intersection_of: UBERON:0001013 ! adipose tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000548 ! -property_value: IAO:0000589 "musculature (zebrafish)" xsd:string -intersection_of: UBERON:0001015 ! musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000396 ! -property_value: IAO:0000589 "nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0001016 ! nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000012 ! -property_value: IAO:0000589 "central nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0001017 ! central nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007009 ! -property_value: IAO:0000589 "nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001021 ! nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000282 ! -property_value: IAO:0000589 "sensory system (zebrafish)" xsd:string -intersection_of: UBERON:0001032 ! sensory system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001101 ! -property_value: IAO:0000589 "gustatory system (zebrafish)" xsd:string -intersection_of: UBERON:0001033 ! gustatory system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000056 ! -property_value: IAO:0000589 "chordate pharynx (zebrafish)" xsd:string -intersection_of: UBERON:0001042 ! chordate pharynx -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000204 ! -property_value: IAO:0000589 "esophagus (zebrafish)" xsd:string -intersection_of: UBERON:0001043 ! esophagus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001135 ! -property_value: IAO:0000589 "neural tube (zebrafish)" xsd:string -intersection_of: UBERON:0001049 ! neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0100000 ! -property_value: IAO:0000589 "anatomical entity (zebrafish)" xsd:string -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001655 ! -property_value: IAO:0000589 "pericardial cavity (zebrafish)" xsd:string -intersection_of: UBERON:0001074 ! pericardial cavity -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000126 ! -property_value: IAO:0000589 "bony vertebral centrum (zebrafish)" xsd:string -intersection_of: UBERON:0001075 ! bony vertebral centrum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001336 ! -property_value: IAO:0000589 "neural spine (zebrafish)" xsd:string -intersection_of: UBERON:0001076 ! neural spine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001325 ! -property_value: IAO:0000589 "prezygapophysis (zebrafish)" xsd:string -intersection_of: UBERON:0001079 ! prezygapophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000681 ! -property_value: IAO:0000589 "postzygapophysis (zebrafish)" xsd:string -intersection_of: UBERON:0001080 ! postzygapophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001615 ! -property_value: IAO:0000589 "endocardium of ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0001081 ! endocardium of ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005058 ! -property_value: IAO:0000589 "epicardium of ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0001082 ! epicardium of ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005061 ! -property_value: IAO:0000589 "myocardium of ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0001083 ! myocardium of ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005154 ! -property_value: IAO:0000589 "synovial fluid (zebrafish)" xsd:string -intersection_of: UBERON:0001090 ! synovial fluid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000694 ! -property_value: IAO:0000589 "calcareous tooth (zebrafish)" xsd:string -intersection_of: UBERON:0001091 ! calcareous tooth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001167 ! -property_value: IAO:0000589 "vertebral bone 1 (zebrafish)" xsd:string -intersection_of: UBERON:0001092 ! vertebral bone 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001168 ! -property_value: IAO:0000589 "vertebral bone 2 (zebrafish)" xsd:string -intersection_of: UBERON:0001093 ! vertebral bone 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000326 ! -property_value: IAO:0000589 "caudal vertebra (zebrafish)" xsd:string -intersection_of: UBERON:0001095 ! caudal vertebra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005173 ! -property_value: IAO:0000589 "right lobe of liver (zebrafish)" xsd:string -intersection_of: UBERON:0001114 ! right lobe of liver -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005172 ! -property_value: IAO:0000589 "left lobe of liver (zebrafish)" xsd:string -intersection_of: UBERON:0001115 ! left lobe of liver -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001559 ! -property_value: IAO:0000589 "vertebral column (zebrafish)" xsd:string -intersection_of: UBERON:0001130 ! vertebral column -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005280 ! -property_value: IAO:0000589 "cardiac muscle tissue (zebrafish)" xsd:string -intersection_of: UBERON:0001133 ! cardiac muscle tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005274 ! -property_value: IAO:0000589 "smooth muscle tissue (zebrafish)" xsd:string -intersection_of: UBERON:0001135 ! smooth muscle tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000670 ! -property_value: IAO:0000589 "hepatic vein (zebrafish)" xsd:string -intersection_of: UBERON:0001143 ! hepatic vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005166 ! -property_value: IAO:0000589 "cystic duct (zebrafish)" xsd:string -intersection_of: UBERON:0001152 ! cystic duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000706 ! -property_value: IAO:0000589 "colon (zebrafish)" xsd:string -intersection_of: UBERON:0001155 ! colon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005165 ! -property_value: IAO:0000589 "common bile duct (zebrafish)" xsd:string -intersection_of: UBERON:0001174 ! common bile duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005132 ! -property_value: IAO:0000589 "visceral peritoneum (zebrafish)" xsd:string -intersection_of: UBERON:0001178 ! visceral peritoneum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000420 ! -property_value: IAO:0000589 "renal artery (zebrafish)" xsd:string -intersection_of: UBERON:0001184 ! renal artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005161 ! -property_value: IAO:0000589 "hepatic artery (zebrafish)" xsd:string -intersection_of: UBERON:0001193 ! hepatic artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005125 ! -property_value: IAO:0000589 "intestinal villus (zebrafish)" xsd:string -intersection_of: UBERON:0001213 ! intestinal villus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005281 ! -property_value: IAO:0000589 "renal corpuscle (zebrafish)" xsd:string -intersection_of: UBERON:0001229 ! renal corpuscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005254 ! -property_value: IAO:0000589 "glomerular capsule (zebrafish)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005310 ! -property_value: IAO:0000589 "glomerular capsule (zebrafish)" xsd:string -intersection_of: UBERON:0001230 ! glomerular capsule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001287 ! -property_value: IAO:0000589 "nephron tubule (zebrafish)" xsd:string -intersection_of: UBERON:0001231 ! nephron tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005294 ! -property_value: IAO:0000589 "collecting duct of renal tubule (zebrafish)" xsd:string -intersection_of: UBERON:0001232 ! collecting duct of renal tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000140 ! -property_value: IAO:0000589 "pancreas (zebrafish)" xsd:string -intersection_of: UBERON:0001264 ! pancreas -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005124 ! -property_value: IAO:0000589 "intestinal epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0001277 ! intestinal epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005091 ! -property_value: IAO:0000589 "hepatic sinusoid (zebrafish)" xsd:string -intersection_of: UBERON:0001281 ! hepatic sinusoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005163 ! -property_value: IAO:0000589 "bile canaliculus (zebrafish)" xsd:string -intersection_of: UBERON:0001283 ! bile canaliculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005282 ! -property_value: IAO:0000589 "nephron (zebrafish)" xsd:string -intersection_of: UBERON:0001285 ! nephron -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005283 ! -property_value: IAO:0000589 "Bowman's space (zebrafish)" xsd:string -intersection_of: UBERON:0001286 ! Bowman's space -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005312 ! -property_value: IAO:0000589 "Bowman's space (zebrafish)" xsd:string -intersection_of: UBERON:0001286 ! Bowman's space -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005290 ! -property_value: IAO:0000589 "proximal convoluted tubule (zebrafish)" xsd:string -intersection_of: UBERON:0001287 ! proximal convoluted tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005291 ! -property_value: IAO:0000589 "proximal straight tubule (zebrafish)" xsd:string -intersection_of: UBERON:0001290 ! proximal straight tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001110 ! -property_value: IAO:0000589 "ovarian follicle (zebrafish)" xsd:string -intersection_of: UBERON:0001305 ! ovarian follicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000333 ! -property_value: IAO:0000589 "mesovarium (zebrafish)" xsd:string -intersection_of: UBERON:0001342 ! mesovarium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001626 ! -property_value: IAO:0000589 "cerebrospinal fluid (zebrafish)" xsd:string -intersection_of: UBERON:0001359 ! cerebrospinal fluid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005131 ! -property_value: IAO:0000589 "parietal peritoneum (zebrafish)" xsd:string -intersection_of: UBERON:0001366 ! parietal peritoneum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005108 ! -property_value: IAO:0000589 "facial lymphatic vessel (zebrafish)" xsd:string -intersection_of: UBERON:0001422 ! facial lymphatic vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005107 ! -property_value: IAO:0000589 "pectoral lymphatic vessel (zebrafish)" xsd:string -intersection_of: UBERON:0001425 ! pectoral lymphatic vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005109 ! -property_value: IAO:0000589 "jugular lymphatic vessel (zebrafish)" xsd:string -intersection_of: UBERON:0001426 ! jugular lymphatic vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000434 ! -property_value: IAO:0000589 "skeletal system (zebrafish)" xsd:string -intersection_of: UBERON:0001434 ! skeletal system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001514 ! -property_value: IAO:0000589 "bone element (zebrafish)" xsd:string -intersection_of: UBERON:0001474 ! bone element -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005081 ! -property_value: IAO:0000589 "internal carotid artery (zebrafish)" xsd:string -intersection_of: UBERON:0001532 ! internal carotid artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005086 ! -property_value: IAO:0000589 "subclavian artery (zebrafish)" xsd:string -intersection_of: UBERON:0001533 ! subclavian artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005033 ! -property_value: IAO:0000589 "vertebral artery (zebrafish)" xsd:string -intersection_of: UBERON:0001535 ! vertebral artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000112 ! -property_value: IAO:0000589 "digestive tract (zebrafish)" xsd:string -intersection_of: UBERON:0001555 ! digestive tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000249 ! -property_value: IAO:0000589 "olfactory nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001579 ! olfactory nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000511 ! -property_value: IAO:0000589 "extra-ocular muscle (zebrafish)" xsd:string -intersection_of: UBERON:0001601 ! extra-ocular muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000301 ! -property_value: IAO:0000589 "medial rectus extraocular muscle (zebrafish)" xsd:string -intersection_of: UBERON:0001602 ! medial rectus extraocular muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000383 ! -property_value: IAO:0000589 "lateral rectus extra-ocular muscle (zebrafish)" xsd:string -intersection_of: UBERON:0001603 ! lateral rectus extra-ocular muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005812 ! -property_value: IAO:0000589 "coronary artery (zebrafish)" xsd:string -intersection_of: UBERON:0001621 ! coronary artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005001 ! -property_value: IAO:0000589 "posterior communicating artery (zebrafish)" xsd:string -intersection_of: UBERON:0001628 ! posterior communicating artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005145 ! -property_value: IAO:0000589 "muscle organ (zebrafish)" xsd:string -intersection_of: UBERON:0001630 ! muscle organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005110 ! -property_value: IAO:0000589 "thoracic duct (zebrafish)" xsd:string -intersection_of: UBERON:0001631 ! thoracic duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005002 ! -property_value: IAO:0000589 "basilar artery (zebrafish)" xsd:string -intersection_of: UBERON:0001633 ! basilar artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001068 ! -property_value: IAO:0000589 "mesencephalic artery (zebrafish)" xsd:string -intersection_of: UBERON:0001634 ! mesencephalic artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000005 ! -property_value: IAO:0000589 "artery (zebrafish)" xsd:string -intersection_of: UBERON:0001637 ! artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000082 ! -property_value: IAO:0000589 "vein (zebrafish)" xsd:string -intersection_of: UBERON:0001638 ! vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005090 ! -property_value: IAO:0000589 "hepatic portal vein (zebrafish)" xsd:string -intersection_of: UBERON:0001639 ! hepatic portal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000405 ! -property_value: IAO:0000589 "oculomotor nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001643 ! oculomotor nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000600 ! -property_value: IAO:0000589 "trochlear nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001644 ! trochlear nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000697 ! -property_value: IAO:0000589 "trigeminal nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001645 ! trigeminal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000310 ! -property_value: IAO:0000589 "abducens nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001646 ! abducens nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000664 ! -property_value: IAO:0000589 "facial nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001647 ! facial nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000247 ! -property_value: IAO:0000589 "vestibulocochlear nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001648 ! vestibulocochlear nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000668 ! -property_value: IAO:0000589 "glossopharyngeal nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001649 ! glossopharyngeal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001067 ! -property_value: IAO:0000589 "anterior cerebral vein (zebrafish)" xsd:string -intersection_of: UBERON:0001672 ! anterior cerebral vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000295 ! -property_value: IAO:0000589 "trigeminal ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0001675 ! trigeminal ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000365 ! -property_value: IAO:0000589 "nasal bone (zebrafish)" xsd:string -intersection_of: UBERON:0001681 ! nasal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000472 ! -property_value: IAO:0000589 "basioccipital bone (zebrafish)" xsd:string -intersection_of: UBERON:0001692 ! basioccipital bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000661 ! -property_value: IAO:0000589 "exoccipital bone (zebrafish)" xsd:string -intersection_of: UBERON:0001693 ! exoccipital bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001410 ! -property_value: IAO:0000589 "orbit of skull (zebrafish)" xsd:string -intersection_of: UBERON:0001697 ! orbit of skull -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000679 ! -property_value: IAO:0000589 "sensory root of facial nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001699 ! sensory root of facial nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001291 ! -property_value: IAO:0000589 "geniculate ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0001700 ! geniculate ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001301 ! -property_value: IAO:0000589 "glossopharyngeal ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0001701 ! glossopharyngeal ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001580 ! -property_value: IAO:0000589 "neurocranium (zebrafish)" xsd:string -intersection_of: UBERON:0001703 ! neurocranium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000130 ! -property_value: IAO:0000589 "nasal cavity (zebrafish)" xsd:string -intersection_of: UBERON:0001707 ! nasal cavity -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001227 ! -property_value: IAO:0000589 "jaw skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0001708 ! jaw skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000013 ! -property_value: IAO:0000589 "cranial ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0001714 ! cranial ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000553 ! -property_value: IAO:0000589 "oculomotor nuclear complex (zebrafish)" xsd:string -intersection_of: UBERON:0001715 ! oculomotor nuclear complex -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000312 ! -property_value: IAO:0000589 "mesencephalic nucleus of trigeminal nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001718 ! mesencephalic nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001638 ! -property_value: IAO:0000589 "cochlear nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0001720 ! cochlear nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005333 ! -property_value: IAO:0000589 "tongue (zebrafish)" xsd:string -intersection_of: UBERON:0001723 ! tongue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001074 ! -property_value: IAO:0000589 "taste bud (zebrafish)" xsd:string -intersection_of: UBERON:0001727 ! taste bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005143 ! -property_value: IAO:0000589 "dentine (zebrafish)" xsd:string -intersection_of: UBERON:0001751 ! dentine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005141 ! -property_value: IAO:0000589 "dental pulp (zebrafish)" xsd:string -intersection_of: UBERON:0001754 ! dental pulp -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000453 ! -property_value: IAO:0000589 "vagus nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001759 ! vagus nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005140 ! -property_value: IAO:0000589 "odontogenic papilla (zebrafish)" xsd:string -intersection_of: UBERON:0001763 ! odontogenic papilla -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001238 ! -property_value: IAO:0000589 "iris (zebrafish)" xsd:string -intersection_of: UBERON:0001769 ! iris -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001283 ! -property_value: IAO:0000589 "pupil (zebrafish)" xsd:string -intersection_of: UBERON:0001771 ! pupil -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001683 ! -property_value: IAO:0000589 "corneal epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0001772 ! corneal epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005563 ! -property_value: IAO:0000589 "sclera (zebrafish)" xsd:string -intersection_of: UBERON:0001773 ! sclera -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000473 ! -property_value: IAO:0000589 "skeletal muscle of trunk (zebrafish)" xsd:string -intersection_of: UBERON:0001774 ! skeletal muscle of trunk -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005229 ! -property_value: IAO:0000589 "optic choroid (zebrafish)" xsd:string -intersection_of: UBERON:0001776 ! optic choroid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001685 ! -property_value: IAO:0000589 "substantia propria of cornea (zebrafish)" xsd:string -intersection_of: UBERON:0001777 ! substantia propria of cornea -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005569 ! -property_value: IAO:0000589 "iris stroma (zebrafish)" xsd:string -intersection_of: UBERON:0001779 ! iris stroma -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000144 ! -property_value: IAO:0000589 "pigmented layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001782 ! pigmented layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000641 ! -property_value: IAO:0000589 "cranial nerve (zebrafish)" xsd:string -intersection_of: UBERON:0001785 ! cranial nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000143 ! -property_value: IAO:0000589 "photoreceptor layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001787 ! photoreceptor layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001331 ! -property_value: IAO:0000589 "outer limiting layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001788 ! outer limiting layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001464 ! -property_value: IAO:0000589 "outer nuclear layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001789 ! outer nuclear layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001330 ! -property_value: IAO:0000589 "outer plexiform layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001790 ! outer plexiform layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000119 ! -property_value: IAO:0000589 "inner nuclear layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001791 ! inner nuclear layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000024 ! -property_value: IAO:0000589 "ganglionic layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001792 ! ganglionic layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001619 ! -property_value: IAO:0000589 "nerve fiber layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001793 ! nerve fiber layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001029 ! -property_value: IAO:0000589 "inner limiting layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001794 ! inner limiting layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001329 ! -property_value: IAO:0000589 "inner plexiform layer of retina (zebrafish)" xsd:string -intersection_of: UBERON:0001795 ! inner plexiform layer of retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005564 ! -property_value: IAO:0000589 "aqueous humor of eyeball (zebrafish)" xsd:string -intersection_of: UBERON:0001796 ! aqueous humor of eyeball -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005561 ! -property_value: IAO:0000589 "vitreous humor (zebrafish)" xsd:string -intersection_of: UBERON:0001797 ! vitreous humor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005566 ! -property_value: IAO:0000589 "anterior segment of eyeball (zebrafish)" xsd:string -intersection_of: UBERON:0001801 ! anterior segment of eyeball -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005567 ! -property_value: IAO:0000589 "posterior segment of eyeball (zebrafish)" xsd:string -intersection_of: UBERON:0001802 ! posterior segment of eyeball -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001326 ! -property_value: IAO:0000589 "epithelium of lens (zebrafish)" xsd:string -intersection_of: UBERON:0001803 ! epithelium of lens -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005574 ! -property_value: IAO:0000589 "capsule of lens (zebrafish)" xsd:string -intersection_of: UBERON:0001804 ! capsule of lens -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001556 ! -property_value: IAO:0000589 "paravertebral ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0001807 ! paravertebral ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007006 ! -property_value: IAO:0000589 "lip (zebrafish)" xsd:string -intersection_of: UBERON:0001833 ! lip -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005226 ! -property_value: IAO:0000589 "upper lip (zebrafish)" xsd:string -intersection_of: UBERON:0001834 ! upper lip -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005225 ! -property_value: IAO:0000589 "lower lip (zebrafish)" xsd:string -intersection_of: UBERON:0001835 ! lower lip -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000431 ! -property_value: IAO:0000589 "semicircular canal (zebrafish)" xsd:string -intersection_of: UBERON:0001840 ! semicircular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000314 ! -property_value: IAO:0000589 "anterior semicircular canal (zebrafish)" xsd:string -intersection_of: UBERON:0001841 ! anterior semicircular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000262 ! -property_value: IAO:0000589 "posterior semicircular canal (zebrafish)" xsd:string -intersection_of: UBERON:0001842 ! posterior semicircular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000220 ! -property_value: IAO:0000589 "lateral semicircular canal (zebrafish)" xsd:string -intersection_of: UBERON:0001843 ! lateral semicircular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000374 ! -property_value: IAO:0000589 "cochlea (zebrafish)" xsd:string -intersection_of: UBERON:0001844 ! cochlea -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005413 ! -property_value: IAO:0000589 "perilymph (zebrafish)" xsd:string -intersection_of: UBERON:0001845 ! perilymph -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000217 ! -property_value: IAO:0000589 "internal ear (zebrafish)" xsd:string -intersection_of: UBERON:0001846 ! internal ear -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005414 ! -property_value: IAO:0000589 "endolymph (zebrafish)" xsd:string -intersection_of: UBERON:0001852 ! endolymph -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000700 ! -property_value: IAO:0000589 "utricle of membranous labyrinth (zebrafish)" xsd:string -intersection_of: UBERON:0001853 ! utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000428 ! -property_value: IAO:0000589 "saccule of membranous labyrinth (zebrafish)" xsd:string -intersection_of: UBERON:0001854 ! saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001705 ! -property_value: IAO:0000589 "endolymphatic duct (zebrafish)" xsd:string -intersection_of: UBERON:0001860 ! endolymphatic duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001443 ! -property_value: IAO:0000589 "choroid plexus (zebrafish)" xsd:string -intersection_of: UBERON:0001886 ! choroid plexus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000109 ! -property_value: IAO:0000589 "forebrain (zebrafish)" xsd:string -intersection_of: UBERON:0001890 ! forebrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000128 ! -property_value: IAO:0000589 "midbrain (zebrafish)" xsd:string -intersection_of: UBERON:0001891 ! midbrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001064 ! -property_value: IAO:0000589 "rhombomere (zebrafish)" xsd:string -intersection_of: UBERON:0001892 ! rhombomere -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000079 ! -property_value: IAO:0000589 "telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0001893 ! telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000101 ! -property_value: IAO:0000589 "diencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0001894 ! diencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000545 ! -property_value: IAO:0000589 "medulla oblongata (zebrafish)" xsd:string -intersection_of: UBERON:0001896 ! medulla oblongata -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001215 ! -property_value: IAO:0000589 "dorsal plus ventral thalamus (zebrafish)" xsd:string -intersection_of: UBERON:0001897 ! dorsal plus ventral thalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000032 ! -property_value: IAO:0000589 "hypothalamus (zebrafish)" xsd:string -intersection_of: UBERON:0001898 ! hypothalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000509 ! -property_value: IAO:0000589 "epithalamus (zebrafish)" xsd:string -intersection_of: UBERON:0001899 ! epithalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000458 ! -property_value: IAO:0000589 "ventral thalamus (zebrafish)" xsd:string -intersection_of: UBERON:0001900 ! ventral thalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005127 ! -property_value: IAO:0000589 "epithelium of small intestine (zebrafish)" xsd:string -intersection_of: UBERON:0001902 ! epithelium of small intestine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000213 ! -property_value: IAO:0000589 "habenula (zebrafish)" xsd:string -intersection_of: UBERON:0001904 ! habenula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000019 ! -property_value: IAO:0000589 "pineal body (zebrafish)" xsd:string -intersection_of: UBERON:0001905 ! pineal body -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000252 ! -property_value: IAO:0000589 "optic tract (zebrafish)" xsd:string -intersection_of: UBERON:0001908 ! optic tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000359 ! -property_value: IAO:0000589 "habenular commissure (zebrafish)" xsd:string -intersection_of: UBERON:0001909 ! habenular commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005111 ! -property_value: IAO:0000589 "medial forebrain bundle (zebrafish)" xsd:string -intersection_of: UBERON:0001910 ! medial forebrain bundle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000306 ! -property_value: IAO:0000589 "ventral lateral nucleus of thalamus (zebrafish)" xsd:string -intersection_of: UBERON:0001925 ! ventral lateral nucleus of thalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000470 ! -property_value: IAO:0000589 "preoptic area (zebrafish)" xsd:string -intersection_of: UBERON:0001928 ! preoptic area -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000227 ! -property_value: IAO:0000589 "lateral hypothalamic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0001937 ! lateral hypothalamic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000160 ! -property_value: IAO:0000589 "midbrain tegmentum (zebrafish)" xsd:string -intersection_of: UBERON:0001943 ! midbrain tegmentum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000418 ! -property_value: IAO:0000589 "pretectal region (zebrafish)" xsd:string -intersection_of: UBERON:0001944 ! pretectal region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000445 ! -property_value: IAO:0000589 "superior colliculus (zebrafish)" xsd:string -intersection_of: UBERON:0001945 ! superior colliculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000552 ! -property_value: IAO:0000589 "red nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0001947 ! red nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005857 ! -property_value: IAO:0000589 "bile (zebrafish)" xsd:string -intersection_of: UBERON:0001970 ! bile -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001499 ! -property_value: IAO:0000589 "epithelium of esophagus (zebrafish)" xsd:string -intersection_of: UBERON:0001976 ! epithelium of esophagus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005315 ! -property_value: IAO:0000589 "venule (zebrafish)" xsd:string -intersection_of: UBERON:0001979 ! venule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005255 ! -property_value: IAO:0000589 "arteriole (zebrafish)" xsd:string -intersection_of: UBERON:0001980 ! arteriole -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005314 ! -property_value: IAO:0000589 "blood vessel (zebrafish)" xsd:string -intersection_of: UBERON:0001981 ! blood vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005250 ! -property_value: IAO:0000589 "capillary (zebrafish)" xsd:string -intersection_of: UBERON:0001982 ! capillary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001687 ! -property_value: IAO:0000589 "corneal endothelium (zebrafish)" xsd:string -intersection_of: UBERON:0001985 ! corneal endothelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001572 ! -property_value: IAO:0000589 "superior cervical ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0001989 ! superior cervical ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000554 ! -property_value: IAO:0000589 "olfactory epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0001997 ! olfactory epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001155 ! -property_value: IAO:0000589 "enteric nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0002005 ! enteric nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001681 ! -property_value: IAO:0000589 "gray matter (zebrafish)" xsd:string -intersection_of: UBERON:0002020 ! gray matter -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001180 ! -property_value: IAO:0000589 "stratum basale of epidermis (zebrafish)" xsd:string -intersection_of: UBERON:0002025 ! stratum basale of epidermis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000029 ! -property_value: IAO:0000589 "hindbrain (zebrafish)" xsd:string -intersection_of: UBERON:0002028 ! hindbrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000441 ! -property_value: IAO:0000589 "suprachiasmatic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002034 ! suprachiasmatic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000100 ! -property_value: IAO:0000589 "cerebellum (zebrafish)" xsd:string -intersection_of: UBERON:0002037 ! cerebellum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005258 ! -property_value: IAO:0000589 "lymphatic vessel endothelium (zebrafish)" xsd:string -intersection_of: UBERON:0002042 ! lymphatic vessel endothelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000366 ! -property_value: IAO:0000589 "dorsal raphe nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002043 ! dorsal raphe nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005249 ! -property_value: IAO:0000589 "vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0002049 ! vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001105 ! -property_value: IAO:0000589 "embryonic structure (zebrafish)" xsd:string -intersection_of: UBERON:0002050 ! embryonic structure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001317 ! -property_value: IAO:0000589 "endocardial cushion (zebrafish)" xsd:string -intersection_of: UBERON:0002062 ! endocardial cushion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000154 ! -property_value: IAO:0000589 "sinus venosus (zebrafish)" xsd:string -intersection_of: UBERON:0002063 ! sinus venosus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000186 ! -property_value: IAO:0000589 "common cardinal vein (zebrafish)" xsd:string -intersection_of: UBERON:0002064 ! common cardinal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000477 ! -property_value: IAO:0000589 "posterior cardinal vein (zebrafish)" xsd:string -intersection_of: UBERON:0002065 ! posterior cardinal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001119 ! -property_value: IAO:0000589 "dermis (zebrafish)" xsd:string -intersection_of: UBERON:0002067 ! dermis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001136 ! -property_value: IAO:0000589 "hypodermis (zebrafish)" xsd:string -intersection_of: UBERON:0002072 ! hypodermis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000471 ! -property_value: IAO:0000589 "cardiac atrium (zebrafish)" xsd:string -intersection_of: UBERON:0002081 ! cardiac atrium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000009 ! -property_value: IAO:0000589 "cardiac ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0002082 ! cardiac ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000680 ! -property_value: IAO:0000589 "sinoatrial valve (zebrafish)" xsd:string -intersection_of: UBERON:0002086 ! sinoatrial valve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001315 ! -property_value: IAO:0000589 "atrioventricular canal (zebrafish)" xsd:string -intersection_of: UBERON:0002087 ! atrioventricular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000317 ! -property_value: IAO:0000589 "postcranial axial skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0002090 ! postcranial axial skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001115 ! -property_value: IAO:0000589 "trunk (zebrafish)" xsd:string -intersection_of: UBERON:0002100 ! trunk -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001127 ! -property_value: IAO:0000589 "visual system (zebrafish)" xsd:string -intersection_of: UBERON:0002104 ! visual system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001138 ! -property_value: IAO:0000589 "vestibulo-auditory system (zebrafish)" xsd:string -intersection_of: UBERON:0002105 ! vestibulo-auditory system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000436 ! -property_value: IAO:0000589 "spleen (zebrafish)" xsd:string -intersection_of: UBERON:0002106 ! spleen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000123 ! -property_value: IAO:0000589 "liver (zebrafish)" xsd:string -intersection_of: UBERON:0002107 ! liver -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001323 ! -property_value: IAO:0000589 "small intestine (zebrafish)" xsd:string -intersection_of: UBERON:0002108 ! small intestine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000208 ! -property_value: IAO:0000589 "gallbladder (zebrafish)" xsd:string -intersection_of: UBERON:0002110 ! gallbladder -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000151 ! -property_value: IAO:0000589 "pronephros (zebrafish)" xsd:string -intersection_of: UBERON:0002120 ! pronephros -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000215 ! -property_value: IAO:0000589 "inferior olivary complex (zebrafish)" xsd:string -intersection_of: UBERON:0002127 ! inferior olivary complex -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005064 ! -property_value: IAO:0000589 "atrioventricular valve (zebrafish)" xsd:string -intersection_of: UBERON:0002133 ! atrioventricular valve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000353 ! -property_value: IAO:0000589 "habenulo-interpeduncular tract (zebrafish)" xsd:string -intersection_of: UBERON:0002138 ! habenulo-interpeduncular tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000683 ! -property_value: IAO:0000589 "subcommissural organ (zebrafish)" xsd:string -intersection_of: UBERON:0002139 ! subcommissural organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000244 ! -property_value: IAO:0000589 "parvocellular oculomotor nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002141 ! parvocellular oculomotor nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000346 ! -property_value: IAO:0000589 "dorsal tegmental nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002143 ! dorsal tegmental nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000903 ! -property_value: IAO:0000589 "interpeduncular nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002145 ! interpeduncular nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000539 ! -property_value: IAO:0000589 "locus ceruleus (zebrafish)" xsd:string -intersection_of: UBERON:0002148 ! locus ceruleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000535 ! -property_value: IAO:0000589 "lateral reticular nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002154 ! lateral reticular nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005146 ! -property_value: IAO:0000589 "area postrema (zebrafish)" xsd:string -intersection_of: UBERON:0002162 ! area postrema -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000446 ! -property_value: IAO:0000589 "tectobulbar tract (zebrafish)" xsd:string -intersection_of: UBERON:0002164 ! tectobulbar tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001320 ! -property_value: IAO:0000589 "endocardium (zebrafish)" xsd:string -intersection_of: UBERON:0002165 ! endocardium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001614 ! -property_value: IAO:0000589 "endocardium of atrium (zebrafish)" xsd:string -intersection_of: UBERON:0002166 ! endocardium of atrium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000533 ! -property_value: IAO:0000589 "lateral funiculus of spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002179 ! lateral funiculus of spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000605 ! -property_value: IAO:0000589 "ventral funiculus of spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002180 ! ventral funiculus of spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001075 ! -property_value: IAO:0000589 "ventricular system choroidal fissure (zebrafish)" xsd:string -intersection_of: UBERON:0002192 ! ventricular system choroidal fissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001282 ! -property_value: IAO:0000589 "adenohypophysis (zebrafish)" xsd:string -intersection_of: UBERON:0002196 ! adenohypophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001271 ! -property_value: IAO:0000589 "neurohypophysis (zebrafish)" xsd:string -intersection_of: UBERON:0002198 ! neurohypophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000368 ! -property_value: IAO:0000589 "integument (zebrafish)" xsd:string -intersection_of: UBERON:0002199 ! integument -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001267 ! -property_value: IAO:0000589 "vasculature of head (zebrafish)" xsd:string -intersection_of: UBERON:0002200 ! vasculature of head -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005024 ! -property_value: IAO:0000589 "vasculature of trunk (zebrafish)" xsd:string -intersection_of: UBERON:0002201 ! vasculature of trunk -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007057 ! -property_value: IAO:0000589 "vasculature of eye (zebrafish)" xsd:string -intersection_of: UBERON:0002203 ! vasculature of eye -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000334 ! -property_value: IAO:0000589 "mammillary body (zebrafish)" xsd:string -intersection_of: UBERON:0002206 ! mammillary body -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005156 ! -property_value: IAO:0000589 "fibrous joint (zebrafish)" xsd:string -intersection_of: UBERON:0002209 ! fibrous joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007000 ! -property_value: IAO:0000589 "macula of saccule of membranous labyrinth (zebrafish)" xsd:string -intersection_of: UBERON:0002212 ! macula of saccule of membranous labyrinth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005155 ! -property_value: IAO:0000589 "cartilaginous joint (zebrafish)" xsd:string -intersection_of: UBERON:0002213 ! cartilaginous joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000030 ! -property_value: IAO:0000589 "macula of utricle of membranous labyrinth (zebrafish)" xsd:string -intersection_of: UBERON:0002214 ! macula of utricle of membranous labyrinth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005153 ! -property_value: IAO:0000589 "synovial joint (zebrafish)" xsd:string -intersection_of: UBERON:0002217 ! synovial joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005536 ! -property_value: IAO:0000589 "fontanelle (zebrafish)" xsd:string -intersection_of: UBERON:0002221 ! fontanelle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001634 ! -property_value: IAO:0000589 "perichondrium (zebrafish)" xsd:string -intersection_of: UBERON:0002222 ! perichondrium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000538 ! -property_value: IAO:0000589 "rib (zebrafish)" xsd:string -intersection_of: UBERON:0002228 ! rib -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000075 ! -property_value: IAO:0000589 "spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002240 ! spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001424 ! -property_value: IAO:0000589 "chondrocranium (zebrafish)" xsd:string -intersection_of: UBERON:0002241 ! chondrocranium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000567 ! -property_value: IAO:0000589 "premaxilla (zebrafish)" xsd:string -intersection_of: UBERON:0002244 ! premaxilla -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000649 ! -property_value: IAO:0000589 "dorsal horn of spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002256 ! dorsal horn of spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000702 ! -property_value: IAO:0000589 "ventral horn of spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002257 ! ventral horn of spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000501 ! -property_value: IAO:0000589 "dorsal funiculus of spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002258 ! dorsal funiculus of spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000705 ! -property_value: IAO:0000589 "ventral root of spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002260 ! ventral root of spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000652 ! -property_value: IAO:0000589 "dorsal root of spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002261 ! dorsal root of spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000402 ! -property_value: IAO:0000589 "olfactory bulb (zebrafish)" xsd:string -intersection_of: UBERON:0002264 ! olfactory bulb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005045 ! -property_value: IAO:0000589 "hyaloid artery (zebrafish)" xsd:string -intersection_of: UBERON:0002270 ! hyaloid artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005459 ! -property_value: IAO:0000589 "perilymphatic space (zebrafish)" xsd:string -intersection_of: UBERON:0002278 ! perilymphatic space -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001617 ! -property_value: IAO:0000589 "otolith (zebrafish)" xsd:string -intersection_of: UBERON:0002280 ! otolith -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000696 ! -property_value: IAO:0000589 "telencephalic ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0002285 ! telencephalic ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000161 ! -property_value: IAO:0000589 "third ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0002286 ! third ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000049 ! -property_value: IAO:0000589 "optic recess of third ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0002287 ! optic recess of third ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001444 ! -property_value: IAO:0000589 "choroid plexus of third ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0002288 ! choroid plexus of third ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000159 ! -property_value: IAO:0000589 "midbrain cerebral aqueduct (zebrafish)" xsd:string -intersection_of: UBERON:0002289 ! midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001446 ! -property_value: IAO:0000589 "choroid plexus of fourth ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0002290 ! choroid plexus of fourth ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000938 ! -property_value: IAO:0000589 "central canal of spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0002291 ! central canal of spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005130 ! -property_value: IAO:0000589 "dorsal mesentery (zebrafish)" xsd:string -intersection_of: UBERON:0002296 ! dorsal mesentery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001707 ! -property_value: IAO:0000589 "brainstem (zebrafish)" xsd:string -intersection_of: UBERON:0002298 ! brainstem -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001374 ! -property_value: IAO:0000589 "myocardium of atrium (zebrafish)" xsd:string -intersection_of: UBERON:0002302 ! myocardium of atrium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001447 ! -property_value: IAO:0000589 "choroid plexus of lateral ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0002307 ! choroid plexus of lateral ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005575 ! -property_value: IAO:0000589 "nucleus of brain (zebrafish)" xsd:string -intersection_of: UBERON:0002308 ! nucleus of brain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000543 ! -property_value: IAO:0000589 "medial longitudinal fasciculus (zebrafish)" xsd:string -intersection_of: UBERON:0002309 ! medial longitudinal fasciculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001682 ! -property_value: IAO:0000589 "white matter (zebrafish)" xsd:string -intersection_of: UBERON:0002316 ! white matter -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001708 ! -property_value: IAO:0000589 "white matter of cerebellum (zebrafish)" xsd:string -intersection_of: UBERON:0002317 ! white matter of cerebellum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000260 ! -property_value: IAO:0000589 "periventricular nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002322 ! periventricular nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001438 ! -property_value: IAO:0000589 "coelemic cavity lumen (zebrafish)" xsd:string -intersection_of: UBERON:0002323 ! coelemic cavity lumen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000135 ! -property_value: IAO:0000589 "notochord (zebrafish)" xsd:string -intersection_of: UBERON:0002328 ! notochord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000155 ! -property_value: IAO:0000589 "somite (zebrafish)" xsd:string -intersection_of: UBERON:0002329 ! somite -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000045 ! -property_value: IAO:0000589 "neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0002342 ! neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001327 ! -property_value: IAO:0000589 "abdomen musculature (zebrafish)" xsd:string -intersection_of: UBERON:0002343 ! abdomen musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001120 ! -property_value: IAO:0000589 "neurectoderm (zebrafish)" xsd:string -intersection_of: UBERON:0002346 ! neurectoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005057 ! -property_value: IAO:0000589 "epicardium (zebrafish)" xsd:string -intersection_of: UBERON:0002348 ! epicardium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001319 ! -property_value: IAO:0000589 "myocardium (zebrafish)" xsd:string -intersection_of: UBERON:0002349 ! myocardium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005063 ! -property_value: IAO:0000589 "conducting system of heart (zebrafish)" xsd:string -intersection_of: UBERON:0002350 ! conducting system of heart -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005069 ! -property_value: IAO:0000589 "sinoatrial node (zebrafish)" xsd:string -intersection_of: UBERON:0002351 ! sinoatrial node -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005070 ! -property_value: IAO:0000589 "atrioventricular node (zebrafish)" xsd:string -intersection_of: UBERON:0002352 ! atrioventricular node -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005120 ! -property_value: IAO:0000589 "peritoneum (zebrafish)" xsd:string -intersection_of: UBERON:0002358 ! peritoneum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001355 ! -property_value: IAO:0000589 "meninx (zebrafish)" xsd:string -intersection_of: UBERON:0002360 ! meninx -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001078 ! -property_value: IAO:0000589 "thymus (zebrafish)" xsd:string -intersection_of: UBERON:0002370 ! thymus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001652 ! -property_value: IAO:0000589 "cranial muscle (zebrafish)" xsd:string -intersection_of: UBERON:0002376 ! cranial muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001632 ! -property_value: IAO:0000589 "connective tissue (zebrafish)" xsd:string -intersection_of: UBERON:0002384 ! connective tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005023 ! -property_value: IAO:0000589 "hematopoietic system (zebrafish)" xsd:string -intersection_of: UBERON:0002390 ! hematopoietic system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005658 ! -property_value: IAO:0000589 "lymph (zebrafish)" xsd:string -intersection_of: UBERON:0002391 ! lymph -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001100 ! -property_value: IAO:0000589 "bile duct (zebrafish)" xsd:string -intersection_of: UBERON:0002394 ! bile duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000308 ! -property_value: IAO:0000589 "vomer (zebrafish)" xsd:string -intersection_of: UBERON:0002396 ! vomer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000270 ! -property_value: IAO:0000589 "maxilla (zebrafish)" xsd:string -intersection_of: UBERON:0002397 ! maxilla -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001159 ! -property_value: IAO:0000589 "immune system (zebrafish)" xsd:string -intersection_of: UBERON:0002405 ! immune system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000054 ! -property_value: IAO:0000589 "pericardium (zebrafish)" xsd:string -intersection_of: UBERON:0002407 ! pericardium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001574 ! -property_value: IAO:0000589 "autonomic nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0002410 ! autonomic nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001189 ! -property_value: IAO:0000589 "vertebra (zebrafish)" xsd:string -intersection_of: UBERON:0002412 ! vertebra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005622 ! -property_value: IAO:0000589 "cartilage tissue (zebrafish)" xsd:string -intersection_of: UBERON:0002418 ! cartilage tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000110 ! -property_value: IAO:0000589 "fourth ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0002422 ! fourth ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000036 ! -property_value: IAO:0000589 "hepatobiliary system (zebrafish)" xsd:string -intersection_of: UBERON:0002423 ! hepatobiliary system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000816 ! -property_value: IAO:0000589 "oral epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0002424 ! oral epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001197 ! -property_value: IAO:0000589 "pars intermedia of adenohypophysis (zebrafish)" xsd:string -intersection_of: UBERON:0002432 ! pars intermedia of adenohypophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001199 ! -property_value: IAO:0000589 "pituitary stalk (zebrafish)" xsd:string -intersection_of: UBERON:0002434 ! pituitary stalk -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000275 ! -property_value: IAO:0000589 "ventral tegmental nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002438 ! ventral tegmental nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001061 ! -property_value: IAO:0000589 "intersomitic artery (zebrafish)" xsd:string -intersection_of: UBERON:0002457 ! intersomitic artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000682 ! -property_value: IAO:0000589 "spinal artery (zebrafish)" xsd:string -intersection_of: UBERON:0002458 ! spinal artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000385 ! -property_value: IAO:0000589 "lymphoid system (zebrafish)" xsd:string -intersection_of: UBERON:0002465 ! lymphoid system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000253 ! -property_value: IAO:0000589 "orbitosphenoid (zebrafish)" xsd:string -intersection_of: UBERON:0002478 ! orbitosphenoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005621 ! -property_value: IAO:0000589 "bone tissue (zebrafish)" xsd:string -intersection_of: UBERON:0002481 ! bone tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001591 ! -property_value: IAO:0000589 "endochondral bone (zebrafish)" xsd:string -intersection_of: UBERON:0002513 ! endochondral bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001635 ! -property_value: IAO:0000589 "intramembranous bone (zebrafish)" xsd:string -intersection_of: UBERON:0002514 ! intramembranous bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000559 ! -property_value: IAO:0000589 "otolith organ (zebrafish)" xsd:string -intersection_of: UBERON:0002518 ! otolith organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001383 ! -property_value: IAO:0000589 "paired fin bud (zebrafish)" xsd:string -intersection_of: UBERON:0002531 ! paired fin bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000077 ! -property_value: IAO:0000589 "post-anal tail bud (zebrafish)" xsd:string -intersection_of: UBERON:0002533 ! post-anal tail bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005596 ! -property_value: IAO:0000589 "paired fin (zebrafish)" xsd:string -intersection_of: UBERON:0002534 ! paired fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000026 ! -property_value: IAO:0000589 "hatching gland (zebrafish)" xsd:string -intersection_of: UBERON:0002538 ! hatching gland -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001306 ! -property_value: IAO:0000589 "pharyngeal arch (zebrafish)" xsd:string -intersection_of: UBERON:0002539 ! pharyngeal arch -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000034 ! -property_value: IAO:0000589 "lateral line system (zebrafish)" xsd:string -intersection_of: UBERON:0002540 ! lateral line system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000111 ! -property_value: IAO:0000589 "germ ring (zebrafish)" xsd:string -intersection_of: UBERON:0002541 ! germ ring -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000421 ! -property_value: IAO:0000589 "medullary reticular formation (zebrafish)" xsd:string -intersection_of: UBERON:0002559 ! medullary reticular formation -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000684 ! -property_value: IAO:0000589 "commissure of superior colliculus (zebrafish)" xsd:string -intersection_of: UBERON:0002583 ! commissure of superior colliculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001365 ! -property_value: IAO:0000589 "motor nucleus of trigeminal nerve (zebrafish)" xsd:string -intersection_of: UBERON:0002633 ! motor nucleus of trigeminal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000713 ! -property_value: IAO:0000589 "abducens nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002682 ! abducens nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000450 ! -property_value: IAO:0000589 "trochlear nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0002722 ! trochlear nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000709 ! -property_value: IAO:0000589 "vestibulospinal tract (zebrafish)" xsd:string -intersection_of: UBERON:0002768 ! vestibulospinal tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005576 ! -property_value: IAO:0000589 "ventral nuclear group (zebrafish)" xsd:string -intersection_of: UBERON:0002776 ! ventral nuclear group -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000427 ! -property_value: IAO:0000589 "anterior nuclear group (zebrafish)" xsd:string -intersection_of: UBERON:0002788 ! anterior nuclear group -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000650 ! -property_value: IAO:0000589 "motor root of trigeminal nerve (zebrafish)" xsd:string -intersection_of: UBERON:0002796 ! motor root of trigeminal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000588 ! -property_value: IAO:0000589 "vestibulocochlear ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0002827 ! vestibulocochlear ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001356 ! -property_value: IAO:0000589 "terminal nerve (zebrafish)" xsd:string -intersection_of: UBERON:0002924 ! terminal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000347 ! -property_value: IAO:0000589 "dorsal hypothalamic area (zebrafish)" xsd:string -intersection_of: UBERON:0002954 ! dorsal hypothalamic area -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000206 ! -property_value: IAO:0000589 "facial motor nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0003011 ! facial motor nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000325 ! -property_value: IAO:0000589 "posterior nucleus of thalamus (zebrafish)" xsd:string -intersection_of: UBERON:0003030 ! posterior nucleus of thalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000518 ! -property_value: IAO:0000589 "central gray substance of midbrain (zebrafish)" xsd:string -intersection_of: UBERON:0003040 ! central gray substance of midbrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005266 ! -property_value: IAO:0000589 "dorsal longitudinal fasciculus (zebrafish)" xsd:string -intersection_of: UBERON:0003045 ! dorsal longitudinal fasciculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000048 ! -property_value: IAO:0000589 "olfactory placode (zebrafish)" xsd:string -intersection_of: UBERON:0003050 ! olfactory placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000051 ! -property_value: IAO:0000589 "ear vesicle (zebrafish)" xsd:string -intersection_of: UBERON:0003051 ! ear vesicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000042 ! -property_value: IAO:0000589 "midbrain-hindbrain boundary (zebrafish)" xsd:string -intersection_of: UBERON:0003052 ! midbrain-hindbrain boundary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001083 ! -property_value: IAO:0000589 "ventricular zone (zebrafish)" xsd:string -intersection_of: UBERON:0003053 ! ventricular zone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001436 ! -property_value: IAO:0000589 "roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0003054 ! roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007058 ! -property_value: IAO:0000589 "roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0003054 ! roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001185 ! -property_value: IAO:0000589 "periderm (zebrafish)" xsd:string -intersection_of: UBERON:0003055 ! periderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007016 ! -property_value: IAO:0000589 "pre-chordal neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0003056 ! pre-chordal neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007017 ! -property_value: IAO:0000589 "chordal neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0003057 ! chordal neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000031 ! -property_value: IAO:0000589 "hypochord (zebrafish)" xsd:string -intersection_of: UBERON:0003058 ! hypochord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000279 ! -property_value: IAO:0000589 "presomitic mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0003059 ! presomitic mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000150 ! -property_value: IAO:0000589 "pronephric duct (zebrafish)" xsd:string -intersection_of: UBERON:0003060 ! pronephric duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000094 ! -property_value: IAO:0000589 "blood island (zebrafish)" xsd:string -intersection_of: UBERON:0003061 ! blood island -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000071 ! -property_value: IAO:0000589 "primitive knot (zebrafish)" xsd:string -intersection_of: UBERON:0003062 ! primitive knot -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000060 ! -property_value: IAO:0000589 "prechordal plate (zebrafish)" xsd:string -intersection_of: UBERON:0003063 ! prechordal plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001206 ! -property_value: IAO:0000589 "intermediate mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0003064 ! intermediate mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001289 ! -property_value: IAO:0000589 "ciliary marginal zone (zebrafish)" xsd:string -intersection_of: UBERON:0003065 ! ciliary marginal zone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001611 ! -property_value: IAO:0000589 "pharyngeal arch 2 (zebrafish)" xsd:string -intersection_of: UBERON:0003066 ! pharyngeal arch 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001310 ! -property_value: IAO:0000589 "dorsolateral placode (zebrafish)" xsd:string -intersection_of: UBERON:0003067 ! dorsolateral placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001204 ! -property_value: IAO:0000589 "axial mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0003068 ! axial mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000138 ! -property_value: IAO:0000589 "otic placode (zebrafish)" xsd:string -intersection_of: UBERON:0003069 ! otic placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000162 ! -property_value: IAO:0000589 "trigeminal placode complex (zebrafish)" xsd:string -intersection_of: UBERON:0003070 ! trigeminal placode complex -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000570 ! -property_value: IAO:0000589 "eye primordium (zebrafish)" xsd:string -intersection_of: UBERON:0003071 ! eye primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001202 ! -property_value: IAO:0000589 "optic cup (zebrafish)" xsd:string -intersection_of: UBERON:0003072 ! optic cup -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000122 ! -property_value: IAO:0000589 "lens placode (zebrafish)" xsd:string -intersection_of: UBERON:0003073 ! lens placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000546 ! -property_value: IAO:0000589 "mesonephric duct (zebrafish)" xsd:string -intersection_of: UBERON:0003074 ! mesonephric duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000132 ! -property_value: IAO:0000589 "neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0003075 ! neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007037 ! -property_value: IAO:0000589 "posterior neural tube (zebrafish)" xsd:string -intersection_of: UBERON:0003076 ! posterior neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000255 ! -property_value: IAO:0000589 "paraxial mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0003077 ! paraxial mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001294 ! -property_value: IAO:0000589 "epibranchial placode (zebrafish)" xsd:string -intersection_of: UBERON:0003078 ! epibranchial placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000022 ! -property_value: IAO:0000589 "floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0003079 ! floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007038 ! -property_value: IAO:0000589 "anterior neural tube (zebrafish)" xsd:string -intersection_of: UBERON:0003080 ! anterior neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000121 ! -property_value: IAO:0000589 "lateral plate mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0003081 ! lateral plate mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001056 ! -property_value: IAO:0000589 "myotome (zebrafish)" xsd:string -intersection_of: UBERON:0003082 ! myotome -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001024 ! -property_value: IAO:0000589 "trunk neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0003083 ! trunk neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000028 ! -property_value: IAO:0000589 "heart primordium (zebrafish)" xsd:string -intersection_of: UBERON:0003084 ! heart primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000604 ! -property_value: IAO:0000589 "ventral aorta (zebrafish)" xsd:string -intersection_of: UBERON:0003085 ! ventral aorta -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000011 ! -property_value: IAO:0000589 "caudal artery (zebrafish)" xsd:string -intersection_of: UBERON:0003086 ! caudal artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000423 ! -property_value: IAO:0000589 "anterior cardinal vein (zebrafish)" xsd:string -intersection_of: UBERON:0003087 ! anterior cardinal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000180 ! -property_value: IAO:0000589 "caudal vein (zebrafish)" xsd:string -intersection_of: UBERON:0003088 ! caudal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001080 ! -property_value: IAO:0000589 "sclerotome (zebrafish)" xsd:string -intersection_of: UBERON:0003089 ! sclerotome -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000443 ! -property_value: IAO:0000589 "supraorbital lateral line (zebrafish)" xsd:string -intersection_of: UBERON:0003090 ! supraorbital lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001081 ! -property_value: IAO:0000589 "thyroid primordium (zebrafish)" xsd:string -intersection_of: UBERON:0003091 ! thyroid primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001448 ! -property_value: IAO:0000589 "ultimobranchial body (zebrafish)" xsd:string -intersection_of: UBERON:0003092 ! ultimobranchial body -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000400 ! -property_value: IAO:0000589 "occipital lateral line (zebrafish)" xsd:string -intersection_of: UBERON:0003093 ! occipital lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000524 ! -property_value: IAO:0000589 "infraorbital lateral line (zebrafish)" xsd:string -intersection_of: UBERON:0003094 ! infraorbital lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005112 ! -property_value: IAO:0000589 "dorsal lateral line (zebrafish)" xsd:string -intersection_of: UBERON:0003095 ! dorsal lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000344 ! -property_value: IAO:0000589 "middle lateral line (zebrafish)" xsd:string -intersection_of: UBERON:0003096 ! middle lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001173 ! -property_value: IAO:0000589 "dorsal fin (zebrafish)" xsd:string -intersection_of: UBERON:0003097 ! dorsal fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000137 ! -property_value: IAO:0000589 "optic stalk (zebrafish)" xsd:string -intersection_of: UBERON:0003098 ! optic stalk -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001194 ! -property_value: IAO:0000589 "cranial neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0003099 ! cranial neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000303 ! -property_value: IAO:0000589 "female organism (zebrafish)" xsd:string -intersection_of: UBERON:0003100 ! female organism -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000242 ! -property_value: IAO:0000589 "male organism (zebrafish)" xsd:string -intersection_of: UBERON:0003101 ! male organism -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000292 ! -property_value: IAO:0000589 "surface structure (zebrafish)" xsd:string -intersection_of: UBERON:0003102 ! surface structure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000496 ! -property_value: IAO:0000589 "compound organ (zebrafish)" xsd:string -intersection_of: UBERON:0003103 ! compound organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000393 ! -property_value: IAO:0000589 "mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0003104 ! mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000158 ! -property_value: IAO:0000589 "urostyle (zebrafish)" xsd:string -intersection_of: UBERON:0003106 ! urostyle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001205 ! -property_value: IAO:0000589 "Meckel's cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0003107 ! Meckel's cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000444 ! -property_value: IAO:0000589 "suspensorium (zebrafish)" xsd:string -intersection_of: UBERON:0003108 ! suspensorium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001362 ! -property_value: IAO:0000589 "parapophysis (zebrafish)" xsd:string -intersection_of: UBERON:0003109 ! parapophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000189 ! -property_value: IAO:0000589 "otic region (zebrafish)" xsd:string -intersection_of: UBERON:0003110 ! otic region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000290 ! -property_value: IAO:0000589 "sphenoid region (zebrafish)" xsd:string -intersection_of: UBERON:0003111 ! sphenoid region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000351 ! -property_value: IAO:0000589 "olfactory region (zebrafish)" xsd:string -intersection_of: UBERON:0003112 ! olfactory region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000863 ! -property_value: IAO:0000589 "dermatocranium (zebrafish)" xsd:string -intersection_of: UBERON:0003113 ! dermatocranium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001606 ! -property_value: IAO:0000589 "pharyngeal arch 3 (zebrafish)" xsd:string -intersection_of: UBERON:0003114 ! pharyngeal arch 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001607 ! -property_value: IAO:0000589 "pharyngeal arch 4 (zebrafish)" xsd:string -intersection_of: UBERON:0003115 ! pharyngeal arch 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001608 ! -property_value: IAO:0000589 "pharyngeal arch 5 (zebrafish)" xsd:string -intersection_of: UBERON:0003116 ! pharyngeal arch 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001609 ! -property_value: IAO:0000589 "pharyngeal arch 6 (zebrafish)" xsd:string -intersection_of: UBERON:0003117 ! pharyngeal arch 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005005 ! -property_value: IAO:0000589 "pharyngeal arch artery 1 (zebrafish)" xsd:string -intersection_of: UBERON:0003118 ! pharyngeal arch artery 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005006 ! -property_value: IAO:0000589 "pharyngeal arch artery 2 (zebrafish)" xsd:string -intersection_of: UBERON:0003119 ! pharyngeal arch artery 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005007 ! -property_value: IAO:0000589 "pharyngeal arch artery 3 (zebrafish)" xsd:string -intersection_of: UBERON:0003120 ! pharyngeal arch artery 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005008 ! -property_value: IAO:0000589 "pharyngeal arch artery 4 (zebrafish)" xsd:string -intersection_of: UBERON:0003121 ! pharyngeal arch artery 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005009 ! -property_value: IAO:0000589 "pharyngeal arch artery 5 (zebrafish)" xsd:string -intersection_of: UBERON:0003122 ! pharyngeal arch artery 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005016 ! -property_value: IAO:0000589 "pharyngeal arch artery 6 (zebrafish)" xsd:string -intersection_of: UBERON:0003123 ! pharyngeal arch artery 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007068 ! -property_value: IAO:0000589 "epithelium of otic placode (zebrafish)" xsd:string -intersection_of: UBERON:0003249 ! epithelium of otic placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001273 ! -property_value: IAO:0000589 "skeleton of lower jaw (zebrafish)" xsd:string -intersection_of: UBERON:0003278 ! skeleton of lower jaw -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000355 ! -property_value: IAO:0000589 "roof plate of midbrain (zebrafish)" xsd:string -intersection_of: UBERON:0003299 ! roof plate of midbrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001358 ! -property_value: IAO:0000589 "roof plate of diencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0003301 ! roof plate of diencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001434 ! -property_value: IAO:0000589 "floor plate of neural tube (zebrafish)" xsd:string -intersection_of: UBERON:0003306 ! floor plate of neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001677 ! -property_value: IAO:0000589 "floor plate of midbrain (zebrafish)" xsd:string -intersection_of: UBERON:0003307 ! floor plate of midbrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000914 ! -property_value: IAO:0000589 "floor plate of telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0003308 ! floor plate of telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000871 ! -property_value: IAO:0000589 "floor plate of diencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0003309 ! floor plate of diencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001174 ! -property_value: IAO:0000589 "pharyngeal epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0003351 ! pharyngeal epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001386 ! -property_value: IAO:0000589 "pelvic appendage bud mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0003412 ! pelvic appendage bud mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000789 ! -property_value: IAO:0000589 "pectoral appendage bud mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0003413 ! pectoral appendage bud mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005568 ! -property_value: IAO:0000589 "iris blood vessel (zebrafish)" xsd:string -intersection_of: UBERON:0003511 ! iris blood vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005306 ! -property_value: IAO:0000589 "kidney blood vessel (zebrafish)" xsd:string -intersection_of: UBERON:0003517 ! kidney blood vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005387 ! -property_value: IAO:0000589 "foramen magnum (zebrafish)" xsd:string -intersection_of: UBERON:0003687 ! foramen magnum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005169 ! -property_value: IAO:0000589 "intrahepatic bile duct (zebrafish)" xsd:string -intersection_of: UBERON:0003704 ! intrahepatic bile duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005134 ! -property_value: IAO:0000589 "dental epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0003843 ! dental epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005779 ! -property_value: IAO:0000589 "thymus epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0003846 ! thymus epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000935 ! -property_value: IAO:0000589 "mesencephalic neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0003849 ! mesencephalic neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000812 ! -property_value: IAO:0000589 "telencephalon neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0003850 ! telencephalon neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000811 ! -property_value: IAO:0000589 "diencephalon neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0003851 ! diencephalon neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007063 ! -property_value: IAO:0000589 "rhombencephalon neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0003852 ! rhombencephalon neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007021 ! -property_value: IAO:0000589 "spinal cord neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0003854 ! spinal cord neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005139 ! -property_value: IAO:0000589 "uncondensed odontogenic mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0003856 ! uncondensed odontogenic mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001066 ! -property_value: IAO:0000589 "neural arch (zebrafish)" xsd:string -intersection_of: UBERON:0003861 ! neural arch -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000124 ! -property_value: IAO:0000589 "liver primordium (zebrafish)" xsd:string -intersection_of: UBERON:0003894 ! liver primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001085 ! -property_value: IAO:0000589 "hypaxial myotome region (zebrafish)" xsd:string -intersection_of: UBERON:0003895 ! hypaxial myotome region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001084 ! -property_value: IAO:0000589 "epaxial myotome region (zebrafish)" xsd:string -intersection_of: UBERON:0003900 ! epaxial myotome region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000671 ! -property_value: IAO:0000589 "horizontal septum (zebrafish)" xsd:string -intersection_of: UBERON:0003901 ! horizontal septum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000046 ! -property_value: IAO:0000589 "retinal neural layer (zebrafish)" xsd:string -intersection_of: UBERON:0003902 ! retinal neural layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001318 ! -property_value: IAO:0000589 "cardiac jelly (zebrafish)" xsd:string -intersection_of: UBERON:0003906 ! cardiac jelly -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005261 ! -property_value: IAO:0000589 "sinusoid (zebrafish)" xsd:string -intersection_of: UBERON:0003909 ! sinusoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000254 ! -property_value: IAO:0000589 "pancreas primordium (zebrafish)" xsd:string -intersection_of: UBERON:0003921 ! pancreas primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001390 ! -property_value: IAO:0000589 "pancreatic epithelial bud (zebrafish)" xsd:string -intersection_of: UBERON:0003922 ! pancreatic epithelial bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001370 ! -property_value: IAO:0000589 "dorsal pancreatic bud (zebrafish)" xsd:string -intersection_of: UBERON:0003923 ! dorsal pancreatic bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001369 ! -property_value: IAO:0000589 "ventral pancreatic bud (zebrafish)" xsd:string -intersection_of: UBERON:0003924 ! ventral pancreatic bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001465 ! -property_value: IAO:0000589 "photoreceptor inner segment layer (zebrafish)" xsd:string -intersection_of: UBERON:0003925 ! photoreceptor inner segment layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001466 ! -property_value: IAO:0000589 "photoreceptor outer segment layer (zebrafish)" xsd:string -intersection_of: UBERON:0003926 ! photoreceptor outer segment layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005162 ! -property_value: IAO:0000589 "digestive system duct (zebrafish)" xsd:string -intersection_of: UBERON:0003928 ! digestive system duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005123 ! -property_value: IAO:0000589 "digestive tract epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0003929 ! digestive tract epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001616 ! -property_value: IAO:0000589 "atrioventricular canal endocardium (zebrafish)" xsd:string -intersection_of: UBERON:0003930 ! atrioventricular canal endocardium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000338 ! -property_value: IAO:0000589 "diencephalic white matter (zebrafish)" xsd:string -intersection_of: UBERON:0003931 ! diencephalic white matter -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001461 ! -property_value: IAO:0000589 "cartilage element of chondrocranium (zebrafish)" xsd:string -intersection_of: UBERON:0003932 ! cartilage element of chondrocranium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001458 ! -property_value: IAO:0000589 "cranial cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0003933 ! cranial cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001000 ! -property_value: IAO:0000589 "mesenchyme pectoral fin (zebrafish)" xsd:string -intersection_of: UBERON:0003934 ! mesenchyme pectoral fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001449 ! -property_value: IAO:0000589 "mesenchyme pelvic fin (zebrafish)" xsd:string -intersection_of: UBERON:0003935 ! mesenchyme pelvic fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000059 ! -property_value: IAO:0000589 "postoptic commissure (zebrafish)" xsd:string -intersection_of: UBERON:0003936 ! postoptic commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005562 ! -property_value: IAO:0000589 "Bruch's membrane (zebrafish)" xsd:string -intersection_of: UBERON:0003957 ! Bruch's membrane -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001264 ! -property_value: IAO:0000589 "mature ovarian follicle (zebrafish)" xsd:string -intersection_of: UBERON:0003982 ! mature ovarian follicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005572 ! -property_value: IAO:0000589 "periocular mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0004017 ! periocular mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005829 ! -property_value: IAO:0000589 "canal of Schlemm (zebrafish)" xsd:string -intersection_of: UBERON:0004029 ! canal of Schlemm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005164 ! -property_value: IAO:0000589 "biliary ductule (zebrafish)" xsd:string -intersection_of: UBERON:0004058 ! biliary ductule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001106 ! -property_value: IAO:0000589 "pharyngeal pouch (zebrafish)" xsd:string -intersection_of: UBERON:0004117 ! pharyngeal pouch -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005568 ! -property_value: IAO:0000589 "vasculature of iris (zebrafish)" xsd:string -intersection_of: UBERON:0004118 ! vasculature of iris -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005059 ! -property_value: IAO:0000589 "myocardium trabecular layer (zebrafish)" xsd:string -intersection_of: UBERON:0004124 ! myocardium trabecular layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005060 ! -property_value: IAO:0000589 "trabecular layer of ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0004126 ! trabecular layer of ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005062 ! -property_value: IAO:0000589 "compact layer of ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0004127 ! compact layer of ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000050 ! -property_value: IAO:0000589 "optic vesicle (zebrafish)" xsd:string -intersection_of: UBERON:0004128 ! optic vesicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000433 ! -property_value: IAO:0000589 "trigeminal sensory nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0004132 ! trigeminal sensory nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000360 ! -property_value: IAO:0000589 "heart tube (zebrafish)" xsd:string -intersection_of: UBERON:0004141 ! heart tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005814 ! -property_value: IAO:0000589 "cardiac vein (zebrafish)" xsd:string -intersection_of: UBERON:0004148 ! cardiac vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001375 ! -property_value: IAO:0000589 "ventriculo bulbo valve (zebrafish)" xsd:string -intersection_of: UBERON:0004149 ! ventriculo bulbo valve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000173 ! -property_value: IAO:0000589 "bulbus arteriosus (zebrafish)" xsd:string -intersection_of: UBERON:0004152 ! bulbus arteriosus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005808 ! -property_value: IAO:0000589 "proepicardium (zebrafish)" xsd:string -intersection_of: UBERON:0004160 ! proepicardium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005588 ! -property_value: IAO:0000589 "comma-shaped body (zebrafish)" xsd:string -intersection_of: UBERON:0004198 ! comma-shaped body -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005589 ! -property_value: IAO:0000589 "S-shaped body (zebrafish)" xsd:string -intersection_of: UBERON:0004199 ! S-shaped body -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005284 ! -property_value: IAO:0000589 "glomerular capillary (zebrafish)" xsd:string -intersection_of: UBERON:0004212 ! glomerular capillary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005321 ! -property_value: IAO:0000589 "blood vessel smooth muscle (zebrafish)" xsd:string -intersection_of: UBERON:0004237 ! blood vessel smooth muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001513 ! -property_value: IAO:0000589 "dermomyotome (zebrafish)" xsd:string -intersection_of: UBERON:0004290 ! dermomyotome -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000115 ! -property_value: IAO:0000589 "heart rudiment (zebrafish)" xsd:string -intersection_of: UBERON:0004291 ! heart rudiment -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005606 ! -property_value: IAO:0000589 "vault of skull (zebrafish)" xsd:string -intersection_of: UBERON:0004339 ! vault of skull -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001702 ! -property_value: IAO:0000589 "apical ectodermal ridge (zebrafish)" xsd:string -intersection_of: UBERON:0004356 ! apical ectodermal ridge -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001612 ! -property_value: IAO:0000589 "pharyngeal arch 1 (zebrafish)" xsd:string -intersection_of: UBERON:0004362 ! pharyngeal arch 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005004 ! -property_value: IAO:0000589 "pharyngeal arch artery (zebrafish)" xsd:string -intersection_of: UBERON:0004363 ! pharyngeal arch artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001686 ! -property_value: IAO:0000589 "Descemet's membrane (zebrafish)" xsd:string -intersection_of: UBERON:0004367 ! Descemet's membrane -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001684 ! -property_value: IAO:0000589 "anterior limiting lamina of cornea (zebrafish)" xsd:string -intersection_of: UBERON:0004370 ! anterior limiting lamina of cornea -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001307 ! -property_value: IAO:0000589 "musculature of pharynx (zebrafish)" xsd:string -intersection_of: UBERON:0004467 ! musculature of pharynx -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001637 ! -property_value: IAO:0000589 "bony projection (zebrafish)" xsd:string -intersection_of: UBERON:0004530 ! bony projection -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000010 ! -property_value: IAO:0000589 "cardiovascular system (zebrafish)" xsd:string -intersection_of: UBERON:0004535 ! cardiovascular system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005105 ! -property_value: IAO:0000589 "lymph vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0004536 ! lymph vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001079 ! -property_value: IAO:0000589 "blood vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0004537 ! blood vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005257 ! -property_value: IAO:0000589 "blood vessel endothelium (zebrafish)" xsd:string -intersection_of: UBERON:0004638 ! blood vessel endothelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005307 ! -property_value: IAO:0000589 "renal afferent arteriole (zebrafish)" xsd:string -intersection_of: UBERON:0004639 ! renal afferent arteriole -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005308 ! -property_value: IAO:0000589 "renal efferent arteriole (zebrafish)" xsd:string -intersection_of: UBERON:0004640 ! renal efferent arteriole -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000192 ! -property_value: IAO:0000589 "trigeminal nerve root (zebrafish)" xsd:string -intersection_of: UBERON:0004673 ! trigeminal nerve root -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001429 ! -property_value: IAO:0000589 "raphe nuclei (zebrafish)" xsd:string -intersection_of: UBERON:0004684 ! raphe nuclei -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000653 ! -property_value: IAO:0000589 "dorsal thalamus (zebrafish)" xsd:string -intersection_of: UBERON:0004703 ! dorsal thalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005388 ! -property_value: IAO:0000589 "bone fossa (zebrafish)" xsd:string -intersection_of: UBERON:0004704 ! bone fossa -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001328 ! -property_value: IAO:0000589 "neuromere (zebrafish)" xsd:string -intersection_of: UBERON:0004731 ! neuromere -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001557 ! -property_value: IAO:0000589 "pronephric glomerulus (zebrafish)" xsd:string -intersection_of: UBERON:0004739 ! pronephric glomerulus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000170 ! -property_value: IAO:0000589 "basibranchial bone (zebrafish)" xsd:string -intersection_of: UBERON:0004740 ! basibranchial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000184 ! -property_value: IAO:0000589 "cleithrum (zebrafish)" xsd:string -intersection_of: UBERON:0004741 ! cleithrum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000191 ! -property_value: IAO:0000589 "dentary (zebrafish)" xsd:string -intersection_of: UBERON:0004742 ! dentary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000332 ! -property_value: IAO:0000589 "coracoid bone (zebrafish)" xsd:string -intersection_of: UBERON:0004743 ! coracoid bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000467 ! -property_value: IAO:0000589 "articular/anguloarticular (zebrafish)" xsd:string -intersection_of: UBERON:0004744 ! articular/anguloarticular -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000561 ! -property_value: IAO:0000589 "parasphenoid (zebrafish)" xsd:string -intersection_of: UBERON:0004745 ! parasphenoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000575 ! -property_value: IAO:0000589 "prootic bone (zebrafish)" xsd:string -intersection_of: UBERON:0004746 ! prootic bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000595 ! -property_value: IAO:0000589 "supraoccipital bone (zebrafish)" xsd:string -intersection_of: UBERON:0004747 ! supraoccipital bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001175 ! -property_value: IAO:0000589 "blastodisc (zebrafish)" xsd:string -intersection_of: UBERON:0004749 ! blastodisc -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001176 ! -property_value: IAO:0000589 "blastoderm (zebrafish)" xsd:string -intersection_of: UBERON:0004750 ! blastoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001381 ! -property_value: IAO:0000589 "hypohyal bone (zebrafish)" xsd:string -intersection_of: UBERON:0004751 ! hypohyal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001399 ! -property_value: IAO:0000589 "palatoquadrate cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0004752 ! palatoquadrate cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001455 ! -property_value: IAO:0000589 "scapulocoracoid (zebrafish)" xsd:string -intersection_of: UBERON:0004753 ! scapulocoracoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005619 ! -property_value: IAO:0000589 "skeletal tissue (zebrafish)" xsd:string -intersection_of: UBERON:0004755 ! skeletal tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005494 ! -property_value: IAO:0000589 "skeletal element (zebrafish)" xsd:string -intersection_of: UBERON:0004765 ! skeletal element -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001639 ! -property_value: IAO:0000589 "cardiovascular system endothelium (zebrafish)" xsd:string -intersection_of: UBERON:0004852 ! cardiovascular system endothelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000486 ! -property_value: IAO:0000589 "actinopterygian parietal bone (zebrafish)" xsd:string -intersection_of: UBERON:0004865 ! actinopterygian parietal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000514 ! -property_value: IAO:0000589 "actinopterygian frontal bone (zebrafish)" xsd:string -intersection_of: UBERON:0004866 ! actinopterygian frontal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005558 ! -property_value: IAO:0000589 "orbital cavity (zebrafish)" xsd:string -intersection_of: UBERON:0004867 ! orbital cavity -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000038 ! -property_value: IAO:0000589 "marginal zone of embryo (zebrafish)" xsd:string -intersection_of: UBERON:0004879 ! marginal zone of embryo -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000091 ! -property_value: IAO:0000589 "chordamesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0004880 ! chordamesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005167 ! -property_value: IAO:0000589 "hepatopancreatic ampulla (zebrafish)" xsd:string -intersection_of: UBERON:0004913 ! hepatopancreatic ampulla -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000133 ! -property_value: IAO:0000589 "neural rod (zebrafish)" xsd:string -intersection_of: UBERON:0005068 ! neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001367 ! -property_value: IAO:0000589 "forebrain-midbrain boundary (zebrafish)" xsd:string -intersection_of: UBERON:0005075 ! forebrain-midbrain boundary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001153 ! -property_value: IAO:0000589 "tooth placode (zebrafish)" xsd:string -intersection_of: UBERON:0005087 ! tooth placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001112 ! -property_value: IAO:0000589 "granulosa cell layer (zebrafish)" xsd:string -intersection_of: UBERON:0005170 ! granulosa cell layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005138 ! -property_value: IAO:0000589 "tooth enamel organ (zebrafish)" xsd:string -intersection_of: UBERON:0005176 ! tooth enamel organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000113 ! -property_value: IAO:0000589 "head mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0005253 ! head mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000081 ! -property_value: IAO:0000589 "trunk mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0005256 ! trunk mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001261 ! -property_value: IAO:0000589 "ventricular system of central nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0005281 ! ventricular system of central nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000447 ! -property_value: IAO:0000589 "tela choroidea (zebrafish)" xsd:string -intersection_of: UBERON:0005283 ! tela choroidea -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005157 ! -property_value: IAO:0000589 "tela choroidea of midbrain cerebral aqueduct (zebrafish)" xsd:string -intersection_of: UBERON:0005286 ! tela choroidea of midbrain cerebral aqueduct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005158 ! -property_value: IAO:0000589 "tela choroidea of fourth ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0005287 ! tela choroidea of fourth ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005159 ! -property_value: IAO:0000589 "tela choroidea of third ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0005288 ! tela choroidea of third ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005160 ! -property_value: IAO:0000589 "tela choroidea of telencephalic ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0005289 ! tela choroidea of telencephalic ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001072 ! -property_value: IAO:0000589 "thyroid follicle (zebrafish)" xsd:string -intersection_of: UBERON:0005305 ! thyroid follicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001558 ! -property_value: IAO:0000589 "pronephric nephron tubule (zebrafish)" xsd:string -intersection_of: UBERON:0005310 ! pronephric nephron tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005592 ! -property_value: IAO:0000589 "mesonephric nephron (zebrafish)" xsd:string -intersection_of: UBERON:0005322 ! mesonephric nephron -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005586 ! -property_value: IAO:0000589 "mesonephric renal vesicle (zebrafish)" xsd:string -intersection_of: UBERON:0005331 ! mesonephric renal vesicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007067 ! -property_value: IAO:0000589 "vagus X ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0005362 ! vagus X ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000531 ! -property_value: IAO:0000589 "spinal cord lateral column (zebrafish)" xsd:string -intersection_of: UBERON:0005374 ! spinal cord lateral column -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000357 ! -property_value: IAO:0000589 "olfactory bulb glomerular layer (zebrafish)" xsd:string -intersection_of: UBERON:0005377 ! olfactory bulb glomerular layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005661 ! -property_value: IAO:0000589 "olfactory glomerulus (zebrafish)" xsd:string -intersection_of: UBERON:0005387 ! olfactory glomerulus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000097 ! -property_value: IAO:0000589 "carotid artery segment (zebrafish)" xsd:string -intersection_of: UBERON:0005396 ! carotid artery segment -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001500 ! -property_value: IAO:0000589 "cartilaginous otic capsule (zebrafish)" xsd:string -intersection_of: UBERON:0005410 ! cartilaginous otic capsule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001284 ! -property_value: IAO:0000589 "optic fissure (zebrafish)" xsd:string -intersection_of: UBERON:0005412 ! optic fissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001451 ! -property_value: IAO:0000589 "zone of polarizing activity of pectoral appendage (zebrafish)" xsd:string -intersection_of: UBERON:0005415 ! zone of polarizing activity of pectoral appendage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001452 ! -property_value: IAO:0000589 "zone of polarizing activity of pelvic appendage (zebrafish)" xsd:string -intersection_of: UBERON:0005416 ! zone of polarizing activity of pelvic appendage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000141 ! -property_value: IAO:0000589 "pectoral appendage bud (zebrafish)" xsd:string -intersection_of: UBERON:0005419 ! pectoral appendage bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001384 ! -property_value: IAO:0000589 "pelvic appendage bud (zebrafish)" xsd:string -intersection_of: UBERON:0005420 ! pelvic appendage bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000085 ! -property_value: IAO:0000589 "pectoral appendage apical ectodermal ridge (zebrafish)" xsd:string -intersection_of: UBERON:0005421 ! pectoral appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001385 ! -property_value: IAO:0000589 "pelvic appendage apical ectodermal ridge (zebrafish)" xsd:string -intersection_of: UBERON:0005422 ! pelvic appendage apical ectodermal ridge -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000064 ! -property_value: IAO:0000589 "presumptive retinal pigmented epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0005424 ! presumptive retinal pigmented epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001071 ! -property_value: IAO:0000589 "presumptive neural retina (zebrafish)" xsd:string -intersection_of: UBERON:0005425 ! presumptive neural retina -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001679 ! -property_value: IAO:0000589 "lens vesicle (zebrafish)" xsd:string -intersection_of: UBERON:0005426 ! lens vesicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001688 ! -property_value: IAO:0000589 "corneal primordium (zebrafish)" xsd:string -intersection_of: UBERON:0005427 ! corneal primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000818 ! -property_value: IAO:0000589 "vagal neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0005428 ! vagal neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007066 ! -property_value: IAO:0000589 "glossopharyngeal neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0005491 ! glossopharyngeal neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005046 ! -property_value: IAO:0000589 "hyaloid vessel (zebrafish)" xsd:string -intersection_of: UBERON:0005492 ! hyaloid vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000521 ! -property_value: IAO:0000589 "hyoid muscle (zebrafish)" xsd:string -intersection_of: UBERON:0005493 ! hyoid muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000990 ! -property_value: IAO:0000589 "intermediate mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0005494 ! intermediate mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000906 ! -property_value: IAO:0000589 "midbrain lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005495 ! midbrain lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001435 ! -property_value: IAO:0000589 "neural tube lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005496 ! neural tube lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001178 ! -property_value: IAO:0000589 "non-neural ectoderm (zebrafish)" xsd:string -intersection_of: UBERON:0005497 ! non-neural ectoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000149 ! -property_value: IAO:0000589 "primitive heart tube (zebrafish)" xsd:string -intersection_of: UBERON:0005498 ! primitive heart tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001031 ! -property_value: IAO:0000589 "rhombomere 1 (zebrafish)" xsd:string -intersection_of: UBERON:0005499 ! rhombomere 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001258 ! -property_value: IAO:0000589 "rhombomere floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005500 ! rhombomere floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001311 ! -property_value: IAO:0000589 "rhombomere roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005502 ! rhombomere roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000948 ! -property_value: IAO:0000589 "rhombomere 3 (zebrafish)" xsd:string -intersection_of: UBERON:0005507 ! rhombomere 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001032 ! -property_value: IAO:0000589 "rhombomere 4 (zebrafish)" xsd:string -intersection_of: UBERON:0005511 ! rhombomere 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000823 ! -property_value: IAO:0000589 "rhombomere 5 (zebrafish)" xsd:string -intersection_of: UBERON:0005515 ! rhombomere 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000069 ! -property_value: IAO:0000589 "rhombomere 6 (zebrafish)" xsd:string -intersection_of: UBERON:0005519 ! rhombomere 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000949 ! -property_value: IAO:0000589 "rhombomere 7 (zebrafish)" xsd:string -intersection_of: UBERON:0005523 ! rhombomere 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000153 ! -property_value: IAO:0000589 "rhombomere 8 (zebrafish)" xsd:string -intersection_of: UBERON:0005527 ! rhombomere 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000785 ! -property_value: IAO:0000589 "telencephalon lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005561 ! telencephalon lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001077 ! -property_value: IAO:0000589 "thymus primordium (zebrafish)" xsd:string -intersection_of: UBERON:0005562 ! thymus primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000080 ! -property_value: IAO:0000589 "trigeminal neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0005563 ! trigeminal neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001262 ! -property_value: IAO:0000589 "gonad primordium (zebrafish)" xsd:string -intersection_of: UBERON:0005564 ! gonad primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000762 ! -property_value: IAO:0000589 "facio-acoustic neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0005565 ! facio-acoustic neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000882 ! -property_value: IAO:0000589 "rhombomere 1 floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005566 ! rhombomere 1 floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000781 ! -property_value: IAO:0000589 "rhombomere 1 lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005567 ! rhombomere 1 lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001033 ! -property_value: IAO:0000589 "rhombomere 1 roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005568 ! rhombomere 1 roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000822 ! -property_value: IAO:0000589 "rhombomere 2 (zebrafish)" xsd:string -intersection_of: UBERON:0005569 ! rhombomere 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000763 ! -property_value: IAO:0000589 "rhombomere 2 floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005570 ! rhombomere 2 floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000907 ! -property_value: IAO:0000589 "rhombomere 2 lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005571 ! rhombomere 2 lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000824 ! -property_value: IAO:0000589 "rhombomere 2 roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005572 ! rhombomere 2 roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000888 ! -property_value: IAO:0000589 "rhombomere 3 floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005573 ! rhombomere 3 floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000994 ! -property_value: IAO:0000589 "rhombomere 3 lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005574 ! rhombomere 3 lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000950 ! -property_value: IAO:0000589 "rhombomere 3 roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005575 ! rhombomere 3 roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000893 ! -property_value: IAO:0000589 "rhombomere 4 floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005576 ! rhombomere 4 floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000782 ! -property_value: IAO:0000589 "rhombomere 4 lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005577 ! rhombomere 4 lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001034 ! -property_value: IAO:0000589 "rhombomere 4 roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005578 ! rhombomere 4 roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000764 ! -property_value: IAO:0000589 "rhombomere 5 floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005579 ! rhombomere 5 floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000908 ! -property_value: IAO:0000589 "rhombomere 5 lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005580 ! rhombomere 5 lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000828 ! -property_value: IAO:0000589 "rhombomere 5 roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005581 ! rhombomere 5 roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000889 ! -property_value: IAO:0000589 "rhombomere 6 floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005582 ! rhombomere 6 floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000995 ! -property_value: IAO:0000589 "rhombomere 6 lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005583 ! rhombomere 6 lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000825 ! -property_value: IAO:0000589 "rhombomere 6 roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005584 ! rhombomere 6 roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000904 ! -property_value: IAO:0000589 "rhombomere 7 floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005585 ! rhombomere 7 floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000783 ! -property_value: IAO:0000589 "rhombomere 7 lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005586 ! rhombomere 7 lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000951 ! -property_value: IAO:0000589 "rhombomere 7 roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005587 ! rhombomere 7 roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000765 ! -property_value: IAO:0000589 "rhombomere 8 floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0005588 ! rhombomere 8 floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000909 ! -property_value: IAO:0000589 "rhombomere 8 lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005589 ! rhombomere 8 lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001035 ! -property_value: IAO:0000589 "rhombomere 8 roof plate (zebrafish)" xsd:string -intersection_of: UBERON:0005590 ! rhombomere 8 roof plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000780 ! -property_value: IAO:0000589 "diencephalon lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0005591 ! diencephalon lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005133 ! -property_value: IAO:0000589 "ventral mesogastrium (zebrafish)" xsd:string -intersection_of: UBERON:0005626 ! ventral mesogastrium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000067 ! -property_value: IAO:0000589 "pronephric mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0005721 ! pronephric mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000890 ! -property_value: IAO:0000589 "floor plate spinal cord region (zebrafish)" xsd:string -intersection_of: UBERON:0005723 ! floor plate spinal cord region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001177 ! -property_value: IAO:0000589 "roof plate spinal cord region (zebrafish)" xsd:string -intersection_of: UBERON:0005724 ! roof plate spinal cord region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001149 ! -property_value: IAO:0000589 "olfactory system (zebrafish)" xsd:string -intersection_of: UBERON:0005725 ! olfactory system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001453 ! -property_value: IAO:0000589 "pectoral appendage field (zebrafish)" xsd:string -intersection_of: UBERON:0005729 ! pectoral appendage field -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001454 ! -property_value: IAO:0000589 "pelvic appendage field (zebrafish)" xsd:string -intersection_of: UBERON:0005730 ! pelvic appendage field -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001700 ! -property_value: IAO:0000589 "swim bladder tunica externa (zebrafish)" xsd:string -intersection_of: UBERON:0005737 ! swim bladder tunica externa -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001701 ! -property_value: IAO:0000589 "swim bladder tunica interna (zebrafish)" xsd:string -intersection_of: UBERON:0005738 ! swim bladder tunica interna -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005386 ! -property_value: IAO:0000589 "bone foramen (zebrafish)" xsd:string -intersection_of: UBERON:0005744 ! bone foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005428 ! -property_value: IAO:0000589 "optic foramen (zebrafish)" xsd:string -intersection_of: UBERON:0005745 ! optic foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005253 ! -property_value: IAO:0000589 "glomerular parietal epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0005750 ! glomerular parietal epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005285 ! -property_value: IAO:0000589 "glomerular basement membrane (zebrafish)" xsd:string -intersection_of: UBERON:0005777 ! glomerular basement membrane -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005286 ! -property_value: IAO:0000589 "lamina densa of glomerular basement membrane (zebrafish)" xsd:string -intersection_of: UBERON:0005787 ! lamina densa of glomerular basement membrane -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005287 ! -property_value: IAO:0000589 "lamina rara interna (zebrafish)" xsd:string -intersection_of: UBERON:0005788 ! lamina rara interna -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005288 ! -property_value: IAO:0000589 "lamina rara externa (zebrafish)" xsd:string -intersection_of: UBERON:0005789 ! lamina rara externa -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000014 ! -property_value: IAO:0000589 "dorsal aorta (zebrafish)" xsd:string -intersection_of: UBERON:0005805 ! dorsal aorta -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005593 ! -property_value: IAO:0000589 "neuraxis flexure (zebrafish)" xsd:string -intersection_of: UBERON:0005817 ! neuraxis flexure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001640 ! -property_value: IAO:0000589 "cephalic midbrain flexure (zebrafish)" xsd:string -intersection_of: UBERON:0005818 ! cephalic midbrain flexure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001276 ! -property_value: IAO:0000589 "hyoid arch skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0005884 ! hyoid arch skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000095 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0005886 ! post-hyoid pharyngeal arch skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001414 ! -property_value: IAO:0000589 "occipital region (zebrafish)" xsd:string -intersection_of: UBERON:0005902 ! occipital region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000550 ! -property_value: IAO:0000589 "external naris (zebrafish)" xsd:string -intersection_of: UBERON:0005928 ! external naris -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001321 ! -property_value: IAO:0000589 "neurocranial trabecula (zebrafish)" xsd:string -intersection_of: UBERON:0005945 ! neurocranial trabecula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005809 ! -property_value: IAO:0000589 "pectinate muscle (zebrafish)" xsd:string -intersection_of: UBERON:0005980 ! pectinate muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005810 ! -property_value: IAO:0000589 "atrium myocardial trabecula (zebrafish)" xsd:string -intersection_of: UBERON:0005988 ! atrium myocardial trabecula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005047 ! -property_value: IAO:0000589 "hyaloid vein (zebrafish)" xsd:string -intersection_of: UBERON:0006011 ! hyaloid vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001603 ! -property_value: IAO:0000589 "zygapophysis (zebrafish)" xsd:string -intersection_of: UBERON:0006062 ! zygapophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000519 ! -property_value: IAO:0000589 "hemal arch (zebrafish)" xsd:string -intersection_of: UBERON:0006065 ! hemal arch -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001440 ! -property_value: IAO:0000589 "rhombic lip (zebrafish)" xsd:string -intersection_of: UBERON:0006215 ! rhombic lip -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000574 ! -property_value: IAO:0000589 "future diencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0006222 ! future diencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000146 ! -property_value: IAO:0000589 "future brain (zebrafish)" xsd:string -intersection_of: UBERON:0006238 ! future brain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000062 ! -property_value: IAO:0000589 "future forebrain (zebrafish)" xsd:string -intersection_of: UBERON:0006240 ! future forebrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000417 ! -property_value: IAO:0000589 "future spinal cord (zebrafish)" xsd:string -intersection_of: UBERON:0006241 ! future spinal cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001719 ! -property_value: IAO:0000589 "future cardiac ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0006283 ! future cardiac ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001259 ! -property_value: IAO:0000589 "early prosencephalic vesicle (zebrafish)" xsd:string -intersection_of: UBERON:0006284 ! early prosencephalic vesicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000861 ! -property_value: IAO:0000589 "inferior oblique extraocular muscle (zebrafish)" xsd:string -intersection_of: UBERON:0006320 ! inferior oblique extraocular muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000738 ! -property_value: IAO:0000589 "superior oblique extraocular muscle (zebrafish)" xsd:string -intersection_of: UBERON:0006321 ! superior oblique extraocular muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000457 ! -property_value: IAO:0000589 "inferior rectus extraocular muscle (zebrafish)" xsd:string -intersection_of: UBERON:0006322 ! inferior rectus extraocular muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000345 ! -property_value: IAO:0000589 "superior rectus extraocular muscle (zebrafish)" xsd:string -intersection_of: UBERON:0006323 ! superior rectus extraocular muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005507 ! -property_value: IAO:0000589 "nasal capsule (zebrafish)" xsd:string -intersection_of: UBERON:0006332 ! nasal capsule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005496 ! -property_value: IAO:0000589 "snout (zebrafish)" xsd:string -intersection_of: UBERON:0006333 ! snout -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000944 ! -property_value: IAO:0000589 "posterior lateral line (zebrafish)" xsd:string -intersection_of: UBERON:0006334 ! posterior lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005293 ! -property_value: IAO:0000589 "distal early tubule (zebrafish)" xsd:string -intersection_of: UBERON:0006337 ! distal early tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005305 ! -property_value: IAO:0000589 "kidney vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0006544 ! kidney vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005289 ! -property_value: IAO:0000589 "renal duct (zebrafish)" xsd:string -intersection_of: UBERON:0006553 ! renal duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001659 ! -property_value: IAO:0000589 "diencephalic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0006569 ! diencephalic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000416 ! -property_value: IAO:0000589 "presumptive endoderm (zebrafish)" xsd:string -intersection_of: UBERON:0006595 ! presumptive endoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000568 ! -property_value: IAO:0000589 "presumptive blood (zebrafish)" xsd:string -intersection_of: UBERON:0006596 ! presumptive blood -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000621 ! -property_value: IAO:0000589 "quadrate bone (zebrafish)" xsd:string -intersection_of: UBERON:0006597 ! quadrate bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001116 ! -property_value: IAO:0000589 "presumptive structure (zebrafish)" xsd:string -intersection_of: UBERON:0006598 ! presumptive structure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001217 ! -property_value: IAO:0000589 "presumptive hypochord (zebrafish)" xsd:string -intersection_of: UBERON:0006599 ! presumptive hypochord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001334 ! -property_value: IAO:0000589 "presumptive enteric nervous system (zebrafish)" xsd:string -intersection_of: UBERON:0006600 ! presumptive enteric nervous system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001376 ! -property_value: IAO:0000589 "presumptive ectoderm (zebrafish)" xsd:string -intersection_of: UBERON:0006601 ! presumptive ectoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001377 ! -property_value: IAO:0000589 "presumptive mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0006603 ! presumptive mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001503 ! -property_value: IAO:0000589 "lamina orbitonasalis (zebrafish)" xsd:string -intersection_of: UBERON:0006604 ! lamina orbitonasalis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001506 ! -property_value: IAO:0000589 "tectum synoticum (zebrafish)" xsd:string -intersection_of: UBERON:0006605 ! tectum synoticum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005488 ! -property_value: IAO:0000589 "mandibular symphysis (zebrafish)" xsd:string -intersection_of: UBERON:0006606 ! mandibular symphysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005652 ! -property_value: IAO:0000589 "aponeurosis (zebrafish)" xsd:string -intersection_of: UBERON:0006614 ! aponeurosis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007072 ! -property_value: IAO:0000589 "venous sinus (zebrafish)" xsd:string -intersection_of: UBERON:0006615 ! venous sinus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005570 ! -property_value: IAO:0000589 "corneo-scleral junction (zebrafish)" xsd:string -intersection_of: UBERON:0006761 ! corneo-scleral junction -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005573 ! -property_value: IAO:0000589 "suspensory ligament of lens (zebrafish)" xsd:string -intersection_of: UBERON:0006762 ! suspensory ligament of lens -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001351 ! -property_value: IAO:0000589 "middle white layer of superior colliculus (zebrafish)" xsd:string -intersection_of: UBERON:0006787 ! middle white layer of superior colliculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001350 ! -property_value: IAO:0000589 "middle gray layer of superior colliculus (zebrafish)" xsd:string -intersection_of: UBERON:0006788 ! middle gray layer of superior colliculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000494 ! -property_value: IAO:0000589 "deep white layer of superior colliculus (zebrafish)" xsd:string -intersection_of: UBERON:0006790 ! deep white layer of superior colliculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000686 ! -property_value: IAO:0000589 "superficial layer of superior colliculus (zebrafish)" xsd:string -intersection_of: UBERON:0006791 ! superficial layer of superior colliculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000327 ! -property_value: IAO:0000589 "intermediate layer of superior colliculus (zebrafish)" xsd:string -intersection_of: UBERON:0006792 ! intermediate layer of superior colliculus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001689 ! -property_value: IAO:0000589 "anatomical line (zebrafish)" xsd:string -intersection_of: UBERON:0006800 ! anatomical line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000380 ! -property_value: IAO:0000589 "nucleus of lateral lemniscus (zebrafish)" xsd:string -intersection_of: UBERON:0006840 ! nucleus of lateral lemniscus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005168 ! -property_value: IAO:0000589 "central vein of liver (zebrafish)" xsd:string -intersection_of: UBERON:0006841 ! central vein of liver -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005252 ! -property_value: IAO:0000589 "lymphatic capillary (zebrafish)" xsd:string -intersection_of: UBERON:0006842 ! lymphatic capillary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001663 ! -property_value: IAO:0000589 "root of cranial nerve (zebrafish)" xsd:string -intersection_of: UBERON:0006843 ! root of cranial nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005434 ! -property_value: IAO:0000589 "cusp of tooth (zebrafish)" xsd:string -intersection_of: UBERON:0006844 ! cusp of tooth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005269 ! -property_value: IAO:0000589 "abductor muscle (zebrafish)" xsd:string -intersection_of: UBERON:0006845 ! abductor muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000490 ! -property_value: IAO:0000589 "cerebellar commissure (zebrafish)" xsd:string -intersection_of: UBERON:0006847 ! cerebellar commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000583 ! -property_value: IAO:0000589 "scapula (zebrafish)" xsd:string -intersection_of: UBERON:0006849 ! scapula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001345 ! -property_value: IAO:0000589 "interrenal gland (zebrafish)" xsd:string -intersection_of: UBERON:0006856 ! interrenal gland -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001346 ! -property_value: IAO:0000589 "interrenal primordium (zebrafish)" xsd:string -intersection_of: UBERON:0006857 ! interrenal primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005335 ! -property_value: IAO:0000589 "swim bladder bud (zebrafish)" xsd:string -intersection_of: UBERON:0006859 ! swim bladder bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000076 ! -property_value: IAO:0000589 "swim bladder (zebrafish)" xsd:string -intersection_of: UBERON:0006860 ! swim bladder -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000998 ! -property_value: IAO:0000589 "head mesenchyme from mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0006904 ! head mesenchyme from mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005334 ! -property_value: IAO:0000589 "lip epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0006913 ! lip epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001268 ! -property_value: IAO:0000589 "male genital duct (zebrafish)" xsd:string -intersection_of: UBERON:0006947 ! male genital duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005136 ! -property_value: IAO:0000589 "inner dental epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0006951 ! inner dental epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005137 ! -property_value: IAO:0000589 "outer dental epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0006952 ! outer dental epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001195 ! -property_value: IAO:0000589 "pars distalis of adenohypophysis (zebrafish)" xsd:string -intersection_of: UBERON:0006964 ! pars distalis of adenohypophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005077 ! -property_value: IAO:0000589 "vascular cord (zebrafish)" xsd:string -intersection_of: UBERON:0006965 ! vascular cord -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005813 ! -property_value: IAO:0000589 "coronary capillary (zebrafish)" xsd:string -intersection_of: UBERON:0006966 ! coronary capillary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001082 ! -property_value: IAO:0000589 "chordo neural hinge (zebrafish)" xsd:string -intersection_of: UBERON:0007097 ! chordo neural hinge -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007064 ! -property_value: IAO:0000589 "mandibular neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0007098 ! mandibular neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007065 ! -property_value: IAO:0000589 "hyoid neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0007099 ! hyoid neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001128 ! -property_value: IAO:0000589 "pharyngeal pouch 1 (zebrafish)" xsd:string -intersection_of: UBERON:0007122 ! pharyngeal pouch 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001130 ! -property_value: IAO:0000589 "pharyngeal pouch 2 (zebrafish)" xsd:string -intersection_of: UBERON:0007123 ! pharyngeal pouch 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001131 ! -property_value: IAO:0000589 "pharyngeal pouch 3 (zebrafish)" xsd:string -intersection_of: UBERON:0007124 ! pharyngeal pouch 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001134 ! -property_value: IAO:0000589 "pharyngeal pouch 4 (zebrafish)" xsd:string -intersection_of: UBERON:0007125 ! pharyngeal pouch 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001133 ! -property_value: IAO:0000589 "pharyngeal pouch 5 (zebrafish)" xsd:string -intersection_of: UBERON:0007126 ! pharyngeal pouch 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001132 ! -property_value: IAO:0000589 "pharyngeal pouch 6 (zebrafish)" xsd:string -intersection_of: UBERON:0007127 ! pharyngeal pouch 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000669 ! -property_value: IAO:0000589 "head kidney (zebrafish)" xsd:string -intersection_of: UBERON:0007132 ! head kidney -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001573 ! -property_value: IAO:0000589 "trunk ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0007134 ! trunk ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000131 ! -property_value: IAO:0000589 "neural keel (zebrafish)" xsd:string -intersection_of: UBERON:0007135 ! neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000787 ! -property_value: IAO:0000589 "mesenchyme derived from head neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0007213 ! mesenchyme derived from head neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000999 ! -property_value: IAO:0000589 "mesenchyme derived from trunk neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0007214 ! mesenchyme derived from trunk neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001507 ! -property_value: IAO:0000589 "trabecula cranii (zebrafish)" xsd:string -intersection_of: UBERON:0007215 ! trabecula cranii -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000563 ! -property_value: IAO:0000589 "pectoral appendage musculature (zebrafish)" xsd:string -intersection_of: UBERON:0007269 ! pectoral appendage musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000258 ! -property_value: IAO:0000589 "pelvic appendage musculature (zebrafish)" xsd:string -intersection_of: UBERON:0007270 ! pelvic appendage musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000207 ! -property_value: IAO:0000589 "appendage musculature (zebrafish)" xsd:string -intersection_of: UBERON:0007271 ! appendage musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000619 ! -property_value: IAO:0000589 "crista of ampulla of anterior semicircular duct of membranous laybrinth (zebrafish)" xsd:string -intersection_of: UBERON:0007274 ! crista of ampulla of anterior semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000566 ! -property_value: IAO:0000589 "crista of ampulla of posterior semicircular duct of membranous laybrinth (zebrafish)" xsd:string -intersection_of: UBERON:0007275 ! crista of ampulla of posterior semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000166 ! -property_value: IAO:0000589 "crista of ampulla of lateral semicircular duct of membranous laybrinth (zebrafish)" xsd:string -intersection_of: UBERON:0007276 ! crista of ampulla of lateral semicircular duct of membranous laybrinth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000569 ! -property_value: IAO:0000589 "presumptive hindbrain (zebrafish)" xsd:string -intersection_of: UBERON:0007277 ! presumptive hindbrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001722 ! -property_value: IAO:0000589 "presumptive sinus venosus (zebrafish)" xsd:string -intersection_of: UBERON:0007278 ! presumptive sinus venosus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001723 ! -property_value: IAO:0000589 "presumptive atrioventricular canal (zebrafish)" xsd:string -intersection_of: UBERON:0007279 ! presumptive atrioventricular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001724 ! -property_value: IAO:0000589 "presumptive endocardium (zebrafish)" xsd:string -intersection_of: UBERON:0007280 ! presumptive endocardium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001187 ! -property_value: IAO:0000589 "presumptive midbrain hindbrain boundary (zebrafish)" xsd:string -intersection_of: UBERON:0007281 ! presumptive midbrain hindbrain boundary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000053 ! -property_value: IAO:0000589 "presumptive segmental plate (zebrafish)" xsd:string -intersection_of: UBERON:0007282 ! presumptive segmental plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001121 ! -property_value: IAO:0000589 "presumptive shield (zebrafish)" xsd:string -intersection_of: UBERON:0007283 ! presumptive shield -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000063 ! -property_value: IAO:0000589 "presumptive neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0007284 ! presumptive neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000591 ! -property_value: IAO:0000589 "presumptive paraxial mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0007285 ! presumptive paraxial mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001218 ! -property_value: IAO:0000589 "presumptive floor plate (zebrafish)" xsd:string -intersection_of: UBERON:0007286 ! presumptive floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001712 ! -property_value: IAO:0000589 "presumptive bulbus arteriosus (zebrafish)" xsd:string -intersection_of: UBERON:0007287 ! presumptive bulbus arteriosus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001368 ! -property_value: IAO:0000589 "presumptive forebrain midbrain boundary (zebrafish)" xsd:string -intersection_of: UBERON:0007288 ! presumptive forebrain midbrain boundary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001207 ! -property_value: IAO:0000589 "presumptive rhombomere 1 (zebrafish)" xsd:string -intersection_of: UBERON:0007289 ! presumptive rhombomere 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001213 ! -property_value: IAO:0000589 "presumptive rhombomere 3 (zebrafish)" xsd:string -intersection_of: UBERON:0007290 ! presumptive rhombomere 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001212 ! -property_value: IAO:0000589 "presumptive rhombomere 4 (zebrafish)" xsd:string -intersection_of: UBERON:0007291 ! presumptive rhombomere 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001211 ! -property_value: IAO:0000589 "presumptive rhombomere 5 (zebrafish)" xsd:string -intersection_of: UBERON:0007292 ! presumptive rhombomere 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001210 ! -property_value: IAO:0000589 "presumptive rhombomere 6 (zebrafish)" xsd:string -intersection_of: UBERON:0007293 ! presumptive rhombomere 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001209 ! -property_value: IAO:0000589 "presumptive rhombomere 7 (zebrafish)" xsd:string -intersection_of: UBERON:0007294 ! presumptive rhombomere 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001214 ! -property_value: IAO:0000589 "presumptive rhombomere 8 (zebrafish)" xsd:string -intersection_of: UBERON:0007295 ! presumptive rhombomere 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001208 ! -property_value: IAO:0000589 "presumptive rhombomere 2 (zebrafish)" xsd:string -intersection_of: UBERON:0007296 ! presumptive rhombomere 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001070 ! -property_value: IAO:0000589 "presumptive pronephric mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0007297 ! presumptive pronephric mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001620 ! -property_value: IAO:0000589 "pronephric proximal convoluted tubule (zebrafish)" xsd:string -intersection_of: UBERON:0007298 ! pronephric proximal convoluted tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001445 ! -property_value: IAO:0000589 "choroid plexus of tectal ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0007299 ! choroid plexus of tectal ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005301 ! -property_value: IAO:0000589 "pectoral appendage blood vessel (zebrafish)" xsd:string -intersection_of: UBERON:0007300 ! pectoral appendage blood vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005299 ! -property_value: IAO:0000589 "appendage blood vessel (zebrafish)" xsd:string -intersection_of: UBERON:0007301 ! appendage blood vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005096 ! -property_value: IAO:0000589 "pectoral appendage vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0007302 ! pectoral appendage vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005003 ! -property_value: IAO:0000589 "pharyngeal vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0007303 ! pharyngeal vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005095 ! -property_value: IAO:0000589 "appendage vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0007304 ! appendage vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005309 ! -property_value: IAO:0000589 "pronephric glomerular capillary (zebrafish)" xsd:string -intersection_of: UBERON:0007306 ! pronephric glomerular capillary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005313 ! -property_value: IAO:0000589 "pronephric glomerular basement membrane (zebrafish)" xsd:string -intersection_of: UBERON:0007307 ! pronephric glomerular basement membrane -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001622 ! -property_value: IAO:0000589 "pronephric distal early tubule (zebrafish)" xsd:string -intersection_of: UBERON:0007308 ! pronephric distal early tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001372 ! -property_value: IAO:0000589 "pancreatic duct (zebrafish)" xsd:string -intersection_of: UBERON:0007329 ! pancreatic duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001182 ! -property_value: IAO:0000589 "stratum compactum of dermis (zebrafish)" xsd:string -intersection_of: UBERON:0007377 ! stratum compactum of dermis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000277 ! -property_value: IAO:0000589 "dermal scale (zebrafish)" xsd:string -intersection_of: UBERON:0007380 ! dermal scale -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000086 ! -property_value: IAO:0000589 "enveloping layer of ectoderm (zebrafish)" xsd:string -intersection_of: UBERON:0007383 ! enveloping layer of ectoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005300 ! -property_value: IAO:0000589 "appendage lymph vessel (zebrafish)" xsd:string -intersection_of: UBERON:0007384 ! appendage lymph vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005302 ! -property_value: IAO:0000589 "pectoral appendage lymph vessel (zebrafish)" xsd:string -intersection_of: UBERON:0007385 ! pectoral appendage lymph vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001543 ! -property_value: IAO:0000589 "paired limb/fin cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0007389 ! paired limb/fin cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000257 ! -property_value: IAO:0000589 "pectoral appendage cartilage tissue (zebrafish)" xsd:string -intersection_of: UBERON:0007390 ! pectoral appendage cartilage tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001459 ! -property_value: IAO:0000589 "pelvic appendage cartilage tissue (zebrafish)" xsd:string -intersection_of: UBERON:0007391 ! pelvic appendage cartilage tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005577 ! -property_value: IAO:0000589 "nucleus of midbrain tegmentum (zebrafish)" xsd:string -intersection_of: UBERON:0007414 ! nucleus of midbrain tegmentum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005147 ! -property_value: IAO:0000589 "regenerating anatomical structure (zebrafish)" xsd:string -intersection_of: UBERON:0007567 ! regenerating anatomical structure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005148 ! -property_value: IAO:0000589 "apical epidermal cap (zebrafish)" xsd:string -intersection_of: UBERON:0007574 ! apical epidermal cap -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005590 ! -property_value: IAO:0000589 "capillary loop nephron (zebrafish)" xsd:string -intersection_of: UBERON:0007653 ! capillary loop nephron -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001057 ! -property_value: IAO:0000589 "intersomitic vein (zebrafish)" xsd:string -intersection_of: UBERON:0007679 ! intersomitic vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000875 ! -property_value: IAO:0000589 "facial neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0007681 ! facial neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000905 ! -property_value: IAO:0000589 "lateral mesenchyme derived from mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0007683 ! lateral mesenchyme derived from mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001104 ! -property_value: IAO:0000589 "early pharyngeal endoderm (zebrafish)" xsd:string -intersection_of: UBERON:0007690 ! early pharyngeal endoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001117 ! -property_value: IAO:0000589 "post-anal tail (zebrafish)" xsd:string -intersection_of: UBERON:0007812 ! post-anal tail -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005129 ! -property_value: IAO:0000589 "peritoneal mesentery (zebrafish)" xsd:string -intersection_of: UBERON:0007826 ! peritoneal mesentery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000407 ! -property_value: IAO:0000589 "pectoral girdle skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0007831 ! pectoral girdle skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000565 ! -property_value: IAO:0000589 "pelvic girdle skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0007832 ! pelvic girdle skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001636 ! -property_value: IAO:0000589 "membrane bone (zebrafish)" xsd:string -intersection_of: UBERON:0007842 ! membrane bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001501 ! -property_value: IAO:0000589 "cartilage element (zebrafish)" xsd:string -intersection_of: UBERON:0007844 ! cartilage element -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001633 ! -property_value: IAO:0000589 "perichordal tissue (zebrafish)" xsd:string -intersection_of: UBERON:0007862 ! perichordal tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000328 ! -property_value: IAO:0000589 "craniocervical region musculature (zebrafish)" xsd:string -intersection_of: UBERON:0008229 ! craniocervical region musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000018 ! -property_value: IAO:0000589 "blastodisc derived epiblast (zebrafish)" xsd:string -intersection_of: UBERON:0008781 ! blastodisc derived epiblast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001107 ! -property_value: IAO:0000589 "pharyngeal gill precursor (zebrafish)" xsd:string -intersection_of: UBERON:0008894 ! pharyngeal gill precursor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001216 ! -property_value: IAO:0000589 "splanchnocranium (zebrafish)" xsd:string -intersection_of: UBERON:0008895 ! splanchnocranium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001613 ! -property_value: IAO:0000589 "post-hyoid pharyngeal arch (zebrafish)" xsd:string -intersection_of: UBERON:0008896 ! post-hyoid pharyngeal arch -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000108 ! -property_value: IAO:0000589 "fin (zebrafish)" xsd:string -intersection_of: UBERON:0008897 ! fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000231 ! -property_value: IAO:0000589 "lateral recess of third ventricle (zebrafish)" xsd:string -intersection_of: UBERON:0008902 ! lateral recess of third ventricle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000243 ! -property_value: IAO:0000589 "neuromast (zebrafish)" xsd:string -intersection_of: UBERON:0008904 ! neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001479 ! -property_value: IAO:0000589 "lateral line nerve (zebrafish)" xsd:string -intersection_of: UBERON:0008906 ! lateral line nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001590 ! -property_value: IAO:0000589 "dermal bone (zebrafish)" xsd:string -intersection_of: UBERON:0008907 ! dermal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001629 ! -property_value: IAO:0000589 "perichordal bone (zebrafish)" xsd:string -intersection_of: UBERON:0008909 ! perichordal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001693 ! -property_value: IAO:0000589 "chondral bone (zebrafish)" xsd:string -intersection_of: UBERON:0008911 ! chondral bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001630 ! -property_value: IAO:0000589 "perichondral bone (zebrafish)" xsd:string -intersection_of: UBERON:0008913 ! perichondral bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005449 ! -property_value: IAO:0000589 "pore (zebrafish)" xsd:string -intersection_of: UBERON:0008915 ! pore -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000099 ! -property_value: IAO:0000589 "vasculature of brain (zebrafish)" xsd:string -intersection_of: UBERON:0008998 ! vasculature of brain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000667 ! -property_value: IAO:0000589 "gill filament (zebrafish)" xsd:string -intersection_of: UBERON:0009120 ! gill filament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001198 ! -property_value: IAO:0000589 "adenohypophyseal placode (zebrafish)" xsd:string -intersection_of: UBERON:0009122 ! adenohypophyseal placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001295 ! -property_value: IAO:0000589 "geniculate placode (zebrafish)" xsd:string -intersection_of: UBERON:0009124 ! geniculate placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001296 ! -property_value: IAO:0000589 "petrosal placode (zebrafish)" xsd:string -intersection_of: UBERON:0009125 ! petrosal placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001555 ! -property_value: IAO:0000589 "epibranchial ganglion (zebrafish)" xsd:string -intersection_of: UBERON:0009127 ! epibranchial ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000996 ! -property_value: IAO:0000589 "spinal cord lateral wall (zebrafish)" xsd:string -intersection_of: UBERON:0009582 ! spinal cord lateral wall -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007018 ! -property_value: IAO:0000589 "forebrain neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0009610 ! forebrain neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007019 ! -property_value: IAO:0000589 "midbrain neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0009611 ! midbrain neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007020 ! -property_value: IAO:0000589 "forebrain midbrain boundary neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0009612 ! forebrain midbrain boundary neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007022 ! -property_value: IAO:0000589 "hindbrain neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0009614 ! hindbrain neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007044 ! -property_value: IAO:0000589 "midbrain hindbrain boundary neural plate (zebrafish)" xsd:string -intersection_of: UBERON:0009615 ! midbrain hindbrain boundary neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000148 ! -property_value: IAO:0000589 "presumptive midbrain (zebrafish)" xsd:string -intersection_of: UBERON:0009616 ! presumptive midbrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001621 ! -property_value: IAO:0000589 "pronephric proximal straight tubule (zebrafish)" xsd:string -intersection_of: UBERON:0009622 ! pronephric proximal straight tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005578 ! -property_value: IAO:0000589 "spinal nerve root (zebrafish)" xsd:string -intersection_of: UBERON:0009623 ! spinal nerve root -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001423 ! -property_value: IAO:0000589 "parachordal cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0009635 ! parachordal cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001665 ! -property_value: IAO:0000589 "midbrain nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0009661 ! midbrain nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001658 ! -property_value: IAO:0000589 "hindbrain nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0009662 ! hindbrain nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001660 ! -property_value: IAO:0000589 "telencephalic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0009663 ! telencephalic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001642 ! -property_value: IAO:0000589 "tooth row (zebrafish)" xsd:string -intersection_of: UBERON:0009678 ! tooth row -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000219 ! -property_value: IAO:0000589 "intermediate reticular formation (zebrafish)" xsd:string -intersection_of: UBERON:0009776 ! intermediate reticular formation -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001441 ! -property_value: IAO:0000589 "lower rhombic lip (zebrafish)" xsd:string -intersection_of: UBERON:0009840 ! lower rhombic lip -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001442 ! -property_value: IAO:0000589 "upper rhombic lip (zebrafish)" xsd:string -intersection_of: UBERON:0009841 ! upper rhombic lip -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001344 ! -property_value: IAO:0000589 "zona limitans intrathalamica (zebrafish)" xsd:string -intersection_of: UBERON:0009848 ! zona limitans intrathalamica -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005041 ! -property_value: IAO:0000589 "anterior lateral plate mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0009881 ! anterior lateral plate mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000179 ! -property_value: IAO:0000589 "caudal root of abducens nerve (zebrafish)" xsd:string -intersection_of: UBERON:0009908 ! caudal root of abducens nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000665 ! -property_value: IAO:0000589 "rostral root of abducens nerve (zebrafish)" xsd:string -intersection_of: UBERON:0009909 ! rostral root of abducens nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005042 ! -property_value: IAO:0000589 "posterior lateral plate mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:0009910 ! posterior lateral plate mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001309 ! -property_value: IAO:0000589 "neurogenic placode (zebrafish)" xsd:string -intersection_of: UBERON:0009955 ! neurogenic placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005094 ! -property_value: IAO:0000589 "optic choroid vascular plexus (zebrafish)" xsd:string -intersection_of: UBERON:0010078 ! optic choroid vascular plexus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000045 ! -property_value: IAO:0000589 "region of neural crest (zebrafish)" xsd:string -intersection_of: UBERON:0010170 ! region of neural crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000577 ! -property_value: IAO:0000589 "renal portal vein (zebrafish)" xsd:string -intersection_of: UBERON:0010193 ! renal portal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001469 ! -property_value: IAO:0000589 "lateral line (zebrafish)" xsd:string -intersection_of: UBERON:0010202 ! lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005037 ! -property_value: IAO:0000589 "tail vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0010204 ! tail vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005092 ! -property_value: IAO:0000589 "mesencephalic vein (zebrafish)" xsd:string -intersection_of: UBERON:0010205 ! mesencephalic vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001718 ! -property_value: IAO:0000589 "future cardiac atrium (zebrafish)" xsd:string -intersection_of: UBERON:0010227 ! future cardiac atrium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000761 ! -property_value: IAO:0000589 "midbrain basal plate (zebrafish)" xsd:string -intersection_of: UBERON:0010285 ! midbrain basal plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007039 ! -property_value: IAO:0000589 "midbrain neural tube (zebrafish)" xsd:string -intersection_of: UBERON:0010286 ! midbrain neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001509 ! -property_value: IAO:0000589 "scleral cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0010289 ! scleral cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001411 ! -property_value: IAO:0000589 "endochondral scleral ossicle (zebrafish)" xsd:string -intersection_of: UBERON:0010297 ! endochondral scleral ossicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001678 ! -property_value: IAO:0000589 "immature eye (zebrafish)" xsd:string -intersection_of: UBERON:0010312 ! immature eye -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000737 ! -property_value: IAO:0000589 "cranial skeletal system (zebrafish)" xsd:string -intersection_of: UBERON:0010323 ! cranial skeletal system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005610 ! -property_value: IAO:0000589 "synostosis (zebrafish)" xsd:string -intersection_of: UBERON:0010361 ! synostosis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005620 ! -property_value: IAO:0000589 "endochondral element (zebrafish)" xsd:string -intersection_of: UBERON:0010363 ! endochondral element -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005623 ! -property_value: IAO:0000589 "odontoid tissue (zebrafish)" xsd:string -intersection_of: UBERON:0010365 ! odontoid tissue -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005624 ! -property_value: IAO:0000589 "replacement element (zebrafish)" xsd:string -intersection_of: UBERON:0010522 ! replacement element -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005251 ! -property_value: IAO:0000589 "microcirculatory vessel (zebrafish)" xsd:string -intersection_of: UBERON:0010523 ! microcirculatory vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005584 ! -property_value: IAO:0000589 "primitive mesonephric nephron (zebrafish)" xsd:string -intersection_of: UBERON:0010534 ! primitive mesonephric nephron -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005587 ! -property_value: IAO:0000589 "mesonephric nephron progenitor (zebrafish)" xsd:string -intersection_of: UBERON:0010537 ! mesonephric nephron progenitor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000943 ! -property_value: IAO:0000589 "pectoral fin skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0010710 ! pectoral fin skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001387 ! -property_value: IAO:0000589 "pelvic fin skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0010711 ! pelvic fin skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000027 ! -property_value: IAO:0000589 "paired fin skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0010713 ! paired fin skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000369 ! -property_value: IAO:0000589 "intermandibularis (zebrafish)" xsd:string -intersection_of: UBERON:0010931 ! intermandibularis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001644 ! -property_value: IAO:0000589 "articular cartilage element (zebrafish)" xsd:string -intersection_of: UBERON:0011002 ! articular cartilage element -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001460 ! -property_value: IAO:0000589 "pharyngeal arch cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0011004 ! pharyngeal arch cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005461 ! -property_value: IAO:0000589 "perilymphatic channel (zebrafish)" xsd:string -intersection_of: UBERON:0011060 ! perilymphatic channel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001645 ! -property_value: IAO:0000589 "angular bone (zebrafish)" xsd:string -intersection_of: UBERON:0011079 ! angular bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001272 ! -property_value: IAO:0000589 "palatoquadrate arch (zebrafish)" xsd:string -intersection_of: UBERON:0011085 ! palatoquadrate arch -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001610 ! -property_value: IAO:0000589 "pharyngeal arch 7 (zebrafish)" xsd:string -intersection_of: UBERON:0011087 ! pharyngeal arch 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005268 ! -property_value: IAO:0000589 "adductor muscle (zebrafish)" xsd:string -intersection_of: UBERON:0011145 ! adductor muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000354 ! -property_value: IAO:0000589 "pharyngeal arch derived gill (zebrafish)" xsd:string -intersection_of: UBERON:0011150 ! pharyngeal arch derived gill -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001401 ! -property_value: IAO:0000589 "dorsal hyoid arch skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0011152 ! dorsal hyoid arch skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001402 ! -property_value: IAO:0000589 "ventral hyoid arch skeleton (zebrafish)" xsd:string -intersection_of: UBERON:0011153 ! ventral hyoid arch skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005484 ! -property_value: IAO:0000589 "quadrate-articular joint (zebrafish)" xsd:string -intersection_of: UBERON:0011170 ! quadrate-articular joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000786 ! -property_value: IAO:0000589 "medial migration pathway NC-derived mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0011208 ! medial migration pathway NC-derived mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000992 ! -property_value: IAO:0000589 "lateral migration pathway NC-derived mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:0011209 ! lateral migration pathway NC-derived mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007011 ! -property_value: IAO:0000589 "root of vagus nerve (zebrafish)" xsd:string -intersection_of: UBERON:0011213 ! root of vagus nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000323 ! -property_value: IAO:0000589 "mesethmoid bone (zebrafish)" xsd:string -intersection_of: UBERON:0011238 ! mesethmoid bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001405 ! -property_value: IAO:0000589 "ethmoid cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0011242 ! ethmoid cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000597 ! -property_value: IAO:0000589 "white matter of telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0011299 ! white matter of telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005297 ! -property_value: IAO:0000589 "cranial blood vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0011362 ! cranial blood vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005298 ! -property_value: IAO:0000589 "cranial lymph vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0011363 ! cranial lymph vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007071 ! -property_value: IAO:0000589 "flexural organ (zebrafish)" xsd:string -intersection_of: UBERON:0011577 ! flexural organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000672 ! -property_value: IAO:0000589 "hyomandibular bone (zebrafish)" xsd:string -intersection_of: UBERON:0011606 ! hyomandibular bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001422 ! -property_value: IAO:0000589 "hyomandibular cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0011607 ! hyomandibular cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001400 ! -property_value: IAO:0000589 "ceratohyal cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0011610 ! ceratohyal cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000578 ! -property_value: IAO:0000589 "ceratohyal bone (zebrafish)" xsd:string -intersection_of: UBERON:0011611 ! ceratohyal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001510 ! -property_value: IAO:0000589 "basihyal cartilage (zebrafish)" xsd:string -intersection_of: UBERON:0011615 ! basihyal cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000316 ! -property_value: IAO:0000589 "basihyal bone (zebrafish)" xsd:string -intersection_of: UBERON:0011618 ! basihyal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000656 ! -property_value: IAO:0000589 "ectopterygoid bone (zebrafish)" xsd:string -intersection_of: UBERON:0011634 ! ectopterygoid bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000236 ! -property_value: IAO:0000589 "jaw muscle (zebrafish)" xsd:string -intersection_of: UBERON:0011648 ! jaw muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000537 ! -property_value: IAO:0000589 "levator operculi (zebrafish)" xsd:string -intersection_of: UBERON:0011649 ! levator operculi -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007049 ! -property_value: IAO:0000589 "adductor mandibulae (zebrafish)" xsd:string -intersection_of: UBERON:0011683 ! adductor mandibulae -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005142 ! -property_value: IAO:0000589 "enameloid (zebrafish)" xsd:string -intersection_of: UBERON:0011692 ! enameloid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001292 ! -property_value: IAO:0000589 "pineal gland stalk (zebrafish)" xsd:string -intersection_of: UBERON:0011768 ! pineal gland stalk -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000387 ! -property_value: IAO:0000589 "motor nucleus of vagal nerve (zebrafish)" xsd:string -intersection_of: UBERON:0011778 ! motor nucleus of vagal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005035 ! -property_value: IAO:0000589 "subintestinal vein (zebrafish)" xsd:string -intersection_of: UBERON:0011944 ! subintestinal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000463 ! -property_value: IAO:0000589 "pharyngeal adductor (zebrafish)" xsd:string -intersection_of: UBERON:0011996 ! pharyngeal adductor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001628 ! -property_value: IAO:0000589 "replacement bone (zebrafish)" xsd:string -intersection_of: UBERON:0012075 ! replacement bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005509 ! -property_value: IAO:0000589 "primitive palate (zebrafish)" xsd:string -intersection_of: UBERON:0012316 ! primitive palate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001270 ! -property_value: IAO:0000589 "blastema of regenerating fin/limb (zebrafish)" xsd:string -intersection_of: UBERON:0012438 ! blastema of regenerating fin/limb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000330 ! -property_value: IAO:0000589 "cloacal lumen (zebrafish)" xsd:string -intersection_of: UBERON:0012463 ! cloacal lumen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005783 ! -property_value: IAO:0000589 "cloacal epithelium (zebrafish)" xsd:string -intersection_of: UBERON:0012481 ! cloacal epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005411 ! -property_value: IAO:0000589 "common crus of semicircular duct (zebrafish)" xsd:string -intersection_of: UBERON:0013764 ! common crus of semicircular duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000571 ! -property_value: IAO:0000589 "future telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0014371 ! future telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000536 ! -property_value: IAO:0000589 "medial pallium (zebrafish)" xsd:string -intersection_of: UBERON:0014738 ! medial pallium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000506 ! -property_value: IAO:0000589 "dorsal pallium (zebrafish)" xsd:string -intersection_of: UBERON:0014740 ! dorsal pallium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000391 ! -property_value: IAO:0000589 "lateral pallium (zebrafish)" xsd:string -intersection_of: UBERON:0014741 ! lateral pallium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001332 ! -property_value: IAO:0000589 "spinal neuromere (zebrafish)" xsd:string -intersection_of: UBERON:0014777 ! spinal neuromere -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005277 ! -property_value: IAO:0000589 "skeletal muscle organ (zebrafish)" xsd:string -intersection_of: UBERON:0014892 ! skeletal muscle organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005076 ! -property_value: IAO:0000589 "primordial vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0014903 ! primordial vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001285 ! -property_value: IAO:0000589 "intersomitic vessel (zebrafish)" xsd:string -intersection_of: UBERON:0014907 ! intersomitic vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007010 ! -property_value: IAO:0000589 "thalamic eminence (zebrafish)" xsd:string -intersection_of: UBERON:0014912 ! thalamic eminence -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001462 ! -property_value: IAO:0000589 "somite border (zebrafish)" xsd:string -intersection_of: UBERON:0015178 ! somite border -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001359 ! -property_value: IAO:0000589 "pineal complex (zebrafish)" xsd:string -intersection_of: UBERON:0015238 ! pineal complex -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001360 ! -property_value: IAO:0000589 "parapineal organ (zebrafish)" xsd:string -intersection_of: UBERON:0015241 ! parapineal organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005782 ! -property_value: IAO:0000589 "intestinal-cloacal junction (zebrafish)" xsd:string -intersection_of: UBERON:0016498 ! intestinal-cloacal junction -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000415 ! -property_value: IAO:0000589 "esophageal-pneumatic duct sphincter (zebrafish)" xsd:string -intersection_of: UBERON:0016499 ! esophageal-pneumatic duct sphincter -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001379 ! -property_value: IAO:0000589 "pharyngeal ectoderm (zebrafish)" xsd:string -intersection_of: UBERON:0016545 ! pharyngeal ectoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005608 ! -property_value: IAO:0000589 "actinopterygian frontal-parietal joint (zebrafish)" xsd:string -intersection_of: UBERON:0016631 ! actinopterygian frontal-parietal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005807 ! -property_value: IAO:0000589 "lumen of intestine (zebrafish)" xsd:string -intersection_of: UBERON:0018543 ! lumen of intestine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005028 ! -property_value: IAO:0000589 "ventral wall of dorsal aorta (zebrafish)" xsd:string -intersection_of: UBERON:0018549 ! ventral wall of dorsal aorta -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005811 ! -property_value: IAO:0000589 "heart vasculature (zebrafish)" xsd:string -intersection_of: UBERON:0018674 ! heart vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000229 ! -property_value: IAO:0000589 "olfactory tract linking bulb to ipsilateral dorsal telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:0034730 ! olfactory tract linking bulb to ipsilateral dorsal telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001692 ! -property_value: IAO:0000589 "hindbrain commissure (zebrafish)" xsd:string -intersection_of: UBERON:0034763 ! hindbrain commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007073 ! -property_value: IAO:0000589 "venous sinus cavity (zebrafish)" xsd:string -intersection_of: UBERON:0034940 ! venous sinus cavity -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000235 ! -property_value: IAO:0000589 "magnocellular superficial pretectal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0035563 ! magnocellular superficial pretectal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000406 ! -property_value: IAO:0000589 "parvocellular superficial pretectal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0035564 ! parvocellular superficial pretectal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000631 ! -property_value: IAO:0000589 "caudal pretectal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0035565 ! caudal pretectal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000635 ! -property_value: IAO:0000589 "central pretectal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0035566 ! central pretectal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000714 ! -property_value: IAO:0000589 "accessory pretectal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0035567 ! accessory pretectal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000601 ! -property_value: IAO:0000589 "periventricular pretectal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0035569 ! periventricular pretectal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000404 ! -property_value: IAO:0000589 "paracommissural periventricular pretectal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:0035577 ! paracommissural periventricular pretectal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005765 ! -property_value: IAO:0000589 "pericardial fat (zebrafish)" xsd:string -intersection_of: UBERON:0035814 ! pericardial fat -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005594 ! -property_value: IAO:0000589 "anatomical surface region (zebrafish)" xsd:string -intersection_of: UBERON:0036215 ! anatomical surface region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005043 ! -property_value: IAO:0000589 "mole (zebrafish)" xsd:string -intersection_of: UBERON:1000010 ! mole -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000000 ! -property_value: IAO:0000589 "Brachet's cleft (zebrafish)" xsd:string -intersection_of: UBERON:2000000 ! Brachet's cleft -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000001 ! -property_value: IAO:0000589 "Kupffer's vesicle (zebrafish)" xsd:string -intersection_of: UBERON:2000001 ! Kupffer's vesicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000004 ! -property_value: IAO:0000589 "anterior axial hypoblast (zebrafish)" xsd:string -intersection_of: UBERON:2000004 ! anterior axial hypoblast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000006 ! -property_value: IAO:0000589 "ball (zebrafish)" xsd:string -intersection_of: UBERON:2000006 ! ball -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000033 ! -property_value: IAO:0000589 "intermediate cell mass of mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:2000033 ! intermediate cell mass of mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000039 ! -property_value: IAO:0000589 "median axial vein (zebrafish)" xsd:string -intersection_of: UBERON:2000039 ! median axial vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000040 ! -property_value: IAO:0000589 "median fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2000040 ! median fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000044 ! -property_value: IAO:0000589 "myotome somite 14 (zebrafish)" xsd:string -intersection_of: UBERON:2000044 ! myotome somite 14 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000052 ! -property_value: IAO:0000589 "dorsal actinotrichium (zebrafish)" xsd:string -intersection_of: UBERON:2000052 ! dorsal actinotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000058 ! -property_value: IAO:0000589 "polster (zebrafish)" xsd:string -intersection_of: UBERON:2000058 ! polster -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000068 ! -property_value: IAO:0000589 "neural plate proneural cluster (zebrafish)" xsd:string -intersection_of: UBERON:2000068 ! neural plate proneural cluster -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000072 ! -property_value: IAO:0000589 "somite 1 (zebrafish)" xsd:string -intersection_of: UBERON:2000072 ! somite 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000073 ! -property_value: IAO:0000589 "somite 5 (zebrafish)" xsd:string -intersection_of: UBERON:2000073 ! somite 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000074 ! -property_value: IAO:0000589 "somite 26 (zebrafish)" xsd:string -intersection_of: UBERON:2000074 ! somite 26 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000078 ! -property_value: IAO:0000589 "ventral actinotrichium (zebrafish)" xsd:string -intersection_of: UBERON:2000078 ! ventral actinotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000083 ! -property_value: IAO:0000589 "ventral mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:2000083 ! ventral mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000084 ! -property_value: IAO:0000589 "yolk (zebrafish)" xsd:string -intersection_of: UBERON:2000084 ! yolk -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000088 ! -property_value: IAO:0000589 "yolk syncytial layer (zebrafish)" xsd:string -intersection_of: UBERON:2000088 ! yolk syncytial layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000089 ! -property_value: IAO:0000589 "actinotrichium (zebrafish)" xsd:string -intersection_of: UBERON:2000089 ! actinotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005435 ! -property_value: IAO:0000589 "actinotrichium (zebrafish)" xsd:string -intersection_of: UBERON:2000089 ! actinotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000090 ! -property_value: IAO:0000589 "apical ectodermal ridge dorsal fin (zebrafish)" xsd:string -intersection_of: UBERON:2000090 ! apical ectodermal ridge dorsal fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000096 ! -property_value: IAO:0000589 "cardinal system (zebrafish)" xsd:string -intersection_of: UBERON:2000096 ! cardinal system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000098 ! -property_value: IAO:0000589 "proliferative region (zebrafish)" xsd:string -intersection_of: UBERON:2000098 ! proliferative region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000102 ! -property_value: IAO:0000589 "dorsal fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2000102 ! dorsal fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000106 ! -property_value: IAO:0000589 "extension (zebrafish)" xsd:string -intersection_of: UBERON:2000106 ! extension -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000116 ! -property_value: IAO:0000589 "macula lagena (zebrafish)" xsd:string -intersection_of: UBERON:2000116 ! macula lagena -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000120 ! -property_value: IAO:0000589 "lateral line ganglion (zebrafish)" xsd:string -intersection_of: UBERON:2000120 ! lateral line ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000125 ! -property_value: IAO:0000589 "mandibular lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2000125 ! mandibular lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000136 ! -property_value: IAO:0000589 "otic lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2000136 ! otic lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000156 ! -property_value: IAO:0000589 "somite 20 (zebrafish)" xsd:string -intersection_of: UBERON:2000156 ! somite 20 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000157 ! -property_value: IAO:0000589 "somite 30 (zebrafish)" xsd:string -intersection_of: UBERON:2000157 ! somite 30 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000164 ! -property_value: IAO:0000589 "ventral mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:2000164 ! ventral mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000165 ! -property_value: IAO:0000589 "inferior lobe (zebrafish)" xsd:string -intersection_of: UBERON:2000165 ! inferior lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000168 ! -property_value: IAO:0000589 "anterior macula (zebrafish)" xsd:string -intersection_of: UBERON:2000168 ! anterior macula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000174 ! -property_value: IAO:0000589 "caudal cerebellar tract (zebrafish)" xsd:string -intersection_of: UBERON:2000174 ! caudal cerebellar tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000175 ! -property_value: IAO:0000589 "posterior lateral line nerve (zebrafish)" xsd:string -intersection_of: UBERON:2000175 ! posterior lateral line nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000177 ! -property_value: IAO:0000589 "caudal oblique (zebrafish)" xsd:string -intersection_of: UBERON:2000177 ! caudal oblique -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000178 ! -property_value: IAO:0000589 "caudal peduncle (zebrafish)" xsd:string -intersection_of: UBERON:2000178 ! caudal peduncle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000182 ! -property_value: IAO:0000589 "central caudal thalamic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000182 ! central caudal thalamic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000183 ! -property_value: IAO:0000589 "central pretectum (zebrafish)" xsd:string -intersection_of: UBERON:2000183 ! central pretectum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000185 ! -property_value: IAO:0000589 "commissura rostral, pars ventralis (zebrafish)" xsd:string -intersection_of: UBERON:2000185 ! commissura rostral, pars ventralis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000188 ! -property_value: IAO:0000589 "corpus cerebelli (zebrafish)" xsd:string -intersection_of: UBERON:2000188 ! corpus cerebelli -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000193 ! -property_value: IAO:0000589 "diffuse nuclei (zebrafish)" xsd:string -intersection_of: UBERON:2000193 ! diffuse nuclei -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000194 ! -property_value: IAO:0000589 "dorsal accessory optic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000194 ! dorsal accessory optic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000195 ! -property_value: IAO:0000589 "dorsal depressor muscle (zebrafish)" xsd:string -intersection_of: UBERON:2000195 ! dorsal depressor muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000196 ! -property_value: IAO:0000589 "dorsal hypohyal bone (zebrafish)" xsd:string -intersection_of: UBERON:2000196 ! dorsal hypohyal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000199 ! -property_value: IAO:0000589 "dorsal periventricular hypothalamus (zebrafish)" xsd:string -intersection_of: UBERON:2000199 ! dorsal periventricular hypothalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000201 ! -property_value: IAO:0000589 "dorsal transverse (zebrafish)" xsd:string -intersection_of: UBERON:2000201 ! dorsal transverse -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000202 ! -property_value: IAO:0000589 "efferent portion of pharyngeal arch artery (zebrafish)" xsd:string -intersection_of: UBERON:2000202 ! efferent portion of pharyngeal arch artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000205 ! -property_value: IAO:0000589 "external ventral flexor (zebrafish)" xsd:string -intersection_of: UBERON:2000205 ! external ventral flexor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000209 ! -property_value: IAO:0000589 "lateral preglomerular nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000209 ! lateral preglomerular nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000210 ! -property_value: IAO:0000589 "gigantocellular part of magnocellular preoptic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000210 ! gigantocellular part of magnocellular preoptic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000211 ! -property_value: IAO:0000589 "gill lamella (zebrafish)" xsd:string -intersection_of: UBERON:2000211 ! gill lamella -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000212 ! -property_value: IAO:0000589 "granular eminence (zebrafish)" xsd:string -intersection_of: UBERON:2000212 ! granular eminence -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000214 ! -property_value: IAO:0000589 "hypobranchial vessel (zebrafish)" xsd:string -intersection_of: UBERON:2000214 ! hypobranchial vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000216 ! -property_value: IAO:0000589 "infracarinalis (zebrafish)" xsd:string -intersection_of: UBERON:2000216 ! infracarinalis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000221 ! -property_value: IAO:0000589 "internal levator (zebrafish)" xsd:string -intersection_of: UBERON:2000221 ! internal levator -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000222 ! -property_value: IAO:0000589 "isthmic primary nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000222 ! isthmic primary nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000223 ! -property_value: IAO:0000589 "infraorbital 1 (zebrafish)" xsd:string -intersection_of: UBERON:2000223 ! infraorbital 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001593 ! -property_value: IAO:0000589 "quadrate ventral process (zebrafish)" xsd:string -intersection_of: UBERON:2000224 ! quadrate ventral process -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000225 ! -property_value: IAO:0000589 "lateral crista primordium (zebrafish)" xsd:string -intersection_of: UBERON:2000225 ! lateral crista primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000226 ! -property_value: IAO:0000589 "lateral ethmoid bone (zebrafish)" xsd:string -intersection_of: UBERON:2000226 ! lateral ethmoid bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000228 ! -property_value: IAO:0000589 "lateral line primordium (zebrafish)" xsd:string -intersection_of: UBERON:2000228 ! lateral line primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000230 ! -property_value: IAO:0000589 "longitudinal hypochordal (zebrafish)" xsd:string -intersection_of: UBERON:2000230 ! longitudinal hypochordal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000232 ! -property_value: IAO:0000589 "lateral semicircular canal primordium (zebrafish)" xsd:string -intersection_of: UBERON:2000232 ! lateral semicircular canal primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000233 ! -property_value: IAO:0000589 "lower oral valve (zebrafish)" xsd:string -intersection_of: UBERON:2000233 ! lower oral valve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000234 ! -property_value: IAO:0000589 "macula neglecta (zebrafish)" xsd:string -intersection_of: UBERON:2000234 ! macula neglecta -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000238 ! -property_value: IAO:0000589 "olfactory tract linking bulb to ipsilateral ventral telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:2000238 ! olfactory tract linking bulb to ipsilateral ventral telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000239 ! -property_value: IAO:0000589 "mesocoracoid bone (zebrafish)" xsd:string -intersection_of: UBERON:2000239 ! mesocoracoid bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000240 ! -property_value: IAO:0000589 "metapterygoid (zebrafish)" xsd:string -intersection_of: UBERON:2000240 ! metapterygoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000241 ! -property_value: IAO:0000589 "midline column (zebrafish)" xsd:string -intersection_of: UBERON:2000241 ! midline column -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000245 ! -property_value: IAO:0000589 "nucleus of the descending root (zebrafish)" xsd:string -intersection_of: UBERON:2000245 ! nucleus of the descending root -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000248 ! -property_value: IAO:0000589 "magnocellular preoptic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000248 ! magnocellular preoptic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000250 ! -property_value: IAO:0000589 "opercle (zebrafish)" xsd:string -intersection_of: UBERON:2000250 ! opercle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000259 ! -property_value: IAO:0000589 "mandibular lateral line (zebrafish)" xsd:string -intersection_of: UBERON:2000259 ! mandibular lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000261 ! -property_value: IAO:0000589 "pharyngohyoid (zebrafish)" xsd:string -intersection_of: UBERON:2000261 ! pharyngohyoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000264 ! -property_value: IAO:0000589 "preopercle (zebrafish)" xsd:string -intersection_of: UBERON:2000264 ! preopercle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000267 ! -property_value: IAO:0000589 "primary olfactory fiber layer (zebrafish)" xsd:string -intersection_of: UBERON:2000267 ! primary olfactory fiber layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000268 ! -property_value: IAO:0000589 "anal fin proximal radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000268 ! anal fin proximal radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000269 ! -property_value: IAO:0000589 "inferior ventral flexor (zebrafish)" xsd:string -intersection_of: UBERON:2000269 ! inferior ventral flexor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000271 ! -property_value: IAO:0000589 "radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000271 ! radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000274 ! -property_value: IAO:0000589 "rostral octaval nerve sensory nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000274 ! rostral octaval nerve sensory nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000276 ! -property_value: IAO:0000589 "rostrolateral thalamic nucleus of Butler & Saidel (zebrafish)" xsd:string -intersection_of: UBERON:2000276 ! rostrolateral thalamic nucleus of Butler & Saidel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000278 ! -property_value: IAO:0000589 "secondary gustatory nucleus medulla oblongata (zebrafish)" xsd:string -intersection_of: UBERON:2000278 ! secondary gustatory nucleus medulla oblongata -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000280 ! -property_value: IAO:0000589 "medial division (zebrafish)" xsd:string -intersection_of: UBERON:2000280 ! medial division -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000284 ! -property_value: IAO:0000589 "subopercle (zebrafish)" xsd:string -intersection_of: UBERON:2000284 ! subopercle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000285 ! -property_value: IAO:0000589 "superficial adductor (zebrafish)" xsd:string -intersection_of: UBERON:2000285 ! superficial adductor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000286 ! -property_value: IAO:0000589 "superficial lateralis (teleost) (zebrafish)" xsd:string -intersection_of: UBERON:2000286 ! superficial lateralis (teleost) -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000287 ! -property_value: IAO:0000589 "superior dorsal flexor (zebrafish)" xsd:string -intersection_of: UBERON:2000287 ! superior dorsal flexor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000288 ! -property_value: IAO:0000589 "supracarinalis (zebrafish)" xsd:string -intersection_of: UBERON:2000288 ! supracarinalis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001594 ! -property_value: IAO:0000589 "preopercle horizontal limb (zebrafish)" xsd:string -intersection_of: UBERON:2000289 ! preopercle horizontal limb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000291 ! -property_value: IAO:0000589 "medial octavolateralis nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000291 ! medial octavolateralis nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000293 ! -property_value: IAO:0000589 "synencephalon (zebrafish)" xsd:string -intersection_of: UBERON:2000293 ! synencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000294 ! -property_value: IAO:0000589 "torus lateralis (zebrafish)" xsd:string -intersection_of: UBERON:2000294 ! torus lateralis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000296 ! -property_value: IAO:0000589 "uncrossed tecto-bulbar tract (zebrafish)" xsd:string -intersection_of: UBERON:2000296 ! uncrossed tecto-bulbar tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000298 ! -property_value: IAO:0000589 "vent (zebrafish)" xsd:string -intersection_of: UBERON:2000298 ! vent -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000300 ! -property_value: IAO:0000589 "ventral hypohyal bone (zebrafish)" xsd:string -intersection_of: UBERON:2000300 ! ventral hypohyal bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000305 ! -property_value: IAO:0000589 "ventral sulcus (zebrafish)" xsd:string -intersection_of: UBERON:2000305 ! ventral sulcus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000307 ! -property_value: IAO:0000589 "vestibulolateralis lobe (zebrafish)" xsd:string -intersection_of: UBERON:2000307 ! vestibulolateralis lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000309 ! -property_value: IAO:0000589 "external yolk syncytial layer (zebrafish)" xsd:string -intersection_of: UBERON:2000309 ! external yolk syncytial layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000311 ! -property_value: IAO:0000589 "adductor mandibulae complex (zebrafish)" xsd:string -intersection_of: UBERON:2000311 ! adductor mandibulae complex -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000313 ! -property_value: IAO:0000589 "anal inclinator (zebrafish)" xsd:string -intersection_of: UBERON:2000313 ! anal inclinator -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000315 ! -property_value: IAO:0000589 "asteriscus (zebrafish)" xsd:string -intersection_of: UBERON:2000315 ! asteriscus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000318 ! -property_value: IAO:0000589 "brainstem and spinal white matter (zebrafish)" xsd:string -intersection_of: UBERON:2000318 ! brainstem and spinal white matter -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000319 ! -property_value: IAO:0000589 "branchiostegal membrane (zebrafish)" xsd:string -intersection_of: UBERON:2000319 ! branchiostegal membrane -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000321 ! -property_value: IAO:0000589 "caudal levator (zebrafish)" xsd:string -intersection_of: UBERON:2000321 ! caudal levator -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000322 ! -property_value: IAO:0000589 "caudal octaval nerve sensory nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000322 ! caudal octaval nerve sensory nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000324 ! -property_value: IAO:0000589 "caudal periventricular hypothalamus (zebrafish)" xsd:string -intersection_of: UBERON:2000324 ! caudal periventricular hypothalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000335 ! -property_value: IAO:0000589 "crossed tecto-bulbar tract (zebrafish)" xsd:string -intersection_of: UBERON:2000335 ! crossed tecto-bulbar tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001595 ! -property_value: IAO:0000589 "preopercle vertical limb (zebrafish)" xsd:string -intersection_of: UBERON:2000336 ! preopercle vertical limb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001598 ! -property_value: IAO:0000589 "basioccipital posterodorsal region (zebrafish)" xsd:string -intersection_of: UBERON:2000337 ! basioccipital posterodorsal region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000341 ! -property_value: IAO:0000589 "dorsal flexor (zebrafish)" xsd:string -intersection_of: UBERON:2000341 ! dorsal flexor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000342 ! -property_value: IAO:0000589 "dorsal inclinator muscle (zebrafish)" xsd:string -intersection_of: UBERON:2000342 ! dorsal inclinator muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000347 ! -property_value: IAO:0000589 "dorsal zone of median tuberal portion of hypothalamus (zebrafish)" xsd:string -intersection_of: UBERON:2000347 ! dorsal zone of median tuberal portion of hypothalamus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001597 ! -property_value: IAO:0000589 "exoccipital posteroventral region (zebrafish)" xsd:string -intersection_of: UBERON:2000348 ! exoccipital posteroventral region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000349 ! -property_value: IAO:0000589 "epaxialis (zebrafish)" xsd:string -intersection_of: UBERON:2000349 ! epaxialis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000350 ! -property_value: IAO:0000589 "epipleural (zebrafish)" xsd:string -intersection_of: UBERON:2000350 ! epipleural -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000352 ! -property_value: IAO:0000589 "external cellular layer (zebrafish)" xsd:string -intersection_of: UBERON:2000352 ! external cellular layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000356 ! -property_value: IAO:0000589 "gill raker (zebrafish)" xsd:string -intersection_of: UBERON:2000356 ! gill raker -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000358 ! -property_value: IAO:0000589 "granular layer corpus cerebelli (zebrafish)" xsd:string -intersection_of: UBERON:2000358 ! granular layer corpus cerebelli -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000362 ! -property_value: IAO:0000589 "hypaxialis (zebrafish)" xsd:string -intersection_of: UBERON:2000362 ! hypaxialis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000363 ! -property_value: IAO:0000589 "hypobranchial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000363 ! hypobranchial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000364 ! -property_value: IAO:0000589 "hypural (zebrafish)" xsd:string -intersection_of: UBERON:2000364 ! hypural -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000371 ! -property_value: IAO:0000589 "internal pharyngoclavicularis (zebrafish)" xsd:string -intersection_of: UBERON:2000371 ! internal pharyngoclavicularis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000372 ! -property_value: IAO:0000589 "interpeduncular nucleus medulla oblongata (zebrafish)" xsd:string -intersection_of: UBERON:2000372 ! interpeduncular nucleus medulla oblongata -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005398 ! -property_value: IAO:0000589 "anal fin actinotrichium (zebrafish)" xsd:string -intersection_of: UBERON:2000375 ! anal fin actinotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000376 ! -property_value: IAO:0000589 "infraorbital (zebrafish)" xsd:string -intersection_of: UBERON:2000376 ! infraorbital -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000381 ! -property_value: IAO:0000589 "lateral line sensory nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000381 ! lateral line sensory nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000384 ! -property_value: IAO:0000589 "levator arcus palatini (zebrafish)" xsd:string -intersection_of: UBERON:2000384 ! levator arcus palatini -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000388 ! -property_value: IAO:0000589 "medial caudal lobe (zebrafish)" xsd:string -intersection_of: UBERON:2000388 ! medial caudal lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000389 ! -property_value: IAO:0000589 "medial funicular nucleus medulla oblongata (zebrafish)" xsd:string -intersection_of: UBERON:2000389 ! medial funicular nucleus medulla oblongata -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000390 ! -property_value: IAO:0000589 "medial preglomerular nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000390 ! medial preglomerular nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000392 ! -property_value: IAO:0000589 "median tuberal portion (zebrafish)" xsd:string -intersection_of: UBERON:2000392 ! median tuberal portion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000394 ! -property_value: IAO:0000589 "molecular layer corpus cerebelli (zebrafish)" xsd:string -intersection_of: UBERON:2000394 ! molecular layer corpus cerebelli -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000397 ! -property_value: IAO:0000589 "nucleus subglomerulosis (zebrafish)" xsd:string -intersection_of: UBERON:2000397 ! nucleus subglomerulosis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000398 ! -property_value: IAO:0000589 "nucleus isthmi (zebrafish)" xsd:string -intersection_of: UBERON:2000398 ! nucleus isthmi -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000399 ! -property_value: IAO:0000589 "secondary gustatory nucleus trigeminal nuclei (zebrafish)" xsd:string -intersection_of: UBERON:2000399 ! secondary gustatory nucleus trigeminal nuclei -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000401 ! -property_value: IAO:0000589 "octaval nerve sensory nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000401 ! octaval nerve sensory nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000408 ! -property_value: IAO:0000589 "periventricular nucleus of caudal tuberculum (zebrafish)" xsd:string -intersection_of: UBERON:2000408 ! periventricular nucleus of caudal tuberculum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000410 ! -property_value: IAO:0000589 "postcleithrum (zebrafish)" xsd:string -intersection_of: UBERON:2000410 ! postcleithrum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000411 ! -property_value: IAO:0000589 "posterior crista primordium (zebrafish)" xsd:string -intersection_of: UBERON:2000411 ! posterior crista primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000412 ! -property_value: IAO:0000589 "posterior semicircular canal primordium (zebrafish)" xsd:string -intersection_of: UBERON:2000412 ! posterior semicircular canal primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000414 ! -property_value: IAO:0000589 "presumptive cephalic mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:2000414 ! presumptive cephalic mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000419 ! -property_value: IAO:0000589 "pterosphenoid (zebrafish)" xsd:string -intersection_of: UBERON:2000419 ! pterosphenoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000422 ! -property_value: IAO:0000589 "retroarticular (zebrafish)" xsd:string -intersection_of: UBERON:2000422 ! retroarticular -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000424 ! -property_value: IAO:0000589 "opercular lateral line (zebrafish)" xsd:string -intersection_of: UBERON:2000424 ! opercular lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000425 ! -property_value: IAO:0000589 "anterior lateral line nerve (zebrafish)" xsd:string -intersection_of: UBERON:2000425 ! anterior lateral line nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000426 ! -property_value: IAO:0000589 "rostral parvocellular preoptic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000426 ! rostral parvocellular preoptic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000429 ! -property_value: IAO:0000589 "scaphium (zebrafish)" xsd:string -intersection_of: UBERON:2000429 ! scaphium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000430 ! -property_value: IAO:0000589 "secondary gustatory tract (zebrafish)" xsd:string -intersection_of: UBERON:2000430 ! secondary gustatory tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005424 ! -property_value: IAO:0000589 "caudal fin actinotrichium (zebrafish)" xsd:string -intersection_of: UBERON:2000437 ! caudal fin actinotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000438 ! -property_value: IAO:0000589 "parhypural (zebrafish)" xsd:string -intersection_of: UBERON:2000438 ! parhypural -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000439 ! -property_value: IAO:0000589 "superficial pelvic abductor (zebrafish)" xsd:string -intersection_of: UBERON:2000439 ! superficial pelvic abductor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000440 ! -property_value: IAO:0000589 "superior raphe nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000440 ! superior raphe nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000442 ! -property_value: IAO:0000589 "supraneural bone (zebrafish)" xsd:string -intersection_of: UBERON:2000442 ! supraneural bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000448 ! -property_value: IAO:0000589 "tertiary gustatory nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000448 ! tertiary gustatory nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000449 ! -property_value: IAO:0000589 "torus longitudinalis (zebrafish)" xsd:string -intersection_of: UBERON:2000449 ! torus longitudinalis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000451 ! -property_value: IAO:0000589 "upper oral valve (zebrafish)" xsd:string -intersection_of: UBERON:2000451 ! upper oral valve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000452 ! -property_value: IAO:0000589 "urohyal (zebrafish)" xsd:string -intersection_of: UBERON:2000452 ! urohyal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000454 ! -property_value: IAO:0000589 "ventral accessory optic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000454 ! ventral accessory optic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000455 ! -property_value: IAO:0000589 "ventral flexor (zebrafish)" xsd:string -intersection_of: UBERON:2000455 ! ventral flexor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000459 ! -property_value: IAO:0000589 "ventromedial thalamic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000459 ! ventromedial thalamic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000461 ! -property_value: IAO:0000589 "Weberian ossicle (zebrafish)" xsd:string -intersection_of: UBERON:2000461 ! Weberian ossicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000462 ! -property_value: IAO:0000589 "abductor hyohyoid (zebrafish)" xsd:string -intersection_of: UBERON:2000462 ! abductor hyohyoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000464 ! -property_value: IAO:0000589 "otic lateral line (zebrafish)" xsd:string -intersection_of: UBERON:2000464 ! otic lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000465 ! -property_value: IAO:0000589 "adductor operculi (zebrafish)" xsd:string -intersection_of: UBERON:2000465 ! adductor operculi -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000466 ! -property_value: IAO:0000589 "anal depressor (zebrafish)" xsd:string -intersection_of: UBERON:2000466 ! anal depressor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000468 ! -property_value: IAO:0000589 "anterior crista primordium (zebrafish)" xsd:string -intersection_of: UBERON:2000468 ! anterior crista primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000469 ! -property_value: IAO:0000589 "anterior semicircular canal primordium (zebrafish)" xsd:string -intersection_of: UBERON:2000469 ! anterior semicircular canal primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000474 ! -property_value: IAO:0000589 "intercalar (zebrafish)" xsd:string -intersection_of: UBERON:2000474 ! intercalar -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000475 ! -property_value: IAO:0000589 "paraventricular organ (zebrafish)" xsd:string -intersection_of: UBERON:2000475 ! paraventricular organ -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000476 ! -property_value: IAO:0000589 "branchiostegal ray (zebrafish)" xsd:string -intersection_of: UBERON:2000476 ! branchiostegal ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000479 ! -property_value: IAO:0000589 "caudal mesencephalo-cerebellar tract (zebrafish)" xsd:string -intersection_of: UBERON:2000479 ! caudal mesencephalo-cerebellar tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000480 ! -property_value: IAO:0000589 "caudal octavolateralis nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000480 ! caudal octavolateralis nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000481 ! -property_value: IAO:0000589 "caudal preglomerular nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000481 ! caudal preglomerular nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000482 ! -property_value: IAO:0000589 "caudal tuberal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000482 ! caudal tuberal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000484 ! -property_value: IAO:0000589 "celiacomesenteric artery (zebrafish)" xsd:string -intersection_of: UBERON:2000484 ! celiacomesenteric artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000485 ! -property_value: IAO:0000589 "central nucleus inferior lobe (zebrafish)" xsd:string -intersection_of: UBERON:2000485 ! central nucleus inferior lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000488 ! -property_value: IAO:0000589 "ceratobranchial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000488 ! ceratobranchial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000492 ! -property_value: IAO:0000589 "coracoradialis (zebrafish)" xsd:string -intersection_of: UBERON:2000492 ! coracoradialis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000495 ! -property_value: IAO:0000589 "infraorbital 5 (zebrafish)" xsd:string -intersection_of: UBERON:2000495 ! infraorbital 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000497 ! -property_value: IAO:0000589 "pelvic adductor profundus (zebrafish)" xsd:string -intersection_of: UBERON:2000497 ! pelvic adductor profundus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000498 ! -property_value: IAO:0000589 "dilatator operculi (zebrafish)" xsd:string -intersection_of: UBERON:2000498 ! dilatator operculi -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000499 ! -property_value: IAO:0000589 "dorsal arrector (zebrafish)" xsd:string -intersection_of: UBERON:2000499 ! dorsal arrector -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000500 ! -property_value: IAO:0000589 "dorsal erector muscle (zebrafish)" xsd:string -intersection_of: UBERON:2000500 ! dorsal erector muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000502 ! -property_value: IAO:0000589 "dorsal motor nucleus trigeminal nerve (zebrafish)" xsd:string -intersection_of: UBERON:2000502 ! dorsal motor nucleus trigeminal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000503 ! -property_value: IAO:0000589 "dorsal oblique branchial muscle (zebrafish)" xsd:string -intersection_of: UBERON:2000503 ! dorsal oblique branchial muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000504 ! -property_value: IAO:0000589 "dorsal retractor (zebrafish)" xsd:string -intersection_of: UBERON:2000504 ! dorsal retractor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000507 ! -property_value: IAO:0000589 "epineural (zebrafish)" xsd:string -intersection_of: UBERON:2000507 ! epineural -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000508 ! -property_value: IAO:0000589 "pelvic fin radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000508 ! pelvic fin radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000510 ! -property_value: IAO:0000589 "external levatores (zebrafish)" xsd:string -intersection_of: UBERON:2000510 ! external levatores -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000512 ! -property_value: IAO:0000589 "facial lobe (zebrafish)" xsd:string -intersection_of: UBERON:2000512 ! facial lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000516 ! -property_value: IAO:0000589 "periventricular grey zone (zebrafish)" xsd:string -intersection_of: UBERON:2000516 ! periventricular grey zone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000517 ! -property_value: IAO:0000589 "glossopharyngeal lobe (zebrafish)" xsd:string -intersection_of: UBERON:2000517 ! glossopharyngeal lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000522 ! -property_value: IAO:0000589 "inferior hyohyoid (zebrafish)" xsd:string -intersection_of: UBERON:2000522 ! inferior hyohyoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000523 ! -property_value: IAO:0000589 "inferior reticular formation (zebrafish)" xsd:string -intersection_of: UBERON:2000523 ! inferior reticular formation -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000525 ! -property_value: IAO:0000589 "intercalarium (zebrafish)" xsd:string -intersection_of: UBERON:2000525 ! intercalarium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000526 ! -property_value: IAO:0000589 "intermuscular bone (zebrafish)" xsd:string -intersection_of: UBERON:2000526 ! intermuscular bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000527 ! -property_value: IAO:0000589 "pharyngobranchial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000527 ! pharyngobranchial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000528 ! -property_value: IAO:0000589 "interradialis (zebrafish)" xsd:string -intersection_of: UBERON:2000528 ! interradialis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000530 ! -property_value: IAO:0000589 "lapillus (zebrafish)" xsd:string -intersection_of: UBERON:2000530 ! lapillus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000532 ! -property_value: IAO:0000589 "lateral division (zebrafish)" xsd:string -intersection_of: UBERON:2000532 ! lateral division -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000540 ! -property_value: IAO:0000589 "magnocellular octaval nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000540 ! magnocellular octaval nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000542 ! -property_value: IAO:0000589 "medial column (zebrafish)" xsd:string -intersection_of: UBERON:2000542 ! medial column -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005545 ! -property_value: IAO:0000589 "pectoral fin actinotrichium (zebrafish)" xsd:string -intersection_of: UBERON:2000544 ! pectoral fin actinotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000549 ! -property_value: IAO:0000589 "posttemporal (zebrafish)" xsd:string -intersection_of: UBERON:2000549 ! posttemporal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000551 ! -property_value: IAO:0000589 "nucleus lateralis valvulae (zebrafish)" xsd:string -intersection_of: UBERON:2000551 ! nucleus lateralis valvulae -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000555 ! -property_value: IAO:0000589 "opercular flap (zebrafish)" xsd:string -intersection_of: UBERON:2000555 ! opercular flap -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000557 ! -property_value: IAO:0000589 "preural 1 vertebra (zebrafish)" xsd:string -intersection_of: UBERON:2000557 ! preural 1 vertebra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000558 ! -property_value: IAO:0000589 "posterior macula (zebrafish)" xsd:string -intersection_of: UBERON:2000558 ! posterior macula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000564 ! -property_value: IAO:0000589 "pelvic abductor profundus (zebrafish)" xsd:string -intersection_of: UBERON:2000564 ! pelvic abductor profundus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000573 ! -property_value: IAO:0000589 "internal cellular layer (zebrafish)" xsd:string -intersection_of: UBERON:2000573 ! internal cellular layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000576 ! -property_value: IAO:0000589 "pterotic (zebrafish)" xsd:string -intersection_of: UBERON:2000576 ! pterotic -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000579 ! -property_value: IAO:0000589 "rostral mesencephalo-cerebellar tract (zebrafish)" xsd:string -intersection_of: UBERON:2000579 ! rostral mesencephalo-cerebellar tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000580 ! -property_value: IAO:0000589 "rostral preglomerular nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000580 ! rostral preglomerular nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000581 ! -property_value: IAO:0000589 "rostral tuberal nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000581 ! rostral tuberal nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000582 ! -property_value: IAO:0000589 "saccus dorsalis (zebrafish)" xsd:string -intersection_of: UBERON:2000582 ! saccus dorsalis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000585 ! -property_value: IAO:0000589 "kinethmoid cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2000585 ! kinethmoid cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000586 ! -property_value: IAO:0000589 "preural 2 vertebra (zebrafish)" xsd:string -intersection_of: UBERON:2000586 ! preural 2 vertebra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000587 ! -property_value: IAO:0000589 "sphenotic (zebrafish)" xsd:string -intersection_of: UBERON:2000587 ! sphenotic -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000589 ! -property_value: IAO:0000589 "sulcus ypsiloniformis (zebrafish)" xsd:string -intersection_of: UBERON:2000589 ! sulcus ypsiloniformis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000592 ! -property_value: IAO:0000589 "superficial pelvic adductor (zebrafish)" xsd:string -intersection_of: UBERON:2000592 ! superficial pelvic adductor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000593 ! -property_value: IAO:0000589 "superior reticular formation medial column (zebrafish)" xsd:string -intersection_of: UBERON:2000593 ! superior reticular formation medial column -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000594 ! -property_value: IAO:0000589 "supracleithrum (zebrafish)" xsd:string -intersection_of: UBERON:2000594 ! supracleithrum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005546 ! -property_value: IAO:0000589 "pelvic fin actinotrichium (zebrafish)" xsd:string -intersection_of: UBERON:2000596 ! pelvic fin actinotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000597 ! -property_value: IAO:0000589 "telencephalic tracts (zebrafish)" xsd:string -intersection_of: UBERON:2000597 ! telencephalic tracts -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000599 ! -property_value: IAO:0000589 "torus semicircularis (zebrafish)" xsd:string -intersection_of: UBERON:2000599 ! torus semicircularis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000602 ! -property_value: IAO:0000589 "uroneural (zebrafish)" xsd:string -intersection_of: UBERON:2000602 ! uroneural -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000603 ! -property_value: IAO:0000589 "valvula cerebelli (zebrafish)" xsd:string -intersection_of: UBERON:2000603 ! valvula cerebelli -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000608 ! -property_value: IAO:0000589 "ventral transverse (zebrafish)" xsd:string -intersection_of: UBERON:2000608 ! ventral transverse -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000609 ! -property_value: IAO:0000589 "ventrolateral nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000609 ! ventrolateral nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000610 ! -property_value: IAO:0000589 "vertical myoseptum (zebrafish)" xsd:string -intersection_of: UBERON:2000610 ! vertical myoseptum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000611 ! -property_value: IAO:0000589 "visceromotor column (zebrafish)" xsd:string -intersection_of: UBERON:2000611 ! visceromotor column -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000614 ! -property_value: IAO:0000589 "abductor profundus (zebrafish)" xsd:string -intersection_of: UBERON:2000614 ! abductor profundus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000615 ! -property_value: IAO:0000589 "adductor arcus palatini (zebrafish)" xsd:string -intersection_of: UBERON:2000615 ! adductor arcus palatini -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000616 ! -property_value: IAO:0000589 "adductor profundus (zebrafish)" xsd:string -intersection_of: UBERON:2000616 ! adductor profundus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000617 ! -property_value: IAO:0000589 "anal erector (zebrafish)" xsd:string -intersection_of: UBERON:2000617 ! anal erector -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000620 ! -property_value: IAO:0000589 "autopalatine (zebrafish)" xsd:string -intersection_of: UBERON:2000620 ! autopalatine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000622 ! -property_value: IAO:0000589 "barbel (zebrafish)" xsd:string -intersection_of: UBERON:2000622 ! barbel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000623 ! -property_value: IAO:0000589 "basipterygium bone (zebrafish)" xsd:string -intersection_of: UBERON:2000623 ! basipterygium bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000627 ! -property_value: IAO:0000589 "posterior ceratohyal (zebrafish)" xsd:string -intersection_of: UBERON:2000627 ! posterior ceratohyal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000628 ! -property_value: IAO:0000589 "caudal fin musculature (zebrafish)" xsd:string -intersection_of: UBERON:2000628 ! caudal fin musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000629 ! -property_value: IAO:0000589 "caudal motor nucleus of abducens (zebrafish)" xsd:string -intersection_of: UBERON:2000629 ! caudal motor nucleus of abducens -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000630 ! -property_value: IAO:0000589 "caudal parvocellular preoptic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000630 ! caudal parvocellular preoptic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000633 ! -property_value: IAO:0000589 "caudal tuberculum (zebrafish)" xsd:string -intersection_of: UBERON:2000633 ! caudal tuberculum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000636 ! -property_value: IAO:0000589 "cerebellar crest (zebrafish)" xsd:string -intersection_of: UBERON:2000636 ! cerebellar crest -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000637 ! -property_value: IAO:0000589 "claustrum cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2000637 ! claustrum cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000638 ! -property_value: IAO:0000589 "commissura rostral, pars dorsalis (zebrafish)" xsd:string -intersection_of: UBERON:2000638 ! commissura rostral, pars dorsalis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000639 ! -property_value: IAO:0000589 "commissure of the secondary gustatory nuclei (zebrafish)" xsd:string -intersection_of: UBERON:2000639 ! commissure of the secondary gustatory nuclei -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000643 ! -property_value: IAO:0000589 "rostral cerebellar tract (zebrafish)" xsd:string -intersection_of: UBERON:2000643 ! rostral cerebellar tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000645 ! -property_value: IAO:0000589 "descending octaval nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000645 ! descending octaval nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000646 ! -property_value: IAO:0000589 "anal fin distal radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000646 ! anal fin distal radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000647 ! -property_value: IAO:0000589 "dorsal caudal thalamic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000647 ! dorsal caudal thalamic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000648 ! -property_value: IAO:0000589 "dorsal fin musculature (zebrafish)" xsd:string -intersection_of: UBERON:2000648 ! dorsal fin musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000651 ! -property_value: IAO:0000589 "dorsal pelvic arrector (zebrafish)" xsd:string -intersection_of: UBERON:2000651 ! dorsal pelvic arrector -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000654 ! -property_value: IAO:0000589 "rostral motor nucleus of abducens (zebrafish)" xsd:string -intersection_of: UBERON:2000654 ! rostral motor nucleus of abducens -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000657 ! -property_value: IAO:0000589 "entopterygoid (zebrafish)" xsd:string -intersection_of: UBERON:2000657 ! entopterygoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000658 ! -property_value: IAO:0000589 "epibranchial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000658 ! epibranchial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000660 ! -property_value: IAO:0000589 "epural (zebrafish)" xsd:string -intersection_of: UBERON:2000660 ! epural -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000662 ! -property_value: IAO:0000589 "external pharyngoclavicularis (zebrafish)" xsd:string -intersection_of: UBERON:2000662 ! external pharyngoclavicularis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000663 ! -property_value: IAO:0000589 "extrascapula (zebrafish)" xsd:string -intersection_of: UBERON:2000663 ! extrascapula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000666 ! -property_value: IAO:0000589 "filamental artery (zebrafish)" xsd:string -intersection_of: UBERON:2000666 ! filamental artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000673 ! -property_value: IAO:0000589 "hypobranchial artery (zebrafish)" xsd:string -intersection_of: UBERON:2000673 ! hypobranchial artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000674 ! -property_value: IAO:0000589 "interopercle (zebrafish)" xsd:string -intersection_of: UBERON:2000674 ! interopercle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000676 ! -property_value: IAO:0000589 "sagitta (zebrafish)" xsd:string -intersection_of: UBERON:2000676 ! sagitta -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000677 ! -property_value: IAO:0000589 "segmental intercostal artery (zebrafish)" xsd:string -intersection_of: UBERON:2000677 ! segmental intercostal artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000685 ! -property_value: IAO:0000589 "superficial abductor (zebrafish)" xsd:string -intersection_of: UBERON:2000685 ! superficial abductor -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000687 ! -property_value: IAO:0000589 "superficial pretectum (zebrafish)" xsd:string -intersection_of: UBERON:2000687 ! superficial pretectum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000691 ! -property_value: IAO:0000589 "supraorbital bone (zebrafish)" xsd:string -intersection_of: UBERON:2000691 ! supraorbital bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000692 ! -property_value: IAO:0000589 "symplectic (zebrafish)" xsd:string -intersection_of: UBERON:2000692 ! symplectic -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000693 ! -property_value: IAO:0000589 "tangential nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2000693 ! tangential nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000694 ! -property_value: IAO:0000589 "ceratobranchial 5 tooth (zebrafish)" xsd:string -intersection_of: UBERON:2000694 ! ceratobranchial 5 tooth -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000695 ! -property_value: IAO:0000589 "labial cavities (zebrafish)" xsd:string -intersection_of: UBERON:2000695 ! labial cavities -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000698 ! -property_value: IAO:0000589 "tripus (zebrafish)" xsd:string -intersection_of: UBERON:2000698 ! tripus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000701 ! -property_value: IAO:0000589 "ventral arrector (zebrafish)" xsd:string -intersection_of: UBERON:2000701 ! ventral arrector -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000703 ! -property_value: IAO:0000589 "ventral motor nucleus trigeminal nerve (zebrafish)" xsd:string -intersection_of: UBERON:2000703 ! ventral motor nucleus trigeminal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000704 ! -property_value: IAO:0000589 "ventral pelvic arrector (zebrafish)" xsd:string -intersection_of: UBERON:2000704 ! ventral pelvic arrector -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000707 ! -property_value: IAO:0000589 "ventral zone (zebrafish)" xsd:string -intersection_of: UBERON:2000707 ! ventral zone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000710 ! -property_value: IAO:0000589 "viscerosensory commissural nucleus of Cajal (zebrafish)" xsd:string -intersection_of: UBERON:2000710 ! viscerosensory commissural nucleus of Cajal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000711 ! -property_value: IAO:0000589 "deep cell layer (gastrulation) (zebrafish)" xsd:string -intersection_of: UBERON:2000711 ! deep cell layer (gastrulation) -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000712 ! -property_value: IAO:0000589 "internal yolk syncytial layer (zebrafish)" xsd:string -intersection_of: UBERON:2000712 ! internal yolk syncytial layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000715 ! -property_value: IAO:0000589 "adductor hyohyoid (zebrafish)" xsd:string -intersection_of: UBERON:2000715 ! adductor hyohyoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000716 ! -property_value: IAO:0000589 "afferent portion of pharyngeal arch artery (zebrafish)" xsd:string -intersection_of: UBERON:2000716 ! afferent portion of pharyngeal arch artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000717 ! -property_value: IAO:0000589 "apical ectodermal ridge median fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2000717 ! apical ectodermal ridge median fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000718 ! -property_value: IAO:0000589 "epaxial region somite 27 (zebrafish)" xsd:string -intersection_of: UBERON:2000718 ! epaxial region somite 27 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000725 ! -property_value: IAO:0000589 "somite 11 (zebrafish)" xsd:string -intersection_of: UBERON:2000725 ! somite 11 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000726 ! -property_value: IAO:0000589 "somite 14 (zebrafish)" xsd:string -intersection_of: UBERON:2000726 ! somite 14 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000727 ! -property_value: IAO:0000589 "somite 17 (zebrafish)" xsd:string -intersection_of: UBERON:2000727 ! somite 17 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000728 ! -property_value: IAO:0000589 "somite 2 (zebrafish)" xsd:string -intersection_of: UBERON:2000728 ! somite 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000729 ! -property_value: IAO:0000589 "epaxial region somite 3 (zebrafish)" xsd:string -intersection_of: UBERON:2000729 ! epaxial region somite 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000730 ! -property_value: IAO:0000589 "somite 23 (zebrafish)" xsd:string -intersection_of: UBERON:2000730 ! somite 23 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000731 ! -property_value: IAO:0000589 "somite 27 (zebrafish)" xsd:string -intersection_of: UBERON:2000731 ! somite 27 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000732 ! -property_value: IAO:0000589 "somite 3 (zebrafish)" xsd:string -intersection_of: UBERON:2000732 ! somite 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000733 ! -property_value: IAO:0000589 "somite 7 (zebrafish)" xsd:string -intersection_of: UBERON:2000733 ! somite 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000734 ! -property_value: IAO:0000589 "preural vertebra (zebrafish)" xsd:string -intersection_of: UBERON:2000734 ! preural vertebra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000735 ! -property_value: IAO:0000589 "hemal postzygapophysis (zebrafish)" xsd:string -intersection_of: UBERON:2000735 ! hemal postzygapophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000739 ! -property_value: IAO:0000589 "epaxial region somite 11 (zebrafish)" xsd:string -intersection_of: UBERON:2000739 ! epaxial region somite 11 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000740 ! -property_value: IAO:0000589 "epaxial region somite 5 (zebrafish)" xsd:string -intersection_of: UBERON:2000740 ! epaxial region somite 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000741 ! -property_value: IAO:0000589 "epaxial region somite 14 (zebrafish)" xsd:string -intersection_of: UBERON:2000741 ! epaxial region somite 14 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000742 ! -property_value: IAO:0000589 "epaxial region somite 17 (zebrafish)" xsd:string -intersection_of: UBERON:2000742 ! epaxial region somite 17 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000743 ! -property_value: IAO:0000589 "epaxial region somite 2 (zebrafish)" xsd:string -intersection_of: UBERON:2000743 ! epaxial region somite 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000744 ! -property_value: IAO:0000589 "epaxial region somite 22 (zebrafish)" xsd:string -intersection_of: UBERON:2000744 ! epaxial region somite 22 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000745 ! -property_value: IAO:0000589 "epaxial region somite 25 (zebrafish)" xsd:string -intersection_of: UBERON:2000745 ! epaxial region somite 25 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000746 ! -property_value: IAO:0000589 "epaxial region somite 28 (zebrafish)" xsd:string -intersection_of: UBERON:2000746 ! epaxial region somite 28 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000747 ! -property_value: IAO:0000589 "epaxial region somite 30 (zebrafish)" xsd:string -intersection_of: UBERON:2000747 ! epaxial region somite 30 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000748 ! -property_value: IAO:0000589 "epaxial region somite 6 (zebrafish)" xsd:string -intersection_of: UBERON:2000748 ! epaxial region somite 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000749 ! -property_value: IAO:0000589 "epaxial region somite 9 (zebrafish)" xsd:string -intersection_of: UBERON:2000749 ! epaxial region somite 9 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000751 ! -property_value: IAO:0000589 "epaxial region somite 8 (zebrafish)" xsd:string -intersection_of: UBERON:2000751 ! epaxial region somite 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000766 ! -property_value: IAO:0000589 "granular layer valvula cerebelli (zebrafish)" xsd:string -intersection_of: UBERON:2000766 ! granular layer valvula cerebelli -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000767 ! -property_value: IAO:0000589 "hypaxial region somite 11 (zebrafish)" xsd:string -intersection_of: UBERON:2000767 ! hypaxial region somite 11 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000768 ! -property_value: IAO:0000589 "hypaxial region somite 14 (zebrafish)" xsd:string -intersection_of: UBERON:2000768 ! hypaxial region somite 14 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000769 ! -property_value: IAO:0000589 "hypaxial region somite 17 (zebrafish)" xsd:string -intersection_of: UBERON:2000769 ! hypaxial region somite 17 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000770 ! -property_value: IAO:0000589 "hypaxial region somite 2 (zebrafish)" xsd:string -intersection_of: UBERON:2000770 ! hypaxial region somite 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000771 ! -property_value: IAO:0000589 "hypaxial region somite 22 (zebrafish)" xsd:string -intersection_of: UBERON:2000771 ! hypaxial region somite 22 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000772 ! -property_value: IAO:0000589 "hypaxial region somite 25 (zebrafish)" xsd:string -intersection_of: UBERON:2000772 ! hypaxial region somite 25 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000774 ! -property_value: IAO:0000589 "hypaxial region somite 28 (zebrafish)" xsd:string -intersection_of: UBERON:2000774 ! hypaxial region somite 28 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000775 ! -property_value: IAO:0000589 "hypaxial region somite 30 (zebrafish)" xsd:string -intersection_of: UBERON:2000775 ! hypaxial region somite 30 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000776 ! -property_value: IAO:0000589 "hypaxial region somite 6 (zebrafish)" xsd:string -intersection_of: UBERON:2000776 ! hypaxial region somite 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000777 ! -property_value: IAO:0000589 "hypaxial region somite 9 (zebrafish)" xsd:string -intersection_of: UBERON:2000777 ! hypaxial region somite 9 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000779 ! -property_value: IAO:0000589 "lateral forebrain bundle telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:2000779 ! lateral forebrain bundle telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000788 ! -property_value: IAO:0000589 "mesenchyme dorsal fin (zebrafish)" xsd:string -intersection_of: UBERON:2000788 ! mesenchyme dorsal fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000801 ! -property_value: IAO:0000589 "myotome somite 11 (zebrafish)" xsd:string -intersection_of: UBERON:2000801 ! myotome somite 11 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000802 ! -property_value: IAO:0000589 "myotome somite 15 (zebrafish)" xsd:string -intersection_of: UBERON:2000802 ! myotome somite 15 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000803 ! -property_value: IAO:0000589 "myotome somite 18 (zebrafish)" xsd:string -intersection_of: UBERON:2000803 ! myotome somite 18 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000804 ! -property_value: IAO:0000589 "myotome somite 20 (zebrafish)" xsd:string -intersection_of: UBERON:2000804 ! myotome somite 20 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000805 ! -property_value: IAO:0000589 "myotome somite 23 (zebrafish)" xsd:string -intersection_of: UBERON:2000805 ! myotome somite 23 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000807 ! -property_value: IAO:0000589 "myotome somite 26 (zebrafish)" xsd:string -intersection_of: UBERON:2000807 ! myotome somite 26 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000808 ! -property_value: IAO:0000589 "myotome somite 29 (zebrafish)" xsd:string -intersection_of: UBERON:2000808 ! myotome somite 29 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000809 ! -property_value: IAO:0000589 "myotome somite 4 (zebrafish)" xsd:string -intersection_of: UBERON:2000809 ! myotome somite 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000810 ! -property_value: IAO:0000589 "myotome somite 7 (zebrafish)" xsd:string -intersection_of: UBERON:2000810 ! myotome somite 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000813 ! -property_value: IAO:0000589 "infraorbital lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2000813 ! infraorbital lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000814 ! -property_value: IAO:0000589 "opercular lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2000814 ! opercular lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000815 ! -property_value: IAO:0000589 "nucleus of medial longitudinal fasciculus of medulla (zebrafish)" xsd:string -intersection_of: UBERON:2000815 ! nucleus of medial longitudinal fasciculus of medulla -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000820 ! -property_value: IAO:0000589 "presumptive neuron neural tube (zebrafish)" xsd:string -intersection_of: UBERON:2000820 ! presumptive neuron neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000826 ! -property_value: IAO:0000589 "central nucleus torus semicircularis (zebrafish)" xsd:string -intersection_of: UBERON:2000826 ! central nucleus torus semicircularis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000829 ! -property_value: IAO:0000589 "sclerotome somite 11 (zebrafish)" xsd:string -intersection_of: UBERON:2000829 ! sclerotome somite 11 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000830 ! -property_value: IAO:0000589 "sclerotome somite 14 (zebrafish)" xsd:string -intersection_of: UBERON:2000830 ! sclerotome somite 14 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000831 ! -property_value: IAO:0000589 "sclerotome somite 17 (zebrafish)" xsd:string -intersection_of: UBERON:2000831 ! sclerotome somite 17 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000832 ! -property_value: IAO:0000589 "sclerotome somite 2 (zebrafish)" xsd:string -intersection_of: UBERON:2000832 ! sclerotome somite 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000833 ! -property_value: IAO:0000589 "sclerotome somite 22 (zebrafish)" xsd:string -intersection_of: UBERON:2000833 ! sclerotome somite 22 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000834 ! -property_value: IAO:0000589 "sclerotome somite 25 (zebrafish)" xsd:string -intersection_of: UBERON:2000834 ! sclerotome somite 25 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000835 ! -property_value: IAO:0000589 "sclerotome somite 28 (zebrafish)" xsd:string -intersection_of: UBERON:2000835 ! sclerotome somite 28 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000836 ! -property_value: IAO:0000589 "sclerotome somite 30 (zebrafish)" xsd:string -intersection_of: UBERON:2000836 ! sclerotome somite 30 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000837 ! -property_value: IAO:0000589 "sclerotome somite 6 (zebrafish)" xsd:string -intersection_of: UBERON:2000837 ! sclerotome somite 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000839 ! -property_value: IAO:0000589 "sclerotome somite 9 (zebrafish)" xsd:string -intersection_of: UBERON:2000839 ! sclerotome somite 9 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000851 ! -property_value: IAO:0000589 "somite 12 (zebrafish)" xsd:string -intersection_of: UBERON:2000851 ! somite 12 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000852 ! -property_value: IAO:0000589 "somite 15 (zebrafish)" xsd:string -intersection_of: UBERON:2000852 ! somite 15 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000853 ! -property_value: IAO:0000589 "somite 18 (zebrafish)" xsd:string -intersection_of: UBERON:2000853 ! somite 18 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000854 ! -property_value: IAO:0000589 "somite 21 (zebrafish)" xsd:string -intersection_of: UBERON:2000854 ! somite 21 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000855 ! -property_value: IAO:0000589 "somite 24 (zebrafish)" xsd:string -intersection_of: UBERON:2000855 ! somite 24 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000856 ! -property_value: IAO:0000589 "somite 28 (zebrafish)" xsd:string -intersection_of: UBERON:2000856 ! somite 28 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000857 ! -property_value: IAO:0000589 "somite 4 (zebrafish)" xsd:string -intersection_of: UBERON:2000857 ! somite 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000858 ! -property_value: IAO:0000589 "somite 8 (zebrafish)" xsd:string -intersection_of: UBERON:2000858 ! somite 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000859 ! -property_value: IAO:0000589 "specialized hemal arch and spine (zebrafish)" xsd:string -intersection_of: UBERON:2000859 ! specialized hemal arch and spine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000864 ! -property_value: IAO:0000589 "epaxial region somite 1 (zebrafish)" xsd:string -intersection_of: UBERON:2000864 ! epaxial region somite 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000865 ! -property_value: IAO:0000589 "epaxial region somite 12 (zebrafish)" xsd:string -intersection_of: UBERON:2000865 ! epaxial region somite 12 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000866 ! -property_value: IAO:0000589 "epaxial region somite 15 (zebrafish)" xsd:string -intersection_of: UBERON:2000866 ! epaxial region somite 15 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000867 ! -property_value: IAO:0000589 "epaxial region somite 18 (zebrafish)" xsd:string -intersection_of: UBERON:2000867 ! epaxial region somite 18 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000868 ! -property_value: IAO:0000589 "epaxial region somite 20 (zebrafish)" xsd:string -intersection_of: UBERON:2000868 ! epaxial region somite 20 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000869 ! -property_value: IAO:0000589 "epaxial region somite 23 (zebrafish)" xsd:string -intersection_of: UBERON:2000869 ! epaxial region somite 23 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000870 ! -property_value: IAO:0000589 "epaxial region somite 26 (zebrafish)" xsd:string -intersection_of: UBERON:2000870 ! epaxial region somite 26 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000872 ! -property_value: IAO:0000589 "epaxial region somite 29 (zebrafish)" xsd:string -intersection_of: UBERON:2000872 ! epaxial region somite 29 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000873 ! -property_value: IAO:0000589 "epaxial region somite 4 (zebrafish)" xsd:string -intersection_of: UBERON:2000873 ! epaxial region somite 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000874 ! -property_value: IAO:0000589 "epaxial region somite 7 (zebrafish)" xsd:string -intersection_of: UBERON:2000874 ! epaxial region somite 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000887 ! -property_value: IAO:0000589 "floor plate neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2000887 ! floor plate neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000891 ! -property_value: IAO:0000589 "hypaxial region somite 1 (zebrafish)" xsd:string -intersection_of: UBERON:2000891 ! hypaxial region somite 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000892 ! -property_value: IAO:0000589 "hypaxial region somite 12 (zebrafish)" xsd:string -intersection_of: UBERON:2000892 ! hypaxial region somite 12 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000894 ! -property_value: IAO:0000589 "hypaxial region somite 15 (zebrafish)" xsd:string -intersection_of: UBERON:2000894 ! hypaxial region somite 15 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000895 ! -property_value: IAO:0000589 "hypaxial region somite 18 (zebrafish)" xsd:string -intersection_of: UBERON:2000895 ! hypaxial region somite 18 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000896 ! -property_value: IAO:0000589 "hypaxial region somite 20 (zebrafish)" xsd:string -intersection_of: UBERON:2000896 ! hypaxial region somite 20 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000897 ! -property_value: IAO:0000589 "hypaxial region somite 23 (zebrafish)" xsd:string -intersection_of: UBERON:2000897 ! hypaxial region somite 23 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000898 ! -property_value: IAO:0000589 "hypaxial region somite 26 (zebrafish)" xsd:string -intersection_of: UBERON:2000898 ! hypaxial region somite 26 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000899 ! -property_value: IAO:0000589 "hypaxial region somite 29 (zebrafish)" xsd:string -intersection_of: UBERON:2000899 ! hypaxial region somite 29 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000900 ! -property_value: IAO:0000589 "hypaxial region somite 4 (zebrafish)" xsd:string -intersection_of: UBERON:2000900 ! hypaxial region somite 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000901 ! -property_value: IAO:0000589 "hypaxial region somite 7 (zebrafish)" xsd:string -intersection_of: UBERON:2000901 ! hypaxial region somite 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000902 ! -property_value: IAO:0000589 "hypural musculature (zebrafish)" xsd:string -intersection_of: UBERON:2000902 ! hypural musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000910 ! -property_value: IAO:0000589 "medial forebrain bundle telencephalon (zebrafish)" xsd:string -intersection_of: UBERON:2000910 ! medial forebrain bundle telencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000912 ! -property_value: IAO:0000589 "mesenchyme median fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2000912 ! mesenchyme median fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000913 ! -property_value: IAO:0000589 "molecular layer valvula cerebelli (zebrafish)" xsd:string -intersection_of: UBERON:2000913 ! molecular layer valvula cerebelli -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000924 ! -property_value: IAO:0000589 "myotome somite 1 (zebrafish)" xsd:string -intersection_of: UBERON:2000924 ! myotome somite 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000925 ! -property_value: IAO:0000589 "hypaxial region somite 10 (zebrafish)" xsd:string -intersection_of: UBERON:2000925 ! hypaxial region somite 10 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000926 ! -property_value: IAO:0000589 "myotome somite 12 (zebrafish)" xsd:string -intersection_of: UBERON:2000926 ! myotome somite 12 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000927 ! -property_value: IAO:0000589 "myotome somite 16 (zebrafish)" xsd:string -intersection_of: UBERON:2000927 ! myotome somite 16 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000928 ! -property_value: IAO:0000589 "myotome somite 19 (zebrafish)" xsd:string -intersection_of: UBERON:2000928 ! myotome somite 19 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000929 ! -property_value: IAO:0000589 "myotome somite 21 (zebrafish)" xsd:string -intersection_of: UBERON:2000929 ! myotome somite 21 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000930 ! -property_value: IAO:0000589 "myotome somite 24 (zebrafish)" xsd:string -intersection_of: UBERON:2000930 ! myotome somite 24 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000931 ! -property_value: IAO:0000589 "myotome somite 27 (zebrafish)" xsd:string -intersection_of: UBERON:2000931 ! myotome somite 27 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000932 ! -property_value: IAO:0000589 "myotome somite 3 (zebrafish)" xsd:string -intersection_of: UBERON:2000932 ! myotome somite 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000933 ! -property_value: IAO:0000589 "myotome somite 5 (zebrafish)" xsd:string -intersection_of: UBERON:2000933 ! myotome somite 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000934 ! -property_value: IAO:0000589 "myotome somite 8 (zebrafish)" xsd:string -intersection_of: UBERON:2000934 ! myotome somite 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000936 ! -property_value: IAO:0000589 "dorsal fin distal radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000936 ! dorsal fin distal radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000937 ! -property_value: IAO:0000589 "hypaxial region somite 13 (zebrafish)" xsd:string -intersection_of: UBERON:2000937 ! hypaxial region somite 13 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000939 ! -property_value: IAO:0000589 "middle lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2000939 ! middle lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000940 ! -property_value: IAO:0000589 "posterior lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2000940 ! posterior lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000941 ! -property_value: IAO:0000589 "nucleus of the medial longitudinal fasciculus synencephalon (zebrafish)" xsd:string -intersection_of: UBERON:2000941 ! nucleus of the medial longitudinal fasciculus synencephalon -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000946 ! -property_value: IAO:0000589 "hypaxial region somite 16 (zebrafish)" xsd:string -intersection_of: UBERON:2000946 ! hypaxial region somite 16 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000947 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2000947 ! dorsal fin proximal radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000952 ! -property_value: IAO:0000589 "sclerotome somite 1 (zebrafish)" xsd:string -intersection_of: UBERON:2000952 ! sclerotome somite 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000953 ! -property_value: IAO:0000589 "sclerotome somite 12 (zebrafish)" xsd:string -intersection_of: UBERON:2000953 ! sclerotome somite 12 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000954 ! -property_value: IAO:0000589 "sclerotome somite 15 (zebrafish)" xsd:string -intersection_of: UBERON:2000954 ! sclerotome somite 15 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000955 ! -property_value: IAO:0000589 "sclerotome somite 18 (zebrafish)" xsd:string -intersection_of: UBERON:2000955 ! sclerotome somite 18 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000956 ! -property_value: IAO:0000589 "sclerotome somite 20 (zebrafish)" xsd:string -intersection_of: UBERON:2000956 ! sclerotome somite 20 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000957 ! -property_value: IAO:0000589 "hypaxial region somite 19 (zebrafish)" xsd:string -intersection_of: UBERON:2000957 ! hypaxial region somite 19 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000958 ! -property_value: IAO:0000589 "sclerotome somite 23 (zebrafish)" xsd:string -intersection_of: UBERON:2000958 ! sclerotome somite 23 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000959 ! -property_value: IAO:0000589 "sclerotome somite 26 (zebrafish)" xsd:string -intersection_of: UBERON:2000959 ! sclerotome somite 26 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000960 ! -property_value: IAO:0000589 "sclerotome somite 29 (zebrafish)" xsd:string -intersection_of: UBERON:2000960 ! sclerotome somite 29 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000961 ! -property_value: IAO:0000589 "sclerotome somite 4 (zebrafish)" xsd:string -intersection_of: UBERON:2000961 ! sclerotome somite 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000962 ! -property_value: IAO:0000589 "sclerotome somite 7 (zebrafish)" xsd:string -intersection_of: UBERON:2000962 ! sclerotome somite 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000968 ! -property_value: IAO:0000589 "hypaxial region somite 21 (zebrafish)" xsd:string -intersection_of: UBERON:2000968 ! hypaxial region somite 21 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000974 ! -property_value: IAO:0000589 "somite 10 (zebrafish)" xsd:string -intersection_of: UBERON:2000974 ! somite 10 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000975 ! -property_value: IAO:0000589 "somite 13 (zebrafish)" xsd:string -intersection_of: UBERON:2000975 ! somite 13 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000976 ! -property_value: IAO:0000589 "somite 16 (zebrafish)" xsd:string -intersection_of: UBERON:2000976 ! somite 16 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000977 ! -property_value: IAO:0000589 "somite 19 (zebrafish)" xsd:string -intersection_of: UBERON:2000977 ! somite 19 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000978 ! -property_value: IAO:0000589 "somite 22 (zebrafish)" xsd:string -intersection_of: UBERON:2000978 ! somite 22 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000979 ! -property_value: IAO:0000589 "hypaxial region somite 24 (zebrafish)" xsd:string -intersection_of: UBERON:2000979 ! hypaxial region somite 24 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000980 ! -property_value: IAO:0000589 "somite 25 (zebrafish)" xsd:string -intersection_of: UBERON:2000980 ! somite 25 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000981 ! -property_value: IAO:0000589 "somite 29 (zebrafish)" xsd:string -intersection_of: UBERON:2000981 ! somite 29 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000982 ! -property_value: IAO:0000589 "somite 6 (zebrafish)" xsd:string -intersection_of: UBERON:2000982 ! somite 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000983 ! -property_value: IAO:0000589 "somite 9 (zebrafish)" xsd:string -intersection_of: UBERON:2000983 ! somite 9 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000984 ! -property_value: IAO:0000589 "superior reticular formation tegmentum (zebrafish)" xsd:string -intersection_of: UBERON:2000984 ! superior reticular formation tegmentum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000985 ! -property_value: IAO:0000589 "ventral rhombencephalic commissure medulla oblongata (zebrafish)" xsd:string -intersection_of: UBERON:2000985 ! ventral rhombencephalic commissure medulla oblongata -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000986 ! -property_value: IAO:0000589 "hypaxial region somite 27 (zebrafish)" xsd:string -intersection_of: UBERON:2000986 ! hypaxial region somite 27 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000987 ! -property_value: IAO:0000589 "hypaxial region somite 3 (zebrafish)" xsd:string -intersection_of: UBERON:2000987 ! hypaxial region somite 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000988 ! -property_value: IAO:0000589 "hypaxial region somite 5 (zebrafish)" xsd:string -intersection_of: UBERON:2000988 ! hypaxial region somite 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000989 ! -property_value: IAO:0000589 "hypaxial region somite 8 (zebrafish)" xsd:string -intersection_of: UBERON:2000989 ! hypaxial region somite 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000991 ! -property_value: IAO:0000589 "epaxial region somite 10 (zebrafish)" xsd:string -intersection_of: UBERON:2000991 ! epaxial region somite 10 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000993 ! -property_value: IAO:0000589 "lateral wall neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2000993 ! lateral wall neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000997 ! -property_value: IAO:0000589 "medial funicular nucleus trigeminal nuclei (zebrafish)" xsd:string -intersection_of: UBERON:2000997 ! medial funicular nucleus trigeminal nuclei -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001001 ! -property_value: IAO:0000589 "epaxial region somite 13 (zebrafish)" xsd:string -intersection_of: UBERON:2001001 ! epaxial region somite 13 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001012 ! -property_value: IAO:0000589 "epaxial region somite 16 (zebrafish)" xsd:string -intersection_of: UBERON:2001012 ! epaxial region somite 16 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001013 ! -property_value: IAO:0000589 "myotome somite 10 (zebrafish)" xsd:string -intersection_of: UBERON:2001013 ! myotome somite 10 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001014 ! -property_value: IAO:0000589 "myotome somite 13 (zebrafish)" xsd:string -intersection_of: UBERON:2001014 ! myotome somite 13 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001015 ! -property_value: IAO:0000589 "myotome somite 17 (zebrafish)" xsd:string -intersection_of: UBERON:2001015 ! myotome somite 17 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001016 ! -property_value: IAO:0000589 "myotome somite 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001016 ! myotome somite 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001017 ! -property_value: IAO:0000589 "myotome somite 22 (zebrafish)" xsd:string -intersection_of: UBERON:2001017 ! myotome somite 22 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001018 ! -property_value: IAO:0000589 "myotome somite 25 (zebrafish)" xsd:string -intersection_of: UBERON:2001018 ! myotome somite 25 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001019 ! -property_value: IAO:0000589 "myotome somite 28 (zebrafish)" xsd:string -intersection_of: UBERON:2001019 ! myotome somite 28 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001020 ! -property_value: IAO:0000589 "myotome somite 30 (zebrafish)" xsd:string -intersection_of: UBERON:2001020 ! myotome somite 30 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001021 ! -property_value: IAO:0000589 "myotome somite 6 (zebrafish)" xsd:string -intersection_of: UBERON:2001021 ! myotome somite 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001022 ! -property_value: IAO:0000589 "myotome somite 9 (zebrafish)" xsd:string -intersection_of: UBERON:2001022 ! myotome somite 9 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001023 ! -property_value: IAO:0000589 "epaxial region somite 19 (zebrafish)" xsd:string -intersection_of: UBERON:2001023 ! epaxial region somite 19 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001025 ! -property_value: IAO:0000589 "occipital lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2001025 ! occipital lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001026 ! -property_value: IAO:0000589 "supraorbital lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2001026 ! supraorbital lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001028 ! -property_value: IAO:0000589 "hypurapophysis (zebrafish)" xsd:string -intersection_of: UBERON:2001028 ! hypurapophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001030 ! -property_value: IAO:0000589 "epaxial region somite 21 (zebrafish)" xsd:string -intersection_of: UBERON:2001030 ! epaxial region somite 21 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001036 ! -property_value: IAO:0000589 "sclerotome somite 10 (zebrafish)" xsd:string -intersection_of: UBERON:2001036 ! sclerotome somite 10 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001037 ! -property_value: IAO:0000589 "sclerotome somite 13 (zebrafish)" xsd:string -intersection_of: UBERON:2001037 ! sclerotome somite 13 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001038 ! -property_value: IAO:0000589 "sclerotome somite 16 (zebrafish)" xsd:string -intersection_of: UBERON:2001038 ! sclerotome somite 16 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001039 ! -property_value: IAO:0000589 "sclerotome somite 19 (zebrafish)" xsd:string -intersection_of: UBERON:2001039 ! sclerotome somite 19 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001040 ! -property_value: IAO:0000589 "epaxial region somite 24 (zebrafish)" xsd:string -intersection_of: UBERON:2001040 ! epaxial region somite 24 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001041 ! -property_value: IAO:0000589 "sclerotome somite 21 (zebrafish)" xsd:string -intersection_of: UBERON:2001041 ! sclerotome somite 21 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001042 ! -property_value: IAO:0000589 "sclerotome somite 24 (zebrafish)" xsd:string -intersection_of: UBERON:2001042 ! sclerotome somite 24 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001043 ! -property_value: IAO:0000589 "sclerotome somite 27 (zebrafish)" xsd:string -intersection_of: UBERON:2001043 ! sclerotome somite 27 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001044 ! -property_value: IAO:0000589 "sclerotome somite 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001044 ! sclerotome somite 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001045 ! -property_value: IAO:0000589 "sclerotome somite 5 (zebrafish)" xsd:string -intersection_of: UBERON:2001045 ! sclerotome somite 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001046 ! -property_value: IAO:0000589 "sclerotome somite 8 (zebrafish)" xsd:string -intersection_of: UBERON:2001046 ! sclerotome somite 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001051 ! -property_value: IAO:0000589 "caudal division of the internal carotid artery (zebrafish)" xsd:string -intersection_of: UBERON:2001051 ! caudal division of the internal carotid artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001052 ! -property_value: IAO:0000589 "primordial hindbrain channel (zebrafish)" xsd:string -intersection_of: UBERON:2001052 ! primordial hindbrain channel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001053 ! -property_value: IAO:0000589 "future internal carotid artery (zebrafish)" xsd:string -intersection_of: UBERON:2001053 ! future internal carotid artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001054 ! -property_value: IAO:0000589 "lateral dorsal aorta (zebrafish)" xsd:string -intersection_of: UBERON:2001054 ! lateral dorsal aorta -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001055 ! -property_value: IAO:0000589 "pronephric duct opening (zebrafish)" xsd:string -intersection_of: UBERON:2001055 ! pronephric duct opening -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001059 ! -property_value: IAO:0000589 "cranial division of the internal carotid artery (zebrafish)" xsd:string -intersection_of: UBERON:2001059 ! cranial division of the internal carotid artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001060 ! -property_value: IAO:0000589 "basidorsal (zebrafish)" xsd:string -intersection_of: UBERON:2001060 ! basidorsal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001062 ! -property_value: IAO:0000589 "presumptive mesencephalic artery (zebrafish)" xsd:string -intersection_of: UBERON:2001062 ! presumptive mesencephalic artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001063 ! -property_value: IAO:0000589 "posterior caudal vein (zebrafish)" xsd:string -intersection_of: UBERON:2001063 ! posterior caudal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001069 ! -property_value: IAO:0000589 "ventral fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2001069 ! ventral fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001073 ! -property_value: IAO:0000589 "axial vasculature (zebrafish)" xsd:string -intersection_of: UBERON:2001073 ! axial vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001076 ! -property_value: IAO:0000589 "intestinal bulb (zebrafish)" xsd:string -intersection_of: UBERON:2001076 ! intestinal bulb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001089 ! -property_value: IAO:0000589 "myoseptum (zebrafish)" xsd:string -intersection_of: UBERON:2001089 ! myoseptum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001095 ! -property_value: IAO:0000589 "immature macula (zebrafish)" xsd:string -intersection_of: UBERON:2001095 ! immature macula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001096 ! -property_value: IAO:0000589 "immature anterior macula (zebrafish)" xsd:string -intersection_of: UBERON:2001096 ! immature anterior macula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001097 ! -property_value: IAO:0000589 "immature posterior macula (zebrafish)" xsd:string -intersection_of: UBERON:2001097 ! immature posterior macula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001118 ! -property_value: IAO:0000589 "urogenital papilla (zebrafish)" xsd:string -intersection_of: UBERON:2001118 ! urogenital papilla -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001125 ! -property_value: IAO:0000589 "organizer inducing center (zebrafish)" xsd:string -intersection_of: UBERON:2001125 ! organizer inducing center -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001126 ! -property_value: IAO:0000589 "noninvoluting endocytic marginal cell cluster (zebrafish)" xsd:string -intersection_of: UBERON:2001126 ! noninvoluting endocytic marginal cell cluster -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001129 ! -property_value: IAO:0000589 "pharyngeal pouches 2-6 (zebrafish)" xsd:string -intersection_of: UBERON:2001129 ! pharyngeal pouches 2-6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001137 ! -property_value: IAO:0000589 "ventral tooth row (zebrafish)" xsd:string -intersection_of: UBERON:2001137 ! ventral tooth row -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001139 ! -property_value: IAO:0000589 "mediodorsal tooth row (zebrafish)" xsd:string -intersection_of: UBERON:2001139 ! mediodorsal tooth row -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001140 ! -property_value: IAO:0000589 "dorsal tooth row (zebrafish)" xsd:string -intersection_of: UBERON:2001140 ! dorsal tooth row -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001141 ! -property_value: IAO:0000589 "tooth 1V (zebrafish)" xsd:string -intersection_of: UBERON:2001141 ! tooth 1V -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001142 ! -property_value: IAO:0000589 "tooth 5V (zebrafish)" xsd:string -intersection_of: UBERON:2001142 ! tooth 5V -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001143 ! -property_value: IAO:0000589 "tooth 4V (zebrafish)" xsd:string -intersection_of: UBERON:2001143 ! tooth 4V -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001144 ! -property_value: IAO:0000589 "tooth 2V (zebrafish)" xsd:string -intersection_of: UBERON:2001144 ! tooth 2V -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001145 ! -property_value: IAO:0000589 "tooth 3V (zebrafish)" xsd:string -intersection_of: UBERON:2001145 ! tooth 3V -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001146 ! -property_value: IAO:0000589 "tooth 1MD (zebrafish)" xsd:string -intersection_of: UBERON:2001146 ! tooth 1MD -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001147 ! -property_value: IAO:0000589 "tooth 2MD (zebrafish)" xsd:string -intersection_of: UBERON:2001147 ! tooth 2MD -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001148 ! -property_value: IAO:0000589 "tooth 1D (zebrafish)" xsd:string -intersection_of: UBERON:2001148 ! tooth 1D -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001150 ! -property_value: IAO:0000589 "tooth 2D (zebrafish)" xsd:string -intersection_of: UBERON:2001150 ! tooth 2D -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001151 ! -property_value: IAO:0000589 "tooth 4MD (zebrafish)" xsd:string -intersection_of: UBERON:2001151 ! tooth 4MD -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001152 ! -property_value: IAO:0000589 "tooth 3MD (zebrafish)" xsd:string -intersection_of: UBERON:2001152 ! tooth 3MD -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001154 ! -property_value: IAO:0000589 "anal fin musculature (zebrafish)" xsd:string -intersection_of: UBERON:2001154 ! anal fin musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001156 ! -property_value: IAO:0000589 "posterior lateral line placode (zebrafish)" xsd:string -intersection_of: UBERON:2001156 ! posterior lateral line placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001157 ! -property_value: IAO:0000589 "posterior lateral line primordium (zebrafish)" xsd:string -intersection_of: UBERON:2001157 ! posterior lateral line primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001163 ! -property_value: IAO:0000589 "supraneural 7 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001163 ! supraneural 7 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001164 ! -property_value: IAO:0000589 "supraneural 6 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001164 ! supraneural 6 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001165 ! -property_value: IAO:0000589 "supraneural 5 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001165 ! supraneural 5 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001166 ! -property_value: IAO:0000589 "supraneural 9 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001166 ! supraneural 9 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001169 ! -property_value: IAO:0000589 "vertebral element 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001169 ! vertebral element 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001170 ! -property_value: IAO:0000589 "vertebral element 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001170 ! vertebral element 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001171 ! -property_value: IAO:0000589 "os suspensorium (zebrafish)" xsd:string -intersection_of: UBERON:2001171 ! os suspensorium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001172 ! -property_value: IAO:0000589 "roofing cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001172 ! roofing cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001179 ! -property_value: IAO:0000589 "epidermal superficial stratum (zebrafish)" xsd:string -intersection_of: UBERON:2001179 ! epidermal superficial stratum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001181 ! -property_value: IAO:0000589 "epidermal intermediate stratum (zebrafish)" xsd:string -intersection_of: UBERON:2001181 ! epidermal intermediate stratum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001183 ! -property_value: IAO:0000589 "dermal superficial region (zebrafish)" xsd:string -intersection_of: UBERON:2001183 ! dermal superficial region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001186 ! -property_value: IAO:0000589 "collagenous dermal stroma (zebrafish)" xsd:string -intersection_of: UBERON:2001186 ! collagenous dermal stroma -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001188 ! -property_value: IAO:0000589 "Weberian apparatus (zebrafish)" xsd:string -intersection_of: UBERON:2001188 ! Weberian apparatus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001190 ! -property_value: IAO:0000589 "Weberian vertebra (zebrafish)" xsd:string -intersection_of: UBERON:2001190 ! Weberian vertebra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001191 ! -property_value: IAO:0000589 "supraneural 2 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001191 ! supraneural 2 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001192 ! -property_value: IAO:0000589 "supraneural 3 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001192 ! supraneural 3 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001193 ! -property_value: IAO:0000589 "supraneural 8 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001193 ! supraneural 8 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001200 ! -property_value: IAO:0000589 "corpuscles of Stannius (zebrafish)" xsd:string -intersection_of: UBERON:2001200 ! corpuscles of Stannius -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001201 ! -property_value: IAO:0000589 "ventral lateral mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:2001201 ! ventral lateral mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001220 ! -property_value: IAO:0000589 "basibranchial copula (zebrafish)" xsd:string -intersection_of: UBERON:2001220 ! basibranchial copula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001221 ! -property_value: IAO:0000589 "anterior copula (zebrafish)" xsd:string -intersection_of: UBERON:2001221 ! anterior copula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001222 ! -property_value: IAO:0000589 "posterior copula (zebrafish)" xsd:string -intersection_of: UBERON:2001222 ! posterior copula -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001223 ! -property_value: IAO:0000589 "basibranchial 1 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001223 ! basibranchial 1 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001224 ! -property_value: IAO:0000589 "basibranchial 2 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001224 ! basibranchial 2 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001225 ! -property_value: IAO:0000589 "basibranchial 3 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001225 ! basibranchial 3 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001226 ! -property_value: IAO:0000589 "basibranchial 4 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001226 ! basibranchial 4 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001228 ! -property_value: IAO:0000589 "pharyngeal arch 3 skeleton (zebrafish)" xsd:string -intersection_of: UBERON:2001228 ! pharyngeal arch 3 skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001229 ! -property_value: IAO:0000589 "pharyngeal arch 7 skeleton (zebrafish)" xsd:string -intersection_of: UBERON:2001229 ! pharyngeal arch 7 skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001230 ! -property_value: IAO:0000589 "pharyngeal arch 6 skeleton (zebrafish)" xsd:string -intersection_of: UBERON:2001230 ! pharyngeal arch 6 skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001231 ! -property_value: IAO:0000589 "pharyngeal arch 4 skeleton (zebrafish)" xsd:string -intersection_of: UBERON:2001231 ! pharyngeal arch 4 skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001232 ! -property_value: IAO:0000589 "pharyngeal arch 5 skeleton (zebrafish)" xsd:string -intersection_of: UBERON:2001232 ! pharyngeal arch 5 skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001233 ! -property_value: IAO:0000589 "hypobranchial 1 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001233 ! hypobranchial 1 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001234 ! -property_value: IAO:0000589 "hypobranchial 4 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001234 ! hypobranchial 4 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001235 ! -property_value: IAO:0000589 "hypobranchial 3 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001235 ! hypobranchial 3 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001236 ! -property_value: IAO:0000589 "hypobranchial 2 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001236 ! hypobranchial 2 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001237 ! -property_value: IAO:0000589 "ceratobranchial 1 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001237 ! ceratobranchial 1 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001239 ! -property_value: IAO:0000589 "ceratobranchial 5 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001239 ! ceratobranchial 5 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001240 ! -property_value: IAO:0000589 "ceratobranchial 4 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001240 ! ceratobranchial 4 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001241 ! -property_value: IAO:0000589 "ceratobranchial 3 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001241 ! ceratobranchial 3 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001242 ! -property_value: IAO:0000589 "ceratobranchial 2 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001242 ! ceratobranchial 2 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001243 ! -property_value: IAO:0000589 "epibranchial 1 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001243 ! epibranchial 1 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001244 ! -property_value: IAO:0000589 "epibranchial 5 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001244 ! epibranchial 5 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001245 ! -property_value: IAO:0000589 "epibranchial 4 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001245 ! epibranchial 4 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001246 ! -property_value: IAO:0000589 "epibranchial 2 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001246 ! epibranchial 2 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001247 ! -property_value: IAO:0000589 "epibranchial 3 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001247 ! epibranchial 3 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001250 ! -property_value: IAO:0000589 "pharyngobranchial 2 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001250 ! pharyngobranchial 2 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001251 ! -property_value: IAO:0000589 "pharyngobranchial 4 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001251 ! pharyngobranchial 4 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001252 ! -property_value: IAO:0000589 "pharyngobranchial 3 bone (zebrafish)" xsd:string -intersection_of: UBERON:2001252 ! pharyngobranchial 3 bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001256 ! -property_value: IAO:0000589 "lateral floor plate (zebrafish)" xsd:string -intersection_of: UBERON:2001256 ! lateral floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001257 ! -property_value: IAO:0000589 "medial floor plate (zebrafish)" xsd:string -intersection_of: UBERON:2001257 ! medial floor plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001263 ! -property_value: IAO:0000589 "ovarian follicle stage I (zebrafish)" xsd:string -intersection_of: UBERON:2001263 ! ovarian follicle stage I -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001265 ! -property_value: IAO:0000589 "ovarian follicle stage II (zebrafish)" xsd:string -intersection_of: UBERON:2001265 ! ovarian follicle stage II -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001266 ! -property_value: IAO:0000589 "ovarian follicle stage III (zebrafish)" xsd:string -intersection_of: UBERON:2001266 ! ovarian follicle stage III -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001269 ! -property_value: IAO:0000589 "regenerating fin/limb (zebrafish)" xsd:string -intersection_of: UBERON:2001269 ! regenerating fin/limb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001274 ! -property_value: IAO:0000589 "coronomeckelian (zebrafish)" xsd:string -intersection_of: UBERON:2001274 ! coronomeckelian -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001277 ! -property_value: IAO:0000589 "anterior chamber swim bladder (zebrafish)" xsd:string -intersection_of: UBERON:2001277 ! anterior chamber swim bladder -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001278 ! -property_value: IAO:0000589 "posterior chamber swim bladder (zebrafish)" xsd:string -intersection_of: UBERON:2001278 ! posterior chamber swim bladder -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001279 ! -property_value: IAO:0000589 "branchiostegal ray 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001279 ! branchiostegal ray 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001280 ! -property_value: IAO:0000589 "branchiostegal ray 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001280 ! branchiostegal ray 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001281 ! -property_value: IAO:0000589 "branchiostegal ray 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001281 ! branchiostegal ray 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001286 ! -property_value: IAO:0000589 "caudal vein plexus (zebrafish)" xsd:string -intersection_of: UBERON:2001286 ! caudal vein plexus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001293 ! -property_value: IAO:0000589 "posterior kidney (zebrafish)" xsd:string -intersection_of: UBERON:2001293 ! posterior kidney -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001297 ! -property_value: IAO:0000589 "vagal placode 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001297 ! vagal placode 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001298 ! -property_value: IAO:0000589 "vagal placode 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001298 ! vagal placode 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001299 ! -property_value: IAO:0000589 "vagal placode 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001299 ! vagal placode 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001300 ! -property_value: IAO:0000589 "vagal placode 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001300 ! vagal placode 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001302 ! -property_value: IAO:0000589 "vagal ganglion 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001302 ! vagal ganglion 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001303 ! -property_value: IAO:0000589 "vagal ganglion 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001303 ! vagal ganglion 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001304 ! -property_value: IAO:0000589 "vagal ganglion 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001304 ! vagal ganglion 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001305 ! -property_value: IAO:0000589 "vagal ganglion 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001305 ! vagal ganglion 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001312 ! -property_value: IAO:0000589 "dorsal anterior lateral line ganglion (zebrafish)" xsd:string -intersection_of: UBERON:2001312 ! dorsal anterior lateral line ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001313 ! -property_value: IAO:0000589 "ventral anterior lateral line ganglion (zebrafish)" xsd:string -intersection_of: UBERON:2001313 ! ventral anterior lateral line ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001314 ! -property_value: IAO:0000589 "posterior lateral line ganglion (zebrafish)" xsd:string -intersection_of: UBERON:2001314 ! posterior lateral line ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001316 ! -property_value: IAO:0000589 "anterior lateral line placode (zebrafish)" xsd:string -intersection_of: UBERON:2001316 ! anterior lateral line placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001324 ! -property_value: IAO:0000589 "enteric musculature (zebrafish)" xsd:string -intersection_of: UBERON:2001324 ! enteric musculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001335 ! -property_value: IAO:0000589 "supradorsal (zebrafish)" xsd:string -intersection_of: UBERON:2001335 ! supradorsal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001340 ! -property_value: IAO:0000589 "nucleus of the tract of the postoptic commissure (zebrafish)" xsd:string -intersection_of: UBERON:2001340 ! nucleus of the tract of the postoptic commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001341 ! -property_value: IAO:0000589 "intervening zone (zebrafish)" xsd:string -intersection_of: UBERON:2001341 ! intervening zone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001342 ! -property_value: IAO:0000589 "presumptive intervening zone (zebrafish)" xsd:string -intersection_of: UBERON:2001342 ! presumptive intervening zone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001343 ! -property_value: IAO:0000589 "telencephalon diencephalon boundary (zebrafish)" xsd:string -intersection_of: UBERON:2001343 ! telencephalon diencephalon boundary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001347 ! -property_value: IAO:0000589 "stratum fibrosum et griseum superficiale (zebrafish)" xsd:string -intersection_of: UBERON:2001347 ! stratum fibrosum et griseum superficiale -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001348 ! -property_value: IAO:0000589 "stratum marginale (zebrafish)" xsd:string -intersection_of: UBERON:2001348 ! stratum marginale -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001349 ! -property_value: IAO:0000589 "stratum opticum (zebrafish)" xsd:string -intersection_of: UBERON:2001349 ! stratum opticum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001352 ! -property_value: IAO:0000589 "stratum periventriculare (zebrafish)" xsd:string -intersection_of: UBERON:2001352 ! stratum periventriculare -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001357 ! -property_value: IAO:0000589 "alar plate midbrain (zebrafish)" xsd:string -intersection_of: UBERON:2001357 ! alar plate midbrain -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001361 ! -property_value: IAO:0000589 "basiventral (zebrafish)" xsd:string -intersection_of: UBERON:2001361 ! basiventral -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001363 ! -property_value: IAO:0000589 "neural complex of Weberian apparatus (zebrafish)" xsd:string -intersection_of: UBERON:2001363 ! neural complex of Weberian apparatus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001364 ! -property_value: IAO:0000589 "hemal spine (zebrafish)" xsd:string -intersection_of: UBERON:2001364 ! hemal spine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001366 ! -property_value: IAO:0000589 "tract of the postoptic commissure (zebrafish)" xsd:string -intersection_of: UBERON:2001366 ! tract of the postoptic commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001371 ! -property_value: IAO:0000589 "pancreatic system (zebrafish)" xsd:string -intersection_of: UBERON:2001371 ! pancreatic system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001378 ! -property_value: IAO:0000589 "axial hypoblast (zebrafish)" xsd:string -intersection_of: UBERON:2001378 ! axial hypoblast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001382 ! -property_value: IAO:0000589 "epibranchial bone uncinate process (zebrafish)" xsd:string -intersection_of: UBERON:2001382 ! epibranchial bone uncinate process -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001388 ! -property_value: IAO:0000589 "epithelial mesenchymal boundary of regenerating fin/limb (zebrafish)" xsd:string -intersection_of: UBERON:2001388 ! epithelial mesenchymal boundary of regenerating fin/limb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001389 ! -property_value: IAO:0000589 "regeneration epithelium of fin/limb (zebrafish)" xsd:string -intersection_of: UBERON:2001389 ! regeneration epithelium of fin/limb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001391 ! -property_value: IAO:0000589 "anterior lateral line ganglion (zebrafish)" xsd:string -intersection_of: UBERON:2001391 ! anterior lateral line ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001392 ! -property_value: IAO:0000589 "parapophysis 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001392 ! parapophysis 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001393 ! -property_value: IAO:0000589 "parapophysis 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001393 ! parapophysis 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001394 ! -property_value: IAO:0000589 "neural arch 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001394 ! neural arch 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001395 ! -property_value: IAO:0000589 "neural arch 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001395 ! neural arch 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001396 ! -property_value: IAO:0000589 "parapophysis + rib of vertebra 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001396 ! parapophysis + rib of vertebra 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001397 ! -property_value: IAO:0000589 "post-Weberian supraneural (zebrafish)" xsd:string -intersection_of: UBERON:2001397 ! post-Weberian supraneural -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001403 ! -property_value: IAO:0000589 "supraethmoid (zebrafish)" xsd:string -intersection_of: UBERON:2001403 ! supraethmoid -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001404 ! -property_value: IAO:0000589 "preethmoid bone (zebrafish)" xsd:string -intersection_of: UBERON:2001404 ! preethmoid bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001406 ! -property_value: IAO:0000589 "kinethmoid bone (zebrafish)" xsd:string -intersection_of: UBERON:2001406 ! kinethmoid bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001407 ! -property_value: IAO:0000589 "infraorbital 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001407 ! infraorbital 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001408 ! -property_value: IAO:0000589 "infraorbital 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001408 ! infraorbital 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001409 ! -property_value: IAO:0000589 "infraorbital 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001409 ! infraorbital 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001412 ! -property_value: IAO:0000589 "epiotic (zebrafish)" xsd:string -intersection_of: UBERON:2001412 ! epiotic -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001415 ! -property_value: IAO:0000589 "pelvic fin distal radial bone 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001415 ! pelvic fin distal radial bone 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001416 ! -property_value: IAO:0000589 "pelvic fin distal radial bone 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001416 ! pelvic fin distal radial bone 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001417 ! -property_value: IAO:0000589 "pelvic fin distal radial bone 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001417 ! pelvic fin distal radial bone 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001419 ! -property_value: IAO:0000589 "dorsal fin pterygiophore (zebrafish)" xsd:string -intersection_of: UBERON:2001419 ! dorsal fin pterygiophore -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001420 ! -property_value: IAO:0000589 "anal fin pterygiophore (zebrafish)" xsd:string -intersection_of: UBERON:2001420 ! anal fin pterygiophore -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001425 ! -property_value: IAO:0000589 "basal plate cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001425 ! basal plate cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001426 ! -property_value: IAO:0000589 "posterior naris (zebrafish)" xsd:string -intersection_of: UBERON:2001426 ! posterior naris -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001427 ! -property_value: IAO:0000589 "anterior naris (zebrafish)" xsd:string -intersection_of: UBERON:2001427 ! anterior naris -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001428 ! -property_value: IAO:0000589 "olfactory rosette (zebrafish)" xsd:string -intersection_of: UBERON:2001428 ! olfactory rosette -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001430 ! -property_value: IAO:0000589 "pneumatic duct (zebrafish)" xsd:string -intersection_of: UBERON:2001430 ! pneumatic duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001431 ! -property_value: IAO:0000589 "primitive olfactory epithelium (zebrafish)" xsd:string -intersection_of: UBERON:2001431 ! primitive olfactory epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001432 ! -property_value: IAO:0000589 "anterior sclerotic bone (zebrafish)" xsd:string -intersection_of: UBERON:2001432 ! anterior sclerotic bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001433 ! -property_value: IAO:0000589 "posterior sclerotic bone (zebrafish)" xsd:string -intersection_of: UBERON:2001433 ! posterior sclerotic bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001437 ! -property_value: IAO:0000589 "ductus communicans (zebrafish)" xsd:string -intersection_of: UBERON:2001437 ! ductus communicans -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001450 ! -property_value: IAO:0000589 "apical ectodermal ridge pelvic fin (zebrafish)" xsd:string -intersection_of: UBERON:2001450 ! apical ectodermal ridge pelvic fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001456 ! -property_value: IAO:0000589 "pectoral fin endoskeletal disc (zebrafish)" xsd:string -intersection_of: UBERON:2001456 ! pectoral fin endoskeletal disc -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001457 ! -property_value: IAO:0000589 "postcranial axial cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001457 ! postcranial axial cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001463 ! -property_value: IAO:0000589 "melanophore stripe (zebrafish)" xsd:string -intersection_of: UBERON:2001463 ! melanophore stripe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001467 ! -property_value: IAO:0000589 "pharyngeal mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:2001467 ! pharyngeal mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001468 ! -property_value: IAO:0000589 "anterior lateral line system (zebrafish)" xsd:string -intersection_of: UBERON:2001468 ! anterior lateral line system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001470 ! -property_value: IAO:0000589 "anterior lateral line (zebrafish)" xsd:string -intersection_of: UBERON:2001470 ! anterior lateral line -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001471 ! -property_value: IAO:0000589 "posterior lateral line system (zebrafish)" xsd:string -intersection_of: UBERON:2001471 ! posterior lateral line system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001472 ! -property_value: IAO:0000589 "anterior lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2001472 ! anterior lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001480 ! -property_value: IAO:0000589 "dorsal anterior lateral line nerve (zebrafish)" xsd:string -intersection_of: UBERON:2001480 ! dorsal anterior lateral line nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001481 ! -property_value: IAO:0000589 "ventral anterior lateral line nerve (zebrafish)" xsd:string -intersection_of: UBERON:2001481 ! ventral anterior lateral line nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001482 ! -property_value: IAO:0000589 "middle lateral line nerve (zebrafish)" xsd:string -intersection_of: UBERON:2001482 ! middle lateral line nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001483 ! -property_value: IAO:0000589 "middle lateral line ganglion (zebrafish)" xsd:string -intersection_of: UBERON:2001483 ! middle lateral line ganglion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001502 ! -property_value: IAO:0000589 "epiphyseal bar (zebrafish)" xsd:string -intersection_of: UBERON:2001502 ! epiphyseal bar -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001504 ! -property_value: IAO:0000589 "occipital arch cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001504 ! occipital arch cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001505 ! -property_value: IAO:0000589 "taenia marginalis anterior (zebrafish)" xsd:string -intersection_of: UBERON:2001505 ! taenia marginalis anterior -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001508 ! -property_value: IAO:0000589 "trabecula communis (zebrafish)" xsd:string -intersection_of: UBERON:2001508 ! trabecula communis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001511 ! -property_value: IAO:0000589 "interhyal cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001511 ! interhyal cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001515 ! -property_value: IAO:0000589 "taenia marginalis posterior (zebrafish)" xsd:string -intersection_of: UBERON:2001515 ! taenia marginalis posterior -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001516 ! -property_value: IAO:0000589 "ceratobranchial cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001516 ! ceratobranchial cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001517 ! -property_value: IAO:0000589 "ceratobranchial 2 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001517 ! ceratobranchial 2 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001518 ! -property_value: IAO:0000589 "ceratobranchial 3 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001518 ! ceratobranchial 3 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001519 ! -property_value: IAO:0000589 "ceratobranchial 4 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001519 ! ceratobranchial 4 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001520 ! -property_value: IAO:0000589 "ceratobranchial 1 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001520 ! ceratobranchial 1 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001521 ! -property_value: IAO:0000589 "ceratobranchial 5 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001521 ! ceratobranchial 5 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001522 ! -property_value: IAO:0000589 "hypobranchial cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001522 ! hypobranchial cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001523 ! -property_value: IAO:0000589 "hypobranchial 4 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001523 ! hypobranchial 4 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001524 ! -property_value: IAO:0000589 "hypobranchial 1 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001524 ! hypobranchial 1 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001525 ! -property_value: IAO:0000589 "hypobranchial 2 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001525 ! hypobranchial 2 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001526 ! -property_value: IAO:0000589 "hypobranchial 3 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001526 ! hypobranchial 3 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001527 ! -property_value: IAO:0000589 "epibranchial cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001527 ! epibranchial cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001528 ! -property_value: IAO:0000589 "epibranchial 1 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001528 ! epibranchial 1 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001529 ! -property_value: IAO:0000589 "epibranchial 3 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001529 ! epibranchial 3 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001530 ! -property_value: IAO:0000589 "epibranchial 2 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001530 ! epibranchial 2 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001531 ! -property_value: IAO:0000589 "epibranchial 4 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001531 ! epibranchial 4 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001533 ! -property_value: IAO:0000589 "pharyngobranchial cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001533 ! pharyngobranchial cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001534 ! -property_value: IAO:0000589 "pharyngobranchial 3 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001534 ! pharyngobranchial 3 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001535 ! -property_value: IAO:0000589 "median fin cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001535 ! median fin cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001536 ! -property_value: IAO:0000589 "pharyngobranchial 2 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001536 ! pharyngobranchial 2 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001537 ! -property_value: IAO:0000589 "mesocoracoid cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001537 ! mesocoracoid cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001538 ! -property_value: IAO:0000589 "pelvic radial cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001538 ! pelvic radial cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001539 ! -property_value: IAO:0000589 "basipterygium cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001539 ! basipterygium cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001540 ! -property_value: IAO:0000589 "pelvic radial 3 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001540 ! pelvic radial 3 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001541 ! -property_value: IAO:0000589 "pelvic radial 2 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001541 ! pelvic radial 2 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001542 ! -property_value: IAO:0000589 "pelvic radial 1 cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001542 ! pelvic radial 1 cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001600 ! -property_value: IAO:0000589 "neural spine 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001546 ! neural spine 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001602 ! -property_value: IAO:0000589 "intercalarium ascending process (zebrafish)" xsd:string -intersection_of: UBERON:2001548 ! intercalarium ascending process -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001601 ! -property_value: IAO:0000589 "manubrium (zebrafish)" xsd:string -intersection_of: UBERON:2001553 ! manubrium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001560 ! -property_value: IAO:0000589 "hypural 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001560 ! hypural 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001561 ! -property_value: IAO:0000589 "hypural 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001561 ! hypural 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001562 ! -property_value: IAO:0000589 "hypural 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001562 ! hypural 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001563 ! -property_value: IAO:0000589 "hypural 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001563 ! hypural 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001564 ! -property_value: IAO:0000589 "hypural 5 (zebrafish)" xsd:string -intersection_of: UBERON:2001564 ! hypural 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001571 ! -property_value: IAO:0000589 "postovulatory follicle (zebrafish)" xsd:string -intersection_of: UBERON:2001571 ! postovulatory follicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001577 ! -property_value: IAO:0000589 "premaxilla ascending process (zebrafish)" xsd:string -intersection_of: UBERON:2001577 ! premaxilla ascending process -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001578 ! -property_value: IAO:0000589 "anterior dorsomedial process of autopalatine (zebrafish)" xsd:string -intersection_of: UBERON:2001578 ! anterior dorsomedial process of autopalatine -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001579 ! -property_value: IAO:0000589 "ural vertebra 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001579 ! ural vertebra 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001581 ! -property_value: IAO:0000589 "ural centrum 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001581 ! ural centrum 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001582 ! -property_value: IAO:0000589 "non-Weberian precaudal vertebra (zebrafish)" xsd:string -intersection_of: UBERON:2001582 ! non-Weberian precaudal vertebra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001583 ! -property_value: IAO:0000589 "preural centrum 1+ ural centrum 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001583 ! preural centrum 1+ ural centrum 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001584 ! -property_value: IAO:0000589 "caudal procurrent ray (zebrafish)" xsd:string -intersection_of: UBERON:2001584 ! caudal procurrent ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001585 ! -property_value: IAO:0000589 "caudal principal ray (zebrafish)" xsd:string -intersection_of: UBERON:2001585 ! caudal principal ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001586 ! -property_value: IAO:0000589 "pectoral fin radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2001586 ! pectoral fin radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001587 ! -property_value: IAO:0000589 "pectoral fin proximal radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2001587 ! pectoral fin proximal radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001588 ! -property_value: IAO:0000589 "pectoral fin distal radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2001588 ! pectoral fin distal radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001589 ! -property_value: IAO:0000589 "propterygium cartilage (zebrafish)" xsd:string -intersection_of: UBERON:2001589 ! propterygium cartilage -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001592 ! -property_value: IAO:0000589 "claustrum bone (zebrafish)" xsd:string -intersection_of: UBERON:2001592 ! claustrum bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001604 ! -property_value: IAO:0000589 "caudal fin upper lobe (zebrafish)" xsd:string -intersection_of: UBERON:2001593 ! caudal fin upper lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001605 ! -property_value: IAO:0000589 "caudal fin lower lobe (zebrafish)" xsd:string -intersection_of: UBERON:2001594 ! caudal fin lower lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005420 ! -property_value: IAO:0000589 "autopalatine-lateral ethmoid joint (zebrafish)" xsd:string -intersection_of: UBERON:2001608 ! autopalatine-lateral ethmoid joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005443 ! -property_value: IAO:0000589 "sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001612 ! sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005444 ! -property_value: IAO:0000589 "trunk sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001617 ! trunk sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005394 ! -property_value: IAO:0000589 "post-otic sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001619 ! post-otic sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001627 ! -property_value: IAO:0000589 "lagenar capsule (zebrafish)" xsd:string -intersection_of: UBERON:2001620 ! lagenar capsule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005393 ! -property_value: IAO:0000589 "otic sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001629 ! otic sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005445 ! -property_value: IAO:0000589 "supratemporal sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001630 ! supratemporal sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001631 ! -property_value: IAO:0000589 "notochordal ossification (zebrafish)" xsd:string -intersection_of: UBERON:2001640 ! notochordal ossification -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001641 ! -property_value: IAO:0000589 "rudimentary neural arch (zebrafish)" xsd:string -intersection_of: UBERON:2001666 ! rudimentary neural arch -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001646 ! -property_value: IAO:0000589 "anal fin radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2001671 ! anal fin radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001647 ! -property_value: IAO:0000589 "dorsal fin radial bone (zebrafish)" xsd:string -intersection_of: UBERON:2001672 ! dorsal fin radial bone -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005648 ! -property_value: IAO:0000589 "mesethmoid-lateral ethmoid joint (zebrafish)" xsd:string -intersection_of: UBERON:2001679 ! mesethmoid-lateral ethmoid joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005649 ! -property_value: IAO:0000589 "mesethmoid-vomer joint (zebrafish)" xsd:string -intersection_of: UBERON:2001680 ! mesethmoid-vomer joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005503 ! -property_value: IAO:0000589 "lateral ethmoid-ectopterygoid ligament (zebrafish)" xsd:string -intersection_of: UBERON:2001685 ! lateral ethmoid-ectopterygoid ligament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005531 ! -property_value: IAO:0000589 "bony shelf above orbit (zebrafish)" xsd:string -intersection_of: UBERON:2001686 ! bony shelf above orbit -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005501 ! -property_value: IAO:0000589 "interopercular-mandibular ligament (zebrafish)" xsd:string -intersection_of: UBERON:2001687 ! interopercular-mandibular ligament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001649 ! -property_value: IAO:0000589 "infraorbital series (zebrafish)" xsd:string -intersection_of: UBERON:2001709 ! infraorbital series -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005478 ! -property_value: IAO:0000589 "opercle-interopercle joint (zebrafish)" xsd:string -intersection_of: UBERON:2001710 ! opercle-interopercle joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005468 ! -property_value: IAO:0000589 "frontal-pterotic joint (zebrafish)" xsd:string -intersection_of: UBERON:2001711 ! frontal-pterotic joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005512 ! -property_value: IAO:0000589 "caudal principal ray 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001713 ! caudal principal ray 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005514 ! -property_value: IAO:0000589 "caudal principal ray 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001714 ! caudal principal ray 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005513 ! -property_value: IAO:0000589 "caudal principal ray 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001715 ! caudal principal ray 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005515 ! -property_value: IAO:0000589 "caudal principal ray 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001716 ! caudal principal ray 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005516 ! -property_value: IAO:0000589 "caudal principal ray 5 (zebrafish)" xsd:string -intersection_of: UBERON:2001717 ! caudal principal ray 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005517 ! -property_value: IAO:0000589 "caudal principal ray 6 (zebrafish)" xsd:string -intersection_of: UBERON:2001718 ! caudal principal ray 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005518 ! -property_value: IAO:0000589 "caudal principal ray 7 (zebrafish)" xsd:string -intersection_of: UBERON:2001719 ! caudal principal ray 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005519 ! -property_value: IAO:0000589 "caudal principal ray 8 (zebrafish)" xsd:string -intersection_of: UBERON:2001720 ! caudal principal ray 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005520 ! -property_value: IAO:0000589 "caudal principal ray 9 (zebrafish)" xsd:string -intersection_of: UBERON:2001721 ! caudal principal ray 9 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005521 ! -property_value: IAO:0000589 "caudal principal ray 10 (zebrafish)" xsd:string -intersection_of: UBERON:2001722 ! caudal principal ray 10 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005522 ! -property_value: IAO:0000589 "caudal principal ray 11 (zebrafish)" xsd:string -intersection_of: UBERON:2001723 ! caudal principal ray 11 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005523 ! -property_value: IAO:0000589 "caudal principal ray 12 (zebrafish)" xsd:string -intersection_of: UBERON:2001724 ! caudal principal ray 12 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005595 ! -property_value: IAO:0000589 "caudal principal ray 13 (zebrafish)" xsd:string -intersection_of: UBERON:2001725 ! caudal principal ray 13 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005524 ! -property_value: IAO:0000589 "caudal principal ray 14 (zebrafish)" xsd:string -intersection_of: UBERON:2001726 ! caudal principal ray 14 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005525 ! -property_value: IAO:0000589 "caudal principal ray 15 (zebrafish)" xsd:string -intersection_of: UBERON:2001727 ! caudal principal ray 15 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005526 ! -property_value: IAO:0000589 "caudal principal ray 16 (zebrafish)" xsd:string -intersection_of: UBERON:2001728 ! caudal principal ray 16 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005527 ! -property_value: IAO:0000589 "caudal principal ray 17 (zebrafish)" xsd:string -intersection_of: UBERON:2001729 ! caudal principal ray 17 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005528 ! -property_value: IAO:0000589 "caudal principal ray 18 (zebrafish)" xsd:string -intersection_of: UBERON:2001730 ! caudal principal ray 18 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005529 ! -property_value: IAO:0000589 "caudal principal ray 19 (zebrafish)" xsd:string -intersection_of: UBERON:2001731 ! caudal principal ray 19 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005347 ! -property_value: IAO:0000589 "vertebral element 5 (zebrafish)" xsd:string -intersection_of: UBERON:2001732 ! vertebral element 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005431 ! -property_value: IAO:0000589 "scapular foramen (zebrafish)" xsd:string -intersection_of: UBERON:2001735 ! scapular foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005426 ! -property_value: IAO:0000589 "coracoid foramen (zebrafish)" xsd:string -intersection_of: UBERON:2001737 ! coracoid foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005419 ! -property_value: IAO:0000589 "auditory foramen (zebrafish)" xsd:string -intersection_of: UBERON:2001742 ! auditory foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005432 ! -property_value: IAO:0000589 "superficial ophthalmic nerve foramen (zebrafish)" xsd:string -intersection_of: UBERON:2001748 ! superficial ophthalmic nerve foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005464 ! -property_value: IAO:0000589 "dentary-anguloarticular joint (zebrafish)" xsd:string -intersection_of: UBERON:2001749 ! dentary-anguloarticular joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005543 ! -property_value: IAO:0000589 "rib of vertebra 6 (zebrafish)" xsd:string -intersection_of: UBERON:2001750 ! rib of vertebra 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005542 ! -property_value: IAO:0000589 "rib of vertebra 5 (zebrafish)" xsd:string -intersection_of: UBERON:2001751 ! rib of vertebra 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005628 ! -property_value: IAO:0000589 "posttemporal fossa (zebrafish)" xsd:string -intersection_of: UBERON:2001753 ! posttemporal fossa -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005355 ! -property_value: IAO:0000589 "dorsal fin ray 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001754 ! dorsal fin ray 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005356 ! -property_value: IAO:0000589 "dorsal fin ray 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001755 ! dorsal fin ray 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005357 ! -property_value: IAO:0000589 "dorsal fin ray 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001756 ! dorsal fin ray 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005358 ! -property_value: IAO:0000589 "dorsal fin ray 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001757 ! dorsal fin ray 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005359 ! -property_value: IAO:0000589 "dorsal fin ray 5 (zebrafish)" xsd:string -intersection_of: UBERON:2001758 ! dorsal fin ray 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005360 ! -property_value: IAO:0000589 "dorsal fin ray 6 (zebrafish)" xsd:string -intersection_of: UBERON:2001759 ! dorsal fin ray 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005361 ! -property_value: IAO:0000589 "dorsal fin ray 7 (zebrafish)" xsd:string -intersection_of: UBERON:2001760 ! dorsal fin ray 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005547 ! -property_value: IAO:0000589 "pectoral fin ray 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001761 ! pectoral fin ray 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005548 ! -property_value: IAO:0000589 "pectoral fin ray 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001762 ! pectoral fin ray 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005549 ! -property_value: IAO:0000589 "pectoral fin ray 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001763 ! pectoral fin ray 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005553 ! -property_value: IAO:0000589 "pectoral fin ray 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001764 ! pectoral fin ray 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005552 ! -property_value: IAO:0000589 "pectoral fin ray 5 (zebrafish)" xsd:string -intersection_of: UBERON:2001765 ! pectoral fin ray 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005550 ! -property_value: IAO:0000589 "pectoral fin ray 6 (zebrafish)" xsd:string -intersection_of: UBERON:2001766 ! pectoral fin ray 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005551 ! -property_value: IAO:0000589 "pectoral fin ray 7 (zebrafish)" xsd:string -intersection_of: UBERON:2001767 ! pectoral fin ray 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005399 ! -property_value: IAO:0000589 "anal fin ray 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001769 ! anal fin ray 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005400 ! -property_value: IAO:0000589 "anal fin ray 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001770 ! anal fin ray 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005401 ! -property_value: IAO:0000589 "anal fin ray 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001771 ! anal fin ray 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005402 ! -property_value: IAO:0000589 "anal fin ray 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001772 ! anal fin ray 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005403 ! -property_value: IAO:0000589 "anal fin ray 5 (zebrafish)" xsd:string -intersection_of: UBERON:2001773 ! anal fin ray 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005404 ! -property_value: IAO:0000589 "anal fin ray 6 (zebrafish)" xsd:string -intersection_of: UBERON:2001774 ! anal fin ray 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005405 ! -property_value: IAO:0000589 "anal fin ray 7 (zebrafish)" xsd:string -intersection_of: UBERON:2001775 ! anal fin ray 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005554 ! -property_value: IAO:0000589 "pelvic fin ray 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001776 ! pelvic fin ray 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005555 ! -property_value: IAO:0000589 "pelvic fin ray 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001777 ! pelvic fin ray 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005557 ! -property_value: IAO:0000589 "pelvic fin ray 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001778 ! pelvic fin ray 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005556 ! -property_value: IAO:0000589 "pelvic fin ray 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001779 ! pelvic fin ray 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005422 ! -property_value: IAO:0000589 "autopalatine-vomer joint (zebrafish)" xsd:string -intersection_of: UBERON:2001784 ! autopalatine-vomer joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005534 ! -property_value: IAO:0000589 "branched dorsal fin ray (zebrafish)" xsd:string -intersection_of: UBERON:2001785 ! branched dorsal fin ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005480 ! -property_value: IAO:0000589 "orbitosphenoid-prootic joint (zebrafish)" xsd:string -intersection_of: UBERON:2001794 ! orbitosphenoid-prootic joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005493 ! -property_value: IAO:0000589 "recessus lateralis (zebrafish)" xsd:string -intersection_of: UBERON:2001799 ! recessus lateralis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005485 ! -property_value: IAO:0000589 "quadrate-hyomandibula joint (zebrafish)" xsd:string -intersection_of: UBERON:2001801 ! quadrate-hyomandibula joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005486 ! -property_value: IAO:0000589 "quadrate-metapterygoid joint (zebrafish)" xsd:string -intersection_of: UBERON:2001803 ! quadrate-metapterygoid joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005429 ! -property_value: IAO:0000589 "olfactory nerve foramen (zebrafish)" xsd:string -intersection_of: UBERON:2001804 ! olfactory nerve foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005396 ! -property_value: IAO:0000589 "supraorbital sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001810 ! supraorbital sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005392 ! -property_value: IAO:0000589 "infraorbital sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001811 ! infraorbital sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005395 ! -property_value: IAO:0000589 "preoperculo-mandibular sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001812 ! preoperculo-mandibular sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005448 ! -property_value: IAO:0000589 "preopercular sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001813 ! preopercular sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005451 ! -property_value: IAO:0000589 "mandibular sensory canal (zebrafish)" xsd:string -intersection_of: UBERON:2001814 ! mandibular sensory canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005362 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001818 ! dorsal fin proximal radial bone 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005363 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001819 ! dorsal fin proximal radial bone 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001670 ! -property_value: IAO:0000589 "notochord posterior region (zebrafish)" xsd:string -intersection_of: UBERON:2001821 ! notochord posterior region -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005530 ! -property_value: IAO:0000589 "lateral line scale (zebrafish)" xsd:string -intersection_of: UBERON:2001824 ! lateral line scale -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005265 ! -property_value: IAO:0000589 "premaxillary-maxillary ligament (zebrafish)" xsd:string -intersection_of: UBERON:2001827 ! premaxillary-maxillary ligament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005264 ! -property_value: IAO:0000589 "primordial ligament (zebrafish)" xsd:string -intersection_of: UBERON:2001828 ! primordial ligament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005262 ! -property_value: IAO:0000589 "caudal fin dorsal procurrent ray (zebrafish)" xsd:string -intersection_of: UBERON:2001829 ! caudal fin dorsal procurrent ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005263 ! -property_value: IAO:0000589 "caudal fin ventral procurrent ray (zebrafish)" xsd:string -intersection_of: UBERON:2001830 ! caudal fin ventral procurrent ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005483 ! -property_value: IAO:0000589 "pterosphenoid-orbitosphenoid joint (zebrafish)" xsd:string -intersection_of: UBERON:2001831 ! pterosphenoid-orbitosphenoid joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005560 ! -property_value: IAO:0000589 "parasphenoid-basioccipital joint (zebrafish)" xsd:string -intersection_of: UBERON:2001832 ! parasphenoid-basioccipital joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005473 ! -property_value: IAO:0000589 "interhyal-epihyal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001841 ! interhyal-epihyal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005497 ! -property_value: IAO:0000589 "epihyal-ceratohyal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001842 ! epihyal-ceratohyal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005467 ! -property_value: IAO:0000589 "ceratohyal-dorsal hypohyal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001843 ! ceratohyal-dorsal hypohyal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005466 ! -property_value: IAO:0000589 "ceratohyal-ventral hypohyal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001844 ! ceratohyal-ventral hypohyal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005458 ! -property_value: IAO:0000589 "dorsal hypohyal-ventral hypohyal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001845 ! dorsal hypohyal-ventral hypohyal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005476 ! -property_value: IAO:0000589 "inter-ventral hypohyal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001846 ! inter-ventral hypohyal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005457 ! -property_value: IAO:0000589 "dorsal hypohyal-urohyal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001847 ! dorsal hypohyal-urohyal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005487 ! -property_value: IAO:0000589 "ventral hypohyal-urohyal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001848 ! ventral hypohyal-urohyal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005498 ! -property_value: IAO:0000589 "epihyal-branchiostegal ray joint (zebrafish)" xsd:string -intersection_of: UBERON:2001849 ! epihyal-branchiostegal ray joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005465 ! -property_value: IAO:0000589 "ceratohyal-branchiostegal ray joint (zebrafish)" xsd:string -intersection_of: UBERON:2001850 ! ceratohyal-branchiostegal ray joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005390 ! -property_value: IAO:0000589 "gill ray (zebrafish)" xsd:string -intersection_of: UBERON:2001856 ! gill ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005474 ! -property_value: IAO:0000589 "inter-hypobranchial 3 joint (zebrafish)" xsd:string -intersection_of: UBERON:2001863 ! inter-hypobranchial 3 joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005391 ! -property_value: IAO:0000589 "head sensory canal system (zebrafish)" xsd:string -intersection_of: UBERON:2001873 ! head sensory canal system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005539 ! -property_value: IAO:0000589 "rib of vertebra 2 (zebrafish)" xsd:string -intersection_of: UBERON:2001878 ! rib of vertebra 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005538 ! -property_value: IAO:0000589 "rib of vertebra 1 (zebrafish)" xsd:string -intersection_of: UBERON:2001879 ! rib of vertebra 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005540 ! -property_value: IAO:0000589 "rib of vertebra 3 (zebrafish)" xsd:string -intersection_of: UBERON:2001880 ! rib of vertebra 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005541 ! -property_value: IAO:0000589 "rib of vertebra 4 (zebrafish)" xsd:string -intersection_of: UBERON:2001881 ! rib of vertebra 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005472 ! -property_value: IAO:0000589 "inter-frontal joint (zebrafish)" xsd:string -intersection_of: UBERON:2001922 ! inter-frontal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005406 ! -property_value: IAO:0000589 "anterior myodome (zebrafish)" xsd:string -intersection_of: UBERON:2001927 ! anterior myodome -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005442 ! -property_value: IAO:0000589 "articular fossa of opercle (zebrafish)" xsd:string -intersection_of: UBERON:2001928 ! articular fossa of opercle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005511 ! -property_value: IAO:0000589 "sensory canal tubular ossicle (zebrafish)" xsd:string -intersection_of: UBERON:2001932 ! sensory canal tubular ossicle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005447 ! -property_value: IAO:0000589 "sensory canal tubule (zebrafish)" xsd:string -intersection_of: UBERON:2001933 ! sensory canal tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005407 ! -property_value: IAO:0000589 "anterior nasal barbel (zebrafish)" xsd:string -intersection_of: UBERON:2001937 ! anterior nasal barbel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005408 ! -property_value: IAO:0000589 "maxillary barbel (zebrafish)" xsd:string -intersection_of: UBERON:2001938 ! maxillary barbel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005471 ! -property_value: IAO:0000589 "inter-basipterygium joint (zebrafish)" xsd:string -intersection_of: UBERON:2001939 ! inter-basipterygium joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005504 ! -property_value: IAO:0000589 "vertebra 4-vertebra 5 joint (zebrafish)" xsd:string -intersection_of: UBERON:2001940 ! vertebra 4-vertebra 5 joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005479 ! -property_value: IAO:0000589 "orbitosphenoid-lateral ethmoid joint (zebrafish)" xsd:string -intersection_of: UBERON:2001941 ! orbitosphenoid-lateral ethmoid joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005421 ! -property_value: IAO:0000589 "autopalatine-maxillary joint (zebrafish)" xsd:string -intersection_of: UBERON:2001942 ! autopalatine-maxillary joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005502 ! -property_value: IAO:0000589 "lateral ethmoid-autopalatine ligament (zebrafish)" xsd:string -intersection_of: UBERON:2001944 ! lateral ethmoid-autopalatine ligament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005544 ! -property_value: IAO:0000589 "hyomandibular-otic region joint (zebrafish)" xsd:string -intersection_of: UBERON:2001947 ! hyomandibular-otic region joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005475 ! -property_value: IAO:0000589 "inter-premaxillary joint (zebrafish)" xsd:string -intersection_of: UBERON:2001950 ! inter-premaxillary joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005495 ! -property_value: IAO:0000589 "skin flap (zebrafish)" xsd:string -intersection_of: UBERON:2001951 ! skin flap -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005508 ! -property_value: IAO:0000589 "inner mental barbel (zebrafish)" xsd:string -intersection_of: UBERON:2001969 ! inner mental barbel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005637 ! -property_value: IAO:0000589 "intercostal ligament (zebrafish)" xsd:string -intersection_of: UBERON:2001972 ! intercostal ligament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005454 ! -property_value: IAO:0000589 "subtemporal fossa (zebrafish)" xsd:string -intersection_of: UBERON:2001974 ! subtemporal fossa -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005469 ! -property_value: IAO:0000589 "hyomandibula-metapterygoid joint (zebrafish)" xsd:string -intersection_of: UBERON:2001979 ! hyomandibula-metapterygoid joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005348 ! -property_value: IAO:0000589 "vertebral element 6 (zebrafish)" xsd:string -intersection_of: UBERON:2001980 ! vertebral element 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005349 ! -property_value: IAO:0000589 "vertebral element 7 (zebrafish)" xsd:string -intersection_of: UBERON:2001981 ! vertebral element 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005350 ! -property_value: IAO:0000589 "vertebral element 8 (zebrafish)" xsd:string -intersection_of: UBERON:2001982 ! vertebral element 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005535 ! -property_value: IAO:0000589 "branched anal fin ray (zebrafish)" xsd:string -intersection_of: UBERON:2001992 ! branched anal fin ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005397 ! -property_value: IAO:0000589 "hyoideomandibular nerve (zebrafish)" xsd:string -intersection_of: UBERON:2002010 ! hyoideomandibular nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005537 ! -property_value: IAO:0000589 "lateral fontanel of frontal (zebrafish)" xsd:string -intersection_of: UBERON:2002011 ! lateral fontanel of frontal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005427 ! -property_value: IAO:0000589 "dentary foramen (zebrafish)" xsd:string -intersection_of: UBERON:2002012 ! dentary foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005433 ! -property_value: IAO:0000589 "mental barbel (zebrafish)" xsd:string -intersection_of: UBERON:2002024 ! mental barbel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005430 ! -property_value: IAO:0000589 "orbital foramen (zebrafish)" xsd:string -intersection_of: UBERON:2002031 ! orbital foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005477 ! -property_value: IAO:0000589 "lateral ethmoid-frontal joint (zebrafish)" xsd:string -intersection_of: UBERON:2002032 ! lateral ethmoid-frontal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005482 ! -property_value: IAO:0000589 "prootic-pterosphenoid joint (zebrafish)" xsd:string -intersection_of: UBERON:2002033 ! prootic-pterosphenoid joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005481 ! -property_value: IAO:0000589 "prootic-exoccipital joint (zebrafish)" xsd:string -intersection_of: UBERON:2002034 ! prootic-exoccipital joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005423 ! -property_value: IAO:0000589 "basioccipital-exoccipital joint (zebrafish)" xsd:string -intersection_of: UBERON:2002038 ! basioccipital-exoccipital joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005470 ! -property_value: IAO:0000589 "inter-coracoid joint (zebrafish)" xsd:string -intersection_of: UBERON:2002040 ! inter-coracoid joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005499 ! -property_value: IAO:0000589 "scale circulus (zebrafish)" xsd:string -intersection_of: UBERON:2002051 ! scale circulus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005510 ! -property_value: IAO:0000589 "prootic depression (zebrafish)" xsd:string -intersection_of: UBERON:2002052 ! prootic depression -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005532 ! -property_value: IAO:0000589 "bony plate (zebrafish)" xsd:string -intersection_of: UBERON:2002053 ! bony plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005505 ! -property_value: IAO:0000589 "vertebra 5-vertebra 6 joint (zebrafish)" xsd:string -intersection_of: UBERON:2002054 ! vertebra 5-vertebra 6 joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005506 ! -property_value: IAO:0000589 "vertebra 6 - vertebra 7 joint (zebrafish)" xsd:string -intersection_of: UBERON:2002055 ! vertebra 6 - vertebra 7 joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005389 ! -property_value: IAO:0000589 "gill opening (zebrafish)" xsd:string -intersection_of: UBERON:2002057 ! gill opening -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005533 ! -property_value: IAO:0000589 "branched caudal fin ray (zebrafish)" xsd:string -intersection_of: UBERON:2002062 ! branched caudal fin ray -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005418 ! -property_value: IAO:0000589 "auditory fenestra (zebrafish)" xsd:string -intersection_of: UBERON:2002066 ! auditory fenestra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005492 ! -property_value: IAO:0000589 "pro-otic fossa (zebrafish)" xsd:string -intersection_of: UBERON:2002090 ! pro-otic fossa -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005364 ! -property_value: IAO:0000589 "dorsal fin pterygiophore 1 (zebrafish)" xsd:string -intersection_of: UBERON:2002094 ! dorsal fin pterygiophore 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005500 ! -property_value: IAO:0000589 "prootic bulla (zebrafish)" xsd:string -intersection_of: UBERON:2002111 ! prootic bulla -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001676 ! -property_value: IAO:0000589 "annular ligament (zebrafish)" xsd:string -intersection_of: UBERON:2002141 ! annular ligament -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005337 ! -property_value: IAO:0000589 "anterior swim bladder bud (zebrafish)" xsd:string -intersection_of: UBERON:2002145 ! anterior swim bladder bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005275 ! -property_value: IAO:0000589 "arrector muscle (zebrafish)" xsd:string -intersection_of: UBERON:2002147 ! arrector muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005351 ! -property_value: IAO:0000589 "vertebral element 9 (zebrafish)" xsd:string -intersection_of: UBERON:2002149 ! vertebral element 9 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005353 ! -property_value: IAO:0000589 "vertebral element 10 (zebrafish)" xsd:string -intersection_of: UBERON:2002150 ! vertebral element 10 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005354 ! -property_value: IAO:0000589 "vertebral element 11 (zebrafish)" xsd:string -intersection_of: UBERON:2002151 ! vertebral element 11 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005352 ! -property_value: IAO:0000589 "vertebral element 12 (zebrafish)" xsd:string -intersection_of: UBERON:2002152 ! vertebral element 12 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001654 ! -property_value: IAO:0000589 "opercular cavity (zebrafish)" xsd:string -intersection_of: UBERON:2002154 ! opercular cavity -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001650 ! -property_value: IAO:0000589 "branchial mesenchyme (zebrafish)" xsd:string -intersection_of: UBERON:2002172 ! branchial mesenchyme -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001697 ! -property_value: IAO:0000589 "octaval nerve motor nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2002174 ! octaval nerve motor nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001698 ! -property_value: IAO:0000589 "rostral octaval nerve motor nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2002175 ! rostral octaval nerve motor nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001699 ! -property_value: IAO:0000589 "caudal octaval nerve motor nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2002176 ! caudal octaval nerve motor nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001711 ! -property_value: IAO:0000589 "climbing fiber (zebrafish)" xsd:string -intersection_of: UBERON:2002185 ! climbing fiber -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001695 ! -property_value: IAO:0000589 "dorsolateral motor nucleus of vagal nerve (zebrafish)" xsd:string -intersection_of: UBERON:2002192 ! dorsolateral motor nucleus of vagal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001672 ! -property_value: IAO:0000589 "dorsolateral septum (zebrafish)" xsd:string -intersection_of: UBERON:2002193 ! dorsolateral septum -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001703 ! -property_value: IAO:0000589 "epidermal placode (zebrafish)" xsd:string -intersection_of: UBERON:2002195 ! epidermal placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001651 ! -property_value: IAO:0000589 "hypobranchial muscle (zebrafish)" xsd:string -intersection_of: UBERON:2002200 ! hypobranchial muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001669 ! -property_value: IAO:0000589 "intermediate nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2002202 ! intermediate nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001671 ! -property_value: IAO:0000589 "macula communis (zebrafish)" xsd:string -intersection_of: UBERON:2002206 ! macula communis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001696 ! -property_value: IAO:0000589 "medial motor nucleus of vagal nerve (zebrafish)" xsd:string -intersection_of: UBERON:2002207 ! medial motor nucleus of vagal nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001710 ! -property_value: IAO:0000589 "mossy fiber (zebrafish)" xsd:string -intersection_of: UBERON:2002210 ! mossy fiber -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001599 ! -property_value: IAO:0000589 "os suspensorium medial flange (zebrafish)" xsd:string -intersection_of: UBERON:2002214 ! os suspensorium medial flange -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001715 ! -property_value: IAO:0000589 "otic vesicle protrusion (zebrafish)" xsd:string -intersection_of: UBERON:2002215 ! otic vesicle protrusion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001716 ! -property_value: IAO:0000589 "otic vesicle ventral protrusion (zebrafish)" xsd:string -intersection_of: UBERON:2002216 ! otic vesicle ventral protrusion -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001713 ! -property_value: IAO:0000589 "parallel fiber, teleost (zebrafish)" xsd:string -intersection_of: UBERON:2002218 ! parallel fiber, teleost -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001680 ! -property_value: IAO:0000589 "parvocellular preoptic nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2002219 ! parvocellular preoptic nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001653 ! -property_value: IAO:0000589 "pericardial muscle (zebrafish)" xsd:string -intersection_of: UBERON:2002221 ! pericardial muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001717 ! -property_value: IAO:0000589 "pillar of the semicircular canal (zebrafish)" xsd:string -intersection_of: UBERON:2002223 ! pillar of the semicircular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001656 ! -property_value: IAO:0000589 "pleuroperitoneal cavity (zebrafish)" xsd:string -intersection_of: UBERON:2002224 ! pleuroperitoneal cavity -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001623 ! -property_value: IAO:0000589 "posterior pronephric duct (zebrafish)" xsd:string -intersection_of: UBERON:2002225 ! posterior pronephric duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001662 ! -property_value: IAO:0000589 "preglomerular nucleus (zebrafish)" xsd:string -intersection_of: UBERON:2002226 ! preglomerular nucleus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001721 ! -property_value: IAO:0000589 "presumptive atrium primitive heart tube (zebrafish)" xsd:string -intersection_of: UBERON:2002229 ! presumptive atrium primitive heart tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001720 ! -property_value: IAO:0000589 "presumptive cardiac ventricle primitive heart tube (zebrafish)" xsd:string -intersection_of: UBERON:2002232 ! presumptive cardiac ventricle primitive heart tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001714 ! -property_value: IAO:0000589 "presumptive ventral mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:2002235 ! presumptive ventral mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001706 ! -property_value: IAO:0000589 "Purkinje cell layer corpus cerebelli (zebrafish)" xsd:string -intersection_of: UBERON:2002240 ! Purkinje cell layer corpus cerebelli -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001709 ! -property_value: IAO:0000589 "Purkinje cell layer valvula cerebelli (zebrafish)" xsd:string -intersection_of: UBERON:2002241 ! Purkinje cell layer valvula cerebelli -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001704 ! -property_value: IAO:0000589 "scale primordium (zebrafish)" xsd:string -intersection_of: UBERON:2002242 ! scale primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001657 ! -property_value: IAO:0000589 "supraoptic tract (zebrafish)" xsd:string -intersection_of: UBERON:2002244 ! supraoptic tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005000 ! -property_value: IAO:0000589 "basal communicating artery (zebrafish)" xsd:string -intersection_of: UBERON:2005000 ! basal communicating artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005010 ! -property_value: IAO:0000589 "mid cerebral vein (zebrafish)" xsd:string -intersection_of: UBERON:2005010 ! mid cerebral vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005011 ! -property_value: IAO:0000589 "pseudobranchial artery (zebrafish)" xsd:string -intersection_of: UBERON:2005011 ! pseudobranchial artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005012 ! -property_value: IAO:0000589 "afferent filamental artery (zebrafish)" xsd:string -intersection_of: UBERON:2005012 ! afferent filamental artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005013 ! -property_value: IAO:0000589 "concurrent branch afferent branchial artery (zebrafish)" xsd:string -intersection_of: UBERON:2005013 ! concurrent branch afferent branchial artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005014 ! -property_value: IAO:0000589 "recurrent branch afferent branchial artery (zebrafish)" xsd:string -intersection_of: UBERON:2005014 ! recurrent branch afferent branchial artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005015 ! -property_value: IAO:0000589 "afferent lamellar arteriole (zebrafish)" xsd:string -intersection_of: UBERON:2005015 ! afferent lamellar arteriole -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005017 ! -property_value: IAO:0000589 "primordial midbrain channel (zebrafish)" xsd:string -intersection_of: UBERON:2005017 ! primordial midbrain channel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005018 ! -property_value: IAO:0000589 "efferent filamental artery (zebrafish)" xsd:string -intersection_of: UBERON:2005018 ! efferent filamental artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005019 ! -property_value: IAO:0000589 "efferent lamellar arteriole (zebrafish)" xsd:string -intersection_of: UBERON:2005019 ! efferent lamellar arteriole -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005020 ! -property_value: IAO:0000589 "central artery (zebrafish)" xsd:string -intersection_of: UBERON:2005020 ! central artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005021 ! -property_value: IAO:0000589 "cerebellar central artery (zebrafish)" xsd:string -intersection_of: UBERON:2005021 ! cerebellar central artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005022 ! -property_value: IAO:0000589 "opercular artery (zebrafish)" xsd:string -intersection_of: UBERON:2005022 ! opercular artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005025 ! -property_value: IAO:0000589 "dorsal longitudinal anastomotic vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005025 ! dorsal longitudinal anastomotic vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005026 ! -property_value: IAO:0000589 "primary head sinus (zebrafish)" xsd:string -intersection_of: UBERON:2005026 ! primary head sinus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005027 ! -property_value: IAO:0000589 "posterior cerebral vein (zebrafish)" xsd:string -intersection_of: UBERON:2005027 ! posterior cerebral vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005029 ! -property_value: IAO:0000589 "rostral blood island (zebrafish)" xsd:string -intersection_of: UBERON:2005029 ! rostral blood island -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005030 ! -property_value: IAO:0000589 "dorsal ciliary vein (zebrafish)" xsd:string -intersection_of: UBERON:2005030 ! dorsal ciliary vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005031 ! -property_value: IAO:0000589 "dorsal longitudinal vein (zebrafish)" xsd:string -intersection_of: UBERON:2005031 ! dorsal longitudinal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005032 ! -property_value: IAO:0000589 "optic vein (zebrafish)" xsd:string -intersection_of: UBERON:2005032 ! optic vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005034 ! -property_value: IAO:0000589 "parachordal vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005034 ! parachordal vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005036 ! -property_value: IAO:0000589 "supraintestinal artery (zebrafish)" xsd:string -intersection_of: UBERON:2005036 ! supraintestinal artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005038 ! -property_value: IAO:0000589 "supraintestinal vein (zebrafish)" xsd:string -intersection_of: UBERON:2005038 ! supraintestinal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005039 ! -property_value: IAO:0000589 "anterior lateral mesoderm (zebrafish)" xsd:string -intersection_of: UBERON:2005039 ! anterior lateral mesoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005044 ! -property_value: IAO:0000589 "optic artery (zebrafish)" xsd:string -intersection_of: UBERON:2005044 ! optic artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005048 ! -property_value: IAO:0000589 "primitive prosencephalic artery (zebrafish)" xsd:string -intersection_of: UBERON:2005048 ! primitive prosencephalic artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005049 ! -property_value: IAO:0000589 "prosencephalic artery (zebrafish)" xsd:string -intersection_of: UBERON:2005049 ! prosencephalic artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005050 ! -property_value: IAO:0000589 "palatocerebral artery (zebrafish)" xsd:string -intersection_of: UBERON:2005050 ! palatocerebral artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005051 ! -property_value: IAO:0000589 "communicating vessel palatocerebral artery (zebrafish)" xsd:string -intersection_of: UBERON:2005051 ! communicating vessel palatocerebral artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005052 ! -property_value: IAO:0000589 "anterior mesencephalic central artery (zebrafish)" xsd:string -intersection_of: UBERON:2005052 ! anterior mesencephalic central artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005053 ! -property_value: IAO:0000589 "nasal ciliary artery (zebrafish)" xsd:string -intersection_of: UBERON:2005053 ! nasal ciliary artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005054 ! -property_value: IAO:0000589 "inner optic circle (zebrafish)" xsd:string -intersection_of: UBERON:2005054 ! inner optic circle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005055 ! -property_value: IAO:0000589 "median palatocerebral vein (zebrafish)" xsd:string -intersection_of: UBERON:2005055 ! median palatocerebral vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005056 ! -property_value: IAO:0000589 "palatocerebral vein (zebrafish)" xsd:string -intersection_of: UBERON:2005056 ! palatocerebral vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005066 ! -property_value: IAO:0000589 "bulbus arteriosus outer layer (zebrafish)" xsd:string -intersection_of: UBERON:2005066 ! bulbus arteriosus outer layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005067 ! -property_value: IAO:0000589 "bulbus arteriosus middle layer (zebrafish)" xsd:string -intersection_of: UBERON:2005067 ! bulbus arteriosus middle layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005068 ! -property_value: IAO:0000589 "bulbus arteriosus inner layer (zebrafish)" xsd:string -intersection_of: UBERON:2005068 ! bulbus arteriosus inner layer -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005072 ! -property_value: IAO:0000589 "endocardial ring (zebrafish)" xsd:string -intersection_of: UBERON:2005072 ! endocardial ring -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005073 ! -property_value: IAO:0000589 "atrioventricular ring (zebrafish)" xsd:string -intersection_of: UBERON:2005073 ! atrioventricular ring -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005074 ! -property_value: IAO:0000589 "central cardiac conduction system (zebrafish)" xsd:string -intersection_of: UBERON:2005074 ! central cardiac conduction system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005075 ! -property_value: IAO:0000589 "peripheral cardiac conduction system (zebrafish)" xsd:string -intersection_of: UBERON:2005075 ! peripheral cardiac conduction system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005078 ! -property_value: IAO:0000589 "middle mesencephalic central artery (zebrafish)" xsd:string -intersection_of: UBERON:2005078 ! middle mesencephalic central artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005079 ! -property_value: IAO:0000589 "posterior mesencephalic central artery (zebrafish)" xsd:string -intersection_of: UBERON:2005079 ! posterior mesencephalic central artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005080 ! -property_value: IAO:0000589 "anterior mesenteric artery (zebrafish)" xsd:string -intersection_of: UBERON:2005080 ! anterior mesenteric artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005082 ! -property_value: IAO:0000589 "dorsal branch nasal ciliary artery (zebrafish)" xsd:string -intersection_of: UBERON:2005082 ! dorsal branch nasal ciliary artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005083 ! -property_value: IAO:0000589 "ventral branch nasal ciliary artery (zebrafish)" xsd:string -intersection_of: UBERON:2005083 ! ventral branch nasal ciliary artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005084 ! -property_value: IAO:0000589 "metencephalic artery (zebrafish)" xsd:string -intersection_of: UBERON:2005084 ! metencephalic artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005085 ! -property_value: IAO:0000589 "nasal artery (zebrafish)" xsd:string -intersection_of: UBERON:2005085 ! nasal artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005087 ! -property_value: IAO:0000589 "pectoral vein (zebrafish)" xsd:string -intersection_of: UBERON:2005087 ! pectoral vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005088 ! -property_value: IAO:0000589 "posterior mesenteric artery (zebrafish)" xsd:string -intersection_of: UBERON:2005088 ! posterior mesenteric artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005089 ! -property_value: IAO:0000589 "swim bladder artery (zebrafish)" xsd:string -intersection_of: UBERON:2005089 ! swim bladder artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005093 ! -property_value: IAO:0000589 "nasal vein (zebrafish)" xsd:string -intersection_of: UBERON:2005093 ! nasal vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005097 ! -property_value: IAO:0000589 "caudal fin vasculature (zebrafish)" xsd:string -intersection_of: UBERON:2005097 ! caudal fin vasculature -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005098 ! -property_value: IAO:0000589 "central ray artery (zebrafish)" xsd:string -intersection_of: UBERON:2005098 ! central ray artery -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005099 ! -property_value: IAO:0000589 "ray vein (zebrafish)" xsd:string -intersection_of: UBERON:2005099 ! ray vein -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005100 ! -property_value: IAO:0000589 "intervessel commissure (zebrafish)" xsd:string -intersection_of: UBERON:2005100 ! intervessel commissure -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005101 ! -property_value: IAO:0000589 "interray vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005101 ! interray vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005102 ! -property_value: IAO:0000589 "presumptive median fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2005102 ! presumptive median fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005103 ! -property_value: IAO:0000589 "presumptive ventral fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2005103 ! presumptive ventral fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005104 ! -property_value: IAO:0000589 "presumptive dorsal fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2005104 ! presumptive dorsal fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005106 ! -property_value: IAO:0000589 "longitudinal lateral lymphatic vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005106 ! longitudinal lateral lymphatic vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005113 ! -property_value: IAO:0000589 "dorsal lateral line neuromast (zebrafish)" xsd:string -intersection_of: UBERON:2005113 ! dorsal lateral line neuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005114 ! -property_value: IAO:0000589 "middle lateral line system (zebrafish)" xsd:string -intersection_of: UBERON:2005114 ! middle lateral line system -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005115 ! -property_value: IAO:0000589 "primary posterior lateral line primordium (zebrafish)" xsd:string -intersection_of: UBERON:2005115 ! primary posterior lateral line primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005116 ! -property_value: IAO:0000589 "secondary posterior lateral line primordium (zebrafish)" xsd:string -intersection_of: UBERON:2005116 ! secondary posterior lateral line primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005117 ! -property_value: IAO:0000589 "anterior lateral line primordium (zebrafish)" xsd:string -intersection_of: UBERON:2005117 ! anterior lateral line primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005118 ! -property_value: IAO:0000589 "middle lateral line primordium (zebrafish)" xsd:string -intersection_of: UBERON:2005118 ! middle lateral line primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005119 ! -property_value: IAO:0000589 "barbel primordium (zebrafish)" xsd:string -intersection_of: UBERON:2005119 ! barbel primordium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005121 ! -property_value: IAO:0000589 "middle lateral line placode (zebrafish)" xsd:string -intersection_of: UBERON:2005121 ! middle lateral line placode -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005122 ! -property_value: IAO:0000589 "dorsal axial hypoblast (zebrafish)" xsd:string -intersection_of: UBERON:2005122 ! dorsal axial hypoblast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005126 ! -property_value: IAO:0000589 "intestinal bulb epithelium (zebrafish)" xsd:string -intersection_of: UBERON:2005126 ! intestinal bulb epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005135 ! -property_value: IAO:0000589 "primary dental epithelium (zebrafish)" xsd:string -intersection_of: UBERON:2005135 ! primary dental epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005144 ! -property_value: IAO:0000589 "ampullary nerve (zebrafish)" xsd:string -intersection_of: UBERON:2005144 ! ampullary nerve -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005149 ! -property_value: IAO:0000589 "distal epidermal cap of regenerating fin/limb (zebrafish)" xsd:string -intersection_of: UBERON:2005149 ! distal epidermal cap of regenerating fin/limb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005150 ! -property_value: IAO:0000589 "basal regeneration epithelium of regenerating fin/limb (zebrafish)" xsd:string -intersection_of: UBERON:2005150 ! basal regeneration epithelium of regenerating fin/limb -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005170 ! -property_value: IAO:0000589 "extrahepatic duct (zebrafish)" xsd:string -intersection_of: UBERON:2005170 ! extrahepatic duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005174 ! -property_value: IAO:0000589 "ventral liver lobe (zebrafish)" xsd:string -intersection_of: UBERON:2005174 ! ventral liver lobe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005219 ! -property_value: IAO:0000589 "choroid plexus vascular circuit (zebrafish)" xsd:string -intersection_of: UBERON:2005219 ! choroid plexus vascular circuit -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005220 ! -property_value: IAO:0000589 "larval melanophore stripe (zebrafish)" xsd:string -intersection_of: UBERON:2005220 ! larval melanophore stripe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005221 ! -property_value: IAO:0000589 "dorsal larval melanophore stripe (zebrafish)" xsd:string -intersection_of: UBERON:2005221 ! dorsal larval melanophore stripe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005222 ! -property_value: IAO:0000589 "ventral larval melanophore stripe (zebrafish)" xsd:string -intersection_of: UBERON:2005222 ! ventral larval melanophore stripe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005223 ! -property_value: IAO:0000589 "lateral larval melanophore stripe (zebrafish)" xsd:string -intersection_of: UBERON:2005223 ! lateral larval melanophore stripe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005224 ! -property_value: IAO:0000589 "yolk larval melanophore stripe (zebrafish)" xsd:string -intersection_of: UBERON:2005224 ! yolk larval melanophore stripe -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005227 ! -property_value: IAO:0000589 "protoneuromast (zebrafish)" xsd:string -intersection_of: UBERON:2005227 ! protoneuromast -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005607 ! -property_value: IAO:0000589 "inter-parietal joint (zebrafish)" xsd:string -intersection_of: UBERON:2005245 ! inter-parietal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005248 ! -property_value: IAO:0000589 "trans-choroid plexus branch (zebrafish)" xsd:string -intersection_of: UBERON:2005248 ! trans-choroid plexus branch -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005256 ! -property_value: IAO:0000589 "intervillus pockets (zebrafish)" xsd:string -intersection_of: UBERON:2005256 ! intervillus pockets -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005259 ! -property_value: IAO:0000589 "continuous capillary (zebrafish)" xsd:string -intersection_of: UBERON:2005259 ! continuous capillary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005260 ! -property_value: IAO:0000589 "fenestrated capillary (zebrafish)" xsd:string -intersection_of: UBERON:2005260 ! fenestrated capillary -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005609 ! -property_value: IAO:0000589 "supraoccipital-parietal joint (zebrafish)" xsd:string -intersection_of: UBERON:2005264 ! supraoccipital-parietal joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005626 ! -property_value: IAO:0000589 "hyomandibula-opercle joint (zebrafish)" xsd:string -intersection_of: UBERON:2005265 ! hyomandibula-opercle joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005630 ! -property_value: IAO:0000589 "pterotic fossa (zebrafish)" xsd:string -intersection_of: UBERON:2005266 ! pterotic fossa -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005267 ! -property_value: IAO:0000589 "erector muscle (zebrafish)" xsd:string -intersection_of: UBERON:2005267 ! erector muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005631 ! -property_value: IAO:0000589 "preopercle horizontal limb-symplectic joint (zebrafish)" xsd:string -intersection_of: UBERON:2005268 ! preopercle horizontal limb-symplectic joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005625 ! -property_value: IAO:0000589 "hypophyseal fenestra (zebrafish)" xsd:string -intersection_of: UBERON:2005269 ! hypophyseal fenestra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005270 ! -property_value: IAO:0000589 "depressor muscle (zebrafish)" xsd:string -intersection_of: UBERON:2005270 ! depressor muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005272 ! -property_value: IAO:0000589 "immature gonad (zebrafish)" xsd:string -intersection_of: UBERON:2005272 ! immature gonad -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005273 ! -property_value: IAO:0000589 "intestinal mucosal muscle (zebrafish)" xsd:string -intersection_of: UBERON:2005273 ! intestinal mucosal muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005629 ! -property_value: IAO:0000589 "hyomandibular foramen (zebrafish)" xsd:string -intersection_of: UBERON:2005275 ! hyomandibular foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005276 ! -property_value: IAO:0000589 "inclinator muscle (zebrafish)" xsd:string -intersection_of: UBERON:2005276 ! inclinator muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005632 ! -property_value: IAO:0000589 "preopercle vertical limb-hyomandibula joint (zebrafish)" xsd:string -intersection_of: UBERON:2005278 ! preopercle vertical limb-hyomandibula joint -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005279 ! -property_value: IAO:0000589 "enteric circular muscle (zebrafish)" xsd:string -intersection_of: UBERON:2005279 ! enteric circular muscle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005292 ! -property_value: IAO:0000589 "distal late tubule (zebrafish)" xsd:string -intersection_of: UBERON:2005292 ! distal late tubule -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005295 ! -property_value: IAO:0000589 "axial blood vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005295 ! axial blood vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005303 ! -property_value: IAO:0000589 "caudal fin lymph vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005303 ! caudal fin lymph vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005304 ! -property_value: IAO:0000589 "caudal fin blood vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005304 ! caudal fin blood vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005311 ! -property_value: IAO:0000589 "pronephric glomerular capsule epithelium (zebrafish)" xsd:string -intersection_of: UBERON:2005311 ! pronephric glomerular capsule epithelium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005316 ! -property_value: IAO:0000589 "fin fold pectoral fin bud (zebrafish)" xsd:string -intersection_of: UBERON:2005316 ! fin fold pectoral fin bud -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005317 ! -property_value: IAO:0000589 "pectoral fin fold (zebrafish)" xsd:string -intersection_of: UBERON:2005317 ! pectoral fin fold -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005319 ! -property_value: IAO:0000589 "intersegmental lymph vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005319 ! intersegmental lymph vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005320 ! -property_value: IAO:0000589 "dorsal longitudinal lymphatic vessel (zebrafish)" xsd:string -intersection_of: UBERON:2005320 ! dorsal longitudinal lymphatic vessel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005338 ! -property_value: IAO:0000589 "posterior recess (zebrafish)" xsd:string -intersection_of: UBERON:2005338 ! posterior recess -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005339 ! -property_value: IAO:0000589 "nucleus of the lateral recess (zebrafish)" xsd:string -intersection_of: UBERON:2005339 ! nucleus of the lateral recess -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005340 ! -property_value: IAO:0000589 "nucleus of the posterior recess (zebrafish)" xsd:string -intersection_of: UBERON:2005340 ! nucleus of the posterior recess -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005341 ! -property_value: IAO:0000589 "medial longitudinal catecholaminergic tract (zebrafish)" xsd:string -intersection_of: UBERON:2005341 ! medial longitudinal catecholaminergic tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005343 ! -property_value: IAO:0000589 "endohypothalamic tract (zebrafish)" xsd:string -intersection_of: UBERON:2005343 ! endohypothalamic tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005344 ! -property_value: IAO:0000589 "preopticohypothalamic tract (zebrafish)" xsd:string -intersection_of: UBERON:2005344 ! preopticohypothalamic tract -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005346 ! -property_value: IAO:0000589 "extrapancreatic duct (zebrafish)" xsd:string -intersection_of: UBERON:2005346 ! extrapancreatic duct -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005365 ! -property_value: IAO:0000589 "dorsal fin pterygiophore 2 (zebrafish)" xsd:string -intersection_of: UBERON:2005365 ! dorsal fin pterygiophore 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005366 ! -property_value: IAO:0000589 "dorsal fin pterygiophore 3 (zebrafish)" xsd:string -intersection_of: UBERON:2005366 ! dorsal fin pterygiophore 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005367 ! -property_value: IAO:0000589 "dorsal fin pterygiophore 4 (zebrafish)" xsd:string -intersection_of: UBERON:2005367 ! dorsal fin pterygiophore 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005368 ! -property_value: IAO:0000589 "dorsal fin pterygiophore 5 (zebrafish)" xsd:string -intersection_of: UBERON:2005368 ! dorsal fin pterygiophore 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005369 ! -property_value: IAO:0000589 "dorsal fin pterygiophore 6 (zebrafish)" xsd:string -intersection_of: UBERON:2005369 ! dorsal fin pterygiophore 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005370 ! -property_value: IAO:0000589 "dorsal fin pterygiophore 7 (zebrafish)" xsd:string -intersection_of: UBERON:2005370 ! dorsal fin pterygiophore 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005371 ! -property_value: IAO:0000589 "dorsal fin pterygiophore 8 (zebrafish)" xsd:string -intersection_of: UBERON:2005371 ! dorsal fin pterygiophore 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005372 ! -property_value: IAO:0000589 "dorsal fin distal radial bone 1 (zebrafish)" xsd:string -intersection_of: UBERON:2005372 ! dorsal fin distal radial bone 1 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005373 ! -property_value: IAO:0000589 "dorsal fin distal radial bone 2 (zebrafish)" xsd:string -intersection_of: UBERON:2005373 ! dorsal fin distal radial bone 2 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005374 ! -property_value: IAO:0000589 "dorsal fin distal radial bone 3 (zebrafish)" xsd:string -intersection_of: UBERON:2005374 ! dorsal fin distal radial bone 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005375 ! -property_value: IAO:0000589 "dorsal fin distal radial bone 4 (zebrafish)" xsd:string -intersection_of: UBERON:2005375 ! dorsal fin distal radial bone 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005376 ! -property_value: IAO:0000589 "dorsal fin distal radial bone 5 (zebrafish)" xsd:string -intersection_of: UBERON:2005376 ! dorsal fin distal radial bone 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005377 ! -property_value: IAO:0000589 "dorsal fin distal radial bone 6 (zebrafish)" xsd:string -intersection_of: UBERON:2005377 ! dorsal fin distal radial bone 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005378 ! -property_value: IAO:0000589 "dorsal fin distal radial bone 7 (zebrafish)" xsd:string -intersection_of: UBERON:2005378 ! dorsal fin distal radial bone 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005379 ! -property_value: IAO:0000589 "dorsal fin distal radial bone 8 (zebrafish)" xsd:string -intersection_of: UBERON:2005379 ! dorsal fin distal radial bone 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005380 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone 3 (zebrafish)" xsd:string -intersection_of: UBERON:2005380 ! dorsal fin proximal radial bone 3 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005381 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone 4 (zebrafish)" xsd:string -intersection_of: UBERON:2005381 ! dorsal fin proximal radial bone 4 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005382 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone 5 (zebrafish)" xsd:string -intersection_of: UBERON:2005382 ! dorsal fin proximal radial bone 5 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005383 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone 6 (zebrafish)" xsd:string -intersection_of: UBERON:2005383 ! dorsal fin proximal radial bone 6 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005384 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone 7 (zebrafish)" xsd:string -intersection_of: UBERON:2005384 ! dorsal fin proximal radial bone 7 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005385 ! -property_value: IAO:0000589 "dorsal fin proximal radial bone 8 (zebrafish)" xsd:string -intersection_of: UBERON:2005385 ! dorsal fin proximal radial bone 8 -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005409 ! -property_value: IAO:0000589 "pars superior ear (zebrafish)" xsd:string -intersection_of: UBERON:2005409 ! pars superior ear -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005410 ! -property_value: IAO:0000589 "pars inferior ear (zebrafish)" xsd:string -intersection_of: UBERON:2005410 ! pars inferior ear -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005411 ! -property_value: IAO:0000589 "common crus (zebrafish)" xsd:string -intersection_of: UBERON:2005411 ! common crus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005412 ! -property_value: IAO:0000589 "transverse canal (zebrafish)" xsd:string -intersection_of: UBERON:2005412 ! transverse canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005415 ! -property_value: IAO:0000589 "inner ear foramen (zebrafish)" xsd:string -intersection_of: UBERON:2005415 ! inner ear foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005416 ! -property_value: IAO:0000589 "sacculoagenar foramen (zebrafish)" xsd:string -intersection_of: UBERON:2005416 ! sacculoagenar foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007001 ! -property_value: IAO:0000589 "dorso-rostral cluster (zebrafish)" xsd:string -intersection_of: UBERON:2007001 ! dorso-rostral cluster -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007002 ! -property_value: IAO:0000589 "ventro-rostral cluster (zebrafish)" xsd:string -intersection_of: UBERON:2007002 ! ventro-rostral cluster -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007003 ! -property_value: IAO:0000589 "ventro-caudal cluster (zebrafish)" xsd:string -intersection_of: UBERON:2007003 ! ventro-caudal cluster -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007004 ! -property_value: IAO:0000589 "epiphysial cluster (zebrafish)" xsd:string -intersection_of: UBERON:2007004 ! epiphysial cluster -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007005 ! -property_value: IAO:0000589 "hemal prezygapophysis (zebrafish)" xsd:string -intersection_of: UBERON:2007005 ! hemal prezygapophysis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007008 ! -property_value: IAO:0000589 "ventral intermandibularis anterior (zebrafish)" xsd:string -intersection_of: UBERON:2007008 ! ventral intermandibularis anterior -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007012 ! -property_value: IAO:0000589 "lateral forebrain bundle (zebrafish)" xsd:string -intersection_of: UBERON:2007012 ! lateral forebrain bundle -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007013 ! -property_value: IAO:0000589 "preplacodal ectoderm (zebrafish)" xsd:string -intersection_of: UBERON:2007013 ! preplacodal ectoderm -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007014 ! -property_value: IAO:0000589 "anterior presumptive neural plate (zebrafish)" xsd:string -intersection_of: UBERON:2007014 ! anterior presumptive neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007015 ! -property_value: IAO:0000589 "posterior presumptive neural plate (zebrafish)" xsd:string -intersection_of: UBERON:2007015 ! posterior presumptive neural plate -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007023 ! -property_value: IAO:0000589 "posterior neural keel (zebrafish)" xsd:string -intersection_of: UBERON:2007023 ! posterior neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007024 ! -property_value: IAO:0000589 "anterior neural keel (zebrafish)" xsd:string -intersection_of: UBERON:2007024 ! anterior neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007025 ! -property_value: IAO:0000589 "midbrain neural keel (zebrafish)" xsd:string -intersection_of: UBERON:2007025 ! midbrain neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007026 ! -property_value: IAO:0000589 "forebrain neural keel (zebrafish)" xsd:string -intersection_of: UBERON:2007026 ! forebrain neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007027 ! -property_value: IAO:0000589 "forebrain midbrain boundary neural keel (zebrafish)" xsd:string -intersection_of: UBERON:2007027 ! forebrain midbrain boundary neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007028 ! -property_value: IAO:0000589 "spinal cord neural keel (zebrafish)" xsd:string -intersection_of: UBERON:2007028 ! spinal cord neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007029 ! -property_value: IAO:0000589 "hindbrain neural keel (zebrafish)" xsd:string -intersection_of: UBERON:2007029 ! hindbrain neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007030 ! -property_value: IAO:0000589 "posterior neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2007030 ! posterior neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007031 ! -property_value: IAO:0000589 "anterior neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2007031 ! anterior neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007032 ! -property_value: IAO:0000589 "midbrain neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2007032 ! midbrain neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007033 ! -property_value: IAO:0000589 "forebrain midbrain boundary neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2007033 ! forebrain midbrain boundary neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007034 ! -property_value: IAO:0000589 "forebrain neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2007034 ! forebrain neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007035 ! -property_value: IAO:0000589 "spinal cord neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2007035 ! spinal cord neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007036 ! -property_value: IAO:0000589 "hindbrain neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2007036 ! hindbrain neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007040 ! -property_value: IAO:0000589 "forebrain midbrain boundary neural tube (zebrafish)" xsd:string -intersection_of: UBERON:2007040 ! forebrain midbrain boundary neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007041 ! -property_value: IAO:0000589 "forebrain neural tube (zebrafish)" xsd:string -intersection_of: UBERON:2007041 ! forebrain neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007042 ! -property_value: IAO:0000589 "spinal cord neural tube (zebrafish)" xsd:string -intersection_of: UBERON:2007042 ! spinal cord neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007043 ! -property_value: IAO:0000589 "hindbrain neural tube (zebrafish)" xsd:string -intersection_of: UBERON:2007043 ! hindbrain neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007045 ! -property_value: IAO:0000589 "midbrain hindbrain boundary neural keel (zebrafish)" xsd:string -intersection_of: UBERON:2007045 ! midbrain hindbrain boundary neural keel -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007046 ! -property_value: IAO:0000589 "midbrain hindbrain boundary neural rod (zebrafish)" xsd:string -intersection_of: UBERON:2007046 ! midbrain hindbrain boundary neural rod -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007047 ! -property_value: IAO:0000589 "midbrain hindbrain boundary neural tube (zebrafish)" xsd:string -intersection_of: UBERON:2007047 ! midbrain hindbrain boundary neural tube -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007048 ! -property_value: IAO:0000589 "ventral intermandibularis posterior (zebrafish)" xsd:string -intersection_of: UBERON:2007048 ! ventral intermandibularis posterior -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007050 ! -property_value: IAO:0000589 "constrictor dorsalis (zebrafish)" xsd:string -intersection_of: UBERON:2007050 ! constrictor dorsalis -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007051 ! -property_value: IAO:0000589 "ventral interhyoideus (zebrafish)" xsd:string -intersection_of: UBERON:2007051 ! ventral interhyoideus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007052 ! -property_value: IAO:0000589 "hyohyoideus (zebrafish)" xsd:string -intersection_of: UBERON:2007052 ! hyohyoideus -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007053 ! -property_value: IAO:0000589 "dorsal adductor hyomandibulae (zebrafish)" xsd:string -intersection_of: UBERON:2007053 ! dorsal adductor hyomandibulae -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007054 ! -property_value: IAO:0000589 "pillar of the anterior semicircular canal (zebrafish)" xsd:string -intersection_of: UBERON:2007054 ! pillar of the anterior semicircular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007055 ! -property_value: IAO:0000589 "pillar of the lateral semicircular canal (zebrafish)" xsd:string -intersection_of: UBERON:2007055 ! pillar of the lateral semicircular canal -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007059 ! -property_value: IAO:0000589 "neurogenic field (zebrafish)" xsd:string -intersection_of: UBERON:2007059 ! neurogenic field -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007060 ! -property_value: IAO:0000589 "dorsolateral field (zebrafish)" xsd:string -intersection_of: UBERON:2007060 ! dorsolateral field -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007061 ! -property_value: IAO:0000589 "epibranchial field (zebrafish)" xsd:string -intersection_of: UBERON:2007061 ! epibranchial field -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0007062 ! -property_value: IAO:0000589 "olfactory field (zebrafish)" xsd:string -intersection_of: UBERON:2007062 ! olfactory field -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005597 ! -property_value: IAO:0000589 "median fin (zebrafish)" xsd:string -intersection_of: UBERON:4000162 ! median fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001162 ! -property_value: IAO:0000589 "anal fin (zebrafish)" xsd:string -intersection_of: UBERON:4000163 ! anal fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001058 ! -property_value: IAO:0000589 "caudal fin (zebrafish)" xsd:string -intersection_of: UBERON:4000164 ! caudal fin -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000167 ! -property_value: IAO:0000589 "anal fin skeleton (zebrafish)" xsd:string -intersection_of: UBERON:4000166 ! anal fin skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000862 ! -property_value: IAO:0000589 "caudal fin skeleton (zebrafish)" xsd:string -intersection_of: UBERON:4000167 ! caudal fin skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001124 ! -property_value: IAO:0000589 "dorsal fin skeleton (zebrafish)" xsd:string -intersection_of: UBERON:4000168 ! dorsal fin skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001123 ! -property_value: IAO:0000589 "median fin skeleton (zebrafish)" xsd:string -intersection_of: UBERON:4000170 ! median fin skeleton -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001554 ! -property_value: IAO:0000589 "lepidotrichium (zebrafish)" xsd:string -intersection_of: UBERON:4000172 ! lepidotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001552 ! -property_value: IAO:0000589 "pelvic fin lepidotrichium (zebrafish)" xsd:string -intersection_of: UBERON:4000173 ! pelvic fin lepidotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001550 ! -property_value: IAO:0000589 "caudal fin lepidotrichium (zebrafish)" xsd:string -intersection_of: UBERON:4000174 ! caudal fin lepidotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001551 ! -property_value: IAO:0000589 "pectoral fin lepidotrichium (zebrafish)" xsd:string -intersection_of: UBERON:4000175 ! pectoral fin lepidotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001421 ! -property_value: IAO:0000589 "anal fin lepidotrichium (zebrafish)" xsd:string -intersection_of: UBERON:4000176 ! anal fin lepidotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0001418 ! -property_value: IAO:0000589 "dorsal fin lepidotrichium (zebrafish)" xsd:string -intersection_of: UBERON:4000177 ! dorsal fin lepidotrichium -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0000263 ! -property_value: IAO:0000589 "precaudal vertebra (zebrafish)" xsd:string -intersection_of: UBERON:4300223 ! precaudal vertebra -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:0005892 ! -property_value: IAO:0000589 "lateral occipital foramen (zebrafish)" xsd:string -intersection_of: UBERON:4300249 ! lateral occipital foramen -intersection_of: part_of NCBITaxon:7954 - -[Term] -id: ZFA:ENTITY -name: ZFA entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7954 -relationship: only_in_taxon NCBITaxon:7954 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-zfa.owl b/src/ontology/bridge/uberon-bridge-to-zfa.owl index 7dac8668bd..f6c39a988d 100644 --- a/src/ontology/bridge/uberon-bridge-to-zfa.owl +++ b/src/ontology/bridge/uberon-bridge-to-zfa.owl @@ -7,22 +7,15 @@ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" - xmlns:doap="http://usefulinc.com/ns/doap#" - xmlns:foaf="http://xmlns.com/foaf/0.1/" - xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" - xmlns:terms="http://purl.org/dc/terms/" - xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"> + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - Ceri Van Slyke - Melissa Haendel - Yvonne Bradford - Uberon editors - Taxonomic equivalence axioms between ZFA and Uberon - Uberon bridge to zfa - - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + + Melissa Haendel + Veri Van Slyke + Yvonne Bradford + Uberon editors + Taxonomic equivalence axioms between ZFA and Uberon. + Uberon bridge to zfa @@ -38,18 +31,6 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - @@ -58,215 +39,25 @@ - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - + - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - + - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - + - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - + @@ -283,42 +74,13 @@ - - - BFO:0000050 - part_of - part_of - - - - - - - - BFO:0000066 - occurs_in - occurs_in - + - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -981,12 +743,6 @@ - - - - - - @@ -1599,18 +1355,6 @@ - - - - - - - - - - - - @@ -2469,12 +2213,6 @@ - - - - - - @@ -2799,12 +2537,6 @@ - - - - - - @@ -3333,12 +3065,6 @@ - - - - - - @@ -3579,12 +3305,6 @@ - - - - - - @@ -4035,12 +3755,6 @@ - - - - - - @@ -4641,12 +4355,6 @@ - - - - - - @@ -5679,12 +5387,6 @@ - - - - - - @@ -5895,12 +5597,6 @@ - - - - - - @@ -5913,12 +5609,6 @@ - - - - - - @@ -6057,36 +5747,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -6099,42 +5759,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -6183,54 +5807,18 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -6927,12 +6515,6 @@ - - - - - - @@ -7599,12 +7181,6 @@ - - - - - - @@ -7875,12 +7451,6 @@ - - - - - - @@ -12357,12 +11927,6 @@ - - - - - - @@ -12737,8 +12301,7 @@ - Brachet's cleft (zebrafish) - ZFA:0000000 + Brachet's cleft (zebrafish) @@ -12757,8 +12320,7 @@ - Kupffer's vesicle (zebrafish) - ZFA:0000001 + Kupffer's vesicle (zebrafish) @@ -12777,8 +12339,7 @@ - anterior axial hypoblast (zebrafish) - ZFA:0000004 + anterior axial hypoblast (zebrafish) @@ -12797,8 +12358,7 @@ - artery (zebrafish) - ZFA:0000005 + artery (zebrafish) @@ -12817,8 +12377,7 @@ - ball (zebrafish) - ZFA:0000006 + ball (zebrafish) @@ -12837,8 +12396,7 @@ - blood (zebrafish) - ZFA:0000007 + blood (zebrafish) @@ -12857,8 +12415,7 @@ - brain (zebrafish) - ZFA:0000008 + brain (zebrafish) @@ -12877,8 +12434,7 @@ - cardiac ventricle (zebrafish) - ZFA:0000009 + cardiac ventricle (zebrafish) @@ -12897,8 +12453,7 @@ - cardiovascular system (zebrafish) - ZFA:0000010 + cardiovascular system (zebrafish) @@ -12917,8 +12472,7 @@ - caudal artery (zebrafish) - ZFA:0000011 + caudal artery (zebrafish) @@ -12937,8 +12491,7 @@ - central nervous system (zebrafish) - ZFA:0000012 + central nervous system (zebrafish) @@ -12957,8 +12510,7 @@ - cranial ganglion (zebrafish) - ZFA:0000013 + cranial ganglion (zebrafish) @@ -12977,8 +12529,7 @@ - dorsal aorta (zebrafish) - ZFA:0000014 + dorsal aorta (zebrafish) @@ -12997,8 +12548,7 @@ - ectoderm (zebrafish) - ZFA:0000016 + ectoderm (zebrafish) @@ -13017,8 +12567,7 @@ - endoderm (zebrafish) - ZFA:0000017 + endoderm (zebrafish) @@ -13037,8 +12586,7 @@ - blastodisc derived epiblast (zebrafish) - ZFA:0000018 + blastodisc derived epiblast (zebrafish) @@ -13057,8 +12605,7 @@ - pineal body (zebrafish) - ZFA:0000019 + pineal body (zebrafish) @@ -13077,8 +12624,7 @@ - extraembryonic structure (zebrafish) - ZFA:0000020 + extraembryonic structure (zebrafish) @@ -13097,8 +12643,7 @@ - floor plate (zebrafish) - ZFA:0000022 + floor plate (zebrafish) @@ -13117,8 +12662,7 @@ - ganglionic layer of retina (zebrafish) - ZFA:0000024 + ganglionic layer of retina (zebrafish) @@ -13137,8 +12681,7 @@ - hatching gland (zebrafish) - ZFA:0000026 + hatching gland (zebrafish) @@ -13157,8 +12700,7 @@ - paired fin skeleton (zebrafish) - ZFA:0000027 + paired fin skeleton (zebrafish) @@ -13177,8 +12719,7 @@ - heart primordium (zebrafish) - ZFA:0000028 + heart primordium (zebrafish) @@ -13197,8 +12738,7 @@ - hindbrain (zebrafish) - ZFA:0000029 + hindbrain (zebrafish) @@ -13217,8 +12757,7 @@ - macula of utricle of membranous labyrinth (zebrafish) - ZFA:0000030 + macula of utricle of membranous labyrinth (zebrafish) @@ -13237,8 +12776,7 @@ - hypochord (zebrafish) - ZFA:0000031 + hypochord (zebrafish) @@ -13257,8 +12795,7 @@ - hypothalamus (zebrafish) - ZFA:0000032 + hypothalamus (zebrafish) @@ -13277,8 +12814,7 @@ - intermediate cell mass of mesoderm (zebrafish) - ZFA:0000033 + intermediate cell mass of mesoderm (zebrafish) @@ -13297,8 +12833,7 @@ - lateral line system (zebrafish) - ZFA:0000034 + lateral line system (zebrafish) @@ -13317,8 +12852,7 @@ - lens of camera-type eye (zebrafish) - ZFA:0000035 + lens of camera-type eye (zebrafish) @@ -13337,8 +12871,7 @@ - hepatobiliary system (zebrafish) - ZFA:0000036 + hepatobiliary system (zebrafish) @@ -13357,8 +12890,7 @@ - anatomical structure (zebrafish) - ZFA:0000037 + anatomical structure (zebrafish) @@ -13377,8 +12909,7 @@ - marginal zone of embryo (zebrafish) - ZFA:0000038 + marginal zone of embryo (zebrafish) @@ -13397,8 +12928,7 @@ - median axial vein (zebrafish) - ZFA:0000039 + median axial vein (zebrafish) @@ -13417,8 +12947,7 @@ - median fin fold (zebrafish) - ZFA:0000040 + median fin fold (zebrafish) @@ -13437,8 +12966,7 @@ - mesoderm (zebrafish) - ZFA:0000041 + mesoderm (zebrafish) @@ -13457,8 +12985,7 @@ - midbrain-hindbrain boundary (zebrafish) - ZFA:0000042 + midbrain-hindbrain boundary (zebrafish) @@ -13477,30 +13004,7 @@ - myotome somite 14 (zebrafish) - ZFA:0000044 - - - - - - - - - - - - - - - - - - - - neural crest (zebrafish) - region of neural crest (zebrafish) - ZFA:0000045 + myotome somite 14 (zebrafish) @@ -13519,8 +13023,7 @@ - retinal neural layer (zebrafish) - ZFA:0000046 + retinal neural layer (zebrafish) @@ -13539,8 +13042,7 @@ - nose (zebrafish) - ZFA:0000047 + nose (zebrafish) @@ -13559,8 +13061,7 @@ - olfactory placode (zebrafish) - ZFA:0000048 + olfactory placode (zebrafish) @@ -13579,8 +13080,7 @@ - optic recess of third ventricle (zebrafish) - ZFA:0000049 + optic recess of third ventricle (zebrafish) @@ -13599,8 +13099,7 @@ - optic vesicle (zebrafish) - ZFA:0000050 + optic vesicle (zebrafish) @@ -13619,8 +13118,7 @@ - ear vesicle (zebrafish) - ZFA:0000051 + ear vesicle (zebrafish) @@ -13639,8 +13137,7 @@ - dorsal actinotrichium (zebrafish) - ZFA:0000052 + dorsal actinotrichium (zebrafish) @@ -13659,8 +13156,7 @@ - presumptive segmental plate (zebrafish) - ZFA:0000053 + presumptive segmental plate (zebrafish) @@ -13679,8 +13175,7 @@ - pericardium (zebrafish) - ZFA:0000054 + pericardium (zebrafish) @@ -13699,8 +13194,7 @@ - chordate pharynx (zebrafish) - ZFA:0000056 + chordate pharynx (zebrafish) @@ -13719,8 +13213,7 @@ - polster (zebrafish) - ZFA:0000058 + polster (zebrafish) @@ -13739,8 +13232,7 @@ - postoptic commissure (zebrafish) - ZFA:0000059 + postoptic commissure (zebrafish) @@ -13759,8 +13251,7 @@ - prechordal plate (zebrafish) - ZFA:0000060 + prechordal plate (zebrafish) @@ -13779,8 +13270,7 @@ - future forebrain (zebrafish) - ZFA:0000062 + future forebrain (zebrafish) @@ -13799,8 +13289,7 @@ - presumptive neural plate (zebrafish) - ZFA:0000063 + presumptive neural plate (zebrafish) @@ -13819,8 +13308,7 @@ - presumptive retinal pigmented epithelium (zebrafish) - ZFA:0000064 + presumptive retinal pigmented epithelium (zebrafish) @@ -13839,8 +13327,7 @@ - proctodeum (zebrafish) - ZFA:0000066 + proctodeum (zebrafish) @@ -13859,8 +13346,7 @@ - pronephric mesoderm (zebrafish) - ZFA:0000067 + pronephric mesoderm (zebrafish) @@ -13879,8 +13365,7 @@ - neural plate proneural cluster (zebrafish) - ZFA:0000068 + neural plate proneural cluster (zebrafish) @@ -13899,8 +13384,7 @@ - rhombomere 6 (zebrafish) - ZFA:0000069 + rhombomere 6 (zebrafish) @@ -13919,8 +13403,7 @@ - primitive knot (zebrafish) - ZFA:0000071 + primitive knot (zebrafish) @@ -13939,8 +13422,7 @@ - somite 1 (zebrafish) - ZFA:0000072 + somite 1 (zebrafish) @@ -13959,8 +13441,7 @@ - somite 5 (zebrafish) - ZFA:0000073 + somite 5 (zebrafish) @@ -13979,8 +13460,7 @@ - somite 26 (zebrafish) - ZFA:0000074 + somite 26 (zebrafish) @@ -13999,8 +13479,7 @@ - spinal cord (zebrafish) - ZFA:0000075 + spinal cord (zebrafish) @@ -14019,8 +13498,7 @@ - swim bladder (zebrafish) - ZFA:0000076 + swim bladder (zebrafish) @@ -14039,8 +13517,7 @@ - post-anal tail bud (zebrafish) - ZFA:0000077 + post-anal tail bud (zebrafish) @@ -14059,8 +13536,7 @@ - ventral actinotrichium (zebrafish) - ZFA:0000078 + ventral actinotrichium (zebrafish) @@ -14079,8 +13555,7 @@ - telencephalon (zebrafish) - ZFA:0000079 + telencephalon (zebrafish) @@ -14099,8 +13574,7 @@ - trigeminal neural crest (zebrafish) - ZFA:0000080 + trigeminal neural crest (zebrafish) @@ -14119,8 +13593,7 @@ - trunk mesenchyme (zebrafish) - ZFA:0000081 + trunk mesenchyme (zebrafish) @@ -14139,8 +13612,7 @@ - vein (zebrafish) - ZFA:0000082 + vein (zebrafish) @@ -14159,8 +13631,7 @@ - ventral mesoderm (zebrafish) - ZFA:0000083 + ventral mesoderm (zebrafish) @@ -14179,8 +13650,7 @@ - yolk (zebrafish) - ZFA:0000084 + yolk (zebrafish) @@ -14199,8 +13669,7 @@ - pectoral appendage apical ectodermal ridge (zebrafish) - ZFA:0000085 + pectoral appendage apical ectodermal ridge (zebrafish) @@ -14219,8 +13688,7 @@ - enveloping layer of ectoderm (zebrafish) - ZFA:0000086 + enveloping layer of ectoderm (zebrafish) @@ -14239,8 +13707,7 @@ - yolk syncytial layer (zebrafish) - ZFA:0000088 + yolk syncytial layer (zebrafish) @@ -14259,8 +13726,7 @@ - actinotrichium (zebrafish) - ZFA:0000089 + actinotrichium (zebrafish) @@ -14279,8 +13745,7 @@ - apical ectodermal ridge dorsal fin (zebrafish) - ZFA:0000090 + apical ectodermal ridge dorsal fin (zebrafish) @@ -14299,8 +13764,7 @@ - chordamesoderm (zebrafish) - ZFA:0000091 + chordamesoderm (zebrafish) @@ -14319,8 +13783,7 @@ - blood island (zebrafish) - ZFA:0000094 + blood island (zebrafish) @@ -14339,8 +13802,7 @@ - post-hyoid pharyngeal arch skeleton (zebrafish) - ZFA:0000095 + post-hyoid pharyngeal arch skeleton (zebrafish) @@ -14359,8 +13821,7 @@ - cardinal system (zebrafish) - ZFA:0000096 + cardinal system (zebrafish) @@ -14379,8 +13840,7 @@ - carotid artery segment (zebrafish) - ZFA:0000097 + carotid artery segment (zebrafish) @@ -14399,8 +13859,7 @@ - proliferative region (zebrafish) - ZFA:0000098 + proliferative region (zebrafish) @@ -14419,8 +13878,7 @@ - vasculature of brain (zebrafish) - ZFA:0000099 + vasculature of brain (zebrafish) @@ -14439,8 +13897,7 @@ - cerebellum (zebrafish) - ZFA:0000100 + cerebellum (zebrafish) @@ -14459,8 +13916,7 @@ - diencephalon (zebrafish) - ZFA:0000101 + diencephalon (zebrafish) @@ -14479,8 +13935,7 @@ - dorsal fin fold (zebrafish) - ZFA:0000102 + dorsal fin fold (zebrafish) @@ -14499,8 +13954,7 @@ - embryo (zebrafish) - ZFA:0000103 + embryo (zebrafish) @@ -14519,8 +13973,7 @@ - skin epidermis (zebrafish) - ZFA:0000105 + skin epidermis (zebrafish) @@ -14539,8 +13992,7 @@ - extension (zebrafish) - ZFA:0000106 + extension (zebrafish) @@ -14559,8 +14011,7 @@ - camera-type eye (zebrafish) - ZFA:0000107 + camera-type eye (zebrafish) @@ -14579,8 +14030,7 @@ - fin (zebrafish) - ZFA:0000108 + fin (zebrafish) @@ -14599,8 +14049,7 @@ - forebrain (zebrafish) - ZFA:0000109 + forebrain (zebrafish) @@ -14619,8 +14068,7 @@ - fourth ventricle (zebrafish) - ZFA:0000110 + fourth ventricle (zebrafish) @@ -14639,8 +14087,7 @@ - germ ring (zebrafish) - ZFA:0000111 + germ ring (zebrafish) @@ -14659,8 +14106,7 @@ - digestive tract (zebrafish) - ZFA:0000112 + digestive tract (zebrafish) @@ -14679,8 +14125,7 @@ - head mesenchyme (zebrafish) - ZFA:0000113 + head mesenchyme (zebrafish) @@ -14699,8 +14144,7 @@ - heart (zebrafish) - ZFA:0000114 + heart (zebrafish) @@ -14719,8 +14163,7 @@ - heart rudiment (zebrafish) - ZFA:0000115 + heart rudiment (zebrafish) @@ -14739,8 +14182,7 @@ - macula lagena (zebrafish) - ZFA:0000116 + macula lagena (zebrafish) @@ -14759,8 +14201,7 @@ - hypoblast (generic) (zebrafish) - ZFA:0000117 + hypoblast (generic) (zebrafish) @@ -14779,8 +14220,7 @@ - pituitary gland (zebrafish) - ZFA:0000118 + pituitary gland (zebrafish) @@ -14799,8 +14239,7 @@ - inner nuclear layer of retina (zebrafish) - ZFA:0000119 + inner nuclear layer of retina (zebrafish) @@ -14819,8 +14258,7 @@ - lateral line ganglion (zebrafish) - ZFA:0000120 + lateral line ganglion (zebrafish) @@ -14839,8 +14277,7 @@ - lateral plate mesoderm (zebrafish) - ZFA:0000121 + lateral plate mesoderm (zebrafish) @@ -14859,8 +14296,7 @@ - lens placode (zebrafish) - ZFA:0000122 + lens placode (zebrafish) @@ -14879,8 +14315,7 @@ - liver (zebrafish) - ZFA:0000123 + liver (zebrafish) @@ -14899,8 +14334,7 @@ - liver primordium (zebrafish) - ZFA:0000124 + liver primordium (zebrafish) @@ -14919,8 +14353,7 @@ - mandibular lateral line neuromast (zebrafish) - ZFA:0000125 + mandibular lateral line neuromast (zebrafish) @@ -14939,8 +14372,7 @@ - bony vertebral centrum (zebrafish) - ZFA:0000126 + bony vertebral centrum (zebrafish) @@ -14959,8 +14391,7 @@ - midbrain (zebrafish) - ZFA:0000128 + midbrain (zebrafish) @@ -14979,8 +14410,7 @@ - nasal cavity (zebrafish) - ZFA:0000130 + nasal cavity (zebrafish) @@ -14999,8 +14429,7 @@ - neural keel (zebrafish) - ZFA:0000131 + neural keel (zebrafish) @@ -15019,8 +14448,7 @@ - neural plate (zebrafish) - ZFA:0000132 + neural plate (zebrafish) @@ -15039,8 +14467,7 @@ - neural rod (zebrafish) - ZFA:0000133 + neural rod (zebrafish) @@ -15059,8 +14486,7 @@ - notochord (zebrafish) - ZFA:0000135 + notochord (zebrafish) @@ -15079,8 +14505,7 @@ - otic lateral line neuromast (zebrafish) - ZFA:0000136 + otic lateral line neuromast (zebrafish) @@ -15099,8 +14524,7 @@ - optic stalk (zebrafish) - ZFA:0000137 + optic stalk (zebrafish) @@ -15119,8 +14543,7 @@ - otic placode (zebrafish) - ZFA:0000138 + otic placode (zebrafish) @@ -15139,8 +14562,7 @@ - pancreas (zebrafish) - ZFA:0000140 + pancreas (zebrafish) @@ -15159,8 +14581,7 @@ - pectoral appendage bud (zebrafish) - ZFA:0000141 + pectoral appendage bud (zebrafish) @@ -15179,8 +14600,7 @@ - peripheral nervous system (zebrafish) - ZFA:0000142 + peripheral nervous system (zebrafish) @@ -15199,8 +14619,7 @@ - photoreceptor layer of retina (zebrafish) - ZFA:0000143 + photoreceptor layer of retina (zebrafish) @@ -15219,8 +14638,7 @@ - pigmented layer of retina (zebrafish) - ZFA:0000144 + pigmented layer of retina (zebrafish) @@ -15239,8 +14657,7 @@ - future brain (zebrafish) - ZFA:0000146 + future brain (zebrafish) @@ -15259,8 +14676,7 @@ - presumptive midbrain (zebrafish) - ZFA:0000148 + presumptive midbrain (zebrafish) @@ -15279,8 +14695,7 @@ - primitive heart tube (zebrafish) - ZFA:0000149 + primitive heart tube (zebrafish) @@ -15299,8 +14714,7 @@ - pronephric duct (zebrafish) - ZFA:0000150 + pronephric duct (zebrafish) @@ -15319,8 +14733,7 @@ - pronephros (zebrafish) - ZFA:0000151 + pronephros (zebrafish) @@ -15339,8 +14752,7 @@ - retina (zebrafish) - ZFA:0000152 + retina (zebrafish) @@ -15359,8 +14771,7 @@ - rhombomere 8 (zebrafish) - ZFA:0000153 + rhombomere 8 (zebrafish) @@ -15379,8 +14790,7 @@ - sinus venosus (zebrafish) - ZFA:0000154 + sinus venosus (zebrafish) @@ -15399,8 +14809,7 @@ - somite (zebrafish) - ZFA:0000155 + somite (zebrafish) @@ -15419,8 +14828,7 @@ - somite 20 (zebrafish) - ZFA:0000156 + somite 20 (zebrafish) @@ -15439,8 +14847,7 @@ - somite 30 (zebrafish) - ZFA:0000157 + somite 30 (zebrafish) @@ -15459,8 +14866,7 @@ - urostyle (zebrafish) - ZFA:0000158 + urostyle (zebrafish) @@ -15479,8 +14885,7 @@ - midbrain cerebral aqueduct (zebrafish) - ZFA:0000159 + midbrain cerebral aqueduct (zebrafish) @@ -15499,8 +14904,7 @@ - midbrain tegmentum (zebrafish) - ZFA:0000160 + midbrain tegmentum (zebrafish) @@ -15519,8 +14923,7 @@ - third ventricle (zebrafish) - ZFA:0000161 + third ventricle (zebrafish) @@ -15539,8 +14942,7 @@ - trigeminal placode complex (zebrafish) - ZFA:0000162 + trigeminal placode complex (zebrafish) @@ -15559,8 +14961,7 @@ - renal system (zebrafish) - ZFA:0000163 + renal system (zebrafish) @@ -15579,8 +14980,7 @@ - ventral mesenchyme (zebrafish) - ZFA:0000164 + ventral mesenchyme (zebrafish) @@ -15599,8 +14999,7 @@ - inferior lobe (zebrafish) - ZFA:0000165 + inferior lobe (zebrafish) @@ -15619,8 +15018,7 @@ - crista of ampulla of lateral semicircular duct of membranous laybrinth (zebrafish) - ZFA:0000166 + crista of ampulla of lateral semicircular duct of membranous laybrinth (zebrafish) @@ -15639,8 +15037,7 @@ - anal fin skeleton (zebrafish) - ZFA:0000167 + anal fin skeleton (zebrafish) @@ -15659,8 +15056,7 @@ - anterior macula (zebrafish) - ZFA:0000168 + anterior macula (zebrafish) @@ -15679,8 +15075,7 @@ - basibranchial bone (zebrafish) - ZFA:0000170 + basibranchial bone (zebrafish) @@ -15699,8 +15094,7 @@ - chordate pharyngeal muscle (zebrafish) - ZFA:0000172 + chordate pharyngeal muscle (zebrafish) @@ -15719,8 +15113,7 @@ - bulbus arteriosus (zebrafish) - ZFA:0000173 + bulbus arteriosus (zebrafish) @@ -15739,8 +15132,7 @@ - caudal cerebellar tract (zebrafish) - ZFA:0000174 + caudal cerebellar tract (zebrafish) @@ -15759,8 +15151,7 @@ - posterior lateral line nerve (zebrafish) - ZFA:0000175 + posterior lateral line nerve (zebrafish) @@ -15779,8 +15170,7 @@ - caudal oblique (zebrafish) - ZFA:0000177 + caudal oblique (zebrafish) @@ -15799,8 +15189,7 @@ - caudal peduncle (zebrafish) - ZFA:0000178 + caudal peduncle (zebrafish) @@ -15819,8 +15208,7 @@ - caudal root of abducens nerve (zebrafish) - ZFA:0000179 + caudal root of abducens nerve (zebrafish) @@ -15839,8 +15227,7 @@ - caudal vein (zebrafish) - ZFA:0000180 + caudal vein (zebrafish) @@ -15859,8 +15246,7 @@ - central caudal thalamic nucleus (zebrafish) - ZFA:0000182 + central caudal thalamic nucleus (zebrafish) @@ -15879,8 +15265,7 @@ - central pretectum (zebrafish) - ZFA:0000183 + central pretectum (zebrafish) @@ -15899,8 +15284,7 @@ - cleithrum (zebrafish) - ZFA:0000184 + cleithrum (zebrafish) @@ -15919,8 +15303,7 @@ - commissura rostral, pars ventralis (zebrafish) - ZFA:0000185 + commissura rostral, pars ventralis (zebrafish) @@ -15939,8 +15322,7 @@ - common cardinal vein (zebrafish) - ZFA:0000186 + common cardinal vein (zebrafish) @@ -15959,8 +15341,7 @@ - corpus cerebelli (zebrafish) - ZFA:0000188 + corpus cerebelli (zebrafish) @@ -15979,8 +15360,7 @@ - otic region (zebrafish) - ZFA:0000189 + otic region (zebrafish) @@ -15999,8 +15379,7 @@ - ganglion (zebrafish) - ZFA:0000190 + ganglion (zebrafish) @@ -16019,8 +15398,7 @@ - dentary (zebrafish) - ZFA:0000191 + dentary (zebrafish) @@ -16039,8 +15417,7 @@ - trigeminal nerve root (zebrafish) - ZFA:0000192 + trigeminal nerve root (zebrafish) @@ -16059,8 +15436,7 @@ - diffuse nuclei (zebrafish) - ZFA:0000193 + diffuse nuclei (zebrafish) @@ -16079,8 +15455,7 @@ - dorsal accessory optic nucleus (zebrafish) - ZFA:0000194 + dorsal accessory optic nucleus (zebrafish) @@ -16099,8 +15474,7 @@ - dorsal depressor muscle (zebrafish) - ZFA:0000195 + dorsal depressor muscle (zebrafish) @@ -16119,8 +15493,7 @@ - dorsal hypohyal bone (zebrafish) - ZFA:0000196 + dorsal hypohyal bone (zebrafish) @@ -16139,8 +15512,7 @@ - dorsal periventricular hypothalamus (zebrafish) - ZFA:0000199 + dorsal periventricular hypothalamus (zebrafish) @@ -16159,8 +15531,7 @@ - dorsal root ganglion (zebrafish) - ZFA:0000200 + dorsal root ganglion (zebrafish) @@ -16179,8 +15550,7 @@ - dorsal transverse (zebrafish) - ZFA:0000201 + dorsal transverse (zebrafish) @@ -16199,8 +15569,7 @@ - efferent portion of pharyngeal arch artery (zebrafish) - ZFA:0000202 + efferent portion of pharyngeal arch artery (zebrafish) @@ -16219,8 +15588,7 @@ - esophagus (zebrafish) - ZFA:0000204 + esophagus (zebrafish) @@ -16239,8 +15607,7 @@ - external ventral flexor (zebrafish) - ZFA:0000205 + external ventral flexor (zebrafish) @@ -16259,8 +15626,7 @@ - facial motor nucleus (zebrafish) - ZFA:0000206 + facial motor nucleus (zebrafish) @@ -16279,8 +15645,7 @@ - appendage musculature (zebrafish) - ZFA:0000207 + appendage musculature (zebrafish) @@ -16299,8 +15664,7 @@ - gallbladder (zebrafish) - ZFA:0000208 + gallbladder (zebrafish) @@ -16319,8 +15683,7 @@ - lateral preglomerular nucleus (zebrafish) - ZFA:0000209 + lateral preglomerular nucleus (zebrafish) @@ -16339,8 +15702,7 @@ - gigantocellular part of magnocellular preoptic nucleus (zebrafish) - ZFA:0000210 + gigantocellular part of magnocellular preoptic nucleus (zebrafish) @@ -16359,8 +15721,7 @@ - gill lamella (zebrafish) - ZFA:0000211 + gill lamella (zebrafish) @@ -16379,8 +15740,7 @@ - granular eminence (zebrafish) - ZFA:0000212 + granular eminence (zebrafish) @@ -16399,8 +15759,7 @@ - habenula (zebrafish) - ZFA:0000213 + habenula (zebrafish) @@ -16419,8 +15778,7 @@ - hypobranchial vessel (zebrafish) - ZFA:0000214 + hypobranchial vessel (zebrafish) @@ -16439,8 +15797,7 @@ - inferior olivary complex (zebrafish) - ZFA:0000215 + inferior olivary complex (zebrafish) @@ -16459,8 +15816,7 @@ - infracarinalis (zebrafish) - ZFA:0000216 + infracarinalis (zebrafish) @@ -16479,8 +15835,7 @@ - internal ear (zebrafish) - ZFA:0000217 + internal ear (zebrafish) @@ -16499,8 +15854,7 @@ - intermediate reticular formation (zebrafish) - ZFA:0000219 + intermediate reticular formation (zebrafish) @@ -16519,8 +15873,7 @@ - lateral semicircular canal (zebrafish) - ZFA:0000220 + lateral semicircular canal (zebrafish) @@ -16539,8 +15892,7 @@ - internal levator (zebrafish) - ZFA:0000221 + internal levator (zebrafish) @@ -16559,8 +15911,7 @@ - isthmic primary nucleus (zebrafish) - ZFA:0000222 + isthmic primary nucleus (zebrafish) @@ -16579,8 +15930,7 @@ - infraorbital 1 (zebrafish) - ZFA:0000223 + infraorbital 1 (zebrafish) @@ -16599,8 +15949,7 @@ - lateral crista primordium (zebrafish) - ZFA:0000225 + lateral crista primordium (zebrafish) @@ -16619,8 +15968,7 @@ - lateral ethmoid bone (zebrafish) - ZFA:0000226 + lateral ethmoid bone (zebrafish) @@ -16639,8 +15987,7 @@ - lateral hypothalamic nucleus (zebrafish) - ZFA:0000227 + lateral hypothalamic nucleus (zebrafish) @@ -16659,8 +16006,7 @@ - lateral line primordium (zebrafish) - ZFA:0000228 + lateral line primordium (zebrafish) @@ -16679,8 +16025,7 @@ - olfactory tract linking bulb to ipsilateral dorsal telencephalon (zebrafish) - ZFA:0000229 + olfactory tract linking bulb to ipsilateral dorsal telencephalon (zebrafish) @@ -16699,8 +16044,7 @@ - longitudinal hypochordal (zebrafish) - ZFA:0000230 + longitudinal hypochordal (zebrafish) @@ -16719,8 +16063,7 @@ - lateral recess of third ventricle (zebrafish) - ZFA:0000231 + lateral recess of third ventricle (zebrafish) @@ -16739,8 +16082,7 @@ - lateral semicircular canal primordium (zebrafish) - ZFA:0000232 + lateral semicircular canal primordium (zebrafish) @@ -16759,8 +16101,7 @@ - lower oral valve (zebrafish) - ZFA:0000233 + lower oral valve (zebrafish) @@ -16779,28 +16120,7 @@ - macula neglecta (zebrafish) - ZFA:0000234 - - - - - - - - - - - - - - - - - - - magnocellular superficial pretectal nucleus (zebrafish) - ZFA:0000235 + macula neglecta (zebrafish) @@ -16819,8 +16139,7 @@ - jaw muscle (zebrafish) - ZFA:0000236 + jaw muscle (zebrafish) @@ -16839,8 +16158,7 @@ - olfactory tract linking bulb to ipsilateral ventral telencephalon (zebrafish) - ZFA:0000238 + olfactory tract linking bulb to ipsilateral ventral telencephalon (zebrafish) @@ -16859,8 +16177,7 @@ - mesocoracoid bone (zebrafish) - ZFA:0000239 + mesocoracoid bone (zebrafish) @@ -16879,8 +16196,7 @@ - metapterygoid (zebrafish) - ZFA:0000240 + metapterygoid (zebrafish) @@ -16899,8 +16215,7 @@ - midline column (zebrafish) - ZFA:0000241 + midline column (zebrafish) @@ -16919,8 +16234,7 @@ - male organism (zebrafish) - ZFA:0000242 + male organism (zebrafish) @@ -16939,8 +16253,7 @@ - neuromast (zebrafish) - ZFA:0000243 + neuromast (zebrafish) @@ -16959,8 +16272,7 @@ - parvocellular oculomotor nucleus (zebrafish) - ZFA:0000244 + parvocellular oculomotor nucleus (zebrafish) @@ -16979,8 +16291,7 @@ - nucleus of the descending root (zebrafish) - ZFA:0000245 + nucleus of the descending root (zebrafish) @@ -16999,8 +16310,7 @@ - vestibulocochlear nerve (zebrafish) - ZFA:0000247 + vestibulocochlear nerve (zebrafish) @@ -17019,8 +16329,7 @@ - magnocellular preoptic nucleus (zebrafish) - ZFA:0000248 + magnocellular preoptic nucleus (zebrafish) @@ -17039,8 +16348,7 @@ - olfactory nerve (zebrafish) - ZFA:0000249 + olfactory nerve (zebrafish) @@ -17059,8 +16367,7 @@ - opercle (zebrafish) - ZFA:0000250 + opercle (zebrafish) @@ -17079,8 +16386,7 @@ - optic tract (zebrafish) - ZFA:0000252 + optic tract (zebrafish) @@ -17099,8 +16405,7 @@ - orbitosphenoid (zebrafish) - ZFA:0000253 + orbitosphenoid (zebrafish) @@ -17119,8 +16424,7 @@ - pancreas primordium (zebrafish) - ZFA:0000254 + pancreas primordium (zebrafish) @@ -17139,8 +16443,7 @@ - paraxial mesoderm (zebrafish) - ZFA:0000255 + paraxial mesoderm (zebrafish) @@ -17159,8 +16462,7 @@ - pectoral appendage cartilage tissue (zebrafish) - ZFA:0000257 + pectoral appendage cartilage tissue (zebrafish) @@ -17179,8 +16481,7 @@ - pelvic appendage musculature (zebrafish) - ZFA:0000258 + pelvic appendage musculature (zebrafish) @@ -17199,8 +16500,7 @@ - mandibular lateral line (zebrafish) - ZFA:0000259 + mandibular lateral line (zebrafish) @@ -17219,8 +16519,7 @@ - periventricular nucleus (zebrafish) - ZFA:0000260 + periventricular nucleus (zebrafish) @@ -17239,8 +16538,7 @@ - pharyngohyoid (zebrafish) - ZFA:0000261 + pharyngohyoid (zebrafish) @@ -17259,8 +16557,7 @@ - posterior semicircular canal (zebrafish) - ZFA:0000262 + posterior semicircular canal (zebrafish) @@ -17279,8 +16576,7 @@ - precaudal vertebra (zebrafish) - ZFA:0000263 + precaudal vertebra (zebrafish) @@ -17299,8 +16595,7 @@ - preopercle (zebrafish) - ZFA:0000264 + preopercle (zebrafish) @@ -17319,8 +16614,7 @@ - primary olfactory fiber layer (zebrafish) - ZFA:0000267 + primary olfactory fiber layer (zebrafish) @@ -17339,8 +16633,7 @@ - anal fin proximal radial bone (zebrafish) - ZFA:0000268 + anal fin proximal radial bone (zebrafish) @@ -17359,8 +16652,7 @@ - inferior ventral flexor (zebrafish) - ZFA:0000269 + inferior ventral flexor (zebrafish) @@ -17379,8 +16671,7 @@ - maxilla (zebrafish) - ZFA:0000270 + maxilla (zebrafish) @@ -17399,8 +16690,7 @@ - radial bone (zebrafish) - ZFA:0000271 + radial bone (zebrafish) @@ -17419,8 +16709,7 @@ - respiratory system (zebrafish) - ZFA:0000272 + respiratory system (zebrafish) @@ -17439,8 +16728,7 @@ - rostral octaval nerve sensory nucleus (zebrafish) - ZFA:0000274 + rostral octaval nerve sensory nucleus (zebrafish) @@ -17459,8 +16747,7 @@ - ventral tegmental nucleus (zebrafish) - ZFA:0000275 + ventral tegmental nucleus (zebrafish) @@ -17479,8 +16766,7 @@ - rostrolateral thalamic nucleus of Butler & Saidel (zebrafish) - ZFA:0000276 + rostrolateral thalamic nucleus of Butler & Saidel (zebrafish) @@ -17499,8 +16785,7 @@ - dermal scale (zebrafish) - ZFA:0000277 + dermal scale (zebrafish) @@ -17519,8 +16804,7 @@ - secondary gustatory nucleus medulla oblongata (zebrafish) - ZFA:0000278 + secondary gustatory nucleus medulla oblongata (zebrafish) @@ -17539,8 +16823,7 @@ - presomitic mesoderm (zebrafish) - ZFA:0000279 + presomitic mesoderm (zebrafish) @@ -17559,8 +16842,7 @@ - medial division (zebrafish) - ZFA:0000280 + medial division (zebrafish) @@ -17579,8 +16861,7 @@ - sensory system (zebrafish) - ZFA:0000282 + sensory system (zebrafish) @@ -17599,8 +16880,7 @@ - subopercle (zebrafish) - ZFA:0000284 + subopercle (zebrafish) @@ -17619,8 +16899,7 @@ - superficial adductor (zebrafish) - ZFA:0000285 + superficial adductor (zebrafish) @@ -17639,8 +16918,7 @@ - superficial lateralis (teleost) (zebrafish) - ZFA:0000286 + superficial lateralis (teleost) (zebrafish) @@ -17659,8 +16937,7 @@ - superior dorsal flexor (zebrafish) - ZFA:0000287 + superior dorsal flexor (zebrafish) @@ -17679,8 +16956,7 @@ - supracarinalis (zebrafish) - ZFA:0000288 + supracarinalis (zebrafish) @@ -17699,8 +16975,7 @@ - sphenoid region (zebrafish) - ZFA:0000290 + sphenoid region (zebrafish) @@ -17719,8 +16994,7 @@ - medial octavolateralis nucleus (zebrafish) - ZFA:0000291 + medial octavolateralis nucleus (zebrafish) @@ -17739,8 +17013,7 @@ - surface structure (zebrafish) - ZFA:0000292 + surface structure (zebrafish) @@ -17759,8 +17032,7 @@ - synencephalon (zebrafish) - ZFA:0000293 + synencephalon (zebrafish) @@ -17779,8 +17051,7 @@ - torus lateralis (zebrafish) - ZFA:0000294 + torus lateralis (zebrafish) @@ -17799,8 +17070,7 @@ - trigeminal ganglion (zebrafish) - ZFA:0000295 + trigeminal ganglion (zebrafish) @@ -17819,8 +17089,7 @@ - uncrossed tecto-bulbar tract (zebrafish) - ZFA:0000296 + uncrossed tecto-bulbar tract (zebrafish) @@ -17839,8 +17108,7 @@ - vent (zebrafish) - ZFA:0000298 + vent (zebrafish) @@ -17859,8 +17127,7 @@ - ventral hypohyal bone (zebrafish) - ZFA:0000300 + ventral hypohyal bone (zebrafish) @@ -17879,8 +17146,7 @@ - medial rectus extraocular muscle (zebrafish) - ZFA:0000301 + medial rectus extraocular muscle (zebrafish) @@ -17899,8 +17165,7 @@ - female organism (zebrafish) - ZFA:0000303 + female organism (zebrafish) @@ -17919,8 +17184,7 @@ - ventral part of telencephalon (zebrafish) - ZFA:0000304 + ventral part of telencephalon (zebrafish) @@ -17939,8 +17203,7 @@ - ventral sulcus (zebrafish) - ZFA:0000305 + ventral sulcus (zebrafish) @@ -17959,8 +17222,7 @@ - ventral lateral nucleus of thalamus (zebrafish) - ZFA:0000306 + ventral lateral nucleus of thalamus (zebrafish) @@ -17979,8 +17241,7 @@ - vestibulolateralis lobe (zebrafish) - ZFA:0000307 + vestibulolateralis lobe (zebrafish) @@ -17999,8 +17260,7 @@ - vomer (zebrafish) - ZFA:0000308 + vomer (zebrafish) @@ -18019,8 +17279,7 @@ - external yolk syncytial layer (zebrafish) - ZFA:0000309 + external yolk syncytial layer (zebrafish) @@ -18039,8 +17298,7 @@ - abducens nerve (zebrafish) - ZFA:0000310 + abducens nerve (zebrafish) @@ -18059,8 +17317,7 @@ - adductor mandibulae complex (zebrafish) - ZFA:0000311 + adductor mandibulae complex (zebrafish) @@ -18079,8 +17336,7 @@ - mesencephalic nucleus of trigeminal nerve (zebrafish) - ZFA:0000312 + mesencephalic nucleus of trigeminal nerve (zebrafish) @@ -18099,8 +17355,7 @@ - anal inclinator (zebrafish) - ZFA:0000313 + anal inclinator (zebrafish) @@ -18119,8 +17374,7 @@ - anterior semicircular canal (zebrafish) - ZFA:0000314 + anterior semicircular canal (zebrafish) @@ -18139,8 +17393,7 @@ - asteriscus (zebrafish) - ZFA:0000315 + asteriscus (zebrafish) @@ -18159,8 +17412,7 @@ - basihyal bone (zebrafish) - ZFA:0000316 + basihyal bone (zebrafish) @@ -18179,8 +17431,7 @@ - postcranial axial skeleton (zebrafish) - ZFA:0000317 + postcranial axial skeleton (zebrafish) @@ -18199,8 +17450,7 @@ - brainstem and spinal white matter (zebrafish) - ZFA:0000318 + brainstem and spinal white matter (zebrafish) @@ -18219,8 +17469,7 @@ - branchiostegal membrane (zebrafish) - ZFA:0000319 + branchiostegal membrane (zebrafish) @@ -18239,8 +17488,7 @@ - posterior commissure (zebrafish) - ZFA:0000320 + posterior commissure (zebrafish) @@ -18259,8 +17507,7 @@ - caudal levator (zebrafish) - ZFA:0000321 + caudal levator (zebrafish) @@ -18279,8 +17526,7 @@ - caudal octaval nerve sensory nucleus (zebrafish) - ZFA:0000322 + caudal octaval nerve sensory nucleus (zebrafish) @@ -18299,8 +17545,7 @@ - mesethmoid bone (zebrafish) - ZFA:0000323 + mesethmoid bone (zebrafish) @@ -18319,8 +17564,7 @@ - caudal periventricular hypothalamus (zebrafish) - ZFA:0000324 + caudal periventricular hypothalamus (zebrafish) @@ -18339,8 +17583,7 @@ - posterior nucleus of thalamus (zebrafish) - ZFA:0000325 + posterior nucleus of thalamus (zebrafish) @@ -18359,8 +17602,7 @@ - caudal vertebra (zebrafish) - ZFA:0000326 + caudal vertebra (zebrafish) @@ -18379,8 +17621,7 @@ - intermediate layer of superior colliculus (zebrafish) - ZFA:0000327 + intermediate layer of superior colliculus (zebrafish) @@ -18399,8 +17640,7 @@ - craniocervical region musculature (zebrafish) - ZFA:0000328 + craniocervical region musculature (zebrafish) @@ -18419,8 +17659,7 @@ - egg chorion (zebrafish) - ZFA:0000329 + egg chorion (zebrafish) @@ -18439,8 +17678,7 @@ - cloacal lumen (zebrafish) - ZFA:0000330 + cloacal lumen (zebrafish) @@ -18459,8 +17697,7 @@ - coracoid bone (zebrafish) - ZFA:0000332 + coracoid bone (zebrafish) @@ -18479,8 +17716,7 @@ - mesovarium (zebrafish) - ZFA:0000333 + mesovarium (zebrafish) @@ -18499,8 +17735,7 @@ - mammillary body (zebrafish) - ZFA:0000334 + mammillary body (zebrafish) @@ -18519,8 +17754,7 @@ - crossed tecto-bulbar tract (zebrafish) - ZFA:0000335 + crossed tecto-bulbar tract (zebrafish) @@ -18539,8 +17773,7 @@ - diencephalic white matter (zebrafish) - ZFA:0000338 + diencephalic white matter (zebrafish) @@ -18559,8 +17792,7 @@ - digestive system (zebrafish) - ZFA:0000339 + digestive system (zebrafish) @@ -18579,8 +17811,7 @@ - dorsal flexor (zebrafish) - ZFA:0000341 + dorsal flexor (zebrafish) @@ -18599,8 +17830,7 @@ - dorsal inclinator muscle (zebrafish) - ZFA:0000342 + dorsal inclinator muscle (zebrafish) @@ -18619,8 +17849,7 @@ - middle lateral line (zebrafish) - ZFA:0000344 + middle lateral line (zebrafish) @@ -18639,8 +17868,7 @@ - superior rectus extraocular muscle (zebrafish) - ZFA:0000345 + superior rectus extraocular muscle (zebrafish) @@ -18659,30 +17887,7 @@ - dorsal tegmental nucleus (zebrafish) - ZFA:0000346 - - - - - - - - - - - - - - - - - - - - dorsal hypothalamic area (zebrafish) - dorsal zone of median tuberal portion of hypothalamus (zebrafish) - ZFA:0000347 + dorsal tegmental nucleus (zebrafish) @@ -18701,8 +17906,7 @@ - epaxialis (zebrafish) - ZFA:0000349 + epaxialis (zebrafish) @@ -18721,8 +17925,7 @@ - epipleural (zebrafish) - ZFA:0000350 + epipleural (zebrafish) @@ -18741,8 +17944,7 @@ - olfactory region (zebrafish) - ZFA:0000351 + olfactory region (zebrafish) @@ -18761,8 +17963,7 @@ - external cellular layer (zebrafish) - ZFA:0000352 + external cellular layer (zebrafish) @@ -18781,8 +17982,7 @@ - habenulo-interpeduncular tract (zebrafish) - ZFA:0000353 + habenulo-interpeduncular tract (zebrafish) @@ -18801,8 +18001,7 @@ - pharyngeal arch derived gill (zebrafish) - ZFA:0000354 + pharyngeal arch derived gill (zebrafish) @@ -18821,8 +18020,7 @@ - roof plate of midbrain (zebrafish) - ZFA:0000355 + roof plate of midbrain (zebrafish) @@ -18841,8 +18039,7 @@ - gill raker (zebrafish) - ZFA:0000356 + gill raker (zebrafish) @@ -18861,8 +18058,7 @@ - olfactory bulb glomerular layer (zebrafish) - ZFA:0000357 + olfactory bulb glomerular layer (zebrafish) @@ -18881,8 +18077,7 @@ - granular layer corpus cerebelli (zebrafish) - ZFA:0000358 + granular layer corpus cerebelli (zebrafish) @@ -18901,8 +18096,7 @@ - habenular commissure (zebrafish) - ZFA:0000359 + habenular commissure (zebrafish) @@ -18921,8 +18115,7 @@ - heart tube (zebrafish) - ZFA:0000360 + heart tube (zebrafish) @@ -18941,8 +18134,7 @@ - hypaxialis (zebrafish) - ZFA:0000362 + hypaxialis (zebrafish) @@ -18961,8 +18153,7 @@ - hypobranchial bone (zebrafish) - ZFA:0000363 + hypobranchial bone (zebrafish) @@ -18981,8 +18172,7 @@ - hypural (zebrafish) - ZFA:0000364 + hypural (zebrafish) @@ -19001,8 +18191,7 @@ - nasal bone (zebrafish) - ZFA:0000365 + nasal bone (zebrafish) @@ -19021,8 +18210,7 @@ - dorsal raphe nucleus (zebrafish) - ZFA:0000366 + dorsal raphe nucleus (zebrafish) @@ -19041,8 +18229,7 @@ - integument (zebrafish) - ZFA:0000368 + integument (zebrafish) @@ -19061,8 +18248,7 @@ - intermandibularis (zebrafish) - ZFA:0000369 + intermandibularis (zebrafish) @@ -19081,8 +18267,7 @@ - ventral intermediate nucleus of thalamus (zebrafish) - ZFA:0000370 + ventral intermediate nucleus of thalamus (zebrafish) @@ -19101,8 +18286,7 @@ - internal pharyngoclavicularis (zebrafish) - ZFA:0000371 + internal pharyngoclavicularis (zebrafish) @@ -19121,8 +18305,7 @@ - interpeduncular nucleus medulla oblongata (zebrafish) - ZFA:0000372 + interpeduncular nucleus medulla oblongata (zebrafish) @@ -19141,8 +18324,7 @@ - cochlea (zebrafish) - ZFA:0000374 + cochlea (zebrafish) @@ -19161,8 +18343,7 @@ - infraorbital (zebrafish) - ZFA:0000376 + infraorbital (zebrafish) @@ -19181,8 +18362,7 @@ - nucleus of lateral lemniscus (zebrafish) - ZFA:0000380 + nucleus of lateral lemniscus (zebrafish) @@ -19201,8 +18381,7 @@ - lateral line sensory nucleus (zebrafish) - ZFA:0000381 + lateral line sensory nucleus (zebrafish) @@ -19221,8 +18400,7 @@ - acellular anatomical structure (zebrafish) - ZFA:0000382 + acellular anatomical structure (zebrafish) @@ -19241,8 +18419,7 @@ - lateral rectus extra-ocular muscle (zebrafish) - ZFA:0000383 + lateral rectus extra-ocular muscle (zebrafish) @@ -19261,8 +18438,7 @@ - levator arcus palatini (zebrafish) - ZFA:0000384 + levator arcus palatini (zebrafish) @@ -19281,8 +18457,7 @@ - lymphoid system (zebrafish) - ZFA:0000385 + lymphoid system (zebrafish) @@ -19301,8 +18476,7 @@ - macula (zebrafish) - ZFA:0000386 + macula (zebrafish) @@ -19321,8 +18495,7 @@ - motor nucleus of vagal nerve (zebrafish) - ZFA:0000387 + motor nucleus of vagal nerve (zebrafish) @@ -19341,8 +18514,7 @@ - medial caudal lobe (zebrafish) - ZFA:0000388 + medial caudal lobe (zebrafish) @@ -19361,8 +18533,7 @@ - medial funicular nucleus medulla oblongata (zebrafish) - ZFA:0000389 + medial funicular nucleus medulla oblongata (zebrafish) @@ -19381,28 +18552,7 @@ - medial preglomerular nucleus (zebrafish) - ZFA:0000390 - - - - - - - - - - - - - - - - - - - lateral pallium (zebrafish) - ZFA:0000391 + medial preglomerular nucleus (zebrafish) @@ -19421,8 +18571,7 @@ - median tuberal portion (zebrafish) - ZFA:0000392 + median tuberal portion (zebrafish) @@ -19441,8 +18590,7 @@ - mesenchyme (zebrafish) - ZFA:0000393 + mesenchyme (zebrafish) @@ -19461,8 +18609,7 @@ - molecular layer corpus cerebelli (zebrafish) - ZFA:0000394 + molecular layer corpus cerebelli (zebrafish) @@ -19481,8 +18628,7 @@ - nervous system (zebrafish) - ZFA:0000396 + nervous system (zebrafish) @@ -19501,8 +18647,7 @@ - nucleus subglomerulosis (zebrafish) - ZFA:0000397 + nucleus subglomerulosis (zebrafish) @@ -19521,8 +18666,7 @@ - nucleus isthmi (zebrafish) - ZFA:0000398 + nucleus isthmi (zebrafish) @@ -19541,8 +18685,7 @@ - secondary gustatory nucleus trigeminal nuclei (zebrafish) - ZFA:0000399 + secondary gustatory nucleus trigeminal nuclei (zebrafish) @@ -19561,8 +18704,7 @@ - occipital lateral line (zebrafish) - ZFA:0000400 + occipital lateral line (zebrafish) @@ -19581,8 +18723,7 @@ - octaval nerve sensory nucleus (zebrafish) - ZFA:0000401 + octaval nerve sensory nucleus (zebrafish) @@ -19601,8 +18742,7 @@ - olfactory bulb (zebrafish) - ZFA:0000402 + olfactory bulb (zebrafish) @@ -19621,8 +18761,7 @@ - ovary (zebrafish) - ZFA:0000403 + ovary (zebrafish) @@ -19641,8 +18780,7 @@ - paracommissural periventricular pretectal nucleus (zebrafish) - ZFA:0000404 + paracommissural periventricular pretectal nucleus (zebrafish) @@ -19661,28 +18799,7 @@ - oculomotor nerve (zebrafish) - ZFA:0000405 - - - - - - - - - - - - - - - - - - - parvocellular superficial pretectal nucleus (zebrafish) - ZFA:0000406 + oculomotor nerve (zebrafish) @@ -19701,8 +18818,7 @@ - pectoral girdle skeleton (zebrafish) - ZFA:0000407 + pectoral girdle skeleton (zebrafish) @@ -19721,8 +18837,7 @@ - periventricular nucleus of caudal tuberculum (zebrafish) - ZFA:0000408 + periventricular nucleus of caudal tuberculum (zebrafish) @@ -19741,8 +18856,7 @@ - postcleithrum (zebrafish) - ZFA:0000410 + postcleithrum (zebrafish) @@ -19761,8 +18875,7 @@ - posterior crista primordium (zebrafish) - ZFA:0000411 + posterior crista primordium (zebrafish) @@ -19781,8 +18894,7 @@ - posterior semicircular canal primordium (zebrafish) - ZFA:0000412 + posterior semicircular canal primordium (zebrafish) @@ -19801,8 +18913,7 @@ - gonad (zebrafish) - ZFA:0000413 + gonad (zebrafish) @@ -19821,8 +18932,7 @@ - presumptive cephalic mesoderm (zebrafish) - ZFA:0000414 + presumptive cephalic mesoderm (zebrafish) @@ -19841,8 +18951,7 @@ - esophageal-pneumatic duct sphincter (zebrafish) - ZFA:0000415 + esophageal-pneumatic duct sphincter (zebrafish) @@ -19861,8 +18970,7 @@ - presumptive endoderm (zebrafish) - ZFA:0000416 + presumptive endoderm (zebrafish) @@ -19881,8 +18989,7 @@ - future spinal cord (zebrafish) - ZFA:0000417 + future spinal cord (zebrafish) @@ -19901,8 +19008,7 @@ - pretectal region (zebrafish) - ZFA:0000418 + pretectal region (zebrafish) @@ -19921,8 +19027,7 @@ - pterosphenoid (zebrafish) - ZFA:0000419 + pterosphenoid (zebrafish) @@ -19941,8 +19046,7 @@ - renal artery (zebrafish) - ZFA:0000420 + renal artery (zebrafish) @@ -19961,8 +19065,7 @@ - medullary reticular formation (zebrafish) - ZFA:0000421 + medullary reticular formation (zebrafish) @@ -19981,8 +19084,7 @@ - retroarticular (zebrafish) - ZFA:0000422 + retroarticular (zebrafish) @@ -20001,8 +19103,7 @@ - anterior cardinal vein (zebrafish) - ZFA:0000423 + anterior cardinal vein (zebrafish) @@ -20021,8 +19122,7 @@ - opercular lateral line (zebrafish) - ZFA:0000424 + opercular lateral line (zebrafish) @@ -20041,8 +19141,7 @@ - anterior lateral line nerve (zebrafish) - ZFA:0000425 + anterior lateral line nerve (zebrafish) @@ -20061,8 +19160,7 @@ - rostral parvocellular preoptic nucleus (zebrafish) - ZFA:0000426 + rostral parvocellular preoptic nucleus (zebrafish) @@ -20081,8 +19179,7 @@ - anterior nuclear group (zebrafish) - ZFA:0000427 + anterior nuclear group (zebrafish) @@ -20101,8 +19198,7 @@ - saccule of membranous labyrinth (zebrafish) - ZFA:0000428 + saccule of membranous labyrinth (zebrafish) @@ -20121,8 +19217,7 @@ - scaphium (zebrafish) - ZFA:0000429 + scaphium (zebrafish) @@ -20141,8 +19236,7 @@ - secondary gustatory tract (zebrafish) - ZFA:0000430 + secondary gustatory tract (zebrafish) @@ -20161,8 +19255,7 @@ - semicircular canal (zebrafish) - ZFA:0000431 + semicircular canal (zebrafish) @@ -20181,8 +19274,7 @@ - trigeminal sensory nucleus (zebrafish) - ZFA:0000433 + trigeminal sensory nucleus (zebrafish) @@ -20201,8 +19293,7 @@ - skeletal system (zebrafish) - ZFA:0000434 + skeletal system (zebrafish) @@ -20221,8 +19312,7 @@ - cranial nerve II (zebrafish) - ZFA:0000435 + cranial nerve II (zebrafish) @@ -20241,8 +19331,7 @@ - spleen (zebrafish) - ZFA:0000436 + spleen (zebrafish) @@ -20261,8 +19350,7 @@ - parhypural (zebrafish) - ZFA:0000438 + parhypural (zebrafish) @@ -20281,8 +19369,7 @@ - superficial pelvic abductor (zebrafish) - ZFA:0000439 + superficial pelvic abductor (zebrafish) @@ -20301,8 +19388,7 @@ - superior raphe nucleus (zebrafish) - ZFA:0000440 + superior raphe nucleus (zebrafish) @@ -20321,8 +19407,7 @@ - suprachiasmatic nucleus (zebrafish) - ZFA:0000441 + suprachiasmatic nucleus (zebrafish) @@ -20341,8 +19426,7 @@ - supraneural bone (zebrafish) - ZFA:0000442 + supraneural bone (zebrafish) @@ -20361,8 +19445,7 @@ - supraorbital lateral line (zebrafish) - ZFA:0000443 + supraorbital lateral line (zebrafish) @@ -20381,8 +19464,7 @@ - suspensorium (zebrafish) - ZFA:0000444 + suspensorium (zebrafish) @@ -20401,8 +19483,7 @@ - superior colliculus (zebrafish) - ZFA:0000445 + superior colliculus (zebrafish) @@ -20421,8 +19502,7 @@ - tectobulbar tract (zebrafish) - ZFA:0000446 + tectobulbar tract (zebrafish) @@ -20441,8 +19521,7 @@ - tela choroidea (zebrafish) - ZFA:0000447 + tela choroidea (zebrafish) @@ -20461,8 +19540,7 @@ - tertiary gustatory nucleus (zebrafish) - ZFA:0000448 + tertiary gustatory nucleus (zebrafish) @@ -20481,8 +19559,7 @@ - torus longitudinalis (zebrafish) - ZFA:0000449 + torus longitudinalis (zebrafish) @@ -20501,8 +19578,7 @@ - trochlear nucleus (zebrafish) - ZFA:0000450 + trochlear nucleus (zebrafish) @@ -20521,8 +19597,7 @@ - upper oral valve (zebrafish) - ZFA:0000451 + upper oral valve (zebrafish) @@ -20541,8 +19616,7 @@ - urohyal (zebrafish) - ZFA:0000452 + urohyal (zebrafish) @@ -20561,8 +19635,7 @@ - vagus nerve (zebrafish) - ZFA:0000453 + vagus nerve (zebrafish) @@ -20581,8 +19654,7 @@ - ventral accessory optic nucleus (zebrafish) - ZFA:0000454 + ventral accessory optic nucleus (zebrafish) @@ -20601,8 +19673,7 @@ - ventral flexor (zebrafish) - ZFA:0000455 + ventral flexor (zebrafish) @@ -20621,8 +19692,7 @@ - inferior rectus extraocular muscle (zebrafish) - ZFA:0000457 + inferior rectus extraocular muscle (zebrafish) @@ -20641,8 +19711,7 @@ - ventral thalamus (zebrafish) - ZFA:0000458 + ventral thalamus (zebrafish) @@ -20661,8 +19730,7 @@ - ventromedial thalamic nucleus (zebrafish) - ZFA:0000459 + ventromedial thalamic nucleus (zebrafish) @@ -20681,8 +19749,7 @@ - Weberian ossicle (zebrafish) - ZFA:0000461 + Weberian ossicle (zebrafish) @@ -20701,8 +19768,7 @@ - abductor hyohyoid (zebrafish) - ZFA:0000462 + abductor hyohyoid (zebrafish) @@ -20721,8 +19787,7 @@ - pharyngeal adductor (zebrafish) - ZFA:0000463 + pharyngeal adductor (zebrafish) @@ -20741,8 +19806,7 @@ - otic lateral line (zebrafish) - ZFA:0000464 + otic lateral line (zebrafish) @@ -20761,8 +19825,7 @@ - adductor operculi (zebrafish) - ZFA:0000465 + adductor operculi (zebrafish) @@ -20781,8 +19844,7 @@ - anal depressor (zebrafish) - ZFA:0000466 + anal depressor (zebrafish) @@ -20801,8 +19863,7 @@ - articular/anguloarticular (zebrafish) - ZFA:0000467 + articular/anguloarticular (zebrafish) @@ -20821,8 +19882,7 @@ - anterior crista primordium (zebrafish) - ZFA:0000468 + anterior crista primordium (zebrafish) @@ -20841,8 +19901,7 @@ - anterior semicircular canal primordium (zebrafish) - ZFA:0000469 + anterior semicircular canal primordium (zebrafish) @@ -20861,8 +19920,7 @@ - preoptic area (zebrafish) - ZFA:0000470 + preoptic area (zebrafish) @@ -20881,8 +19939,7 @@ - cardiac atrium (zebrafish) - ZFA:0000471 + cardiac atrium (zebrafish) @@ -20901,8 +19958,7 @@ - basioccipital bone (zebrafish) - ZFA:0000472 + basioccipital bone (zebrafish) @@ -20921,8 +19977,7 @@ - skeletal muscle of trunk (zebrafish) - ZFA:0000473 + skeletal muscle of trunk (zebrafish) @@ -20941,8 +19996,7 @@ - intercalar (zebrafish) - ZFA:0000474 + intercalar (zebrafish) @@ -20961,8 +20015,7 @@ - paraventricular organ (zebrafish) - ZFA:0000475 + paraventricular organ (zebrafish) @@ -20981,8 +20034,7 @@ - branchiostegal ray (zebrafish) - ZFA:0000476 + branchiostegal ray (zebrafish) @@ -21001,8 +20053,7 @@ - posterior cardinal vein (zebrafish) - ZFA:0000477 + posterior cardinal vein (zebrafish) @@ -21021,8 +20072,7 @@ - caudal mesencephalo-cerebellar tract (zebrafish) - ZFA:0000479 + caudal mesencephalo-cerebellar tract (zebrafish) @@ -21041,8 +20091,7 @@ - caudal octavolateralis nucleus (zebrafish) - ZFA:0000480 + caudal octavolateralis nucleus (zebrafish) @@ -21061,8 +20110,7 @@ - caudal preglomerular nucleus (zebrafish) - ZFA:0000481 + caudal preglomerular nucleus (zebrafish) @@ -21081,8 +20129,7 @@ - caudal tuberal nucleus (zebrafish) - ZFA:0000482 + caudal tuberal nucleus (zebrafish) @@ -21101,8 +20148,7 @@ - celiacomesenteric artery (zebrafish) - ZFA:0000484 + celiacomesenteric artery (zebrafish) @@ -21121,8 +20167,7 @@ - central nucleus inferior lobe (zebrafish) - ZFA:0000485 + central nucleus inferior lobe (zebrafish) @@ -21141,8 +20186,7 @@ - actinopterygian parietal bone (zebrafish) - ZFA:0000486 + actinopterygian parietal bone (zebrafish) @@ -21161,8 +20205,7 @@ - ceratobranchial bone (zebrafish) - ZFA:0000488 + ceratobranchial bone (zebrafish) @@ -21181,8 +20224,7 @@ - cerebellar commissure (zebrafish) - ZFA:0000490 + cerebellar commissure (zebrafish) @@ -21201,8 +20243,7 @@ - coracoradialis (zebrafish) - ZFA:0000492 + coracoradialis (zebrafish) @@ -21221,8 +20262,7 @@ - deep white layer of superior colliculus (zebrafish) - ZFA:0000494 + deep white layer of superior colliculus (zebrafish) @@ -21241,8 +20281,7 @@ - infraorbital 5 (zebrafish) - ZFA:0000495 + infraorbital 5 (zebrafish) @@ -21261,8 +20300,7 @@ - compound organ (zebrafish) - ZFA:0000496 + compound organ (zebrafish) @@ -21281,8 +20319,7 @@ - pelvic adductor profundus (zebrafish) - ZFA:0000497 + pelvic adductor profundus (zebrafish) @@ -21301,8 +20338,7 @@ - dilatator operculi (zebrafish) - ZFA:0000498 + dilatator operculi (zebrafish) @@ -21321,8 +20357,7 @@ - dorsal arrector (zebrafish) - ZFA:0000499 + dorsal arrector (zebrafish) @@ -21341,8 +20376,7 @@ - dorsal erector muscle (zebrafish) - ZFA:0000500 + dorsal erector muscle (zebrafish) @@ -21361,8 +20395,7 @@ - dorsal funiculus of spinal cord (zebrafish) - ZFA:0000501 + dorsal funiculus of spinal cord (zebrafish) @@ -21381,8 +20414,7 @@ - dorsal motor nucleus trigeminal nerve (zebrafish) - ZFA:0000502 + dorsal motor nucleus trigeminal nerve (zebrafish) @@ -21401,8 +20433,7 @@ - dorsal oblique branchial muscle (zebrafish) - ZFA:0000503 + dorsal oblique branchial muscle (zebrafish) @@ -21421,8 +20452,7 @@ - dorsal retractor (zebrafish) - ZFA:0000504 + dorsal retractor (zebrafish) @@ -21441,28 +20471,7 @@ - pallium (zebrafish) - ZFA:0000505 - - - - - - - - - - - - - - - - - - - dorsal pallium (zebrafish) - ZFA:0000506 + pallium (zebrafish) @@ -21481,8 +20490,7 @@ - epineural (zebrafish) - ZFA:0000507 + epineural (zebrafish) @@ -21501,8 +20509,7 @@ - pelvic fin radial bone (zebrafish) - ZFA:0000508 + pelvic fin radial bone (zebrafish) @@ -21521,8 +20528,7 @@ - epithalamus (zebrafish) - ZFA:0000509 + epithalamus (zebrafish) @@ -21541,8 +20547,7 @@ - external levatores (zebrafish) - ZFA:0000510 + external levatores (zebrafish) @@ -21561,8 +20566,7 @@ - extra-ocular muscle (zebrafish) - ZFA:0000511 + extra-ocular muscle (zebrafish) @@ -21581,8 +20585,7 @@ - facial lobe (zebrafish) - ZFA:0000512 + facial lobe (zebrafish) @@ -21601,8 +20604,7 @@ - actinopterygian frontal bone (zebrafish) - ZFA:0000514 + actinopterygian frontal bone (zebrafish) @@ -21621,8 +20623,7 @@ - periventricular grey zone (zebrafish) - ZFA:0000516 + periventricular grey zone (zebrafish) @@ -21641,8 +20642,7 @@ - glossopharyngeal lobe (zebrafish) - ZFA:0000517 + glossopharyngeal lobe (zebrafish) @@ -21661,8 +20661,7 @@ - central gray substance of midbrain (zebrafish) - ZFA:0000518 + central gray substance of midbrain (zebrafish) @@ -21681,8 +20680,7 @@ - hemal arch (zebrafish) - ZFA:0000519 + hemal arch (zebrafish) @@ -21701,8 +20699,7 @@ - hyoid muscle (zebrafish) - ZFA:0000521 + hyoid muscle (zebrafish) @@ -21721,8 +20718,7 @@ - inferior hyohyoid (zebrafish) - ZFA:0000522 + inferior hyohyoid (zebrafish) @@ -21741,8 +20737,7 @@ - inferior reticular formation (zebrafish) - ZFA:0000523 + inferior reticular formation (zebrafish) @@ -21761,8 +20756,7 @@ - infraorbital lateral line (zebrafish) - ZFA:0000524 + infraorbital lateral line (zebrafish) @@ -21781,8 +20775,7 @@ - intercalarium (zebrafish) - ZFA:0000525 + intercalarium (zebrafish) @@ -21801,8 +20794,7 @@ - intermuscular bone (zebrafish) - ZFA:0000526 + intermuscular bone (zebrafish) @@ -21821,8 +20813,7 @@ - pharyngobranchial bone (zebrafish) - ZFA:0000527 + pharyngobranchial bone (zebrafish) @@ -21841,8 +20832,7 @@ - interradialis (zebrafish) - ZFA:0000528 + interradialis (zebrafish) @@ -21861,8 +20851,7 @@ - mesonephros (zebrafish) - ZFA:0000529 + mesonephros (zebrafish) @@ -21881,8 +20870,7 @@ - lapillus (zebrafish) - ZFA:0000530 + lapillus (zebrafish) @@ -21901,8 +20889,7 @@ - spinal cord lateral column (zebrafish) - ZFA:0000531 + spinal cord lateral column (zebrafish) @@ -21921,8 +20908,7 @@ - lateral division (zebrafish) - ZFA:0000532 + lateral division (zebrafish) @@ -21941,8 +20927,7 @@ - lateral funiculus of spinal cord (zebrafish) - ZFA:0000533 + lateral funiculus of spinal cord (zebrafish) @@ -21961,28 +20946,7 @@ - lateral reticular nucleus (zebrafish) - ZFA:0000535 - - - - - - - - - - - - - - - - - - - medial pallium (zebrafish) - ZFA:0000536 + lateral reticular nucleus (zebrafish) @@ -22001,8 +20965,7 @@ - levator operculi (zebrafish) - ZFA:0000537 + levator operculi (zebrafish) @@ -22021,8 +20984,7 @@ - rib (zebrafish) - ZFA:0000538 + rib (zebrafish) @@ -22041,8 +21003,7 @@ - locus ceruleus (zebrafish) - ZFA:0000539 + locus ceruleus (zebrafish) @@ -22061,8 +21022,7 @@ - magnocellular octaval nucleus (zebrafish) - ZFA:0000540 + magnocellular octaval nucleus (zebrafish) @@ -22081,8 +21041,7 @@ - medial column (zebrafish) - ZFA:0000542 + medial column (zebrafish) @@ -22101,8 +21060,7 @@ - medial longitudinal fasciculus (zebrafish) - ZFA:0000543 + medial longitudinal fasciculus (zebrafish) @@ -22121,8 +21079,7 @@ - medulla oblongata (zebrafish) - ZFA:0000545 + medulla oblongata (zebrafish) @@ -22141,8 +21098,7 @@ - mesonephric duct (zebrafish) - ZFA:0000546 + mesonephric duct (zebrafish) @@ -22161,8 +21117,7 @@ - mouth (zebrafish) - ZFA:0000547 + mouth (zebrafish) @@ -22181,8 +21136,7 @@ - musculature (zebrafish) - ZFA:0000548 + musculature (zebrafish) @@ -22201,8 +21155,7 @@ - posttemporal (zebrafish) - ZFA:0000549 + posttemporal (zebrafish) @@ -22221,8 +21174,7 @@ - external naris (zebrafish) - ZFA:0000550 + external naris (zebrafish) @@ -22241,8 +21193,7 @@ - nucleus lateralis valvulae (zebrafish) - ZFA:0000551 + nucleus lateralis valvulae (zebrafish) @@ -22261,8 +21212,7 @@ - red nucleus (zebrafish) - ZFA:0000552 + red nucleus (zebrafish) @@ -22281,8 +21231,7 @@ - oculomotor nuclear complex (zebrafish) - ZFA:0000553 + oculomotor nuclear complex (zebrafish) @@ -22301,8 +21250,7 @@ - olfactory epithelium (zebrafish) - ZFA:0000554 + olfactory epithelium (zebrafish) @@ -22321,8 +21269,7 @@ - opercular flap (zebrafish) - ZFA:0000555 + opercular flap (zebrafish) @@ -22341,8 +21288,7 @@ - optic chiasma (zebrafish) - ZFA:0000556 + optic chiasma (zebrafish) @@ -22361,8 +21307,7 @@ - preural 1 vertebra (zebrafish) - ZFA:0000557 + preural 1 vertebra (zebrafish) @@ -22381,8 +21326,7 @@ - posterior macula (zebrafish) - ZFA:0000558 + posterior macula (zebrafish) @@ -22401,8 +21345,7 @@ - otolith organ (zebrafish) - ZFA:0000559 + otolith organ (zebrafish) @@ -22421,8 +21364,7 @@ - oviduct (zebrafish) - ZFA:0000560 + oviduct (zebrafish) @@ -22441,8 +21383,7 @@ - parasphenoid (zebrafish) - ZFA:0000561 + parasphenoid (zebrafish) @@ -22461,8 +21402,7 @@ - pectoral appendage musculature (zebrafish) - ZFA:0000563 + pectoral appendage musculature (zebrafish) @@ -22481,8 +21421,7 @@ - pelvic abductor profundus (zebrafish) - ZFA:0000564 + pelvic abductor profundus (zebrafish) @@ -22501,8 +21440,7 @@ - pelvic girdle skeleton (zebrafish) - ZFA:0000565 + pelvic girdle skeleton (zebrafish) @@ -22521,8 +21459,7 @@ - crista of ampulla of posterior semicircular duct of membranous laybrinth (zebrafish) - ZFA:0000566 + crista of ampulla of posterior semicircular duct of membranous laybrinth (zebrafish) @@ -22541,8 +21478,7 @@ - premaxilla (zebrafish) - ZFA:0000567 + premaxilla (zebrafish) @@ -22561,8 +21497,7 @@ - presumptive blood (zebrafish) - ZFA:0000568 + presumptive blood (zebrafish) @@ -22581,8 +21516,7 @@ - presumptive hindbrain (zebrafish) - ZFA:0000569 + presumptive hindbrain (zebrafish) @@ -22601,28 +21535,7 @@ - eye primordium (zebrafish) - ZFA:0000570 - - - - - - - - - - - - - - - - - - - future telencephalon (zebrafish) - ZFA:0000571 + eye primordium (zebrafish) @@ -22641,8 +21554,7 @@ - internal cellular layer (zebrafish) - ZFA:0000573 + internal cellular layer (zebrafish) @@ -22661,8 +21573,7 @@ - future diencephalon (zebrafish) - ZFA:0000574 + future diencephalon (zebrafish) @@ -22681,8 +21592,7 @@ - prootic bone (zebrafish) - ZFA:0000575 + prootic bone (zebrafish) @@ -22701,8 +21611,7 @@ - pterotic (zebrafish) - ZFA:0000576 + pterotic (zebrafish) @@ -22721,8 +21630,7 @@ - renal portal vein (zebrafish) - ZFA:0000577 + renal portal vein (zebrafish) @@ -22741,8 +21649,7 @@ - ceratohyal bone (zebrafish) - ZFA:0000578 + ceratohyal bone (zebrafish) @@ -22761,8 +21668,7 @@ - rostral mesencephalo-cerebellar tract (zebrafish) - ZFA:0000579 + rostral mesencephalo-cerebellar tract (zebrafish) @@ -22781,8 +21687,7 @@ - rostral preglomerular nucleus (zebrafish) - ZFA:0000580 + rostral preglomerular nucleus (zebrafish) @@ -22801,8 +21706,7 @@ - rostral tuberal nucleus (zebrafish) - ZFA:0000581 + rostral tuberal nucleus (zebrafish) @@ -22821,8 +21725,7 @@ - saccus dorsalis (zebrafish) - ZFA:0000582 + saccus dorsalis (zebrafish) @@ -22841,8 +21744,7 @@ - scapula (zebrafish) - ZFA:0000583 + scapula (zebrafish) @@ -22861,8 +21763,7 @@ - kinethmoid cartilage (zebrafish) - ZFA:0000585 + kinethmoid cartilage (zebrafish) @@ -22881,8 +21782,7 @@ - preural 2 vertebra (zebrafish) - ZFA:0000586 + preural 2 vertebra (zebrafish) @@ -22901,8 +21801,7 @@ - sphenotic (zebrafish) - ZFA:0000587 + sphenotic (zebrafish) @@ -22921,8 +21820,7 @@ - vestibulocochlear ganglion (zebrafish) - ZFA:0000588 + vestibulocochlear ganglion (zebrafish) @@ -22941,8 +21839,7 @@ - sulcus ypsiloniformis (zebrafish) - ZFA:0000589 + sulcus ypsiloniformis (zebrafish) @@ -22961,8 +21858,7 @@ - mouth (zebrafish) - ZFA:0000590 + mouth (zebrafish) @@ -22981,8 +21877,7 @@ - presumptive paraxial mesoderm (zebrafish) - ZFA:0000591 + presumptive paraxial mesoderm (zebrafish) @@ -23001,8 +21896,7 @@ - superficial pelvic adductor (zebrafish) - ZFA:0000592 + superficial pelvic adductor (zebrafish) @@ -23021,8 +21915,7 @@ - superior reticular formation medial column (zebrafish) - ZFA:0000593 + superior reticular formation medial column (zebrafish) @@ -23041,8 +21934,7 @@ - supracleithrum (zebrafish) - ZFA:0000594 + supracleithrum (zebrafish) @@ -23061,30 +21953,7 @@ - supraoccipital bone (zebrafish) - ZFA:0000595 - - - - - - - - - - - - - - - - - - - - telencephalic tracts (zebrafish) - white matter of telencephalon (zebrafish) - ZFA:0000597 + supraoccipital bone (zebrafish) @@ -23103,8 +21972,7 @@ - testis (zebrafish) - ZFA:0000598 + testis (zebrafish) @@ -23123,8 +21991,7 @@ - torus semicircularis (zebrafish) - ZFA:0000599 + torus semicircularis (zebrafish) @@ -23143,28 +22010,7 @@ - trochlear nerve (zebrafish) - ZFA:0000600 - - - - - - - - - - - - - - - - - - - periventricular pretectal nucleus (zebrafish) - ZFA:0000601 + trochlear nerve (zebrafish) @@ -23183,8 +22029,7 @@ - uroneural (zebrafish) - ZFA:0000602 + uroneural (zebrafish) @@ -23203,8 +22048,7 @@ - valvula cerebelli (zebrafish) - ZFA:0000603 + valvula cerebelli (zebrafish) @@ -23223,8 +22067,7 @@ - ventral aorta (zebrafish) - ZFA:0000604 + ventral aorta (zebrafish) @@ -23243,8 +22086,7 @@ - ventral funiculus of spinal cord (zebrafish) - ZFA:0000605 + ventral funiculus of spinal cord (zebrafish) @@ -23263,8 +22105,7 @@ - ventral transverse (zebrafish) - ZFA:0000608 + ventral transverse (zebrafish) @@ -23283,8 +22124,7 @@ - ventrolateral nucleus (zebrafish) - ZFA:0000609 + ventrolateral nucleus (zebrafish) @@ -23303,8 +22143,7 @@ - vertical myoseptum (zebrafish) - ZFA:0000610 + vertical myoseptum (zebrafish) @@ -23323,8 +22162,7 @@ - visceromotor column (zebrafish) - ZFA:0000611 + visceromotor column (zebrafish) @@ -23343,8 +22181,7 @@ - abductor profundus (zebrafish) - ZFA:0000614 + abductor profundus (zebrafish) @@ -23363,8 +22200,7 @@ - adductor arcus palatini (zebrafish) - ZFA:0000615 + adductor arcus palatini (zebrafish) @@ -23383,8 +22219,7 @@ - adductor profundus (zebrafish) - ZFA:0000616 + adductor profundus (zebrafish) @@ -23403,8 +22238,7 @@ - anal erector (zebrafish) - ZFA:0000617 + anal erector (zebrafish) @@ -23423,8 +22257,7 @@ - crista of ampulla of anterior semicircular duct of membranous laybrinth (zebrafish) - ZFA:0000619 + crista of ampulla of anterior semicircular duct of membranous laybrinth (zebrafish) @@ -23443,8 +22276,7 @@ - autopalatine (zebrafish) - ZFA:0000620 + autopalatine (zebrafish) @@ -23463,8 +22295,7 @@ - quadrate bone (zebrafish) - ZFA:0000621 + quadrate bone (zebrafish) @@ -23483,8 +22314,7 @@ - barbel (zebrafish) - ZFA:0000622 + barbel (zebrafish) @@ -23503,8 +22333,7 @@ - basipterygium bone (zebrafish) - ZFA:0000623 + basipterygium bone (zebrafish) @@ -23523,8 +22352,7 @@ - posterior ceratohyal (zebrafish) - ZFA:0000627 + posterior ceratohyal (zebrafish) @@ -23543,8 +22371,7 @@ - caudal fin musculature (zebrafish) - ZFA:0000628 + caudal fin musculature (zebrafish) @@ -23563,8 +22390,7 @@ - caudal motor nucleus of abducens (zebrafish) - ZFA:0000629 + caudal motor nucleus of abducens (zebrafish) @@ -23583,8 +22409,7 @@ - caudal parvocellular preoptic nucleus (zebrafish) - ZFA:0000630 + caudal parvocellular preoptic nucleus (zebrafish) @@ -23603,8 +22428,7 @@ - caudal pretectal nucleus (zebrafish) - ZFA:0000631 + caudal pretectal nucleus (zebrafish) @@ -23623,8 +22447,7 @@ - reproductive system (zebrafish) - ZFA:0000632 + reproductive system (zebrafish) @@ -23643,28 +22466,7 @@ - caudal tuberculum (zebrafish) - ZFA:0000633 - - - - - - - - - - - - - - - - - - - central pretectal nucleus (zebrafish) - ZFA:0000635 + caudal tuberculum (zebrafish) @@ -23683,8 +22485,7 @@ - cerebellar crest (zebrafish) - ZFA:0000636 + cerebellar crest (zebrafish) @@ -23703,8 +22504,7 @@ - claustrum cartilage (zebrafish) - ZFA:0000637 + claustrum cartilage (zebrafish) @@ -23723,8 +22523,7 @@ - commissura rostral, pars dorsalis (zebrafish) - ZFA:0000638 + commissura rostral, pars dorsalis (zebrafish) @@ -23743,8 +22542,7 @@ - commissure of the secondary gustatory nuclei (zebrafish) - ZFA:0000639 + commissure of the secondary gustatory nuclei (zebrafish) @@ -23763,8 +22561,7 @@ - cornea (zebrafish) - ZFA:0000640 + cornea (zebrafish) @@ -23783,8 +22580,7 @@ - cranial nerve (zebrafish) - ZFA:0000641 + cranial nerve (zebrafish) @@ -23803,8 +22599,7 @@ - rostral cerebellar tract (zebrafish) - ZFA:0000643 + rostral cerebellar tract (zebrafish) @@ -23823,8 +22618,7 @@ - descending octaval nucleus (zebrafish) - ZFA:0000645 + descending octaval nucleus (zebrafish) @@ -23843,8 +22637,7 @@ - anal fin distal radial bone (zebrafish) - ZFA:0000646 + anal fin distal radial bone (zebrafish) @@ -23863,8 +22656,7 @@ - dorsal caudal thalamic nucleus (zebrafish) - ZFA:0000647 + dorsal caudal thalamic nucleus (zebrafish) @@ -23883,8 +22675,7 @@ - dorsal fin musculature (zebrafish) - ZFA:0000648 + dorsal fin musculature (zebrafish) @@ -23903,8 +22694,7 @@ - dorsal horn of spinal cord (zebrafish) - ZFA:0000649 + dorsal horn of spinal cord (zebrafish) @@ -23923,8 +22713,7 @@ - motor root of trigeminal nerve (zebrafish) - ZFA:0000650 + motor root of trigeminal nerve (zebrafish) @@ -23943,8 +22732,7 @@ - dorsal pelvic arrector (zebrafish) - ZFA:0000651 + dorsal pelvic arrector (zebrafish) @@ -23963,8 +22751,7 @@ - dorsal root of spinal cord (zebrafish) - ZFA:0000652 + dorsal root of spinal cord (zebrafish) @@ -23983,8 +22770,7 @@ - dorsal thalamus (zebrafish) - ZFA:0000653 + dorsal thalamus (zebrafish) @@ -24003,8 +22789,7 @@ - rostral motor nucleus of abducens (zebrafish) - ZFA:0000654 + rostral motor nucleus of abducens (zebrafish) @@ -24023,8 +22808,7 @@ - ectopterygoid bone (zebrafish) - ZFA:0000656 + ectopterygoid bone (zebrafish) @@ -24043,8 +22827,7 @@ - entopterygoid (zebrafish) - ZFA:0000657 + entopterygoid (zebrafish) @@ -24063,8 +22846,7 @@ - epibranchial bone (zebrafish) - ZFA:0000658 + epibranchial bone (zebrafish) @@ -24083,8 +22865,7 @@ - epural (zebrafish) - ZFA:0000660 + epural (zebrafish) @@ -24103,8 +22884,7 @@ - exoccipital bone (zebrafish) - ZFA:0000661 + exoccipital bone (zebrafish) @@ -24123,8 +22903,7 @@ - external pharyngoclavicularis (zebrafish) - ZFA:0000662 + external pharyngoclavicularis (zebrafish) @@ -24143,8 +22922,7 @@ - extrascapula (zebrafish) - ZFA:0000663 + extrascapula (zebrafish) @@ -24163,8 +22941,7 @@ - facial nerve (zebrafish) - ZFA:0000664 + facial nerve (zebrafish) @@ -24183,8 +22960,7 @@ - rostral root of abducens nerve (zebrafish) - ZFA:0000665 + rostral root of abducens nerve (zebrafish) @@ -24203,8 +22979,7 @@ - filamental artery (zebrafish) - ZFA:0000666 + filamental artery (zebrafish) @@ -24223,8 +22998,7 @@ - gill filament (zebrafish) - ZFA:0000667 + gill filament (zebrafish) @@ -24243,8 +23017,7 @@ - glossopharyngeal nerve (zebrafish) - ZFA:0000668 + glossopharyngeal nerve (zebrafish) @@ -24263,8 +23036,7 @@ - head kidney (zebrafish) - ZFA:0000669 + head kidney (zebrafish) @@ -24283,8 +23055,7 @@ - hepatic vein (zebrafish) - ZFA:0000670 + hepatic vein (zebrafish) @@ -24303,8 +23074,7 @@ - horizontal septum (zebrafish) - ZFA:0000671 + horizontal septum (zebrafish) @@ -24323,8 +23093,7 @@ - hyomandibular bone (zebrafish) - ZFA:0000672 + hyomandibular bone (zebrafish) @@ -24343,8 +23112,7 @@ - hypobranchial artery (zebrafish) - ZFA:0000673 + hypobranchial artery (zebrafish) @@ -24363,8 +23131,7 @@ - interopercle (zebrafish) - ZFA:0000674 + interopercle (zebrafish) @@ -24383,8 +23150,7 @@ - sagitta (zebrafish) - ZFA:0000676 + sagitta (zebrafish) @@ -24403,8 +23169,7 @@ - segmental intercostal artery (zebrafish) - ZFA:0000677 + segmental intercostal artery (zebrafish) @@ -24423,8 +23188,7 @@ - sensory root of facial nerve (zebrafish) - ZFA:0000679 + sensory root of facial nerve (zebrafish) @@ -24443,8 +23207,7 @@ - sinoatrial valve (zebrafish) - ZFA:0000680 + sinoatrial valve (zebrafish) @@ -24463,8 +23226,7 @@ - postzygapophysis (zebrafish) - ZFA:0000681 + postzygapophysis (zebrafish) @@ -24483,8 +23245,7 @@ - spinal artery (zebrafish) - ZFA:0000682 + spinal artery (zebrafish) @@ -24503,8 +23264,7 @@ - subcommissural organ (zebrafish) - ZFA:0000683 + subcommissural organ (zebrafish) @@ -24523,8 +23283,7 @@ - commissure of superior colliculus (zebrafish) - ZFA:0000684 + commissure of superior colliculus (zebrafish) @@ -24543,8 +23302,7 @@ - superficial abductor (zebrafish) - ZFA:0000685 + superficial abductor (zebrafish) @@ -24563,8 +23321,7 @@ - superficial layer of superior colliculus (zebrafish) - ZFA:0000686 + superficial layer of superior colliculus (zebrafish) @@ -24583,8 +23340,7 @@ - superficial pretectum (zebrafish) - ZFA:0000687 + superficial pretectum (zebrafish) @@ -24603,8 +23359,7 @@ - supraorbital bone (zebrafish) - ZFA:0000691 + supraorbital bone (zebrafish) @@ -24623,8 +23378,7 @@ - symplectic (zebrafish) - ZFA:0000692 + symplectic (zebrafish) @@ -24643,30 +23397,7 @@ - tangential nucleus (zebrafish) - ZFA:0000693 - - - - - - - - - - - - - - - - - - - - calcareous tooth (zebrafish) - ceratobranchial 5 tooth (zebrafish) - ZFA:0000694 + tangential nucleus (zebrafish) @@ -24685,8 +23416,7 @@ - labial cavities (zebrafish) - ZFA:0000695 + labial cavities (zebrafish) @@ -24705,8 +23435,7 @@ - telencephalic ventricle (zebrafish) - ZFA:0000696 + telencephalic ventricle (zebrafish) @@ -24725,8 +23454,7 @@ - trigeminal nerve (zebrafish) - ZFA:0000697 + trigeminal nerve (zebrafish) @@ -24745,8 +23473,7 @@ - tripus (zebrafish) - ZFA:0000698 + tripus (zebrafish) @@ -24765,8 +23492,7 @@ - utricle of membranous labyrinth (zebrafish) - ZFA:0000700 + utricle of membranous labyrinth (zebrafish) @@ -24785,8 +23511,7 @@ - ventral arrector (zebrafish) - ZFA:0000701 + ventral arrector (zebrafish) @@ -24805,8 +23530,7 @@ - ventral horn of spinal cord (zebrafish) - ZFA:0000702 + ventral horn of spinal cord (zebrafish) @@ -24825,8 +23549,7 @@ - ventral motor nucleus trigeminal nerve (zebrafish) - ZFA:0000703 + ventral motor nucleus trigeminal nerve (zebrafish) @@ -24845,8 +23568,7 @@ - ventral pelvic arrector (zebrafish) - ZFA:0000704 + ventral pelvic arrector (zebrafish) @@ -24865,8 +23587,7 @@ - ventral root of spinal cord (zebrafish) - ZFA:0000705 + ventral root of spinal cord (zebrafish) @@ -24885,8 +23606,7 @@ - colon (zebrafish) - ZFA:0000706 + colon (zebrafish) @@ -24905,8 +23625,7 @@ - ventral zone (zebrafish) - ZFA:0000707 + ventral zone (zebrafish) @@ -24925,8 +23644,7 @@ - vestibulospinal tract (zebrafish) - ZFA:0000709 + vestibulospinal tract (zebrafish) @@ -24945,8 +23663,7 @@ - viscerosensory commissural nucleus of Cajal (zebrafish) - ZFA:0000710 + viscerosensory commissural nucleus of Cajal (zebrafish) @@ -24965,8 +23682,7 @@ - deep cell layer (gastrulation) (zebrafish) - ZFA:0000711 + deep cell layer (gastrulation) (zebrafish) @@ -24985,8 +23701,7 @@ - internal yolk syncytial layer (zebrafish) - ZFA:0000712 + internal yolk syncytial layer (zebrafish) @@ -25005,28 +23720,7 @@ - abducens nucleus (zebrafish) - ZFA:0000713 - - - - - - - - - - - - - - - - - - - accessory pretectal nucleus (zebrafish) - ZFA:0000714 + abducens nucleus (zebrafish) @@ -25045,8 +23739,7 @@ - adductor hyohyoid (zebrafish) - ZFA:0000715 + adductor hyohyoid (zebrafish) @@ -25065,8 +23758,7 @@ - afferent portion of pharyngeal arch artery (zebrafish) - ZFA:0000716 + afferent portion of pharyngeal arch artery (zebrafish) @@ -25085,8 +23777,7 @@ - apical ectodermal ridge median fin fold (zebrafish) - ZFA:0000717 + apical ectodermal ridge median fin fold (zebrafish) @@ -25105,8 +23796,7 @@ - epaxial region somite 27 (zebrafish) - ZFA:0000718 + epaxial region somite 27 (zebrafish) @@ -25125,8 +23815,7 @@ - somite 11 (zebrafish) - ZFA:0000725 + somite 11 (zebrafish) @@ -25145,8 +23834,7 @@ - somite 14 (zebrafish) - ZFA:0000726 + somite 14 (zebrafish) @@ -25165,8 +23853,7 @@ - somite 17 (zebrafish) - ZFA:0000727 + somite 17 (zebrafish) @@ -25185,8 +23872,7 @@ - somite 2 (zebrafish) - ZFA:0000728 + somite 2 (zebrafish) @@ -25205,8 +23891,7 @@ - epaxial region somite 3 (zebrafish) - ZFA:0000729 + epaxial region somite 3 (zebrafish) @@ -25225,8 +23910,7 @@ - somite 23 (zebrafish) - ZFA:0000730 + somite 23 (zebrafish) @@ -25245,8 +23929,7 @@ - somite 27 (zebrafish) - ZFA:0000731 + somite 27 (zebrafish) @@ -25265,8 +23948,7 @@ - somite 3 (zebrafish) - ZFA:0000732 + somite 3 (zebrafish) @@ -25285,8 +23967,7 @@ - somite 7 (zebrafish) - ZFA:0000733 + somite 7 (zebrafish) @@ -25305,8 +23986,7 @@ - preural vertebra (zebrafish) - ZFA:0000734 + preural vertebra (zebrafish) @@ -25325,8 +24005,7 @@ - hemal postzygapophysis (zebrafish) - ZFA:0000735 + hemal postzygapophysis (zebrafish) @@ -25345,8 +24024,7 @@ - cranial skeletal system (zebrafish) - ZFA:0000737 + cranial skeletal system (zebrafish) @@ -25365,8 +24043,7 @@ - superior oblique extraocular muscle (zebrafish) - ZFA:0000738 + superior oblique extraocular muscle (zebrafish) @@ -25385,8 +24062,7 @@ - epaxial region somite 11 (zebrafish) - ZFA:0000739 + epaxial region somite 11 (zebrafish) @@ -25405,8 +24081,7 @@ - epaxial region somite 5 (zebrafish) - ZFA:0000740 + epaxial region somite 5 (zebrafish) @@ -25425,8 +24100,7 @@ - epaxial region somite 14 (zebrafish) - ZFA:0000741 + epaxial region somite 14 (zebrafish) @@ -25445,8 +24119,7 @@ - epaxial region somite 17 (zebrafish) - ZFA:0000742 + epaxial region somite 17 (zebrafish) @@ -25465,8 +24138,7 @@ - epaxial region somite 2 (zebrafish) - ZFA:0000743 + epaxial region somite 2 (zebrafish) @@ -25485,8 +24157,7 @@ - epaxial region somite 22 (zebrafish) - ZFA:0000744 + epaxial region somite 22 (zebrafish) @@ -25505,8 +24176,7 @@ - epaxial region somite 25 (zebrafish) - ZFA:0000745 + epaxial region somite 25 (zebrafish) @@ -25525,8 +24195,7 @@ - epaxial region somite 28 (zebrafish) - ZFA:0000746 + epaxial region somite 28 (zebrafish) @@ -25545,8 +24214,7 @@ - epaxial region somite 30 (zebrafish) - ZFA:0000747 + epaxial region somite 30 (zebrafish) @@ -25565,8 +24233,7 @@ - epaxial region somite 6 (zebrafish) - ZFA:0000748 + epaxial region somite 6 (zebrafish) @@ -25585,8 +24252,7 @@ - epaxial region somite 9 (zebrafish) - ZFA:0000749 + epaxial region somite 9 (zebrafish) @@ -25605,8 +24271,7 @@ - epaxial region somite 8 (zebrafish) - ZFA:0000751 + epaxial region somite 8 (zebrafish) @@ -25625,8 +24290,7 @@ - midbrain basal plate (zebrafish) - ZFA:0000761 + midbrain basal plate (zebrafish) @@ -25645,8 +24309,7 @@ - facio-acoustic neural crest (zebrafish) - ZFA:0000762 + facio-acoustic neural crest (zebrafish) @@ -25665,8 +24328,7 @@ - rhombomere 2 floor plate (zebrafish) - ZFA:0000763 + rhombomere 2 floor plate (zebrafish) @@ -25685,8 +24347,7 @@ - rhombomere 5 floor plate (zebrafish) - ZFA:0000764 + rhombomere 5 floor plate (zebrafish) @@ -25705,8 +24366,7 @@ - rhombomere 8 floor plate (zebrafish) - ZFA:0000765 + rhombomere 8 floor plate (zebrafish) @@ -25725,8 +24385,7 @@ - granular layer valvula cerebelli (zebrafish) - ZFA:0000766 + granular layer valvula cerebelli (zebrafish) @@ -25745,8 +24404,7 @@ - hypaxial region somite 11 (zebrafish) - ZFA:0000767 + hypaxial region somite 11 (zebrafish) @@ -25765,8 +24423,7 @@ - hypaxial region somite 14 (zebrafish) - ZFA:0000768 + hypaxial region somite 14 (zebrafish) @@ -25785,8 +24442,7 @@ - hypaxial region somite 17 (zebrafish) - ZFA:0000769 + hypaxial region somite 17 (zebrafish) @@ -25805,8 +24461,7 @@ - hypaxial region somite 2 (zebrafish) - ZFA:0000770 + hypaxial region somite 2 (zebrafish) @@ -25825,8 +24480,7 @@ - hypaxial region somite 22 (zebrafish) - ZFA:0000771 + hypaxial region somite 22 (zebrafish) @@ -25845,8 +24499,7 @@ - hypaxial region somite 25 (zebrafish) - ZFA:0000772 + hypaxial region somite 25 (zebrafish) @@ -25865,8 +24518,7 @@ - hypaxial region somite 28 (zebrafish) - ZFA:0000774 + hypaxial region somite 28 (zebrafish) @@ -25885,8 +24537,7 @@ - hypaxial region somite 30 (zebrafish) - ZFA:0000775 + hypaxial region somite 30 (zebrafish) @@ -25905,8 +24556,7 @@ - hypaxial region somite 6 (zebrafish) - ZFA:0000776 + hypaxial region somite 6 (zebrafish) @@ -25925,8 +24575,7 @@ - hypaxial region somite 9 (zebrafish) - ZFA:0000777 + hypaxial region somite 9 (zebrafish) @@ -25945,8 +24594,7 @@ - lateral forebrain bundle telencephalon (zebrafish) - ZFA:0000779 + lateral forebrain bundle telencephalon (zebrafish) @@ -25965,8 +24613,7 @@ - diencephalon lateral wall (zebrafish) - ZFA:0000780 + diencephalon lateral wall (zebrafish) @@ -25985,8 +24632,7 @@ - rhombomere 1 lateral wall (zebrafish) - ZFA:0000781 + rhombomere 1 lateral wall (zebrafish) @@ -26005,8 +24651,7 @@ - rhombomere 4 lateral wall (zebrafish) - ZFA:0000782 + rhombomere 4 lateral wall (zebrafish) @@ -26025,8 +24670,7 @@ - rhombomere 7 lateral wall (zebrafish) - ZFA:0000783 + rhombomere 7 lateral wall (zebrafish) @@ -26045,8 +24689,7 @@ - telencephalon lateral wall (zebrafish) - ZFA:0000785 + telencephalon lateral wall (zebrafish) @@ -26065,8 +24708,7 @@ - medial migration pathway NC-derived mesenchyme (zebrafish) - ZFA:0000786 + medial migration pathway NC-derived mesenchyme (zebrafish) @@ -26085,8 +24727,7 @@ - mesenchyme derived from head neural crest (zebrafish) - ZFA:0000787 + mesenchyme derived from head neural crest (zebrafish) @@ -26105,8 +24746,7 @@ - mesenchyme dorsal fin (zebrafish) - ZFA:0000788 + mesenchyme dorsal fin (zebrafish) @@ -26125,8 +24765,7 @@ - pectoral appendage bud mesenchyme (zebrafish) - ZFA:0000789 + pectoral appendage bud mesenchyme (zebrafish) @@ -26145,8 +24784,7 @@ - myotome somite 11 (zebrafish) - ZFA:0000801 + myotome somite 11 (zebrafish) @@ -26165,8 +24803,7 @@ - myotome somite 15 (zebrafish) - ZFA:0000802 + myotome somite 15 (zebrafish) @@ -26185,8 +24822,7 @@ - myotome somite 18 (zebrafish) - ZFA:0000803 + myotome somite 18 (zebrafish) @@ -26205,8 +24841,7 @@ - myotome somite 20 (zebrafish) - ZFA:0000804 + myotome somite 20 (zebrafish) @@ -26225,8 +24860,7 @@ - myotome somite 23 (zebrafish) - ZFA:0000805 + myotome somite 23 (zebrafish) @@ -26245,8 +24879,7 @@ - myotome somite 26 (zebrafish) - ZFA:0000807 + myotome somite 26 (zebrafish) @@ -26265,8 +24898,7 @@ - myotome somite 29 (zebrafish) - ZFA:0000808 + myotome somite 29 (zebrafish) @@ -26285,8 +24917,7 @@ - myotome somite 4 (zebrafish) - ZFA:0000809 + myotome somite 4 (zebrafish) @@ -26305,8 +24936,7 @@ - myotome somite 7 (zebrafish) - ZFA:0000810 + myotome somite 7 (zebrafish) @@ -26325,8 +24955,7 @@ - diencephalon neural crest (zebrafish) - ZFA:0000811 + diencephalon neural crest (zebrafish) @@ -26345,8 +24974,7 @@ - telencephalon neural crest (zebrafish) - ZFA:0000812 + telencephalon neural crest (zebrafish) @@ -26365,8 +24993,7 @@ - infraorbital lateral line neuromast (zebrafish) - ZFA:0000813 + infraorbital lateral line neuromast (zebrafish) @@ -26385,8 +25012,7 @@ - opercular lateral line neuromast (zebrafish) - ZFA:0000814 + opercular lateral line neuromast (zebrafish) @@ -26405,8 +25031,7 @@ - nucleus of medial longitudinal fasciculus of medulla (zebrafish) - ZFA:0000815 + nucleus of medial longitudinal fasciculus of medulla (zebrafish) @@ -26425,8 +25050,7 @@ - oral epithelium (zebrafish) - ZFA:0000816 + oral epithelium (zebrafish) @@ -26445,8 +25069,7 @@ - vagal neural crest (zebrafish) - ZFA:0000818 + vagal neural crest (zebrafish) @@ -26465,8 +25088,7 @@ - presumptive neuron neural tube (zebrafish) - ZFA:0000820 + presumptive neuron neural tube (zebrafish) @@ -26485,8 +25107,7 @@ - rhombomere 2 (zebrafish) - ZFA:0000822 + rhombomere 2 (zebrafish) @@ -26505,8 +25126,7 @@ - rhombomere 5 (zebrafish) - ZFA:0000823 + rhombomere 5 (zebrafish) @@ -26525,8 +25145,7 @@ - rhombomere 2 roof plate (zebrafish) - ZFA:0000824 + rhombomere 2 roof plate (zebrafish) @@ -26545,8 +25164,7 @@ - rhombomere 6 roof plate (zebrafish) - ZFA:0000825 + rhombomere 6 roof plate (zebrafish) @@ -26565,8 +25183,7 @@ - central nucleus torus semicircularis (zebrafish) - ZFA:0000826 + central nucleus torus semicircularis (zebrafish) @@ -26585,8 +25202,7 @@ - rhombomere 5 roof plate (zebrafish) - ZFA:0000828 + rhombomere 5 roof plate (zebrafish) @@ -26605,8 +25221,7 @@ - sclerotome somite 11 (zebrafish) - ZFA:0000829 + sclerotome somite 11 (zebrafish) @@ -26625,8 +25240,7 @@ - sclerotome somite 14 (zebrafish) - ZFA:0000830 + sclerotome somite 14 (zebrafish) @@ -26645,8 +25259,7 @@ - sclerotome somite 17 (zebrafish) - ZFA:0000831 + sclerotome somite 17 (zebrafish) @@ -26665,8 +25278,7 @@ - sclerotome somite 2 (zebrafish) - ZFA:0000832 + sclerotome somite 2 (zebrafish) @@ -26685,8 +25297,7 @@ - sclerotome somite 22 (zebrafish) - ZFA:0000833 + sclerotome somite 22 (zebrafish) @@ -26705,8 +25316,7 @@ - sclerotome somite 25 (zebrafish) - ZFA:0000834 + sclerotome somite 25 (zebrafish) @@ -26725,8 +25335,7 @@ - sclerotome somite 28 (zebrafish) - ZFA:0000835 + sclerotome somite 28 (zebrafish) @@ -26745,8 +25354,7 @@ - sclerotome somite 30 (zebrafish) - ZFA:0000836 + sclerotome somite 30 (zebrafish) @@ -26765,8 +25373,7 @@ - sclerotome somite 6 (zebrafish) - ZFA:0000837 + sclerotome somite 6 (zebrafish) @@ -26785,8 +25392,7 @@ - sclerotome somite 9 (zebrafish) - ZFA:0000839 + sclerotome somite 9 (zebrafish) @@ -26805,8 +25411,7 @@ - somite 12 (zebrafish) - ZFA:0000851 + somite 12 (zebrafish) @@ -26825,8 +25430,7 @@ - somite 15 (zebrafish) - ZFA:0000852 + somite 15 (zebrafish) @@ -26845,8 +25449,7 @@ - somite 18 (zebrafish) - ZFA:0000853 + somite 18 (zebrafish) @@ -26865,8 +25468,7 @@ - somite 21 (zebrafish) - ZFA:0000854 + somite 21 (zebrafish) @@ -26885,8 +25487,7 @@ - somite 24 (zebrafish) - ZFA:0000855 + somite 24 (zebrafish) @@ -26905,8 +25506,7 @@ - somite 28 (zebrafish) - ZFA:0000856 + somite 28 (zebrafish) @@ -26925,8 +25525,7 @@ - somite 4 (zebrafish) - ZFA:0000857 + somite 4 (zebrafish) @@ -26945,8 +25544,7 @@ - somite 8 (zebrafish) - ZFA:0000858 + somite 8 (zebrafish) @@ -26965,8 +25563,7 @@ - specialized hemal arch and spine (zebrafish) - ZFA:0000859 + specialized hemal arch and spine (zebrafish) @@ -26985,8 +25582,7 @@ - inferior oblique extraocular muscle (zebrafish) - ZFA:0000861 + inferior oblique extraocular muscle (zebrafish) @@ -27005,8 +25601,7 @@ - caudal fin skeleton (zebrafish) - ZFA:0000862 + caudal fin skeleton (zebrafish) @@ -27025,8 +25620,7 @@ - dermatocranium (zebrafish) - ZFA:0000863 + dermatocranium (zebrafish) @@ -27045,8 +25639,7 @@ - epaxial region somite 1 (zebrafish) - ZFA:0000864 + epaxial region somite 1 (zebrafish) @@ -27065,8 +25658,7 @@ - epaxial region somite 12 (zebrafish) - ZFA:0000865 + epaxial region somite 12 (zebrafish) @@ -27085,8 +25677,7 @@ - epaxial region somite 15 (zebrafish) - ZFA:0000866 + epaxial region somite 15 (zebrafish) @@ -27105,8 +25696,7 @@ - epaxial region somite 18 (zebrafish) - ZFA:0000867 + epaxial region somite 18 (zebrafish) @@ -27125,8 +25715,7 @@ - epaxial region somite 20 (zebrafish) - ZFA:0000868 + epaxial region somite 20 (zebrafish) @@ -27145,8 +25734,7 @@ - epaxial region somite 23 (zebrafish) - ZFA:0000869 + epaxial region somite 23 (zebrafish) @@ -27165,8 +25753,7 @@ - epaxial region somite 26 (zebrafish) - ZFA:0000870 + epaxial region somite 26 (zebrafish) @@ -27185,8 +25772,7 @@ - floor plate of diencephalon (zebrafish) - ZFA:0000871 + floor plate of diencephalon (zebrafish) @@ -27205,8 +25791,7 @@ - epaxial region somite 29 (zebrafish) - ZFA:0000872 + epaxial region somite 29 (zebrafish) @@ -27225,8 +25810,7 @@ - epaxial region somite 4 (zebrafish) - ZFA:0000873 + epaxial region somite 4 (zebrafish) @@ -27245,8 +25829,7 @@ - epaxial region somite 7 (zebrafish) - ZFA:0000874 + epaxial region somite 7 (zebrafish) @@ -27265,8 +25848,7 @@ - facial neural crest (zebrafish) - ZFA:0000875 + facial neural crest (zebrafish) @@ -27285,8 +25867,7 @@ - rhombomere 1 floor plate (zebrafish) - ZFA:0000882 + rhombomere 1 floor plate (zebrafish) @@ -27305,8 +25886,7 @@ - floor plate neural rod (zebrafish) - ZFA:0000887 + floor plate neural rod (zebrafish) @@ -27325,8 +25905,7 @@ - rhombomere 3 floor plate (zebrafish) - ZFA:0000888 + rhombomere 3 floor plate (zebrafish) @@ -27345,8 +25924,7 @@ - rhombomere 6 floor plate (zebrafish) - ZFA:0000889 + rhombomere 6 floor plate (zebrafish) @@ -27365,8 +25943,7 @@ - floor plate spinal cord region (zebrafish) - ZFA:0000890 + floor plate spinal cord region (zebrafish) @@ -27385,8 +25962,7 @@ - hypaxial region somite 1 (zebrafish) - ZFA:0000891 + hypaxial region somite 1 (zebrafish) @@ -27405,8 +25981,7 @@ - hypaxial region somite 12 (zebrafish) - ZFA:0000892 + hypaxial region somite 12 (zebrafish) @@ -27425,8 +26000,7 @@ - rhombomere 4 floor plate (zebrafish) - ZFA:0000893 + rhombomere 4 floor plate (zebrafish) @@ -27445,8 +26019,7 @@ - hypaxial region somite 15 (zebrafish) - ZFA:0000894 + hypaxial region somite 15 (zebrafish) @@ -27465,8 +26038,7 @@ - hypaxial region somite 18 (zebrafish) - ZFA:0000895 + hypaxial region somite 18 (zebrafish) @@ -27485,8 +26057,7 @@ - hypaxial region somite 20 (zebrafish) - ZFA:0000896 + hypaxial region somite 20 (zebrafish) @@ -27505,8 +26076,7 @@ - hypaxial region somite 23 (zebrafish) - ZFA:0000897 + hypaxial region somite 23 (zebrafish) @@ -27525,8 +26095,7 @@ - hypaxial region somite 26 (zebrafish) - ZFA:0000898 + hypaxial region somite 26 (zebrafish) @@ -27545,8 +26114,7 @@ - hypaxial region somite 29 (zebrafish) - ZFA:0000899 + hypaxial region somite 29 (zebrafish) @@ -27565,8 +26133,7 @@ - hypaxial region somite 4 (zebrafish) - ZFA:0000900 + hypaxial region somite 4 (zebrafish) @@ -27585,8 +26152,7 @@ - hypaxial region somite 7 (zebrafish) - ZFA:0000901 + hypaxial region somite 7 (zebrafish) @@ -27605,8 +26171,7 @@ - hypural musculature (zebrafish) - ZFA:0000902 + hypural musculature (zebrafish) @@ -27625,8 +26190,7 @@ - interpeduncular nucleus (zebrafish) - ZFA:0000903 + interpeduncular nucleus (zebrafish) @@ -27645,8 +26209,7 @@ - rhombomere 7 floor plate (zebrafish) - ZFA:0000904 + rhombomere 7 floor plate (zebrafish) @@ -27665,8 +26228,7 @@ - lateral mesenchyme derived from mesoderm (zebrafish) - ZFA:0000905 + lateral mesenchyme derived from mesoderm (zebrafish) @@ -27685,8 +26247,7 @@ - midbrain lateral wall (zebrafish) - ZFA:0000906 + midbrain lateral wall (zebrafish) @@ -27705,8 +26266,7 @@ - rhombomere 2 lateral wall (zebrafish) - ZFA:0000907 + rhombomere 2 lateral wall (zebrafish) @@ -27725,8 +26285,7 @@ - rhombomere 5 lateral wall (zebrafish) - ZFA:0000908 + rhombomere 5 lateral wall (zebrafish) @@ -27745,8 +26304,7 @@ - rhombomere 8 lateral wall (zebrafish) - ZFA:0000909 + rhombomere 8 lateral wall (zebrafish) @@ -27765,8 +26323,7 @@ - medial forebrain bundle telencephalon (zebrafish) - ZFA:0000910 + medial forebrain bundle telencephalon (zebrafish) @@ -27785,8 +26342,7 @@ - mesenchyme median fin fold (zebrafish) - ZFA:0000912 + mesenchyme median fin fold (zebrafish) @@ -27805,8 +26361,7 @@ - molecular layer valvula cerebelli (zebrafish) - ZFA:0000913 + molecular layer valvula cerebelli (zebrafish) @@ -27825,8 +26380,7 @@ - floor plate of telencephalon (zebrafish) - ZFA:0000914 + floor plate of telencephalon (zebrafish) @@ -27845,8 +26399,7 @@ - myotome somite 1 (zebrafish) - ZFA:0000924 + myotome somite 1 (zebrafish) @@ -27865,8 +26418,7 @@ - hypaxial region somite 10 (zebrafish) - ZFA:0000925 + hypaxial region somite 10 (zebrafish) @@ -27885,8 +26437,7 @@ - myotome somite 12 (zebrafish) - ZFA:0000926 + myotome somite 12 (zebrafish) @@ -27905,8 +26456,7 @@ - myotome somite 16 (zebrafish) - ZFA:0000927 + myotome somite 16 (zebrafish) @@ -27925,8 +26475,7 @@ - myotome somite 19 (zebrafish) - ZFA:0000928 + myotome somite 19 (zebrafish) @@ -27945,8 +26494,7 @@ - myotome somite 21 (zebrafish) - ZFA:0000929 + myotome somite 21 (zebrafish) @@ -27965,8 +26513,7 @@ - myotome somite 24 (zebrafish) - ZFA:0000930 + myotome somite 24 (zebrafish) @@ -27985,8 +26532,7 @@ - myotome somite 27 (zebrafish) - ZFA:0000931 + myotome somite 27 (zebrafish) @@ -28005,8 +26551,7 @@ - myotome somite 3 (zebrafish) - ZFA:0000932 + myotome somite 3 (zebrafish) @@ -28025,8 +26570,7 @@ - myotome somite 5 (zebrafish) - ZFA:0000933 + myotome somite 5 (zebrafish) @@ -28045,8 +26589,7 @@ - myotome somite 8 (zebrafish) - ZFA:0000934 + myotome somite 8 (zebrafish) @@ -28065,8 +26608,7 @@ - mesencephalic neural crest (zebrafish) - ZFA:0000935 + mesencephalic neural crest (zebrafish) @@ -28085,8 +26627,7 @@ - dorsal fin distal radial bone (zebrafish) - ZFA:0000936 + dorsal fin distal radial bone (zebrafish) @@ -28105,8 +26646,7 @@ - hypaxial region somite 13 (zebrafish) - ZFA:0000937 + hypaxial region somite 13 (zebrafish) @@ -28125,8 +26665,7 @@ - central canal of spinal cord (zebrafish) - ZFA:0000938 + central canal of spinal cord (zebrafish) @@ -28145,8 +26684,7 @@ - middle lateral line neuromast (zebrafish) - ZFA:0000939 + middle lateral line neuromast (zebrafish) @@ -28165,8 +26703,7 @@ - posterior lateral line neuromast (zebrafish) - ZFA:0000940 + posterior lateral line neuromast (zebrafish) @@ -28185,8 +26722,7 @@ - nucleus of the medial longitudinal fasciculus synencephalon (zebrafish) - ZFA:0000941 + nucleus of the medial longitudinal fasciculus synencephalon (zebrafish) @@ -28205,8 +26741,7 @@ - pectoral fin skeleton (zebrafish) - ZFA:0000943 + pectoral fin skeleton (zebrafish) @@ -28225,8 +26760,7 @@ - posterior lateral line (zebrafish) - ZFA:0000944 + posterior lateral line (zebrafish) @@ -28245,8 +26779,7 @@ - hypaxial region somite 16 (zebrafish) - ZFA:0000946 + hypaxial region somite 16 (zebrafish) @@ -28265,8 +26798,7 @@ - dorsal fin proximal radial bone (zebrafish) - ZFA:0000947 + dorsal fin proximal radial bone (zebrafish) @@ -28285,8 +26817,7 @@ - rhombomere 3 (zebrafish) - ZFA:0000948 + rhombomere 3 (zebrafish) @@ -28305,8 +26836,7 @@ - rhombomere 7 (zebrafish) - ZFA:0000949 + rhombomere 7 (zebrafish) @@ -28325,8 +26855,7 @@ - rhombomere 3 roof plate (zebrafish) - ZFA:0000950 + rhombomere 3 roof plate (zebrafish) @@ -28345,8 +26874,7 @@ - rhombomere 7 roof plate (zebrafish) - ZFA:0000951 + rhombomere 7 roof plate (zebrafish) @@ -28365,8 +26893,7 @@ - sclerotome somite 1 (zebrafish) - ZFA:0000952 + sclerotome somite 1 (zebrafish) @@ -28385,8 +26912,7 @@ - sclerotome somite 12 (zebrafish) - ZFA:0000953 + sclerotome somite 12 (zebrafish) @@ -28405,8 +26931,7 @@ - sclerotome somite 15 (zebrafish) - ZFA:0000954 + sclerotome somite 15 (zebrafish) @@ -28425,8 +26950,7 @@ - sclerotome somite 18 (zebrafish) - ZFA:0000955 + sclerotome somite 18 (zebrafish) @@ -28445,8 +26969,7 @@ - sclerotome somite 20 (zebrafish) - ZFA:0000956 + sclerotome somite 20 (zebrafish) @@ -28465,8 +26988,7 @@ - hypaxial region somite 19 (zebrafish) - ZFA:0000957 + hypaxial region somite 19 (zebrafish) @@ -28485,8 +27007,7 @@ - sclerotome somite 23 (zebrafish) - ZFA:0000958 + sclerotome somite 23 (zebrafish) @@ -28505,8 +27026,7 @@ - sclerotome somite 26 (zebrafish) - ZFA:0000959 + sclerotome somite 26 (zebrafish) @@ -28525,8 +27045,7 @@ - sclerotome somite 29 (zebrafish) - ZFA:0000960 + sclerotome somite 29 (zebrafish) @@ -28545,8 +27064,7 @@ - sclerotome somite 4 (zebrafish) - ZFA:0000961 + sclerotome somite 4 (zebrafish) @@ -28565,8 +27083,7 @@ - sclerotome somite 7 (zebrafish) - ZFA:0000962 + sclerotome somite 7 (zebrafish) @@ -28585,8 +27102,7 @@ - hypaxial region somite 21 (zebrafish) - ZFA:0000968 + hypaxial region somite 21 (zebrafish) @@ -28605,8 +27121,7 @@ - somite 10 (zebrafish) - ZFA:0000974 + somite 10 (zebrafish) @@ -28625,8 +27140,7 @@ - somite 13 (zebrafish) - ZFA:0000975 + somite 13 (zebrafish) @@ -28645,8 +27159,7 @@ - somite 16 (zebrafish) - ZFA:0000976 + somite 16 (zebrafish) @@ -28665,8 +27178,7 @@ - somite 19 (zebrafish) - ZFA:0000977 + somite 19 (zebrafish) @@ -28685,8 +27197,7 @@ - somite 22 (zebrafish) - ZFA:0000978 + somite 22 (zebrafish) @@ -28705,8 +27216,7 @@ - hypaxial region somite 24 (zebrafish) - ZFA:0000979 + hypaxial region somite 24 (zebrafish) @@ -28725,8 +27235,7 @@ - somite 25 (zebrafish) - ZFA:0000980 + somite 25 (zebrafish) @@ -28745,8 +27254,7 @@ - somite 29 (zebrafish) - ZFA:0000981 + somite 29 (zebrafish) @@ -28765,8 +27273,7 @@ - somite 6 (zebrafish) - ZFA:0000982 + somite 6 (zebrafish) @@ -28785,8 +27292,7 @@ - somite 9 (zebrafish) - ZFA:0000983 + somite 9 (zebrafish) @@ -28805,8 +27311,7 @@ - superior reticular formation tegmentum (zebrafish) - ZFA:0000984 + superior reticular formation tegmentum (zebrafish) @@ -28825,8 +27330,7 @@ - ventral rhombencephalic commissure medulla oblongata (zebrafish) - ZFA:0000985 + ventral rhombencephalic commissure medulla oblongata (zebrafish) @@ -28845,8 +27349,7 @@ - hypaxial region somite 27 (zebrafish) - ZFA:0000986 + hypaxial region somite 27 (zebrafish) @@ -28865,8 +27368,7 @@ - hypaxial region somite 3 (zebrafish) - ZFA:0000987 + hypaxial region somite 3 (zebrafish) @@ -28885,8 +27387,7 @@ - hypaxial region somite 5 (zebrafish) - ZFA:0000988 + hypaxial region somite 5 (zebrafish) @@ -28905,8 +27406,7 @@ - hypaxial region somite 8 (zebrafish) - ZFA:0000989 + hypaxial region somite 8 (zebrafish) @@ -28925,8 +27425,7 @@ - intermediate mesenchyme (zebrafish) - ZFA:0000990 + intermediate mesenchyme (zebrafish) @@ -28945,8 +27444,7 @@ - epaxial region somite 10 (zebrafish) - ZFA:0000991 + epaxial region somite 10 (zebrafish) @@ -28965,8 +27463,7 @@ - lateral migration pathway NC-derived mesenchyme (zebrafish) - ZFA:0000992 + lateral migration pathway NC-derived mesenchyme (zebrafish) @@ -28985,8 +27482,7 @@ - lateral wall neural rod (zebrafish) - ZFA:0000993 + lateral wall neural rod (zebrafish) @@ -29005,8 +27501,7 @@ - rhombomere 3 lateral wall (zebrafish) - ZFA:0000994 + rhombomere 3 lateral wall (zebrafish) @@ -29025,8 +27520,7 @@ - rhombomere 6 lateral wall (zebrafish) - ZFA:0000995 + rhombomere 6 lateral wall (zebrafish) @@ -29045,8 +27539,7 @@ - spinal cord lateral wall (zebrafish) - ZFA:0000996 + spinal cord lateral wall (zebrafish) @@ -29065,8 +27558,7 @@ - medial funicular nucleus trigeminal nuclei (zebrafish) - ZFA:0000997 + medial funicular nucleus trigeminal nuclei (zebrafish) @@ -29085,8 +27577,7 @@ - head mesenchyme from mesoderm (zebrafish) - ZFA:0000998 + head mesenchyme from mesoderm (zebrafish) @@ -29105,8 +27596,7 @@ - mesenchyme derived from trunk neural crest (zebrafish) - ZFA:0000999 + mesenchyme derived from trunk neural crest (zebrafish) @@ -29125,8 +27615,7 @@ - mesenchyme pectoral fin (zebrafish) - ZFA:0001000 + mesenchyme pectoral fin (zebrafish) @@ -29145,8 +27634,7 @@ - epaxial region somite 13 (zebrafish) - ZFA:0001001 + epaxial region somite 13 (zebrafish) @@ -29165,8 +27653,7 @@ - epaxial region somite 16 (zebrafish) - ZFA:0001012 + epaxial region somite 16 (zebrafish) @@ -29185,8 +27672,7 @@ - myotome somite 10 (zebrafish) - ZFA:0001013 + myotome somite 10 (zebrafish) @@ -29205,8 +27691,7 @@ - myotome somite 13 (zebrafish) - ZFA:0001014 + myotome somite 13 (zebrafish) @@ -29225,8 +27710,7 @@ - myotome somite 17 (zebrafish) - ZFA:0001015 + myotome somite 17 (zebrafish) @@ -29245,8 +27729,7 @@ - myotome somite 2 (zebrafish) - ZFA:0001016 + myotome somite 2 (zebrafish) @@ -29265,8 +27748,7 @@ - myotome somite 22 (zebrafish) - ZFA:0001017 + myotome somite 22 (zebrafish) @@ -29285,8 +27767,7 @@ - myotome somite 25 (zebrafish) - ZFA:0001018 + myotome somite 25 (zebrafish) @@ -29305,8 +27786,7 @@ - myotome somite 28 (zebrafish) - ZFA:0001019 + myotome somite 28 (zebrafish) @@ -29325,8 +27805,7 @@ - myotome somite 30 (zebrafish) - ZFA:0001020 + myotome somite 30 (zebrafish) @@ -29345,8 +27824,7 @@ - myotome somite 6 (zebrafish) - ZFA:0001021 + myotome somite 6 (zebrafish) @@ -29365,8 +27843,7 @@ - myotome somite 9 (zebrafish) - ZFA:0001022 + myotome somite 9 (zebrafish) @@ -29385,8 +27862,7 @@ - epaxial region somite 19 (zebrafish) - ZFA:0001023 + epaxial region somite 19 (zebrafish) @@ -29405,8 +27881,7 @@ - trunk neural crest (zebrafish) - ZFA:0001024 + trunk neural crest (zebrafish) @@ -29425,8 +27900,7 @@ - occipital lateral line neuromast (zebrafish) - ZFA:0001025 + occipital lateral line neuromast (zebrafish) @@ -29445,8 +27919,7 @@ - supraorbital lateral line neuromast (zebrafish) - ZFA:0001026 + supraorbital lateral line neuromast (zebrafish) @@ -29465,8 +27938,7 @@ - oral cavity (zebrafish) - ZFA:0001027 + oral cavity (zebrafish) @@ -29485,8 +27957,7 @@ - hypurapophysis (zebrafish) - ZFA:0001028 + hypurapophysis (zebrafish) @@ -29505,8 +27976,7 @@ - inner limiting layer of retina (zebrafish) - ZFA:0001029 + inner limiting layer of retina (zebrafish) @@ -29525,8 +27995,7 @@ - epaxial region somite 21 (zebrafish) - ZFA:0001030 + epaxial region somite 21 (zebrafish) @@ -29545,8 +28014,7 @@ - rhombomere 1 (zebrafish) - ZFA:0001031 + rhombomere 1 (zebrafish) @@ -29565,8 +28033,7 @@ - rhombomere 4 (zebrafish) - ZFA:0001032 + rhombomere 4 (zebrafish) @@ -29585,8 +28052,7 @@ - rhombomere 1 roof plate (zebrafish) - ZFA:0001033 + rhombomere 1 roof plate (zebrafish) @@ -29605,8 +28071,7 @@ - rhombomere 4 roof plate (zebrafish) - ZFA:0001034 + rhombomere 4 roof plate (zebrafish) @@ -29625,8 +28090,7 @@ - rhombomere 8 roof plate (zebrafish) - ZFA:0001035 + rhombomere 8 roof plate (zebrafish) @@ -29645,8 +28109,7 @@ - sclerotome somite 10 (zebrafish) - ZFA:0001036 + sclerotome somite 10 (zebrafish) @@ -29665,8 +28128,7 @@ - sclerotome somite 13 (zebrafish) - ZFA:0001037 + sclerotome somite 13 (zebrafish) @@ -29685,8 +28147,7 @@ - sclerotome somite 16 (zebrafish) - ZFA:0001038 + sclerotome somite 16 (zebrafish) @@ -29705,8 +28166,7 @@ - sclerotome somite 19 (zebrafish) - ZFA:0001039 + sclerotome somite 19 (zebrafish) @@ -29725,8 +28185,7 @@ - epaxial region somite 24 (zebrafish) - ZFA:0001040 + epaxial region somite 24 (zebrafish) @@ -29745,8 +28204,7 @@ - sclerotome somite 21 (zebrafish) - ZFA:0001041 + sclerotome somite 21 (zebrafish) @@ -29765,8 +28223,7 @@ - sclerotome somite 24 (zebrafish) - ZFA:0001042 + sclerotome somite 24 (zebrafish) @@ -29785,8 +28242,7 @@ - sclerotome somite 27 (zebrafish) - ZFA:0001043 + sclerotome somite 27 (zebrafish) @@ -29805,8 +28261,7 @@ - sclerotome somite 3 (zebrafish) - ZFA:0001044 + sclerotome somite 3 (zebrafish) @@ -29825,8 +28280,7 @@ - sclerotome somite 5 (zebrafish) - ZFA:0001045 + sclerotome somite 5 (zebrafish) @@ -29845,8 +28299,7 @@ - sclerotome somite 8 (zebrafish) - ZFA:0001046 + sclerotome somite 8 (zebrafish) @@ -29865,8 +28318,7 @@ - caudal division of the internal carotid artery (zebrafish) - ZFA:0001051 + caudal division of the internal carotid artery (zebrafish) @@ -29885,8 +28337,7 @@ - primordial hindbrain channel (zebrafish) - ZFA:0001052 + primordial hindbrain channel (zebrafish) @@ -29905,8 +28356,7 @@ - future internal carotid artery (zebrafish) - ZFA:0001053 + future internal carotid artery (zebrafish) @@ -29925,8 +28375,7 @@ - lateral dorsal aorta (zebrafish) - ZFA:0001054 + lateral dorsal aorta (zebrafish) @@ -29945,8 +28394,7 @@ - pronephric duct opening (zebrafish) - ZFA:0001055 + pronephric duct opening (zebrafish) @@ -29965,8 +28413,7 @@ - myotome (zebrafish) - ZFA:0001056 + myotome (zebrafish) @@ -29985,8 +28432,7 @@ - intersomitic vein (zebrafish) - ZFA:0001057 + intersomitic vein (zebrafish) @@ -30005,8 +28451,7 @@ - caudal fin (zebrafish) - ZFA:0001058 + caudal fin (zebrafish) @@ -30025,8 +28470,7 @@ - cranial division of the internal carotid artery (zebrafish) - ZFA:0001059 + cranial division of the internal carotid artery (zebrafish) @@ -30045,8 +28489,7 @@ - basidorsal (zebrafish) - ZFA:0001060 + basidorsal (zebrafish) @@ -30065,8 +28508,7 @@ - intersomitic artery (zebrafish) - ZFA:0001061 + intersomitic artery (zebrafish) @@ -30085,8 +28527,7 @@ - presumptive mesencephalic artery (zebrafish) - ZFA:0001062 + presumptive mesencephalic artery (zebrafish) @@ -30105,8 +28546,7 @@ - posterior caudal vein (zebrafish) - ZFA:0001063 + posterior caudal vein (zebrafish) @@ -30125,8 +28565,7 @@ - rhombomere (zebrafish) - ZFA:0001064 + rhombomere (zebrafish) @@ -30145,8 +28584,7 @@ - neural arch (zebrafish) - ZFA:0001066 + neural arch (zebrafish) @@ -30165,8 +28603,7 @@ - anterior cerebral vein (zebrafish) - ZFA:0001067 + anterior cerebral vein (zebrafish) @@ -30185,8 +28622,7 @@ - mesencephalic artery (zebrafish) - ZFA:0001068 + mesencephalic artery (zebrafish) @@ -30205,8 +28641,7 @@ - ventral fin fold (zebrafish) - ZFA:0001069 + ventral fin fold (zebrafish) @@ -30225,8 +28660,7 @@ - presumptive pronephric mesoderm (zebrafish) - ZFA:0001070 + presumptive pronephric mesoderm (zebrafish) @@ -30245,8 +28679,7 @@ - presumptive neural retina (zebrafish) - ZFA:0001071 + presumptive neural retina (zebrafish) @@ -30265,8 +28698,7 @@ - thyroid follicle (zebrafish) - ZFA:0001072 + thyroid follicle (zebrafish) @@ -30285,8 +28717,7 @@ - axial vasculature (zebrafish) - ZFA:0001073 + axial vasculature (zebrafish) @@ -30305,8 +28736,7 @@ - taste bud (zebrafish) - ZFA:0001074 + taste bud (zebrafish) @@ -30325,8 +28755,7 @@ - ventricular system choroidal fissure (zebrafish) - ZFA:0001075 + ventricular system choroidal fissure (zebrafish) @@ -30345,8 +28774,7 @@ - intestinal bulb (zebrafish) - ZFA:0001076 + intestinal bulb (zebrafish) @@ -30365,8 +28793,7 @@ - thymus primordium (zebrafish) - ZFA:0001077 + thymus primordium (zebrafish) @@ -30385,8 +28812,7 @@ - thymus (zebrafish) - ZFA:0001078 + thymus (zebrafish) @@ -30405,8 +28831,7 @@ - blood vasculature (zebrafish) - ZFA:0001079 + blood vasculature (zebrafish) @@ -30425,8 +28850,7 @@ - sclerotome (zebrafish) - ZFA:0001080 + sclerotome (zebrafish) @@ -30445,8 +28869,7 @@ - thyroid primordium (zebrafish) - ZFA:0001081 + thyroid primordium (zebrafish) @@ -30465,8 +28888,7 @@ - chordo neural hinge (zebrafish) - ZFA:0001082 + chordo neural hinge (zebrafish) @@ -30485,8 +28907,7 @@ - ventricular zone (zebrafish) - ZFA:0001083 + ventricular zone (zebrafish) @@ -30505,8 +28926,7 @@ - epaxial myotome region (zebrafish) - ZFA:0001084 + epaxial myotome region (zebrafish) @@ -30525,8 +28945,7 @@ - hypaxial myotome region (zebrafish) - ZFA:0001085 + hypaxial myotome region (zebrafish) @@ -30545,8 +28964,7 @@ - myoseptum (zebrafish) - ZFA:0001089 + myoseptum (zebrafish) @@ -30565,8 +28983,7 @@ - multicellular organism (zebrafish) - ZFA:0001094 + multicellular organism (zebrafish) @@ -30585,8 +29002,7 @@ - immature macula (zebrafish) - ZFA:0001095 + immature macula (zebrafish) @@ -30605,8 +29021,7 @@ - immature anterior macula (zebrafish) - ZFA:0001096 + immature anterior macula (zebrafish) @@ -30625,8 +29040,7 @@ - immature posterior macula (zebrafish) - ZFA:0001097 + immature posterior macula (zebrafish) @@ -30645,8 +29059,7 @@ - bile duct (zebrafish) - ZFA:0001100 + bile duct (zebrafish) @@ -30665,8 +29078,7 @@ - gustatory system (zebrafish) - ZFA:0001101 + gustatory system (zebrafish) @@ -30685,8 +29097,7 @@ - early pharyngeal endoderm (zebrafish) - ZFA:0001104 + early pharyngeal endoderm (zebrafish) @@ -30705,8 +29116,7 @@ - embryonic structure (zebrafish) - ZFA:0001105 + embryonic structure (zebrafish) @@ -30725,8 +29135,7 @@ - pharyngeal pouch (zebrafish) - ZFA:0001106 + pharyngeal pouch (zebrafish) @@ -30745,8 +29154,7 @@ - pharyngeal gill precursor (zebrafish) - ZFA:0001107 + pharyngeal gill precursor (zebrafish) @@ -30765,8 +29173,7 @@ - anterior commissure (zebrafish) - ZFA:0001108 + anterior commissure (zebrafish) @@ -30785,8 +29192,7 @@ - ovarian follicle (zebrafish) - ZFA:0001110 + ovarian follicle (zebrafish) @@ -30805,8 +29211,7 @@ - zona pellucida (zebrafish) - ZFA:0001111 + zona pellucida (zebrafish) @@ -30825,8 +29230,7 @@ - granulosa cell layer (zebrafish) - ZFA:0001112 + granulosa cell layer (zebrafish) @@ -30845,8 +29249,7 @@ - theca cell layer (zebrafish) - ZFA:0001113 + theca cell layer (zebrafish) @@ -30865,8 +29268,7 @@ - head (zebrafish) - ZFA:0001114 + head (zebrafish) @@ -30885,8 +29287,7 @@ - trunk (zebrafish) - ZFA:0001115 + trunk (zebrafish) @@ -30905,8 +29306,7 @@ - presumptive structure (zebrafish) - ZFA:0001116 + presumptive structure (zebrafish) @@ -30925,8 +29325,7 @@ - post-anal tail (zebrafish) - ZFA:0001117 + post-anal tail (zebrafish) @@ -30945,8 +29344,7 @@ - urogenital papilla (zebrafish) - ZFA:0001118 + urogenital papilla (zebrafish) @@ -30965,8 +29363,7 @@ - dermis (zebrafish) - ZFA:0001119 + dermis (zebrafish) @@ -30985,8 +29382,7 @@ - neurectoderm (zebrafish) - ZFA:0001120 + neurectoderm (zebrafish) @@ -31005,8 +29401,7 @@ - presumptive shield (zebrafish) - ZFA:0001121 + presumptive shield (zebrafish) @@ -31025,8 +29420,7 @@ - germ layer (zebrafish) - ZFA:0001122 + germ layer (zebrafish) @@ -31045,8 +29439,7 @@ - median fin skeleton (zebrafish) - ZFA:0001123 + median fin skeleton (zebrafish) @@ -31065,8 +29458,7 @@ - dorsal fin skeleton (zebrafish) - ZFA:0001124 + dorsal fin skeleton (zebrafish) @@ -31085,8 +29477,7 @@ - organizer inducing center (zebrafish) - ZFA:0001125 + organizer inducing center (zebrafish) @@ -31105,8 +29496,7 @@ - noninvoluting endocytic marginal cell cluster (zebrafish) - ZFA:0001126 + noninvoluting endocytic marginal cell cluster (zebrafish) @@ -31125,8 +29515,7 @@ - visual system (zebrafish) - ZFA:0001127 + visual system (zebrafish) @@ -31145,8 +29534,7 @@ - pharyngeal pouch 1 (zebrafish) - ZFA:0001128 + pharyngeal pouch 1 (zebrafish) @@ -31165,8 +29553,7 @@ - pharyngeal pouches 2-6 (zebrafish) - ZFA:0001129 + pharyngeal pouches 2-6 (zebrafish) @@ -31185,8 +29572,7 @@ - pharyngeal pouch 2 (zebrafish) - ZFA:0001130 + pharyngeal pouch 2 (zebrafish) @@ -31205,8 +29591,7 @@ - pharyngeal pouch 3 (zebrafish) - ZFA:0001131 + pharyngeal pouch 3 (zebrafish) @@ -31225,8 +29610,7 @@ - pharyngeal pouch 6 (zebrafish) - ZFA:0001132 + pharyngeal pouch 6 (zebrafish) @@ -31245,8 +29629,7 @@ - pharyngeal pouch 5 (zebrafish) - ZFA:0001133 + pharyngeal pouch 5 (zebrafish) @@ -31265,8 +29648,7 @@ - pharyngeal pouch 4 (zebrafish) - ZFA:0001134 + pharyngeal pouch 4 (zebrafish) @@ -31285,8 +29667,7 @@ - neural tube (zebrafish) - ZFA:0001135 + neural tube (zebrafish) @@ -31305,8 +29686,7 @@ - hypodermis (zebrafish) - ZFA:0001136 + hypodermis (zebrafish) @@ -31325,8 +29705,7 @@ - ventral tooth row (zebrafish) - ZFA:0001137 + ventral tooth row (zebrafish) @@ -31345,8 +29724,7 @@ - vestibulo-auditory system (zebrafish) - ZFA:0001138 + vestibulo-auditory system (zebrafish) @@ -31365,8 +29743,7 @@ - mediodorsal tooth row (zebrafish) - ZFA:0001139 + mediodorsal tooth row (zebrafish) @@ -31385,8 +29762,7 @@ - dorsal tooth row (zebrafish) - ZFA:0001140 + dorsal tooth row (zebrafish) @@ -31405,8 +29781,7 @@ - tooth 1V (zebrafish) - ZFA:0001141 + tooth 1V (zebrafish) @@ -31425,8 +29800,7 @@ - tooth 5V (zebrafish) - ZFA:0001142 + tooth 5V (zebrafish) @@ -31445,8 +29819,7 @@ - tooth 4V (zebrafish) - ZFA:0001143 + tooth 4V (zebrafish) @@ -31465,8 +29838,7 @@ - tooth 2V (zebrafish) - ZFA:0001144 + tooth 2V (zebrafish) @@ -31485,8 +29857,7 @@ - tooth 3V (zebrafish) - ZFA:0001145 + tooth 3V (zebrafish) @@ -31505,8 +29876,7 @@ - tooth 1MD (zebrafish) - ZFA:0001146 + tooth 1MD (zebrafish) @@ -31525,8 +29895,7 @@ - tooth 2MD (zebrafish) - ZFA:0001147 + tooth 2MD (zebrafish) @@ -31545,8 +29914,7 @@ - tooth 1D (zebrafish) - ZFA:0001148 + tooth 1D (zebrafish) @@ -31565,8 +29933,7 @@ - olfactory system (zebrafish) - ZFA:0001149 + olfactory system (zebrafish) @@ -31585,8 +29952,7 @@ - tooth 2D (zebrafish) - ZFA:0001150 + tooth 2D (zebrafish) @@ -31605,8 +29971,7 @@ - tooth 4MD (zebrafish) - ZFA:0001151 + tooth 4MD (zebrafish) @@ -31625,8 +29990,7 @@ - tooth 3MD (zebrafish) - ZFA:0001152 + tooth 3MD (zebrafish) @@ -31645,8 +30009,7 @@ - tooth placode (zebrafish) - ZFA:0001153 + tooth placode (zebrafish) @@ -31665,8 +30028,7 @@ - anal fin musculature (zebrafish) - ZFA:0001154 + anal fin musculature (zebrafish) @@ -31685,8 +30047,7 @@ - enteric nervous system (zebrafish) - ZFA:0001155 + enteric nervous system (zebrafish) @@ -31705,8 +30066,7 @@ - posterior lateral line placode (zebrafish) - ZFA:0001156 + posterior lateral line placode (zebrafish) @@ -31725,8 +30085,7 @@ - posterior lateral line primordium (zebrafish) - ZFA:0001157 + posterior lateral line primordium (zebrafish) @@ -31745,8 +30104,7 @@ - endocrine system (zebrafish) - ZFA:0001158 + endocrine system (zebrafish) @@ -31765,8 +30123,7 @@ - immune system (zebrafish) - ZFA:0001159 + immune system (zebrafish) @@ -31785,8 +30142,7 @@ - pectoral fin (zebrafish) - ZFA:0001161 + pectoral fin (zebrafish) @@ -31805,8 +30161,7 @@ - anal fin (zebrafish) - ZFA:0001162 + anal fin (zebrafish) @@ -31825,8 +30180,7 @@ - supraneural 7 bone (zebrafish) - ZFA:0001163 + supraneural 7 bone (zebrafish) @@ -31845,8 +30199,7 @@ - supraneural 6 bone (zebrafish) - ZFA:0001164 + supraneural 6 bone (zebrafish) @@ -31865,8 +30218,7 @@ - supraneural 5 bone (zebrafish) - ZFA:0001165 + supraneural 5 bone (zebrafish) @@ -31885,8 +30237,7 @@ - supraneural 9 bone (zebrafish) - ZFA:0001166 + supraneural 9 bone (zebrafish) @@ -31905,8 +30256,7 @@ - vertebral bone 1 (zebrafish) - ZFA:0001167 + vertebral bone 1 (zebrafish) @@ -31925,8 +30275,7 @@ - vertebral bone 2 (zebrafish) - ZFA:0001168 + vertebral bone 2 (zebrafish) @@ -31945,8 +30294,7 @@ - vertebral element 3 (zebrafish) - ZFA:0001169 + vertebral element 3 (zebrafish) @@ -31965,8 +30313,7 @@ - vertebral element 4 (zebrafish) - ZFA:0001170 + vertebral element 4 (zebrafish) @@ -31985,8 +30332,7 @@ - os suspensorium (zebrafish) - ZFA:0001171 + os suspensorium (zebrafish) @@ -32005,8 +30351,7 @@ - roofing cartilage (zebrafish) - ZFA:0001172 + roofing cartilage (zebrafish) @@ -32025,8 +30370,7 @@ - dorsal fin (zebrafish) - ZFA:0001173 + dorsal fin (zebrafish) @@ -32045,8 +30389,7 @@ - pharyngeal epithelium (zebrafish) - ZFA:0001174 + pharyngeal epithelium (zebrafish) @@ -32065,8 +30408,7 @@ - blastodisc (zebrafish) - ZFA:0001175 + blastodisc (zebrafish) @@ -32085,8 +30427,7 @@ - blastoderm (zebrafish) - ZFA:0001176 + blastoderm (zebrafish) @@ -32105,8 +30446,7 @@ - roof plate spinal cord region (zebrafish) - ZFA:0001177 + roof plate spinal cord region (zebrafish) @@ -32125,8 +30465,7 @@ - non-neural ectoderm (zebrafish) - ZFA:0001178 + non-neural ectoderm (zebrafish) @@ -32145,8 +30484,7 @@ - epidermal superficial stratum (zebrafish) - ZFA:0001179 + epidermal superficial stratum (zebrafish) @@ -32165,8 +30503,7 @@ - stratum basale of epidermis (zebrafish) - ZFA:0001180 + stratum basale of epidermis (zebrafish) @@ -32185,8 +30522,7 @@ - epidermal intermediate stratum (zebrafish) - ZFA:0001181 + epidermal intermediate stratum (zebrafish) @@ -32205,8 +30541,7 @@ - stratum compactum of dermis (zebrafish) - ZFA:0001182 + stratum compactum of dermis (zebrafish) @@ -32225,8 +30560,7 @@ - dermal superficial region (zebrafish) - ZFA:0001183 + dermal superficial region (zebrafish) @@ -32245,8 +30579,7 @@ - pelvic fin (zebrafish) - ZFA:0001184 + pelvic fin (zebrafish) @@ -32265,8 +30598,7 @@ - periderm (zebrafish) - ZFA:0001185 + periderm (zebrafish) @@ -32285,8 +30617,7 @@ - collagenous dermal stroma (zebrafish) - ZFA:0001186 + collagenous dermal stroma (zebrafish) @@ -32305,8 +30636,7 @@ - presumptive midbrain hindbrain boundary (zebrafish) - ZFA:0001187 + presumptive midbrain hindbrain boundary (zebrafish) @@ -32325,8 +30655,7 @@ - Weberian apparatus (zebrafish) - ZFA:0001188 + Weberian apparatus (zebrafish) @@ -32345,8 +30674,7 @@ - vertebra (zebrafish) - ZFA:0001189 + vertebra (zebrafish) @@ -32365,8 +30693,7 @@ - Weberian vertebra (zebrafish) - ZFA:0001190 + Weberian vertebra (zebrafish) @@ -32385,8 +30712,7 @@ - supraneural 2 bone (zebrafish) - ZFA:0001191 + supraneural 2 bone (zebrafish) @@ -32405,8 +30731,7 @@ - supraneural 3 bone (zebrafish) - ZFA:0001192 + supraneural 3 bone (zebrafish) @@ -32425,8 +30750,7 @@ - supraneural 8 bone (zebrafish) - ZFA:0001193 + supraneural 8 bone (zebrafish) @@ -32445,8 +30769,7 @@ - cranial neural crest (zebrafish) - ZFA:0001194 + cranial neural crest (zebrafish) @@ -32465,8 +30788,7 @@ - pars distalis of adenohypophysis (zebrafish) - ZFA:0001195 + pars distalis of adenohypophysis (zebrafish) @@ -32485,8 +30807,7 @@ - pars intermedia of adenohypophysis (zebrafish) - ZFA:0001197 + pars intermedia of adenohypophysis (zebrafish) @@ -32505,8 +30826,7 @@ - adenohypophyseal placode (zebrafish) - ZFA:0001198 + adenohypophyseal placode (zebrafish) @@ -32525,8 +30845,7 @@ - pituitary stalk (zebrafish) - ZFA:0001199 + pituitary stalk (zebrafish) @@ -32545,8 +30864,7 @@ - corpuscles of Stannius (zebrafish) - ZFA:0001200 + corpuscles of Stannius (zebrafish) @@ -32565,8 +30883,7 @@ - ventral lateral mesoderm (zebrafish) - ZFA:0001201 + ventral lateral mesoderm (zebrafish) @@ -32585,8 +30902,7 @@ - optic cup (zebrafish) - ZFA:0001202 + optic cup (zebrafish) @@ -32605,8 +30921,7 @@ - axial mesoderm (zebrafish) - ZFA:0001204 + axial mesoderm (zebrafish) @@ -32625,8 +30940,7 @@ - Meckel's cartilage (zebrafish) - ZFA:0001205 + Meckel's cartilage (zebrafish) @@ -32645,8 +30959,7 @@ - intermediate mesoderm (zebrafish) - ZFA:0001206 + intermediate mesoderm (zebrafish) @@ -32665,8 +30978,7 @@ - presumptive rhombomere 1 (zebrafish) - ZFA:0001207 + presumptive rhombomere 1 (zebrafish) @@ -32685,8 +30997,7 @@ - presumptive rhombomere 2 (zebrafish) - ZFA:0001208 + presumptive rhombomere 2 (zebrafish) @@ -32705,8 +31016,7 @@ - presumptive rhombomere 7 (zebrafish) - ZFA:0001209 + presumptive rhombomere 7 (zebrafish) @@ -32725,8 +31035,7 @@ - presumptive rhombomere 6 (zebrafish) - ZFA:0001210 + presumptive rhombomere 6 (zebrafish) @@ -32745,8 +31054,7 @@ - presumptive rhombomere 5 (zebrafish) - ZFA:0001211 + presumptive rhombomere 5 (zebrafish) @@ -32765,8 +31073,7 @@ - presumptive rhombomere 4 (zebrafish) - ZFA:0001212 + presumptive rhombomere 4 (zebrafish) @@ -32785,8 +31092,7 @@ - presumptive rhombomere 3 (zebrafish) - ZFA:0001213 + presumptive rhombomere 3 (zebrafish) @@ -32805,8 +31111,7 @@ - presumptive rhombomere 8 (zebrafish) - ZFA:0001214 + presumptive rhombomere 8 (zebrafish) @@ -32825,8 +31130,7 @@ - dorsal plus ventral thalamus (zebrafish) - ZFA:0001215 + dorsal plus ventral thalamus (zebrafish) @@ -32845,8 +31149,7 @@ - splanchnocranium (zebrafish) - ZFA:0001216 + splanchnocranium (zebrafish) @@ -32865,8 +31168,7 @@ - presumptive hypochord (zebrafish) - ZFA:0001217 + presumptive hypochord (zebrafish) @@ -32885,8 +31187,7 @@ - presumptive floor plate (zebrafish) - ZFA:0001218 + presumptive floor plate (zebrafish) @@ -32905,8 +31206,7 @@ - basibranchial copula (zebrafish) - ZFA:0001220 + basibranchial copula (zebrafish) @@ -32925,8 +31225,7 @@ - anterior copula (zebrafish) - ZFA:0001221 + anterior copula (zebrafish) @@ -32945,8 +31244,7 @@ - posterior copula (zebrafish) - ZFA:0001222 + posterior copula (zebrafish) @@ -32965,8 +31263,7 @@ - basibranchial 1 bone (zebrafish) - ZFA:0001223 + basibranchial 1 bone (zebrafish) @@ -32985,8 +31282,7 @@ - basibranchial 2 bone (zebrafish) - ZFA:0001224 + basibranchial 2 bone (zebrafish) @@ -33005,8 +31301,7 @@ - basibranchial 3 bone (zebrafish) - ZFA:0001225 + basibranchial 3 bone (zebrafish) @@ -33025,8 +31320,7 @@ - basibranchial 4 bone (zebrafish) - ZFA:0001226 + basibranchial 4 bone (zebrafish) @@ -33045,8 +31339,7 @@ - jaw skeleton (zebrafish) - ZFA:0001227 + jaw skeleton (zebrafish) @@ -33065,8 +31358,7 @@ - pharyngeal arch 3 skeleton (zebrafish) - ZFA:0001228 + pharyngeal arch 3 skeleton (zebrafish) @@ -33085,8 +31377,7 @@ - pharyngeal arch 7 skeleton (zebrafish) - ZFA:0001229 + pharyngeal arch 7 skeleton (zebrafish) @@ -33105,8 +31396,7 @@ - pharyngeal arch 6 skeleton (zebrafish) - ZFA:0001230 + pharyngeal arch 6 skeleton (zebrafish) @@ -33125,8 +31415,7 @@ - pharyngeal arch 4 skeleton (zebrafish) - ZFA:0001231 + pharyngeal arch 4 skeleton (zebrafish) @@ -33145,8 +31434,7 @@ - pharyngeal arch 5 skeleton (zebrafish) - ZFA:0001232 + pharyngeal arch 5 skeleton (zebrafish) @@ -33165,8 +31453,7 @@ - hypobranchial 1 bone (zebrafish) - ZFA:0001233 + hypobranchial 1 bone (zebrafish) @@ -33185,8 +31472,7 @@ - hypobranchial 4 bone (zebrafish) - ZFA:0001234 + hypobranchial 4 bone (zebrafish) @@ -33205,8 +31491,7 @@ - hypobranchial 3 bone (zebrafish) - ZFA:0001235 + hypobranchial 3 bone (zebrafish) @@ -33225,8 +31510,7 @@ - hypobranchial 2 bone (zebrafish) - ZFA:0001236 + hypobranchial 2 bone (zebrafish) @@ -33245,8 +31529,7 @@ - ceratobranchial 1 bone (zebrafish) - ZFA:0001237 + ceratobranchial 1 bone (zebrafish) @@ -33265,8 +31548,7 @@ - iris (zebrafish) - ZFA:0001238 + iris (zebrafish) @@ -33285,8 +31567,7 @@ - ceratobranchial 5 bone (zebrafish) - ZFA:0001239 + ceratobranchial 5 bone (zebrafish) @@ -33305,8 +31586,7 @@ - ceratobranchial 4 bone (zebrafish) - ZFA:0001240 + ceratobranchial 4 bone (zebrafish) @@ -33325,8 +31605,7 @@ - ceratobranchial 3 bone (zebrafish) - ZFA:0001241 + ceratobranchial 3 bone (zebrafish) @@ -33345,8 +31624,7 @@ - ceratobranchial 2 bone (zebrafish) - ZFA:0001242 + ceratobranchial 2 bone (zebrafish) @@ -33365,8 +31643,7 @@ - epibranchial 1 bone (zebrafish) - ZFA:0001243 + epibranchial 1 bone (zebrafish) @@ -33385,8 +31662,7 @@ - epibranchial 5 cartilage (zebrafish) - ZFA:0001244 + epibranchial 5 cartilage (zebrafish) @@ -33405,8 +31681,7 @@ - epibranchial 4 bone (zebrafish) - ZFA:0001245 + epibranchial 4 bone (zebrafish) @@ -33425,8 +31700,7 @@ - epibranchial 2 bone (zebrafish) - ZFA:0001246 + epibranchial 2 bone (zebrafish) @@ -33445,8 +31719,7 @@ - epibranchial 3 bone (zebrafish) - ZFA:0001247 + epibranchial 3 bone (zebrafish) @@ -33465,8 +31738,7 @@ - exocrine pancreas (zebrafish) - ZFA:0001249 + exocrine pancreas (zebrafish) @@ -33485,8 +31757,7 @@ - pharyngobranchial 2 bone (zebrafish) - ZFA:0001250 + pharyngobranchial 2 bone (zebrafish) @@ -33505,8 +31776,7 @@ - pharyngobranchial 4 cartilage (zebrafish) - ZFA:0001251 + pharyngobranchial 4 cartilage (zebrafish) @@ -33525,8 +31795,7 @@ - pharyngobranchial 3 bone (zebrafish) - ZFA:0001252 + pharyngobranchial 3 bone (zebrafish) @@ -33545,8 +31814,7 @@ - lateral floor plate (zebrafish) - ZFA:0001256 + lateral floor plate (zebrafish) @@ -33565,8 +31833,7 @@ - medial floor plate (zebrafish) - ZFA:0001257 + medial floor plate (zebrafish) @@ -33585,28 +31852,7 @@ - rhombomere floor plate (zebrafish) - ZFA:0001258 - - - - - - - - - - - - - - - - - - - early prosencephalic vesicle (zebrafish) - ZFA:0001259 + rhombomere floor plate (zebrafish) @@ -33625,8 +31871,7 @@ - endocrine pancreas (zebrafish) - ZFA:0001260 + endocrine pancreas (zebrafish) @@ -33645,8 +31890,7 @@ - ventricular system of central nervous system (zebrafish) - ZFA:0001261 + ventricular system of central nervous system (zebrafish) @@ -33665,8 +31909,7 @@ - gonad primordium (zebrafish) - ZFA:0001262 + gonad primordium (zebrafish) @@ -33685,8 +31928,7 @@ - ovarian follicle stage I (zebrafish) - ZFA:0001263 + ovarian follicle stage I (zebrafish) @@ -33705,8 +31947,7 @@ - mature ovarian follicle (zebrafish) - ZFA:0001264 + mature ovarian follicle (zebrafish) @@ -33725,8 +31966,7 @@ - ovarian follicle stage II (zebrafish) - ZFA:0001265 + ovarian follicle stage II (zebrafish) @@ -33745,8 +31985,7 @@ - ovarian follicle stage III (zebrafish) - ZFA:0001266 + ovarian follicle stage III (zebrafish) @@ -33765,8 +32004,7 @@ - vasculature of head (zebrafish) - ZFA:0001267 + vasculature of head (zebrafish) @@ -33785,8 +32023,7 @@ - male genital duct (zebrafish) - ZFA:0001268 + male genital duct (zebrafish) @@ -33805,8 +32042,7 @@ - regenerating fin/limb (zebrafish) - ZFA:0001269 + regenerating fin/limb (zebrafish) @@ -33825,8 +32061,7 @@ - blastema of regenerating fin/limb (zebrafish) - ZFA:0001270 + blastema of regenerating fin/limb (zebrafish) @@ -33845,8 +32080,7 @@ - neurohypophysis (zebrafish) - ZFA:0001271 + neurohypophysis (zebrafish) @@ -33865,8 +32099,7 @@ - palatoquadrate arch (zebrafish) - ZFA:0001272 + palatoquadrate arch (zebrafish) @@ -33885,8 +32118,7 @@ - skeleton of lower jaw (zebrafish) - ZFA:0001273 + skeleton of lower jaw (zebrafish) @@ -33905,8 +32137,7 @@ - coronomeckelian (zebrafish) - ZFA:0001274 + coronomeckelian (zebrafish) @@ -33925,8 +32156,7 @@ - hyoid arch skeleton (zebrafish) - ZFA:0001276 + hyoid arch skeleton (zebrafish) @@ -33945,8 +32175,7 @@ - anterior chamber swim bladder (zebrafish) - ZFA:0001277 + anterior chamber swim bladder (zebrafish) @@ -33965,8 +32194,7 @@ - posterior chamber swim bladder (zebrafish) - ZFA:0001278 + posterior chamber swim bladder (zebrafish) @@ -33985,8 +32213,7 @@ - branchiostegal ray 1 (zebrafish) - ZFA:0001279 + branchiostegal ray 1 (zebrafish) @@ -34005,8 +32232,7 @@ - branchiostegal ray 3 (zebrafish) - ZFA:0001280 + branchiostegal ray 3 (zebrafish) @@ -34025,8 +32251,7 @@ - branchiostegal ray 2 (zebrafish) - ZFA:0001281 + branchiostegal ray 2 (zebrafish) @@ -34045,8 +32270,7 @@ - adenohypophysis (zebrafish) - ZFA:0001282 + adenohypophysis (zebrafish) @@ -34065,8 +32289,7 @@ - pupil (zebrafish) - ZFA:0001283 + pupil (zebrafish) @@ -34085,28 +32308,7 @@ - optic fissure (zebrafish) - ZFA:0001284 - - - - - - - - - - - - - - - - - - - intersomitic vessel (zebrafish) - ZFA:0001285 + optic fissure (zebrafish) @@ -34125,8 +32327,7 @@ - caudal vein plexus (zebrafish) - ZFA:0001286 + caudal vein plexus (zebrafish) @@ -34145,8 +32346,7 @@ - nephron tubule (zebrafish) - ZFA:0001287 + nephron tubule (zebrafish) @@ -34165,8 +32365,7 @@ - renal glomerulus (zebrafish) - ZFA:0001288 + renal glomerulus (zebrafish) @@ -34185,8 +32384,7 @@ - ciliary marginal zone (zebrafish) - ZFA:0001289 + ciliary marginal zone (zebrafish) @@ -34205,8 +32403,7 @@ - stomodeum (zebrafish) - ZFA:0001290 + stomodeum (zebrafish) @@ -34225,8 +32422,7 @@ - geniculate ganglion (zebrafish) - ZFA:0001291 + geniculate ganglion (zebrafish) @@ -34245,8 +32441,7 @@ - pineal gland stalk (zebrafish) - ZFA:0001292 + pineal gland stalk (zebrafish) @@ -34265,8 +32460,7 @@ - posterior kidney (zebrafish) - ZFA:0001293 + posterior kidney (zebrafish) @@ -34285,8 +32479,7 @@ - epibranchial placode (zebrafish) - ZFA:0001294 + epibranchial placode (zebrafish) @@ -34305,8 +32498,7 @@ - geniculate placode (zebrafish) - ZFA:0001295 + geniculate placode (zebrafish) @@ -34325,8 +32517,7 @@ - petrosal placode (zebrafish) - ZFA:0001296 + petrosal placode (zebrafish) @@ -34345,8 +32536,7 @@ - vagal placode 1 (zebrafish) - ZFA:0001297 + vagal placode 1 (zebrafish) @@ -34365,8 +32555,7 @@ - vagal placode 2 (zebrafish) - ZFA:0001298 + vagal placode 2 (zebrafish) @@ -34385,8 +32574,7 @@ - vagal placode 3 (zebrafish) - ZFA:0001299 + vagal placode 3 (zebrafish) @@ -34405,8 +32593,7 @@ - vagal placode 4 (zebrafish) - ZFA:0001300 + vagal placode 4 (zebrafish) @@ -34425,8 +32612,7 @@ - glossopharyngeal ganglion (zebrafish) - ZFA:0001301 + glossopharyngeal ganglion (zebrafish) @@ -34445,8 +32631,7 @@ - vagal ganglion 1 (zebrafish) - ZFA:0001302 + vagal ganglion 1 (zebrafish) @@ -34465,8 +32650,7 @@ - vagal ganglion 2 (zebrafish) - ZFA:0001303 + vagal ganglion 2 (zebrafish) @@ -34485,8 +32669,7 @@ - vagal ganglion 3 (zebrafish) - ZFA:0001304 + vagal ganglion 3 (zebrafish) @@ -34505,8 +32688,7 @@ - vagal ganglion 4 (zebrafish) - ZFA:0001305 + vagal ganglion 4 (zebrafish) @@ -34525,8 +32707,7 @@ - pharyngeal arch (zebrafish) - ZFA:0001306 + pharyngeal arch (zebrafish) @@ -34545,8 +32726,7 @@ - musculature of pharynx (zebrafish) - ZFA:0001307 + musculature of pharynx (zebrafish) @@ -34565,8 +32745,7 @@ - organism subdivision (zebrafish) - ZFA:0001308 + organism subdivision (zebrafish) @@ -34585,8 +32764,7 @@ - neurogenic placode (zebrafish) - ZFA:0001309 + neurogenic placode (zebrafish) @@ -34605,8 +32783,7 @@ - dorsolateral placode (zebrafish) - ZFA:0001310 + dorsolateral placode (zebrafish) @@ -34625,8 +32802,7 @@ - rhombomere roof plate (zebrafish) - ZFA:0001311 + rhombomere roof plate (zebrafish) @@ -34645,8 +32821,7 @@ - dorsal anterior lateral line ganglion (zebrafish) - ZFA:0001312 + dorsal anterior lateral line ganglion (zebrafish) @@ -34665,8 +32840,7 @@ - ventral anterior lateral line ganglion (zebrafish) - ZFA:0001313 + ventral anterior lateral line ganglion (zebrafish) @@ -34685,8 +32859,7 @@ - posterior lateral line ganglion (zebrafish) - ZFA:0001314 + posterior lateral line ganglion (zebrafish) @@ -34705,8 +32878,7 @@ - atrioventricular canal (zebrafish) - ZFA:0001315 + atrioventricular canal (zebrafish) @@ -34725,8 +32897,7 @@ - anterior lateral line placode (zebrafish) - ZFA:0001316 + anterior lateral line placode (zebrafish) @@ -34745,8 +32916,7 @@ - endocardial cushion (zebrafish) - ZFA:0001317 + endocardial cushion (zebrafish) @@ -34765,8 +32935,7 @@ - cardiac jelly (zebrafish) - ZFA:0001318 + cardiac jelly (zebrafish) @@ -34785,8 +32954,7 @@ - myocardium (zebrafish) - ZFA:0001319 + myocardium (zebrafish) @@ -34805,8 +32973,7 @@ - endocardium (zebrafish) - ZFA:0001320 + endocardium (zebrafish) @@ -34825,8 +32992,7 @@ - neurocranial trabecula (zebrafish) - ZFA:0001321 + neurocranial trabecula (zebrafish) @@ -34845,8 +33011,7 @@ - small intestine (zebrafish) - ZFA:0001323 + small intestine (zebrafish) @@ -34865,8 +33030,7 @@ - enteric musculature (zebrafish) - ZFA:0001324 + enteric musculature (zebrafish) @@ -34885,8 +33049,7 @@ - prezygapophysis (zebrafish) - ZFA:0001325 + prezygapophysis (zebrafish) @@ -34905,8 +33068,7 @@ - epithelium of lens (zebrafish) - ZFA:0001326 + epithelium of lens (zebrafish) @@ -34925,8 +33087,7 @@ - abdomen musculature (zebrafish) - ZFA:0001327 + abdomen musculature (zebrafish) @@ -34945,8 +33106,7 @@ - neuromere (zebrafish) - ZFA:0001328 + neuromere (zebrafish) @@ -34965,8 +33125,7 @@ - inner plexiform layer of retina (zebrafish) - ZFA:0001329 + inner plexiform layer of retina (zebrafish) @@ -34985,8 +33144,7 @@ - outer plexiform layer of retina (zebrafish) - ZFA:0001330 + outer plexiform layer of retina (zebrafish) @@ -35005,8 +33163,7 @@ - outer limiting layer of retina (zebrafish) - ZFA:0001331 + outer limiting layer of retina (zebrafish) @@ -35025,8 +33182,7 @@ - spinal neuromere (zebrafish) - ZFA:0001332 + spinal neuromere (zebrafish) @@ -35045,8 +33201,7 @@ - presumptive enteric nervous system (zebrafish) - ZFA:0001334 + presumptive enteric nervous system (zebrafish) @@ -35065,8 +33220,7 @@ - supradorsal (zebrafish) - ZFA:0001335 + supradorsal (zebrafish) @@ -35085,8 +33239,7 @@ - neural spine (zebrafish) - ZFA:0001336 + neural spine (zebrafish) @@ -35105,8 +33258,7 @@ - intestine (zebrafish) - ZFA:0001338 + intestine (zebrafish) @@ -35125,8 +33277,7 @@ - nucleus of the tract of the postoptic commissure (zebrafish) - ZFA:0001340 + nucleus of the tract of the postoptic commissure (zebrafish) @@ -35145,8 +33296,7 @@ - intervening zone (zebrafish) - ZFA:0001341 + intervening zone (zebrafish) @@ -35165,8 +33315,7 @@ - presumptive intervening zone (zebrafish) - ZFA:0001342 + presumptive intervening zone (zebrafish) @@ -35185,8 +33334,7 @@ - telencephalon diencephalon boundary (zebrafish) - ZFA:0001343 + telencephalon diencephalon boundary (zebrafish) @@ -35205,8 +33353,7 @@ - zona limitans intrathalamica (zebrafish) - ZFA:0001344 + zona limitans intrathalamica (zebrafish) @@ -35225,8 +33372,7 @@ - interrenal gland (zebrafish) - ZFA:0001345 + interrenal gland (zebrafish) @@ -35245,8 +33391,7 @@ - interrenal primordium (zebrafish) - ZFA:0001346 + interrenal primordium (zebrafish) @@ -35265,8 +33410,7 @@ - stratum fibrosum et griseum superficiale (zebrafish) - ZFA:0001347 + stratum fibrosum et griseum superficiale (zebrafish) @@ -35285,8 +33429,7 @@ - stratum marginale (zebrafish) - ZFA:0001348 + stratum marginale (zebrafish) @@ -35305,8 +33448,7 @@ - stratum opticum (zebrafish) - ZFA:0001349 + stratum opticum (zebrafish) @@ -35325,8 +33467,7 @@ - middle gray layer of superior colliculus (zebrafish) - ZFA:0001350 + middle gray layer of superior colliculus (zebrafish) @@ -35345,8 +33486,7 @@ - middle white layer of superior colliculus (zebrafish) - ZFA:0001351 + middle white layer of superior colliculus (zebrafish) @@ -35365,8 +33505,7 @@ - stratum periventriculare (zebrafish) - ZFA:0001352 + stratum periventriculare (zebrafish) @@ -35385,8 +33524,7 @@ - meninx (zebrafish) - ZFA:0001355 + meninx (zebrafish) @@ -35405,8 +33543,7 @@ - terminal nerve (zebrafish) - ZFA:0001356 + terminal nerve (zebrafish) @@ -35425,8 +33562,7 @@ - alar plate midbrain (zebrafish) - ZFA:0001357 + alar plate midbrain (zebrafish) @@ -35445,48 +33581,7 @@ - roof plate of diencephalon (zebrafish) - ZFA:0001358 - - - - - - - - - - - - - - - - - - - pineal complex (zebrafish) - ZFA:0001359 - - - - - - - - - - - - - - - - - - - parapineal organ (zebrafish) - ZFA:0001360 + roof plate of diencephalon (zebrafish) @@ -35505,8 +33600,7 @@ - basiventral (zebrafish) - ZFA:0001361 + basiventral (zebrafish) @@ -35525,8 +33619,7 @@ - parapophysis (zebrafish) - ZFA:0001362 + parapophysis (zebrafish) @@ -35545,8 +33638,7 @@ - neural complex of Weberian apparatus (zebrafish) - ZFA:0001363 + neural complex of Weberian apparatus (zebrafish) @@ -35565,8 +33657,7 @@ - hemal spine (zebrafish) - ZFA:0001364 + hemal spine (zebrafish) @@ -35585,8 +33676,7 @@ - motor nucleus of trigeminal nerve (zebrafish) - ZFA:0001365 + motor nucleus of trigeminal nerve (zebrafish) @@ -35605,8 +33695,7 @@ - tract of the postoptic commissure (zebrafish) - ZFA:0001366 + tract of the postoptic commissure (zebrafish) @@ -35625,8 +33714,7 @@ - forebrain-midbrain boundary (zebrafish) - ZFA:0001367 + forebrain-midbrain boundary (zebrafish) @@ -35645,8 +33733,7 @@ - presumptive forebrain midbrain boundary (zebrafish) - ZFA:0001368 + presumptive forebrain midbrain boundary (zebrafish) @@ -35665,8 +33752,7 @@ - ventral pancreatic bud (zebrafish) - ZFA:0001369 + ventral pancreatic bud (zebrafish) @@ -35685,8 +33771,7 @@ - dorsal pancreatic bud (zebrafish) - ZFA:0001370 + dorsal pancreatic bud (zebrafish) @@ -35705,8 +33790,7 @@ - pancreatic system (zebrafish) - ZFA:0001371 + pancreatic system (zebrafish) @@ -35725,8 +33809,7 @@ - pancreatic duct (zebrafish) - ZFA:0001372 + pancreatic duct (zebrafish) @@ -35745,8 +33828,7 @@ - myocardium of atrium (zebrafish) - ZFA:0001374 + myocardium of atrium (zebrafish) @@ -35765,8 +33847,7 @@ - ventriculo bulbo valve (zebrafish) - ZFA:0001375 + ventriculo bulbo valve (zebrafish) @@ -35785,8 +33866,7 @@ - presumptive ectoderm (zebrafish) - ZFA:0001376 + presumptive ectoderm (zebrafish) @@ -35805,8 +33885,7 @@ - presumptive mesoderm (zebrafish) - ZFA:0001377 + presumptive mesoderm (zebrafish) @@ -35825,8 +33904,7 @@ - axial hypoblast (zebrafish) - ZFA:0001378 + axial hypoblast (zebrafish) @@ -35845,8 +33923,7 @@ - pharyngeal ectoderm (zebrafish) - ZFA:0001379 + pharyngeal ectoderm (zebrafish) @@ -35865,8 +33942,7 @@ - hypohyal bone (zebrafish) - ZFA:0001381 + hypohyal bone (zebrafish) @@ -35885,8 +33961,7 @@ - epibranchial bone uncinate process (zebrafish) - ZFA:0001382 + epibranchial bone uncinate process (zebrafish) @@ -35905,8 +33980,7 @@ - paired fin bud (zebrafish) - ZFA:0001383 + paired fin bud (zebrafish) @@ -35925,8 +33999,7 @@ - pelvic appendage bud (zebrafish) - ZFA:0001384 + pelvic appendage bud (zebrafish) @@ -35945,8 +34018,7 @@ - pelvic appendage apical ectodermal ridge (zebrafish) - ZFA:0001385 + pelvic appendage apical ectodermal ridge (zebrafish) @@ -35965,8 +34037,7 @@ - pelvic appendage bud mesenchyme (zebrafish) - ZFA:0001386 + pelvic appendage bud mesenchyme (zebrafish) @@ -35985,8 +34056,7 @@ - pelvic fin skeleton (zebrafish) - ZFA:0001387 + pelvic fin skeleton (zebrafish) @@ -36005,8 +34075,7 @@ - epithelial mesenchymal boundary of regenerating fin/limb (zebrafish) - ZFA:0001388 + epithelial mesenchymal boundary of regenerating fin/limb (zebrafish) @@ -36025,8 +34094,7 @@ - regeneration epithelium of fin/limb (zebrafish) - ZFA:0001389 + regeneration epithelium of fin/limb (zebrafish) @@ -36045,8 +34113,7 @@ - pancreatic epithelial bud (zebrafish) - ZFA:0001390 + pancreatic epithelial bud (zebrafish) @@ -36065,8 +34132,7 @@ - anterior lateral line ganglion (zebrafish) - ZFA:0001391 + anterior lateral line ganglion (zebrafish) @@ -36085,8 +34151,7 @@ - parapophysis 1 (zebrafish) - ZFA:0001392 + parapophysis 1 (zebrafish) @@ -36105,8 +34170,7 @@ - parapophysis 2 (zebrafish) - ZFA:0001393 + parapophysis 2 (zebrafish) @@ -36125,8 +34189,7 @@ - neural arch 3 (zebrafish) - ZFA:0001394 + neural arch 3 (zebrafish) @@ -36145,8 +34208,7 @@ - neural arch 4 (zebrafish) - ZFA:0001395 + neural arch 4 (zebrafish) @@ -36165,8 +34227,7 @@ - parapophysis + rib of vertebra 4 (zebrafish) - ZFA:0001396 + parapophysis + rib of vertebra 4 (zebrafish) @@ -36185,8 +34246,7 @@ - post-Weberian supraneural (zebrafish) - ZFA:0001397 + post-Weberian supraneural (zebrafish) @@ -36205,8 +34265,7 @@ - palatoquadrate cartilage (zebrafish) - ZFA:0001399 + palatoquadrate cartilage (zebrafish) @@ -36225,8 +34284,7 @@ - ceratohyal cartilage (zebrafish) - ZFA:0001400 + ceratohyal cartilage (zebrafish) @@ -36245,8 +34303,7 @@ - dorsal hyoid arch skeleton (zebrafish) - ZFA:0001401 + dorsal hyoid arch skeleton (zebrafish) @@ -36265,8 +34322,7 @@ - ventral hyoid arch skeleton (zebrafish) - ZFA:0001402 + ventral hyoid arch skeleton (zebrafish) @@ -36285,8 +34341,7 @@ - supraethmoid (zebrafish) - ZFA:0001403 + supraethmoid (zebrafish) @@ -36305,8 +34360,7 @@ - preethmoid bone (zebrafish) - ZFA:0001404 + preethmoid bone (zebrafish) @@ -36325,8 +34379,7 @@ - ethmoid cartilage (zebrafish) - ZFA:0001405 + ethmoid cartilage (zebrafish) @@ -36345,8 +34398,7 @@ - kinethmoid bone (zebrafish) - ZFA:0001406 + kinethmoid bone (zebrafish) @@ -36365,8 +34417,7 @@ - infraorbital 2 (zebrafish) - ZFA:0001407 + infraorbital 2 (zebrafish) @@ -36385,8 +34436,7 @@ - infraorbital 3 (zebrafish) - ZFA:0001408 + infraorbital 3 (zebrafish) @@ -36405,8 +34455,7 @@ - infraorbital 4 (zebrafish) - ZFA:0001409 + infraorbital 4 (zebrafish) @@ -36425,8 +34474,7 @@ - orbit of skull (zebrafish) - ZFA:0001410 + orbit of skull (zebrafish) @@ -36445,8 +34493,7 @@ - endochondral scleral ossicle (zebrafish) - ZFA:0001411 + endochondral scleral ossicle (zebrafish) @@ -36465,8 +34512,7 @@ - epiotic (zebrafish) - ZFA:0001412 + epiotic (zebrafish) @@ -36485,8 +34531,7 @@ - occipital region (zebrafish) - ZFA:0001414 + occipital region (zebrafish) @@ -36505,8 +34550,7 @@ - pelvic fin distal radial bone 2 (zebrafish) - ZFA:0001415 + pelvic fin distal radial bone 2 (zebrafish) @@ -36525,8 +34569,7 @@ - pelvic fin distal radial bone 3 (zebrafish) - ZFA:0001416 + pelvic fin distal radial bone 3 (zebrafish) @@ -36545,8 +34588,7 @@ - pelvic fin distal radial bone 1 (zebrafish) - ZFA:0001417 + pelvic fin distal radial bone 1 (zebrafish) @@ -36565,8 +34607,7 @@ - dorsal fin lepidotrichium (zebrafish) - ZFA:0001418 + dorsal fin lepidotrichium (zebrafish) @@ -36585,8 +34626,7 @@ - dorsal fin pterygiophore (zebrafish) - ZFA:0001419 + dorsal fin pterygiophore (zebrafish) @@ -36605,8 +34645,7 @@ - anal fin pterygiophore (zebrafish) - ZFA:0001420 + anal fin pterygiophore (zebrafish) @@ -36625,8 +34664,7 @@ - anal fin lepidotrichium (zebrafish) - ZFA:0001421 + anal fin lepidotrichium (zebrafish) @@ -36645,8 +34683,7 @@ - hyomandibular cartilage (zebrafish) - ZFA:0001422 + hyomandibular cartilage (zebrafish) @@ -36665,8 +34702,7 @@ - parachordal cartilage (zebrafish) - ZFA:0001423 + parachordal cartilage (zebrafish) @@ -36685,8 +34721,7 @@ - chondrocranium (zebrafish) - ZFA:0001424 + chondrocranium (zebrafish) @@ -36705,8 +34740,7 @@ - basal plate cartilage (zebrafish) - ZFA:0001425 + basal plate cartilage (zebrafish) @@ -36725,8 +34759,7 @@ - posterior naris (zebrafish) - ZFA:0001426 + posterior naris (zebrafish) @@ -36745,8 +34778,7 @@ - anterior naris (zebrafish) - ZFA:0001427 + anterior naris (zebrafish) @@ -36765,8 +34797,7 @@ - olfactory rosette (zebrafish) - ZFA:0001428 + olfactory rosette (zebrafish) @@ -36785,8 +34816,7 @@ - raphe nuclei (zebrafish) - ZFA:0001429 + raphe nuclei (zebrafish) @@ -36805,8 +34835,7 @@ - pneumatic duct (zebrafish) - ZFA:0001430 + pneumatic duct (zebrafish) @@ -36825,8 +34854,7 @@ - primitive olfactory epithelium (zebrafish) - ZFA:0001431 + primitive olfactory epithelium (zebrafish) @@ -36845,8 +34873,7 @@ - anterior sclerotic bone (zebrafish) - ZFA:0001432 + anterior sclerotic bone (zebrafish) @@ -36865,8 +34892,7 @@ - posterior sclerotic bone (zebrafish) - ZFA:0001433 + posterior sclerotic bone (zebrafish) @@ -36885,8 +34911,7 @@ - floor plate of neural tube (zebrafish) - ZFA:0001434 + floor plate of neural tube (zebrafish) @@ -36905,8 +34930,7 @@ - neural tube lateral wall (zebrafish) - ZFA:0001435 + neural tube lateral wall (zebrafish) @@ -36925,8 +34949,7 @@ - roof plate (zebrafish) - ZFA:0001436 + roof plate (zebrafish) @@ -36945,8 +34968,7 @@ - ductus communicans (zebrafish) - ZFA:0001437 + ductus communicans (zebrafish) @@ -36965,8 +34987,7 @@ - coelemic cavity lumen (zebrafish) - ZFA:0001438 + coelemic cavity lumen (zebrafish) @@ -36985,8 +35006,7 @@ - anatomical system (zebrafish) - ZFA:0001439 + anatomical system (zebrafish) @@ -37005,8 +35025,7 @@ - rhombic lip (zebrafish) - ZFA:0001440 + rhombic lip (zebrafish) @@ -37025,8 +35044,7 @@ - lower rhombic lip (zebrafish) - ZFA:0001441 + lower rhombic lip (zebrafish) @@ -37045,8 +35063,7 @@ - upper rhombic lip (zebrafish) - ZFA:0001442 + upper rhombic lip (zebrafish) @@ -37065,8 +35082,7 @@ - choroid plexus (zebrafish) - ZFA:0001443 + choroid plexus (zebrafish) @@ -37085,8 +35101,7 @@ - choroid plexus of third ventricle (zebrafish) - ZFA:0001444 + choroid plexus of third ventricle (zebrafish) @@ -37105,8 +35120,7 @@ - choroid plexus of tectal ventricle (zebrafish) - ZFA:0001445 + choroid plexus of tectal ventricle (zebrafish) @@ -37125,8 +35139,7 @@ - choroid plexus of fourth ventricle (zebrafish) - ZFA:0001446 + choroid plexus of fourth ventricle (zebrafish) @@ -37145,8 +35158,7 @@ - choroid plexus of lateral ventricle (zebrafish) - ZFA:0001447 + choroid plexus of lateral ventricle (zebrafish) @@ -37165,8 +35177,7 @@ - ultimobranchial body (zebrafish) - ZFA:0001448 + ultimobranchial body (zebrafish) @@ -37185,8 +35196,7 @@ - mesenchyme pelvic fin (zebrafish) - ZFA:0001449 + mesenchyme pelvic fin (zebrafish) @@ -37205,8 +35215,7 @@ - apical ectodermal ridge pelvic fin (zebrafish) - ZFA:0001450 + apical ectodermal ridge pelvic fin (zebrafish) @@ -37225,8 +35234,7 @@ - zone of polarizing activity of pectoral appendage (zebrafish) - ZFA:0001451 + zone of polarizing activity of pectoral appendage (zebrafish) @@ -37245,8 +35253,7 @@ - zone of polarizing activity of pelvic appendage (zebrafish) - ZFA:0001452 + zone of polarizing activity of pelvic appendage (zebrafish) @@ -37265,8 +35272,7 @@ - pectoral appendage field (zebrafish) - ZFA:0001453 + pectoral appendage field (zebrafish) @@ -37285,8 +35291,7 @@ - pelvic appendage field (zebrafish) - ZFA:0001454 + pelvic appendage field (zebrafish) @@ -37305,8 +35310,7 @@ - scapulocoracoid (zebrafish) - ZFA:0001455 + scapulocoracoid (zebrafish) @@ -37325,8 +35329,7 @@ - pectoral fin endoskeletal disc (zebrafish) - ZFA:0001456 + pectoral fin endoskeletal disc (zebrafish) @@ -37345,8 +35348,7 @@ - postcranial axial cartilage (zebrafish) - ZFA:0001457 + postcranial axial cartilage (zebrafish) @@ -37365,8 +35367,7 @@ - cranial cartilage (zebrafish) - ZFA:0001458 + cranial cartilage (zebrafish) @@ -37385,8 +35386,7 @@ - pelvic appendage cartilage tissue (zebrafish) - ZFA:0001459 + pelvic appendage cartilage tissue (zebrafish) @@ -37405,8 +35405,7 @@ - pharyngeal arch cartilage (zebrafish) - ZFA:0001460 + pharyngeal arch cartilage (zebrafish) @@ -37425,28 +35424,7 @@ - cartilage element of chondrocranium (zebrafish) - ZFA:0001461 - - - - - - - - - - - - - - - - - - - somite border (zebrafish) - ZFA:0001462 + cartilage element of chondrocranium (zebrafish) @@ -37465,8 +35443,7 @@ - melanophore stripe (zebrafish) - ZFA:0001463 + melanophore stripe (zebrafish) @@ -37485,8 +35462,7 @@ - outer nuclear layer of retina (zebrafish) - ZFA:0001464 + outer nuclear layer of retina (zebrafish) @@ -37505,8 +35481,7 @@ - photoreceptor inner segment layer (zebrafish) - ZFA:0001465 + photoreceptor inner segment layer (zebrafish) @@ -37525,8 +35500,7 @@ - photoreceptor outer segment layer (zebrafish) - ZFA:0001466 + photoreceptor outer segment layer (zebrafish) @@ -37545,8 +35519,7 @@ - pharyngeal mesoderm (zebrafish) - ZFA:0001467 + pharyngeal mesoderm (zebrafish) @@ -37565,8 +35538,7 @@ - anterior lateral line system (zebrafish) - ZFA:0001468 + anterior lateral line system (zebrafish) @@ -37585,8 +35557,7 @@ - lateral line (zebrafish) - ZFA:0001469 + lateral line (zebrafish) @@ -37605,8 +35576,7 @@ - anterior lateral line (zebrafish) - ZFA:0001470 + anterior lateral line (zebrafish) @@ -37625,8 +35595,7 @@ - posterior lateral line system (zebrafish) - ZFA:0001471 + posterior lateral line system (zebrafish) @@ -37645,8 +35614,7 @@ - anterior lateral line neuromast (zebrafish) - ZFA:0001472 + anterior lateral line neuromast (zebrafish) @@ -37665,8 +35633,7 @@ - tissue (zebrafish) - ZFA:0001477 + tissue (zebrafish) @@ -37685,8 +35652,7 @@ - lateral line nerve (zebrafish) - ZFA:0001479 + lateral line nerve (zebrafish) @@ -37705,8 +35671,7 @@ - dorsal anterior lateral line nerve (zebrafish) - ZFA:0001480 + dorsal anterior lateral line nerve (zebrafish) @@ -37725,8 +35690,7 @@ - ventral anterior lateral line nerve (zebrafish) - ZFA:0001481 + ventral anterior lateral line nerve (zebrafish) @@ -37745,8 +35709,7 @@ - middle lateral line nerve (zebrafish) - ZFA:0001482 + middle lateral line nerve (zebrafish) @@ -37765,8 +35728,7 @@ - middle lateral line ganglion (zebrafish) - ZFA:0001483 + middle lateral line ganglion (zebrafish) @@ -37785,8 +35747,7 @@ - basal lamina of epithelium (zebrafish) - ZFA:0001485 + basal lamina of epithelium (zebrafish) @@ -37805,8 +35766,7 @@ - epithelium (zebrafish) - ZFA:0001486 + epithelium (zebrafish) @@ -37825,8 +35785,7 @@ - organism substance (zebrafish) - ZFA:0001487 + organism substance (zebrafish) @@ -37845,8 +35804,7 @@ - multi-tissue structure (zebrafish) - ZFA:0001488 + multi-tissue structure (zebrafish) @@ -37865,8 +35823,7 @@ - compound organ component (zebrafish) - ZFA:0001489 + compound organ component (zebrafish) @@ -37885,8 +35842,7 @@ - cavitated compound organ (zebrafish) - ZFA:0001490 + cavitated compound organ (zebrafish) @@ -37905,8 +35861,7 @@ - solid compound organ (zebrafish) - ZFA:0001491 + solid compound organ (zebrafish) @@ -37925,8 +35880,7 @@ - simple organ (zebrafish) - ZFA:0001492 + simple organ (zebrafish) @@ -37945,8 +35899,7 @@ - atypical epithelium (zebrafish) - ZFA:0001493 + atypical epithelium (zebrafish) @@ -37965,8 +35918,7 @@ - multilaminar epithelium (zebrafish) - ZFA:0001494 + multilaminar epithelium (zebrafish) @@ -37985,8 +35937,7 @@ - unilaminar epithelium (zebrafish) - ZFA:0001495 + unilaminar epithelium (zebrafish) @@ -38005,8 +35956,7 @@ - simple columnar epithelium (zebrafish) - ZFA:0001496 + simple columnar epithelium (zebrafish) @@ -38025,8 +35975,7 @@ - simple cuboidal epithelium (zebrafish) - ZFA:0001497 + simple cuboidal epithelium (zebrafish) @@ -38045,8 +35994,7 @@ - simple squamous epithelium (zebrafish) - ZFA:0001498 + simple squamous epithelium (zebrafish) @@ -38065,8 +36013,7 @@ - epithelium of esophagus (zebrafish) - ZFA:0001499 + epithelium of esophagus (zebrafish) @@ -38085,8 +36032,7 @@ - cartilaginous otic capsule (zebrafish) - ZFA:0001500 + cartilaginous otic capsule (zebrafish) @@ -38105,8 +36051,7 @@ - cartilage element (zebrafish) - ZFA:0001501 + cartilage element (zebrafish) @@ -38125,8 +36070,7 @@ - epiphyseal bar (zebrafish) - ZFA:0001502 + epiphyseal bar (zebrafish) @@ -38145,8 +36089,7 @@ - lamina orbitonasalis (zebrafish) - ZFA:0001503 + lamina orbitonasalis (zebrafish) @@ -38165,8 +36108,7 @@ - occipital arch cartilage (zebrafish) - ZFA:0001504 + occipital arch cartilage (zebrafish) @@ -38185,8 +36127,7 @@ - taenia marginalis anterior (zebrafish) - ZFA:0001505 + taenia marginalis anterior (zebrafish) @@ -38205,8 +36146,7 @@ - tectum synoticum (zebrafish) - ZFA:0001506 + tectum synoticum (zebrafish) @@ -38225,8 +36165,7 @@ - trabecula cranii (zebrafish) - ZFA:0001507 + trabecula cranii (zebrafish) @@ -38245,8 +36184,7 @@ - trabecula communis (zebrafish) - ZFA:0001508 + trabecula communis (zebrafish) @@ -38265,8 +36203,7 @@ - scleral cartilage (zebrafish) - ZFA:0001509 + scleral cartilage (zebrafish) @@ -38285,8 +36222,7 @@ - basihyal cartilage (zebrafish) - ZFA:0001510 + basihyal cartilage (zebrafish) @@ -38305,8 +36241,7 @@ - interhyal cartilage (zebrafish) - ZFA:0001511 + interhyal cartilage (zebrafish) @@ -38325,8 +36260,7 @@ - anatomical group (zebrafish) - ZFA:0001512 + anatomical group (zebrafish) @@ -38345,8 +36279,7 @@ - dermomyotome (zebrafish) - ZFA:0001513 + dermomyotome (zebrafish) @@ -38365,8 +36298,7 @@ - bone element (zebrafish) - ZFA:0001514 + bone element (zebrafish) @@ -38385,8 +36317,7 @@ - taenia marginalis posterior (zebrafish) - ZFA:0001515 + taenia marginalis posterior (zebrafish) @@ -38405,8 +36336,7 @@ - ceratobranchial cartilage (zebrafish) - ZFA:0001516 + ceratobranchial cartilage (zebrafish) @@ -38425,8 +36355,7 @@ - ceratobranchial 2 cartilage (zebrafish) - ZFA:0001517 + ceratobranchial 2 cartilage (zebrafish) @@ -38445,8 +36374,7 @@ - ceratobranchial 3 cartilage (zebrafish) - ZFA:0001518 + ceratobranchial 3 cartilage (zebrafish) @@ -38465,8 +36393,7 @@ - ceratobranchial 4 cartilage (zebrafish) - ZFA:0001519 + ceratobranchial 4 cartilage (zebrafish) @@ -38485,8 +36412,7 @@ - ceratobranchial 1 cartilage (zebrafish) - ZFA:0001520 + ceratobranchial 1 cartilage (zebrafish) @@ -38505,8 +36431,7 @@ - ceratobranchial 5 cartilage (zebrafish) - ZFA:0001521 + ceratobranchial 5 cartilage (zebrafish) @@ -38525,8 +36450,7 @@ - hypobranchial cartilage (zebrafish) - ZFA:0001522 + hypobranchial cartilage (zebrafish) @@ -38545,8 +36469,7 @@ - hypobranchial 4 cartilage (zebrafish) - ZFA:0001523 + hypobranchial 4 cartilage (zebrafish) @@ -38565,8 +36488,7 @@ - hypobranchial 1 cartilage (zebrafish) - ZFA:0001524 + hypobranchial 1 cartilage (zebrafish) @@ -38585,8 +36507,7 @@ - hypobranchial 2 cartilage (zebrafish) - ZFA:0001525 + hypobranchial 2 cartilage (zebrafish) @@ -38605,8 +36526,7 @@ - hypobranchial 3 cartilage (zebrafish) - ZFA:0001526 + hypobranchial 3 cartilage (zebrafish) @@ -38625,8 +36545,7 @@ - epibranchial cartilage (zebrafish) - ZFA:0001527 + epibranchial cartilage (zebrafish) @@ -38645,8 +36564,7 @@ - epibranchial 1 cartilage (zebrafish) - ZFA:0001528 + epibranchial 1 cartilage (zebrafish) @@ -38665,8 +36583,7 @@ - epibranchial 3 cartilage (zebrafish) - ZFA:0001529 + epibranchial 3 cartilage (zebrafish) @@ -38685,8 +36602,7 @@ - epibranchial 2 cartilage (zebrafish) - ZFA:0001530 + epibranchial 2 cartilage (zebrafish) @@ -38705,8 +36621,7 @@ - epibranchial 4 cartilage (zebrafish) - ZFA:0001531 + epibranchial 4 cartilage (zebrafish) @@ -38725,8 +36640,7 @@ - pharyngobranchial cartilage (zebrafish) - ZFA:0001533 + pharyngobranchial cartilage (zebrafish) @@ -38745,8 +36659,7 @@ - pharyngobranchial 3 cartilage (zebrafish) - ZFA:0001534 + pharyngobranchial 3 cartilage (zebrafish) @@ -38765,8 +36678,7 @@ - median fin cartilage (zebrafish) - ZFA:0001535 + median fin cartilage (zebrafish) @@ -38785,8 +36697,7 @@ - pharyngobranchial 2 cartilage (zebrafish) - ZFA:0001536 + pharyngobranchial 2 cartilage (zebrafish) @@ -38805,8 +36716,7 @@ - mesocoracoid cartilage (zebrafish) - ZFA:0001537 + mesocoracoid cartilage (zebrafish) @@ -38825,8 +36735,7 @@ - pelvic radial cartilage (zebrafish) - ZFA:0001538 + pelvic radial cartilage (zebrafish) @@ -38845,8 +36754,7 @@ - basipterygium cartilage (zebrafish) - ZFA:0001539 + basipterygium cartilage (zebrafish) @@ -38865,8 +36773,7 @@ - pelvic radial 3 cartilage (zebrafish) - ZFA:0001540 + pelvic radial 3 cartilage (zebrafish) @@ -38885,8 +36792,7 @@ - pelvic radial 2 cartilage (zebrafish) - ZFA:0001541 + pelvic radial 2 cartilage (zebrafish) @@ -38905,8 +36811,7 @@ - pelvic radial 1 cartilage (zebrafish) - ZFA:0001542 + pelvic radial 1 cartilage (zebrafish) @@ -38925,8 +36830,7 @@ - paired limb/fin cartilage (zebrafish) - ZFA:0001543 + paired limb/fin cartilage (zebrafish) @@ -38945,8 +36849,7 @@ - caudal fin lepidotrichium (zebrafish) - ZFA:0001550 + caudal fin lepidotrichium (zebrafish) @@ -38965,8 +36868,7 @@ - pectoral fin lepidotrichium (zebrafish) - ZFA:0001551 + pectoral fin lepidotrichium (zebrafish) @@ -38985,8 +36887,7 @@ - pelvic fin lepidotrichium (zebrafish) - ZFA:0001552 + pelvic fin lepidotrichium (zebrafish) @@ -39005,8 +36906,7 @@ - lepidotrichium (zebrafish) - ZFA:0001554 + lepidotrichium (zebrafish) @@ -39025,8 +36925,7 @@ - epibranchial ganglion (zebrafish) - ZFA:0001555 + epibranchial ganglion (zebrafish) @@ -39045,8 +36944,7 @@ - paravertebral ganglion (zebrafish) - ZFA:0001556 + paravertebral ganglion (zebrafish) @@ -39065,8 +36963,7 @@ - pronephric glomerulus (zebrafish) - ZFA:0001557 + pronephric glomerulus (zebrafish) @@ -39085,8 +36982,7 @@ - pronephric nephron tubule (zebrafish) - ZFA:0001558 + pronephric nephron tubule (zebrafish) @@ -39105,8 +37001,7 @@ - vertebral column (zebrafish) - ZFA:0001559 + vertebral column (zebrafish) @@ -39125,8 +37020,7 @@ - hypural 1 (zebrafish) - ZFA:0001560 + hypural 1 (zebrafish) @@ -39145,8 +37039,7 @@ - hypural 2 (zebrafish) - ZFA:0001561 + hypural 2 (zebrafish) @@ -39165,8 +37058,7 @@ - hypural 3 (zebrafish) - ZFA:0001562 + hypural 3 (zebrafish) @@ -39185,8 +37077,7 @@ - hypural 4 (zebrafish) - ZFA:0001563 + hypural 4 (zebrafish) @@ -39205,8 +37096,7 @@ - hypural 5 (zebrafish) - ZFA:0001564 + hypural 5 (zebrafish) @@ -39225,8 +37115,7 @@ - postovulatory follicle (zebrafish) - ZFA:0001571 + postovulatory follicle (zebrafish) @@ -39245,8 +37134,7 @@ - superior cervical ganglion (zebrafish) - ZFA:0001572 + superior cervical ganglion (zebrafish) @@ -39265,8 +37153,7 @@ - trunk ganglion (zebrafish) - ZFA:0001573 + trunk ganglion (zebrafish) @@ -39285,8 +37172,7 @@ - autonomic nervous system (zebrafish) - ZFA:0001574 + autonomic nervous system (zebrafish) @@ -39305,8 +37191,7 @@ - parasympathetic nervous system (zebrafish) - ZFA:0001575 + parasympathetic nervous system (zebrafish) @@ -39325,8 +37210,7 @@ - sympathetic nervous system (zebrafish) - ZFA:0001576 + sympathetic nervous system (zebrafish) @@ -39345,8 +37229,7 @@ - premaxilla ascending process (zebrafish) - ZFA:0001577 + premaxilla ascending process (zebrafish) @@ -39365,8 +37248,7 @@ - anterior dorsomedial process of autopalatine (zebrafish) - ZFA:0001578 + anterior dorsomedial process of autopalatine (zebrafish) @@ -39385,8 +37267,7 @@ - ural vertebra 2 (zebrafish) - ZFA:0001579 + ural vertebra 2 (zebrafish) @@ -39405,8 +37286,7 @@ - neurocranium (zebrafish) - ZFA:0001580 + neurocranium (zebrafish) @@ -39425,8 +37305,7 @@ - ural centrum 2 (zebrafish) - ZFA:0001581 + ural centrum 2 (zebrafish) @@ -39445,8 +37324,7 @@ - non-Weberian precaudal vertebra (zebrafish) - ZFA:0001582 + non-Weberian precaudal vertebra (zebrafish) @@ -39465,8 +37343,7 @@ - preural centrum 1+ ural centrum 1 (zebrafish) - ZFA:0001583 + preural centrum 1+ ural centrum 1 (zebrafish) @@ -39485,8 +37362,7 @@ - caudal procurrent ray (zebrafish) - ZFA:0001584 + caudal procurrent ray (zebrafish) @@ -39505,8 +37381,7 @@ - caudal principal ray (zebrafish) - ZFA:0001585 + caudal principal ray (zebrafish) @@ -39525,8 +37400,7 @@ - pectoral fin radial bone (zebrafish) - ZFA:0001586 + pectoral fin radial bone (zebrafish) @@ -39545,8 +37419,7 @@ - pectoral fin proximal radial bone (zebrafish) - ZFA:0001587 + pectoral fin proximal radial bone (zebrafish) @@ -39565,8 +37438,7 @@ - pectoral fin distal radial bone (zebrafish) - ZFA:0001588 + pectoral fin distal radial bone (zebrafish) @@ -39585,8 +37457,7 @@ - propterygium cartilage (zebrafish) - ZFA:0001589 + propterygium cartilage (zebrafish) @@ -39605,8 +37476,7 @@ - dermal bone (zebrafish) - ZFA:0001590 + dermal bone (zebrafish) @@ -39625,8 +37495,7 @@ - endochondral bone (zebrafish) - ZFA:0001591 + endochondral bone (zebrafish) @@ -39645,8 +37514,7 @@ - claustrum bone (zebrafish) - ZFA:0001592 + claustrum bone (zebrafish) @@ -39665,8 +37533,7 @@ - quadrate ventral process (zebrafish) - ZFA:0001593 + quadrate ventral process (zebrafish) @@ -39685,8 +37552,7 @@ - preopercle horizontal limb (zebrafish) - ZFA:0001594 + preopercle horizontal limb (zebrafish) @@ -39705,8 +37571,7 @@ - preopercle vertical limb (zebrafish) - ZFA:0001595 + preopercle vertical limb (zebrafish) @@ -39725,8 +37590,7 @@ - skeletal joint (zebrafish) - ZFA:0001596 + skeletal joint (zebrafish) @@ -39745,8 +37609,7 @@ - exoccipital posteroventral region (zebrafish) - ZFA:0001597 + exoccipital posteroventral region (zebrafish) @@ -39765,8 +37628,7 @@ - basioccipital posterodorsal region (zebrafish) - ZFA:0001598 + basioccipital posterodorsal region (zebrafish) @@ -39785,8 +37647,7 @@ - os suspensorium medial flange (zebrafish) - ZFA:0001599 + os suspensorium medial flange (zebrafish) @@ -39805,8 +37666,7 @@ - neural spine 4 (zebrafish) - ZFA:0001600 + neural spine 4 (zebrafish) @@ -39825,8 +37685,7 @@ - manubrium (zebrafish) - ZFA:0001601 + manubrium (zebrafish) @@ -39845,8 +37704,7 @@ - intercalarium ascending process (zebrafish) - ZFA:0001602 + intercalarium ascending process (zebrafish) @@ -39865,8 +37723,7 @@ - zygapophysis (zebrafish) - ZFA:0001603 + zygapophysis (zebrafish) @@ -39885,8 +37742,7 @@ - caudal fin upper lobe (zebrafish) - ZFA:0001604 + caudal fin upper lobe (zebrafish) @@ -39905,8 +37761,7 @@ - caudal fin lower lobe (zebrafish) - ZFA:0001605 + caudal fin lower lobe (zebrafish) @@ -39925,8 +37780,7 @@ - pharyngeal arch 3 (zebrafish) - ZFA:0001606 + pharyngeal arch 3 (zebrafish) @@ -39945,8 +37799,7 @@ - pharyngeal arch 4 (zebrafish) - ZFA:0001607 + pharyngeal arch 4 (zebrafish) @@ -39965,8 +37818,7 @@ - pharyngeal arch 5 (zebrafish) - ZFA:0001608 + pharyngeal arch 5 (zebrafish) @@ -39985,8 +37837,7 @@ - pharyngeal arch 6 (zebrafish) - ZFA:0001609 + pharyngeal arch 6 (zebrafish) @@ -40005,8 +37856,7 @@ - pharyngeal arch 7 (zebrafish) - ZFA:0001610 + pharyngeal arch 7 (zebrafish) @@ -40025,8 +37875,7 @@ - pharyngeal arch 2 (zebrafish) - ZFA:0001611 + pharyngeal arch 2 (zebrafish) @@ -40045,8 +37894,7 @@ - pharyngeal arch 1 (zebrafish) - ZFA:0001612 + pharyngeal arch 1 (zebrafish) @@ -40065,8 +37913,7 @@ - post-hyoid pharyngeal arch (zebrafish) - ZFA:0001613 + post-hyoid pharyngeal arch (zebrafish) @@ -40085,8 +37932,7 @@ - endocardium of atrium (zebrafish) - ZFA:0001614 + endocardium of atrium (zebrafish) @@ -40105,8 +37951,7 @@ - endocardium of ventricle (zebrafish) - ZFA:0001615 + endocardium of ventricle (zebrafish) @@ -40125,8 +37970,7 @@ - atrioventricular canal endocardium (zebrafish) - ZFA:0001616 + atrioventricular canal endocardium (zebrafish) @@ -40145,8 +37989,7 @@ - otolith (zebrafish) - ZFA:0001617 + otolith (zebrafish) @@ -40165,8 +38008,7 @@ - nerve fiber layer of retina (zebrafish) - ZFA:0001619 + nerve fiber layer of retina (zebrafish) @@ -40185,8 +38027,7 @@ - pronephric proximal convoluted tubule (zebrafish) - ZFA:0001620 + pronephric proximal convoluted tubule (zebrafish) @@ -40205,8 +38046,7 @@ - pronephric proximal straight tubule (zebrafish) - ZFA:0001621 + pronephric proximal straight tubule (zebrafish) @@ -40225,8 +38065,7 @@ - pronephric distal early tubule (zebrafish) - ZFA:0001622 + pronephric distal early tubule (zebrafish) @@ -40245,8 +38084,7 @@ - posterior pronephric duct (zebrafish) - ZFA:0001623 + posterior pronephric duct (zebrafish) @@ -40265,8 +38103,7 @@ - cerebrospinal fluid (zebrafish) - ZFA:0001626 + cerebrospinal fluid (zebrafish) @@ -40285,8 +38122,7 @@ - lagenar capsule (zebrafish) - ZFA:0001627 + lagenar capsule (zebrafish) @@ -40305,8 +38141,7 @@ - replacement bone (zebrafish) - ZFA:0001628 + replacement bone (zebrafish) @@ -40325,8 +38160,7 @@ - perichordal bone (zebrafish) - ZFA:0001629 + perichordal bone (zebrafish) @@ -40345,8 +38179,7 @@ - perichondral bone (zebrafish) - ZFA:0001630 + perichondral bone (zebrafish) @@ -40365,8 +38198,7 @@ - notochordal ossification (zebrafish) - ZFA:0001631 + notochordal ossification (zebrafish) @@ -40385,8 +38217,7 @@ - connective tissue (zebrafish) - ZFA:0001632 + connective tissue (zebrafish) @@ -40405,8 +38236,7 @@ - perichordal tissue (zebrafish) - ZFA:0001633 + perichordal tissue (zebrafish) @@ -40425,8 +38255,7 @@ - perichondrium (zebrafish) - ZFA:0001634 + perichondrium (zebrafish) @@ -40445,8 +38274,7 @@ - intramembranous bone (zebrafish) - ZFA:0001635 + intramembranous bone (zebrafish) @@ -40465,8 +38293,7 @@ - membrane bone (zebrafish) - ZFA:0001636 + membrane bone (zebrafish) @@ -40485,8 +38312,7 @@ - bony projection (zebrafish) - ZFA:0001637 + bony projection (zebrafish) @@ -40505,8 +38331,7 @@ - cochlear nucleus (zebrafish) - ZFA:0001638 + cochlear nucleus (zebrafish) @@ -40525,8 +38350,7 @@ - cardiovascular system endothelium (zebrafish) - ZFA:0001639 + cardiovascular system endothelium (zebrafish) @@ -40545,8 +38369,7 @@ - cephalic midbrain flexure (zebrafish) - ZFA:0001640 + cephalic midbrain flexure (zebrafish) @@ -40565,8 +38388,7 @@ - rudimentary neural arch (zebrafish) - ZFA:0001641 + rudimentary neural arch (zebrafish) @@ -40585,8 +38407,7 @@ - tooth row (zebrafish) - ZFA:0001642 + tooth row (zebrafish) @@ -40605,8 +38426,7 @@ - anatomical space (zebrafish) - ZFA:0001643 + anatomical space (zebrafish) @@ -40625,8 +38445,7 @@ - articular cartilage element (zebrafish) - ZFA:0001644 + articular cartilage element (zebrafish) @@ -40645,8 +38464,7 @@ - angular bone (zebrafish) - ZFA:0001645 + angular bone (zebrafish) @@ -40665,8 +38483,7 @@ - anal fin radial bone (zebrafish) - ZFA:0001646 + anal fin radial bone (zebrafish) @@ -40685,8 +38502,7 @@ - dorsal fin radial bone (zebrafish) - ZFA:0001647 + dorsal fin radial bone (zebrafish) @@ -40705,8 +38521,7 @@ - cardiac neural crest (zebrafish) - ZFA:0001648 + cardiac neural crest (zebrafish) @@ -40725,8 +38540,7 @@ - infraorbital series (zebrafish) - ZFA:0001649 + infraorbital series (zebrafish) @@ -40745,8 +38559,7 @@ - branchial mesenchyme (zebrafish) - ZFA:0001650 + branchial mesenchyme (zebrafish) @@ -40765,8 +38578,7 @@ - hypobranchial muscle (zebrafish) - ZFA:0001651 + hypobranchial muscle (zebrafish) @@ -40785,8 +38597,7 @@ - cranial muscle (zebrafish) - ZFA:0001652 + cranial muscle (zebrafish) @@ -40805,8 +38616,7 @@ - pericardial muscle (zebrafish) - ZFA:0001653 + pericardial muscle (zebrafish) @@ -40825,8 +38635,7 @@ - opercular cavity (zebrafish) - ZFA:0001654 + opercular cavity (zebrafish) @@ -40845,8 +38654,7 @@ - pericardial cavity (zebrafish) - ZFA:0001655 + pericardial cavity (zebrafish) @@ -40865,8 +38673,7 @@ - pleuroperitoneal cavity (zebrafish) - ZFA:0001656 + pleuroperitoneal cavity (zebrafish) @@ -40885,8 +38692,7 @@ - supraoptic tract (zebrafish) - ZFA:0001657 + supraoptic tract (zebrafish) @@ -40905,8 +38711,7 @@ - hindbrain nucleus (zebrafish) - ZFA:0001658 + hindbrain nucleus (zebrafish) @@ -40925,8 +38730,7 @@ - diencephalic nucleus (zebrafish) - ZFA:0001659 + diencephalic nucleus (zebrafish) @@ -40945,8 +38749,7 @@ - telencephalic nucleus (zebrafish) - ZFA:0001660 + telencephalic nucleus (zebrafish) @@ -40965,8 +38768,7 @@ - preglomerular nucleus (zebrafish) - ZFA:0001662 + preglomerular nucleus (zebrafish) @@ -40985,8 +38787,7 @@ - root of cranial nerve (zebrafish) - ZFA:0001663 + root of cranial nerve (zebrafish) @@ -41005,8 +38806,7 @@ - midbrain nucleus (zebrafish) - ZFA:0001665 + midbrain nucleus (zebrafish) @@ -41025,8 +38825,7 @@ - intermediate nucleus (zebrafish) - ZFA:0001669 + intermediate nucleus (zebrafish) @@ -41045,8 +38844,7 @@ - notochord posterior region (zebrafish) - ZFA:0001670 + notochord posterior region (zebrafish) @@ -41065,8 +38863,7 @@ - macula communis (zebrafish) - ZFA:0001671 + macula communis (zebrafish) @@ -41085,8 +38882,7 @@ - dorsolateral septum (zebrafish) - ZFA:0001672 + dorsolateral septum (zebrafish) @@ -41105,8 +38901,7 @@ - ligament (zebrafish) - ZFA:0001675 + ligament (zebrafish) @@ -41125,8 +38920,7 @@ - annular ligament (zebrafish) - ZFA:0001676 + annular ligament (zebrafish) @@ -41145,8 +38939,7 @@ - floor plate of midbrain (zebrafish) - ZFA:0001677 + floor plate of midbrain (zebrafish) @@ -41165,8 +38958,7 @@ - immature eye (zebrafish) - ZFA:0001678 + immature eye (zebrafish) @@ -41185,8 +38977,7 @@ - lens vesicle (zebrafish) - ZFA:0001679 + lens vesicle (zebrafish) @@ -41205,8 +38996,7 @@ - parvocellular preoptic nucleus (zebrafish) - ZFA:0001680 + parvocellular preoptic nucleus (zebrafish) @@ -41225,8 +39015,7 @@ - gray matter (zebrafish) - ZFA:0001681 + gray matter (zebrafish) @@ -41245,8 +39034,7 @@ - white matter (zebrafish) - ZFA:0001682 + white matter (zebrafish) @@ -41265,8 +39053,7 @@ - corneal epithelium (zebrafish) - ZFA:0001683 + corneal epithelium (zebrafish) @@ -41285,8 +39072,7 @@ - anterior limiting lamina of cornea (zebrafish) - ZFA:0001684 + anterior limiting lamina of cornea (zebrafish) @@ -41305,8 +39091,7 @@ - substantia propria of cornea (zebrafish) - ZFA:0001685 + substantia propria of cornea (zebrafish) @@ -41325,8 +39110,7 @@ - Descemet's membrane (zebrafish) - ZFA:0001686 + Descemet's membrane (zebrafish) @@ -41345,8 +39129,7 @@ - corneal endothelium (zebrafish) - ZFA:0001687 + corneal endothelium (zebrafish) @@ -41365,8 +39148,7 @@ - corneal primordium (zebrafish) - ZFA:0001688 + corneal primordium (zebrafish) @@ -41385,28 +39167,7 @@ - anatomical line (zebrafish) - ZFA:0001689 - - - - - - - - - - - - - - - - - - - hindbrain commissure (zebrafish) - ZFA:0001692 + anatomical line (zebrafish) @@ -41425,8 +39186,7 @@ - chondral bone (zebrafish) - ZFA:0001693 + chondral bone (zebrafish) @@ -41445,8 +39205,7 @@ - dorsolateral motor nucleus of vagal nerve (zebrafish) - ZFA:0001695 + dorsolateral motor nucleus of vagal nerve (zebrafish) @@ -41465,8 +39224,7 @@ - medial motor nucleus of vagal nerve (zebrafish) - ZFA:0001696 + medial motor nucleus of vagal nerve (zebrafish) @@ -41485,8 +39243,7 @@ - octaval nerve motor nucleus (zebrafish) - ZFA:0001697 + octaval nerve motor nucleus (zebrafish) @@ -41505,8 +39262,7 @@ - rostral octaval nerve motor nucleus (zebrafish) - ZFA:0001698 + rostral octaval nerve motor nucleus (zebrafish) @@ -41525,8 +39281,7 @@ - caudal octaval nerve motor nucleus (zebrafish) - ZFA:0001699 + caudal octaval nerve motor nucleus (zebrafish) @@ -41545,8 +39300,7 @@ - swim bladder tunica externa (zebrafish) - ZFA:0001700 + swim bladder tunica externa (zebrafish) @@ -41565,8 +39319,7 @@ - swim bladder tunica interna (zebrafish) - ZFA:0001701 + swim bladder tunica interna (zebrafish) @@ -41585,8 +39338,7 @@ - apical ectodermal ridge (zebrafish) - ZFA:0001702 + apical ectodermal ridge (zebrafish) @@ -41605,8 +39357,7 @@ - epidermal placode (zebrafish) - ZFA:0001703 + epidermal placode (zebrafish) @@ -41625,8 +39376,7 @@ - scale primordium (zebrafish) - ZFA:0001704 + scale primordium (zebrafish) @@ -41645,8 +39395,7 @@ - endolymphatic duct (zebrafish) - ZFA:0001705 + endolymphatic duct (zebrafish) @@ -41665,8 +39414,7 @@ - Purkinje cell layer corpus cerebelli (zebrafish) - ZFA:0001706 + Purkinje cell layer corpus cerebelli (zebrafish) @@ -41685,8 +39433,7 @@ - brainstem (zebrafish) - ZFA:0001707 + brainstem (zebrafish) @@ -41705,8 +39452,7 @@ - white matter of cerebellum (zebrafish) - ZFA:0001708 + white matter of cerebellum (zebrafish) @@ -41725,8 +39471,7 @@ - Purkinje cell layer valvula cerebelli (zebrafish) - ZFA:0001709 + Purkinje cell layer valvula cerebelli (zebrafish) @@ -41745,8 +39490,7 @@ - mossy fiber (zebrafish) - ZFA:0001710 + mossy fiber (zebrafish) @@ -41765,8 +39509,7 @@ - climbing fiber (zebrafish) - ZFA:0001711 + climbing fiber (zebrafish) @@ -41785,8 +39528,7 @@ - presumptive bulbus arteriosus (zebrafish) - ZFA:0001712 + presumptive bulbus arteriosus (zebrafish) @@ -41805,8 +39547,7 @@ - parallel fiber, teleost (zebrafish) - ZFA:0001713 + parallel fiber, teleost (zebrafish) @@ -41825,8 +39566,7 @@ - presumptive ventral mesoderm (zebrafish) - ZFA:0001714 + presumptive ventral mesoderm (zebrafish) @@ -41845,8 +39585,7 @@ - otic vesicle protrusion (zebrafish) - ZFA:0001715 + otic vesicle protrusion (zebrafish) @@ -41865,8 +39604,7 @@ - otic vesicle ventral protrusion (zebrafish) - ZFA:0001716 + otic vesicle ventral protrusion (zebrafish) @@ -41885,8 +39623,7 @@ - pillar of the semicircular canal (zebrafish) - ZFA:0001717 + pillar of the semicircular canal (zebrafish) @@ -41905,8 +39642,7 @@ - future cardiac atrium (zebrafish) - ZFA:0001718 + future cardiac atrium (zebrafish) @@ -41925,8 +39661,7 @@ - future cardiac ventricle (zebrafish) - ZFA:0001719 + future cardiac ventricle (zebrafish) @@ -41945,8 +39680,7 @@ - presumptive cardiac ventricle primitive heart tube (zebrafish) - ZFA:0001720 + presumptive cardiac ventricle primitive heart tube (zebrafish) @@ -41965,8 +39699,7 @@ - presumptive atrium primitive heart tube (zebrafish) - ZFA:0001721 + presumptive atrium primitive heart tube (zebrafish) @@ -41985,8 +39718,7 @@ - presumptive sinus venosus (zebrafish) - ZFA:0001722 + presumptive sinus venosus (zebrafish) @@ -42005,8 +39737,7 @@ - presumptive atrioventricular canal (zebrafish) - ZFA:0001723 + presumptive atrioventricular canal (zebrafish) @@ -42025,8 +39756,7 @@ - presumptive endocardium (zebrafish) - ZFA:0001724 + presumptive endocardium (zebrafish) @@ -42045,8 +39775,7 @@ - basal communicating artery (zebrafish) - ZFA:0005000 + basal communicating artery (zebrafish) @@ -42065,8 +39794,7 @@ - posterior communicating artery (zebrafish) - ZFA:0005001 + posterior communicating artery (zebrafish) @@ -42085,8 +39813,7 @@ - basilar artery (zebrafish) - ZFA:0005002 + basilar artery (zebrafish) @@ -42105,8 +39832,7 @@ - pharyngeal vasculature (zebrafish) - ZFA:0005003 + pharyngeal vasculature (zebrafish) @@ -42125,8 +39851,7 @@ - pharyngeal arch artery (zebrafish) - ZFA:0005004 + pharyngeal arch artery (zebrafish) @@ -42145,8 +39870,7 @@ - pharyngeal arch artery 1 (zebrafish) - ZFA:0005005 + pharyngeal arch artery 1 (zebrafish) @@ -42165,8 +39889,7 @@ - pharyngeal arch artery 2 (zebrafish) - ZFA:0005006 + pharyngeal arch artery 2 (zebrafish) @@ -42185,8 +39908,7 @@ - pharyngeal arch artery 3 (zebrafish) - ZFA:0005007 + pharyngeal arch artery 3 (zebrafish) @@ -42205,8 +39927,7 @@ - pharyngeal arch artery 4 (zebrafish) - ZFA:0005008 + pharyngeal arch artery 4 (zebrafish) @@ -42225,8 +39946,7 @@ - pharyngeal arch artery 5 (zebrafish) - ZFA:0005009 + pharyngeal arch artery 5 (zebrafish) @@ -42245,8 +39965,7 @@ - mid cerebral vein (zebrafish) - ZFA:0005010 + mid cerebral vein (zebrafish) @@ -42265,8 +39984,7 @@ - pseudobranchial artery (zebrafish) - ZFA:0005011 + pseudobranchial artery (zebrafish) @@ -42285,8 +40003,7 @@ - afferent filamental artery (zebrafish) - ZFA:0005012 + afferent filamental artery (zebrafish) @@ -42305,8 +40022,7 @@ - concurrent branch afferent branchial artery (zebrafish) - ZFA:0005013 + concurrent branch afferent branchial artery (zebrafish) @@ -42325,8 +40041,7 @@ - recurrent branch afferent branchial artery (zebrafish) - ZFA:0005014 + recurrent branch afferent branchial artery (zebrafish) @@ -42345,8 +40060,7 @@ - afferent lamellar arteriole (zebrafish) - ZFA:0005015 + afferent lamellar arteriole (zebrafish) @@ -42365,8 +40079,7 @@ - pharyngeal arch artery 6 (zebrafish) - ZFA:0005016 + pharyngeal arch artery 6 (zebrafish) @@ -42385,8 +40098,7 @@ - primordial midbrain channel (zebrafish) - ZFA:0005017 + primordial midbrain channel (zebrafish) @@ -42405,8 +40117,7 @@ - efferent filamental artery (zebrafish) - ZFA:0005018 + efferent filamental artery (zebrafish) @@ -42425,8 +40136,7 @@ - efferent lamellar arteriole (zebrafish) - ZFA:0005019 + efferent lamellar arteriole (zebrafish) @@ -42445,8 +40155,7 @@ - central artery (zebrafish) - ZFA:0005020 + central artery (zebrafish) @@ -42465,8 +40174,7 @@ - cerebellar central artery (zebrafish) - ZFA:0005021 + cerebellar central artery (zebrafish) @@ -42485,8 +40193,7 @@ - opercular artery (zebrafish) - ZFA:0005022 + opercular artery (zebrafish) @@ -42505,8 +40212,7 @@ - hematopoietic system (zebrafish) - ZFA:0005023 + hematopoietic system (zebrafish) @@ -42525,8 +40231,7 @@ - vasculature of trunk (zebrafish) - ZFA:0005024 + vasculature of trunk (zebrafish) @@ -42545,8 +40250,7 @@ - dorsal longitudinal anastomotic vessel (zebrafish) - ZFA:0005025 + dorsal longitudinal anastomotic vessel (zebrafish) @@ -42565,8 +40269,7 @@ - primary head sinus (zebrafish) - ZFA:0005026 + primary head sinus (zebrafish) @@ -42585,8 +40288,7 @@ - posterior cerebral vein (zebrafish) - ZFA:0005027 + posterior cerebral vein (zebrafish) @@ -42605,8 +40307,7 @@ - ventral wall of dorsal aorta (zebrafish) - ZFA:0005028 + ventral wall of dorsal aorta (zebrafish) @@ -42625,8 +40326,7 @@ - rostral blood island (zebrafish) - ZFA:0005029 + rostral blood island (zebrafish) @@ -42645,8 +40345,7 @@ - dorsal ciliary vein (zebrafish) - ZFA:0005030 + dorsal ciliary vein (zebrafish) @@ -42665,8 +40364,7 @@ - dorsal longitudinal vein (zebrafish) - ZFA:0005031 + dorsal longitudinal vein (zebrafish) @@ -42685,8 +40383,7 @@ - optic vein (zebrafish) - ZFA:0005032 + optic vein (zebrafish) @@ -42705,8 +40402,7 @@ - vertebral artery (zebrafish) - ZFA:0005033 + vertebral artery (zebrafish) @@ -42725,8 +40421,7 @@ - parachordal vessel (zebrafish) - ZFA:0005034 + parachordal vessel (zebrafish) @@ -42745,8 +40440,7 @@ - subintestinal vein (zebrafish) - ZFA:0005035 + subintestinal vein (zebrafish) @@ -42765,8 +40459,7 @@ - supraintestinal artery (zebrafish) - ZFA:0005036 + supraintestinal artery (zebrafish) @@ -42785,8 +40478,7 @@ - tail vasculature (zebrafish) - ZFA:0005037 + tail vasculature (zebrafish) @@ -42805,8 +40497,7 @@ - supraintestinal vein (zebrafish) - ZFA:0005038 + supraintestinal vein (zebrafish) @@ -42825,8 +40516,7 @@ - anterior lateral mesoderm (zebrafish) - ZFA:0005039 + anterior lateral mesoderm (zebrafish) @@ -42845,8 +40535,7 @@ - anterior lateral plate mesoderm (zebrafish) - ZFA:0005041 + anterior lateral plate mesoderm (zebrafish) @@ -42865,8 +40554,7 @@ - posterior lateral plate mesoderm (zebrafish) - ZFA:0005042 + posterior lateral plate mesoderm (zebrafish) @@ -42885,8 +40573,7 @@ - mole (zebrafish) - ZFA:0005043 + mole (zebrafish) @@ -42905,8 +40592,7 @@ - optic artery (zebrafish) - ZFA:0005044 + optic artery (zebrafish) @@ -42925,8 +40611,7 @@ - hyaloid artery (zebrafish) - ZFA:0005045 + hyaloid artery (zebrafish) @@ -42945,8 +40630,7 @@ - hyaloid vessel (zebrafish) - ZFA:0005046 + hyaloid vessel (zebrafish) @@ -42965,8 +40649,7 @@ - hyaloid vein (zebrafish) - ZFA:0005047 + hyaloid vein (zebrafish) @@ -42985,8 +40668,7 @@ - primitive prosencephalic artery (zebrafish) - ZFA:0005048 + primitive prosencephalic artery (zebrafish) @@ -43005,8 +40687,7 @@ - prosencephalic artery (zebrafish) - ZFA:0005049 + prosencephalic artery (zebrafish) @@ -43025,8 +40706,7 @@ - palatocerebral artery (zebrafish) - ZFA:0005050 + palatocerebral artery (zebrafish) @@ -43045,8 +40725,7 @@ - communicating vessel palatocerebral artery (zebrafish) - ZFA:0005051 + communicating vessel palatocerebral artery (zebrafish) @@ -43065,8 +40744,7 @@ - anterior mesencephalic central artery (zebrafish) - ZFA:0005052 + anterior mesencephalic central artery (zebrafish) @@ -43085,8 +40763,7 @@ - nasal ciliary artery (zebrafish) - ZFA:0005053 + nasal ciliary artery (zebrafish) @@ -43105,8 +40782,7 @@ - inner optic circle (zebrafish) - ZFA:0005054 + inner optic circle (zebrafish) @@ -43125,8 +40801,7 @@ - median palatocerebral vein (zebrafish) - ZFA:0005055 + median palatocerebral vein (zebrafish) @@ -43145,8 +40820,7 @@ - palatocerebral vein (zebrafish) - ZFA:0005056 + palatocerebral vein (zebrafish) @@ -43165,8 +40839,7 @@ - epicardium (zebrafish) - ZFA:0005057 + epicardium (zebrafish) @@ -43185,8 +40858,7 @@ - epicardium of ventricle (zebrafish) - ZFA:0005058 + epicardium of ventricle (zebrafish) @@ -43205,8 +40877,7 @@ - myocardium trabecular layer (zebrafish) - ZFA:0005059 + myocardium trabecular layer (zebrafish) @@ -43225,8 +40896,7 @@ - trabecular layer of ventricle (zebrafish) - ZFA:0005060 + trabecular layer of ventricle (zebrafish) @@ -43245,8 +40915,7 @@ - myocardium of ventricle (zebrafish) - ZFA:0005061 + myocardium of ventricle (zebrafish) @@ -43265,8 +40934,7 @@ - compact layer of ventricle (zebrafish) - ZFA:0005062 + compact layer of ventricle (zebrafish) @@ -43285,8 +40953,7 @@ - conducting system of heart (zebrafish) - ZFA:0005063 + conducting system of heart (zebrafish) @@ -43305,8 +40972,7 @@ - atrioventricular valve (zebrafish) - ZFA:0005064 + atrioventricular valve (zebrafish) @@ -43325,8 +40991,7 @@ - cardiac valve (zebrafish) - ZFA:0005065 + cardiac valve (zebrafish) @@ -43345,8 +41010,7 @@ - bulbus arteriosus outer layer (zebrafish) - ZFA:0005066 + bulbus arteriosus outer layer (zebrafish) @@ -43365,8 +41029,7 @@ - bulbus arteriosus middle layer (zebrafish) - ZFA:0005067 + bulbus arteriosus middle layer (zebrafish) @@ -43385,8 +41048,7 @@ - bulbus arteriosus inner layer (zebrafish) - ZFA:0005068 + bulbus arteriosus inner layer (zebrafish) @@ -43405,8 +41067,7 @@ - sinoatrial node (zebrafish) - ZFA:0005069 + sinoatrial node (zebrafish) @@ -43425,8 +41086,7 @@ - atrioventricular node (zebrafish) - ZFA:0005070 + atrioventricular node (zebrafish) @@ -43445,8 +41105,7 @@ - endocardial ring (zebrafish) - ZFA:0005072 + endocardial ring (zebrafish) @@ -43465,8 +41124,7 @@ - atrioventricular ring (zebrafish) - ZFA:0005073 + atrioventricular ring (zebrafish) @@ -43485,8 +41143,7 @@ - central cardiac conduction system (zebrafish) - ZFA:0005074 + central cardiac conduction system (zebrafish) @@ -43505,28 +41162,7 @@ - peripheral cardiac conduction system (zebrafish) - ZFA:0005075 - - - - - - - - - - - - - - - - - - - primordial vasculature (zebrafish) - ZFA:0005076 + peripheral cardiac conduction system (zebrafish) @@ -43545,8 +41181,7 @@ - vascular cord (zebrafish) - ZFA:0005077 + vascular cord (zebrafish) @@ -43565,8 +41200,7 @@ - middle mesencephalic central artery (zebrafish) - ZFA:0005078 + middle mesencephalic central artery (zebrafish) @@ -43585,8 +41219,7 @@ - posterior mesencephalic central artery (zebrafish) - ZFA:0005079 + posterior mesencephalic central artery (zebrafish) @@ -43605,8 +41238,7 @@ - anterior mesenteric artery (zebrafish) - ZFA:0005080 + anterior mesenteric artery (zebrafish) @@ -43625,8 +41257,7 @@ - internal carotid artery (zebrafish) - ZFA:0005081 + internal carotid artery (zebrafish) @@ -43645,8 +41276,7 @@ - dorsal branch nasal ciliary artery (zebrafish) - ZFA:0005082 + dorsal branch nasal ciliary artery (zebrafish) @@ -43665,8 +41295,7 @@ - ventral branch nasal ciliary artery (zebrafish) - ZFA:0005083 + ventral branch nasal ciliary artery (zebrafish) @@ -43685,8 +41314,7 @@ - metencephalic artery (zebrafish) - ZFA:0005084 + metencephalic artery (zebrafish) @@ -43705,8 +41333,7 @@ - nasal artery (zebrafish) - ZFA:0005085 + nasal artery (zebrafish) @@ -43725,8 +41352,7 @@ - subclavian artery (zebrafish) - ZFA:0005086 + subclavian artery (zebrafish) @@ -43745,8 +41371,7 @@ - pectoral vein (zebrafish) - ZFA:0005087 + pectoral vein (zebrafish) @@ -43765,8 +41390,7 @@ - posterior mesenteric artery (zebrafish) - ZFA:0005088 + posterior mesenteric artery (zebrafish) @@ -43785,8 +41409,7 @@ - swim bladder artery (zebrafish) - ZFA:0005089 + swim bladder artery (zebrafish) @@ -43805,8 +41428,7 @@ - hepatic portal vein (zebrafish) - ZFA:0005090 + hepatic portal vein (zebrafish) @@ -43825,8 +41447,7 @@ - hepatic sinusoid (zebrafish) - ZFA:0005091 + hepatic sinusoid (zebrafish) @@ -43845,8 +41466,7 @@ - mesencephalic vein (zebrafish) - ZFA:0005092 + mesencephalic vein (zebrafish) @@ -43865,8 +41485,7 @@ - nasal vein (zebrafish) - ZFA:0005093 + nasal vein (zebrafish) @@ -43885,8 +41504,7 @@ - optic choroid vascular plexus (zebrafish) - ZFA:0005094 + optic choroid vascular plexus (zebrafish) @@ -43905,8 +41523,7 @@ - appendage vasculature (zebrafish) - ZFA:0005095 + appendage vasculature (zebrafish) @@ -43925,8 +41542,7 @@ - pectoral appendage vasculature (zebrafish) - ZFA:0005096 + pectoral appendage vasculature (zebrafish) @@ -43945,8 +41561,7 @@ - caudal fin vasculature (zebrafish) - ZFA:0005097 + caudal fin vasculature (zebrafish) @@ -43965,8 +41580,7 @@ - central ray artery (zebrafish) - ZFA:0005098 + central ray artery (zebrafish) @@ -43985,8 +41599,7 @@ - ray vein (zebrafish) - ZFA:0005099 + ray vein (zebrafish) @@ -44005,8 +41618,7 @@ - intervessel commissure (zebrafish) - ZFA:0005100 + intervessel commissure (zebrafish) @@ -44025,8 +41637,7 @@ - interray vessel (zebrafish) - ZFA:0005101 + interray vessel (zebrafish) @@ -44045,8 +41656,7 @@ - presumptive median fin fold (zebrafish) - ZFA:0005102 + presumptive median fin fold (zebrafish) @@ -44065,8 +41675,7 @@ - presumptive ventral fin fold (zebrafish) - ZFA:0005103 + presumptive ventral fin fold (zebrafish) @@ -44085,8 +41694,7 @@ - presumptive dorsal fin fold (zebrafish) - ZFA:0005104 + presumptive dorsal fin fold (zebrafish) @@ -44105,8 +41713,7 @@ - lymph vasculature (zebrafish) - ZFA:0005105 + lymph vasculature (zebrafish) @@ -44125,8 +41732,7 @@ - longitudinal lateral lymphatic vessel (zebrafish) - ZFA:0005106 + longitudinal lateral lymphatic vessel (zebrafish) @@ -44145,8 +41751,7 @@ - pectoral lymphatic vessel (zebrafish) - ZFA:0005107 + pectoral lymphatic vessel (zebrafish) @@ -44165,8 +41770,7 @@ - facial lymphatic vessel (zebrafish) - ZFA:0005108 + facial lymphatic vessel (zebrafish) @@ -44185,8 +41789,7 @@ - jugular lymphatic vessel (zebrafish) - ZFA:0005109 + jugular lymphatic vessel (zebrafish) @@ -44205,8 +41808,7 @@ - thoracic duct (zebrafish) - ZFA:0005110 + thoracic duct (zebrafish) @@ -44225,8 +41827,7 @@ - medial forebrain bundle (zebrafish) - ZFA:0005111 + medial forebrain bundle (zebrafish) @@ -44245,8 +41846,7 @@ - dorsal lateral line (zebrafish) - ZFA:0005112 + dorsal lateral line (zebrafish) @@ -44265,8 +41865,7 @@ - dorsal lateral line neuromast (zebrafish) - ZFA:0005113 + dorsal lateral line neuromast (zebrafish) @@ -44285,8 +41884,7 @@ - middle lateral line system (zebrafish) - ZFA:0005114 + middle lateral line system (zebrafish) @@ -44305,8 +41903,7 @@ - primary posterior lateral line primordium (zebrafish) - ZFA:0005115 + primary posterior lateral line primordium (zebrafish) @@ -44325,8 +41922,7 @@ - secondary posterior lateral line primordium (zebrafish) - ZFA:0005116 + secondary posterior lateral line primordium (zebrafish) @@ -44345,8 +41941,7 @@ - anterior lateral line primordium (zebrafish) - ZFA:0005117 + anterior lateral line primordium (zebrafish) @@ -44365,8 +41960,7 @@ - middle lateral line primordium (zebrafish) - ZFA:0005118 + middle lateral line primordium (zebrafish) @@ -44385,8 +41979,7 @@ - barbel primordium (zebrafish) - ZFA:0005119 + barbel primordium (zebrafish) @@ -44405,8 +41998,7 @@ - peritoneum (zebrafish) - ZFA:0005120 + peritoneum (zebrafish) @@ -44425,8 +42017,7 @@ - middle lateral line placode (zebrafish) - ZFA:0005121 + middle lateral line placode (zebrafish) @@ -44445,8 +42036,7 @@ - dorsal axial hypoblast (zebrafish) - ZFA:0005122 + dorsal axial hypoblast (zebrafish) @@ -44465,8 +42055,7 @@ - digestive tract epithelium (zebrafish) - ZFA:0005123 + digestive tract epithelium (zebrafish) @@ -44485,8 +42074,7 @@ - intestinal epithelium (zebrafish) - ZFA:0005124 + intestinal epithelium (zebrafish) @@ -44505,8 +42093,7 @@ - intestinal villus (zebrafish) - ZFA:0005125 + intestinal villus (zebrafish) @@ -44525,8 +42112,7 @@ - intestinal bulb epithelium (zebrafish) - ZFA:0005126 + intestinal bulb epithelium (zebrafish) @@ -44545,8 +42131,7 @@ - epithelium of small intestine (zebrafish) - ZFA:0005127 + epithelium of small intestine (zebrafish) @@ -44565,8 +42150,7 @@ - colonic epithelium (zebrafish) - ZFA:0005128 + colonic epithelium (zebrafish) @@ -44585,8 +42169,7 @@ - peritoneal mesentery (zebrafish) - ZFA:0005129 + peritoneal mesentery (zebrafish) @@ -44605,8 +42188,7 @@ - dorsal mesentery (zebrafish) - ZFA:0005130 + dorsal mesentery (zebrafish) @@ -44625,8 +42207,7 @@ - parietal peritoneum (zebrafish) - ZFA:0005131 + parietal peritoneum (zebrafish) @@ -44645,8 +42226,7 @@ - visceral peritoneum (zebrafish) - ZFA:0005132 + visceral peritoneum (zebrafish) @@ -44665,8 +42245,7 @@ - ventral mesogastrium (zebrafish) - ZFA:0005133 + ventral mesogastrium (zebrafish) @@ -44685,8 +42264,7 @@ - dental epithelium (zebrafish) - ZFA:0005134 + dental epithelium (zebrafish) @@ -44705,8 +42283,7 @@ - primary dental epithelium (zebrafish) - ZFA:0005135 + primary dental epithelium (zebrafish) @@ -44725,8 +42302,7 @@ - inner dental epithelium (zebrafish) - ZFA:0005136 + inner dental epithelium (zebrafish) @@ -44745,8 +42321,7 @@ - outer dental epithelium (zebrafish) - ZFA:0005137 + outer dental epithelium (zebrafish) @@ -44765,8 +42340,7 @@ - tooth enamel organ (zebrafish) - ZFA:0005138 + tooth enamel organ (zebrafish) @@ -44785,8 +42359,7 @@ - uncondensed odontogenic mesenchyme (zebrafish) - ZFA:0005139 + uncondensed odontogenic mesenchyme (zebrafish) @@ -44805,8 +42378,7 @@ - odontogenic papilla (zebrafish) - ZFA:0005140 + odontogenic papilla (zebrafish) @@ -44825,8 +42397,7 @@ - dental pulp (zebrafish) - ZFA:0005141 + dental pulp (zebrafish) @@ -44845,8 +42416,7 @@ - enameloid (zebrafish) - ZFA:0005142 + enameloid (zebrafish) @@ -44865,8 +42435,7 @@ - dentine (zebrafish) - ZFA:0005143 + dentine (zebrafish) @@ -44885,8 +42454,7 @@ - ampullary nerve (zebrafish) - ZFA:0005144 + ampullary nerve (zebrafish) @@ -44905,8 +42473,7 @@ - muscle organ (zebrafish) - ZFA:0005145 + muscle organ (zebrafish) @@ -44925,8 +42492,7 @@ - area postrema (zebrafish) - ZFA:0005146 + area postrema (zebrafish) @@ -44945,8 +42511,7 @@ - regenerating anatomical structure (zebrafish) - ZFA:0005147 + regenerating anatomical structure (zebrafish) @@ -44965,8 +42530,7 @@ - apical epidermal cap (zebrafish) - ZFA:0005148 + apical epidermal cap (zebrafish) @@ -44985,8 +42549,7 @@ - distal epidermal cap of regenerating fin/limb (zebrafish) - ZFA:0005149 + distal epidermal cap of regenerating fin/limb (zebrafish) @@ -45005,8 +42568,7 @@ - basal regeneration epithelium of regenerating fin/limb (zebrafish) - ZFA:0005150 + basal regeneration epithelium of regenerating fin/limb (zebrafish) @@ -45025,8 +42587,7 @@ - synovial joint (zebrafish) - ZFA:0005153 + synovial joint (zebrafish) @@ -45045,8 +42606,7 @@ - synovial fluid (zebrafish) - ZFA:0005154 + synovial fluid (zebrafish) @@ -45065,8 +42625,7 @@ - cartilaginous joint (zebrafish) - ZFA:0005155 + cartilaginous joint (zebrafish) @@ -45085,8 +42644,7 @@ - fibrous joint (zebrafish) - ZFA:0005156 + fibrous joint (zebrafish) @@ -45105,8 +42663,7 @@ - tela choroidea of midbrain cerebral aqueduct (zebrafish) - ZFA:0005157 + tela choroidea of midbrain cerebral aqueduct (zebrafish) @@ -45125,8 +42682,7 @@ - tela choroidea of fourth ventricle (zebrafish) - ZFA:0005158 + tela choroidea of fourth ventricle (zebrafish) @@ -45145,8 +42701,7 @@ - tela choroidea of third ventricle (zebrafish) - ZFA:0005159 + tela choroidea of third ventricle (zebrafish) @@ -45165,8 +42720,7 @@ - tela choroidea of telencephalic ventricle (zebrafish) - ZFA:0005160 + tela choroidea of telencephalic ventricle (zebrafish) @@ -45185,8 +42739,7 @@ - hepatic artery (zebrafish) - ZFA:0005161 + hepatic artery (zebrafish) @@ -45205,8 +42758,7 @@ - digestive system duct (zebrafish) - ZFA:0005162 + digestive system duct (zebrafish) @@ -45225,8 +42777,7 @@ - bile canaliculus (zebrafish) - ZFA:0005163 + bile canaliculus (zebrafish) @@ -45245,8 +42796,7 @@ - biliary ductule (zebrafish) - ZFA:0005164 + biliary ductule (zebrafish) @@ -45265,8 +42815,7 @@ - common bile duct (zebrafish) - ZFA:0005165 + common bile duct (zebrafish) @@ -45285,8 +42834,7 @@ - cystic duct (zebrafish) - ZFA:0005166 + cystic duct (zebrafish) @@ -45305,8 +42853,7 @@ - hepatopancreatic ampulla (zebrafish) - ZFA:0005167 + hepatopancreatic ampulla (zebrafish) @@ -45325,8 +42872,7 @@ - central vein of liver (zebrafish) - ZFA:0005168 + central vein of liver (zebrafish) @@ -45345,8 +42891,7 @@ - intrahepatic bile duct (zebrafish) - ZFA:0005169 + intrahepatic bile duct (zebrafish) @@ -45365,8 +42910,7 @@ - extrahepatic duct (zebrafish) - ZFA:0005170 + extrahepatic duct (zebrafish) @@ -45385,8 +42929,7 @@ - duct (zebrafish) - ZFA:0005171 + duct (zebrafish) @@ -45405,8 +42948,7 @@ - left lobe of liver (zebrafish) - ZFA:0005172 + left lobe of liver (zebrafish) @@ -45425,8 +42967,7 @@ - right lobe of liver (zebrafish) - ZFA:0005173 + right lobe of liver (zebrafish) @@ -45445,8 +42986,7 @@ - ventral liver lobe (zebrafish) - ZFA:0005174 + ventral liver lobe (zebrafish) @@ -45465,8 +43005,7 @@ - choroid plexus vascular circuit (zebrafish) - ZFA:0005219 + choroid plexus vascular circuit (zebrafish) @@ -45485,8 +43024,7 @@ - larval melanophore stripe (zebrafish) - ZFA:0005220 + larval melanophore stripe (zebrafish) @@ -45505,8 +43043,7 @@ - dorsal larval melanophore stripe (zebrafish) - ZFA:0005221 + dorsal larval melanophore stripe (zebrafish) @@ -45525,8 +43062,7 @@ - ventral larval melanophore stripe (zebrafish) - ZFA:0005222 + ventral larval melanophore stripe (zebrafish) @@ -45545,8 +43081,7 @@ - lateral larval melanophore stripe (zebrafish) - ZFA:0005223 + lateral larval melanophore stripe (zebrafish) @@ -45565,8 +43100,7 @@ - yolk larval melanophore stripe (zebrafish) - ZFA:0005224 + yolk larval melanophore stripe (zebrafish) @@ -45585,8 +43119,7 @@ - lower lip (zebrafish) - ZFA:0005225 + lower lip (zebrafish) @@ -45605,8 +43138,7 @@ - upper lip (zebrafish) - ZFA:0005226 + upper lip (zebrafish) @@ -45625,8 +43157,7 @@ - protoneuromast (zebrafish) - ZFA:0005227 + protoneuromast (zebrafish) @@ -45645,8 +43176,7 @@ - optic choroid (zebrafish) - ZFA:0005229 + optic choroid (zebrafish) @@ -45665,8 +43195,7 @@ - trans-choroid plexus branch (zebrafish) - ZFA:0005248 + trans-choroid plexus branch (zebrafish) @@ -45685,8 +43214,7 @@ - vasculature (zebrafish) - ZFA:0005249 + vasculature (zebrafish) @@ -45705,8 +43233,7 @@ - capillary (zebrafish) - ZFA:0005250 + capillary (zebrafish) @@ -45725,8 +43252,7 @@ - microcirculatory vessel (zebrafish) - ZFA:0005251 + microcirculatory vessel (zebrafish) @@ -45745,8 +43271,7 @@ - lymphatic capillary (zebrafish) - ZFA:0005252 + lymphatic capillary (zebrafish) @@ -45765,8 +43290,7 @@ - glomerular parietal epithelium (zebrafish) - ZFA:0005253 + glomerular parietal epithelium (zebrafish) @@ -45785,8 +43309,7 @@ - glomerular capsule (zebrafish) - ZFA:0005254 + glomerular capsule (zebrafish) @@ -45805,8 +43328,7 @@ - arteriole (zebrafish) - ZFA:0005255 + arteriole (zebrafish) @@ -45825,8 +43347,7 @@ - intervillus pockets (zebrafish) - ZFA:0005256 + intervillus pockets (zebrafish) @@ -45845,8 +43366,7 @@ - blood vessel endothelium (zebrafish) - ZFA:0005257 + blood vessel endothelium (zebrafish) @@ -45865,8 +43385,7 @@ - lymphatic vessel endothelium (zebrafish) - ZFA:0005258 + lymphatic vessel endothelium (zebrafish) @@ -45885,8 +43404,7 @@ - continuous capillary (zebrafish) - ZFA:0005259 + continuous capillary (zebrafish) @@ -45905,8 +43423,7 @@ - fenestrated capillary (zebrafish) - ZFA:0005260 + fenestrated capillary (zebrafish) @@ -45925,8 +43442,7 @@ - sinusoid (zebrafish) - ZFA:0005261 + sinusoid (zebrafish) @@ -45945,8 +43461,7 @@ - caudal fin dorsal procurrent ray (zebrafish) - ZFA:0005262 + caudal fin dorsal procurrent ray (zebrafish) @@ -45965,8 +43480,7 @@ - caudal fin ventral procurrent ray (zebrafish) - ZFA:0005263 + caudal fin ventral procurrent ray (zebrafish) @@ -45985,8 +43499,7 @@ - primordial ligament (zebrafish) - ZFA:0005264 + primordial ligament (zebrafish) @@ -46005,8 +43518,7 @@ - premaxillary-maxillary ligament (zebrafish) - ZFA:0005265 + premaxillary-maxillary ligament (zebrafish) @@ -46025,8 +43537,7 @@ - dorsal longitudinal fasciculus (zebrafish) - ZFA:0005266 + dorsal longitudinal fasciculus (zebrafish) @@ -46045,8 +43556,7 @@ - erector muscle (zebrafish) - ZFA:0005267 + erector muscle (zebrafish) @@ -46065,8 +43575,7 @@ - adductor muscle (zebrafish) - ZFA:0005268 + adductor muscle (zebrafish) @@ -46085,8 +43594,7 @@ - abductor muscle (zebrafish) - ZFA:0005269 + abductor muscle (zebrafish) @@ -46105,8 +43613,7 @@ - depressor muscle (zebrafish) - ZFA:0005270 + depressor muscle (zebrafish) @@ -46125,8 +43632,7 @@ - flexor muscle (zebrafish) - ZFA:0005271 + flexor muscle (zebrafish) @@ -46145,8 +43651,7 @@ - immature gonad (zebrafish) - ZFA:0005272 + immature gonad (zebrafish) @@ -46165,8 +43670,7 @@ - intestinal mucosal muscle (zebrafish) - ZFA:0005273 + intestinal mucosal muscle (zebrafish) @@ -46185,8 +43689,7 @@ - smooth muscle tissue (zebrafish) - ZFA:0005274 + smooth muscle tissue (zebrafish) @@ -46205,8 +43708,7 @@ - arrector muscle (zebrafish) - ZFA:0005275 + arrector muscle (zebrafish) @@ -46225,8 +43727,7 @@ - inclinator muscle (zebrafish) - ZFA:0005276 + inclinator muscle (zebrafish) @@ -46245,8 +43746,7 @@ - skeletal muscle organ (zebrafish) - ZFA:0005277 + skeletal muscle organ (zebrafish) @@ -46265,8 +43765,7 @@ - enteric circular muscle (zebrafish) - ZFA:0005279 + enteric circular muscle (zebrafish) @@ -46285,8 +43784,7 @@ - cardiac muscle tissue (zebrafish) - ZFA:0005280 + cardiac muscle tissue (zebrafish) @@ -46305,8 +43803,7 @@ - renal corpuscle (zebrafish) - ZFA:0005281 + renal corpuscle (zebrafish) @@ -46325,8 +43822,7 @@ - nephron (zebrafish) - ZFA:0005282 + nephron (zebrafish) @@ -46345,8 +43841,7 @@ - Bowman's space (zebrafish) - ZFA:0005283 + Bowman's space (zebrafish) @@ -46365,8 +43860,7 @@ - glomerular capillary (zebrafish) - ZFA:0005284 + glomerular capillary (zebrafish) @@ -46385,8 +43879,7 @@ - glomerular basement membrane (zebrafish) - ZFA:0005285 + glomerular basement membrane (zebrafish) @@ -46405,8 +43898,7 @@ - lamina densa of glomerular basement membrane (zebrafish) - ZFA:0005286 + lamina densa of glomerular basement membrane (zebrafish) @@ -46425,8 +43917,7 @@ - lamina rara interna (zebrafish) - ZFA:0005287 + lamina rara interna (zebrafish) @@ -46445,8 +43936,7 @@ - lamina rara externa (zebrafish) - ZFA:0005288 + lamina rara externa (zebrafish) @@ -46465,8 +43955,7 @@ - renal duct (zebrafish) - ZFA:0005289 + renal duct (zebrafish) @@ -46485,8 +43974,7 @@ - proximal convoluted tubule (zebrafish) - ZFA:0005290 + proximal convoluted tubule (zebrafish) @@ -46505,8 +43993,7 @@ - proximal straight tubule (zebrafish) - ZFA:0005291 + proximal straight tubule (zebrafish) @@ -46525,8 +44012,7 @@ - distal late tubule (zebrafish) - ZFA:0005292 + distal late tubule (zebrafish) @@ -46545,8 +44031,7 @@ - distal early tubule (zebrafish) - ZFA:0005293 + distal early tubule (zebrafish) @@ -46565,8 +44050,7 @@ - collecting duct of renal tubule (zebrafish) - ZFA:0005294 + collecting duct of renal tubule (zebrafish) @@ -46585,8 +44069,7 @@ - axial blood vessel (zebrafish) - ZFA:0005295 + axial blood vessel (zebrafish) @@ -46605,8 +44088,7 @@ - cranial blood vasculature (zebrafish) - ZFA:0005297 + cranial blood vasculature (zebrafish) @@ -46625,8 +44107,7 @@ - cranial lymph vasculature (zebrafish) - ZFA:0005298 + cranial lymph vasculature (zebrafish) @@ -46645,8 +44126,7 @@ - appendage blood vessel (zebrafish) - ZFA:0005299 + appendage blood vessel (zebrafish) @@ -46665,8 +44145,7 @@ - appendage lymph vessel (zebrafish) - ZFA:0005300 + appendage lymph vessel (zebrafish) @@ -46685,8 +44164,7 @@ - pectoral appendage blood vessel (zebrafish) - ZFA:0005301 + pectoral appendage blood vessel (zebrafish) @@ -46705,8 +44183,7 @@ - pectoral appendage lymph vessel (zebrafish) - ZFA:0005302 + pectoral appendage lymph vessel (zebrafish) @@ -46725,8 +44202,7 @@ - caudal fin lymph vessel (zebrafish) - ZFA:0005303 + caudal fin lymph vessel (zebrafish) @@ -46745,8 +44221,7 @@ - caudal fin blood vessel (zebrafish) - ZFA:0005304 + caudal fin blood vessel (zebrafish) @@ -46765,8 +44240,7 @@ - kidney vasculature (zebrafish) - ZFA:0005305 + kidney vasculature (zebrafish) @@ -46785,8 +44259,7 @@ - kidney blood vessel (zebrafish) - ZFA:0005306 + kidney blood vessel (zebrafish) @@ -46805,8 +44278,7 @@ - renal afferent arteriole (zebrafish) - ZFA:0005307 + renal afferent arteriole (zebrafish) @@ -46825,8 +44297,7 @@ - renal efferent arteriole (zebrafish) - ZFA:0005308 + renal efferent arteriole (zebrafish) @@ -46845,8 +44316,7 @@ - pronephric glomerular capillary (zebrafish) - ZFA:0005309 + pronephric glomerular capillary (zebrafish) @@ -46865,8 +44335,7 @@ - glomerular capsule (zebrafish) - ZFA:0005310 + glomerular capsule (zebrafish) @@ -46885,8 +44354,7 @@ - pronephric glomerular capsule epithelium (zebrafish) - ZFA:0005311 + pronephric glomerular capsule epithelium (zebrafish) @@ -46905,8 +44373,7 @@ - Bowman's space (zebrafish) - ZFA:0005312 + Bowman's space (zebrafish) @@ -46925,8 +44392,7 @@ - pronephric glomerular basement membrane (zebrafish) - ZFA:0005313 + pronephric glomerular basement membrane (zebrafish) @@ -46945,8 +44411,7 @@ - blood vessel (zebrafish) - ZFA:0005314 + blood vessel (zebrafish) @@ -46965,8 +44430,7 @@ - venule (zebrafish) - ZFA:0005315 + venule (zebrafish) @@ -46985,8 +44449,7 @@ - fin fold pectoral fin bud (zebrafish) - ZFA:0005316 + fin fold pectoral fin bud (zebrafish) @@ -47005,8 +44468,7 @@ - pectoral fin fold (zebrafish) - ZFA:0005317 + pectoral fin fold (zebrafish) @@ -47025,8 +44487,7 @@ - intersegmental lymph vessel (zebrafish) - ZFA:0005319 + intersegmental lymph vessel (zebrafish) @@ -47045,8 +44506,7 @@ - dorsal longitudinal lymphatic vessel (zebrafish) - ZFA:0005320 + dorsal longitudinal lymphatic vessel (zebrafish) @@ -47065,8 +44525,7 @@ - blood vessel smooth muscle (zebrafish) - ZFA:0005321 + blood vessel smooth muscle (zebrafish) @@ -47085,8 +44544,7 @@ - tongue (zebrafish) - ZFA:0005333 + tongue (zebrafish) @@ -47105,8 +44563,7 @@ - lip epithelium (zebrafish) - ZFA:0005334 + lip epithelium (zebrafish) @@ -47125,8 +44582,7 @@ - swim bladder bud (zebrafish) - ZFA:0005335 + swim bladder bud (zebrafish) @@ -47145,8 +44601,7 @@ - anterior swim bladder bud (zebrafish) - ZFA:0005337 + anterior swim bladder bud (zebrafish) @@ -47165,8 +44620,7 @@ - posterior recess (zebrafish) - ZFA:0005338 + posterior recess (zebrafish) @@ -47185,8 +44639,7 @@ - nucleus of the lateral recess (zebrafish) - ZFA:0005339 + nucleus of the lateral recess (zebrafish) @@ -47205,8 +44658,7 @@ - nucleus of the posterior recess (zebrafish) - ZFA:0005340 + nucleus of the posterior recess (zebrafish) @@ -47225,8 +44677,7 @@ - medial longitudinal catecholaminergic tract (zebrafish) - ZFA:0005341 + medial longitudinal catecholaminergic tract (zebrafish) @@ -47245,8 +44696,7 @@ - endohypothalamic tract (zebrafish) - ZFA:0005343 + endohypothalamic tract (zebrafish) @@ -47265,8 +44715,7 @@ - preopticohypothalamic tract (zebrafish) - ZFA:0005344 + preopticohypothalamic tract (zebrafish) @@ -47285,8 +44734,7 @@ - adipose tissue (zebrafish) - ZFA:0005345 + adipose tissue (zebrafish) @@ -47305,8 +44753,7 @@ - extrapancreatic duct (zebrafish) - ZFA:0005346 + extrapancreatic duct (zebrafish) @@ -47325,8 +44772,7 @@ - vertebral element 5 (zebrafish) - ZFA:0005347 + vertebral element 5 (zebrafish) @@ -47345,8 +44791,7 @@ - vertebral element 6 (zebrafish) - ZFA:0005348 + vertebral element 6 (zebrafish) @@ -47365,8 +44810,7 @@ - vertebral element 7 (zebrafish) - ZFA:0005349 + vertebral element 7 (zebrafish) @@ -47385,8 +44829,7 @@ - vertebral element 8 (zebrafish) - ZFA:0005350 + vertebral element 8 (zebrafish) @@ -47405,8 +44848,7 @@ - vertebral element 9 (zebrafish) - ZFA:0005351 + vertebral element 9 (zebrafish) @@ -47425,8 +44867,7 @@ - vertebral element 12 (zebrafish) - ZFA:0005352 + vertebral element 12 (zebrafish) @@ -47445,8 +44886,7 @@ - vertebral element 10 (zebrafish) - ZFA:0005353 + vertebral element 10 (zebrafish) @@ -47465,8 +44905,7 @@ - vertebral element 11 (zebrafish) - ZFA:0005354 + vertebral element 11 (zebrafish) @@ -47485,8 +44924,7 @@ - dorsal fin ray 1 (zebrafish) - ZFA:0005355 + dorsal fin ray 1 (zebrafish) @@ -47505,8 +44943,7 @@ - dorsal fin ray 2 (zebrafish) - ZFA:0005356 + dorsal fin ray 2 (zebrafish) @@ -47525,8 +44962,7 @@ - dorsal fin ray 3 (zebrafish) - ZFA:0005357 + dorsal fin ray 3 (zebrafish) @@ -47545,8 +44981,7 @@ - dorsal fin ray 4 (zebrafish) - ZFA:0005358 + dorsal fin ray 4 (zebrafish) @@ -47565,8 +45000,7 @@ - dorsal fin ray 5 (zebrafish) - ZFA:0005359 + dorsal fin ray 5 (zebrafish) @@ -47585,8 +45019,7 @@ - dorsal fin ray 6 (zebrafish) - ZFA:0005360 + dorsal fin ray 6 (zebrafish) @@ -47605,8 +45038,7 @@ - dorsal fin ray 7 (zebrafish) - ZFA:0005361 + dorsal fin ray 7 (zebrafish) @@ -47625,8 +45057,7 @@ - dorsal fin proximal radial bone 1 (zebrafish) - ZFA:0005362 + dorsal fin proximal radial bone 1 (zebrafish) @@ -47645,8 +45076,7 @@ - dorsal fin proximal radial bone 2 (zebrafish) - ZFA:0005363 + dorsal fin proximal radial bone 2 (zebrafish) @@ -47665,8 +45095,7 @@ - dorsal fin pterygiophore 1 (zebrafish) - ZFA:0005364 + dorsal fin pterygiophore 1 (zebrafish) @@ -47685,8 +45114,7 @@ - dorsal fin pterygiophore 2 (zebrafish) - ZFA:0005365 + dorsal fin pterygiophore 2 (zebrafish) @@ -47705,8 +45133,7 @@ - dorsal fin pterygiophore 3 (zebrafish) - ZFA:0005366 + dorsal fin pterygiophore 3 (zebrafish) @@ -47725,8 +45152,7 @@ - dorsal fin pterygiophore 4 (zebrafish) - ZFA:0005367 + dorsal fin pterygiophore 4 (zebrafish) @@ -47745,8 +45171,7 @@ - dorsal fin pterygiophore 5 (zebrafish) - ZFA:0005368 + dorsal fin pterygiophore 5 (zebrafish) @@ -47765,8 +45190,7 @@ - dorsal fin pterygiophore 6 (zebrafish) - ZFA:0005369 + dorsal fin pterygiophore 6 (zebrafish) @@ -47785,8 +45209,7 @@ - dorsal fin pterygiophore 7 (zebrafish) - ZFA:0005370 + dorsal fin pterygiophore 7 (zebrafish) @@ -47805,8 +45228,7 @@ - dorsal fin pterygiophore 8 (zebrafish) - ZFA:0005371 + dorsal fin pterygiophore 8 (zebrafish) @@ -47825,8 +45247,7 @@ - dorsal fin distal radial bone 1 (zebrafish) - ZFA:0005372 + dorsal fin distal radial bone 1 (zebrafish) @@ -47845,8 +45266,7 @@ - dorsal fin distal radial bone 2 (zebrafish) - ZFA:0005373 + dorsal fin distal radial bone 2 (zebrafish) @@ -47865,8 +45285,7 @@ - dorsal fin distal radial bone 3 (zebrafish) - ZFA:0005374 + dorsal fin distal radial bone 3 (zebrafish) @@ -47885,8 +45304,7 @@ - dorsal fin distal radial bone 4 (zebrafish) - ZFA:0005375 + dorsal fin distal radial bone 4 (zebrafish) @@ -47905,8 +45323,7 @@ - dorsal fin distal radial bone 5 (zebrafish) - ZFA:0005376 + dorsal fin distal radial bone 5 (zebrafish) @@ -47925,8 +45342,7 @@ - dorsal fin distal radial bone 6 (zebrafish) - ZFA:0005377 + dorsal fin distal radial bone 6 (zebrafish) @@ -47945,8 +45361,7 @@ - dorsal fin distal radial bone 7 (zebrafish) - ZFA:0005378 + dorsal fin distal radial bone 7 (zebrafish) @@ -47965,8 +45380,7 @@ - dorsal fin distal radial bone 8 (zebrafish) - ZFA:0005379 + dorsal fin distal radial bone 8 (zebrafish) @@ -47985,8 +45399,7 @@ - dorsal fin proximal radial bone 3 (zebrafish) - ZFA:0005380 + dorsal fin proximal radial bone 3 (zebrafish) @@ -48005,8 +45418,7 @@ - dorsal fin proximal radial bone 4 (zebrafish) - ZFA:0005381 + dorsal fin proximal radial bone 4 (zebrafish) @@ -48025,8 +45437,7 @@ - dorsal fin proximal radial bone 5 (zebrafish) - ZFA:0005382 + dorsal fin proximal radial bone 5 (zebrafish) @@ -48045,8 +45456,7 @@ - dorsal fin proximal radial bone 6 (zebrafish) - ZFA:0005383 + dorsal fin proximal radial bone 6 (zebrafish) @@ -48065,8 +45475,7 @@ - dorsal fin proximal radial bone 7 (zebrafish) - ZFA:0005384 + dorsal fin proximal radial bone 7 (zebrafish) @@ -48085,8 +45494,7 @@ - dorsal fin proximal radial bone 8 (zebrafish) - ZFA:0005385 + dorsal fin proximal radial bone 8 (zebrafish) @@ -48105,8 +45513,7 @@ - bone foramen (zebrafish) - ZFA:0005386 + bone foramen (zebrafish) @@ -48125,8 +45532,7 @@ - foramen magnum (zebrafish) - ZFA:0005387 + foramen magnum (zebrafish) @@ -48145,8 +45551,7 @@ - bone fossa (zebrafish) - ZFA:0005388 + bone fossa (zebrafish) @@ -48165,8 +45570,7 @@ - gill opening (zebrafish) - ZFA:0005389 + gill opening (zebrafish) @@ -48185,8 +45589,7 @@ - gill ray (zebrafish) - ZFA:0005390 + gill ray (zebrafish) @@ -48205,8 +45608,7 @@ - head sensory canal system (zebrafish) - ZFA:0005391 + head sensory canal system (zebrafish) @@ -48225,8 +45627,7 @@ - infraorbital sensory canal (zebrafish) - ZFA:0005392 + infraorbital sensory canal (zebrafish) @@ -48245,8 +45646,7 @@ - otic sensory canal (zebrafish) - ZFA:0005393 + otic sensory canal (zebrafish) @@ -48265,8 +45665,7 @@ - post-otic sensory canal (zebrafish) - ZFA:0005394 + post-otic sensory canal (zebrafish) @@ -48285,8 +45684,7 @@ - preoperculo-mandibular sensory canal (zebrafish) - ZFA:0005395 + preoperculo-mandibular sensory canal (zebrafish) @@ -48305,8 +45703,7 @@ - supraorbital sensory canal (zebrafish) - ZFA:0005396 + supraorbital sensory canal (zebrafish) @@ -48325,8 +45722,7 @@ - hyoideomandibular nerve (zebrafish) - ZFA:0005397 + hyoideomandibular nerve (zebrafish) @@ -48345,8 +45741,7 @@ - anal fin actinotrichium (zebrafish) - ZFA:0005398 + anal fin actinotrichium (zebrafish) @@ -48365,8 +45760,7 @@ - anal fin ray 1 (zebrafish) - ZFA:0005399 + anal fin ray 1 (zebrafish) @@ -48385,8 +45779,7 @@ - anal fin ray 2 (zebrafish) - ZFA:0005400 + anal fin ray 2 (zebrafish) @@ -48405,8 +45798,7 @@ - anal fin ray 3 (zebrafish) - ZFA:0005401 + anal fin ray 3 (zebrafish) @@ -48425,8 +45817,7 @@ - anal fin ray 4 (zebrafish) - ZFA:0005402 + anal fin ray 4 (zebrafish) @@ -48445,8 +45836,7 @@ - anal fin ray 5 (zebrafish) - ZFA:0005403 + anal fin ray 5 (zebrafish) @@ -48465,8 +45855,7 @@ - anal fin ray 6 (zebrafish) - ZFA:0005404 + anal fin ray 6 (zebrafish) @@ -48485,8 +45874,7 @@ - anal fin ray 7 (zebrafish) - ZFA:0005405 + anal fin ray 7 (zebrafish) @@ -48505,8 +45893,7 @@ - anterior myodome (zebrafish) - ZFA:0005406 + anterior myodome (zebrafish) @@ -48525,8 +45912,7 @@ - anterior nasal barbel (zebrafish) - ZFA:0005407 + anterior nasal barbel (zebrafish) @@ -48545,8 +45931,7 @@ - maxillary barbel (zebrafish) - ZFA:0005408 + maxillary barbel (zebrafish) @@ -48565,8 +45950,7 @@ - pars superior ear (zebrafish) - ZFA:0005409 + pars superior ear (zebrafish) @@ -48585,30 +45969,7 @@ - pars inferior ear (zebrafish) - ZFA:0005410 - - - - - - - - - - - - - - - - - - - - common crus (zebrafish) - common crus of semicircular duct (zebrafish) - ZFA:0005411 + pars inferior ear (zebrafish) @@ -48627,8 +45988,7 @@ - transverse canal (zebrafish) - ZFA:0005412 + transverse canal (zebrafish) @@ -48647,8 +46007,7 @@ - perilymph (zebrafish) - ZFA:0005413 + perilymph (zebrafish) @@ -48667,8 +46026,7 @@ - endolymph (zebrafish) - ZFA:0005414 + endolymph (zebrafish) @@ -48687,8 +46045,7 @@ - inner ear foramen (zebrafish) - ZFA:0005415 + inner ear foramen (zebrafish) @@ -48707,8 +46064,7 @@ - sacculoagenar foramen (zebrafish) - ZFA:0005416 + sacculoagenar foramen (zebrafish) @@ -48727,8 +46083,7 @@ - auditory fenestra (zebrafish) - ZFA:0005418 + auditory fenestra (zebrafish) @@ -48747,8 +46102,7 @@ - auditory foramen (zebrafish) - ZFA:0005419 + auditory foramen (zebrafish) @@ -48767,8 +46121,7 @@ - autopalatine-lateral ethmoid joint (zebrafish) - ZFA:0005420 + autopalatine-lateral ethmoid joint (zebrafish) @@ -48787,8 +46140,7 @@ - autopalatine-maxillary joint (zebrafish) - ZFA:0005421 + autopalatine-maxillary joint (zebrafish) @@ -48807,8 +46159,7 @@ - autopalatine-vomer joint (zebrafish) - ZFA:0005422 + autopalatine-vomer joint (zebrafish) @@ -48827,8 +46178,7 @@ - basioccipital-exoccipital joint (zebrafish) - ZFA:0005423 + basioccipital-exoccipital joint (zebrafish) @@ -48847,8 +46197,7 @@ - caudal fin actinotrichium (zebrafish) - ZFA:0005424 + caudal fin actinotrichium (zebrafish) @@ -48867,8 +46216,7 @@ - serous membrane (zebrafish) - ZFA:0005425 + serous membrane (zebrafish) @@ -48887,8 +46235,7 @@ - coracoid foramen (zebrafish) - ZFA:0005426 + coracoid foramen (zebrafish) @@ -48907,8 +46254,7 @@ - dentary foramen (zebrafish) - ZFA:0005427 + dentary foramen (zebrafish) @@ -48927,8 +46273,7 @@ - optic foramen (zebrafish) - ZFA:0005428 + optic foramen (zebrafish) @@ -48947,8 +46292,7 @@ - olfactory nerve foramen (zebrafish) - ZFA:0005429 + olfactory nerve foramen (zebrafish) @@ -48967,8 +46311,7 @@ - orbital foramen (zebrafish) - ZFA:0005430 + orbital foramen (zebrafish) @@ -48987,8 +46330,7 @@ - scapular foramen (zebrafish) - ZFA:0005431 + scapular foramen (zebrafish) @@ -49007,8 +46349,7 @@ - superficial ophthalmic nerve foramen (zebrafish) - ZFA:0005432 + superficial ophthalmic nerve foramen (zebrafish) @@ -49027,8 +46368,7 @@ - mental barbel (zebrafish) - ZFA:0005433 + mental barbel (zebrafish) @@ -49047,8 +46387,7 @@ - cusp of tooth (zebrafish) - ZFA:0005434 + cusp of tooth (zebrafish) @@ -49067,8 +46406,7 @@ - actinotrichium (zebrafish) - ZFA:0005435 + actinotrichium (zebrafish) @@ -49087,8 +46425,7 @@ - articular fossa of opercle (zebrafish) - ZFA:0005442 + articular fossa of opercle (zebrafish) @@ -49107,8 +46444,7 @@ - sensory canal (zebrafish) - ZFA:0005443 + sensory canal (zebrafish) @@ -49127,8 +46463,7 @@ - trunk sensory canal (zebrafish) - ZFA:0005444 + trunk sensory canal (zebrafish) @@ -49147,8 +46482,7 @@ - supratemporal sensory canal (zebrafish) - ZFA:0005445 + supratemporal sensory canal (zebrafish) @@ -49167,8 +46501,7 @@ - sensory canal tubule (zebrafish) - ZFA:0005447 + sensory canal tubule (zebrafish) @@ -49187,8 +46520,7 @@ - preopercular sensory canal (zebrafish) - ZFA:0005448 + preopercular sensory canal (zebrafish) @@ -49207,8 +46539,7 @@ - pore (zebrafish) - ZFA:0005449 + pore (zebrafish) @@ -49227,8 +46558,7 @@ - mandibular sensory canal (zebrafish) - ZFA:0005451 + mandibular sensory canal (zebrafish) @@ -49247,8 +46577,7 @@ - subtemporal fossa (zebrafish) - ZFA:0005454 + subtemporal fossa (zebrafish) @@ -49267,8 +46596,7 @@ - dorsal hypohyal-urohyal joint (zebrafish) - ZFA:0005457 + dorsal hypohyal-urohyal joint (zebrafish) @@ -49287,8 +46615,7 @@ - dorsal hypohyal-ventral hypohyal joint (zebrafish) - ZFA:0005458 + dorsal hypohyal-ventral hypohyal joint (zebrafish) @@ -49307,8 +46634,7 @@ - perilymphatic space (zebrafish) - ZFA:0005459 + perilymphatic space (zebrafish) @@ -49327,8 +46653,7 @@ - perilymphatic channel (zebrafish) - ZFA:0005461 + perilymphatic channel (zebrafish) @@ -49347,8 +46672,7 @@ - dentary-anguloarticular joint (zebrafish) - ZFA:0005464 + dentary-anguloarticular joint (zebrafish) @@ -49367,8 +46691,7 @@ - ceratohyal-branchiostegal ray joint (zebrafish) - ZFA:0005465 + ceratohyal-branchiostegal ray joint (zebrafish) @@ -49387,8 +46710,7 @@ - ceratohyal-ventral hypohyal joint (zebrafish) - ZFA:0005466 + ceratohyal-ventral hypohyal joint (zebrafish) @@ -49407,8 +46729,7 @@ - ceratohyal-dorsal hypohyal joint (zebrafish) - ZFA:0005467 + ceratohyal-dorsal hypohyal joint (zebrafish) @@ -49427,8 +46748,7 @@ - frontal-pterotic joint (zebrafish) - ZFA:0005468 + frontal-pterotic joint (zebrafish) @@ -49447,8 +46767,7 @@ - hyomandibula-metapterygoid joint (zebrafish) - ZFA:0005469 + hyomandibula-metapterygoid joint (zebrafish) @@ -49467,8 +46786,7 @@ - inter-coracoid joint (zebrafish) - ZFA:0005470 + inter-coracoid joint (zebrafish) @@ -49487,8 +46805,7 @@ - inter-basipterygium joint (zebrafish) - ZFA:0005471 + inter-basipterygium joint (zebrafish) @@ -49507,8 +46824,7 @@ - inter-frontal joint (zebrafish) - ZFA:0005472 + inter-frontal joint (zebrafish) @@ -49527,8 +46843,7 @@ - interhyal-epihyal joint (zebrafish) - ZFA:0005473 + interhyal-epihyal joint (zebrafish) @@ -49547,8 +46862,7 @@ - inter-hypobranchial 3 joint (zebrafish) - ZFA:0005474 + inter-hypobranchial 3 joint (zebrafish) @@ -49567,8 +46881,7 @@ - inter-premaxillary joint (zebrafish) - ZFA:0005475 + inter-premaxillary joint (zebrafish) @@ -49587,8 +46900,7 @@ - inter-ventral hypohyal joint (zebrafish) - ZFA:0005476 + inter-ventral hypohyal joint (zebrafish) @@ -49607,8 +46919,7 @@ - lateral ethmoid-frontal joint (zebrafish) - ZFA:0005477 + lateral ethmoid-frontal joint (zebrafish) @@ -49627,8 +46938,7 @@ - opercle-interopercle joint (zebrafish) - ZFA:0005478 + opercle-interopercle joint (zebrafish) @@ -49647,8 +46957,7 @@ - orbitosphenoid-lateral ethmoid joint (zebrafish) - ZFA:0005479 + orbitosphenoid-lateral ethmoid joint (zebrafish) @@ -49667,8 +46976,7 @@ - orbitosphenoid-prootic joint (zebrafish) - ZFA:0005480 + orbitosphenoid-prootic joint (zebrafish) @@ -49687,8 +46995,7 @@ - prootic-exoccipital joint (zebrafish) - ZFA:0005481 + prootic-exoccipital joint (zebrafish) @@ -49707,8 +47014,7 @@ - prootic-pterosphenoid joint (zebrafish) - ZFA:0005482 + prootic-pterosphenoid joint (zebrafish) @@ -49727,8 +47033,7 @@ - pterosphenoid-orbitosphenoid joint (zebrafish) - ZFA:0005483 + pterosphenoid-orbitosphenoid joint (zebrafish) @@ -49747,8 +47052,7 @@ - quadrate-articular joint (zebrafish) - ZFA:0005484 + quadrate-articular joint (zebrafish) @@ -49767,8 +47071,7 @@ - quadrate-hyomandibula joint (zebrafish) - ZFA:0005485 + quadrate-hyomandibula joint (zebrafish) @@ -49787,8 +47090,7 @@ - quadrate-metapterygoid joint (zebrafish) - ZFA:0005486 + quadrate-metapterygoid joint (zebrafish) @@ -49807,8 +47109,7 @@ - ventral hypohyal-urohyal joint (zebrafish) - ZFA:0005487 + ventral hypohyal-urohyal joint (zebrafish) @@ -49827,8 +47128,7 @@ - mandibular symphysis (zebrafish) - ZFA:0005488 + mandibular symphysis (zebrafish) @@ -49847,8 +47147,7 @@ - pro-otic fossa (zebrafish) - ZFA:0005492 + pro-otic fossa (zebrafish) @@ -49867,8 +47166,7 @@ - recessus lateralis (zebrafish) - ZFA:0005493 + recessus lateralis (zebrafish) @@ -49887,8 +47185,7 @@ - skeletal element (zebrafish) - ZFA:0005494 + skeletal element (zebrafish) @@ -49907,8 +47204,7 @@ - skin flap (zebrafish) - ZFA:0005495 + skin flap (zebrafish) @@ -49927,8 +47223,7 @@ - snout (zebrafish) - ZFA:0005496 + snout (zebrafish) @@ -49947,8 +47242,7 @@ - epihyal-ceratohyal joint (zebrafish) - ZFA:0005497 + epihyal-ceratohyal joint (zebrafish) @@ -49967,8 +47261,7 @@ - epihyal-branchiostegal ray joint (zebrafish) - ZFA:0005498 + epihyal-branchiostegal ray joint (zebrafish) @@ -49987,8 +47280,7 @@ - scale circulus (zebrafish) - ZFA:0005499 + scale circulus (zebrafish) @@ -50007,8 +47299,7 @@ - prootic bulla (zebrafish) - ZFA:0005500 + prootic bulla (zebrafish) @@ -50027,8 +47318,7 @@ - interopercular-mandibular ligament (zebrafish) - ZFA:0005501 + interopercular-mandibular ligament (zebrafish) @@ -50047,8 +47337,7 @@ - lateral ethmoid-autopalatine ligament (zebrafish) - ZFA:0005502 + lateral ethmoid-autopalatine ligament (zebrafish) @@ -50067,8 +47356,7 @@ - lateral ethmoid-ectopterygoid ligament (zebrafish) - ZFA:0005503 + lateral ethmoid-ectopterygoid ligament (zebrafish) @@ -50087,8 +47375,7 @@ - vertebra 4-vertebra 5 joint (zebrafish) - ZFA:0005504 + vertebra 4-vertebra 5 joint (zebrafish) @@ -50107,8 +47394,7 @@ - vertebra 5-vertebra 6 joint (zebrafish) - ZFA:0005505 + vertebra 5-vertebra 6 joint (zebrafish) @@ -50127,8 +47413,7 @@ - vertebra 6 - vertebra 7 joint (zebrafish) - ZFA:0005506 + vertebra 6 - vertebra 7 joint (zebrafish) @@ -50147,8 +47432,7 @@ - nasal capsule (zebrafish) - ZFA:0005507 + nasal capsule (zebrafish) @@ -50167,8 +47451,7 @@ - inner mental barbel (zebrafish) - ZFA:0005508 + inner mental barbel (zebrafish) @@ -50187,8 +47470,7 @@ - primitive palate (zebrafish) - ZFA:0005509 + primitive palate (zebrafish) @@ -50207,8 +47489,7 @@ - prootic depression (zebrafish) - ZFA:0005510 + prootic depression (zebrafish) @@ -50227,8 +47508,7 @@ - sensory canal tubular ossicle (zebrafish) - ZFA:0005511 + sensory canal tubular ossicle (zebrafish) @@ -50247,8 +47527,7 @@ - caudal principal ray 1 (zebrafish) - ZFA:0005512 + caudal principal ray 1 (zebrafish) @@ -50267,8 +47546,7 @@ - caudal principal ray 3 (zebrafish) - ZFA:0005513 + caudal principal ray 3 (zebrafish) @@ -50287,8 +47565,7 @@ - caudal principal ray 2 (zebrafish) - ZFA:0005514 + caudal principal ray 2 (zebrafish) @@ -50307,8 +47584,7 @@ - caudal principal ray 4 (zebrafish) - ZFA:0005515 + caudal principal ray 4 (zebrafish) @@ -50327,8 +47603,7 @@ - caudal principal ray 5 (zebrafish) - ZFA:0005516 + caudal principal ray 5 (zebrafish) @@ -50347,8 +47622,7 @@ - caudal principal ray 6 (zebrafish) - ZFA:0005517 + caudal principal ray 6 (zebrafish) @@ -50367,8 +47641,7 @@ - caudal principal ray 7 (zebrafish) - ZFA:0005518 + caudal principal ray 7 (zebrafish) @@ -50387,8 +47660,7 @@ - caudal principal ray 8 (zebrafish) - ZFA:0005519 + caudal principal ray 8 (zebrafish) @@ -50407,8 +47679,7 @@ - caudal principal ray 9 (zebrafish) - ZFA:0005520 + caudal principal ray 9 (zebrafish) @@ -50427,8 +47698,7 @@ - caudal principal ray 10 (zebrafish) - ZFA:0005521 + caudal principal ray 10 (zebrafish) @@ -50447,8 +47717,7 @@ - caudal principal ray 11 (zebrafish) - ZFA:0005522 + caudal principal ray 11 (zebrafish) @@ -50467,8 +47736,7 @@ - caudal principal ray 12 (zebrafish) - ZFA:0005523 + caudal principal ray 12 (zebrafish) @@ -50487,8 +47755,7 @@ - caudal principal ray 14 (zebrafish) - ZFA:0005524 + caudal principal ray 14 (zebrafish) @@ -50507,8 +47774,7 @@ - caudal principal ray 15 (zebrafish) - ZFA:0005525 + caudal principal ray 15 (zebrafish) @@ -50527,8 +47793,7 @@ - caudal principal ray 16 (zebrafish) - ZFA:0005526 + caudal principal ray 16 (zebrafish) @@ -50547,8 +47812,7 @@ - caudal principal ray 17 (zebrafish) - ZFA:0005527 + caudal principal ray 17 (zebrafish) @@ -50567,8 +47831,7 @@ - caudal principal ray 18 (zebrafish) - ZFA:0005528 + caudal principal ray 18 (zebrafish) @@ -50587,8 +47850,7 @@ - caudal principal ray 19 (zebrafish) - ZFA:0005529 + caudal principal ray 19 (zebrafish) @@ -50607,8 +47869,7 @@ - lateral line scale (zebrafish) - ZFA:0005530 + lateral line scale (zebrafish) @@ -50627,8 +47888,7 @@ - bony shelf above orbit (zebrafish) - ZFA:0005531 + bony shelf above orbit (zebrafish) @@ -50647,8 +47907,7 @@ - bony plate (zebrafish) - ZFA:0005532 + bony plate (zebrafish) @@ -50667,8 +47926,7 @@ - branched caudal fin ray (zebrafish) - ZFA:0005533 + branched caudal fin ray (zebrafish) @@ -50687,8 +47945,7 @@ - branched dorsal fin ray (zebrafish) - ZFA:0005534 + branched dorsal fin ray (zebrafish) @@ -50707,8 +47964,7 @@ - branched anal fin ray (zebrafish) - ZFA:0005535 + branched anal fin ray (zebrafish) @@ -50727,8 +47983,7 @@ - fontanelle (zebrafish) - ZFA:0005536 + fontanelle (zebrafish) @@ -50747,8 +48002,7 @@ - lateral fontanel of frontal (zebrafish) - ZFA:0005537 + lateral fontanel of frontal (zebrafish) @@ -50767,8 +48021,7 @@ - rib of vertebra 1 (zebrafish) - ZFA:0005538 + rib of vertebra 1 (zebrafish) @@ -50787,8 +48040,7 @@ - rib of vertebra 2 (zebrafish) - ZFA:0005539 + rib of vertebra 2 (zebrafish) @@ -50807,8 +48059,7 @@ - rib of vertebra 3 (zebrafish) - ZFA:0005540 + rib of vertebra 3 (zebrafish) @@ -50827,8 +48078,7 @@ - rib of vertebra 4 (zebrafish) - ZFA:0005541 + rib of vertebra 4 (zebrafish) @@ -50847,8 +48097,7 @@ - rib of vertebra 5 (zebrafish) - ZFA:0005542 + rib of vertebra 5 (zebrafish) @@ -50867,8 +48116,7 @@ - rib of vertebra 6 (zebrafish) - ZFA:0005543 + rib of vertebra 6 (zebrafish) @@ -50887,8 +48135,7 @@ - hyomandibular-otic region joint (zebrafish) - ZFA:0005544 + hyomandibular-otic region joint (zebrafish) @@ -50907,8 +48154,7 @@ - pectoral fin actinotrichium (zebrafish) - ZFA:0005545 + pectoral fin actinotrichium (zebrafish) @@ -50927,8 +48173,7 @@ - pelvic fin actinotrichium (zebrafish) - ZFA:0005546 + pelvic fin actinotrichium (zebrafish) @@ -50947,8 +48192,7 @@ - pectoral fin ray 1 (zebrafish) - ZFA:0005547 + pectoral fin ray 1 (zebrafish) @@ -50967,8 +48211,7 @@ - pectoral fin ray 2 (zebrafish) - ZFA:0005548 + pectoral fin ray 2 (zebrafish) @@ -50987,8 +48230,7 @@ - pectoral fin ray 3 (zebrafish) - ZFA:0005549 + pectoral fin ray 3 (zebrafish) @@ -51007,8 +48249,7 @@ - pectoral fin ray 6 (zebrafish) - ZFA:0005550 + pectoral fin ray 6 (zebrafish) @@ -51027,8 +48268,7 @@ - pectoral fin ray 7 (zebrafish) - ZFA:0005551 + pectoral fin ray 7 (zebrafish) @@ -51047,8 +48287,7 @@ - pectoral fin ray 5 (zebrafish) - ZFA:0005552 + pectoral fin ray 5 (zebrafish) @@ -51067,8 +48306,7 @@ - pectoral fin ray 4 (zebrafish) - ZFA:0005553 + pectoral fin ray 4 (zebrafish) @@ -51087,8 +48325,7 @@ - pelvic fin ray 1 (zebrafish) - ZFA:0005554 + pelvic fin ray 1 (zebrafish) @@ -51107,8 +48344,7 @@ - pelvic fin ray 2 (zebrafish) - ZFA:0005555 + pelvic fin ray 2 (zebrafish) @@ -51127,8 +48363,7 @@ - pelvic fin ray 4 (zebrafish) - ZFA:0005556 + pelvic fin ray 4 (zebrafish) @@ -51147,8 +48382,7 @@ - pelvic fin ray 3 (zebrafish) - ZFA:0005557 + pelvic fin ray 3 (zebrafish) @@ -51167,8 +48401,7 @@ - orbital cavity (zebrafish) - ZFA:0005558 + orbital cavity (zebrafish) @@ -51187,28 +48420,7 @@ - parasphenoid-basioccipital joint (zebrafish) - ZFA:0005560 - - - - - - - - - - - - - - - - - - - vitreous humor (zebrafish) - ZFA:0005561 + parasphenoid-basioccipital joint (zebrafish) @@ -51227,8 +48439,7 @@ - Bruch's membrane (zebrafish) - ZFA:0005562 + Bruch's membrane (zebrafish) @@ -51247,28 +48458,7 @@ - sclera (zebrafish) - ZFA:0005563 - - - - - - - - - - - - - - - - - - - aqueous humor of eyeball (zebrafish) - ZFA:0005564 + sclera (zebrafish) @@ -51287,8 +48477,7 @@ - anterior segment of eyeball (zebrafish) - ZFA:0005566 + anterior segment of eyeball (zebrafish) @@ -51307,30 +48496,7 @@ - posterior segment of eyeball (zebrafish) - ZFA:0005567 - - - - - - - - - - - - - - - - - - - - iris blood vessel (zebrafish) - vasculature of iris (zebrafish) - ZFA:0005568 + posterior segment of eyeball (zebrafish) @@ -51349,8 +48515,7 @@ - iris stroma (zebrafish) - ZFA:0005569 + iris stroma (zebrafish) @@ -51369,8 +48534,7 @@ - corneo-scleral junction (zebrafish) - ZFA:0005570 + corneo-scleral junction (zebrafish) @@ -51389,8 +48553,7 @@ - periocular mesenchyme (zebrafish) - ZFA:0005572 + periocular mesenchyme (zebrafish) @@ -51409,8 +48572,7 @@ - suspensory ligament of lens (zebrafish) - ZFA:0005573 + suspensory ligament of lens (zebrafish) @@ -51429,8 +48591,7 @@ - capsule of lens (zebrafish) - ZFA:0005574 + capsule of lens (zebrafish) @@ -51449,8 +48610,7 @@ - nucleus of brain (zebrafish) - ZFA:0005575 + nucleus of brain (zebrafish) @@ -51469,8 +48629,7 @@ - ventral nuclear group (zebrafish) - ZFA:0005576 + ventral nuclear group (zebrafish) @@ -51489,8 +48648,7 @@ - nucleus of midbrain tegmentum (zebrafish) - ZFA:0005577 + nucleus of midbrain tegmentum (zebrafish) @@ -51509,8 +48667,7 @@ - spinal nerve root (zebrafish) - ZFA:0005578 + spinal nerve root (zebrafish) @@ -51529,8 +48686,7 @@ - primitive mesonephric nephron (zebrafish) - ZFA:0005584 + primitive mesonephric nephron (zebrafish) @@ -51549,8 +48705,7 @@ - mesonephric renal vesicle (zebrafish) - ZFA:0005586 + mesonephric renal vesicle (zebrafish) @@ -51569,8 +48724,7 @@ - mesonephric nephron progenitor (zebrafish) - ZFA:0005587 + mesonephric nephron progenitor (zebrafish) @@ -51589,8 +48743,7 @@ - comma-shaped body (zebrafish) - ZFA:0005588 + comma-shaped body (zebrafish) @@ -51609,8 +48762,7 @@ - S-shaped body (zebrafish) - ZFA:0005589 + S-shaped body (zebrafish) @@ -51629,8 +48781,7 @@ - capillary loop nephron (zebrafish) - ZFA:0005590 + capillary loop nephron (zebrafish) @@ -51649,8 +48800,7 @@ - mesonephric nephron (zebrafish) - ZFA:0005592 + mesonephric nephron (zebrafish) @@ -51669,8 +48819,7 @@ - neuraxis flexure (zebrafish) - ZFA:0005593 + neuraxis flexure (zebrafish) @@ -51689,8 +48838,7 @@ - anatomical surface region (zebrafish) - ZFA:0005594 + anatomical surface region (zebrafish) @@ -51709,8 +48857,7 @@ - caudal principal ray 13 (zebrafish) - ZFA:0005595 + caudal principal ray 13 (zebrafish) @@ -51729,8 +48876,7 @@ - paired fin (zebrafish) - ZFA:0005596 + paired fin (zebrafish) @@ -51749,8 +48895,7 @@ - median fin (zebrafish) - ZFA:0005597 + median fin (zebrafish) @@ -51769,8 +48914,7 @@ - vault of skull (zebrafish) - ZFA:0005606 + vault of skull (zebrafish) @@ -51789,8 +48933,7 @@ - inter-parietal joint (zebrafish) - ZFA:0005607 + inter-parietal joint (zebrafish) @@ -51809,8 +48952,7 @@ - actinopterygian frontal-parietal joint (zebrafish) - ZFA:0005608 + actinopterygian frontal-parietal joint (zebrafish) @@ -51829,8 +48971,7 @@ - supraoccipital-parietal joint (zebrafish) - ZFA:0005609 + supraoccipital-parietal joint (zebrafish) @@ -51849,8 +48990,7 @@ - synostosis (zebrafish) - ZFA:0005610 + synostosis (zebrafish) @@ -51869,8 +49009,7 @@ - skeletal tissue (zebrafish) - ZFA:0005619 + skeletal tissue (zebrafish) @@ -51889,8 +49028,7 @@ - endochondral element (zebrafish) - ZFA:0005620 + endochondral element (zebrafish) @@ -51909,8 +49047,7 @@ - bone tissue (zebrafish) - ZFA:0005621 + bone tissue (zebrafish) @@ -51929,8 +49066,7 @@ - cartilage tissue (zebrafish) - ZFA:0005622 + cartilage tissue (zebrafish) @@ -51949,8 +49085,7 @@ - odontoid tissue (zebrafish) - ZFA:0005623 + odontoid tissue (zebrafish) @@ -51969,8 +49104,7 @@ - replacement element (zebrafish) - ZFA:0005624 + replacement element (zebrafish) @@ -51989,8 +49123,7 @@ - hypophyseal fenestra (zebrafish) - ZFA:0005625 + hypophyseal fenestra (zebrafish) @@ -52009,8 +49142,7 @@ - hyomandibula-opercle joint (zebrafish) - ZFA:0005626 + hyomandibula-opercle joint (zebrafish) @@ -52029,8 +49161,7 @@ - posttemporal fossa (zebrafish) - ZFA:0005628 + posttemporal fossa (zebrafish) @@ -52049,8 +49180,7 @@ - hyomandibular foramen (zebrafish) - ZFA:0005629 + hyomandibular foramen (zebrafish) @@ -52069,8 +49199,7 @@ - pterotic fossa (zebrafish) - ZFA:0005630 + pterotic fossa (zebrafish) @@ -52089,8 +49218,7 @@ - preopercle horizontal limb-symplectic joint (zebrafish) - ZFA:0005631 + preopercle horizontal limb-symplectic joint (zebrafish) @@ -52109,8 +49237,7 @@ - preopercle vertical limb-hyomandibula joint (zebrafish) - ZFA:0005632 + preopercle vertical limb-hyomandibula joint (zebrafish) @@ -52129,8 +49256,7 @@ - intercostal ligament (zebrafish) - ZFA:0005637 + intercostal ligament (zebrafish) @@ -52149,8 +49275,7 @@ - tendon (zebrafish) - ZFA:0005647 + tendon (zebrafish) @@ -52169,8 +49294,7 @@ - mesethmoid-lateral ethmoid joint (zebrafish) - ZFA:0005648 + mesethmoid-lateral ethmoid joint (zebrafish) @@ -52189,8 +49313,7 @@ - mesethmoid-vomer joint (zebrafish) - ZFA:0005649 + mesethmoid-vomer joint (zebrafish) @@ -52209,8 +49332,7 @@ - aponeurosis (zebrafish) - ZFA:0005652 + aponeurosis (zebrafish) @@ -52229,8 +49351,7 @@ - lymph (zebrafish) - ZFA:0005658 + lymph (zebrafish) @@ -52249,8 +49370,7 @@ - olfactory glomerulus (zebrafish) - ZFA:0005661 + olfactory glomerulus (zebrafish) @@ -52269,8 +49389,7 @@ - pericardial fat (zebrafish) - ZFA:0005765 + pericardial fat (zebrafish) @@ -52289,8 +49408,7 @@ - thymus epithelium (zebrafish) - ZFA:0005779 + thymus epithelium (zebrafish) @@ -52309,8 +49427,7 @@ - cloaca (zebrafish) - ZFA:0005781 + cloaca (zebrafish) @@ -52329,8 +49446,7 @@ - intestinal-cloacal junction (zebrafish) - ZFA:0005782 + intestinal-cloacal junction (zebrafish) @@ -52349,8 +49465,7 @@ - cloacal epithelium (zebrafish) - ZFA:0005783 + cloacal epithelium (zebrafish) @@ -52369,8 +49484,7 @@ - lumen of intestine (zebrafish) - ZFA:0005807 + lumen of intestine (zebrafish) @@ -52389,8 +49503,7 @@ - proepicardium (zebrafish) - ZFA:0005808 + proepicardium (zebrafish) @@ -52409,8 +49522,7 @@ - pectinate muscle (zebrafish) - ZFA:0005809 + pectinate muscle (zebrafish) @@ -52429,8 +49541,7 @@ - atrium myocardial trabecula (zebrafish) - ZFA:0005810 + atrium myocardial trabecula (zebrafish) @@ -52449,8 +49560,7 @@ - heart vasculature (zebrafish) - ZFA:0005811 + heart vasculature (zebrafish) @@ -52469,8 +49579,7 @@ - coronary artery (zebrafish) - ZFA:0005812 + coronary artery (zebrafish) @@ -52489,8 +49598,7 @@ - coronary capillary (zebrafish) - ZFA:0005813 + coronary capillary (zebrafish) @@ -52509,8 +49617,7 @@ - cardiac vein (zebrafish) - ZFA:0005814 + cardiac vein (zebrafish) @@ -52529,8 +49636,7 @@ - canal of Schlemm (zebrafish) - ZFA:0005829 + canal of Schlemm (zebrafish) @@ -52549,8 +49655,7 @@ - bile (zebrafish) - ZFA:0005857 + bile (zebrafish) @@ -52569,8 +49674,7 @@ - lateral occipital foramen (zebrafish) - ZFA:0005892 + lateral occipital foramen (zebrafish) @@ -52589,8 +49693,7 @@ - macula of saccule of membranous labyrinth (zebrafish) - ZFA:0007000 + macula of saccule of membranous labyrinth (zebrafish) @@ -52609,8 +49712,7 @@ - dorso-rostral cluster (zebrafish) - ZFA:0007001 + dorso-rostral cluster (zebrafish) @@ -52629,8 +49731,7 @@ - ventro-rostral cluster (zebrafish) - ZFA:0007002 + ventro-rostral cluster (zebrafish) @@ -52649,8 +49750,7 @@ - ventro-caudal cluster (zebrafish) - ZFA:0007003 + ventro-caudal cluster (zebrafish) @@ -52669,8 +49769,7 @@ - epiphysial cluster (zebrafish) - ZFA:0007004 + epiphysial cluster (zebrafish) @@ -52689,8 +49788,7 @@ - hemal prezygapophysis (zebrafish) - ZFA:0007005 + hemal prezygapophysis (zebrafish) @@ -52709,8 +49807,7 @@ - lip (zebrafish) - ZFA:0007006 + lip (zebrafish) @@ -52729,8 +49826,7 @@ - ventral intermandibularis anterior (zebrafish) - ZFA:0007008 + ventral intermandibularis anterior (zebrafish) @@ -52749,48 +49845,7 @@ - nerve (zebrafish) - ZFA:0007009 - - - - - - - - - - - - - - - - - - - thalamic eminence (zebrafish) - ZFA:0007010 - - - - - - - - - - - - - - - - - - - root of vagus nerve (zebrafish) - ZFA:0007011 + nerve (zebrafish) @@ -52809,8 +49864,7 @@ - lateral forebrain bundle (zebrafish) - ZFA:0007012 + lateral forebrain bundle (zebrafish) @@ -52829,8 +49883,7 @@ - preplacodal ectoderm (zebrafish) - ZFA:0007013 + preplacodal ectoderm (zebrafish) @@ -52849,8 +49902,7 @@ - anterior presumptive neural plate (zebrafish) - ZFA:0007014 + anterior presumptive neural plate (zebrafish) @@ -52869,8 +49921,7 @@ - posterior presumptive neural plate (zebrafish) - ZFA:0007015 + posterior presumptive neural plate (zebrafish) @@ -52889,8 +49940,7 @@ - pre-chordal neural plate (zebrafish) - ZFA:0007016 + pre-chordal neural plate (zebrafish) @@ -52909,8 +49959,7 @@ - chordal neural plate (zebrafish) - ZFA:0007017 + chordal neural plate (zebrafish) @@ -52929,8 +49978,7 @@ - forebrain neural plate (zebrafish) - ZFA:0007018 + forebrain neural plate (zebrafish) @@ -52949,8 +49997,7 @@ - midbrain neural plate (zebrafish) - ZFA:0007019 + midbrain neural plate (zebrafish) @@ -52969,8 +50016,7 @@ - forebrain midbrain boundary neural plate (zebrafish) - ZFA:0007020 + forebrain midbrain boundary neural plate (zebrafish) @@ -52989,8 +50035,7 @@ - spinal cord neural plate (zebrafish) - ZFA:0007021 + spinal cord neural plate (zebrafish) @@ -53009,8 +50054,7 @@ - hindbrain neural plate (zebrafish) - ZFA:0007022 + hindbrain neural plate (zebrafish) @@ -53029,8 +50073,7 @@ - posterior neural keel (zebrafish) - ZFA:0007023 + posterior neural keel (zebrafish) @@ -53049,8 +50092,7 @@ - anterior neural keel (zebrafish) - ZFA:0007024 + anterior neural keel (zebrafish) @@ -53069,8 +50111,7 @@ - midbrain neural keel (zebrafish) - ZFA:0007025 + midbrain neural keel (zebrafish) @@ -53089,8 +50130,7 @@ - forebrain neural keel (zebrafish) - ZFA:0007026 + forebrain neural keel (zebrafish) @@ -53109,8 +50149,7 @@ - forebrain midbrain boundary neural keel (zebrafish) - ZFA:0007027 + forebrain midbrain boundary neural keel (zebrafish) @@ -53129,8 +50168,7 @@ - spinal cord neural keel (zebrafish) - ZFA:0007028 + spinal cord neural keel (zebrafish) @@ -53149,8 +50187,7 @@ - hindbrain neural keel (zebrafish) - ZFA:0007029 + hindbrain neural keel (zebrafish) @@ -53169,8 +50206,7 @@ - posterior neural rod (zebrafish) - ZFA:0007030 + posterior neural rod (zebrafish) @@ -53189,8 +50225,7 @@ - anterior neural rod (zebrafish) - ZFA:0007031 + anterior neural rod (zebrafish) @@ -53209,8 +50244,7 @@ - midbrain neural rod (zebrafish) - ZFA:0007032 + midbrain neural rod (zebrafish) @@ -53229,8 +50263,7 @@ - forebrain midbrain boundary neural rod (zebrafish) - ZFA:0007033 + forebrain midbrain boundary neural rod (zebrafish) @@ -53249,8 +50282,7 @@ - forebrain neural rod (zebrafish) - ZFA:0007034 + forebrain neural rod (zebrafish) @@ -53269,8 +50301,7 @@ - spinal cord neural rod (zebrafish) - ZFA:0007035 + spinal cord neural rod (zebrafish) @@ -53289,8 +50320,7 @@ - hindbrain neural rod (zebrafish) - ZFA:0007036 + hindbrain neural rod (zebrafish) @@ -53309,8 +50339,7 @@ - posterior neural tube (zebrafish) - ZFA:0007037 + posterior neural tube (zebrafish) @@ -53329,8 +50358,7 @@ - anterior neural tube (zebrafish) - ZFA:0007038 + anterior neural tube (zebrafish) @@ -53349,8 +50377,7 @@ - midbrain neural tube (zebrafish) - ZFA:0007039 + midbrain neural tube (zebrafish) @@ -53369,8 +50396,7 @@ - forebrain midbrain boundary neural tube (zebrafish) - ZFA:0007040 + forebrain midbrain boundary neural tube (zebrafish) @@ -53389,8 +50415,7 @@ - forebrain neural tube (zebrafish) - ZFA:0007041 + forebrain neural tube (zebrafish) @@ -53409,8 +50434,7 @@ - spinal cord neural tube (zebrafish) - ZFA:0007042 + spinal cord neural tube (zebrafish) @@ -53429,8 +50453,7 @@ - hindbrain neural tube (zebrafish) - ZFA:0007043 + hindbrain neural tube (zebrafish) @@ -53449,8 +50472,7 @@ - midbrain hindbrain boundary neural plate (zebrafish) - ZFA:0007044 + midbrain hindbrain boundary neural plate (zebrafish) @@ -53469,8 +50491,7 @@ - midbrain hindbrain boundary neural keel (zebrafish) - ZFA:0007045 + midbrain hindbrain boundary neural keel (zebrafish) @@ -53489,8 +50510,7 @@ - midbrain hindbrain boundary neural rod (zebrafish) - ZFA:0007046 + midbrain hindbrain boundary neural rod (zebrafish) @@ -53509,8 +50529,7 @@ - midbrain hindbrain boundary neural tube (zebrafish) - ZFA:0007047 + midbrain hindbrain boundary neural tube (zebrafish) @@ -53529,8 +50548,7 @@ - ventral intermandibularis posterior (zebrafish) - ZFA:0007048 + ventral intermandibularis posterior (zebrafish) @@ -53549,8 +50567,7 @@ - adductor mandibulae (zebrafish) - ZFA:0007049 + adductor mandibulae (zebrafish) @@ -53569,8 +50586,7 @@ - constrictor dorsalis (zebrafish) - ZFA:0007050 + constrictor dorsalis (zebrafish) @@ -53589,8 +50605,7 @@ - ventral interhyoideus (zebrafish) - ZFA:0007051 + ventral interhyoideus (zebrafish) @@ -53609,8 +50624,7 @@ - hyohyoideus (zebrafish) - ZFA:0007052 + hyohyoideus (zebrafish) @@ -53629,8 +50643,7 @@ - dorsal adductor hyomandibulae (zebrafish) - ZFA:0007053 + dorsal adductor hyomandibulae (zebrafish) @@ -53649,8 +50662,7 @@ - pillar of the anterior semicircular canal (zebrafish) - ZFA:0007054 + pillar of the anterior semicircular canal (zebrafish) @@ -53669,8 +50681,7 @@ - pillar of the lateral semicircular canal (zebrafish) - ZFA:0007055 + pillar of the lateral semicircular canal (zebrafish) @@ -53689,8 +50700,7 @@ - vasculature of eye (zebrafish) - ZFA:0007057 + vasculature of eye (zebrafish) @@ -53709,8 +50719,7 @@ - roof plate (zebrafish) - ZFA:0007058 + roof plate (zebrafish) @@ -53729,8 +50738,7 @@ - neurogenic field (zebrafish) - ZFA:0007059 + neurogenic field (zebrafish) @@ -53749,8 +50757,7 @@ - dorsolateral field (zebrafish) - ZFA:0007060 + dorsolateral field (zebrafish) @@ -53769,8 +50776,7 @@ - epibranchial field (zebrafish) - ZFA:0007061 + epibranchial field (zebrafish) @@ -53789,8 +50795,7 @@ - olfactory field (zebrafish) - ZFA:0007062 + olfactory field (zebrafish) @@ -53809,8 +50814,7 @@ - rhombencephalon neural crest (zebrafish) - ZFA:0007063 + rhombencephalon neural crest (zebrafish) @@ -53829,8 +50833,7 @@ - mandibular neural crest (zebrafish) - ZFA:0007064 + mandibular neural crest (zebrafish) @@ -53849,8 +50852,7 @@ - hyoid neural crest (zebrafish) - ZFA:0007065 + hyoid neural crest (zebrafish) @@ -53869,28 +50871,7 @@ - glossopharyngeal neural crest (zebrafish) - ZFA:0007066 - - - - - - - - - - - - - - - - - - - vagus X ganglion (zebrafish) - ZFA:0007067 + glossopharyngeal neural crest (zebrafish) @@ -53909,8 +50890,7 @@ - epithelium of otic placode (zebrafish) - ZFA:0007068 + epithelium of otic placode (zebrafish) @@ -53929,8 +50909,7 @@ - flexural organ (zebrafish) - ZFA:0007071 + flexural organ (zebrafish) @@ -53949,8 +50928,7 @@ - venous sinus (zebrafish) - ZFA:0007072 + venous sinus (zebrafish) @@ -53969,8 +50947,7 @@ - venous sinus cavity (zebrafish) - ZFA:0007073 + venous sinus cavity (zebrafish) @@ -53989,38 +50966,37 @@ - anatomical entity (zebrafish) - ZFA:0100000 + anatomical entity (zebrafish) - + - - - - - - - - - - - - + + + + + + + + - ZFA:ENTITY - ZFA entity - + diff --git a/src/ontology/bridge/uberon-bridge-to-zfs.obo b/src/ontology/bridge/uberon-bridge-to-zfs.obo deleted file mode 100644 index a09278b4b9..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-zfs.obo +++ /dev/null @@ -1,205 +0,0 @@ -ontology: uberon/bridge/uberon-bridge-to-zfs -data-version: 2023-09-05 -property_value: seeAlso "http://purl.obolibrary.org/obo/uberon/references/reference_0000026" xsd:anyURI - -[Term] -id: ZFS:0000048 ! -property_value: IAO:0000589 "larval stage (ZFS)" xsd:string -intersection_of: UBERON:0000069 ! larval stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000000 ! -property_value: IAO:0000589 "life cycle stage (ZFS)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0100000 ! -property_value: IAO:0000589 "life cycle stage (ZFS)" xsd:string -intersection_of: UBERON:0000105 ! life cycle stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000001 ! -property_value: IAO:0000589 "zygote stage (ZFS)" xsd:string -intersection_of: UBERON:0000106 ! zygote stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000046 ! -property_value: IAO:0000589 "cleavage stage (ZFS)" xsd:string -intersection_of: UBERON:0000107 ! cleavage stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000045 ! -property_value: IAO:0000589 "blastula stage (ZFS)" xsd:string -intersection_of: UBERON:0000108 ! blastula stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000047 ! -property_value: IAO:0000589 "gastrula stage (ZFS)" xsd:string -intersection_of: UBERON:0000109 ! gastrula stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000051 ! -property_value: IAO:0000589 "sexually immature stage (ZFS)" xsd:string -intersection_of: UBERON:0000112 ! sexually immature stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000044 ! -property_value: IAO:0000589 "post-juvenile adult stage (ZFS)" xsd:string -intersection_of: UBERON:0000113 ! post-juvenile adult stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000050 ! -property_value: IAO:0000589 "pharyngula stage (ZFS)" xsd:string -intersection_of: UBERON:0004707 ! pharyngula stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000002 ! -property_value: IAO:0000589 "2 cell stage (ZFS)" xsd:string -intersection_of: UBERON:0007232 ! 2 cell stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000003 ! -property_value: IAO:0000589 "4 cell stage (ZFS)" xsd:string -intersection_of: UBERON:0007233 ! 4 cell stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:0000004 ! -property_value: IAO:0000589 "8 cell stage (ZFS)" xsd:string -intersection_of: UBERON:0007236 ! 8 cell stage -intersection_of: occurs_in NCBITaxon:7954 - -[Term] -id: ZFS:ENTITY -name: ZFS entity -intersection_of: UBERON:0001062 ! anatomical entity -intersection_of: part_of NCBITaxon:7954 -relationship: only_in_taxon NCBITaxon:7954 - -[Typedef] -id: part_of -xref: BFO:0000050 -is_transitive: true - -[Typedef] -id: only_in_taxon -xref: RO:0002160 - -[Typedef] -id: part_of -xref: BFO:0000050 - -[Typedef] -id: develops_from -xref: RO:0002225 - -[Typedef] -id: occurs_in -xref: BFO:0000066 - -[Typedef] -id: foaf-depicted_by -name: depicted_by -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/depicted_by - -[Typedef] -id: foaf-homepage -name: homepage -is_metadata_tag: true -xref: http://xmlns.com/foaf/0.1/homepage - -[Typedef] -id: dc-title -name: title -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/title - -[Typedef] -id: dc-contributor -name: contributor -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/contributor - -[Typedef] -id: dc-creator -name: creator -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/creator - -[Typedef] -id: dc-publisher -name: publisher -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/publisher - -[Typedef] -id: dc-description -name: description -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/description - -[Typedef] -id: dc-source -name: derived from resource -is_metadata_tag: true -xref: http://purl.org/dc/elements/1.1/source - -[Typedef] -id: dcterms-isReferencedBy -name: is referenced by -is_metadata_tag: true -xref: http://purl.org/dc/terms/isReferencedBy - -[Typedef] -id: dcterms-references -name: references -is_metadata_tag: true -xref: http://purl.org/dc/terms/references - -[Typedef] -id: doap-GitRepository -name: Git repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#GitRepository - -[Typedef] -id: doap-SVNRepository -name: SVN repository -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#SVNRepository - -[Typedef] -id: doap-wiki -name: wiki -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#wiki - -[Typedef] -id: doap-bug-database -name: bug database -is_metadata_tag: true -xref: http://usefulinc.com/ns/doap#bug-database - -[Typedef] -id: seeAlso -name: see also -is_metadata_tag: true -xref: http://www.w3.org/2000/01/rdf-schema#seeAlso - -[Typedef] -id: example_of_usage -name: example of usage -is_metadata_tag: true -xref: IAO:0000122 diff --git a/src/ontology/bridge/uberon-bridge-to-zfs.owl b/src/ontology/bridge/uberon-bridge-to-zfs.owl index 41d649d272..f74a261a09 100644 --- a/src/ontology/bridge/uberon-bridge-to-zfs.owl +++ b/src/ontology/bridge/uberon-bridge-to-zfs.owl @@ -1,20 +1,14 @@ + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"> - - http://purl.obolibrary.org/obo/uberon/references/reference_0000026 + @@ -30,238 +24,12 @@ - - - - IAO:0000122 - example_of_usage - true - example_of_usage - example of usage - - - - - - - - http://purl.org/dc/elements/1.1/contributor - dc-contributor - true - dc-contributor - contributor - - - - - - - - http://purl.org/dc/elements/1.1/creator - dc-creator - true - dc-creator - creator - - - - - - - - http://purl.org/dc/elements/1.1/description - dc-description - true - dc-description - description - - - - - - - - http://purl.org/dc/elements/1.1/publisher - dc-publisher - true - dc-publisher - publisher - - - - - - - - http://purl.org/dc/elements/1.1/source - dc-source - true - dc-source - derived from resource - - - - - - - - http://purl.org/dc/elements/1.1/title - dc-title - true - dc-title - title - - - - - - - - http://purl.org/dc/terms/isReferencedBy - dcterms-isReferencedBy - true - dcterms-isReferencedBy - is referenced by - - - - - - - - http://purl.org/dc/terms/references - dcterms-references - true - dcterms-references - references - - - - - - - - http://usefulinc.com/ns/doap#GitRepository - doap-GitRepository - true - doap-GitRepository - Git repository - - - - - - - - http://usefulinc.com/ns/doap#SVNRepository - doap-SVNRepository - true - doap-SVNRepository - SVN repository - - - - - - - - http://usefulinc.com/ns/doap#bug-database - doap-bug-database - true - doap-bug-database - bug database - - - - - - - - http://usefulinc.com/ns/doap#wiki - doap-wiki - true - doap-wiki - wiki - - - - - - - - database_cross_reference - - - - - - - - - - - - - - - - - - - - shorthand - - - - - - - - - - - - - - http://www.w3.org/2000/01/rdf-schema#seeAlso - seeAlso - true - seeAlso - see also - - - - - - - - http://xmlns.com/foaf/0.1/depicted_by - foaf-depicted_by - true - foaf-depicted_by - depicted_by - - - - - - - - http://xmlns.com/foaf/0.1/homepage - foaf-homepage - true - foaf-homepage - homepage - - - - - - - - BFO:0000050 - part_of - part_of - - - - - - BFO:0000066 - occurs_in - occurs_in - - - - - - - - RO:0002160 - only_in_taxon - only_in_taxon - - - - - - - - RO:0002225 - develops_from - develops_from - + @@ -379,12 +112,6 @@ - - - - - - @@ -423,8 +150,7 @@ - life cycle stage (ZFS) - ZFS:0000000 + life cycle stage (zebrafish) @@ -443,8 +169,7 @@ - zygote stage (ZFS) - ZFS:0000001 + zygote stage (zebrafish) @@ -463,8 +188,7 @@ - 2 cell stage (ZFS) - ZFS:0000002 + 2 cell stage (zebrafish) @@ -483,8 +207,7 @@ - 4 cell stage (ZFS) - ZFS:0000003 + 4 cell stage (zebrafish) @@ -503,8 +226,7 @@ - 8 cell stage (ZFS) - ZFS:0000004 + 8 cell stage (zebrafish) @@ -523,8 +245,7 @@ - post-juvenile adult stage (ZFS) - ZFS:0000044 + post-juvenile adult stage (zebrafish) @@ -543,8 +264,7 @@ - blastula stage (ZFS) - ZFS:0000045 + blastula stage (zebrafish) @@ -563,8 +283,7 @@ - cleavage stage (ZFS) - ZFS:0000046 + cleavage stage (zebrafish) @@ -583,8 +302,7 @@ - gastrula stage (ZFS) - ZFS:0000047 + gastrula stage (zebrafish) @@ -603,8 +321,7 @@ - larval stage (ZFS) - ZFS:0000048 + larval stage (zebrafish) @@ -623,8 +340,7 @@ - pharyngula stage (ZFS) - ZFS:0000050 + pharyngula stage (zebrafish) @@ -643,8 +359,7 @@ - sexually immature stage (ZFS) - ZFS:0000051 + sexually immature stage (zebrafish) @@ -663,38 +378,11 @@ - life cycle stage (ZFS) - ZFS:0100000 - - - - - - - - - - - - - - - - - - - - - - - - - ZFS:ENTITY - ZFS entity + life cycle stage (zebrafish) - + From 905e79046a733250b088e8a410bd73d98e9960b8 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Sun, 10 Sep 2023 10:42:44 +0100 Subject: [PATCH 27/45] Use the latest version of the SSSOM plugin. There are some cases in Uberon where a same foreign term is referenced in two xref annotations: one on a valid Uberon term, and one on a deprecated Uberon term (the latter should probably have been removed when the term was deprecated, but his has not always been done). In this situation, it is clear that the xref on the deprecated term should be ignored and that only the one on the valid term should be taken into account. This is what version 0.4.3 of the SSSOM plugin does. --- src/ontology/uberon.Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 1a47eb6354..f996d1cc2f 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -119,7 +119,7 @@ export ROBOT_PLUGINS_DIRECTORY # Make sure the SSSOM plugin for ROBOT is available. $(TMPDIR)/plugins/sssom.jar: mkdir -p $(TMPDIR)/plugins - curl -L -o $@ https://github.com/gouttegd/sssom-java/releases/download/sssom-java-0.4.2/sssom-robot-plugin-0.4.2.jar + curl -L -o $@ https://github.com/gouttegd/sssom-java/releases/download/sssom-java-0.4.3/sssom-robot-plugin-0.4.3.jar # ---------------------------------------- From 329da69e20b4fe4f509c60af9a0e3722933626cf Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 25 Oct 2023 09:24:16 +0100 Subject: [PATCH 28/45] Add missing metadata for the CL/EMAPA bridge. The original CL/EMAPA bridge had metadata that had not been ported to the dispatch table, so we do that here. --- src/ontology/bridge/bridges.dispatch | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ontology/bridge/bridges.dispatch b/src/ontology/bridge/bridges.dispatch index 13978cfbdb..81d395abbb 100644 --- a/src/ontology/bridge/bridges.dispatch +++ b/src/ontology/bridge/bridges.dispatch @@ -64,6 +64,12 @@ dc-creator: Anne Niknejad [emapa-cl] file: cl-bridge-to-emapa.owl +dc-title: CL bridge to emapa +dc-description: Taxonomic equivalence axioms between EMAPA (abstract developmental mouse) and CL. +dc-creator: CL editors +dc-creator: vHOG editors +dc-creator: Aurelie Comte +dc-creator: Anne Niknejad [fbbt-uberon] file: uberon-bridge-to-fbbt.owl From ffbfc9e037a1e919339fbfcbb7b54e133ed3ee48 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 25 Oct 2023 09:28:50 +0100 Subject: [PATCH 29/45] Remove the EFO bridges. The EFO bridge is deemed pointless (https://github.com/obophenotype/uberon/pull/3061#discussion_r1369971215), so we remove it entirely. --- src/ontology/bridge/bridges.dispatch | 6 - src/ontology/bridge/bridges.rules.m4 | 2 - src/ontology/bridge/cl-bridge-to-efo.owl | 254 - src/ontology/bridge/uberon-bridge-to-efo.owl | 9298 ------------------ src/ontology/uberon-edit.obo | 1 - 5 files changed, 9561 deletions(-) delete mode 100644 src/ontology/bridge/cl-bridge-to-efo.owl delete mode 100644 src/ontology/bridge/uberon-bridge-to-efo.owl diff --git a/src/ontology/bridge/bridges.dispatch b/src/ontology/bridge/bridges.dispatch index 81d395abbb..580768722d 100644 --- a/src/ontology/bridge/bridges.dispatch +++ b/src/ontology/bridge/bridges.dispatch @@ -32,12 +32,6 @@ file: uberon-bridge-to-dhba.owl [dhba-cl] file: cl-bridge-to-dhba.owl -[efo-uberon] -file: uberon-bridge-to-efo.owl - -[efo-cl] -file: cl-bridge-to-efo.owl - [ehdaa2-uberon] file: uberon-bridge-to-ehdaa2.owl add-axiom: (UBERON:0001062 and (BFO:0000050 some NCBITaxon:9606)) SubClassOf: RO:0002160 some NCBITaxon:9606 diff --git a/src/ontology/bridge/bridges.rules.m4 b/src/ontology/bridge/bridges.rules.m4 index ce45d934b9..6e41cfe3dd 100644 --- a/src/ontology/bridge/bridges.rules.m4 +++ b/src/ontology/bridge/bridges.rules.m4 @@ -7,7 +7,6 @@ prefix BSPO: prefix CARO: prefix CL: prefix DHBA: -prefix EFO: prefix EHDAA2: prefix EMAPA: prefix FBbt: @@ -83,7 +82,6 @@ BRIDGE(AEO) BRIDGE(BFO) BRIDGE(BSPO) BRIDGE(CARO) -BRIDGE(EFO) BRIDGE(GO) BRIDGE(NCIT) BRIDGE(OG) diff --git a/src/ontology/bridge/cl-bridge-to-efo.owl b/src/ontology/bridge/cl-bridge-to-efo.owl deleted file mode 100644 index a51901d762..0000000000 --- a/src/ontology/bridge/cl-bridge-to-efo.owl +++ /dev/null @@ -1,254 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - lymphoblast (EFO) - - - - - - - - Rohon-Beard neuron (EFO) - - - - - - - - B-lymphoblast (EFO) - - - - - - - - endothelial cell of respiratory system lymphatic vessel (EFO) - - - - - - - - lung pericyte (EFO) - - - - - - - - endothelial cell of hepatic portal vein (EFO) - - - - - - - - endothelial cell of periportal hepatic sinusoid (EFO) - - - - - - - - endothelial cell of pericentral hepatic sinusoid (EFO) - - - - - - - - endothelial cell of placenta (EFO) - - - - - - - - smooth muscle cell of placenta (EFO) - - - - - - - - epithelial cell of endometrial gland (EFO) - - - - - - - - endothelial cell of uterus (EFO) - - - - - - - - fused extravillous trophoblast (EFO) - - - - - - - diff --git a/src/ontology/bridge/uberon-bridge-to-efo.owl b/src/ontology/bridge/uberon-bridge-to-efo.owl deleted file mode 100644 index f90015bc2a..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-efo.owl +++ /dev/null @@ -1,9298 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - hypothalamus (EFO) - - - - - - - - - olfactory lobe (EFO) - - - - - - - - - striatum (EFO) - - - - - - - - - spinal cord (EFO) - - - - - - - - - abdominal cavity (EFO) - - - - - - - - - skin of abdomen (EFO) - - - - - - - - - adductor mandibulae (EFO) - - - - - - - - - adenohypophyseal placode (EFO) - - - - - - - - - adenohypophysis (EFO) - - - - - - - - - adrenal cortex (EFO) - - - - - - - - - adrenal gland (EFO) - - - - - - - - - Malpighian tubule (EFO) - - - - - - - - - amnioserosa (EFO) - - - - - - - - - amygdala (EFO) - - - - - - - - - aorta (EFO) - - - - - - - - - atrioventricular node (EFO) - - - - - - - - - cardiac atrium (EFO) - - - - - - - - - urinary bladder (EFO) - - - - - - - - - mucosa of urinary bladder (EFO) - - - - - - - - - blastocyst (EFO) - - - - - - - - - blood (EFO) - - - - - - - - - bone element (EFO) - - - - - - - - - brain (EFO) - - - - - - - - - epithelium of bronchus (EFO) - - - - - - - - - cardiogenic splanchnic mesoderm (EFO) - - - - - - - - - cardiac ventricle (EFO) - - - - - - - - - cerebellum (EFO) - - - - - - - - - cerebral cortex (EFO) - - - - - - - - - cerebrospinal fluid (EFO) - - - - - - - - - cingulate cortex (EFO) - - - - - - - - - cochlea (EFO) - - - - - - - - - colon (EFO) - - - - - - - - - conjunctiva (EFO) - - - - - - - - - cornea (EFO) - - - - - - - - - corpus allatum (EFO) - - - - - - - - - corpus cardiacum (EFO) - - - - - - - - - corpus striatum (EFO) - - - - - - - - - body of uterus (EFO) - - - - - - - - - cortex (EFO) - - - - - - - - - life cycle stage (EFO) - - - - - - - - - ectoderm (EFO) - - - - - - - - - embryonic structure (EFO) - - - - - - - - - Ammon's horn (EFO) - - - - - - - - - inner cell mass (EFO) - - - - - - - - - mole (EFO) - - - - - - - - - organ (EFO) - - - - - - - - - organ part (EFO) - - - - - - - - - adipose tissue (EFO) - - - - - - - - - cardiovascular system (EFO) - - - - - - - - - digestive system (EFO) - - - - - - - - - gland (EFO) - - - - - - - - - hematopoietic system (EFO) - - - - - - - - - appendage (EFO) - - - - - - - - - hepatobiliary system (EFO) - - - - - - - - - musculature of body (EFO) - - - - - - - - - nervous system (EFO) - - - - - - - - - renal system (EFO) - - - - - - - - - respiratory system (EFO) - - - - - - - - - sensory system (EFO) - - - - - - - - - skeletal system (EFO) - - - - - - - - - integumental system (EFO) - - - - - - - - - organism subdivision (EFO) - - - - - - - - - reproductive system (EFO) - - - - - - - - - arthropod fat body (EFO) - - - - - - - - - gonadal fat pad (EFO) - - - - - - - - - brown adipose tissue (EFO) - - - - - - - - - white adipose tissue (EFO) - - - - - - - - - artery (EFO) - - - - - - - - - heart (EFO) - - - - - - - - - vein (EFO) - - - - - - - - - blood vessel (EFO) - - - - - - - - - carotid artery segment (EFO) - - - - - - - - - myocardium (EFO) - - - - - - - - - pericardium (EFO) - - - - - - - - - endocardium (EFO) - - - - - - - - - mouth (EFO) - - - - - - - - - ear (EFO) - - - - - - - - - eye (EFO) - - - - - - - - - gustatory system (EFO) - - - - - - - - - cranium (EFO) - - - - - - - - - retina (EFO) - - - - - - - - - tongue (EFO) - - - - - - - - - intestine (EFO) - - - - - - - - - esophagus (EFO) - - - - - - - - - chordate pharynx (EFO) - - - - - - - - - stomach (EFO) - - - - - - - - - larynx (EFO) - - - - - - - - - calcareous tooth (EFO) - - - - - - - - - large intestine (EFO) - - - - - - - - - small intestine (EFO) - - - - - - - - - ascending colon (EFO) - - - - - - - - - transverse colon (EFO) - - - - - - - - - descending colon (EFO) - - - - - - - - - sigmoid colon (EFO) - - - - - - - - - anal region (EFO) - - - - - - - - - rectum (EFO) - - - - - - - - - vermiform appendix (EFO) - - - - - - - - - caecum (EFO) - - - - - - - - - duodenum (EFO) - - - - - - - - - adrenal medulla (EFO) - - - - - - - - - gallbladder (EFO) - - - - - - - - - mammary gland (EFO) - - - - - - - - - pancreas (EFO) - - - - - - - - - islet of Langerhans (EFO) - - - - - - - - - pituitary gland (EFO) - - - - - - - - - prostate gland (EFO) - - - - - - - - - saliva-secreting gland (EFO) - - - - - - - - - thymus (EFO) - - - - - - - - - thyroid gland (EFO) - - - - - - - - - parathyroid gland (EFO) - - - - - - - - - hatching gland (EFO) - - - - - - - - - arthropod neurohemal organ (EFO) - - - - - - - - - pineal body (EFO) - - - - - - - - - meninx (EFO) - - - - - - - - - bone marrow (EFO) - - - - - - - - - spleen (EFO) - - - - - - - - - lymphatic part of lymphoid system (EFO) - - - - - - - - - lymph (EFO) - - - - - - - - - lymph node (EFO) - - - - - - - - - lymphatic vessel (EFO) - - - - - - - - - antenna (EFO) - - - - - - - - - fin (EFO) - - - - - - - - - limb (EFO) - - - - - - - - - autopod region (EFO) - - - - - - - - - zeugopod (EFO) - - - - - - - - - stylopod (EFO) - - - - - - - - - digit (EFO) - - - - - - - - - forelimb (EFO) - - - - - - - - - hindlimb (EFO) - - - - - - - - - wing (EFO) - - - - - - - - - haltere (EFO) - - - - - - - - - liver (EFO) - - - - - - - - - skeletal muscle organ (EFO) - - - - - - - - - smooth muscle tissue (EFO) - - - - - - - - - peripheral nervous system (EFO) - - - - - - - - - somatic nervous system (EFO) - - - - - - - - - sympathetic nervous system (EFO) - - - - - - - - - parasympathetic nervous system (EFO) - - - - - - - - - enteric nervous system (EFO) - - - - - - - - - ventral nerve cord (EFO) - - - - - - - - - ganglion (EFO) - - - - - - - - - dorsal root ganglion (EFO) - - - - - - - - - cranial ganglion (EFO) - - - - - - - - - trigeminal ganglion (EFO) - - - - - - - - - basal ganglion (EFO) - - - - - - - - - globus pallidus (EFO) - - - - - - - - - nucleus accumbens (EFO) - - - - - - - - - caudate nucleus (EFO) - - - - - - - - - central nervous system (EFO) - - - - - - - - - forebrain (EFO) - - - - - - - - - dorsal plus ventral thalamus (EFO) - - - - - - - - - diencephalon (EFO) - - - - - - - - - telencephalon (EFO) - - - - - - - - - frontal lobe (EFO) - - - - - - - - - parietal lobe (EFO) - - - - - - - - - occipital lobe (EFO) - - - - - - - - - visual cortex (EFO) - - - - - - - - - temporal lobe (EFO) - - - - - - - - - epithalamus (EFO) - - - - - - - - - midbrain (EFO) - - - - - - - - - midbrain tectum (EFO) - - - - - - - - - midbrain tegmentum (EFO) - - - - - - - - - substantia nigra (EFO) - - - - - - - - - hindbrain (EFO) - - - - - - - - - medulla oblongata (EFO) - - - - - - - - - mushroom body (EFO) - - - - - - - - - pars intercerebralis (EFO) - - - - - - - - - pronephros (EFO) - - - - - - - - - mesonephros (EFO) - - - - - - - - - ureter (EFO) - - - - - - - - - urethra (EFO) - - - - - - - - - bronchus (EFO) - - - - - - - - - pharyngeal arch derived gill (EFO) - - - - - - - - - lung (EFO) - - - - - - - - - trachea (EFO) - - - - - - - - - diaphragm (EFO) - - - - - - - - - arthropod sensillum (EFO) - - - - - - - - - chordotonal organ (EFO) - - - - - - - - - lateral line system (EFO) - - - - - - - - - postcranial axial skeleton (EFO) - - - - - - - - - chitin-based cuticle (EFO) - - - - - - - - - limb bone (EFO) - - - - - - - - - pectoral girdle skeleton (EFO) - - - - - - - - - pelvic girdle skeleton (EFO) - - - - - - - - - skeletal joint (EFO) - - - - - - - - - cartilage tissue (EFO) - - - - - - - - - appendicular skeleton (EFO) - - - - - - - - - connective tissue (EFO) - - - - - - - - - dermis (EFO) - - - - - - - - - skin epidermis (EFO) - - - - - - - - - feather (EFO) - - - - - - - - - nail (EFO) - - - - - - - - - strand of hair (EFO) - - - - - - - - - pharyngeal arch (EFO) - - - - - - - - - scale (EFO) - - - - - - - - - skin of body (EFO) - - - - - - - - - tail (EFO) - - - - - - - - - head (EFO) - - - - - - - - - chest (EFO) - - - - - - - - - trunk (EFO) - - - - - - - - - neck (EFO) - - - - - - - - - abdomen (EFO) - - - - - - - - - female reproductive system (EFO) - - - - - - - - - male reproductive system (EFO) - - - - - - - - - hermaphrodite gonad (EFO) - - - - - - - - - ovary (EFO) - - - - - - - - - oviduct (EFO) - - - - - - - - - uterus (EFO) - - - - - - - - - vagina (EFO) - - - - - - - - - spermathecum (EFO) - - - - - - - - - mammalian vulva (EFO) - - - - - - - - - uterine cervix (EFO) - - - - - - - - - endometrium (EFO) - - - - - - - - - vas deferens (EFO) - - - - - - - - - epididymis (EFO) - - - - - - - - - testis (EFO) - - - - - - - - - ejaculatory duct (EFO) - - - - - - - - - seminal vesicle (EFO) - - - - - - - - - penis (EFO) - - - - - - - - - fully formed stage (EFO) - - - - - - - - - blastula stage (EFO) - - - - - - - - - cleavage stage (EFO) - - - - - - - - - gastrula stage (EFO) - - - - - - - - - sexually immature stage (EFO) - - - - - - - - - larval stage (EFO) - - - - - - - - - pharyngula stage (EFO) - - - - - - - - - zygote stage (EFO) - - - - - - - - - late embryo (EFO) - - - - - - - - - jejunum (EFO) - - - - - - - - - ileum (EFO) - - - - - - - - - internal ear (EFO) - - - - - - - - - spiral organ of cochlea (EFO) - - - - - - - - - dentate gyrus of hippocampal formation (EFO) - - - - - - - - - embryo (EFO) - - - - - - - - - intercostal muscle (EFO) - - - - - - - - - vertebral column (EFO) - - - - - - - - - intervertebral disk (EFO) - - - - - - - - - vertebra (EFO) - - - - - - - - - precentral gyrus (EFO) - - - - - - - - - Peyer's patch (EFO) - - - - - - - - - postcentral gyrus (EFO) - - - - - - - - - prefrontal cortex (EFO) - - - - - - - - - tibialis anterior (EFO) - - - - - - - - - palatine uvula (EFO) - - - - - - - - - submandibular gland (EFO) - - - - - - - - - hypopharynx (EFO) - - - - - - - - - lacrimal gland (EFO) - - - - - - - - - corpus callosum (EFO) - - - - - - - - - somatosensory cortex (EFO) - - - - - - - - - subthalamic nucleus (EFO) - - - - - - - - - synovial membrane of synovial joint (EFO) - - - - - - - - - pons (EFO) - - - - - - - - - axilla (EFO) - - - - - - - - - femur (EFO) - - - - - - - - - inguinal part of abdomen (EFO) - - - - - - - - - humerus (EFO) - - - - - - - - - pulmonary artery (EFO) - - - - - - - - - scapula (EFO) - - - - - - - - - tonsil (EFO) - - - - - - - - - trigeminal nerve (EFO) - - - - - - - - - corneo-scleral junction (EFO) - - - - - - - - - seminiferous tubule of testis (EFO) - - - - - - - - - dorsum (EFO) - - - - - - - - - extraembryonic tissue (EFO) - - - - - - - - - placenta (EFO) - - - - - - - - - tarsal region (EFO) - - - - - - - - - arm (EFO) - - - - - - - - - leg (EFO) - - - - - - - - - deltoid (EFO) - - - - - - - - - gastrocnemius (EFO) - - - - - - - - - gonadal ridge (EFO) - - - - - - - - - umbilical cord (EFO) - - - - - - - - - sciatic nerve (EFO) - - - - - - - - - biceps femoris (EFO) - - - - - - - - - masseter muscle (EFO) - - - - - - - - - stria vascularis of cochlear duct (EFO) - - - - - - - - - anlage (EFO) - - - - - - - - - cranial placode (EFO) - - - - - - - - - primordium (EFO) - - - - - - - - - prepuce of penis (EFO) - - - - - - - - - mediastinal lymph node (EFO) - - - - - - - - - articular cartilage of joint (EFO) - - - - - - - - - neural tube basal plate (EFO) - - - - - - - - - blood plasma (EFO) - - - - - - - - - capillary (EFO) - - - - - - - - - caudal ganglionic eminence (EFO) - - - - - - - - - caudate-putamen (EFO) - - - - - - - - - cervix epithelium (EFO) - - - - - - - - - brain ventricle (EFO) - - - - - - - - - choroid plexus (EFO) - - - - - - - - - epithelium of conjunctiva (EFO) - - - - - - - - - corneal epithelium (EFO) - - - - - - - - - decidua basalis (EFO) - - - - - - - - - dorsal raphe nucleus (EFO) - - - - - - - - - entorhinal cortex (EFO) - - - - - - - - - extra-ocular muscle (EFO) - - - - - - - - - mouth floor (EFO) - - - - - - - - - gingiva (EFO) - - - - - - - - - insect head capsule (EFO) - - - - - - - - - hindlimb muscle (EFO) - - - - - - - - - hip (EFO) - - - - - - - - - hypoblast (generic) (EFO) - - - - - - - - - vomeronasal organ (EFO) - - - - - - - - - ventral tegmental area (EFO) - - - - - - - - - ventral striatum (EFO) - - - - - - - - - vastus lateralis (EFO) - - - - - - - - - quadriceps femoris (EFO) - - - - - - - - - urine (EFO) - - - - - - - - - umbilical vein (EFO) - - - - - - - - - umbilical cord blood (EFO) - - - - - - - - - hindlimb stylopod (EFO) - - - - - - - - - superior temporal gyrus (EFO) - - - - - - - - - superior cervical ganglion (EFO) - - - - - - - - - soleus muscle (EFO) - - - - - - - - - musculature (EFO) - - - - - - - - - midgut (EFO) - - - - - - - - - inferior parietal cortex (EFO) - - - - - - - - - internal carotid artery (EFO) - - - - - - - - - external carotid artery (EFO) - - - - - - - - - interventricular septum (EFO) - - - - - - - - - knee joint (EFO) - - - - - - - - - telencephalic ventricle (EFO) - - - - - - - - - brainstem (EFO) - - - - - - - - - locus ceruleus (EFO) - - - - - - - - - mandible (EFO) - - - - - - - - - ligament (EFO) - - - - - - - - - medial geniculate body (EFO) - - - - - - - - - medulla of thymus (EFO) - - - - - - - - - myometrium (EFO) - - - - - - - - - bed nucleus of stria terminalis (EFO) - - - - - - - - - olfactory epithelium (EFO) - - - - - - - - - olfactory system (EFO) - - - - - - - - - optic disc (EFO) - - - - - - - - - oral cavity (EFO) - - - - - - - - - oropharynx (EFO) - - - - - - - - - palatine tonsil (EFO) - - - - - - - - - perirhinal cortex (EFO) - - - - - - - - - plantaris (EFO) - - - - - - - - - pleura (EFO) - - - - - - - - - mesoderm (EFO) - - - - - - - - - presomitic mesoderm (EFO) - - - - - - - - - alveolus of lung (EFO) - - - - - - - - - cerebral peduncle (EFO) - - - - - - - - - lateral geniculate body (EFO) - - - - - - - - - orbitofrontal cortex (EFO) - - - - - - - - - superior frontal gyrus (EFO) - - - - - - - - - CA1 field of hippocampus (EFO) - - - - - - - - - CA2 field of hippocampus (EFO) - - - - - - - - - CA3 field of hippocampus (EFO) - - - - - - - - - CA4 field of hippocampus (EFO) - - - - - - - - - core of nucleus accumbens (EFO) - - - - - - - - - shell of nucleus accumbens (EFO) - - - - - - - - - hair follicle (EFO) - - - - - - - - - inferior colliculus (EFO) - - - - - - - - - middle temporal gyrus (EFO) - - - - - - - - - oculomotor nuclear complex (EFO) - - - - - - - - - paraventricular nucleus of hypothalamus (EFO) - - - - - - - - - central gray substance of midbrain (EFO) - - - - - - - - - posterior cingulate cortex (EFO) - - - - - - - - - primary motor cortex (EFO) - - - - - - - - - superior colliculus (EFO) - - - - - - - - - suprachiasmatic nucleus (EFO) - - - - - - - - - supraoptic nucleus (EFO) - - - - - - - - - alveolus (EFO) - - - - - - - - - substantia propria of cornea (EFO) - - - - - - - - - ductus arteriosus (EFO) - - - - - - - - - inferior vagus X ganglion (EFO) - - - - - - - - - nucleus raphe magnus (EFO) - - - - - - - - - cerebral hemisphere (EFO) - - - - - - - - - preoptic area (EFO) - - - - - - - - - abdominal aorta (EFO) - - - - - - - - - thoracic aorta (EFO) - - - - - - - - - arch of aorta (EFO) - - - - - - - - - descending thoracic aorta (EFO) - - - - - - - - - endocrine pancreas (EFO) - - - - - - - - - endoderm (EFO) - - - - - - - - - endothelium (EFO) - - - - - - - - - vagus nerve (EFO) - - - - - - - - - brachiocephalic artery (EFO) - - - - - - - - - coronary artery (EFO) - - - - - - - - - renal artery (EFO) - - - - - - - - - mucosa of tongue (EFO) - - - - - - - - - fundus of stomach (EFO) - - - - - - - - - pyloric antrum (EFO) - - - - - - - - - epithelium of pancreatic duct (EFO) - - - - - - - - - pancreas mesenchyme (EFO) - - - - - - - - - parotid gland (EFO) - - - - - - - - - main ciliary ganglion (EFO) - - - - - - - - - definitive endoderm (EFO) - - - - - - - - - liver primordium (EFO) - - - - - - - - - lung primordium (EFO) - - - - - - - - - pancreas primordium (EFO) - - - - - - - - - stomach primordium (EFO) - - - - - - - - - aorta endothelium (EFO) - - - - - - - - - pupa (EFO) - - - - - - - - - post-anal tail bud (EFO) - - - - - - - - - aorta smooth muscle tissue (EFO) - - - - - - - - - chorion membrane (EFO) - - - - - - - - - pelvic region of trunk (EFO) - - - - - - - - - retroperitoneal space (EFO) - - - - - - - - - multicellular organism (EFO) - - - - - - - - - endocrine system (EFO) - - - - - - - - - colonic mucosa (EFO) - - - - - - - - - epithelium of esophagus (EFO) - - - - - - - - - ilium (EFO) - - - - - - - - - hindlimb zeugopod (EFO) - - - - - - - - - fibula (EFO) - - - - - - - - - forelimb zeugopod (EFO) - - - - - - - - - tibia (EFO) - - - - - - - - - mediastinum (EFO) - - - - - - - - - common fibular nerve (EFO) - - - - - - - - - pes (EFO) - - - - - - - - - rib (EFO) - - - - - - - - - latissimus dorsi muscle (EFO) - - - - - - - - - shoulder (EFO) - - - - - - - - - elbow (EFO) - - - - - - - - - buttock (EFO) - - - - - - - - - fused sacrum (EFO) - - - - - - - - - eye trabecular meshwork (EFO) - - - - - - - - - yolk sac (EFO) - - - - - - - - - myocardium of atrium (EFO) - - - - - - - - - myocardium of ventricle (EFO) - - - - - - - - - mesectoderm (EFO) - - - - - - - - - head mesenchyme from mesoderm (EFO) - - - - - - - - - olfactory placode (EFO) - - - - - - - - - presumptive segmental plate (EFO) - - - - - - - - - future forebrain (EFO) - - - - - - - - - presumptive neural plate (EFO) - - - - - - - - - enveloping layer of ectoderm (EFO) - - - - - - - - - chordamesoderm (EFO) - - - - - - - - - germ ring (EFO) - - - - - - - - - liver primordium (EFO) - - - - - - - - - otic placode (EFO) - - - - - - - - - pectoral appendage bud (EFO) - - - - - - - - - future brain (EFO) - - - - - - - - - presumptive midbrain (EFO) - - - - - - - - - trigeminal placode complex (EFO) - - - - - - - - - pancreas primordium (EFO) - - - - - - - - - presumptive endoderm (EFO) - - - - - - - - - future spinal cord (EFO) - - - - - - - - - presumptive blood (EFO) - - - - - - - - - presumptive hindbrain (EFO) - - - - - - - - - future diencephalon (EFO) - - - - - - - - - presumptive paraxial mesoderm (EFO) - - - - - - - - - presumptive shield (EFO) - - - - - - - - - presumptive midbrain hindbrain boundary (EFO) - - - - - - - - - presumptive rhombomere 7 (EFO) - - - - - - - - - presumptive rhombomere 6 (EFO) - - - - - - - - - presumptive rhombomere 5 (EFO) - - - - - - - - - presumptive rhombomere 4 (EFO) - - - - - - - - - presumptive rhombomere 3 (EFO) - - - - - - - - - presumptive rhombomere 8 (EFO) - - - - - - - - - presumptive hypochord (EFO) - - - - - - - - - presumptive floor plate (EFO) - - - - - - - - - epibranchial placode (EFO) - - - - - - - - - neurogenic placode (EFO) - - - - - - - - - anterior lateral line placode (EFO) - - - - - - - - - presumptive enteric nervous system (EFO) - - - - - - - - - presumptive forebrain midbrain boundary (EFO) - - - - - - - - - ventral pancreatic bud (EFO) - - - - - - - - - dorsal pancreatic bud (EFO) - - - - - - - - - presumptive ectoderm (EFO) - - - - - - - - - presumptive mesoderm (EFO) - - - - - - - - - paired fin bud (EFO) - - - - - - - - - pelvic appendage bud (EFO) - - - - - - - - - pancreatic epithelial bud (EFO) - - - - - - - - - caudal artery (EFO) - - - - - - - - - floor plate (EFO) - - - - - - - - - macula of utricle of membranous labyrinth (EFO) - - - - - - - - - hypochord (EFO) - - - - - - - - - postoptic commissure (EFO) - - - - - - - - - pronephric mesoderm (EFO) - - - - - - - - - rhombomere 6 (EFO) - - - - - - - - - swim bladder (EFO) - - - - - - - - - trigeminal neural crest (EFO) - - - - - - - - - trunk mesenchyme (EFO) - - - - - - - - - pectoral appendage apical ectodermal ridge (EFO) - - - - - - - - - blood island (EFO) - - - - - - - - - vasculature of brain (EFO) - - - - - - - - - head mesenchyme (EFO) - - - - - - - - - lateral line ganglion (EFO) - - - - - - - - - lens placode (EFO) - - - - - - - - - olfactory pit (EFO) - - - - - - - - - neural keel (EFO) - - - - - - - - - neural rod (EFO) - - - - - - - - - rhombomere 8 (EFO) - - - - - - - - - midbrain cerebral aqueduct (EFO) - - - - - - - - - basibranchial bone (EFO) - - - - - - - - - chordate pharyngeal muscle (EFO) - - - - - - - - - bulbus arteriosus (EFO) - - - - - - - - - cleithrum (EFO) - - - - - - - - - dentary (EFO) - - - - - - - - - jaw muscle (EFO) - - - - - - - - - neuromast (EFO) - - - - - - - - - paraxial mesoderm (EFO) - - - - - - - - - ventral part of telencephalon (EFO) - - - - - - - - - cranial muscle (EFO) - - - - - - - - - olfactory region (EFO) - - - - - - - - - heart tube (EFO) - - - - - - - - - articular/anguloarticular (EFO) - - - - - - - - - musculature of trunk (EFO) - - - - - - - - - pallium (EFO) - - - - - - - - - hyoid muscle (EFO) - - - - - - - - - otolith organ (EFO) - - - - - - - - - pectoral appendage musculature (EFO) - - - - - - - - - eye primordium (EFO) - - - - - - - - - prootic bone (EFO) - - - - - - - - - vestibulocochlear ganglion (EFO) - - - - - - - - - quadrate bone (EFO) - - - - - - - - - dorsal fin musculature (EFO) - - - - - - - - - ectopterygoid bone (EFO) - - - - - - - - - gill filament (EFO) - - - - - - - - - horizontal septum (EFO) - - - - - - - - - hyomandibular bone (EFO) - - - - - - - - - segmental intercostal artery (EFO) - - - - - - - - - early telencephalic vesicle (EFO) - - - - - - - - - midbrain basal plate (EFO) - - - - - - - - - rhombomere 2 floor plate (EFO) - - - - - - - - - rhombomere 5 floor plate (EFO) - - - - - - - - - rhombomere 8 floor plate (EFO) - - - - - - - - - mesenchyme derived from head neural crest (EFO) - - - - - - - - - diencephalon neural crest (EFO) - - - - - - - - - telencephalon neural crest (EFO) - - - - - - - - - nucleus of medial longitudinal fasciculus of medulla (EFO) - - - - - - - - - rhombomere 2 (EFO) - - - - - - - - - rhombomere 5 (EFO) - - - - - - - - - rhombomere 1 floor plate (EFO) - - - - - - - - - rhombomere 3 floor plate (EFO) - - - - - - - - - rhombomere 6 floor plate (EFO) - - - - - - - - - rhombomere 4 floor plate (EFO) - - - - - - - - - rhombomere 7 floor plate (EFO) - - - - - - - - - lateral mesenchyme derived from mesoderm (EFO) - - - - - - - - - mesencephalic neural crest (EFO) - - - - - - - - - middle lateral line neuromast (EFO) - - - - - - - - - pectoral fin skeleton (EFO) - - - - - - - - - posterior lateral line (EFO) - - - - - - - - - rhombomere 3 (EFO) - - - - - - - - - rhombomere 7 (EFO) - - - - - - - - - spinal cord lateral wall (EFO) - - - - - - - - - head mesenchyme from mesoderm (EFO) - - - - - - - - - mesenchyme pectoral fin (EFO) - - - - - - - - - trunk neural crest (EFO) - - - - - - - - - occipital lateral line neuromast (EFO) - - - - - - - - - supraorbital lateral line neuromast (EFO) - - - - - - - - - rhombomere 1 (EFO) - - - - - - - - - rhombomere 4 (EFO) - - - - - - - - - future internal carotid artery (EFO) - - - - - - - - - presumptive mesencephalic artery (EFO) - - - - - - - - - caudal vein (EFO) - - - - - - - - - rhombomere (EFO) - - - - - - - - - neural arch (EFO) - - - - - - - - - presumptive pronephric mesoderm (EFO) - - - - - - - - - thymus primordium (EFO) - - - - - - - - - chordo neural hinge (EFO) - - - - - - - - - ventricular zone (EFO) - - - - - - - - - early pharyngeal endoderm (EFO) - - - - - - - - - pharyngeal pouch (EFO) - - - - - - - - - granulosa cell layer (EFO) - - - - - - - - - theca cell layer (EFO) - - - - - - - - - pharyngeal pouch 1 (EFO) - - - - - - - - - pharyngeal pouch 2 (EFO) - - - - - - - - - pharyngeal pouch 3 (EFO) - - - - - - - - - pharyngeal pouch 6 (EFO) - - - - - - - - - pharyngeal pouch 5 (EFO) - - - - - - - - - pharyngeal pouch 4 (EFO) - - - - - - - - - non-neural ectoderm (EFO) - - - - - - - - - pelvic fin (EFO) - - - - - - - - - cranial neural crest (EFO) - - - - - - - - - axial mesoderm (EFO) - - - - - - - - - ventricular system of central nervous system (EFO) - - - - - - - - - gonad primordium (EFO) - - - - - - - - - mature ovarian follicle (EFO) - - - - - - - - - vasculature of head (EFO) - - - - - - - - - regenerating fin/limb (EFO) - - - - - - - - - blastema (EFO) - - - - - - - - - palatoquadrate arch (EFO) - - - - - - - - - lower jaw region (EFO) - - - - - - - - - intersomitic vessel (EFO) - - - - - - - - - nephron tubule (EFO) - - - - - - - - - renal glomerulus (EFO) - - - - - - - - - ciliary marginal zone (EFO) - - - - - - - - - geniculate ganglion (EFO) - - - - - - - - - dorsal anterior lateral line ganglion (EFO) - - - - - - - - - neurocranial trabecula (EFO) - - - - - - - - - terminal nerve (EFO) - - - - - - - - - pelvic appendage apical ectodermal ridge (EFO) - - - - - - - - - regeneration epithelium of fin/limb (EFO) - - - - - - - - - anterior lateral line ganglion (EFO) - - - - - - - - - ventral hyoid arch skeleton (EFO) - - - - - - - - - ethmoid cartilage (EFO) - - - - - - - - - hyomandibular cartilage (EFO) - - - - - - - - - floor plate of neural tube (EFO) - - - - - - - - - pharyngeal arch cartilage (EFO) - - - - - - - - - cartilage element of chondrocranium (EFO) - - - - - - - - - anterior lateral line system (EFO) - - - - - - - - - post-hyoid pharyngeal arch (EFO) - - - - - - - - - pharyngeal arch artery (EFO) - - - - - - - - - ventral wall of dorsal aorta (EFO) - - - - - - - - - anterior lateral plate mesoderm (EFO) - - - - - - - - - posterior lateral plate mesoderm (EFO) - - - - - - - - - myocardium trabecular layer (EFO) - - - - - - - - - primordial vasculature (EFO) - - - - - - - - - vascular cord (EFO) - - - - - - - - - adipose tissue of abdominal region (EFO) - - - - - - - - - hindlimb bone (EFO) - - - - - - - - - genitourinary system (EFO) - - - - - - - - - aortic valve (EFO) - - - - - - - - - metacarpal bone (EFO) - - - - - - - - - conducting system of heart (EFO) - - - - - - - - - mitral valve (EFO) - - - - - - - - - perineum (EFO) - - - - - - - - - external ear (EFO) - - - - - - - - - brachial artery (EFO) - - - - - - - - - iris (EFO) - - - - - - - - - cranial nerve II (EFO) - - - - - - - - - central retinal vein (EFO) - - - - - - - - - embryoid body (EFO) - - - - - - - - - airway submucosal gland (EFO) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/ontology/uberon-edit.obo b/src/ontology/uberon-edit.obo index 05ba9933b9..10f4f1edb3 100644 --- a/src/ontology/uberon-edit.obo +++ b/src/ontology/uberon-edit.obo @@ -49,7 +49,6 @@ treat-xrefs-as-equivalent: AEO treat-xrefs-as-equivalent: BILA treat-xrefs-as-equivalent: BSPO treat-xrefs-as-equivalent: CARO -treat-xrefs-as-equivalent: EFO treat-xrefs-as-equivalent: GO treat-xrefs-as-equivalent: OG treat-xrefs-as-equivalent: VSAO From 356c5b133cf17bdd0f3c1e0f1c600e9a271997a9 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 25 Oct 2023 13:39:50 +0100 Subject: [PATCH 30/45] Force refreshing the CL and ZFA mirrors when building the bridges. Building the bridges requires the CL and ZFA mirrors to be locally available (we need to extract cross-references from them). But the bridges are typically generated (e.g. during a release run) with IMP=false, which prevents the mirror from being downloaded (and will therefore result in a build failure unless the mirrors are present because they have been downloaded as part of a previous workflow). --- src/ontology/uberon.Makefile | 35 +++++++++++------------------------ 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 710b971b66..38150a229a 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1223,16 +1223,11 @@ CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.obo \ # Several cross-references are using OBO prefixes that are unknown to # ROBOT and not declared in Uberon/CL, so they need to be explicitly # declared here (otherwise xref-extract would ignore them). -# The bridge generation pipeline is typically run with MIR=false, so -# mirror/cl.owl may not be available; if so, we fallback to download it -# directly from the PURL source. -$(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) mirror/cl.owl $(TMPDIR)/plugins/sssom.jar - if [ -f mirror/cl.owl ]; then \ - CL_INPUT='-i mirror/cl.owl' ; \ - else \ - CL_INPUT='-I http://purl.obolibrary.org/obo/cl/cl-base.owl' ; \ - fi && \ - $(ROBOT) merge -i $< $$CL_INPUT --collapse-import-closure false \ +# The bridge generation pipeline is typically run with IMP=false, so +# mirror/cl.owl may not be available; so we forcibly refresh it. +$(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) $(TMPDIR)/plugins/sssom.jar + $(MAKE) $(MIRRORDIR)/cl.owl MIR=true IMP=true + $(ROBOT) merge -i $< -i $(MIRRORDIR)/cl.owl --collapse-import-closure false \ sssom:xref-extract --mapping-file $@ -v --drop-duplicates \ --prefix 'DHBA: http://purl.obolibrary.org/obo/DHBA_' \ --prefix 'EFO: http://purl.obolibrary.org/obo/EFO_' \ @@ -1245,13 +1240,9 @@ $(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) mirror/cl.owl $(TMPDIR)/plugins/sssom.jar # 2. Likewise, but from ZFA (ZFA is the source of truth for the CL-ZFA # mappings). -$(TMPDIR)/zfa.sssom.tsv: mirror/zfa.owl $(TMPDIR)/plugins/sssom.jar - if [ -f mirror/zfa.owl ]; then \ - ZFA_INPUT='-i mirror/zfa.owl' ; \ - else \ - ZFA_INPUT='-I http://purl.obolibrary.org/obo/zfa/zfa-base.owl' ; \ - fi && \ - $(ROBOT) merge $$ZFA_INPUT sssom:xref-extract --mapping-file $@ +$(TMPDIR)/zfa.sssom.tsv: $(TMPDIR)/plugins/sssom.jar + $(MAKE) $(MIRRORDIR)/zfa.owl MIR=true IMP=true + $(ROBOT) merge -i $(MIRRORDIR)/zfa.owl sssom:xref-extract --mapping-file $@ # 3. Prepare the ruleset file. # The ruleset file is maintained with M4 macros to make it more easily @@ -1263,16 +1254,12 @@ $(TMPDIR)/bridges.rules: $(SCRIPTSDIR)/sssomt.m4 $(BRIDGEDIR)/bridges.rules.m4 # Note that merging CL here is not strictly necessary, but doing so # allows sssom-inject to filter out any mapping with an inexistent or # obsolete Uberon/CL class. -$(TMPDIR)/bridges: $(SRC) mirror/cl.owl \ +$(TMPDIR)/bridges: $(SRC) \ $(TMPDIR)/uberon-cl.sssom.tsv $(TMPDIR)/zfa.sssom.tsv $(EXTERNAL_SSSOM_SETS) \ $(TMPDIR)/plugins/sssom.jar $(TMPDIR)/bridges.rules $(BRIDGEDIR)/bridges.dispatch \ $(CUSTOM_BRIDGES) - if [ -f mirror/cl.owl ]; then \ - CL_INPUT='-i mirror/cl.owl' ; \ - else \ - CL_INPUT='-I http://purl.obolibrary.org/obo/cl/cl-base.owl' ; \ - fi && \ - $(ROBOT) merge -i $(SRC) $$CL_INPUT \ + $(MAKE) $(MIRRORDIR)/cl.owl MIR=true IMP=true + $(ROBOT) merge -i $(SRC) -i $(MIRRORDIR)/cl.owl \ sssom:sssom-inject --sssom $(TMPDIR)/uberon-cl.sssom.tsv \ --sssom $(TMPDIR)/zfa.sssom.tsv \ $(foreach set, $(EXTERNAL_SSSOM_SETS), --sssom $(set)) \ From 2f0ba95a33ef751ce95509e4272aa6c4ba717f8b Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Sun, 29 Oct 2023 18:29:12 +0000 Subject: [PATCH 31/45] Update SSSOM plugin to version 0.6.0. Version 0.6.0 of the SSSOM plugin ensures that the bridges' metadata are using the purl.org/dc/terms namespace rather than the purl.org/dc/elements/1.1 namespace. --- src/ontology/uberon.Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 38150a229a..d8c0d6c321 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -119,7 +119,7 @@ export ROBOT_PLUGINS_DIRECTORY # Make sure the SSSOM plugin for ROBOT is available. $(TMPDIR)/plugins/sssom.jar: mkdir -p $(TMPDIR)/plugins - curl -L -o $@ https://github.com/gouttegd/sssom-java/releases/download/sssom-java-0.4.3/sssom-robot-plugin-0.4.3.jar + curl -L -o $@ https://github.com/gouttegd/sssom-java/releases/download/sssom-java-0.6.0/sssom-robot-plugin-0.6.0.jar # ---------------------------------------- From 0de51f48d738726fd1642d61294a7be9e1496784 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 13 Nov 2023 15:57:21 +0000 Subject: [PATCH 32/45] Remove FBbt xrefs from the -edit file. The -edit file still contains some cross-references to FBbt terms. FBbt mappings are entirely managed on the FBbt side, so such cross-references, while harmless, are better removed. --- src/ontology/uberon-edit.obo | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ontology/uberon-edit.obo b/src/ontology/uberon-edit.obo index 6371473f5c..9907161048 100644 --- a/src/ontology/uberon-edit.obo +++ b/src/ontology/uberon-edit.obo @@ -79312,7 +79312,6 @@ synonym: "gut epithelium" EXACT [EHDAA2:0004567, MA:0003201, ZFA:0005123] xref: BTO:0000956 xref: EHDAA2:0004567 xref: EMAPA:32928 -xref: FBbt:00047143 xref: MA:0003201 xref: NCIT:C12963 xref: TAO:0005123 @@ -94314,7 +94313,6 @@ synonym: "gut section" RELATED [FBbt:00100315] synonym: "intestinal tract" RELATED [] synonym: "segment of intestinal tract" RELATED [] synonym: "subdivision of alimentary system" RELATED [FMA:71131] -xref: FBbt:00100315 xref: FMA:71131 intersection_of: UBERON:0013522 ! subdivision of tube intersection_of: subdivision_of UBERON:0001555 ! digestive tract @@ -220273,7 +220271,6 @@ relationship: part_of UBERON:0000984 ! imaginal disc-derived wing id: UBERON:6005380 name: insect pharynx def: "Section of the insect foregut anterior to the esophagus." [FBbt:00005380, http://orcid.org/0000-0002-6601-2165] -xref: FBbt:00005380 is_a: UBERON:0004921 {source="FBbt"} ! subdivision of digestive tract is_a: UBERON:0006562 {note="parent may be obsoleted"} ! pharynx relationship: part_of UBERON:0003929 {source="FBbt"} ! digestive tract epithelium From 244c95ad6f6b762044b229da9a05c0d87c3f9678 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Mon, 13 Nov 2023 19:17:59 +0000 Subject: [PATCH 33/45] Document the bridges. Document the bridges: what they are, what are the different sources of truths (and so, where editors should look for to update them when needed), how they are generated. --- docs/bridges.md | 223 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 222 insertions(+), 1 deletion(-) diff --git a/docs/bridges.md b/docs/bridges.md index 57c9fa445d..a5f439b2e9 100644 --- a/docs/bridges.md +++ b/docs/bridges.md @@ -1,4 +1,225 @@ # Uberon bridge files -The latest bridge files can be found on [GitHub](https://github.com/obophenotype/uberon/tree/master/src/ontology/bridge). +Uberon provides _bridge files_ for several foreign ontologies, +especially species-specific anatomy ontologies (ssAOs). Each bridge file +contains _bridging axioms_ that establish a relationship between a +Uberon term and a term from the foreign ontology. +For example, the `uberon-bridge-to-zfa` bridge contains axioms such as +this one: + +> ZFA:0001262 EquivalentTo: UBERON:0005564 and (BFO:0000050 some NCBITaxon:7954) + +which states that ZFA’s [gonad +primordium](http://purl.obolibrary.org/obo/ZFA_0001262) (ZFA:0001262) is +equivalent to a Uberon’s [gonad +primordium](http://purl.obolibrary.org/obo/UBERON_0005564) +(UBERON:0005564) that is [part +of](http://purl.obolibrary.org/obo/BFO_0000050) a +[Danio](http://purl.obolibrary.org/obo/NCBITaxon_7954) (NCBITaxon:7954). + +Such a bridge may be used by anyone who wants to merge Uberon and FBbt +to obtain an integrated ontology in which the _Drosophila_-specific +terms in FBbt are properly linked to their taxon-neutral counterparts in +Uberon. Internally, Uberon itself is using those bridges to produce the +[combined multispecies ontologies](combined_multispecies.md) such as +`composite-metazoan`. + +Note that the bridges between the [Cell +Ontology](https://obophenotype.github.io/cell-ontology/) (CL) and the +species-specific anatomy ontologies are _also_ provided by Uberon, rather by CL +directly. This is because the pipeline that produces those bridges (briefly +described below) is entirely hosted in the Uberon repository. + +The latest bridge files can be found on +[GitHub](https://github.com/obophenotype/uberon/tree/master/src/ontology/bridge). + +## Sources of truth + +Each bridge has one source of truth which may be: + +* cross-references in Uberon or CL; +* cross-references in the foreign ontology; +* an externally provided _mapping set_; +* an externally provided _custom bridge_. + +### Cross-references in Uberon or CL + +Cross-references are currently the source of truth for most bridges. For +such bridges, a Uberon or CL term will carry a `oboInOwl:hasDbXref` +annotation (aka a “OBO-style cross-reference”) whose value is the short +identifier of the foreign term that is, by virtue of this +cross-reference, being mapped to the Uberon or CL term. + +For example, Uberon contains the following annotation assertion: + +> AnnotationAssertion(oboInOwl:hasDbXref UBERON:0005564 "ZFA:0001262") + +by which Uberon’s [gonad +primordium](http://purl.obolibrary.org/obo/UBERON_0005564) is mapped to +the [equivalent term in +ZFA](http://purl.obolibrary.org/obo/ZFA_0001262). + +The annotations are present directly in the `-edit` file and may be +edited by curators as they wish, using e.g. Protégé. + +Note that for an annotation such as the one above to be used when +producing the bridge files, the prefix used in the annotation (in this +example `ZFA`) must be declared in an ontology-level annotation that +will indicate the signification of the mapping. In the case of ZFA, the +declaration is as follows: + +> Annotation(oboInOwl:treat-xrefs-as-reverse-genus-differentia "ZFA part\_of NCBITaxon:7954) + +and it indicates that any mapping between a Uberon term and a term from +ZFA should result, when producing the bridge files, in a axiom that +states that the ZFA term is equivalent to the intersection of the Uberon +term and the existential restriction `part_of some Danio`. + +Curators should not normally have to worry about declaring the prefixes +of foreign ontologies that Uberon provides bridges for, unless they want +to create a completely new bridge (which presumably should not be needed +often). But for reference, here are the other possible declaration +annotations and the meaning they give to the mappings: + +* `oboInOwl:treat-xrefs-as-equivalent "PFX"`: indicates that terms in + the _PFX_ namespace are equivalent to the Uberon or CL terms they are + mapped to; +* `oboInOwl:treat-xrefs-as-is_a "PFX"`: indicates that terms in the + _PFX_ namespace are parents of the Uberon or CL terms they are mapped + to; +* `oboInOwl:treat-xrefs-as-has-subclass "PFX"`: indicates that terms in + the _PFX_ namespaces are subclasses of the Uberon or CL terms they are + mapped to. + +### Cross-references in the foreign ontology + +Some foreign ontologies maintain their own mappings with Uberon and/or +CL, using the same cross-reference-based system as used in Uberon and CL +and described above. In such cases, when generating the bridges Uberon +obtains the cross-references from the foreign ontologies and then +derives the bridging axioms from them in the same way as is done for +cross-references maintained internally in Uberon and CL. + +Uberon or CL editors wishing to amend the mappings with an ontology that +maintain its own mappings should contact the editors of that ontology +directly, as the mappings cannot be edited directly within Uberon or CL. +Adding a cross-reference in Uberon or CL is possible but will have no +effect on the bridges. + +### Externally provided mapping sets + +Some foreign ontologies maintain their own mappings with Uberon and/or +CL, and provide the mappings in the form of a +[SSSOM](https://mapping-commons.github.io/sssom/home/) mapping set. For +such ontologies, Uberon simply uses the mapping set as provided and +derives the bridging axioms from it. In that case, Uberon or CL editors +wishing to amend the mappings should contact the editors of the foreign +ontology, as the mappings cannot be edited directly within Uberon/CL. +Adding a cross-reference in Uberon or CL will have _no_ effect. + +### Externally provided custom bridges + +Some foreign sources provide “custom” or “complex” bridge files that +they generate on their side using whatever pipeline they need. Uberon +simply uses those bridge files as they are. As for the case of +externally provided mapping sets, Uberon or CL editors wishing to amend +those bridges should contact the upstream source. + +## The bridges + +The following is a list of all the current bridges, along with their +current source of truth. + +### Bridges with Uberon + +| Bridge name | Foreign ontology | Source of truth | +| ----------- | ---------------- | --------------- | +| `uberon-bridge-to-aeo.owl` | [Anatomical entity ontology](http://obofoundry.org/ontology/aeo) (AEO) | AEO xrefs in Uberon | +| `uberon-bridge-to-bfo.owl` | [Basic formal ontology](http://obofoundry.org/ontology/bfo) (BFO) | BFO xrefs in Uberon | +| `uberon-bridge-to-caro.owl` | [Common anatomy reference ontology](http://obofoundry.org/ontology/caro) (CARO) | CARO xrefs in Uberon | +| `uberon-bridge-to-dhba.owl` | [Developing human brain atlas](https://www.brainspan.org/) (DHBA) | DHBA xrefs in Uberon | +| `uberon-bridge-to-dmba.owl` | [Developing mouse brain atlas](https://developingmouse.brain-map.org/) (DMBA) | Externally provided custom bridge, maintained [here](https://github.com/brain-bican/developing_mouse_brain_atlas_ontology) | +| `uberon-bridge-to-ehdaa2.owl` | [Human developmental anatomy](http://obofoundry.org/ontology/ehdaa2.html) (EHDAA2) | EHDAA2 xrefs in Uberon | +| `uberon-bridge-to-emapa.owl` | [Mouse developmental anatomy ontology](http://obofoundry.org/ontology/emapa) (EMAPA) | EMAPA xrefs in Uberon | +| `uberon-bridge-to-fbbt.owl` | [Drosophila anatomy ontology](http://obofoundry.org/ontology/fbbt) (FBbt) | [FBbt-maintained](https://github.com/FlyBase/drosophila-anatomy-developmental-ontology) mapping set | +| `uberon-bridge-to-fbdv.owl` | [Drosophila development ontology](http://obofoundry.org/ontology/fbdv) (FBdv) | FBdv xrefs in Uberon | +| `uberon-bridge-to-fma.owl` | [Foundational model of anatomy ontology](http://obofoundry.org/ontology/fma) (FMA) | FMA xrefs in Uberon | +| `uberon-bridge-to-go.owl` | [Gene ontology](http://obofoundry.org/ontology/go) (GO) | GO xrefs in Uberon | +| `uberon-bridge-to-hao.owl` | [Hymenoptera anatomy ontology](http://obofoundry.org/ontology/hao) (HAO) | HAO xrefs in Uberon | +| `uberon-bridge-to-hba.owl` | [Human brain atlas](https://human.brain-map.org/) (HBA) | HBA xrefs in Uberon | +| `uberon-bridge-to-hsapdv.owl` | [Human developmental stages](http://obofoundry.org/ontology/hsapdv) (HsapDv) | HsapDv xrefs in Uberon | +| `uberon-bridge-to-kupo.owl` | [Kidney and urinary pathway ontology](https://jbiomedsem.biomedcentral.com/articles/10.1186/2041-1480-2-S2-S7) (KUPO) | KUPO xrefs in Uberon | +| `uberon-bridge-to-ma.owl` | [Mouse adult gross anatomy](http://obofoundry.org/ontology/ma) (MA) | MA xrefs in Uberon | +| `uberon-bridge-to-mba.owl` | [Mouse brain atlas](https://mouse.brain-map.org/) (MBA) | Externally provided custom bridge, maintained [here](https://github.com/brain-bican/mouse_brain_atlas_ontology) | +| `uberon-bridge-to-mmusdv.owl` | [Mouse developmental stages](http://obofoundry.org/ontology/mmusdv) (MmusDv) | MmusDv xrefs in Uberon | +| `uberon-bridge-to-ncit.owl` | [NCI thesaurus OBO edition](http://obofoundry.org/ontology/ncit) (NCIT) | NCIT xrefs in Uberon | +| `uberon-bridge-to-oges.owl` | ? | OGES xrefs in Uberon | +| `uberon-bridge-to-pba.owl` | Primate brain atlas (PBA) | PBA xrefs in Uberon | +i| `uberon-bridge-to-sctid.owl` | SNOMED CT (SCTID) | SCTID xrefs in Uberon | +| `uberon-bridge-to-spd.owl` | [Spider ontology](http://obofoundry.org/ontology/spd) (SPD) | SPD xrefs in Uberon | +| `uberon-bridge-to-tads.owl` | [Tick anatomy ontology](http://obofoundry.org/ontology/tads) (TADS) | TADS xrefs in Uberon | +| `uberon-bridge-to-tgma.owl` | [Mosquito gross anatomy ontology](http://obofoundry.org/ontology/tgma) (TGMA) | TGMA xrefs in Uberon | +| `uberon-bridge-to-wbbt.owl` | [C. elegans gross anatomy ontology](http://obofoundry.org/ontology/wbbt) (WBbt) | WBbt xrefs in Uberon | +| `uberon-bridge-to-wbls.owl` | [C. elegans development ontology](http://obofoundry.org/ontology/wbls) (WBls) | WBls xrefs in Uberon | +| `uberon-bridge-to-xao.owl` | [Xenopus anatomy ontology](http://obofoundry.org/ontology/xao) (XAO) | XAO xrefs in Uberon | +| `uberon-bridge-to-zfa.owl` | [Zebrafish anatomy ontology](http://obofoundry.org/ontology/zfa) (ZFA) | ZFA xrefs in Uberon | +| `uberon-bridge-to-zfs.owl` | [Zebrafish developmental stages](http://obofoundry.org/ontology/zfs) (ZFS) | ZFS xrefs in Uberon | + +### Bridges with CL + +| Bridge name | Foreign ontology | Source of truth | +| ----------- | ---------------- | --------------- | +| `cl-bridge-to-aeo.owl` | [Anatomical entity ontology](http://obofoundry.org/ontology/aeo) (AEO) | AEO xrefs in CL | +| `cl-bridge-to-caro.owl` | [Common anatomy reference ontology](http://obofoundry.org/ontology/caro) (CARO) | CARO xrefs in CL | +| `cl-bridge-to-ehdaa2.owl` | [Human developmental anatomy](http://obofoundry.org/ontology/ehdaa2.html) (EHDAA2) | EHDAA2 xrefs in CL | +| `cl-bridge-to-emapa.owl` | [Mouse developmental anatomy ontology](http://obofoundry.org/ontology/emapa) (EMAPA) | EMAPA xrefs in EMAPA | +| `cl-bridge-to-fbbt.owl` | [Drosophila anatomy ontology](http://obofoundry.org/ontology/fbbt) (FBbt) | [FBbt-maintained](https://github.com/FlyBase/drosophila-anatomy-developmental-ontology) mapping set | +| `cl-bridge-to-fma.owl` | [Foundational model of anatomy ontology](http://obofoundry.org/ontology/fma) (FMA) | FMA xrefs in CL | +| `cl-bridge-to-go.owl` | [Gene ontology](http://obofoundry.org/ontology/go) (GO) | GO xrefs im CL | +| `cl-bridge-to-kupo.owl` | [Kidney and urinary pathway ontology](https://jbiomedsem.biomedcentral.com/articles/10.1186/2041-1480-2-S2-S7) (KUPO) | KUPO xrefs in CL | +| `cl-bridge-to-ma.owl` | [Mouse adult gross anatomy](http://obofoundry.org/ontology/ma) (MA) | MA xrefs in CL | +| `cl-bridge-to-ncit.owl` | [NCI thesaurus OBO edition](http://obofoundry.org/ontology/ncit) (NCIT) | NCIT xrefs in CL | +| `cl-bridge-to-sctid.owl` | SNOMED CT (SCTID) | SCTID xrefs in CL | +| `cl-bridge-to-wbbt.owl` | [C. elegans gross anatomy ontology](http://obofoundry.org/ontology/wbbt) (WBbt) | WBbt xrefs in CL | +| `cl-bridge-to-xao.owl` | [Xenopus anatomy ontology](http://obofoundry.org/ontology/xao) (XAO) | XAO xrefs in CL | +| `cl-bridge-to-zfa.owl` | [Zebrafish anatomy ontology](http://obofoundry.org/ontology/zfa) (ZFA) | CL xrefs in ZFA, maintained [here](https://github.com/ZFIN/zebrafish-anatomical-ontology) | + +## Producing the bridges + +This section is a (very) brief overview of the pipeline that generates +the bridge files. + +The pipeline may be triggered by invoking the Make target `tmp/bridges` +(whilst in the in `src/ontology` directory, where the Makefile is +located). Here is what happens then: + +1. Production of a SSSOM mapping set from the Uberon and CL + cross-references. The Uberon `-edit` file is merged with the mirrored + copy of CL (which is downloaded if not already available) and + cross-references from both Uberon and CL are extracted and turned + into a SSSOM mapping set. This takes care of all the mappings with + the foreign ontologies for which Uberon and CL are the source of + truth. +2. Production of a SSSOM mapping sets from ontologies that maintain + their own mappings as cross-references. The foreign ontologies are + downloaded and their cross-references are extracted in the same way + as the Uberon/CL cross-references are. +3. Fetching of externally maintained mapping sets. For ontologies that + maintain their own mappings and provide a SSSOM mapping set directly, + we fetch the mapping set as it is. +4. Merging of all the mapping sets. We merge the SSSOM mapping set that + was derived from the Uberon/CL cross-references (step 1), the sets + that were derived from the cross-references of foreign ontologies + (step 2), and the sets that we obtained directly from foreign + ontologies (step 3). +5. Production of the bridges. We apply a large SSSOM/T-OWL ruleset (in + `tmp/bridges.rules`, derived from a M4 source in `bridges/rules.m4`) + to produce bridging axioms from the mappings in the combined mapping + set obtained at step 4. +6. Dispatching into individual bridges. The axioms produced at step 5 + are written to different bridges depending on the ontologies they are + bridging (e.g., an axiom that bridges a Uberon term and a ZFA term + will be written to the `uberon-bridge-to-zfa.owl` bridge file). +7. Fetching the custom bridges. Independently of all the previous steps, + the “custom” bridges are fetched from their upstream source. From e6ff002f4622f3ded17639eecb3176e646c9f88c Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 11:14:17 +0000 Subject: [PATCH 34/45] Misc fixes in bridges.md. The bridging axiom used as example in the introduction comes from ZFA, but the following paragraph refers to FBbt, which may cause needless confusion. Also add a missing closing quote in another example. --- docs/bridges.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/bridges.md b/docs/bridges.md index a5f439b2e9..aa216f4c4a 100644 --- a/docs/bridges.md +++ b/docs/bridges.md @@ -18,10 +18,10 @@ primordium](http://purl.obolibrary.org/obo/UBERON_0005564) of](http://purl.obolibrary.org/obo/BFO_0000050) a [Danio](http://purl.obolibrary.org/obo/NCBITaxon_7954) (NCBITaxon:7954). -Such a bridge may be used by anyone who wants to merge Uberon and FBbt -to obtain an integrated ontology in which the _Drosophila_-specific -terms in FBbt are properly linked to their taxon-neutral counterparts in -Uberon. Internally, Uberon itself is using those bridges to produce the +Such a bridge may be used by anyone who wants to merge Uberon and ZFA to +obtain an integrated ontology in which the _Danio_-specific terms in ZFA +are properly linked to their taxon-neutral counterparts in Uberon. +Internally, Uberon itself is using those bridges to produce the [combined multispecies ontologies](combined_multispecies.md) such as `composite-metazoan`. @@ -69,7 +69,7 @@ example `ZFA`) must be declared in an ontology-level annotation that will indicate the signification of the mapping. In the case of ZFA, the declaration is as follows: -> Annotation(oboInOwl:treat-xrefs-as-reverse-genus-differentia "ZFA part\_of NCBITaxon:7954) +> Annotation(oboInOwl:treat-xrefs-as-reverse-genus-differentia "ZFA part\_of NCBITaxon:7954") and it indicates that any mapping between a Uberon term and a term from ZFA should result, when producing the bridge files, in a axiom that From bd2a1f61f32f9d893a023e66cd36756bade90df6 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 13:25:07 +0000 Subject: [PATCH 35/45] Fetch external mapping sets in a separate phase. Do not extract the mappings from CL at the same time as we extract the mappings from Uberon. They are maintained in an external repository (the CL repository), so they should be treated differently, downloaded separately and committed to the repository before being used in downstream rules (instead of being written to a temporary file). Same for the mappings extracted from ZFA. --- src/ontology/uberon.Makefile | 49 ++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 19 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 34aca37b26..e2110c56a3 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1223,7 +1223,7 @@ composites: composite-metazoan.obo composite-vertebrate.obo # them and store them into mappings/ONT-mappings.ssom.tsv. # The following ontologies publish their own mapping sets. -EXTERNAL_SSSOM_PROVIDERS = fbbt +EXTERNAL_SSSOM_PROVIDERS = fbbt cl zfa # All the sets coming from the above ontologies. EXTERNAL_SSSOM_SETS = $(foreach provider, $(EXTERNAL_SSSOM_PROVIDERS), mappings/$(provider)-mappings.sssom.tsv) @@ -1242,6 +1242,28 @@ mappings/%-mappings.sssom.tsv: $(TMPDIR)/%.sssom.tsv if [ -f $< ]; then if ! cmp $< $@ ; then cat $< > $@ ; fi ; fi +# Special cases for ontologies that do no provide a ready-to-use set +# ------------------------------------------------------------------ + +# The CL set is to be extracted from cross-references. In order to do +# that, we need to first merge Uberon with CL, because the treat-xrefs- +# annotations are only in Uberon; then we need to remove the Uberon +# terms to avoid extracting the cross-references from them as well. +mappings/cl-mappings.sssom.tsv: $(SRC) $(MIRRORDIR)/cl.owl $(TMPDIR)/plugins/sssom.jar + $(ROBOT) merge -i $(SRC) -i $(MIRRORDIR)/cl.owl --collapse-import-closure false \ + remove --base-iri http://purl.obolibrary.org/obo/CL_ --axioms external \ + sssom:xref-extract --mapping-file $@ -v --drop-duplicates \ + --prefix 'KUPO: http://purl.obolibrary.org/obo/KUPO_' \ + --prefix 'SCTID: http://purl.obolibrary.org/obo/SCTID_' \ + > $(REPORTDIR)/cl-xrefs-extraction.txt + +# Likewise, the ZFA set (which is the source of truth for the CL-ZFA +# mappings) is to be extracted from cross-references in ZFA. +mappings/zfa-mappings.sssom.tsv: $(MIRRORDIR)/zfa.owl $(TMPDIR)/plugins/sssom.jar + $(ROBOT) sssom:xref-extract -i $(MIRRORDIR)/zfa.owl --mapping-file $@ \ + > $(REPORTDIR)/zfa-xrefs-extraction.txt + + # ---------------------------------------- # BRIDGES # ---------------------------------------- @@ -1251,16 +1273,13 @@ ifeq ($(BRI),true) CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.obo \ $(BRIDGEDIR)/uberon-bridge-to-dmba.obo -# 1. Extract cross-references from Uberon/CL and turn them to a SSSOM +# 1. Extract cross-references from Uberon and turn them to a SSSOM # mapping set. # Several cross-references are using OBO prefixes that are unknown to # ROBOT and not declared in Uberon/CL, so they need to be explicitly # declared here (otherwise xref-extract would ignore them). -# The bridge generation pipeline is typically run with IMP=false, so -# mirror/cl.owl may not be available; so we forcibly refresh it. -$(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) $(TMPDIR)/plugins/sssom.jar - $(MAKE) $(MIRRORDIR)/cl.owl MIR=true IMP=true - $(ROBOT) merge -i $< -i $(MIRRORDIR)/cl.owl --collapse-import-closure false \ +$(TMPDIR)/uberon-mappings.sssom.tsv: $(SRC) $(TMPDIR)/plugins/sssom.jar + $(ROBOT) merge -i $< --collapse-import-closure false \ sssom:xref-extract --mapping-file $@ -v --drop-duplicates \ --prefix 'DHBA: http://purl.obolibrary.org/obo/DHBA_' \ --prefix 'EFO: http://purl.obolibrary.org/obo/EFO_' \ @@ -1269,15 +1288,9 @@ $(TMPDIR)/uberon-cl.sssom.tsv: $(SRC) $(TMPDIR)/plugins/sssom.jar --prefix 'OGES: http://purl.obolibrary.org/obo/OGES_' \ --prefix 'PBA: http://purl.obolibrary.org/obo/PBA_' \ --prefix 'SCTID: http://purl.obolibrary.org/obo/SCTID_' \ - > $(REPORTDIR)/xrefs-extraction.txt - -# 2. Likewise, but from ZFA (ZFA is the source of truth for the CL-ZFA -# mappings). -$(TMPDIR)/zfa.sssom.tsv: $(TMPDIR)/plugins/sssom.jar - $(MAKE) $(MIRRORDIR)/zfa.owl MIR=true IMP=true - $(ROBOT) merge -i $(MIRRORDIR)/zfa.owl sssom:xref-extract --mapping-file $@ + > $(REPORTDIR)/uberon-xrefs-extraction.txt -# 3. Prepare the ruleset file. +# 2. Prepare the ruleset file. # The ruleset file is maintained with M4 macros to make it more easily # editable, so we need to expand the macros first. $(TMPDIR)/bridges.rules: $(SCRIPTSDIR)/sssomt.m4 $(BRIDGEDIR)/bridges.rules.m4 @@ -1287,14 +1300,12 @@ $(TMPDIR)/bridges.rules: $(SCRIPTSDIR)/sssomt.m4 $(BRIDGEDIR)/bridges.rules.m4 # Note that merging CL here is not strictly necessary, but doing so # allows sssom-inject to filter out any mapping with an inexistent or # obsolete Uberon/CL class. -$(TMPDIR)/bridges: $(SRC) \ - $(TMPDIR)/uberon-cl.sssom.tsv $(TMPDIR)/zfa.sssom.tsv $(EXTERNAL_SSSOM_SETS) \ +$(TMPDIR)/bridges: $(SRC) $(TMPDIR)/uberon-mappings.sssom.tsv $(EXTERNAL_SSSOM_SETS) \ $(TMPDIR)/plugins/sssom.jar $(TMPDIR)/bridges.rules $(BRIDGEDIR)/bridges.dispatch \ $(CUSTOM_BRIDGES) $(MAKE) $(MIRRORDIR)/cl.owl MIR=true IMP=true $(ROBOT) merge -i $(SRC) -i $(MIRRORDIR)/cl.owl \ - sssom:sssom-inject --sssom $(TMPDIR)/uberon-cl.sssom.tsv \ - --sssom $(TMPDIR)/zfa.sssom.tsv \ + sssom:sssom-inject --sssom $(TMPDIR)/uberon-mappings.sssom.tsv \ $(foreach set, $(EXTERNAL_SSSOM_SETS), --sssom $(set)) \ --ruleset $(TMPDIR)/bridges.rules \ --dispatch-table $(BRIDGEDIR)/bridges.dispatch && \ From c6bb994fbdca2ad21226cc877dc82e5bf087f2e6 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 14:22:02 +0000 Subject: [PATCH 36/45] Only refresh the external mapping sets under IMP=true. Since the external mapping sets are a way to introduce assertions maintained elsewhere into some of our released products (e.g. composite-metazoan), we treat them as if they were imports, and refresh them only when IMP is set to true. Upon IMP=false the bridges are generated from the (unrefreshed) mapping sets that are committed in the repository. --- src/ontology/uberon.Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index e2110c56a3..4db7d430ba 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1228,18 +1228,16 @@ EXTERNAL_SSSOM_PROVIDERS = fbbt cl zfa # All the sets coming from the above ontologies. EXTERNAL_SSSOM_SETS = $(foreach provider, $(EXTERNAL_SSSOM_PROVIDERS), mappings/$(provider)-mappings.sssom.tsv) +# We only refresh external resources under IMP=true +ifeq ($(strip $(IMP)),true) + # Fetch a fresh version of a foreign mapping set. This generic rule # assumes the foreign ontology is publishing its set at a predictable # location. Override this rule if a given ontology publishes its set at # a different location. .PHONY: $(foreach provider, $(EXTERNAL_SSSOM_PROVIDERS), $(provider)-mappings) -$(TMPDIR)/%.sssom.tsv: %-mappings - if [ $(IMP) = true ]; then wget -O $@ http://purl.obolibrary.org/obo/$*/$*-mappings.sssom.tsv ; fi - -# Refresh the mapping set in mappings/ with the one freshly downloaded, -# if it is different. -mappings/%-mappings.sssom.tsv: $(TMPDIR)/%.sssom.tsv - if [ -f $< ]; then if ! cmp $< $@ ; then cat $< > $@ ; fi ; fi +mappings/%-mappings.sssom.tsv: %-mappings + wget -O $@ http://purl.obolibrary.org/obo/$*/$*-mappings.sssom.tsv # Special cases for ontologies that do no provide a ready-to-use set @@ -1263,6 +1261,8 @@ mappings/zfa-mappings.sssom.tsv: $(MIRRORDIR)/zfa.owl $(TMPDIR)/plugins/sssom.ja $(ROBOT) sssom:xref-extract -i $(MIRRORDIR)/zfa.owl --mapping-file $@ \ > $(REPORTDIR)/zfa-xrefs-extraction.txt +endif + # ---------------------------------------- # BRIDGES From 073757e6d1874340a6f40645dcf731c14262e23a Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 14:35:23 +0000 Subject: [PATCH 37/45] Only refresh the custom bridges upon IMP=true. We treat the "custom bridges" (bridges that we use directly as they are provided to us) the same way as we treat external mapping sets: we only refresh them if we are willing to refresh external resources, which is stated by the IMP variable. --- src/ontology/uberon.Makefile | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 4db7d430ba..e193260c8f 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1332,17 +1332,21 @@ $(BRIDGEDIR)/%.obo: $(BRIDGEDIR)/%.owl UBERON_BRIDGE_MBA = "https://raw.githubusercontent.com/obophenotype/ABA_Uberon/master/src/ontology/new-bridges/new-uberon-bridge-to-mba.owl" UBERON_BRIDGE_DMBA = "https://raw.githubusercontent.com/obophenotype/ABA_Uberon/master/src/ontology/new-bridges/new-uberon-bridge-to-dmba.owl" +# Only refresh those bridges when we explicitly allow refreshing +# external resources (IMP=true). +ifeq ($(strip $(IMP)),true) $(BRIDGEDIR)/uberon-bridge-to-mba.owl: $(SRC) - if [ $(BRI) = true ]; then $(ROBOT) annotate -I $(UBERON_BRIDGE_MBA) --ontology-iri $(ONTBASE)/$@ -o $@; fi - -$(BRIDGEDIR)/uberon-bridge-to-mba.obo: $(BRIDGEDIR)/uberon-bridge-to-mba.owl - if [ $(BRI) = true ]; then $(ROBOT) convert --input $(BRIDGEDIR)/uberon-bridge-to-mba.owl --output $@; fi + $(ROBOT) annotate -I $(UBERON_BRIDGE_MBA) --ontology-iri $(ONTBASE)/$@ -o $@ $(BRIDGEDIR)/uberon-bridge-to-dmba.owl: $(SRC) - if [ $(BRI) = true ]; then $(ROBOT) annotate -I $(UBERON_BRIDGE_DMBA) --ontology-iri $(ONTBASE)/$@ -o $@; fi + $(ROBOT) annotate -I $(UBERON_BRIDGE_DMBA) --ontology-iri $(ONTBASE)/$@ -o $@ +endif + +$(BRIDGEDIR)/uberon-bridge-to-mba.obo: $(BRIDGEDIR)/uberon-bridge-to-mba.owl + $(ROBOT) convert --input $(BRIDGEDIR)/uberon-bridge-to-mba.owl --output $@ $(BRIDGEDIR)/uberon-bridge-to-dmba.obo: $(BRIDGEDIR)/uberon-bridge-to-dmba.owl - if [ $(BRI) = true ]; then $(ROBOT) convert --input $(BRIDGEDIR)/uberon-bridge-to-dmba.owl --output $@; fi + $(ROBOT) convert --input $(BRIDGEDIR)/uberon-bridge-to-dmba.owl --output $@ else # BRI=false # Skip the production of bridges entirely. From aae55363142500d719d0edb65211ce2f9270569f Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 14:41:08 +0000 Subject: [PATCH 38/45] Use OWL as the default format for the custom bridges. All bridges are now generated in the OWL format, and the custom bridges are provided by upstream already in the OWL format, so we can use them directly in that format. We do not generate OBO versions by default. If we do want an OBO version of them, such a version can be generated using the default rule to produce an OBO bridge from an OWL bridge, there is no need to have specific rules for the custom bridges. --- src/ontology/uberon.Makefile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index e193260c8f..53f102cd0a 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1270,8 +1270,8 @@ endif ifeq ($(BRI),true) # Those bridges are generated separately (see below). -CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.obo \ - $(BRIDGEDIR)/uberon-bridge-to-dmba.obo +CUSTOM_BRIDGES = $(BRIDGEDIR)/uberon-bridge-to-mba.owl \ + $(BRIDGEDIR)/uberon-bridge-to-dmba.owl # 1. Extract cross-references from Uberon and turn them to a SSSOM # mapping set. @@ -1342,12 +1342,6 @@ $(BRIDGEDIR)/uberon-bridge-to-dmba.owl: $(SRC) $(ROBOT) annotate -I $(UBERON_BRIDGE_DMBA) --ontology-iri $(ONTBASE)/$@ -o $@ endif -$(BRIDGEDIR)/uberon-bridge-to-mba.obo: $(BRIDGEDIR)/uberon-bridge-to-mba.owl - $(ROBOT) convert --input $(BRIDGEDIR)/uberon-bridge-to-mba.owl --output $@ - -$(BRIDGEDIR)/uberon-bridge-to-dmba.obo: $(BRIDGEDIR)/uberon-bridge-to-dmba.owl - $(ROBOT) convert --input $(BRIDGEDIR)/uberon-bridge-to-dmba.owl --output $@ - else # BRI=false # Skip the production of bridges entirely. $(TMPDIR)/bridges: From 3041182611a9aa4afa3d87288dbe329d5a77f8e7 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 14:53:47 +0000 Subject: [PATCH 39/45] Add helper commands to refresh mappings and/or bridges. Add two new helper commands (Make targets, really): * refresh-mappings, to forcefully refresh the external mapping sets; * refresh-bridges, to forcefully refresh the bridges (equivalent to calling 'make tmp/bridges', but slightly more user-friendly). --- src/ontology/uberon.Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 53f102cd0a..ff53ef2e8c 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1482,6 +1482,18 @@ clean_uberon: clean: clean_uberon +# Helper commands for refreshing mapping sets and bridges +# ---------------------------------------- + +.PHONY: refresh-mappings +refresh-mappings: + $(MAKE) MIR=true IMP=true $(EXTERNAL_SSSOM_SETS) + +.PHONY: refresh-bridges +refresh-bridges: + $(MAKE) MIR=true IMP=true BRI=true tmp/bridges + + # ---------------------------------------- # PURGATORY # ---------------------------------------- From 01a82716526f03cbb4839e2f324714cc957d57fa Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 15:35:06 +0000 Subject: [PATCH 40/45] Re-generate the brige files during QC. Now that the bridge pipeline no longer systematically refreshes externam mapping sets (it only does upon IMP=true), we can enable that pipeline during QC. This ensures that if a bogus mapping is introduced within Uberon itself, if that bogus mapping causes unsatisfiability issues when Uberon is merged with its bridges, the problem will be caught at QC time. --- .github/workflows/qc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/qc.yml b/.github/workflows/qc.yml index af0237a0e1..8febba833d 100644 --- a/.github/workflows/qc.yml +++ b/.github/workflows/qc.yml @@ -32,7 +32,7 @@ jobs: env: DEFAULT_BRANCH: master ROBOT_JAVA_ARGS: -Xmx6G - run: cd src/ontology && mkdir -p tmp reports mirror && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' GH_ACTION=true BRI=false MIR=false IMP=false test > TESTLOG.log + run: cd src/ontology && mkdir -p tmp reports mirror && make ROBOT_ENV='ROBOT_JAVA_ARGS=-Xmx6G' GH_ACTION=true BRI=true MIR=false IMP=false test > TESTLOG.log - name: Reason over taxon constraints id: explaintc From e7a5ad3e841f17e134e8236b81f38fda055ce25e Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 15:45:34 +0000 Subject: [PATCH 41/45] Drop duplicate mappings from ZFA. When extracting cross-references from ZFA, ensure that we drop any duplicate mappings, as we already do for the cross-references from Uberon itself and from CL. --- src/ontology/uberon.Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index ff53ef2e8c..ace5dc717d 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1259,6 +1259,7 @@ mappings/cl-mappings.sssom.tsv: $(SRC) $(MIRRORDIR)/cl.owl $(TMPDIR)/plugins/sss # mappings) is to be extracted from cross-references in ZFA. mappings/zfa-mappings.sssom.tsv: $(MIRRORDIR)/zfa.owl $(TMPDIR)/plugins/sssom.jar $(ROBOT) sssom:xref-extract -i $(MIRRORDIR)/zfa.owl --mapping-file $@ \ + -v --drop-duplicates \ > $(REPORTDIR)/zfa-xrefs-extraction.txt endif From 20ae096a9a5a8c64f896cd71ed601a3ed05a159e Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 15:46:25 +0000 Subject: [PATCH 42/45] Commit the CL and ZFA mapping sets. --- src/ontology/mappings/cl-mappings.sssom.tsv | 899 +++++ src/ontology/mappings/zfa-mappings.sssom.tsv | 3089 ++++++++++++++++++ 2 files changed, 3988 insertions(+) create mode 100644 src/ontology/mappings/cl-mappings.sssom.tsv create mode 100644 src/ontology/mappings/zfa-mappings.sssom.tsv diff --git a/src/ontology/mappings/cl-mappings.sssom.tsv b/src/ontology/mappings/cl-mappings.sssom.tsv new file mode 100644 index 0000000000..d93dca9dc4 --- /dev/null +++ b/src/ontology/mappings/cl-mappings.sssom.tsv @@ -0,0 +1,899 @@ +#curie_map: +# AAO: "http://purl.obolibrary.org/obo/AAO_" +# AEO: "http://purl.obolibrary.org/obo/AEO_" +# CARO: "http://purl.obolibrary.org/obo/CARO_" +# CL: "http://purl.obolibrary.org/obo/CL_" +# EHDAA2: "http://purl.obolibrary.org/obo/EHDAA2_" +# EMAPA: "http://purl.obolibrary.org/obo/EMAPA_" +# EV: "http://purl.obolibrary.org/obo/EV_" +# FMA: "http://purl.obolibrary.org/obo/FMA_" +# GO: "http://purl.obolibrary.org/obo/GO_" +# KUPO: "http://purl.obolibrary.org/obo/KUPO_" +# MA: "http://purl.obolibrary.org/obo/MA_" +# NCIT: "http://purl.obolibrary.org/obo/NCIT_" +# SCTID: "http://purl.obolibrary.org/obo/SCTID_" +# VHOG: "http://purl.obolibrary.org/obo/VHOG_" +# VSAO: "http://purl.obolibrary.org/obo/VSAO_" +# WBbt: "http://purl.obolibrary.org/obo/WBbt_" +# XAO: "http://purl.obolibrary.org/obo/XAO_" +# ZFA: "http://purl.obolibrary.org/obo/ZFA_" +subject_id subject_label predicate_id object_id mapping_justification mapping_cardinality +CL:0000000 cell skos:broadMatch VHOG:0001533 semapv:UnspecifiedMatching 1:n +CL:0000000 cell skos:exactMatch GO:0005623 semapv:UnspecifiedMatching 1:n +CL:0000000 cell semapv:crossSpeciesExactMatch FMA:68646 semapv:UnspecifiedMatching 1:n +CL:0000000 cell semapv:crossSpeciesExactMatch KUPO:0000002 semapv:UnspecifiedMatching 1:n +CL:0000000 cell semapv:crossSpeciesExactMatch WBbt:0004017 semapv:UnspecifiedMatching 1:n +CL:0000000 cell semapv:crossSpeciesExactMatch XAO:0003012 semapv:UnspecifiedMatching 1:n +CL:0000015 male germ cell skos:broadMatch VHOG:0001531 semapv:UnspecifiedMatching 1:n +CL:0000015 male germ cell semapv:crossSpeciesExactMatch FMA:72290 semapv:UnspecifiedMatching 1:n +CL:0000015 male germ cell semapv:crossSpeciesExactMatch MA:0002765 semapv:UnspecifiedMatching 1:n +CL:0000017 spermatocyte semapv:crossSpeciesExactMatch EMAPA:31484 semapv:UnspecifiedMatching 1:n +CL:0000017 spermatocyte semapv:crossSpeciesExactMatch FMA:84049 semapv:UnspecifiedMatching 1:n +CL:0000017 spermatocyte semapv:crossSpeciesExactMatch WBbt:0006799 semapv:UnspecifiedMatching 1:n +CL:0000018 spermatid semapv:crossSpeciesExactMatch EMAPA:31486 semapv:UnspecifiedMatching 1:n +CL:0000018 spermatid semapv:crossSpeciesExactMatch FMA:72294 semapv:UnspecifiedMatching 1:n +CL:0000018 spermatid semapv:crossSpeciesExactMatch WBbt:0006800 semapv:UnspecifiedMatching 1:n +CL:0000019 sperm semapv:crossSpeciesExactMatch FMA:67338 semapv:UnspecifiedMatching 1:n +CL:0000019 sperm semapv:crossSpeciesExactMatch WBbt:0006798 semapv:UnspecifiedMatching 1:n +CL:0000020 spermatogonium semapv:crossSpeciesExactMatch EMAPA:31482 semapv:UnspecifiedMatching 1:n +CL:0000020 spermatogonium semapv:crossSpeciesExactMatch FMA:72291 semapv:UnspecifiedMatching 1:n +CL:0000021 female germ cell skos:broadMatch VHOG:0001530 semapv:UnspecifiedMatching 1:n +CL:0000023 oocyte semapv:crossSpeciesExactMatch FMA:18644 semapv:UnspecifiedMatching 1:n +CL:0000023 oocyte semapv:crossSpeciesExactMatch WBbt:0006797 semapv:UnspecifiedMatching 1:n +CL:0000024 oogonial cell semapv:crossSpeciesExactMatch FMA:83673 semapv:UnspecifiedMatching 1:1 +CL:0000025 egg cell semapv:crossSpeciesExactMatch FMA:67343 semapv:UnspecifiedMatching 1:n +CL:0000031 neuroblast (sensu Vertebrata) semapv:crossSpeciesExactMatch FMA:70563 semapv:UnspecifiedMatching 1:1 +CL:0000035 single fate stem cell semapv:crossSpeciesExactMatch FMA:70569 semapv:UnspecifiedMatching 1:1 +CL:0000037 hematopoietic stem cell skos:broadMatch VHOG:0001485 semapv:UnspecifiedMatching 1:n +CL:0000037 hematopoietic stem cell semapv:crossSpeciesExactMatch FMA:70337 semapv:UnspecifiedMatching 1:n +CL:0000040 monoblast semapv:crossSpeciesExactMatch FMA:83553 semapv:UnspecifiedMatching 1:1 +CL:0000047 neural stem cell semapv:crossSpeciesExactMatch FMA:86684 semapv:UnspecifiedMatching 1:1 +CL:0000048 multi fate stem cell semapv:crossSpeciesExactMatch FMA:84789 semapv:UnspecifiedMatching 1:1 +CL:0000052 totipotent stem cell semapv:crossSpeciesExactMatch FMA:84790 semapv:UnspecifiedMatching 1:1 +CL:0000055 non-terminally differentiated cell semapv:crossSpeciesExactMatch FMA:84782 semapv:UnspecifiedMatching 1:1 +CL:0000056 myoblast skos:broadMatch VHOG:0001529 semapv:UnspecifiedMatching 1:n +CL:0000056 myoblast semapv:crossSpeciesExactMatch FMA:70335 semapv:UnspecifiedMatching 1:n +CL:0000057 fibroblast skos:broadMatch VHOG:0001482 semapv:UnspecifiedMatching 1:n +CL:0000057 fibroblast skos:narrowMatch NCIT:C12482 semapv:UnspecifiedMatching 1:n +CL:0000057 fibroblast semapv:crossSpeciesExactMatch FMA:63877 semapv:UnspecifiedMatching 1:n +CL:0000058 chondroblast semapv:crossSpeciesExactMatch FMA:66783 semapv:UnspecifiedMatching 1:1 +CL:0000059 ameloblast semapv:crossSpeciesExactMatch FMA:70576 semapv:UnspecifiedMatching 1:1 +CL:0000060 odontoblast semapv:crossSpeciesExactMatch FMA:62999 semapv:UnspecifiedMatching 1:1 +CL:0000061 cementoblast semapv:crossSpeciesExactMatch FMA:63002 semapv:UnspecifiedMatching 1:1 +CL:0000062 osteoblast semapv:crossSpeciesExactMatch FMA:66780 semapv:UnspecifiedMatching 1:1 +CL:0000064 ciliated cell skos:broadMatch VHOG:0001532 semapv:UnspecifiedMatching 1:n +CL:0000064 ciliated cell semapv:crossSpeciesExactMatch XAO:0000031 semapv:UnspecifiedMatching 1:n +CL:0000065 ependymal cell semapv:crossSpeciesExactMatch FMA:70550 semapv:UnspecifiedMatching 1:1 +CL:0000066 epithelial cell skos:exactMatch CARO:0000077 semapv:UnspecifiedMatching 1:n +CL:0000066 epithelial cell semapv:crossSpeciesExactMatch FMA:66768 semapv:UnspecifiedMatching 1:n +CL:0000066 epithelial cell semapv:crossSpeciesExactMatch WBbt:0003672 semapv:UnspecifiedMatching 1:n +CL:0000067 ciliated epithelial cell semapv:crossSpeciesExactMatch FMA:70605 semapv:UnspecifiedMatching 1:1 +CL:0000077 mesothelial cell semapv:crossSpeciesExactMatch FMA:66773 semapv:UnspecifiedMatching 1:1 +CL:0000081 blood cell semapv:crossSpeciesExactMatch FMA:62844 semapv:UnspecifiedMatching 1:1 +CL:0000084 T cell skos:broadMatch VHOG:0001479 semapv:UnspecifiedMatching 1:n +CL:0000084 T cell semapv:crossSpeciesExactMatch FMA:62870 semapv:UnspecifiedMatching 1:n +CL:0000091 Kupffer cell semapv:crossSpeciesExactMatch FMA:14656 semapv:UnspecifiedMatching 1:1 +CL:0000092 osteoclast semapv:crossSpeciesExactMatch FMA:66781 semapv:UnspecifiedMatching 1:1 +CL:0000094 granulocyte semapv:crossSpeciesExactMatch FMA:62854 semapv:UnspecifiedMatching 1:1 +CL:0000097 mast cell semapv:crossSpeciesExactMatch FMA:66784 semapv:UnspecifiedMatching 1:1 +CL:0000099 interneuron semapv:crossSpeciesExactMatch FMA:67313 semapv:UnspecifiedMatching 1:n +CL:0000099 interneuron semapv:crossSpeciesExactMatch WBbt:0005113 semapv:UnspecifiedMatching 1:n +CL:0000100 motor neuron semapv:crossSpeciesExactMatch FMA:83617 semapv:UnspecifiedMatching 1:n +CL:0000100 motor neuron semapv:crossSpeciesExactMatch WBbt:0005409 semapv:UnspecifiedMatching 1:n +CL:0000101 sensory neuron semapv:crossSpeciesExactMatch FMA:84649 semapv:UnspecifiedMatching 1:n +CL:0000101 sensory neuron semapv:crossSpeciesExactMatch WBbt:0005759 semapv:UnspecifiedMatching 1:n +CL:0000103 bipolar neuron semapv:crossSpeciesExactMatch FMA:67282 semapv:UnspecifiedMatching 1:1 +CL:0000104 multipolar neuron semapv:crossSpeciesExactMatch FMA:67287 semapv:UnspecifiedMatching 1:1 +CL:0000105 pseudounipolar neuron semapv:crossSpeciesExactMatch FMA:67305 semapv:UnspecifiedMatching 1:1 +CL:0000106 unipolar neuron semapv:crossSpeciesExactMatch FMA:67278 semapv:UnspecifiedMatching 1:1 +CL:0000107 autonomic neuron semapv:crossSpeciesExactMatch FMA:80121 semapv:UnspecifiedMatching 1:1 +CL:0000108 cholinergic neuron semapv:crossSpeciesExactMatch FMA:84796 semapv:UnspecifiedMatching 1:n +CL:0000108 cholinergic neuron semapv:crossSpeciesExactMatch WBbt:0006840 semapv:UnspecifiedMatching 1:n +CL:0000114 surface ectodermal cell semapv:crossSpeciesExactMatch FMA:72552 semapv:UnspecifiedMatching 1:1 +CL:0000115 endothelial cell semapv:crossSpeciesExactMatch FMA:66772 semapv:UnspecifiedMatching 1:1 +CL:0000121 Purkinje cell semapv:crossSpeciesExactMatch FMA:67969 semapv:UnspecifiedMatching 1:1 +CL:0000125 glial cell semapv:crossSpeciesExactMatch FMA:54536 semapv:UnspecifiedMatching 1:1 +CL:0000126 macroglial cell semapv:crossSpeciesExactMatch FMA:54538 semapv:UnspecifiedMatching 1:1 +CL:0000127 astrocyte semapv:crossSpeciesExactMatch FMA:54537 semapv:UnspecifiedMatching 1:1 +CL:0000129 microglial cell semapv:crossSpeciesExactMatch FMA:54539 semapv:UnspecifiedMatching 1:n +CL:0000132 corneal endothelial cell semapv:crossSpeciesExactMatch FMA:70614 semapv:UnspecifiedMatching 1:1 +CL:0000134 mesenchymal stem cell semapv:crossSpeciesExactMatch FMA:70546 semapv:UnspecifiedMatching 1:1 +CL:0000135 fibrocyte semapv:crossSpeciesExactMatch FMA:63879 semapv:UnspecifiedMatching 1:1 +CL:0000136 fat cell semapv:crossSpeciesExactMatch FMA:63880 semapv:UnspecifiedMatching 1:1 +CL:0000137 osteocyte skos:exactMatch VSAO:0000124 semapv:UnspecifiedMatching 1:n +CL:0000137 osteocyte semapv:crossSpeciesExactMatch FMA:66779 semapv:UnspecifiedMatching 1:n +CL:0000138 chondrocyte semapv:crossSpeciesExactMatch FMA:66782 semapv:UnspecifiedMatching 1:1 +CL:0000141 cementocyte semapv:crossSpeciesExactMatch FMA:63003 semapv:UnspecifiedMatching 1:1 +CL:0000142 hyalocyte semapv:crossSpeciesExactMatch FMA:70620 semapv:UnspecifiedMatching 1:1 +CL:0000147 pigment cell skos:broadMatch VHOG:0001678 semapv:UnspecifiedMatching 1:1 +CL:0000148 melanocyte skos:broadMatch VHOG:0001679 semapv:UnspecifiedMatching 1:n +CL:0000148 melanocyte semapv:crossSpeciesExactMatch FMA:70545 semapv:UnspecifiedMatching 1:n +CL:0000150 glandular epithelial cell semapv:crossSpeciesExactMatch FMA:86494 semapv:UnspecifiedMatching 1:1 +CL:0000151 secretory cell semapv:crossSpeciesExactMatch FMA:86916 semapv:UnspecifiedMatching 1:1 +CL:0000152 exocrine cell semapv:crossSpeciesExactMatch FMA:16014 semapv:UnspecifiedMatching 1:1 +CL:0000155 peptic cell semapv:crossSpeciesExactMatch FMA:62902 semapv:UnspecifiedMatching 1:1 +CL:0000158 club cell semapv:crossSpeciesExactMatch FMA:14119 semapv:UnspecifiedMatching 1:1 +CL:0000160 goblet cell semapv:crossSpeciesExactMatch FMA:13148 semapv:UnspecifiedMatching 1:1 +CL:0000162 parietal cell semapv:crossSpeciesExactMatch FMA:62901 semapv:UnspecifiedMatching 1:1 +CL:0000163 endocrine cell semapv:crossSpeciesExactMatch FMA:83809 semapv:UnspecifiedMatching 1:1 +CL:0000164 enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62930 semapv:UnspecifiedMatching 1:1 +CL:0000165 neuroendocrine cell semapv:crossSpeciesExactMatch FMA:83810 semapv:UnspecifiedMatching 1:1 +CL:0000166 chromaffin cell semapv:crossSpeciesExactMatch FMA:69263 semapv:UnspecifiedMatching 1:1 +CL:0000169 type B pancreatic cell skos:narrowMatch EV:0200009 semapv:UnspecifiedMatching 1:n +CL:0000169 type B pancreatic cell semapv:crossSpeciesExactMatch FMA:70586 semapv:UnspecifiedMatching 1:n +CL:0000169 type B pancreatic cell semapv:crossSpeciesExactMatch MA:0002419 semapv:UnspecifiedMatching 1:n +CL:0000170 glucagon secreting cell semapv:crossSpeciesExactMatch FMA:84045 semapv:UnspecifiedMatching 1:1 +CL:0000171 pancreatic A cell semapv:crossSpeciesExactMatch FMA:70585 semapv:UnspecifiedMatching 1:1 +CL:0000173 pancreatic D cell semapv:crossSpeciesExactMatch FMA:70587 semapv:UnspecifiedMatching 1:1 +CL:0000175 luteal cell semapv:crossSpeciesExactMatch FMA:18688 semapv:UnspecifiedMatching 1:1 +CL:0000178 Leydig cell semapv:crossSpeciesExactMatch EMAPA:29655 semapv:UnspecifiedMatching 1:n +CL:0000178 Leydig cell semapv:crossSpeciesExactMatch FMA:72297 semapv:UnspecifiedMatching 1:n +CL:0000182 hepatocyte semapv:crossSpeciesExactMatch FMA:14515 semapv:UnspecifiedMatching 1:1 +CL:0000185 myoepithelial cell semapv:crossSpeciesExactMatch FMA:67799 semapv:UnspecifiedMatching 1:1 +CL:0000187 muscle cell semapv:crossSpeciesExactMatch FMA:67328 semapv:UnspecifiedMatching 1:n +CL:0000187 muscle cell semapv:crossSpeciesExactMatch WBbt:0003675 semapv:UnspecifiedMatching 1:n +CL:0000188 cell of skeletal muscle semapv:crossSpeciesExactMatch FMA:9727 semapv:UnspecifiedMatching 1:1 +CL:0000192 smooth muscle cell semapv:crossSpeciesExactMatch FMA:14072 semapv:UnspecifiedMatching 1:1 +CL:0000207 olfactory receptor cell semapv:crossSpeciesExactMatch FMA:67860 semapv:UnspecifiedMatching 1:1 +CL:0000209 taste receptor cell semapv:crossSpeciesExactMatch FMA:67910 semapv:UnspecifiedMatching 1:1 +CL:0000210 photoreceptor cell semapv:crossSpeciesExactMatch FMA:86740 semapv:UnspecifiedMatching 1:1 +CL:0000216 Sertoli cell skos:broadMatch VHOG:0001348 semapv:UnspecifiedMatching 1:n +CL:0000216 Sertoli cell semapv:crossSpeciesExactMatch FMA:72298 semapv:UnspecifiedMatching 1:n +CL:0000218 myelinating Schwann cell semapv:crossSpeciesExactMatch FMA:62121 semapv:UnspecifiedMatching 1:1 +CL:0000221 ectodermal cell semapv:crossSpeciesExactMatch FMA:72549 semapv:UnspecifiedMatching 1:1 +CL:0000222 mesodermal cell semapv:crossSpeciesExactMatch FMA:72554 semapv:UnspecifiedMatching 1:1 +CL:0000223 endodermal cell semapv:crossSpeciesExactMatch FMA:72555 semapv:UnspecifiedMatching 1:1 +CL:0000225 anucleate cell semapv:crossSpeciesExactMatch FMA:68647 semapv:UnspecifiedMatching 1:1 +CL:0000228 multinucleate cell skos:exactMatch AEO:0000203 semapv:UnspecifiedMatching 1:n +CL:0000228 multinucleate cell semapv:crossSpeciesExactMatch WBbt:0008074 semapv:UnspecifiedMatching 1:n +CL:0000232 erythrocyte semapv:crossSpeciesExactMatch FMA:81100 semapv:UnspecifiedMatching 1:1 +CL:0000233 platelet semapv:crossSpeciesExactMatch FMA:62851 semapv:UnspecifiedMatching 1:1 +CL:0000234 phagocyte semapv:crossSpeciesExactMatch FMA:83806 semapv:UnspecifiedMatching 1:1 +CL:0000235 macrophage semapv:crossSpeciesExactMatch FMA:63261 semapv:UnspecifiedMatching 1:n +CL:0000235 macrophage semapv:crossSpeciesExactMatch FMA:83585 semapv:UnspecifiedMatching 1:n +CL:0000236 B cell skos:broadMatch VHOG:0001480 semapv:UnspecifiedMatching 1:n +CL:0000236 B cell semapv:crossSpeciesExactMatch FMA:62869 semapv:UnspecifiedMatching 1:n +CL:0000242 Merkel cell semapv:crossSpeciesExactMatch FMA:70548 semapv:UnspecifiedMatching 1:1 +CL:0000244 transitional epithelial cell semapv:crossSpeciesExactMatch FMA:66778 semapv:UnspecifiedMatching 1:1 +CL:0000247 Rohon-Beard neuron skos:broadMatch VHOG:0001484 semapv:UnspecifiedMatching 1:n +CL:0000247 Rohon-Beard neuron semapv:crossSpeciesExactMatch AAO:0010316 semapv:UnspecifiedMatching 1:n +CL:0000247 Rohon-Beard neuron semapv:crossSpeciesExactMatch ZFA:0009150 semapv:UnspecifiedMatching 1:n +CL:0000300 gamete semapv:crossSpeciesExactMatch FMA:18649 semapv:UnspecifiedMatching 1:1 +CL:0000307 tracheal epithelial cell semapv:crossSpeciesExactMatch FMA:74793 semapv:UnspecifiedMatching 1:1 +CL:0000312 keratinocyte semapv:crossSpeciesExactMatch FMA:62879 semapv:UnspecifiedMatching 1:1 +CL:0000313 serous secreting cell semapv:crossSpeciesExactMatch FMA:62511 semapv:UnspecifiedMatching 1:1 +CL:0000322 pneumocyte semapv:crossSpeciesExactMatch FMA:62499 semapv:UnspecifiedMatching 1:1 +CL:0000333 migratory neural crest cell semapv:crossSpeciesExactMatch FMA:86667 semapv:UnspecifiedMatching 1:1 +CL:0000336 adrenal medulla chromaffin cell semapv:crossSpeciesExactMatch FMA:69262 semapv:UnspecifiedMatching 1:1 +CL:0000339 glioblast (sensu Vertebrata) semapv:crossSpeciesExactMatch FMA:70564 semapv:UnspecifiedMatching 1:1 +CL:0000343 visual pigment cell (sensu Vertebrata) semapv:crossSpeciesExactMatch FMA:63846 semapv:UnspecifiedMatching 1:1 +CL:0000351 trophoblast cell semapv:crossSpeciesExactMatch FMA:83028 semapv:UnspecifiedMatching 1:1 +CL:0000353 blastoderm cell semapv:crossSpeciesExactMatch FMA:72551 semapv:UnspecifiedMatching 1:1 +CL:0000355 multi-potent skeletal muscle stem cell semapv:crossSpeciesExactMatch FMA:86767 semapv:UnspecifiedMatching 1:1 +CL:0000362 epidermal cell semapv:crossSpeciesExactMatch FMA:62411 semapv:UnspecifiedMatching 1:1 +CL:0000365 animal zygote semapv:crossSpeciesExactMatch EHDAA2:0004546 semapv:UnspecifiedMatching 1:n +CL:0000365 animal zygote semapv:crossSpeciesExactMatch FMA:72395 semapv:UnspecifiedMatching 1:n +CL:0000411 Caenorhabditis hypodermal cell semapv:crossSpeciesExactMatch WBbt:0007846 semapv:UnspecifiedMatching 1:1 +CL:0000415 diploid cell semapv:crossSpeciesExactMatch FMA:72300 semapv:UnspecifiedMatching 1:1 +CL:0000418 arcade cell semapv:crossSpeciesExactMatch WBbt:0005793 semapv:UnspecifiedMatching 1:1 +CL:0000421 coelomocyte semapv:crossSpeciesExactMatch WBbt:0005751 semapv:UnspecifiedMatching 1:1 +CL:0000424 excretory cell semapv:crossSpeciesExactMatch WBbt:0005812 semapv:UnspecifiedMatching 1:1 +CL:0000432 reticular cell semapv:crossSpeciesExactMatch FMA:62877 semapv:UnspecifiedMatching 1:1 +CL:0000437 gonadtroph semapv:crossSpeciesExactMatch FMA:83100 semapv:UnspecifiedMatching 1:1 +CL:0000442 follicular dendritic cell semapv:crossSpeciesExactMatch FMA:83037 semapv:UnspecifiedMatching 1:1 +CL:0000446 chief cell of parathyroid gland semapv:crossSpeciesExactMatch FMA:69078 semapv:UnspecifiedMatching 1:1 +CL:0000448 white fat cell semapv:crossSpeciesExactMatch FMA:83434 semapv:UnspecifiedMatching 1:1 +CL:0000449 brown fat cell semapv:crossSpeciesExactMatch FMA:83435 semapv:UnspecifiedMatching 1:1 +CL:0000451 dendritic cell semapv:crossSpeciesExactMatch FMA:83036 semapv:UnspecifiedMatching 1:1 +CL:0000453 Langerhans cell semapv:crossSpeciesExactMatch FMA:63072 semapv:UnspecifiedMatching 1:1 +CL:0000476 thyrotroph semapv:crossSpeciesExactMatch FMA:83099 semapv:UnspecifiedMatching 1:1 +CL:0000492 CD4-positive helper T cell semapv:crossSpeciesExactMatch FMA:70572 semapv:UnspecifiedMatching 1:1 +CL:0000498 inhibitory interneuron semapv:crossSpeciesExactMatch FMA:84776 semapv:UnspecifiedMatching 1:1 +CL:0000499 stromal cell semapv:crossSpeciesExactMatch FMA:83624 semapv:UnspecifiedMatching 1:1 +CL:0000501 granulosa cell semapv:crossSpeciesExactMatch FMA:18718 semapv:UnspecifiedMatching 1:1 +CL:0000502 type D enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62935 semapv:UnspecifiedMatching 1:1 +CL:0000508 type G enteroendocrine cell semapv:crossSpeciesExactMatch FMA:67609 semapv:UnspecifiedMatching 1:1 +CL:0000510 paneth cell semapv:crossSpeciesExactMatch FMA:62897 semapv:UnspecifiedMatching 1:1 +CL:0000513 cardiac muscle myoblast semapv:crossSpeciesExactMatch FMA:84797 semapv:UnspecifiedMatching 1:1 +CL:0000514 smooth muscle myoblast semapv:crossSpeciesExactMatch FMA:84798 semapv:UnspecifiedMatching 1:1 +CL:0000515 skeletal muscle myoblast semapv:crossSpeciesExactMatch FMA:84799 semapv:UnspecifiedMatching 1:1 +CL:0000516 perineuronal satellite cell semapv:crossSpeciesExactMatch FMA:54550 semapv:UnspecifiedMatching 1:1 +CL:0000523 mononuclear cytotrophoblast cell semapv:crossSpeciesExactMatch FMA:83042 semapv:UnspecifiedMatching 1:1 +CL:0000525 syncytiotrophoblast cell semapv:crossSpeciesExactMatch FMA:83043 semapv:UnspecifiedMatching 1:1 +CL:0000526 afferent neuron semapv:crossSpeciesExactMatch FMA:87653 semapv:UnspecifiedMatching 1:1 +CL:0000528 nitrergic neuron semapv:crossSpeciesExactMatch FMA:84792 semapv:UnspecifiedMatching 1:1 +CL:0000540 neuron skos:broadMatch VHOG:0001483 semapv:UnspecifiedMatching 1:n +CL:0000540 neuron semapv:crossSpeciesExactMatch FMA:54527 semapv:UnspecifiedMatching 1:n +CL:0000540 neuron semapv:crossSpeciesExactMatch WBbt:0003679 semapv:UnspecifiedMatching 1:n +CL:0000541 melanoblast semapv:crossSpeciesExactMatch FMA:83377 semapv:UnspecifiedMatching 1:1 +CL:0000542 lymphocyte skos:broadMatch VHOG:0001535 semapv:UnspecifiedMatching 1:n +CL:0000542 lymphocyte semapv:crossSpeciesExactMatch FMA:62863 semapv:UnspecifiedMatching 1:n +CL:0000545 T-helper 1 cell semapv:crossSpeciesExactMatch FMA:84382 semapv:UnspecifiedMatching 1:1 +CL:0000546 T-helper 2 cell semapv:crossSpeciesExactMatch FMA:84385 semapv:UnspecifiedMatching 1:1 +CL:0000547 proerythroblast semapv:crossSpeciesExactMatch FMA:83518 semapv:UnspecifiedMatching 1:1 +CL:0000549 basophilic erythroblast semapv:crossSpeciesExactMatch FMA:83505 semapv:UnspecifiedMatching 1:1 +CL:0000550 polychromatophilic erythroblast semapv:crossSpeciesExactMatch FMA:83506 semapv:UnspecifiedMatching 1:1 +CL:0000552 orthochromatic erythroblast semapv:crossSpeciesExactMatch FMA:84646 semapv:UnspecifiedMatching 1:1 +CL:0000553 megakaryocyte progenitor cell semapv:crossSpeciesExactMatch FMA:84235 semapv:UnspecifiedMatching 1:1 +CL:0000556 megakaryocyte semapv:crossSpeciesExactMatch FMA:83555 semapv:UnspecifiedMatching 1:1 +CL:0000559 promonocyte semapv:crossSpeciesExactMatch FMA:83551 semapv:UnspecifiedMatching 1:1 +CL:0000561 amacrine cell semapv:crossSpeciesExactMatch FMA:67766 semapv:UnspecifiedMatching 1:1 +CL:0000564 neutrophilic promyelocyte semapv:crossSpeciesExactMatch FMA:84196 semapv:UnspecifiedMatching 1:1 +CL:0000568 amine precursor uptake and decarboxylation cell semapv:crossSpeciesExactMatch FMA:83114 semapv:UnspecifiedMatching 1:1 +CL:0000570 parafollicular cell skos:narrowMatch SCTID:176770005 semapv:UnspecifiedMatching 1:n +CL:0000570 parafollicular cell semapv:crossSpeciesExactMatch FMA:68653 semapv:UnspecifiedMatching 1:n +CL:0000573 retinal cone cell semapv:crossSpeciesExactMatch FMA:67748 semapv:UnspecifiedMatching 1:1 +CL:0000575 corneal epithelial cell semapv:crossSpeciesExactMatch FMA:70551 semapv:UnspecifiedMatching 1:1 +CL:0000576 monocyte semapv:crossSpeciesExactMatch FMA:62864 semapv:UnspecifiedMatching 1:1 +CL:0000577 type EC enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62934 semapv:UnspecifiedMatching 1:n +CL:0000577 type EC enteroendocrine cell semapv:crossSpeciesExactMatch FMA:83132 semapv:UnspecifiedMatching 1:n +CL:0000580 neutrophilic myelocyte semapv:crossSpeciesExactMatch FMA:83540 semapv:UnspecifiedMatching 1:1 +CL:0000581 peritoneal macrophage semapv:crossSpeciesExactMatch FMA:83025 semapv:UnspecifiedMatching 1:1 +CL:0000582 neutrophilic metamyelocyte semapv:crossSpeciesExactMatch FMA:84197 semapv:UnspecifiedMatching 1:1 +CL:0000583 alveolar macrophage semapv:crossSpeciesExactMatch FMA:83023 semapv:UnspecifiedMatching 1:1 +CL:0000584 enterocyte semapv:crossSpeciesExactMatch FMA:62122 semapv:UnspecifiedMatching 1:1 +CL:0000586 germ cell skos:broadMatch VHOG:0001534 semapv:UnspecifiedMatching 1:n +CL:0000586 germ cell skos:narrowMatch NCIT:C12597 semapv:UnspecifiedMatching 1:n +CL:0000586 germ cell semapv:crossSpeciesExactMatch WBbt:0006796 semapv:UnspecifiedMatching 1:n +CL:0000588 odontoclast semapv:crossSpeciesExactMatch FMA:83027 semapv:UnspecifiedMatching 1:1 +CL:0000589 cochlear inner hair cell semapv:crossSpeciesExactMatch FMA:62365 semapv:UnspecifiedMatching 1:1 +CL:0000592 large luteal cell semapv:crossSpeciesExactMatch FMA:18689 semapv:UnspecifiedMatching 1:1 +CL:0000598 pyramidal neuron semapv:crossSpeciesExactMatch FMA:67310 semapv:UnspecifiedMatching 1:n +CL:0000598 pyramidal neuron semapv:crossSpeciesExactMatch FMA:86775 semapv:UnspecifiedMatching 1:n +CL:0000601 cochlear outer hair cell semapv:crossSpeciesExactMatch FMA:62366 semapv:UnspecifiedMatching 1:1 +CL:0000604 retinal rod cell semapv:crossSpeciesExactMatch FMA:67747 semapv:UnspecifiedMatching 1:1 +CL:0000609 vestibular hair cell semapv:crossSpeciesExactMatch FMA:62351 semapv:UnspecifiedMatching 1:1 +CL:0000612 eosinophilic myelocyte semapv:crossSpeciesExactMatch FMA:83542 semapv:UnspecifiedMatching 1:1 +CL:0000614 basophilic myelocyte semapv:crossSpeciesExactMatch FMA:83543 semapv:UnspecifiedMatching 1:1 +CL:0000617 GABAergic neuron semapv:crossSpeciesExactMatch FMA:84788 semapv:UnspecifiedMatching 1:n +CL:0000617 GABAergic neuron semapv:crossSpeciesExactMatch WBbt:0005190 semapv:UnspecifiedMatching 1:n +CL:0000622 acinar cell semapv:crossSpeciesExactMatch FMA:83625 semapv:UnspecifiedMatching 1:1 +CL:0000623 natural killer cell skos:broadMatch VHOG:0001697 semapv:UnspecifiedMatching 1:n +CL:0000623 natural killer cell semapv:crossSpeciesExactMatch FMA:63147 semapv:UnspecifiedMatching 1:n +CL:0000623 natural killer cell semapv:crossSpeciesExactMatch FMA:83601 semapv:UnspecifiedMatching 1:n +CL:0000632 hepatic stellate cell semapv:crossSpeciesExactMatch FMA:67763 semapv:UnspecifiedMatching 1:1 +CL:0000633 Hensen cell semapv:crossSpeciesExactMatch FMA:79799 semapv:UnspecifiedMatching 1:1 +CL:0000634 Claudius cell semapv:crossSpeciesExactMatch FMA:79802 semapv:UnspecifiedMatching 1:1 +CL:0000635 Deiter's cell semapv:crossSpeciesExactMatch FMA:75725 semapv:UnspecifiedMatching 1:1 +CL:0000637 chromophil cell of anterior pituitary gland semapv:crossSpeciesExactMatch FMA:83089 semapv:UnspecifiedMatching 1:1 +CL:0000638 acidophil cell of pars distalis of adenohypophysis semapv:crossSpeciesExactMatch FMA:83093 semapv:UnspecifiedMatching 1:1 +CL:0000639 basophil cell of pars distalis of adenohypophysis semapv:crossSpeciesExactMatch FMA:83094 semapv:UnspecifiedMatching 1:1 +CL:0000641 chromophobe cell semapv:crossSpeciesExactMatch FMA:83626 semapv:UnspecifiedMatching 1:1 +CL:0000644 Bergmann glial cell semapv:crossSpeciesExactMatch FMA:54559 semapv:UnspecifiedMatching 1:1 +CL:0000645 pituicyte semapv:crossSpeciesExactMatch FMA:83503 semapv:UnspecifiedMatching 1:1 +CL:0000646 basal cell semapv:crossSpeciesExactMatch FMA:62516 semapv:UnspecifiedMatching 1:1 +CL:0000647 multinucleated giant cell semapv:crossSpeciesExactMatch FMA:83035 semapv:UnspecifiedMatching 1:1 +CL:0000648 kidney granular cell semapv:crossSpeciesExactMatch FMA:84138 semapv:UnspecifiedMatching 1:1 +CL:0000649 prickle cell semapv:crossSpeciesExactMatch FMA:69059 semapv:UnspecifiedMatching 1:1 +CL:0000650 mesangial cell semapv:crossSpeciesExactMatch FMA:70972 semapv:UnspecifiedMatching 1:1 +CL:0000652 pinealocyte semapv:crossSpeciesExactMatch FMA:83417 semapv:UnspecifiedMatching 1:1 +CL:0000653 podocyte semapv:crossSpeciesExactMatch FMA:70967 semapv:UnspecifiedMatching 1:1 +CL:0000654 primary oocyte semapv:crossSpeciesExactMatch FMA:18645 semapv:UnspecifiedMatching 1:1 +CL:0000655 secondary oocyte semapv:crossSpeciesExactMatch FMA:18646 semapv:UnspecifiedMatching 1:1 +CL:0000656 primary spermatocyte semapv:crossSpeciesExactMatch FMA:72292 semapv:UnspecifiedMatching 1:1 +CL:0000657 secondary spermatocyte semapv:crossSpeciesExactMatch FMA:72293 semapv:UnspecifiedMatching 1:1 +CL:0000669 pericyte semapv:crossSpeciesExactMatch FMA:63174 semapv:UnspecifiedMatching 1:1 +CL:0000670 primordial germ cell semapv:crossSpeciesExactMatch FMA:70567 semapv:UnspecifiedMatching 1:1 +CL:0000679 glutamatergic neuron semapv:crossSpeciesExactMatch WBbt:0006829 semapv:UnspecifiedMatching 1:1 +CL:0000682 M cell of gut semapv:crossSpeciesExactMatch FMA:62929 semapv:UnspecifiedMatching 1:1 +CL:0000696 PP cell semapv:crossSpeciesExactMatch FMA:62938 semapv:UnspecifiedMatching 1:n +CL:0000696 PP cell semapv:crossSpeciesExactMatch FMA:83409 semapv:UnspecifiedMatching 1:n +CL:0000700 dopaminergic neuron semapv:crossSpeciesExactMatch FMA:84787 semapv:UnspecifiedMatching 1:n +CL:0000700 dopaminergic neuron semapv:crossSpeciesExactMatch WBbt:0006746 semapv:UnspecifiedMatching 1:n +CL:0000706 choroid plexus epithelial cell semapv:crossSpeciesExactMatch FMA:70549 semapv:UnspecifiedMatching 1:1 +CL:0000710 neurecto-epithelial cell semapv:crossSpeciesExactMatch FMA:70557 semapv:UnspecifiedMatching 1:1 +CL:0000731 urothelial cell semapv:crossSpeciesExactMatch FMA:84127 semapv:UnspecifiedMatching 1:1 +CL:0000737 striated muscle cell semapv:crossSpeciesExactMatch FMA:86936 semapv:UnspecifiedMatching 1:1 +CL:0000738 leukocyte skos:narrowMatch NCIT:C12529 semapv:UnspecifiedMatching 1:n +CL:0000738 leukocyte semapv:crossSpeciesExactMatch FMA:62852 semapv:UnspecifiedMatching 1:n +CL:0000740 retinal ganglion cell semapv:crossSpeciesExactMatch FMA:67765 semapv:UnspecifiedMatching 1:1 +CL:0000746 cardiac muscle cell semapv:crossSpeciesExactMatch FMA:14067 semapv:UnspecifiedMatching 1:1 +CL:0000751 rod bipolar cell semapv:crossSpeciesExactMatch FMA:67750 semapv:UnspecifiedMatching 1:1 +CL:0000764 erythroid lineage cell semapv:crossSpeciesExactMatch FMA:62845 semapv:UnspecifiedMatching 1:n +CL:0000764 erythroid lineage cell semapv:crossSpeciesExactMatch FMA:83516 semapv:UnspecifiedMatching 1:n +CL:0000765 erythroblast semapv:crossSpeciesExactMatch FMA:83504 semapv:UnspecifiedMatching 1:1 +CL:0000767 basophil semapv:crossSpeciesExactMatch FMA:62862 semapv:UnspecifiedMatching 1:1 +CL:0000769 basophilic metamyelocyte semapv:crossSpeciesExactMatch FMA:84198 semapv:UnspecifiedMatching 1:1 +CL:0000771 eosinophil semapv:crossSpeciesExactMatch FMA:62861 semapv:UnspecifiedMatching 1:1 +CL:0000775 neutrophil semapv:crossSpeciesExactMatch FMA:62860 semapv:UnspecifiedMatching 1:1 +CL:0000786 plasma cell semapv:crossSpeciesExactMatch FMA:70574 semapv:UnspecifiedMatching 1:1 +CL:0000815 regulatory T cell semapv:crossSpeciesExactMatch FMA:84070 semapv:UnspecifiedMatching 1:1 +CL:0000830 basophilic promyelocyte semapv:crossSpeciesExactMatch FMA:84208 semapv:UnspecifiedMatching 1:1 +CL:0000833 eosinophilic promyelocyte semapv:crossSpeciesExactMatch FMA:84199 semapv:UnspecifiedMatching 1:1 +CL:0000835 myeloblast semapv:crossSpeciesExactMatch FMA:83524 semapv:UnspecifiedMatching 1:1 +CL:0000836 promyelocyte semapv:crossSpeciesExactMatch FMA:83530 semapv:UnspecifiedMatching 1:1 +CL:0000838 lymphoid lineage restricted progenitor cell semapv:crossSpeciesExactMatch FMA:70338 semapv:UnspecifiedMatching 1:1 +CL:0000839 myeloid lineage restricted progenitor cell semapv:crossSpeciesExactMatch FMA:70339 semapv:UnspecifiedMatching 1:1 +CL:0000841 mature conventional dendritic cell semapv:crossSpeciesExactMatch FMA:83038 semapv:UnspecifiedMatching 1:1 +CL:0000842 mononuclear cell semapv:crossSpeciesExactMatch FMA:86713 semapv:UnspecifiedMatching 1:1 +CL:0000850 serotonergic neuron semapv:crossSpeciesExactMatch WBbt:0006837 semapv:UnspecifiedMatching 1:1 +CL:0000853 olfactory epithelial supporting cell semapv:crossSpeciesExactMatch FMA:62302 semapv:UnspecifiedMatching 1:1 +CL:0000861 elicited macrophage semapv:crossSpeciesExactMatch FMA:84643 semapv:UnspecifiedMatching 1:n +CL:0000861 elicited macrophage semapv:crossSpeciesExactMatch FMA:84645 semapv:UnspecifiedMatching 1:n +CL:0000864 tissue-resident macrophage semapv:crossSpeciesExactMatch FMA:84642 semapv:UnspecifiedMatching 1:n +CL:0000864 tissue-resident macrophage semapv:crossSpeciesExactMatch FMA:84644 semapv:UnspecifiedMatching 1:n +CL:0000871 splenic macrophage semapv:crossSpeciesExactMatch FMA:83026 semapv:UnspecifiedMatching 1:1 +CL:0000891 foam cell semapv:crossSpeciesExactMatch FMA:83586 semapv:UnspecifiedMatching 1:1 +CL:0000893 thymocyte semapv:crossSpeciesExactMatch FMA:72202 semapv:UnspecifiedMatching 1:n +CL:0000893 thymocyte semapv:crossSpeciesExactMatch XAO:0003159 semapv:UnspecifiedMatching 1:n +CL:0000917 Tc1 cell semapv:crossSpeciesExactMatch FMA:84793 semapv:UnspecifiedMatching 1:1 +CL:0000918 Tc2 cell semapv:crossSpeciesExactMatch FMA:84794 semapv:UnspecifiedMatching 1:1 +CL:0000980 plasmablast semapv:crossSpeciesExactMatch FMA:84371 semapv:UnspecifiedMatching 1:1 +CL:0000988 hematopoietic cell semapv:crossSpeciesExactMatch FMA:70366 semapv:UnspecifiedMatching 1:n +CL:0000988 hematopoietic cell semapv:crossSpeciesExactMatch FMA:83598 semapv:UnspecifiedMatching 1:n +CL:0000990 conventional dendritic cell semapv:crossSpeciesExactMatch FMA:84191 semapv:UnspecifiedMatching 1:1 +CL:0001039 terminally differentiated osteoblast skos:exactMatch VSAO:0000116 semapv:UnspecifiedMatching 1:1 +CL:0001040 non-terminally differentiated osteoblast skos:exactMatch VSAO:0000117 semapv:UnspecifiedMatching 1:1 +CL:0002003 CD34-positive, GlyA-negative erythroid progenitor cell semapv:crossSpeciesExactMatch FMA:83517 semapv:UnspecifiedMatching 1:1 +CL:0002062 type I pneumocyte semapv:crossSpeciesExactMatch FMA:62500 semapv:UnspecifiedMatching 1:1 +CL:0002063 type II pneumocyte semapv:crossSpeciesExactMatch FMA:62501 semapv:UnspecifiedMatching 1:1 +CL:0002064 pancreatic acinar cell semapv:crossSpeciesExactMatch FMA:63032 semapv:UnspecifiedMatching 1:1 +CL:0002066 Feyrter cell semapv:crossSpeciesExactMatch FMA:14118 semapv:UnspecifiedMatching 1:1 +CL:0002067 type A enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62939 semapv:UnspecifiedMatching 1:1 +CL:0002068 Purkinje myocyte semapv:crossSpeciesExactMatch FMA:14146 semapv:UnspecifiedMatching 1:1 +CL:0002069 type II vestibular sensory cell semapv:crossSpeciesExactMatch FMA:67909 semapv:UnspecifiedMatching 1:1 +CL:0002070 type I vestibular sensory cell semapv:crossSpeciesExactMatch FMA:62352 semapv:UnspecifiedMatching 1:1 +CL:0002071 enterocyte of epithelium of large intestine semapv:crossSpeciesExactMatch FMA:63638 semapv:UnspecifiedMatching 1:n +CL:0002071 enterocyte of epithelium of large intestine semapv:crossSpeciesExactMatch FMA:66771 semapv:UnspecifiedMatching 1:n +CL:0002072 nodal myocyte semapv:crossSpeciesExactMatch FMA:67101 semapv:UnspecifiedMatching 1:1 +CL:0002073 transitional myocyte semapv:crossSpeciesExactMatch FMA:67142 semapv:UnspecifiedMatching 1:1 +CL:0002074 myocardial endocrine cell semapv:crossSpeciesExactMatch FMA:67111 semapv:UnspecifiedMatching 1:1 +CL:0002076 endo-epithelial cell semapv:crossSpeciesExactMatch FMA:69075 semapv:UnspecifiedMatching 1:1 +CL:0002077 ecto-epithelial cell semapv:crossSpeciesExactMatch FMA:69074 semapv:UnspecifiedMatching 1:1 +CL:0002078 meso-epithelial cell semapv:crossSpeciesExactMatch FMA:69076 semapv:UnspecifiedMatching 1:1 +CL:0002079 pancreatic ductal cell semapv:crossSpeciesExactMatch FMA:63099 semapv:UnspecifiedMatching 1:1 +CL:0002080 pancreatic centro-acinar cell semapv:crossSpeciesExactMatch FMA:62455 semapv:UnspecifiedMatching 1:1 +CL:0002081 type II cell of carotid body semapv:crossSpeciesExactMatch FMA:84187 semapv:UnspecifiedMatching 1:1 +CL:0002082 type II cell of adrenal medulla semapv:crossSpeciesExactMatch FMA:69322 semapv:UnspecifiedMatching 1:1 +CL:0002083 type I cell of adrenal medulla semapv:crossSpeciesExactMatch FMA:69321 semapv:UnspecifiedMatching 1:1 +CL:0002085 tanycyte semapv:crossSpeciesExactMatch FMA:54560 semapv:UnspecifiedMatching 1:1 +CL:0002086 specialized cardiac myocyte semapv:crossSpeciesExactMatch FMA:67968 semapv:UnspecifiedMatching 1:1 +CL:0002087 nongranular leukocyte semapv:crossSpeciesExactMatch FMA:62855 semapv:UnspecifiedMatching 1:1 +CL:0002088 interstitial cell of Cajal semapv:crossSpeciesExactMatch FMA:86573 semapv:UnspecifiedMatching 1:1 +CL:0002090 polar body semapv:crossSpeciesExactMatch EHDAA2:0004716 semapv:UnspecifiedMatching 1:n +CL:0002090 polar body semapv:crossSpeciesExactMatch FMA:85543 semapv:UnspecifiedMatching 1:n +CL:0002090 polar body semapv:crossSpeciesExactMatch WBbt:0008429 semapv:UnspecifiedMatching 1:n +CL:0002090 polar body semapv:crossSpeciesExactMatch XAO:0000262 semapv:UnspecifiedMatching 1:n +CL:0002091 primary polar body skos:broadMatch VHOG:0000464 semapv:UnspecifiedMatching 1:n +CL:0002091 primary polar body semapv:crossSpeciesExactMatch EHDAA2:0000541 semapv:UnspecifiedMatching 1:n +CL:0002091 primary polar body semapv:crossSpeciesExactMatch EMAPA:16032 semapv:UnspecifiedMatching 1:n +CL:0002091 primary polar body semapv:crossSpeciesExactMatch FMA:18650 semapv:UnspecifiedMatching 1:n +CL:0002092 bone marrow cell semapv:crossSpeciesExactMatch FMA:83621 semapv:UnspecifiedMatching 1:1 +CL:0002093 secondary polar body semapv:crossSpeciesExactMatch EHDAA2:0001820 semapv:UnspecifiedMatching 1:n +CL:0002093 secondary polar body semapv:crossSpeciesExactMatch EMAPA:16034 semapv:UnspecifiedMatching 1:n +CL:0002093 secondary polar body semapv:crossSpeciesExactMatch EMAPA:16045 semapv:UnspecifiedMatching 1:n +CL:0002093 secondary polar body semapv:crossSpeciesExactMatch FMA:18651 semapv:UnspecifiedMatching 1:n +CL:0002094 interstitial cell of ovary semapv:crossSpeciesExactMatch FMA:18709 semapv:UnspecifiedMatching 1:1 +CL:0002095 hilus cell of ovary semapv:crossSpeciesExactMatch FMA:18710 semapv:UnspecifiedMatching 1:1 +CL:0002096 internodal tract myocyte semapv:crossSpeciesExactMatch FMA:223275 semapv:UnspecifiedMatching 1:1 +CL:0002097 cortical cell of adrenal gland semapv:crossSpeciesExactMatch FMA:69545 semapv:UnspecifiedMatching 1:1 +CL:0002098 regular cardiac myocyte semapv:crossSpeciesExactMatch FMA:67967 semapv:UnspecifiedMatching 1:1 +CL:0002099 type I cell of adrenal cortex semapv:crossSpeciesExactMatch FMA:69273 semapv:UnspecifiedMatching 1:1 +CL:0002100 regular interventricular cardiac myocyte semapv:crossSpeciesExactMatch FMA:228792 semapv:UnspecifiedMatching 1:1 +CL:0002129 regular atrial cardiac myocyte semapv:crossSpeciesExactMatch FMA:83108 semapv:UnspecifiedMatching 1:1 +CL:0002130 regular interatrial cardiac myocyte semapv:crossSpeciesExactMatch FMA:228790 semapv:UnspecifiedMatching 1:1 +CL:0002131 regular ventricular cardiac myocyte semapv:crossSpeciesExactMatch FMA:83109 semapv:UnspecifiedMatching 1:1 +CL:0002132 stromal cell of ovary semapv:crossSpeciesExactMatch FMA:72299 semapv:UnspecifiedMatching 1:1 +CL:0002133 stromal cell of ovarian cortex semapv:crossSpeciesExactMatch FMA:256169 semapv:UnspecifiedMatching 1:1 +CL:0002134 stromal cell of ovarian medulla semapv:crossSpeciesExactMatch FMA:256171 semapv:UnspecifiedMatching 1:1 +CL:0002135 nonkeratinized cell of epidermis semapv:crossSpeciesExactMatch FMA:62880 semapv:UnspecifiedMatching 1:1 +CL:0002136 type II cell of adrenal cortex semapv:crossSpeciesExactMatch FMA:69547 semapv:UnspecifiedMatching 1:1 +CL:0002137 type III cell of adrenal cortex semapv:crossSpeciesExactMatch FMA:69564 semapv:UnspecifiedMatching 1:1 +CL:0002138 endothelial cell of lymphatic vessel semapv:crossSpeciesExactMatch FMA:68458 semapv:UnspecifiedMatching 1:1 +CL:0002139 endothelial cell of vascular tree semapv:crossSpeciesExactMatch FMA:67755 semapv:UnspecifiedMatching 1:1 +CL:0002140 acinar cell of sebaceous gland semapv:crossSpeciesExactMatch FMA:70953 semapv:UnspecifiedMatching 1:1 +CL:0002141 active chief cell of parathyroid gland semapv:crossSpeciesExactMatch FMA:69082 semapv:UnspecifiedMatching 1:1 +CL:0002142 dark cell of eccrine sweat gland semapv:crossSpeciesExactMatch FMA:70659 semapv:UnspecifiedMatching 1:1 +CL:0002143 dark chief cell of parathyroid gland semapv:crossSpeciesExactMatch FMA:69080 semapv:UnspecifiedMatching 1:1 +CL:0002144 capillary endothelial cell semapv:crossSpeciesExactMatch FMA:67756 semapv:UnspecifiedMatching 1:1 +CL:0002145 ciliated columnar cell of tracheobronchial tree semapv:crossSpeciesExactMatch FMA:70542 semapv:UnspecifiedMatching 1:1 +CL:0002146 clear cell of eccrine sweat gland semapv:crossSpeciesExactMatch FMA:70658 semapv:UnspecifiedMatching 1:1 +CL:0002147 clear chief cell of parathyroid gland semapv:crossSpeciesExactMatch FMA:69081 semapv:UnspecifiedMatching 1:1 +CL:0002148 dental pulp cell semapv:crossSpeciesExactMatch FMA:87170 semapv:UnspecifiedMatching 1:1 +CL:0002149 epithelial cell of uterus semapv:crossSpeciesExactMatch FMA:256161 semapv:UnspecifiedMatching 1:1 +CL:0002150 epithelioid macrophage semapv:crossSpeciesExactMatch FMA:83514 semapv:UnspecifiedMatching 1:1 +CL:0002151 late promyelocyte semapv:crossSpeciesExactMatch FMA:83534 semapv:UnspecifiedMatching 1:1 +CL:0002152 columnar cell of endocervix semapv:crossSpeciesExactMatch FMA:86486 semapv:UnspecifiedMatching 1:1 +CL:0002153 corneocyte semapv:crossSpeciesExactMatch FMA:68650 semapv:UnspecifiedMatching 1:1 +CL:0002154 early promyelocyte semapv:crossSpeciesExactMatch FMA:83533 semapv:UnspecifiedMatching 1:1 +CL:0002155 echinocyte semapv:crossSpeciesExactMatch FMA:81099 semapv:UnspecifiedMatching 1:1 +CL:0002157 endosteal cell semapv:crossSpeciesExactMatch FMA:86495 semapv:UnspecifiedMatching 1:1 +CL:0002158 external epithelial cell of tympanic membrane semapv:crossSpeciesExactMatch FMA:70558 semapv:UnspecifiedMatching 1:1 +CL:0002159 general ecto-epithelial cell semapv:crossSpeciesExactMatch FMA:70556 semapv:UnspecifiedMatching 1:1 +CL:0002162 internal epithelial cell of tympanic membrane semapv:crossSpeciesExactMatch FMA:70626 semapv:UnspecifiedMatching 1:1 +CL:0002163 internal pillar cell of cochlea semapv:crossSpeciesExactMatch FMA:75726 semapv:UnspecifiedMatching 1:n +CL:0002164 external pillar cell of cochlea semapv:crossSpeciesExactMatch FMA:75727 semapv:UnspecifiedMatching 1:1 +CL:0002165 phalangeal cell semapv:crossSpeciesExactMatch FMA:79800 semapv:UnspecifiedMatching 1:1 +CL:0002166 epithelial cell of Malassez semapv:crossSpeciesExactMatch FMA:62987 semapv:UnspecifiedMatching 1:1 +CL:0002167 olfactory epithelial cell semapv:crossSpeciesExactMatch FMA:67870 semapv:UnspecifiedMatching 1:1 +CL:0002168 border cell of cochlea semapv:crossSpeciesExactMatch FMA:79798 semapv:UnspecifiedMatching 1:1 +CL:0002169 basal cell of olfactory epithelium semapv:crossSpeciesExactMatch FMA:62303 semapv:UnspecifiedMatching 1:1 +CL:0002171 globose cell of olfactory epithelium semapv:crossSpeciesExactMatch FMA:67874 semapv:UnspecifiedMatching 1:1 +CL:0002172 interdental cell of cochlea semapv:crossSpeciesExactMatch FMA:79797 semapv:UnspecifiedMatching 1:1 +CL:0002173 extraglomerular mesangial cell semapv:crossSpeciesExactMatch FMA:84143 semapv:UnspecifiedMatching 1:n +CL:0002173 extraglomerular mesangial cell semapv:crossSpeciesExactMatch KUPO:0001033 semapv:UnspecifiedMatching 1:n +CL:0002174 follicular cell of ovary semapv:crossSpeciesExactMatch EMAPA:31247 semapv:UnspecifiedMatching 1:n +CL:0002174 follicular cell of ovary semapv:crossSpeciesExactMatch FMA:70589 semapv:UnspecifiedMatching 1:n +CL:0002175 primary follicular cell of ovary semapv:crossSpeciesExactMatch FMA:70590 semapv:UnspecifiedMatching 1:1 +CL:0002176 secondary follicular cell of ovary semapv:crossSpeciesExactMatch FMA:70591 semapv:UnspecifiedMatching 1:1 +CL:0002177 folliculostellate cell of pars distalis of adenohypophysis semapv:crossSpeciesExactMatch FMA:83102 semapv:UnspecifiedMatching 1:1 +CL:0002178 epithelial cell of stomach semapv:crossSpeciesExactMatch FMA:62948 semapv:UnspecifiedMatching 1:1 +CL:0002179 foveolar cell of stomach semapv:crossSpeciesExactMatch FMA:86552 semapv:UnspecifiedMatching 1:1 +CL:0002180 mucous cell of stomach semapv:crossSpeciesExactMatch FMA:63464 semapv:UnspecifiedMatching 1:1 +CL:0002181 mucous neck cell of gastric gland semapv:crossSpeciesExactMatch FMA:62954 semapv:UnspecifiedMatching 1:1 +CL:0002182 surface mucosal cell of stomach semapv:crossSpeciesExactMatch FMA:62949 semapv:UnspecifiedMatching 1:1 +CL:0002183 stem cell of gastric gland semapv:crossSpeciesExactMatch FMA:62953 semapv:UnspecifiedMatching 1:1 +CL:0002184 basal proper cell of olfactory epithelium semapv:crossSpeciesExactMatch FMA:62304 semapv:UnspecifiedMatching 1:1 +CL:0002187 basal cell of epidermis semapv:crossSpeciesExactMatch FMA:70571 semapv:UnspecifiedMatching 1:1 +CL:0002188 glomerular endothelial cell semapv:crossSpeciesExactMatch FMA:70970 semapv:UnspecifiedMatching 1:1 +CL:0002189 granular cell of epidermis semapv:crossSpeciesExactMatch FMA:70543 semapv:UnspecifiedMatching 1:1 +CL:0002190 squamous cell of epidermis semapv:crossSpeciesExactMatch FMA:86925 semapv:UnspecifiedMatching 1:1 +CL:0002191 granulocytopoietic cell semapv:crossSpeciesExactMatch FMA:83519 semapv:UnspecifiedMatching 1:1 +CL:0002192 metamyelocyte semapv:crossSpeciesExactMatch FMA:83541 semapv:UnspecifiedMatching 1:1 +CL:0002193 myelocyte semapv:crossSpeciesExactMatch FMA:83525 semapv:UnspecifiedMatching 1:1 +CL:0002194 monopoietic cell semapv:crossSpeciesExactMatch FMA:83552 semapv:UnspecifiedMatching 1:1 +CL:0002195 hepatic stem cell semapv:crossSpeciesExactMatch FMA:86577 semapv:UnspecifiedMatching 1:1 +CL:0002196 hepatic oval stem cell semapv:crossSpeciesExactMatch FMA:86576 semapv:UnspecifiedMatching 1:1 +CL:0002198 oncocyte semapv:crossSpeciesExactMatch FMA:67606 semapv:UnspecifiedMatching 1:1 +CL:0002199 oxyphil cell of parathyroid gland semapv:crossSpeciesExactMatch FMA:69084 semapv:UnspecifiedMatching 1:1 +CL:0002200 oxyphil cell of thyroid semapv:crossSpeciesExactMatch FMA:87169 semapv:UnspecifiedMatching 1:1 +CL:0002202 epithelial cell of tracheobronchial tree semapv:crossSpeciesExactMatch FMA:66816 semapv:UnspecifiedMatching 1:1 +CL:0002203 brush cell of epithelium proper of large intestine semapv:crossSpeciesExactMatch FMA:263222 semapv:UnspecifiedMatching 1:1 +CL:0002204 brush cell semapv:crossSpeciesExactMatch FMA:67978 semapv:UnspecifiedMatching 1:1 +CL:0002205 brush cell of lobular bronchiole semapv:crossSpeciesExactMatch FMA:263220 semapv:UnspecifiedMatching 1:1 +CL:0002206 brush cell of terminal bronchiole semapv:crossSpeciesExactMatch FMA:263228 semapv:UnspecifiedMatching 1:1 +CL:0002207 brush cell of trachea semapv:crossSpeciesExactMatch FMA:263224 semapv:UnspecifiedMatching 1:1 +CL:0002208 brush cell of bronchus semapv:crossSpeciesExactMatch FMA:263226 semapv:UnspecifiedMatching 1:1 +CL:0002209 intermediate epitheliocyte semapv:crossSpeciesExactMatch FMA:69060 semapv:UnspecifiedMatching 1:1 +CL:0002211 type I muscle cell semapv:crossSpeciesExactMatch FMA:84413 semapv:UnspecifiedMatching 1:1 +CL:0002212 type II muscle cell semapv:crossSpeciesExactMatch FMA:84414 semapv:UnspecifiedMatching 1:1 +CL:0002213 white muscle cell semapv:crossSpeciesExactMatch FMA:84449 semapv:UnspecifiedMatching 1:1 +CL:0002214 type IIa muscle cell semapv:crossSpeciesExactMatch FMA:84415 semapv:UnspecifiedMatching 1:1 +CL:0002215 type IIb muscle cell semapv:crossSpeciesExactMatch FMA:84416 semapv:UnspecifiedMatching 1:1 +CL:0002216 intermediate muscle cell semapv:crossSpeciesExactMatch FMA:84450 semapv:UnspecifiedMatching 1:1 +CL:0002217 intermediate trophoblast cell semapv:crossSpeciesExactMatch FMA:86564 semapv:UnspecifiedMatching 1:1 +CL:0002220 interstitial cell of pineal gland semapv:crossSpeciesExactMatch FMA:86575 semapv:UnspecifiedMatching 1:1 +CL:0002221 keratinized squamous cell of esophagus semapv:crossSpeciesExactMatch FMA:86549 semapv:UnspecifiedMatching 1:1 +CL:0002222 vertebrate lens cell semapv:crossSpeciesExactMatch FMA:70950 semapv:UnspecifiedMatching 1:1 +CL:0002223 anterior lens cell semapv:crossSpeciesExactMatch FMA:63181 semapv:UnspecifiedMatching 1:1 +CL:0002224 lens epithelial cell semapv:crossSpeciesExactMatch FMA:67559 semapv:UnspecifiedMatching 1:1 +CL:0002226 non-nucleated secondary lens fiber semapv:crossSpeciesExactMatch FMA:67561 semapv:UnspecifiedMatching 1:1 +CL:0002227 nucleated secondary lens fiber semapv:crossSpeciesExactMatch FMA:70949 semapv:UnspecifiedMatching 1:1 +CL:0002228 primary lens fiber semapv:crossSpeciesExactMatch FMA:70613 semapv:UnspecifiedMatching 1:1 +CL:0002229 light chief cell of parathyroid gland semapv:crossSpeciesExactMatch FMA:69079 semapv:UnspecifiedMatching 1:1 +CL:0002231 epithelial cell of prostate semapv:crossSpeciesExactMatch FMA:256163 semapv:UnspecifiedMatching 1:n +CL:0002231 epithelial cell of prostate semapv:crossSpeciesExactMatch FMA:66817 semapv:UnspecifiedMatching 1:n +CL:0002232 epithelial cell of prostatic duct semapv:crossSpeciesExactMatch FMA:74224 semapv:UnspecifiedMatching 1:1 +CL:0002233 epithelial cell of prostatic acinus semapv:crossSpeciesExactMatch FMA:74223 semapv:UnspecifiedMatching 1:1 +CL:0002234 basal cell of prostatic acinus semapv:crossSpeciesExactMatch FMA:74265 semapv:UnspecifiedMatching 1:1 +CL:0002235 luminal cell of prostatic acinus semapv:crossSpeciesExactMatch FMA:74266 semapv:UnspecifiedMatching 1:1 +CL:0002236 basal epithelial cell of prostatic duct semapv:crossSpeciesExactMatch FMA:74226 semapv:UnspecifiedMatching 1:1 +CL:0002237 luminal epithelial cell of prostatic duct semapv:crossSpeciesExactMatch FMA:74225 semapv:UnspecifiedMatching 1:1 +CL:0002238 male gonocyte skos:broadMatch VHOG:0000662 semapv:UnspecifiedMatching 1:n +CL:0002238 male gonocyte semapv:crossSpeciesExactMatch EHDAA2:0001053 semapv:UnspecifiedMatching 1:n +CL:0002238 male gonocyte semapv:crossSpeciesExactMatch EMAPA:18686 semapv:UnspecifiedMatching 1:n +CL:0002238 male gonocyte semapv:crossSpeciesExactMatch FMA:84771 semapv:UnspecifiedMatching 1:n +CL:0002239 ooblast skos:broadMatch VHOG:0000661 semapv:UnspecifiedMatching 1:n +CL:0002239 ooblast semapv:crossSpeciesExactMatch EHDAA2:0000505 semapv:UnspecifiedMatching 1:n +CL:0002239 ooblast semapv:crossSpeciesExactMatch EMAPA:17965 semapv:UnspecifiedMatching 1:n +CL:0002239 ooblast semapv:crossSpeciesExactMatch FMA:84772 semapv:UnspecifiedMatching 1:n +CL:0002240 marrow fibroblast semapv:crossSpeciesExactMatch FMA:84377 semapv:UnspecifiedMatching 1:1 +CL:0002241 pulmonary interstitial fibroblast semapv:crossSpeciesExactMatch FMA:84467 semapv:UnspecifiedMatching 1:1 +CL:0002242 nucleate cell semapv:crossSpeciesExactMatch FMA:67513 semapv:UnspecifiedMatching 1:1 +CL:0002243 smooth muscle cell of sphincter of pupil semapv:crossSpeciesExactMatch FMA:70611 semapv:UnspecifiedMatching 1:1 +CL:0002244 squamous cell of ectocervix semapv:crossSpeciesExactMatch FMA:86483 semapv:UnspecifiedMatching 1:1 +CL:0002246 peripheral blood stem cell semapv:crossSpeciesExactMatch FMA:86711 semapv:UnspecifiedMatching 1:1 +CL:0002247 pleural macrophage semapv:crossSpeciesExactMatch FMA:83024 semapv:UnspecifiedMatching 1:1 +CL:0002248 pluripotent stem cell semapv:crossSpeciesExactMatch FMA:70570 semapv:UnspecifiedMatching 1:1 +CL:0002249 primitive cardiac myocyte semapv:crossSpeciesExactMatch FMA:75620 semapv:UnspecifiedMatching 1:1 +CL:0002250 intestinal crypt stem cell semapv:crossSpeciesExactMatch FMA:63379 semapv:UnspecifiedMatching 1:1 +CL:0002252 epithelial cell of esophagus semapv:crossSpeciesExactMatch FMA:63071 semapv:UnspecifiedMatching 1:1 +CL:0002253 epithelial cell of large intestine semapv:crossSpeciesExactMatch FMA:256157 semapv:UnspecifiedMatching 1:1 +CL:0002254 epithelial cell of small intestine semapv:crossSpeciesExactMatch FMA:256159 semapv:UnspecifiedMatching 1:1 +CL:0002255 stromal cell of endometrium semapv:crossSpeciesExactMatch FMA:86490 semapv:UnspecifiedMatching 1:1 +CL:0002256 supporting cell of carotid body semapv:crossSpeciesExactMatch FMA:84188 semapv:UnspecifiedMatching 1:1 +CL:0002257 epithelial cell of thyroid gland semapv:crossSpeciesExactMatch FMA:256167 semapv:UnspecifiedMatching 1:1 +CL:0002258 thyroid follicular cell semapv:crossSpeciesExactMatch FMA:68782 semapv:UnspecifiedMatching 1:1 +CL:0002259 neuroepithelial stem cell semapv:crossSpeciesExactMatch FMA:87171 semapv:UnspecifiedMatching 1:1 +CL:0002260 epithelial cell of parathyroid gland semapv:crossSpeciesExactMatch FMA:70547 semapv:UnspecifiedMatching 1:1 +CL:0002261 endothelial cell of viscerocranial mucosa semapv:crossSpeciesExactMatch FMA:70627 semapv:UnspecifiedMatching 1:1 +CL:0002262 endothelial cell of sinusoid semapv:crossSpeciesExactMatch FMA:63134 semapv:UnspecifiedMatching 1:1 +CL:0002263 transitional cell of parathyroid gland semapv:crossSpeciesExactMatch FMA:69324 semapv:UnspecifiedMatching 1:1 +CL:0002264 type A cell of stomach semapv:crossSpeciesExactMatch FMA:83411 semapv:UnspecifiedMatching 1:1 +CL:0002265 type D cell of colon semapv:crossSpeciesExactMatch FMA:268744 semapv:UnspecifiedMatching 1:1 +CL:0002266 type D cell of small intestine semapv:crossSpeciesExactMatch FMA:268736 semapv:UnspecifiedMatching 1:1 +CL:0002267 type D cell of stomach semapv:crossSpeciesExactMatch FMA:83410 semapv:UnspecifiedMatching 1:1 +CL:0002268 P/D1 enteroendocrine cell semapv:crossSpeciesExactMatch FMA:63418 semapv:UnspecifiedMatching 1:n +CL:0002270 type EC2 enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62941 semapv:UnspecifiedMatching 1:1 +CL:0002271 type EC1 enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62940 semapv:UnspecifiedMatching 1:1 +CL:0002273 type ECL enteroendocrine cell semapv:crossSpeciesExactMatch FMA:63208 semapv:UnspecifiedMatching 1:1 +CL:0002275 pancreatic PP cell semapv:crossSpeciesExactMatch FMA:70588 semapv:UnspecifiedMatching 1:1 +CL:0002277 type I enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62937 semapv:UnspecifiedMatching 1:1 +CL:0002278 GIP cell semapv:crossSpeciesExactMatch FMA:62942 semapv:UnspecifiedMatching 1:1 +CL:0002279 type L enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62944 semapv:UnspecifiedMatching 1:1 +CL:0002280 type N enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62943 semapv:UnspecifiedMatching 1:1 +CL:0002281 type S enteroendocrine cell semapv:crossSpeciesExactMatch FMA:62936 semapv:UnspecifiedMatching 1:1 +CL:0002282 type TG enteroendocrine cell semapv:crossSpeciesExactMatch FMA:63421 semapv:UnspecifiedMatching 1:1 +CL:0002283 ecto-epithelial cell of viscerocranial mucosa semapv:crossSpeciesExactMatch FMA:70581 semapv:UnspecifiedMatching 1:1 +CL:0002284 type X enteroendocrine cell semapv:crossSpeciesExactMatch FMA:63209 semapv:UnspecifiedMatching 1:1 +CL:0002285 type III taste bud cell semapv:crossSpeciesExactMatch FMA:67940 semapv:UnspecifiedMatching 1:1 +CL:0002286 type II taste cell semapv:crossSpeciesExactMatch FMA:62381 semapv:UnspecifiedMatching 1:1 +CL:0002287 type IV taste receptor cell semapv:crossSpeciesExactMatch FMA:62380 semapv:UnspecifiedMatching 1:1 +CL:0002288 type V taste receptor cell semapv:crossSpeciesExactMatch FMA:67941 semapv:UnspecifiedMatching 1:1 +CL:0002289 type I taste bud cell semapv:crossSpeciesExactMatch FMA:62356 semapv:UnspecifiedMatching 1:1 +CL:0002290 Y chromosome-bearing sperm cell semapv:crossSpeciesExactMatch FMA:84058 semapv:UnspecifiedMatching 1:1 +CL:0002291 X chromosome-bearing sperm cell semapv:crossSpeciesExactMatch FMA:84057 semapv:UnspecifiedMatching 1:1 +CL:0002292 type I cell of carotid body semapv:crossSpeciesExactMatch FMA:84186 semapv:UnspecifiedMatching 1:1 +CL:0002293 epithelial cell of thymus semapv:crossSpeciesExactMatch FMA:72208 semapv:UnspecifiedMatching 1:1 +CL:0002294 type-1 epithelial cell of thymus semapv:crossSpeciesExactMatch FMA:72209 semapv:UnspecifiedMatching 1:1 +CL:0002295 type-6 epithelial cell of thymus semapv:crossSpeciesExactMatch FMA:72214 semapv:UnspecifiedMatching 1:1 +CL:0002296 type-4 epithelial cell of thymus semapv:crossSpeciesExactMatch FMA:72212 semapv:UnspecifiedMatching 1:1 +CL:0002297 type-3 epithelial cell of thymus semapv:crossSpeciesExactMatch FMA:72211 semapv:UnspecifiedMatching 1:1 +CL:0002298 type-5 epithelial cell of thymus semapv:crossSpeciesExactMatch FMA:72213 semapv:UnspecifiedMatching 1:1 +CL:0002299 type-2 epithelial cell of thymus semapv:crossSpeciesExactMatch FMA:72210 semapv:UnspecifiedMatching 1:1 +CL:0002301 type B synovial cell semapv:crossSpeciesExactMatch FMA:66788 semapv:UnspecifiedMatching 1:1 +CL:0002302 type A synovial cell semapv:crossSpeciesExactMatch FMA:66787 semapv:UnspecifiedMatching 1:1 +CL:0002303 pigmented ciliary epithelial cell semapv:crossSpeciesExactMatch FMA:70606 semapv:UnspecifiedMatching 1:1 +CL:0002304 non-pigmented ciliary epithelial cell semapv:crossSpeciesExactMatch FMA:70607 semapv:UnspecifiedMatching 1:1 +CL:0002305 epithelial cell of distal tubule semapv:crossSpeciesExactMatch FMA:70981 semapv:UnspecifiedMatching 1:n +CL:0002305 epithelial cell of distal tubule semapv:crossSpeciesExactMatch KUPO:0001055 semapv:UnspecifiedMatching 1:n +CL:0002306 epithelial cell of proximal tubule semapv:crossSpeciesExactMatch FMA:70973 semapv:UnspecifiedMatching 1:n +CL:0002306 epithelial cell of proximal tubule semapv:crossSpeciesExactMatch KUPO:0001044 semapv:UnspecifiedMatching 1:n +CL:0002308 epithelial cell of skin gland semapv:crossSpeciesExactMatch FMA:70657 semapv:UnspecifiedMatching 1:1 +CL:0002309 corticotroph semapv:crossSpeciesExactMatch FMA:83098 semapv:UnspecifiedMatching 1:1 +CL:0002310 mammosomatotroph semapv:crossSpeciesExactMatch FMA:83097 semapv:UnspecifiedMatching 1:1 +CL:0002311 mammotroph semapv:crossSpeciesExactMatch FMA:83096 semapv:UnspecifiedMatching 1:1 +CL:0002312 somatotroph semapv:crossSpeciesExactMatch FMA:83095 semapv:UnspecifiedMatching 1:1 +CL:0002313 endocrine-paracrine cell of prostate gland semapv:crossSpeciesExactMatch FMA:74390 semapv:UnspecifiedMatching 1:n +CL:0002313 endocrine-paracrine cell of prostate gland semapv:crossSpeciesExactMatch FMA:86774 semapv:UnspecifiedMatching 1:n +CL:0002314 external supporting cell of vestibular epithelium semapv:crossSpeciesExactMatch FMA:75809 semapv:UnspecifiedMatching 1:1 +CL:0002315 supporting cell of cochlea semapv:crossSpeciesExactMatch FMA:79796 semapv:UnspecifiedMatching 1:1 +CL:0002316 supporting cell of vestibular epithelium semapv:crossSpeciesExactMatch FMA:75607 semapv:UnspecifiedMatching 1:1 +CL:0002317 external limiting cell of vestibular epithelium semapv:crossSpeciesExactMatch FMA:75808 semapv:UnspecifiedMatching 1:1 +CL:0002318 peripheral blood mesothelial cell semapv:crossSpeciesExactMatch FMA:86712 semapv:UnspecifiedMatching 1:1 +CL:0002319 neural cell semapv:crossSpeciesExactMatch FMA:70333 semapv:UnspecifiedMatching 1:1 +CL:0002320 connective tissue cell semapv:crossSpeciesExactMatch FMA:63875 semapv:UnspecifiedMatching 1:1 +CL:0002321 embryonic cell (metazoa) semapv:crossSpeciesExactMatch FMA:82840 semapv:UnspecifiedMatching 1:n +CL:0002321 embryonic cell (metazoa) semapv:crossSpeciesExactMatch WBbt:0007028 semapv:UnspecifiedMatching 1:n +CL:0002324 myoepithelial cell of mammary gland semapv:crossSpeciesExactMatch FMA:67800 semapv:UnspecifiedMatching 1:1 +CL:0002325 lactocyte semapv:crossSpeciesExactMatch FMA:74506 semapv:UnspecifiedMatching 1:n +CL:0002325 lactocyte semapv:crossSpeciesExactMatch FMA:79866 semapv:UnspecifiedMatching 1:n +CL:0002326 luminal epithelial cell of mammary gland semapv:crossSpeciesExactMatch FMA:73280 semapv:UnspecifiedMatching 1:1 +CL:0002350 endocardial cell semapv:crossSpeciesExactMatch FMA:75621 semapv:UnspecifiedMatching 1:1 +CL:0002377 immature Schwann cell semapv:crossSpeciesExactMatch ZFA:0001725 semapv:UnspecifiedMatching 1:1 +CL:0002379 meningothelial cell semapv:crossSpeciesExactMatch FMA:86588 semapv:UnspecifiedMatching 1:1 +CL:0002422 enucleated reticulocyte semapv:crossSpeciesExactMatch FMA:66785 semapv:UnspecifiedMatching 1:1 +CL:0002494 cardiocyte semapv:crossSpeciesExactMatch FMA:83808 semapv:UnspecifiedMatching 1:n +CL:0002494 cardiocyte semapv:crossSpeciesExactMatch FMA:84791 semapv:UnspecifiedMatching 1:n +CL:0002497 primary trophoblast giant cell semapv:crossSpeciesExactMatch EMAPA:16066 semapv:UnspecifiedMatching 1:1 +CL:0002502 type M enteroendocrine cell semapv:crossSpeciesExactMatch FMA:63420 semapv:UnspecifiedMatching 1:1 +CL:0002503 adventitial cell semapv:crossSpeciesExactMatch FMA:84639 semapv:UnspecifiedMatching 1:1 +CL:0002518 kidney epithelial cell semapv:crossSpeciesExactMatch KUPO:0001019 semapv:UnspecifiedMatching 1:1 +CL:0002543 vein endothelial cell semapv:crossSpeciesExactMatch FMA:62104 semapv:UnspecifiedMatching 1:n +CL:0002543 vein endothelial cell semapv:crossSpeciesExactMatch KUPO:0001099 semapv:UnspecifiedMatching 1:n +CL:0002584 renal cortical epithelial cell semapv:crossSpeciesExactMatch KUPO:0001016 semapv:UnspecifiedMatching 1:1 +CL:0002586 retinal pigment epithelial cell semapv:crossSpeciesExactMatch FMA:75802 semapv:UnspecifiedMatching 1:1 +CL:0002597 smooth muscle cell of bladder semapv:crossSpeciesExactMatch KUPO:0001122 semapv:UnspecifiedMatching 1:1 +CL:0002635 nonkeratinized epithelial cell of anal column semapv:crossSpeciesExactMatch FMA:263146 semapv:UnspecifiedMatching 1:1 +CL:0002636 nonkeratinized epithelial cell of inferior part of anal canal semapv:crossSpeciesExactMatch FMA:263144 semapv:UnspecifiedMatching 1:1 +CL:0002641 epithelial cell of esophageal gland proper semapv:crossSpeciesExactMatch FMA:256141 semapv:UnspecifiedMatching 1:1 +CL:0002642 epithelial cell of esophageal cardiac gland semapv:crossSpeciesExactMatch FMA:256143 semapv:UnspecifiedMatching 1:1 +CL:0002643 nonkeratinized cell of stratum corneum of esophageal epithelium semapv:crossSpeciesExactMatch FMA:263148 semapv:UnspecifiedMatching 1:1 +CL:0002644 endo-epithelial cell of tympanic part of viscerocranial mucosa semapv:crossSpeciesExactMatch FMA:70628 semapv:UnspecifiedMatching 1:1 +CL:0002645 endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa semapv:crossSpeciesExactMatch FMA:70629 semapv:UnspecifiedMatching 1:1 +CL:0002651 endothelial cell of venous sinus of spleen semapv:crossSpeciesExactMatch FMA:72140 semapv:UnspecifiedMatching 1:1 +CL:0002652 endothelial cell of high endothelial venule semapv:crossSpeciesExactMatch FMA:67759 semapv:UnspecifiedMatching 1:1 +CL:0002654 epithelial cell of stratum corneum of esophageal epithelium semapv:crossSpeciesExactMatch FMA:70733 semapv:UnspecifiedMatching 1:1 +CL:0002655 epithelial cell of stratum spinosum of esophageal epithelium semapv:crossSpeciesExactMatch FMA:70732 semapv:UnspecifiedMatching 1:1 +CL:0002656 glandular cell of endometrium semapv:crossSpeciesExactMatch FMA:86489 semapv:UnspecifiedMatching 1:1 +CL:0002657 glandular cell of esophagus semapv:crossSpeciesExactMatch FMA:86548 semapv:UnspecifiedMatching 1:1 +CL:0002658 glandular cell of the large intestine semapv:crossSpeciesExactMatch FMA:87194 semapv:UnspecifiedMatching 1:1 +CL:0002659 glandular cell of stomach semapv:crossSpeciesExactMatch FMA:86554 semapv:UnspecifiedMatching 1:1 +CL:0002661 luminal cell of lactiferous terminal ductal lobular unit semapv:crossSpeciesExactMatch FMA:87168 semapv:UnspecifiedMatching 1:1 +CL:0002662 luminal cell of lactiferous duct semapv:crossSpeciesExactMatch FMA:74504 semapv:UnspecifiedMatching 1:n +CL:0002663 myocardial endocrine cell of atrium semapv:crossSpeciesExactMatch FMA:83389 semapv:UnspecifiedMatching 1:1 +CL:0005010 renal intercalated cell semapv:crossSpeciesExactMatch FMA:86560 semapv:UnspecifiedMatching 1:1 +CL:0005015 inner phalangeal cell semapv:crossSpeciesExactMatch FMA:79801 semapv:UnspecifiedMatching 1:1 +CL:0008037 gamma motor neuron semapv:crossSpeciesExactMatch FMA:83660 semapv:UnspecifiedMatching 1:1 +CL:0008039 lower motor neuron semapv:crossSpeciesExactMatch FMA:84632 semapv:UnspecifiedMatching 1:1 +CL:0010012 cerebral cortex neuron semapv:crossSpeciesExactMatch FMA:84104 semapv:UnspecifiedMatching 1:1 +CL:0017005 lymphoblast semapv:crossSpeciesExactMatch FMA:83030 semapv:UnspecifiedMatching 1:1 +CL:0017006 B-lymphoblast semapv:crossSpeciesExactMatch FMA:83031 semapv:UnspecifiedMatching 1:1 +CL:1000275 smooth muscle cell of small intestine semapv:crossSpeciesExactMatch FMA:15050 semapv:UnspecifiedMatching 1:1 +CL:1000276 smooth muscle fiber of duodenum semapv:crossSpeciesExactMatch FMA:15058 semapv:UnspecifiedMatching 1:1 +CL:1000277 smooth muscle fiber of jejunum semapv:crossSpeciesExactMatch FMA:15062 semapv:UnspecifiedMatching 1:1 +CL:1000278 smooth muscle fiber of ileum semapv:crossSpeciesExactMatch FMA:15066 semapv:UnspecifiedMatching 1:1 +CL:1000279 smooth muscle cell of large intestine semapv:crossSpeciesExactMatch FMA:15653 semapv:UnspecifiedMatching 1:1 +CL:1000280 smooth muscle cell of colon semapv:crossSpeciesExactMatch FMA:15663 semapv:UnspecifiedMatching 1:1 +CL:1000281 smooth muscle cell of cecum semapv:crossSpeciesExactMatch FMA:15681 semapv:UnspecifiedMatching 1:1 +CL:1000282 smooth muscle fiber of ascending colon semapv:crossSpeciesExactMatch FMA:17518 semapv:UnspecifiedMatching 1:1 +CL:1000283 smooth muscle fiber of transverse colon semapv:crossSpeciesExactMatch FMA:17519 semapv:UnspecifiedMatching 1:1 +CL:1000284 smooth muscle fiber of descending colon semapv:crossSpeciesExactMatch FMA:17520 semapv:UnspecifiedMatching 1:1 +CL:1000285 smooth muscle cell of sigmoid colon semapv:crossSpeciesExactMatch FMA:17521 semapv:UnspecifiedMatching 1:1 +CL:1000286 smooth muscle cell of rectum semapv:crossSpeciesExactMatch FMA:17522 semapv:UnspecifiedMatching 1:1 +CL:1000287 myocyte of anterior internodal tract semapv:crossSpeciesExactMatch FMA:223276 semapv:UnspecifiedMatching 1:1 +CL:1000288 myocyte of atrial branch of anterior internodal tract semapv:crossSpeciesExactMatch FMA:223277 semapv:UnspecifiedMatching 1:1 +CL:1000289 myocyte of atrial septal branch of anterior internodal tract semapv:crossSpeciesExactMatch FMA:223278 semapv:UnspecifiedMatching 1:1 +CL:1000290 myocyte of middle internodal tract semapv:crossSpeciesExactMatch FMA:223279 semapv:UnspecifiedMatching 1:1 +CL:1000291 myocyte of posterior internodal tract semapv:crossSpeciesExactMatch FMA:223280 semapv:UnspecifiedMatching 1:1 +CL:1000296 epithelial cell of urethra semapv:crossSpeciesExactMatch FMA:256165 semapv:UnspecifiedMatching 1:1 +CL:1000298 mesothelial cell of dura mater semapv:crossSpeciesExactMatch FMA:256516 semapv:UnspecifiedMatching 1:1 +CL:1000299 fibroblast of connective tissue of prostate semapv:crossSpeciesExactMatch FMA:261271 semapv:UnspecifiedMatching 1:1 +CL:1000300 fibroblast of outer membrane of prostatic capsule semapv:crossSpeciesExactMatch FMA:261273 semapv:UnspecifiedMatching 1:1 +CL:1000301 fibroblast of subepithelial connective tissue of prostatic gland semapv:crossSpeciesExactMatch FMA:261275 semapv:UnspecifiedMatching 1:1 +CL:1000302 fibroblast of papillary layer of dermis semapv:crossSpeciesExactMatch FMA:261277 semapv:UnspecifiedMatching 1:1 +CL:1000303 fibroblast of areolar connective tissue semapv:crossSpeciesExactMatch FMA:261279 semapv:UnspecifiedMatching 1:1 +CL:1000304 fibroblast of connective tissue of nonglandular part of prostate semapv:crossSpeciesExactMatch FMA:261281 semapv:UnspecifiedMatching 1:1 +CL:1000305 fibroblast of connective tissue of glandular part of prostate semapv:crossSpeciesExactMatch FMA:261283 semapv:UnspecifiedMatching 1:1 +CL:1000306 fibroblast of tunica adventitia of artery semapv:crossSpeciesExactMatch FMA:261285 semapv:UnspecifiedMatching 1:1 +CL:1000307 fibroblast of dense regular elastic tissue semapv:crossSpeciesExactMatch FMA:261287 semapv:UnspecifiedMatching 1:1 +CL:1000308 fibrocyte of adventitia of ureter semapv:crossSpeciesExactMatch FMA:261289 semapv:UnspecifiedMatching 1:1 +CL:1000309 epicardial adipocyte semapv:crossSpeciesExactMatch FMA:261293 semapv:UnspecifiedMatching 1:1 +CL:1000310 adipocyte of epicardial fat of right ventricle semapv:crossSpeciesExactMatch FMA:261297 semapv:UnspecifiedMatching 1:1 +CL:1000311 adipocyte of epicardial fat of left ventricle semapv:crossSpeciesExactMatch FMA:261300 semapv:UnspecifiedMatching 1:1 +CL:1000312 bronchial goblet cell semapv:crossSpeciesExactMatch FMA:263032 semapv:UnspecifiedMatching 1:1 +CL:1000313 gastric goblet cell semapv:crossSpeciesExactMatch FMA:263035 semapv:UnspecifiedMatching 1:1 +CL:1000314 gastric cardiac gland goblet cell semapv:crossSpeciesExactMatch FMA:263038 semapv:UnspecifiedMatching 1:1 +CL:1000315 principal gastric gland goblet cell semapv:crossSpeciesExactMatch FMA:263040 semapv:UnspecifiedMatching 1:1 +CL:1000317 intestinal villus goblet cell semapv:crossSpeciesExactMatch FMA:263046 semapv:UnspecifiedMatching 1:1 +CL:1000320 large intestine goblet cell semapv:crossSpeciesExactMatch FMA:263054 semapv:UnspecifiedMatching 1:1 +CL:1000321 large intestine crypt goblet cell semapv:crossSpeciesExactMatch FMA:263056 semapv:UnspecifiedMatching 1:1 +CL:1000322 pancreatic goblet cell semapv:crossSpeciesExactMatch FMA:263058 semapv:UnspecifiedMatching 1:1 +CL:1000323 pyloric gastric gland goblet cell semapv:crossSpeciesExactMatch FMA:263061 semapv:UnspecifiedMatching 1:1 +CL:1000324 duodenal goblet cell semapv:crossSpeciesExactMatch FMA:263063 semapv:UnspecifiedMatching 1:1 +CL:1000325 jejunal goblet cell semapv:crossSpeciesExactMatch FMA:263065 semapv:UnspecifiedMatching 1:1 +CL:1000326 ileal goblet cell semapv:crossSpeciesExactMatch FMA:263067 semapv:UnspecifiedMatching 1:1 +CL:1000327 appendix goblet cell semapv:crossSpeciesExactMatch FMA:263069 semapv:UnspecifiedMatching 1:1 +CL:1000329 tracheal goblet cell semapv:crossSpeciesExactMatch FMA:263075 semapv:UnspecifiedMatching 1:1 +CL:1000330 serous cell of epithelium of trachea semapv:crossSpeciesExactMatch FMA:263078 semapv:UnspecifiedMatching 1:1 +CL:1000331 serous cell of epithelium of bronchus semapv:crossSpeciesExactMatch FMA:263080 semapv:UnspecifiedMatching 1:1 +CL:1000332 serous cell of epithelium of terminal bronchiole semapv:crossSpeciesExactMatch FMA:263082 semapv:UnspecifiedMatching 1:1 +CL:1000333 serous cell of epithelium of lobular bronchiole semapv:crossSpeciesExactMatch FMA:263084 semapv:UnspecifiedMatching 1:1 +CL:1000334 enterocyte of epithelium of small intestine semapv:crossSpeciesExactMatch FMA:263086 semapv:UnspecifiedMatching 1:1 +CL:1000335 enterocyte of epithelium of intestinal villus semapv:crossSpeciesExactMatch FMA:263088 semapv:UnspecifiedMatching 1:1 +CL:1000337 enterocyte of epithelium of duodenal gland semapv:crossSpeciesExactMatch FMA:263092 semapv:UnspecifiedMatching 1:1 +CL:1000338 enterocyte of epithelium of crypt of Lieberkuhn of small intestine semapv:crossSpeciesExactMatch FMA:263094 semapv:UnspecifiedMatching 1:1 +CL:1000339 enterocyte of epithelium proper of small intestine semapv:crossSpeciesExactMatch FMA:263096 semapv:UnspecifiedMatching 1:1 +CL:1000340 enterocyte of epithelium proper of duodenum semapv:crossSpeciesExactMatch FMA:263098 semapv:UnspecifiedMatching 1:1 +CL:1000341 enterocyte of epithelium proper of jejunum semapv:crossSpeciesExactMatch FMA:263100 semapv:UnspecifiedMatching 1:1 +CL:1000342 enterocyte of epithelium proper of ileum semapv:crossSpeciesExactMatch FMA:263102 semapv:UnspecifiedMatching 1:1 +CL:1000343 paneth cell of epithelium of small intestine semapv:crossSpeciesExactMatch FMA:263104 semapv:UnspecifiedMatching 1:1 +CL:1000344 paneth cell of epithelium proper of small intestine semapv:crossSpeciesExactMatch FMA:263106 semapv:UnspecifiedMatching 1:1 +CL:1000345 paneth cell of epithelium of crypt of Lieberkuhn of small intestine semapv:crossSpeciesExactMatch FMA:263108 semapv:UnspecifiedMatching 1:1 +CL:1000346 enterocyte of epithelium proper of large intestine semapv:crossSpeciesExactMatch FMA:263090 semapv:UnspecifiedMatching 1:n +CL:1000346 enterocyte of epithelium proper of large intestine semapv:crossSpeciesExactMatch FMA:263112 semapv:UnspecifiedMatching 1:n +CL:1000347 enterocyte of colon semapv:crossSpeciesExactMatch FMA:263114 semapv:UnspecifiedMatching 1:1 +CL:1000348 basal cell of epithelium of trachea semapv:crossSpeciesExactMatch FMA:263118 semapv:UnspecifiedMatching 1:1 +CL:1000349 basal cell of epithelium of bronchus semapv:crossSpeciesExactMatch FMA:263120 semapv:UnspecifiedMatching 1:1 +CL:1000350 basal cell of epithelium of terminal bronchiole semapv:crossSpeciesExactMatch FMA:263122 semapv:UnspecifiedMatching 1:1 +CL:1000351 basal cell of epithelium of respiratory bronchiole semapv:crossSpeciesExactMatch FMA:263124 semapv:UnspecifiedMatching 1:1 +CL:1000352 basal cell of epithelium of lobular bronchiole semapv:crossSpeciesExactMatch FMA:263126 semapv:UnspecifiedMatching 1:1 +CL:1000353 microfold cell of epithelium of small intestine semapv:crossSpeciesExactMatch FMA:263128 semapv:UnspecifiedMatching 1:1 +CL:1000354 microfold cell of epithelium of intestinal villus semapv:crossSpeciesExactMatch FMA:263130 semapv:UnspecifiedMatching 1:1 +CL:1000355 microfold cell of epithelium proper of small intestine semapv:crossSpeciesExactMatch FMA:263132 semapv:UnspecifiedMatching 1:1 +CL:1000356 microfold cell of epithelium proper of duodenum semapv:crossSpeciesExactMatch FMA:263134 semapv:UnspecifiedMatching 1:1 +CL:1000357 microfold cell of epithelium proper of jejunum semapv:crossSpeciesExactMatch FMA:263136 semapv:UnspecifiedMatching 1:1 +CL:1000358 microfold cell of epithelium proper of ileum semapv:crossSpeciesExactMatch FMA:263138 semapv:UnspecifiedMatching 1:1 +CL:1000359 microfold cell of epithelium proper of appendix semapv:crossSpeciesExactMatch FMA:263140 semapv:UnspecifiedMatching 1:1 +CL:1000360 microfold cell of epithelium proper of large intestine semapv:crossSpeciesExactMatch FMA:263142 semapv:UnspecifiedMatching 1:1 +CL:1000361 transitional myocyte of interatrial septum semapv:crossSpeciesExactMatch FMA:263152 semapv:UnspecifiedMatching 1:1 +CL:1000362 transitional myocyte of interventricular septum semapv:crossSpeciesExactMatch FMA:263154 semapv:UnspecifiedMatching 1:1 +CL:1000363 transitional myocyte of atrial branch of anterior internodal tract semapv:crossSpeciesExactMatch FMA:263156 semapv:UnspecifiedMatching 1:1 +CL:1000364 transitional myocyte of anterior internodal tract semapv:crossSpeciesExactMatch FMA:263158 semapv:UnspecifiedMatching 1:1 +CL:1000365 transitional myocyte of atrial septal branch of anterior internodal tract semapv:crossSpeciesExactMatch FMA:263160 semapv:UnspecifiedMatching 1:1 +CL:1000366 transitional myocyte of middle internodal tract semapv:crossSpeciesExactMatch FMA:263162 semapv:UnspecifiedMatching 1:1 +CL:1000367 transitional myocyte of posterior internodal tract semapv:crossSpeciesExactMatch FMA:263164 semapv:UnspecifiedMatching 1:1 +CL:1000368 transitional myocyte of anterior division of left branch of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:263166 semapv:UnspecifiedMatching 1:1 +CL:1000369 transitional myocyte of septal division of left branch of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:263168 semapv:UnspecifiedMatching 1:1 +CL:1000370 transitional myocyte of left branch of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:263170 semapv:UnspecifiedMatching 1:1 +CL:1000371 transitional myocyte of right branch of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:263172 semapv:UnspecifiedMatching 1:1 +CL:1000372 transitional myocyte of atrial part of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:263174 semapv:UnspecifiedMatching 1:1 +CL:1000373 transitional myocyte of ventricular part of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:263176 semapv:UnspecifiedMatching 1:1 +CL:1000374 transitional myocyte of posterior division of left branch of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:263178 semapv:UnspecifiedMatching 1:1 +CL:1000375 myocardial endocrine cell of septal division of left branch of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:263180 semapv:UnspecifiedMatching 1:1 +CL:1000376 Purkinje myocyte of interventricular septum semapv:crossSpeciesExactMatch FMA:263182 semapv:UnspecifiedMatching 1:1 +CL:1000377 dense-core granulated cell of epithelium of trachea semapv:crossSpeciesExactMatch FMA:263184 semapv:UnspecifiedMatching 1:1 +CL:1000378 type 1 vestibular sensory cell of stato-acoustic epithelium semapv:crossSpeciesExactMatch FMA:263186 semapv:UnspecifiedMatching 1:1 +CL:1000379 type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth semapv:crossSpeciesExactMatch FMA:263188 semapv:UnspecifiedMatching 1:1 +CL:1000380 type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth semapv:crossSpeciesExactMatch FMA:263190 semapv:UnspecifiedMatching 1:1 +CL:1000381 type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth semapv:crossSpeciesExactMatch FMA:263192 semapv:UnspecifiedMatching 1:1 +CL:1000382 type 2 vestibular sensory cell of stato-acoustic epithelium semapv:crossSpeciesExactMatch FMA:263194 semapv:UnspecifiedMatching 1:1 +CL:1000383 type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth semapv:crossSpeciesExactMatch FMA:263196 semapv:UnspecifiedMatching 1:1 +CL:1000384 type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth semapv:crossSpeciesExactMatch FMA:263198 semapv:UnspecifiedMatching 1:1 +CL:1000385 type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth semapv:crossSpeciesExactMatch FMA:263200 semapv:UnspecifiedMatching 1:1 +CL:1000391 melanocyte of eyelid semapv:crossSpeciesExactMatch FMA:59175 semapv:UnspecifiedMatching 1:1 +CL:1000394 myoepithelial cell of intralobular lactiferous duct semapv:crossSpeciesExactMatch FMA:62158 semapv:UnspecifiedMatching 1:1 +CL:1000397 endothelial cell of venous sinus of red pulp of spleen semapv:crossSpeciesExactMatch FMA:62817 semapv:UnspecifiedMatching 1:1 +CL:1000398 endothelial cell of hepatic sinusoid semapv:crossSpeciesExactMatch FMA:62911 semapv:UnspecifiedMatching 1:1 +CL:1000405 epithelial cell of appendix semapv:crossSpeciesExactMatch FMA:63602 semapv:UnspecifiedMatching 1:1 +CL:1000409 myocyte of sinoatrial node semapv:crossSpeciesExactMatch FMA:67102 semapv:UnspecifiedMatching 1:1 +CL:1000410 myocyte of atrioventricular node semapv:crossSpeciesExactMatch FMA:67106 semapv:UnspecifiedMatching 1:1 +CL:1000411 endothelial cell of Peyer's patch semapv:crossSpeciesExactMatch FMA:67757 semapv:UnspecifiedMatching 1:1 +CL:1000412 endothelial cell of arteriole semapv:crossSpeciesExactMatch FMA:67760 semapv:UnspecifiedMatching 1:n +CL:1000412 endothelial cell of arteriole semapv:crossSpeciesExactMatch KUPO:0001097 semapv:UnspecifiedMatching 1:n +CL:1000413 endothelial cell of artery semapv:crossSpeciesExactMatch FMA:67761 semapv:UnspecifiedMatching 1:n +CL:1000413 endothelial cell of artery semapv:crossSpeciesExactMatch KUPO:0001095 semapv:UnspecifiedMatching 1:n +CL:1000414 endothelial cell of venule semapv:crossSpeciesExactMatch FMA:67762 semapv:UnspecifiedMatching 1:1 +CL:1000415 epithelial cell of gallbladder semapv:crossSpeciesExactMatch FMA:67780 semapv:UnspecifiedMatching 1:1 +CL:1000417 myoepithelial cell of sweat gland semapv:crossSpeciesExactMatch FMA:67801 semapv:UnspecifiedMatching 1:1 +CL:1000418 myoepithelial cell of lactiferous alveolus semapv:crossSpeciesExactMatch FMA:67802 semapv:UnspecifiedMatching 1:1 +CL:1000419 myoepithelial cell of lactiferous duct semapv:crossSpeciesExactMatch FMA:67803 semapv:UnspecifiedMatching 1:1 +CL:1000420 myoepithelial cell of terminal lactiferous duct semapv:crossSpeciesExactMatch FMA:67804 semapv:UnspecifiedMatching 1:1 +CL:1000424 chromaffin cell of paraaortic body semapv:crossSpeciesExactMatch FMA:69328 semapv:UnspecifiedMatching 1:1 +CL:1000425 chromaffin cell of paraganglion semapv:crossSpeciesExactMatch FMA:69335 semapv:UnspecifiedMatching 1:1 +CL:1000426 chromaffin cell of adrenal gland semapv:crossSpeciesExactMatch FMA:69794 semapv:UnspecifiedMatching 1:1 +CL:1000427 adrenal cortex chromaffin cell semapv:crossSpeciesExactMatch FMA:69795 semapv:UnspecifiedMatching 1:1 +CL:1000428 stem cell of epidermis semapv:crossSpeciesExactMatch FMA:70541 semapv:UnspecifiedMatching 1:1 +CL:1000432 conjunctival epithelial cell semapv:crossSpeciesExactMatch FMA:70552 semapv:UnspecifiedMatching 1:1 +CL:1000433 epithelial cell of lacrimal canaliculus semapv:crossSpeciesExactMatch FMA:70553 semapv:UnspecifiedMatching 1:1 +CL:1000434 epithelial cell of external acoustic meatus semapv:crossSpeciesExactMatch FMA:70555 semapv:UnspecifiedMatching 1:1 +CL:1000435 epithelial cell of lacrimal duct semapv:crossSpeciesExactMatch FMA:70559 semapv:UnspecifiedMatching 1:1 +CL:1000436 epithelial cell of lacrimal sac semapv:crossSpeciesExactMatch FMA:70560 semapv:UnspecifiedMatching 1:1 +CL:1000437 epithelial cell of nasolacrimal duct semapv:crossSpeciesExactMatch FMA:70561 semapv:UnspecifiedMatching 1:1 +CL:1000438 epithelial cell of wall of inferior part of anal canal semapv:crossSpeciesExactMatch FMA:70562 semapv:UnspecifiedMatching 1:1 +CL:1000441 epithelial cell of viscerocranial mucosa semapv:crossSpeciesExactMatch FMA:70583 semapv:UnspecifiedMatching 1:1 +CL:1000442 urothelial cell of trigone of urinary bladder semapv:crossSpeciesExactMatch FMA:70598 semapv:UnspecifiedMatching 1:1 +CL:1000443 ciliary muscle cell semapv:crossSpeciesExactMatch FMA:70610 semapv:UnspecifiedMatching 1:1 +CL:1000444 mesothelial cell of anterior chamber of eye semapv:crossSpeciesExactMatch FMA:70615 semapv:UnspecifiedMatching 1:1 +CL:1000445 myoepithelial cell of dilator pupillae semapv:crossSpeciesExactMatch FMA:70619 semapv:UnspecifiedMatching 1:1 +CL:1000447 epithelial cell of stratum germinativum of esophagus semapv:crossSpeciesExactMatch FMA:70731 semapv:UnspecifiedMatching 1:1 +CL:1000448 epithelial cell of sweat gland semapv:crossSpeciesExactMatch FMA:70952 semapv:UnspecifiedMatching 1:1 +CL:1000449 epithelial cell of nephron semapv:crossSpeciesExactMatch FMA:70965 semapv:UnspecifiedMatching 1:1 +CL:1000450 epithelial cell of glomerular capsule semapv:crossSpeciesExactMatch FMA:70966 semapv:UnspecifiedMatching 1:n +CL:1000450 epithelial cell of glomerular capsule semapv:crossSpeciesExactMatch KUPO:0001034 semapv:UnspecifiedMatching 1:n +CL:1000452 parietal epithelial cell semapv:crossSpeciesExactMatch FMA:70968 semapv:UnspecifiedMatching 1:n +CL:1000452 parietal epithelial cell semapv:crossSpeciesExactMatch KUPO:0001035 semapv:UnspecifiedMatching 1:n +CL:1000453 epithelial cell of intermediate tubule semapv:crossSpeciesExactMatch FMA:70980 semapv:UnspecifiedMatching 1:1 +CL:1000454 kidney collecting duct epithelial cell semapv:crossSpeciesExactMatch FMA:70982 semapv:UnspecifiedMatching 1:n +CL:1000454 kidney collecting duct epithelial cell semapv:crossSpeciesExactMatch KUPO:0001059 semapv:UnspecifiedMatching 1:n +CL:1000456 mesothelial cell of parietal peritoneum semapv:crossSpeciesExactMatch FMA:72142 semapv:UnspecifiedMatching 1:1 +CL:1000457 mesothelial cell of visceral peritoneum semapv:crossSpeciesExactMatch FMA:72143 semapv:UnspecifiedMatching 1:1 +CL:1000458 melanocyte of skin semapv:crossSpeciesExactMatch FMA:72144 semapv:UnspecifiedMatching 1:1 +CL:1000465 chromaffin cell of ovary semapv:crossSpeciesExactMatch FMA:74319 semapv:UnspecifiedMatching 1:1 +CL:1000466 chromaffin cell of right ovary semapv:crossSpeciesExactMatch FMA:74320 semapv:UnspecifiedMatching 1:1 +CL:1000467 chromaffin cell of left ovary semapv:crossSpeciesExactMatch FMA:74321 semapv:UnspecifiedMatching 1:1 +CL:1000468 myoepithelial cell of acinus of lactiferous gland semapv:crossSpeciesExactMatch FMA:74469 semapv:UnspecifiedMatching 1:1 +CL:1000469 myoepithelial cell of main lactiferous duct semapv:crossSpeciesExactMatch FMA:74499 semapv:UnspecifiedMatching 1:1 +CL:1000470 myoepithelial cell of primary lactiferous duct semapv:crossSpeciesExactMatch FMA:74500 semapv:UnspecifiedMatching 1:1 +CL:1000471 myoepithelial cell of secondary lactiferous duct semapv:crossSpeciesExactMatch FMA:74501 semapv:UnspecifiedMatching 1:1 +CL:1000472 myoepithelial cell of tertiary lactiferous duct semapv:crossSpeciesExactMatch FMA:74502 semapv:UnspecifiedMatching 1:1 +CL:1000473 myoepithelial cell of quarternary lactiferous duct semapv:crossSpeciesExactMatch FMA:74503 semapv:UnspecifiedMatching 1:1 +CL:1000477 cardiac pacemaker cell of sinoatrial node semapv:crossSpeciesExactMatch FMA:83383 semapv:UnspecifiedMatching 1:1 +CL:1000478 transitional myocyte of sinoatrial node semapv:crossSpeciesExactMatch FMA:83384 semapv:UnspecifiedMatching 1:1 +CL:1000479 Purkinje myocyte of atrioventricular node semapv:crossSpeciesExactMatch FMA:83386 semapv:UnspecifiedMatching 1:1 +CL:1000480 transitional myocyte of internodal tract semapv:crossSpeciesExactMatch FMA:83387 semapv:UnspecifiedMatching 1:1 +CL:1000481 transitional myocyte of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:83388 semapv:UnspecifiedMatching 1:n +CL:1000481 transitional myocyte of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:83885 semapv:UnspecifiedMatching 1:n +CL:1000482 myocardial endocrine cell of interventricular septum semapv:crossSpeciesExactMatch FMA:83390 semapv:UnspecifiedMatching 1:1 +CL:1000483 Purkinje myocyte of internodal tract semapv:crossSpeciesExactMatch FMA:83392 semapv:UnspecifiedMatching 1:1 +CL:1000484 Purkinje myocyte of atrioventricular bundle semapv:crossSpeciesExactMatch FMA:83393 semapv:UnspecifiedMatching 1:1 +CL:1000486 basal cell of urothelium semapv:crossSpeciesExactMatch FMA:84150 semapv:UnspecifiedMatching 1:1 +CL:1000487 smooth muscle cell of prostate semapv:crossSpeciesExactMatch FMA:84583 semapv:UnspecifiedMatching 1:1 +CL:1000488 cholangiocyte semapv:crossSpeciesExactMatch FMA:86481 semapv:UnspecifiedMatching 1:1 +CL:1000489 reticular cell of splenic cord semapv:crossSpeciesExactMatch FMA:86497 semapv:UnspecifiedMatching 1:1 +CL:1000490 mesothelial cell of peritoneum semapv:crossSpeciesExactMatch FMA:86736 semapv:UnspecifiedMatching 1:1 +CL:1000491 mesothelial cell of pleura semapv:crossSpeciesExactMatch FMA:86737 semapv:UnspecifiedMatching 1:1 +CL:1000492 mesothelial cell of parietal pleura semapv:crossSpeciesExactMatch FMA:86738 semapv:UnspecifiedMatching 1:1 +CL:1000493 mesothelial cell of visceral pleura semapv:crossSpeciesExactMatch FMA:86739 semapv:UnspecifiedMatching 1:1 +CL:1000494 nephron tubule epithelial cell semapv:crossSpeciesExactMatch FMA:86785 semapv:UnspecifiedMatching 1:n +CL:1000494 nephron tubule epithelial cell semapv:crossSpeciesExactMatch KUPO:0001022 semapv:UnspecifiedMatching 1:n +CL:1000495 small intestine goblet cell semapv:crossSpeciesExactMatch FMA:86929 semapv:UnspecifiedMatching 1:1 +CL:1000497 kidney cell semapv:crossSpeciesExactMatch KUPO:0001010 semapv:UnspecifiedMatching 1:1 +CL:1000500 kidney interstitial cell semapv:crossSpeciesExactMatch KUPO:0001013 semapv:UnspecifiedMatching 1:1 +CL:1000504 kidney medulla cell semapv:crossSpeciesExactMatch KUPO:0001017 semapv:UnspecifiedMatching 1:1 +CL:1000505 kidney pelvis cell semapv:crossSpeciesExactMatch KUPO:0001018 semapv:UnspecifiedMatching 1:1 +CL:1000507 kidney tubule cell semapv:crossSpeciesExactMatch KUPO:0001020 semapv:UnspecifiedMatching 1:1 +CL:1000510 kidney glomerular epithelial cell semapv:crossSpeciesExactMatch KUPO:0001023 semapv:UnspecifiedMatching 1:1 +CL:1000546 kidney medulla collecting duct epithelial cell semapv:crossSpeciesExactMatch KUPO:0001060 semapv:UnspecifiedMatching 1:1 +CL:1000547 kidney inner medulla collecting duct epithelial cell semapv:crossSpeciesExactMatch KUPO:0001061 semapv:UnspecifiedMatching 1:1 +CL:1000548 kidney outer medulla collecting duct epithelial cell semapv:crossSpeciesExactMatch KUPO:0001062 semapv:UnspecifiedMatching 1:1 +CL:1000549 kidney cortex collecting duct epithelial cell semapv:crossSpeciesExactMatch KUPO:0001063 semapv:UnspecifiedMatching 1:1 +CL:1000550 kidney papillary duct principal epithelial cell semapv:crossSpeciesExactMatch KUPO:0001064 semapv:UnspecifiedMatching 1:1 +CL:1000596 inner renal cortex cell semapv:crossSpeciesExactMatch KUPO:0001111 semapv:UnspecifiedMatching 1:1 +CL:1000597 papillary tips cell semapv:crossSpeciesExactMatch KUPO:0001112 semapv:UnspecifiedMatching 1:1 +CL:1000600 lower urinary tract cell semapv:crossSpeciesExactMatch KUPO:0001115 semapv:UnspecifiedMatching 1:1 +CL:1000601 ureteral cell semapv:crossSpeciesExactMatch KUPO:0001116 semapv:UnspecifiedMatching 1:1 +CL:1000606 kidney nerve cell semapv:crossSpeciesExactMatch KUPO:0001015 semapv:UnspecifiedMatching 1:1 +CL:1000612 kidney corpuscule cell semapv:crossSpeciesExactMatch KUPO:0001021 semapv:UnspecifiedMatching 1:1 +CL:1000615 kidney cortex tubule cell semapv:crossSpeciesExactMatch KUPO:0001024 semapv:UnspecifiedMatching 1:1 +CL:1000616 kidney outer medulla cell semapv:crossSpeciesExactMatch KUPO:0001025 semapv:UnspecifiedMatching 1:1 +CL:1000617 kidney inner medulla cell semapv:crossSpeciesExactMatch KUPO:0001026 semapv:UnspecifiedMatching 1:1 +CL:1000618 juxtaglomerular complex cell semapv:crossSpeciesExactMatch KUPO:0001028 semapv:UnspecifiedMatching 1:1 +CL:1000681 kidney cortex interstitial cell semapv:crossSpeciesExactMatch KUPO:0001091 semapv:UnspecifiedMatching 1:1 +CL:1000682 kidney medulla interstitial cell semapv:crossSpeciesExactMatch KUPO:0001092 semapv:UnspecifiedMatching 1:1 +CL:1000691 kidney interstitial myofibroblast semapv:crossSpeciesExactMatch KUPO:0001101 semapv:UnspecifiedMatching 1:1 +CL:1000692 kidney interstitial fibroblast semapv:crossSpeciesExactMatch KUPO:0001102 semapv:UnspecifiedMatching 1:1 +CL:1000693 kidney interstitial fibrocyte semapv:crossSpeciesExactMatch KUPO:0001103 semapv:UnspecifiedMatching 1:1 +CL:1000695 kidney interstitial alternatively activated macrophage semapv:crossSpeciesExactMatch KUPO:0001106 semapv:UnspecifiedMatching 1:1 +CL:1000696 kidney interstitial inflammatory macrophage semapv:crossSpeciesExactMatch KUPO:0001107 semapv:UnspecifiedMatching 1:1 +CL:1000697 kidney interstitial suppressor macrophage semapv:crossSpeciesExactMatch KUPO:0001108 semapv:UnspecifiedMatching 1:1 +CL:1000698 kidney resident macrophage semapv:crossSpeciesExactMatch KUPO:0001109 semapv:UnspecifiedMatching 1:1 +CL:1000699 kidney resident dendritic cell semapv:crossSpeciesExactMatch KUPO:0001110 semapv:UnspecifiedMatching 1:1 +CL:1000702 kidney pelvis smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001113 semapv:UnspecifiedMatching 1:1 +CL:1000703 kidney pelvis urothelial cell semapv:crossSpeciesExactMatch KUPO:0001114 semapv:UnspecifiedMatching 1:1 +CL:1000706 ureter urothelial cell semapv:crossSpeciesExactMatch KUPO:0001117 semapv:UnspecifiedMatching 1:1 +CL:1000708 ureter adventitial cell semapv:crossSpeciesExactMatch KUPO:0001119 semapv:UnspecifiedMatching 1:1 +CL:1000714 kidney cortex collecting duct principal cell semapv:crossSpeciesExactMatch KUPO:0001130 semapv:UnspecifiedMatching 1:1 +CL:1000715 kidney cortex collecting duct intercalated cell semapv:crossSpeciesExactMatch KUPO:0001131 semapv:UnspecifiedMatching 1:1 +CL:1000716 kidney outer medulla collecting duct principal cell semapv:crossSpeciesExactMatch KUPO:0001132 semapv:UnspecifiedMatching 1:1 +CL:1000717 kidney outer medulla collecting duct intercalated cell semapv:crossSpeciesExactMatch KUPO:0001133 semapv:UnspecifiedMatching 1:1 +CL:1000718 kidney inner medulla collecting duct principal cell semapv:crossSpeciesExactMatch KUPO:0001134 semapv:UnspecifiedMatching 1:1 +CL:1000719 kidney inner medulla collecting duct intercalated cell semapv:crossSpeciesExactMatch KUPO:0001135 semapv:UnspecifiedMatching 1:1 +CL:1000720 kidney papillary duct intercalated cell semapv:crossSpeciesExactMatch KUPO:0001136 semapv:UnspecifiedMatching 1:1 +CL:1000721 kidney papillary duct principal cell semapv:crossSpeciesExactMatch KUPO:0001137 semapv:UnspecifiedMatching 1:1 +CL:1000742 glomerular mesangial cell semapv:crossSpeciesExactMatch KUPO:0001032 semapv:UnspecifiedMatching 1:1 +CL:1000746 glomerular cell semapv:crossSpeciesExactMatch KUPO:0001036 semapv:UnspecifiedMatching 1:1 +CL:1000768 kidney connecting tubule epithelial cell semapv:crossSpeciesExactMatch KUPO:0001058 semapv:UnspecifiedMatching 1:1 +CL:1000803 kidney inner medulla interstitial cell semapv:crossSpeciesExactMatch KUPO:0001093 semapv:UnspecifiedMatching 1:1 +CL:1000804 kidney outer medulla interstitial cell semapv:crossSpeciesExactMatch KUPO:0001094 semapv:UnspecifiedMatching 1:1 +CL:1000838 kidney proximal convoluted tubule epithelial cell semapv:crossSpeciesExactMatch KUPO:0001045 semapv:UnspecifiedMatching 1:1 +CL:1000839 kidney proximal straight tubule epithelial cell semapv:crossSpeciesExactMatch KUPO:0001046 semapv:UnspecifiedMatching 1:1 +CL:1000849 kidney distal convoluted tubule epithelial cell semapv:crossSpeciesExactMatch KUPO:0001056 semapv:UnspecifiedMatching 1:1 +CL:1000850 macula densa epithelial cell semapv:crossSpeciesExactMatch KUPO:0001057 semapv:UnspecifiedMatching 1:1 +CL:1000854 kidney blood vessel cell semapv:crossSpeciesExactMatch KUPO:0001014 semapv:UnspecifiedMatching 1:1 +CL:1000891 kidney arterial blood vessel cell semapv:crossSpeciesExactMatch KUPO:0001029 semapv:UnspecifiedMatching 1:1 +CL:1000892 kidney capillary endothelial cell semapv:crossSpeciesExactMatch KUPO:0001030 semapv:UnspecifiedMatching 1:1 +CL:1000893 kidney venous blood vessel cell semapv:crossSpeciesExactMatch KUPO:0001031 semapv:UnspecifiedMatching 1:1 +CL:1000909 kidney loop of Henle epithelial cell semapv:crossSpeciesExactMatch KUPO:0001047 semapv:UnspecifiedMatching 1:1 +CL:1000979 ureter smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001118 semapv:UnspecifiedMatching 1:1 +CL:1001005 glomerular capillary endothelial cell semapv:crossSpeciesExactMatch KUPO:0001037 semapv:UnspecifiedMatching 1:1 +CL:1001006 kidney afferent arteriole cell semapv:crossSpeciesExactMatch KUPO:0001038 semapv:UnspecifiedMatching 1:1 +CL:1001009 kidney efferent arteriole cell semapv:crossSpeciesExactMatch KUPO:0001041 semapv:UnspecifiedMatching 1:1 +CL:1001016 kidney loop of Henle ascending limb epithelial cell semapv:crossSpeciesExactMatch KUPO:0001048 semapv:UnspecifiedMatching 1:1 +CL:1001021 kidney loop of Henle descending limb epithelial cell semapv:crossSpeciesExactMatch KUPO:0001053 semapv:UnspecifiedMatching 1:1 +CL:1001033 peritubular capillary endothelial cell semapv:crossSpeciesExactMatch KUPO:0001065 semapv:UnspecifiedMatching 1:1 +CL:1001036 vasa recta cell semapv:crossSpeciesExactMatch KUPO:0001068 semapv:UnspecifiedMatching 1:1 +CL:1001045 kidney cortex artery cell semapv:crossSpeciesExactMatch KUPO:0001077 semapv:UnspecifiedMatching 1:1 +CL:1001052 kidney cortex vein cell semapv:crossSpeciesExactMatch KUPO:0001084 semapv:UnspecifiedMatching 1:1 +CL:1001064 kidney artery smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001096 semapv:UnspecifiedMatching 1:1 +CL:1001066 kidney arteriole smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001098 semapv:UnspecifiedMatching 1:1 +CL:1001068 kidney venous system smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001100 semapv:UnspecifiedMatching 1:1 +CL:1001096 kidney afferent arteriole endothelial cell semapv:crossSpeciesExactMatch KUPO:0001039 semapv:UnspecifiedMatching 1:1 +CL:1001097 kidney afferent arteriole smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001040 semapv:UnspecifiedMatching 1:1 +CL:1001099 kidney efferent arteriole endothelial cell semapv:crossSpeciesExactMatch KUPO:0001042 semapv:UnspecifiedMatching 1:1 +CL:1001100 kidney efferent arteriole smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001043 semapv:UnspecifiedMatching 1:1 +CL:1001106 kidney loop of Henle thick ascending limb epithelial cell semapv:crossSpeciesExactMatch KUPO:0001049 semapv:UnspecifiedMatching 1:1 +CL:1001107 kidney loop of Henle thin ascending limb epithelial cell semapv:crossSpeciesExactMatch KUPO:0001050 semapv:UnspecifiedMatching 1:1 +CL:1001108 kidney loop of Henle medullary thick ascending limb epithelial cell semapv:crossSpeciesExactMatch KUPO:0001051 semapv:UnspecifiedMatching 1:1 +CL:1001109 kidney loop of Henle cortical thick ascending limb epithelial cell semapv:crossSpeciesExactMatch KUPO:0001052 semapv:UnspecifiedMatching 1:1 +CL:1001111 kidney loop of Henle thin descending limb epithelial cell semapv:crossSpeciesExactMatch KUPO:0001054 semapv:UnspecifiedMatching 1:1 +CL:1001123 kidney outer medulla peritubular capillary cell semapv:crossSpeciesExactMatch KUPO:0001066 semapv:UnspecifiedMatching 1:1 +CL:1001124 kidney cortex peritubular capillary cell semapv:crossSpeciesExactMatch KUPO:0001067 semapv:UnspecifiedMatching 1:1 +CL:1001126 inner renal medulla vasa recta cell semapv:crossSpeciesExactMatch KUPO:0001069 semapv:UnspecifiedMatching 1:1 +CL:1001127 outer renal medulla vasa recta cell semapv:crossSpeciesExactMatch KUPO:0001070 semapv:UnspecifiedMatching 1:1 +CL:1001131 vasa recta ascending limb cell semapv:crossSpeciesExactMatch KUPO:0001074 semapv:UnspecifiedMatching 1:1 +CL:1001135 arcuate artery cell semapv:crossSpeciesExactMatch KUPO:0001078 semapv:UnspecifiedMatching 1:1 +CL:1001138 interlobular artery cell semapv:crossSpeciesExactMatch KUPO:0001081 semapv:UnspecifiedMatching 1:1 +CL:1001142 arcuate vein cell semapv:crossSpeciesExactMatch KUPO:0001085 semapv:UnspecifiedMatching 1:1 +CL:1001145 interlobular vein cell semapv:crossSpeciesExactMatch KUPO:0001088 semapv:UnspecifiedMatching 1:1 +CL:1001209 inner medulla vasa recta ascending limb cell semapv:crossSpeciesExactMatch KUPO:0001075 semapv:UnspecifiedMatching 1:1 +CL:1001210 outer medulla vasa recta ascending limb cell semapv:crossSpeciesExactMatch KUPO:0001076 semapv:UnspecifiedMatching 1:1 +CL:1001213 arcuate artery endothelial cell semapv:crossSpeciesExactMatch KUPO:0001079 semapv:UnspecifiedMatching 1:1 +CL:1001214 arcuate artery smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001080 semapv:UnspecifiedMatching 1:1 +CL:1001216 interlobulary artery endothelial cell semapv:crossSpeciesExactMatch KUPO:0001082 semapv:UnspecifiedMatching 1:1 +CL:1001217 interlobulary artery smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001083 semapv:UnspecifiedMatching 1:1 +CL:1001220 arcuate vein endothelial cell semapv:crossSpeciesExactMatch KUPO:0001086 semapv:UnspecifiedMatching 1:1 +CL:1001221 arcuate vein smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001087 semapv:UnspecifiedMatching 1:1 +CL:1001223 interlobulary vein endothelial cell semapv:crossSpeciesExactMatch KUPO:0001089 semapv:UnspecifiedMatching 1:1 +CL:1001224 interlobulary vein smooth muscle cell semapv:crossSpeciesExactMatch KUPO:0001090 semapv:UnspecifiedMatching 1:1 +CL:1001225 kidney collecting duct cell semapv:crossSpeciesExactMatch KUPO:0001012 semapv:UnspecifiedMatching 1:1 +CL:1001285 vasa recta descending limb cell semapv:crossSpeciesExactMatch KUPO:0001071 semapv:UnspecifiedMatching 1:1 +CL:1001286 inner medulla vasa recta descending limb cell semapv:crossSpeciesExactMatch KUPO:0001072 semapv:UnspecifiedMatching 1:1 +CL:1001287 outer medulla vasa recta descending limb cell semapv:crossSpeciesExactMatch KUPO:0001073 semapv:UnspecifiedMatching 1:1 +CL:1001318 renal interstitial pericyte semapv:crossSpeciesExactMatch KUPO:0001104 semapv:UnspecifiedMatching 1:1 +CL:1001319 bladder cell semapv:crossSpeciesExactMatch KUPO:0001120 semapv:UnspecifiedMatching 1:1 +CL:1001320 urethra cell semapv:crossSpeciesExactMatch KUPO:0001123 semapv:UnspecifiedMatching 1:1 +CL:1001428 bladder urothelial cell skos:narrowMatch NCIT:C32210 semapv:UnspecifiedMatching 1:n +CL:1001428 bladder urothelial cell semapv:crossSpeciesExactMatch KUPO:0001121 semapv:UnspecifiedMatching 1:n +CL:1001430 urethra urothelial cell semapv:crossSpeciesExactMatch KUPO:0001124 semapv:UnspecifiedMatching 1:1 +CL:1001431 kidney collecting duct principal cell semapv:crossSpeciesExactMatch KUPO:0001128 semapv:UnspecifiedMatching 1:1 +CL:1001432 kidney collecting duct intercalated cell semapv:crossSpeciesExactMatch KUPO:0001129 semapv:UnspecifiedMatching 1:1 +CL:1001433 epithelial cell of exocrine pancreas semapv:crossSpeciesExactMatch FMA:70986 semapv:UnspecifiedMatching 1:1 +CL:1001569 hippocampal interneuron semapv:crossSpeciesExactMatch FMA:84777 semapv:UnspecifiedMatching 1:1 +CL:1001598 small intestine glandular cell semapv:crossSpeciesExactMatch FMA:86928 semapv:UnspecifiedMatching 1:1 +CL:1001611 cerebellar neuron semapv:crossSpeciesExactMatch FMA:84665 semapv:UnspecifiedMatching 1:1 +CL:2000002 decidual cell skos:narrowMatch NCIT:C32429 semapv:UnspecifiedMatching 1:1 +CL:2000032 peripheral nervous system neuron semapv:crossSpeciesExactMatch FMA:84664 semapv:UnspecifiedMatching 1:1 +CL:2000048 anterior horn motor neuron skos:narrowMatch NCIT:C12645 semapv:UnspecifiedMatching 1:1 +CL:4030055 intermediate cell of urothelium semapv:crossSpeciesExactMatch FMA:84155 semapv:UnspecifiedMatching 1:1 +CL:4030056 umbrella cell of urothelium semapv:crossSpeciesExactMatch FMA:84149 semapv:UnspecifiedMatching 1:1 diff --git a/src/ontology/mappings/zfa-mappings.sssom.tsv b/src/ontology/mappings/zfa-mappings.sssom.tsv new file mode 100644 index 0000000000..62bb303641 --- /dev/null +++ b/src/ontology/mappings/zfa-mappings.sssom.tsv @@ -0,0 +1,3089 @@ +#curie_map: +# CARO: "http://purl.obolibrary.org/obo/CARO_" +# CL: "http://purl.obolibrary.org/obo/CL_" +# TAO: "http://purl.obolibrary.org/obo/TAO_" +# VSAO: "http://purl.obolibrary.org/obo/VSAO_" +# ZFA: "http://purl.obolibrary.org/obo/ZFA_" +subject_id subject_label predicate_id object_id mapping_justification mapping_cardinality +ZFA:0000000 Brachet's cleft semapv:crossSpeciesExactMatch TAO:0000000 semapv:UnspecifiedMatching 1:1 +ZFA:0000001 Kupffer's vesicle semapv:crossSpeciesExactMatch TAO:0000001 semapv:UnspecifiedMatching 1:1 +ZFA:0000003 adaxial cell semapv:crossSpeciesExactMatch CL:0007016 semapv:UnspecifiedMatching 1:n +ZFA:0000003 adaxial cell semapv:crossSpeciesExactMatch TAO:0000003 semapv:UnspecifiedMatching 1:n +ZFA:0000004 anterior axial hypoblast semapv:crossSpeciesExactMatch TAO:0000004 semapv:UnspecifiedMatching 1:1 +ZFA:0000005 artery semapv:crossSpeciesExactMatch TAO:0000005 semapv:UnspecifiedMatching 1:1 +ZFA:0000006 ball semapv:crossSpeciesExactMatch TAO:0000006 semapv:UnspecifiedMatching 1:1 +ZFA:0000007 blood semapv:crossSpeciesExactMatch TAO:0000007 semapv:UnspecifiedMatching 1:1 +ZFA:0000008 brain semapv:crossSpeciesExactMatch TAO:0000008 semapv:UnspecifiedMatching 1:1 +ZFA:0000009 cardiac ventricle semapv:crossSpeciesExactMatch TAO:0000009 semapv:UnspecifiedMatching 1:1 +ZFA:0000010 cardiovascular system semapv:crossSpeciesExactMatch TAO:0000010 semapv:UnspecifiedMatching 1:1 +ZFA:0000011 caudal artery semapv:crossSpeciesExactMatch TAO:0000011 semapv:UnspecifiedMatching 1:1 +ZFA:0000012 central nervous system semapv:crossSpeciesExactMatch TAO:0000012 semapv:UnspecifiedMatching 1:1 +ZFA:0000013 cranial ganglion semapv:crossSpeciesExactMatch TAO:0000013 semapv:UnspecifiedMatching 1:1 +ZFA:0000014 dorsal aorta semapv:crossSpeciesExactMatch TAO:0000014 semapv:UnspecifiedMatching 1:1 +ZFA:0000016 ectoderm semapv:crossSpeciesExactMatch TAO:0000016 semapv:UnspecifiedMatching 1:1 +ZFA:0000017 endoderm semapv:crossSpeciesExactMatch TAO:0000017 semapv:UnspecifiedMatching 1:1 +ZFA:0000018 epiblast semapv:crossSpeciesExactMatch TAO:0000018 semapv:UnspecifiedMatching 1:1 +ZFA:0000019 epiphysis semapv:crossSpeciesExactMatch TAO:0000019 semapv:UnspecifiedMatching 1:1 +ZFA:0000020 extraembryonic structure semapv:crossSpeciesExactMatch CARO:0000042 semapv:UnspecifiedMatching 1:n +ZFA:0000020 extraembryonic structure semapv:crossSpeciesExactMatch TAO:0000020 semapv:UnspecifiedMatching 1:n +ZFA:0000022 floor plate semapv:crossSpeciesExactMatch TAO:0000022 semapv:UnspecifiedMatching 1:1 +ZFA:0000023 forerunner cell group semapv:crossSpeciesExactMatch TAO:0000023 semapv:UnspecifiedMatching 1:1 +ZFA:0000024 retinal ganglion cell layer semapv:crossSpeciesExactMatch TAO:0000024 semapv:UnspecifiedMatching 1:1 +ZFA:0000026 hatching gland semapv:crossSpeciesExactMatch TAO:0000026 semapv:UnspecifiedMatching 1:1 +ZFA:0000027 paired fin skeleton semapv:crossSpeciesExactMatch TAO:0000027 semapv:UnspecifiedMatching 1:1 +ZFA:0000028 heart primordium semapv:crossSpeciesExactMatch TAO:0000028 semapv:UnspecifiedMatching 1:1 +ZFA:0000029 hindbrain semapv:crossSpeciesExactMatch TAO:0000029 semapv:UnspecifiedMatching 1:1 +ZFA:0000030 macula utricle semapv:crossSpeciesExactMatch TAO:0000030 semapv:UnspecifiedMatching 1:1 +ZFA:0000031 hypochord semapv:crossSpeciesExactMatch TAO:0000031 semapv:UnspecifiedMatching 1:1 +ZFA:0000032 hypothalamus semapv:crossSpeciesExactMatch TAO:0000032 semapv:UnspecifiedMatching 1:1 +ZFA:0000033 intermediate cell mass of mesoderm semapv:crossSpeciesExactMatch TAO:0000033 semapv:UnspecifiedMatching 1:1 +ZFA:0000034 lateral line system semapv:crossSpeciesExactMatch TAO:0000034 semapv:UnspecifiedMatching 1:1 +ZFA:0000035 lens semapv:crossSpeciesExactMatch TAO:0000035 semapv:UnspecifiedMatching 1:1 +ZFA:0000036 liver and biliary system semapv:crossSpeciesExactMatch TAO:0000036 semapv:UnspecifiedMatching 1:1 +ZFA:0000037 anatomical structure semapv:crossSpeciesExactMatch CARO:0000003 semapv:UnspecifiedMatching 1:n +ZFA:0000037 anatomical structure semapv:crossSpeciesExactMatch TAO:0000037 semapv:UnspecifiedMatching 1:n +ZFA:0000038 margin semapv:crossSpeciesExactMatch TAO:0000038 semapv:UnspecifiedMatching 1:1 +ZFA:0000039 median axial vein semapv:crossSpeciesExactMatch TAO:0000039 semapv:UnspecifiedMatching 1:1 +ZFA:0000040 median fin fold semapv:crossSpeciesExactMatch TAO:0000040 semapv:UnspecifiedMatching 1:1 +ZFA:0000041 mesoderm semapv:crossSpeciesExactMatch TAO:0000041 semapv:UnspecifiedMatching 1:1 +ZFA:0000042 midbrain hindbrain boundary semapv:crossSpeciesExactMatch TAO:0000042 semapv:UnspecifiedMatching 1:1 +ZFA:0000043 muscle pioneer somite 1 semapv:crossSpeciesExactMatch TAO:0000043 semapv:UnspecifiedMatching 1:1 +ZFA:0000044 myotome somite 14 semapv:crossSpeciesExactMatch TAO:0000044 semapv:UnspecifiedMatching 1:1 +ZFA:0000045 neural crest semapv:crossSpeciesExactMatch TAO:0000045 semapv:UnspecifiedMatching 1:1 +ZFA:0000046 retinal neural layer semapv:crossSpeciesExactMatch TAO:0000046 semapv:UnspecifiedMatching 1:1 +ZFA:0000047 peripheral olfactory organ semapv:crossSpeciesExactMatch TAO:0000047 semapv:UnspecifiedMatching 1:1 +ZFA:0000048 olfactory placode semapv:crossSpeciesExactMatch TAO:0000048 semapv:UnspecifiedMatching 1:1 +ZFA:0000049 optic recess semapv:crossSpeciesExactMatch TAO:0000049 semapv:UnspecifiedMatching 1:1 +ZFA:0000050 optic vesicle semapv:crossSpeciesExactMatch TAO:0000050 semapv:UnspecifiedMatching 1:1 +ZFA:0000051 otic vesicle semapv:crossSpeciesExactMatch TAO:0000051 semapv:UnspecifiedMatching 1:1 +ZFA:0000052 dorsal actinotrichium semapv:crossSpeciesExactMatch TAO:0000052 semapv:UnspecifiedMatching 1:1 +ZFA:0000053 presumptive segmental plate semapv:crossSpeciesExactMatch TAO:0000053 semapv:UnspecifiedMatching 1:1 +ZFA:0000054 pericardium semapv:crossSpeciesExactMatch TAO:0000054 semapv:UnspecifiedMatching 1:1 +ZFA:0000056 pharynx semapv:crossSpeciesExactMatch TAO:0000056 semapv:UnspecifiedMatching 1:1 +ZFA:0000058 polster semapv:crossSpeciesExactMatch TAO:0000058 semapv:UnspecifiedMatching 1:1 +ZFA:0000059 postoptic commissure semapv:crossSpeciesExactMatch TAO:0000059 semapv:UnspecifiedMatching 1:1 +ZFA:0000060 prechordal plate semapv:crossSpeciesExactMatch TAO:0000060 semapv:UnspecifiedMatching 1:1 +ZFA:0000062 presumptive forebrain semapv:crossSpeciesExactMatch TAO:0000062 semapv:UnspecifiedMatching 1:1 +ZFA:0000063 presumptive neural plate semapv:crossSpeciesExactMatch TAO:0000063 semapv:UnspecifiedMatching 1:1 +ZFA:0000064 presumptive retinal pigmented epithelium semapv:crossSpeciesExactMatch TAO:0000064 semapv:UnspecifiedMatching 1:1 +ZFA:0000066 proctodeum semapv:crossSpeciesExactMatch TAO:0000066 semapv:UnspecifiedMatching 1:1 +ZFA:0000067 pronephric mesoderm semapv:crossSpeciesExactMatch TAO:0000067 semapv:UnspecifiedMatching 1:1 +ZFA:0000068 proneural cluster semapv:crossSpeciesExactMatch TAO:0000068 semapv:UnspecifiedMatching 1:1 +ZFA:0000069 rhombomere 6 semapv:crossSpeciesExactMatch TAO:0000069 semapv:UnspecifiedMatching 1:1 +ZFA:0000071 shield semapv:crossSpeciesExactMatch TAO:0000071 semapv:UnspecifiedMatching 1:1 +ZFA:0000072 somite 1 semapv:crossSpeciesExactMatch TAO:0000072 semapv:UnspecifiedMatching 1:1 +ZFA:0000073 somite 5 semapv:crossSpeciesExactMatch TAO:0000073 semapv:UnspecifiedMatching 1:1 +ZFA:0000074 somite 26 semapv:crossSpeciesExactMatch TAO:0000074 semapv:UnspecifiedMatching 1:1 +ZFA:0000075 spinal cord semapv:crossSpeciesExactMatch TAO:0000075 semapv:UnspecifiedMatching 1:1 +ZFA:0000076 swim bladder semapv:crossSpeciesExactMatch TAO:0000076 semapv:UnspecifiedMatching 1:1 +ZFA:0000077 tail bud semapv:crossSpeciesExactMatch TAO:0000077 semapv:UnspecifiedMatching 1:1 +ZFA:0000078 ventral actinotrichium semapv:crossSpeciesExactMatch TAO:0000078 semapv:UnspecifiedMatching 1:1 +ZFA:0000079 telencephalon semapv:crossSpeciesExactMatch TAO:0000079 semapv:UnspecifiedMatching 1:1 +ZFA:0000080 trigeminal neural crest semapv:crossSpeciesExactMatch TAO:0000080 semapv:UnspecifiedMatching 1:1 +ZFA:0000081 trunk mesenchyme semapv:crossSpeciesExactMatch TAO:0000081 semapv:UnspecifiedMatching 1:1 +ZFA:0000082 vein semapv:crossSpeciesExactMatch TAO:0000082 semapv:UnspecifiedMatching 1:1 +ZFA:0000083 ventral mesoderm semapv:crossSpeciesExactMatch TAO:0000083 semapv:UnspecifiedMatching 1:1 +ZFA:0000084 yolk semapv:crossSpeciesExactMatch CL:0000428 semapv:UnspecifiedMatching 1:n +ZFA:0000084 yolk semapv:crossSpeciesExactMatch TAO:0000084 semapv:UnspecifiedMatching 1:n +ZFA:0000085 apical ectodermal ridge pectoral fin bud semapv:crossSpeciesExactMatch TAO:0000085 semapv:UnspecifiedMatching 1:n +ZFA:0000085 apical ectodermal ridge pectoral fin bud semapv:crossSpeciesExactMatch TAO:0000736 semapv:UnspecifiedMatching 1:n +ZFA:0000086 EVL semapv:crossSpeciesExactMatch TAO:0000086 semapv:UnspecifiedMatching 1:1 +ZFA:0000088 yolk syncytial layer semapv:crossSpeciesExactMatch TAO:0000088 semapv:UnspecifiedMatching 1:1 +ZFA:0000090 apical ectodermal ridge dorsal fin semapv:crossSpeciesExactMatch TAO:0000090 semapv:UnspecifiedMatching 1:1 +ZFA:0000091 axial chorda mesoderm semapv:crossSpeciesExactMatch TAO:0000091 semapv:UnspecifiedMatching 1:n +ZFA:0000091 axial chorda mesoderm semapv:crossSpeciesExactMatch TAO:0001219 semapv:UnspecifiedMatching 1:n +ZFA:0000092 axis semapv:crossSpeciesExactMatch TAO:0000092 semapv:UnspecifiedMatching 1:1 +ZFA:0000093 blastomere semapv:crossSpeciesExactMatch TAO:0000093 semapv:UnspecifiedMatching 1:1 +ZFA:0000094 blood island semapv:crossSpeciesExactMatch TAO:0000094 semapv:UnspecifiedMatching 1:1 +ZFA:0000095 pharyngeal arch 3-7 skeleton semapv:crossSpeciesExactMatch TAO:0000095 semapv:UnspecifiedMatching 1:1 +ZFA:0000096 cardinal system semapv:crossSpeciesExactMatch TAO:0000096 semapv:UnspecifiedMatching 1:1 +ZFA:0000097 carotid artery semapv:crossSpeciesExactMatch TAO:0000097 semapv:UnspecifiedMatching 1:1 +ZFA:0000098 proliferative region semapv:crossSpeciesExactMatch TAO:0000098 semapv:UnspecifiedMatching 1:1 +ZFA:0000099 brain vasculature semapv:crossSpeciesExactMatch TAO:0000099 semapv:UnspecifiedMatching 1:1 +ZFA:0000100 cerebellum semapv:crossSpeciesExactMatch TAO:0000100 semapv:UnspecifiedMatching 1:1 +ZFA:0000101 diencephalon semapv:crossSpeciesExactMatch TAO:0000101 semapv:UnspecifiedMatching 1:1 +ZFA:0000102 dorsal fin fold semapv:crossSpeciesExactMatch TAO:0000102 semapv:UnspecifiedMatching 1:1 +ZFA:0000105 epidermis semapv:crossSpeciesExactMatch TAO:0000105 semapv:UnspecifiedMatching 1:1 +ZFA:0000106 extension semapv:crossSpeciesExactMatch TAO:0000106 semapv:UnspecifiedMatching 1:1 +ZFA:0000107 eye semapv:crossSpeciesExactMatch TAO:0000107 semapv:UnspecifiedMatching 1:1 +ZFA:0000108 fin semapv:crossSpeciesExactMatch TAO:0000108 semapv:UnspecifiedMatching 1:1 +ZFA:0000109 forebrain semapv:crossSpeciesExactMatch TAO:0000109 semapv:UnspecifiedMatching 1:1 +ZFA:0000110 fourth ventricle semapv:crossSpeciesExactMatch TAO:0000110 semapv:UnspecifiedMatching 1:1 +ZFA:0000111 germ ring semapv:crossSpeciesExactMatch TAO:0000111 semapv:UnspecifiedMatching 1:1 +ZFA:0000112 gut semapv:crossSpeciesExactMatch TAO:0000112 semapv:UnspecifiedMatching 1:1 +ZFA:0000113 head mesenchyme semapv:crossSpeciesExactMatch TAO:0000113 semapv:UnspecifiedMatching 1:1 +ZFA:0000114 heart semapv:crossSpeciesExactMatch TAO:0000114 semapv:UnspecifiedMatching 1:1 +ZFA:0000115 heart rudiment semapv:crossSpeciesExactMatch TAO:0000115 semapv:UnspecifiedMatching 1:1 +ZFA:0000116 macula lagena semapv:crossSpeciesExactMatch TAO:0000116 semapv:UnspecifiedMatching 1:1 +ZFA:0000117 hypoblast semapv:crossSpeciesExactMatch TAO:0000117 semapv:UnspecifiedMatching 1:1 +ZFA:0000118 hypophysis semapv:crossSpeciesExactMatch TAO:0000118 semapv:UnspecifiedMatching 1:1 +ZFA:0000119 retinal inner nuclear layer semapv:crossSpeciesExactMatch TAO:0000119 semapv:UnspecifiedMatching 1:1 +ZFA:0000120 lateral line ganglion semapv:crossSpeciesExactMatch TAO:0000120 semapv:UnspecifiedMatching 1:1 +ZFA:0000121 lateral plate mesoderm semapv:crossSpeciesExactMatch TAO:0000121 semapv:UnspecifiedMatching 1:1 +ZFA:0000122 lens placode semapv:crossSpeciesExactMatch TAO:0000122 semapv:UnspecifiedMatching 1:1 +ZFA:0000123 liver semapv:crossSpeciesExactMatch TAO:0000123 semapv:UnspecifiedMatching 1:1 +ZFA:0000124 liver primordium semapv:crossSpeciesExactMatch TAO:0000124 semapv:UnspecifiedMatching 1:1 +ZFA:0000125 mandibular lateral line neuromast semapv:crossSpeciesExactMatch TAO:0000125 semapv:UnspecifiedMatching 1:1 +ZFA:0000126 centrum semapv:crossSpeciesExactMatch TAO:0000126 semapv:UnspecifiedMatching 1:1 +ZFA:0000128 midbrain semapv:crossSpeciesExactMatch TAO:0000128 semapv:UnspecifiedMatching 1:1 +ZFA:0000130 olfactory pit semapv:crossSpeciesExactMatch TAO:0000130 semapv:UnspecifiedMatching 1:1 +ZFA:0000131 neural keel semapv:crossSpeciesExactMatch TAO:0000131 semapv:UnspecifiedMatching 1:1 +ZFA:0000132 neural plate semapv:crossSpeciesExactMatch TAO:0000132 semapv:UnspecifiedMatching 1:1 +ZFA:0000133 neural rod semapv:crossSpeciesExactMatch TAO:0000133 semapv:UnspecifiedMatching 1:1 +ZFA:0000135 notochord semapv:crossSpeciesExactMatch TAO:0000135 semapv:UnspecifiedMatching 1:1 +ZFA:0000136 otic lateral line neuromast semapv:crossSpeciesExactMatch TAO:0000136 semapv:UnspecifiedMatching 1:1 +ZFA:0000137 optic stalk semapv:crossSpeciesExactMatch TAO:0000137 semapv:UnspecifiedMatching 1:1 +ZFA:0000138 otic placode semapv:crossSpeciesExactMatch TAO:0000138 semapv:UnspecifiedMatching 1:1 +ZFA:0000140 pancreas semapv:crossSpeciesExactMatch TAO:0000140 semapv:UnspecifiedMatching 1:1 +ZFA:0000141 pectoral fin bud semapv:crossSpeciesExactMatch TAO:0000141 semapv:UnspecifiedMatching 1:1 +ZFA:0000142 peripheral nervous system semapv:crossSpeciesExactMatch TAO:0000142 semapv:UnspecifiedMatching 1:1 +ZFA:0000143 retinal photoreceptor layer semapv:crossSpeciesExactMatch TAO:0000143 semapv:UnspecifiedMatching 1:1 +ZFA:0000144 retinal pigmented epithelium semapv:crossSpeciesExactMatch TAO:0000144 semapv:UnspecifiedMatching 1:1 +ZFA:0000146 presumptive brain semapv:crossSpeciesExactMatch TAO:0000146 semapv:UnspecifiedMatching 1:1 +ZFA:0000148 presumptive midbrain semapv:crossSpeciesExactMatch TAO:0000148 semapv:UnspecifiedMatching 1:1 +ZFA:0000149 primitive heart tube semapv:crossSpeciesExactMatch TAO:0000149 semapv:UnspecifiedMatching 1:1 +ZFA:0000150 pronephric duct semapv:crossSpeciesExactMatch TAO:0000150 semapv:UnspecifiedMatching 1:1 +ZFA:0000151 pronephros semapv:crossSpeciesExactMatch TAO:0000151 semapv:UnspecifiedMatching 1:1 +ZFA:0000152 retina semapv:crossSpeciesExactMatch TAO:0000152 semapv:UnspecifiedMatching 1:1 +ZFA:0000153 rhombomere 8 semapv:crossSpeciesExactMatch TAO:0000153 semapv:UnspecifiedMatching 1:1 +ZFA:0000154 sinus venosus semapv:crossSpeciesExactMatch TAO:0000154 semapv:UnspecifiedMatching 1:1 +ZFA:0000155 somite semapv:crossSpeciesExactMatch TAO:0000155 semapv:UnspecifiedMatching 1:1 +ZFA:0000156 somite 20 semapv:crossSpeciesExactMatch TAO:0000156 semapv:UnspecifiedMatching 1:1 +ZFA:0000157 somite 30 semapv:crossSpeciesExactMatch TAO:0000157 semapv:UnspecifiedMatching 1:1 +ZFA:0000158 urostyle semapv:crossSpeciesExactMatch TAO:0000158 semapv:UnspecifiedMatching 1:1 +ZFA:0000159 tectal ventricle semapv:crossSpeciesExactMatch TAO:0000159 semapv:UnspecifiedMatching 1:1 +ZFA:0000160 tegmentum semapv:crossSpeciesExactMatch TAO:0000160 semapv:UnspecifiedMatching 1:1 +ZFA:0000161 third ventricle semapv:crossSpeciesExactMatch TAO:0000161 semapv:UnspecifiedMatching 1:1 +ZFA:0000162 trigeminal placode semapv:crossSpeciesExactMatch TAO:0000162 semapv:UnspecifiedMatching 1:1 +ZFA:0000163 renal system semapv:crossSpeciesExactMatch TAO:0000163 semapv:UnspecifiedMatching 1:1 +ZFA:0000164 ventral mesenchyme semapv:crossSpeciesExactMatch TAO:0000164 semapv:UnspecifiedMatching 1:1 +ZFA:0000165 inferior lobe semapv:crossSpeciesExactMatch TAO:0000165 semapv:UnspecifiedMatching 1:1 +ZFA:0000166 lateral crista semapv:crossSpeciesExactMatch TAO:0000166 semapv:UnspecifiedMatching 1:1 +ZFA:0000167 anal fin skeleton semapv:crossSpeciesExactMatch TAO:0000167 semapv:UnspecifiedMatching 1:1 +ZFA:0000168 anterior macula semapv:crossSpeciesExactMatch TAO:0000168 semapv:UnspecifiedMatching 1:1 +ZFA:0000170 basibranchial semapv:crossSpeciesExactMatch TAO:0000170 semapv:UnspecifiedMatching 1:1 +ZFA:0000172 branchial muscle semapv:crossSpeciesExactMatch TAO:0000172 semapv:UnspecifiedMatching 1:1 +ZFA:0000173 bulbus arteriosus semapv:crossSpeciesExactMatch TAO:0000173 semapv:UnspecifiedMatching 1:1 +ZFA:0000174 cerebellovestibular tract semapv:crossSpeciesExactMatch TAO:0000174 semapv:UnspecifiedMatching 1:1 +ZFA:0000175 posterior lateral line nerve semapv:crossSpeciesExactMatch TAO:0000175 semapv:UnspecifiedMatching 1:1 +ZFA:0000176 lateral nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0002204 semapv:UnspecifiedMatching 1:1 +ZFA:0000177 caudal oblique semapv:crossSpeciesExactMatch TAO:0000177 semapv:UnspecifiedMatching 1:1 +ZFA:0000178 caudal peduncle semapv:crossSpeciesExactMatch TAO:0000178 semapv:UnspecifiedMatching 1:1 +ZFA:0000179 caudal root of abducens nerve semapv:crossSpeciesExactMatch TAO:0000179 semapv:UnspecifiedMatching 1:1 +ZFA:0000180 caudal vein semapv:crossSpeciesExactMatch TAO:0000180 semapv:UnspecifiedMatching 1:1 +ZFA:0000181 caudal zone of dorsal telencephalon semapv:crossSpeciesExactMatch TAO:0000181 semapv:UnspecifiedMatching 1:1 +ZFA:0000182 central caudal thalamic nucleus semapv:crossSpeciesExactMatch TAO:0000182 semapv:UnspecifiedMatching 1:1 +ZFA:0000183 central pretectum semapv:crossSpeciesExactMatch TAO:0000183 semapv:UnspecifiedMatching 1:1 +ZFA:0000184 cleithrum semapv:crossSpeciesExactMatch TAO:0000184 semapv:UnspecifiedMatching 1:1 +ZFA:0000185 commissura rostral, pars ventralis semapv:crossSpeciesExactMatch TAO:0000185 semapv:UnspecifiedMatching 1:1 +ZFA:0000186 common cardinal vein semapv:crossSpeciesExactMatch TAO:0000186 semapv:UnspecifiedMatching 1:1 +ZFA:0000188 corpus cerebelli semapv:crossSpeciesExactMatch TAO:0000188 semapv:UnspecifiedMatching 1:1 +ZFA:0000189 otic region semapv:crossSpeciesExactMatch TAO:0000189 semapv:UnspecifiedMatching 1:1 +ZFA:0000190 ganglion semapv:crossSpeciesExactMatch TAO:0000190 semapv:UnspecifiedMatching 1:1 +ZFA:0000191 dentary semapv:crossSpeciesExactMatch TAO:0000191 semapv:UnspecifiedMatching 1:1 +ZFA:0000192 descending trigeminal root semapv:crossSpeciesExactMatch TAO:0000192 semapv:UnspecifiedMatching 1:1 +ZFA:0000193 diffuse nucleus inferior lobe semapv:crossSpeciesExactMatch TAO:0000193 semapv:UnspecifiedMatching 1:1 +ZFA:0000194 dorsal accessory optic nucleus semapv:crossSpeciesExactMatch TAO:0000194 semapv:UnspecifiedMatching 1:1 +ZFA:0000195 dorsal depressor semapv:crossSpeciesExactMatch TAO:0000195 semapv:UnspecifiedMatching 1:1 +ZFA:0000196 dorsal hypohyal bone semapv:crossSpeciesExactMatch TAO:0000196 semapv:UnspecifiedMatching 1:1 +ZFA:0000197 dorsal habenular nucleus semapv:crossSpeciesExactMatch TAO:0000197 semapv:UnspecifiedMatching 1:1 +ZFA:0000199 dorsal periventricular hypothalamus semapv:crossSpeciesExactMatch TAO:0000199 semapv:UnspecifiedMatching 1:1 +ZFA:0000200 dorsal root ganglion semapv:crossSpeciesExactMatch TAO:0000200 semapv:UnspecifiedMatching 1:1 +ZFA:0000201 dorsal transverse semapv:crossSpeciesExactMatch TAO:0000201 semapv:UnspecifiedMatching 1:1 +ZFA:0000202 efferent branchial artery semapv:crossSpeciesExactMatch TAO:0000202 semapv:UnspecifiedMatching 1:1 +ZFA:0000204 esophagus semapv:crossSpeciesExactMatch TAO:0000204 semapv:UnspecifiedMatching 1:1 +ZFA:0000205 external lateral ventral muscle semapv:crossSpeciesExactMatch TAO:0000205 semapv:UnspecifiedMatching 1:1 +ZFA:0000206 facial nerve motor nucleus semapv:crossSpeciesExactMatch TAO:0000206 semapv:UnspecifiedMatching 1:1 +ZFA:0000207 fin musculature semapv:crossSpeciesExactMatch TAO:0000207 semapv:UnspecifiedMatching 1:1 +ZFA:0000208 gall bladder semapv:crossSpeciesExactMatch TAO:0000208 semapv:UnspecifiedMatching 1:1 +ZFA:0000209 lateral preglomerular nucleus semapv:crossSpeciesExactMatch TAO:0000209 semapv:UnspecifiedMatching 1:1 +ZFA:0000210 gigantocellular part of magnocellular preoptic nucleus semapv:crossSpeciesExactMatch TAO:0000210 semapv:UnspecifiedMatching 1:1 +ZFA:0000211 gill lamella semapv:crossSpeciesExactMatch TAO:0000211 semapv:UnspecifiedMatching 1:1 +ZFA:0000212 granular eminence semapv:crossSpeciesExactMatch TAO:0000212 semapv:UnspecifiedMatching 1:1 +ZFA:0000213 habenula semapv:crossSpeciesExactMatch TAO:0000213 semapv:UnspecifiedMatching 1:1 +ZFA:0000215 inferior olive semapv:crossSpeciesExactMatch TAO:0000215 semapv:UnspecifiedMatching 1:1 +ZFA:0000216 infracarinalis semapv:crossSpeciesExactMatch TAO:0000216 semapv:UnspecifiedMatching 1:1 +ZFA:0000217 inner ear semapv:crossSpeciesExactMatch TAO:0000217 semapv:UnspecifiedMatching 1:1 +ZFA:0000219 intermediate reticular formation semapv:crossSpeciesExactMatch TAO:0000219 semapv:UnspecifiedMatching 1:1 +ZFA:0000220 lateral semicircular canal semapv:crossSpeciesExactMatch TAO:0000220 semapv:UnspecifiedMatching 1:1 +ZFA:0000221 internal levator semapv:crossSpeciesExactMatch TAO:0000221 semapv:UnspecifiedMatching 1:1 +ZFA:0000222 isthmic primary nucleus semapv:crossSpeciesExactMatch TAO:0000222 semapv:UnspecifiedMatching 1:1 +ZFA:0000223 infraorbital 1 semapv:crossSpeciesExactMatch TAO:0000223 semapv:UnspecifiedMatching 1:1 +ZFA:0000225 lateral crista primordium semapv:crossSpeciesExactMatch TAO:0000225 semapv:UnspecifiedMatching 1:1 +ZFA:0000226 lateral ethmoid semapv:crossSpeciesExactMatch TAO:0000226 semapv:UnspecifiedMatching 1:1 +ZFA:0000227 lateral hypothalamic nucleus semapv:crossSpeciesExactMatch TAO:0000227 semapv:UnspecifiedMatching 1:1 +ZFA:0000228 lateral line primordium semapv:crossSpeciesExactMatch TAO:0000228 semapv:UnspecifiedMatching 1:1 +ZFA:0000229 lateral olfactory tract semapv:crossSpeciesExactMatch TAO:0000229 semapv:UnspecifiedMatching 1:1 +ZFA:0000230 longitudinal hypochordal semapv:crossSpeciesExactMatch TAO:0000230 semapv:UnspecifiedMatching 1:1 +ZFA:0000231 lateral recess semapv:crossSpeciesExactMatch TAO:0000231 semapv:UnspecifiedMatching 1:n +ZFA:0000231 lateral recess semapv:crossSpeciesExactMatch TAO:0001799 semapv:UnspecifiedMatching 1:n +ZFA:0000232 otic vesicle lateral protrusion semapv:crossSpeciesExactMatch TAO:0000232 semapv:UnspecifiedMatching 1:1 +ZFA:0000233 lower oral valve semapv:crossSpeciesExactMatch TAO:0000233 semapv:UnspecifiedMatching 1:1 +ZFA:0000234 macula neglecta semapv:crossSpeciesExactMatch TAO:0000234 semapv:UnspecifiedMatching 1:1 +ZFA:0000235 magnocellular superficial pretectal nucleus semapv:crossSpeciesExactMatch TAO:0000235 semapv:UnspecifiedMatching 1:1 +ZFA:0000236 mandibular muscle semapv:crossSpeciesExactMatch TAO:0000236 semapv:UnspecifiedMatching 1:1 +ZFA:0000237 medial forebrain bundle diencephalon semapv:crossSpeciesExactMatch TAO:0000237 semapv:UnspecifiedMatching 1:1 +ZFA:0000238 medial olfactory tract semapv:crossSpeciesExactMatch TAO:0000238 semapv:UnspecifiedMatching 1:1 +ZFA:0000239 mesocoracoid bone semapv:crossSpeciesExactMatch TAO:0000239 semapv:UnspecifiedMatching 1:1 +ZFA:0000240 metapterygoid semapv:crossSpeciesExactMatch TAO:0000240 semapv:UnspecifiedMatching 1:1 +ZFA:0000241 midline column semapv:crossSpeciesExactMatch TAO:0000241 semapv:UnspecifiedMatching 1:1 +ZFA:0000242 male organism semapv:crossSpeciesExactMatch CARO:0000027 semapv:UnspecifiedMatching 1:n +ZFA:0000242 male organism semapv:crossSpeciesExactMatch TAO:0000242 semapv:UnspecifiedMatching 1:n +ZFA:0000243 neuromast semapv:crossSpeciesExactMatch TAO:0000243 semapv:UnspecifiedMatching 1:1 +ZFA:0000244 nucleus Edinger-Westphal semapv:crossSpeciesExactMatch TAO:0000244 semapv:UnspecifiedMatching 1:1 +ZFA:0000245 nucleus of the descending root semapv:crossSpeciesExactMatch TAO:0000245 semapv:UnspecifiedMatching 1:1 +ZFA:0000246 nucleus taeniae semapv:crossSpeciesExactMatch TAO:0000246 semapv:UnspecifiedMatching 1:1 +ZFA:0000247 cranial nerve VIII semapv:crossSpeciesExactMatch TAO:0000247 semapv:UnspecifiedMatching 1:1 +ZFA:0000248 magnocellular preoptic nucleus semapv:crossSpeciesExactMatch TAO:0000248 semapv:UnspecifiedMatching 1:1 +ZFA:0000249 cranial nerve I semapv:crossSpeciesExactMatch TAO:0000249 semapv:UnspecifiedMatching 1:1 +ZFA:0000250 opercle semapv:crossSpeciesExactMatch TAO:0000250 semapv:UnspecifiedMatching 1:1 +ZFA:0000252 optic tract semapv:crossSpeciesExactMatch TAO:0000252 semapv:UnspecifiedMatching 1:1 +ZFA:0000253 orbitosphenoid semapv:crossSpeciesExactMatch TAO:0000253 semapv:UnspecifiedMatching 1:1 +ZFA:0000254 pancreas primordium semapv:crossSpeciesExactMatch TAO:0000254 semapv:UnspecifiedMatching 1:1 +ZFA:0000255 paraxial mesoderm semapv:crossSpeciesExactMatch TAO:0000255 semapv:UnspecifiedMatching 1:1 +ZFA:0000256 pars subcommissuralis of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0000256 semapv:UnspecifiedMatching 1:1 +ZFA:0000257 pectoral fin cartilage semapv:crossSpeciesExactMatch TAO:0000257 semapv:UnspecifiedMatching 1:1 +ZFA:0000258 pelvic fin musculature semapv:crossSpeciesExactMatch TAO:0000258 semapv:UnspecifiedMatching 1:1 +ZFA:0000259 mandibular lateral line semapv:crossSpeciesExactMatch TAO:0000259 semapv:UnspecifiedMatching 1:1 +ZFA:0000260 periventricular nucleus semapv:crossSpeciesExactMatch TAO:0000260 semapv:UnspecifiedMatching 1:1 +ZFA:0000261 pharyngohyoid semapv:crossSpeciesExactMatch TAO:0000261 semapv:UnspecifiedMatching 1:1 +ZFA:0000262 posterior semicircular canal semapv:crossSpeciesExactMatch TAO:0000262 semapv:UnspecifiedMatching 1:1 +ZFA:0000263 precaudal vertebra semapv:crossSpeciesExactMatch TAO:0000263 semapv:UnspecifiedMatching 1:1 +ZFA:0000264 preopercle semapv:crossSpeciesExactMatch TAO:0000264 semapv:UnspecifiedMatching 1:1 +ZFA:0000265 presumptive dorsal mesoderm semapv:crossSpeciesExactMatch TAO:0000265 semapv:UnspecifiedMatching 1:1 +ZFA:0000266 pretecto-mammillary tract semapv:crossSpeciesExactMatch TAO:0000266 semapv:UnspecifiedMatching 1:1 +ZFA:0000267 primary olfactory fiber layer semapv:crossSpeciesExactMatch TAO:0000267 semapv:UnspecifiedMatching 1:1 +ZFA:0000268 anal fin proximal radial semapv:crossSpeciesExactMatch TAO:0000268 semapv:UnspecifiedMatching 1:1 +ZFA:0000269 inferior caudal ventral flexor semapv:crossSpeciesExactMatch TAO:0000269 semapv:UnspecifiedMatching 1:1 +ZFA:0000270 maxilla semapv:crossSpeciesExactMatch TAO:0000270 semapv:UnspecifiedMatching 1:1 +ZFA:0000271 radial semapv:crossSpeciesExactMatch TAO:0000271 semapv:UnspecifiedMatching 1:1 +ZFA:0000272 respiratory system semapv:crossSpeciesExactMatch TAO:0000272 semapv:UnspecifiedMatching 1:1 +ZFA:0000274 rostral octaval nucleus semapv:crossSpeciesExactMatch TAO:0000274 semapv:UnspecifiedMatching 1:1 +ZFA:0000275 rostral tegmental nucleus semapv:crossSpeciesExactMatch TAO:0000275 semapv:UnspecifiedMatching 1:1 +ZFA:0000276 rostrolateral thalamic nucleus of Butler & Saidel semapv:crossSpeciesExactMatch TAO:0000276 semapv:UnspecifiedMatching 1:1 +ZFA:0000277 scale semapv:crossSpeciesExactMatch TAO:0000277 semapv:UnspecifiedMatching 1:1 +ZFA:0000278 secondary gustatory nucleus medulla oblongata semapv:crossSpeciesExactMatch TAO:0000278 semapv:UnspecifiedMatching 1:1 +ZFA:0000279 segmental plate semapv:crossSpeciesExactMatch TAO:0000279 semapv:UnspecifiedMatching 1:1 +ZFA:0000280 medial valvula cerebelli semapv:crossSpeciesExactMatch TAO:0000280 semapv:UnspecifiedMatching 1:1 +ZFA:0000281 hair cell posterior macula semapv:crossSpeciesExactMatch TAO:0000281 semapv:UnspecifiedMatching 1:1 +ZFA:0000282 sensory system semapv:crossSpeciesExactMatch TAO:0000282 semapv:UnspecifiedMatching 1:1 +ZFA:0000284 subopercle semapv:crossSpeciesExactMatch TAO:0000284 semapv:UnspecifiedMatching 1:1 +ZFA:0000285 superficial adductor semapv:crossSpeciesExactMatch TAO:0000285 semapv:UnspecifiedMatching 1:1 +ZFA:0000286 superficial lateralis semapv:crossSpeciesExactMatch TAO:0000286 semapv:UnspecifiedMatching 1:1 +ZFA:0000287 superior caudal dorsal flexor semapv:crossSpeciesExactMatch TAO:0000287 semapv:UnspecifiedMatching 1:1 +ZFA:0000288 supracarinalis semapv:crossSpeciesExactMatch TAO:0000288 semapv:UnspecifiedMatching 1:1 +ZFA:0000290 sphenoid region semapv:crossSpeciesExactMatch TAO:0000290 semapv:UnspecifiedMatching 1:1 +ZFA:0000291 medial octavolateralis nucleus semapv:crossSpeciesExactMatch TAO:0000291 semapv:UnspecifiedMatching 1:1 +ZFA:0000292 surface structure semapv:crossSpeciesExactMatch TAO:0000292 semapv:UnspecifiedMatching 1:1 +ZFA:0000293 synencephalon semapv:crossSpeciesExactMatch TAO:0000293 semapv:UnspecifiedMatching 1:1 +ZFA:0000294 torus lateralis semapv:crossSpeciesExactMatch TAO:0000294 semapv:UnspecifiedMatching 1:1 +ZFA:0000295 trigeminal ganglion semapv:crossSpeciesExactMatch TAO:0000295 semapv:UnspecifiedMatching 1:1 +ZFA:0000296 uncrossed tecto-bulbar tract semapv:crossSpeciesExactMatch TAO:0000296 semapv:UnspecifiedMatching 1:1 +ZFA:0000298 vent semapv:crossSpeciesExactMatch TAO:0000298 semapv:UnspecifiedMatching 1:1 +ZFA:0000299 ventral entopeduncular nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0000299 semapv:UnspecifiedMatching 1:1 +ZFA:0000300 ventral hypohyal bone semapv:crossSpeciesExactMatch TAO:0000300 semapv:UnspecifiedMatching 1:1 +ZFA:0000301 medial rectus semapv:crossSpeciesExactMatch TAO:0000301 semapv:UnspecifiedMatching 1:1 +ZFA:0000302 ventral habenular nucleus semapv:crossSpeciesExactMatch TAO:0000302 semapv:UnspecifiedMatching 1:1 +ZFA:0000303 female organism semapv:crossSpeciesExactMatch CARO:0000028 semapv:UnspecifiedMatching 1:n +ZFA:0000303 female organism semapv:crossSpeciesExactMatch TAO:0000303 semapv:UnspecifiedMatching 1:n +ZFA:0000304 ventral telencephalon semapv:crossSpeciesExactMatch TAO:0000304 semapv:UnspecifiedMatching 1:1 +ZFA:0000305 ventral sulcus semapv:crossSpeciesExactMatch TAO:0000305 semapv:UnspecifiedMatching 1:1 +ZFA:0000306 ventrolateral thalamic nucleus semapv:crossSpeciesExactMatch TAO:0000306 semapv:UnspecifiedMatching 1:1 +ZFA:0000307 vestibulolateralis lobe semapv:crossSpeciesExactMatch TAO:0000307 semapv:UnspecifiedMatching 1:1 +ZFA:0000308 prevomer semapv:crossSpeciesExactMatch TAO:0000308 semapv:UnspecifiedMatching 1:1 +ZFA:0000309 external yolk syncytial layer semapv:crossSpeciesExactMatch TAO:0000309 semapv:UnspecifiedMatching 1:1 +ZFA:0000310 cranial nerve VI semapv:crossSpeciesExactMatch TAO:0000310 semapv:UnspecifiedMatching 1:1 +ZFA:0000311 adductor mandibulae complex semapv:crossSpeciesExactMatch TAO:0000311 semapv:UnspecifiedMatching 1:1 +ZFA:0000312 mesencephalic nucleus of trigeminal nerve semapv:crossSpeciesExactMatch TAO:0000312 semapv:UnspecifiedMatching 1:1 +ZFA:0000313 anal inclinator semapv:crossSpeciesExactMatch TAO:0000313 semapv:UnspecifiedMatching 1:1 +ZFA:0000314 anterior semicircular canal semapv:crossSpeciesExactMatch TAO:0000314 semapv:UnspecifiedMatching 1:1 +ZFA:0000315 asteriscus semapv:crossSpeciesExactMatch TAO:0000315 semapv:UnspecifiedMatching 1:1 +ZFA:0000316 basihyal bone semapv:crossSpeciesExactMatch TAO:0000316 semapv:UnspecifiedMatching 1:1 +ZFA:0000317 postcranial axial skeleton semapv:crossSpeciesExactMatch TAO:0000317 semapv:UnspecifiedMatching 1:1 +ZFA:0000318 brainstem and spinal white matter semapv:crossSpeciesExactMatch TAO:0000318 semapv:UnspecifiedMatching 1:1 +ZFA:0000319 branchiostegal membrane semapv:crossSpeciesExactMatch TAO:0000319 semapv:UnspecifiedMatching 1:1 +ZFA:0000320 caudal commissure semapv:crossSpeciesExactMatch TAO:0000320 semapv:UnspecifiedMatching 1:1 +ZFA:0000321 caudal levator semapv:crossSpeciesExactMatch TAO:0000321 semapv:UnspecifiedMatching 1:1 +ZFA:0000322 caudal octaval nucleus semapv:crossSpeciesExactMatch TAO:0000322 semapv:UnspecifiedMatching 1:1 +ZFA:0000323 mesethmoid bone semapv:crossSpeciesExactMatch TAO:0000323 semapv:UnspecifiedMatching 1:1 +ZFA:0000324 caudal periventricular hypothalamus semapv:crossSpeciesExactMatch TAO:0000324 semapv:UnspecifiedMatching 1:1 +ZFA:0000325 caudal thalamic nucleus semapv:crossSpeciesExactMatch TAO:0000325 semapv:UnspecifiedMatching 1:1 +ZFA:0000326 caudal vertebra semapv:crossSpeciesExactMatch TAO:0000326 semapv:UnspecifiedMatching 1:1 +ZFA:0000327 central zone of the optic tectum semapv:crossSpeciesExactMatch TAO:0000327 semapv:UnspecifiedMatching 1:1 +ZFA:0000328 cephalic musculature semapv:crossSpeciesExactMatch TAO:0000328 semapv:UnspecifiedMatching 1:1 +ZFA:0000329 chorion semapv:crossSpeciesExactMatch TAO:0000329 semapv:UnspecifiedMatching 1:1 +ZFA:0000330 cloacal chamber semapv:crossSpeciesExactMatch TAO:0000330 semapv:UnspecifiedMatching 1:1 +ZFA:0000331 commissure infima of Haller semapv:crossSpeciesExactMatch TAO:0000331 semapv:UnspecifiedMatching 1:1 +ZFA:0000332 coracoid semapv:crossSpeciesExactMatch TAO:0000332 semapv:UnspecifiedMatching 1:1 +ZFA:0000333 mesovarium semapv:crossSpeciesExactMatch TAO:0000333 semapv:UnspecifiedMatching 1:1 +ZFA:0000334 corpus mamillare semapv:crossSpeciesExactMatch TAO:0000334 semapv:UnspecifiedMatching 1:1 +ZFA:0000335 crossed tecto-bulbar tract semapv:crossSpeciesExactMatch TAO:0000335 semapv:UnspecifiedMatching 1:1 +ZFA:0000338 diencephalic white matter semapv:crossSpeciesExactMatch TAO:0000338 semapv:UnspecifiedMatching 1:1 +ZFA:0000339 digestive system semapv:crossSpeciesExactMatch TAO:0000339 semapv:UnspecifiedMatching 1:1 +ZFA:0000340 dorsal entopeduncular nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0000340 semapv:UnspecifiedMatching 1:1 +ZFA:0000341 inferior caudal dorsal flexor semapv:crossSpeciesExactMatch TAO:0000341 semapv:UnspecifiedMatching 1:1 +ZFA:0000342 dorsal inclinator semapv:crossSpeciesExactMatch TAO:0000342 semapv:UnspecifiedMatching 1:1 +ZFA:0000343 dorsal nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0000343 semapv:UnspecifiedMatching 1:1 +ZFA:0000344 middle lateral line semapv:crossSpeciesExactMatch TAO:0000344 semapv:UnspecifiedMatching 1:1 +ZFA:0000345 dorsal rectus semapv:crossSpeciesExactMatch TAO:0000345 semapv:UnspecifiedMatching 1:1 +ZFA:0000346 dorsal tegmental nucleus semapv:crossSpeciesExactMatch TAO:0000346 semapv:UnspecifiedMatching 1:1 +ZFA:0000347 dorsal hypothalamic zone semapv:crossSpeciesExactMatch TAO:0000347 semapv:UnspecifiedMatching 1:1 +ZFA:0000349 epaxialis semapv:crossSpeciesExactMatch TAO:0000349 semapv:UnspecifiedMatching 1:1 +ZFA:0000350 epipleural semapv:crossSpeciesExactMatch TAO:0000350 semapv:UnspecifiedMatching 1:1 +ZFA:0000351 olfactory region semapv:crossSpeciesExactMatch TAO:0000351 semapv:UnspecifiedMatching 1:1 +ZFA:0000352 external cellular layer semapv:crossSpeciesExactMatch TAO:0000352 semapv:UnspecifiedMatching 1:1 +ZFA:0000353 fasciculus retroflexus semapv:crossSpeciesExactMatch TAO:0000353 semapv:UnspecifiedMatching 1:1 +ZFA:0000354 gill semapv:crossSpeciesExactMatch TAO:0000354 semapv:UnspecifiedMatching 1:1 +ZFA:0000355 roof plate midbrain region semapv:crossSpeciesExactMatch TAO:0000355 semapv:UnspecifiedMatching 1:1 +ZFA:0000356 gill raker semapv:crossSpeciesExactMatch TAO:0000356 semapv:UnspecifiedMatching 1:1 +ZFA:0000357 glomerular layer semapv:crossSpeciesExactMatch TAO:0000357 semapv:UnspecifiedMatching 1:1 +ZFA:0000358 granular layer corpus cerebelli semapv:crossSpeciesExactMatch TAO:0000358 semapv:UnspecifiedMatching 1:1 +ZFA:0000359 habenular commissure semapv:crossSpeciesExactMatch TAO:0000359 semapv:UnspecifiedMatching 1:1 +ZFA:0000360 heart tube semapv:crossSpeciesExactMatch TAO:0000360 semapv:UnspecifiedMatching 1:1 +ZFA:0000362 hypaxialis semapv:crossSpeciesExactMatch TAO:0000362 semapv:UnspecifiedMatching 1:1 +ZFA:0000363 hypobranchial bone semapv:crossSpeciesExactMatch TAO:0000363 semapv:UnspecifiedMatching 1:1 +ZFA:0000364 hypural semapv:crossSpeciesExactMatch TAO:0000364 semapv:UnspecifiedMatching 1:1 +ZFA:0000365 nasal bone semapv:crossSpeciesExactMatch TAO:0000365 semapv:UnspecifiedMatching 1:1 +ZFA:0000366 inferior raphe nucleus semapv:crossSpeciesExactMatch TAO:0000366 semapv:UnspecifiedMatching 1:1 +ZFA:0000368 integument semapv:crossSpeciesExactMatch TAO:0000368 semapv:UnspecifiedMatching 1:1 +ZFA:0000369 intermandibularis semapv:crossSpeciesExactMatch TAO:0000369 semapv:UnspecifiedMatching 1:1 +ZFA:0000370 intermediate thalamic nucleus semapv:crossSpeciesExactMatch TAO:0000370 semapv:UnspecifiedMatching 1:1 +ZFA:0000371 internal pharyngoclavicularis semapv:crossSpeciesExactMatch TAO:0000371 semapv:UnspecifiedMatching 1:1 +ZFA:0000372 interpeduncular nucleus medulla oblongata semapv:crossSpeciesExactMatch TAO:0000372 semapv:UnspecifiedMatching 1:1 +ZFA:0000374 lagena semapv:crossSpeciesExactMatch TAO:0000374 semapv:UnspecifiedMatching 1:1 +ZFA:0000376 infraorbital semapv:crossSpeciesExactMatch TAO:0000376 semapv:UnspecifiedMatching 1:1 +ZFA:0000379 lateral forebrain bundle diencephalon semapv:crossSpeciesExactMatch TAO:0000379 semapv:UnspecifiedMatching 1:1 +ZFA:0000380 lateral lemniscus nucleus semapv:crossSpeciesExactMatch TAO:0000380 semapv:UnspecifiedMatching 1:1 +ZFA:0000381 lateral line sensory nucleus semapv:crossSpeciesExactMatch TAO:0000381 semapv:UnspecifiedMatching 1:1 +ZFA:0000382 acellular anatomical structure semapv:crossSpeciesExactMatch CARO:0000040 semapv:UnspecifiedMatching 1:n +ZFA:0000382 acellular anatomical structure semapv:crossSpeciesExactMatch TAO:0000382 semapv:UnspecifiedMatching 1:n +ZFA:0000383 lateral rectus semapv:crossSpeciesExactMatch TAO:0000383 semapv:UnspecifiedMatching 1:1 +ZFA:0000384 levator arcus palatini semapv:crossSpeciesExactMatch TAO:0000384 semapv:UnspecifiedMatching 1:1 +ZFA:0000385 lymphatic system semapv:crossSpeciesExactMatch TAO:0000385 semapv:UnspecifiedMatching 1:1 +ZFA:0000386 macula semapv:crossSpeciesExactMatch TAO:0000386 semapv:UnspecifiedMatching 1:1 +ZFA:0000388 medial caudal lobe semapv:crossSpeciesExactMatch TAO:0000388 semapv:UnspecifiedMatching 1:1 +ZFA:0000389 medial funicular nucleus medulla oblongata semapv:crossSpeciesExactMatch TAO:0000389 semapv:UnspecifiedMatching 1:1 +ZFA:0000390 medial preglomerular nucleus semapv:crossSpeciesExactMatch TAO:0000390 semapv:UnspecifiedMatching 1:1 +ZFA:0000391 medial zone of dorsal telencephalon semapv:crossSpeciesExactMatch TAO:0000391 semapv:UnspecifiedMatching 1:1 +ZFA:0000392 median tuberal portion semapv:crossSpeciesExactMatch TAO:0000392 semapv:UnspecifiedMatching 1:1 +ZFA:0000393 mesenchyme semapv:crossSpeciesExactMatch TAO:0000393 semapv:UnspecifiedMatching 1:1 +ZFA:0000394 molecular layer corpus cerebelli semapv:crossSpeciesExactMatch TAO:0000394 semapv:UnspecifiedMatching 1:1 +ZFA:0000395 muscle pioneer somite 2 semapv:crossSpeciesExactMatch TAO:0000395 semapv:UnspecifiedMatching 1:1 +ZFA:0000396 nervous system semapv:crossSpeciesExactMatch TAO:0000396 semapv:UnspecifiedMatching 1:1 +ZFA:0000397 nucleus subglomerulosis semapv:crossSpeciesExactMatch TAO:0000397 semapv:UnspecifiedMatching 1:1 +ZFA:0000398 nucleus isthmi semapv:crossSpeciesExactMatch TAO:0000398 semapv:UnspecifiedMatching 1:1 +ZFA:0000399 secondary gustatory nucleus trigeminal nucleus semapv:crossSpeciesExactMatch TAO:0000399 semapv:UnspecifiedMatching 1:1 +ZFA:0000400 occipital lateral line semapv:crossSpeciesExactMatch TAO:0000400 semapv:UnspecifiedMatching 1:1 +ZFA:0000401 octaval nerve sensory nucleus semapv:crossSpeciesExactMatch TAO:0000401 semapv:UnspecifiedMatching 1:1 +ZFA:0000402 olfactory bulb semapv:crossSpeciesExactMatch TAO:0000402 semapv:UnspecifiedMatching 1:1 +ZFA:0000403 ovary semapv:crossSpeciesExactMatch TAO:0000403 semapv:UnspecifiedMatching 1:1 +ZFA:0000404 paracommissural nucleus semapv:crossSpeciesExactMatch TAO:0000404 semapv:UnspecifiedMatching 1:1 +ZFA:0000405 cranial nerve III semapv:crossSpeciesExactMatch TAO:0000405 semapv:UnspecifiedMatching 1:1 +ZFA:0000406 parvocellular superficial pretectal nucleus semapv:crossSpeciesExactMatch TAO:0000406 semapv:UnspecifiedMatching 1:1 +ZFA:0000407 pectoral girdle semapv:crossSpeciesExactMatch TAO:0000407 semapv:UnspecifiedMatching 1:1 +ZFA:0000408 periventricular nucleus of caudal tuberculum semapv:crossSpeciesExactMatch TAO:0000408 semapv:UnspecifiedMatching 1:1 +ZFA:0000410 postcleithrum semapv:crossSpeciesExactMatch TAO:0000410 semapv:UnspecifiedMatching 1:1 +ZFA:0000411 posterior crista primordium semapv:crossSpeciesExactMatch TAO:0000411 semapv:UnspecifiedMatching 1:1 +ZFA:0000412 otic vesicle posterior protrusion semapv:crossSpeciesExactMatch TAO:0000412 semapv:UnspecifiedMatching 1:1 +ZFA:0000413 gonad semapv:crossSpeciesExactMatch TAO:0000413 semapv:UnspecifiedMatching 1:1 +ZFA:0000414 presumptive cephalic mesoderm semapv:crossSpeciesExactMatch TAO:0000414 semapv:UnspecifiedMatching 1:1 +ZFA:0000415 esophageal sphincter semapv:crossSpeciesExactMatch TAO:0000415 semapv:UnspecifiedMatching 1:1 +ZFA:0000416 presumptive endoderm semapv:crossSpeciesExactMatch TAO:0000416 semapv:UnspecifiedMatching 1:1 +ZFA:0000417 presumptive spinal cord semapv:crossSpeciesExactMatch TAO:0000417 semapv:UnspecifiedMatching 1:1 +ZFA:0000418 pretectum semapv:crossSpeciesExactMatch TAO:0000418 semapv:UnspecifiedMatching 1:1 +ZFA:0000419 pterosphenoid semapv:crossSpeciesExactMatch TAO:0000419 semapv:UnspecifiedMatching 1:1 +ZFA:0000420 renal artery semapv:crossSpeciesExactMatch TAO:0000420 semapv:UnspecifiedMatching 1:1 +ZFA:0000421 reticular formation semapv:crossSpeciesExactMatch TAO:0000421 semapv:UnspecifiedMatching 1:1 +ZFA:0000422 retroarticular semapv:crossSpeciesExactMatch TAO:0000422 semapv:UnspecifiedMatching 1:1 +ZFA:0000423 anterior cardinal vein semapv:crossSpeciesExactMatch TAO:0000423 semapv:UnspecifiedMatching 1:1 +ZFA:0000424 opercular lateral line semapv:crossSpeciesExactMatch TAO:0000424 semapv:UnspecifiedMatching 1:1 +ZFA:0000425 anterior lateral line nerve semapv:crossSpeciesExactMatch TAO:0000425 semapv:UnspecifiedMatching 1:1 +ZFA:0000426 rostral parvocellular preoptic nucleus semapv:crossSpeciesExactMatch TAO:0000426 semapv:UnspecifiedMatching 1:1 +ZFA:0000427 rostral thalamic nucleus semapv:crossSpeciesExactMatch TAO:0000427 semapv:UnspecifiedMatching 1:1 +ZFA:0000428 saccule semapv:crossSpeciesExactMatch TAO:0000428 semapv:UnspecifiedMatching 1:1 +ZFA:0000429 scaphium semapv:crossSpeciesExactMatch TAO:0000429 semapv:UnspecifiedMatching 1:1 +ZFA:0000430 secondary gustatory tract semapv:crossSpeciesExactMatch TAO:0000430 semapv:UnspecifiedMatching 1:1 +ZFA:0000431 semicircular canal semapv:crossSpeciesExactMatch TAO:0000431 semapv:UnspecifiedMatching 1:1 +ZFA:0000433 sensory trigeminal nucleus semapv:crossSpeciesExactMatch TAO:0000433 semapv:UnspecifiedMatching 1:1 +ZFA:0000434 skeletal system semapv:crossSpeciesExactMatch TAO:0000434 semapv:UnspecifiedMatching 1:1 +ZFA:0000435 cranial nerve II semapv:crossSpeciesExactMatch TAO:0000435 semapv:UnspecifiedMatching 1:1 +ZFA:0000436 spleen semapv:crossSpeciesExactMatch TAO:0000436 semapv:UnspecifiedMatching 1:1 +ZFA:0000438 parhypural semapv:crossSpeciesExactMatch TAO:0000438 semapv:UnspecifiedMatching 1:1 +ZFA:0000439 superficial pelvic abductor semapv:crossSpeciesExactMatch TAO:0000439 semapv:UnspecifiedMatching 1:1 +ZFA:0000440 superior raphe nucleus semapv:crossSpeciesExactMatch TAO:0000440 semapv:UnspecifiedMatching 1:1 +ZFA:0000441 suprachiasmatic nucleus semapv:crossSpeciesExactMatch TAO:0000441 semapv:UnspecifiedMatching 1:1 +ZFA:0000442 supraneural semapv:crossSpeciesExactMatch TAO:0000442 semapv:UnspecifiedMatching 1:1 +ZFA:0000443 supraorbital lateral line semapv:crossSpeciesExactMatch TAO:0000443 semapv:UnspecifiedMatching 1:1 +ZFA:0000444 suspensorium semapv:crossSpeciesExactMatch TAO:0000444 semapv:UnspecifiedMatching 1:1 +ZFA:0000445 optic tectum semapv:crossSpeciesExactMatch TAO:0000445 semapv:UnspecifiedMatching 1:1 +ZFA:0000446 tecto-bulbar tract semapv:crossSpeciesExactMatch TAO:0000446 semapv:UnspecifiedMatching 1:1 +ZFA:0000447 tela chorioidea semapv:crossSpeciesExactMatch TAO:0000447 semapv:UnspecifiedMatching 1:1 +ZFA:0000448 tertiary gustatory nucleus semapv:crossSpeciesExactMatch TAO:0000448 semapv:UnspecifiedMatching 1:1 +ZFA:0000449 torus longitudinalis semapv:crossSpeciesExactMatch TAO:0000449 semapv:UnspecifiedMatching 1:1 +ZFA:0000450 trochlear motor nucleus semapv:crossSpeciesExactMatch TAO:0000450 semapv:UnspecifiedMatching 1:1 +ZFA:0000451 upper oral valve semapv:crossSpeciesExactMatch TAO:0000451 semapv:UnspecifiedMatching 1:1 +ZFA:0000452 urohyal semapv:crossSpeciesExactMatch TAO:0000452 semapv:UnspecifiedMatching 1:1 +ZFA:0000453 cranial nerve X semapv:crossSpeciesExactMatch TAO:0000453 semapv:UnspecifiedMatching 1:1 +ZFA:0000454 ventral accessory optic nucleus semapv:crossSpeciesExactMatch TAO:0000454 semapv:UnspecifiedMatching 1:1 +ZFA:0000455 superior caudal ventral flexor semapv:crossSpeciesExactMatch TAO:0000455 semapv:UnspecifiedMatching 1:1 +ZFA:0000456 ventral nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0000456 semapv:UnspecifiedMatching 1:1 +ZFA:0000457 ventral rectus semapv:crossSpeciesExactMatch TAO:0000457 semapv:UnspecifiedMatching 1:1 +ZFA:0000458 ventral thalamus semapv:crossSpeciesExactMatch TAO:0000458 semapv:UnspecifiedMatching 1:1 +ZFA:0000459 ventromedial thalamic nucleus semapv:crossSpeciesExactMatch TAO:0000459 semapv:UnspecifiedMatching 1:1 +ZFA:0000461 Weberian ossicle semapv:crossSpeciesExactMatch TAO:0000461 semapv:UnspecifiedMatching 1:1 +ZFA:0000462 abductor hyohyoid semapv:crossSpeciesExactMatch TAO:0000462 semapv:UnspecifiedMatching 1:1 +ZFA:0000463 branchial adductor semapv:crossSpeciesExactMatch TAO:0000463 semapv:UnspecifiedMatching 1:1 +ZFA:0000464 otic lateral line semapv:crossSpeciesExactMatch TAO:0000464 semapv:UnspecifiedMatching 1:1 +ZFA:0000465 adductor operculi semapv:crossSpeciesExactMatch TAO:0000465 semapv:UnspecifiedMatching 1:1 +ZFA:0000466 anal depressor semapv:crossSpeciesExactMatch TAO:0000466 semapv:UnspecifiedMatching 1:1 +ZFA:0000467 anguloarticular semapv:crossSpeciesExactMatch TAO:0000467 semapv:UnspecifiedMatching 1:1 +ZFA:0000468 anterior crista primordium semapv:crossSpeciesExactMatch TAO:0000468 semapv:UnspecifiedMatching 1:1 +ZFA:0000469 otic vesicle anterior protrusion semapv:crossSpeciesExactMatch TAO:0000469 semapv:UnspecifiedMatching 1:1 +ZFA:0000470 preoptic area semapv:crossSpeciesExactMatch TAO:0000470 semapv:UnspecifiedMatching 1:1 +ZFA:0000471 atrium semapv:crossSpeciesExactMatch TAO:0000471 semapv:UnspecifiedMatching 1:1 +ZFA:0000472 basioccipital semapv:crossSpeciesExactMatch TAO:0000472 semapv:UnspecifiedMatching 1:1 +ZFA:0000473 trunk musculature semapv:crossSpeciesExactMatch TAO:0000473 semapv:UnspecifiedMatching 1:1 +ZFA:0000474 intercalar semapv:crossSpeciesExactMatch TAO:0000474 semapv:UnspecifiedMatching 1:1 +ZFA:0000475 paraventricular organ semapv:crossSpeciesExactMatch TAO:0000475 semapv:UnspecifiedMatching 1:1 +ZFA:0000476 branchiostegal ray semapv:crossSpeciesExactMatch TAO:0000476 semapv:UnspecifiedMatching 1:1 +ZFA:0000477 posterior cardinal vein semapv:crossSpeciesExactMatch TAO:0000477 semapv:UnspecifiedMatching 1:1 +ZFA:0000479 caudal mesencephalo-cerebellar tract semapv:crossSpeciesExactMatch TAO:0000479 semapv:UnspecifiedMatching 1:1 +ZFA:0000480 caudal octavolateralis nucleus semapv:crossSpeciesExactMatch TAO:0000480 semapv:UnspecifiedMatching 1:1 +ZFA:0000481 caudal preglomerular nucleus semapv:crossSpeciesExactMatch TAO:0000481 semapv:UnspecifiedMatching 1:1 +ZFA:0000482 caudal tuberal nucleus semapv:crossSpeciesExactMatch TAO:0000482 semapv:UnspecifiedMatching 1:1 +ZFA:0000484 celiacomesenteric artery semapv:crossSpeciesExactMatch TAO:0000484 semapv:UnspecifiedMatching 1:1 +ZFA:0000485 central nucleus inferior lobe semapv:crossSpeciesExactMatch TAO:0000485 semapv:UnspecifiedMatching 1:1 +ZFA:0000486 parietal bone semapv:crossSpeciesExactMatch TAO:0000486 semapv:UnspecifiedMatching 1:1 +ZFA:0000487 central zone of dorsal telencephalon semapv:crossSpeciesExactMatch TAO:0000487 semapv:UnspecifiedMatching 1:1 +ZFA:0000488 ceratobranchial bone semapv:crossSpeciesExactMatch TAO:0000488 semapv:UnspecifiedMatching 1:1 +ZFA:0000490 commissura cerebelli semapv:crossSpeciesExactMatch TAO:0000490 semapv:UnspecifiedMatching 1:1 +ZFA:0000491 commissure of the caudal tuberculum semapv:crossSpeciesExactMatch TAO:0000491 semapv:UnspecifiedMatching 1:1 +ZFA:0000492 coracoradialis semapv:crossSpeciesExactMatch TAO:0000492 semapv:UnspecifiedMatching 1:1 +ZFA:0000493 decussation of medial funicular nucleus semapv:crossSpeciesExactMatch TAO:0000493 semapv:UnspecifiedMatching 1:1 +ZFA:0000494 deep white zone semapv:crossSpeciesExactMatch TAO:0000494 semapv:UnspecifiedMatching 1:1 +ZFA:0000495 infraorbital 5 semapv:crossSpeciesExactMatch TAO:0000495 semapv:UnspecifiedMatching 1:1 +ZFA:0000496 compound organ semapv:crossSpeciesExactMatch CARO:0000024 semapv:UnspecifiedMatching 1:n +ZFA:0000496 compound organ semapv:crossSpeciesExactMatch TAO:0000496 semapv:UnspecifiedMatching 1:n +ZFA:0000497 pelvic adductor profundus semapv:crossSpeciesExactMatch TAO:0000497 semapv:UnspecifiedMatching 1:1 +ZFA:0000498 dilatator operculi semapv:crossSpeciesExactMatch TAO:0000498 semapv:UnspecifiedMatching 1:1 +ZFA:0000499 dorsal arrector semapv:crossSpeciesExactMatch TAO:0000499 semapv:UnspecifiedMatching 1:1 +ZFA:0000500 dorsal erector semapv:crossSpeciesExactMatch TAO:0000500 semapv:UnspecifiedMatching 1:1 +ZFA:0000501 dorsal funiculus semapv:crossSpeciesExactMatch TAO:0000501 semapv:UnspecifiedMatching 1:1 +ZFA:0000502 dorsal motor nucleus trigeminal nerve semapv:crossSpeciesExactMatch TAO:0000502 semapv:UnspecifiedMatching 1:1 +ZFA:0000503 dorsal oblique branchial muscle semapv:crossSpeciesExactMatch TAO:0000503 semapv:UnspecifiedMatching 1:1 +ZFA:0000504 dorsal retractor semapv:crossSpeciesExactMatch TAO:0000504 semapv:UnspecifiedMatching 1:1 +ZFA:0000505 dorsal telencephalon semapv:crossSpeciesExactMatch TAO:0000505 semapv:UnspecifiedMatching 1:1 +ZFA:0000506 dorsal zone of dorsal telencephalon semapv:crossSpeciesExactMatch TAO:0000506 semapv:UnspecifiedMatching 1:1 +ZFA:0000507 epineural semapv:crossSpeciesExactMatch TAO:0000507 semapv:UnspecifiedMatching 1:1 +ZFA:0000508 pelvic radial semapv:crossSpeciesExactMatch TAO:0000508 semapv:UnspecifiedMatching 1:1 +ZFA:0000509 epithalamus semapv:crossSpeciesExactMatch TAO:0000509 semapv:UnspecifiedMatching 1:1 +ZFA:0000510 external levatores semapv:crossSpeciesExactMatch TAO:0000510 semapv:UnspecifiedMatching 1:1 +ZFA:0000511 extraocular musculature semapv:crossSpeciesExactMatch TAO:0000511 semapv:UnspecifiedMatching 1:1 +ZFA:0000512 facial lobe semapv:crossSpeciesExactMatch TAO:0000512 semapv:UnspecifiedMatching 1:1 +ZFA:0000513 fast muscle cell somite 1 semapv:crossSpeciesExactMatch TAO:0000513 semapv:UnspecifiedMatching 1:1 +ZFA:0000514 frontal bone semapv:crossSpeciesExactMatch TAO:0000514 semapv:UnspecifiedMatching 1:1 +ZFA:0000516 periventricular grey zone semapv:crossSpeciesExactMatch TAO:0000516 semapv:UnspecifiedMatching 1:n +ZFA:0000516 periventricular grey zone semapv:crossSpeciesExactMatch TAO:0001352 semapv:UnspecifiedMatching 1:n +ZFA:0000517 glossopharyngeal lobe semapv:crossSpeciesExactMatch TAO:0000517 semapv:UnspecifiedMatching 1:1 +ZFA:0000518 griseum centrale semapv:crossSpeciesExactMatch TAO:0000518 semapv:UnspecifiedMatching 1:1 +ZFA:0000519 hemal arch semapv:crossSpeciesExactMatch TAO:0000519 semapv:UnspecifiedMatching 1:1 +ZFA:0000520 horizontal commissure semapv:crossSpeciesExactMatch TAO:0000520 semapv:UnspecifiedMatching 1:1 +ZFA:0000521 hyoid muscle semapv:crossSpeciesExactMatch TAO:0000521 semapv:UnspecifiedMatching 1:1 +ZFA:0000522 inferior hyohyoid semapv:crossSpeciesExactMatch TAO:0000522 semapv:UnspecifiedMatching 1:1 +ZFA:0000523 inferior reticular formation semapv:crossSpeciesExactMatch TAO:0000523 semapv:UnspecifiedMatching 1:1 +ZFA:0000524 infraorbital lateral line semapv:crossSpeciesExactMatch TAO:0000524 semapv:UnspecifiedMatching 1:1 +ZFA:0000525 intercalarium semapv:crossSpeciesExactMatch TAO:0000525 semapv:UnspecifiedMatching 1:1 +ZFA:0000526 intermuscular bone semapv:crossSpeciesExactMatch TAO:0000526 semapv:UnspecifiedMatching 1:1 +ZFA:0000527 pharyngobranchial bone semapv:crossSpeciesExactMatch TAO:0000527 semapv:UnspecifiedMatching 1:1 +ZFA:0000528 interradialis caudalis semapv:crossSpeciesExactMatch TAO:0000528 semapv:UnspecifiedMatching 1:1 +ZFA:0000529 kidney semapv:crossSpeciesExactMatch TAO:0000529 semapv:UnspecifiedMatching 1:1 +ZFA:0000530 lapillus semapv:crossSpeciesExactMatch TAO:0000530 semapv:UnspecifiedMatching 1:1 +ZFA:0000531 lateral column semapv:crossSpeciesExactMatch TAO:0000531 semapv:UnspecifiedMatching 1:1 +ZFA:0000532 lateral valvula cerebelli semapv:crossSpeciesExactMatch TAO:0000532 semapv:UnspecifiedMatching 1:1 +ZFA:0000533 lateral funiculus semapv:crossSpeciesExactMatch TAO:0000533 semapv:UnspecifiedMatching 1:1 +ZFA:0000534 lateral longitudinal fasciculus semapv:crossSpeciesExactMatch TAO:0000534 semapv:UnspecifiedMatching 1:1 +ZFA:0000535 lateral reticular nucleus semapv:crossSpeciesExactMatch TAO:0000535 semapv:UnspecifiedMatching 1:1 +ZFA:0000536 lateral zone of dorsal telencephalon semapv:crossSpeciesExactMatch TAO:0000536 semapv:UnspecifiedMatching 1:1 +ZFA:0000537 levator operculi semapv:crossSpeciesExactMatch TAO:0000537 semapv:UnspecifiedMatching 1:1 +ZFA:0000538 rib semapv:crossSpeciesExactMatch TAO:0000538 semapv:UnspecifiedMatching 1:1 +ZFA:0000539 locus coeruleus semapv:crossSpeciesExactMatch TAO:0000539 semapv:UnspecifiedMatching 1:1 +ZFA:0000540 magnocellular octaval nucleus semapv:crossSpeciesExactMatch TAO:0000540 semapv:UnspecifiedMatching 1:1 +ZFA:0000541 marginal blastomere semapv:crossSpeciesExactMatch TAO:0000541 semapv:UnspecifiedMatching 1:1 +ZFA:0000542 medial column semapv:crossSpeciesExactMatch TAO:0000542 semapv:UnspecifiedMatching 1:1 +ZFA:0000543 medial longitudinal fasciculus semapv:crossSpeciesExactMatch TAO:0000543 semapv:UnspecifiedMatching 1:1 +ZFA:0000545 medulla oblongata semapv:crossSpeciesExactMatch TAO:0000545 semapv:UnspecifiedMatching 1:1 +ZFA:0000546 mesonephric duct semapv:crossSpeciesExactMatch TAO:0000546 semapv:UnspecifiedMatching 1:1 +ZFA:0000547 mouth semapv:crossSpeciesExactMatch TAO:0000547 semapv:UnspecifiedMatching 1:1 +ZFA:0000548 musculature system semapv:crossSpeciesExactMatch TAO:0000548 semapv:UnspecifiedMatching 1:1 +ZFA:0000549 posttemporal semapv:crossSpeciesExactMatch TAO:0000549 semapv:UnspecifiedMatching 1:1 +ZFA:0000550 naris semapv:crossSpeciesExactMatch TAO:0000550 semapv:UnspecifiedMatching 1:1 +ZFA:0000551 nucleus lateralis valvulae semapv:crossSpeciesExactMatch TAO:0000551 semapv:UnspecifiedMatching 1:1 +ZFA:0000552 nucleus ruber semapv:crossSpeciesExactMatch TAO:0000552 semapv:UnspecifiedMatching 1:1 +ZFA:0000553 oculomotor nucleus semapv:crossSpeciesExactMatch TAO:0000553 semapv:UnspecifiedMatching 1:1 +ZFA:0000554 olfactory epithelium semapv:crossSpeciesExactMatch TAO:0000554 semapv:UnspecifiedMatching 1:1 +ZFA:0000555 opercular flap semapv:crossSpeciesExactMatch TAO:0000555 semapv:UnspecifiedMatching 1:1 +ZFA:0000556 optic chiasm semapv:crossSpeciesExactMatch TAO:0000556 semapv:UnspecifiedMatching 1:1 +ZFA:0000557 preural 1 vertebra semapv:crossSpeciesExactMatch TAO:0000557 semapv:UnspecifiedMatching 1:1 +ZFA:0000558 posterior macula semapv:crossSpeciesExactMatch TAO:0000558 semapv:UnspecifiedMatching 1:1 +ZFA:0000559 otolith organ semapv:crossSpeciesExactMatch TAO:0000559 semapv:UnspecifiedMatching 1:1 +ZFA:0000560 oviduct semapv:crossSpeciesExactMatch TAO:0000560 semapv:UnspecifiedMatching 1:1 +ZFA:0000561 parasphenoid semapv:crossSpeciesExactMatch TAO:0000561 semapv:UnspecifiedMatching 1:1 +ZFA:0000563 pectoral fin musculature semapv:crossSpeciesExactMatch TAO:0000563 semapv:UnspecifiedMatching 1:1 +ZFA:0000564 pelvic abductor profundus semapv:crossSpeciesExactMatch TAO:0000564 semapv:UnspecifiedMatching 1:1 +ZFA:0000565 pelvic girdle semapv:crossSpeciesExactMatch TAO:0000565 semapv:UnspecifiedMatching 1:1 +ZFA:0000566 posterior crista semapv:crossSpeciesExactMatch TAO:0000566 semapv:UnspecifiedMatching 1:1 +ZFA:0000567 premaxilla semapv:crossSpeciesExactMatch TAO:0000567 semapv:UnspecifiedMatching 1:1 +ZFA:0000568 presumptive blood semapv:crossSpeciesExactMatch TAO:0000568 semapv:UnspecifiedMatching 1:1 +ZFA:0000569 presumptive hindbrain semapv:crossSpeciesExactMatch TAO:0000569 semapv:UnspecifiedMatching 1:1 +ZFA:0000570 optic primordium semapv:crossSpeciesExactMatch TAO:0000570 semapv:UnspecifiedMatching 1:1 +ZFA:0000571 presumptive telencephalon semapv:crossSpeciesExactMatch TAO:0000571 semapv:UnspecifiedMatching 1:1 +ZFA:0000573 internal cellular layer semapv:crossSpeciesExactMatch TAO:0000573 semapv:UnspecifiedMatching 1:1 +ZFA:0000574 presumptive diencephalon semapv:crossSpeciesExactMatch TAO:0000574 semapv:UnspecifiedMatching 1:1 +ZFA:0000575 prootic semapv:crossSpeciesExactMatch TAO:0000575 semapv:UnspecifiedMatching 1:1 +ZFA:0000576 pterotic semapv:crossSpeciesExactMatch TAO:0000576 semapv:UnspecifiedMatching 1:1 +ZFA:0000577 renal portal vein semapv:crossSpeciesExactMatch TAO:0000577 semapv:UnspecifiedMatching 1:1 +ZFA:0000578 ceratohyal bone semapv:crossSpeciesExactMatch TAO:0000578 semapv:UnspecifiedMatching 1:1 +ZFA:0000579 rostral mesencephalo-cerebellar tract semapv:crossSpeciesExactMatch TAO:0000579 semapv:UnspecifiedMatching 1:1 +ZFA:0000580 rostral preglomerular nucleus semapv:crossSpeciesExactMatch TAO:0000580 semapv:UnspecifiedMatching 1:1 +ZFA:0000581 rostral tuberal nucleus semapv:crossSpeciesExactMatch TAO:0000581 semapv:UnspecifiedMatching 1:1 +ZFA:0000582 saccus dorsalis semapv:crossSpeciesExactMatch TAO:0000582 semapv:UnspecifiedMatching 1:1 +ZFA:0000583 scapula semapv:crossSpeciesExactMatch TAO:0000583 semapv:UnspecifiedMatching 1:1 +ZFA:0000585 kinethmoid cartilage semapv:crossSpeciesExactMatch TAO:0000585 semapv:UnspecifiedMatching 1:1 +ZFA:0000586 preural 2 vertebra semapv:crossSpeciesExactMatch TAO:0000586 semapv:UnspecifiedMatching 1:1 +ZFA:0000587 sphenotic semapv:crossSpeciesExactMatch TAO:0000587 semapv:UnspecifiedMatching 1:1 +ZFA:0000588 statoacoustic (VIII) ganglion semapv:crossSpeciesExactMatch TAO:0000588 semapv:UnspecifiedMatching 1:1 +ZFA:0000589 sulcus ypsiloniformis semapv:crossSpeciesExactMatch TAO:0000589 semapv:UnspecifiedMatching 1:1 +ZFA:0000590 oral region semapv:crossSpeciesExactMatch TAO:0000590 semapv:UnspecifiedMatching 1:1 +ZFA:0000591 presumptive paraxial mesoderm semapv:crossSpeciesExactMatch TAO:0000591 semapv:UnspecifiedMatching 1:1 +ZFA:0000592 superficial pelvic adductor semapv:crossSpeciesExactMatch TAO:0000592 semapv:UnspecifiedMatching 1:1 +ZFA:0000593 superior reticular formation medial column semapv:crossSpeciesExactMatch TAO:0000593 semapv:UnspecifiedMatching 1:1 +ZFA:0000594 supracleithrum semapv:crossSpeciesExactMatch TAO:0000594 semapv:UnspecifiedMatching 1:1 +ZFA:0000595 supraoccipital semapv:crossSpeciesExactMatch TAO:0000595 semapv:UnspecifiedMatching 1:1 +ZFA:0000597 telencephalic white matter semapv:crossSpeciesExactMatch TAO:0000597 semapv:UnspecifiedMatching 1:1 +ZFA:0000598 testis semapv:crossSpeciesExactMatch TAO:0000598 semapv:UnspecifiedMatching 1:1 +ZFA:0000599 torus semicircularis semapv:crossSpeciesExactMatch TAO:0000599 semapv:UnspecifiedMatching 1:1 +ZFA:0000600 cranial nerve IV semapv:crossSpeciesExactMatch TAO:0000600 semapv:UnspecifiedMatching 1:1 +ZFA:0000601 pretectal periventricular nucleus semapv:crossSpeciesExactMatch TAO:0000601 semapv:UnspecifiedMatching 1:1 +ZFA:0000602 uroneural semapv:crossSpeciesExactMatch TAO:0000602 semapv:UnspecifiedMatching 1:1 +ZFA:0000603 valvula cerebelli semapv:crossSpeciesExactMatch TAO:0000603 semapv:UnspecifiedMatching 1:1 +ZFA:0000604 ventral aorta semapv:crossSpeciesExactMatch TAO:0000604 semapv:UnspecifiedMatching 1:1 +ZFA:0000605 ventral funiculus semapv:crossSpeciesExactMatch TAO:0000605 semapv:UnspecifiedMatching 1:1 +ZFA:0000606 ventral oblique branchial muscle semapv:crossSpeciesExactMatch TAO:0000606 semapv:UnspecifiedMatching 1:1 +ZFA:0000607 ventral rhombencephalic commissure semapv:crossSpeciesExactMatch TAO:0000607 semapv:UnspecifiedMatching 1:1 +ZFA:0000608 ventral transverse semapv:crossSpeciesExactMatch TAO:0000608 semapv:UnspecifiedMatching 1:1 +ZFA:0000609 ventrolateral nucleus semapv:crossSpeciesExactMatch TAO:0000609 semapv:UnspecifiedMatching 1:1 +ZFA:0000610 vertical myoseptum semapv:crossSpeciesExactMatch TAO:0000610 semapv:UnspecifiedMatching 1:1 +ZFA:0000611 visceromotor column semapv:crossSpeciesExactMatch TAO:0000611 semapv:UnspecifiedMatching 1:1 +ZFA:0000612 protractor hyoidei semapv:crossSpeciesExactMatch TAO:0000612 semapv:UnspecifiedMatching 1:1 +ZFA:0000614 abductor profundus semapv:crossSpeciesExactMatch TAO:0000614 semapv:UnspecifiedMatching 1:1 +ZFA:0000615 adductor arcus palatini semapv:crossSpeciesExactMatch TAO:0000615 semapv:UnspecifiedMatching 1:1 +ZFA:0000616 adductor profundus semapv:crossSpeciesExactMatch TAO:0000616 semapv:UnspecifiedMatching 1:1 +ZFA:0000617 anal erector semapv:crossSpeciesExactMatch TAO:0000617 semapv:UnspecifiedMatching 1:1 +ZFA:0000618 ansulate commissure semapv:crossSpeciesExactMatch TAO:0000618 semapv:UnspecifiedMatching 1:1 +ZFA:0000619 anterior crista semapv:crossSpeciesExactMatch TAO:0000619 semapv:UnspecifiedMatching 1:1 +ZFA:0000620 autopalatine semapv:crossSpeciesExactMatch TAO:0000620 semapv:UnspecifiedMatching 1:1 +ZFA:0000621 quadrate semapv:crossSpeciesExactMatch TAO:0000621 semapv:UnspecifiedMatching 1:1 +ZFA:0000622 barbel semapv:crossSpeciesExactMatch TAO:0000622 semapv:UnspecifiedMatching 1:1 +ZFA:0000623 basipterygium semapv:crossSpeciesExactMatch TAO:0000623 semapv:UnspecifiedMatching 1:1 +ZFA:0000626 bulbo-spinal tract semapv:crossSpeciesExactMatch TAO:0000626 semapv:UnspecifiedMatching 1:1 +ZFA:0000627 epihyal semapv:crossSpeciesExactMatch TAO:0000627 semapv:UnspecifiedMatching 1:1 +ZFA:0000628 caudal fin musculature semapv:crossSpeciesExactMatch TAO:0000628 semapv:UnspecifiedMatching 1:1 +ZFA:0000629 caudal motor nucleus semapv:crossSpeciesExactMatch TAO:0000629 semapv:UnspecifiedMatching 1:1 +ZFA:0000630 caudal parvocellular preoptic nucleus semapv:crossSpeciesExactMatch TAO:0000630 semapv:UnspecifiedMatching 1:1 +ZFA:0000631 caudal pretectal nucleus semapv:crossSpeciesExactMatch TAO:0000631 semapv:UnspecifiedMatching 1:1 +ZFA:0000632 reproductive system semapv:crossSpeciesExactMatch TAO:0000632 semapv:UnspecifiedMatching 1:1 +ZFA:0000633 caudal tuberculum semapv:crossSpeciesExactMatch TAO:0000633 semapv:UnspecifiedMatching 1:1 +ZFA:0000635 central pretectal nucleus semapv:crossSpeciesExactMatch TAO:0000635 semapv:UnspecifiedMatching 1:1 +ZFA:0000636 cerebellar crest semapv:crossSpeciesExactMatch TAO:0000636 semapv:UnspecifiedMatching 1:1 +ZFA:0000637 claustrum cartilage semapv:crossSpeciesExactMatch TAO:0000637 semapv:UnspecifiedMatching 1:1 +ZFA:0000638 commissura rostral, pars dorsalis semapv:crossSpeciesExactMatch TAO:0000638 semapv:UnspecifiedMatching 1:1 +ZFA:0000639 commissure of the secondary gustatory nucleus semapv:crossSpeciesExactMatch TAO:0000639 semapv:UnspecifiedMatching 1:1 +ZFA:0000640 cornea semapv:crossSpeciesExactMatch TAO:0000640 semapv:UnspecifiedMatching 1:1 +ZFA:0000641 cranial nerve semapv:crossSpeciesExactMatch TAO:0000641 semapv:UnspecifiedMatching 1:1 +ZFA:0000642 decussation of the medial octavolateralis nucleus semapv:crossSpeciesExactMatch TAO:0000642 semapv:UnspecifiedMatching 1:1 +ZFA:0000643 rostral cerebellar tract semapv:crossSpeciesExactMatch TAO:0000643 semapv:UnspecifiedMatching 1:1 +ZFA:0000645 descending octaval nucleus semapv:crossSpeciesExactMatch TAO:0000645 semapv:UnspecifiedMatching 1:1 +ZFA:0000646 anal fin distal radial semapv:crossSpeciesExactMatch TAO:0000646 semapv:UnspecifiedMatching 1:1 +ZFA:0000647 dorsal caudal thalamic nucleus semapv:crossSpeciesExactMatch TAO:0000647 semapv:UnspecifiedMatching 1:1 +ZFA:0000648 dorsal fin musculature semapv:crossSpeciesExactMatch TAO:0000648 semapv:UnspecifiedMatching 1:1 +ZFA:0000649 dorsal horn spinal cord semapv:crossSpeciesExactMatch TAO:0000649 semapv:UnspecifiedMatching 1:1 +ZFA:0000650 dorsal motor root of V semapv:crossSpeciesExactMatch TAO:0000650 semapv:UnspecifiedMatching 1:1 +ZFA:0000651 dorsal pelvic arrector semapv:crossSpeciesExactMatch TAO:0000651 semapv:UnspecifiedMatching 1:1 +ZFA:0000652 dorsal root semapv:crossSpeciesExactMatch TAO:0000652 semapv:UnspecifiedMatching 1:1 +ZFA:0000653 dorsal thalamus semapv:crossSpeciesExactMatch TAO:0000653 semapv:UnspecifiedMatching 1:1 +ZFA:0000654 rostral motor nucleus semapv:crossSpeciesExactMatch TAO:0000654 semapv:UnspecifiedMatching 1:1 +ZFA:0000655 dorsomedial optic tract semapv:crossSpeciesExactMatch TAO:0000655 semapv:UnspecifiedMatching 1:1 +ZFA:0000656 ectopterygoid semapv:crossSpeciesExactMatch TAO:0000656 semapv:UnspecifiedMatching 1:1 +ZFA:0000657 entopterygoid semapv:crossSpeciesExactMatch TAO:0000657 semapv:UnspecifiedMatching 1:1 +ZFA:0000658 epibranchial bone semapv:crossSpeciesExactMatch TAO:0000658 semapv:UnspecifiedMatching 1:1 +ZFA:0000660 epural semapv:crossSpeciesExactMatch TAO:0000660 semapv:UnspecifiedMatching 1:1 +ZFA:0000661 exoccipital semapv:crossSpeciesExactMatch TAO:0000661 semapv:UnspecifiedMatching 1:1 +ZFA:0000662 external pharyngoclavicularis semapv:crossSpeciesExactMatch TAO:0000662 semapv:UnspecifiedMatching 1:1 +ZFA:0000663 extrascapula semapv:crossSpeciesExactMatch TAO:0000663 semapv:UnspecifiedMatching 1:1 +ZFA:0000664 cranial nerve VII semapv:crossSpeciesExactMatch TAO:0000664 semapv:UnspecifiedMatching 1:1 +ZFA:0000665 rostral root of abducens nerve semapv:crossSpeciesExactMatch TAO:0000665 semapv:UnspecifiedMatching 1:1 +ZFA:0000666 filamental artery semapv:crossSpeciesExactMatch TAO:0000666 semapv:UnspecifiedMatching 1:1 +ZFA:0000667 gill filament semapv:crossSpeciesExactMatch TAO:0000667 semapv:UnspecifiedMatching 1:1 +ZFA:0000668 cranial nerve IX semapv:crossSpeciesExactMatch TAO:0000668 semapv:UnspecifiedMatching 1:1 +ZFA:0000669 head kidney semapv:crossSpeciesExactMatch TAO:0000669 semapv:UnspecifiedMatching 1:1 +ZFA:0000670 hepatic vein semapv:crossSpeciesExactMatch TAO:0000670 semapv:UnspecifiedMatching 1:1 +ZFA:0000671 horizontal myoseptum semapv:crossSpeciesExactMatch TAO:0000671 semapv:UnspecifiedMatching 1:1 +ZFA:0000672 hyomandibula semapv:crossSpeciesExactMatch TAO:0000672 semapv:UnspecifiedMatching 1:1 +ZFA:0000673 hypobranchial artery semapv:crossSpeciesExactMatch TAO:0000673 semapv:UnspecifiedMatching 1:1 +ZFA:0000674 interopercle semapv:crossSpeciesExactMatch TAO:0000674 semapv:UnspecifiedMatching 1:1 +ZFA:0000676 sagitta semapv:crossSpeciesExactMatch TAO:0000676 semapv:UnspecifiedMatching 1:1 +ZFA:0000677 segmental intercostal artery semapv:crossSpeciesExactMatch TAO:0000677 semapv:UnspecifiedMatching 1:1 +ZFA:0000678 hair cell anterior macula semapv:crossSpeciesExactMatch TAO:0000678 semapv:UnspecifiedMatching 1:1 +ZFA:0000679 sensory root of facial nerve semapv:crossSpeciesExactMatch TAO:0000679 semapv:UnspecifiedMatching 1:1 +ZFA:0000680 sinoatrial valve semapv:crossSpeciesExactMatch TAO:0000680 semapv:UnspecifiedMatching 1:1 +ZFA:0000681 neural postzygapophysis semapv:crossSpeciesExactMatch TAO:0000681 semapv:UnspecifiedMatching 1:1 +ZFA:0000682 spinal artery semapv:crossSpeciesExactMatch TAO:0000682 semapv:UnspecifiedMatching 1:1 +ZFA:0000683 subcommissural organ semapv:crossSpeciesExactMatch TAO:0000683 semapv:UnspecifiedMatching 1:1 +ZFA:0000684 intertectal commissure semapv:crossSpeciesExactMatch TAO:0000684 semapv:UnspecifiedMatching 1:1 +ZFA:0000685 superficial abductor semapv:crossSpeciesExactMatch TAO:0000685 semapv:UnspecifiedMatching 1:1 +ZFA:0000686 superficial grey and white zone semapv:crossSpeciesExactMatch TAO:0000686 semapv:UnspecifiedMatching 1:1 +ZFA:0000687 superficial pretectum semapv:crossSpeciesExactMatch TAO:0000687 semapv:UnspecifiedMatching 1:1 +ZFA:0000688 olfactory support cell semapv:crossSpeciesExactMatch TAO:0000688 semapv:UnspecifiedMatching 1:1 +ZFA:0000689 supracommissural nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0000689 semapv:UnspecifiedMatching 1:1 +ZFA:0000690 supraoptic commissure semapv:crossSpeciesExactMatch TAO:0000690 semapv:UnspecifiedMatching 1:1 +ZFA:0000691 supraorbital bone semapv:crossSpeciesExactMatch TAO:0000691 semapv:UnspecifiedMatching 1:1 +ZFA:0000692 symplectic semapv:crossSpeciesExactMatch TAO:0000692 semapv:UnspecifiedMatching 1:1 +ZFA:0000693 tangential nucleus semapv:crossSpeciesExactMatch TAO:0000693 semapv:UnspecifiedMatching 1:1 +ZFA:0000694 ceratobranchial 5 tooth semapv:crossSpeciesExactMatch TAO:0000694 semapv:UnspecifiedMatching 1:1 +ZFA:0000695 labial cavity semapv:crossSpeciesExactMatch TAO:0000695 semapv:UnspecifiedMatching 1:1 +ZFA:0000696 telencephalic ventricle semapv:crossSpeciesExactMatch TAO:0000696 semapv:UnspecifiedMatching 1:1 +ZFA:0000697 cranial nerve V semapv:crossSpeciesExactMatch TAO:0000697 semapv:UnspecifiedMatching 1:1 +ZFA:0000698 tripus semapv:crossSpeciesExactMatch TAO:0000698 semapv:UnspecifiedMatching 1:1 +ZFA:0000700 utricle semapv:crossSpeciesExactMatch TAO:0000700 semapv:UnspecifiedMatching 1:1 +ZFA:0000701 ventral arrector semapv:crossSpeciesExactMatch TAO:0000701 semapv:UnspecifiedMatching 1:1 +ZFA:0000702 ventral horn spinal cord semapv:crossSpeciesExactMatch TAO:0000702 semapv:UnspecifiedMatching 1:1 +ZFA:0000703 ventral motor nucleus trigeminal nerve semapv:crossSpeciesExactMatch TAO:0000703 semapv:UnspecifiedMatching 1:1 +ZFA:0000704 ventral pelvic arrector semapv:crossSpeciesExactMatch TAO:0000704 semapv:UnspecifiedMatching 1:1 +ZFA:0000705 ventral root semapv:crossSpeciesExactMatch TAO:0000705 semapv:UnspecifiedMatching 1:1 +ZFA:0000706 posterior intestine semapv:crossSpeciesExactMatch TAO:0000706 semapv:UnspecifiedMatching 1:1 +ZFA:0000707 ventral hypothalamic zone semapv:crossSpeciesExactMatch TAO:0000707 semapv:UnspecifiedMatching 1:1 +ZFA:0000708 ventrolateral optic tract semapv:crossSpeciesExactMatch TAO:0000708 semapv:UnspecifiedMatching 1:1 +ZFA:0000709 vestibulo-spinal tract semapv:crossSpeciesExactMatch TAO:0000709 semapv:UnspecifiedMatching 1:1 +ZFA:0000710 viscerosensory commissural nucleus of Cajal semapv:crossSpeciesExactMatch TAO:0000710 semapv:UnspecifiedMatching 1:1 +ZFA:0000711 DEL semapv:crossSpeciesExactMatch TAO:0000711 semapv:UnspecifiedMatching 1:1 +ZFA:0000712 internal yolk syncytial layer semapv:crossSpeciesExactMatch TAO:0000712 semapv:UnspecifiedMatching 1:1 +ZFA:0000713 abducens motor nucleus semapv:crossSpeciesExactMatch TAO:0000713 semapv:UnspecifiedMatching 1:1 +ZFA:0000714 accessory pretectal nucleus semapv:crossSpeciesExactMatch TAO:0000714 semapv:UnspecifiedMatching 1:1 +ZFA:0000715 adductor hyohyoid semapv:crossSpeciesExactMatch TAO:0000715 semapv:UnspecifiedMatching 1:1 +ZFA:0000716 afferent branchial artery semapv:crossSpeciesExactMatch TAO:0000716 semapv:UnspecifiedMatching 1:1 +ZFA:0000717 apical ectodermal ridge median fin fold semapv:crossSpeciesExactMatch TAO:0000717 semapv:UnspecifiedMatching 1:1 +ZFA:0000718 epaxial region somite 27 semapv:crossSpeciesExactMatch TAO:0000718 semapv:UnspecifiedMatching 1:1 +ZFA:0000719 slow muscle cell somite 21 semapv:crossSpeciesExactMatch TAO:0000719 semapv:UnspecifiedMatching 1:1 +ZFA:0000720 slow muscle cell somite 24 semapv:crossSpeciesExactMatch TAO:0000720 semapv:UnspecifiedMatching 1:1 +ZFA:0000721 slow muscle cell somite 27 semapv:crossSpeciesExactMatch TAO:0000721 semapv:UnspecifiedMatching 1:1 +ZFA:0000722 slow muscle cell somite 3 semapv:crossSpeciesExactMatch TAO:0000722 semapv:UnspecifiedMatching 1:1 +ZFA:0000723 slow muscle cell somite 5 semapv:crossSpeciesExactMatch TAO:0000723 semapv:UnspecifiedMatching 1:1 +ZFA:0000724 slow muscle cell somite 8 semapv:crossSpeciesExactMatch TAO:0000724 semapv:UnspecifiedMatching 1:1 +ZFA:0000725 somite 11 semapv:crossSpeciesExactMatch TAO:0000725 semapv:UnspecifiedMatching 1:1 +ZFA:0000726 somite 14 semapv:crossSpeciesExactMatch TAO:0000726 semapv:UnspecifiedMatching 1:1 +ZFA:0000727 somite 17 semapv:crossSpeciesExactMatch TAO:0000727 semapv:UnspecifiedMatching 1:1 +ZFA:0000728 somite 2 semapv:crossSpeciesExactMatch TAO:0000728 semapv:UnspecifiedMatching 1:1 +ZFA:0000729 epaxial region somite 3 semapv:crossSpeciesExactMatch TAO:0000729 semapv:UnspecifiedMatching 1:1 +ZFA:0000730 somite 23 semapv:crossSpeciesExactMatch TAO:0000730 semapv:UnspecifiedMatching 1:1 +ZFA:0000731 somite 27 semapv:crossSpeciesExactMatch TAO:0000731 semapv:UnspecifiedMatching 1:1 +ZFA:0000732 somite 3 semapv:crossSpeciesExactMatch TAO:0000732 semapv:UnspecifiedMatching 1:1 +ZFA:0000733 somite 7 semapv:crossSpeciesExactMatch TAO:0000733 semapv:UnspecifiedMatching 1:1 +ZFA:0000734 preural vertebra semapv:crossSpeciesExactMatch TAO:0000734 semapv:UnspecifiedMatching 1:1 +ZFA:0000735 hemal postzygapophysis semapv:crossSpeciesExactMatch TAO:0000735 semapv:UnspecifiedMatching 1:1 +ZFA:0000737 cranium semapv:crossSpeciesExactMatch TAO:0000737 semapv:UnspecifiedMatching 1:1 +ZFA:0000738 dorsal oblique extraocular muscle semapv:crossSpeciesExactMatch TAO:0000738 semapv:UnspecifiedMatching 1:1 +ZFA:0000739 epaxial region somite 11 semapv:crossSpeciesExactMatch TAO:0000739 semapv:UnspecifiedMatching 1:1 +ZFA:0000740 epaxial region somite 5 semapv:crossSpeciesExactMatch TAO:0000740 semapv:UnspecifiedMatching 1:1 +ZFA:0000741 epaxial region somite 14 semapv:crossSpeciesExactMatch TAO:0000741 semapv:UnspecifiedMatching 1:1 +ZFA:0000742 epaxial region somite 17 semapv:crossSpeciesExactMatch TAO:0000742 semapv:UnspecifiedMatching 1:1 +ZFA:0000743 epaxial region somite 2 semapv:crossSpeciesExactMatch TAO:0000743 semapv:UnspecifiedMatching 1:1 +ZFA:0000744 epaxial region somite 22 semapv:crossSpeciesExactMatch TAO:0000744 semapv:UnspecifiedMatching 1:1 +ZFA:0000745 epaxial region somite 25 semapv:crossSpeciesExactMatch TAO:0000745 semapv:UnspecifiedMatching 1:1 +ZFA:0000746 epaxial region somite 28 semapv:crossSpeciesExactMatch TAO:0000746 semapv:UnspecifiedMatching 1:1 +ZFA:0000747 epaxial region somite 30 semapv:crossSpeciesExactMatch TAO:0000747 semapv:UnspecifiedMatching 1:1 +ZFA:0000748 epaxial region somite 6 semapv:crossSpeciesExactMatch TAO:0000748 semapv:UnspecifiedMatching 1:1 +ZFA:0000749 epaxial region somite 9 semapv:crossSpeciesExactMatch TAO:0000749 semapv:UnspecifiedMatching 1:1 +ZFA:0000750 fast muscle cell somite 10 semapv:crossSpeciesExactMatch TAO:0000750 semapv:UnspecifiedMatching 1:1 +ZFA:0000751 epaxial region somite 8 semapv:crossSpeciesExactMatch TAO:0000751 semapv:UnspecifiedMatching 1:1 +ZFA:0000752 fast muscle cell somite 13 semapv:crossSpeciesExactMatch TAO:0000752 semapv:UnspecifiedMatching 1:1 +ZFA:0000753 fast muscle cell somite 16 semapv:crossSpeciesExactMatch TAO:0000753 semapv:UnspecifiedMatching 1:1 +ZFA:0000754 fast muscle cell somite 19 semapv:crossSpeciesExactMatch TAO:0000754 semapv:UnspecifiedMatching 1:1 +ZFA:0000755 fast muscle cell somite 21 semapv:crossSpeciesExactMatch TAO:0000755 semapv:UnspecifiedMatching 1:1 +ZFA:0000756 fast muscle cell somite 24 semapv:crossSpeciesExactMatch TAO:0000756 semapv:UnspecifiedMatching 1:1 +ZFA:0000757 fast muscle cell somite 27 semapv:crossSpeciesExactMatch TAO:0000757 semapv:UnspecifiedMatching 1:1 +ZFA:0000758 fast muscle cell somite 3 semapv:crossSpeciesExactMatch TAO:0000758 semapv:UnspecifiedMatching 1:1 +ZFA:0000759 fast muscle cell somite 5 semapv:crossSpeciesExactMatch TAO:0000759 semapv:UnspecifiedMatching 1:1 +ZFA:0000760 fast muscle cell somite 8 semapv:crossSpeciesExactMatch TAO:0000760 semapv:UnspecifiedMatching 1:1 +ZFA:0000761 basal plate midbrain region semapv:crossSpeciesExactMatch TAO:0000761 semapv:UnspecifiedMatching 1:1 +ZFA:0000762 facio-acoustic neural crest semapv:crossSpeciesExactMatch TAO:0000762 semapv:UnspecifiedMatching 1:1 +ZFA:0000763 floor plate rhombomere 2 semapv:crossSpeciesExactMatch TAO:0000763 semapv:UnspecifiedMatching 1:1 +ZFA:0000764 floor plate rhombomere 5 semapv:crossSpeciesExactMatch TAO:0000764 semapv:UnspecifiedMatching 1:1 +ZFA:0000765 floor plate rhombomere 8 semapv:crossSpeciesExactMatch TAO:0000765 semapv:UnspecifiedMatching 1:1 +ZFA:0000766 granular layer valvula cerebelli semapv:crossSpeciesExactMatch TAO:0000766 semapv:UnspecifiedMatching 1:1 +ZFA:0000767 hypaxial region somite 11 semapv:crossSpeciesExactMatch TAO:0000767 semapv:UnspecifiedMatching 1:1 +ZFA:0000768 hypaxial region somite 14 semapv:crossSpeciesExactMatch TAO:0000768 semapv:UnspecifiedMatching 1:1 +ZFA:0000769 hypaxial region somite 17 semapv:crossSpeciesExactMatch TAO:0000769 semapv:UnspecifiedMatching 1:1 +ZFA:0000770 hypaxial region somite 2 semapv:crossSpeciesExactMatch TAO:0000770 semapv:UnspecifiedMatching 1:1 +ZFA:0000771 hypaxial region somite 22 semapv:crossSpeciesExactMatch TAO:0000771 semapv:UnspecifiedMatching 1:1 +ZFA:0000772 hypaxial region somite 25 semapv:crossSpeciesExactMatch TAO:0000772 semapv:UnspecifiedMatching 1:1 +ZFA:0000773 fast muscle cell somite 12 semapv:crossSpeciesExactMatch TAO:0000773 semapv:UnspecifiedMatching 1:1 +ZFA:0000774 hypaxial region somite 28 semapv:crossSpeciesExactMatch TAO:0000774 semapv:UnspecifiedMatching 1:1 +ZFA:0000775 hypaxial region somite 30 semapv:crossSpeciesExactMatch TAO:0000775 semapv:UnspecifiedMatching 1:1 +ZFA:0000776 hypaxial region somite 6 semapv:crossSpeciesExactMatch TAO:0000776 semapv:UnspecifiedMatching 1:1 +ZFA:0000777 hypaxial region somite 9 semapv:crossSpeciesExactMatch TAO:0000777 semapv:UnspecifiedMatching 1:1 +ZFA:0000778 spinal cord interneuron semapv:crossSpeciesExactMatch CL:0005000 semapv:UnspecifiedMatching 1:n +ZFA:0000778 spinal cord interneuron semapv:crossSpeciesExactMatch TAO:0000778 semapv:UnspecifiedMatching 1:n +ZFA:0000779 lateral forebrain bundle telencephalon semapv:crossSpeciesExactMatch TAO:0000779 semapv:UnspecifiedMatching 1:1 +ZFA:0000780 lateral wall diencephalic region semapv:crossSpeciesExactMatch TAO:0000780 semapv:UnspecifiedMatching 1:1 +ZFA:0000781 lateral wall rhombomere 1 semapv:crossSpeciesExactMatch TAO:0000781 semapv:UnspecifiedMatching 1:1 +ZFA:0000782 lateral wall rhombomere 4 semapv:crossSpeciesExactMatch TAO:0000782 semapv:UnspecifiedMatching 1:1 +ZFA:0000783 lateral wall rhombomere 7 semapv:crossSpeciesExactMatch TAO:0000783 semapv:UnspecifiedMatching 1:1 +ZFA:0000784 fast muscle cell somite 15 semapv:crossSpeciesExactMatch TAO:0000784 semapv:UnspecifiedMatching 1:1 +ZFA:0000785 lateral wall telencephalic region semapv:crossSpeciesExactMatch TAO:0000785 semapv:UnspecifiedMatching 1:1 +ZFA:0000786 medial migration pathway mesenchyme semapv:crossSpeciesExactMatch TAO:0000786 semapv:UnspecifiedMatching 1:1 +ZFA:0000787 mesenchyme derived from head neural crest semapv:crossSpeciesExactMatch TAO:0000787 semapv:UnspecifiedMatching 1:1 +ZFA:0000788 mesenchyme dorsal fin semapv:crossSpeciesExactMatch TAO:0000788 semapv:UnspecifiedMatching 1:1 +ZFA:0000789 mesoderm pectoral fin bud semapv:crossSpeciesExactMatch TAO:0000789 semapv:UnspecifiedMatching 1:1 +ZFA:0000790 muscle pioneer somite 10 semapv:crossSpeciesExactMatch TAO:0000790 semapv:UnspecifiedMatching 1:1 +ZFA:0000791 muscle pioneer somite 13 semapv:crossSpeciesExactMatch TAO:0000791 semapv:UnspecifiedMatching 1:1 +ZFA:0000792 muscle pioneer somite 16 semapv:crossSpeciesExactMatch TAO:0000792 semapv:UnspecifiedMatching 1:1 +ZFA:0000793 muscle pioneer somite 19 semapv:crossSpeciesExactMatch TAO:0000793 semapv:UnspecifiedMatching 1:1 +ZFA:0000794 muscle pioneer somite 22 semapv:crossSpeciesExactMatch TAO:0000794 semapv:UnspecifiedMatching 1:1 +ZFA:0000795 fast muscle cell somite 18 semapv:crossSpeciesExactMatch TAO:0000795 semapv:UnspecifiedMatching 1:1 +ZFA:0000796 muscle pioneer somite 25 semapv:crossSpeciesExactMatch TAO:0000796 semapv:UnspecifiedMatching 1:1 +ZFA:0000797 muscle pioneer somite 28 semapv:crossSpeciesExactMatch TAO:0000797 semapv:UnspecifiedMatching 1:1 +ZFA:0000798 muscle pioneer somite 30 semapv:crossSpeciesExactMatch TAO:0000798 semapv:UnspecifiedMatching 1:1 +ZFA:0000799 muscle pioneer somite 6 semapv:crossSpeciesExactMatch TAO:0000799 semapv:UnspecifiedMatching 1:1 +ZFA:0000800 muscle pioneer somite 9 semapv:crossSpeciesExactMatch TAO:0000800 semapv:UnspecifiedMatching 1:1 +ZFA:0000801 myotome somite 11 semapv:crossSpeciesExactMatch TAO:0000801 semapv:UnspecifiedMatching 1:1 +ZFA:0000802 myotome somite 15 semapv:crossSpeciesExactMatch TAO:0000802 semapv:UnspecifiedMatching 1:1 +ZFA:0000803 myotome somite 18 semapv:crossSpeciesExactMatch TAO:0000803 semapv:UnspecifiedMatching 1:1 +ZFA:0000804 myotome somite 20 semapv:crossSpeciesExactMatch TAO:0000804 semapv:UnspecifiedMatching 1:1 +ZFA:0000805 myotome somite 23 semapv:crossSpeciesExactMatch TAO:0000805 semapv:UnspecifiedMatching 1:1 +ZFA:0000806 fast muscle cell somite 20 semapv:crossSpeciesExactMatch TAO:0000806 semapv:UnspecifiedMatching 1:1 +ZFA:0000807 myotome somite 26 semapv:crossSpeciesExactMatch TAO:0000807 semapv:UnspecifiedMatching 1:1 +ZFA:0000808 myotome somite 29 semapv:crossSpeciesExactMatch TAO:0000808 semapv:UnspecifiedMatching 1:1 +ZFA:0000809 myotome somite 4 semapv:crossSpeciesExactMatch TAO:0000809 semapv:UnspecifiedMatching 1:1 +ZFA:0000810 myotome somite 7 semapv:crossSpeciesExactMatch TAO:0000810 semapv:UnspecifiedMatching 1:1 +ZFA:0000811 neural crest diencephalon semapv:crossSpeciesExactMatch TAO:0000811 semapv:UnspecifiedMatching 1:1 +ZFA:0000812 neural crest telencephalon semapv:crossSpeciesExactMatch TAO:0000812 semapv:UnspecifiedMatching 1:1 +ZFA:0000813 infraorbital lateral line neuromast semapv:crossSpeciesExactMatch TAO:0000813 semapv:UnspecifiedMatching 1:1 +ZFA:0000814 opercular lateral line neuromast semapv:crossSpeciesExactMatch TAO:0000814 semapv:UnspecifiedMatching 1:1 +ZFA:0000815 nucleus of the medial longitudinal fasciculus medulla oblongata semapv:crossSpeciesExactMatch TAO:0000815 semapv:UnspecifiedMatching 1:1 +ZFA:0000816 oral epithelium semapv:crossSpeciesExactMatch TAO:0000816 semapv:UnspecifiedMatching 1:1 +ZFA:0000817 fast muscle cell somite 23 semapv:crossSpeciesExactMatch TAO:0000817 semapv:UnspecifiedMatching 1:1 +ZFA:0000818 vagal neural crest semapv:crossSpeciesExactMatch TAO:0000818 semapv:UnspecifiedMatching 1:1 +ZFA:0000819 postcommissural nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0000819 semapv:UnspecifiedMatching 1:1 +ZFA:0000821 primary neuron hindbrain semapv:crossSpeciesExactMatch TAO:0000821 semapv:UnspecifiedMatching 1:1 +ZFA:0000822 rhombomere 2 semapv:crossSpeciesExactMatch TAO:0000822 semapv:UnspecifiedMatching 1:1 +ZFA:0000823 rhombomere 5 semapv:crossSpeciesExactMatch TAO:0000823 semapv:UnspecifiedMatching 1:1 +ZFA:0000824 roof plate rhombomere 2 semapv:crossSpeciesExactMatch TAO:0000824 semapv:UnspecifiedMatching 1:1 +ZFA:0000825 roof plate rhombomere 6 semapv:crossSpeciesExactMatch TAO:0000825 semapv:UnspecifiedMatching 1:1 +ZFA:0000826 central nucleus torus semicircularis semapv:crossSpeciesExactMatch TAO:0000826 semapv:UnspecifiedMatching 1:1 +ZFA:0000827 fast muscle cell somite 26 semapv:crossSpeciesExactMatch TAO:0000827 semapv:UnspecifiedMatching 1:1 +ZFA:0000828 roof plate rhombomere 5 semapv:crossSpeciesExactMatch TAO:0000828 semapv:UnspecifiedMatching 1:1 +ZFA:0000829 sclerotome somite 11 semapv:crossSpeciesExactMatch TAO:0000829 semapv:UnspecifiedMatching 1:1 +ZFA:0000830 sclerotome somite 14 semapv:crossSpeciesExactMatch TAO:0000830 semapv:UnspecifiedMatching 1:1 +ZFA:0000831 sclerotome somite 17 semapv:crossSpeciesExactMatch TAO:0000831 semapv:UnspecifiedMatching 1:1 +ZFA:0000832 sclerotome somite 2 semapv:crossSpeciesExactMatch TAO:0000832 semapv:UnspecifiedMatching 1:1 +ZFA:0000833 sclerotome somite 22 semapv:crossSpeciesExactMatch TAO:0000833 semapv:UnspecifiedMatching 1:1 +ZFA:0000834 sclerotome somite 25 semapv:crossSpeciesExactMatch TAO:0000834 semapv:UnspecifiedMatching 1:1 +ZFA:0000835 sclerotome somite 28 semapv:crossSpeciesExactMatch TAO:0000835 semapv:UnspecifiedMatching 1:1 +ZFA:0000836 sclerotome somite 30 semapv:crossSpeciesExactMatch TAO:0000836 semapv:UnspecifiedMatching 1:1 +ZFA:0000837 sclerotome somite 6 semapv:crossSpeciesExactMatch TAO:0000837 semapv:UnspecifiedMatching 1:1 +ZFA:0000838 fast muscle cell somite 29 semapv:crossSpeciesExactMatch TAO:0000838 semapv:UnspecifiedMatching 1:1 +ZFA:0000839 sclerotome somite 9 semapv:crossSpeciesExactMatch TAO:0000839 semapv:UnspecifiedMatching 1:1 +ZFA:0000840 slow muscle cell somite 11 semapv:crossSpeciesExactMatch TAO:0000840 semapv:UnspecifiedMatching 1:1 +ZFA:0000841 slow muscle cell somite 14 semapv:crossSpeciesExactMatch TAO:0000841 semapv:UnspecifiedMatching 1:1 +ZFA:0000842 slow muscle cell somite 17 semapv:crossSpeciesExactMatch TAO:0000842 semapv:UnspecifiedMatching 1:1 +ZFA:0000843 slow muscle cell somite 2 semapv:crossSpeciesExactMatch TAO:0000843 semapv:UnspecifiedMatching 1:1 +ZFA:0000844 slow muscle cell somite 22 semapv:crossSpeciesExactMatch TAO:0000844 semapv:UnspecifiedMatching 1:1 +ZFA:0000845 slow muscle cell somite 25 semapv:crossSpeciesExactMatch TAO:0000845 semapv:UnspecifiedMatching 1:1 +ZFA:0000846 slow muscle cell somite 28 semapv:crossSpeciesExactMatch TAO:0000846 semapv:UnspecifiedMatching 1:1 +ZFA:0000847 slow muscle cell somite 30 semapv:crossSpeciesExactMatch TAO:0000847 semapv:UnspecifiedMatching 1:1 +ZFA:0000848 slow muscle cell somite 6 semapv:crossSpeciesExactMatch TAO:0000848 semapv:UnspecifiedMatching 1:1 +ZFA:0000849 fast muscle cell somite 4 semapv:crossSpeciesExactMatch TAO:0000849 semapv:UnspecifiedMatching 1:1 +ZFA:0000850 slow muscle cell somite 9 semapv:crossSpeciesExactMatch TAO:0000850 semapv:UnspecifiedMatching 1:1 +ZFA:0000851 somite 12 semapv:crossSpeciesExactMatch TAO:0000851 semapv:UnspecifiedMatching 1:1 +ZFA:0000852 somite 15 semapv:crossSpeciesExactMatch TAO:0000852 semapv:UnspecifiedMatching 1:1 +ZFA:0000853 somite 18 semapv:crossSpeciesExactMatch TAO:0000853 semapv:UnspecifiedMatching 1:1 +ZFA:0000854 somite 21 semapv:crossSpeciesExactMatch TAO:0000854 semapv:UnspecifiedMatching 1:1 +ZFA:0000855 somite 24 semapv:crossSpeciesExactMatch TAO:0000855 semapv:UnspecifiedMatching 1:1 +ZFA:0000856 somite 28 semapv:crossSpeciesExactMatch TAO:0000856 semapv:UnspecifiedMatching 1:1 +ZFA:0000857 somite 4 semapv:crossSpeciesExactMatch TAO:0000857 semapv:UnspecifiedMatching 1:1 +ZFA:0000858 somite 8 semapv:crossSpeciesExactMatch TAO:0000858 semapv:UnspecifiedMatching 1:1 +ZFA:0000859 specialized hemal arch and spine semapv:crossSpeciesExactMatch TAO:0000859 semapv:UnspecifiedMatching 1:1 +ZFA:0000860 fast muscle cell somite 7 semapv:crossSpeciesExactMatch TAO:0000860 semapv:UnspecifiedMatching 1:1 +ZFA:0000861 ventral oblique extraocular muscle semapv:crossSpeciesExactMatch TAO:0000861 semapv:UnspecifiedMatching 1:1 +ZFA:0000862 caudal fin skeleton semapv:crossSpeciesExactMatch TAO:0000862 semapv:UnspecifiedMatching 1:1 +ZFA:0000863 dermatocranium semapv:crossSpeciesExactMatch TAO:0000863 semapv:UnspecifiedMatching 1:1 +ZFA:0000864 epaxial region somite 1 semapv:crossSpeciesExactMatch TAO:0000864 semapv:UnspecifiedMatching 1:1 +ZFA:0000865 epaxial region somite 12 semapv:crossSpeciesExactMatch TAO:0000865 semapv:UnspecifiedMatching 1:1 +ZFA:0000866 epaxial region somite 15 semapv:crossSpeciesExactMatch TAO:0000866 semapv:UnspecifiedMatching 1:1 +ZFA:0000867 epaxial region somite 18 semapv:crossSpeciesExactMatch TAO:0000867 semapv:UnspecifiedMatching 1:1 +ZFA:0000868 epaxial region somite 20 semapv:crossSpeciesExactMatch TAO:0000868 semapv:UnspecifiedMatching 1:1 +ZFA:0000869 epaxial region somite 23 semapv:crossSpeciesExactMatch TAO:0000869 semapv:UnspecifiedMatching 1:1 +ZFA:0000870 epaxial region somite 26 semapv:crossSpeciesExactMatch TAO:0000870 semapv:UnspecifiedMatching 1:1 +ZFA:0000871 floor plate diencephalic region semapv:crossSpeciesExactMatch TAO:0000871 semapv:UnspecifiedMatching 1:1 +ZFA:0000872 epaxial region somite 29 semapv:crossSpeciesExactMatch TAO:0000872 semapv:UnspecifiedMatching 1:1 +ZFA:0000873 epaxial region somite 4 semapv:crossSpeciesExactMatch TAO:0000873 semapv:UnspecifiedMatching 1:1 +ZFA:0000874 epaxial region somite 7 semapv:crossSpeciesExactMatch TAO:0000874 semapv:UnspecifiedMatching 1:1 +ZFA:0000876 fast muscle cell somite 11 semapv:crossSpeciesExactMatch TAO:0000876 semapv:UnspecifiedMatching 1:1 +ZFA:0000877 fast muscle cell somite 14 semapv:crossSpeciesExactMatch TAO:0000877 semapv:UnspecifiedMatching 1:1 +ZFA:0000878 fast muscle cell somite 17 semapv:crossSpeciesExactMatch TAO:0000878 semapv:UnspecifiedMatching 1:1 +ZFA:0000879 fast muscle cell somite 2 semapv:crossSpeciesExactMatch TAO:0000879 semapv:UnspecifiedMatching 1:1 +ZFA:0000880 fast muscle cell somite 22 semapv:crossSpeciesExactMatch TAO:0000880 semapv:UnspecifiedMatching 1:1 +ZFA:0000881 fast muscle cell somite 25 semapv:crossSpeciesExactMatch TAO:0000881 semapv:UnspecifiedMatching 1:1 +ZFA:0000882 floor plate rhombomere 1 semapv:crossSpeciesExactMatch TAO:0000882 semapv:UnspecifiedMatching 1:1 +ZFA:0000883 fast muscle cell somite 28 semapv:crossSpeciesExactMatch TAO:0000883 semapv:UnspecifiedMatching 1:1 +ZFA:0000884 fast muscle cell somite 30 semapv:crossSpeciesExactMatch TAO:0000884 semapv:UnspecifiedMatching 1:1 +ZFA:0000885 fast muscle cell somite 6 semapv:crossSpeciesExactMatch TAO:0000885 semapv:UnspecifiedMatching 1:1 +ZFA:0000886 fast muscle cell somite 9 semapv:crossSpeciesExactMatch TAO:0000886 semapv:UnspecifiedMatching 1:1 +ZFA:0000887 floor plate neural rod semapv:crossSpeciesExactMatch TAO:0000887 semapv:UnspecifiedMatching 1:1 +ZFA:0000888 floor plate rhombomere 3 semapv:crossSpeciesExactMatch TAO:0000888 semapv:UnspecifiedMatching 1:1 +ZFA:0000889 floor plate rhombomere 6 semapv:crossSpeciesExactMatch TAO:0000889 semapv:UnspecifiedMatching 1:1 +ZFA:0000890 floor plate spinal cord region semapv:crossSpeciesExactMatch TAO:0000890 semapv:UnspecifiedMatching 1:1 +ZFA:0000891 hypaxial region somite 1 semapv:crossSpeciesExactMatch TAO:0000891 semapv:UnspecifiedMatching 1:1 +ZFA:0000892 hypaxial region somite 12 semapv:crossSpeciesExactMatch TAO:0000892 semapv:UnspecifiedMatching 1:1 +ZFA:0000893 floor plate rhombomere 4 semapv:crossSpeciesExactMatch TAO:0000893 semapv:UnspecifiedMatching 1:1 +ZFA:0000894 hypaxial region somite 15 semapv:crossSpeciesExactMatch TAO:0000894 semapv:UnspecifiedMatching 1:1 +ZFA:0000895 hypaxial region somite 18 semapv:crossSpeciesExactMatch TAO:0000895 semapv:UnspecifiedMatching 1:1 +ZFA:0000896 hypaxial region somite 20 semapv:crossSpeciesExactMatch TAO:0000896 semapv:UnspecifiedMatching 1:1 +ZFA:0000897 hypaxial region somite 23 semapv:crossSpeciesExactMatch TAO:0000897 semapv:UnspecifiedMatching 1:1 +ZFA:0000898 hypaxial region somite 26 semapv:crossSpeciesExactMatch TAO:0000898 semapv:UnspecifiedMatching 1:1 +ZFA:0000899 hypaxial region somite 29 semapv:crossSpeciesExactMatch TAO:0000899 semapv:UnspecifiedMatching 1:1 +ZFA:0000900 hypaxial region somite 4 semapv:crossSpeciesExactMatch TAO:0000900 semapv:UnspecifiedMatching 1:1 +ZFA:0000901 hypaxial region somite 7 semapv:crossSpeciesExactMatch TAO:0000901 semapv:UnspecifiedMatching 1:1 +ZFA:0000902 hypural muscle semapv:crossSpeciesExactMatch TAO:0000902 semapv:UnspecifiedMatching 1:1 +ZFA:0000903 interpeduncular nucleus tegmentum semapv:crossSpeciesExactMatch TAO:0000903 semapv:UnspecifiedMatching 1:1 +ZFA:0000904 floor plate rhombomere 7 semapv:crossSpeciesExactMatch TAO:0000904 semapv:UnspecifiedMatching 1:1 +ZFA:0000905 lateral mesenchyme derived from mesoderm semapv:crossSpeciesExactMatch TAO:0000905 semapv:UnspecifiedMatching 1:1 +ZFA:0000906 lateral wall midbrain region semapv:crossSpeciesExactMatch TAO:0000906 semapv:UnspecifiedMatching 1:1 +ZFA:0000907 lateral wall rhombomere 2 semapv:crossSpeciesExactMatch TAO:0000907 semapv:UnspecifiedMatching 1:1 +ZFA:0000908 lateral wall rhombomere 5 semapv:crossSpeciesExactMatch TAO:0000908 semapv:UnspecifiedMatching 1:1 +ZFA:0000909 lateral wall rhombomere 8 semapv:crossSpeciesExactMatch TAO:0000909 semapv:UnspecifiedMatching 1:1 +ZFA:0000910 medial forebrain bundle telencephalon semapv:crossSpeciesExactMatch TAO:0000910 semapv:UnspecifiedMatching 1:1 +ZFA:0000912 mesenchyme median fin fold semapv:crossSpeciesExactMatch TAO:0000912 semapv:UnspecifiedMatching 1:1 +ZFA:0000913 molecular layer valvula cerebelli semapv:crossSpeciesExactMatch TAO:0000913 semapv:UnspecifiedMatching 1:1 +ZFA:0000914 floor plate telencephalic region semapv:crossSpeciesExactMatch TAO:0000914 semapv:UnspecifiedMatching 1:1 +ZFA:0000915 muscle pioneer somite 11 semapv:crossSpeciesExactMatch TAO:0000915 semapv:UnspecifiedMatching 1:1 +ZFA:0000916 muscle pioneer somite 14 semapv:crossSpeciesExactMatch TAO:0000916 semapv:UnspecifiedMatching 1:1 +ZFA:0000917 muscle pioneer somite 17 semapv:crossSpeciesExactMatch TAO:0000917 semapv:UnspecifiedMatching 1:1 +ZFA:0000918 muscle pioneer somite 20 semapv:crossSpeciesExactMatch TAO:0000918 semapv:UnspecifiedMatching 1:1 +ZFA:0000919 muscle pioneer somite 23 semapv:crossSpeciesExactMatch TAO:0000919 semapv:UnspecifiedMatching 1:1 +ZFA:0000920 muscle pioneer somite 26 semapv:crossSpeciesExactMatch TAO:0000920 semapv:UnspecifiedMatching 1:1 +ZFA:0000921 muscle pioneer somite 29 semapv:crossSpeciesExactMatch TAO:0000921 semapv:UnspecifiedMatching 1:1 +ZFA:0000922 muscle pioneer somite 4 semapv:crossSpeciesExactMatch TAO:0000922 semapv:UnspecifiedMatching 1:1 +ZFA:0000923 muscle pioneer somite 7 semapv:crossSpeciesExactMatch TAO:0000923 semapv:UnspecifiedMatching 1:1 +ZFA:0000924 myotome somite 1 semapv:crossSpeciesExactMatch TAO:0000924 semapv:UnspecifiedMatching 1:1 +ZFA:0000925 hypaxial region somite 10 semapv:crossSpeciesExactMatch TAO:0000925 semapv:UnspecifiedMatching 1:1 +ZFA:0000926 myotome somite 12 semapv:crossSpeciesExactMatch TAO:0000926 semapv:UnspecifiedMatching 1:1 +ZFA:0000927 myotome somite 16 semapv:crossSpeciesExactMatch TAO:0000927 semapv:UnspecifiedMatching 1:1 +ZFA:0000928 myotome somite 19 semapv:crossSpeciesExactMatch TAO:0000928 semapv:UnspecifiedMatching 1:1 +ZFA:0000929 myotome somite 21 semapv:crossSpeciesExactMatch TAO:0000929 semapv:UnspecifiedMatching 1:1 +ZFA:0000930 myotome somite 24 semapv:crossSpeciesExactMatch TAO:0000930 semapv:UnspecifiedMatching 1:1 +ZFA:0000931 myotome somite 27 semapv:crossSpeciesExactMatch TAO:0000931 semapv:UnspecifiedMatching 1:1 +ZFA:0000932 myotome somite 3 semapv:crossSpeciesExactMatch TAO:0000932 semapv:UnspecifiedMatching 1:1 +ZFA:0000933 myotome somite 5 semapv:crossSpeciesExactMatch TAO:0000933 semapv:UnspecifiedMatching 1:1 +ZFA:0000934 myotome somite 8 semapv:crossSpeciesExactMatch TAO:0000934 semapv:UnspecifiedMatching 1:1 +ZFA:0000935 neural crest midbrain semapv:crossSpeciesExactMatch TAO:0000935 semapv:UnspecifiedMatching 1:1 +ZFA:0000936 dorsal fin distal radial semapv:crossSpeciesExactMatch TAO:0000936 semapv:UnspecifiedMatching 1:1 +ZFA:0000937 hypaxial region somite 13 semapv:crossSpeciesExactMatch TAO:0000937 semapv:UnspecifiedMatching 1:1 +ZFA:0000938 central canal semapv:crossSpeciesExactMatch TAO:0000938 semapv:UnspecifiedMatching 1:1 +ZFA:0000939 middle lateral line neuromast semapv:crossSpeciesExactMatch TAO:0000939 semapv:UnspecifiedMatching 1:1 +ZFA:0000940 posterior lateral line neuromast semapv:crossSpeciesExactMatch TAO:0000940 semapv:UnspecifiedMatching 1:1 +ZFA:0000941 nucleus of the medial longitudinal fasciculus synencephalon semapv:crossSpeciesExactMatch TAO:0000941 semapv:UnspecifiedMatching 1:1 +ZFA:0000943 pectoral fin skeleton semapv:crossSpeciesExactMatch TAO:0000943 semapv:UnspecifiedMatching 1:1 +ZFA:0000944 posterior lateral line semapv:crossSpeciesExactMatch TAO:0000944 semapv:UnspecifiedMatching 1:1 +ZFA:0000946 hypaxial region somite 16 semapv:crossSpeciesExactMatch TAO:0000946 semapv:UnspecifiedMatching 1:1 +ZFA:0000947 dorsal fin proximal radial semapv:crossSpeciesExactMatch TAO:0000947 semapv:UnspecifiedMatching 1:1 +ZFA:0000948 rhombomere 3 semapv:crossSpeciesExactMatch TAO:0000948 semapv:UnspecifiedMatching 1:1 +ZFA:0000949 rhombomere 7 semapv:crossSpeciesExactMatch TAO:0000949 semapv:UnspecifiedMatching 1:1 +ZFA:0000950 roof plate rhombomere 3 semapv:crossSpeciesExactMatch TAO:0000950 semapv:UnspecifiedMatching 1:1 +ZFA:0000951 roof plate rhombomere 7 semapv:crossSpeciesExactMatch TAO:0000951 semapv:UnspecifiedMatching 1:1 +ZFA:0000952 sclerotome somite 1 semapv:crossSpeciesExactMatch TAO:0000952 semapv:UnspecifiedMatching 1:1 +ZFA:0000953 sclerotome somite 12 semapv:crossSpeciesExactMatch TAO:0000953 semapv:UnspecifiedMatching 1:1 +ZFA:0000954 sclerotome somite 15 semapv:crossSpeciesExactMatch TAO:0000954 semapv:UnspecifiedMatching 1:1 +ZFA:0000955 sclerotome somite 18 semapv:crossSpeciesExactMatch TAO:0000955 semapv:UnspecifiedMatching 1:1 +ZFA:0000956 sclerotome somite 20 semapv:crossSpeciesExactMatch TAO:0000956 semapv:UnspecifiedMatching 1:1 +ZFA:0000957 hypaxial region somite 19 semapv:crossSpeciesExactMatch TAO:0000957 semapv:UnspecifiedMatching 1:1 +ZFA:0000958 sclerotome somite 23 semapv:crossSpeciesExactMatch TAO:0000958 semapv:UnspecifiedMatching 1:1 +ZFA:0000959 sclerotome somite 26 semapv:crossSpeciesExactMatch TAO:0000959 semapv:UnspecifiedMatching 1:1 +ZFA:0000960 sclerotome somite 29 semapv:crossSpeciesExactMatch TAO:0000960 semapv:UnspecifiedMatching 1:1 +ZFA:0000961 sclerotome somite 4 semapv:crossSpeciesExactMatch TAO:0000961 semapv:UnspecifiedMatching 1:1 +ZFA:0000962 sclerotome somite 7 semapv:crossSpeciesExactMatch TAO:0000962 semapv:UnspecifiedMatching 1:1 +ZFA:0000963 slow muscle cell somite 1 semapv:crossSpeciesExactMatch TAO:0000963 semapv:UnspecifiedMatching 1:1 +ZFA:0000964 slow muscle cell somite 12 semapv:crossSpeciesExactMatch TAO:0000964 semapv:UnspecifiedMatching 1:1 +ZFA:0000965 slow muscle cell somite 15 semapv:crossSpeciesExactMatch TAO:0000965 semapv:UnspecifiedMatching 1:1 +ZFA:0000966 slow muscle cell somite 18 semapv:crossSpeciesExactMatch TAO:0000966 semapv:UnspecifiedMatching 1:1 +ZFA:0000967 slow muscle cell somite 20 semapv:crossSpeciesExactMatch TAO:0000967 semapv:UnspecifiedMatching 1:1 +ZFA:0000968 hypaxial region somite 21 semapv:crossSpeciesExactMatch TAO:0000968 semapv:UnspecifiedMatching 1:1 +ZFA:0000969 slow muscle cell somite 23 semapv:crossSpeciesExactMatch TAO:0000969 semapv:UnspecifiedMatching 1:1 +ZFA:0000970 slow muscle cell somite 26 semapv:crossSpeciesExactMatch TAO:0000970 semapv:UnspecifiedMatching 1:1 +ZFA:0000971 slow muscle cell somite 29 semapv:crossSpeciesExactMatch TAO:0000971 semapv:UnspecifiedMatching 1:1 +ZFA:0000972 slow muscle cell somite 4 semapv:crossSpeciesExactMatch TAO:0000972 semapv:UnspecifiedMatching 1:1 +ZFA:0000973 slow muscle cell somite 7 semapv:crossSpeciesExactMatch TAO:0000973 semapv:UnspecifiedMatching 1:1 +ZFA:0000974 somite 10 semapv:crossSpeciesExactMatch TAO:0000974 semapv:UnspecifiedMatching 1:1 +ZFA:0000975 somite 13 semapv:crossSpeciesExactMatch TAO:0000975 semapv:UnspecifiedMatching 1:1 +ZFA:0000976 somite 16 semapv:crossSpeciesExactMatch TAO:0000976 semapv:UnspecifiedMatching 1:1 +ZFA:0000977 somite 19 semapv:crossSpeciesExactMatch TAO:0000977 semapv:UnspecifiedMatching 1:1 +ZFA:0000978 somite 22 semapv:crossSpeciesExactMatch TAO:0000978 semapv:UnspecifiedMatching 1:1 +ZFA:0000979 hypaxial region somite 24 semapv:crossSpeciesExactMatch TAO:0000979 semapv:UnspecifiedMatching 1:1 +ZFA:0000980 somite 25 semapv:crossSpeciesExactMatch TAO:0000980 semapv:UnspecifiedMatching 1:1 +ZFA:0000981 somite 29 semapv:crossSpeciesExactMatch TAO:0000981 semapv:UnspecifiedMatching 1:1 +ZFA:0000982 somite 6 semapv:crossSpeciesExactMatch TAO:0000982 semapv:UnspecifiedMatching 1:1 +ZFA:0000983 somite 9 semapv:crossSpeciesExactMatch TAO:0000983 semapv:UnspecifiedMatching 1:1 +ZFA:0000984 superior reticular formation tegmentum semapv:crossSpeciesExactMatch TAO:0000984 semapv:UnspecifiedMatching 1:1 +ZFA:0000985 ventral rhombencephalic commissure medulla oblongata semapv:crossSpeciesExactMatch TAO:0000985 semapv:UnspecifiedMatching 1:1 +ZFA:0000986 hypaxial region somite 27 semapv:crossSpeciesExactMatch TAO:0000986 semapv:UnspecifiedMatching 1:1 +ZFA:0000987 hypaxial region somite 3 semapv:crossSpeciesExactMatch TAO:0000987 semapv:UnspecifiedMatching 1:1 +ZFA:0000988 hypaxial region somite 5 semapv:crossSpeciesExactMatch TAO:0000988 semapv:UnspecifiedMatching 1:1 +ZFA:0000989 hypaxial region somite 8 semapv:crossSpeciesExactMatch TAO:0000989 semapv:UnspecifiedMatching 1:1 +ZFA:0000990 intermediate mesenchyme semapv:crossSpeciesExactMatch TAO:0000990 semapv:UnspecifiedMatching 1:1 +ZFA:0000991 epaxial region somite 10 semapv:crossSpeciesExactMatch TAO:0000991 semapv:UnspecifiedMatching 1:1 +ZFA:0000992 lateral migration pathway mesenchyme semapv:crossSpeciesExactMatch TAO:0000992 semapv:UnspecifiedMatching 1:1 +ZFA:0000993 lateral wall neural rod semapv:crossSpeciesExactMatch TAO:0000993 semapv:UnspecifiedMatching 1:1 +ZFA:0000994 lateral wall rhombomere 3 semapv:crossSpeciesExactMatch TAO:0000994 semapv:UnspecifiedMatching 1:1 +ZFA:0000995 lateral wall rhombomere 6 semapv:crossSpeciesExactMatch TAO:0000995 semapv:UnspecifiedMatching 1:1 +ZFA:0000996 lateral wall spinal cord semapv:crossSpeciesExactMatch TAO:0000996 semapv:UnspecifiedMatching 1:1 +ZFA:0000997 medial funicular nucleus trigeminal nucleus semapv:crossSpeciesExactMatch TAO:0000997 semapv:UnspecifiedMatching 1:1 +ZFA:0000998 mesenchyme derived from head mesoderm semapv:crossSpeciesExactMatch TAO:0000998 semapv:UnspecifiedMatching 1:1 +ZFA:0000999 mesenchyme derived from trunk neural crest semapv:crossSpeciesExactMatch TAO:0000999 semapv:UnspecifiedMatching 1:1 +ZFA:0001000 mesenchyme pectoral fin semapv:crossSpeciesExactMatch TAO:0001000 semapv:UnspecifiedMatching 1:1 +ZFA:0001001 epaxial region somite 13 semapv:crossSpeciesExactMatch TAO:0001001 semapv:UnspecifiedMatching 1:1 +ZFA:0001003 muscle pioneer somite 12 semapv:crossSpeciesExactMatch TAO:0001003 semapv:UnspecifiedMatching 1:1 +ZFA:0001004 muscle pioneer somite 15 semapv:crossSpeciesExactMatch TAO:0001004 semapv:UnspecifiedMatching 1:1 +ZFA:0001005 muscle pioneer somite 18 semapv:crossSpeciesExactMatch TAO:0001005 semapv:UnspecifiedMatching 1:1 +ZFA:0001006 muscle pioneer somite 21 semapv:crossSpeciesExactMatch TAO:0001006 semapv:UnspecifiedMatching 1:1 +ZFA:0001007 muscle pioneer somite 24 semapv:crossSpeciesExactMatch TAO:0001007 semapv:UnspecifiedMatching 1:1 +ZFA:0001008 muscle pioneer somite 27 semapv:crossSpeciesExactMatch TAO:0001008 semapv:UnspecifiedMatching 1:1 +ZFA:0001009 muscle pioneer somite 3 semapv:crossSpeciesExactMatch TAO:0001009 semapv:UnspecifiedMatching 1:1 +ZFA:0001010 muscle pioneer somite 5 semapv:crossSpeciesExactMatch TAO:0001010 semapv:UnspecifiedMatching 1:1 +ZFA:0001011 muscle pioneer somite 8 semapv:crossSpeciesExactMatch TAO:0001011 semapv:UnspecifiedMatching 1:1 +ZFA:0001012 epaxial region somite 16 semapv:crossSpeciesExactMatch TAO:0001012 semapv:UnspecifiedMatching 1:1 +ZFA:0001013 myotome somite 10 semapv:crossSpeciesExactMatch TAO:0001013 semapv:UnspecifiedMatching 1:1 +ZFA:0001014 myotome somite 13 semapv:crossSpeciesExactMatch TAO:0001014 semapv:UnspecifiedMatching 1:1 +ZFA:0001015 myotome somite 17 semapv:crossSpeciesExactMatch TAO:0001015 semapv:UnspecifiedMatching 1:1 +ZFA:0001016 myotome somite 2 semapv:crossSpeciesExactMatch TAO:0001016 semapv:UnspecifiedMatching 1:1 +ZFA:0001017 myotome somite 22 semapv:crossSpeciesExactMatch TAO:0001017 semapv:UnspecifiedMatching 1:1 +ZFA:0001018 myotome somite 25 semapv:crossSpeciesExactMatch TAO:0001018 semapv:UnspecifiedMatching 1:1 +ZFA:0001019 myotome somite 28 semapv:crossSpeciesExactMatch TAO:0001019 semapv:UnspecifiedMatching 1:1 +ZFA:0001020 myotome somite 30 semapv:crossSpeciesExactMatch TAO:0001020 semapv:UnspecifiedMatching 1:1 +ZFA:0001021 myotome somite 6 semapv:crossSpeciesExactMatch TAO:0001021 semapv:UnspecifiedMatching 1:1 +ZFA:0001022 myotome somite 9 semapv:crossSpeciesExactMatch TAO:0001022 semapv:UnspecifiedMatching 1:1 +ZFA:0001023 epaxial region somite 19 semapv:crossSpeciesExactMatch TAO:0001023 semapv:UnspecifiedMatching 1:1 +ZFA:0001024 trunk neural crest semapv:crossSpeciesExactMatch TAO:0001024 semapv:UnspecifiedMatching 1:1 +ZFA:0001025 occipital lateral line neuromast semapv:crossSpeciesExactMatch TAO:0001025 semapv:UnspecifiedMatching 1:1 +ZFA:0001026 supraorbital lateral line neuromast semapv:crossSpeciesExactMatch TAO:0001026 semapv:UnspecifiedMatching 1:1 +ZFA:0001027 oral cavity semapv:crossSpeciesExactMatch TAO:0001027 semapv:UnspecifiedMatching 1:1 +ZFA:0001028 hypurapophysis semapv:crossSpeciesExactMatch TAO:0001028 semapv:UnspecifiedMatching 1:1 +ZFA:0001029 inner limiting membrane semapv:crossSpeciesExactMatch TAO:0001029 semapv:UnspecifiedMatching 1:1 +ZFA:0001030 epaxial region somite 21 semapv:crossSpeciesExactMatch TAO:0001030 semapv:UnspecifiedMatching 1:1 +ZFA:0001031 rhombomere 1 semapv:crossSpeciesExactMatch TAO:0001031 semapv:UnspecifiedMatching 1:1 +ZFA:0001032 rhombomere 4 semapv:crossSpeciesExactMatch TAO:0001032 semapv:UnspecifiedMatching 1:1 +ZFA:0001033 roof plate rhombomere 1 semapv:crossSpeciesExactMatch TAO:0001033 semapv:UnspecifiedMatching 1:1 +ZFA:0001034 roof plate rhombomere 4 semapv:crossSpeciesExactMatch TAO:0001034 semapv:UnspecifiedMatching 1:1 +ZFA:0001035 roof plate rhombomere 8 semapv:crossSpeciesExactMatch TAO:0001035 semapv:UnspecifiedMatching 1:1 +ZFA:0001036 sclerotome somite 10 semapv:crossSpeciesExactMatch TAO:0001036 semapv:UnspecifiedMatching 1:1 +ZFA:0001037 sclerotome somite 13 semapv:crossSpeciesExactMatch TAO:0001037 semapv:UnspecifiedMatching 1:1 +ZFA:0001038 sclerotome somite 16 semapv:crossSpeciesExactMatch TAO:0001038 semapv:UnspecifiedMatching 1:1 +ZFA:0001039 sclerotome somite 19 semapv:crossSpeciesExactMatch TAO:0001039 semapv:UnspecifiedMatching 1:1 +ZFA:0001040 epaxial region somite 24 semapv:crossSpeciesExactMatch TAO:0001040 semapv:UnspecifiedMatching 1:1 +ZFA:0001041 sclerotome somite 21 semapv:crossSpeciesExactMatch TAO:0001041 semapv:UnspecifiedMatching 1:1 +ZFA:0001042 sclerotome somite 24 semapv:crossSpeciesExactMatch TAO:0001042 semapv:UnspecifiedMatching 1:1 +ZFA:0001043 sclerotome somite 27 semapv:crossSpeciesExactMatch TAO:0001043 semapv:UnspecifiedMatching 1:1 +ZFA:0001044 sclerotome somite 3 semapv:crossSpeciesExactMatch TAO:0001044 semapv:UnspecifiedMatching 1:1 +ZFA:0001045 sclerotome somite 5 semapv:crossSpeciesExactMatch TAO:0001045 semapv:UnspecifiedMatching 1:1 +ZFA:0001046 sclerotome somite 8 semapv:crossSpeciesExactMatch TAO:0001046 semapv:UnspecifiedMatching 1:1 +ZFA:0001047 slow muscle cell somite 10 semapv:crossSpeciesExactMatch TAO:0001047 semapv:UnspecifiedMatching 1:1 +ZFA:0001048 slow muscle cell somite 13 semapv:crossSpeciesExactMatch TAO:0001048 semapv:UnspecifiedMatching 1:1 +ZFA:0001049 slow muscle cell somite 16 semapv:crossSpeciesExactMatch TAO:0001049 semapv:UnspecifiedMatching 1:1 +ZFA:0001050 slow muscle cell somite 19 semapv:crossSpeciesExactMatch TAO:0001050 semapv:UnspecifiedMatching 1:1 +ZFA:0001051 caudal division of the internal carotid artery semapv:crossSpeciesExactMatch TAO:0001051 semapv:UnspecifiedMatching 1:1 +ZFA:0001052 primordial hindbrain channel semapv:crossSpeciesExactMatch TAO:0001052 semapv:UnspecifiedMatching 1:1 +ZFA:0001053 primitive internal carotid artery semapv:crossSpeciesExactMatch TAO:0001053 semapv:UnspecifiedMatching 1:1 +ZFA:0001054 lateral dorsal aorta semapv:crossSpeciesExactMatch TAO:0001054 semapv:UnspecifiedMatching 1:1 +ZFA:0001055 pronephric duct opening semapv:crossSpeciesExactMatch TAO:0001055 semapv:UnspecifiedMatching 1:1 +ZFA:0001056 myotome semapv:crossSpeciesExactMatch TAO:0001056 semapv:UnspecifiedMatching 1:1 +ZFA:0001057 intersegmental vein semapv:crossSpeciesExactMatch TAO:0001057 semapv:UnspecifiedMatching 1:1 +ZFA:0001058 caudal fin semapv:crossSpeciesExactMatch TAO:0001058 semapv:UnspecifiedMatching 1:1 +ZFA:0001059 cranial division of the internal carotid artery semapv:crossSpeciesExactMatch TAO:0001059 semapv:UnspecifiedMatching 1:1 +ZFA:0001060 basidorsal semapv:crossSpeciesExactMatch TAO:0001060 semapv:UnspecifiedMatching 1:1 +ZFA:0001061 intersegmental artery semapv:crossSpeciesExactMatch TAO:0001061 semapv:UnspecifiedMatching 1:1 +ZFA:0001062 primitive mesencephalic artery semapv:crossSpeciesExactMatch TAO:0001062 semapv:UnspecifiedMatching 1:1 +ZFA:0001063 posterior caudal vein semapv:crossSpeciesExactMatch TAO:0001063 semapv:UnspecifiedMatching 1:1 +ZFA:0001064 rhombomere semapv:crossSpeciesExactMatch TAO:0001064 semapv:UnspecifiedMatching 1:1 +ZFA:0001065 lateral mesoderm semapv:crossSpeciesExactMatch TAO:0001065 semapv:UnspecifiedMatching 1:1 +ZFA:0001066 neural arch semapv:crossSpeciesExactMatch TAO:0001066 semapv:UnspecifiedMatching 1:1 +ZFA:0001067 anterior cerebral vein semapv:crossSpeciesExactMatch TAO:0001067 semapv:UnspecifiedMatching 1:1 +ZFA:0001068 mesencephalic artery semapv:crossSpeciesExactMatch TAO:0001068 semapv:UnspecifiedMatching 1:1 +ZFA:0001069 ventral fin fold semapv:crossSpeciesExactMatch TAO:0001069 semapv:UnspecifiedMatching 1:1 +ZFA:0001070 presumptive pronephric mesoderm semapv:crossSpeciesExactMatch TAO:0001070 semapv:UnspecifiedMatching 1:1 +ZFA:0001071 presumptive neural retina semapv:crossSpeciesExactMatch TAO:0001071 semapv:UnspecifiedMatching 1:1 +ZFA:0001072 thyroid follicle semapv:crossSpeciesExactMatch TAO:0001072 semapv:UnspecifiedMatching 1:1 +ZFA:0001073 axial vasculature semapv:crossSpeciesExactMatch TAO:0001073 semapv:UnspecifiedMatching 1:1 +ZFA:0001074 taste bud semapv:crossSpeciesExactMatch TAO:0001074 semapv:UnspecifiedMatching 1:1 +ZFA:0001075 choroidal fissure semapv:crossSpeciesExactMatch TAO:0001075 semapv:UnspecifiedMatching 1:1 +ZFA:0001076 intestinal bulb semapv:crossSpeciesExactMatch TAO:0001076 semapv:UnspecifiedMatching 1:1 +ZFA:0001077 thymus primordium semapv:crossSpeciesExactMatch TAO:0001077 semapv:UnspecifiedMatching 1:1 +ZFA:0001078 thymus semapv:crossSpeciesExactMatch TAO:0001078 semapv:UnspecifiedMatching 1:1 +ZFA:0001080 sclerotome semapv:crossSpeciesExactMatch TAO:0001080 semapv:UnspecifiedMatching 1:1 +ZFA:0001081 thyroid primordium semapv:crossSpeciesExactMatch TAO:0001081 semapv:UnspecifiedMatching 1:1 +ZFA:0001082 chordo neural hinge semapv:crossSpeciesExactMatch TAO:0001082 semapv:UnspecifiedMatching 1:1 +ZFA:0001083 ventricular zone semapv:crossSpeciesExactMatch TAO:0001083 semapv:UnspecifiedMatching 1:1 +ZFA:0001084 epaxial myotome region semapv:crossSpeciesExactMatch TAO:0001084 semapv:UnspecifiedMatching 1:1 +ZFA:0001085 hypaxial myotome region semapv:crossSpeciesExactMatch TAO:0001085 semapv:UnspecifiedMatching 1:1 +ZFA:0001086 muscle pioneer semapv:crossSpeciesExactMatch TAO:0001086 semapv:UnspecifiedMatching 1:1 +ZFA:0001089 myoseptum semapv:crossSpeciesExactMatch TAO:0001089 semapv:UnspecifiedMatching 1:1 +ZFA:0001093 unspecified semapv:crossSpeciesExactMatch TAO:0001093 semapv:UnspecifiedMatching 1:1 +ZFA:0001094 whole organism semapv:crossSpeciesExactMatch CARO:0000012 semapv:UnspecifiedMatching 1:n +ZFA:0001094 whole organism semapv:crossSpeciesExactMatch TAO:0001094 semapv:UnspecifiedMatching 1:n +ZFA:0001095 immature macula semapv:crossSpeciesExactMatch TAO:0001095 semapv:UnspecifiedMatching 1:1 +ZFA:0001096 immature anterior macula semapv:crossSpeciesExactMatch TAO:0001096 semapv:UnspecifiedMatching 1:1 +ZFA:0001097 immature posterior macula semapv:crossSpeciesExactMatch TAO:0001097 semapv:UnspecifiedMatching 1:1 +ZFA:0001098 immature hair cell anterior macula semapv:crossSpeciesExactMatch TAO:0001098 semapv:UnspecifiedMatching 1:1 +ZFA:0001099 immature hair cell posterior macula semapv:crossSpeciesExactMatch TAO:0001099 semapv:UnspecifiedMatching 1:1 +ZFA:0001100 hepatic duct semapv:crossSpeciesExactMatch TAO:0001100 semapv:UnspecifiedMatching 1:1 +ZFA:0001101 gustatory system semapv:crossSpeciesExactMatch TAO:0001101 semapv:UnspecifiedMatching 1:1 +ZFA:0001104 pharyngeal endoderm semapv:crossSpeciesExactMatch TAO:0001104 semapv:UnspecifiedMatching 1:1 +ZFA:0001105 embryonic structure semapv:crossSpeciesExactMatch TAO:0001105 semapv:UnspecifiedMatching 1:1 +ZFA:0001106 pharyngeal pouch semapv:crossSpeciesExactMatch TAO:0001106 semapv:UnspecifiedMatching 1:1 +ZFA:0001107 internal gill bud semapv:crossSpeciesExactMatch TAO:0001107 semapv:UnspecifiedMatching 1:1 +ZFA:0001108 anterior commissure semapv:crossSpeciesExactMatch TAO:0001108 semapv:UnspecifiedMatching 1:1 +ZFA:0001109 oocyte semapv:crossSpeciesExactMatch CL:0000023 semapv:UnspecifiedMatching 1:n +ZFA:0001109 oocyte semapv:crossSpeciesExactMatch TAO:0001109 semapv:UnspecifiedMatching 1:n +ZFA:0001110 ovarian follicle semapv:crossSpeciesExactMatch TAO:0001110 semapv:UnspecifiedMatching 1:1 +ZFA:0001111 zona radiata semapv:crossSpeciesExactMatch TAO:0001111 semapv:UnspecifiedMatching 1:1 +ZFA:0001112 granulosa cell layer semapv:crossSpeciesExactMatch TAO:0001112 semapv:UnspecifiedMatching 1:1 +ZFA:0001113 thecal cell layer semapv:crossSpeciesExactMatch TAO:0001113 semapv:UnspecifiedMatching 1:1 +ZFA:0001114 head semapv:crossSpeciesExactMatch TAO:0001114 semapv:UnspecifiedMatching 1:1 +ZFA:0001115 trunk semapv:crossSpeciesExactMatch TAO:0001115 semapv:UnspecifiedMatching 1:1 +ZFA:0001116 presumptive structure semapv:crossSpeciesExactMatch TAO:0001116 semapv:UnspecifiedMatching 1:1 +ZFA:0001117 post-vent region semapv:crossSpeciesExactMatch TAO:0001117 semapv:UnspecifiedMatching 1:1 +ZFA:0001118 urogenital papilla semapv:crossSpeciesExactMatch TAO:0001118 semapv:UnspecifiedMatching 1:1 +ZFA:0001119 dermis semapv:crossSpeciesExactMatch TAO:0001119 semapv:UnspecifiedMatching 1:1 +ZFA:0001120 neuroectoderm semapv:crossSpeciesExactMatch TAO:0001120 semapv:UnspecifiedMatching 1:1 +ZFA:0001121 presumptive shield semapv:crossSpeciesExactMatch TAO:0001121 semapv:UnspecifiedMatching 1:1 +ZFA:0001122 primary germ layer semapv:crossSpeciesExactMatch TAO:0001122 semapv:UnspecifiedMatching 1:1 +ZFA:0001123 axial fin skeleton semapv:crossSpeciesExactMatch TAO:0001123 semapv:UnspecifiedMatching 1:1 +ZFA:0001124 dorsal fin skeleton semapv:crossSpeciesExactMatch TAO:0001124 semapv:UnspecifiedMatching 1:1 +ZFA:0001125 organizer inducing center semapv:crossSpeciesExactMatch TAO:0001125 semapv:UnspecifiedMatching 1:1 +ZFA:0001126 noninvoluting endocytic marginal cell cluster semapv:crossSpeciesExactMatch TAO:0001126 semapv:UnspecifiedMatching 1:1 +ZFA:0001127 visual system semapv:crossSpeciesExactMatch TAO:0001127 semapv:UnspecifiedMatching 1:1 +ZFA:0001128 pharyngeal pouch 1 semapv:crossSpeciesExactMatch TAO:0001128 semapv:UnspecifiedMatching 1:1 +ZFA:0001129 pharyngeal pouches 2-6 semapv:crossSpeciesExactMatch TAO:0001129 semapv:UnspecifiedMatching 1:1 +ZFA:0001130 pharyngeal pouch 2 semapv:crossSpeciesExactMatch TAO:0001130 semapv:UnspecifiedMatching 1:1 +ZFA:0001131 pharyngeal pouch 3 semapv:crossSpeciesExactMatch TAO:0001131 semapv:UnspecifiedMatching 1:1 +ZFA:0001132 pharyngeal pouch 6 semapv:crossSpeciesExactMatch TAO:0001132 semapv:UnspecifiedMatching 1:1 +ZFA:0001133 pharyngeal pouch 5 semapv:crossSpeciesExactMatch TAO:0001133 semapv:UnspecifiedMatching 1:1 +ZFA:0001134 pharyngeal pouch 4 semapv:crossSpeciesExactMatch TAO:0001134 semapv:UnspecifiedMatching 1:1 +ZFA:0001135 neural tube semapv:crossSpeciesExactMatch TAO:0001135 semapv:UnspecifiedMatching 1:1 +ZFA:0001136 hypodermis semapv:crossSpeciesExactMatch TAO:0001136 semapv:UnspecifiedMatching 1:1 +ZFA:0001137 ventral tooth row semapv:crossSpeciesExactMatch TAO:0001137 semapv:UnspecifiedMatching 1:1 +ZFA:0001138 vestibuloauditory system semapv:crossSpeciesExactMatch TAO:0001138 semapv:UnspecifiedMatching 1:1 +ZFA:0001139 mediodorsal tooth row semapv:crossSpeciesExactMatch TAO:0001139 semapv:UnspecifiedMatching 1:1 +ZFA:0001140 dorsal tooth row semapv:crossSpeciesExactMatch TAO:0001140 semapv:UnspecifiedMatching 1:1 +ZFA:0001141 tooth 1V semapv:crossSpeciesExactMatch TAO:0001141 semapv:UnspecifiedMatching 1:1 +ZFA:0001142 tooth 5V semapv:crossSpeciesExactMatch TAO:0001142 semapv:UnspecifiedMatching 1:1 +ZFA:0001143 tooth 4V semapv:crossSpeciesExactMatch TAO:0001143 semapv:UnspecifiedMatching 1:1 +ZFA:0001144 tooth 2V semapv:crossSpeciesExactMatch TAO:0001144 semapv:UnspecifiedMatching 1:1 +ZFA:0001145 tooth 3V semapv:crossSpeciesExactMatch TAO:0001145 semapv:UnspecifiedMatching 1:1 +ZFA:0001146 tooth 1MD semapv:crossSpeciesExactMatch TAO:0001146 semapv:UnspecifiedMatching 1:1 +ZFA:0001147 tooth 2MD semapv:crossSpeciesExactMatch TAO:0001147 semapv:UnspecifiedMatching 1:1 +ZFA:0001148 tooth 1D semapv:crossSpeciesExactMatch TAO:0001148 semapv:UnspecifiedMatching 1:1 +ZFA:0001149 olfactory system semapv:crossSpeciesExactMatch TAO:0001149 semapv:UnspecifiedMatching 1:1 +ZFA:0001150 tooth 2D semapv:crossSpeciesExactMatch TAO:0001150 semapv:UnspecifiedMatching 1:1 +ZFA:0001151 tooth 4MD semapv:crossSpeciesExactMatch TAO:0001151 semapv:UnspecifiedMatching 1:1 +ZFA:0001152 tooth 3MD semapv:crossSpeciesExactMatch TAO:0001152 semapv:UnspecifiedMatching 1:1 +ZFA:0001153 tooth placode semapv:crossSpeciesExactMatch TAO:0001153 semapv:UnspecifiedMatching 1:1 +ZFA:0001154 anal fin musculature semapv:crossSpeciesExactMatch TAO:0001154 semapv:UnspecifiedMatching 1:1 +ZFA:0001155 enteric nervous system semapv:crossSpeciesExactMatch TAO:0001155 semapv:UnspecifiedMatching 1:1 +ZFA:0001156 posterior lateral line placode semapv:crossSpeciesExactMatch TAO:0001156 semapv:UnspecifiedMatching 1:1 +ZFA:0001157 posterior lateral line primordium semapv:crossSpeciesExactMatch TAO:0001157 semapv:UnspecifiedMatching 1:1 +ZFA:0001158 endocrine system semapv:crossSpeciesExactMatch TAO:0001158 semapv:UnspecifiedMatching 1:1 +ZFA:0001159 immune system semapv:crossSpeciesExactMatch TAO:0001159 semapv:UnspecifiedMatching 1:1 +ZFA:0001161 pectoral fin semapv:crossSpeciesExactMatch TAO:0001161 semapv:UnspecifiedMatching 1:1 +ZFA:0001162 anal fin semapv:crossSpeciesExactMatch TAO:0001162 semapv:UnspecifiedMatching 1:1 +ZFA:0001163 supraneural 7 semapv:crossSpeciesExactMatch TAO:0001163 semapv:UnspecifiedMatching 1:1 +ZFA:0001164 supraneural 6 semapv:crossSpeciesExactMatch TAO:0001164 semapv:UnspecifiedMatching 1:1 +ZFA:0001165 supraneural 5 semapv:crossSpeciesExactMatch TAO:0001165 semapv:UnspecifiedMatching 1:1 +ZFA:0001166 supraneural 9 semapv:crossSpeciesExactMatch TAO:0001166 semapv:UnspecifiedMatching 1:1 +ZFA:0001167 vertebra 1 semapv:crossSpeciesExactMatch TAO:0001167 semapv:UnspecifiedMatching 1:1 +ZFA:0001168 vertebra 2 semapv:crossSpeciesExactMatch TAO:0001168 semapv:UnspecifiedMatching 1:1 +ZFA:0001169 vertebra 3 semapv:crossSpeciesExactMatch TAO:0001169 semapv:UnspecifiedMatching 1:1 +ZFA:0001170 vertebra 4 semapv:crossSpeciesExactMatch TAO:0001170 semapv:UnspecifiedMatching 1:1 +ZFA:0001171 os suspensorium semapv:crossSpeciesExactMatch TAO:0001171 semapv:UnspecifiedMatching 1:1 +ZFA:0001172 roofing cartilage semapv:crossSpeciesExactMatch TAO:0001172 semapv:UnspecifiedMatching 1:1 +ZFA:0001173 dorsal fin semapv:crossSpeciesExactMatch TAO:0001173 semapv:UnspecifiedMatching 1:1 +ZFA:0001174 pharyngeal epithelium semapv:crossSpeciesExactMatch TAO:0001174 semapv:UnspecifiedMatching 1:1 +ZFA:0001175 blastodisc semapv:crossSpeciesExactMatch TAO:0001175 semapv:UnspecifiedMatching 1:1 +ZFA:0001176 blastoderm semapv:crossSpeciesExactMatch TAO:0001176 semapv:UnspecifiedMatching 1:1 +ZFA:0001177 roof plate spinal cord region semapv:crossSpeciesExactMatch TAO:0001177 semapv:UnspecifiedMatching 1:1 +ZFA:0001178 non neural ectoderm semapv:crossSpeciesExactMatch TAO:0001178 semapv:UnspecifiedMatching 1:1 +ZFA:0001179 epidermal superficial stratum semapv:crossSpeciesExactMatch TAO:0001179 semapv:UnspecifiedMatching 1:1 +ZFA:0001180 epidermal basal stratum semapv:crossSpeciesExactMatch TAO:0001180 semapv:UnspecifiedMatching 1:1 +ZFA:0001181 epidermal intermediate stratum semapv:crossSpeciesExactMatch TAO:0001181 semapv:UnspecifiedMatching 1:1 +ZFA:0001182 dermal deep region semapv:crossSpeciesExactMatch TAO:0001182 semapv:UnspecifiedMatching 1:1 +ZFA:0001183 dermal superficial region semapv:crossSpeciesExactMatch TAO:0001183 semapv:UnspecifiedMatching 1:1 +ZFA:0001184 pelvic fin semapv:crossSpeciesExactMatch TAO:0001184 semapv:UnspecifiedMatching 1:1 +ZFA:0001185 periderm semapv:crossSpeciesExactMatch TAO:0001185 semapv:UnspecifiedMatching 1:1 +ZFA:0001186 collagenous dermal stroma semapv:crossSpeciesExactMatch TAO:0001186 semapv:UnspecifiedMatching 1:1 +ZFA:0001187 presumptive midbrain hindbrain boundary semapv:crossSpeciesExactMatch TAO:0001187 semapv:UnspecifiedMatching 1:1 +ZFA:0001188 Weberian apparatus semapv:crossSpeciesExactMatch TAO:0001188 semapv:UnspecifiedMatching 1:1 +ZFA:0001189 vertebra semapv:crossSpeciesExactMatch TAO:0001189 semapv:UnspecifiedMatching 1:1 +ZFA:0001190 Weberian vertebra semapv:crossSpeciesExactMatch TAO:0001190 semapv:UnspecifiedMatching 1:1 +ZFA:0001191 supraneural 2 semapv:crossSpeciesExactMatch TAO:0001191 semapv:UnspecifiedMatching 1:1 +ZFA:0001192 supraneural 3 semapv:crossSpeciesExactMatch TAO:0001192 semapv:UnspecifiedMatching 1:1 +ZFA:0001193 supraneural 8 semapv:crossSpeciesExactMatch TAO:0001193 semapv:UnspecifiedMatching 1:1 +ZFA:0001194 cranial neural crest semapv:crossSpeciesExactMatch TAO:0001194 semapv:UnspecifiedMatching 1:1 +ZFA:0001195 pars anterior semapv:crossSpeciesExactMatch TAO:0001195 semapv:UnspecifiedMatching 1:1 +ZFA:0001197 pars intermedia semapv:crossSpeciesExactMatch TAO:0001197 semapv:UnspecifiedMatching 1:1 +ZFA:0001198 adenohypophyseal placode semapv:crossSpeciesExactMatch TAO:0001198 semapv:UnspecifiedMatching 1:1 +ZFA:0001199 infundibulum semapv:crossSpeciesExactMatch TAO:0001199 semapv:UnspecifiedMatching 1:1 +ZFA:0001200 corpuscles of Stannius semapv:crossSpeciesExactMatch TAO:0001200 semapv:UnspecifiedMatching 1:1 +ZFA:0001201 ventral lateral mesoderm semapv:crossSpeciesExactMatch TAO:0001201 semapv:UnspecifiedMatching 1:1 +ZFA:0001202 optic cup semapv:crossSpeciesExactMatch TAO:0001202 semapv:UnspecifiedMatching 1:1 +ZFA:0001203 ciliary zone semapv:crossSpeciesExactMatch TAO:0001203 semapv:UnspecifiedMatching 1:1 +ZFA:0001204 axial mesoderm semapv:crossSpeciesExactMatch TAO:0001204 semapv:UnspecifiedMatching 1:1 +ZFA:0001205 Meckel's cartilage semapv:crossSpeciesExactMatch TAO:0001205 semapv:UnspecifiedMatching 1:1 +ZFA:0001206 intermediate mesoderm semapv:crossSpeciesExactMatch TAO:0001206 semapv:UnspecifiedMatching 1:1 +ZFA:0001207 presumptive rhombomere 1 semapv:crossSpeciesExactMatch TAO:0001207 semapv:UnspecifiedMatching 1:1 +ZFA:0001208 presumptive rhombomere 2 semapv:crossSpeciesExactMatch TAO:0001208 semapv:UnspecifiedMatching 1:1 +ZFA:0001209 presumptive rhombomere 7 semapv:crossSpeciesExactMatch TAO:0001209 semapv:UnspecifiedMatching 1:1 +ZFA:0001210 presumptive rhombomere 6 semapv:crossSpeciesExactMatch TAO:0001210 semapv:UnspecifiedMatching 1:1 +ZFA:0001211 presumptive rhombomere 5 semapv:crossSpeciesExactMatch TAO:0001211 semapv:UnspecifiedMatching 1:1 +ZFA:0001212 presumptive rhombomere 4 semapv:crossSpeciesExactMatch TAO:0001212 semapv:UnspecifiedMatching 1:1 +ZFA:0001213 presumptive rhombomere 3 semapv:crossSpeciesExactMatch TAO:0001213 semapv:UnspecifiedMatching 1:1 +ZFA:0001214 presumptive rhombomere 8 semapv:crossSpeciesExactMatch TAO:0001214 semapv:UnspecifiedMatching 1:1 +ZFA:0001215 thalamus semapv:crossSpeciesExactMatch TAO:0001215 semapv:UnspecifiedMatching 1:1 +ZFA:0001216 splanchnocranium semapv:crossSpeciesExactMatch TAO:0001216 semapv:UnspecifiedMatching 1:1 +ZFA:0001217 presumptive hypochord semapv:crossSpeciesExactMatch TAO:0001217 semapv:UnspecifiedMatching 1:1 +ZFA:0001218 presumptive floor plate semapv:crossSpeciesExactMatch TAO:0001218 semapv:UnspecifiedMatching 1:1 +ZFA:0001220 copula semapv:crossSpeciesExactMatch TAO:0001220 semapv:UnspecifiedMatching 1:1 +ZFA:0001221 copula 1 semapv:crossSpeciesExactMatch TAO:0001221 semapv:UnspecifiedMatching 1:1 +ZFA:0001222 copula 2 semapv:crossSpeciesExactMatch TAO:0001222 semapv:UnspecifiedMatching 1:1 +ZFA:0001223 basibranchial 1 semapv:crossSpeciesExactMatch TAO:0001223 semapv:UnspecifiedMatching 1:1 +ZFA:0001224 basibranchial 2 semapv:crossSpeciesExactMatch TAO:0001224 semapv:UnspecifiedMatching 1:1 +ZFA:0001225 basibranchial 3 semapv:crossSpeciesExactMatch TAO:0001225 semapv:UnspecifiedMatching 1:1 +ZFA:0001226 basibranchial 4 semapv:crossSpeciesExactMatch TAO:0001226 semapv:UnspecifiedMatching 1:1 +ZFA:0001227 mandibular arch skeleton semapv:crossSpeciesExactMatch TAO:0001227 semapv:UnspecifiedMatching 1:1 +ZFA:0001228 pharyngeal arch 3 skeleton semapv:crossSpeciesExactMatch TAO:0001228 semapv:UnspecifiedMatching 1:1 +ZFA:0001229 pharyngeal arch 7 skeleton semapv:crossSpeciesExactMatch TAO:0001229 semapv:UnspecifiedMatching 1:1 +ZFA:0001230 pharyngeal arch 6 skeleton semapv:crossSpeciesExactMatch TAO:0001230 semapv:UnspecifiedMatching 1:1 +ZFA:0001231 pharyngeal arch 4 skeleton semapv:crossSpeciesExactMatch TAO:0001231 semapv:UnspecifiedMatching 1:1 +ZFA:0001232 pharyngeal arch 5 skeleton semapv:crossSpeciesExactMatch TAO:0001232 semapv:UnspecifiedMatching 1:1 +ZFA:0001233 hypobranchial 1 bone semapv:crossSpeciesExactMatch TAO:0001233 semapv:UnspecifiedMatching 1:1 +ZFA:0001234 hypobranchial 4 bone semapv:crossSpeciesExactMatch TAO:0001234 semapv:UnspecifiedMatching 1:1 +ZFA:0001235 hypobranchial 3 bone semapv:crossSpeciesExactMatch TAO:0001235 semapv:UnspecifiedMatching 1:1 +ZFA:0001236 hypobranchial 2 bone semapv:crossSpeciesExactMatch TAO:0001236 semapv:UnspecifiedMatching 1:1 +ZFA:0001237 ceratobranchial 1 bone semapv:crossSpeciesExactMatch TAO:0001237 semapv:UnspecifiedMatching 1:1 +ZFA:0001238 iris semapv:crossSpeciesExactMatch TAO:0001238 semapv:UnspecifiedMatching 1:1 +ZFA:0001239 ceratobranchial 5 bone semapv:crossSpeciesExactMatch TAO:0001239 semapv:UnspecifiedMatching 1:1 +ZFA:0001240 ceratobranchial 4 bone semapv:crossSpeciesExactMatch TAO:0001240 semapv:UnspecifiedMatching 1:1 +ZFA:0001241 ceratobranchial 3 bone semapv:crossSpeciesExactMatch TAO:0001241 semapv:UnspecifiedMatching 1:1 +ZFA:0001242 ceratobranchial 2 bone semapv:crossSpeciesExactMatch TAO:0001242 semapv:UnspecifiedMatching 1:1 +ZFA:0001243 epibranchial 1 bone semapv:crossSpeciesExactMatch TAO:0001243 semapv:UnspecifiedMatching 1:1 +ZFA:0001244 epibranchial 5 semapv:crossSpeciesExactMatch TAO:0001244 semapv:UnspecifiedMatching 1:1 +ZFA:0001245 epibranchial 4 bone semapv:crossSpeciesExactMatch TAO:0001245 semapv:UnspecifiedMatching 1:1 +ZFA:0001246 epibranchial 2 bone semapv:crossSpeciesExactMatch TAO:0001246 semapv:UnspecifiedMatching 1:1 +ZFA:0001247 epibranchial 3 bone semapv:crossSpeciesExactMatch TAO:0001247 semapv:UnspecifiedMatching 1:1 +ZFA:0001249 exocrine pancreas semapv:crossSpeciesExactMatch TAO:0001249 semapv:UnspecifiedMatching 1:1 +ZFA:0001250 pharyngobranchial 2 bone semapv:crossSpeciesExactMatch TAO:0001250 semapv:UnspecifiedMatching 1:1 +ZFA:0001251 pharyngobranchial 4 cartilage semapv:crossSpeciesExactMatch TAO:0001251 semapv:UnspecifiedMatching 1:1 +ZFA:0001252 pharyngobranchial 3 bone semapv:crossSpeciesExactMatch TAO:0001252 semapv:UnspecifiedMatching 1:1 +ZFA:0001256 lateral floor plate semapv:crossSpeciesExactMatch TAO:0001256 semapv:UnspecifiedMatching 1:1 +ZFA:0001257 medial floor plate semapv:crossSpeciesExactMatch TAO:0001257 semapv:UnspecifiedMatching 1:1 +ZFA:0001258 floor plate rhombomere region semapv:crossSpeciesExactMatch TAO:0001258 semapv:UnspecifiedMatching 1:1 +ZFA:0001259 forebrain ventricle semapv:crossSpeciesExactMatch TAO:0001259 semapv:UnspecifiedMatching 1:1 +ZFA:0001260 endocrine pancreas semapv:crossSpeciesExactMatch TAO:0001260 semapv:UnspecifiedMatching 1:1 +ZFA:0001261 ventricular system semapv:crossSpeciesExactMatch TAO:0001261 semapv:UnspecifiedMatching 1:1 +ZFA:0001262 gonad primordium semapv:crossSpeciesExactMatch TAO:0001262 semapv:UnspecifiedMatching 1:1 +ZFA:0001263 ovarian follicle stage I semapv:crossSpeciesExactMatch TAO:0001263 semapv:UnspecifiedMatching 1:1 +ZFA:0001264 ovarian follicle stage IV semapv:crossSpeciesExactMatch TAO:0001264 semapv:UnspecifiedMatching 1:1 +ZFA:0001265 ovarian follicle stage II semapv:crossSpeciesExactMatch TAO:0001265 semapv:UnspecifiedMatching 1:1 +ZFA:0001266 ovarian follicle stage III semapv:crossSpeciesExactMatch TAO:0001266 semapv:UnspecifiedMatching 1:1 +ZFA:0001267 cranial vasculature semapv:crossSpeciesExactMatch TAO:0001267 semapv:UnspecifiedMatching 1:1 +ZFA:0001268 sperm duct semapv:crossSpeciesExactMatch TAO:0001268 semapv:UnspecifiedMatching 1:1 +ZFA:0001269 regenerating fin semapv:crossSpeciesExactMatch TAO:0001269 semapv:UnspecifiedMatching 1:1 +ZFA:0001270 blastema semapv:crossSpeciesExactMatch TAO:0001270 semapv:UnspecifiedMatching 1:1 +ZFA:0001271 neurohypophysis semapv:crossSpeciesExactMatch TAO:0001271 semapv:UnspecifiedMatching 1:1 +ZFA:0001272 palatoquadrate arch semapv:crossSpeciesExactMatch TAO:0001272 semapv:UnspecifiedMatching 1:1 +ZFA:0001273 ventral mandibular arch semapv:crossSpeciesExactMatch TAO:0001273 semapv:UnspecifiedMatching 1:1 +ZFA:0001274 coronomeckelian semapv:crossSpeciesExactMatch TAO:0001274 semapv:UnspecifiedMatching 1:1 +ZFA:0001276 pharyngeal arch 2 skeleton semapv:crossSpeciesExactMatch TAO:0001276 semapv:UnspecifiedMatching 1:1 +ZFA:0001277 anterior chamber swim bladder semapv:crossSpeciesExactMatch TAO:0001277 semapv:UnspecifiedMatching 1:1 +ZFA:0001278 posterior chamber swim bladder semapv:crossSpeciesExactMatch TAO:0001278 semapv:UnspecifiedMatching 1:1 +ZFA:0001279 branchiostegal ray 1 semapv:crossSpeciesExactMatch TAO:0001279 semapv:UnspecifiedMatching 1:1 +ZFA:0001280 branchiostegal ray 3 semapv:crossSpeciesExactMatch TAO:0001280 semapv:UnspecifiedMatching 1:1 +ZFA:0001281 branchiostegal ray 2 semapv:crossSpeciesExactMatch TAO:0001281 semapv:UnspecifiedMatching 1:1 +ZFA:0001282 adenohypophysis semapv:crossSpeciesExactMatch TAO:0001282 semapv:UnspecifiedMatching 1:1 +ZFA:0001283 pupil semapv:crossSpeciesExactMatch TAO:0001283 semapv:UnspecifiedMatching 1:1 +ZFA:0001284 optic fissure semapv:crossSpeciesExactMatch TAO:0001284 semapv:UnspecifiedMatching 1:1 +ZFA:0001285 intersegmental vessel semapv:crossSpeciesExactMatch TAO:0001285 semapv:UnspecifiedMatching 1:1 +ZFA:0001286 caudal vein plexus semapv:crossSpeciesExactMatch TAO:0001286 semapv:UnspecifiedMatching 1:1 +ZFA:0001287 renal tubule semapv:crossSpeciesExactMatch TAO:0001287 semapv:UnspecifiedMatching 1:1 +ZFA:0001288 renal glomerulus semapv:crossSpeciesExactMatch TAO:0001288 semapv:UnspecifiedMatching 1:1 +ZFA:0001289 ciliary marginal zone semapv:crossSpeciesExactMatch TAO:0001289 semapv:UnspecifiedMatching 1:1 +ZFA:0001290 stomodeum semapv:crossSpeciesExactMatch TAO:0001290 semapv:UnspecifiedMatching 1:1 +ZFA:0001291 facial ganglion semapv:crossSpeciesExactMatch TAO:0001291 semapv:UnspecifiedMatching 1:1 +ZFA:0001292 epiphyseal stalk semapv:crossSpeciesExactMatch TAO:0001292 semapv:UnspecifiedMatching 1:1 +ZFA:0001293 posterior kidney semapv:crossSpeciesExactMatch TAO:0001293 semapv:UnspecifiedMatching 1:1 +ZFA:0001294 epibranchial placode semapv:crossSpeciesExactMatch TAO:0001294 semapv:UnspecifiedMatching 1:1 +ZFA:0001295 facial placode semapv:crossSpeciesExactMatch TAO:0001295 semapv:UnspecifiedMatching 1:1 +ZFA:0001296 glossopharyngeal placode semapv:crossSpeciesExactMatch TAO:0001296 semapv:UnspecifiedMatching 1:1 +ZFA:0001297 vagal placode 1 semapv:crossSpeciesExactMatch TAO:0001297 semapv:UnspecifiedMatching 1:1 +ZFA:0001298 vagal placode 2 semapv:crossSpeciesExactMatch TAO:0001298 semapv:UnspecifiedMatching 1:1 +ZFA:0001299 vagal placode 3 semapv:crossSpeciesExactMatch TAO:0001299 semapv:UnspecifiedMatching 1:1 +ZFA:0001300 vagal placode 4 semapv:crossSpeciesExactMatch TAO:0001300 semapv:UnspecifiedMatching 1:1 +ZFA:0001301 glossopharyngeal ganglion semapv:crossSpeciesExactMatch TAO:0001301 semapv:UnspecifiedMatching 1:1 +ZFA:0001302 vagal ganglion 1 semapv:crossSpeciesExactMatch TAO:0001302 semapv:UnspecifiedMatching 1:1 +ZFA:0001303 vagal ganglion 2 semapv:crossSpeciesExactMatch TAO:0001303 semapv:UnspecifiedMatching 1:1 +ZFA:0001304 vagal ganglion 3 semapv:crossSpeciesExactMatch TAO:0001304 semapv:UnspecifiedMatching 1:1 +ZFA:0001305 vagal ganglion 4 semapv:crossSpeciesExactMatch TAO:0001305 semapv:UnspecifiedMatching 1:1 +ZFA:0001306 pharyngeal arch semapv:crossSpeciesExactMatch TAO:0001306 semapv:UnspecifiedMatching 1:1 +ZFA:0001307 pharyngeal musculature semapv:crossSpeciesExactMatch TAO:0001307 semapv:UnspecifiedMatching 1:1 +ZFA:0001308 organism subdivision semapv:crossSpeciesExactMatch CARO:0000032 semapv:UnspecifiedMatching 1:n +ZFA:0001308 organism subdivision semapv:crossSpeciesExactMatch TAO:0001308 semapv:UnspecifiedMatching 1:n +ZFA:0001309 neurogenic placode semapv:crossSpeciesExactMatch TAO:0001309 semapv:UnspecifiedMatching 1:1 +ZFA:0001310 dorsolateral placode semapv:crossSpeciesExactMatch TAO:0001310 semapv:UnspecifiedMatching 1:1 +ZFA:0001311 roof plate rhombomere region semapv:crossSpeciesExactMatch TAO:0001311 semapv:UnspecifiedMatching 1:1 +ZFA:0001312 dorsal anterior lateral line ganglion semapv:crossSpeciesExactMatch TAO:0001312 semapv:UnspecifiedMatching 1:1 +ZFA:0001313 ventral anterior lateral line ganglion semapv:crossSpeciesExactMatch TAO:0001313 semapv:UnspecifiedMatching 1:1 +ZFA:0001314 posterior lateral line ganglion semapv:crossSpeciesExactMatch TAO:0001314 semapv:UnspecifiedMatching 1:1 +ZFA:0001315 atrioventricular canal semapv:crossSpeciesExactMatch TAO:0001315 semapv:UnspecifiedMatching 1:1 +ZFA:0001316 anterior lateral line placode semapv:crossSpeciesExactMatch TAO:0001316 semapv:UnspecifiedMatching 1:1 +ZFA:0001317 endocardial cushion semapv:crossSpeciesExactMatch TAO:0001317 semapv:UnspecifiedMatching 1:1 +ZFA:0001318 cardiac jelly semapv:crossSpeciesExactMatch TAO:0001318 semapv:UnspecifiedMatching 1:1 +ZFA:0001319 myocardium semapv:crossSpeciesExactMatch TAO:0001319 semapv:UnspecifiedMatching 1:1 +ZFA:0001320 endocardium semapv:crossSpeciesExactMatch TAO:0001320 semapv:UnspecifiedMatching 1:1 +ZFA:0001321 neurocranial trabecula semapv:crossSpeciesExactMatch TAO:0001321 semapv:UnspecifiedMatching 1:1 +ZFA:0001322 dorsoventral diencephalic tract semapv:crossSpeciesExactMatch TAO:0001322 semapv:UnspecifiedMatching 1:1 +ZFA:0001323 mid intestine semapv:crossSpeciesExactMatch TAO:0001323 semapv:UnspecifiedMatching 1:1 +ZFA:0001324 enteric musculature semapv:crossSpeciesExactMatch TAO:0001324 semapv:UnspecifiedMatching 1:1 +ZFA:0001325 neural prezygapophysis semapv:crossSpeciesExactMatch TAO:0001325 semapv:UnspecifiedMatching 1:1 +ZFA:0001326 lens epithelium semapv:crossSpeciesExactMatch TAO:0001326 semapv:UnspecifiedMatching 1:1 +ZFA:0001327 abdominal musculature semapv:crossSpeciesExactMatch TAO:0001327 semapv:UnspecifiedMatching 1:1 +ZFA:0001328 neuromere semapv:crossSpeciesExactMatch TAO:0001328 semapv:UnspecifiedMatching 1:1 +ZFA:0001329 retinal inner plexiform layer semapv:crossSpeciesExactMatch TAO:0001329 semapv:UnspecifiedMatching 1:1 +ZFA:0001330 retinal outer plexiform layer semapv:crossSpeciesExactMatch TAO:0001330 semapv:UnspecifiedMatching 1:1 +ZFA:0001331 outer limiting membrane semapv:crossSpeciesExactMatch TAO:0001331 semapv:UnspecifiedMatching 1:1 +ZFA:0001332 spinal neuromere semapv:crossSpeciesExactMatch TAO:0001332 semapv:UnspecifiedMatching 1:1 +ZFA:0001334 presumptive enteric nervous system semapv:crossSpeciesExactMatch TAO:0001334 semapv:UnspecifiedMatching 1:1 +ZFA:0001335 supradorsal semapv:crossSpeciesExactMatch TAO:0001335 semapv:UnspecifiedMatching 1:1 +ZFA:0001336 neural spine semapv:crossSpeciesExactMatch TAO:0001336 semapv:UnspecifiedMatching 1:1 +ZFA:0001338 intestine semapv:crossSpeciesExactMatch TAO:0001338 semapv:UnspecifiedMatching 1:1 +ZFA:0001339 nucleus of the tract of the anterior commissure semapv:crossSpeciesExactMatch TAO:0001339 semapv:UnspecifiedMatching 1:1 +ZFA:0001340 nucleus of the tract of the postoptic commissure semapv:crossSpeciesExactMatch TAO:0001340 semapv:UnspecifiedMatching 1:1 +ZFA:0001341 intervening zone semapv:crossSpeciesExactMatch TAO:0001341 semapv:UnspecifiedMatching 1:1 +ZFA:0001342 presumptive intervening zone semapv:crossSpeciesExactMatch TAO:0001342 semapv:UnspecifiedMatching 1:1 +ZFA:0001343 telencephalon diencephalon boundary semapv:crossSpeciesExactMatch TAO:0001343 semapv:UnspecifiedMatching 1:1 +ZFA:0001344 zona limitans intrathalamica semapv:crossSpeciesExactMatch TAO:0001344 semapv:UnspecifiedMatching 1:1 +ZFA:0001345 interrenal gland semapv:crossSpeciesExactMatch TAO:0001345 semapv:UnspecifiedMatching 1:1 +ZFA:0001346 interrenal primordium semapv:crossSpeciesExactMatch TAO:0001346 semapv:UnspecifiedMatching 1:1 +ZFA:0001347 stratum fibrosum et griseum superficiale semapv:crossSpeciesExactMatch TAO:0001347 semapv:UnspecifiedMatching 1:1 +ZFA:0001348 stratum marginale semapv:crossSpeciesExactMatch TAO:0001348 semapv:UnspecifiedMatching 1:1 +ZFA:0001349 stratum opticum semapv:crossSpeciesExactMatch TAO:0001349 semapv:UnspecifiedMatching 1:1 +ZFA:0001350 stratum griseum centrale semapv:crossSpeciesExactMatch TAO:0001350 semapv:UnspecifiedMatching 1:1 +ZFA:0001351 stratum album centrale semapv:crossSpeciesExactMatch TAO:0001351 semapv:UnspecifiedMatching 1:1 +ZFA:0001355 primitive meninx semapv:crossSpeciesExactMatch TAO:0001355 semapv:UnspecifiedMatching 1:1 +ZFA:0001356 terminal nerve semapv:crossSpeciesExactMatch TAO:0001356 semapv:UnspecifiedMatching 1:1 +ZFA:0001357 alar plate midbrain region semapv:crossSpeciesExactMatch TAO:0001357 semapv:UnspecifiedMatching 1:1 +ZFA:0001358 roof plate diencephalic region semapv:crossSpeciesExactMatch TAO:0001358 semapv:UnspecifiedMatching 1:1 +ZFA:0001359 pineal complex semapv:crossSpeciesExactMatch TAO:0001359 semapv:UnspecifiedMatching 1:1 +ZFA:0001360 parapineal organ semapv:crossSpeciesExactMatch TAO:0001360 semapv:UnspecifiedMatching 1:1 +ZFA:0001361 basiventral semapv:crossSpeciesExactMatch TAO:0001361 semapv:UnspecifiedMatching 1:1 +ZFA:0001362 parapophysis semapv:crossSpeciesExactMatch TAO:0001362 semapv:UnspecifiedMatching 1:1 +ZFA:0001363 neural complex semapv:crossSpeciesExactMatch TAO:0001363 semapv:UnspecifiedMatching 1:1 +ZFA:0001364 hemal spine semapv:crossSpeciesExactMatch TAO:0001364 semapv:UnspecifiedMatching 1:1 +ZFA:0001365 trigeminal motor nucleus semapv:crossSpeciesExactMatch TAO:0001365 semapv:UnspecifiedMatching 1:1 +ZFA:0001366 tract of the postoptic commissure semapv:crossSpeciesExactMatch TAO:0001366 semapv:UnspecifiedMatching 1:1 +ZFA:0001367 forebrain midbrain boundary semapv:crossSpeciesExactMatch TAO:0001367 semapv:UnspecifiedMatching 1:1 +ZFA:0001368 presumptive forebrain midbrain boundary semapv:crossSpeciesExactMatch TAO:0001368 semapv:UnspecifiedMatching 1:1 +ZFA:0001369 anterior pancreatic bud semapv:crossSpeciesExactMatch TAO:0001369 semapv:UnspecifiedMatching 1:1 +ZFA:0001370 posterior pancreatic bud semapv:crossSpeciesExactMatch TAO:0001370 semapv:UnspecifiedMatching 1:1 +ZFA:0001371 pancreatic system semapv:crossSpeciesExactMatch TAO:0001371 semapv:UnspecifiedMatching 1:1 +ZFA:0001372 pancreatic duct semapv:crossSpeciesExactMatch TAO:0001372 semapv:UnspecifiedMatching 1:1 +ZFA:0001373 migratory slow muscle precursor cell semapv:crossSpeciesExactMatch TAO:0001373 semapv:UnspecifiedMatching 1:1 +ZFA:0001374 atrial myocardium semapv:crossSpeciesExactMatch TAO:0001374 semapv:UnspecifiedMatching 1:1 +ZFA:0001375 ventriculo bulbo valve semapv:crossSpeciesExactMatch TAO:0001375 semapv:UnspecifiedMatching 1:1 +ZFA:0001376 presumptive ectoderm semapv:crossSpeciesExactMatch TAO:0001376 semapv:UnspecifiedMatching 1:1 +ZFA:0001377 presumptive mesoderm semapv:crossSpeciesExactMatch TAO:0001377 semapv:UnspecifiedMatching 1:1 +ZFA:0001378 axial hypoblast semapv:crossSpeciesExactMatch TAO:0001378 semapv:UnspecifiedMatching 1:1 +ZFA:0001379 pharyngeal ectoderm semapv:crossSpeciesExactMatch TAO:0001379 semapv:UnspecifiedMatching 1:1 +ZFA:0001381 hypohyal bone semapv:crossSpeciesExactMatch TAO:0001381 semapv:UnspecifiedMatching 1:1 +ZFA:0001382 epibranchial uncinate process semapv:crossSpeciesExactMatch TAO:0001382 semapv:UnspecifiedMatching 1:1 +ZFA:0001383 fin bud semapv:crossSpeciesExactMatch TAO:0001383 semapv:UnspecifiedMatching 1:1 +ZFA:0001384 pelvic fin bud semapv:crossSpeciesExactMatch TAO:0001384 semapv:UnspecifiedMatching 1:1 +ZFA:0001385 apical ectodermal ridge pelvic fin bud semapv:crossSpeciesExactMatch TAO:0001385 semapv:UnspecifiedMatching 1:1 +ZFA:0001386 mesoderm pelvic fin bud semapv:crossSpeciesExactMatch TAO:0001386 semapv:UnspecifiedMatching 1:1 +ZFA:0001387 pelvic fin skeleton semapv:crossSpeciesExactMatch TAO:0001387 semapv:UnspecifiedMatching 1:1 +ZFA:0001388 epithelial mesenchymal boundary semapv:crossSpeciesExactMatch TAO:0001388 semapv:UnspecifiedMatching 1:1 +ZFA:0001389 regeneration epithelium semapv:crossSpeciesExactMatch TAO:0001389 semapv:UnspecifiedMatching 1:1 +ZFA:0001390 pancreatic bud semapv:crossSpeciesExactMatch TAO:0001390 semapv:UnspecifiedMatching 1:1 +ZFA:0001391 anterior lateral line ganglion semapv:crossSpeciesExactMatch TAO:0001391 semapv:UnspecifiedMatching 1:1 +ZFA:0001392 parapophysis 1 semapv:crossSpeciesExactMatch TAO:0001392 semapv:UnspecifiedMatching 1:1 +ZFA:0001393 parapophysis 2 semapv:crossSpeciesExactMatch TAO:0001393 semapv:UnspecifiedMatching 1:1 +ZFA:0001394 neural arch 3 semapv:crossSpeciesExactMatch TAO:0001394 semapv:UnspecifiedMatching 1:1 +ZFA:0001395 neural arch 4 semapv:crossSpeciesExactMatch TAO:0001395 semapv:UnspecifiedMatching 1:1 +ZFA:0001396 parapophysis/rib semapv:crossSpeciesExactMatch TAO:0001396 semapv:UnspecifiedMatching 1:1 +ZFA:0001397 post-Weberian supraneural semapv:crossSpeciesExactMatch TAO:0001397 semapv:UnspecifiedMatching 1:1 +ZFA:0001399 palatoquadrate cartilage semapv:crossSpeciesExactMatch TAO:0001399 semapv:UnspecifiedMatching 1:1 +ZFA:0001400 ceratohyal cartilage semapv:crossSpeciesExactMatch TAO:0001400 semapv:UnspecifiedMatching 1:1 +ZFA:0001401 dorsal hyoid arch semapv:crossSpeciesExactMatch TAO:0001401 semapv:UnspecifiedMatching 1:1 +ZFA:0001402 ventral hyoid arch semapv:crossSpeciesExactMatch TAO:0001402 semapv:UnspecifiedMatching 1:1 +ZFA:0001403 supraethmoid semapv:crossSpeciesExactMatch TAO:0001403 semapv:UnspecifiedMatching 1:1 +ZFA:0001404 preethmoid bone semapv:crossSpeciesExactMatch TAO:0001404 semapv:UnspecifiedMatching 1:1 +ZFA:0001405 ethmoid cartilage semapv:crossSpeciesExactMatch TAO:0001405 semapv:UnspecifiedMatching 1:1 +ZFA:0001406 kinethmoid bone semapv:crossSpeciesExactMatch TAO:0001406 semapv:UnspecifiedMatching 1:1 +ZFA:0001407 infraorbital 2 semapv:crossSpeciesExactMatch TAO:0001407 semapv:UnspecifiedMatching 1:1 +ZFA:0001408 infraorbital 3 semapv:crossSpeciesExactMatch TAO:0001408 semapv:UnspecifiedMatching 1:1 +ZFA:0001409 infraorbital 4 semapv:crossSpeciesExactMatch TAO:0001409 semapv:UnspecifiedMatching 1:1 +ZFA:0001410 orbital region semapv:crossSpeciesExactMatch TAO:0001410 semapv:UnspecifiedMatching 1:1 +ZFA:0001411 sclerotic bone semapv:crossSpeciesExactMatch TAO:0001411 semapv:UnspecifiedMatching 1:1 +ZFA:0001412 epiotic semapv:crossSpeciesExactMatch TAO:0001412 semapv:UnspecifiedMatching 1:1 +ZFA:0001414 occipital region semapv:crossSpeciesExactMatch TAO:0001414 semapv:UnspecifiedMatching 1:1 +ZFA:0001415 pelvic radial 2 semapv:crossSpeciesExactMatch TAO:0001415 semapv:UnspecifiedMatching 1:1 +ZFA:0001416 pelvic radial 3 semapv:crossSpeciesExactMatch TAO:0001416 semapv:UnspecifiedMatching 1:1 +ZFA:0001417 pelvic radial 1 semapv:crossSpeciesExactMatch TAO:0001417 semapv:UnspecifiedMatching 1:1 +ZFA:0001418 dorsal fin lepidotrichium semapv:crossSpeciesExactMatch TAO:0001418 semapv:UnspecifiedMatching 1:1 +ZFA:0001419 dorsal fin pterygiophore semapv:crossSpeciesExactMatch TAO:0001419 semapv:UnspecifiedMatching 1:1 +ZFA:0001420 anal fin pterygiophore semapv:crossSpeciesExactMatch TAO:0001420 semapv:UnspecifiedMatching 1:1 +ZFA:0001421 anal fin lepidotrichium semapv:crossSpeciesExactMatch TAO:0001421 semapv:UnspecifiedMatching 1:1 +ZFA:0001422 hyosymplectic cartilage semapv:crossSpeciesExactMatch TAO:0001422 semapv:UnspecifiedMatching 1:1 +ZFA:0001423 parachordal cartilage semapv:crossSpeciesExactMatch TAO:0001423 semapv:UnspecifiedMatching 1:1 +ZFA:0001424 chondrocranium semapv:crossSpeciesExactMatch TAO:0001424 semapv:UnspecifiedMatching 1:1 +ZFA:0001425 basal plate cartilage semapv:crossSpeciesExactMatch TAO:0001425 semapv:UnspecifiedMatching 1:1 +ZFA:0001426 posterior naris semapv:crossSpeciesExactMatch TAO:0001426 semapv:UnspecifiedMatching 1:1 +ZFA:0001427 anterior naris semapv:crossSpeciesExactMatch TAO:0001427 semapv:UnspecifiedMatching 1:1 +ZFA:0001428 olfactory rosette semapv:crossSpeciesExactMatch TAO:0001428 semapv:UnspecifiedMatching 1:1 +ZFA:0001429 raphe nucleus semapv:crossSpeciesExactMatch TAO:0001429 semapv:UnspecifiedMatching 1:1 +ZFA:0001430 pneumatic duct semapv:crossSpeciesExactMatch TAO:0001430 semapv:UnspecifiedMatching 1:1 +ZFA:0001431 primitive olfactory epithelium semapv:crossSpeciesExactMatch TAO:0001431 semapv:UnspecifiedMatching 1:1 +ZFA:0001432 anterior sclerotic bone semapv:crossSpeciesExactMatch TAO:0001432 semapv:UnspecifiedMatching 1:1 +ZFA:0001433 posterior sclerotic bone semapv:crossSpeciesExactMatch TAO:0001433 semapv:UnspecifiedMatching 1:1 +ZFA:0001434 floor plate neural tube semapv:crossSpeciesExactMatch TAO:0001434 semapv:UnspecifiedMatching 1:1 +ZFA:0001435 lateral wall neural tube semapv:crossSpeciesExactMatch TAO:0001435 semapv:UnspecifiedMatching 1:1 +ZFA:0001436 roof plate neural tube region semapv:crossSpeciesExactMatch TAO:0001436 semapv:UnspecifiedMatching 1:1 +ZFA:0001437 ductus communicans semapv:crossSpeciesExactMatch TAO:0001437 semapv:UnspecifiedMatching 1:1 +ZFA:0001438 coelom semapv:crossSpeciesExactMatch TAO:0001438 semapv:UnspecifiedMatching 1:1 +ZFA:0001439 anatomical system semapv:crossSpeciesExactMatch CARO:0000011 semapv:UnspecifiedMatching 1:n +ZFA:0001439 anatomical system semapv:crossSpeciesExactMatch TAO:0001439 semapv:UnspecifiedMatching 1:n +ZFA:0001440 rhombic lip semapv:crossSpeciesExactMatch TAO:0001440 semapv:UnspecifiedMatching 1:1 +ZFA:0001441 lower rhombic lip semapv:crossSpeciesExactMatch TAO:0001441 semapv:UnspecifiedMatching 1:1 +ZFA:0001442 upper rhombic lip semapv:crossSpeciesExactMatch TAO:0001442 semapv:UnspecifiedMatching 1:1 +ZFA:0001443 choroid plexus semapv:crossSpeciesExactMatch TAO:0001443 semapv:UnspecifiedMatching 1:1 +ZFA:0001444 choroid plexus third ventricle semapv:crossSpeciesExactMatch TAO:0001444 semapv:UnspecifiedMatching 1:1 +ZFA:0001445 choroid plexus tectal ventricle semapv:crossSpeciesExactMatch TAO:0001445 semapv:UnspecifiedMatching 1:1 +ZFA:0001446 choroid plexus fourth ventricle semapv:crossSpeciesExactMatch TAO:0001446 semapv:UnspecifiedMatching 1:1 +ZFA:0001447 choroid plexus telencephalic ventricle semapv:crossSpeciesExactMatch TAO:0001447 semapv:UnspecifiedMatching 1:1 +ZFA:0001448 ultimobranchial body semapv:crossSpeciesExactMatch TAO:0001448 semapv:UnspecifiedMatching 1:1 +ZFA:0001449 mesenchyme pelvic fin semapv:crossSpeciesExactMatch TAO:0001449 semapv:UnspecifiedMatching 1:1 +ZFA:0001450 apical ectodermal ridge pelvic fin semapv:crossSpeciesExactMatch TAO:0001450 semapv:UnspecifiedMatching 1:1 +ZFA:0001451 zone of polarizing activity pectoral fin bud semapv:crossSpeciesExactMatch TAO:0001451 semapv:UnspecifiedMatching 1:1 +ZFA:0001452 zone of polarizing activity pelvic fin bud semapv:crossSpeciesExactMatch TAO:0001452 semapv:UnspecifiedMatching 1:1 +ZFA:0001453 pectoral fin field semapv:crossSpeciesExactMatch TAO:0001453 semapv:UnspecifiedMatching 1:1 +ZFA:0001454 pelvic fin field semapv:crossSpeciesExactMatch TAO:0001454 semapv:UnspecifiedMatching 1:1 +ZFA:0001455 scapulocoracoid semapv:crossSpeciesExactMatch TAO:0001455 semapv:UnspecifiedMatching 1:1 +ZFA:0001456 pectoral fin endoskeletal disc semapv:crossSpeciesExactMatch TAO:0001456 semapv:UnspecifiedMatching 1:1 +ZFA:0001457 postcranial axial cartilage semapv:crossSpeciesExactMatch TAO:0001457 semapv:UnspecifiedMatching 1:1 +ZFA:0001458 cranial cartilage semapv:crossSpeciesExactMatch TAO:0001458 semapv:UnspecifiedMatching 1:1 +ZFA:0001459 pelvic fin cartilage semapv:crossSpeciesExactMatch TAO:0001459 semapv:UnspecifiedMatching 1:1 +ZFA:0001460 pharyngeal arch cartilage semapv:crossSpeciesExactMatch TAO:0001460 semapv:UnspecifiedMatching 1:1 +ZFA:0001461 chondrocranium cartilage semapv:crossSpeciesExactMatch TAO:0001461 semapv:UnspecifiedMatching 1:1 +ZFA:0001462 somite border semapv:crossSpeciesExactMatch TAO:0001462 semapv:UnspecifiedMatching 1:1 +ZFA:0001463 melanophore stripe semapv:crossSpeciesExactMatch TAO:0001463 semapv:UnspecifiedMatching 1:1 +ZFA:0001464 retinal outer nuclear layer semapv:crossSpeciesExactMatch TAO:0001464 semapv:UnspecifiedMatching 1:1 +ZFA:0001465 photoreceptor inner segment layer semapv:crossSpeciesExactMatch TAO:0001465 semapv:UnspecifiedMatching 1:1 +ZFA:0001466 photoreceptor outer segment layer semapv:crossSpeciesExactMatch TAO:0001466 semapv:UnspecifiedMatching 1:1 +ZFA:0001467 pharyngeal mesoderm semapv:crossSpeciesExactMatch TAO:0001467 semapv:UnspecifiedMatching 1:1 +ZFA:0001468 anterior lateral line system semapv:crossSpeciesExactMatch TAO:0001468 semapv:UnspecifiedMatching 1:1 +ZFA:0001469 lateral line semapv:crossSpeciesExactMatch TAO:0001469 semapv:UnspecifiedMatching 1:1 +ZFA:0001470 anterior lateral line semapv:crossSpeciesExactMatch TAO:0001470 semapv:UnspecifiedMatching 1:1 +ZFA:0001471 posterior lateral line system semapv:crossSpeciesExactMatch TAO:0001471 semapv:UnspecifiedMatching 1:1 +ZFA:0001472 anterior lateral line neuromast semapv:crossSpeciesExactMatch TAO:0001472 semapv:UnspecifiedMatching 1:1 +ZFA:0001473 deep blastomere semapv:crossSpeciesExactMatch TAO:0001473 semapv:UnspecifiedMatching 1:1 +ZFA:0001477 portion of tissue semapv:crossSpeciesExactMatch CARO:0000043 semapv:UnspecifiedMatching 1:n +ZFA:0001477 portion of tissue semapv:crossSpeciesExactMatch TAO:0001477 semapv:UnspecifiedMatching 1:n +ZFA:0001478 anatomical cluster semapv:crossSpeciesExactMatch CARO:0000041 semapv:UnspecifiedMatching 1:n +ZFA:0001478 anatomical cluster semapv:crossSpeciesExactMatch TAO:0001478 semapv:UnspecifiedMatching 1:n +ZFA:0001479 lateral line nerve semapv:crossSpeciesExactMatch TAO:0001479 semapv:UnspecifiedMatching 1:1 +ZFA:0001480 dorsal anterior lateral line nerve semapv:crossSpeciesExactMatch TAO:0001480 semapv:UnspecifiedMatching 1:1 +ZFA:0001481 ventral anterior lateral line nerve semapv:crossSpeciesExactMatch TAO:0001481 semapv:UnspecifiedMatching 1:1 +ZFA:0001482 middle lateral line nerve semapv:crossSpeciesExactMatch TAO:0001482 semapv:UnspecifiedMatching 1:1 +ZFA:0001483 middle lateral line ganglion semapv:crossSpeciesExactMatch TAO:0001483 semapv:UnspecifiedMatching 1:1 +ZFA:0001484 superficial blastomere semapv:crossSpeciesExactMatch TAO:0001484 semapv:UnspecifiedMatching 1:1 +ZFA:0001485 basal lamina semapv:crossSpeciesExactMatch CARO:0000065 semapv:UnspecifiedMatching 1:n +ZFA:0001485 basal lamina semapv:crossSpeciesExactMatch TAO:0001485 semapv:UnspecifiedMatching 1:n +ZFA:0001486 epithelium semapv:crossSpeciesExactMatch CARO:0000066 semapv:UnspecifiedMatching 1:n +ZFA:0001486 epithelium semapv:crossSpeciesExactMatch TAO:0001486 semapv:UnspecifiedMatching 1:n +ZFA:0001487 portion of organism substance semapv:crossSpeciesExactMatch CARO:0000004 semapv:UnspecifiedMatching 1:n +ZFA:0001487 portion of organism substance semapv:crossSpeciesExactMatch TAO:0001487 semapv:UnspecifiedMatching 1:n +ZFA:0001488 multi-tissue structure semapv:crossSpeciesExactMatch CARO:0000055 semapv:UnspecifiedMatching 1:n +ZFA:0001488 multi-tissue structure semapv:crossSpeciesExactMatch TAO:0001488 semapv:UnspecifiedMatching 1:n +ZFA:0001489 compound organ component semapv:crossSpeciesExactMatch CARO:0000019 semapv:UnspecifiedMatching 1:n +ZFA:0001489 compound organ component semapv:crossSpeciesExactMatch TAO:0001489 semapv:UnspecifiedMatching 1:n +ZFA:0001490 cavitated compound organ semapv:crossSpeciesExactMatch CARO:0000072 semapv:UnspecifiedMatching 1:n +ZFA:0001490 cavitated compound organ semapv:crossSpeciesExactMatch TAO:0001490 semapv:UnspecifiedMatching 1:n +ZFA:0001491 solid compound organ semapv:crossSpeciesExactMatch CARO:0000074 semapv:UnspecifiedMatching 1:n +ZFA:0001491 solid compound organ semapv:crossSpeciesExactMatch TAO:0001491 semapv:UnspecifiedMatching 1:n +ZFA:0001492 simple organ semapv:crossSpeciesExactMatch CARO:0000021 semapv:UnspecifiedMatching 1:n +ZFA:0001492 simple organ semapv:crossSpeciesExactMatch TAO:0001492 semapv:UnspecifiedMatching 1:n +ZFA:0001493 atypical epithelium semapv:crossSpeciesExactMatch CARO:0000071 semapv:UnspecifiedMatching 1:n +ZFA:0001493 atypical epithelium semapv:crossSpeciesExactMatch TAO:0001493 semapv:UnspecifiedMatching 1:n +ZFA:0001494 multilaminar epithelium semapv:crossSpeciesExactMatch CARO:0000069 semapv:UnspecifiedMatching 1:n +ZFA:0001494 multilaminar epithelium semapv:crossSpeciesExactMatch TAO:0001494 semapv:UnspecifiedMatching 1:n +ZFA:0001495 unilaminar epithelium semapv:crossSpeciesExactMatch CARO:0000073 semapv:UnspecifiedMatching 1:n +ZFA:0001495 unilaminar epithelium semapv:crossSpeciesExactMatch TAO:0001495 semapv:UnspecifiedMatching 1:n +ZFA:0001496 simple columnar epithelium semapv:crossSpeciesExactMatch CARO:0000068 semapv:UnspecifiedMatching 1:n +ZFA:0001496 simple columnar epithelium semapv:crossSpeciesExactMatch TAO:0001496 semapv:UnspecifiedMatching 1:n +ZFA:0001497 simple cuboidal epithelium semapv:crossSpeciesExactMatch CARO:0000067 semapv:UnspecifiedMatching 1:n +ZFA:0001497 simple cuboidal epithelium semapv:crossSpeciesExactMatch TAO:0001497 semapv:UnspecifiedMatching 1:n +ZFA:0001498 simple squamous epithelium semapv:crossSpeciesExactMatch CARO:0000070 semapv:UnspecifiedMatching 1:n +ZFA:0001498 simple squamous epithelium semapv:crossSpeciesExactMatch TAO:0001498 semapv:UnspecifiedMatching 1:n +ZFA:0001499 esophageal epithelium semapv:crossSpeciesExactMatch TAO:0001499 semapv:UnspecifiedMatching 1:1 +ZFA:0001500 auditory capsule semapv:crossSpeciesExactMatch TAO:0001500 semapv:UnspecifiedMatching 1:1 +ZFA:0001501 cartilage element semapv:crossSpeciesExactMatch TAO:0001501 semapv:UnspecifiedMatching 1:n +ZFA:0001501 cartilage element semapv:crossSpeciesExactMatch VSAO:0000000 semapv:UnspecifiedMatching 1:n +ZFA:0001502 epiphyseal bar semapv:crossSpeciesExactMatch TAO:0001502 semapv:UnspecifiedMatching 1:1 +ZFA:0001503 lamina orbitonasalis semapv:crossSpeciesExactMatch TAO:0001503 semapv:UnspecifiedMatching 1:1 +ZFA:0001504 occipital arch cartilage semapv:crossSpeciesExactMatch TAO:0001504 semapv:UnspecifiedMatching 1:1 +ZFA:0001505 taenia marginalis anterior semapv:crossSpeciesExactMatch TAO:0001505 semapv:UnspecifiedMatching 1:1 +ZFA:0001506 tectum synoticum semapv:crossSpeciesExactMatch TAO:0001506 semapv:UnspecifiedMatching 1:1 +ZFA:0001507 trabecula cranii semapv:crossSpeciesExactMatch TAO:0001507 semapv:UnspecifiedMatching 1:1 +ZFA:0001508 trabecula communis semapv:crossSpeciesExactMatch TAO:0001508 semapv:UnspecifiedMatching 1:1 +ZFA:0001509 sclerotic cartilage semapv:crossSpeciesExactMatch TAO:0001509 semapv:UnspecifiedMatching 1:1 +ZFA:0001510 basihyal cartilage semapv:crossSpeciesExactMatch TAO:0001510 semapv:UnspecifiedMatching 1:1 +ZFA:0001511 interhyal cartilage semapv:crossSpeciesExactMatch TAO:0001511 semapv:UnspecifiedMatching 1:1 +ZFA:0001512 anatomical group semapv:crossSpeciesExactMatch CARO:0000054 semapv:UnspecifiedMatching 1:n +ZFA:0001512 anatomical group semapv:crossSpeciesExactMatch TAO:0001512 semapv:UnspecifiedMatching 1:n +ZFA:0001513 dermomyotome semapv:crossSpeciesExactMatch TAO:0001513 semapv:UnspecifiedMatching 1:1 +ZFA:0001514 bone element semapv:crossSpeciesExactMatch TAO:0001514 semapv:UnspecifiedMatching 1:n +ZFA:0001514 bone element semapv:crossSpeciesExactMatch VSAO:0000057 semapv:UnspecifiedMatching 1:n +ZFA:0001515 taenia marginalis posterior semapv:crossSpeciesExactMatch TAO:0001515 semapv:UnspecifiedMatching 1:1 +ZFA:0001516 ceratobranchial cartilage semapv:crossSpeciesExactMatch TAO:0001516 semapv:UnspecifiedMatching 1:1 +ZFA:0001517 ceratobranchial 2 cartilage semapv:crossSpeciesExactMatch TAO:0001517 semapv:UnspecifiedMatching 1:1 +ZFA:0001518 ceratobranchial 3 cartilage semapv:crossSpeciesExactMatch TAO:0001518 semapv:UnspecifiedMatching 1:1 +ZFA:0001519 ceratobranchial 4 cartilage semapv:crossSpeciesExactMatch TAO:0001519 semapv:UnspecifiedMatching 1:1 +ZFA:0001520 ceratobranchial 1 cartilage semapv:crossSpeciesExactMatch TAO:0001520 semapv:UnspecifiedMatching 1:1 +ZFA:0001521 ceratobranchial 5 cartilage semapv:crossSpeciesExactMatch TAO:0001521 semapv:UnspecifiedMatching 1:1 +ZFA:0001522 hypobranchial cartilage semapv:crossSpeciesExactMatch TAO:0001522 semapv:UnspecifiedMatching 1:1 +ZFA:0001523 hypobranchial 4 cartilage semapv:crossSpeciesExactMatch TAO:0001523 semapv:UnspecifiedMatching 1:1 +ZFA:0001524 hypobranchial 1 cartilage semapv:crossSpeciesExactMatch TAO:0001524 semapv:UnspecifiedMatching 1:1 +ZFA:0001525 hypobranchial 2 cartilage semapv:crossSpeciesExactMatch TAO:0001525 semapv:UnspecifiedMatching 1:1 +ZFA:0001526 hypobranchial 3 cartilage semapv:crossSpeciesExactMatch TAO:0001526 semapv:UnspecifiedMatching 1:1 +ZFA:0001527 epibranchial cartilage semapv:crossSpeciesExactMatch TAO:0001527 semapv:UnspecifiedMatching 1:1 +ZFA:0001528 epibranchial 1 cartilage semapv:crossSpeciesExactMatch TAO:0001528 semapv:UnspecifiedMatching 1:1 +ZFA:0001529 epibranchial 3 cartilage semapv:crossSpeciesExactMatch TAO:0001529 semapv:UnspecifiedMatching 1:1 +ZFA:0001530 epibranchial 2 cartilage semapv:crossSpeciesExactMatch TAO:0001530 semapv:UnspecifiedMatching 1:1 +ZFA:0001531 epibranchial 4 cartilage semapv:crossSpeciesExactMatch TAO:0001531 semapv:UnspecifiedMatching 1:1 +ZFA:0001533 pharyngobranchial cartilage semapv:crossSpeciesExactMatch TAO:0001533 semapv:UnspecifiedMatching 1:1 +ZFA:0001534 pharyngobranchial 3 cartilage semapv:crossSpeciesExactMatch TAO:0001534 semapv:UnspecifiedMatching 1:1 +ZFA:0001535 median fin cartilage semapv:crossSpeciesExactMatch TAO:0001535 semapv:UnspecifiedMatching 1:1 +ZFA:0001536 pharyngobranchial 2 cartilage semapv:crossSpeciesExactMatch TAO:0001536 semapv:UnspecifiedMatching 1:1 +ZFA:0001537 mesocoracoid cartilage semapv:crossSpeciesExactMatch TAO:0001537 semapv:UnspecifiedMatching 1:1 +ZFA:0001538 pelvic radial cartilage semapv:crossSpeciesExactMatch TAO:0001538 semapv:UnspecifiedMatching 1:1 +ZFA:0001539 basipterygium cartilage semapv:crossSpeciesExactMatch TAO:0001539 semapv:UnspecifiedMatching 1:1 +ZFA:0001540 pelvic radial 3 cartilage semapv:crossSpeciesExactMatch TAO:0001540 semapv:UnspecifiedMatching 1:1 +ZFA:0001541 pelvic radial 2 cartilage semapv:crossSpeciesExactMatch TAO:0001541 semapv:UnspecifiedMatching 1:1 +ZFA:0001542 pelvic radial 1 cartilage semapv:crossSpeciesExactMatch TAO:0001542 semapv:UnspecifiedMatching 1:1 +ZFA:0001543 paired fin cartilage semapv:crossSpeciesExactMatch TAO:0001543 semapv:UnspecifiedMatching 1:1 +ZFA:0001550 caudal fin lepidotrichium semapv:crossSpeciesExactMatch TAO:0001550 semapv:UnspecifiedMatching 1:1 +ZFA:0001551 pectoral fin lepidotrichium semapv:crossSpeciesExactMatch TAO:0001551 semapv:UnspecifiedMatching 1:1 +ZFA:0001552 pelvic fin lepidotrichium semapv:crossSpeciesExactMatch TAO:0001552 semapv:UnspecifiedMatching 1:1 +ZFA:0001554 lepidotrichium semapv:crossSpeciesExactMatch TAO:0001554 semapv:UnspecifiedMatching 1:1 +ZFA:0001555 epibranchial ganglion semapv:crossSpeciesExactMatch TAO:0001555 semapv:UnspecifiedMatching 1:1 +ZFA:0001556 sympathetic chain ganglion semapv:crossSpeciesExactMatch TAO:0001556 semapv:UnspecifiedMatching 1:1 +ZFA:0001557 pronephric glomerulus semapv:crossSpeciesExactMatch TAO:0001557 semapv:UnspecifiedMatching 1:1 +ZFA:0001558 pronephric tubule semapv:crossSpeciesExactMatch TAO:0001558 semapv:UnspecifiedMatching 1:1 +ZFA:0001559 vertebral column semapv:crossSpeciesExactMatch TAO:0001559 semapv:UnspecifiedMatching 1:1 +ZFA:0001560 hypural 1 semapv:crossSpeciesExactMatch TAO:0001560 semapv:UnspecifiedMatching 1:1 +ZFA:0001561 hypural 2 semapv:crossSpeciesExactMatch TAO:0001561 semapv:UnspecifiedMatching 1:1 +ZFA:0001562 hypural 3 semapv:crossSpeciesExactMatch TAO:0001562 semapv:UnspecifiedMatching 1:1 +ZFA:0001563 hypural 4 semapv:crossSpeciesExactMatch TAO:0001563 semapv:UnspecifiedMatching 1:1 +ZFA:0001564 hypural 5 semapv:crossSpeciesExactMatch TAO:0001564 semapv:UnspecifiedMatching 1:1 +ZFA:0001565 oocyte stage II semapv:crossSpeciesExactMatch TAO:0001565 semapv:UnspecifiedMatching 1:1 +ZFA:0001566 oocyte stage III semapv:crossSpeciesExactMatch TAO:0001566 semapv:UnspecifiedMatching 1:1 +ZFA:0001567 oocyte stage I semapv:crossSpeciesExactMatch TAO:0001567 semapv:UnspecifiedMatching 1:1 +ZFA:0001568 oocyte stage IV semapv:crossSpeciesExactMatch TAO:0001568 semapv:UnspecifiedMatching 1:1 +ZFA:0001569 oocyte stage V semapv:crossSpeciesExactMatch TAO:0001569 semapv:UnspecifiedMatching 1:1 +ZFA:0001570 unfertilized egg semapv:crossSpeciesExactMatch CL:0000025 semapv:UnspecifiedMatching 1:n +ZFA:0001570 unfertilized egg semapv:crossSpeciesExactMatch TAO:0001570 semapv:UnspecifiedMatching 1:n +ZFA:0001571 postovulatory follicle semapv:crossSpeciesExactMatch TAO:0001571 semapv:UnspecifiedMatching 1:1 +ZFA:0001572 superior cervical ganglion semapv:crossSpeciesExactMatch TAO:0001572 semapv:UnspecifiedMatching 1:1 +ZFA:0001573 trunk ganglion semapv:crossSpeciesExactMatch TAO:0001573 semapv:UnspecifiedMatching 1:1 +ZFA:0001574 autonomic nervous system semapv:crossSpeciesExactMatch TAO:0001574 semapv:UnspecifiedMatching 1:1 +ZFA:0001575 parasympathetic nervous system semapv:crossSpeciesExactMatch TAO:0001575 semapv:UnspecifiedMatching 1:1 +ZFA:0001576 sympathetic nervous system semapv:crossSpeciesExactMatch TAO:0001576 semapv:UnspecifiedMatching 1:1 +ZFA:0001577 premaxilla ascending process semapv:crossSpeciesExactMatch TAO:0001577 semapv:UnspecifiedMatching 1:1 +ZFA:0001578 anterior dorsomedial process of autopalatine semapv:crossSpeciesExactMatch TAO:0001578 semapv:UnspecifiedMatching 1:1 +ZFA:0001579 ural vertebra 2 semapv:crossSpeciesExactMatch TAO:0001579 semapv:UnspecifiedMatching 1:1 +ZFA:0001580 neurocranium semapv:crossSpeciesExactMatch TAO:0001580 semapv:UnspecifiedMatching 1:1 +ZFA:0001581 ural centrum 2 semapv:crossSpeciesExactMatch TAO:0001581 semapv:UnspecifiedMatching 1:1 +ZFA:0001582 non-Weberian precaudal vertebra semapv:crossSpeciesExactMatch TAO:0001582 semapv:UnspecifiedMatching 1:1 +ZFA:0001583 preural centrum 1+ ural centrum 1 semapv:crossSpeciesExactMatch TAO:0001583 semapv:UnspecifiedMatching 1:1 +ZFA:0001584 caudal fin procurrent ray semapv:crossSpeciesExactMatch TAO:0001584 semapv:UnspecifiedMatching 1:1 +ZFA:0001585 caudal fin principal ray semapv:crossSpeciesExactMatch TAO:0001585 semapv:UnspecifiedMatching 1:1 +ZFA:0001586 pectoral fin radial semapv:crossSpeciesExactMatch TAO:0001586 semapv:UnspecifiedMatching 1:1 +ZFA:0001587 pectoral fin proximal radial semapv:crossSpeciesExactMatch TAO:0001587 semapv:UnspecifiedMatching 1:1 +ZFA:0001588 pectoral fin distal radial semapv:crossSpeciesExactMatch TAO:0001588 semapv:UnspecifiedMatching 1:1 +ZFA:0001589 propterygium semapv:crossSpeciesExactMatch TAO:0001589 semapv:UnspecifiedMatching 1:1 +ZFA:0001590 dermal bone semapv:crossSpeciesExactMatch TAO:0001590 semapv:UnspecifiedMatching 1:1 +ZFA:0001591 endochondral bone semapv:crossSpeciesExactMatch TAO:0001591 semapv:UnspecifiedMatching 1:1 +ZFA:0001592 claustrum bone semapv:crossSpeciesExactMatch TAO:0001592 semapv:UnspecifiedMatching 1:1 +ZFA:0001593 quadrate ventral process semapv:crossSpeciesExactMatch TAO:0000224 semapv:UnspecifiedMatching 1:1 +ZFA:0001594 preopercle horizontal limb semapv:crossSpeciesExactMatch TAO:0000289 semapv:UnspecifiedMatching 1:1 +ZFA:0001595 preopercle vertical limb semapv:crossSpeciesExactMatch TAO:0000336 semapv:UnspecifiedMatching 1:1 +ZFA:0001596 joint semapv:crossSpeciesExactMatch TAO:0000367 semapv:UnspecifiedMatching 1:1 +ZFA:0001597 exoccipital posteroventral region semapv:crossSpeciesExactMatch TAO:0000348 semapv:UnspecifiedMatching 1:1 +ZFA:0001598 basioccipital posterodorsal region semapv:crossSpeciesExactMatch TAO:0000337 semapv:UnspecifiedMatching 1:1 +ZFA:0001599 os suspensorium medial flange semapv:crossSpeciesExactMatch TAO:0002214 semapv:UnspecifiedMatching 1:1 +ZFA:0001600 neural spine 4 semapv:crossSpeciesExactMatch TAO:0001546 semapv:UnspecifiedMatching 1:1 +ZFA:0001601 manubrium semapv:crossSpeciesExactMatch TAO:0001553 semapv:UnspecifiedMatching 1:1 +ZFA:0001602 intercalarium ascending process semapv:crossSpeciesExactMatch TAO:0001548 semapv:UnspecifiedMatching 1:1 +ZFA:0001603 intercalarium articulating process semapv:crossSpeciesExactMatch TAO:0001549 semapv:UnspecifiedMatching 1:1 +ZFA:0001604 caudal fin upper lobe semapv:crossSpeciesExactMatch TAO:0001593 semapv:UnspecifiedMatching 1:1 +ZFA:0001605 caudal fin lower lobe semapv:crossSpeciesExactMatch TAO:0001594 semapv:UnspecifiedMatching 1:1 +ZFA:0001606 pharyngeal arch 3 semapv:crossSpeciesExactMatch TAO:0001598 semapv:UnspecifiedMatching 1:1 +ZFA:0001607 pharyngeal arch 4 semapv:crossSpeciesExactMatch TAO:0001599 semapv:UnspecifiedMatching 1:1 +ZFA:0001608 pharyngeal arch 5 semapv:crossSpeciesExactMatch TAO:0001600 semapv:UnspecifiedMatching 1:1 +ZFA:0001609 pharyngeal arch 6 semapv:crossSpeciesExactMatch TAO:0001601 semapv:UnspecifiedMatching 1:1 +ZFA:0001610 pharyngeal arch 7 semapv:crossSpeciesExactMatch TAO:0001602 semapv:UnspecifiedMatching 1:1 +ZFA:0001611 pharyngeal arch 2 semapv:crossSpeciesExactMatch TAO:0001596 semapv:UnspecifiedMatching 1:1 +ZFA:0001612 pharyngeal arch 1 semapv:crossSpeciesExactMatch TAO:0001595 semapv:UnspecifiedMatching 1:1 +ZFA:0001613 pharyngeal arch 3-7 semapv:crossSpeciesExactMatch TAO:0000625 semapv:UnspecifiedMatching 1:n +ZFA:0001613 pharyngeal arch 3-7 semapv:crossSpeciesExactMatch TAO:0001597 semapv:UnspecifiedMatching 1:n +ZFA:0001614 atrial endocardium semapv:crossSpeciesExactMatch TAO:0002169 semapv:UnspecifiedMatching 1:1 +ZFA:0001615 ventricular endocardium semapv:crossSpeciesExactMatch TAO:0002247 semapv:UnspecifiedMatching 1:1 +ZFA:0001616 atrioventricular canal endocardium semapv:crossSpeciesExactMatch TAO:0002170 semapv:UnspecifiedMatching 1:1 +ZFA:0001617 otolith semapv:crossSpeciesExactMatch TAO:0001621 semapv:UnspecifiedMatching 1:1 +ZFA:0001619 optic fiber layer semapv:crossSpeciesExactMatch TAO:0002212 semapv:UnspecifiedMatching 1:1 +ZFA:0001620 pronephric proximal convoluted tubule semapv:crossSpeciesExactMatch TAO:0002238 semapv:UnspecifiedMatching 1:1 +ZFA:0001621 pronephric proximal straight tubule semapv:crossSpeciesExactMatch TAO:0002239 semapv:UnspecifiedMatching 1:1 +ZFA:0001622 pronephric distal early tubule semapv:crossSpeciesExactMatch TAO:0002236 semapv:UnspecifiedMatching 1:1 +ZFA:0001623 posterior pronephric duct semapv:crossSpeciesExactMatch TAO:0002225 semapv:UnspecifiedMatching 1:1 +ZFA:0001625 optic nerve head semapv:crossSpeciesExactMatch TAO:0002213 semapv:UnspecifiedMatching 1:1 +ZFA:0001626 cerebral spinal fluid semapv:crossSpeciesExactMatch TAO:0002184 semapv:UnspecifiedMatching 1:1 +ZFA:0001627 lagenar capsule semapv:crossSpeciesExactMatch TAO:0001620 semapv:UnspecifiedMatching 1:1 +ZFA:0001628 replacement bone semapv:crossSpeciesExactMatch TAO:0001637 semapv:UnspecifiedMatching 1:1 +ZFA:0001629 perichordal bone semapv:crossSpeciesExactMatch TAO:0001639 semapv:UnspecifiedMatching 1:1 +ZFA:0001630 perichondral bone semapv:crossSpeciesExactMatch TAO:0001638 semapv:UnspecifiedMatching 1:1 +ZFA:0001631 notochordal ossification semapv:crossSpeciesExactMatch TAO:0001640 semapv:UnspecifiedMatching 1:1 +ZFA:0001632 portion of connective tissue semapv:crossSpeciesExactMatch TAO:0001641 semapv:UnspecifiedMatching 1:n +ZFA:0001632 portion of connective tissue semapv:crossSpeciesExactMatch VSAO:0000017 semapv:UnspecifiedMatching 1:n +ZFA:0001633 perichordal connective tissue semapv:crossSpeciesExactMatch TAO:0001642 semapv:UnspecifiedMatching 1:1 +ZFA:0001634 perichondrium semapv:crossSpeciesExactMatch TAO:0001643 semapv:UnspecifiedMatching 1:1 +ZFA:0001635 intramembranous bone semapv:crossSpeciesExactMatch TAO:0001644 semapv:UnspecifiedMatching 1:1 +ZFA:0001636 membrane bone semapv:crossSpeciesExactMatch TAO:0001645 semapv:UnspecifiedMatching 1:1 +ZFA:0001637 bony projection semapv:crossSpeciesExactMatch TAO:0001646 semapv:UnspecifiedMatching 1:n +ZFA:0001637 bony projection semapv:crossSpeciesExactMatch TAO:0001834 semapv:UnspecifiedMatching 1:n +ZFA:0001638 statoacoustic (VIII) nucleus semapv:crossSpeciesExactMatch TAO:0002243 semapv:UnspecifiedMatching 1:1 +ZFA:0001639 vascular endothelium semapv:crossSpeciesExactMatch TAO:0002171 semapv:UnspecifiedMatching 1:1 +ZFA:0001640 cephalic flexure semapv:crossSpeciesExactMatch TAO:0002181 semapv:UnspecifiedMatching 1:1 +ZFA:0001641 rudimentary neural arch semapv:crossSpeciesExactMatch TAO:0001666 semapv:UnspecifiedMatching 1:1 +ZFA:0001642 tooth row semapv:crossSpeciesExactMatch TAO:0001667 semapv:UnspecifiedMatching 1:1 +ZFA:0001643 anatomical space semapv:crossSpeciesExactMatch CARO:0000005 semapv:UnspecifiedMatching 1:n +ZFA:0001643 anatomical space semapv:crossSpeciesExactMatch TAO:0001668 semapv:UnspecifiedMatching 1:n +ZFA:0001644 articular cartilage semapv:crossSpeciesExactMatch TAO:0001670 semapv:UnspecifiedMatching 1:1 +ZFA:0001645 angular bone semapv:crossSpeciesExactMatch TAO:0001669 semapv:UnspecifiedMatching 1:1 +ZFA:0001646 anal fin radial semapv:crossSpeciesExactMatch TAO:0001671 semapv:UnspecifiedMatching 1:1 +ZFA:0001647 dorsal fin radial semapv:crossSpeciesExactMatch TAO:0001672 semapv:UnspecifiedMatching 1:1 +ZFA:0001648 cardiac neural crest semapv:crossSpeciesExactMatch TAO:0002173 semapv:UnspecifiedMatching 1:1 +ZFA:0001649 infraorbital series semapv:crossSpeciesExactMatch TAO:0001709 semapv:UnspecifiedMatching 1:1 +ZFA:0001650 branchial mesenchyme semapv:crossSpeciesExactMatch TAO:0002172 semapv:UnspecifiedMatching 1:1 +ZFA:0001651 sternohyoid semapv:crossSpeciesExactMatch TAO:0000283 semapv:UnspecifiedMatching 1:n +ZFA:0001651 sternohyoid semapv:crossSpeciesExactMatch TAO:0002200 semapv:UnspecifiedMatching 1:n +ZFA:0001652 head muscle semapv:crossSpeciesExactMatch TAO:0002198 semapv:UnspecifiedMatching 1:1 +ZFA:0001653 pericardial muscle semapv:crossSpeciesExactMatch TAO:0002221 semapv:UnspecifiedMatching 1:1 +ZFA:0001654 opercular cavity semapv:crossSpeciesExactMatch TAO:0002154 semapv:UnspecifiedMatching 1:1 +ZFA:0001655 pericardial cavity semapv:crossSpeciesExactMatch TAO:0002220 semapv:UnspecifiedMatching 1:1 +ZFA:0001656 pleuroperitoneal cavity semapv:crossSpeciesExactMatch TAO:0002224 semapv:UnspecifiedMatching 1:1 +ZFA:0001657 supraoptic tract semapv:crossSpeciesExactMatch TAO:0002244 semapv:UnspecifiedMatching 1:1 +ZFA:0001658 hindbrain nucleus semapv:crossSpeciesExactMatch TAO:0002177 semapv:UnspecifiedMatching 1:1 +ZFA:0001659 diencephalic nucleus semapv:crossSpeciesExactMatch TAO:0002191 semapv:UnspecifiedMatching 1:1 +ZFA:0001660 telencephalic nucleus semapv:crossSpeciesExactMatch TAO:0002178 semapv:UnspecifiedMatching 1:1 +ZFA:0001662 preglomerular nucleus semapv:crossSpeciesExactMatch TAO:0002226 semapv:UnspecifiedMatching 1:1 +ZFA:0001663 cranial nerve root semapv:crossSpeciesExactMatch TAO:0002190 semapv:UnspecifiedMatching 1:1 +ZFA:0001665 midbrain nucleus semapv:crossSpeciesExactMatch TAO:0002209 semapv:UnspecifiedMatching 1:1 +ZFA:0001666 periventricular nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0002222 semapv:UnspecifiedMatching 1:1 +ZFA:0001667 peripheral nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0002179 semapv:UnspecifiedMatching 1:1 +ZFA:0001668 central nucleus of ventral telencephalon semapv:crossSpeciesExactMatch TAO:0002180 semapv:UnspecifiedMatching 1:1 +ZFA:0001669 intermediate nucleus semapv:crossSpeciesExactMatch TAO:0002202 semapv:UnspecifiedMatching 1:1 +ZFA:0001670 notochord posterior region semapv:crossSpeciesExactMatch TAO:0001821 semapv:UnspecifiedMatching 1:1 +ZFA:0001671 macula communis semapv:crossSpeciesExactMatch TAO:0002206 semapv:UnspecifiedMatching 1:1 +ZFA:0001672 dorsolateral septum semapv:crossSpeciesExactMatch TAO:0002193 semapv:UnspecifiedMatching 1:1 +ZFA:0001673 pronephric podocyte semapv:crossSpeciesExactMatch TAO:0002237 semapv:UnspecifiedMatching 1:1 +ZFA:0001674 mesonephric podocyte semapv:crossSpeciesExactMatch TAO:0002208 semapv:UnspecifiedMatching 1:1 +ZFA:0001675 ligament semapv:crossSpeciesExactMatch TAO:0001682 semapv:UnspecifiedMatching 1:1 +ZFA:0001676 annular ligament semapv:crossSpeciesExactMatch TAO:0002141 semapv:UnspecifiedMatching 1:1 +ZFA:0001677 floor plate midbrain region semapv:crossSpeciesExactMatch TAO:0002196 semapv:UnspecifiedMatching 1:1 +ZFA:0001678 immature eye semapv:crossSpeciesExactMatch TAO:0002201 semapv:UnspecifiedMatching 1:1 +ZFA:0001679 solid lens vesicle semapv:crossSpeciesExactMatch TAO:0002205 semapv:UnspecifiedMatching 1:1 +ZFA:0001680 parvocellular preoptic nucleus semapv:crossSpeciesExactMatch TAO:0002219 semapv:UnspecifiedMatching 1:1 +ZFA:0001681 grey matter semapv:crossSpeciesExactMatch TAO:0002197 semapv:UnspecifiedMatching 1:1 +ZFA:0001682 white matter semapv:crossSpeciesExactMatch TAO:0000145 semapv:UnspecifiedMatching 1:n +ZFA:0001682 white matter semapv:crossSpeciesExactMatch TAO:0002142 semapv:UnspecifiedMatching 1:n +ZFA:0001682 white matter semapv:crossSpeciesExactMatch TAO:0002143 semapv:UnspecifiedMatching 1:n +ZFA:0001683 corneal epithelium semapv:crossSpeciesExactMatch TAO:0002187 semapv:UnspecifiedMatching 1:1 +ZFA:0001684 Bowman's layer semapv:crossSpeciesExactMatch TAO:0002155 semapv:UnspecifiedMatching 1:1 +ZFA:0001685 corneal stroma semapv:crossSpeciesExactMatch TAO:0002189 semapv:UnspecifiedMatching 1:1 +ZFA:0001686 Descemet's membrane semapv:crossSpeciesExactMatch TAO:0002157 semapv:UnspecifiedMatching 1:1 +ZFA:0001687 corneal endothelium semapv:crossSpeciesExactMatch TAO:0002186 semapv:UnspecifiedMatching 1:1 +ZFA:0001688 corneal primordium semapv:crossSpeciesExactMatch TAO:0002188 semapv:UnspecifiedMatching 1:1 +ZFA:0001689 anatomical line semapv:crossSpeciesExactMatch CARO:0000008 semapv:UnspecifiedMatching 1:n +ZFA:0001689 anatomical line semapv:crossSpeciesExactMatch TAO:0001837 semapv:UnspecifiedMatching 1:n +ZFA:0001690 groove semapv:crossSpeciesExactMatch TAO:0001838 semapv:UnspecifiedMatching 1:1 +ZFA:0001691 cerebellar granule cell semapv:crossSpeciesExactMatch CL:0001031 semapv:UnspecifiedMatching 1:n +ZFA:0001691 cerebellar granule cell semapv:crossSpeciesExactMatch TAO:0002182 semapv:UnspecifiedMatching 1:n +ZFA:0001692 hindbrain commissure semapv:crossSpeciesExactMatch TAO:0002199 semapv:UnspecifiedMatching 1:1 +ZFA:0001694 olfactory granule cell semapv:crossSpeciesExactMatch CL:0000626 semapv:UnspecifiedMatching 1:n +ZFA:0001694 olfactory granule cell semapv:crossSpeciesExactMatch TAO:0002211 semapv:UnspecifiedMatching 1:n +ZFA:0001695 dorsolateral motor nucleus of vagal nerve semapv:crossSpeciesExactMatch TAO:0002192 semapv:UnspecifiedMatching 1:1 +ZFA:0001696 medial motor nucleus of vagal nerve semapv:crossSpeciesExactMatch TAO:0002207 semapv:UnspecifiedMatching 1:1 +ZFA:0001697 octaval nerve motor nucleus semapv:crossSpeciesExactMatch TAO:0002174 semapv:UnspecifiedMatching 1:1 +ZFA:0001698 rostral octaval nerve motor nucleus semapv:crossSpeciesExactMatch TAO:0002175 semapv:UnspecifiedMatching 1:1 +ZFA:0001699 caudal octaval nerve motor nucleus semapv:crossSpeciesExactMatch TAO:0002176 semapv:UnspecifiedMatching 1:1 +ZFA:0001700 tunica externa swim bladder semapv:crossSpeciesExactMatch TAO:0002245 semapv:UnspecifiedMatching 1:1 +ZFA:0001701 tunica interna swim bladder semapv:crossSpeciesExactMatch TAO:0002246 semapv:UnspecifiedMatching 1:1 +ZFA:0001702 apical ectodermal ridge semapv:crossSpeciesExactMatch TAO:0002146 semapv:UnspecifiedMatching 1:1 +ZFA:0001703 epidermal placode semapv:crossSpeciesExactMatch TAO:0002195 semapv:UnspecifiedMatching 1:1 +ZFA:0001704 scale primordium semapv:crossSpeciesExactMatch TAO:0002242 semapv:UnspecifiedMatching 1:1 +ZFA:0001706 Purkinje cell layer corpus cerebelli semapv:crossSpeciesExactMatch TAO:0002240 semapv:UnspecifiedMatching 1:1 +ZFA:0001707 brainstem semapv:crossSpeciesExactMatch TAO:0002156 semapv:UnspecifiedMatching 1:1 +ZFA:0001708 cerebellar white matter semapv:crossSpeciesExactMatch TAO:0002183 semapv:UnspecifiedMatching 1:1 +ZFA:0001709 Purkinje cell layer valvula cerebelli semapv:crossSpeciesExactMatch TAO:0002241 semapv:UnspecifiedMatching 1:1 +ZFA:0001710 mossy fiber semapv:crossSpeciesExactMatch TAO:0002210 semapv:UnspecifiedMatching 1:1 +ZFA:0001711 climbing fiber semapv:crossSpeciesExactMatch TAO:0002185 semapv:UnspecifiedMatching 1:1 +ZFA:0001712 presumptive bulbus arteriosus semapv:crossSpeciesExactMatch TAO:0002230 semapv:UnspecifiedMatching 1:1 +ZFA:0001713 parallel fiber semapv:crossSpeciesExactMatch TAO:0002218 semapv:UnspecifiedMatching 1:1 +ZFA:0001714 presumptive ventral mesoderm semapv:crossSpeciesExactMatch TAO:0002235 semapv:UnspecifiedMatching 1:1 +ZFA:0001715 otic vesicle protrusion semapv:crossSpeciesExactMatch TAO:0002215 semapv:UnspecifiedMatching 1:1 +ZFA:0001716 otic vesicle ventral protrusion semapv:crossSpeciesExactMatch TAO:0002216 semapv:UnspecifiedMatching 1:1 +ZFA:0001717 pillar of the semicircular canal semapv:crossSpeciesExactMatch TAO:0002223 semapv:UnspecifiedMatching 1:1 +ZFA:0001718 presumptive atrium heart tube semapv:crossSpeciesExactMatch TAO:0002228 semapv:UnspecifiedMatching 1:1 +ZFA:0001719 presumptive cardiac ventricle heart tube semapv:crossSpeciesExactMatch TAO:0002231 semapv:UnspecifiedMatching 1:1 +ZFA:0001720 presumptive cardiac ventricle primitive heart tube semapv:crossSpeciesExactMatch TAO:0002232 semapv:UnspecifiedMatching 1:1 +ZFA:0001721 presumptive atrium primitive heart tube semapv:crossSpeciesExactMatch TAO:0002229 semapv:UnspecifiedMatching 1:1 +ZFA:0001722 presumptive sinus venosus semapv:crossSpeciesExactMatch TAO:0002234 semapv:UnspecifiedMatching 1:1 +ZFA:0001723 presumptive atrioventricular canal semapv:crossSpeciesExactMatch TAO:0002227 semapv:UnspecifiedMatching 1:1 +ZFA:0001724 presumptive endocardium semapv:crossSpeciesExactMatch TAO:0002233 semapv:UnspecifiedMatching 1:1 +ZFA:0001725 immature Schwann cell semapv:crossSpeciesExactMatch CL:0002377 semapv:UnspecifiedMatching 1:n +ZFA:0001725 immature Schwann cell semapv:crossSpeciesExactMatch TAO:0002203 semapv:UnspecifiedMatching 1:n +ZFA:0005000 basal communicating artery semapv:crossSpeciesExactMatch TAO:0005000 semapv:UnspecifiedMatching 1:1 +ZFA:0005001 posterior communicating artery semapv:crossSpeciesExactMatch TAO:0005001 semapv:UnspecifiedMatching 1:1 +ZFA:0005002 basilar artery semapv:crossSpeciesExactMatch TAO:0005002 semapv:UnspecifiedMatching 1:1 +ZFA:0005003 pharyngeal vasculature semapv:crossSpeciesExactMatch TAO:0005003 semapv:UnspecifiedMatching 1:1 +ZFA:0005004 aortic arch semapv:crossSpeciesExactMatch TAO:0005004 semapv:UnspecifiedMatching 1:1 +ZFA:0005005 aortic arch 1 semapv:crossSpeciesExactMatch TAO:0005005 semapv:UnspecifiedMatching 1:1 +ZFA:0005006 aortic arch 2 semapv:crossSpeciesExactMatch TAO:0005006 semapv:UnspecifiedMatching 1:1 +ZFA:0005007 aortic arch 3 semapv:crossSpeciesExactMatch TAO:0005007 semapv:UnspecifiedMatching 1:1 +ZFA:0005008 aortic arch 4 semapv:crossSpeciesExactMatch TAO:0005008 semapv:UnspecifiedMatching 1:1 +ZFA:0005009 aortic arch 5 semapv:crossSpeciesExactMatch TAO:0005009 semapv:UnspecifiedMatching 1:1 +ZFA:0005010 mid cerebral vein semapv:crossSpeciesExactMatch TAO:0005010 semapv:UnspecifiedMatching 1:1 +ZFA:0005011 pseudobranchial artery semapv:crossSpeciesExactMatch TAO:0005011 semapv:UnspecifiedMatching 1:1 +ZFA:0005012 afferent filamental artery semapv:crossSpeciesExactMatch TAO:0005012 semapv:UnspecifiedMatching 1:1 +ZFA:0005013 concurrent branch afferent branchial artery semapv:crossSpeciesExactMatch TAO:0005013 semapv:UnspecifiedMatching 1:1 +ZFA:0005014 recurrent branch afferent branchial artery semapv:crossSpeciesExactMatch TAO:0005014 semapv:UnspecifiedMatching 1:1 +ZFA:0005015 afferent lamellar arteriole semapv:crossSpeciesExactMatch TAO:0005015 semapv:UnspecifiedMatching 1:1 +ZFA:0005016 aortic arch 6 semapv:crossSpeciesExactMatch TAO:0005016 semapv:UnspecifiedMatching 1:1 +ZFA:0005017 primordial midbrain channel semapv:crossSpeciesExactMatch TAO:0005017 semapv:UnspecifiedMatching 1:1 +ZFA:0005018 efferent filamental artery semapv:crossSpeciesExactMatch TAO:0005018 semapv:UnspecifiedMatching 1:1 +ZFA:0005019 efferent lamellar arteriole semapv:crossSpeciesExactMatch TAO:0005019 semapv:UnspecifiedMatching 1:1 +ZFA:0005020 central artery semapv:crossSpeciesExactMatch TAO:0005020 semapv:UnspecifiedMatching 1:1 +ZFA:0005021 cerebellar central artery semapv:crossSpeciesExactMatch TAO:0005021 semapv:UnspecifiedMatching 1:1 +ZFA:0005022 opercular artery semapv:crossSpeciesExactMatch TAO:0005022 semapv:UnspecifiedMatching 1:1 +ZFA:0005023 hematopoietic system semapv:crossSpeciesExactMatch TAO:0005023 semapv:UnspecifiedMatching 1:1 +ZFA:0005024 trunk vasculature semapv:crossSpeciesExactMatch TAO:0005024 semapv:UnspecifiedMatching 1:1 +ZFA:0005025 dorsal longitudinal anastomotic vessel semapv:crossSpeciesExactMatch TAO:0005025 semapv:UnspecifiedMatching 1:1 +ZFA:0005026 primary head sinus semapv:crossSpeciesExactMatch TAO:0005026 semapv:UnspecifiedMatching 1:1 +ZFA:0005027 posterior cerebral vein semapv:crossSpeciesExactMatch TAO:0005027 semapv:UnspecifiedMatching 1:1 +ZFA:0005028 ventral wall of dorsal aorta semapv:crossSpeciesExactMatch TAO:0005028 semapv:UnspecifiedMatching 1:1 +ZFA:0005029 rostral blood island semapv:crossSpeciesExactMatch TAO:0005029 semapv:UnspecifiedMatching 1:1 +ZFA:0005030 dorsal ciliary vein semapv:crossSpeciesExactMatch TAO:0005030 semapv:UnspecifiedMatching 1:1 +ZFA:0005031 dorsal longitudinal vein semapv:crossSpeciesExactMatch TAO:0005031 semapv:UnspecifiedMatching 1:1 +ZFA:0005032 optic vein semapv:crossSpeciesExactMatch TAO:0005032 semapv:UnspecifiedMatching 1:1 +ZFA:0005033 vertebral artery semapv:crossSpeciesExactMatch TAO:0005033 semapv:UnspecifiedMatching 1:1 +ZFA:0005034 parachordal vessel semapv:crossSpeciesExactMatch TAO:0005034 semapv:UnspecifiedMatching 1:1 +ZFA:0005035 subintestinal vein semapv:crossSpeciesExactMatch TAO:0005035 semapv:UnspecifiedMatching 1:1 +ZFA:0005036 supraintestinal artery semapv:crossSpeciesExactMatch TAO:0005036 semapv:UnspecifiedMatching 1:1 +ZFA:0005037 post-vent vasculature semapv:crossSpeciesExactMatch TAO:0005037 semapv:UnspecifiedMatching 1:1 +ZFA:0005038 supraintestinal vein semapv:crossSpeciesExactMatch TAO:0005038 semapv:UnspecifiedMatching 1:1 +ZFA:0005039 anterior lateral mesoderm semapv:crossSpeciesExactMatch TAO:0005039 semapv:UnspecifiedMatching 1:1 +ZFA:0005040 posterior lateral mesoderm semapv:crossSpeciesExactMatch TAO:0005040 semapv:UnspecifiedMatching 1:1 +ZFA:0005041 anterior lateral plate mesoderm semapv:crossSpeciesExactMatch TAO:0005041 semapv:UnspecifiedMatching 1:1 +ZFA:0005042 posterior lateral plate mesoderm semapv:crossSpeciesExactMatch TAO:0005042 semapv:UnspecifiedMatching 1:1 +ZFA:0005043 nevus semapv:crossSpeciesExactMatch TAO:0005043 semapv:UnspecifiedMatching 1:1 +ZFA:0005044 optic artery semapv:crossSpeciesExactMatch TAO:0005044 semapv:UnspecifiedMatching 1:1 +ZFA:0005045 hyaloid artery semapv:crossSpeciesExactMatch TAO:0005045 semapv:UnspecifiedMatching 1:1 +ZFA:0005046 hyaloid vessel semapv:crossSpeciesExactMatch TAO:0005046 semapv:UnspecifiedMatching 1:1 +ZFA:0005047 hyaloid vein semapv:crossSpeciesExactMatch TAO:0005047 semapv:UnspecifiedMatching 1:1 +ZFA:0005048 primitive prosencephalic artery semapv:crossSpeciesExactMatch TAO:0005048 semapv:UnspecifiedMatching 1:1 +ZFA:0005049 prosencephalic artery semapv:crossSpeciesExactMatch TAO:0005049 semapv:UnspecifiedMatching 1:1 +ZFA:0005050 palatocerebral artery semapv:crossSpeciesExactMatch TAO:0005050 semapv:UnspecifiedMatching 1:1 +ZFA:0005051 communicating vessel palatocerebral artery semapv:crossSpeciesExactMatch TAO:0005051 semapv:UnspecifiedMatching 1:1 +ZFA:0005052 anterior mesencephalic central artery semapv:crossSpeciesExactMatch TAO:0005052 semapv:UnspecifiedMatching 1:1 +ZFA:0005053 nasal ciliary artery semapv:crossSpeciesExactMatch TAO:0005053 semapv:UnspecifiedMatching 1:1 +ZFA:0005054 inner optic circle semapv:crossSpeciesExactMatch TAO:0005054 semapv:UnspecifiedMatching 1:1 +ZFA:0005055 median palatocerebral vein semapv:crossSpeciesExactMatch TAO:0005055 semapv:UnspecifiedMatching 1:1 +ZFA:0005056 palatocerebral vein semapv:crossSpeciesExactMatch TAO:0005056 semapv:UnspecifiedMatching 1:1 +ZFA:0005057 epicardium semapv:crossSpeciesExactMatch TAO:0005057 semapv:UnspecifiedMatching 1:1 +ZFA:0005058 ventricular epicardium semapv:crossSpeciesExactMatch TAO:0005058 semapv:UnspecifiedMatching 1:1 +ZFA:0005059 trabecular layer semapv:crossSpeciesExactMatch TAO:0005059 semapv:UnspecifiedMatching 1:1 +ZFA:0005060 trabecular layer of ventricle semapv:crossSpeciesExactMatch TAO:0005060 semapv:UnspecifiedMatching 1:1 +ZFA:0005061 ventricular myocardium semapv:crossSpeciesExactMatch TAO:0005061 semapv:UnspecifiedMatching 1:1 +ZFA:0005062 compact layer of ventricle semapv:crossSpeciesExactMatch TAO:0005062 semapv:UnspecifiedMatching 1:1 +ZFA:0005063 cardiac conduction system semapv:crossSpeciesExactMatch TAO:0005063 semapv:UnspecifiedMatching 1:1 +ZFA:0005064 atrioventricular valve semapv:crossSpeciesExactMatch TAO:0005064 semapv:UnspecifiedMatching 1:1 +ZFA:0005065 heart valve semapv:crossSpeciesExactMatch TAO:0005065 semapv:UnspecifiedMatching 1:1 +ZFA:0005066 bulbus arteriosus outer layer semapv:crossSpeciesExactMatch TAO:0005066 semapv:UnspecifiedMatching 1:1 +ZFA:0005067 bulbus arteriosus middle layer semapv:crossSpeciesExactMatch TAO:0005067 semapv:UnspecifiedMatching 1:1 +ZFA:0005068 bulbus arteriosus inner layer semapv:crossSpeciesExactMatch TAO:0005068 semapv:UnspecifiedMatching 1:1 +ZFA:0005069 sinoatrial node semapv:crossSpeciesExactMatch TAO:0005069 semapv:UnspecifiedMatching 1:1 +ZFA:0005070 atrioventricular node semapv:crossSpeciesExactMatch TAO:0005070 semapv:UnspecifiedMatching 1:1 +ZFA:0005072 endocardial ring semapv:crossSpeciesExactMatch TAO:0005072 semapv:UnspecifiedMatching 1:1 +ZFA:0005073 atrioventricular ring semapv:crossSpeciesExactMatch TAO:0005073 semapv:UnspecifiedMatching 1:1 +ZFA:0005074 central cardiac conduction system semapv:crossSpeciesExactMatch TAO:0005074 semapv:UnspecifiedMatching 1:1 +ZFA:0005075 peripheral cardiac conduction system semapv:crossSpeciesExactMatch TAO:0005075 semapv:UnspecifiedMatching 1:1 +ZFA:0005076 primordial vasculature semapv:crossSpeciesExactMatch TAO:0005076 semapv:UnspecifiedMatching 1:1 +ZFA:0005077 vascular cord semapv:crossSpeciesExactMatch TAO:0005077 semapv:UnspecifiedMatching 1:1 +ZFA:0005078 middle mesencephalic central artery semapv:crossSpeciesExactMatch TAO:0005078 semapv:UnspecifiedMatching 1:1 +ZFA:0005079 posterior mesencephalic central artery semapv:crossSpeciesExactMatch TAO:0005079 semapv:UnspecifiedMatching 1:1 +ZFA:0005080 anterior mesenteric artery semapv:crossSpeciesExactMatch TAO:0005080 semapv:UnspecifiedMatching 1:1 +ZFA:0005081 internal carotid artery semapv:crossSpeciesExactMatch TAO:0005081 semapv:UnspecifiedMatching 1:1 +ZFA:0005082 dorsal branch nasal ciliary artery semapv:crossSpeciesExactMatch TAO:0005082 semapv:UnspecifiedMatching 1:1 +ZFA:0005083 ventral branch nasal ciliary artery semapv:crossSpeciesExactMatch TAO:0005083 semapv:UnspecifiedMatching 1:1 +ZFA:0005084 metencephalic artery semapv:crossSpeciesExactMatch TAO:0005084 semapv:UnspecifiedMatching 1:1 +ZFA:0005085 nasal artery semapv:crossSpeciesExactMatch TAO:0005085 semapv:UnspecifiedMatching 1:1 +ZFA:0005086 pectoral artery semapv:crossSpeciesExactMatch TAO:0005086 semapv:UnspecifiedMatching 1:1 +ZFA:0005087 pectoral vein semapv:crossSpeciesExactMatch TAO:0005087 semapv:UnspecifiedMatching 1:1 +ZFA:0005088 posterior mesenteric artery semapv:crossSpeciesExactMatch TAO:0005088 semapv:UnspecifiedMatching 1:1 +ZFA:0005089 swim bladder artery semapv:crossSpeciesExactMatch TAO:0005089 semapv:UnspecifiedMatching 1:1 +ZFA:0005090 hepatic portal vein semapv:crossSpeciesExactMatch TAO:0005090 semapv:UnspecifiedMatching 1:1 +ZFA:0005091 hepatic sinusoid semapv:crossSpeciesExactMatch TAO:0005091 semapv:UnspecifiedMatching 1:1 +ZFA:0005092 mesencephalic vein semapv:crossSpeciesExactMatch TAO:0005092 semapv:UnspecifiedMatching 1:1 +ZFA:0005093 nasal vein semapv:crossSpeciesExactMatch TAO:0005093 semapv:UnspecifiedMatching 1:1 +ZFA:0005094 optic choroid vascular plexus semapv:crossSpeciesExactMatch TAO:0005094 semapv:UnspecifiedMatching 1:1 +ZFA:0005095 fin vasculature semapv:crossSpeciesExactMatch TAO:0005095 semapv:UnspecifiedMatching 1:1 +ZFA:0005096 pectoral fin vasculature semapv:crossSpeciesExactMatch TAO:0005096 semapv:UnspecifiedMatching 1:1 +ZFA:0005097 caudal fin vasculature semapv:crossSpeciesExactMatch TAO:0005097 semapv:UnspecifiedMatching 1:1 +ZFA:0005098 central ray artery semapv:crossSpeciesExactMatch TAO:0005098 semapv:UnspecifiedMatching 1:1 +ZFA:0005099 ray vein semapv:crossSpeciesExactMatch TAO:0005099 semapv:UnspecifiedMatching 1:1 +ZFA:0005100 intervessel commissure semapv:crossSpeciesExactMatch TAO:0005100 semapv:UnspecifiedMatching 1:1 +ZFA:0005101 interray vessel semapv:crossSpeciesExactMatch TAO:0005101 semapv:UnspecifiedMatching 1:1 +ZFA:0005102 presumptive median fin fold semapv:crossSpeciesExactMatch TAO:0005102 semapv:UnspecifiedMatching 1:1 +ZFA:0005103 presumptive ventral fin fold semapv:crossSpeciesExactMatch TAO:0005103 semapv:UnspecifiedMatching 1:1 +ZFA:0005104 presumptive dorsal fin fold semapv:crossSpeciesExactMatch TAO:0005104 semapv:UnspecifiedMatching 1:1 +ZFA:0005105 lymph vasculature semapv:crossSpeciesExactMatch TAO:0005105 semapv:UnspecifiedMatching 1:1 +ZFA:0005106 longitudinal lateral lymphatic vessel semapv:crossSpeciesExactMatch TAO:0005106 semapv:UnspecifiedMatching 1:1 +ZFA:0005107 pectoral lymphatic vessel semapv:crossSpeciesExactMatch TAO:0005107 semapv:UnspecifiedMatching 1:1 +ZFA:0005108 facial lymphatic vessel semapv:crossSpeciesExactMatch TAO:0005108 semapv:UnspecifiedMatching 1:1 +ZFA:0005109 jugular lymphatic vessel semapv:crossSpeciesExactMatch TAO:0005109 semapv:UnspecifiedMatching 1:1 +ZFA:0005110 thoracic duct semapv:crossSpeciesExactMatch TAO:0005110 semapv:UnspecifiedMatching 1:1 +ZFA:0005111 medial forebrain bundle semapv:crossSpeciesExactMatch TAO:0005111 semapv:UnspecifiedMatching 1:1 +ZFA:0005112 dorsal lateral line semapv:crossSpeciesExactMatch TAO:0005112 semapv:UnspecifiedMatching 1:1 +ZFA:0005113 dorsal lateral line neuromast semapv:crossSpeciesExactMatch TAO:0005113 semapv:UnspecifiedMatching 1:1 +ZFA:0005114 middle lateral line system semapv:crossSpeciesExactMatch TAO:0005114 semapv:UnspecifiedMatching 1:1 +ZFA:0005115 primary posterior lateral line primordium semapv:crossSpeciesExactMatch TAO:0005115 semapv:UnspecifiedMatching 1:1 +ZFA:0005116 secondary posterior lateral line primordium semapv:crossSpeciesExactMatch TAO:0005116 semapv:UnspecifiedMatching 1:1 +ZFA:0005117 anterior lateral line primordium semapv:crossSpeciesExactMatch TAO:0005117 semapv:UnspecifiedMatching 1:1 +ZFA:0005118 middle lateral line primordium semapv:crossSpeciesExactMatch TAO:0005118 semapv:UnspecifiedMatching 1:1 +ZFA:0005119 barbel primordium semapv:crossSpeciesExactMatch TAO:0005119 semapv:UnspecifiedMatching 1:1 +ZFA:0005120 peritoneum semapv:crossSpeciesExactMatch TAO:0005120 semapv:UnspecifiedMatching 1:1 +ZFA:0005121 middle lateral line placode semapv:crossSpeciesExactMatch TAO:0005121 semapv:UnspecifiedMatching 1:1 +ZFA:0005122 dorsal axial hypoblast semapv:crossSpeciesExactMatch TAO:0005122 semapv:UnspecifiedMatching 1:1 +ZFA:0005123 gut epithelium semapv:crossSpeciesExactMatch TAO:0005123 semapv:UnspecifiedMatching 1:1 +ZFA:0005124 intestinal epithelium semapv:crossSpeciesExactMatch TAO:0005124 semapv:UnspecifiedMatching 1:1 +ZFA:0005125 intestinal villus semapv:crossSpeciesExactMatch TAO:0005125 semapv:UnspecifiedMatching 1:1 +ZFA:0005126 intestinal bulb epithelium semapv:crossSpeciesExactMatch TAO:0005126 semapv:UnspecifiedMatching 1:1 +ZFA:0005127 mid intestine epithelium semapv:crossSpeciesExactMatch TAO:0005127 semapv:UnspecifiedMatching 1:1 +ZFA:0005128 posterior intestine epithelium semapv:crossSpeciesExactMatch TAO:0005128 semapv:UnspecifiedMatching 1:1 +ZFA:0005129 mesentery semapv:crossSpeciesExactMatch TAO:0005129 semapv:UnspecifiedMatching 1:1 +ZFA:0005130 dorsal mesentery semapv:crossSpeciesExactMatch TAO:0005130 semapv:UnspecifiedMatching 1:1 +ZFA:0005131 parietal peritoneum semapv:crossSpeciesExactMatch TAO:0005131 semapv:UnspecifiedMatching 1:1 +ZFA:0005132 visceral peritoneum semapv:crossSpeciesExactMatch TAO:0005132 semapv:UnspecifiedMatching 1:1 +ZFA:0005133 ventral mesentery semapv:crossSpeciesExactMatch TAO:0005133 semapv:UnspecifiedMatching 1:1 +ZFA:0005134 dental epithelium semapv:crossSpeciesExactMatch TAO:0005134 semapv:UnspecifiedMatching 1:1 +ZFA:0005135 primary dental epithelium semapv:crossSpeciesExactMatch TAO:0005135 semapv:UnspecifiedMatching 1:1 +ZFA:0005136 inner dental epithelium semapv:crossSpeciesExactMatch TAO:0005136 semapv:UnspecifiedMatching 1:1 +ZFA:0005137 outer dental epithelium semapv:crossSpeciesExactMatch TAO:0005137 semapv:UnspecifiedMatching 1:1 +ZFA:0005138 dental organ semapv:crossSpeciesExactMatch TAO:0005138 semapv:UnspecifiedMatching 1:1 +ZFA:0005139 dental mesenchyme semapv:crossSpeciesExactMatch TAO:0005139 semapv:UnspecifiedMatching 1:1 +ZFA:0005140 dental papilla semapv:crossSpeciesExactMatch TAO:0005140 semapv:UnspecifiedMatching 1:1 +ZFA:0005141 tooth pulp semapv:crossSpeciesExactMatch TAO:0005141 semapv:UnspecifiedMatching 1:1 +ZFA:0005142 enameloid semapv:crossSpeciesExactMatch TAO:0005142 semapv:UnspecifiedMatching 1:1 +ZFA:0005143 dentine semapv:crossSpeciesExactMatch TAO:0005143 semapv:UnspecifiedMatching 1:1 +ZFA:0005144 ampullary nerve semapv:crossSpeciesExactMatch TAO:0005144 semapv:UnspecifiedMatching 1:1 +ZFA:0005145 muscle semapv:crossSpeciesExactMatch TAO:0005145 semapv:UnspecifiedMatching 1:1 +ZFA:0005146 area postrema semapv:crossSpeciesExactMatch TAO:0005146 semapv:UnspecifiedMatching 1:1 +ZFA:0005147 regenerating tissue semapv:crossSpeciesExactMatch TAO:0005147 semapv:UnspecifiedMatching 1:1 +ZFA:0005148 apical epidermal cap semapv:crossSpeciesExactMatch TAO:0005148 semapv:UnspecifiedMatching 1:1 +ZFA:0005149 distal epidermal cap semapv:crossSpeciesExactMatch TAO:0005149 semapv:UnspecifiedMatching 1:1 +ZFA:0005150 basal regeneration epithelium semapv:crossSpeciesExactMatch TAO:0005150 semapv:UnspecifiedMatching 1:1 +ZFA:0005151 gold iridophore semapv:crossSpeciesExactMatch TAO:0005151 semapv:UnspecifiedMatching 1:1 +ZFA:0005152 silver iridophore semapv:crossSpeciesExactMatch TAO:0005152 semapv:UnspecifiedMatching 1:1 +ZFA:0005153 synovial joint semapv:crossSpeciesExactMatch TAO:0005153 semapv:UnspecifiedMatching 1:1 +ZFA:0005154 synovial fluid semapv:crossSpeciesExactMatch TAO:0005154 semapv:UnspecifiedMatching 1:1 +ZFA:0005155 cartilaginous joint semapv:crossSpeciesExactMatch TAO:0005155 semapv:UnspecifiedMatching 1:1 +ZFA:0005156 fibrous joint semapv:crossSpeciesExactMatch TAO:0005156 semapv:UnspecifiedMatching 1:1 +ZFA:0005157 tela chorioidea tectal ventricle semapv:crossSpeciesExactMatch TAO:0005157 semapv:UnspecifiedMatching 1:1 +ZFA:0005158 tela chorioidea fourth ventricle semapv:crossSpeciesExactMatch TAO:0005158 semapv:UnspecifiedMatching 1:1 +ZFA:0005159 tela chorioidea third ventricle semapv:crossSpeciesExactMatch TAO:0005159 semapv:UnspecifiedMatching 1:1 +ZFA:0005160 tela chorioidea telencephalic ventricle semapv:crossSpeciesExactMatch TAO:0005160 semapv:UnspecifiedMatching 1:1 +ZFA:0005161 hepatic artery semapv:crossSpeciesExactMatch TAO:0005161 semapv:UnspecifiedMatching 1:1 +ZFA:0005162 digestive system duct semapv:crossSpeciesExactMatch TAO:0005162 semapv:UnspecifiedMatching 1:1 +ZFA:0005163 bile canaliculus semapv:crossSpeciesExactMatch TAO:0005163 semapv:UnspecifiedMatching 1:1 +ZFA:0005164 bile ductule semapv:crossSpeciesExactMatch TAO:0005164 semapv:UnspecifiedMatching 1:1 +ZFA:0005165 common bile duct semapv:crossSpeciesExactMatch TAO:0005165 semapv:UnspecifiedMatching 1:1 +ZFA:0005166 cystic duct semapv:crossSpeciesExactMatch TAO:0005166 semapv:UnspecifiedMatching 1:1 +ZFA:0005167 hepatopancreatic ampulla semapv:crossSpeciesExactMatch TAO:0005167 semapv:UnspecifiedMatching 1:1 +ZFA:0005168 central vein semapv:crossSpeciesExactMatch TAO:0005168 semapv:UnspecifiedMatching 1:1 +ZFA:0005169 intrahepatic bile duct semapv:crossSpeciesExactMatch TAO:0005169 semapv:UnspecifiedMatching 1:1 +ZFA:0005170 extrahepatic duct semapv:crossSpeciesExactMatch TAO:0005170 semapv:UnspecifiedMatching 1:1 +ZFA:0005171 duct semapv:crossSpeciesExactMatch TAO:0005171 semapv:UnspecifiedMatching 1:1 +ZFA:0005172 left liver lobe semapv:crossSpeciesExactMatch TAO:0005172 semapv:UnspecifiedMatching 1:1 +ZFA:0005173 right liver lobe semapv:crossSpeciesExactMatch TAO:0005173 semapv:UnspecifiedMatching 1:1 +ZFA:0005174 ventral liver lobe semapv:crossSpeciesExactMatch TAO:0005174 semapv:UnspecifiedMatching 1:1 +ZFA:0005175 CoPA semapv:crossSpeciesExactMatch TAO:0005175 semapv:UnspecifiedMatching 1:1 +ZFA:0005176 CoSA semapv:crossSpeciesExactMatch TAO:0005176 semapv:UnspecifiedMatching 1:1 +ZFA:0005177 VeLD semapv:crossSpeciesExactMatch TAO:0005177 semapv:UnspecifiedMatching 1:1 +ZFA:0005178 DoLA semapv:crossSpeciesExactMatch TAO:0005178 semapv:UnspecifiedMatching 1:1 +ZFA:0005179 MiP motor neuron semapv:crossSpeciesExactMatch TAO:0005179 semapv:UnspecifiedMatching 1:1 +ZFA:0005180 RoP motor neuron semapv:crossSpeciesExactMatch TAO:0005180 semapv:UnspecifiedMatching 1:1 +ZFA:0005181 VaP motor neuron semapv:crossSpeciesExactMatch TAO:0005181 semapv:UnspecifiedMatching 1:1 +ZFA:0005183 MiD2i semapv:crossSpeciesExactMatch TAO:0005183 semapv:UnspecifiedMatching 1:1 +ZFA:0005184 MiD2cl semapv:crossSpeciesExactMatch TAO:0005184 semapv:UnspecifiedMatching 1:1 +ZFA:0005185 MiD2cm semapv:crossSpeciesExactMatch TAO:0005185 semapv:UnspecifiedMatching 1:1 +ZFA:0005186 CoB semapv:crossSpeciesExactMatch TAO:0005186 semapv:UnspecifiedMatching 1:1 +ZFA:0005187 MiM1 semapv:crossSpeciesExactMatch TAO:0005187 semapv:UnspecifiedMatching 1:1 +ZFA:0005188 MiR1 semapv:crossSpeciesExactMatch TAO:0005188 semapv:UnspecifiedMatching 1:1 +ZFA:0005189 MiR2 semapv:crossSpeciesExactMatch TAO:0005189 semapv:UnspecifiedMatching 1:1 +ZFA:0005190 MiV1 semapv:crossSpeciesExactMatch TAO:0005190 semapv:UnspecifiedMatching 1:1 +ZFA:0005191 MiV2 semapv:crossSpeciesExactMatch TAO:0005191 semapv:UnspecifiedMatching 1:1 +ZFA:0005192 RoI2C semapv:crossSpeciesExactMatch TAO:0005192 semapv:UnspecifiedMatching 1:1 +ZFA:0005193 RoI2R semapv:crossSpeciesExactMatch TAO:0005193 semapv:UnspecifiedMatching 1:1 +ZFA:0005194 RoL1 semapv:crossSpeciesExactMatch TAO:0005194 semapv:UnspecifiedMatching 1:1 +ZFA:0005195 MiD3cl semapv:crossSpeciesExactMatch TAO:0005195 semapv:UnspecifiedMatching 1:1 +ZFA:0005196 MiD3cm semapv:crossSpeciesExactMatch TAO:0005196 semapv:UnspecifiedMatching 1:1 +ZFA:0005197 MiD3i semapv:crossSpeciesExactMatch TAO:0005197 semapv:UnspecifiedMatching 1:1 +ZFA:0005198 RoL2 semapv:crossSpeciesExactMatch TAO:0005198 semapv:UnspecifiedMatching 1:1 +ZFA:0005199 RoL2r semapv:crossSpeciesExactMatch TAO:0005199 semapv:UnspecifiedMatching 1:1 +ZFA:0005200 RoL2c semapv:crossSpeciesExactMatch TAO:0005200 semapv:UnspecifiedMatching 1:1 +ZFA:0005201 RoL3 semapv:crossSpeciesExactMatch TAO:0005201 semapv:UnspecifiedMatching 1:1 +ZFA:0005202 RoM1c semapv:crossSpeciesExactMatch TAO:0005202 semapv:UnspecifiedMatching 1:1 +ZFA:0005203 RoM1r semapv:crossSpeciesExactMatch TAO:0005203 semapv:UnspecifiedMatching 1:1 +ZFA:0005205 RoM2l semapv:crossSpeciesExactMatch TAO:0005205 semapv:UnspecifiedMatching 1:1 +ZFA:0005206 RoM2m semapv:crossSpeciesExactMatch TAO:0005206 semapv:UnspecifiedMatching 1:1 +ZFA:0005207 RoM3l semapv:crossSpeciesExactMatch TAO:0005207 semapv:UnspecifiedMatching 1:1 +ZFA:0005208 RoM3m semapv:crossSpeciesExactMatch TAO:0005208 semapv:UnspecifiedMatching 1:1 +ZFA:0005209 hindbrain interneuron semapv:crossSpeciesExactMatch TAO:0005209 semapv:UnspecifiedMatching 1:1 +ZFA:0005210 midbrain interneuron semapv:crossSpeciesExactMatch TAO:0005210 semapv:UnspecifiedMatching 1:1 +ZFA:0005211 MeL semapv:crossSpeciesExactMatch TAO:0005211 semapv:UnspecifiedMatching 1:1 +ZFA:0005212 MeM semapv:crossSpeciesExactMatch TAO:0005212 semapv:UnspecifiedMatching 1:1 +ZFA:0005213 MeLr semapv:crossSpeciesExactMatch TAO:0005213 semapv:UnspecifiedMatching 1:1 +ZFA:0005214 MeLc semapv:crossSpeciesExactMatch TAO:0005214 semapv:UnspecifiedMatching 1:1 +ZFA:0005215 MeLm semapv:crossSpeciesExactMatch TAO:0005215 semapv:UnspecifiedMatching 1:1 +ZFA:0005216 MeM1 semapv:crossSpeciesExactMatch TAO:0005216 semapv:UnspecifiedMatching 1:1 +ZFA:0005217 CaV semapv:crossSpeciesExactMatch TAO:0005217 semapv:UnspecifiedMatching 1:1 +ZFA:0005218 CaD semapv:crossSpeciesExactMatch TAO:0005218 semapv:UnspecifiedMatching 1:1 +ZFA:0005219 choroid plexus vascular circuit semapv:crossSpeciesExactMatch TAO:0005219 semapv:UnspecifiedMatching 1:1 +ZFA:0005220 larval melanophore stripe semapv:crossSpeciesExactMatch TAO:0005220 semapv:UnspecifiedMatching 1:1 +ZFA:0005221 dorsal larval melanophore stripe semapv:crossSpeciesExactMatch TAO:0005221 semapv:UnspecifiedMatching 1:1 +ZFA:0005222 ventral larval melanophore stripe semapv:crossSpeciesExactMatch TAO:0005222 semapv:UnspecifiedMatching 1:1 +ZFA:0005223 lateral larval melanophore stripe semapv:crossSpeciesExactMatch TAO:0005223 semapv:UnspecifiedMatching 1:1 +ZFA:0005224 yolk larval melanophore stripe semapv:crossSpeciesExactMatch TAO:0005224 semapv:UnspecifiedMatching 1:1 +ZFA:0005225 lower lip semapv:crossSpeciesExactMatch TAO:0002060 semapv:UnspecifiedMatching 1:1 +ZFA:0005226 upper lip semapv:crossSpeciesExactMatch TAO:0001970 semapv:UnspecifiedMatching 1:1 +ZFA:0005227 protoneuromast semapv:crossSpeciesExactMatch TAO:0005227 semapv:UnspecifiedMatching 1:1 +ZFA:0005229 optic choroid semapv:crossSpeciesExactMatch TAO:0005229 semapv:UnspecifiedMatching 1:1 +ZFA:0005230 CoBL semapv:crossSpeciesExactMatch TAO:0005230 semapv:UnspecifiedMatching 1:1 +ZFA:0005231 bifurcate interneuron semapv:crossSpeciesExactMatch TAO:0005231 semapv:UnspecifiedMatching 1:1 +ZFA:0005232 MCoD semapv:crossSpeciesExactMatch TAO:0005232 semapv:UnspecifiedMatching 1:1 +ZFA:0005233 CiD semapv:crossSpeciesExactMatch TAO:0005233 semapv:UnspecifiedMatching 1:1 +ZFA:0005234 CoLA semapv:crossSpeciesExactMatch TAO:0005234 semapv:UnspecifiedMatching 1:1 +ZFA:0005235 UCoD semapv:crossSpeciesExactMatch TAO:0005235 semapv:UnspecifiedMatching 1:1 +ZFA:0005236 basophilic erythroblast semapv:crossSpeciesExactMatch CL:0000549 semapv:UnspecifiedMatching 1:n +ZFA:0005236 basophilic erythroblast semapv:crossSpeciesExactMatch TAO:0005236 semapv:UnspecifiedMatching 1:n +ZFA:0005237 erythroblast semapv:crossSpeciesExactMatch CL:0000765 semapv:UnspecifiedMatching 1:n +ZFA:0005237 erythroblast semapv:crossSpeciesExactMatch TAO:0005237 semapv:UnspecifiedMatching 1:n +ZFA:0005238 juxtaglomerular cell semapv:crossSpeciesExactMatch CL:0000648 semapv:UnspecifiedMatching 1:n +ZFA:0005238 juxtaglomerular cell semapv:crossSpeciesExactMatch TAO:0005238 semapv:UnspecifiedMatching 1:n +ZFA:0005239 micropylar cell semapv:crossSpeciesExactMatch CL:0007022 semapv:UnspecifiedMatching 1:n +ZFA:0005239 micropylar cell semapv:crossSpeciesExactMatch TAO:0005239 semapv:UnspecifiedMatching 1:n +ZFA:0005240 Kolmer-Agduhr neuron semapv:crossSpeciesExactMatch CL:0005007 semapv:UnspecifiedMatching 1:n +ZFA:0005240 Kolmer-Agduhr neuron semapv:crossSpeciesExactMatch TAO:0005240 semapv:UnspecifiedMatching 1:n +ZFA:0005241 polychromatophilic erythroblast semapv:crossSpeciesExactMatch CL:0000550 semapv:UnspecifiedMatching 1:n +ZFA:0005241 polychromatophilic erythroblast semapv:crossSpeciesExactMatch TAO:0005241 semapv:UnspecifiedMatching 1:n +ZFA:0005242 multi-ciliated epithelial cell semapv:crossSpeciesExactMatch CL:0005012 semapv:UnspecifiedMatching 1:n +ZFA:0005242 multi-ciliated epithelial cell semapv:crossSpeciesExactMatch TAO:0005242 semapv:UnspecifiedMatching 1:n +ZFA:0005243 single ciliated epithelial cell semapv:crossSpeciesExactMatch CL:0005013 semapv:UnspecifiedMatching 1:n +ZFA:0005243 single ciliated epithelial cell semapv:crossSpeciesExactMatch TAO:0005243 semapv:UnspecifiedMatching 1:n +ZFA:0005244 auditory epithelial support cell semapv:crossSpeciesExactMatch CL:0005014 semapv:UnspecifiedMatching 1:n +ZFA:0005244 auditory epithelial support cell semapv:crossSpeciesExactMatch TAO:0005244 semapv:UnspecifiedMatching 1:n +ZFA:0005245 xanthoblast semapv:crossSpeciesExactMatch CL:0005002 semapv:UnspecifiedMatching 1:n +ZFA:0005245 xanthoblast semapv:crossSpeciesExactMatch TAO:0002148 semapv:UnspecifiedMatching 1:n +ZFA:0005246 regeneration fibroblast semapv:crossSpeciesExactMatch TAO:0005246 semapv:UnspecifiedMatching 1:1 +ZFA:0005247 CiA semapv:crossSpeciesExactMatch TAO:0005247 semapv:UnspecifiedMatching 1:1 +ZFA:0005248 trans-choroid plexus branch semapv:crossSpeciesExactMatch TAO:0005248 semapv:UnspecifiedMatching 1:1 +ZFA:0005249 vasculature semapv:crossSpeciesExactMatch TAO:0005249 semapv:UnspecifiedMatching 1:n +ZFA:0005250 capillary semapv:crossSpeciesExactMatch TAO:0005250 semapv:UnspecifiedMatching 1:1 +ZFA:0005251 microcirculatory vessel semapv:crossSpeciesExactMatch TAO:0005251 semapv:UnspecifiedMatching 1:1 +ZFA:0005252 lymphatic capillary semapv:crossSpeciesExactMatch TAO:0005252 semapv:UnspecifiedMatching 1:1 +ZFA:0005253 renal glomerular capsule epithelium semapv:crossSpeciesExactMatch TAO:0005253 semapv:UnspecifiedMatching 1:1 +ZFA:0005254 renal glomerular capsule semapv:crossSpeciesExactMatch TAO:0005254 semapv:UnspecifiedMatching 1:1 +ZFA:0005255 arteriole semapv:crossSpeciesExactMatch TAO:0002138 semapv:UnspecifiedMatching 1:1 +ZFA:0005256 intervillus pockets semapv:crossSpeciesExactMatch TAO:0005256 semapv:UnspecifiedMatching 1:1 +ZFA:0005257 blood vessel endothelium semapv:crossSpeciesExactMatch TAO:0005257 semapv:UnspecifiedMatching 1:1 +ZFA:0005258 lymph vessel endothelium semapv:crossSpeciesExactMatch TAO:0005258 semapv:UnspecifiedMatching 1:1 +ZFA:0005259 continuous blood vessel endothelium semapv:crossSpeciesExactMatch TAO:0005259 semapv:UnspecifiedMatching 1:1 +ZFA:0005260 fenestrated blood vessel endothelium semapv:crossSpeciesExactMatch TAO:0005260 semapv:UnspecifiedMatching 1:1 +ZFA:0005261 sinusoidal blood vessel endothelium semapv:crossSpeciesExactMatch TAO:0005261 semapv:UnspecifiedMatching 1:1 +ZFA:0005262 caudal fin dorsal procurrent ray semapv:crossSpeciesExactMatch TAO:0001829 semapv:UnspecifiedMatching 1:1 +ZFA:0005263 caudal fin ventral procurrent ray semapv:crossSpeciesExactMatch TAO:0001830 semapv:UnspecifiedMatching 1:1 +ZFA:0005264 primordial ligament semapv:crossSpeciesExactMatch TAO:0001828 semapv:UnspecifiedMatching 1:1 +ZFA:0005265 premaxillary-maxillary ligament semapv:crossSpeciesExactMatch TAO:0001827 semapv:UnspecifiedMatching 1:1 +ZFA:0005267 erector muscle semapv:crossSpeciesExactMatch TAO:0005267 semapv:UnspecifiedMatching 1:1 +ZFA:0005268 adductor muscle semapv:crossSpeciesExactMatch TAO:0002136 semapv:UnspecifiedMatching 1:1 +ZFA:0005269 abductor muscle semapv:crossSpeciesExactMatch TAO:0002135 semapv:UnspecifiedMatching 1:1 +ZFA:0005270 depressor muscle semapv:crossSpeciesExactMatch TAO:0005270 semapv:UnspecifiedMatching 1:1 +ZFA:0005271 flexor muscle semapv:crossSpeciesExactMatch TAO:0005271 semapv:UnspecifiedMatching 1:1 +ZFA:0005272 immature gonad semapv:crossSpeciesExactMatch TAO:0005272 semapv:UnspecifiedMatching 1:1 +ZFA:0005273 intestinal mucosal muscle semapv:crossSpeciesExactMatch TAO:0005273 semapv:UnspecifiedMatching 1:1 +ZFA:0005274 smooth muscle semapv:crossSpeciesExactMatch TAO:0005274 semapv:UnspecifiedMatching 1:1 +ZFA:0005275 arrector muscle semapv:crossSpeciesExactMatch TAO:0002147 semapv:UnspecifiedMatching 1:1 +ZFA:0005276 inclinator muscle semapv:crossSpeciesExactMatch TAO:0005276 semapv:UnspecifiedMatching 1:1 +ZFA:0005277 skeletal muscle semapv:crossSpeciesExactMatch TAO:0005277 semapv:UnspecifiedMatching 1:1 +ZFA:0005279 enteric circular muscle semapv:crossSpeciesExactMatch TAO:0005279 semapv:UnspecifiedMatching 1:1 +ZFA:0005280 cardiac muscle semapv:crossSpeciesExactMatch TAO:0005280 semapv:UnspecifiedMatching 1:1 +ZFA:0005281 renal corpuscle semapv:crossSpeciesExactMatch TAO:0005281 semapv:UnspecifiedMatching 1:1 +ZFA:0005282 nephron semapv:crossSpeciesExactMatch TAO:0002153 semapv:UnspecifiedMatching 1:1 +ZFA:0005283 renal capsular space semapv:crossSpeciesExactMatch TAO:0005283 semapv:UnspecifiedMatching 1:1 +ZFA:0005284 glomerular capillary semapv:crossSpeciesExactMatch TAO:0005284 semapv:UnspecifiedMatching 1:1 +ZFA:0005285 glomerular basement membrane semapv:crossSpeciesExactMatch TAO:0005285 semapv:UnspecifiedMatching 1:1 +ZFA:0005286 lamina densa semapv:crossSpeciesExactMatch TAO:0005286 semapv:UnspecifiedMatching 1:1 +ZFA:0005287 lamina rara interna semapv:crossSpeciesExactMatch TAO:0005287 semapv:UnspecifiedMatching 1:1 +ZFA:0005288 lamina rara externa semapv:crossSpeciesExactMatch TAO:0005288 semapv:UnspecifiedMatching 1:1 +ZFA:0005289 renal duct semapv:crossSpeciesExactMatch TAO:0005289 semapv:UnspecifiedMatching 1:1 +ZFA:0005290 proximal convoluted tubule semapv:crossSpeciesExactMatch TAO:0005290 semapv:UnspecifiedMatching 1:1 +ZFA:0005291 proximal straight tubule semapv:crossSpeciesExactMatch TAO:0005291 semapv:UnspecifiedMatching 1:1 +ZFA:0005292 distal late tubule semapv:crossSpeciesExactMatch TAO:0005292 semapv:UnspecifiedMatching 1:1 +ZFA:0005293 distal early tubule semapv:crossSpeciesExactMatch TAO:0005293 semapv:UnspecifiedMatching 1:1 +ZFA:0005294 collecting duct semapv:crossSpeciesExactMatch TAO:0005294 semapv:UnspecifiedMatching 1:1 +ZFA:0005295 axial blood vessel semapv:crossSpeciesExactMatch TAO:0005295 semapv:UnspecifiedMatching 1:1 +ZFA:0005297 cranial blood vessel semapv:crossSpeciesExactMatch TAO:0005297 semapv:UnspecifiedMatching 1:1 +ZFA:0005298 cranial lymph vessel semapv:crossSpeciesExactMatch TAO:0005298 semapv:UnspecifiedMatching 1:1 +ZFA:0005299 fin blood vessel semapv:crossSpeciesExactMatch TAO:0005299 semapv:UnspecifiedMatching 1:1 +ZFA:0005300 fin lymph vessel semapv:crossSpeciesExactMatch TAO:0005300 semapv:UnspecifiedMatching 1:1 +ZFA:0005301 pectoral fin blood vessel semapv:crossSpeciesExactMatch TAO:0005301 semapv:UnspecifiedMatching 1:1 +ZFA:0005302 pectoral fin lymph vessel semapv:crossSpeciesExactMatch TAO:0005302 semapv:UnspecifiedMatching 1:1 +ZFA:0005303 caudal fin lymph vessel semapv:crossSpeciesExactMatch TAO:0005303 semapv:UnspecifiedMatching 1:1 +ZFA:0005304 caudal fin blood vessel semapv:crossSpeciesExactMatch TAO:0005304 semapv:UnspecifiedMatching 1:1 +ZFA:0005305 kidney vasculature semapv:crossSpeciesExactMatch TAO:0005305 semapv:UnspecifiedMatching 1:1 +ZFA:0005306 kidney blood vessel semapv:crossSpeciesExactMatch TAO:0005306 semapv:UnspecifiedMatching 1:1 +ZFA:0005307 afferent glomerular arteriole semapv:crossSpeciesExactMatch TAO:0002139 semapv:UnspecifiedMatching 1:1 +ZFA:0005308 efferent glomerular arteriole semapv:crossSpeciesExactMatch TAO:0002140 semapv:UnspecifiedMatching 1:1 +ZFA:0005309 pronephric glomerular capillary semapv:crossSpeciesExactMatch TAO:0005309 semapv:UnspecifiedMatching 1:1 +ZFA:0005310 pronephric glomerular capsule semapv:crossSpeciesExactMatch TAO:0005310 semapv:UnspecifiedMatching 1:1 +ZFA:0005311 pronephric glomerular capsule epithelium semapv:crossSpeciesExactMatch TAO:0005311 semapv:UnspecifiedMatching 1:1 +ZFA:0005312 pronephric capsular space semapv:crossSpeciesExactMatch TAO:0005312 semapv:UnspecifiedMatching 1:1 +ZFA:0005313 pronephric glomerular basement membrane semapv:crossSpeciesExactMatch TAO:0005313 semapv:UnspecifiedMatching 1:1 +ZFA:0005314 blood vessel semapv:crossSpeciesExactMatch TAO:0002137 semapv:UnspecifiedMatching 1:1 +ZFA:0005315 venule semapv:crossSpeciesExactMatch TAO:0005315 semapv:UnspecifiedMatching 1:1 +ZFA:0005316 fin fold pectoral fin bud semapv:crossSpeciesExactMatch TAO:0005316 semapv:UnspecifiedMatching 1:1 +ZFA:0005317 pectoral fin fold semapv:crossSpeciesExactMatch TAO:0005317 semapv:UnspecifiedMatching 1:1 +ZFA:0005319 intersegmental lymph vessel semapv:crossSpeciesExactMatch TAO:0005319 semapv:UnspecifiedMatching 1:1 +ZFA:0005320 dorsal longitudinal lymphatic vessel semapv:crossSpeciesExactMatch TAO:0005320 semapv:UnspecifiedMatching 1:1 +ZFA:0005321 vascular smooth muscle semapv:crossSpeciesExactMatch TAO:0005321 semapv:UnspecifiedMatching 1:1 +ZFA:0005322 renal principal cell semapv:crossSpeciesExactMatch CL:0005009 semapv:UnspecifiedMatching 1:n +ZFA:0005322 renal principal cell semapv:crossSpeciesExactMatch TAO:0005322 semapv:UnspecifiedMatching 1:n +ZFA:0005323 ionocyte semapv:crossSpeciesExactMatch CL:0005006 semapv:UnspecifiedMatching 1:n +ZFA:0005323 ionocyte semapv:crossSpeciesExactMatch TAO:0005323 semapv:UnspecifiedMatching 1:n +ZFA:0005324 gill ionocyte semapv:crossSpeciesExactMatch TAO:0005324 semapv:UnspecifiedMatching 1:1 +ZFA:0005325 integument ionocyte semapv:crossSpeciesExactMatch TAO:0005325 semapv:UnspecifiedMatching 1:1 +ZFA:0005326 NaK ionocyte semapv:crossSpeciesExactMatch TAO:0005326 semapv:UnspecifiedMatching 1:1 +ZFA:0005327 vH ionocyte semapv:crossSpeciesExactMatch TAO:0005327 semapv:UnspecifiedMatching 1:1 +ZFA:0005328 iridoblast semapv:crossSpeciesExactMatch CL:0005001 semapv:UnspecifiedMatching 1:n +ZFA:0005328 iridoblast semapv:crossSpeciesExactMatch TAO:0005328 semapv:UnspecifiedMatching 1:n +ZFA:0005329 leucoblast semapv:crossSpeciesExactMatch CL:0005003 semapv:UnspecifiedMatching 1:n +ZFA:0005329 leucoblast semapv:crossSpeciesExactMatch TAO:0005329 semapv:UnspecifiedMatching 1:n +ZFA:0005331 pigment erythroblast semapv:crossSpeciesExactMatch CL:0005004 semapv:UnspecifiedMatching 1:n +ZFA:0005331 pigment erythroblast semapv:crossSpeciesExactMatch TAO:0005331 semapv:UnspecifiedMatching 1:n +ZFA:0005332 cyanoblast semapv:crossSpeciesExactMatch CL:0005005 semapv:UnspecifiedMatching 1:n +ZFA:0005332 cyanoblast semapv:crossSpeciesExactMatch TAO:0005332 semapv:UnspecifiedMatching 1:n +ZFA:0005333 tongue semapv:crossSpeciesExactMatch TAO:0005333 semapv:UnspecifiedMatching 1:1 +ZFA:0005334 lip epithelium semapv:crossSpeciesExactMatch TAO:0005334 semapv:UnspecifiedMatching 1:1 +ZFA:0005335 swim bladder bud semapv:crossSpeciesExactMatch TAO:0005335 semapv:UnspecifiedMatching 1:1 +ZFA:0005336 presumptive swim bladder semapv:crossSpeciesExactMatch TAO:0005336 semapv:UnspecifiedMatching 1:1 +ZFA:0005337 anterior swim bladder bud semapv:crossSpeciesExactMatch TAO:0002145 semapv:UnspecifiedMatching 1:1 +ZFA:0005338 posterior recess semapv:crossSpeciesExactMatch TAO:0005338 semapv:UnspecifiedMatching 1:1 +ZFA:0005339 nucleus of the lateral recess semapv:crossSpeciesExactMatch TAO:0005339 semapv:UnspecifiedMatching 1:1 +ZFA:0005340 nucleus of the posterior recess semapv:crossSpeciesExactMatch TAO:0005340 semapv:UnspecifiedMatching 1:1 +ZFA:0005341 medial longitudinal catecholaminergic tract semapv:crossSpeciesExactMatch TAO:0005341 semapv:UnspecifiedMatching 1:1 +ZFA:0005342 anterior catecholaminergic tract semapv:crossSpeciesExactMatch TAO:0002144 semapv:UnspecifiedMatching 1:1 +ZFA:0005343 endohypothalamic tract semapv:crossSpeciesExactMatch TAO:0005343 semapv:UnspecifiedMatching 1:1 +ZFA:0005344 preopticohypothalamic tract semapv:crossSpeciesExactMatch TAO:0005344 semapv:UnspecifiedMatching 1:1 +ZFA:0005345 adipose tissue semapv:crossSpeciesExactMatch TAO:0002134 semapv:UnspecifiedMatching 1:1 +ZFA:0005346 extrapancreatic duct semapv:crossSpeciesExactMatch TAO:0005346 semapv:UnspecifiedMatching 1:1 +ZFA:0005347 vertebra 5 semapv:crossSpeciesExactMatch TAO:0001732 semapv:UnspecifiedMatching 1:1 +ZFA:0005348 vertebra 6 semapv:crossSpeciesExactMatch TAO:0001980 semapv:UnspecifiedMatching 1:1 +ZFA:0005349 vertebra 7 semapv:crossSpeciesExactMatch TAO:0001981 semapv:UnspecifiedMatching 1:1 +ZFA:0005350 vertebra 8 semapv:crossSpeciesExactMatch TAO:0001982 semapv:UnspecifiedMatching 1:1 +ZFA:0005351 vertebra 9 semapv:crossSpeciesExactMatch TAO:0002149 semapv:UnspecifiedMatching 1:1 +ZFA:0005352 vertebra 12 semapv:crossSpeciesExactMatch TAO:0002152 semapv:UnspecifiedMatching 1:1 +ZFA:0005353 vertebra 10 semapv:crossSpeciesExactMatch TAO:0002150 semapv:UnspecifiedMatching 1:1 +ZFA:0005354 vertebra 11 semapv:crossSpeciesExactMatch TAO:0002151 semapv:UnspecifiedMatching 1:1 +ZFA:0005355 dorsal fin lepidotrichium 1 semapv:crossSpeciesExactMatch TAO:0001754 semapv:UnspecifiedMatching 1:1 +ZFA:0005356 dorsal fin lepidotrichium 2 semapv:crossSpeciesExactMatch TAO:0001755 semapv:UnspecifiedMatching 1:1 +ZFA:0005357 dorsal fin lepidotrichium 3 semapv:crossSpeciesExactMatch TAO:0001756 semapv:UnspecifiedMatching 1:1 +ZFA:0005358 dorsal fin lepidotrichium 4 semapv:crossSpeciesExactMatch TAO:0001757 semapv:UnspecifiedMatching 1:1 +ZFA:0005359 dorsal fin lepidotrichium 5 semapv:crossSpeciesExactMatch TAO:0001758 semapv:UnspecifiedMatching 1:1 +ZFA:0005360 dorsal fin lepidotrichium 6 semapv:crossSpeciesExactMatch TAO:0001759 semapv:UnspecifiedMatching 1:1 +ZFA:0005361 dorsal fin lepidotrichium 7 semapv:crossSpeciesExactMatch TAO:0001760 semapv:UnspecifiedMatching 1:1 +ZFA:0005362 dorsal fin proximal radial 1 semapv:crossSpeciesExactMatch TAO:0001818 semapv:UnspecifiedMatching 1:1 +ZFA:0005363 dorsal fin proximal radial 2 semapv:crossSpeciesExactMatch TAO:0001819 semapv:UnspecifiedMatching 1:1 +ZFA:0005364 dorsal fin pterygiophore 1 semapv:crossSpeciesExactMatch TAO:0002094 semapv:UnspecifiedMatching 1:1 +ZFA:0005365 dorsal fin pterygiophore 2 semapv:crossSpeciesExactMatch TAO:0005365 semapv:UnspecifiedMatching 1:1 +ZFA:0005366 dorsal fin pterygiophore 3 semapv:crossSpeciesExactMatch TAO:0005366 semapv:UnspecifiedMatching 1:1 +ZFA:0005367 dorsal fin pterygiophore 4 semapv:crossSpeciesExactMatch TAO:0005367 semapv:UnspecifiedMatching 1:1 +ZFA:0005368 dorsal fin pterygiophore 5 semapv:crossSpeciesExactMatch TAO:0005368 semapv:UnspecifiedMatching 1:1 +ZFA:0005369 dorsal fin pterygiophore 6 semapv:crossSpeciesExactMatch TAO:0005369 semapv:UnspecifiedMatching 1:1 +ZFA:0005370 dorsal fin pterygiophore 7 semapv:crossSpeciesExactMatch TAO:0005370 semapv:UnspecifiedMatching 1:1 +ZFA:0005371 dorsal fin pterygiophore 8 semapv:crossSpeciesExactMatch TAO:0005371 semapv:UnspecifiedMatching 1:1 +ZFA:0005372 dorsal fin distal radial 1 semapv:crossSpeciesExactMatch TAO:0005372 semapv:UnspecifiedMatching 1:1 +ZFA:0005373 dorsal fin distal radial 2 semapv:crossSpeciesExactMatch TAO:0005373 semapv:UnspecifiedMatching 1:1 +ZFA:0005374 dorsal fin distal radial 3 semapv:crossSpeciesExactMatch TAO:0005374 semapv:UnspecifiedMatching 1:1 +ZFA:0005375 dorsal fin distal radial 4 semapv:crossSpeciesExactMatch TAO:0005375 semapv:UnspecifiedMatching 1:1 +ZFA:0005376 dorsal fin distal radial 5 semapv:crossSpeciesExactMatch TAO:0005376 semapv:UnspecifiedMatching 1:1 +ZFA:0005377 dorsal fin distal radial 6 semapv:crossSpeciesExactMatch TAO:0005377 semapv:UnspecifiedMatching 1:1 +ZFA:0005378 dorsal fin distal radial 7 semapv:crossSpeciesExactMatch TAO:0005378 semapv:UnspecifiedMatching 1:1 +ZFA:0005379 dorsal fin distal radial 8 semapv:crossSpeciesExactMatch TAO:0005379 semapv:UnspecifiedMatching 1:1 +ZFA:0005380 dorsal fin proximal radial 3 semapv:crossSpeciesExactMatch TAO:0005380 semapv:UnspecifiedMatching 1:1 +ZFA:0005381 dorsal fin proximal radial 4 semapv:crossSpeciesExactMatch TAO:0005381 semapv:UnspecifiedMatching 1:1 +ZFA:0005382 dorsal fin proximal radial 5 semapv:crossSpeciesExactMatch TAO:0005382 semapv:UnspecifiedMatching 1:1 +ZFA:0005383 dorsal fin proximal radial 6 semapv:crossSpeciesExactMatch TAO:0005383 semapv:UnspecifiedMatching 1:1 +ZFA:0005384 dorsal fin proximal radial 7 semapv:crossSpeciesExactMatch TAO:0005384 semapv:UnspecifiedMatching 1:1 +ZFA:0005385 dorsal fin proximal radial 8 semapv:crossSpeciesExactMatch TAO:0005385 semapv:UnspecifiedMatching 1:1 +ZFA:0005386 foramen semapv:crossSpeciesExactMatch TAO:0001736 semapv:UnspecifiedMatching 1:1 +ZFA:0005387 foramen magnum semapv:crossSpeciesExactMatch TAO:0002045 semapv:UnspecifiedMatching 1:1 +ZFA:0005388 fossa semapv:crossSpeciesExactMatch TAO:0001743 semapv:UnspecifiedMatching 1:1 +ZFA:0005389 gill opening semapv:crossSpeciesExactMatch TAO:0002057 semapv:UnspecifiedMatching 1:1 +ZFA:0005390 gill ray semapv:crossSpeciesExactMatch TAO:0001856 semapv:UnspecifiedMatching 1:1 +ZFA:0005391 head sensory canal system semapv:crossSpeciesExactMatch TAO:0001873 semapv:UnspecifiedMatching 1:1 +ZFA:0005392 infraorbital sensory canal semapv:crossSpeciesExactMatch TAO:0001811 semapv:UnspecifiedMatching 1:1 +ZFA:0005393 otic sensory canal semapv:crossSpeciesExactMatch TAO:0001629 semapv:UnspecifiedMatching 1:1 +ZFA:0005394 post-otic sensory canal semapv:crossSpeciesExactMatch TAO:0001619 semapv:UnspecifiedMatching 1:1 +ZFA:0005395 preoperculo-mandibular sensory canal semapv:crossSpeciesExactMatch TAO:0001812 semapv:UnspecifiedMatching 1:1 +ZFA:0005396 supraorbital sensory canal semapv:crossSpeciesExactMatch TAO:0001810 semapv:UnspecifiedMatching 1:1 +ZFA:0005397 hyoideomandibular nerve semapv:crossSpeciesExactMatch TAO:0002010 semapv:UnspecifiedMatching 1:1 +ZFA:0005398 anal fin actinotrichium semapv:crossSpeciesExactMatch TAO:0000375 semapv:UnspecifiedMatching 1:1 +ZFA:0005399 anal fin lepidotrichium 1 semapv:crossSpeciesExactMatch TAO:0001769 semapv:UnspecifiedMatching 1:1 +ZFA:0005400 anal fin lepidotrichium 2 semapv:crossSpeciesExactMatch TAO:0001770 semapv:UnspecifiedMatching 1:1 +ZFA:0005401 anal fin lepidotrichium 3 semapv:crossSpeciesExactMatch TAO:0001771 semapv:UnspecifiedMatching 1:1 +ZFA:0005402 anal fin lepidotrichium 4 semapv:crossSpeciesExactMatch TAO:0001772 semapv:UnspecifiedMatching 1:1 +ZFA:0005403 anal fin lepidotrichium 5 semapv:crossSpeciesExactMatch TAO:0001773 semapv:UnspecifiedMatching 1:1 +ZFA:0005404 anal fin lepidotrichium 6 semapv:crossSpeciesExactMatch TAO:0001774 semapv:UnspecifiedMatching 1:1 +ZFA:0005405 anal fin lepidotrichium 7 semapv:crossSpeciesExactMatch TAO:0001775 semapv:UnspecifiedMatching 1:1 +ZFA:0005406 anterior myodome semapv:crossSpeciesExactMatch TAO:0001927 semapv:UnspecifiedMatching 1:1 +ZFA:0005407 anterior nasal barbel semapv:crossSpeciesExactMatch TAO:0001937 semapv:UnspecifiedMatching 1:1 +ZFA:0005408 maxillary barbel semapv:crossSpeciesExactMatch TAO:0001938 semapv:UnspecifiedMatching 1:1 +ZFA:0005409 pars superior ear semapv:crossSpeciesExactMatch TAO:0005409 semapv:UnspecifiedMatching 1:1 +ZFA:0005410 pars inferior ear semapv:crossSpeciesExactMatch TAO:0005410 semapv:UnspecifiedMatching 1:1 +ZFA:0005411 common crus semapv:crossSpeciesExactMatch TAO:0005411 semapv:UnspecifiedMatching 1:1 +ZFA:0005412 transverse canal semapv:crossSpeciesExactMatch TAO:0005412 semapv:UnspecifiedMatching 1:1 +ZFA:0005413 perilymph semapv:crossSpeciesExactMatch TAO:0005413 semapv:UnspecifiedMatching 1:1 +ZFA:0005414 endolymph semapv:crossSpeciesExactMatch TAO:0005414 semapv:UnspecifiedMatching 1:1 +ZFA:0005415 inner ear foramen semapv:crossSpeciesExactMatch TAO:0005415 semapv:UnspecifiedMatching 1:1 +ZFA:0005416 sacculoagenar foramen semapv:crossSpeciesExactMatch TAO:0005416 semapv:UnspecifiedMatching 1:1 +ZFA:0005418 auditory fenestra semapv:crossSpeciesExactMatch TAO:0002066 semapv:UnspecifiedMatching 1:1 +ZFA:0005419 auditory foramen semapv:crossSpeciesExactMatch TAO:0001742 semapv:UnspecifiedMatching 1:1 +ZFA:0005420 autopalatine-lateral ethmoid joint semapv:crossSpeciesExactMatch TAO:0001608 semapv:UnspecifiedMatching 1:1 +ZFA:0005421 autopalatine-maxillary joint semapv:crossSpeciesExactMatch TAO:0001942 semapv:UnspecifiedMatching 1:1 +ZFA:0005422 autopalatine-vomer joint semapv:crossSpeciesExactMatch TAO:0001784 semapv:UnspecifiedMatching 1:1 +ZFA:0005423 basioccipital-exoccipital joint semapv:crossSpeciesExactMatch TAO:0002038 semapv:UnspecifiedMatching 1:1 +ZFA:0005424 caudal fin actinotrichium semapv:crossSpeciesExactMatch TAO:0000437 semapv:UnspecifiedMatching 1:1 +ZFA:0005425 serous membrane semapv:crossSpeciesExactMatch TAO:0005425 semapv:UnspecifiedMatching 1:1 +ZFA:0005426 coracoid foramen semapv:crossSpeciesExactMatch TAO:0001737 semapv:UnspecifiedMatching 1:1 +ZFA:0005427 dentary foramen semapv:crossSpeciesExactMatch TAO:0002012 semapv:UnspecifiedMatching 1:1 +ZFA:0005428 optic foramen semapv:crossSpeciesExactMatch TAO:0002025 semapv:UnspecifiedMatching 1:1 +ZFA:0005429 olfactory nerve foramen semapv:crossSpeciesExactMatch TAO:0001804 semapv:UnspecifiedMatching 1:1 +ZFA:0005430 orbital foramen semapv:crossSpeciesExactMatch TAO:0002031 semapv:UnspecifiedMatching 1:1 +ZFA:0005431 scapular foramen semapv:crossSpeciesExactMatch TAO:0001735 semapv:UnspecifiedMatching 1:1 +ZFA:0005432 superficial ophthalmic nerve foramen semapv:crossSpeciesExactMatch TAO:0001748 semapv:UnspecifiedMatching 1:1 +ZFA:0005433 mental barbel semapv:crossSpeciesExactMatch TAO:0002024 semapv:UnspecifiedMatching 1:1 +ZFA:0005434 tooth cusp semapv:crossSpeciesExactMatch TAO:0001973 semapv:UnspecifiedMatching 1:1 +ZFA:0005442 articular fossa of opercle semapv:crossSpeciesExactMatch TAO:0001928 semapv:UnspecifiedMatching 1:1 +ZFA:0005443 sensory canal semapv:crossSpeciesExactMatch TAO:0001612 semapv:UnspecifiedMatching 1:1 +ZFA:0005444 trunk sensory canal semapv:crossSpeciesExactMatch TAO:0001617 semapv:UnspecifiedMatching 1:1 +ZFA:0005445 supratemporal sensory canal semapv:crossSpeciesExactMatch TAO:0001630 semapv:UnspecifiedMatching 1:1 +ZFA:0005447 sensory canal tubule semapv:crossSpeciesExactMatch TAO:0001933 semapv:UnspecifiedMatching 1:1 +ZFA:0005448 preopercular sensory canal semapv:crossSpeciesExactMatch TAO:0001813 semapv:UnspecifiedMatching 1:1 +ZFA:0005449 pore semapv:crossSpeciesExactMatch TAO:0001791 semapv:UnspecifiedMatching 1:1 +ZFA:0005451 mandibular sensory canal semapv:crossSpeciesExactMatch TAO:0001814 semapv:UnspecifiedMatching 1:1 +ZFA:0005454 subtemporal fossa semapv:crossSpeciesExactMatch TAO:0001974 semapv:UnspecifiedMatching 1:1 +ZFA:0005457 dorsal hypohyal-urohyal joint semapv:crossSpeciesExactMatch TAO:0001847 semapv:UnspecifiedMatching 1:1 +ZFA:0005458 dorsal hypohyal-ventral hypohyal joint semapv:crossSpeciesExactMatch TAO:0001845 semapv:UnspecifiedMatching 1:1 +ZFA:0005464 dentary-anguloarticular joint semapv:crossSpeciesExactMatch TAO:0001749 semapv:UnspecifiedMatching 1:1 +ZFA:0005465 ceratohyal-branchiostegal ray joint semapv:crossSpeciesExactMatch TAO:0001850 semapv:UnspecifiedMatching 1:1 +ZFA:0005466 ceratohyal-ventral hypohyal joint semapv:crossSpeciesExactMatch TAO:0001844 semapv:UnspecifiedMatching 1:1 +ZFA:0005467 ceratohyal-dorsal hypohyal joint semapv:crossSpeciesExactMatch TAO:0001843 semapv:UnspecifiedMatching 1:1 +ZFA:0005468 frontal-pterotic joint semapv:crossSpeciesExactMatch TAO:0001711 semapv:UnspecifiedMatching 1:1 +ZFA:0005469 hyomandibula-metapterygoid joint semapv:crossSpeciesExactMatch TAO:0001979 semapv:UnspecifiedMatching 1:1 +ZFA:0005470 inter-coracoid joint semapv:crossSpeciesExactMatch TAO:0002040 semapv:UnspecifiedMatching 1:1 +ZFA:0005471 inter-basipterygium joint semapv:crossSpeciesExactMatch TAO:0001939 semapv:UnspecifiedMatching 1:1 +ZFA:0005472 inter-frontal joint semapv:crossSpeciesExactMatch TAO:0001922 semapv:UnspecifiedMatching 1:1 +ZFA:0005473 interhyal-epihyal joint semapv:crossSpeciesExactMatch TAO:0001841 semapv:UnspecifiedMatching 1:1 +ZFA:0005474 inter-hypobranchial 3 joint semapv:crossSpeciesExactMatch TAO:0001863 semapv:UnspecifiedMatching 1:1 +ZFA:0005475 inter-premaxillary joint semapv:crossSpeciesExactMatch TAO:0001950 semapv:UnspecifiedMatching 1:1 +ZFA:0005476 inter-ventral hypohyal joint semapv:crossSpeciesExactMatch TAO:0001846 semapv:UnspecifiedMatching 1:1 +ZFA:0005477 lateral ethmoid-frontal joint semapv:crossSpeciesExactMatch TAO:0002032 semapv:UnspecifiedMatching 1:1 +ZFA:0005478 opercle-interopercle joint semapv:crossSpeciesExactMatch TAO:0001710 semapv:UnspecifiedMatching 1:1 +ZFA:0005479 orbitosphenoid-lateral ethmoid joint semapv:crossSpeciesExactMatch TAO:0001941 semapv:UnspecifiedMatching 1:1 +ZFA:0005480 orbitosphenoid-prootic joint semapv:crossSpeciesExactMatch TAO:0001794 semapv:UnspecifiedMatching 1:1 +ZFA:0005481 prootic-exoccipital joint semapv:crossSpeciesExactMatch TAO:0002034 semapv:UnspecifiedMatching 1:1 +ZFA:0005482 prootic-pterosphenoid joint semapv:crossSpeciesExactMatch TAO:0002033 semapv:UnspecifiedMatching 1:1 +ZFA:0005483 pterosphenoid-orbitosphenoid joint semapv:crossSpeciesExactMatch TAO:0001831 semapv:UnspecifiedMatching 1:1 +ZFA:0005484 quadrate-anguloarticular joint semapv:crossSpeciesExactMatch TAO:0001802 semapv:UnspecifiedMatching 1:1 +ZFA:0005485 quadrate-hyomandibula joint semapv:crossSpeciesExactMatch TAO:0001801 semapv:UnspecifiedMatching 1:1 +ZFA:0005486 quadrate-metapterygoid joint semapv:crossSpeciesExactMatch TAO:0001803 semapv:UnspecifiedMatching 1:1 +ZFA:0005487 ventral hypohyal-urohyal joint semapv:crossSpeciesExactMatch TAO:0001848 semapv:UnspecifiedMatching 1:1 +ZFA:0005488 mandibular symphysis semapv:crossSpeciesExactMatch TAO:0001851 semapv:UnspecifiedMatching 1:1 +ZFA:0005492 sphenotic-prootic fossa semapv:crossSpeciesExactMatch TAO:0002090 semapv:UnspecifiedMatching 1:1 +ZFA:0005494 skeletal element semapv:crossSpeciesExactMatch TAO:0001890 semapv:UnspecifiedMatching 1:n +ZFA:0005494 skeletal element semapv:crossSpeciesExactMatch VSAO:0000128 semapv:UnspecifiedMatching 1:n +ZFA:0005495 skin flap semapv:crossSpeciesExactMatch TAO:0001951 semapv:UnspecifiedMatching 1:1 +ZFA:0005496 snout semapv:crossSpeciesExactMatch TAO:0001712 semapv:UnspecifiedMatching 1:1 +ZFA:0005497 epihyal-ceratohyal joint semapv:crossSpeciesExactMatch TAO:0001842 semapv:UnspecifiedMatching 1:1 +ZFA:0005498 epihyal-branchiostegal ray joint semapv:crossSpeciesExactMatch TAO:0001849 semapv:UnspecifiedMatching 1:1 +ZFA:0005499 circulus semapv:crossSpeciesExactMatch TAO:0002051 semapv:UnspecifiedMatching 1:1 +ZFA:0005500 prootic bulla semapv:crossSpeciesExactMatch TAO:0002111 semapv:UnspecifiedMatching 1:1 +ZFA:0005501 interopercular-mandibular ligament semapv:crossSpeciesExactMatch TAO:0001687 semapv:UnspecifiedMatching 1:1 +ZFA:0005502 lateral ethmoid-autopalatine ligament semapv:crossSpeciesExactMatch TAO:0001944 semapv:UnspecifiedMatching 1:1 +ZFA:0005503 lateral ethmoid-ectopterygoid ligament semapv:crossSpeciesExactMatch TAO:0001685 semapv:UnspecifiedMatching 1:1 +ZFA:0005504 vertebra 4-vertebra 5 joint semapv:crossSpeciesExactMatch TAO:0001940 semapv:UnspecifiedMatching 1:1 +ZFA:0005505 vertebra 5-vertebra 6 joint semapv:crossSpeciesExactMatch TAO:0002054 semapv:UnspecifiedMatching 1:1 +ZFA:0005506 vertebra 6 - vertebra 7 joint semapv:crossSpeciesExactMatch TAO:0002055 semapv:UnspecifiedMatching 1:1 +ZFA:0005507 nasal capsule semapv:crossSpeciesExactMatch TAO:0002035 semapv:UnspecifiedMatching 1:1 +ZFA:0005508 inner mental barbel semapv:crossSpeciesExactMatch TAO:0001969 semapv:UnspecifiedMatching 1:1 +ZFA:0005509 palate semapv:crossSpeciesExactMatch TAO:0002093 semapv:UnspecifiedMatching 1:1 +ZFA:0005510 prootic depression semapv:crossSpeciesExactMatch TAO:0002052 semapv:UnspecifiedMatching 1:1 +ZFA:0005511 sensory canal tubular ossicle semapv:crossSpeciesExactMatch TAO:0001932 semapv:UnspecifiedMatching 1:1 +ZFA:0005512 caudal fin principal ray 1 semapv:crossSpeciesExactMatch TAO:0001713 semapv:UnspecifiedMatching 1:1 +ZFA:0005513 caudal fin principal ray 3 semapv:crossSpeciesExactMatch TAO:0001715 semapv:UnspecifiedMatching 1:1 +ZFA:0005514 caudal fin principal ray 2 semapv:crossSpeciesExactMatch TAO:0001714 semapv:UnspecifiedMatching 1:1 +ZFA:0005515 caudal fin principal ray 4 semapv:crossSpeciesExactMatch TAO:0001716 semapv:UnspecifiedMatching 1:1 +ZFA:0005516 caudal fin principal ray 5 semapv:crossSpeciesExactMatch TAO:0001717 semapv:UnspecifiedMatching 1:1 +ZFA:0005517 caudal fin principal ray 6 semapv:crossSpeciesExactMatch TAO:0001718 semapv:UnspecifiedMatching 1:1 +ZFA:0005518 caudal fin principal ray 7 semapv:crossSpeciesExactMatch TAO:0001719 semapv:UnspecifiedMatching 1:1 +ZFA:0005519 caudal fin principal ray 8 semapv:crossSpeciesExactMatch TAO:0001720 semapv:UnspecifiedMatching 1:1 +ZFA:0005520 caudal fin principal ray 9 semapv:crossSpeciesExactMatch TAO:0001721 semapv:UnspecifiedMatching 1:1 +ZFA:0005521 caudal fin principal ray 10 semapv:crossSpeciesExactMatch TAO:0001722 semapv:UnspecifiedMatching 1:1 +ZFA:0005522 caudal fin principal ray 11 semapv:crossSpeciesExactMatch TAO:0001723 semapv:UnspecifiedMatching 1:1 +ZFA:0005523 caudal fin principal ray 12 semapv:crossSpeciesExactMatch TAO:0001724 semapv:UnspecifiedMatching 1:1 +ZFA:0005524 caudal fin principal ray 14 semapv:crossSpeciesExactMatch TAO:0001726 semapv:UnspecifiedMatching 1:1 +ZFA:0005525 caudal fin principal ray 15 semapv:crossSpeciesExactMatch TAO:0001727 semapv:UnspecifiedMatching 1:1 +ZFA:0005526 caudal fin principal ray 16 semapv:crossSpeciesExactMatch TAO:0001728 semapv:UnspecifiedMatching 1:1 +ZFA:0005527 caudal fin principal ray 17 semapv:crossSpeciesExactMatch TAO:0001729 semapv:UnspecifiedMatching 1:1 +ZFA:0005528 caudal fin principal ray 18 semapv:crossSpeciesExactMatch TAO:0001730 semapv:UnspecifiedMatching 1:1 +ZFA:0005529 caudal fin principal ray 19 semapv:crossSpeciesExactMatch TAO:0001731 semapv:UnspecifiedMatching 1:1 +ZFA:0005530 lateral line scale semapv:crossSpeciesExactMatch TAO:0001824 semapv:UnspecifiedMatching 1:1 +ZFA:0005531 bony shelf above orbit semapv:crossSpeciesExactMatch TAO:0001686 semapv:UnspecifiedMatching 1:1 +ZFA:0005532 bony plate semapv:crossSpeciesExactMatch TAO:0002053 semapv:UnspecifiedMatching 1:1 +ZFA:0005533 branched caudal fin ray semapv:crossSpeciesExactMatch TAO:0002062 semapv:UnspecifiedMatching 1:1 +ZFA:0005534 branched dorsal fin ray semapv:crossSpeciesExactMatch TAO:0001785 semapv:UnspecifiedMatching 1:1 +ZFA:0005535 branched anal fin ray semapv:crossSpeciesExactMatch TAO:0001992 semapv:UnspecifiedMatching 1:1 +ZFA:0005536 fontanel semapv:crossSpeciesExactMatch TAO:0001738 semapv:UnspecifiedMatching 1:1 +ZFA:0005537 lateral fontanel of frontal semapv:crossSpeciesExactMatch TAO:0002011 semapv:UnspecifiedMatching 1:1 +ZFA:0005538 rib of vertebra 1 semapv:crossSpeciesExactMatch TAO:0001879 semapv:UnspecifiedMatching 1:1 +ZFA:0005539 rib of vertebra 2 semapv:crossSpeciesExactMatch TAO:0001878 semapv:UnspecifiedMatching 1:1 +ZFA:0005540 rib of vertebra 3 semapv:crossSpeciesExactMatch TAO:0001880 semapv:UnspecifiedMatching 1:1 +ZFA:0005541 rib of vertebra 4 semapv:crossSpeciesExactMatch TAO:0001881 semapv:UnspecifiedMatching 1:1 +ZFA:0005542 rib of vertebra 5 semapv:crossSpeciesExactMatch TAO:0001751 semapv:UnspecifiedMatching 1:1 +ZFA:0005543 rib of vertebra 6 semapv:crossSpeciesExactMatch TAO:0001750 semapv:UnspecifiedMatching 1:1 +ZFA:0005544 hyomandibular-otic region joint semapv:crossSpeciesExactMatch TAO:0001947 semapv:UnspecifiedMatching 1:1 +ZFA:0005545 pectoral fin actinotrichium semapv:crossSpeciesExactMatch TAO:0000544 semapv:UnspecifiedMatching 1:1 +ZFA:0005546 pelvic fin actinotrichium semapv:crossSpeciesExactMatch TAO:0000596 semapv:UnspecifiedMatching 1:1 +ZFA:0005547 pectoral fin lepidotrichium 1 semapv:crossSpeciesExactMatch TAO:0001761 semapv:UnspecifiedMatching 1:1 +ZFA:0005548 pectoral fin lepidotrichium 2 semapv:crossSpeciesExactMatch TAO:0001762 semapv:UnspecifiedMatching 1:1 +ZFA:0005549 pectoral fin lepidotrichium 3 semapv:crossSpeciesExactMatch TAO:0001763 semapv:UnspecifiedMatching 1:1 +ZFA:0005550 pectoral fin lepidotrichium 6 semapv:crossSpeciesExactMatch TAO:0001766 semapv:UnspecifiedMatching 1:1 +ZFA:0005551 pectoral fin lepidotrichium 7 semapv:crossSpeciesExactMatch TAO:0001767 semapv:UnspecifiedMatching 1:1 +ZFA:0005552 pectoral fin lepidotrichium 5 semapv:crossSpeciesExactMatch TAO:0001765 semapv:UnspecifiedMatching 1:1 +ZFA:0005553 pectoral fin lepidotrichium 4 semapv:crossSpeciesExactMatch TAO:0001764 semapv:UnspecifiedMatching 1:1 +ZFA:0005554 pelvic fin lepidotrichium 1 semapv:crossSpeciesExactMatch TAO:0001776 semapv:UnspecifiedMatching 1:1 +ZFA:0005555 pelvic fin lepidotrichium 2 semapv:crossSpeciesExactMatch TAO:0001777 semapv:UnspecifiedMatching 1:1 +ZFA:0005556 pelvic fin lepidotrichium 4 semapv:crossSpeciesExactMatch TAO:0001779 semapv:UnspecifiedMatching 1:1 +ZFA:0005557 pelvic fin lepidotrichium 3 semapv:crossSpeciesExactMatch TAO:0001778 semapv:UnspecifiedMatching 1:1 +ZFA:0005558 orbit semapv:crossSpeciesExactMatch TAO:0001967 semapv:UnspecifiedMatching 1:1 +ZFA:0005560 parasphenoid-basioccipital joint semapv:crossSpeciesExactMatch TAO:0001832 semapv:UnspecifiedMatching 1:1 +ZFA:0005561 vitreous semapv:crossSpeciesExactMatch TAO:0002290 semapv:UnspecifiedMatching 1:1 +ZFA:0005563 sclera semapv:crossSpeciesExactMatch TAO:0002289 semapv:UnspecifiedMatching 1:1 +ZFA:0005564 aqueous humor semapv:crossSpeciesExactMatch TAO:0002288 semapv:UnspecifiedMatching 1:1 +ZFA:0005565 tether cell semapv:crossSpeciesExactMatch CL:0002450 semapv:UnspecifiedMatching 1:1 +ZFA:0005594 anatomical surface semapv:crossSpeciesExactMatch CARO:0000010 semapv:UnspecifiedMatching 1:1 +ZFA:0005595 caudal fin principal ray 13 semapv:crossSpeciesExactMatch TAO:0001725 semapv:UnspecifiedMatching 1:1 +ZFA:0005596 paired fin semapv:crossSpeciesExactMatch TAO:0002278 semapv:UnspecifiedMatching 1:1 +ZFA:0005597 median fin semapv:crossSpeciesExactMatch TAO:0002276 semapv:UnspecifiedMatching 1:1 +ZFA:0005598 pancreatic epsilon cell semapv:crossSpeciesExactMatch CL:0005019 semapv:UnspecifiedMatching 1:1 +ZFA:0005599 ghrelin secreting cell semapv:crossSpeciesExactMatch CL:0005018 semapv:UnspecifiedMatching 1:1 +ZFA:0005607 inter-parietal joint semapv:crossSpeciesExactMatch TAO:0005245 semapv:UnspecifiedMatching 1:1 +ZFA:0005608 frontal-parietal joint semapv:crossSpeciesExactMatch TAO:0005255 semapv:UnspecifiedMatching 1:1 +ZFA:0005609 supraoccipital-parietal joint semapv:crossSpeciesExactMatch TAO:0005264 semapv:UnspecifiedMatching 1:1 +ZFA:0005619 skeletal tissue semapv:crossSpeciesExactMatch VSAO:0000015 semapv:UnspecifiedMatching 1:1 +ZFA:0005620 endochondral element semapv:crossSpeciesExactMatch VSAO:0000139 semapv:UnspecifiedMatching 1:1 +ZFA:0005621 bone tissue semapv:crossSpeciesExactMatch VSAO:0000047 semapv:UnspecifiedMatching 1:1 +ZFA:0005622 cartilage tissue semapv:crossSpeciesExactMatch VSAO:0000040 semapv:UnspecifiedMatching 1:1 +ZFA:0005623 odontoid tissue semapv:crossSpeciesExactMatch VSAO:0000063 semapv:UnspecifiedMatching 1:1 +ZFA:0005625 hypophyseal fenestra semapv:crossSpeciesExactMatch TAO:0005269 semapv:UnspecifiedMatching 1:1 +ZFA:0005626 hyomandibula-opercle joint semapv:crossSpeciesExactMatch TAO:0005265 semapv:UnspecifiedMatching 1:1 +ZFA:0005628 posttemporal fossa semapv:crossSpeciesExactMatch TAO:0001753 semapv:UnspecifiedMatching 1:1 +ZFA:0005629 hyomandibular foramen semapv:crossSpeciesExactMatch TAO:0005275 semapv:UnspecifiedMatching 1:1 +ZFA:0005630 pterotic fossa semapv:crossSpeciesExactMatch TAO:0005266 semapv:UnspecifiedMatching 1:1 +ZFA:0005631 preopercle horizontal limb-symplectic joint semapv:crossSpeciesExactMatch TAO:0005268 semapv:UnspecifiedMatching 1:1 +ZFA:0005632 preopercle vertical limb-hyomandibula joint semapv:crossSpeciesExactMatch TAO:0005278 semapv:UnspecifiedMatching 1:1 +ZFA:0005637 intercostal ligament semapv:crossSpeciesExactMatch TAO:0001972 semapv:UnspecifiedMatching 1:1 +ZFA:0005647 tendon semapv:crossSpeciesExactMatch VSAO:0000073 semapv:UnspecifiedMatching 1:1 +ZFA:0005648 mesethmoid-lateral ethmoid joint semapv:crossSpeciesExactMatch TAO:0001679 semapv:UnspecifiedMatching 1:1 +ZFA:0005649 mesethmoid-vomer joint semapv:crossSpeciesExactMatch TAO:0001680 semapv:UnspecifiedMatching 1:1 +ZFA:0005730 cranial motor neuron semapv:crossSpeciesExactMatch CL:0015000 semapv:UnspecifiedMatching 1:1 +ZFA:0005731 branchiomotor neuron semapv:crossSpeciesExactMatch CL:0005023 semapv:UnspecifiedMatching 1:1 +ZFA:0005732 visceromotor neuron semapv:crossSpeciesExactMatch CL:0005025 semapv:UnspecifiedMatching 1:1 +ZFA:0005733 somatomotor neuron semapv:crossSpeciesExactMatch CL:0005024 semapv:UnspecifiedMatching 1:1 +ZFA:0005739 pancreatic acinar cell semapv:crossSpeciesExactMatch CL:0002064 semapv:UnspecifiedMatching 1:1 +ZFA:0005740 pancreatic centroacinar cell semapv:crossSpeciesExactMatch CL:0002080 semapv:UnspecifiedMatching 1:1 +ZFA:0005742 pancreatic PP cell semapv:crossSpeciesExactMatch CL:0002275 semapv:UnspecifiedMatching 1:1 +ZFA:0005743 pancreatic D cell semapv:crossSpeciesExactMatch CL:0000173 semapv:UnspecifiedMatching 1:1 +ZFA:0005744 notochord outer sheath cell semapv:crossSpeciesExactMatch CL:0007007 semapv:UnspecifiedMatching 1:1 +ZFA:0005745 structural cell semapv:crossSpeciesExactMatch CL:0000293 semapv:UnspecifiedMatching 1:1 +ZFA:0005769 spermatid semapv:crossSpeciesExactMatch CL:0000018 semapv:UnspecifiedMatching 1:1 +ZFA:0005772 fertilized egg semapv:crossSpeciesExactMatch CL:00000365 semapv:UnspecifiedMatching 1:1 +ZFA:0005773 embryonic blood vessel endothelial progenitor cell semapv:crossSpeciesExactMatch CL:0002546 semapv:UnspecifiedMatching 1:1 +ZFA:0005775 enteric neuron semapv:crossSpeciesExactMatch CL:0007011 semapv:UnspecifiedMatching 1:1 +ZFA:0005776 parasympathetic neuron semapv:crossSpeciesExactMatch CL:0011102 semapv:UnspecifiedMatching 1:1 +ZFA:0005777 sympathetic neuron semapv:crossSpeciesExactMatch CL:0011103 semapv:UnspecifiedMatching 1:1 +ZFA:0005778 hypocretin-secreting neuron semapv:crossSpeciesExactMatch CL:0011109 semapv:UnspecifiedMatching 1:1 +ZFA:0005784 striated muscle cell semapv:crossSpeciesExactMatch CL:0000737 semapv:UnspecifiedMatching 1:1 +ZFA:0005815 T interneuron semapv:crossSpeciesExactMatch TAO:0005182 semapv:UnspecifiedMatching 1:1 +ZFA:0005830 hematopoietic cell semapv:crossSpeciesExactMatch CL:0000988 semapv:UnspecifiedMatching 1:1 +ZFA:0005873 noradrenergic neuron semapv:crossSpeciesExactMatch CL:0008025 semapv:UnspecifiedMatching 1:1 +ZFA:0005878 oogonia semapv:crossSpeciesExactMatch CL:0000024 semapv:UnspecifiedMatching 1:1 +ZFA:0005944 mural cell semapv:crossSpeciesExactMatch CL:0008034 semapv:UnspecifiedMatching 1:1 +ZFA:0005956 germline stem cell semapv:crossSpeciesExactMatch CL:0000014 semapv:UnspecifiedMatching 1:1 +ZFA:0005957 stem cell semapv:crossSpeciesExactMatch CL:0000034 semapv:UnspecifiedMatching 1:1 +ZFA:0006000 intermediate hypothalamus semapv:crossSpeciesExactMatch TAO:0006000 semapv:UnspecifiedMatching 1:1 +ZFA:0007000 macula saccule semapv:crossSpeciesExactMatch TAO:0007000 semapv:UnspecifiedMatching 1:1 +ZFA:0007001 dorso-rostral cluster semapv:crossSpeciesExactMatch TAO:0007001 semapv:UnspecifiedMatching 1:1 +ZFA:0007002 ventro-rostral cluster semapv:crossSpeciesExactMatch TAO:0007002 semapv:UnspecifiedMatching 1:1 +ZFA:0007003 ventro-caudal cluster semapv:crossSpeciesExactMatch TAO:0007003 semapv:UnspecifiedMatching 1:1 +ZFA:0007004 epiphyseal cluster semapv:crossSpeciesExactMatch TAO:0007004 semapv:UnspecifiedMatching 1:1 +ZFA:0007005 hemal prezygapophysis semapv:crossSpeciesExactMatch TAO:0007005 semapv:UnspecifiedMatching 1:1 +ZFA:0007006 lip semapv:crossSpeciesExactMatch TAO:0007006 semapv:UnspecifiedMatching 1:1 +ZFA:0007008 ventral intermandibularis anterior semapv:crossSpeciesExactMatch TAO:0007008 semapv:UnspecifiedMatching 1:1 +ZFA:0007009 nerve semapv:crossSpeciesExactMatch TAO:0007009 semapv:UnspecifiedMatching 1:1 +ZFA:0007010 thalamic eminence semapv:crossSpeciesExactMatch TAO:0007010 semapv:UnspecifiedMatching 1:1 +ZFA:0007011 vagal root semapv:crossSpeciesExactMatch TAO:0007011 semapv:UnspecifiedMatching 1:1 +ZFA:0007012 lateral forebrain bundle semapv:crossSpeciesExactMatch TAO:0007012 semapv:UnspecifiedMatching 1:1 +ZFA:0007013 preplacodal ectoderm semapv:crossSpeciesExactMatch TAO:0007013 semapv:UnspecifiedMatching 1:1 +ZFA:0007014 anterior presumptive neural plate semapv:crossSpeciesExactMatch TAO:0007014 semapv:UnspecifiedMatching 1:1 +ZFA:0007015 posterior presumptive neural plate semapv:crossSpeciesExactMatch TAO:0007015 semapv:UnspecifiedMatching 1:1 +ZFA:0007016 anterior neural plate semapv:crossSpeciesExactMatch TAO:0007016 semapv:UnspecifiedMatching 1:1 +ZFA:0007017 posterior neural plate semapv:crossSpeciesExactMatch TAO:0007017 semapv:UnspecifiedMatching 1:1 +ZFA:0007018 forebrain neural plate semapv:crossSpeciesExactMatch TAO:0007018 semapv:UnspecifiedMatching 1:1 +ZFA:0007019 midbrain neural plate semapv:crossSpeciesExactMatch TAO:0007019 semapv:UnspecifiedMatching 1:1 +ZFA:0007020 forebrain midbrain boundary neural plate semapv:crossSpeciesExactMatch TAO:0007020 semapv:UnspecifiedMatching 1:1 +ZFA:0007021 spinal cord neural plate semapv:crossSpeciesExactMatch TAO:0007021 semapv:UnspecifiedMatching 1:1 +ZFA:0007022 hindbrain neural plate semapv:crossSpeciesExactMatch TAO:0007022 semapv:UnspecifiedMatching 1:1 +ZFA:0007023 posterior neural keel semapv:crossSpeciesExactMatch TAO:0007023 semapv:UnspecifiedMatching 1:1 +ZFA:0007024 anterior neural keel semapv:crossSpeciesExactMatch TAO:0007024 semapv:UnspecifiedMatching 1:1 +ZFA:0007025 midbrain neural keel semapv:crossSpeciesExactMatch TAO:0007025 semapv:UnspecifiedMatching 1:1 +ZFA:0007026 forebrain neural keel semapv:crossSpeciesExactMatch TAO:0007026 semapv:UnspecifiedMatching 1:1 +ZFA:0007027 forebrain midbrain boundary neural keel semapv:crossSpeciesExactMatch TAO:0007027 semapv:UnspecifiedMatching 1:1 +ZFA:0007028 spinal cord neural keel semapv:crossSpeciesExactMatch TAO:0007028 semapv:UnspecifiedMatching 1:1 +ZFA:0007029 hindbrain neural keel semapv:crossSpeciesExactMatch TAO:0007029 semapv:UnspecifiedMatching 1:1 +ZFA:0007030 posterior neural rod semapv:crossSpeciesExactMatch TAO:0007030 semapv:UnspecifiedMatching 1:1 +ZFA:0007031 anterior neural rod semapv:crossSpeciesExactMatch TAO:0007031 semapv:UnspecifiedMatching 1:1 +ZFA:0007032 midbrain neural rod semapv:crossSpeciesExactMatch TAO:0007032 semapv:UnspecifiedMatching 1:1 +ZFA:0007033 forebrain midbrain boundary neural rod semapv:crossSpeciesExactMatch TAO:0007033 semapv:UnspecifiedMatching 1:1 +ZFA:0007034 forebrain neural rod semapv:crossSpeciesExactMatch TAO:0007034 semapv:UnspecifiedMatching 1:1 +ZFA:0007035 spinal cord neural rod semapv:crossSpeciesExactMatch TAO:0007035 semapv:UnspecifiedMatching 1:1 +ZFA:0007036 hindbrain neural rod semapv:crossSpeciesExactMatch TAO:0007036 semapv:UnspecifiedMatching 1:1 +ZFA:0007037 posterior neural tube semapv:crossSpeciesExactMatch TAO:0007037 semapv:UnspecifiedMatching 1:1 +ZFA:0007038 anterior neural tube semapv:crossSpeciesExactMatch TAO:0007038 semapv:UnspecifiedMatching 1:1 +ZFA:0007039 midbrain neural tube semapv:crossSpeciesExactMatch TAO:0007039 semapv:UnspecifiedMatching 1:1 +ZFA:0007040 forebrain midbrain boundary neural tube semapv:crossSpeciesExactMatch TAO:0007040 semapv:UnspecifiedMatching 1:1 +ZFA:0007041 forebrain neural tube semapv:crossSpeciesExactMatch TAO:0007041 semapv:UnspecifiedMatching 1:1 +ZFA:0007042 spinal cord neural tube semapv:crossSpeciesExactMatch TAO:0007042 semapv:UnspecifiedMatching 1:1 +ZFA:0007043 hindbrain neural tube semapv:crossSpeciesExactMatch TAO:0007043 semapv:UnspecifiedMatching 1:1 +ZFA:0007044 midbrain hindbrain boundary neural plate semapv:crossSpeciesExactMatch TAO:0007044 semapv:UnspecifiedMatching 1:1 +ZFA:0007045 midbrain hindbrain boundary neural keel semapv:crossSpeciesExactMatch TAO:0007045 semapv:UnspecifiedMatching 1:1 +ZFA:0007046 midbrain hindbrain boundary neural rod semapv:crossSpeciesExactMatch TAO:0007046 semapv:UnspecifiedMatching 1:1 +ZFA:0007047 midbrain hindbrain boundary neural tube semapv:crossSpeciesExactMatch TAO:0007047 semapv:UnspecifiedMatching 1:1 +ZFA:0007048 ventral intermandibularis posterior semapv:crossSpeciesExactMatch TAO:0007048 semapv:UnspecifiedMatching 1:1 +ZFA:0007049 adductor mandibulae semapv:crossSpeciesExactMatch TAO:0007049 semapv:UnspecifiedMatching 1:1 +ZFA:0007050 constrictor dorsalis semapv:crossSpeciesExactMatch TAO:0007050 semapv:UnspecifiedMatching 1:1 +ZFA:0007051 interhyoideus semapv:crossSpeciesExactMatch TAO:0007051 semapv:UnspecifiedMatching 1:1 +ZFA:0007052 hyohyoideus semapv:crossSpeciesExactMatch TAO:0007052 semapv:UnspecifiedMatching 1:1 +ZFA:0007053 adductor hyomandibulae semapv:crossSpeciesExactMatch TAO:0007053 semapv:UnspecifiedMatching 1:1 +ZFA:0007054 pillar of the anterior semicircular canal semapv:crossSpeciesExactMatch TAO:0007054 semapv:UnspecifiedMatching 1:1 +ZFA:0007055 pillar of the lateral semicircular canal semapv:crossSpeciesExactMatch TAO:0007055 semapv:UnspecifiedMatching 1:1 +ZFA:0007057 ocular blood vessel semapv:crossSpeciesExactMatch TAO:0007057 semapv:UnspecifiedMatching 1:1 +ZFA:0007058 roof plate semapv:crossSpeciesExactMatch TAO:0007058 semapv:UnspecifiedMatching 1:1 +ZFA:0007059 neurogenic field semapv:crossSpeciesExactMatch TAO:0007059 semapv:UnspecifiedMatching 1:1 +ZFA:0007060 dorsolateral field semapv:crossSpeciesExactMatch TAO:0007060 semapv:UnspecifiedMatching 1:1 +ZFA:0007061 epibranchial field semapv:crossSpeciesExactMatch TAO:0007061 semapv:UnspecifiedMatching 1:1 +ZFA:0007062 olfactory field semapv:crossSpeciesExactMatch TAO:0007062 semapv:UnspecifiedMatching 1:1 +ZFA:0007063 neural crest hindbrain semapv:crossSpeciesExactMatch TAO:0007063 semapv:UnspecifiedMatching 1:1 +ZFA:0007064 mandibular neural crest semapv:crossSpeciesExactMatch TAO:0007064 semapv:UnspecifiedMatching 1:1 +ZFA:0007065 hyoid neural crest semapv:crossSpeciesExactMatch TAO:0007065 semapv:UnspecifiedMatching 1:1 +ZFA:0007066 glossopharyngeal neural crest semapv:crossSpeciesExactMatch TAO:0007066 semapv:UnspecifiedMatching 1:1 +ZFA:0007067 vagal ganglion semapv:crossSpeciesExactMatch TAO:0007067 semapv:UnspecifiedMatching 1:1 +ZFA:0007084 premigratory neural crest cell semapv:crossSpeciesExactMatch CL:0007004 semapv:UnspecifiedMatching 1:1 +ZFA:0007086 migratory neural crest cell semapv:crossSpeciesExactMatch CL:0000333 semapv:UnspecifiedMatching 1:1 +ZFA:0007089 embryonic cell semapv:crossSpeciesExactMatch CL:0002321 semapv:UnspecifiedMatching 1:1 +ZFA:0007091 migratory cranial neural crest cell semapv:crossSpeciesExactMatch CL:0000008 semapv:UnspecifiedMatching 1:1 +ZFA:0007095 migratory trunk neural crest cell semapv:crossSpeciesExactMatch CL:0000011 semapv:UnspecifiedMatching 1:1 +ZFA:0007122 epidermal stem cell semapv:crossSpeciesExactMatch CL:1000428 semapv:UnspecifiedMatching 1:1 +ZFA:0009000 cell semapv:crossSpeciesExactMatch CARO:0000013 semapv:UnspecifiedMatching 1:n +ZFA:0009000 cell semapv:crossSpeciesExactMatch CL:0000000 semapv:UnspecifiedMatching 1:n +ZFA:0009000 cell semapv:crossSpeciesExactMatch TAO:0009000 semapv:UnspecifiedMatching 1:n +ZFA:0009001 receptor cell (sensu Animalia) semapv:crossSpeciesExactMatch CL:0000006 semapv:UnspecifiedMatching 1:n +ZFA:0009001 receptor cell (sensu Animalia) semapv:crossSpeciesExactMatch TAO:0009001 semapv:UnspecifiedMatching 1:n +ZFA:0009002 early embryonic cell semapv:crossSpeciesExactMatch CL:0000007 semapv:UnspecifiedMatching 1:n +ZFA:0009002 early embryonic cell semapv:crossSpeciesExactMatch TAO:0009002 semapv:UnspecifiedMatching 1:n +ZFA:0009005 spermatocyte semapv:crossSpeciesExactMatch CL:0000017 semapv:UnspecifiedMatching 1:n +ZFA:0009005 spermatocyte semapv:crossSpeciesExactMatch TAO:0009005 semapv:UnspecifiedMatching 1:n +ZFA:0009006 sperm semapv:crossSpeciesExactMatch CL:0000019 semapv:UnspecifiedMatching 1:n +ZFA:0009006 sperm semapv:crossSpeciesExactMatch TAO:0009006 semapv:UnspecifiedMatching 1:n +ZFA:0009007 spermatogonium semapv:crossSpeciesExactMatch CL:0000020 semapv:UnspecifiedMatching 1:n +ZFA:0009007 spermatogonium semapv:crossSpeciesExactMatch TAO:0001337 semapv:UnspecifiedMatching 1:n +ZFA:0009007 spermatogonium semapv:crossSpeciesExactMatch TAO:0009007 semapv:UnspecifiedMatching 1:n +ZFA:0009009 neuron neural crest derived semapv:crossSpeciesExactMatch CL:0000029 semapv:UnspecifiedMatching 1:n +ZFA:0009009 neuron neural crest derived semapv:crossSpeciesExactMatch TAO:0009009 semapv:UnspecifiedMatching 1:n +ZFA:0009010 glioblast semapv:crossSpeciesExactMatch CL:0000030 semapv:UnspecifiedMatching 1:n +ZFA:0009010 glioblast semapv:crossSpeciesExactMatch TAO:0009010 semapv:UnspecifiedMatching 1:n +ZFA:0009011 neuroblast semapv:crossSpeciesExactMatch CL:0000031 semapv:UnspecifiedMatching 1:n +ZFA:0009011 neuroblast semapv:crossSpeciesExactMatch TAO:0009011 semapv:UnspecifiedMatching 1:n +ZFA:0009012 neuroplacodal cell semapv:crossSpeciesExactMatch CL:0000032 semapv:UnspecifiedMatching 1:n +ZFA:0009012 neuroplacodal cell semapv:crossSpeciesExactMatch TAO:0009012 semapv:UnspecifiedMatching 1:n +ZFA:0009013 single fate stem cell semapv:crossSpeciesExactMatch CL:0000035 semapv:UnspecifiedMatching 1:n +ZFA:0009013 single fate stem cell semapv:crossSpeciesExactMatch TAO:0009013 semapv:UnspecifiedMatching 1:n +ZFA:0009014 hematopoietic stem cell semapv:crossSpeciesExactMatch CL:0000037 semapv:UnspecifiedMatching 1:n +ZFA:0009014 hematopoietic stem cell semapv:crossSpeciesExactMatch TAO:0009014 semapv:UnspecifiedMatching 1:n +ZFA:0009015 erythroid progenitor cell semapv:crossSpeciesExactMatch CL:0000038 semapv:UnspecifiedMatching 1:n +ZFA:0009015 erythroid progenitor cell semapv:crossSpeciesExactMatch TAO:0009015 semapv:UnspecifiedMatching 1:n +ZFA:0009016 germ line cell semapv:crossSpeciesExactMatch CL:0000039 semapv:UnspecifiedMatching 1:n +ZFA:0009016 germ line cell semapv:crossSpeciesExactMatch TAO:0009016 semapv:UnspecifiedMatching 1:n +ZFA:0009017 monoblast semapv:crossSpeciesExactMatch CL:0000040 semapv:UnspecifiedMatching 1:n +ZFA:0009017 monoblast semapv:crossSpeciesExactMatch TAO:0009017 semapv:UnspecifiedMatching 1:n +ZFA:0009018 neutrophilic myeloblast semapv:crossSpeciesExactMatch CL:0000042 semapv:UnspecifiedMatching 1:n +ZFA:0009018 neutrophilic myeloblast semapv:crossSpeciesExactMatch TAO:0009018 semapv:UnspecifiedMatching 1:n +ZFA:0009019 neuronal stem cell semapv:crossSpeciesExactMatch CL:0000047 semapv:UnspecifiedMatching 1:n +ZFA:0009019 neuronal stem cell semapv:crossSpeciesExactMatch TAO:0009019 semapv:UnspecifiedMatching 1:n +ZFA:0009020 multi fate stem cell semapv:crossSpeciesExactMatch CL:0000048 semapv:UnspecifiedMatching 1:n +ZFA:0009020 multi fate stem cell semapv:crossSpeciesExactMatch TAO:0009020 semapv:UnspecifiedMatching 1:n +ZFA:0009021 common myeloid progenitor semapv:crossSpeciesExactMatch CL:0000049 semapv:UnspecifiedMatching 1:n +ZFA:0009021 common myeloid progenitor semapv:crossSpeciesExactMatch TAO:0009021 semapv:UnspecifiedMatching 1:n +ZFA:0009022 megakaryocyte erythroid progenitor cell semapv:crossSpeciesExactMatch CL:0000050 semapv:UnspecifiedMatching 1:n +ZFA:0009022 megakaryocyte erythroid progenitor cell semapv:crossSpeciesExactMatch TAO:0009022 semapv:UnspecifiedMatching 1:n +ZFA:0009023 common lymphoid progenitor semapv:crossSpeciesExactMatch CL:0000051 semapv:UnspecifiedMatching 1:n +ZFA:0009023 common lymphoid progenitor semapv:crossSpeciesExactMatch TAO:0009023 semapv:UnspecifiedMatching 1:n +ZFA:0009024 totipotent stem cell semapv:crossSpeciesExactMatch CL:0000052 semapv:UnspecifiedMatching 1:n +ZFA:0009024 totipotent stem cell semapv:crossSpeciesExactMatch TAO:0009024 semapv:UnspecifiedMatching 1:n +ZFA:0009025 myoblast semapv:crossSpeciesExactMatch CL:0000056 semapv:UnspecifiedMatching 1:n +ZFA:0009025 myoblast semapv:crossSpeciesExactMatch TAO:0009025 semapv:UnspecifiedMatching 1:n +ZFA:0009026 fibroblast semapv:crossSpeciesExactMatch CL:0000057 semapv:UnspecifiedMatching 1:n +ZFA:0009026 fibroblast semapv:crossSpeciesExactMatch TAO:0009026 semapv:UnspecifiedMatching 1:n +ZFA:0009027 chondroblast semapv:crossSpeciesExactMatch CL:0000058 semapv:UnspecifiedMatching 1:n +ZFA:0009027 chondroblast semapv:crossSpeciesExactMatch TAO:0009027 semapv:UnspecifiedMatching 1:n +ZFA:0009028 ameloblast semapv:crossSpeciesExactMatch TAO:0009028 semapv:UnspecifiedMatching 1:n +ZFA:0009029 odontoblast semapv:crossSpeciesExactMatch CL:0000060 semapv:UnspecifiedMatching 1:n +ZFA:0009029 odontoblast semapv:crossSpeciesExactMatch TAO:0009029 semapv:UnspecifiedMatching 1:n +ZFA:0009030 cementoblast semapv:crossSpeciesExactMatch CL:0000061 semapv:UnspecifiedMatching 1:n +ZFA:0009030 cementoblast semapv:crossSpeciesExactMatch TAO:0009030 semapv:UnspecifiedMatching 1:n +ZFA:0009031 osteoblast semapv:crossSpeciesExactMatch CL:0000062 semapv:UnspecifiedMatching 1:n +ZFA:0009031 osteoblast semapv:crossSpeciesExactMatch TAO:0009031 semapv:UnspecifiedMatching 1:n +ZFA:0009032 ciliated cell semapv:crossSpeciesExactMatch CL:0000064 semapv:UnspecifiedMatching 1:n +ZFA:0009032 ciliated cell semapv:crossSpeciesExactMatch TAO:0009032 semapv:UnspecifiedMatching 1:n +ZFA:0009033 ependymal cell semapv:crossSpeciesExactMatch CL:0000065 semapv:UnspecifiedMatching 1:n +ZFA:0009033 ependymal cell semapv:crossSpeciesExactMatch TAO:0009033 semapv:UnspecifiedMatching 1:n +ZFA:0009034 epithelial cell semapv:crossSpeciesExactMatch CL:0000066 semapv:UnspecifiedMatching 1:n +ZFA:0009034 epithelial cell semapv:crossSpeciesExactMatch TAO:0009034 semapv:UnspecifiedMatching 1:n +ZFA:0009035 ciliated epithelial cell semapv:crossSpeciesExactMatch CL:0000067 semapv:UnspecifiedMatching 1:n +ZFA:0009035 ciliated epithelial cell semapv:crossSpeciesExactMatch TAO:0009035 semapv:UnspecifiedMatching 1:n +ZFA:0009036 blood vessel endothelial cell semapv:crossSpeciesExactMatch CL:0000071 semapv:UnspecifiedMatching 1:n +ZFA:0009036 blood vessel endothelial cell semapv:crossSpeciesExactMatch TAO:0009036 semapv:UnspecifiedMatching 1:n +ZFA:0009037 barrier epithelial cell semapv:crossSpeciesExactMatch CL:0000073 semapv:UnspecifiedMatching 1:n +ZFA:0009037 barrier epithelial cell semapv:crossSpeciesExactMatch TAO:0009037 semapv:UnspecifiedMatching 1:n +ZFA:0009038 columnar/cuboidal epithelial cell semapv:crossSpeciesExactMatch CL:0000075 semapv:UnspecifiedMatching 1:n +ZFA:0009038 columnar/cuboidal epithelial cell semapv:crossSpeciesExactMatch TAO:0009038 semapv:UnspecifiedMatching 1:n +ZFA:0009039 squamous epithelial cell semapv:crossSpeciesExactMatch CL:0000076 semapv:UnspecifiedMatching 1:n +ZFA:0009039 squamous epithelial cell semapv:crossSpeciesExactMatch TAO:0009039 semapv:UnspecifiedMatching 1:n +ZFA:0009040 mesothelial cell semapv:crossSpeciesExactMatch CL:0000077 semapv:UnspecifiedMatching 1:n +ZFA:0009040 mesothelial cell semapv:crossSpeciesExactMatch TAO:0009040 semapv:UnspecifiedMatching 1:n +ZFA:0009041 peridermal cell semapv:crossSpeciesExactMatch CL:0000078 semapv:UnspecifiedMatching 1:n +ZFA:0009041 peridermal cell semapv:crossSpeciesExactMatch TAO:0009041 semapv:UnspecifiedMatching 1:n +ZFA:0009042 stratified epithelial cell semapv:crossSpeciesExactMatch CL:0000079 semapv:UnspecifiedMatching 1:n +ZFA:0009042 stratified epithelial cell semapv:crossSpeciesExactMatch TAO:0009042 semapv:UnspecifiedMatching 1:n +ZFA:0009043 circulating cell semapv:crossSpeciesExactMatch CL:0000080 semapv:UnspecifiedMatching 1:n +ZFA:0009043 circulating cell semapv:crossSpeciesExactMatch TAO:0009043 semapv:UnspecifiedMatching 1:n +ZFA:0009044 blood cell semapv:crossSpeciesExactMatch CL:0000081 semapv:UnspecifiedMatching 1:n +ZFA:0009044 blood cell semapv:crossSpeciesExactMatch TAO:0009044 semapv:UnspecifiedMatching 1:n +ZFA:0009045 epithelial cell of pancreas semapv:crossSpeciesExactMatch CL:0000083 semapv:UnspecifiedMatching 1:n +ZFA:0009045 epithelial cell of pancreas semapv:crossSpeciesExactMatch TAO:0009045 semapv:UnspecifiedMatching 1:n +ZFA:0009046 T cell semapv:crossSpeciesExactMatch CL:0000084 semapv:UnspecifiedMatching 1:n +ZFA:0009046 T cell semapv:crossSpeciesExactMatch TAO:0009046 semapv:UnspecifiedMatching 1:n +ZFA:0009046 T cell semapv:crossSpeciesExactMatch TAO:0009340 semapv:UnspecifiedMatching 1:n +ZFA:0009046 T cell semapv:crossSpeciesExactMatch TAO:0009341 semapv:UnspecifiedMatching 1:n +ZFA:0009047 osteoclast semapv:crossSpeciesExactMatch CL:0000092 semapv:UnspecifiedMatching 1:n +ZFA:0009047 osteoclast semapv:crossSpeciesExactMatch TAO:0009047 semapv:UnspecifiedMatching 1:n +ZFA:0009048 granulocyte semapv:crossSpeciesExactMatch CL:0000094 semapv:UnspecifiedMatching 1:n +ZFA:0009048 granulocyte semapv:crossSpeciesExactMatch TAO:0009048 semapv:UnspecifiedMatching 1:n +ZFA:0009049 mature neutrophil semapv:crossSpeciesExactMatch CL:0000096 semapv:UnspecifiedMatching 1:n +ZFA:0009049 mature neutrophil semapv:crossSpeciesExactMatch TAO:0009049 semapv:UnspecifiedMatching 1:n +ZFA:0009050 sensory epithelial cell semapv:crossSpeciesExactMatch CL:0000098 semapv:UnspecifiedMatching 1:n +ZFA:0009050 sensory epithelial cell semapv:crossSpeciesExactMatch TAO:0009050 semapv:UnspecifiedMatching 1:n +ZFA:0009051 interneuron semapv:crossSpeciesExactMatch CL:0000099 semapv:UnspecifiedMatching 1:n +ZFA:0009051 interneuron semapv:crossSpeciesExactMatch TAO:0009051 semapv:UnspecifiedMatching 1:n +ZFA:0009052 motor neuron semapv:crossSpeciesExactMatch CL:0000100 semapv:UnspecifiedMatching 1:n +ZFA:0009052 motor neuron semapv:crossSpeciesExactMatch TAO:0009052 semapv:UnspecifiedMatching 1:n +ZFA:0009053 sensory neuron semapv:crossSpeciesExactMatch CL:0000101 semapv:UnspecifiedMatching 1:n +ZFA:0009053 sensory neuron semapv:crossSpeciesExactMatch TAO:0009053 semapv:UnspecifiedMatching 1:n +ZFA:0009054 polymodal neuron semapv:crossSpeciesExactMatch CL:0000102 semapv:UnspecifiedMatching 1:n +ZFA:0009054 polymodal neuron semapv:crossSpeciesExactMatch TAO:0009054 semapv:UnspecifiedMatching 1:n +ZFA:0009055 bipolar neuron semapv:crossSpeciesExactMatch CL:0000103 semapv:UnspecifiedMatching 1:n +ZFA:0009055 bipolar neuron semapv:crossSpeciesExactMatch TAO:0009055 semapv:UnspecifiedMatching 1:n +ZFA:0009056 multipolar neuron semapv:crossSpeciesExactMatch CL:0000104 semapv:UnspecifiedMatching 1:n +ZFA:0009056 multipolar neuron semapv:crossSpeciesExactMatch TAO:0009056 semapv:UnspecifiedMatching 1:n +ZFA:0009057 pseudounipolar neuron semapv:crossSpeciesExactMatch CL:0000105 semapv:UnspecifiedMatching 1:n +ZFA:0009057 pseudounipolar neuron semapv:crossSpeciesExactMatch TAO:0009057 semapv:UnspecifiedMatching 1:n +ZFA:0009058 unipolar neuron semapv:crossSpeciesExactMatch CL:0000106 semapv:UnspecifiedMatching 1:n +ZFA:0009058 unipolar neuron semapv:crossSpeciesExactMatch TAO:0009058 semapv:UnspecifiedMatching 1:n +ZFA:0009059 autonomic neuron semapv:crossSpeciesExactMatch CL:0000107 semapv:UnspecifiedMatching 1:n +ZFA:0009059 autonomic neuron semapv:crossSpeciesExactMatch TAO:0009059 semapv:UnspecifiedMatching 1:n +ZFA:0009060 cholinergic neuron semapv:crossSpeciesExactMatch CL:0000108 semapv:UnspecifiedMatching 1:n +ZFA:0009060 cholinergic neuron semapv:crossSpeciesExactMatch TAO:0009060 semapv:UnspecifiedMatching 1:n +ZFA:0009061 adrenergic neuron semapv:crossSpeciesExactMatch CL:0000109 semapv:UnspecifiedMatching 1:n +ZFA:0009061 adrenergic neuron semapv:crossSpeciesExactMatch TAO:0009061 semapv:UnspecifiedMatching 1:n +ZFA:0009062 peptidergic neuron semapv:crossSpeciesExactMatch CL:0000110 semapv:UnspecifiedMatching 1:n +ZFA:0009062 peptidergic neuron semapv:crossSpeciesExactMatch TAO:0009062 semapv:UnspecifiedMatching 1:n +ZFA:0009063 peripheral neuron semapv:crossSpeciesExactMatch CL:0000111 semapv:UnspecifiedMatching 1:n +ZFA:0009063 peripheral neuron semapv:crossSpeciesExactMatch TAO:0009063 semapv:UnspecifiedMatching 1:n +ZFA:0009064 mononuclear phagocyte semapv:crossSpeciesExactMatch CL:0000113 semapv:UnspecifiedMatching 1:n +ZFA:0009064 mononuclear phagocyte semapv:crossSpeciesExactMatch TAO:0009064 semapv:UnspecifiedMatching 1:n +ZFA:0009065 endothelial cell semapv:crossSpeciesExactMatch CL:0000115 semapv:UnspecifiedMatching 1:n +ZFA:0009065 endothelial cell semapv:crossSpeciesExactMatch TAO:0009065 semapv:UnspecifiedMatching 1:n +ZFA:0009066 pioneer neuron semapv:crossSpeciesExactMatch CL:0000116 semapv:UnspecifiedMatching 1:n +ZFA:0009066 pioneer neuron semapv:crossSpeciesExactMatch TAO:0009066 semapv:UnspecifiedMatching 1:n +ZFA:0009067 CNS neuron (sensu Vertebrata) semapv:crossSpeciesExactMatch CL:0000117 semapv:UnspecifiedMatching 1:n +ZFA:0009067 CNS neuron (sensu Vertebrata) semapv:crossSpeciesExactMatch TAO:0009067 semapv:UnspecifiedMatching 1:n +ZFA:0009068 basket cell semapv:crossSpeciesExactMatch CL:0000118 semapv:UnspecifiedMatching 1:n +ZFA:0009068 basket cell semapv:crossSpeciesExactMatch TAO:0009068 semapv:UnspecifiedMatching 1:n +ZFA:0009069 Golgi cell semapv:crossSpeciesExactMatch CL:0000119 semapv:UnspecifiedMatching 1:n +ZFA:0009069 Golgi cell semapv:crossSpeciesExactMatch TAO:0009069 semapv:UnspecifiedMatching 1:n +ZFA:0009070 granule cell semapv:crossSpeciesExactMatch CL:0000120 semapv:UnspecifiedMatching 1:n +ZFA:0009070 granule cell semapv:crossSpeciesExactMatch TAO:0009070 semapv:UnspecifiedMatching 1:n +ZFA:0009071 Purkinje cell semapv:crossSpeciesExactMatch CL:0000121 semapv:UnspecifiedMatching 1:n +ZFA:0009071 Purkinje cell semapv:crossSpeciesExactMatch TAO:0009071 semapv:UnspecifiedMatching 1:n +ZFA:0009072 stellate cell semapv:crossSpeciesExactMatch CL:0000122 semapv:UnspecifiedMatching 1:n +ZFA:0009072 stellate cell semapv:crossSpeciesExactMatch TAO:0009072 semapv:UnspecifiedMatching 1:n +ZFA:0009073 glial cell semapv:crossSpeciesExactMatch CL:0000125 semapv:UnspecifiedMatching 1:n +ZFA:0009073 glial cell semapv:crossSpeciesExactMatch TAO:0009073 semapv:UnspecifiedMatching 1:n +ZFA:0009074 macroglial cell semapv:crossSpeciesExactMatch CL:0000126 semapv:UnspecifiedMatching 1:n +ZFA:0009074 macroglial cell semapv:crossSpeciesExactMatch TAO:0009074 semapv:UnspecifiedMatching 1:n +ZFA:0009075 astrocyte semapv:crossSpeciesExactMatch CL:0000127 semapv:UnspecifiedMatching 1:n +ZFA:0009075 astrocyte semapv:crossSpeciesExactMatch TAO:0009075 semapv:UnspecifiedMatching 1:n +ZFA:0009076 oligodendrocyte semapv:crossSpeciesExactMatch CL:0000128 semapv:UnspecifiedMatching 1:n +ZFA:0009076 oligodendrocyte semapv:crossSpeciesExactMatch TAO:0009076 semapv:UnspecifiedMatching 1:n +ZFA:0009077 microglial cell semapv:crossSpeciesExactMatch CL:0000129 semapv:UnspecifiedMatching 1:n +ZFA:0009077 microglial cell semapv:crossSpeciesExactMatch TAO:0009077 semapv:UnspecifiedMatching 1:n +ZFA:0009078 gut endothelial cell semapv:crossSpeciesExactMatch CL:0000131 semapv:UnspecifiedMatching 1:n +ZFA:0009078 gut endothelial cell semapv:crossSpeciesExactMatch TAO:0009078 semapv:UnspecifiedMatching 1:n +ZFA:0009079 corneal endothelial cell semapv:crossSpeciesExactMatch CL:0000132 semapv:UnspecifiedMatching 1:n +ZFA:0009079 corneal endothelial cell semapv:crossSpeciesExactMatch TAO:0009079 semapv:UnspecifiedMatching 1:n +ZFA:0009080 neurectodermal cell semapv:crossSpeciesExactMatch CL:0000133 semapv:UnspecifiedMatching 1:n +ZFA:0009080 neurectodermal cell semapv:crossSpeciesExactMatch TAO:0009080 semapv:UnspecifiedMatching 1:n +ZFA:0009081 mesenchymal cell semapv:crossSpeciesExactMatch CL:0000134 semapv:UnspecifiedMatching 1:n +ZFA:0009081 mesenchymal cell semapv:crossSpeciesExactMatch TAO:0009081 semapv:UnspecifiedMatching 1:n +ZFA:0009082 fat cell semapv:crossSpeciesExactMatch CL:0000136 semapv:UnspecifiedMatching 1:n +ZFA:0009082 fat cell semapv:crossSpeciesExactMatch CL:0000450 semapv:UnspecifiedMatching 1:n +ZFA:0009082 fat cell semapv:crossSpeciesExactMatch TAO:0009082 semapv:UnspecifiedMatching 1:n +ZFA:0009082 fat cell semapv:crossSpeciesExactMatch TAO:0009208 semapv:UnspecifiedMatching 1:n +ZFA:0009083 osteocyte semapv:crossSpeciesExactMatch CL:0000137 semapv:UnspecifiedMatching 1:n +ZFA:0009083 osteocyte semapv:crossSpeciesExactMatch TAO:0009083 semapv:UnspecifiedMatching 1:n +ZFA:0009084 chondrocyte semapv:crossSpeciesExactMatch CL:0000138 semapv:UnspecifiedMatching 1:n +ZFA:0009084 chondrocyte semapv:crossSpeciesExactMatch TAO:0009084 semapv:UnspecifiedMatching 1:n +ZFA:0009085 amelocyte semapv:crossSpeciesExactMatch TAO:0009085 semapv:UnspecifiedMatching 1:n +ZFA:0009086 odontocyte semapv:crossSpeciesExactMatch CL:0000140 semapv:UnspecifiedMatching 1:n +ZFA:0009086 odontocyte semapv:crossSpeciesExactMatch TAO:0009086 semapv:UnspecifiedMatching 1:n +ZFA:0009087 cementocyte semapv:crossSpeciesExactMatch CL:0000141 semapv:UnspecifiedMatching 1:n +ZFA:0009087 cementocyte semapv:crossSpeciesExactMatch TAO:0009087 semapv:UnspecifiedMatching 1:n +ZFA:0009088 professional antigen presenting cell semapv:crossSpeciesExactMatch CL:0000145 semapv:UnspecifiedMatching 1:n +ZFA:0009088 professional antigen presenting cell semapv:crossSpeciesExactMatch TAO:0009088 semapv:UnspecifiedMatching 1:n +ZFA:0009089 simple columnar epithelial cell semapv:crossSpeciesExactMatch CL:0000146 semapv:UnspecifiedMatching 1:n +ZFA:0009089 simple columnar epithelial cell semapv:crossSpeciesExactMatch TAO:0009089 semapv:UnspecifiedMatching 1:n +ZFA:0009090 pigment cell semapv:crossSpeciesExactMatch CL:0000147 semapv:UnspecifiedMatching 1:n +ZFA:0009090 pigment cell semapv:crossSpeciesExactMatch TAO:0009090 semapv:UnspecifiedMatching 1:n +ZFA:0009091 melanocyte semapv:crossSpeciesExactMatch CL:0000148 semapv:UnspecifiedMatching 1:n +ZFA:0009091 melanocyte semapv:crossSpeciesExactMatch TAO:0009091 semapv:UnspecifiedMatching 1:n +ZFA:0009092 exocrine cell semapv:crossSpeciesExactMatch CL:0000152 semapv:UnspecifiedMatching 1:n +ZFA:0009092 exocrine cell semapv:crossSpeciesExactMatch TAO:0009092 semapv:UnspecifiedMatching 1:n +ZFA:0009093 GAG secreting cell semapv:crossSpeciesExactMatch CL:0000153 semapv:UnspecifiedMatching 1:n +ZFA:0009093 GAG secreting cell semapv:crossSpeciesExactMatch TAO:0009093 semapv:UnspecifiedMatching 1:n +ZFA:0009094 goblet cell semapv:crossSpeciesExactMatch CL:0000160 semapv:UnspecifiedMatching 1:n +ZFA:0009094 goblet cell semapv:crossSpeciesExactMatch TAO:0009094 semapv:UnspecifiedMatching 1:n +ZFA:0009095 acid secreting cell semapv:crossSpeciesExactMatch CL:0000161 semapv:UnspecifiedMatching 1:n +ZFA:0009095 acid secreting cell semapv:crossSpeciesExactMatch TAO:0009095 semapv:UnspecifiedMatching 1:n +ZFA:0009096 endocrine cell semapv:crossSpeciesExactMatch CL:0000163 semapv:UnspecifiedMatching 1:n +ZFA:0009096 endocrine cell semapv:crossSpeciesExactMatch TAO:0009096 semapv:UnspecifiedMatching 1:n +ZFA:0009097 enteroendocrine cell semapv:crossSpeciesExactMatch CL:0000164 semapv:UnspecifiedMatching 1:n +ZFA:0009097 enteroendocrine cell semapv:crossSpeciesExactMatch TAO:0009097 semapv:UnspecifiedMatching 1:n +ZFA:0009098 neuroendocrine cell semapv:crossSpeciesExactMatch CL:0000165 semapv:UnspecifiedMatching 1:n +ZFA:0009098 neuroendocrine cell semapv:crossSpeciesExactMatch TAO:0009098 semapv:UnspecifiedMatching 1:n +ZFA:0009099 chromaffin cell semapv:crossSpeciesExactMatch CL:0000166 semapv:UnspecifiedMatching 1:n +ZFA:0009099 chromaffin cell semapv:crossSpeciesExactMatch TAO:0009099 semapv:UnspecifiedMatching 1:n +ZFA:0009100 peptide hormone secreting cell semapv:crossSpeciesExactMatch CL:0000167 semapv:UnspecifiedMatching 1:n +ZFA:0009100 peptide hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009100 semapv:UnspecifiedMatching 1:n +ZFA:0009101 insulin secreting cell semapv:crossSpeciesExactMatch CL:0000168 semapv:UnspecifiedMatching 1:n +ZFA:0009101 insulin secreting cell semapv:crossSpeciesExactMatch TAO:0009101 semapv:UnspecifiedMatching 1:n +ZFA:0009102 pancreatic B cell semapv:crossSpeciesExactMatch CL:0000169 semapv:UnspecifiedMatching 1:n +ZFA:0009102 pancreatic B cell semapv:crossSpeciesExactMatch TAO:0009102 semapv:UnspecifiedMatching 1:n +ZFA:0009103 glucagon secreting cell semapv:crossSpeciesExactMatch CL:0000170 semapv:UnspecifiedMatching 1:n +ZFA:0009103 glucagon secreting cell semapv:crossSpeciesExactMatch TAO:0009103 semapv:UnspecifiedMatching 1:n +ZFA:0009104 pancreatic A cell semapv:crossSpeciesExactMatch CL:0000171 semapv:UnspecifiedMatching 1:n +ZFA:0009104 pancreatic A cell semapv:crossSpeciesExactMatch TAO:0009104 semapv:UnspecifiedMatching 1:n +ZFA:0009105 somatostatin secreting cell semapv:crossSpeciesExactMatch CL:0000172 semapv:UnspecifiedMatching 1:n +ZFA:0009105 somatostatin secreting cell semapv:crossSpeciesExactMatch TAO:0009105 semapv:UnspecifiedMatching 1:n +ZFA:0009106 steroid hormone secreting cell semapv:crossSpeciesExactMatch CL:0000174 semapv:UnspecifiedMatching 1:n +ZFA:0009106 steroid hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009106 semapv:UnspecifiedMatching 1:n +ZFA:0009107 testosterone secreting cell semapv:crossSpeciesExactMatch CL:0000177 semapv:UnspecifiedMatching 1:n +ZFA:0009107 testosterone secreting cell semapv:crossSpeciesExactMatch TAO:0009107 semapv:UnspecifiedMatching 1:n +ZFA:0009108 Leydig cell semapv:crossSpeciesExactMatch CL:0000178 semapv:UnspecifiedMatching 1:n +ZFA:0009108 Leydig cell semapv:crossSpeciesExactMatch TAO:0009108 semapv:UnspecifiedMatching 1:n +ZFA:0009109 progesterone secreting cell semapv:crossSpeciesExactMatch CL:0000179 semapv:UnspecifiedMatching 1:n +ZFA:0009109 progesterone secreting cell semapv:crossSpeciesExactMatch TAO:0009109 semapv:UnspecifiedMatching 1:n +ZFA:0009110 estradiol secreting cell semapv:crossSpeciesExactMatch CL:0000180 semapv:UnspecifiedMatching 1:n +ZFA:0009110 estradiol secreting cell semapv:crossSpeciesExactMatch TAO:0009110 semapv:UnspecifiedMatching 1:n +ZFA:0009111 hepatocyte semapv:crossSpeciesExactMatch CL:0000182 semapv:UnspecifiedMatching 1:n +ZFA:0009111 hepatocyte semapv:crossSpeciesExactMatch TAO:0009111 semapv:UnspecifiedMatching 1:n +ZFA:0009112 pericyte semapv:crossSpeciesExactMatch CL:0000669 semapv:UnspecifiedMatching 1:n +ZFA:0009112 pericyte semapv:crossSpeciesExactMatch TAO:0009112 semapv:UnspecifiedMatching 1:n +ZFA:0009113 myoepithelial cell semapv:crossSpeciesExactMatch CL:0000185 semapv:UnspecifiedMatching 1:n +ZFA:0009113 myoepithelial cell semapv:crossSpeciesExactMatch TAO:0009113 semapv:UnspecifiedMatching 1:n +ZFA:0009114 muscle cell semapv:crossSpeciesExactMatch CL:0000187 semapv:UnspecifiedMatching 1:n +ZFA:0009114 muscle cell semapv:crossSpeciesExactMatch TAO:0009114 semapv:UnspecifiedMatching 1:n +ZFA:0009115 skeletal muscle cell semapv:crossSpeciesExactMatch CL:0000188 semapv:UnspecifiedMatching 1:n +ZFA:0009115 skeletal muscle cell semapv:crossSpeciesExactMatch TAO:0009115 semapv:UnspecifiedMatching 1:n +ZFA:0009116 slow muscle cell semapv:crossSpeciesExactMatch CL:0000189 semapv:UnspecifiedMatching 1:n +ZFA:0009116 slow muscle cell semapv:crossSpeciesExactMatch TAO:0009116 semapv:UnspecifiedMatching 1:n +ZFA:0009117 fast muscle cell semapv:crossSpeciesExactMatch CL:0000190 semapv:UnspecifiedMatching 1:n +ZFA:0009117 fast muscle cell semapv:crossSpeciesExactMatch TAO:0009117 semapv:UnspecifiedMatching 1:n +ZFA:0009118 smooth muscle cell semapv:crossSpeciesExactMatch CL:0000192 semapv:UnspecifiedMatching 1:n +ZFA:0009118 smooth muscle cell semapv:crossSpeciesExactMatch TAO:0009118 semapv:UnspecifiedMatching 1:n +ZFA:0009119 pain receptor cell semapv:crossSpeciesExactMatch CL:0000198 semapv:UnspecifiedMatching 1:n +ZFA:0009119 pain receptor cell semapv:crossSpeciesExactMatch TAO:0009119 semapv:UnspecifiedMatching 1:n +ZFA:0009120 mechanoreceptor cell semapv:crossSpeciesExactMatch CL:0000199 semapv:UnspecifiedMatching 1:n +ZFA:0009120 mechanoreceptor cell semapv:crossSpeciesExactMatch TAO:0009120 semapv:UnspecifiedMatching 1:n +ZFA:0009121 auditory receptor cell semapv:crossSpeciesExactMatch CL:0000202 semapv:UnspecifiedMatching 1:n +ZFA:0009121 auditory receptor cell semapv:crossSpeciesExactMatch TAO:0009121 semapv:UnspecifiedMatching 1:n +ZFA:0009123 thermoreceptor cell semapv:crossSpeciesExactMatch CL:0000205 semapv:UnspecifiedMatching 1:n +ZFA:0009123 thermoreceptor cell semapv:crossSpeciesExactMatch TAO:0009123 semapv:UnspecifiedMatching 1:n +ZFA:0009124 chemoreceptor cell semapv:crossSpeciesExactMatch CL:0000206 semapv:UnspecifiedMatching 1:n +ZFA:0009124 chemoreceptor cell semapv:crossSpeciesExactMatch TAO:0009124 semapv:UnspecifiedMatching 1:n +ZFA:0009125 olfactory receptor cell semapv:crossSpeciesExactMatch CL:0000207 semapv:UnspecifiedMatching 1:n +ZFA:0009125 olfactory receptor cell semapv:crossSpeciesExactMatch TAO:0009125 semapv:UnspecifiedMatching 1:n +ZFA:0009126 taste receptor cell semapv:crossSpeciesExactMatch CL:0000209 semapv:UnspecifiedMatching 1:n +ZFA:0009126 taste receptor cell semapv:crossSpeciesExactMatch TAO:0009126 semapv:UnspecifiedMatching 1:n +ZFA:0009127 photoreceptor cell semapv:crossSpeciesExactMatch CL:0000210 semapv:UnspecifiedMatching 1:n +ZFA:0009127 photoreceptor cell semapv:crossSpeciesExactMatch TAO:0009127 semapv:UnspecifiedMatching 1:n +ZFA:0009128 electrically active cell semapv:crossSpeciesExactMatch CL:0000211 semapv:UnspecifiedMatching 1:n +ZFA:0009128 electrically active cell semapv:crossSpeciesExactMatch TAO:0009128 semapv:UnspecifiedMatching 1:n +ZFA:0009129 absorptive cell semapv:crossSpeciesExactMatch CL:0000212 semapv:UnspecifiedMatching 1:n +ZFA:0009129 absorptive cell semapv:crossSpeciesExactMatch TAO:0009129 semapv:UnspecifiedMatching 1:n +ZFA:0009130 lining cell semapv:crossSpeciesExactMatch CL:0000213 semapv:UnspecifiedMatching 1:n +ZFA:0009130 lining cell semapv:crossSpeciesExactMatch TAO:0009130 semapv:UnspecifiedMatching 1:n +ZFA:0009131 synovial cell semapv:crossSpeciesExactMatch CL:0000214 semapv:UnspecifiedMatching 1:n +ZFA:0009131 synovial cell semapv:crossSpeciesExactMatch TAO:0009131 semapv:UnspecifiedMatching 1:n +ZFA:0009132 barrier cell semapv:crossSpeciesExactMatch CL:0000215 semapv:UnspecifiedMatching 1:n +ZFA:0009132 barrier cell semapv:crossSpeciesExactMatch TAO:0009132 semapv:UnspecifiedMatching 1:n +ZFA:0009133 Sertoli cell semapv:crossSpeciesExactMatch CL:0000216 semapv:UnspecifiedMatching 1:n +ZFA:0009133 Sertoli cell semapv:crossSpeciesExactMatch TAO:0009133 semapv:UnspecifiedMatching 1:n +ZFA:0009134 insulating cell semapv:crossSpeciesExactMatch CL:0000217 semapv:UnspecifiedMatching 1:n +ZFA:0009134 insulating cell semapv:crossSpeciesExactMatch TAO:0009134 semapv:UnspecifiedMatching 1:n +ZFA:0009135 myelinating Schwann cell semapv:crossSpeciesExactMatch CL:0000218 semapv:UnspecifiedMatching 1:n +ZFA:0009135 myelinating Schwann cell semapv:crossSpeciesExactMatch TAO:0009135 semapv:UnspecifiedMatching 1:n +ZFA:0009136 motile cell semapv:crossSpeciesExactMatch CL:0000219 semapv:UnspecifiedMatching 1:n +ZFA:0009136 motile cell semapv:crossSpeciesExactMatch TAO:0009136 semapv:UnspecifiedMatching 1:n +ZFA:0009137 ectodermal cell semapv:crossSpeciesExactMatch CL:0000221 semapv:UnspecifiedMatching 1:n +ZFA:0009137 ectodermal cell semapv:crossSpeciesExactMatch TAO:0009137 semapv:UnspecifiedMatching 1:n +ZFA:0009138 mesodermal cell semapv:crossSpeciesExactMatch CL:0000222 semapv:UnspecifiedMatching 1:n +ZFA:0009138 mesodermal cell semapv:crossSpeciesExactMatch TAO:0009138 semapv:UnspecifiedMatching 1:n +ZFA:0009139 endodermal cell semapv:crossSpeciesExactMatch CL:0000223 semapv:UnspecifiedMatching 1:n +ZFA:0009139 endodermal cell semapv:crossSpeciesExactMatch TAO:0009139 semapv:UnspecifiedMatching 1:n +ZFA:0009140 phagocyte semapv:crossSpeciesExactMatch CL:0000234 semapv:UnspecifiedMatching 1:n +ZFA:0009140 phagocyte semapv:crossSpeciesExactMatch TAO:0009140 semapv:UnspecifiedMatching 1:n +ZFA:0009141 macrophage semapv:crossSpeciesExactMatch CL:0000235 semapv:UnspecifiedMatching 1:n +ZFA:0009141 macrophage semapv:crossSpeciesExactMatch TAO:0009141 semapv:UnspecifiedMatching 1:n +ZFA:0009142 B cell semapv:crossSpeciesExactMatch CL:0000236 semapv:UnspecifiedMatching 1:n +ZFA:0009142 B cell semapv:crossSpeciesExactMatch TAO:0009142 semapv:UnspecifiedMatching 1:n +ZFA:0009143 brush border epithelial cell semapv:crossSpeciesExactMatch CL:0000239 semapv:UnspecifiedMatching 1:n +ZFA:0009143 brush border epithelial cell semapv:crossSpeciesExactMatch TAO:0009143 semapv:UnspecifiedMatching 1:n +ZFA:0009144 stratified squamous epithelial cell semapv:crossSpeciesExactMatch CL:0000240 semapv:UnspecifiedMatching 1:n +ZFA:0009144 stratified squamous epithelial cell semapv:crossSpeciesExactMatch TAO:0009144 semapv:UnspecifiedMatching 1:n +ZFA:0009145 stratified cuboidal epithelial cell semapv:crossSpeciesExactMatch CL:0000241 semapv:UnspecifiedMatching 1:n +ZFA:0009145 stratified cuboidal epithelial cell semapv:crossSpeciesExactMatch TAO:0009145 semapv:UnspecifiedMatching 1:n +ZFA:0009146 Merkel cell semapv:crossSpeciesExactMatch CL:0000242 semapv:UnspecifiedMatching 1:n +ZFA:0009146 Merkel cell semapv:crossSpeciesExactMatch TAO:0009146 semapv:UnspecifiedMatching 1:n +ZFA:0009147 glial cell (sensu Vertebrata) semapv:crossSpeciesExactMatch CL:0000243 semapv:UnspecifiedMatching 1:n +ZFA:0009147 glial cell (sensu Vertebrata) semapv:crossSpeciesExactMatch TAO:0009147 semapv:UnspecifiedMatching 1:n +ZFA:0009148 transitional epithelial cell semapv:crossSpeciesExactMatch CL:0000244 semapv:UnspecifiedMatching 1:n +ZFA:0009148 transitional epithelial cell semapv:crossSpeciesExactMatch TAO:0009148 semapv:UnspecifiedMatching 1:n +ZFA:0009149 Mauthner neuron semapv:crossSpeciesExactMatch CL:0000246 semapv:UnspecifiedMatching 1:n +ZFA:0009149 Mauthner neuron semapv:crossSpeciesExactMatch TAO:0009149 semapv:UnspecifiedMatching 1:n +ZFA:0009150 Rohon-Beard neuron semapv:crossSpeciesExactMatch CL:0000247 semapv:UnspecifiedMatching 1:n +ZFA:0009150 Rohon-Beard neuron semapv:crossSpeciesExactMatch TAO:0009150 semapv:UnspecifiedMatching 1:n +ZFA:0009151 hatching gland cell semapv:crossSpeciesExactMatch CL:0000249 semapv:UnspecifiedMatching 1:n +ZFA:0009151 hatching gland cell semapv:crossSpeciesExactMatch TAO:0009151 semapv:UnspecifiedMatching 1:n +ZFA:0009152 extramedullary cell semapv:crossSpeciesExactMatch CL:0000251 semapv:UnspecifiedMatching 1:n +ZFA:0009152 extramedullary cell semapv:crossSpeciesExactMatch TAO:0009152 semapv:UnspecifiedMatching 1:n +ZFA:0009153 eurydendroid cell semapv:crossSpeciesExactMatch CL:0000253 semapv:UnspecifiedMatching 1:n +ZFA:0009153 eurydendroid cell semapv:crossSpeciesExactMatch TAO:0009153 semapv:UnspecifiedMatching 1:n +ZFA:0009154 eye photoreceptor cell semapv:crossSpeciesExactMatch CL:0000287 semapv:UnspecifiedMatching 1:n +ZFA:0009154 eye photoreceptor cell semapv:crossSpeciesExactMatch TAO:0009154 semapv:UnspecifiedMatching 1:n +ZFA:0009155 somatotropin secreting cell semapv:crossSpeciesExactMatch CL:0000295 semapv:UnspecifiedMatching 1:n +ZFA:0009155 somatotropin secreting cell semapv:crossSpeciesExactMatch TAO:0009155 semapv:UnspecifiedMatching 1:n +ZFA:0009156 gamete semapv:crossSpeciesExactMatch CL:0000300 semapv:UnspecifiedMatching 1:n +ZFA:0009156 gamete semapv:crossSpeciesExactMatch TAO:0009156 semapv:UnspecifiedMatching 1:n +ZFA:0009157 keratin accumulating cell semapv:crossSpeciesExactMatch CL:0000311 semapv:UnspecifiedMatching 1:n +ZFA:0009157 keratin accumulating cell semapv:crossSpeciesExactMatch TAO:0009157 semapv:UnspecifiedMatching 1:n +ZFA:0009158 keratinocyte semapv:crossSpeciesExactMatch CL:0000312 semapv:UnspecifiedMatching 1:n +ZFA:0009158 keratinocyte semapv:crossSpeciesExactMatch TAO:0009158 semapv:UnspecifiedMatching 1:n +ZFA:0009159 mucus secreting cell semapv:crossSpeciesExactMatch CL:0000319 semapv:UnspecifiedMatching 1:n +ZFA:0009159 mucus secreting cell semapv:crossSpeciesExactMatch TAO:0009159 semapv:UnspecifiedMatching 1:n +ZFA:0009160 seminal fluid secreting cell semapv:crossSpeciesExactMatch CL:0000321 semapv:UnspecifiedMatching 1:n +ZFA:0009160 seminal fluid secreting cell semapv:crossSpeciesExactMatch TAO:0009160 semapv:UnspecifiedMatching 1:n +ZFA:0009162 extracellular matrix secreting cell semapv:crossSpeciesExactMatch CL:0000327 semapv:UnspecifiedMatching 1:n +ZFA:0009162 extracellular matrix secreting cell semapv:crossSpeciesExactMatch TAO:0009162 semapv:UnspecifiedMatching 1:n +ZFA:0009163 myelin accumulating cell semapv:crossSpeciesExactMatch CL:0000328 semapv:UnspecifiedMatching 1:n +ZFA:0009163 myelin accumulating cell semapv:crossSpeciesExactMatch TAO:0009163 semapv:UnspecifiedMatching 1:n +ZFA:0009164 oxygen accumulating cell semapv:crossSpeciesExactMatch CL:0000329 semapv:UnspecifiedMatching 1:n +ZFA:0009164 oxygen accumulating cell semapv:crossSpeciesExactMatch TAO:0009164 semapv:UnspecifiedMatching 1:n +ZFA:0009166 mesenchyme condensation cell semapv:crossSpeciesExactMatch CL:0000335 semapv:UnspecifiedMatching 1:n +ZFA:0009166 mesenchyme condensation cell semapv:crossSpeciesExactMatch TAO:0009166 semapv:UnspecifiedMatching 1:n +ZFA:0009167 adrenal medulla cell semapv:crossSpeciesExactMatch CL:0000336 semapv:UnspecifiedMatching 1:n +ZFA:0009167 adrenal medulla cell semapv:crossSpeciesExactMatch TAO:0009167 semapv:UnspecifiedMatching 1:n +ZFA:0009168 neuroblast (sensu Vertebrata) semapv:crossSpeciesExactMatch CL:0000337 semapv:UnspecifiedMatching 1:n +ZFA:0009168 neuroblast (sensu Vertebrata) semapv:crossSpeciesExactMatch TAO:0009168 semapv:UnspecifiedMatching 1:n +ZFA:0009169 glioblast (sensu Vertebrata) semapv:crossSpeciesExactMatch CL:0000339 semapv:UnspecifiedMatching 1:n +ZFA:0009169 glioblast (sensu Vertebrata) semapv:crossSpeciesExactMatch TAO:0009169 semapv:UnspecifiedMatching 1:n +ZFA:0009170 pigment cell (sensu Vertebrata) semapv:crossSpeciesExactMatch CL:0000342 semapv:UnspecifiedMatching 1:n +ZFA:0009170 pigment cell (sensu Vertebrata) semapv:crossSpeciesExactMatch TAO:0009170 semapv:UnspecifiedMatching 1:n +ZFA:0009171 visual pigment cell (sensu Vertebrata) semapv:crossSpeciesExactMatch CL:0000343 semapv:UnspecifiedMatching 1:n +ZFA:0009171 visual pigment cell (sensu Vertebrata) semapv:crossSpeciesExactMatch TAO:0009171 semapv:UnspecifiedMatching 1:n +ZFA:0009173 dental papilla cell semapv:crossSpeciesExactMatch CL:0000345 semapv:UnspecifiedMatching 1:n +ZFA:0009173 dental papilla cell semapv:crossSpeciesExactMatch TAO:0009173 semapv:UnspecifiedMatching 1:n +ZFA:0009174 scleral cell semapv:crossSpeciesExactMatch CL:0000347 semapv:UnspecifiedMatching 1:n +ZFA:0009174 scleral cell semapv:crossSpeciesExactMatch TAO:0009174 semapv:UnspecifiedMatching 1:n +ZFA:0009175 choroidal cell of the eye semapv:crossSpeciesExactMatch CL:0000348 semapv:UnspecifiedMatching 1:n +ZFA:0009175 choroidal cell of the eye semapv:crossSpeciesExactMatch TAO:0009175 semapv:UnspecifiedMatching 1:n +ZFA:0009176 extraembryonic cell semapv:crossSpeciesExactMatch CL:0000349 semapv:UnspecifiedMatching 1:n +ZFA:0009176 extraembryonic cell semapv:crossSpeciesExactMatch TAO:0009176 semapv:UnspecifiedMatching 1:n +ZFA:0009177 blastoderm cell semapv:crossSpeciesExactMatch CL:0000353 semapv:UnspecifiedMatching 1:n +ZFA:0009177 blastoderm cell semapv:crossSpeciesExactMatch TAO:0009177 semapv:UnspecifiedMatching 1:n +ZFA:0009178 blastemal cell semapv:crossSpeciesExactMatch CL:0000354 semapv:UnspecifiedMatching 1:n +ZFA:0009178 blastemal cell semapv:crossSpeciesExactMatch TAO:0009178 semapv:UnspecifiedMatching 1:n +ZFA:0009179 muscle stem cell semapv:crossSpeciesExactMatch CL:0000355 semapv:UnspecifiedMatching 1:n +ZFA:0009179 muscle stem cell semapv:crossSpeciesExactMatch TAO:0009179 semapv:UnspecifiedMatching 1:n +ZFA:0009180 stratified epithelial stem cell semapv:crossSpeciesExactMatch CL:0000357 semapv:UnspecifiedMatching 1:n +ZFA:0009180 stratified epithelial stem cell semapv:crossSpeciesExactMatch TAO:0009180 semapv:UnspecifiedMatching 1:n +ZFA:0009181 vascular associated smooth muscle cell semapv:crossSpeciesExactMatch CL:0000359 semapv:UnspecifiedMatching 1:n +ZFA:0009181 vascular associated smooth muscle cell semapv:crossSpeciesExactMatch TAO:0009181 semapv:UnspecifiedMatching 1:n +ZFA:0009182 gastrula cell semapv:crossSpeciesExactMatch CL:0000361 semapv:UnspecifiedMatching 1:n +ZFA:0009182 gastrula cell semapv:crossSpeciesExactMatch TAO:0009182 semapv:UnspecifiedMatching 1:n +ZFA:0009183 epidermal cell semapv:crossSpeciesExactMatch CL:0000362 semapv:UnspecifiedMatching 1:n +ZFA:0009183 epidermal cell semapv:crossSpeciesExactMatch TAO:0009183 semapv:UnspecifiedMatching 1:n +ZFA:0009184 osteoprogenitor cell semapv:crossSpeciesExactMatch CL:0000375 semapv:UnspecifiedMatching 1:n +ZFA:0009184 osteoprogenitor cell semapv:crossSpeciesExactMatch TAO:0009184 semapv:UnspecifiedMatching 1:n +ZFA:0009185 sensory processing neuron semapv:crossSpeciesExactMatch CL:0000379 semapv:UnspecifiedMatching 1:n +ZFA:0009185 sensory processing neuron semapv:crossSpeciesExactMatch TAO:0009185 semapv:UnspecifiedMatching 1:n +ZFA:0009186 neurosecretory neuron semapv:crossSpeciesExactMatch CL:0000381 semapv:UnspecifiedMatching 1:n +ZFA:0009186 neurosecretory neuron semapv:crossSpeciesExactMatch TAO:0009186 semapv:UnspecifiedMatching 1:n +ZFA:0009187 nephrogenic mesenchyme stem cell semapv:crossSpeciesExactMatch CL:0000383 semapv:UnspecifiedMatching 1:n +ZFA:0009187 nephrogenic mesenchyme stem cell semapv:crossSpeciesExactMatch TAO:0009187 semapv:UnspecifiedMatching 1:n +ZFA:0009188 ligament cell semapv:crossSpeciesExactMatch CL:0000384 semapv:UnspecifiedMatching 1:n +ZFA:0009188 ligament cell semapv:crossSpeciesExactMatch TAO:0009188 semapv:UnspecifiedMatching 1:n +ZFA:0009189 tendon cell semapv:crossSpeciesExactMatch CL:0000388 semapv:UnspecifiedMatching 1:n +ZFA:0009189 tendon cell semapv:crossSpeciesExactMatch TAO:0009189 semapv:UnspecifiedMatching 1:n +ZFA:0009190 electrically responsive cell semapv:crossSpeciesExactMatch CL:0000393 semapv:UnspecifiedMatching 1:n +ZFA:0009190 electrically responsive cell semapv:crossSpeciesExactMatch TAO:0009190 semapv:UnspecifiedMatching 1:n +ZFA:0009191 CNS interneuron semapv:crossSpeciesExactMatch CL:0000402 semapv:UnspecifiedMatching 1:n +ZFA:0009191 CNS interneuron semapv:crossSpeciesExactMatch TAO:0009191 semapv:UnspecifiedMatching 1:n +ZFA:0009193 electrically signaling cell semapv:crossSpeciesExactMatch CL:0000404 semapv:UnspecifiedMatching 1:n +ZFA:0009193 electrically signaling cell semapv:crossSpeciesExactMatch TAO:0009193 semapv:UnspecifiedMatching 1:n +ZFA:0009194 CNS short range interneuron semapv:crossSpeciesExactMatch CL:0000406 semapv:UnspecifiedMatching 1:n +ZFA:0009194 CNS short range interneuron semapv:crossSpeciesExactMatch TAO:0009194 semapv:UnspecifiedMatching 1:n +ZFA:0009195 CNS long range interneuron semapv:crossSpeciesExactMatch CL:0000410 semapv:UnspecifiedMatching 1:n +ZFA:0009195 CNS long range interneuron semapv:crossSpeciesExactMatch TAO:0009195 semapv:UnspecifiedMatching 1:n +ZFA:0009196 hypodermal cell semapv:crossSpeciesExactMatch CL:0000411 semapv:UnspecifiedMatching 1:n +ZFA:0009196 hypodermal cell semapv:crossSpeciesExactMatch TAO:0009196 semapv:UnspecifiedMatching 1:n +ZFA:0009198 xanthophore semapv:crossSpeciesExactMatch CL:0000430 semapv:UnspecifiedMatching 1:n +ZFA:0009198 xanthophore semapv:crossSpeciesExactMatch TAO:0009198 semapv:UnspecifiedMatching 1:n +ZFA:0009199 iridophore semapv:crossSpeciesExactMatch CL:0000431 semapv:UnspecifiedMatching 1:n +ZFA:0009199 iridophore semapv:crossSpeciesExactMatch TAO:0009199 semapv:UnspecifiedMatching 1:n +ZFA:0009200 reticular cell semapv:crossSpeciesExactMatch CL:0000432 semapv:UnspecifiedMatching 1:n +ZFA:0009200 reticular cell semapv:crossSpeciesExactMatch TAO:0009200 semapv:UnspecifiedMatching 1:n +ZFA:0009201 alkali secreting cell semapv:crossSpeciesExactMatch CL:0000435 semapv:UnspecifiedMatching 1:n +ZFA:0009201 alkali secreting cell semapv:crossSpeciesExactMatch TAO:0009201 semapv:UnspecifiedMatching 1:n +ZFA:0009202 follicle stimulating hormone secreting cell semapv:crossSpeciesExactMatch CL:0000437 semapv:UnspecifiedMatching 1:n +ZFA:0009202 follicle stimulating hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009202 semapv:UnspecifiedMatching 1:n +ZFA:0009203 luteinizing hormone secreting cell semapv:crossSpeciesExactMatch CL:0000438 semapv:UnspecifiedMatching 1:n +ZFA:0009203 luteinizing hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009203 semapv:UnspecifiedMatching 1:n +ZFA:0009204 prolactin secreting cell semapv:crossSpeciesExactMatch CL:0000439 semapv:UnspecifiedMatching 1:n +ZFA:0009204 prolactin secreting cell semapv:crossSpeciesExactMatch TAO:0009204 semapv:UnspecifiedMatching 1:n +ZFA:0009205 melanocyte stimulating hormone secreting cell semapv:crossSpeciesExactMatch CL:0000440 semapv:UnspecifiedMatching 1:n +ZFA:0009205 melanocyte stimulating hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009205 semapv:UnspecifiedMatching 1:n +ZFA:0009206 calcitonin secreting cell semapv:crossSpeciesExactMatch CL:0000443 semapv:UnspecifiedMatching 1:n +ZFA:0009206 calcitonin secreting cell semapv:crossSpeciesExactMatch TAO:0009206 semapv:UnspecifiedMatching 1:n +ZFA:0009207 parathyroid hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009207 semapv:UnspecifiedMatching 1:1 +ZFA:0009209 dendritic cell semapv:crossSpeciesExactMatch CL:0000451 semapv:UnspecifiedMatching 1:n +ZFA:0009209 dendritic cell semapv:crossSpeciesExactMatch TAO:0009209 semapv:UnspecifiedMatching 1:n +ZFA:0009210 thyroid hormone secreting cell semapv:crossSpeciesExactMatch CL:0000452 semapv:UnspecifiedMatching 1:n +ZFA:0009210 thyroid hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009210 semapv:UnspecifiedMatching 1:n +ZFA:0009211 epinephrin secreting cell semapv:crossSpeciesExactMatch CL:0000454 semapv:UnspecifiedMatching 1:n +ZFA:0009211 epinephrin secreting cell semapv:crossSpeciesExactMatch TAO:0009211 semapv:UnspecifiedMatching 1:n +ZFA:0009212 biogenic amine secreting cell semapv:crossSpeciesExactMatch CL:0000457 semapv:UnspecifiedMatching 1:n +ZFA:0009212 biogenic amine secreting cell semapv:crossSpeciesExactMatch TAO:0009212 semapv:UnspecifiedMatching 1:n +ZFA:0009213 serotonin secreting cell semapv:crossSpeciesExactMatch CL:0000458 semapv:UnspecifiedMatching 1:n +ZFA:0009213 serotonin secreting cell semapv:crossSpeciesExactMatch TAO:0009213 semapv:UnspecifiedMatching 1:n +ZFA:0009214 norepinephrine secreting cell semapv:crossSpeciesExactMatch CL:0000459 semapv:UnspecifiedMatching 1:n +ZFA:0009214 norepinephrine secreting cell semapv:crossSpeciesExactMatch TAO:0009214 semapv:UnspecifiedMatching 1:n +ZFA:0009215 glucocorticoid secreting cell semapv:crossSpeciesExactMatch CL:0000460 semapv:UnspecifiedMatching 1:n +ZFA:0009215 glucocorticoid secreting cell semapv:crossSpeciesExactMatch TAO:0009215 semapv:UnspecifiedMatching 1:n +ZFA:0009216 adrenocorticotropic hormone secreting cell semapv:crossSpeciesExactMatch CL:0000467 semapv:UnspecifiedMatching 1:n +ZFA:0009216 adrenocorticotropic hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009216 semapv:UnspecifiedMatching 1:n +ZFA:0009217 digestive enzyme secreting cell semapv:crossSpeciesExactMatch CL:0000470 semapv:UnspecifiedMatching 1:n +ZFA:0009217 digestive enzyme secreting cell semapv:crossSpeciesExactMatch TAO:0009217 semapv:UnspecifiedMatching 1:n +ZFA:0009218 thyroid stimulating hormone secreting cell semapv:crossSpeciesExactMatch CL:0000476 semapv:UnspecifiedMatching 1:n +ZFA:0009218 thyroid stimulating hormone secreting cell semapv:crossSpeciesExactMatch TAO:0009218 semapv:UnspecifiedMatching 1:n +ZFA:0009219 visible light photoreceptor cell semapv:crossSpeciesExactMatch CL:0000488 semapv:UnspecifiedMatching 1:n +ZFA:0009219 visible light photoreceptor cell semapv:crossSpeciesExactMatch TAO:0009219 semapv:UnspecifiedMatching 1:n +ZFA:0009220 photopic photoreceptor cell semapv:crossSpeciesExactMatch CL:0000490 semapv:UnspecifiedMatching 1:n +ZFA:0009220 photopic photoreceptor cell semapv:crossSpeciesExactMatch TAO:0009220 semapv:UnspecifiedMatching 1:n +ZFA:0009221 UV sensitive photoreceptor cell semapv:crossSpeciesExactMatch CL:0000494 semapv:UnspecifiedMatching 1:n +ZFA:0009221 UV sensitive photoreceptor cell semapv:crossSpeciesExactMatch TAO:0009221 semapv:UnspecifiedMatching 1:n +ZFA:0009222 blue sensitive photoreceptor cell semapv:crossSpeciesExactMatch CL:0000495 semapv:UnspecifiedMatching 1:n +ZFA:0009222 blue sensitive photoreceptor cell semapv:crossSpeciesExactMatch TAO:0009222 semapv:UnspecifiedMatching 1:n +ZFA:0009223 green sensitive photoreceptor cell semapv:crossSpeciesExactMatch CL:0000496 semapv:UnspecifiedMatching 1:n +ZFA:0009223 green sensitive photoreceptor cell semapv:crossSpeciesExactMatch TAO:0009223 semapv:UnspecifiedMatching 1:n +ZFA:0009224 red sensitive photoreceptor cell semapv:crossSpeciesExactMatch CL:0000497 semapv:UnspecifiedMatching 1:n +ZFA:0009224 red sensitive photoreceptor cell semapv:crossSpeciesExactMatch TAO:0009224 semapv:UnspecifiedMatching 1:n +ZFA:0009225 inhibitory interneuron semapv:crossSpeciesExactMatch CL:0000498 semapv:UnspecifiedMatching 1:n +ZFA:0009225 inhibitory interneuron semapv:crossSpeciesExactMatch TAO:0009225 semapv:UnspecifiedMatching 1:n +ZFA:0009226 stromal cell semapv:crossSpeciesExactMatch CL:0000499 semapv:UnspecifiedMatching 1:n +ZFA:0009226 stromal cell semapv:crossSpeciesExactMatch TAO:0009226 semapv:UnspecifiedMatching 1:n +ZFA:0009227 granulosa cell semapv:crossSpeciesExactMatch CL:0000501 semapv:UnspecifiedMatching 1:n +ZFA:0009227 granulosa cell semapv:crossSpeciesExactMatch TAO:0009227 semapv:UnspecifiedMatching 1:n +ZFA:0009228 D cell semapv:crossSpeciesExactMatch CL:0000502 semapv:UnspecifiedMatching 1:n +ZFA:0009228 D cell semapv:crossSpeciesExactMatch TAO:0009228 semapv:UnspecifiedMatching 1:n +ZFA:0009229 theca cell semapv:crossSpeciesExactMatch CL:0000503 semapv:UnspecifiedMatching 1:n +ZFA:0009229 theca cell semapv:crossSpeciesExactMatch TAO:0009229 semapv:UnspecifiedMatching 1:n +ZFA:0009230 substance P secreting cell semapv:crossSpeciesExactMatch CL:0000505 semapv:UnspecifiedMatching 1:n +ZFA:0009230 substance P secreting cell semapv:crossSpeciesExactMatch TAO:0009230 semapv:UnspecifiedMatching 1:n +ZFA:0009231 enkephalin secreting cell semapv:crossSpeciesExactMatch CL:0000506 semapv:UnspecifiedMatching 1:n +ZFA:0009231 enkephalin secreting cell semapv:crossSpeciesExactMatch TAO:0009231 semapv:UnspecifiedMatching 1:n +ZFA:0009232 endorphin secreting cell semapv:crossSpeciesExactMatch CL:0000507 semapv:UnspecifiedMatching 1:n +ZFA:0009232 endorphin secreting cell semapv:crossSpeciesExactMatch TAO:0009232 semapv:UnspecifiedMatching 1:n +ZFA:0009233 paracrine cell semapv:crossSpeciesExactMatch CL:0000512 semapv:UnspecifiedMatching 1:n +ZFA:0009233 paracrine cell semapv:crossSpeciesExactMatch TAO:0009233 semapv:UnspecifiedMatching 1:n +ZFA:0009234 cardiac muscle myoblast semapv:crossSpeciesExactMatch CL:0000513 semapv:UnspecifiedMatching 1:n +ZFA:0009234 cardiac muscle myoblast semapv:crossSpeciesExactMatch TAO:0009234 semapv:UnspecifiedMatching 1:n +ZFA:0009235 smooth muscle myoblast semapv:crossSpeciesExactMatch CL:0000514 semapv:UnspecifiedMatching 1:n +ZFA:0009235 smooth muscle myoblast semapv:crossSpeciesExactMatch TAO:0009235 semapv:UnspecifiedMatching 1:n +ZFA:0009236 skeletal muscle myoblast semapv:crossSpeciesExactMatch CL:0000515 semapv:UnspecifiedMatching 1:n +ZFA:0009236 skeletal muscle myoblast semapv:crossSpeciesExactMatch TAO:0009236 semapv:UnspecifiedMatching 1:n +ZFA:0009237 perineuronal satellite cell semapv:crossSpeciesExactMatch CL:0000516 semapv:UnspecifiedMatching 1:n +ZFA:0009237 perineuronal satellite cell semapv:crossSpeciesExactMatch TAO:0009237 semapv:UnspecifiedMatching 1:n +ZFA:0009238 afferent neuron semapv:crossSpeciesExactMatch CL:0000526 semapv:UnspecifiedMatching 1:n +ZFA:0009238 afferent neuron semapv:crossSpeciesExactMatch TAO:0009238 semapv:UnspecifiedMatching 1:n +ZFA:0009239 efferent neuron semapv:crossSpeciesExactMatch CL:0000527 semapv:UnspecifiedMatching 1:n +ZFA:0009239 efferent neuron semapv:crossSpeciesExactMatch TAO:0009239 semapv:UnspecifiedMatching 1:n +ZFA:0009240 nitrergic neuron semapv:crossSpeciesExactMatch CL:0000528 semapv:UnspecifiedMatching 1:n +ZFA:0009240 nitrergic neuron semapv:crossSpeciesExactMatch TAO:0009240 semapv:UnspecifiedMatching 1:n +ZFA:0009241 pigmented epithelial cell semapv:crossSpeciesExactMatch CL:0000529 semapv:UnspecifiedMatching 1:n +ZFA:0009241 pigmented epithelial cell semapv:crossSpeciesExactMatch TAO:0009241 semapv:UnspecifiedMatching 1:n +ZFA:0009242 primary neuron semapv:crossSpeciesExactMatch CL:0000530 semapv:UnspecifiedMatching 1:n +ZFA:0009242 primary neuron semapv:crossSpeciesExactMatch TAO:0009242 semapv:UnspecifiedMatching 1:n +ZFA:0009243 CaP motoneuron semapv:crossSpeciesExactMatch CL:0000532 semapv:UnspecifiedMatching 1:n +ZFA:0009243 CaP motoneuron semapv:crossSpeciesExactMatch TAO:0009243 semapv:UnspecifiedMatching 1:n +ZFA:0009244 primary motor neuron semapv:crossSpeciesExactMatch CL:0000533 semapv:UnspecifiedMatching 1:n +ZFA:0009244 primary motor neuron semapv:crossSpeciesExactMatch TAO:0009244 semapv:UnspecifiedMatching 1:n +ZFA:0009245 primary interneuron semapv:crossSpeciesExactMatch CL:0000534 semapv:UnspecifiedMatching 1:n +ZFA:0009245 primary interneuron semapv:crossSpeciesExactMatch TAO:0009245 semapv:UnspecifiedMatching 1:n +ZFA:0009246 secondary neuron semapv:crossSpeciesExactMatch CL:0000535 semapv:UnspecifiedMatching 1:n +ZFA:0009246 secondary neuron semapv:crossSpeciesExactMatch TAO:0009246 semapv:UnspecifiedMatching 1:n +ZFA:0009247 secondary motor neuron semapv:crossSpeciesExactMatch CL:0000536 semapv:UnspecifiedMatching 1:n +ZFA:0009247 secondary motor neuron semapv:crossSpeciesExactMatch TAO:0009247 semapv:UnspecifiedMatching 1:n +ZFA:0009248 neuron semapv:crossSpeciesExactMatch CL:0000540 semapv:UnspecifiedMatching 1:n +ZFA:0009248 neuron semapv:crossSpeciesExactMatch TAO:0009248 semapv:UnspecifiedMatching 1:n +ZFA:0009249 melanoblast semapv:crossSpeciesExactMatch CL:0000541 semapv:UnspecifiedMatching 1:n +ZFA:0009249 melanoblast semapv:crossSpeciesExactMatch TAO:0009249 semapv:UnspecifiedMatching 1:n +ZFA:0009250 lymphocyte semapv:crossSpeciesExactMatch CL:0000542 semapv:UnspecifiedMatching 1:n +ZFA:0009250 lymphocyte semapv:crossSpeciesExactMatch TAO:0009250 semapv:UnspecifiedMatching 1:n +ZFA:0009251 granulocyte monocyte progenitor cell semapv:crossSpeciesExactMatch CL:0000557 semapv:UnspecifiedMatching 1:n +ZFA:0009251 granulocyte monocyte progenitor cell semapv:crossSpeciesExactMatch TAO:0009251 semapv:UnspecifiedMatching 1:n +ZFA:0009252 reticulocyte semapv:crossSpeciesExactMatch CL:0000558 semapv:UnspecifiedMatching 1:n +ZFA:0009252 reticulocyte semapv:crossSpeciesExactMatch TAO:0009252 semapv:UnspecifiedMatching 1:n +ZFA:0009253 promonocyte semapv:crossSpeciesExactMatch CL:0000559 semapv:UnspecifiedMatching 1:n +ZFA:0009253 promonocyte semapv:crossSpeciesExactMatch TAO:0009253 semapv:UnspecifiedMatching 1:n +ZFA:0009254 band form neutrophil semapv:crossSpeciesExactMatch CL:0000560 semapv:UnspecifiedMatching 1:n +ZFA:0009254 band form neutrophil semapv:crossSpeciesExactMatch TAO:0009254 semapv:UnspecifiedMatching 1:n +ZFA:0009255 amacrine cell semapv:crossSpeciesExactMatch CL:0000561 semapv:UnspecifiedMatching 1:n +ZFA:0009255 amacrine cell semapv:crossSpeciesExactMatch TAO:0009255 semapv:UnspecifiedMatching 1:n +ZFA:0009256 nucleate erythrocyte semapv:crossSpeciesExactMatch CL:0000562 semapv:UnspecifiedMatching 1:n +ZFA:0009256 nucleate erythrocyte semapv:crossSpeciesExactMatch TAO:0009256 semapv:UnspecifiedMatching 1:n +ZFA:0009257 neutrophilic promyelocyte semapv:crossSpeciesExactMatch CL:0000564 semapv:UnspecifiedMatching 1:n +ZFA:0009257 neutrophilic promyelocyte semapv:crossSpeciesExactMatch TAO:0009257 semapv:UnspecifiedMatching 1:n +ZFA:0009258 angioblastic mesenchymal cell semapv:crossSpeciesExactMatch CL:0000566 semapv:UnspecifiedMatching 1:n +ZFA:0009258 angioblastic mesenchymal cell semapv:crossSpeciesExactMatch TAO:0009258 semapv:UnspecifiedMatching 1:n +ZFA:0009259 cardiac mesenchymal cell semapv:crossSpeciesExactMatch CL:0000569 semapv:UnspecifiedMatching 1:n +ZFA:0009259 cardiac mesenchymal cell semapv:crossSpeciesExactMatch TAO:0009259 semapv:UnspecifiedMatching 1:n +ZFA:0009260 parafollicular cell semapv:crossSpeciesExactMatch CL:0000570 semapv:UnspecifiedMatching 1:n +ZFA:0009260 parafollicular cell semapv:crossSpeciesExactMatch TAO:0009260 semapv:UnspecifiedMatching 1:n +ZFA:0009261 leucophore semapv:crossSpeciesExactMatch CL:0000571 semapv:UnspecifiedMatching 1:n +ZFA:0009261 leucophore semapv:crossSpeciesExactMatch TAO:0009261 semapv:UnspecifiedMatching 1:n +ZFA:0009262 retinal cone cell semapv:crossSpeciesExactMatch CL:0000573 semapv:UnspecifiedMatching 1:n +ZFA:0009262 retinal cone cell semapv:crossSpeciesExactMatch TAO:0009262 semapv:UnspecifiedMatching 1:n +ZFA:0009263 erythrophore semapv:crossSpeciesExactMatch CL:0000574 semapv:UnspecifiedMatching 1:n +ZFA:0009263 erythrophore semapv:crossSpeciesExactMatch TAO:0009263 semapv:UnspecifiedMatching 1:n +ZFA:0009264 corneal epithelial cell semapv:crossSpeciesExactMatch CL:0000575 semapv:UnspecifiedMatching 1:n +ZFA:0009264 corneal epithelial cell semapv:crossSpeciesExactMatch TAO:0009264 semapv:UnspecifiedMatching 1:n +ZFA:0009265 monocyte semapv:crossSpeciesExactMatch CL:0000576 semapv:UnspecifiedMatching 1:n +ZFA:0009265 monocyte semapv:crossSpeciesExactMatch TAO:0009265 semapv:UnspecifiedMatching 1:n +ZFA:0009266 neutrophilic myelocyte semapv:crossSpeciesExactMatch CL:0000580 semapv:UnspecifiedMatching 1:n +ZFA:0009266 neutrophilic myelocyte semapv:crossSpeciesExactMatch TAO:0009266 semapv:UnspecifiedMatching 1:n +ZFA:0009267 peritoneal macrophage semapv:crossSpeciesExactMatch CL:0000581 semapv:UnspecifiedMatching 1:n +ZFA:0009267 peritoneal macrophage semapv:crossSpeciesExactMatch TAO:0009267 semapv:UnspecifiedMatching 1:n +ZFA:0009268 neutrophilic metamyelocyte semapv:crossSpeciesExactMatch CL:0000582 semapv:UnspecifiedMatching 1:n +ZFA:0009268 neutrophilic metamyelocyte semapv:crossSpeciesExactMatch TAO:0009268 semapv:UnspecifiedMatching 1:n +ZFA:0009269 enterocyte semapv:crossSpeciesExactMatch CL:0000584 semapv:UnspecifiedMatching 1:n +ZFA:0009269 enterocyte semapv:crossSpeciesExactMatch TAO:0009269 semapv:UnspecifiedMatching 1:n +ZFA:0009270 odontoclast semapv:crossSpeciesExactMatch CL:0000588 semapv:UnspecifiedMatching 1:n +ZFA:0009270 odontoclast semapv:crossSpeciesExactMatch TAO:0009270 semapv:UnspecifiedMatching 1:n +ZFA:0009271 androgen secreting cell semapv:crossSpeciesExactMatch CL:0000593 semapv:UnspecifiedMatching 1:n +ZFA:0009271 androgen secreting cell semapv:crossSpeciesExactMatch TAO:0009271 semapv:UnspecifiedMatching 1:n +ZFA:0009272 skeletal muscle satellite cell semapv:crossSpeciesExactMatch CL:0000594 semapv:UnspecifiedMatching 1:n +ZFA:0009272 skeletal muscle satellite cell semapv:crossSpeciesExactMatch TAO:0009272 semapv:UnspecifiedMatching 1:n +ZFA:0009273 pyramidal cell semapv:crossSpeciesExactMatch CL:0000598 semapv:UnspecifiedMatching 1:n +ZFA:0009273 pyramidal cell semapv:crossSpeciesExactMatch TAO:0009273 semapv:UnspecifiedMatching 1:n +ZFA:0009274 pressoreceptor cell semapv:crossSpeciesExactMatch CL:0000602 semapv:UnspecifiedMatching 1:n +ZFA:0009274 pressoreceptor cell semapv:crossSpeciesExactMatch TAO:0009274 semapv:UnspecifiedMatching 1:n +ZFA:0009275 retinal rod cell semapv:crossSpeciesExactMatch CL:0000604 semapv:UnspecifiedMatching 1:n +ZFA:0009275 retinal rod cell semapv:crossSpeciesExactMatch TAO:0009275 semapv:UnspecifiedMatching 1:n +ZFA:0009276 GABAergic neuron semapv:crossSpeciesExactMatch CL:0000617 semapv:UnspecifiedMatching 1:n +ZFA:0009276 GABAergic neuron semapv:crossSpeciesExactMatch TAO:0009276 semapv:UnspecifiedMatching 1:n +ZFA:0009277 acinar cell semapv:crossSpeciesExactMatch CL:0000622 semapv:UnspecifiedMatching 1:n +ZFA:0009277 acinar cell semapv:crossSpeciesExactMatch TAO:0009277 semapv:UnspecifiedMatching 1:n +ZFA:0009278 natural killer cell semapv:crossSpeciesExactMatch CL:0000623 semapv:UnspecifiedMatching 1:n +ZFA:0009278 natural killer cell semapv:crossSpeciesExactMatch TAO:0009278 semapv:UnspecifiedMatching 1:n +ZFA:0009279 ito cell semapv:crossSpeciesExactMatch CL:0000632 semapv:UnspecifiedMatching 1:n +ZFA:0009279 ito cell semapv:crossSpeciesExactMatch TAO:0009279 semapv:UnspecifiedMatching 1:n +ZFA:0009280 Muller cell semapv:crossSpeciesExactMatch CL:0000636 semapv:UnspecifiedMatching 1:n +ZFA:0009280 Muller cell semapv:crossSpeciesExactMatch TAO:0009280 semapv:UnspecifiedMatching 1:n +ZFA:0009281 folliculostellate cell semapv:crossSpeciesExactMatch CL:0000642 semapv:UnspecifiedMatching 1:n +ZFA:0009281 folliculostellate cell semapv:crossSpeciesExactMatch TAO:0009281 semapv:UnspecifiedMatching 1:n +ZFA:0009282 Bergmann glial cell semapv:crossSpeciesExactMatch CL:0000644 semapv:UnspecifiedMatching 1:n +ZFA:0009282 Bergmann glial cell semapv:crossSpeciesExactMatch TAO:0009282 semapv:UnspecifiedMatching 1:n +ZFA:0009283 mesangial cell semapv:crossSpeciesExactMatch CL:0000650 semapv:UnspecifiedMatching 1:n +ZFA:0009283 mesangial cell semapv:crossSpeciesExactMatch TAO:0009283 semapv:UnspecifiedMatching 1:n +ZFA:0009284 pinealocyte semapv:crossSpeciesExactMatch CL:0000652 semapv:UnspecifiedMatching 1:n +ZFA:0009284 pinealocyte semapv:crossSpeciesExactMatch TAO:0009284 semapv:UnspecifiedMatching 1:n +ZFA:0009285 podocyte semapv:crossSpeciesExactMatch CL:0000653 semapv:UnspecifiedMatching 1:n +ZFA:0009285 podocyte semapv:crossSpeciesExactMatch TAO:0009285 semapv:UnspecifiedMatching 1:n +ZFA:0009286 fenestrated cell semapv:crossSpeciesExactMatch CL:0000666 semapv:UnspecifiedMatching 1:n +ZFA:0009286 fenestrated cell semapv:crossSpeciesExactMatch TAO:0009286 semapv:UnspecifiedMatching 1:n +ZFA:0009287 collagen secreting cell semapv:crossSpeciesExactMatch CL:0000667 semapv:UnspecifiedMatching 1:n +ZFA:0009287 collagen secreting cell semapv:crossSpeciesExactMatch TAO:0009287 semapv:UnspecifiedMatching 1:n +ZFA:0009288 primordial germ cell semapv:crossSpeciesExactMatch CL:0000670 semapv:UnspecifiedMatching 1:n +ZFA:0009288 primordial germ cell semapv:crossSpeciesExactMatch TAO:0009288 semapv:UnspecifiedMatching 1:n +ZFA:0009289 gut absorptive cell semapv:crossSpeciesExactMatch CL:0000677 semapv:UnspecifiedMatching 1:n +ZFA:0009289 gut absorptive cell semapv:crossSpeciesExactMatch TAO:0009289 semapv:UnspecifiedMatching 1:n +ZFA:0009290 glutamatergic neuron semapv:crossSpeciesExactMatch CL:0000679 semapv:UnspecifiedMatching 1:n +ZFA:0009290 glutamatergic neuron semapv:crossSpeciesExactMatch TAO:0009290 semapv:UnspecifiedMatching 1:n +ZFA:0009291 muscle precursor cell semapv:crossSpeciesExactMatch CL:0000680 semapv:UnspecifiedMatching 1:n +ZFA:0009291 muscle precursor cell semapv:crossSpeciesExactMatch TAO:0009291 semapv:UnspecifiedMatching 1:n +ZFA:0009292 radial glial cell semapv:crossSpeciesExactMatch CL:0000681 semapv:UnspecifiedMatching 1:n +ZFA:0009292 radial glial cell semapv:crossSpeciesExactMatch TAO:0009292 semapv:UnspecifiedMatching 1:n +ZFA:0009293 M cell semapv:crossSpeciesExactMatch CL:0000682 semapv:UnspecifiedMatching 1:n +ZFA:0009293 M cell semapv:crossSpeciesExactMatch TAO:0009293 semapv:UnspecifiedMatching 1:n +ZFA:0009294 ependymoglial cell semapv:crossSpeciesExactMatch CL:0000683 semapv:UnspecifiedMatching 1:n +ZFA:0009294 ependymoglial cell semapv:crossSpeciesExactMatch TAO:0009294 semapv:UnspecifiedMatching 1:n +ZFA:0009295 cerebrospinal fluid secreting cell semapv:crossSpeciesExactMatch CL:0000686 semapv:UnspecifiedMatching 1:n +ZFA:0009295 cerebrospinal fluid secreting cell semapv:crossSpeciesExactMatch TAO:0009295 semapv:UnspecifiedMatching 1:n +ZFA:0009296 perijunctional fibroblast semapv:crossSpeciesExactMatch CL:0000688 semapv:UnspecifiedMatching 1:n +ZFA:0009296 perijunctional fibroblast semapv:crossSpeciesExactMatch TAO:0009296 semapv:UnspecifiedMatching 1:n +ZFA:0009297 stellate interneuron semapv:crossSpeciesExactMatch CL:0000691 semapv:UnspecifiedMatching 1:n +ZFA:0009297 stellate interneuron semapv:crossSpeciesExactMatch TAO:0009297 semapv:UnspecifiedMatching 1:n +ZFA:0009298 terminal Schwann cell semapv:crossSpeciesExactMatch CL:0000692 semapv:UnspecifiedMatching 1:n +ZFA:0009298 terminal Schwann cell semapv:crossSpeciesExactMatch TAO:0009298 semapv:UnspecifiedMatching 1:n +ZFA:0009299 neuroglioform cell semapv:crossSpeciesExactMatch CL:0000693 semapv:UnspecifiedMatching 1:n +ZFA:0009299 neuroglioform cell semapv:crossSpeciesExactMatch TAO:0009299 semapv:UnspecifiedMatching 1:n +ZFA:0009300 Cajal-Retzius cell semapv:crossSpeciesExactMatch CL:0000695 semapv:UnspecifiedMatching 1:n +ZFA:0009300 Cajal-Retzius cell semapv:crossSpeciesExactMatch TAO:0009300 semapv:UnspecifiedMatching 1:n +ZFA:0009301 dopaminergic neuron semapv:crossSpeciesExactMatch CL:0000700 semapv:UnspecifiedMatching 1:n +ZFA:0009301 dopaminergic neuron semapv:crossSpeciesExactMatch TAO:0009301 semapv:UnspecifiedMatching 1:n +ZFA:0009302 sustentacular cell semapv:crossSpeciesExactMatch CL:0000703 semapv:UnspecifiedMatching 1:n +ZFA:0009302 sustentacular cell semapv:crossSpeciesExactMatch TAO:0009302 semapv:UnspecifiedMatching 1:n +ZFA:0009303 endothelial tip cell semapv:crossSpeciesExactMatch CL:0000704 semapv:UnspecifiedMatching 1:n +ZFA:0009303 endothelial tip cell semapv:crossSpeciesExactMatch TAO:0009303 semapv:UnspecifiedMatching 1:n +ZFA:0009304 choroid plexus epithelial cell semapv:crossSpeciesExactMatch CL:0000706 semapv:UnspecifiedMatching 1:n +ZFA:0009304 choroid plexus epithelial cell semapv:crossSpeciesExactMatch TAO:0009304 semapv:UnspecifiedMatching 1:n +ZFA:0009305 leptomeningeal cell semapv:crossSpeciesExactMatch CL:0000708 semapv:UnspecifiedMatching 1:n +ZFA:0009305 leptomeningeal cell semapv:crossSpeciesExactMatch TAO:0009305 semapv:UnspecifiedMatching 1:n +ZFA:0009306 neuroepithelial cell semapv:crossSpeciesExactMatch TAO:0009306 semapv:UnspecifiedMatching 1:n +ZFA:0009307 somatic stem cell semapv:crossSpeciesExactMatch CL:0000723 semapv:UnspecifiedMatching 1:n +ZFA:0009307 somatic stem cell semapv:crossSpeciesExactMatch TAO:0009307 semapv:UnspecifiedMatching 1:n +ZFA:0009308 urothelial cell semapv:crossSpeciesExactMatch CL:0000731 semapv:UnspecifiedMatching 1:n +ZFA:0009308 urothelial cell semapv:crossSpeciesExactMatch TAO:0009308 semapv:UnspecifiedMatching 1:n +ZFA:0009309 leukocyte semapv:crossSpeciesExactMatch CL:0000738 semapv:UnspecifiedMatching 1:n +ZFA:0009309 leukocyte semapv:crossSpeciesExactMatch TAO:0009309 semapv:UnspecifiedMatching 1:n +ZFA:0009310 retinal ganglion cell semapv:crossSpeciesExactMatch CL:0000740 semapv:UnspecifiedMatching 1:n +ZFA:0009310 retinal ganglion cell semapv:crossSpeciesExactMatch TAO:0009310 semapv:UnspecifiedMatching 1:n +ZFA:0009311 spinal accessory motor neuron semapv:crossSpeciesExactMatch CL:0000741 semapv:UnspecifiedMatching 1:n +ZFA:0009311 spinal accessory motor neuron semapv:crossSpeciesExactMatch TAO:0009311 semapv:UnspecifiedMatching 1:n +ZFA:0009312 periarticular chondrocyte semapv:crossSpeciesExactMatch CL:0000742 semapv:UnspecifiedMatching 1:n +ZFA:0009312 periarticular chondrocyte semapv:crossSpeciesExactMatch TAO:0009312 semapv:UnspecifiedMatching 1:n +ZFA:0009313 hypertrophic chondrocyte semapv:crossSpeciesExactMatch CL:0000743 semapv:UnspecifiedMatching 1:n +ZFA:0009313 hypertrophic chondrocyte semapv:crossSpeciesExactMatch TAO:0009313 semapv:UnspecifiedMatching 1:n +ZFA:0009314 columnar chondrocyte semapv:crossSpeciesExactMatch CL:0000744 semapv:UnspecifiedMatching 1:n +ZFA:0009314 columnar chondrocyte semapv:crossSpeciesExactMatch TAO:0009314 semapv:UnspecifiedMatching 1:n +ZFA:0009315 horizontal cell semapv:crossSpeciesExactMatch CL:0000745 semapv:UnspecifiedMatching 1:n +ZFA:0009315 horizontal cell semapv:crossSpeciesExactMatch TAO:0009315 semapv:UnspecifiedMatching 1:n +ZFA:0009316 cardiac muscle cell semapv:crossSpeciesExactMatch CL:0000746 semapv:UnspecifiedMatching 1:n +ZFA:0009316 cardiac muscle cell semapv:crossSpeciesExactMatch TAO:0009316 semapv:UnspecifiedMatching 1:n +ZFA:0009317 cyanophore semapv:crossSpeciesExactMatch CL:0000747 semapv:UnspecifiedMatching 1:n +ZFA:0009317 cyanophore semapv:crossSpeciesExactMatch TAO:0009317 semapv:UnspecifiedMatching 1:n +ZFA:0009318 retinal bipolar neuron semapv:crossSpeciesExactMatch CL:0000748 semapv:UnspecifiedMatching 1:n +ZFA:0009318 retinal bipolar neuron semapv:crossSpeciesExactMatch TAO:0009318 semapv:UnspecifiedMatching 1:n +ZFA:0009319 ON-bipolar cell semapv:crossSpeciesExactMatch CL:0000749 semapv:UnspecifiedMatching 1:n +ZFA:0009319 ON-bipolar cell semapv:crossSpeciesExactMatch TAO:0009319 semapv:UnspecifiedMatching 1:n +ZFA:0009320 OFF-bipolar cell semapv:crossSpeciesExactMatch CL:0000750 semapv:UnspecifiedMatching 1:n +ZFA:0009320 OFF-bipolar cell semapv:crossSpeciesExactMatch TAO:0009320 semapv:UnspecifiedMatching 1:n +ZFA:0009321 rod bipolar cell semapv:crossSpeciesExactMatch CL:0000751 semapv:UnspecifiedMatching 1:n +ZFA:0009321 rod bipolar cell semapv:crossSpeciesExactMatch TAO:0009321 semapv:UnspecifiedMatching 1:n +ZFA:0009322 cone retinal bipolar cell semapv:crossSpeciesExactMatch CL:0000752 semapv:UnspecifiedMatching 1:n +ZFA:0009322 cone retinal bipolar cell semapv:crossSpeciesExactMatch TAO:0009322 semapv:UnspecifiedMatching 1:n +ZFA:0009323 thrombocyte semapv:crossSpeciesExactMatch CL:0000762 semapv:UnspecifiedMatching 1:n +ZFA:0009323 thrombocyte semapv:crossSpeciesExactMatch TAO:0009323 semapv:UnspecifiedMatching 1:n +ZFA:0009324 myeloid cell semapv:crossSpeciesExactMatch CL:0000763 semapv:UnspecifiedMatching 1:n +ZFA:0009324 myeloid cell semapv:crossSpeciesExactMatch TAO:0009324 semapv:UnspecifiedMatching 1:n +ZFA:0009325 erythroid lineage cell semapv:crossSpeciesExactMatch CL:0000764 semapv:UnspecifiedMatching 1:n +ZFA:0009325 erythroid lineage cell semapv:crossSpeciesExactMatch TAO:0009325 semapv:UnspecifiedMatching 1:n +ZFA:0009326 myeloid leukocyte semapv:crossSpeciesExactMatch CL:0000766 semapv:UnspecifiedMatching 1:n +ZFA:0009326 myeloid leukocyte semapv:crossSpeciesExactMatch TAO:0009326 semapv:UnspecifiedMatching 1:n +ZFA:0009327 neutrophil semapv:crossSpeciesExactMatch CL:0000775 semapv:UnspecifiedMatching 1:n +ZFA:0009327 neutrophil semapv:crossSpeciesExactMatch TAO:0009327 semapv:UnspecifiedMatching 1:n +ZFA:0009328 immature neutrophil semapv:crossSpeciesExactMatch CL:0000776 semapv:UnspecifiedMatching 1:n +ZFA:0009328 immature neutrophil semapv:crossSpeciesExactMatch TAO:0009328 semapv:UnspecifiedMatching 1:n +ZFA:0009329 mononuclear osteoclast semapv:crossSpeciesExactMatch CL:0000778 semapv:UnspecifiedMatching 1:n +ZFA:0009329 mononuclear osteoclast semapv:crossSpeciesExactMatch TAO:0009329 semapv:UnspecifiedMatching 1:n +ZFA:0009330 mononuclear odontoclast semapv:crossSpeciesExactMatch CL:0000781 semapv:UnspecifiedMatching 1:n +ZFA:0009330 mononuclear odontoclast semapv:crossSpeciesExactMatch TAO:0009330 semapv:UnspecifiedMatching 1:n +ZFA:0009331 mature B cell semapv:crossSpeciesExactMatch CL:0000785 semapv:UnspecifiedMatching 1:n +ZFA:0009331 mature B cell semapv:crossSpeciesExactMatch TAO:0009331 semapv:UnspecifiedMatching 1:n +ZFA:0009332 plasma cell semapv:crossSpeciesExactMatch CL:0000786 semapv:UnspecifiedMatching 1:n +ZFA:0009332 plasma cell semapv:crossSpeciesExactMatch TAO:0009332 semapv:UnspecifiedMatching 1:n +ZFA:0009333 memory B cell semapv:crossSpeciesExactMatch CL:0000787 semapv:UnspecifiedMatching 1:n +ZFA:0009333 memory B cell semapv:crossSpeciesExactMatch TAO:0009333 semapv:UnspecifiedMatching 1:n +ZFA:0009334 naive B cell semapv:crossSpeciesExactMatch CL:0000788 semapv:UnspecifiedMatching 1:n +ZFA:0009334 naive B cell semapv:crossSpeciesExactMatch TAO:0009334 semapv:UnspecifiedMatching 1:n +ZFA:0009335 alpha-beta T cell semapv:crossSpeciesExactMatch CL:0000789 semapv:UnspecifiedMatching 1:n +ZFA:0009335 alpha-beta T cell semapv:crossSpeciesExactMatch TAO:0009335 semapv:UnspecifiedMatching 1:n +ZFA:0009336 gamma-delta T cell semapv:crossSpeciesExactMatch CL:0000798 semapv:UnspecifiedMatching 1:n +ZFA:0009336 gamma-delta T cell semapv:crossSpeciesExactMatch TAO:0009336 semapv:UnspecifiedMatching 1:n +ZFA:0009337 immature gamma-delta T cell semapv:crossSpeciesExactMatch CL:0000799 semapv:UnspecifiedMatching 1:n +ZFA:0009337 immature gamma-delta T cell semapv:crossSpeciesExactMatch TAO:0009337 semapv:UnspecifiedMatching 1:n +ZFA:0009338 mature gamma-delta T cell semapv:crossSpeciesExactMatch CL:0000800 semapv:UnspecifiedMatching 1:n +ZFA:0009338 mature gamma-delta T cell semapv:crossSpeciesExactMatch TAO:0009338 semapv:UnspecifiedMatching 1:n +ZFA:0009339 gamma-delta intraepithelial T cell semapv:crossSpeciesExactMatch CL:0000801 semapv:UnspecifiedMatching 1:n +ZFA:0009339 gamma-delta intraepithelial T cell semapv:crossSpeciesExactMatch TAO:0009339 semapv:UnspecifiedMatching 1:n +ZFA:0009342 memory T cell semapv:crossSpeciesExactMatch CL:0000813 semapv:UnspecifiedMatching 1:n +ZFA:0009342 memory T cell semapv:crossSpeciesExactMatch TAO:0009342 semapv:UnspecifiedMatching 1:n +ZFA:0009343 immature B cell semapv:crossSpeciesExactMatch CL:0000816 semapv:UnspecifiedMatching 1:n +ZFA:0009343 immature B cell semapv:crossSpeciesExactMatch TAO:0009343 semapv:UnspecifiedMatching 1:n +ZFA:0009344 precursor B cell semapv:crossSpeciesExactMatch CL:0000817 semapv:UnspecifiedMatching 1:n +ZFA:0009344 precursor B cell semapv:crossSpeciesExactMatch TAO:0009344 semapv:UnspecifiedMatching 1:n +ZFA:0009345 transitional stage B cell semapv:crossSpeciesExactMatch CL:0000818 semapv:UnspecifiedMatching 1:n +ZFA:0009345 transitional stage B cell semapv:crossSpeciesExactMatch TAO:0009345 semapv:UnspecifiedMatching 1:n +ZFA:0009346 immature natural killer cell semapv:crossSpeciesExactMatch CL:0000823 semapv:UnspecifiedMatching 1:n +ZFA:0009346 immature natural killer cell semapv:crossSpeciesExactMatch TAO:0009346 semapv:UnspecifiedMatching 1:n +ZFA:0009347 mature natural killer cell semapv:crossSpeciesExactMatch CL:0000824 semapv:UnspecifiedMatching 1:n +ZFA:0009347 mature natural killer cell semapv:crossSpeciesExactMatch TAO:0009347 semapv:UnspecifiedMatching 1:n +ZFA:0009348 pro-NK cell semapv:crossSpeciesExactMatch CL:0000825 semapv:UnspecifiedMatching 1:n +ZFA:0009348 pro-NK cell semapv:crossSpeciesExactMatch TAO:0009348 semapv:UnspecifiedMatching 1:n +ZFA:0009349 pro-B cell semapv:crossSpeciesExactMatch CL:0000826 semapv:UnspecifiedMatching 1:n +ZFA:0009349 pro-B cell semapv:crossSpeciesExactMatch TAO:0009349 semapv:UnspecifiedMatching 1:n +ZFA:0009350 pro-T cell semapv:crossSpeciesExactMatch CL:0000827 semapv:UnspecifiedMatching 1:n +ZFA:0009350 pro-T cell semapv:crossSpeciesExactMatch TAO:0009350 semapv:UnspecifiedMatching 1:n +ZFA:0009351 thromboblast semapv:crossSpeciesExactMatch CL:0000828 semapv:UnspecifiedMatching 1:n +ZFA:0009351 thromboblast semapv:crossSpeciesExactMatch TAO:0009351 semapv:UnspecifiedMatching 1:n +ZFA:0009352 neutrophil progenitor cell semapv:crossSpeciesExactMatch CL:0000834 semapv:UnspecifiedMatching 1:n +ZFA:0009352 neutrophil progenitor cell semapv:crossSpeciesExactMatch TAO:0009352 semapv:UnspecifiedMatching 1:n +ZFA:0009353 myeloblast semapv:crossSpeciesExactMatch CL:0000835 semapv:UnspecifiedMatching 1:n +ZFA:0009353 myeloblast semapv:crossSpeciesExactMatch TAO:0009353 semapv:UnspecifiedMatching 1:n +ZFA:0009354 hematopoietic multipotent progenitor cell semapv:crossSpeciesExactMatch CL:0000837 semapv:UnspecifiedMatching 1:n +ZFA:0009354 hematopoietic multipotent progenitor cell semapv:crossSpeciesExactMatch TAO:0009354 semapv:UnspecifiedMatching 1:n +ZFA:0009355 lymphoid progenitor cell semapv:crossSpeciesExactMatch CL:0000838 semapv:UnspecifiedMatching 1:n +ZFA:0009355 lymphoid progenitor cell semapv:crossSpeciesExactMatch TAO:0009355 semapv:UnspecifiedMatching 1:n +ZFA:0009356 myeloid lineage restricted progenitor cell semapv:crossSpeciesExactMatch CL:0000839 semapv:UnspecifiedMatching 1:n +ZFA:0009356 myeloid lineage restricted progenitor cell semapv:crossSpeciesExactMatch TAO:0009356 semapv:UnspecifiedMatching 1:n +ZFA:0009357 mononuclear cell semapv:crossSpeciesExactMatch CL:0000842 semapv:UnspecifiedMatching 1:n +ZFA:0009357 mononuclear cell semapv:crossSpeciesExactMatch TAO:0009357 semapv:UnspecifiedMatching 1:n +ZFA:0009358 ciliated olfactory receptor neuron semapv:crossSpeciesExactMatch CL:0000847 semapv:UnspecifiedMatching 1:n +ZFA:0009358 ciliated olfactory receptor neuron semapv:crossSpeciesExactMatch TAO:0009358 semapv:UnspecifiedMatching 1:n +ZFA:0009359 microvillous olfactory receptor neuron semapv:crossSpeciesExactMatch CL:0000848 semapv:UnspecifiedMatching 1:n +ZFA:0009359 microvillous olfactory receptor neuron semapv:crossSpeciesExactMatch TAO:0009359 semapv:UnspecifiedMatching 1:n +ZFA:0009360 crypt olfactory receptor neuron semapv:crossSpeciesExactMatch CL:0000849 semapv:UnspecifiedMatching 1:n +ZFA:0009360 crypt olfactory receptor neuron semapv:crossSpeciesExactMatch TAO:0009360 semapv:UnspecifiedMatching 1:n +ZFA:0009361 serotonergic neuron semapv:crossSpeciesExactMatch CL:0000850 semapv:UnspecifiedMatching 1:n +ZFA:0009361 serotonergic neuron semapv:crossSpeciesExactMatch TAO:0009192 semapv:UnspecifiedMatching 1:n +ZFA:0009361 serotonergic neuron semapv:crossSpeciesExactMatch TAO:0009361 semapv:UnspecifiedMatching 1:n +ZFA:0009362 neuromast mantle cell semapv:crossSpeciesExactMatch CL:0000851 semapv:UnspecifiedMatching 1:n +ZFA:0009362 neuromast mantle cell semapv:crossSpeciesExactMatch TAO:0009362 semapv:UnspecifiedMatching 1:n +ZFA:0009363 neuromast support cell semapv:crossSpeciesExactMatch CL:0000852 semapv:UnspecifiedMatching 1:n +ZFA:0009363 neuromast support cell semapv:crossSpeciesExactMatch TAO:0009363 semapv:UnspecifiedMatching 1:n +ZFA:0009364 olfactory epithelial support cell semapv:crossSpeciesExactMatch CL:0000853 semapv:UnspecifiedMatching 1:n +ZFA:0009364 olfactory epithelial support cell semapv:crossSpeciesExactMatch TAO:0009364 semapv:UnspecifiedMatching 1:n +ZFA:0009365 interneuromast cell semapv:crossSpeciesExactMatch CL:0000854 semapv:UnspecifiedMatching 1:n +ZFA:0009365 interneuromast cell semapv:crossSpeciesExactMatch TAO:0009365 semapv:UnspecifiedMatching 1:n +ZFA:0009366 hair cell semapv:crossSpeciesExactMatch CL:0000855 semapv:UnspecifiedMatching 1:n +ZFA:0009366 hair cell semapv:crossSpeciesExactMatch TAO:0009366 semapv:UnspecifiedMatching 1:n +ZFA:0009367 neuromast hair cell semapv:crossSpeciesExactMatch CL:0000856 semapv:UnspecifiedMatching 1:n +ZFA:0009367 neuromast hair cell semapv:crossSpeciesExactMatch TAO:0009367 semapv:UnspecifiedMatching 1:n +ZFA:0009368 slow muscle myoblast semapv:crossSpeciesExactMatch CL:0000857 semapv:UnspecifiedMatching 1:n +ZFA:0009368 slow muscle myoblast semapv:crossSpeciesExactMatch TAO:0009368 semapv:UnspecifiedMatching 1:n +ZFA:0009369 fast muscle myoblast semapv:crossSpeciesExactMatch CL:0000858 semapv:UnspecifiedMatching 1:n +ZFA:0009369 fast muscle myoblast semapv:crossSpeciesExactMatch TAO:0009369 semapv:UnspecifiedMatching 1:n +ZFA:0009370 stretch receptor cell semapv:crossSpeciesExactMatch CL:1000082 semapv:UnspecifiedMatching 1:n +ZFA:0009370 stretch receptor cell semapv:crossSpeciesExactMatch TAO:0009370 semapv:UnspecifiedMatching 1:n +ZFA:0009371 stratified keratinized epithelial stem cell semapv:crossSpeciesExactMatch CL:1000083 semapv:UnspecifiedMatching 1:n +ZFA:0009371 stratified keratinized epithelial stem cell semapv:crossSpeciesExactMatch TAO:0009371 semapv:UnspecifiedMatching 1:n +ZFA:0009372 duct epithelial cell semapv:crossSpeciesExactMatch CL:0000068 semapv:UnspecifiedMatching 1:1 +ZFA:0009374 kidney epithelial cell semapv:crossSpeciesExactMatch CL:0002518 semapv:UnspecifiedMatching 1:1 +ZFA:0009375 renal intercalated cell semapv:crossSpeciesExactMatch CL:0005010 semapv:UnspecifiedMatching 1:1 +ZFA:0009376 renal alpha-intercalated cell semapv:crossSpeciesExactMatch CL:0005011 semapv:UnspecifiedMatching 1:1 +ZFA:0009379 intrahepatic bile duct epithelial cell semapv:crossSpeciesExactMatch CL:0002538 semapv:UnspecifiedMatching 1:1 +ZFA:0009380 pancreatic ductal cell semapv:crossSpeciesExactMatch CL:0002079 semapv:UnspecifiedMatching 1:1 +ZFA:0009383 endo-epithelial cell semapv:crossSpeciesExactMatch CL:0002076 semapv:UnspecifiedMatching 1:1 +ZFA:0009385 ecto-epithelial cell semapv:crossSpeciesExactMatch CL:0002077 semapv:UnspecifiedMatching 1:1 +ZFA:0009386 somatic cell semapv:crossSpeciesExactMatch CL:0002371 semapv:UnspecifiedMatching 1:1 +ZFA:0009387 supportive cell semapv:crossSpeciesExactMatch CL:0000630 semapv:UnspecifiedMatching 1:1 +ZFA:0009388 meso-epithelial cell semapv:crossSpeciesExactMatch CL:0002078 semapv:UnspecifiedMatching 1:1 +ZFA:0009389 kidney cell semapv:crossSpeciesExactMatch CL:1000497 semapv:UnspecifiedMatching 1:1 +ZFA:0009390 kidney interstitial cell semapv:crossSpeciesExactMatch CL:1000500 semapv:UnspecifiedMatching 1:1 +ZFA:0009391 kidney medulla cell semapv:crossSpeciesExactMatch CL:1000504 semapv:UnspecifiedMatching 1:1 +ZFA:0009392 connective tissue cell semapv:crossSpeciesExactMatch CL:0002320 semapv:UnspecifiedMatching 1:1 +ZFA:0009393 lymphangioblast semapv:crossSpeciesExactMatch CL:0005020 semapv:UnspecifiedMatching 1:1 +ZFA:0009394 mesenchymal lymphangioblast semapv:crossSpeciesExactMatch CL:0005021 semapv:UnspecifiedMatching 1:1 +ZFA:0009395 vascular lymphangioblast semapv:crossSpeciesExactMatch CL:0005022 semapv:UnspecifiedMatching 1:1 +ZFA:0009396 glycinergic neuron semapv:crossSpeciesExactMatch CL:1001509 semapv:UnspecifiedMatching 1:1 +ZFA:0009397 cholangiocyte semapv:crossSpeciesExactMatch CL:1000488 semapv:UnspecifiedMatching 1:1 +ZFA:0009399 intestinal epithelial cell semapv:crossSpeciesExactMatch CL:0002563 semapv:UnspecifiedMatching 1:1 +ZFA:0009400 epithelial cell of esophagus semapv:crossSpeciesExactMatch CL:0002252 semapv:UnspecifiedMatching 1:1 +ZFA:0009401 lens fiber cell semapv:crossSpeciesExactMatch CL:0011004 semapv:UnspecifiedMatching 1:1 +ZFA:0009402 heart valve cell semapv:crossSpeciesExactMatch CL:1000147 semapv:UnspecifiedMatching 1:1 From eb1e9c694d429799bafd6fa9de82db51ce3b499b Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Tue, 14 Nov 2023 15:51:30 +0000 Subject: [PATCH 43/45] Update the documentation on bridges. Mention the 'refresh-bridges' Make target in the documentation about bridges, and the fact that it should be invoked explicitly by maintainers. --- docs/bridges.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/bridges.md b/docs/bridges.md index aa216f4c4a..8e3bd8592a 100644 --- a/docs/bridges.md +++ b/docs/bridges.md @@ -190,9 +190,9 @@ i| `uberon-bridge-to-sctid.owl` | SNOMED CT (SCTID) | SCTID xrefs in Uberon | This section is a (very) brief overview of the pipeline that generates the bridge files. -The pipeline may be triggered by invoking the Make target `tmp/bridges` -(whilst in the in `src/ontology` directory, where the Makefile is -located). Here is what happens then: +The pipeline may be triggered by invoking the Make target +`refresh-bridges` (whilst in the in `src/ontology` directory, where the +Makefile is located). Here is what happens then: 1. Production of a SSSOM mapping set from the Uberon and CL cross-references. The Uberon `-edit` file is merged with the mirrored @@ -223,3 +223,13 @@ located). Here is what happens then: will be written to the `uberon-bridge-to-zfa.owl` bridge file). 7. Fetching the custom bridges. Independently of all the previous steps, the “custom” bridges are fetched from their upstream source. + +Note that steps 2, 3, and 7 only happen when the Make variable `IMP` is +set to `true` (which is always the case when the pipeline is explicitly +triggered with `make refresh-bridges`). When `IMP` is set to `false`, +the bridge files are re-generated using only locally available resources +previously committed to the repository. + +Uberon maintainers should run `make refresh-bridges` periodically to +refresh external resources and commit refreshed versions to the +repository, similarly to what is needed to refresh the imports. From d3918d84cba2b14541a9a9e0c01261b6162d82a8 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 15 Nov 2023 10:57:36 +0000 Subject: [PATCH 44/45] Add a 'refresh-external-resources' target. Add a convenience target to refresh the imports and the bridges at the same time. That target could later be expanded to refresh any other external resources if needed. --- src/ontology/uberon.Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index ace5dc717d..92362eac99 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1483,7 +1483,7 @@ clean_uberon: clean: clean_uberon -# Helper commands for refreshing mapping sets and bridges +# Helper commands for refreshing external resources # ---------------------------------------- .PHONY: refresh-mappings @@ -1494,6 +1494,10 @@ refresh-mappings: refresh-bridges: $(MAKE) MIR=true IMP=true BRI=true tmp/bridges +.PHONY: refresh-external-resources +refresh-external-resources: + $(MAKE) MIR=true IMP=true BRI=true PAT=false IMP_LARGE=true all_imports tmp/bridges + # ---------------------------------------- # PURGATORY From 9fcb0e403625896a7f845246a405d6caac0cabc7 Mon Sep 17 00:00:00 2001 From: Damien Goutte-Gattat Date: Wed, 15 Nov 2023 12:41:27 +0000 Subject: [PATCH 45/45] Update the MBA/DMBA bridges. The bridges to MBA and DMBA are now maintained in a new location, so we update the downloading URLs. We also remove the old OBO versions of those bridges. --- src/ontology/bridge/uberon-bridge-to-dmba.obo | 3666 -- src/ontology/bridge/uberon-bridge-to-dmba.owl | 22744 +++++----- src/ontology/bridge/uberon-bridge-to-mba.obo | 7361 --- src/ontology/bridge/uberon-bridge-to-mba.owl | 37056 ++++++++-------- src/ontology/uberon.Makefile | 11 +- 5 files changed, 29902 insertions(+), 40936 deletions(-) delete mode 100644 src/ontology/bridge/uberon-bridge-to-dmba.obo delete mode 100644 src/ontology/bridge/uberon-bridge-to-mba.obo diff --git a/src/ontology/bridge/uberon-bridge-to-dmba.obo b/src/ontology/bridge/uberon-bridge-to-dmba.obo deleted file mode 100644 index ebbfaf7dfd..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-dmba.obo +++ /dev/null @@ -1,3666 +0,0 @@ -format-version: 1.2 -ontology: uberon/bridge/uberon-bridge-to-dmba - -[Term] -id: DMBA:112892315 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002043 -property_value: IAO:0000589 "lateral wings of the dorsal raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126651562 -intersection_of: UBERON:0002285 {name="telencephalic ventricle"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="telencephalic ventricle"} -property_value: IAO:0000589 "ventricles, forebrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126651566 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0036218 -property_value: IAO:0000589 "ventricles, secondary prosencephalon" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126651570 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0036218 -property_value: IAO:0000589 "ventricles, rostral secondary prosencephalon" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126651602 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0036218 -property_value: IAO:0000589 "ventricles, caudal secondary prosencephalon" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126651722 -intersection_of: UBERON:0002289 {name="midbrain cerebral aqueduct"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="midbrain cerebral aqueduct"} -property_value: IAO:0000589 "ventricles, midbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126651726 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0019272 -property_value: IAO:0000589 "ventricles, mesomere 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126651754 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0019274 -property_value: IAO:0000589 "ventricles, mesomere 2 (preisthmus or caudal midbrain)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126651782 -intersection_of: UBERON:0002422 {name="fourth ventricle"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="fourth ventricle"} -property_value: IAO:0000589 "ventricles, hindbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:126652042 -intersection_of: UBERON:0002291 {name="central canal of spinal cord"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="central canal of spinal cord"} -property_value: IAO:0000589 "ventricles, spinal cord" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:127201621 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002127 -property_value: IAO:0000589 "r11 part of the inferior olive" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15565 -intersection_of: UBERON:0003075 {name="neural plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="neural plate"} -property_value: IAO:0000589 "neural plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15566 -intersection_of: UBERON:0001890 {name="forebrain"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="forebrain"} -property_value: IAO:0000589 "forebrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15567 -intersection_of: UBERON:0036218 {name="secondary prosencephalon"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="secondary prosencephalon"} -property_value: IAO:0000589 "secondary prosencephalon" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15577 -intersection_of: UBERON:0001928 {name="preoptic area"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="preoptic area"} -property_value: IAO:0000589 "preoptic area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15582 -intersection_of: UBERON:0002689 {name="supraoptic crest"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="supraoptic crest"} -property_value: IAO:0000589 "vascular organ of the lamina terminalis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15604 -intersection_of: UBERON:0002035 {name="medial preoptic nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial preoptic nucleus"} -property_value: IAO:0000589 "medial preoptic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15612 -intersection_of: UBERON:8440014 {name="ventrolateral preoptic nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventrolateral preoptic nucleus"} -property_value: IAO:0000589 "ventrolateral preoptic nucleus" xsd:string -property_value: status "Curated" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: DMBA:15633 -intersection_of: UBERON:0001929 {name="supraoptic nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="supraoptic nucleus"} -property_value: IAO:0000589 "supraoptic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15652 -intersection_of: UBERON:0001793 {name="nerve fiber layer of retina"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="nerve fiber layer of retina"} -property_value: IAO:0000589 "optic fiber layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15660 -intersection_of: UBERON:0002034 {name="suprachiasmatic nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="suprachiasmatic nucleus"} -property_value: IAO:0000589 "suprachiasmatic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15662 -intersection_of: UBERON:0002634 {name="anterior nucleus of hypothalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anterior nucleus of hypothalamus"} -property_value: IAO:0000589 "anterior hypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15665 -intersection_of: UBERON:0002620 {name="tuber cinereum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="tuber cinereum"} -property_value: IAO:0000589 "tuber cinereum area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15675 -intersection_of: UBERON:0001935 {name="ventromedial nucleus of hypothalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventromedial nucleus of hypothalamus"} -property_value: IAO:0000589 "ventromedial hypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15689 -intersection_of: UBERON:0002197 {name="median eminence of neurohypophysis"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="median eminence of neurohypophysis"} -property_value: IAO:0000589 "median eminence" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15690 -intersection_of: UBERON:0002434 {name="pituitary stalk"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pituitary stalk"} -property_value: IAO:0000589 "infundibulum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15691 -intersection_of: UBERON:0002198 {name="neurohypophysis"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="neurohypophysis"} -property_value: IAO:0000589 "neurohypophysis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15719 -intersection_of: UBERON:0007767 {name="dorsal premammillary nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dorsal premammillary nucleus"} -property_value: IAO:0000589 "dorsal premammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15723 -intersection_of: UBERON:0002206 {name="mammillary body"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="mammillary body"} -property_value: IAO:0000589 "mammillary area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15729 -intersection_of: UBERON:0001939 {name="medial mammillary nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial mammillary nucleus"} -property_value: IAO:0000589 "medial mammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15730 -intersection_of: UBERON:0002632 {name="medial part of medial mammillary nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial part of medial mammillary nucleus"} -property_value: IAO:0000589 "medial part of MM" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15731 -intersection_of: UBERON:0002664 {name="lateral part of medial mammillary nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral part of medial mammillary nucleus"} -property_value: IAO:0000589 "lateral part of MM" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15734 -intersection_of: UBERON:0001938 {name="lateral mammillary nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral mammillary nucleus"} -property_value: IAO:0000589 "lateral mammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15743 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002219 -property_value: IAO:0000589 "subfornical organ, circumventricular ependymal specialization" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15746 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002219 -property_value: IAO:0000589 "subfornical organ, periventricular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15751 -intersection_of: UBERON:0000204 {name="ventral part of telencephalon"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral part of telencephalon"} -property_value: IAO:0000589 "subpallium" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15757 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15760 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, intermedio-ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15761 -intersection_of: UBERON:0019308 {name="septohypothalamic nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="septohypothalamic nucleus"} -property_value: IAO:0000589 "septohypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15763 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001879 -property_value: IAO:0000589 "vertical nucleus of the diagonal band" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15764 -intersection_of: UBERON:0001877 {name="medial septal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial septal nucleus"} -property_value: IAO:0000589 "medial septal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15769 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, intermediate part, periventricular" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15771 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, intermedio-intermediate part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15778 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15779 -intersection_of: UBERON:0002977 {name="triangular septal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="triangular septal nucleus"} -property_value: IAO:0000589 "triangular septal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15780 -intersection_of: UBERON:0001878 {name="septofimbrial nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="septofimbrial nucleus"} -property_value: IAO:0000589 "septofimbrial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15782 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, intermedio-dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15789 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nucleus of the stria terminalis, medioseptal division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15790 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "nucleus of the stria terminalis, medial division, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15791 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "nucleus of the stria terminalis, medial division, anterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15793 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003017 -property_value: IAO:0000589 "substantia innominata/basal nucleus, transitional part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15794 -intersection_of: UBERON:0002933 {name="nucleus of anterior commissure"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="nucleus of anterior commissure"} -property_value: IAO:0000589 "bed nucleus of the anterior commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15796 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001879 -property_value: IAO:0000589 "horizontal nucleus of the diagonal band, transitional part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15801 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nucleus of the stria terminalis, lateroseptal division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15802 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "nucleus of the stria terminalis, lateral division, intermediate part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15807 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001883 -property_value: IAO:0000589 "septopallidal part of the olfactory tuberculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15808 -intersection_of: UBERON:0023868 {name="isla magna of Calleja"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="isla magna of Calleja"} -property_value: IAO:0000589 "island of Calleja major" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15813 -intersection_of: UBERON:0012170 {name="core of nucleus accumbens"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="core of nucleus accumbens"} -property_value: IAO:0000589 "accumbens nucleus, core domain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15815 -intersection_of: UBERON:0012171 {name="shell of nucleus accumbens"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="shell of nucleus accumbens"} -property_value: IAO:0000589 "accumbens nucleus, shell domain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15817 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001883 -property_value: IAO:0000589 "septostriatal part of the olfactory tuberculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15818 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002420 -property_value: IAO:0000589 "central subpallium (classic basal ganglia)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15823 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nucleus of the stria terminalis, mediocentral division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15829 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003017 -property_value: IAO:0000589 "substantia innominata/basal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15830 -intersection_of: UBERON:0002477 {name="medial globus pallidus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial globus pallidus"} -property_value: IAO:0000589 "internal globus pallidus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15832 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001879 -property_value: IAO:0000589 "horizontal nucleus of the diagonal band" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15833 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001879 -property_value: IAO:0000589 "magnocellular diagonal band nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15834 -intersection_of: UBERON:0006514 {name="pallidum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pallidum"} -property_value: IAO:0000589 "pallidum (globus pallidus complex)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15838 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nucleus of the stria terminalis, laterocentral division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15843 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006514 -property_value: IAO:0000589 "external globus pallidum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15844 -intersection_of: UBERON:0002778 {name="ventral pallidum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral pallidum"} -property_value: IAO:0000589 "ventral pallidum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15846 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001883 -property_value: IAO:0000589 "pallidal part of olfactory tuberculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15850 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001881 -property_value: IAO:0000589 "pallidal islands of Calleja" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15851 -intersection_of: UBERON:0002435 {name="striatum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="striatum"} -property_value: IAO:0000589 "striatum (corpus striatum)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15855 -intersection_of: UBERON:0001873 {name="caudate nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="caudate nucleus"} -property_value: IAO:0000589 "caudate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15857 -intersection_of: UBERON:0001874 {name="putamen"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="putamen"} -property_value: IAO:0000589 "putamen" xsd:string -property_value: IAO:0000589 "putamen " xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15858 -intersection_of: UBERON:0005403 {name="ventral striatum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral striatum"} -property_value: IAO:0000589 "ventral striatum" xsd:string -property_value: IAO:0000589 "ventral striatum " xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15862 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001883 -property_value: IAO:0000589 "striatal part of olfactory tuberculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15866 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001881 -property_value: IAO:0000589 "striatal islands of Calleja" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15874 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002883 -property_value: IAO:0000589 "central amygdalar nucleus, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15875 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002883 -property_value: IAO:0000589 "central amygdalar nucleus, capsular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15876 -intersection_of: UBERON:0002884 {name="intercalated amygdaloid nuclei"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="intercalated amygdaloid nuclei"} -property_value: IAO:0000589 "intercalated amygdaloid nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15882 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nucleus of stria terminalis, lateral amygdaloid division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15884 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002883 -property_value: IAO:0000589 "central amygdaloid nucleus, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15890 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nucleus of the stria terminalis, medial amygdaloid division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15899 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdala, posterodorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15900 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdala, posteroventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15901 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdala, anterodorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15902 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdala, anteroventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15903 -intersection_of: UBERON:0000203 {name="pallium"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pallium"} -property_value: IAO:0000589 "pallium" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15904 -intersection_of: UBERON:0014913 {name="ventral pallium"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral pallium"} -property_value: IAO:0000589 "ventral pallium" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15905 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002264 -property_value: IAO:0000589 "olfactory bulb, principal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15909 -intersection_of: UBERON:0005378 {name="olfactory bulb granule cell layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="olfactory bulb granule cell layer"} -property_value: IAO:0000589 "OB granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15910 -intersection_of: UBERON:0005379 {name="olfactory bulb internal plexiform layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="olfactory bulb internal plexiform layer"} -property_value: IAO:0000589 "OB inner plexiform layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15912 -intersection_of: UBERON:0004186 {name="olfactory bulb mitral cell layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="olfactory bulb mitral cell layer"} -property_value: IAO:0000589 "OB mitral cell layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15913 -intersection_of: UBERON:0005376 {name="olfactory bulb external plexiform layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="olfactory bulb external plexiform layer"} -property_value: IAO:0000589 "OB outer plexiform layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15917 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory area, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15928 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002590 -property_value: IAO:0000589 "ventropallial prepiriform area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15933 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nucleus of the external capsule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15934 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014284 -property_value: IAO:0000589 "dorsal endopiriform nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15935 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014284 -property_value: IAO:0000589 "ventral endopiriform nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15940 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034989 -property_value: IAO:0000589 "ventropallial amygdalopiriform area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15944 -intersection_of: UBERON:0002886 {name="lateral amygdaloid nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral amygdaloid nucleus"} -property_value: IAO:0000589 "lateral amygdaloid nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15945 -intersection_of: UBERON:0034673 {name="amygdalohippocampal area"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="amygdalohippocampal area"} -property_value: IAO:0000589 "amygdalohippocampal area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15947 -intersection_of: UBERON:0002889 {name="medial part of basal amygdaloid nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial part of basal amygdaloid nucleus"} -property_value: IAO:0000589 "basomedial amygdaloid nucleus, anterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15948 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002889 -property_value: IAO:0000589 "basomedial amygdaloid nucleus, posterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15950 -intersection_of: UBERON:0035001 {name="posteromedial cortical amygdaloid nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="posteromedial cortical amygdaloid nucleus"} -property_value: IAO:0000589 "posteromedial cortical amygdaloid area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15951 -intersection_of: UBERON:0002893 {name="nucleus of lateral olfactory tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="nucleus of lateral olfactory tract"} -property_value: IAO:0000589 "nucleus of the lateral olfactory tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15955 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002893 -property_value: IAO:0000589 "nucleus of the accessory olfactory tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15956 -intersection_of: UBERON:0014741 {name="lateral pallium"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral pallium"} -property_value: IAO:0000589 "lateral pallium" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15957 -intersection_of: UBERON:0004069 {name="accessory olfactory bulb"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="accessory olfactory bulb"} -property_value: IAO:0000589 "accessory olfactory bulb" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15961 -intersection_of: UBERON:0015244 {name="accessory olfactory bulb granule cell layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="accessory olfactory bulb granule cell layer"} -property_value: IAO:0000589 "AOB, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15962 -intersection_of: UBERON:0019290 {name="accessory olfactory bulb internal plexiform layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="accessory olfactory bulb internal plexiform layer"} -property_value: IAO:0000589 "AOB, internal plexiform layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15964 -intersection_of: UBERON:0015432 {name="accessory olfactory bulb mitral cell layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="accessory olfactory bulb mitral cell layer"} -property_value: IAO:0000589 "AOB, mitral cell layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15965 -intersection_of: UBERON:0019289 {name="accessory olfactory bulb external plexiform layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="accessory olfactory bulb external plexiform layer"} -property_value: IAO:0000589 "AOB, outer plexiform layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15967 -intersection_of: UBERON:0007631 {name="accessory olfactory bulb glomerular layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="accessory olfactory bulb glomerular layer"} -property_value: IAO:0000589 "AOB, glomerular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15969 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory area, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15979 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002590 -property_value: IAO:0000589 "lateropallial prepiriform area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15984 -intersection_of: UBERON:0002023 {name="claustrum of brain"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="claustrum of brain"} -property_value: IAO:0000589 "claustrum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15989 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034989 -property_value: IAO:0000589 "lateropallial amygdalopiriform area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15994 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002887 -property_value: IAO:0000589 "basolateral amygdaloid nucleus, anterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15995 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002887 -property_value: IAO:0000589 "basolateral amygdaloid nucleus, posterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15996 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002887 -property_value: IAO:0000589 "basolateral amygdaloid nucleus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15998 -intersection_of: UBERON:0034989 {name="amygdalopiriform transition area"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="amygdalopiriform transition area"} -property_value: IAO:0000589 "amygdalopiriform area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:15999 -intersection_of: UBERON:0034999 {name="posterolateral cortical amygdaloid nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="posterolateral cortical amygdaloid nucleus"} -property_value: IAO:0000589 "posterolateral cortical amygdaloid area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16000 -intersection_of: UBERON:0034991 {name="anterior cortical amygdaloid nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anterior cortical amygdaloid nucleus"} -property_value: IAO:0000589 "anterior cortical amygdaloid area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16001 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001950 -property_value: IAO:0000589 "dorsal pallium/isocortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16002 -intersection_of: UBERON:0001870 {name="frontal cortex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="frontal cortex"} -property_value: IAO:0000589 "frontal cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16016 -intersection_of: UBERON:0016530 {name="parietal cortex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="parietal cortex"} -property_value: IAO:0000589 "parietal cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16030 -intersection_of: UBERON:0016540 {name="occipital cortex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="occipital cortex"} -property_value: IAO:0000589 "occipital cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16044 -intersection_of: UBERON:0016538 {name="temporal cortex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="temporal cortex"} -property_value: IAO:0000589 "temporal cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16058 -intersection_of: UBERON:0034891 {name="insular cortex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="insular cortex"} -property_value: IAO:0000589 "insular cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16072 -intersection_of: UBERON:0003027 {name="cingulate cortex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cingulate cortex"} -property_value: IAO:0000589 "cingulate cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16073 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "ventricular zone of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16074 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "mantle zone of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16075 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "periventricular stratum of CCx (subventricular zone)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16076 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "intermediate stratum of CCx (white matter/subplate)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16077 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "superficial stratum of CCx (cortical plate/marginal zone)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16078 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "layer 1 of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16079 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "layer 2 of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16080 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "layer 3 of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16081 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "layer 4 of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16082 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "layer 5 of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16083 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "layer 6 of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16084 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "sublayer 6a of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16085 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003027 -property_value: IAO:0000589 "sublayer 6b of CCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16093 -intersection_of: UBERON:0013531 {name="retrosplenial region"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="retrosplenial region"} -property_value: IAO:0000589 "retrosplenial cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16102 -intersection_of: UBERON:0002728 {name="entorhinal cortex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="entorhinal cortex"} -property_value: IAO:0000589 "entorhinal cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16114 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014734 -property_value: IAO:0000589 "medial pallium (hippocampal allocortex)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16115 -intersection_of: UBERON:0001885 {name="dentate gyrus of hippocampal formation"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dentate gyrus of hippocampal formation"} -property_value: IAO:0000589 "dentate gyrus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16122 -intersection_of: UBERON:0005381 {name="dentate gyrus granule cell layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dentate gyrus granule cell layer"} -property_value: IAO:0000589 "granule cell layer of the DG" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16123 -intersection_of: UBERON:0004679 {name="dentate gyrus molecular layer"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dentate gyrus molecular layer"} -property_value: IAO:0000589 "molecular layer of the DG" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16124 -intersection_of: UBERON:0001954 {name="Ammon's horn"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="Ammon's horn"} -property_value: IAO:0000589 "hippocampus (cortex Ammonis)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16126 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0005381 -property_value: IAO:0000589 "mantle zone of CA" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16131 -intersection_of: UBERON:0003881 {name="CA1 field of hippocampus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA1 field of hippocampus"} -property_value: IAO:0000589 "Field CA1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16132 -intersection_of: UBERON:0014552 {name="CA1 stratum oriens"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA1 stratum oriens"} -property_value: IAO:0000589 "Field CA1, stratum oriens" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16133 -intersection_of: UBERON:0014548 {name="pyramidal layer of CA1"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pyramidal layer of CA1"} -property_value: IAO:0000589 "Field CA1, stratum pyramidale" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16134 -intersection_of: UBERON:0014554 {name="CA1 stratum radiatum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA1 stratum radiatum"} -property_value: IAO:0000589 "Field CA1, stratum radiatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16135 -intersection_of: UBERON:0014557 {name="CA1 stratum lacunosum moleculare"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA1 stratum lacunosum moleculare"} -property_value: IAO:0000589 "Field CA1, stratum lacunosum-moleculare" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16136 -intersection_of: UBERON:0003882 {name="CA2 field of hippocampus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA2 field of hippocampus"} -property_value: IAO:0000589 "Field CA2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16137 -intersection_of: UBERON:0014558 {name="CA2 stratum lacunosum moleculare"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA2 stratum lacunosum moleculare"} -property_value: IAO:0000589 "Field CA2, stratum lacunosum-moleculare" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16138 -intersection_of: UBERON:0014551 {name="CA2 stratum oriens"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA2 stratum oriens"} -property_value: IAO:0000589 "Field CA2, stratum oriens" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16139 -intersection_of: UBERON:0014549 {name="pyramidal layer of CA2"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pyramidal layer of CA2"} -property_value: IAO:0000589 "Field CA2, stratum pyramidale" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16140 -intersection_of: UBERON:0014555 {name="CA2 stratum radiatum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA2 stratum radiatum"} -property_value: IAO:0000589 "Field CA2, stratum radiatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16141 -intersection_of: UBERON:0003883 {name="CA3 field of hippocampus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA3 field of hippocampus"} -property_value: IAO:0000589 "Field CA3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16142 -intersection_of: UBERON:0014553 {name="CA3 stratum oriens"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA3 stratum oriens"} -property_value: IAO:0000589 "Field CA3, stratum oriens" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16143 -intersection_of: UBERON:0014550 {name="pyramidal layer of CA3"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pyramidal layer of CA3"} -property_value: IAO:0000589 "Field CA3, stratum pyramidale" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16144 -intersection_of: UBERON:0014560 {name="CA3 stratum lucidum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA3 stratum lucidum"} -property_value: IAO:0000589 "Field CA3, stratum lucidum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16145 -intersection_of: UBERON:0014556 {name="CA3 stratum radiatum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA3 stratum radiatum"} -property_value: IAO:0000589 "Field CA3, stratum radiatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16146 -intersection_of: UBERON:0014559 {name="CA3 stratum lacunosum moleculare"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="CA3 stratum lacunosum moleculare"} -property_value: IAO:0000589 "Field CA3, stratum lacunosum-moleculare" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16147 -intersection_of: UBERON:0015793 {name="induseum griseum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="induseum griseum"} -property_value: IAO:0000589 "induseum griseum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16148 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015793 -property_value: IAO:0000589 "ventricular zone of the IG" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16150 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015793 -property_value: IAO:0000589 "periventricular stratum of the IG" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16151 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015793 -property_value: IAO:0000589 "intermediate stratum of the IG" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16152 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015793 -property_value: IAO:0000589 "superficial stratum of the IG" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16153 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015793 -property_value: IAO:0000589 "pyramidal layer of IG" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16154 -intersection_of: UBERON:0015800 {name="taenia tectum of brain"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="taenia tectum of brain"} -property_value: IAO:0000589 "taenia tecta" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16155 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "ventricular zone of TTe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16156 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "mantle zone of TTe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16157 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "periventricular stratum of TTe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16159 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "intermediate stratum of TTe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16161 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "superficial stratum of TTe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16162 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "pyramidal layer of taenia tecta" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16163 -intersection_of: UBERON:0002191 {name="subiculum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="subiculum"} -property_value: IAO:0000589 "subiculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16171 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "molecular layer of S" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16172 -intersection_of: UBERON:0001953 {name="presubiculum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="presubiculum"} -property_value: IAO:0000589 "presubiculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16186 -intersection_of: UBERON:0004683 {name="parasubiculum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="parasubiculum"} -property_value: IAO:0000589 "parasubiculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16204 -intersection_of: UBERON:0007630 {name="septohippocampal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="septohippocampal nucleus"} -property_value: IAO:0000589 "septohippocampal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16240 -intersection_of: UBERON:0014591 {name="anterior nucleus of hypothalamus posterior part"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anterior nucleus of hypothalamus posterior part"} -property_value: IAO:0000589 "posterior part of anterior hypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16308 -intersection_of: UBERON:0001894 {name="diencephalon"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="diencephalon"} -property_value: IAO:0000589 "diencephalon" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16341 -intersection_of: UBERON:0002480 {name="ventral lateral geniculate nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral lateral geniculate nucleus"} -property_value: IAO:0000589 "pregeniculate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16342 -intersection_of: UBERON:0002144 {name="peripeduncular nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="peripeduncular nucleus"} -property_value: IAO:0000589 "peripeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16376 -intersection_of: UBERON:0001897 {name="dorsal plus ventral thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dorsal plus ventral thalamus"} -property_value: IAO:0000589 "thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16388 -intersection_of: UBERON:0001942 {name="medial habenular nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial habenular nucleus"} -property_value: IAO:0000589 "medial habenular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16396 -intersection_of: UBERON:0004703 {name="dorsal thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dorsal thalamus"} -property_value: IAO:0000589 "dorsal tier of thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16400 -intersection_of: UBERON:0000434 {name="anterior paraventricular nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anterior paraventricular nucleus of thalamus"} -property_value: IAO:0000589 "anterior paraventricular nucleus of thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16402 -intersection_of: UBERON:0002972 {name="centromedian nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="centromedian nucleus of thalamus"} -property_value: IAO:0000589 "centromedian nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16405 -intersection_of: UBERON:0002955 {name="rhomboidal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhomboidal nucleus"} -property_value: IAO:0000589 "rhomboid nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16410 -intersection_of: UBERON:0002992 {name="paratenial nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="paratenial nucleus"} -property_value: IAO:0000589 "paratenial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16416 -intersection_of: UBERON:0001924 {name="paracentral nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="paracentral nucleus"} -property_value: IAO:0000589 "paracentral nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16418 -intersection_of: UBERON:0003036 {name="central lateral nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="central lateral nucleus"} -property_value: IAO:0000589 "central lateral nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16420 -intersection_of: UBERON:0002679 {name="anterodorsal nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anterodorsal nucleus of thalamus"} -property_value: IAO:0000589 "anterodorsal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16421 -intersection_of: UBERON:0002685 {name="anteroventral nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anteroventral nucleus of thalamus"} -property_value: IAO:0000589 "anteroventral nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16422 -intersection_of: UBERON:0002681 {name="anteromedial nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anteromedial nucleus of thalamus"} -property_value: IAO:0000589 "anteromedial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16423 -intersection_of: UBERON:0002776 {name="ventral nuclear group"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral nuclear group"} -property_value: IAO:0000589 "ventral nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16426 -intersection_of: UBERON:0003031 {name="submedial nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="submedial nucleus of thalamus"} -property_value: IAO:0000589 "submedius thalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16427 -intersection_of: UBERON:0002637 {name="ventral anterior nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral anterior nucleus of thalamus"} -property_value: IAO:0000589 "ventral anterior nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16428 -intersection_of: UBERON:0001925 {name="ventral lateral nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral lateral nucleus of thalamus"} -property_value: IAO:0000589 "ventral lateral nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16429 -intersection_of: UBERON:0002945 {name="ventral posteromedial nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral posteromedial nucleus of thalamus"} -property_value: IAO:0000589 "ventral posteromedial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16430 -intersection_of: UBERON:0002942 {name="ventral posterolateral nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral posterolateral nucleus"} -property_value: IAO:0000589 "ventral posterolateral nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16435 -intersection_of: UBERON:0002983 {name="lateral posterior nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral posterior nucleus of thalamus"} -property_value: IAO:0000589 "lateral posterior nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16436 -intersection_of: UBERON:0002479 {name="dorsal lateral geniculate nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dorsal lateral geniculate nucleus"} -property_value: IAO:0000589 "dorsal lateral geniculate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16441 -intersection_of: UBERON:0002708 {name="posterior periventricular nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="posterior periventricular nucleus"} -property_value: IAO:0000589 "posterior paraventricular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16442 -intersection_of: UBERON:0001922 {name="parafascicular nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="parafascicular nucleus"} -property_value: IAO:0000589 "parafascicular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16452 -intersection_of: UBERON:0003033 {name="suprageniculate nucleus of thalamus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="suprageniculate nucleus of thalamus"} -property_value: IAO:0000589 "suprageniculate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16462 -intersection_of: UBERON:0001927 {name="medial geniculate body"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial geniculate body"} -property_value: IAO:0000589 "medial geniculate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16510 -intersection_of: UBERON:0001944 {name="pretectal region"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pretectal region"} -property_value: IAO:0000589 "pretectum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16514 -intersection_of: UBERON:0002139 {name="subcommissural organ"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="subcommissural organ"} -property_value: IAO:0000589 "subcommissural organ" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16585 -intersection_of: UBERON:0034910 {name="medial pretectal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial pretectal nucleus"} -property_value: IAO:0000589 "medial pretectal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16586 -intersection_of: UBERON:0002572 {name="principal pretectal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="principal pretectal nucleus"} -property_value: IAO:0000589 "principal pretectal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16589 -intersection_of: UBERON:0002565 {name="olivary pretectal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="olivary pretectal nucleus"} -property_value: IAO:0000589 "olivary pretectal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16590 -intersection_of: UBERON:0013599 {name="dorsal accessory nucleus of optic tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dorsal accessory nucleus of optic tract"} -property_value: IAO:0000589 "dorsal terminal nucleus of the accessory optic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16598 -intersection_of: UBERON:0035562 {name="intermediate pretectal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="intermediate pretectal nucleus"} -property_value: IAO:0000589 "intermediate pretectal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16629 -intersection_of: UBERON:0002044 {name="ventral nucleus of posterior commissure"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral nucleus of posterior commissure"} -property_value: IAO:0000589 "nucleus of Darkschewitsch" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16633 -intersection_of: UBERON:0002938 {name="parvocellular part of red nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="parvocellular part of red nucleus"} -property_value: IAO:0000589 "red nucleus, parvicellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16649 -intersection_of: UBERON:0001891 {name="midbrain"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="midbrain"} -property_value: IAO:0000589 "midbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16650 -intersection_of: UBERON:0019272 {name="mesomere 1"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="mesomere 1"} -property_value: IAO:0000589 "mesomere 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16678 -intersection_of: UBERON:0001945 {name="superior colliculus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="superior colliculus"} -property_value: IAO:0000589 "colliculus superior" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16692 -intersection_of: UBERON:0001946 {name="inferior colliculus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="inferior colliculus"} -property_value: IAO:0000589 "inferior colliculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16698 -intersection_of: UBERON:0002563 {name="central nucleus of inferior colliculus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="central nucleus of inferior colliculus"} -property_value: IAO:0000589 "central nucleus of the inferior colliculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16737 -intersection_of: UBERON:0002936 {name="magnocellular part of red nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="magnocellular part of red nucleus"} -property_value: IAO:0000589 "red nucleus, magnocellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16748 -intersection_of: UBERON:0013734 {name="rostral linear nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rostral linear nucleus"} -property_value: IAO:0000589 "rostral linear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16751 -intersection_of: UBERON:0019274 {name="mesomere 2"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="mesomere 2"} -property_value: IAO:0000589 "mesomere 2 (preisthmus or caudal midbrain)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16777 -intersection_of: UBERON:0002696 {name="cuneiform nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cuneiform nucleus"} -property_value: IAO:0000589 "cuneiform nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16787 -intersection_of: UBERON:0002700 {name="subcuneiform nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="subcuneiform nucleus"} -property_value: IAO:0000589 "subcuneiform nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16808 -intersection_of: UBERON:0002028 {name="hindbrain"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="hindbrain"} -property_value: IAO:0000589 "hindbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16809 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002028 -property_value: IAO:0000589 "prepontine hindbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16810 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003052 -property_value: IAO:0000589 "isthmus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16814 -intersection_of: UBERON:0004720 {name="cerebellar vermis"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellar vermis"} -property_value: IAO:0000589 "cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16815 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004720 -property_value: IAO:0000589 "rhombic lip of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16817 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004720 -property_value: IAO:0000589 "ventricular zone of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16818 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004720 -property_value: IAO:0000589 "mantle zone of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16819 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004720 -property_value: IAO:0000589 "periventricular stratum of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16820 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002317 -property_value: IAO:0000589 "white matter of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16821 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004720 -property_value: IAO:0000589 "intermediate stratum of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16822 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002130 -property_value: IAO:0000589 "cerebellar nuclei of CbV" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16823 -intersection_of: UBERON:0002153 {name="fastigial nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="fastigial nucleus"} -property_value: IAO:0000589 "medial (fastigial) cerebellar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16828 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004720 -property_value: IAO:0000589 "superficial stratum of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16829 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004720 -property_value: IAO:0000589 "cortex of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16830 -intersection_of: UBERON:0004074 {name="cerebellum vermis lobule I"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule I"} -property_value: IAO:0000589 "lobule 1 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16831 -intersection_of: UBERON:0004075 {name="cerebellum vermis lobule II"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule II"} -property_value: IAO:0000589 "lobule 2 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16832 -intersection_of: UBERON:0004076 {name="cerebellum vermis lobule III"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule III"} -property_value: IAO:0000589 "lobule 3 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16833 -intersection_of: UBERON:0004077 {name="cerebellum vermis lobule IV"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule IV"} -property_value: IAO:0000589 "lobule 4 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16834 -intersection_of: UBERON:0004079 {name="cerebellum vermis lobule V"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule V"} -property_value: IAO:0000589 "lobule 5 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16835 -intersection_of: UBERON:0004080 {name="cerebellum vermis lobule VI"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule VI"} -property_value: IAO:0000589 "lobule 6 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16836 -intersection_of: UBERON:0004081 {name="cerebellum vermis lobule VII"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule VII"} -property_value: IAO:0000589 "lobule 7 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16837 -intersection_of: UBERON:0004082 {name="cerebellum vermis lobule VIII"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule VIII"} -property_value: IAO:0000589 "lobule 8 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16838 -intersection_of: UBERON:0004078 {name="cerebellum vermis lobule IX"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule IX"} -property_value: IAO:0000589 "lobule 9 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16839 -intersection_of: UBERON:0004083 {name="cerebellum vermis lobule X"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum vermis lobule X"} -property_value: IAO:0000589 "lobule 10 of cerebellar vermis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16841 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002979 -property_value: IAO:0000589 "Purkinje cell layer of CbVCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16844 -intersection_of: UBERON:0007634 {name="parabrachial nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="parabrachial nucleus"} -property_value: IAO:0000589 "parabrachial complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16848 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003040 -property_value: IAO:0000589 "parabrachial part of the periaqueductal gray" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16850 -intersection_of: UBERON:0002918 {name="medial parabrachial nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial parabrachial nucleus"} -property_value: IAO:0000589 "medial parabrachial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16852 -intersection_of: UBERON:0003007 {name="lateral parabrachial nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral parabrachial nucleus"} -property_value: IAO:0000589 "lateral parabrachial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16853 -intersection_of: UBERON:0002869 {name="diffuse reticular nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="diffuse reticular nucleus"} -property_value: IAO:0000589 "Koelliker-Fuse nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16858 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003040 -property_value: IAO:0000589 "isthmic part of the periaqueductal gray" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16860 -intersection_of: UBERON:0003006 {name="dorsal nucleus of lateral lemniscus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dorsal nucleus of lateral lemniscus"} -property_value: IAO:0000589 "dorsal nucleus of the lateral lemniscus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16862 -intersection_of: UBERON:0002140 {name="parabigeminal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="parabigeminal nucleus"} -property_value: IAO:0000589 "parabigeminal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16869 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003040 -property_value: IAO:0000589 "isthmic liminal part of the periaqueductal gray" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16870 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001718 -property_value: IAO:0000589 "isthmic part of mesencephalic trigeminal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16881 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002043 -property_value: IAO:0000589 "dorsolateral isthmic part of the dorsal raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16884 -intersection_of: UBERON:0011172 {name="retrorubral area of midbrain reticular nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="retrorubral area of midbrain reticular nucleus"} -property_value: IAO:0000589 "retrorubral field" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16891 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002043 -property_value: IAO:0000589 "intermediate isthmic part of the dorsal raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16896 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001966 -property_value: IAO:0000589 "substantia nigra reticulata, isthmic part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16901 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002043 -property_value: IAO:0000589 "ventral isthmic part of dorsal raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16902 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034994 -property_value: IAO:0000589 "intermediate mantle of isBM" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16903 -intersection_of: UBERON:0002722 {name="trochlear nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="trochlear nucleus"} -property_value: IAO:0000589 "trochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16908 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001965 -property_value: IAO:0000589 "substantia nigra compacta, isthmic part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16909 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "interpeduncular nucleus, prodromal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16910 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013737 -property_value: IAO:0000589 "isthmic portion of paranigral nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16914 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002691 -property_value: IAO:0000589 "ventral tegmental area, isthmic part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16915 -intersection_of: UBERON:0005499 {name="rhombomere 1"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 1"} -property_value: IAO:0000589 "rhombomere 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16916 -intersection_of: UBERON:0005568 {name="rhombomere 1 roof plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 1 roof plate"} -property_value: IAO:0000589 "r1 roof plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16918 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006215 -property_value: IAO:0000589 "rhombic lip of r1R" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16920 -intersection_of: UBERON:0002245 {name="cerebellar hemisphere"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellar hemisphere"} -property_value: IAO:0000589 "cerebellar hemisphere" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16923 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006215 -property_value: IAO:0000589 "rhombic lip of CbH" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16926 -intersection_of: UBERON:0002317 {name="white matter of cerebellum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="white matter of cerebellum"} -property_value: IAO:0000589 "cerebellar white matter" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16928 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002130 -property_value: IAO:0000589 "cerebellar nuclei of CbH" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16929 -intersection_of: UBERON:0004073 {name="cerebellum interpositus nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum interpositus nucleus"} -property_value: IAO:0000589 "intermediate (interpositus) cerebellar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16932 -intersection_of: UBERON:0002613 {name="cerebellum globose nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellum globose nucleus"} -property_value: IAO:0000589 "posterior part of Int" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16937 -intersection_of: UBERON:8440018 {name="noradrenergic cell group A4"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="noradrenergic cell group A4"} -property_value: IAO:0000589 "noradrenergic cell group A4" xsd:string -property_value: status "Curated" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: DMBA:16938 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002129 -property_value: IAO:0000589 "superficial stratum of cerebellar hemisphere" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16939 -intersection_of: UBERON:0002129 {name="cerebellar cortex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellar cortex"} -property_value: IAO:0000589 "cortex of cerebellar hemisphere" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16940 -intersection_of: UBERON:0005350 {name="lobule simplex"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lobule simplex"} -property_value: IAO:0000589 "simple lobule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16941 -intersection_of: UBERON:0005976 {name="ansiform lobule crus I"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ansiform lobule crus I"} -property_value: IAO:0000589 "crus 1 of the ansiform lobule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16942 -intersection_of: UBERON:0005977 {name="ansiform lobule crus II"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ansiform lobule crus II"} -property_value: IAO:0000589 "crus 2 of the ansiform lobule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16943 -intersection_of: UBERON:0005349 {name="paramedian lobule"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="paramedian lobule"} -property_value: IAO:0000589 "paramedian lobule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16945 -intersection_of: UBERON:0005351 {name="paraflocculus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="paraflocculus"} -property_value: IAO:0000589 "paraflocculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16946 -intersection_of: UBERON:0001063 {name="flocculus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="flocculus"} -property_value: IAO:0000589 "flocculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16948 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002979 -property_value: IAO:0000589 "Purkinje cell layer of CbHCx" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16953 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007227 -property_value: IAO:0000589 "r1 part of superior vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16964 -intersection_of: UBERON:0002267 {name="laterodorsal tegmental nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="laterodorsal tegmental nucleus"} -property_value: IAO:0000589 "laterodorsal tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16965 -intersection_of: UBERON:0002142 {name="pedunculopontine tegmental nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pedunculopontine tegmental nucleus"} -property_value: IAO:0000589 "pedunculopontine tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16966 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001718 -property_value: IAO:0000589 "r1 part of the 'mesencephalic' trigeminal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16972 -intersection_of: UBERON:0002148 {name="locus ceruleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="locus ceruleus"} -property_value: IAO:0000589 "locus coeruleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16973 -intersection_of: UBERON:0007632 {name="Barrington's nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="Barrington's nucleus"} -property_value: IAO:0000589 "nucleus of Barrington" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16982 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007710 -property_value: IAO:0000589 "r1 part of intermediate nucleus of the lateral lemniscus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16992 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0009662 -property_value: IAO:0000589 "nucleus subcoeruleus, r1 part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:16998 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002043 -property_value: IAO:0000589 "r1 part of dorsal raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17000 -intersection_of: UBERON:0002143 {name="dorsal tegmental nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dorsal tegmental nucleus"} -property_value: IAO:0000589 "dorsal tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17001 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002143 -property_value: IAO:0000589 "core part of DTg" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17002 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002143 -property_value: IAO:0000589 "shell part of DTg" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17005 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "apical interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17006 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "rhabdoid interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17007 -intersection_of: UBERON:0002438 {name="ventral tegmental nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral tegmental nucleus"} -property_value: IAO:0000589 "ventral tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17008 -intersection_of: UBERON:0010036 {name="anterior tegmental nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anterior tegmental nucleus"} -property_value: IAO:0000589 "anterior tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17010 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007764 -property_value: IAO:0000589 "r1 part of paramedian raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17011 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003004 -property_value: IAO:0000589 "r1 part of median raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17014 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "rostral interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17015 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "dorsomedial interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17016 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "dorsolateral interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17017 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "rostrolateral interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17018 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "caudal interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17019 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "caudodorsomedial interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17020 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "caudodorsolateral interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17021 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002145 -property_value: IAO:0000589 "caudolateral interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17022 -intersection_of: UBERON:0005566 {name="rhombomere 1 floor plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 1 floor plate"} -property_value: IAO:0000589 "r1 floor plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17023 -intersection_of: UBERON:0005569 {name="rhombomere 2"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 2"} -property_value: IAO:0000589 "rhombomere 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17024 -intersection_of: UBERON:0005572 {name="rhombomere 2 roof plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 2 roof plate"} -property_value: IAO:0000589 "r2 roof plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17029 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002829 -property_value: IAO:0000589 "r2 part of dorsal cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17030 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002830 -property_value: IAO:0000589 "r2 part of anteroventral cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17034 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007227 -property_value: IAO:0000589 "r2 part of superior vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17052 -intersection_of: UBERON:8440021 {name="noradrenergic cell group A7"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="noradrenergic cell group A7"} -property_value: IAO:0000589 "noradrenergic cell group A7" xsd:string -property_value: status "Curated" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: DMBA:17059 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0009662 -property_value: IAO:0000589 "r2 part of nucleus subcoeruleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17064 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002604 -property_value: IAO:0000589 "r2 part of ventral lateral lemniscal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17077 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007764 -property_value: IAO:0000589 "r2 part of paramedian raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17084 -intersection_of: UBERON:0035973 {name="nucleus incertus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="nucleus incertus"} -property_value: IAO:0000589 "nucleus incertus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17087 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002047 -property_value: IAO:0000589 "r2 part of prepontine raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17088 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003004 -property_value: IAO:0000589 "r2 part of median raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17091 -intersection_of: UBERON:0005570 {name="rhombomere 2 floor plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 2 floor plate"} -property_value: IAO:0000589 "r2 floor plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17092 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000988 -property_value: IAO:0000589 "pontine hindbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17093 -intersection_of: UBERON:0005507 {name="rhombomere 3"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 3"} -property_value: IAO:0000589 "rhombomere 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17094 -intersection_of: UBERON:0005575 {name="rhombomere 3 roof plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 3 roof plate"} -property_value: IAO:0000589 "r3 roof plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17099 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002829 -property_value: IAO:0000589 "r3 part of dorsal cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17100 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002830 -property_value: IAO:0000589 "r3 part of anteroventral cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17104 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007230 -property_value: IAO:0000589 "r3 part of lateral vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17105 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r3 part of magnocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17106 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r3 part of parvicellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17118 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002604 -property_value: IAO:0000589 "r3 part of ventral lateral lemniscal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17142 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002151 -property_value: IAO:0000589 "r3 part of lateral pontine nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17147 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035976 -property_value: IAO:0000589 "r3 part of preabducens central gray" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17149 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002047 -property_value: IAO:0000589 "r3 pontine raphe nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17150 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002147 -property_value: IAO:0000589 "r3 part of reticulotegmental nucleus, shell portion" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17151 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002147 -property_value: IAO:0000589 "r3 part of reticulotegmental nucleus, core portion" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17154 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002151 -property_value: IAO:0000589 "r3 part of medial pontine nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17155 -intersection_of: UBERON:0005573 {name="rhombomere 3 floor plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 3 floor plate"} -property_value: IAO:0000589 "r3 floor plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17156 -intersection_of: UBERON:0005511 {name="rhombomere 4"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 4"} -property_value: IAO:0000589 "rhombomere 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17157 -intersection_of: UBERON:0005578 {name="rhombomere 4 roof plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 4 roof plate"} -property_value: IAO:0000589 "r4 roof plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17162 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002829 -property_value: IAO:0000589 "r4 part of dorsal cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17163 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002831 -property_value: IAO:0000589 "r4 part of posteroventral cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17167 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007230 -property_value: IAO:0000589 "r4 part of lateral vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17168 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r4 part of magnocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17169 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r4 part of parvocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17190 -intersection_of: UBERON:0022424 {name="supragenual nucleus of pontine tegmentum"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="supragenual nucleus of pontine tegmentum"} -property_value: IAO:0000589 "supragenual nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17193 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002604 -property_value: IAO:0000589 "r4 part of ventral lateral lemniscal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17206 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002151 -property_value: IAO:0000589 "r4 part of lateral pontine nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17211 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035976 -property_value: IAO:0000589 "r4 part of preabducens central gray" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17213 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002147 -property_value: IAO:0000589 "r4 part of reticulotegmental nucleus, shell portion" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17214 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002147 -property_value: IAO:0000589 "r4 part of reticulotegmental nucleus, core portion" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17216 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002047 -property_value: IAO:0000589 "r4 part of pontine raphe cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17218 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002151 -property_value: IAO:0000589 "r4 part of medial pontine nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17219 -intersection_of: UBERON:0005576 {name="rhombomere 4 floor plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 4 floor plate"} -property_value: IAO:0000589 "r4 floor plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17220 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002028 -property_value: IAO:0000589 "pontomedullary hindbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17221 -intersection_of: UBERON:0005515 {name="rhombomere 5"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 5"} -property_value: IAO:0000589 "rhombomere 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17222 -intersection_of: UBERON:0005581 {name="rhombomere 5 roof plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 5 roof plate"} -property_value: IAO:0000589 "r5 roof plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17227 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002829 -property_value: IAO:0000589 "r5 part of dorsal cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17228 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002831 -property_value: IAO:0000589 "r5 part of posteroventral cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17232 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001721 -property_value: IAO:0000589 "r5 part of spinal vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17233 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r5 part of magnocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17234 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r5 part of parvocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17248 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002149 -property_value: IAO:0000589 "superior salivatory parasympathetic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17259 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002604 -property_value: IAO:0000589 "r5 part of ventral lateral lemniscal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17260 -intersection_of: UBERON:0022437 {name="dorsal periolivary nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="dorsal periolivary nucleus"} -property_value: IAO:0000589 "dorsal periolivary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17261 -intersection_of: UBERON:0002779 {name="lateral superior olivary nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral superior olivary nucleus"} -property_value: IAO:0000589 "lateral superior olive" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17262 -intersection_of: UBERON:0002782 {name="medial superior olivary nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial superior olivary nucleus"} -property_value: IAO:0000589 "medial superior olive" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17274 -intersection_of: UBERON:0016843 {name="lateral nucleus of trapezoid body"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral nucleus of trapezoid body"} -property_value: IAO:0000589 "lateral trapezoid nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17279 -intersection_of: UBERON:0002682 {name="abducens nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="abducens nucleus"} -property_value: IAO:0000589 "abducens motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17281 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035976 -property_value: IAO:0000589 "para-abducens nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17282 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002573 -property_value: IAO:0000589 "retropontine reticular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17284 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002156 -property_value: IAO:0000589 "nucleus raphe magnus, r5 part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17287 -intersection_of: UBERON:0002833 {name="medial nucleus of trapezoid body"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial nucleus of trapezoid body"} -property_value: IAO:0000589 "medial trapezoid nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17289 -intersection_of: UBERON:0005579 {name="rhombomere 5 floor plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 5 floor plate"} -property_value: IAO:0000589 "r5 floor plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17290 -intersection_of: UBERON:0005519 {name="rhombomere 6"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 6"} -property_value: IAO:0000589 "rhombomere 6" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17291 -intersection_of: UBERON:0005584 {name="rhombomere 6 roof plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 6 roof plate"} -property_value: IAO:0000589 "r6 roof plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17296 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002829 -property_value: IAO:0000589 "r6 part of dorsal cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17297 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002831 -property_value: IAO:0000589 "r6 part of posteroventral cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17301 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001721 -property_value: IAO:0000589 "r6 part of spinal vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17302 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r6 part of magnocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17303 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r6 part of parvocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17307 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002591 -property_value: IAO:0000589 "r6 part of spinal trigeminal nucleus, pars oralis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17316 -intersection_of: UBERON:0002872 {name="inferior salivatory nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="inferior salivatory nucleus"} -property_value: IAO:0000589 "inferior salivatory parasympathetic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17317 -intersection_of: UBERON:0003011 {name="facial motor nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="facial motor nucleus"} -property_value: IAO:0000589 "facial motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17327 -intersection_of: UBERON:0009918 {name="retrotrapezoid nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="retrotrapezoid nucleus"} -property_value: IAO:0000589 "retrotrapezoid nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17336 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016635 -property_value: IAO:0000589 "r6 part of paragigantocellular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17342 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002160 -property_value: IAO:0000589 "r6 part of nucleus prepositus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17345 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002156 -property_value: IAO:0000589 "raphe magnus nucleus, r6 part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17346 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002155 -property_value: IAO:0000589 "r6 part of gigantocellular reticular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17349 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002157 -property_value: IAO:0000589 "r6 part of nucleus raphe pallidus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17351 -intersection_of: UBERON:0005582 {name="rhombomere 6 floor plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 6 floor plate"} -property_value: IAO:0000589 "r6 floor plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17352 -intersection_of: UBERON:0001896 {name="medulla oblongata"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medulla oblongata"} -property_value: IAO:0000589 "medullary hindbrain (medulla)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17353 -intersection_of: UBERON:0005523 {name="rhombomere 7"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 7"} -property_value: IAO:0000589 "rhombomere 7" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17354 -intersection_of: UBERON:0005587 {name="rhombomere 7 roof plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 7 roof plate"} -property_value: IAO:0000589 "r7 roof plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17359 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002829 -property_value: IAO:0000589 "r7 part of the dorsal cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17360 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002831 -property_value: IAO:0000589 "r7 part of the posteroventral cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17364 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001721 -property_value: IAO:0000589 "r7 part of spinal vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17365 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r7 part of parvocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17369 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002873 -property_value: IAO:0000589 "r7 part of spinal trigeminal nucleus, interpolar part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17398 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016635 -property_value: IAO:0000589 "r7 part of paragigantocellular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17404 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002160 -property_value: IAO:0000589 "r7 part of nucleus prepositus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17405 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002871 -property_value: IAO:0000589 "r7 portion of the hypoglossal motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17406 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002881 -property_value: IAO:0000589 "r7 part of the nucleus of Roller" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17408 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002684 -property_value: IAO:0000589 "r7 raphe obscurus cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17410 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002155 -property_value: IAO:0000589 "r7 part of gigantocellular reticular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17413 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002157 -property_value: IAO:0000589 "r7 raphe pallidus cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17415 -intersection_of: UBERON:0005585 {name="rhombomere 7 floor plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 7 floor plate"} -property_value: IAO:0000589 "r7 floor plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17416 -intersection_of: UBERON:0005527 {name="rhombomere 8"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 8"} -property_value: IAO:0000589 "rhombomere 8" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17417 -intersection_of: UBERON:0005590 {name="rhombomere 8 roof plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 8 roof plate"} -property_value: IAO:0000589 "r8 roof plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17422 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001721 -property_value: IAO:0000589 "r8 part of spinal vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17423 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r8 part of parvocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17427 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002873 -property_value: IAO:0000589 "r8 part of spinal trigeminal nucleus, interpolar part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17446 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002154 -property_value: IAO:0000589 "r8 part of lateral reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17454 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002876 -property_value: IAO:0000589 "r8 part of nucleus intercalatus Staderini" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17459 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016635 -property_value: IAO:0000589 "r8 part of the paragigantocellular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17464 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002160 -property_value: IAO:0000589 "r8 part of nucleus prepositus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17465 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002871 -property_value: IAO:0000589 "r8 portion of the hypoglossal motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17466 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002881 -property_value: IAO:0000589 "r8 part of nucleus of Roller" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17468 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002684 -property_value: IAO:0000589 "r8 raphe obscurus cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17470 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002155 -property_value: IAO:0000589 "r8 part of gigantocellular reticular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17473 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002157 -property_value: IAO:0000589 "r8 raphe pallidus cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17474 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002127 -property_value: IAO:0000589 "r8 part of inferior olive" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17475 -intersection_of: UBERON:0005588 {name="rhombomere 8 floor plate"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 8 floor plate"} -property_value: IAO:0000589 "r8 floor plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17476 -intersection_of: UBERON:0019284 {name="rhombomere 9"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 9"} -property_value: IAO:0000589 "rhombomere 9" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17482 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001721 -property_value: IAO:0000589 "r9 part of spinal vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17483 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r9 part of parvocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17488 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002873 -property_value: IAO:0000589 "r9 part of spinal trigeminal nucleus, interpolar part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17491 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002161 -property_value: IAO:0000589 "r9 part of nucleus gracilis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17509 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002154 -property_value: IAO:0000589 "r9 part of the lateral reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17517 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002876 -property_value: IAO:0000589 "r9 part of nucleus intercalatus Staderini" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17521 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016635 -property_value: IAO:0000589 "r9 part of paragigantocellular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17527 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002871 -property_value: IAO:0000589 "r9 portion of the hypoglossal motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17528 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002881 -property_value: IAO:0000589 "r9 part of nucleus of Roller" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17530 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002684 -property_value: IAO:0000589 "r9 raphe obscurus cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17532 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002155 -property_value: IAO:0000589 "r9 part of gigantocellular reticular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17535 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002157 -property_value: IAO:0000589 "r9 raphe pallidus cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17536 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002127 -property_value: IAO:0000589 "r9 part of the inferior olive" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17538 -intersection_of: UBERON:0019285 {name="rhombomere 10"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 10"} -property_value: IAO:0000589 "rhombomere 10" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17544 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001721 -property_value: IAO:0000589 "r10 part of spinal vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17545 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001722 -property_value: IAO:0000589 "r10 part of parvocellular medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17550 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002866 -property_value: IAO:0000589 "r10 part of spinal trigeminal nucleus, caudal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17553 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002161 -property_value: IAO:0000589 "r10 part of nucleus gracilis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17575 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002876 -property_value: IAO:0000589 "r10 part of nucleus intercalatus Staderini" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17585 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002871 -property_value: IAO:0000589 "r10 portion of the hypoglossal motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17586 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002881 -property_value: IAO:0000589 "r10 part of nucleus of Roller" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17588 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002684 -property_value: IAO:0000589 "r10 raphe obscurus cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17590 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002155 -property_value: IAO:0000589 "r10 part of gigantocellular reticular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17591 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002155 -property_value: IAO:0000589 "r10 part of ventral gigangocellular reticular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17593 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002157 -property_value: IAO:0000589 "r10 raphe pallidus cell population" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17594 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002127 -property_value: IAO:0000589 "r10 part of the inferior olive" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17596 -intersection_of: UBERON:0019286 {name="rhombomere 11"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rhombomere 11"} -property_value: IAO:0000589 "rhombomere 11" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17606 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002866 -property_value: IAO:0000589 "r11 part of spinal trigeminal nucleus, caudal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17609 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002161 -property_value: IAO:0000589 "r11 part of nucleus gracilis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17614 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "mantle zone of r11Lim" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17642 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002871 -property_value: IAO:0000589 "r11 part of hypoglossal motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17644 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002684 -property_value: IAO:0000589 "r11 part of nucleus raphe obscurus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17646 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002155 -property_value: IAO:0000589 "r11 part of gigantocellular reticular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17649 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002157 -property_value: IAO:0000589 "r11 part of nucleus raphe pallidus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17651 -intersection_of: UBERON:0002240 {name="spinal cord"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="spinal cord"} -property_value: IAO:0000589 "spinal cord" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17690 -intersection_of: UBERON:0035024 {name="lateral spinal nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral spinal nucleus"} -property_value: IAO:0000589 "lateral spinal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17691 -intersection_of: UBERON:0002176 {name="lateral cervical nucleus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral cervical nucleus"} -property_value: IAO:0000589 "lateral cervical nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17736 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001643 -property_value: IAO:0000589 "oculomotor nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17737 -intersection_of: UBERON:0002618 {name="root of trochlear nerve"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="root of trochlear nerve"} -property_value: IAO:0000589 "trochlear nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17739 -intersection_of: UBERON:0004673 {name="trigeminal nerve root"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="trigeminal nerve root"} -property_value: IAO:0000589 "trigeminal nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17741 -intersection_of: UBERON:0002786 {name="root of abducens nerve"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="root of abducens nerve"} -property_value: IAO:0000589 "abducens nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17742 -intersection_of: UBERON:0004674 {name="facial nerve root"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="facial nerve root"} -property_value: IAO:0000589 "facial nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17746 -intersection_of: UBERON:0002731 {name="vestibulocochlear nerve"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="vestibulocochlear nerve"} -property_value: IAO:0000589 "vestibulocochlear nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17747 -intersection_of: UBERON:0019310 {name="glossopharyngeal nerve root"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="glossopharyngeal nerve root"} -property_value: IAO:0000589 "glossopharyngeal nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17748 -intersection_of: UBERON:0011213 {name="root of vagus nerve"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="root of vagus nerve"} -property_value: IAO:0000589 "vagal nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17749 -intersection_of: UBERON:0014615 {name="accessory nerve root"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="accessory nerve root"} -property_value: IAO:0000589 "accessory nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17750 -intersection_of: UBERON:0004675 {name="hypoglossal nerve root"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="hypoglossal nerve root"} -property_value: IAO:0000589 "hypoglossal nerve root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17751 -intersection_of: UBERON:0000935 {name="anterior commissure"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anterior commissure"} -property_value: IAO:0000589 "anterior commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17753 -intersection_of: UBERON:0003025 {name="brachium of inferior colliculus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="brachium of inferior colliculus"} -property_value: IAO:0000589 "brachium of inferior colliculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17754 -intersection_of: UBERON:0006847 {name="cerebellar commissure"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="cerebellar commissure"} -property_value: IAO:0000589 "cerebellar commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17756 -intersection_of: UBERON:0002707 {name="corticospinal tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="corticospinal tract"} -property_value: IAO:0000589 "corticospinal tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17759 -intersection_of: UBERON:0005373 {name="spinal cord dorsal column"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="spinal cord dorsal column"} -property_value: IAO:0000589 "dorsal column tracts" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17760 -intersection_of: UBERON:0002755 {name="pyramidal decussation"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="pyramidal decussation"} -property_value: IAO:0000589 "pyramidal tract decussation" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17761 -intersection_of: UBERON:0002753 {name="posterior spinocerebellar tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="posterior spinocerebellar tract"} -property_value: IAO:0000589 "dorsal spinocerebellar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17765 -intersection_of: UBERON:0004545 {name="external capsule of telencephalon"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="external capsule of telencephalon"} -property_value: IAO:0000589 "external capsule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17766 -intersection_of: UBERON:0002310 {name="hippocampus fimbria"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="hippocampus fimbria"} -property_value: IAO:0000589 "fimbria" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17767 -intersection_of: UBERON:0000052 {name="fornix of brain"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="fornix of brain"} -property_value: IAO:0000589 "fornix tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17768 -intersection_of: UBERON:0001909 {name="habenular commissure"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="habenular commissure"} -property_value: IAO:0000589 "habenular commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17769 -intersection_of: UBERON:0000908 {name="hippocampal commissure"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="hippocampal commissure"} -property_value: IAO:0000589 "hippocampal commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17770 -intersection_of: UBERON:0001887 {name="internal capsule of telencephalon"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="internal capsule of telencephalon"} -property_value: IAO:0000589 "internal capsule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17772 -intersection_of: UBERON:0002163 {name="inferior cerebellar peduncle"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="inferior cerebellar peduncle"} -property_value: IAO:0000589 "inferior cerebellar peduncle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17773 -intersection_of: UBERON:0001888 {name="lateral olfactory stria"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral olfactory stria"} -property_value: IAO:0000589 "lateral olfactory tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17774 -intersection_of: UBERON:0002953 {name="lateral lemniscus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="lateral lemniscus"} -property_value: IAO:0000589 "lateral lemniscus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17776 -intersection_of: UBERON:0003002 {name="medial lemniscus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial lemniscus"} -property_value: IAO:0000589 "medial lemniscus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17777 -intersection_of: UBERON:0002643 {name="decussation of medial lemniscus"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="decussation of medial lemniscus"} -property_value: IAO:0000589 "decussation of medial lemniscus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17779 -intersection_of: UBERON:0034734 {name="medial olfactory stria"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="medial olfactory stria"} -property_value: IAO:0000589 "medial olfactory tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17780 -intersection_of: UBERON:0002720 {name="mammillary peduncle"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="mammillary peduncle"} -property_value: IAO:0000589 "mammillary peduncle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17781 -intersection_of: UBERON:0006698 {name="mammillotegmental axonal tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="mammillotegmental axonal tract"} -property_value: IAO:0000589 "mammillotegmental tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17782 -intersection_of: UBERON:0006696 {name="mammillothalamic axonal tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="mammillothalamic axonal tract"} -property_value: IAO:0000589 "mammillothalamic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17783 -intersection_of: UBERON:0000959 {name="optic chiasma"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="optic chiasma"} -property_value: IAO:0000589 "optic chiasm" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17785 -intersection_of: UBERON:0001908 {name="optic tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="optic tract"} -property_value: IAO:0000589 "optic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17787 -intersection_of: UBERON:0000936 {name="posterior commissure"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="posterior commissure"} -property_value: IAO:0000589 "posterior commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17790 -intersection_of: UBERON:0002138 {name="habenulo-interpeduncular tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="habenulo-interpeduncular tract"} -property_value: IAO:0000589 "retroflex tract (habenulo-interpeduncular) tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17792 -intersection_of: UBERON:0002714 {name="rubrospinal tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="rubrospinal tract"} -property_value: IAO:0000589 "rubrospinal tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17793 -intersection_of: UBERON:0002150 {name="superior cerebellar peduncle"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="superior cerebellar peduncle"} -property_value: IAO:0000589 "superior cerebellar peduncle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17794 -intersection_of: UBERON:0006086 {name="stria medullaris"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="stria medullaris"} -property_value: IAO:0000589 "stria medullaris" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17796 -intersection_of: UBERON:0002718 {name="solitary tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="solitary tract"} -property_value: IAO:0000589 "solitary tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17797 -intersection_of: UBERON:0014761 {name="spinal trigeminal tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="spinal trigeminal tract"} -property_value: IAO:0000589 "descending trigeminal tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17802 -intersection_of: UBERON:0002949 {name="tectospinal tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="tectospinal tract"} -property_value: IAO:0000589 "tectospinal tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17805 -intersection_of: UBERON:0002987 {name="anterior spinocerebellar tract"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anterior spinocerebellar tract"} -property_value: IAO:0000589 "ventral spinocerebellar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:17807 -intersection_of: UBERON:0002615 {name="ventral tegmental decussation"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="ventral tegmental decussation"} -property_value: IAO:0000589 "ventral tegmental decussation" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: DMBA:ENTITY -intersection_of: UBERON:0001062 {name="anatomical entity"} -intersection_of: BFO:0000050 NCBITaxon:10090 {name="anatomical entity"} -property_value: IAO:0000589 "DMBA entity" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - diff --git a/src/ontology/bridge/uberon-bridge-to-dmba.owl b/src/ontology/bridge/uberon-bridge-to-dmba.owl index 91a35c0025..74268db84a 100644 --- a/src/ontology/bridge/uberon-bridge-to-dmba.owl +++ b/src/ontology/bridge/uberon-bridge-to-dmba.owl @@ -69,8974 +69,2068 @@ - + - - - - - - - - - - - - - - - - lateral wings of the dorsal raphe nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventricles, forebrain - Verified - - - - - - - - - - - - - - - telencephalic ventricle - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricles, secondary prosencephalon - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricles, rostral secondary prosencephalon - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricles, caudal secondary prosencephalon - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventricles, midbrain - Verified - - - - - - - - - - - - - - - midbrain cerebral aqueduct - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricles, mesomere 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricles, mesomere 2 (preisthmus or caudal midbrain) - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventricles, hindbrain - Verified - - - - - - - - - - - - - - - fourth ventricle - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventricles, spinal cord - Verified - - - - - - - - - - - - - - - central canal of spinal cord - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - r11 part of the inferior olive - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - neural plate - Verified - - - - - - - - - - - - - - - neural plate - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - forebrain - Verified - - - - - - - - - - - - - - - forebrain - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - secondary prosencephalon - Verified - - - - - - - - - - - - - - - secondary prosencephalon - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - preoptic area - Verified - - - - - - - - - - - - - - - preoptic area - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - vascular organ of the lamina terminalis - Verified - - - - - - - - - - - - - - - supraoptic crest - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - medial preoptic nucleus - Verified - - - - - - - - - - - - - - - medial preoptic nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventrolateral preoptic nucleus - Curated - - - - - - - - - - - - - - - ventrolateral preoptic nucleus - - - - - Curated - https://orcid.org/0000-0001-7258-9596 - + - + - - - supraoptic nucleus - Verified - - - - - - - - - - - - - - - supraoptic nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - optic fiber layer - Verified - - - - - - - - - - - - - - - nerve fiber layer of retina - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - suprachiasmatic nucleus - Verified - - - - - - - - - - - - - - - suprachiasmatic nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - anterior hypothalamic nucleus - Verified - - - - - - - - - - - - - - - anterior nucleus of hypothalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - tuber cinereum area - Verified - - - - - - - - - - - - - - - tuber cinereum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventromedial hypothalamic nucleus - Verified - - - - - - - - - - - - - - - ventromedial nucleus of hypothalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - - - - - median eminence - Verified - - - - - - - - - - - - - - - median eminence of neurohypophysis - - - - - Verified - https://ror.org/03cpe7c52 - + + + - + - - - infundibulum - Verified - - - - - - - - - - - - - - - pituitary stalk - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - neurohypophysis - Verified - - - - - - - - - - - - - - - neurohypophysis - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - dorsal premammillary nucleus - Verified - - - - - - - - - - - - - - - dorsal premammillary nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - mammillary area - Verified - - - - - - - - - - - - - - - mammillary body - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - medial mammillary nucleus - Verified - - - - - - - - - - - - - - - medial mammillary nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - medial part of MM - Verified - - - - - - - - - - - - - - - medial part of medial mammillary nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lateral part of MM - Verified - - - - - - - - - - - - - - - lateral part of medial mammillary nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lateral mammillary nucleus - Verified - - - - - - - - - - - - - - - lateral mammillary nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - subfornical organ, circumventricular ependymal specialization - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - subfornical organ, periventricular part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - subpallium - Verified - - - - - - - - - - - - - - - ventral part of telencephalon - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateral septal nucleus, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateral septal nucleus, intermedio-ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - septohypothalamic nucleus - Verified - - - - - - - - - - - - - - - septohypothalamic nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - vertical nucleus of the diagonal band - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - medial septal nucleus - Verified - - - - - - - - - - - - - - - medial septal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateral septal nucleus, intermediate part, periventricular - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateral septal nucleus, intermedio-intermediate part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateral septal nucleus, dorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - triangular septal nucleus - Verified - - - - - - - - - - - - - - - triangular septal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - septofimbrial nucleus - Verified - - - - - - - - - - - - - - - septofimbrial nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateral septal nucleus, intermedio-dorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - bed nucleus of the stria terminalis, medioseptal division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - nucleus of the stria terminalis, medial division, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - nucleus of the stria terminalis, medial division, anterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - substantia innominata/basal nucleus, transitional part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - bed nucleus of the anterior commissure - Verified - - - - - - - - - - - - - - - nucleus of anterior commissure - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - horizontal nucleus of the diagonal band, transitional part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - bed nucleus of the stria terminalis, lateroseptal division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - nucleus of the stria terminalis, lateral division, intermediate part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - septopallidal part of the olfactory tuberculum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - island of Calleja major - Verified - - - - - - - - - - - - - - - isla magna of Calleja - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - accumbens nucleus, core domain - Verified - - - - - - - - - - - - - - - core of nucleus accumbens - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - accumbens nucleus, shell domain - Verified - - - - - - - - - - - - - - - shell of nucleus accumbens - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - septostriatal part of the olfactory tuberculum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - central subpallium (classic basal ganglia) - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - bed nucleus of the stria terminalis, mediocentral division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - substantia innominata/basal nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - internal globus pallidus - Verified - - - - - - - - - - - - - - - medial globus pallidus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - horizontal nucleus of the diagonal band - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - magnocellular diagonal band nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - pallidum (globus pallidus complex) - Verified - - - - - - - - - - - - - - - pallidum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - bed nucleus of the stria terminalis, laterocentral division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - external globus pallidum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventral pallidum - Verified - - - - - - - - - - - - - - - ventral pallidum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - pallidal part of olfactory tuberculum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - pallidal islands of Calleja - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - striatum (corpus striatum) - Verified - - - - - - - - - - - - - - - striatum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - caudate nucleus - Verified - - - - - - - - - - - - - - - caudate nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - putamen - putamen - Verified - - - - - - - - - - - - - - - putamen - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - ventral striatum - ventral striatum - Verified - - - - - - - - - - - - - - - ventral striatum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - striatal part of olfactory tuberculum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - striatal islands of Calleja - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - central amygdalar nucleus, lateral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - central amygdalar nucleus, capsular part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - intercalated amygdaloid nuclei - Verified - - - - - - - - - - - - - - - intercalated amygdaloid nuclei - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - bed nucleus of stria terminalis, lateral amygdaloid division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - central amygdaloid nucleus, medial part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - bed nucleus of the stria terminalis, medial amygdaloid division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medial amygdala, posterodorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - medial amygdala, posteroventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medial amygdala, anterodorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medial amygdala, anteroventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - pallium - Verified - - - - - - - - - - - - - - - pallium - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventral pallium - Verified - - - - - - - - - - - - - - - ventral pallium - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - olfactory bulb, principal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - OB granular layer - Verified - - - - - - - - - - - - - - - olfactory bulb granule cell layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - OB inner plexiform layer - Verified - - - - - - - - - - - - - - - olfactory bulb internal plexiform layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - OB mitral cell layer - Verified - - - - - - - - - - - - - - - olfactory bulb mitral cell layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - OB outer plexiform layer - Verified - - - - - - - - - - - - - - - olfactory bulb external plexiform layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - anterior olfactory area, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventropallial prepiriform area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - bed nucleus of the external capsule - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - dorsal endopiriform nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventral endopiriform nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventropallial amygdalopiriform area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lateral amygdaloid nucleus - Verified - - - - - - - - - - - - - - - lateral amygdaloid nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - amygdalohippocampal area - Verified - - - - - - - - - - - - - - - amygdalohippocampal area - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - basomedial amygdaloid nucleus, anterior part - Verified - - - - - - - - - - - - - - - medial part of basal amygdaloid nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basomedial amygdaloid nucleus, posterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - posteromedial cortical amygdaloid area - Verified - - - - - - - - - - - - - - - posteromedial cortical amygdaloid nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - nucleus of the lateral olfactory tract - Verified - - - - - - - - - - - - - - - nucleus of lateral olfactory tract - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - nucleus of the accessory olfactory tract - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lateral pallium - Verified - - - - - - - - - - - - - - - lateral pallium - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - accessory olfactory bulb - Verified - - - - - - - - - - - - - - - accessory olfactory bulb - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - AOB, granular layer - Verified - - - - - - - - - - - - - - - accessory olfactory bulb granule cell layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - AOB, internal plexiform layer - Verified - - - - - - - - - - - - - - - accessory olfactory bulb internal plexiform layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - AOB, mitral cell layer - Verified - - - - - - - - - - - - - - - accessory olfactory bulb mitral cell layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - AOB, outer plexiform layer - Verified - - - - - - - - - - - - - - - accessory olfactory bulb external plexiform layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - AOB, glomerular layer - Verified - - - - - - - - - - - - - - - accessory olfactory bulb glomerular layer - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - anterior olfactory area, dorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateropallial prepiriform area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - claustrum - Verified - - - - - - - - - - - - - - - claustrum of brain - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateropallial amygdalopiriform area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basolateral amygdaloid nucleus, anterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basolateral amygdaloid nucleus, posterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basolateral amygdaloid nucleus, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - amygdalopiriform area - Verified - - - - - - - - - - - - - - - amygdalopiriform transition area - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - posterolateral cortical amygdaloid area - Verified - - - - - - - - - - - - - - - posterolateral cortical amygdaloid nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - anterior cortical amygdaloid area - Verified - - - - - - - - - - - - - - - anterior cortical amygdaloid nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - dorsal pallium/isocortex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - frontal cortex - Verified - - - - - - - - - - - - - - - frontal cortex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - parietal cortex - Verified - - - - - - - - - - - - - - - parietal cortex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - occipital cortex - Verified - - - - - - - - - - - - - - - occipital cortex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - temporal cortex - Verified - - - - - - - - - - - - - - - temporal cortex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - insular cortex - Verified - - - - - - - - - - - - - - - insular cortex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - cingulate cortex - Verified - - - - - - - - - - - - - - - cingulate cortex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricular zone of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - mantle zone of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - periventricular stratum of CCx (subventricular zone) - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - intermediate stratum of CCx (white matter/subplate) - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - superficial stratum of CCx (cortical plate/marginal zone) - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - layer 1 of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - layer 2 of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - layer 3 of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - layer 4 of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - layer 5 of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - layer 6 of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - sublayer 6a of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - sublayer 6b of CCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - - - retrosplenial cortex - Verified - - - - - - - - - - - - - - - retrosplenial region - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - entorhinal cortex - Verified - - - - - - - - - - - - - - - entorhinal cortex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medial pallium (hippocampal allocortex) - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - dentate gyrus - Verified - - - - - - - - - - - - - - - dentate gyrus of hippocampal formation - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - granule cell layer of the DG - Verified - - - - - - - - - - - - - - - dentate gyrus granule cell layer - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - molecular layer of the DG - Verified - - - - - - - - - - - - - - - dentate gyrus molecular layer - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - hippocampus (cortex Ammonis) - Verified - - - - - - - - - - - - - - - Ammon's horn - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - mantle zone of CA - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA1 - Verified - - - - - - - - - - - - - - - CA1 field of hippocampus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA1, stratum oriens - Verified - - - - - - - - - - - - - - - CA1 stratum oriens - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA1, stratum pyramidale - Verified - - - - - - - - - - - - - - - pyramidal layer of CA1 - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA1, stratum radiatum - Verified - - - - - - - - - - - - - - - CA1 stratum radiatum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA1, stratum lacunosum-moleculare - Verified - - - - - - - - - - - - - - - CA1 stratum lacunosum moleculare - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA2 - Verified - - - - - - - - - - - - - - - CA2 field of hippocampus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA2, stratum lacunosum-moleculare - Verified - - - - - - - - - - - - - - - CA2 stratum lacunosum moleculare - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA2, stratum oriens - Verified - - - - - - - - - - - - - - - CA2 stratum oriens - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA2, stratum pyramidale - Verified - - - - - - - - - - - - - - - pyramidal layer of CA2 - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA2, stratum radiatum - Verified - - - - - - - - - - - - - - - CA2 stratum radiatum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA3 - Verified - - - - - - - - - - - - - - - CA3 field of hippocampus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA3, stratum oriens - Verified - - - - - - - - - - - - - - - CA3 stratum oriens - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - Field CA3, stratum pyramidale - Verified - - - - - - - - - - - - - - - pyramidal layer of CA3 - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA3, stratum lucidum - Verified - - - - - - - - - - - - - - - CA3 stratum lucidum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA3, stratum radiatum - Verified - - - - - - - - - - - - - - - CA3 stratum radiatum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Field CA3, stratum lacunosum-moleculare - Verified - - - - - - - - - - - - - - - CA3 stratum lacunosum moleculare - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - induseum griseum - Verified - - - - - - - - - - - - - - - induseum griseum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricular zone of the IG - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - periventricular stratum of the IG - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - intermediate stratum of the IG - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - superficial stratum of the IG - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - pyramidal layer of IG - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - taenia tecta - Verified - - - - - - - - - - - - - - - taenia tectum of brain - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricular zone of TTe - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - mantle zone of TTe - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - periventricular stratum of TTe - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - intermediate stratum of TTe - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - superficial stratum of TTe - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - pyramidal layer of taenia tecta - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - subiculum - Verified - - - - - - - - - - - - - - - subiculum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - molecular layer of S - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - presubiculum - Verified - - - - - - - - - - - - - - - presubiculum - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - parasubiculum - Verified - - - - - - - - - - - - - - - parasubiculum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - septohippocampal nucleus - Verified - - - - - - - - - - - - - - - septohippocampal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - posterior part of anterior hypothalamic nucleus - Verified - - - - - - - - - - - - - - - anterior nucleus of hypothalamus posterior part - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - diencephalon - Verified - - - - - - - - - - - - - - - diencephalon - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - pregeniculate nucleus - Verified - - - - - - - - - - - - - - - ventral lateral geniculate nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - peripeduncular nucleus - Verified - - - - - - - - - - - - - - - peripeduncular nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - thalamus - Verified - - - - - - - - - - - - - - - dorsal plus ventral thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - medial habenular nucleus - Verified - - - - - - - - - - - - - - - medial habenular nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - dorsal tier of thalamus - Verified - - - - - - - - - - - - - - - dorsal thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - anterior paraventricular nucleus of thalamus - Verified - - - - - - - - - - - - - - - anterior paraventricular nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - centromedian nucleus - Verified - - - - - - - - - - - - - - - centromedian nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - rhomboid nucleus - Verified - - - - - - - - - - - - - - - rhomboidal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - paratenial nucleus - Verified - - - - - - - - - - - - - - - paratenial nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - paracentral nucleus - Verified - - - - - - - - - - - - - - - paracentral nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - central lateral nucleus - Verified - - - - - - - - - - - - - - - central lateral nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - anterodorsal nucleus - Verified - - - - - - - - - - - - - - - anterodorsal nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - anteroventral nucleus - Verified - - - - - - - - - - - - - - - anteroventral nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - anteromedial nucleus - Verified - - - - - - - - - - - - - - - anteromedial nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventral nuclei - Verified - - - - - - - - - - - - - - - ventral nuclear group - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - submedius thalamic nucleus - Verified - - - - - - - - - - - - - - - submedial nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - ventral anterior nucleus - Verified - - - - - - - - - - - - - - - ventral anterior nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventral lateral nucleus - Verified - - - - - - - - - - - - - - - ventral lateral nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventral posteromedial nucleus - Verified - - - - - - - - - - - - - - - ventral posteromedial nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - ventral posterolateral nucleus - Verified - - - - - - - - - - - - - - - ventral posterolateral nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lateral posterior nucleus - Verified - - - - - - - - - - - - - - - lateral posterior nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - dorsal lateral geniculate nucleus - Verified - - - - - - - - - - - - - - - dorsal lateral geniculate nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - posterior paraventricular nucleus - Verified - - - - - - - - - - - - - - - posterior periventricular nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - parafascicular nucleus - Verified - - - - - - - - - - - - - - - parafascicular nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - suprageniculate nucleus - Verified - - - - - - - - - - - - - - - suprageniculate nucleus of thalamus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - medial geniculate nucleus - Verified - - - - - - - - - - - - - - - medial geniculate body - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - pretectum - Verified - - - - - - - - - - - - - - - pretectal region - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - subcommissural organ - Verified - - - - - - - - - - - - - - - subcommissural organ - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - medial pretectal nucleus - Verified - - - - - - - - - - - - - - - medial pretectal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - principal pretectal nucleus - Verified - - - - - - - - - - - - - - - principal pretectal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - olivary pretectal nucleus - Verified - - - - - - - - - - - - - - - olivary pretectal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - dorsal terminal nucleus of the accessory optic tract - Verified - - - - - - - - - - - - - - - dorsal accessory nucleus of optic tract - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - intermediate pretectal nucleus - Verified - - - - - - - - - - - - - - - intermediate pretectal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - nucleus of Darkschewitsch - Verified - - - - - - - - - - - - - - - ventral nucleus of posterior commissure - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - red nucleus, parvicellular part - Verified - - - - - - - - - - - - - - - parvocellular part of red nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - midbrain - Verified - - - - - - - - - - - - - - - midbrain - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - mesomere 1 - Verified - - - - - - - - - - - - - - - mesomere 1 - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - colliculus superior - Verified - - - - - - - - - - - - - - - superior colliculus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - inferior colliculus - Verified - - - - - - - - - - - - - - - inferior colliculus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - central nucleus of the inferior colliculus - Verified - - - - - - - - - - - - - - - central nucleus of inferior colliculus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - red nucleus, magnocellular part - Verified - - - - - - - - - - - - - - - magnocellular part of red nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - rostral linear nucleus - Verified - - - - - - - - - - - - - - - rostral linear nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - mesomere 2 (preisthmus or caudal midbrain) - Verified - - - - - - - - - - - - - - - mesomere 2 - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - cuneiform nucleus - Verified - - - - - - - - - - - - - - - cuneiform nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - subcuneiform nucleus - Verified - - - - - - - - - - - - - - - subcuneiform nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - hindbrain - Verified - - - - - - - - - - - - - - - hindbrain - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - prepontine hindbrain - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - isthmus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellar vermis - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - rhombic lip of cerebellar vermis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventricular zone of cerebellar vermis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - mantle zone of cerebellar vermis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - periventricular stratum of cerebellar vermis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - white matter of cerebellar vermis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - intermediate stratum of cerebellar vermis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cerebellar nuclei of CbV - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - - - medial (fastigial) cerebellar nucleus - Verified - - - - - - - - - - - - - - - fastigial nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - superficial stratum of cerebellar vermis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortex of cerebellar vermis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 1 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule I - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 2 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule II - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 3 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule III - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 4 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule IV - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 5 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule V - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 6 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule VI - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 7 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule VII - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - lobule 8 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule VIII - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 9 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule IX - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lobule 10 of cerebellar vermis - Verified - - - - - - - - - - - - - - - cerebellum vermis lobule X - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - Purkinje cell layer of CbVCx - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - parabrachial complex - Verified - - - - - - - - - - - - - - - parabrachial nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - parabrachial part of the periaqueductal gray - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - medial parabrachial nucleus - Verified - - - - - - - - - - - - - - - medial parabrachial nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - lateral parabrachial nucleus - Verified - - - - - - - - - - - - - - - lateral parabrachial nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - Koelliker-Fuse nucleus - Verified - - - - - - - - - - - - - - - diffuse reticular nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - isthmic part of the periaqueductal gray - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - dorsal nucleus of the lateral lemniscus - Verified - - - - - - - - - - - - - - - dorsal nucleus of lateral lemniscus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - parabigeminal nucleus - Verified - - - - - - - - - - - - - - - parabigeminal nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - isthmic liminal part of the periaqueductal gray - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - isthmic part of mesencephalic trigeminal nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - dorsolateral isthmic part of the dorsal raphe nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - retrorubral field - Verified - - - - - - - - - - - - - - - retrorubral area of midbrain reticular nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - intermediate isthmic part of the dorsal raphe nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - substantia nigra reticulata, isthmic part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventral isthmic part of dorsal raphe nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - intermediate mantle of isBM - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - trochlear nucleus - Verified - - - - - - - - - - - - - - - trochlear nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - substantia nigra compacta, isthmic part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - interpeduncular nucleus, prodromal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - isthmic portion of paranigral nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventral tegmental area, isthmic part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - rhombomere 1 - Verified - - - - - - - - - - - - - - - rhombomere 1 - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - r1 roof plate - Verified - - - - - - - - - - - - - - - rhombomere 1 roof plate - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - rhombic lip of r1R - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - cerebellar hemisphere - Verified - - - - - - - - - - - - - - - cerebellar hemisphere - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - rhombic lip of CbH - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - cerebellar white matter - Verified - - - - - - - - - - - - - - - white matter of cerebellum - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cerebellar nuclei of CbH - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - intermediate (interpositus) cerebellar nucleus - Verified - - - - - - - - - - - - - - - cerebellum interpositus nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - posterior part of Int - Verified - - - - - - - - - - - - - - - cerebellum globose nucleus - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - noradrenergic cell group A4 - Curated - - - - - - - - - - - - - - - noradrenergic cell group A4 - - - - - Curated - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - superficial stratum of cerebellar hemisphere - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - cortex of cerebellar hemisphere - Verified - - - - - - - - - - - - - - - cerebellar cortex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - simple lobule - Verified - - - - - - - - - - - - - - - lobule simplex - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - crus 1 of the ansiform lobule - Verified - - - - - - - - - - - - - - - ansiform lobule crus I - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - crus 2 of the ansiform lobule - Verified - - - - - - - - - - - - - - - ansiform lobule crus II - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - paramedian lobule - Verified - - - - - - - - - - - - - - - paramedian lobule - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - paraflocculus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lateral wings of the dorsal raphe nucleus Verified - - - - - - - - - - - - - - paraflocculus - - + Verified https://ror.org/03cpe7c52 @@ -9044,16 +2138,16 @@ - + - - - flocculus + + + ventricles, forebrain Verified - + - + @@ -9061,13 +2155,13 @@ - + - - flocculus + + telencephalic ventricle - + Verified https://ror.org/03cpe7c52 @@ -9075,9 +2169,9 @@ - + - + @@ -9087,16 +2181,16 @@ - + - Purkinje cell layer of CbHCx + ventricles, secondary prosencephalon Verified - + Verified https://ror.org/03cpe7c52 @@ -9104,9 +2198,9 @@ - + - + @@ -9116,78 +2210,16 @@ - + - r1 part of superior vestibular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - laterodorsal tegmental nucleus - Verified - - - - - - - - - - - - - - - laterodorsal tegmental nucleus - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - pedunculopontine tegmental nucleus + ventricles, rostral secondary prosencephalon Verified - - - - - - - - - - - - - - pedunculopontine tegmental nucleus - - + Verified https://ror.org/03cpe7c52 @@ -9195,9 +2227,9 @@ - + - + @@ -9207,47 +2239,16 @@ - + - r1 part of the 'mesencephalic' trigeminal nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - locus coeruleus + ventricles, caudal secondary prosencephalon Verified - - - - - - - - - - - - - locus ceruleus - - - + Verified https://ror.org/03cpe7c52 @@ -9255,16 +2256,16 @@ - + - - - nucleus of Barrington + + + ventricles, midbrain Verified - + - + @@ -9272,42 +2273,13 @@ - + - - Barrington's nucleus - - - - - Verified - https://ror.org/03cpe7c52 + + midbrain cerebral aqueduct - - - - - - - - - - - - - - - - - - - - - r1 part of intermediate nucleus of the lateral lemniscus - Verified - - + Verified https://ror.org/03cpe7c52 @@ -9315,9 +2287,9 @@ - + - + @@ -9327,16 +2299,16 @@ - + - nucleus subcoeruleus, r1 part + ventricles, mesomere 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -9344,9 +2316,9 @@ - + - + @@ -9356,16 +2328,16 @@ - + - r1 part of dorsal raphe nucleus + ventricles, mesomere 2 (preisthmus or caudal midbrain) Verified - + Verified https://ror.org/03cpe7c52 @@ -9373,16 +2345,16 @@ - + - - - dorsal tegmental nucleus + + + ventricles, hindbrain Verified - + - + @@ -9390,42 +2362,44 @@ - + - - dorsal tegmental nucleus + + fourth ventricle - + Verified https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - core part of DTg + + + + + + ventricles, spinal cord Verified + + + + + + + + + + + + + + central canal of spinal cord + - + Verified https://ror.org/03cpe7c52 @@ -9433,9 +2407,9 @@ - + - + @@ -9445,16 +2419,16 @@ - + - shell part of DTg + r11 part of the inferior olive Verified - + Verified https://ror.org/03cpe7c52 @@ -9462,28 +2436,30 @@ - + - - - - - - - - - - - - - - - - apical interpeduncular nucleus + + + neural plate Verified + + + + + + + + + - + + + + neural plate + + + Verified https://ror.org/03cpe7c52 @@ -9491,28 +2467,30 @@ - + - - - - - - - - - - - - - - - - rhabdoid interpeduncular nucleus + + + forebrain Verified + + + + + + + + + + + + + + forebrain + - + Verified https://ror.org/03cpe7c52 @@ -9520,16 +2498,16 @@ - + - - - ventral tegmental nucleus + + + secondary prosencephalon Verified - + - + @@ -9537,13 +2515,13 @@ - + - - ventral tegmental nucleus + + secondary prosencephalon - + Verified https://ror.org/03cpe7c52 @@ -9551,16 +2529,16 @@ - + - - - anterior tegmental nucleus + + + preoptic area Verified - + - + @@ -9568,13 +2546,13 @@ - + - - anterior tegmental nucleus + + preoptic area - + Verified https://ror.org/03cpe7c52 @@ -9582,28 +2560,30 @@ - + - - - - - - - - - - - - - - - - r1 part of paramedian raphe nucleus + + + vascular organ of the lamina terminalis Verified + + + + + + + + + + + + + + supraoptic crest + - + Verified https://ror.org/03cpe7c52 @@ -9611,28 +2591,30 @@ - + - - - - - - - - - - - - - - - - r1 part of median raphe nucleus + + + medial preoptic nucleus Verified + + + + + + + + + + + + + + medial preoptic nucleus + - + Verified https://ror.org/03cpe7c52 @@ -9640,86 +2622,92 @@ - + - - - - - - - - - - - - - - - - rostral interpeduncular nucleus - Verified + + + ventrolateral preoptic nucleus + Curated + + + + + + + + + - + + + + ventrolateral preoptic nucleus + + + - Verified - https://ror.org/03cpe7c52 + Curated + https://orcid.org/0000-0001-7258-9596 - + - - - - - - - - - - - - - - - - dorsomedial interpeduncular nucleus + + + supraoptic nucleus Verified + + + + + + + + + + + + + + supraoptic nucleus + - + Verified https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - dorsolateral interpeduncular nucleus + + + + + + + optic fiber layer Verified + + + + + + + + + + + + + + nerve fiber layer of retina + - + Verified https://ror.org/03cpe7c52 @@ -9727,28 +2715,30 @@ - + - - - - - - - - - - - - - - - - rostrolateral interpeduncular nucleus + + + suprachiasmatic nucleus Verified + + + + + + + + + + + + + + suprachiasmatic nucleus + - + Verified https://ror.org/03cpe7c52 @@ -9756,28 +2746,30 @@ - + - - - - - - - - - - - - - - - - caudal interpeduncular nucleus + + + anterior hypothalamic nucleus Verified + + + + + + + + + + + + + + anterior nucleus of hypothalamus + - + Verified https://ror.org/03cpe7c52 @@ -9785,28 +2777,30 @@ - + - - - - - - - - - - - - - - - - caudodorsomedial interpeduncular nucleus + + + tuber cinereum area Verified + + + + + + + + + + + + + + tuber cinereum + - + Verified https://ror.org/03cpe7c52 @@ -9814,28 +2808,30 @@ - + - - - - - - - - - - - - - - - - caudodorsolateral interpeduncular nucleus + + + ventromedial hypothalamic nucleus Verified + + + + + + + + + + + + + + ventromedial nucleus of hypothalamus + - + Verified https://ror.org/03cpe7c52 @@ -9843,28 +2839,30 @@ - + - - - - - - - - - - - - - - - - caudolateral interpeduncular nucleus + + + median eminence Verified + + + + + + + + + + + + + + median eminence of neurohypophysis + - + Verified https://ror.org/03cpe7c52 @@ -9872,16 +2870,16 @@ - + - - - r1 floor plate + + + infundibulum Verified - + - + @@ -9889,13 +2887,13 @@ - + - - rhombomere 1 floor plate + + pituitary stalk - + Verified https://ror.org/03cpe7c52 @@ -9903,16 +2901,16 @@ - + - - - rhombomere 2 + + + neurohypophysis Verified - + - + @@ -9920,13 +2918,13 @@ - + - - rhombomere 2 + + neurohypophysis - + Verified https://ror.org/03cpe7c52 @@ -9934,16 +2932,16 @@ - + - - - r2 roof plate + + + dorsal premammillary nucleus Verified - + - + @@ -9951,13 +2949,13 @@ - + - - rhombomere 2 roof plate + + dorsal premammillary nucleus - + Verified https://ror.org/03cpe7c52 @@ -9965,28 +2963,30 @@ - + - - - - - - - - - - - - - - - - r2 part of dorsal cochlear nucleus + + + mammillary area Verified + + + + + + + + + + + + + + mammillary body + - + Verified https://ror.org/03cpe7c52 @@ -9994,28 +2994,30 @@ - + - - - - - - - - - - - - - - - - r2 part of anteroventral cochlear nucleus + + + medial mammillary nucleus Verified + + + + + + + + + + + + + + medial mammillary nucleus + - + Verified https://ror.org/03cpe7c52 @@ -10023,28 +3025,30 @@ - + - - - - - - - - - - - - - - - - r2 part of superior vestibular nucleus + + + medial part of MM Verified + + + + + + + + + + + + + + medial part of medial mammillary nucleus + - + Verified https://ror.org/03cpe7c52 @@ -10052,16 +3056,16 @@ - + - - - noradrenergic cell group A7 - Curated + + + lateral part of MM + Verified - + - + @@ -10069,42 +3073,44 @@ - + - - noradrenergic cell group A7 + + lateral part of medial mammillary nucleus - + - Curated - https://orcid.org/0000-0001-7258-9596 + Verified + https://ror.org/03cpe7c52 - + - - - - - - - - - - - - - - - - r2 part of nucleus subcoeruleus + + + lateral mammillary nucleus Verified + + + + + + + + + + + + + + lateral mammillary nucleus + - + Verified https://ror.org/03cpe7c52 @@ -10112,9 +3118,9 @@ - + - + @@ -10124,16 +3130,16 @@ - + - r2 part of ventral lateral lemniscal nucleus + subfornical organ, circumventricular ependymal specialization Verified - + Verified https://ror.org/03cpe7c52 @@ -10141,9 +3147,9 @@ - + - + @@ -10153,16 +3159,16 @@ - + - r2 part of paramedian raphe nucleus + subfornical organ, periventricular part Verified - + Verified https://ror.org/03cpe7c52 @@ -10170,16 +3176,16 @@ - + - - - nucleus incertus + + + subpallium Verified - + - + @@ -10187,13 +3193,13 @@ - + - - nucleus incertus + + ventral part of telencephalon - + Verified https://ror.org/03cpe7c52 @@ -10201,9 +3207,9 @@ - + - + @@ -10213,16 +3219,16 @@ - + - r2 part of prepontine raphe nucleus + lateral septal nucleus, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -10230,9 +3236,9 @@ - + - + @@ -10242,16 +3248,16 @@ - + - r2 part of median raphe nucleus + lateral septal nucleus, intermedio-ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -10259,16 +3265,16 @@ - + - - - r2 floor plate + + + septohypothalamic nucleus Verified - + - + @@ -10276,13 +3282,13 @@ - + - - rhombomere 2 floor plate + + septohypothalamic nucleus - + Verified https://ror.org/03cpe7c52 @@ -10290,9 +3296,9 @@ - + - + @@ -10302,47 +3308,16 @@ - + - pontine hindbrain - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - rhombomere 3 + vertical nucleus of the diagonal band Verified - - - - - - - - - - - - - - rhombomere 3 - - + Verified https://ror.org/03cpe7c52 @@ -10350,16 +3325,16 @@ - + - - - r3 roof plate + + + medial septal nucleus Verified - + - + @@ -10367,13 +3342,13 @@ - + - - rhombomere 3 roof plate + + medial septal nucleus - + Verified https://ror.org/03cpe7c52 @@ -10381,9 +3356,9 @@ - + - + @@ -10393,16 +3368,16 @@ - + - r3 part of dorsal cochlear nucleus + lateral septal nucleus, intermediate part, periventricular Verified - + Verified https://ror.org/03cpe7c52 @@ -10410,9 +3385,9 @@ - + - + @@ -10422,16 +3397,16 @@ - + - r3 part of anteroventral cochlear nucleus + lateral septal nucleus, intermedio-intermediate part Verified - + Verified https://ror.org/03cpe7c52 @@ -10439,9 +3414,9 @@ - + - + @@ -10451,16 +3426,78 @@ - + - r3 part of lateral vestibular nucleus + lateral septal nucleus, dorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + triangular septal nucleus + Verified + + + + + + + + + + + + + + + triangular septal nucleus + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + septofimbrial nucleus Verified + + + + + + + + + - + + + + septofimbrial nucleus + + + Verified https://ror.org/03cpe7c52 @@ -10468,9 +3505,9 @@ - + - + @@ -10480,16 +3517,16 @@ - + - r3 part of magnocellular medial vestibular nucleus + lateral septal nucleus, intermedio-dorsal part Verified - + Verified https://ror.org/03cpe7c52 @@ -10497,9 +3534,9 @@ - + - + @@ -10509,16 +3546,16 @@ - + - r3 part of parvicellular medial vestibular nucleus + bed nucleus of the stria terminalis, medioseptal division Verified - + Verified https://ror.org/03cpe7c52 @@ -10526,9 +3563,9 @@ - + - + @@ -10538,16 +3575,16 @@ - + - r3 part of ventral lateral lemniscal nucleus + nucleus of the stria terminalis, medial division, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -10555,9 +3592,9 @@ - + - + @@ -10567,16 +3604,16 @@ - + - r3 part of lateral pontine nuclei + nucleus of the stria terminalis, medial division, anterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -10584,9 +3621,9 @@ - + - + @@ -10596,16 +3633,47 @@ - + - r3 part of preabducens central gray + substantia innominata/basal nucleus, transitional part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + bed nucleus of the anterior commissure Verified + + + + + + + + + + + + + + nucleus of anterior commissure + - + Verified https://ror.org/03cpe7c52 @@ -10613,9 +3681,9 @@ - + - + @@ -10625,16 +3693,16 @@ - + - r3 pontine raphe nucleus + horizontal nucleus of the diagonal band, transitional part Verified - + Verified https://ror.org/03cpe7c52 @@ -10642,9 +3710,9 @@ - + - + @@ -10654,16 +3722,16 @@ - + - r3 part of reticulotegmental nucleus, shell portion + bed nucleus of the stria terminalis, lateroseptal division Verified - + Verified https://ror.org/03cpe7c52 @@ -10671,9 +3739,9 @@ - + - + @@ -10683,16 +3751,16 @@ - + - r3 part of reticulotegmental nucleus, core portion + nucleus of the stria terminalis, lateral division, intermediate part Verified - + Verified https://ror.org/03cpe7c52 @@ -10700,9 +3768,9 @@ - + - + @@ -10712,16 +3780,16 @@ - + - r3 part of medial pontine nuclei + septopallidal part of the olfactory tuberculum Verified - + Verified https://ror.org/03cpe7c52 @@ -10729,16 +3797,16 @@ - + - - - r3 floor plate + + + island of Calleja major Verified - + - + @@ -10746,13 +3814,13 @@ - + - - rhombomere 3 floor plate + + isla magna of Calleja - + Verified https://ror.org/03cpe7c52 @@ -10760,16 +3828,16 @@ - + - - - rhombomere 4 + + + accumbens nucleus, core domain Verified - + - + @@ -10777,13 +3845,13 @@ - + - - rhombomere 4 + + core of nucleus accumbens - + Verified https://ror.org/03cpe7c52 @@ -10791,16 +3859,16 @@ - + - - - r4 roof plate + + + accumbens nucleus, shell domain Verified - + - + @@ -10808,42 +3876,13 @@ - + - - rhombomere 4 roof plate - - - - - Verified - https://ror.org/03cpe7c52 + + shell of nucleus accumbens - - - - - - - - - - - - - - - - - - - - - r4 part of dorsal cochlear nucleus - Verified - - + Verified https://ror.org/03cpe7c52 @@ -10851,9 +3890,9 @@ - + - + @@ -10863,16 +3902,16 @@ - + - r4 part of posteroventral cochlear nucleus + septostriatal part of the olfactory tuberculum Verified - + Verified https://ror.org/03cpe7c52 @@ -10880,9 +3919,9 @@ - + - + @@ -10892,16 +3931,16 @@ - + - r4 part of lateral vestibular nucleus + central subpallium (classic basal ganglia) Verified - + Verified https://ror.org/03cpe7c52 @@ -10909,9 +3948,9 @@ - + - + @@ -10921,16 +3960,16 @@ - + - r4 part of magnocellular medial vestibular nucleus + bed nucleus of the stria terminalis, mediocentral division Verified - + Verified https://ror.org/03cpe7c52 @@ -10938,9 +3977,9 @@ - + - + @@ -10950,16 +3989,16 @@ - + - r4 part of parvocellular medial vestibular nucleus + substantia innominata/basal nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -10967,16 +4006,16 @@ - + - - - supragenual nucleus + + + internal globus pallidus Verified - + - + @@ -10984,13 +4023,13 @@ - + - - supragenual nucleus of pontine tegmentum + + medial globus pallidus - + Verified https://ror.org/03cpe7c52 @@ -10998,9 +4037,9 @@ - + - + @@ -11010,16 +4049,16 @@ - + - r4 part of ventral lateral lemniscal nucleus + horizontal nucleus of the diagonal band Verified - + Verified https://ror.org/03cpe7c52 @@ -11027,9 +4066,9 @@ - + - + @@ -11039,16 +4078,16 @@ - + - r4 part of lateral pontine nuclei + magnocellular diagonal band nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -11056,28 +4095,30 @@ - + - - - - - - - - - - - - - - - - r4 part of preabducens central gray + + + pallidum (globus pallidus complex) Verified + + + + + + + + + - + + + + pallidum + + + Verified https://ror.org/03cpe7c52 @@ -11085,9 +4126,9 @@ - + - + @@ -11097,16 +4138,16 @@ - + - r4 part of reticulotegmental nucleus, shell portion + bed nucleus of the stria terminalis, laterocentral division Verified - + Verified https://ror.org/03cpe7c52 @@ -11114,9 +4155,9 @@ - + - + @@ -11126,16 +4167,47 @@ - + - r4 part of reticulotegmental nucleus, core portion + external globus pallidum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + ventral pallidum Verified + + + + + + + + + + + + + + ventral pallidum + - + Verified https://ror.org/03cpe7c52 @@ -11143,9 +4215,9 @@ - + - + @@ -11155,16 +4227,16 @@ - + - r4 part of pontine raphe cell population + pallidal part of olfactory tuberculum Verified - + Verified https://ror.org/03cpe7c52 @@ -11172,9 +4244,9 @@ - + - + @@ -11184,16 +4256,16 @@ - + - r4 part of medial pontine nuclei + pallidal islands of Calleja Verified - + Verified https://ror.org/03cpe7c52 @@ -11201,16 +4273,16 @@ - + - - - r4 floor plate + + + striatum (corpus striatum) Verified - + - + @@ -11218,13 +4290,13 @@ - + - - rhombomere 4 floor plate + + striatum - + Verified https://ror.org/03cpe7c52 @@ -11232,28 +4304,30 @@ - + - - - - - - - - - - - - - - - - pontomedullary hindbrain + + + caudate nucleus Verified + + + + + + + + + + + + + + caudate nucleus + - + Verified https://ror.org/03cpe7c52 @@ -11261,16 +4335,17 @@ - + - - - rhombomere 5 + + + putamen + putamen Verified - + - + @@ -11278,13 +4353,13 @@ - + - - rhombomere 5 + + putamen - + Verified https://ror.org/03cpe7c52 @@ -11292,16 +4367,17 @@ - + - - - r5 roof plate + + + ventral striatum + ventral striatum Verified - + - + @@ -11309,13 +4385,13 @@ - + - - rhombomere 5 roof plate + + ventral striatum - + Verified https://ror.org/03cpe7c52 @@ -11323,9 +4399,9 @@ - + - + @@ -11335,16 +4411,16 @@ - + - r5 part of dorsal cochlear nucleus + striatal part of olfactory tuberculum Verified - + Verified https://ror.org/03cpe7c52 @@ -11352,9 +4428,9 @@ - + - + @@ -11364,16 +4440,16 @@ - + - r5 part of posteroventral cochlear nucleus + striatal islands of Calleja Verified - + Verified https://ror.org/03cpe7c52 @@ -11381,9 +4457,9 @@ - + - + @@ -11393,16 +4469,16 @@ - + - r5 part of spinal vestibular nucleus + central amygdalar nucleus, lateral part Verified - + Verified https://ror.org/03cpe7c52 @@ -11410,9 +4486,9 @@ - + - + @@ -11422,16 +4498,47 @@ - + - r5 part of magnocellular medial vestibular nucleus + central amygdalar nucleus, capsular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + intercalated amygdaloid nuclei Verified + + + + + + + + + + + + + + intercalated amygdaloid nuclei + - + Verified https://ror.org/03cpe7c52 @@ -11439,9 +4546,9 @@ - + - + @@ -11451,16 +4558,16 @@ - + - r5 part of parvocellular medial vestibular nucleus + bed nucleus of stria terminalis, lateral amygdaloid division Verified - + Verified https://ror.org/03cpe7c52 @@ -11468,9 +4575,9 @@ - + - + @@ -11480,16 +4587,16 @@ - + - superior salivatory parasympathetic nucleus + central amygdaloid nucleus, medial part Verified - + Verified https://ror.org/03cpe7c52 @@ -11497,9 +4604,9 @@ - + - + @@ -11509,78 +4616,16 @@ - + - r5 part of ventral lateral lemniscal nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - dorsal periolivary nucleus - Verified - - - - - - - - - - - - - - - dorsal periolivary nucleus - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - lateral superior olive + bed nucleus of the stria terminalis, medial amygdaloid division Verified - - - - - - - - - - - - - - lateral superior olivary nucleus - - + Verified https://ror.org/03cpe7c52 @@ -11588,30 +4633,28 @@ - + - - - medial superior olive + + + + + + + + + + + + + + + + medial amygdala, posterodorsal part Verified - - - - - - - - - - - - - - medial superior olivary nucleus - - + Verified https://ror.org/03cpe7c52 @@ -11619,30 +4662,28 @@ - + - - - lateral trapezoid nucleus + + + + + + + + + + + + + + + + medial amygdala, posteroventral part Verified - - - - - - - - - - - - - - lateral nucleus of trapezoid body - - + Verified https://ror.org/03cpe7c52 @@ -11650,30 +4691,28 @@ - + - - - abducens motor nucleus + + + + + + + + + + + + + + + + medial amygdala, anterodorsal part Verified - - - - - - - - - - - - - - abducens nucleus - - + Verified https://ror.org/03cpe7c52 @@ -11681,9 +4720,9 @@ - + - + @@ -11693,16 +4732,47 @@ - + - para-abducens nucleus + medial amygdala, anteroventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + pallium Verified + + + + + + + + + + + + + + pallium + - + Verified https://ror.org/03cpe7c52 @@ -11710,28 +4780,30 @@ - + - - - - - - - - - - - - - - - - retropontine reticular area + + + ventral pallium Verified + + + + + + + + + - + + + + ventral pallium + + + Verified https://ror.org/03cpe7c52 @@ -11739,9 +4811,9 @@ - + - + @@ -11751,16 +4823,16 @@ - + - nucleus raphe magnus, r5 part + olfactory bulb, principal part Verified - + Verified https://ror.org/03cpe7c52 @@ -11768,16 +4840,16 @@ - + - - - medial trapezoid nucleus + + + OB granular layer Verified - + - + @@ -11785,13 +4857,13 @@ - + - - medial nucleus of trapezoid body + + olfactory bulb granule cell layer - + Verified https://ror.org/03cpe7c52 @@ -11799,16 +4871,16 @@ - + - - - r5 floor plate + + + OB inner plexiform layer Verified - + - + @@ -11816,13 +4888,13 @@ - + - - rhombomere 5 floor plate + + olfactory bulb internal plexiform layer - + Verified https://ror.org/03cpe7c52 @@ -11830,16 +4902,16 @@ - + - - - rhombomere 6 + + + OB mitral cell layer Verified - + - + @@ -11847,13 +4919,13 @@ - + - - rhombomere 6 + + olfactory bulb mitral cell layer - + Verified https://ror.org/03cpe7c52 @@ -11861,16 +4933,16 @@ - + - - - r6 roof plate + + + OB outer plexiform layer Verified - + - + @@ -11878,13 +4950,13 @@ - + - - rhombomere 6 roof plate + + olfactory bulb external plexiform layer - + Verified https://ror.org/03cpe7c52 @@ -11892,9 +4964,9 @@ - + - + @@ -11904,16 +4976,16 @@ - + - r6 part of dorsal cochlear nucleus + anterior olfactory area, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -11921,9 +4993,9 @@ - + - + @@ -11933,16 +5005,16 @@ - + - r6 part of posteroventral cochlear nucleus + ventropallial prepiriform area Verified - + Verified https://ror.org/03cpe7c52 @@ -11950,9 +5022,9 @@ - + - + @@ -11962,16 +5034,16 @@ - + - r6 part of spinal vestibular nucleus + bed nucleus of the external capsule Verified - + Verified https://ror.org/03cpe7c52 @@ -11979,9 +5051,9 @@ - + - + @@ -11991,16 +5063,16 @@ - + - r6 part of magnocellular medial vestibular nucleus + dorsal endopiriform nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -12008,9 +5080,9 @@ - + - + @@ -12020,16 +5092,16 @@ - + - r6 part of parvocellular medial vestibular nucleus + ventral endopiriform nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -12037,9 +5109,9 @@ - + - + @@ -12049,16 +5121,16 @@ - + - r6 part of spinal trigeminal nucleus, pars oralis + ventropallial amygdalopiriform area Verified - + Verified https://ror.org/03cpe7c52 @@ -12066,16 +5138,16 @@ - + - - - inferior salivatory parasympathetic nucleus + + + lateral amygdaloid nucleus Verified - + - + @@ -12083,13 +5155,13 @@ - + - - inferior salivatory nucleus + + lateral amygdaloid nucleus - + Verified https://ror.org/03cpe7c52 @@ -12097,16 +5169,16 @@ - + - - - facial motor nucleus + + + amygdalohippocampal area Verified - + - + @@ -12114,13 +5186,13 @@ - + - - facial motor nucleus + + amygdalohippocampal area - + Verified https://ror.org/03cpe7c52 @@ -12128,16 +5200,16 @@ - + - - - retrotrapezoid nucleus + + + basomedial amygdaloid nucleus, anterior part Verified - + - + @@ -12145,13 +5217,13 @@ - + - - retrotrapezoid nucleus + + medial part of basal amygdaloid nucleus - + Verified https://ror.org/03cpe7c52 @@ -12159,9 +5231,9 @@ - + - + @@ -12171,16 +5243,16 @@ - + - r6 part of paragigantocellular nucleus + basomedial amygdaloid nucleus, posterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -12188,28 +5260,30 @@ - + - - - - - - - - - - - - - - - - r6 part of nucleus prepositus + + + posteromedial cortical amygdaloid area Verified + + + + + + + + + + + + + + posteromedial cortical amygdaloid nucleus + - + Verified https://ror.org/03cpe7c52 @@ -12217,28 +5291,30 @@ - + - - - - - - - - - - - - - - - - raphe magnus nucleus, r6 part + + + nucleus of the lateral olfactory tract Verified + + + + + + + + + + + + + + nucleus of lateral olfactory tract + - + Verified https://ror.org/03cpe7c52 @@ -12246,9 +5322,9 @@ - + - + @@ -12258,16 +5334,16 @@ - + - r6 part of gigantocellular reticular area + nucleus of the accessory olfactory tract Verified - + Verified https://ror.org/03cpe7c52 @@ -12275,28 +5351,30 @@ - + - - - - - - - - - - - - - - - - r6 part of nucleus raphe pallidus + + + lateral pallium Verified + + + + + + + + + + + + + + lateral pallium + - + Verified https://ror.org/03cpe7c52 @@ -12304,16 +5382,16 @@ - + - - - r6 floor plate + + + accessory olfactory bulb Verified - + - + @@ -12321,13 +5399,13 @@ - + - - rhombomere 6 floor plate + + accessory olfactory bulb - + Verified https://ror.org/03cpe7c52 @@ -12335,16 +5413,16 @@ - + - - - medullary hindbrain (medulla) + + + AOB, granular layer Verified - + - + @@ -12352,13 +5430,13 @@ - + - - medulla oblongata + + accessory olfactory bulb granule cell layer - + Verified https://ror.org/03cpe7c52 @@ -12366,16 +5444,16 @@ - + - - - rhombomere 7 + + + AOB, internal plexiform layer Verified - + - + @@ -12383,13 +5461,13 @@ - + - - rhombomere 7 + + accessory olfactory bulb internal plexiform layer - + Verified https://ror.org/03cpe7c52 @@ -12397,16 +5475,16 @@ - + - - - r7 roof plate + + + AOB, mitral cell layer Verified - + - + @@ -12414,13 +5492,13 @@ - + - - rhombomere 7 roof plate + + accessory olfactory bulb mitral cell layer - + Verified https://ror.org/03cpe7c52 @@ -12428,57 +5506,30 @@ - + - - - - - - - - - - - - - - - - r7 part of the dorsal cochlear nucleus + + + AOB, outer plexiform layer Verified + + + + + + + + + - - - Verified - https://ror.org/03cpe7c52 + + + + accessory olfactory bulb external plexiform layer - - - - - - - - - - - - - - - - - - - - - r7 part of the posteroventral cochlear nucleus - Verified - - + Verified https://ror.org/03cpe7c52 @@ -12486,57 +5537,30 @@ - + - - - - - - - - - - - - - - - - r7 part of spinal vestibular nucleus + + + AOB, glomerular layer Verified + + + + + + + + + - - - Verified - https://ror.org/03cpe7c52 + + + + accessory olfactory bulb glomerular layer - - - - - - - - - - - - - - - - - - - - - r7 part of parvocellular medial vestibular nucleus - Verified - - + Verified https://ror.org/03cpe7c52 @@ -12544,9 +5568,9 @@ - + - + @@ -12556,16 +5580,16 @@ - + - r7 part of spinal trigeminal nucleus, interpolar part + anterior olfactory area, dorsal part Verified - + Verified https://ror.org/03cpe7c52 @@ -12573,9 +5597,9 @@ - + - + @@ -12585,16 +5609,16 @@ - + - r7 part of paragigantocellular nucleus + lateropallial prepiriform area Verified - + Verified https://ror.org/03cpe7c52 @@ -12602,57 +5626,30 @@ - + - - - - - - - - - - - - - - - - r7 part of nucleus prepositus + + + claustrum Verified + + + + + + + + + - - - Verified - https://ror.org/03cpe7c52 + + + + claustrum of brain - - - - - - - - - - - - - - - - - - - - - r7 portion of the hypoglossal motor nucleus - Verified - - + Verified https://ror.org/03cpe7c52 @@ -12660,9 +5657,9 @@ - + - + @@ -12672,16 +5669,16 @@ - + - r7 part of the nucleus of Roller + lateropallial amygdalopiriform area Verified - + Verified https://ror.org/03cpe7c52 @@ -12689,9 +5686,9 @@ - + - + @@ -12701,16 +5698,16 @@ - + - r7 raphe obscurus cell population + basolateral amygdaloid nucleus, anterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -12718,9 +5715,9 @@ - + - + @@ -12730,16 +5727,16 @@ - + - r7 part of gigantocellular reticular area + basolateral amygdaloid nucleus, posterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -12747,9 +5744,9 @@ - + - + @@ -12759,16 +5756,16 @@ - + - r7 raphe pallidus cell population + basolateral amygdaloid nucleus, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -12776,16 +5773,16 @@ - + - - - r7 floor plate + + + amygdalopiriform area Verified - + - + @@ -12793,13 +5790,13 @@ - + - - rhombomere 7 floor plate + + amygdalopiriform transition area - + Verified https://ror.org/03cpe7c52 @@ -12807,16 +5804,16 @@ - + - - - rhombomere 8 + + + posterolateral cortical amygdaloid area Verified - + - + @@ -12824,13 +5821,13 @@ - + - - rhombomere 8 + + posterolateral cortical amygdaloid nucleus - + Verified https://ror.org/03cpe7c52 @@ -12838,16 +5835,16 @@ - + - - - r8 roof plate + + + anterior cortical amygdaloid area Verified - + - + @@ -12855,13 +5852,13 @@ - + - - rhombomere 8 roof plate + + anterior cortical amygdaloid nucleus - + Verified https://ror.org/03cpe7c52 @@ -12869,9 +5866,9 @@ - + - + @@ -12881,16 +5878,16 @@ - + - r8 part of spinal vestibular nucleus + dorsal pallium/isocortex Verified - + Verified https://ror.org/03cpe7c52 @@ -12898,57 +5895,30 @@ - + - - - - - - - - - - - - - - - - r8 part of parvocellular medial vestibular nucleus + + + frontal cortex Verified + + + + + + + + + - - - Verified - https://ror.org/03cpe7c52 + + + + frontal cortex - - - - - - - - - - - - - - - - - - - - - r8 part of spinal trigeminal nucleus, interpolar part - Verified - - + Verified https://ror.org/03cpe7c52 @@ -12956,57 +5926,30 @@ - + - - - - - - - - - - - - - - - - r8 part of lateral reticular nucleus + + + parietal cortex Verified + + + + + + + + + - - - Verified - https://ror.org/03cpe7c52 + + + + parietal cortex - - - - - - - - - - - - - - - - - - - - - r8 part of nucleus intercalatus Staderini - Verified - - + Verified https://ror.org/03cpe7c52 @@ -13014,28 +5957,30 @@ - + - - - - - - - - - - - - - - - - r8 part of the paragigantocellular nucleus + + + occipital cortex Verified + + + + + + + + + + + + + + occipital cortex + - + Verified https://ror.org/03cpe7c52 @@ -13043,28 +5988,30 @@ - + - - - - - - - - - - - - - - - - r8 part of nucleus prepositus + + + temporal cortex Verified + + + + + + + + + + + + + + temporal cortex + - + Verified https://ror.org/03cpe7c52 @@ -13072,28 +6019,30 @@ - + - - - - - - - - - - - - - - - - r8 portion of the hypoglossal motor nucleus + + + insular cortex Verified + + + + + + + + + + + + + + insular cortex + - + Verified https://ror.org/03cpe7c52 @@ -13101,28 +6050,30 @@ - + - - - - - - - - - - - - - - - - r8 part of nucleus of Roller + + + cingulate cortex Verified + + + + + + + + + + + + + + cingulate cortex + - + Verified https://ror.org/03cpe7c52 @@ -13130,9 +6081,9 @@ - + - + @@ -13142,16 +6093,16 @@ - + - r8 raphe obscurus cell population + ventricular zone of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13159,9 +6110,9 @@ - + - + @@ -13171,16 +6122,16 @@ - + - r8 part of gigantocellular reticular area + mantle zone of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13188,9 +6139,9 @@ - + - + @@ -13200,16 +6151,16 @@ - + - r8 raphe pallidus cell population + periventricular stratum of CCx (subventricular zone) Verified - + Verified https://ror.org/03cpe7c52 @@ -13217,9 +6168,9 @@ - + - + @@ -13229,78 +6180,16 @@ - + - r8 part of inferior olive - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - r8 floor plate - Verified - - - - - - - - - - - - - - - rhombomere 8 floor plate - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - rhombomere 9 + intermediate stratum of CCx (white matter/subplate) Verified - - - - - - - - - - - - - rhombomere 9 - - - + Verified https://ror.org/03cpe7c52 @@ -13308,9 +6197,9 @@ - + - + @@ -13320,16 +6209,16 @@ - + - r9 part of spinal vestibular nucleus + superficial stratum of CCx (cortical plate/marginal zone) Verified - + Verified https://ror.org/03cpe7c52 @@ -13337,9 +6226,9 @@ - + - + @@ -13349,16 +6238,16 @@ - + - r9 part of parvocellular medial vestibular nucleus + layer 1 of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13366,9 +6255,9 @@ - + - + @@ -13378,16 +6267,16 @@ - + - r9 part of spinal trigeminal nucleus, interpolar part + layer 2 of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13395,9 +6284,9 @@ - + - + @@ -13407,16 +6296,16 @@ - + - r9 part of nucleus gracilis + layer 3 of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13424,9 +6313,9 @@ - + - + @@ -13436,16 +6325,16 @@ - + - r9 part of the lateral reticular nucleus + layer 4 of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13453,9 +6342,9 @@ - + - + @@ -13465,16 +6354,16 @@ - + - r9 part of nucleus intercalatus Staderini + layer 5 of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13482,9 +6371,9 @@ - + - + @@ -13494,16 +6383,16 @@ - + - r9 part of paragigantocellular nucleus + layer 6 of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13511,9 +6400,9 @@ - + - + @@ -13523,16 +6412,16 @@ - + - r9 portion of the hypoglossal motor nucleus + sublayer 6a of CCx Verified - + Verified https://ror.org/03cpe7c52 @@ -13540,9 +6429,9 @@ - + - + @@ -13552,16 +6441,78 @@ - + - r9 part of nucleus of Roller + sublayer 6b of CCx + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + retrosplenial cortex + Verified + + + + + + + + + + + + + + + retrosplenial region + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + entorhinal cortex Verified + + + + + + + + + + + + + + entorhinal cortex + - + Verified https://ror.org/03cpe7c52 @@ -13569,9 +6520,9 @@ - + - + @@ -13581,45 +6532,140 @@ - + - r9 raphe obscurus cell population + medial pallium (hippocampal allocortex) + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + dentate gyrus + Verified + + + + + + + + + + + + + + + dentate gyrus of hippocampal formation + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + granule cell layer of the DG + Verified + + + + + + + + + + + + + + + dentate gyrus granule cell layer + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + molecular layer of the DG + Verified + + + + + + + + + + + + + + + dentate gyrus molecular layer + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + hippocampus (cortex Ammonis) Verified + + + + + + + + + - - - Verified - https://ror.org/03cpe7c52 + + + + Ammon's horn - - - - - - - - - - - - - - - - - - - - - r9 part of gigantocellular reticular area - Verified - - + Verified https://ror.org/03cpe7c52 @@ -13627,9 +6673,9 @@ - + - + @@ -13639,16 +6685,16 @@ - + - r9 raphe pallidus cell population + mantle zone of CA Verified - + Verified https://ror.org/03cpe7c52 @@ -13656,28 +6702,30 @@ - + - - - - - - - - - - - - - - - - r9 part of the inferior olive + + + Field CA1 Verified + + + + + + + + + + + + + + CA1 field of hippocampus + - + Verified https://ror.org/03cpe7c52 @@ -13685,16 +6733,16 @@ - + - - - rhombomere 10 + + + Field CA1, stratum oriens Verified - + - + @@ -13702,13 +6750,13 @@ - + - - rhombomere 10 + + CA1 stratum oriens - + Verified https://ror.org/03cpe7c52 @@ -13716,28 +6764,30 @@ - + - - - - - - - - - - - - - - - - r10 part of spinal vestibular nucleus + + + Field CA1, stratum pyramidale Verified + + + + + + + + + + + + + + pyramidal layer of CA1 + - + Verified https://ror.org/03cpe7c52 @@ -13745,28 +6795,30 @@ - + - - - - - - - - - - - - - - - - r10 part of parvocellular medial vestibular nucleus + + + Field CA1, stratum radiatum Verified + + + + + + + + + + + + + + CA1 stratum radiatum + - + Verified https://ror.org/03cpe7c52 @@ -13774,28 +6826,30 @@ - + - - - - - - - - - - - - - - - - r10 part of spinal trigeminal nucleus, caudal part + + + Field CA1, stratum lacunosum-moleculare Verified + + + + + + + + + + + + + + CA1 stratum lacunosum moleculare + - + Verified https://ror.org/03cpe7c52 @@ -13803,28 +6857,30 @@ - + - - - - - - - - - - - - - - - - r10 part of nucleus gracilis + + + Field CA2 Verified + + + + + + + + + + + + + + CA2 field of hippocampus + - + Verified https://ror.org/03cpe7c52 @@ -13832,28 +6888,30 @@ - + - - - - - - - - - - - - - - - - r10 part of nucleus intercalatus Staderini + + + Field CA2, stratum lacunosum-moleculare Verified + + + + + + + + + + + + + + CA2 stratum lacunosum moleculare + - + Verified https://ror.org/03cpe7c52 @@ -13861,28 +6919,30 @@ - + - - - - - - - - - - - - - - - - r10 portion of the hypoglossal motor nucleus + + + Field CA2, stratum oriens Verified + + + + + + + + + + + + + + CA2 stratum oriens + - + Verified https://ror.org/03cpe7c52 @@ -13890,28 +6950,30 @@ - + - - - - - - - - - - - - - - - - r10 part of nucleus of Roller + + + Field CA2, stratum pyramidale Verified + + + + + + + + + - + + + + pyramidal layer of CA2 + + + Verified https://ror.org/03cpe7c52 @@ -13919,28 +6981,30 @@ - + - - - - - - - - - - - - - - - - r10 raphe obscurus cell population + + + Field CA2, stratum radiatum Verified + + + + + + + + + + + + + + CA2 stratum radiatum + - + Verified https://ror.org/03cpe7c52 @@ -13948,28 +7012,30 @@ - + - - - - - - - - - - - - - - - - r10 part of gigantocellular reticular area + + + Field CA3 Verified + + + + + + + + + + + + + + CA3 field of hippocampus + - + Verified https://ror.org/03cpe7c52 @@ -13977,28 +7043,30 @@ - + - - - - - - - - - - - - - - - - r10 part of ventral gigangocellular reticular area + + + Field CA3, stratum oriens Verified + + + + + + + + + + + + + + CA3 stratum oriens + - + Verified https://ror.org/03cpe7c52 @@ -14006,28 +7074,30 @@ - + - - - - - - - - - - - - - - - - r10 raphe pallidus cell population + + + Field CA3, stratum pyramidale Verified + + + + + + + + + + + + + + pyramidal layer of CA3 + - + Verified https://ror.org/03cpe7c52 @@ -14035,28 +7105,30 @@ - + - - - - - - - - - - - - - - - - r10 part of the inferior olive + + + Field CA3, stratum lucidum Verified + + + + + + + + + + + + + + CA3 stratum lucidum + - + Verified https://ror.org/03cpe7c52 @@ -14064,16 +7136,16 @@ - + - - - rhombomere 11 + + + Field CA3, stratum radiatum Verified - + - + @@ -14081,13 +7153,13 @@ - + - - rhombomere 11 + + CA3 stratum radiatum - + Verified https://ror.org/03cpe7c52 @@ -14095,57 +7167,61 @@ - + - - - - - - - - - - - - - - - - r11 part of spinal trigeminal nucleus, caudal part + + + Field CA3, stratum lacunosum-moleculare Verified + + + + + + + + + - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - r11 part of nucleus gracilis + + + + CA3 stratum lacunosum moleculare + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + induseum griseum Verified + + + + + + + + + + + + + + induseum griseum + - + Verified https://ror.org/03cpe7c52 @@ -14153,9 +7229,9 @@ - + - + @@ -14165,16 +7241,16 @@ - + - mantle zone of r11Lim + ventricular zone of the IG Verified - + Verified https://ror.org/03cpe7c52 @@ -14182,9 +7258,9 @@ - + - + @@ -14194,16 +7270,16 @@ - + - r11 part of hypoglossal motor nucleus + periventricular stratum of the IG Verified - + Verified https://ror.org/03cpe7c52 @@ -14211,9 +7287,9 @@ - + - + @@ -14223,16 +7299,16 @@ - + - r11 part of nucleus raphe obscurus + intermediate stratum of the IG Verified - + Verified https://ror.org/03cpe7c52 @@ -14240,9 +7316,9 @@ - + - + @@ -14252,16 +7328,16 @@ - + - r11 part of gigantocellular reticular area + superficial stratum of the IG Verified - + Verified https://ror.org/03cpe7c52 @@ -14269,9 +7345,9 @@ - + - + @@ -14281,78 +7357,16 @@ - + - r11 part of nucleus raphe pallidus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - spinal cord - Verified - - - - - - - - - - - - - - - spinal cord - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - lateral spinal nucleus + pyramidal layer of IG Verified - - - - - - - - - - - - - - lateral spinal nucleus - - + Verified https://ror.org/03cpe7c52 @@ -14360,16 +7374,16 @@ - + - - - lateral cervical nucleus + + + taenia tecta Verified - + - + @@ -14377,13 +7391,13 @@ - + - - lateral cervical nucleus + + taenia tectum of brain - + Verified https://ror.org/03cpe7c52 @@ -14391,9 +7405,9 @@ - + - + @@ -14403,78 +7417,16 @@ - + - oculomotor nerve root - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - trochlear nerve root - Verified - - - - - - - - - - - - - - - root of trochlear nerve - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - trigeminal nerve root + ventricular zone of TTe Verified - - - - - - - - - - - - - - trigeminal nerve root - - + Verified https://ror.org/03cpe7c52 @@ -14482,30 +7434,28 @@ - + - - - abducens nerve root + + + + + + + + + + + + + + + + mantle zone of TTe Verified - - - - - - - - - - - - - - root of abducens nerve - - + Verified https://ror.org/03cpe7c52 @@ -14513,30 +7463,28 @@ - + - - - facial nerve root + + + + + + + + + + + + + + + + periventricular stratum of TTe Verified - - - - - - - - - - - - - - facial nerve root - - + Verified https://ror.org/03cpe7c52 @@ -14544,30 +7492,28 @@ - + - - - vestibulocochlear nerve root - Verified - - - - - - - - - + + + + + + + + + + + + + + + + intermediate stratum of TTe + Verified - - - - vestibulocochlear nerve - - - + Verified https://ror.org/03cpe7c52 @@ -14575,30 +7521,28 @@ - + - - - glossopharyngeal nerve root + + + + + + + + + + + + + + + + superficial stratum of TTe Verified - - - - - - - - - - - - - - glossopharyngeal nerve root - - + Verified https://ror.org/03cpe7c52 @@ -14606,30 +7550,28 @@ - + - - - vagal nerve root + + + + + + + + + + + + + + + + pyramidal layer of taenia tecta Verified - - - - - - - - - - - - - - root of vagus nerve - - + Verified https://ror.org/03cpe7c52 @@ -14637,16 +7579,16 @@ - + - - - accessory nerve root + + + subiculum Verified - + - + @@ -14654,13 +7596,13 @@ - + - - accessory nerve root + + subiculum - + Verified https://ror.org/03cpe7c52 @@ -14668,30 +7610,28 @@ - + - - - hypoglossal nerve root + + + + + + + + + + + + + + + + molecular layer of S Verified - - - - - - - - - - - - - - hypoglossal nerve root - - + Verified https://ror.org/03cpe7c52 @@ -14699,16 +7639,16 @@ - + - - - anterior commissure + + + presubiculum Verified - + - + @@ -14716,13 +7656,13 @@ - + - - anterior commissure + + presubiculum - + Verified https://ror.org/03cpe7c52 @@ -14730,16 +7670,16 @@ - + - - - brachium of inferior colliculus + + + parasubiculum Verified - + - + @@ -14747,13 +7687,13 @@ - + - - brachium of inferior colliculus + + parasubiculum - + Verified https://ror.org/03cpe7c52 @@ -14761,16 +7701,16 @@ - + - - - cerebellar commissure + + + septohippocampal nucleus Verified - + - + @@ -14778,13 +7718,13 @@ - + - - cerebellar commissure + + septohippocampal nucleus - + Verified https://ror.org/03cpe7c52 @@ -14792,16 +7732,16 @@ - + - - - corticospinal tract + + + posterior part of anterior hypothalamic nucleus Verified - + - + @@ -14809,13 +7749,13 @@ - + - - corticospinal tract + + anterior nucleus of hypothalamus posterior part - + Verified https://ror.org/03cpe7c52 @@ -14823,16 +7763,16 @@ - + - - - dorsal column tracts + + + diencephalon Verified - + - + @@ -14840,13 +7780,13 @@ - + - - spinal cord dorsal column + + diencephalon - + Verified https://ror.org/03cpe7c52 @@ -14854,16 +7794,16 @@ - + - - - pyramidal tract decussation + + + pregeniculate nucleus Verified - + - + @@ -14871,13 +7811,13 @@ - + - - pyramidal decussation + + ventral lateral geniculate nucleus - + Verified https://ror.org/03cpe7c52 @@ -14885,16 +7825,16 @@ - + - - - dorsal spinocerebellar tract + + + peripeduncular nucleus Verified - + - + @@ -14902,13 +7842,13 @@ - + - - posterior spinocerebellar tract + + peripeduncular nucleus - + Verified https://ror.org/03cpe7c52 @@ -14916,16 +7856,16 @@ - + - - - external capsule + + + thalamus Verified - + - + @@ -14933,13 +7873,13 @@ - + - - external capsule of telencephalon + + dorsal plus ventral thalamus - + Verified https://ror.org/03cpe7c52 @@ -14947,16 +7887,16 @@ - + - - - fimbria + + + medial habenular nucleus Verified - + - + @@ -14964,13 +7904,13 @@ - + - - hippocampus fimbria + + medial habenular nucleus - + Verified https://ror.org/03cpe7c52 @@ -14978,16 +7918,16 @@ - + - - - fornix tract + + + dorsal tier of thalamus Verified - + - + @@ -14995,13 +7935,13 @@ - + - - fornix of brain + + dorsal thalamus - + Verified https://ror.org/03cpe7c52 @@ -15009,16 +7949,16 @@ - + - - - habenular commissure + + + anterior paraventricular nucleus of thalamus Verified - + - + @@ -15026,13 +7966,13 @@ - + - - habenular commissure + + anterior paraventricular nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15040,16 +7980,16 @@ - + - - - hippocampal commissure + + + centromedian nucleus Verified - + - + @@ -15057,13 +7997,13 @@ - + - - hippocampal commissure + + centromedian nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15071,16 +8011,16 @@ - + - - - internal capsule + + + rhomboid nucleus Verified - + - + @@ -15088,13 +8028,13 @@ - + - - internal capsule of telencephalon + + rhomboidal nucleus - + Verified https://ror.org/03cpe7c52 @@ -15102,16 +8042,16 @@ - + - - - inferior cerebellar peduncle + + + paratenial nucleus Verified - + - + @@ -15119,13 +8059,13 @@ - + - - inferior cerebellar peduncle + + paratenial nucleus - + Verified https://ror.org/03cpe7c52 @@ -15133,16 +8073,16 @@ - + - - - lateral olfactory tract + + + paracentral nucleus Verified - + - + @@ -15150,13 +8090,13 @@ - + - - lateral olfactory stria + + paracentral nucleus - + Verified https://ror.org/03cpe7c52 @@ -15164,16 +8104,16 @@ - + - - - lateral lemniscus + + + central lateral nucleus Verified - + - + @@ -15181,13 +8121,13 @@ - + - - lateral lemniscus + + central lateral nucleus - + Verified https://ror.org/03cpe7c52 @@ -15195,16 +8135,16 @@ - + - - - medial lemniscus + + + anterodorsal nucleus Verified - + - + @@ -15212,13 +8152,13 @@ - + - - medial lemniscus + + anterodorsal nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15226,16 +8166,16 @@ - + - - - decussation of medial lemniscus + + + anteroventral nucleus Verified - + - + @@ -15243,13 +8183,13 @@ - + - - decussation of medial lemniscus + + anteroventral nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15257,16 +8197,16 @@ - + - - - medial olfactory tract + + + anteromedial nucleus Verified - + - + @@ -15274,13 +8214,13 @@ - + - - medial olfactory stria + + anteromedial nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15288,16 +8228,16 @@ - + - - - mammillary peduncle + + + ventral nuclei Verified - + - + @@ -15305,13 +8245,13 @@ - + - - mammillary peduncle + + ventral nuclear group - + Verified https://ror.org/03cpe7c52 @@ -15319,16 +8259,16 @@ - + - - - mammillotegmental tract + + + submedius thalamic nucleus Verified - + - + @@ -15336,13 +8276,13 @@ - + - - mammillotegmental axonal tract + + submedial nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15350,16 +8290,16 @@ - + - - - mammillothalamic tract + + + ventral anterior nucleus Verified - + - + @@ -15367,13 +8307,13 @@ - + - - mammillothalamic axonal tract + + ventral anterior nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15381,16 +8321,16 @@ - + - - - optic chiasm + + + ventral lateral nucleus Verified - + - + @@ -15398,13 +8338,13 @@ - + - - optic chiasma + + ventral lateral nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15412,16 +8352,16 @@ - + - - - optic tract + + + ventral posteromedial nucleus Verified - + - + @@ -15429,13 +8369,13 @@ - + - - optic tract + + ventral posteromedial nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15443,16 +8383,16 @@ - + - - - posterior commissure + + + ventral posterolateral nucleus Verified - + - + @@ -15460,13 +8400,13 @@ - + - - posterior commissure + + ventral posterolateral nucleus - + Verified https://ror.org/03cpe7c52 @@ -15474,16 +8414,16 @@ - + - - - retroflex tract (habenulo-interpeduncular) tract + + + lateral posterior nucleus Verified - + - + @@ -15491,13 +8431,13 @@ - + - - habenulo-interpeduncular tract + + lateral posterior nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15505,16 +8445,16 @@ - + - - - rubrospinal tract + + + dorsal lateral geniculate nucleus Verified - + - + @@ -15522,13 +8462,13 @@ - + - - rubrospinal tract + + dorsal lateral geniculate nucleus - + Verified https://ror.org/03cpe7c52 @@ -15536,16 +8476,16 @@ - + - - - superior cerebellar peduncle + + + posterior paraventricular nucleus Verified - + - + @@ -15553,13 +8493,13 @@ - + - - superior cerebellar peduncle + + posterior periventricular nucleus - + Verified https://ror.org/03cpe7c52 @@ -15567,16 +8507,16 @@ - + - - - stria medullaris + + + parafascicular nucleus Verified - + - + @@ -15584,13 +8524,13 @@ - + - - stria medullaris + + parafascicular nucleus - + Verified https://ror.org/03cpe7c52 @@ -15598,16 +8538,16 @@ - + - - - solitary tract + + + suprageniculate nucleus Verified - + - + @@ -15615,13 +8555,13 @@ - + - - solitary tract + + suprageniculate nucleus of thalamus - + Verified https://ror.org/03cpe7c52 @@ -15629,16 +8569,16 @@ - + - - - descending trigeminal tract + + + medial geniculate nucleus Verified - + - + @@ -15646,13 +8586,13 @@ - + - - spinal trigeminal tract + + medial geniculate body - + Verified https://ror.org/03cpe7c52 @@ -15660,16 +8600,16 @@ - + - - - tectospinal tract + + + pretectum Verified - + - + @@ -15677,13 +8617,13 @@ - + - - tectospinal tract + + pretectal region - + Verified https://ror.org/03cpe7c52 @@ -15691,16 +8631,16 @@ - + - - - ventral spinocerebellar tract + + + subcommissural organ Verified - + - + @@ -15708,13 +8648,13 @@ - + - - anterior spinocerebellar tract + + subcommissural organ - + Verified https://ror.org/03cpe7c52 @@ -15722,16 +8662,16 @@ - + - - - ventral tegmental decussation + + + medial pretectal nucleus Verified - + - + @@ -15739,13 +8679,13 @@ - + - - ventral tegmental decussation + + medial pretectal nucleus - + Verified https://ror.org/03cpe7c52 @@ -15753,16 +8693,16 @@ - + - - - DMBA entity + + + principal pretectal nucleus Verified - + - + @@ -15770,13 +8710,13 @@ - + - - anatomical entity + + principal pretectal nucleus - + Verified https://ror.org/03cpe7c52 @@ -15784,2049 +8724,9103 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + olivary pretectal nucleus + Verified + + + + + + + + + + + + + + + olivary pretectal nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + dorsal terminal nucleus of the accessory optic tract + Verified + + + + + + + + + + + + + + + dorsal accessory nucleus of optic tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + intermediate pretectal nucleus + Verified + + + + + + + + + + + + + + + intermediate pretectal nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + nucleus of Darkschewitsch + Verified + + + + + + + + + + + + + + + ventral nucleus of posterior commissure + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + red nucleus, parvicellular part + Verified + + + + + + + + + + + + + + + parvocellular part of red nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + midbrain + Verified + + + + + + + + + + + + + + + midbrain + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + mesomere 1 + Verified + + + + + + + + + + + + + + + mesomere 1 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + colliculus superior + Verified + + + + + + + + + + + + + + + superior colliculus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + inferior colliculus + Verified + + + + + + + + + + + + + + + inferior colliculus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + central nucleus of the inferior colliculus + Verified + + + + + + + + + + + + + + + central nucleus of inferior colliculus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + red nucleus, magnocellular part + Verified + + + + + + + + + + + + + + + magnocellular part of red nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rostral linear nucleus + Verified + + + + + + + + + + + + + + + rostral linear nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + mesomere 2 (preisthmus or caudal midbrain) + Verified + + + + + + + + + + + + + + + mesomere 2 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + cuneiform nucleus + Verified + + + + + + + + + + + + + + + cuneiform nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + subcuneiform nucleus + Verified + + + + + + + + + + + + + + + subcuneiform nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + hindbrain + Verified + + + + + + + + + + + + + + + hindbrain + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + prepontine hindbrain + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + isthmus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellar vermis + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + rhombic lip of cerebellar vermis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventricular zone of cerebellar vermis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + mantle zone of cerebellar vermis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + periventricular stratum of cerebellar vermis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + white matter of cerebellar vermis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + intermediate stratum of cerebellar vermis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + cerebellar nuclei of CbV + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + medial (fastigial) cerebellar nucleus + Verified + + + + + + + + + + + + + + + fastigial nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + superficial stratum of cerebellar vermis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + cortex of cerebellar vermis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 1 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule I + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 2 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule II + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 3 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule III + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 4 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule IV + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 5 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule V + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 6 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule VI + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 7 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule VII + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 8 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule VIII + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 9 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule IX + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lobule 10 of cerebellar vermis + Verified + + + + + + + + + + + + + + + cerebellum vermis lobule X + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + Purkinje cell layer of CbVCx + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + parabrachial complex + Verified + + + + + + + + + + + + + + + parabrachial nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial part of the periaqueductal gray + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + medial parabrachial nucleus + Verified + + + + + + + + + + + + + + + medial parabrachial nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lateral parabrachial nucleus + Verified + + + + + + + + + + + + + + + lateral parabrachial nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + Koelliker-Fuse nucleus + Verified + + + + + + + + + + + + + + + diffuse reticular nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + isthmic part of the periaqueductal gray + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + dorsal nucleus of the lateral lemniscus + Verified + + + + + + + + + + + + + + + dorsal nucleus of lateral lemniscus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + parabigeminal nucleus + Verified + + + + + + + + + + + + + + + parabigeminal nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + isthmic liminal part of the periaqueductal gray + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + isthmic part of mesencephalic trigeminal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dorsolateral isthmic part of the dorsal raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + retrorubral field + Verified + + + + + + + + + + + + + + + retrorubral area of midbrain reticular nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + intermediate isthmic part of the dorsal raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + substantia nigra reticulata, isthmic part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventral isthmic part of dorsal raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + intermediate mantle of isBM + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + trochlear nucleus + Verified + + + + + + + + + + + + + + + trochlear nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + substantia nigra compacta, isthmic part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + interpeduncular nucleus, prodromal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + isthmic portion of paranigral nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventral tegmental area, isthmic part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 1 + Verified + + + + + + + + + + + + + + + rhombomere 1 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r1 roof plate + Verified + + + + + + + + + + + + + + + rhombomere 1 roof plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + rhombic lip of r1R + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + cerebellar hemisphere + Verified + + + + + + + + + + + + + + + cerebellar hemisphere + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + rhombic lip of CbH + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + cerebellar white matter + Verified + + + + + + + + + + + + + + + white matter of cerebellum + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + cerebellar nuclei of CbH + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + intermediate (interpositus) cerebellar nucleus + Verified + + + + + + + + + + + + + + + cerebellum interpositus nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + posterior part of Int + Verified + + + + + + + + + + + + + + + cerebellum globose nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + noradrenergic cell group A4 + Curated + + + + + + + + + + + + + + + noradrenergic cell group A4 + + + + + Curated + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + superficial stratum of cerebellar hemisphere + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + cortex of cerebellar hemisphere + Verified + + + + + + + + + + + + + + + cerebellar cortex + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + simple lobule + Verified + + + + + + + + + + + + + + + lobule simplex + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + crus 1 of the ansiform lobule + Verified + + + + + + + + + + + + + + + ansiform lobule crus I + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + crus 2 of the ansiform lobule + Verified + + + + + + + + + + + + + + + ansiform lobule crus II + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + paramedian lobule + Verified + + + + + + + + + + + + + + + paramedian lobule + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + paraflocculus + Verified + + + + + + + + + + + + + + + paraflocculus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + flocculus + Verified + + + + + + + + + + + + + + + flocculus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + Purkinje cell layer of CbHCx + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r1 part of superior vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + laterodorsal tegmental nucleus + Verified + + + + + + + + + + + + + + + laterodorsal tegmental nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + pedunculopontine tegmental nucleus + Verified + + + + + + + + + + + + + + + pedunculopontine tegmental nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r1 part of the 'mesencephalic' trigeminal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + locus coeruleus + Verified + + + + + + + + + + + + + + + locus ceruleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + nucleus of Barrington + Verified + + + + + + + + + + + + + + + Barrington's nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r1 part of intermediate nucleus of the lateral lemniscus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + nucleus subcoeruleus, r1 part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r1 part of dorsal raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + dorsal tegmental nucleus + Verified + + + + + + + + + + + + + + + dorsal tegmental nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + core part of DTg + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + shell part of DTg + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + apical interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + rhabdoid interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + ventral tegmental nucleus + Verified + + + + + + + + + + + + + + + ventral tegmental nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + anterior tegmental nucleus + Verified + + + + + + + + + + + + + + + anterior tegmental nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r1 part of paramedian raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r1 part of median raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + rostral interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dorsomedial interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dorsolateral interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + rostrolateral interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + caudal interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + caudodorsomedial interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + caudodorsolateral interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + caudolateral interpeduncular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r1 floor plate + Verified + + + + + + + + + + + + + + + rhombomere 1 floor plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 2 + Verified + + + + + + + + + + + + + + + rhombomere 2 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r2 roof plate + Verified + + + + + + + + + + + + + + + rhombomere 2 roof plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r2 part of dorsal cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r2 part of anteroventral cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r2 part of superior vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + noradrenergic cell group A7 + Curated + + + + + + + + + + + + + + + noradrenergic cell group A7 + + + + + Curated + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + r2 part of nucleus subcoeruleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r2 part of ventral lateral lemniscal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r2 part of paramedian raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + nucleus incertus + Verified + + + + + + + + + + + + + + + nucleus incertus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r2 part of prepontine raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r2 part of median raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r2 floor plate + Verified + + + + + + + + + + + + + + + rhombomere 2 floor plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + pontine hindbrain + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 3 + Verified + + + + + + + + + + + + + + + rhombomere 3 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r3 roof plate + Verified + + + + + + + + + + + + + + + rhombomere 3 roof plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of dorsal cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of anteroventral cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of lateral vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of magnocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of parvicellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of ventral lateral lemniscal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of lateral pontine nuclei + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of preabducens central gray + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 pontine raphe nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of reticulotegmental nucleus, shell portion + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of reticulotegmental nucleus, core portion + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r3 part of medial pontine nuclei + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r3 floor plate + Verified + + + + + + + + + + + + + + + rhombomere 3 floor plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 4 + Verified + + + + + + + + + + + + + + + rhombomere 4 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r4 roof plate + Verified + + + + + + + + + + + + + + + rhombomere 4 roof plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of dorsal cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of posteroventral cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of lateral vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of magnocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of parvocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + supragenual nucleus + Verified + + + + + + + + + + + + + + + supragenual nucleus of pontine tegmentum + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of ventral lateral lemniscal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of lateral pontine nuclei + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of preabducens central gray + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of reticulotegmental nucleus, shell portion + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of reticulotegmental nucleus, core portion + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of pontine raphe cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r4 part of medial pontine nuclei + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r4 floor plate + Verified + + + + + + + + + + + + + + + rhombomere 4 floor plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + pontomedullary hindbrain + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 5 + Verified + + + + + + + + + + + + + + + rhombomere 5 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r5 roof plate + Verified + + + + + + + + + + + + + + + rhombomere 5 roof plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r5 part of dorsal cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r5 part of posteroventral cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r5 part of spinal vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r5 part of magnocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r5 part of parvocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + superior salivatory parasympathetic nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r5 part of ventral lateral lemniscal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + dorsal periolivary nucleus + Verified + + + + + + + + + + + + + + + dorsal periolivary nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lateral superior olive + Verified + + + + + + + + + + + + + + + lateral superior olivary nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + medial superior olive + Verified + + + + + + + + + + + + + + + medial superior olivary nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lateral trapezoid nucleus + Verified + + + + + + + + + + + + + + + lateral nucleus of trapezoid body + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + abducens motor nucleus + Verified + + + + + + + + + + + + + + + abducens nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + para-abducens nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retropontine reticular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + nucleus raphe magnus, r5 part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + medial trapezoid nucleus + Verified + + + + + + + + + + + + + + + medial nucleus of trapezoid body + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r5 floor plate + Verified + + + + + + + + + + + + + + + rhombomere 5 floor plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 6 + Verified + + + + + + + + + + + + + + + rhombomere 6 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r6 roof plate + Verified + + + + + + + + + + + + + + + rhombomere 6 roof plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of dorsal cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of posteroventral cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of spinal vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of magnocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of parvocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of spinal trigeminal nucleus, pars oralis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + inferior salivatory parasympathetic nucleus + Verified + + + + + + + + + + + + + + + inferior salivatory nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + facial motor nucleus + Verified + + + + + + + + + + + + + + + facial motor nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + retrotrapezoid nucleus + Verified + + + + + + + + + + + + + + + retrotrapezoid nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of paragigantocellular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of nucleus prepositus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + raphe magnus nucleus, r6 part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of gigantocellular reticular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r6 part of nucleus raphe pallidus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r6 floor plate + Verified + + + + + + + + + + + + + + + rhombomere 6 floor plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + medullary hindbrain (medulla) + Verified + + + + + + + + + + + + + + + medulla oblongata + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 7 + Verified + + + + + + + + + + + + + + + rhombomere 7 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r7 roof plate + Verified + + + + + + + + + + + + + + + rhombomere 7 roof plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of the dorsal cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of the posteroventral cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of spinal vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of parvocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of spinal trigeminal nucleus, interpolar part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of paragigantocellular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of nucleus prepositus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 portion of the hypoglossal motor nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of the nucleus of Roller + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 raphe obscurus cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 part of gigantocellular reticular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r7 raphe pallidus cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r7 floor plate + Verified + + + + + + + + + + + + + + + rhombomere 7 floor plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 8 + Verified + + + + + + + + + + + + + + + rhombomere 8 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r8 roof plate + Verified + + + + + + + + + + + + + + + rhombomere 8 roof plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of spinal vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of parvocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of spinal trigeminal nucleus, interpolar part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of lateral reticular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of nucleus intercalatus Staderini + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of the paragigantocellular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of nucleus prepositus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 portion of the hypoglossal motor nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of nucleus of Roller + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 raphe obscurus cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of gigantocellular reticular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 raphe pallidus cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r8 part of inferior olive + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + r8 floor plate + Verified + + + + + + + + + + + + + + + rhombomere 8 floor plate + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 9 + Verified + + + + + + + + + + + + + + + rhombomere 9 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of spinal vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of parvocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of spinal trigeminal nucleus, interpolar part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of nucleus gracilis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of the lateral reticular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of nucleus intercalatus Staderini + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of paragigantocellular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 portion of the hypoglossal motor nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of nucleus of Roller + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 raphe obscurus cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of gigantocellular reticular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 raphe pallidus cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r9 part of the inferior olive + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 10 + Verified + + + + + + + + + + + + + + + rhombomere 10 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of spinal vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of parvocellular medial vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of spinal trigeminal nucleus, caudal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of nucleus gracilis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of nucleus intercalatus Staderini + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 portion of the hypoglossal motor nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of nucleus of Roller + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 raphe obscurus cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of gigantocellular reticular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of ventral gigangocellular reticular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 raphe pallidus cell population + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r10 part of the inferior olive + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rhombomere 11 + Verified + + + + + + + + + + + + + + + rhombomere 11 + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r11 part of spinal trigeminal nucleus, caudal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r11 part of nucleus gracilis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + mantle zone of r11Lim + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r11 part of hypoglossal motor nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r11 part of nucleus raphe obscurus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r11 part of gigantocellular reticular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + r11 part of nucleus raphe pallidus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + spinal cord + Verified + + + + + + + + + + + + + + + spinal cord + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lateral spinal nucleus + Verified + + + + + + + + + + + + + + + lateral spinal nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lateral cervical nucleus + Verified + + + + + + + + + + + + + + + lateral cervical nucleus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + oculomotor nerve root + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + trochlear nerve root + Verified + + + + + + + + + + + + + + + root of trochlear nerve + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + trigeminal nerve root + Verified + + + + + + + + + + + + + + + trigeminal nerve root + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + abducens nerve root + Verified + + + + + + + + + + + + + + + root of abducens nerve + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + facial nerve root + Verified + + + + + + + + + + + + + + + facial nerve root + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + vestibulocochlear nerve root + Verified + + + + + + + + + + + + + + + vestibulocochlear nerve + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + glossopharyngeal nerve root + Verified + + + + + + + + + + + + + + + glossopharyngeal nerve root + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + vagal nerve root + Verified + + + + + + + + + + + + + + + root of vagus nerve + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + accessory nerve root + Verified + + + + + + + + + + + + + + + accessory nerve root + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + hypoglossal nerve root + Verified + + + + + + + + + + + + + + + hypoglossal nerve root + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + anterior commissure + Verified + + + + + + + + + + + + + + + anterior commissure + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + brachium of inferior colliculus + Verified + + + + + + + + + + + + + + + brachium of inferior colliculus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + cerebellar commissure + Verified + + + + + + + + + + + + + + + cerebellar commissure + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + corticospinal tract + Verified + + + + + + + + + + + + + + + corticospinal tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + dorsal column tracts + Verified + + + + + + + + + + + + + + + spinal cord dorsal column + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + pyramidal tract decussation + Verified + + + + + + + + + + + + + + + pyramidal decussation + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + dorsal spinocerebellar tract + Verified + + + + + + + + + + + + + + + posterior spinocerebellar tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + external capsule + Verified + + + + + + + + + + + + + + + external capsule of telencephalon + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + fimbria + Verified + + + + + + + + + + + + + + + hippocampus fimbria + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + fornix tract + Verified + + + + + + + + + + + + + + + fornix of brain + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + habenular commissure + Verified + + + + + + + + + + + + + + + habenular commissure + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + hippocampal commissure + Verified + + + + + + + + + + + + + + + hippocampal commissure + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + internal capsule + Verified + + + + + + + + + + + + + + + internal capsule of telencephalon + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + inferior cerebellar peduncle + Verified + + + + + + + + + + + + + + + inferior cerebellar peduncle + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lateral olfactory tract + Verified + + + + + + + + + + + + + + + lateral olfactory stria + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + lateral lemniscus + Verified + + + + + + + + + + + + + + + lateral lemniscus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + medial lemniscus + Verified + + + + + + + + + + + + + + + medial lemniscus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + decussation of medial lemniscus + Verified + + + + + + + + + + + + + + + decussation of medial lemniscus + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + medial olfactory tract + Verified + + + + + + + + + + + + + + + medial olfactory stria + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + mammillary peduncle + Verified + + + + + + + + + + + + + + + mammillary peduncle + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + mammillotegmental tract + Verified + + + + + + + + + + + + + + + mammillotegmental axonal tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + mammillothalamic tract + Verified + + + + + + + + + + + + + + + mammillothalamic axonal tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + optic chiasm + Verified + + + + + + + + + + + + + + + optic chiasma + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + optic tract + Verified + + + + + + + + + + + + + + + optic tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + posterior commissure + Verified + + + + + + + + + + + + + + + posterior commissure + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + retroflex tract (habenulo-interpeduncular) tract + Verified + + + + + + + + + + + + + + + habenulo-interpeduncular tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + rubrospinal tract + Verified + + + + + + + + + + + + + + + rubrospinal tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + superior cerebellar peduncle + Verified + + + + + + + + + + + + + + + superior cerebellar peduncle + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + stria medullaris + Verified + + + + + + + + + + + + + + + stria medullaris + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + solitary tract + Verified + + + + + + + + + + + + + + + solitary tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + descending trigeminal tract + Verified + + + + + + + + + + + + + + + spinal trigeminal tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + tectospinal tract + Verified + + + + + + + + + + + + + + + tectospinal tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + ventral spinocerebellar tract + Verified + + + + + + + + + + + + + + + anterior spinocerebellar tract + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + ventral tegmental decussation + Verified + + + + + + + + + + + + + + + ventral tegmental decussation + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + DMBA entity + Verified + + + + + + + + + + + + + + + anatomical entity + + + + + Verified + https://ror.org/03cpe7c52 + diff --git a/src/ontology/bridge/uberon-bridge-to-mba.obo b/src/ontology/bridge/uberon-bridge-to-mba.obo deleted file mode 100644 index aadcdd6525..0000000000 --- a/src/ontology/bridge/uberon-bridge-to-mba.obo +++ /dev/null @@ -1,7361 +0,0 @@ -format-version: 1.2 -ontology: uberon/bridge/uberon-bridge-to-mba - -[Term] -id: MBA:1 -intersection_of: UBERON:0014594 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "tuberomammillary nucleus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:100 -intersection_of: UBERON:0002145 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "interpeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1000 -intersection_of: UBERON:0035803 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "extrapyramidal fiber systems" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1001 -intersection_of: UBERON:0004079 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lobule V" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1002 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034751 -property_value: IAO:0000589 "primary auditory area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1004 -intersection_of: UBERON:0007768 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral premammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1005 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034751 -property_value: IAO:0000589 "primary auditory area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1006 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, trunk, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1007 -intersection_of: UBERON:0005350 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "simple lobule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1008 -intersection_of: UBERON:0002704 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "geniculate group, dorsal thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1009 -intersection_of: UBERON:0000122 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "fiber tracts" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:101 -intersection_of: UBERON:0002828 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1011 -intersection_of: UBERON:0035885 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal auditory area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1016 -intersection_of: UBERON:0005978 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "olfactory nerve layer of main olfactory bulb" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1017 -intersection_of: UBERON:0005348 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ansiform lobule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1019 -intersection_of: UBERON:0002589 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "corticospinal tract, crossed" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:102 -intersection_of: UBERON:0014169 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nigrostriatal tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1020 -intersection_of: UBERON:0002709 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterior complex of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1021 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016634 -property_value: IAO:0000589 "secondary motor area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1022 -intersection_of: UBERON:0002476 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "globus pallidus, external segment" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1023 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "ventral auditory area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1024 -intersection_of: UBERON:0013118 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "grooves" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1025 -intersection_of: UBERON:0005349 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paramedian lobule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1026 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, upper limb, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1027 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "posterior auditory area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1028 -intersection_of: UBERON:0002760 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "corticospinal tract, uncrossed" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:103 -intersection_of: UBERON:0014601 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, magnocellular division, posterior magnocellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1030 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, lower limb, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1031 -intersection_of: UBERON:0002477 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "globus pallidus, internal segment" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1033 -intersection_of: UBERON:0005347 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "copula pyramidis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1034 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, dorsal part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1035 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008934 -property_value: IAO:0000589 "supplemental somatosensory area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1036 -intersection_of: UBERON:0002556 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "corticotectal tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1037 -intersection_of: UBERON:0035971 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "postsubiculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1038 -intersection_of: UBERON:0035876 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary somatosensory area, barrel field, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1039 -intersection_of: UBERON:0002161 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "gracile nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:104 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1041 -intersection_of: UBERON:0005351 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraflocculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1042 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, dorsal part, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1044 -intersection_of: UBERON:0002144 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "peripeduncular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1045 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002728 -property_value: IAO:0000589 "ectorhinal area/Layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1046 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035893 -property_value: IAO:0000589 "anteromedial visual area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1047 -intersection_of: UBERON:0035877 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary somatosensory area, barrel field, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1048 -intersection_of: UBERON:0002155 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "gigantocellular reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1049 -intersection_of: UBERON:0001063 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "flocculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:105 -intersection_of: UBERON:0002782 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior olivary complex, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1050 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, dorsal part, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1052 -intersection_of: UBERON:0002142 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pedunculopontine nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1053 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0009835 -property_value: IAO:0000589 "anterior cingulate area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1054 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440033 -property_value: IAO:0000589 "Infralimbic area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1056 -intersection_of: UBERON:0005976 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "crus 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1057 -intersection_of: UBERON:8440075 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "Gustatory areas" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1059 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, dorsal part, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:106 -intersection_of: UBERON:0002872 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "inferior salivatory nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1061 -intersection_of: UBERON:0006848 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterior pretectal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1062 -intersection_of: UBERON:0035875 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary somatosensory area, barrel field, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1063 -intersection_of: UBERON:0002899 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hippocampal fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1064 -intersection_of: UBERON:0005977 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "crus 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1065 -intersection_of: UBERON:0002028 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hindbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1066 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035893 -property_value: IAO:0000589 "anteromedial visual area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1067 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, ventral part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10671 -intersection_of: UBERON:0002197 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "median eminence" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10672 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005350 -property_value: IAO:0000589 "simple lobule, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10673 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005350 -property_value: IAO:0000589 "simple lobule, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10674 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005350 -property_value: IAO:0000589 "simple lobule, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10675 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005976 -property_value: IAO:0000589 "crus 1, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10676 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005976 -property_value: IAO:0000589 "crus 1, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10677 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005976 -property_value: IAO:0000589 "crus 1, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10678 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005977 -property_value: IAO:0000589 "crus 2, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10679 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005977 -property_value: IAO:0000589 "crus 2, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10680 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005977 -property_value: IAO:0000589 "crus 2, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10681 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005349 -property_value: IAO:0000589 "paramedian lobule, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10682 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005349 -property_value: IAO:0000589 "paramedian lobule, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10683 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005349 -property_value: IAO:0000589 "paramedian lobule, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10684 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005347 -property_value: IAO:0000589 "copula pyramidis, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10685 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005347 -property_value: IAO:0000589 "copula pyramidis, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10686 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005347 -property_value: IAO:0000589 "copula pyramidis, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10687 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005351 -property_value: IAO:0000589 "paraflocculus, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10688 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005351 -property_value: IAO:0000589 "paraflocculus, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10689 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0005351 -property_value: IAO:0000589 "paraflocculus, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1069 -intersection_of: UBERON:8440025 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parapyramidal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10690 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0001063 -property_value: IAO:0000589 "flocculus, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10691 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0001063 -property_value: IAO:0000589 "flocculus, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10692 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0001063 -property_value: IAO:0000589 "flocculus, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10693 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004683 -property_value: IAO:0000589 "parasubiculum, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10694 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004683 -property_value: IAO:0000589 "parasubiculum, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10695 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004683 -property_value: IAO:0000589 "parasubiculum, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10696 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035971 -property_value: IAO:0000589 "postsubiculum, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10697 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035971 -property_value: IAO:0000589 "postsubiculum, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10698 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035971 -property_value: IAO:0000589 "postsubiculum, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10699 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001953 -property_value: IAO:0000589 "presubiculum, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:107 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440076 -property_value: IAO:0000589 "Somatomotor areas, Layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1070 -intersection_of: UBERON:0035872 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary somatosensory area, barrel field, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10700 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001953 -property_value: IAO:0000589 "presubiculum, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10701 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001953 -property_value: IAO:0000589 "presubiculum, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10702 -intersection_of: UBERON:0009952 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus, subgranular zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10703 -intersection_of: UBERON:0004679 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10704 -intersection_of: UBERON:0002928 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus, polymorph layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10705 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004074 -property_value: IAO:0000589 "lingula (I), granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10706 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004074 -property_value: IAO:0000589 "lingula (I), Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10707 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004074 -property_value: IAO:0000589 "lingula (I), molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10708 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004075 -property_value: IAO:0000589 "lobule II, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10709 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004075 -property_value: IAO:0000589 "lobule II, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1071 -intersection_of: UBERON:0002683 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "rhinal fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10710 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004075 -property_value: IAO:0000589 "lobule II, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10711 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004076 -property_value: IAO:0000589 "lobule III, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10712 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004076 -property_value: IAO:0000589 "lobule III, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10713 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004076 -property_value: IAO:0000589 "lobule III, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10714 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004077 -property_value: IAO:0000589 "lobule IV, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10715 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004077 -property_value: IAO:0000589 "lobule IV, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10716 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004077 -property_value: IAO:0000589 "lobule IV, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10717 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004079 -property_value: IAO:0000589 "lobule V, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10718 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004079 -property_value: IAO:0000589 "lobule V, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10719 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004079 -property_value: IAO:0000589 "lobule V, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1072 -intersection_of: UBERON:0002758 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial geniculate complex, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10723 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004080 -property_value: IAO:0000589 "declive (VI), granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10724 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004080 -property_value: IAO:0000589 "declive (VI), Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10725 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004080 -property_value: IAO:0000589 "declive (VI), molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10726 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004081 -property_value: IAO:0000589 "folium-tuber vermis (VII), granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10727 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004081 -property_value: IAO:0000589 "folium-tuber vermis (VII), Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10728 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004081 -property_value: IAO:0000589 "folium-tuber vermis (VII), molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10729 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004082 -property_value: IAO:0000589 "pyramus (VIII), granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1073 -intersection_of: UBERON:0002245 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hemispheric regions" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:10730 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004082 -property_value: IAO:0000589 "pyramus (VIII), Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10731 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004082 -property_value: IAO:0000589 "pyramus (VIII), molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10732 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004078 -property_value: IAO:0000589 "uvula (IX), granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10733 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004078 -property_value: IAO:0000589 "uvula (IX), Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10734 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004078 -property_value: IAO:0000589 "uvula (IX), molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10735 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004083 -property_value: IAO:0000589 "nodulus (X), granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10736 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004083 -property_value: IAO:0000589 "nodulus (X), Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:10737 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0004083 -property_value: IAO:0000589 "nodulus (X), molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1074 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035894 -property_value: IAO:0000589 "anterolateral visual area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1075 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, ventral part, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1076 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001648 -property_value: IAO:0000589 "efferent cochleovestibular bundle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1078 -intersection_of: UBERON:8440077 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "rhinal incisure" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1079 -intersection_of: UBERON:0002985 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial geniculate complex, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:108 -intersection_of: UBERON:0001886 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "choroid plexus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1080 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002421 -property_value: IAO:0000589 "hippocampal region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1081 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440033 -property_value: IAO:0000589 "Infralimbic area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1082 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, ventral part, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1084 -intersection_of: UBERON:0001953 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "presubiculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1085 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016634 -property_value: IAO:0000589 "secondary motor area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1086 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, trunk, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1087 -intersection_of: UBERON:0014473 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "precentral fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1088 -intersection_of: UBERON:0002759 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial geniculate complex, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1089 -intersection_of: UBERON:0002421 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hippocampal formation" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1090 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008934 -property_value: IAO:0000589 "supplemental somatosensory area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1091 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007763 -property_value: IAO:0000589 "lobules IV-V" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1092 -intersection_of: UBERON:0014534 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "external medullary lamina of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1093 -intersection_of: UBERON:0002963 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pontine reticular nucleus, caudal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1094 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, lower limb, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1095 -intersection_of: UBERON:0035926 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "preculminate fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1097 -intersection_of: UBERON:0001898 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hypothalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1098 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002559 -property_value: IAO:0000589 "medullary reticular nucleus, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1099 -intersection_of: UBERON:0000052 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "fornix system" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:11 -intersection_of: UBERON:0002818 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterolateral fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1100 -intersection_of: UBERON:0001944 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pretectal region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1101 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, dorsal part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1102 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, mouth, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1103 -intersection_of: UBERON:0014471 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1105 -intersection_of: UBERON:0002884 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "intercalated amygdalar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1106 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440024 -property_value: IAO:0000589 "Visceral area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1107 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002559 -property_value: IAO:0000589 "medullary reticular nucleus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1108 -intersection_of: UBERON:0015599 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "genu of corpus callosum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:111 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, posterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1111 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, trunk, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1112 -intersection_of: UBERON:0002814 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterior superior fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1113 -intersection_of: UBERON:0035972 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "interanterodorsal nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1114 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035894 -property_value: IAO:0000589 "anterolateral visual area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1116 -intersection_of: UBERON:0014915 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "genu of the facial nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1117 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000988 -property_value: IAO:0000589 "pons, behavioral state related" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1119 -intersection_of: UBERON:0002816 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "prepyramidal fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1121 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1123 -intersection_of: UBERON:0002163 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "inferior cerebellar peduncle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1125 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, ventrolateral part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1126 -intersection_of: UBERON:0014593 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "tuberomammillary nucleus, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1127 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035013 -property_value: IAO:0000589 "Temporal association areas, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:1128 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, lower limb, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1129 -intersection_of: UBERON:0001894 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "interbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:113 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, lower limb, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1131 -intersection_of: UBERON:0001699 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "intermediate nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1132 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000988 -property_value: IAO:0000589 "pons, sensory related" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1133 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, ventral zone, layer 5/6" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1139 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002893 -property_value: IAO:0000589 "nucleus of the lateral olfactory tract, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:114 -intersection_of: UBERON:0002779 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior olivary complex, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1143 -intersection_of: UBERON:0002956 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebellar cortex, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1144 -intersection_of: UBERON:0002974 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebellar cortex, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:1145 -intersection_of: UBERON:0002979 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebellar cortex, Purkinje layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:115 -intersection_of: UBERON:0002722 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "trochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:116 -intersection_of: UBERON:0002192 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "choroid fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:117 -intersection_of: UBERON:0000959 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "optic chiasm" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:118 -intersection_of: UBERON:8440008 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "periventricular hypothalamic nucleus, intermediate part" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:119 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:12 -intersection_of: UBERON:0013736 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "interfascicular nucleus raphe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:120 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, posterior part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:121 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035895 -property_value: IAO:0000589 "lateral visual area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:122 -intersection_of: UBERON:0002971 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior olivary complex, periolivary region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:123 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002869 -property_value: IAO:0000589 "koelliker-Fuse subnucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:124 -intersection_of: UBERON:0003993 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "interventricular foramen" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:125 -intersection_of: UBERON:0001908 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "optic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:126 -intersection_of: UBERON:0002708 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "periventricular hypothalamic nucleus, posterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:127 -intersection_of: UBERON:0002681 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anteromedial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:128 -intersection_of: UBERON:0007415 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "midbrain reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:129 -intersection_of: UBERON:0002286 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "third ventricle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:12993 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0008930 -property_value: IAO:0000589 "somatosensory areas, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:12994 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0008930 -property_value: IAO:0000589 "somatosensory areas, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:12995 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0008930 -property_value: IAO:0000589 "somatosensory areas, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:12996 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0008930 -property_value: IAO:0000589 "somatosensory areas, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:12997 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0008930 -property_value: IAO:0000589 "somatosensory areas, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:12998 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0008930 -property_value: IAO:0000589 "somatosensory areas, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:130 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003004 -property_value: IAO:0000589 "superior central nucleus raphe, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:131 -intersection_of: UBERON:0002886 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral amygdalar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:132 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440032 -property_value: IAO:0000589 "Prelimbic area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:133 -intersection_of: UBERON:0002622 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "periventricular hypothalamic nucleus, preoptic part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:134 -intersection_of: UBERON:0002671 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pallidotegmental fascicle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:135 -intersection_of: UBERON:0001719 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus ambiguus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:136 -intersection_of: UBERON:0009777 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "intermediate reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:137 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003004 -property_value: IAO:0000589 "superior central nucleus raphe, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:138 -intersection_of: UBERON:0002736 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral group of the dorsal thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:139 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:14 -intersection_of: UBERON:0002762 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "internal medullary lamina of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:140 -intersection_of: UBERON:0002289 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebral aqueduct" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:143 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001719 -property_value: IAO:0000589 "nucleus ambiguus, ventral division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:144 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001883 -property_value: IAO:0000589 "olfactory tubercle, layers 1-3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:145 -intersection_of: UBERON:0002422 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "fourth ventricle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:146 -intersection_of: UBERON:0007413 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pontine reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:147 -intersection_of: UBERON:0002148 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "locus ceruleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:148 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440075 -property_value: IAO:0000589 "Gustatory areas, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:149 -intersection_of: UBERON:0001920 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:15 -intersection_of: UBERON:0002992 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parataenial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:151 -intersection_of: UBERON:0004069 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "accessory olfactory bulb" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:152 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004725 -property_value: IAO:0000589 "piriform area, layers 1-3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:153 -intersection_of: UBERON:0007656 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral recess" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:154 -intersection_of: UBERON:8440028 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "perihypoglossal nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:155 -intersection_of: UBERON:0002984 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral dorsal nucleus of thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:156 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035885 -property_value: IAO:0000589 "dorsal auditory area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:157 -intersection_of: UBERON:0002271 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "periventricular zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:158 -intersection_of: UBERON:0000936 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterior commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:159 -intersection_of: UBERON:0002266 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior olfactory nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:16 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001950 -property_value: IAO:0000589 "layer 6b, isocortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:160 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory nucleus, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:161 -intersection_of: UBERON:0002876 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus intercalatus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:162 -intersection_of: UBERON:0002267 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "laterodorsal tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:163 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, posterior part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:164 -intersection_of: UBERON:0002291 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "central canal, spinal cord/medulla" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:165 -intersection_of: UBERON:0007412 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "midbrain raphe nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:167 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory nucleus, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:168 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory nucleus, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:169 -intersection_of: UBERON:0002160 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus prepositus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:170 -intersection_of: UBERON:0002479 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal part of the lateral geniculate complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:171 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440032 -property_value: IAO:0000589 "Prelimbic area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:173 -intersection_of: UBERON:0001933 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "retrochiasmatic area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:174 -intersection_of: UBERON:0003936 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "preoptic commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:175 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory nucleus, external part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:177 -intersection_of: UBERON:0002881 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of Roller" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:178 -intersection_of: UBERON:0002480 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral part of the lateral geniculate complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:179 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0009835 -property_value: IAO:0000589 "anterior cingulate area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:180 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440075 -property_value: IAO:0000589 "Gustatory areas, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:181 -intersection_of: UBERON:0001921 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "Nucleus of reuniens" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:182305689 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, unassigned" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:182305693 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, unassigned, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:182305697 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, unassigned, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:182305701 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, unassigned, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:182305705 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, unassigned, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:182305709 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, unassigned, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:182305713 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, unassigned, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:183 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory nucleus, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:184 -intersection_of: UBERON:0002795 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "frontal pole, cerebral cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:185 -intersection_of: UBERON:8440026 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parapyramidal nucleus, deep part" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:186 -intersection_of: UBERON:0001941 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral habenula" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:187 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440075 -property_value: IAO:0000589 "Gustatory areas, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:188 -intersection_of: UBERON:0007631 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "accessory olfactory bulb, glomerular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:189 -intersection_of: UBERON:0002955 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "rhomboid nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:19 -intersection_of: UBERON:0015793 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "induseum griseum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:190 -intersection_of: UBERON:0002755 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "Pyramid" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:191 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory nucleus, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:192 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, anterior part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:193 -intersection_of: UBERON:8440027 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parapyramidal nucleus, superficial part" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:194 -intersection_of: UBERON:0002430 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral hypothalamic area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:195 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440032 -property_value: IAO:0000589 "Prelimbic area, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:196 -intersection_of: UBERON:0015244 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "accessory olfactory bulb, granular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:197 -intersection_of: UBERON:0013734 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "rostral linear nucleus raphe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:198 -intersection_of: UBERON:0002755 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pyramidal decussation" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:199 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002266 -property_value: IAO:0000589 "anterior olfactory nucleus, posteroventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:2 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, mouth, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:20 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:200 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, anterior part, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:201 -intersection_of: UBERON:0035874 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary somatosensory area, barrel field, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:202 -intersection_of: UBERON:0001722 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:203 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0005290 -property_value: IAO:0000589 "linear nucleus of the medulla" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:204 -intersection_of: UBERON:0015432 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "accessory olfactory bulb, mitral layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:206 -intersection_of: UBERON:0002156 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus raphe magnus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:207 -intersection_of: UBERON:0002162 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "area postrema" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:208 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, anterior part, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:209 -intersection_of: UBERON:0007230 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:210 -intersection_of: UBERON:0001938 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral mammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:212 -intersection_of: UBERON:0005377 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "main olfactory bulb, glomerular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:214 -intersection_of: UBERON:0001947 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "red nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:216 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, lateral zone, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:217 -intersection_of: UBERON:0007227 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:218 -intersection_of: UBERON:0002983 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral posterior nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:219 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440076 -property_value: IAO:0000589 "Somatomotor areas, Layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:22 -intersection_of: UBERON:0035886 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterior parietal association areas" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:220 -intersection_of: UBERON:0005378 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "main olfactory bulb, granule layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:221 -intersection_of: UBERON:8440029 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "rubroreticular tract" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:222 -intersection_of: UBERON:0002684 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus raphe obscurus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:223 -intersection_of: UBERON:0001932 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "arcuate hypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:224 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, lateral zone, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:225 -intersection_of: UBERON:0001721 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spinal vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:226 -intersection_of: UBERON:0001931 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral preoptic area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:227 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0009835 -property_value: IAO:0000589 "anterior cingulate area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:228 -intersection_of: UBERON:0005379 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "main olfactory bulb, inner plexiform layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:229 -intersection_of: UBERON:0009907 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "sensory root of the trigeminal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:23 -intersection_of: UBERON:0002890 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior amygdalar area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:230 -intersection_of: UBERON:0002157 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus raphe pallidus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:231 -intersection_of: UBERON:0010036 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:232 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, lateral zone, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:233 -intersection_of: UBERON:0035908 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterolateral visual area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:235 -intersection_of: UBERON:0002154 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:236 -intersection_of: UBERON:0004186 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "main olfactory bulb, mitral layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:237 -intersection_of: UBERON:0002718 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "solitary tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:238 -intersection_of: UBERON:0002047 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus raphe pontis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:239 -intersection_of: UBERON:0002788 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior group of the dorsal thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:240 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, medial zone, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:241 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035886 -property_value: IAO:0000589 "posterior parietal association areas, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:242 -intersection_of: UBERON:0002667 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral septal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:243 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035885 -property_value: IAO:0000589 "dorsal auditory area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:244 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0005376 -property_value: IAO:0000589 "main olfactory bulb, outer plexiform layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:246 -intersection_of: UBERON:0011172 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "midbrain reticular nucleus, retrorubral area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:247 -intersection_of: UBERON:0001393 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "auditory areas" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:248 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, medial zone, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:249 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "posterior auditory area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:250 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, caudal (caudodorsal) part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:251 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034751 -property_value: IAO:0000589 "primary auditory area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:252 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035885 -property_value: IAO:0000589 "dorsal auditory area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:254 -intersection_of: UBERON:0013531 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "retrosplenial area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:255 -intersection_of: UBERON:0002685 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anteroventral nucleus of thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:256 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, medial zone, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:257 -intersection_of: UBERON:0035909 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posteromedial visual area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:258 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, rostral (rostroventral) part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:259 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, ventral zone, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:260 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002893 -property_value: IAO:0000589 "nucleus of the lateral olfactory tract, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:261 -intersection_of: UBERON:0002719 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spino-olivary pathway" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:262 -intersection_of: UBERON:0001903 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "reticular nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:263 -intersection_of: UBERON:0035974 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anteroventral preoptic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:264 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:266 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002667 -property_value: IAO:0000589 "lateral septal nucleus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:267 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440040 -property_value: IAO:0000589 "dorsal peduncular area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:268 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002893 -property_value: IAO:0000589 "nucleus of the lateral olfactory tract, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:269 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035897 -property_value: IAO:0000589 "posterolateral visual area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:27 -intersection_of: UBERON:0035975 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "intergeniculate leaflet of the lateral geniculate complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:272 -intersection_of: UBERON:0002690 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anteroventral periventricular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:274 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, dorsal part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:275 -intersection_of: UBERON:0007628 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral septal complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:276 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004725 -property_value: IAO:0000589 "piriform area, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:277 -intersection_of: UBERON:0002798 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spinotectal pathway" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:278 -intersection_of: UBERON:8440030 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "striatum-like amygdalar nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:279 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, lateral agranular part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:28 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:280 -intersection_of: UBERON:0007632 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "barrington's nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:281 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035893 -property_value: IAO:0000589 "anteromedial visual area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:283 -intersection_of: UBERON:8440072 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:284 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004725 -property_value: IAO:0000589 "piriform area, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:286 -intersection_of: UBERON:0002034 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "suprachiasmatic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:287 -intersection_of: UBERON:0002933 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nucleus of the anterior commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:288 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, ventrolateral part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:290 -intersection_of: UBERON:0002273 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hypothalamic lateral zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:291 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004725 -property_value: IAO:0000589 "piriform area, polymorph layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:292 -intersection_of: UBERON:0035977 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nucleus of the accessory olfactory tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:295 -intersection_of: UBERON:0002887 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "basolateral amygdalar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:296 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0009835 -property_value: IAO:0000589 "Anterior cingulate area, ventral part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:297 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, dorsal part, layers 1-4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:298 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014913 -property_value: IAO:0000589 "Magnocellular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:299 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440076 -property_value: IAO:0000589 "Somatomotor areas, Layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:3 -intersection_of: UBERON:0002817 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "secondary fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:30 -intersection_of: UBERON:8440007 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "periventricular hypothalamic nucleus, anterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:301 -intersection_of: UBERON:0003029 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "stria terminalis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:303 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002887 -property_value: IAO:0000589 "basolateral amygdalar nucleus, anterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:304 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440032 -property_value: IAO:0000589 "Prelimbic area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:304325711 -intersection_of: UBERON:0000966 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "retina" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:305 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002436 -property_value: IAO:0000589 "primary visual area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:306 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, ventral part, layers 1-3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:307 -intersection_of: UBERON:8440073 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "magnocellular reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:308 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035886 -property_value: IAO:0000589 "posterior parietal association areas, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:31 -intersection_of: UBERON:0009835 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior cingulate area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:310 -intersection_of: UBERON:0001878 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "septofimbrial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:311 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002887 -property_value: IAO:0000589 "basolateral amygdalar nucleus, posterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 4/5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782546 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000411 -property_value: IAO:0000589 "anterior area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:312782574 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000411 -property_value: IAO:0000589 "laterointermediate area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:312782604 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035912 -property_value: IAO:0000589 "rostrolateral area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782608 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035912 -property_value: IAO:0000589 "rostrolateral area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782612 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035912 -property_value: IAO:0000589 "rostrolateral area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782616 -intersection_of: UBERON:0035920 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "rostrolateral area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782620 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035912 -property_value: IAO:0000589 "rostrolateral area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782624 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035912 -property_value: IAO:0000589 "rostrolateral area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782628 -intersection_of: UBERON:0035890 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "postrhinal area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782632 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035890 -property_value: IAO:0000589 "postrhinal area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782636 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035890 -property_value: IAO:0000589 "postrhinal area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782640 -intersection_of: UBERON:0035911 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "postrhinal area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782644 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035890 -property_value: IAO:0000589 "postrhinal area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782648 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035890 -property_value: IAO:0000589 "postrhinal area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:312782652 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035890 -property_value: IAO:0000589 "postrhinal area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:313 -intersection_of: UBERON:0001891 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "midbrain" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:314 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, posterior part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:315 -intersection_of: UBERON:0001950 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "isocortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:317 -intersection_of: UBERON:0022256 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "subthalamic fascicle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:318 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0022424 -property_value: IAO:0000589 "supragenual nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:319 -intersection_of: UBERON:0002889 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "basomedial amygdalar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:320 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001384 -property_value: IAO:0000589 "primary motor area, Layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:322 -intersection_of: UBERON:0008933 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary somatosensory area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:324 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, ventral zone, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:325 -intersection_of: UBERON:0003033 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "suprageniculate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:326 -intersection_of: UBERON:0002150 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior cerebelar peduncles" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:327 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002889 -property_value: IAO:0000589 "basomedial amygdalar nucleus, anterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:328 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, dorsal part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:329 -intersection_of: UBERON:0010415 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary somatosensory area, barrel field" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:33 -intersection_of: UBERON:0035892 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary visual area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:330 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, dorsal part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:331 -intersection_of: UBERON:0002206 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "mammillary body" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:333 -intersection_of: UBERON:0007630 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "septohippocampal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:334 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002889 -property_value: IAO:0000589 "basomedial amygdalar nucleus, posterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:335 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006083 -property_value: IAO:0000589 "perirhinal area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:336 -intersection_of: UBERON:0002583 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior colliculus commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:337 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, lower limb" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:338 -intersection_of: UBERON:0002219 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "subfornical organ" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:340 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035886 -property_value: IAO:0000589 "posterior parietal association areas, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:341 -intersection_of: UBERON:0002991 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "supramammillary decussation" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:342 -intersection_of: UBERON:0003017 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "substantia innominata" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:343 -intersection_of: UBERON:0002298 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "brain stem" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:344 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, posterior part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:345 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, mouth" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:346 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:347 -intersection_of: UBERON:0007626 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "subparaventricular zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:35 -intersection_of: UBERON:0001715 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "oculomotor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:350 -intersection_of: UBERON:0002587 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "subceruleus nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:351 -intersection_of: UBERON:0001880 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nuclei of the stria terminalis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:352 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:353 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, nose" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:354 -intersection_of: UBERON:0001896 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medulla" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:355 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, posterior part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:357 -intersection_of: UBERON:0035570 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "tectothalamic pathway" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:358 -intersection_of: UBERON:8440035 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "sublaterodorsal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:359 -intersection_of: UBERON:0011173 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:360 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440040 -property_value: IAO:0000589 "dorsal peduncular area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:361 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, trunk" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:362 -intersection_of: UBERON:0002739 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "mediodorsal nucleus of thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:363 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440032 -property_value: IAO:0000589 "Prelimbic area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:365 -intersection_of: UBERON:0022236 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "thalamic peduncles" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:366 -intersection_of: UBERON:0003031 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "submedial nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:367 -intersection_of: UBERON:0011177 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, posterior division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:368 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006083 -property_value: IAO:0000589 "perirhinal area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:369 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, upper limb" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:370 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0005290 -property_value: IAO:0000589 "medulla, motor related" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:371 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, ventral zone, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:374 -intersection_of: UBERON:0001965 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "substantia nigra, compact part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:375 -intersection_of: UBERON:0001954 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ammon's horn" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:376 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, lateral zone, layers 1-3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:377 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035897 -property_value: IAO:0000589 "posterolateral visual area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:378 -intersection_of: UBERON:0008934 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "supplemental somatosensory area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:379 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0005290 -property_value: IAO:0000589 "medulla, behavioral state related" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:38 -intersection_of: UBERON:0001930 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:380 -intersection_of: UBERON:0005832 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cuneate fascicle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:381 -intersection_of: UBERON:0001966 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "substantia nigra, reticular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:382 -intersection_of: UBERON:0003881 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:383 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, medial zone, layers 1-3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:384 -intersection_of: UBERON:0002787 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "trochlear nerve decussation" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:385 -intersection_of: UBERON:0002436 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary visual area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:386 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0005290 -property_value: IAO:0000589 "medulla, sensory related" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:387 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 5/6" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:388 -intersection_of: UBERON:0005821 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "gracile fascicle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:390 -intersection_of: UBERON:0001929 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "supraoptic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:391 -intersection_of: UBERON:0014557 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA1, stratum lacunosum-moleculare" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:392 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002893 -property_value: IAO:0000589 "nucleus of the lateral olfactory tract, layers 1-3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:393 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035897 -property_value: IAO:0000589 "posterolateral visual area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:394 -intersection_of: UBERON:0035893 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anteromedial visual area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:395 -intersection_of: UBERON:0002559 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medullary reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:396 -intersection_of: UBERON:0006087 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "internal arcuate fibers" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:397 -intersection_of: UBERON:0002615 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral tegmental decussation" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:398 -intersection_of: UBERON:0002128 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior olivary complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:399 -intersection_of: UBERON:0014552 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA1, stratum oriens" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:4 -intersection_of: UBERON:0001946 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "inferior colliculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:400 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034989 -property_value: IAO:0000589 "piriform-amygdalar area, layers 1-3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:401 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035893 -property_value: IAO:0000589 "anteromedial visual area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:402 -intersection_of: UBERON:0035894 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterolateral visual area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:403 -intersection_of: UBERON:0002892 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial amygdalar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:404 -intersection_of: UBERON:0002752 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "olivocerebellar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:406 -intersection_of: UBERON:0016641 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "subparafascicular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:407 -intersection_of: UBERON:0014548 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA1, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:408 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034989 -property_value: IAO:0000589 "piriform-amygdalar area, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:409 -intersection_of: UBERON:0035895 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral visual area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:41 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035900 -property_value: IAO:0000589 "posteromedial visual area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:411 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdalar nucleus, anterodorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:412 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, lateral part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:413 -intersection_of: UBERON:0003723 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "vestibular nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:415 -intersection_of: UBERON:0014554 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA1, stratum radiatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:416 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034989 -property_value: IAO:0000589 "piriform-amygdalar area, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:417 -intersection_of: UBERON:0035912 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "rostrolateral visual area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:418 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdalar nucleus, anteroventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:419 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, ventral zone, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:42 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001945 -property_value: IAO:0000589 "Superior colliculus, motor related, deep white layer" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:421 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035895 -property_value: IAO:0000589 "lateral visual area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:423 -intersection_of: UBERON:0003882 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:424 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034989 -property_value: IAO:0000589 "piriform-amygdalar area, polymorph layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:425 -intersection_of: UBERON:0035897 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterolateral visual area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:426 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdalar nucleus, posterodorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:427 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002728 -property_value: IAO:0000589 "ectorhinal area/Layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:428 -intersection_of: UBERON:8440031 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial corticohypothalamic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:429 -intersection_of: UBERON:0002866 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spinal nucleus of the trigeminal, caudal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:43 -intersection_of: UBERON:0014468 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ansoparamedian fissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:430 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014918 -property_value: IAO:0000589 "retrosplenial area, ventral part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:431 -intersection_of: UBERON:0014558 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA2, stratum lacunosum-moleculare" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:432 -intersection_of: UBERON:0035596 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus circularis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:433 -intersection_of: UBERON:0035913 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anteromedial visual area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:434 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, dorsal part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:435 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdalar nucleus, posteroventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:436 -intersection_of: UBERON:0004680 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "columns of the fornix" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:437 -intersection_of: UBERON:0002873 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spinal nucleus of the trigeminal, interpolar part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:438 -intersection_of: UBERON:0014551 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA2, stratum oriens" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:439 -intersection_of: UBERON:0014596 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, descending division, dorsal parvicellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:44 -intersection_of: UBERON:8440033 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "infralimbic area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:440 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, lateral part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:441 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035893 -property_value: IAO:0000589 "anteromedial visual area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:442 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, dorsal part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:443 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000908 -property_value: IAO:0000589 "dorsal hippocampal commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:445 -intersection_of: UBERON:0002591 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spinal nucleus of the trigeminal, oral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:446 -intersection_of: UBERON:0014549 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA2, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:447 -intersection_of: UBERON:0014598 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, descending division, forniceal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:448 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, lateral part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:449 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000908 -property_value: IAO:0000589 "ventral hippocampal commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:45 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002591 -property_value: IAO:0000589 "spinal nucleus of the trigeminal, oral part, rostral dorsomedial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:450 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, upper limb, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:451 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002887 -property_value: IAO:0000589 "basolateral amygdalar nucleus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:452 -intersection_of: UBERON:0002625 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "median preoptic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:453 -intersection_of: UBERON:0008930 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "somatosensory areas" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:454 -intersection_of: UBERON:0014555 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA2, stratum radiatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:455 -intersection_of: UBERON:0014597 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, descending division, lateral parvicellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:456 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "posterior auditory area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:457 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000411 -property_value: IAO:0000589 "visual areas, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:458 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001883 -property_value: IAO:0000589 "olfactory tubercle, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:460 -intersection_of: UBERON:0001718 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "midbrain trigeminal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:461 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, trunk, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:462 -intersection_of: UBERON:0002149 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior salivatory nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:463 -intersection_of: UBERON:0003883 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:464 -intersection_of: UBERON:0014595 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, descending division, medial parvicellular part, ventral zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:465 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001883 -property_value: IAO:0000589 "olfactory tubercle, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:466 -intersection_of: UBERON:0007639 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "alveus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:467 -intersection_of: UBERON:0002272 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hypothalamic medial zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:468 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 2a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:469 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035900 -property_value: IAO:0000589 "posteromedial visual area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:47 -intersection_of: UBERON:0014599 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, magnocellular division, anterior magnocellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:470 -intersection_of: UBERON:0001906 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "subthalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:471 -intersection_of: UBERON:0014559 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA3, stratum lacunosum-moleculare" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:472 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdalar nucleus, posterodorsal part, sublayer a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:473 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001883 -property_value: IAO:0000589 "olfactory tubercle, polymorph layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:475 -intersection_of: UBERON:0001927 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial geniculate complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:476 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:477 -intersection_of: UBERON:0002435 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "striatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:478 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, lower limb, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:479 -intersection_of: UBERON:0014560 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA3, stratum lucidum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:480 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdalar nucleus, posterodorsal part, sublayer b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:481 -intersection_of: UBERON:0001881 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "islands of Calleja" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:482 -intersection_of: UBERON:0003025 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "brachium of the inferior colliculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:483 -intersection_of: UBERON:0001942 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial habenula" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:484 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, medial part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:485 -intersection_of: UBERON:0005382 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "striatum dorsal region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:486 -intersection_of: UBERON:0014553 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA3, stratum oriens" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:487 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002892 -property_value: IAO:0000589 "medial amygdalar nucleus, posterodorsal part, sublayer c" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:488 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, lateral part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:489 -intersection_of: UBERON:0023868 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "major island of Calleja" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:490 -intersection_of: UBERON:8440034 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bulbocerebellar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:491 -intersection_of: UBERON:0001939 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial mammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:492 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:493 -intersection_of: UBERON:0005403 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "striatum ventral region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:495 -intersection_of: UBERON:0014550 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA3, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:496 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440040 -property_value: IAO:0000589 "dorsal peduncular area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:497 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000411 -property_value: IAO:0000589 "visual areas, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:498 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, anteromedial area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:499 -intersection_of: UBERON:0002640 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cuneocerebellar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:500 -intersection_of: UBERON:8440076 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "somatomotor areas" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:501 -intersection_of: UBERON:0035914 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posteromedial visual area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:502 -intersection_of: UBERON:0002191 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "subiculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:504 -intersection_of: UBERON:0014556 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "field CA3, stratum radiatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:505 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, dorsomedial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:506 -intersection_of: UBERON:0002790 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal acoustic stria" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:507 -intersection_of: UBERON:0009951 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "main olfactory bulb" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:508 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 2b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:509 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "subiculum, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:51 -intersection_of: UBERON:0002733 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "intralaminar nuclei of the dorsal thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:510 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, lower limb, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:512 -intersection_of: UBERON:0002037 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebellum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:513 -intersection_of: UBERON:0011175 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, fusiform nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:514 -intersection_of: UBERON:0005373 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal column" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:515 -intersection_of: UBERON:0002035 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial preoptic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:516 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:518 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "subiculum, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:519 -intersection_of: UBERON:0002130 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebellar nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:52 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:520 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "ventral auditory area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:521 -intersection_of: UBERON:0007627 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, magnocellular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:523 -intersection_of: UBERON:0007769 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial preoptic area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:524 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, medial part, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:525 -intersection_of: UBERON:0001940 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "supramammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:526 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:527 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035885 -property_value: IAO:0000589 "dorsal auditory area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:528 -intersection_of: UBERON:0002129 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebellar cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:529 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, ventral nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:53 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002591 -property_value: IAO:0000589 "spinal nucleus of the trigeminal, oral part, middle dorsomedial part, dorsal zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:532 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035886 -property_value: IAO:0000589 "posterior parietal association areas, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:533 -intersection_of: UBERON:0035900 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posteromedial visual area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:534 -intersection_of: UBERON:8440036 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "supratrigeminal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:535 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440040 -property_value: IAO:0000589 "dorsal peduncular area, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:536 -intersection_of: UBERON:0002883 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "central amygdalar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:537 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, anterolateral area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:54 -intersection_of: UBERON:0001910 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial forebrain bundle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:540 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006083 -property_value: IAO:0000589 "perirhinal area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:541 -intersection_of: UBERON:0035013 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "temporal association areas" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:542 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014918 -property_value: IAO:0000589 "retrosplenial area, ventral part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:543 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:544 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002883 -property_value: IAO:0000589 "central amygdalar nucleus, capsular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:545 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, dorsal part, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:546 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, juxtacapsular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:547 -intersection_of: UBERON:0003045 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal longitudinal fascicle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:549 -intersection_of: UBERON:0001897 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:550 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 5/6" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:551 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002883 -property_value: IAO:0000589 "central amygdalar nucleus, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:552 -intersection_of: UBERON:0002999 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pontine reticular nucleus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:553 -intersection_of: UBERON:0002753 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal spinocerebellar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:554 -intersection_of: UBERON:0011176 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, oval nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:556 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440033 -property_value: IAO:0000589 "Infralimbic area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:557 -intersection_of: UBERON:0001936 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "tuberomammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:558 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, nose, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:559 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002883 -property_value: IAO:0000589 "central amygdalar nucleus, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:56 -intersection_of: UBERON:0001882 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus accumbens" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:560 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001720 -property_value: IAO:0000589 "cochlear nucleus, subpedunclular granular region" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:561 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000411 -property_value: IAO:0000589 "visual areas, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:562 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, anterior division, rhomboid nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:564 -intersection_of: UBERON:0001877 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial septal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:565 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035900 -property_value: IAO:0000589 "posteromedial visual area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:566 -intersection_of: UBERON:0034989 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "postpiriform transition area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:567 -intersection_of: UBERON:0001893 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebrum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:568 -intersection_of: UBERON:0035976 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "accessory abducens nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:569 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, posterior division, dorsal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:571 -intersection_of: UBERON:0002705 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "midline group of the dorsal thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:572 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0009835 -property_value: IAO:0000589 "anterior cingulate area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:573 -intersection_of: UBERON:0035915 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral visual area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:574 -intersection_of: UBERON:0002147 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "tegmental reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:575 -intersection_of: UBERON:0003036 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "central lateral nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:576 -intersection_of: UBERON:8440037 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "accessory facial motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:577 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, upper limb, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:578 -intersection_of: UBERON:0011178 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, posterior division, principal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:579 -intersection_of: UBERON:0004545 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "external capsule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:58 -intersection_of: UBERON:0013601 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial terminal nucleus of the accessory optic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:580 -intersection_of: UBERON:0036012 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the brachium of the inferior colliculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:581 -intersection_of: UBERON:0002977 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "triangular nucleus of septum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:582 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, medial part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:583 -intersection_of: UBERON:0002023 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "claustrum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:584 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, lateral zone, layers 1-2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:585 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, posterior division, interfascicular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:587 -intersection_of: UBERON:0002044 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of Darkschewitsch" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:589 -intersection_of: UBERON:0015800 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "taenia tecta" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:590 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014918 -property_value: IAO:0000589 "retrosplenial area, ventral part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:592 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, medial zone, layers 1-2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:593 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0002436 -property_value: IAO:0000589 "primary visual area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:594 -intersection_of: UBERON:0011179 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, posterior division, transverse nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:595 -intersection_of: UBERON:0002138 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "fasciculus retroflexus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:596 -intersection_of: UBERON:0001879 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "diagonal band nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:597 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:598 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "ventral auditory area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:599 -intersection_of: UBERON:0001923 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "central medial nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:599626923 -intersection_of: UBERON:0002139 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "Subcommissural organ" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:6 -intersection_of: UBERON:0001887 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "internal capsule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:60 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:600 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035885 -property_value: IAO:0000589 "dorsal auditory area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:601 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035894 -property_value: IAO:0000589 "anterolateral visual area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:602 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001880 -property_value: IAO:0000589 "bed nuclei of the stria terminalis, posterior division, strial extension" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:603 -intersection_of: UBERON:0002310 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "fimbria" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:604 -intersection_of: UBERON:0035973 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus incertus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:605 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0015800 -property_value: IAO:0000589 "taenia tecta, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:606 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014918 -property_value: IAO:0000589 "retrosplenial area, ventral part, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:607 -intersection_of: UBERON:0002610 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cochlear nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:608 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, ventrolateral part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:61 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002591 -property_value: IAO:0000589 "spinal nucleus of the trigeminal, oral part, middle dorsomedial part, ventral zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:610 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, dorsal part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:611 -intersection_of: UBERON:0001909 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "habenular commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:612 -intersection_of: UBERON:0006840 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the lateral lemniscus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:613 -intersection_of: UBERON:0035916 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral visual area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:614 -intersection_of: UBERON:0002620 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "tuberal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:615 -intersection_of: UBERON:0002995 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "substantia nigra, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:616 -intersection_of: UBERON:0002696 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cuneiform nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:617 -intersection_of: UBERON:0035113 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "mediodorsal nucleus of the thalamus, central part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:618 -intersection_of: UBERON:0000908 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hippocampal commissures" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:619 -intersection_of: UBERON:0002893 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the lateral olfactory tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:62 -intersection_of: UBERON:0002309 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial longitudinal fascicle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:620 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, medial part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:621 -intersection_of: UBERON:0002633 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "motor nucleus of trigeminal" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:622 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014918 -property_value: IAO:0000589 "retrosplenial area, ventral part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:623 -intersection_of: UBERON:8440012 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebral nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:625 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, upper limb, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:626 -intersection_of: UBERON:0035114 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "mediodorsal nucleus of the thalamus, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:628 -intersection_of: UBERON:0002996 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the optic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:63 -intersection_of: UBERON:0014602 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, descending division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:630 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, lateral part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:631 -intersection_of: UBERON:0002891 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cortical amygdalar area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:632 -intersection_of: UBERON:0005381 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus, granule cell layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:633 -intersection_of: UBERON:0003028 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "inferior colliculus commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:634 -intersection_of: UBERON:0002711 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the posterior commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:635 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035886 -property_value: IAO:0000589 "posterior parietal association areas, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:636 -intersection_of: UBERON:0002647 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "mediodorsal nucleus of the thalamus, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:637 -intersection_of: UBERON:0002776 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral group of the dorsal thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:639 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, anterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:64 -intersection_of: UBERON:0002679 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterodorsal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:640 -intersection_of: UBERON:8440038 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "efferent vestibular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:641 -intersection_of: UBERON:0002952 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "intermediate acoustic stria" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:642 -intersection_of: UBERON:0007633 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the trapezoid body" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:643 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "posterior auditory area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:644 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440076 -property_value: IAO:0000589 "Somatomotor areas, Layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:645 -intersection_of: UBERON:0004720 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "vermal regions" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:646 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440040 -property_value: IAO:0000589 "dorsal peduncular area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:647 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:648 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001384 -property_value: IAO:0000589 "primary motor area, Layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:649 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035894 -property_value: IAO:0000589 "anterolateral visual area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:650 -intersection_of: UBERON:0002592 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "juxtarestiform body" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:651 -intersection_of: UBERON:0009050 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the solitary tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:653 -intersection_of: UBERON:0002682 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "abducens nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:654 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, nose, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:655 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, lateral zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:656 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016634 -property_value: IAO:0000589 "secondary motor area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:657 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, mouth, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:658 -intersection_of: UBERON:0002953 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral lemniscus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:659 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0009050 -property_value: IAO:0000589 "nucleus of the solitary tract, central part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:66 -intersection_of: UBERON:0013600 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral terminal nucleus of the accessory optic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:661 -intersection_of: UBERON:0003011 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "facial motor nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:662 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440075 -property_value: IAO:0000589 "Gustatory areas, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:663 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002891 -property_value: IAO:0000589 "cortical amygdalar area, posterior part, medial zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:664 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:665 -intersection_of: UBERON:0001888 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral olfactory tract, body" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:666 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0009050 -property_value: IAO:0000589 "nucleus of the solitary tract, commissural part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:667 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002795 -property_value: IAO:0000589 "frontal pole, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:669 -intersection_of: UBERON:0000411 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "visual areas" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:67 -intersection_of: UBERON:0002551 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "interstitial nucleus of Cajal" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:670 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, trunk, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:671 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, lateral agranular part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:672 -intersection_of: UBERON:0005383 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "caudoputamen" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:673 -intersection_of: UBERON:0002720 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "mammillary peduncle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:674 -intersection_of: UBERON:0009051 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the solitary tract, gelatinous part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:675 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, ventral part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:677 -intersection_of: UBERON:8440024 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "visceral area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:678 -intersection_of: UBERON:0035917 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal auditory area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:679 -intersection_of: UBERON:0003004 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior central nucleus raphe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:68 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002795 -property_value: IAO:0000589 "frontal pole, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:680 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, ventrolateral part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:681 -intersection_of: UBERON:0006698 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "mammillotegmental tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:682 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0009050 -property_value: IAO:0000589 "nucleus of the solitary tract, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:683 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035886 -property_value: IAO:0000589 "posterior parietal association areas, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:685 -intersection_of: UBERON:0002614 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral medial nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:686 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:687 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014918 -property_value: IAO:0000589 "retrosplenial area, ventral part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:688 -intersection_of: UBERON:0000956 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebral cortex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:689 -intersection_of: UBERON:8440014 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventrolateral preoptic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:69 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002591 -property_value: IAO:0000589 "spinal nucleus of the trigeminal, oral part, ventrolateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:690 -intersection_of: UBERON:0006696 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "mammillothalamic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:691 -intersection_of: UBERON:0009052 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the solitary tract, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:692 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006083 -property_value: IAO:0000589 "perirhinal area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:693 -intersection_of: UBERON:0001935 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventromedial hypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:694 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, ventral part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:695 -intersection_of: UBERON:0005343 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cortical plate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:696 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "posterior auditory area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:697 -intersection_of: UBERON:0003002 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial lemniscus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:698 -intersection_of: UBERON:0002894 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "olfactory areas" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:699 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, ventral part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:7 -intersection_of: UBERON:0002597 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "principal sensory nucleus of the trigeminal" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:700 -intersection_of: UBERON:0014589 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior hypothalamic nucleus, anterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:701 -intersection_of: UBERON:0002673 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "vestibular nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:702 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, nose, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:703 -intersection_of: UBERON:0004035 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cortical subplate" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:704 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, ventral part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:705 -intersection_of: UBERON:0002666 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "midbrain tract of the trigeminal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:706 -intersection_of: UBERON:0002565 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "olivary pretectal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:707 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440033 -property_value: IAO:0000589 "Infralimbic area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:708 -intersection_of: UBERON:0014590 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior hypothalamic nucleus, central part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:709 -intersection_of: UBERON:0002596 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral posterior complex of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:71 -intersection_of: UBERON:0014603 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, magnocellular division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:710 -intersection_of: UBERON:0001646 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "abducens nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:711 -intersection_of: UBERON:0002045 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cuneate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:712 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:713 -intersection_of: UBERON:0034931 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "perforant path" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:714 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:715 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 2a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:716 -intersection_of: UBERON:0014592 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior hypothalamic nucleus, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:717 -intersection_of: UBERON:0002019 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "accessory spinal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:718 -intersection_of: UBERON:0002942 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral posterolateral nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:719 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:720 -intersection_of: UBERON:0018238 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal column nuclei" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:721 -intersection_of: UBERON:0035904 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary visual area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:723 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:724 -intersection_of: UBERON:0014591 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior hypothalamic nucleus, posterior part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:726 -intersection_of: UBERON:0001885 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:727 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:73 -intersection_of: UBERON:0005281 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventricular systems" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:730 -intersection_of: UBERON:0011768 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pineal stalk" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:731 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:732 -intersection_of: UBERON:0002632 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial mammillary nucleus, median part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:733 -intersection_of: UBERON:0002945 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral posteromedial nucleus of the thalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:734 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001885 -property_value: IAO:0000589 "dentate gyrus crest" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:735 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034751 -property_value: IAO:0000589 "primary auditory area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:737 -intersection_of: UBERON:0003016 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "postcommissural fornix" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:738 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:739 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0009835 -property_value: IAO:0000589 "anterior cingulate area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:74 -intersection_of: UBERON:0035918 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral visual area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:741 -intersection_of: UBERON:0003018 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral posteromedial nucleus of the thalamus, parvicellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:742 -intersection_of: UBERON:0004679 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus crest, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:743 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone, layer 6" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:744 -intersection_of: UBERON:0006847 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebellar commissure" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:746 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, ventrolateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:747 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440033 -property_value: IAO:0000589 "Infralimbic area, layer 2" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:749 -intersection_of: UBERON:0002691 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral tegmental area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:75 -intersection_of: UBERON:0013599 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal terminal nucleus of the accessory optic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:750 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035897 -property_value: IAO:0000589 "posterolateral visual area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:751 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002928 -property_value: IAO:0000589 "dentate gyrus crest, polymorph layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:752 -intersection_of: UBERON:0007416 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebellar peduncles" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:753 -intersection_of: UBERON:0002723 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "principal mammillary tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:754 -intersection_of: UBERON:0001883 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "olfactory tubercle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:755 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "ventral auditory area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:757 -intersection_of: UBERON:0002438 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:758 -intersection_of: UBERON:0005381 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus crest, granule cell layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:759 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "posterior auditory area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:76 -intersection_of: UBERON:8440074 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "interstitial nucleus of the vestibular nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:763 -intersection_of: UBERON:0002689 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "vascular organ of the lamina terminalis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:764 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 2b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:765 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002687 -property_value: IAO:0000589 "nucleus x" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:766 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001885 -property_value: IAO:0000589 "dentate gyrus lateral blade" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:767 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016634 -property_value: IAO:0000589 "secondary motor area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:77 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002591 -property_value: IAO:0000589 "spinal nucleus of the trigeminal, oral part, caudal dorsomedial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:771 -intersection_of: UBERON:0000988 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pons" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:773 -intersection_of: UBERON:0002871 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hypoglossal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:774 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, lateral agranular part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:775 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004679 -property_value: IAO:0000589 "dentate gyrus lateral blade, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:776 -intersection_of: UBERON:0002336 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "corpus callosum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:778 -intersection_of: UBERON:0035906 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary visual area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:78 -intersection_of: UBERON:0002152 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "middle cerebellar peduncle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:780 -intersection_of: UBERON:0022229 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterior amygdalar nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:782 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001885 -property_value: IAO:0000589 "dentate gyrus lateral blade, polymorph layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:783 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, dorsal part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:784 -intersection_of: UBERON:0002707 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "corticospinal tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:788 -intersection_of: UBERON:8440039 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "piriform-amygdalar area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:79 -intersection_of: UBERON:0014600 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, magnocellular division, medial magnocellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:790 -intersection_of: UBERON:0005381 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus lateral blade, granule cell layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:791 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "posterior auditory area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:793 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:794 -intersection_of: UBERON:0014761 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spinal tract of the trigeminal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:795 -intersection_of: UBERON:0003040 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "periaqueductal gray" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:796 -intersection_of: UBERON:0036007 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dopaminergic A13 group" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:797 -intersection_of: UBERON:0001907 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "zona incerta" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:798 -intersection_of: UBERON:0001647 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "facial nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:799 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001885 -property_value: IAO:0000589 "dentate gyrus medial blade" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:8 -intersection_of: UBERON:0000955 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "basic cell groups and regions" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:800 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, ventral part, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:801 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000411 -property_value: IAO:0000589 "visual areas, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:802 -intersection_of: UBERON:0006086 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "stria medullaris" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:803 -intersection_of: UBERON:0006514 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pallidum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:805 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035900 -property_value: IAO:0000589 "posteromedial visual area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:806 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008934 -property_value: IAO:0000589 "supplemental somatosensory area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:807 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004679 -property_value: IAO:0000589 "dentate gyrus medial blade, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:808 -intersection_of: UBERON:0001649 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "glossopharyngeal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:809 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006514 -property_value: IAO:0000589 "pallidum, caudal region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:81 -intersection_of: UBERON:0002285 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lateral ventricle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:811 -intersection_of: UBERON:0002563 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "inferior colliculus, central nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:812 -intersection_of: UBERON:0002588 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior cerebellar peduncle decussation" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:813 -intersection_of: UBERON:0001650 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "hypoglossal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:814 -intersection_of: UBERON:8440040 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal peduncular area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:815 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001885 -property_value: IAO:0000589 "dentate gyrus medial blade, polymorph layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:816 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034751 -property_value: IAO:0000589 "primary auditory area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:818 -intersection_of: UBERON:0006516 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pallidum, dorsal region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:82 -intersection_of: UBERON:0003006 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the lateral lemniscus, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:820 -intersection_of: UBERON:0002577 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "inferior colliculus, dorsal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:821 -intersection_of: UBERON:0035907 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary visual area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:822 -intersection_of: UBERON:0022230 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "retrohippocampal region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:823 -intersection_of: UBERON:0005381 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate gyrus medial blade, granule cell layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:825 -intersection_of: UBERON:0002697 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "supraoptic commissures, dorsal" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:826 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006514 -property_value: IAO:0000589 "pallidum, medial region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:827 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440033 -property_value: IAO:0000589 "Infralimbic area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:828 -intersection_of: UBERON:0002571 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "inferior colliculus, external nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:829 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "subiculum, dorsal part, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:83 -intersection_of: UBERON:0002127 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "inferior olivary complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:830 -intersection_of: UBERON:0001934 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsomedial nucleus of the hypothalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:831 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, dorsal part, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:832 -intersection_of: UBERON:0001643 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "oculomotor nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:833 -intersection_of: UBERON:0002676 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "supraoptic commissures, ventral" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:834 -intersection_of: UBERON:0006780 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior colliculus, zonal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:835 -intersection_of: UBERON:0002778 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pallidum, ventral region" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:836 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002728 -property_value: IAO:0000589 "ectorhinal area/Layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:837 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "subiculum, dorsal part, stratum radiatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:838 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, nose, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:839 -intersection_of: UBERON:0002870 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal motor nucleus of the vagus nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:84 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440032 -property_value: IAO:0000589 "Prelimbic area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:840 -intersection_of: UBERON:0001579 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "olfactory nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:841 -intersection_of: UBERON:0002932 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "trapezoid body" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:842 -intersection_of: UBERON:0006120 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior colliculus, superficial gray layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:843 -intersection_of: UBERON:0004683 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parasubiculum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:844 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001384 -property_value: IAO:0000589 "primary motor area, Layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:845 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "subiculum, dorsal part, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:846 -intersection_of: UBERON:0002132 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dentate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:847 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034751 -property_value: IAO:0000589 "primary auditory area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:848 -intersection_of: UBERON:0000941 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "optic nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:849 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440024 -property_value: IAO:0000589 "Visceral area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:85 -intersection_of: UBERON:0005413 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spinocerebellar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:851 -intersection_of: UBERON:0006779 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "superior colliculus, optic layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:852 -intersection_of: UBERON:0016633 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parvicellular reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:853 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "subiculum, ventral part, molecular layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:854 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, upper limb, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:857 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440024 -property_value: IAO:0000589 "Visceral area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:858 -intersection_of: UBERON:0004170 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral commissure of the spinal cord" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:859 -intersection_of: UBERON:0002877 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parasolitary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:860 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003007 -property_value: IAO:0000589 "parabrachial nucleus, lateral division, central lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:861 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "subiculum, ventral part, stratum radiatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:862 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008934 -property_value: IAO:0000589 "supplemental somatosensory area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:863 -intersection_of: UBERON:0002714 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "rubrospinal tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:865 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:866 -intersection_of: UBERON:0002987 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ventral spinocerebellar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:867 -intersection_of: UBERON:0007634 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parabrachial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:868 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003007 -property_value: IAO:0000589 "parabrachial nucleus, lateral division, dorsal lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:869 -intersection_of: UBERON:0035919 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterolateral visual area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:870 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002191 -property_value: IAO:0000589 "subiculum, ventral part, pyramidal layer" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:871 -intersection_of: UBERON:0007703 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "spinothalamic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:872 -intersection_of: UBERON:0002043 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal nucleus raphe" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:873 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008934 -property_value: IAO:0000589 "supplemental somatosensory area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:874 -intersection_of: UBERON:0002140 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parabigeminal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:875 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003007 -property_value: IAO:0000589 "parabrachial nucleus, lateral division, external lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:876 -intersection_of: UBERON:0035595 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "accessory optic tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:877 -intersection_of: UBERON:0002949 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "tectospinal pathway" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:878 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, mouth, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:879 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:88 -intersection_of: UBERON:0002634 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior hypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:880 -intersection_of: UBERON:0002143 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal tegmental nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:881 -intersection_of: UBERON:0003007 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parabrachial nucleus, lateral division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:882 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001384 -property_value: IAO:0000589 "primary motor area, Layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:883 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003007 -property_value: IAO:0000589 "parabrachial nucleus, lateral division, superior lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:885 -intersection_of: UBERON:0002924 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "terminal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:887 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002775 -property_value: IAO:0000589 "efferent cochlear group" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:888 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0006083 -property_value: IAO:0000589 "perirhinal area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:889 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, nose, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:89 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002285 -property_value: IAO:0000589 "rhinocele" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:890 -intersection_of: UBERON:0002918 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parabrachial nucleus, medial division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:891 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0003007 -property_value: IAO:0000589 "parabrachial nucleus, lateral division, ventral lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:892 -intersection_of: UBERON:0034896 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "ansa peduncularis" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:893 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008934 -property_value: IAO:0000589 "supplemental somatosensory area, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:894 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, lateral agranular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:895 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002728 -property_value: IAO:0000589 "ectorhinal area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:898 -intersection_of: UBERON:0002968 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pontine central gray" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:899 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002918 -property_value: IAO:0000589 "parabrachial nucleus, medial division, external medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:9 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, trunk, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:90 -intersection_of: UBERON:0007710 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the lateral lemniscus, horizontal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:900 -intersection_of: UBERON:0003039 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "anterior commissure, olfactory limb" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:901 -intersection_of: UBERON:0001645 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "trigeminal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:902 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035897 -property_value: IAO:0000589 "posterolateral visual area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:903 -intersection_of: UBERON:0002864 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "external cuneate nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:904 -intersection_of: UBERON:0007629 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "medial septal complex" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:905 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0035894 -property_value: IAO:0000589 "anterolateral visual area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:906 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, lateral agranular part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:907 -intersection_of: UBERON:0001924 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paracentral nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:908 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000935 -property_value: IAO:0000589 "anterior commissure, temporal limb" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:909 -intersection_of: UBERON:0002728 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "entorhinal area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:91 -intersection_of: UBERON:0004073 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "interposed nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:910 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, medial part, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:911 -intersection_of: UBERON:0002618 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "trochlear nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:912 -intersection_of: UBERON:0004074 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lingula (I)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:913 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000411 -property_value: IAO:0000589 "visual areas, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:915 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002918 -property_value: IAO:0000589 "parabrachial nucleus, medial division, medial medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:916 -intersection_of: UBERON:0002580 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "brachium of the superior colliculus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:917 -intersection_of: UBERON:0001759 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "vagus nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:918 -intersection_of: UBERON:0007225 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "entorhinal area, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:92 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:920 -intersection_of: UBERON:0003021 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "central lobule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:921 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:922 -intersection_of: UBERON:0006083 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "perirhinal area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:923 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002918 -property_value: IAO:0000589 "parabrachial nucleus, medial division, ventral medial part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:924 -intersection_of: UBERON:0002623 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cerebal peduncle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:926 -intersection_of: UBERON:0018262 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "entorhinal area, medial part, dorsal zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:928 -intersection_of: UBERON:0007763 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "culmen" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:929 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, nose, layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:93 -intersection_of: UBERON:0002796 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "motor root of the trigeminal nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:930 -intersection_of: UBERON:0001922 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "parafascicular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:931 -intersection_of: UBERON:0002151 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pontine gray" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:933 -intersection_of: UBERON:0001648 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "vestibulocochlear nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:934 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007224 -property_value: IAO:0000589 "entorhinal area, medial part, ventral zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:936 -intersection_of: UBERON:0004080 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "declive (VI)" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:937 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000411 -property_value: IAO:0000589 "visual areas, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:938 -intersection_of: UBERON:0016635 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paragigantocellular reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:939 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001719 -property_value: IAO:0000589 "nucleus ambiguus, dorsal division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:94 -intersection_of: UBERON:0014604 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paraventricular hypothalamic nucleus, parvicellular division" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:940 -intersection_of: UBERON:0003961 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cingulum bundle" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:941 -intersection_of: UBERON:0002768 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "vestibulospinal pathway" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:942 -intersection_of: UBERON:0014284 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "endopiriform nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:943 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001384 -property_value: IAO:0000589 "primary motor area, Layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:944 -intersection_of: UBERON:0004081 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "folium-tuber vermis (VII)" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:945 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, upper limb, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:946 -intersection_of: UBERON:0002706 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "posterior hypothalamic nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:947 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:8440076 -property_value: IAO:0000589 "Somatomotor areas, Layer 6b" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:948 -intersection_of: UBERON:0004727 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cochlear nerve" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:95 -intersection_of: UBERON:0034893 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "agranular insular area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:950 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, mouth, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:951 -intersection_of: UBERON:0004082 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pyramus (VIII)" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:952 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014284 -property_value: IAO:0000589 "endopiriform nucleus, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:953 -intersection_of: UBERON:0001905 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "pineal body" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:954 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034751 -property_value: IAO:0000589 "primary auditory area, layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:955 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002154 -property_value: IAO:0000589 "lateral reticular nucleus, magnocellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:956 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034678 -property_value: IAO:0000589 "corpus callosum, anterior forceps" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:957 -intersection_of: UBERON:0004078 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "uvula (IX)" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:958 -intersection_of: UBERON:0001899 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "epithalamus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:959 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "ventral auditory area, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:96 -intersection_of: UBERON:0002829 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal cochlear nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:961 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004725 -property_value: IAO:0000589 "piriform area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:962 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0016634 -property_value: IAO:0000589 "secondary motor area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:963 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002154 -property_value: IAO:0000589 "lateral reticular nucleus, parvicellular part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:964 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014528 -property_value: IAO:0000589 "corpus callosum, extreme capsule" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:965 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0013531 -property_value: IAO:0000589 "retrosplenial area, lateral agranular part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:966 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0014284 -property_value: IAO:0000589 "endopiriform nucleus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:967 -intersection_of: UBERON:0001785 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "cranial nerves" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:968 -intersection_of: UBERON:0004083 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nodulus (X)" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:969 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004167 -property_value: IAO:0000589 "orbital area, ventrolateral part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:970 -intersection_of: UBERON:0016825 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paragigantocellular reticular nucleus, dorsal part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:971 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034676 -property_value: IAO:0000589 "corpus callosum, posterior forceps" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:972 -intersection_of: UBERON:8440032 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "prelimbic area" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:973 -intersection_of: BFO:0000050 NCBITaxon:10090 {all_some="true"} -intersection_of: BFO:0000050 UBERON:0035895 -property_value: IAO:0000589 "lateral visual area, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:974 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0008933 -property_value: IAO:0000589 "primary somatosensory area, mouth, layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:975 -intersection_of: UBERON:0002141 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "edinger-Westphal nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:976 -intersection_of: UBERON:0004075 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "lobule II" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:977 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002728 -property_value: IAO:0000589 "ectorhinal area/Layer 6a" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:978 -intersection_of: UBERON:0016824 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paragigantocellular reticular nucleus, lateral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:979 -intersection_of: UBERON:0015703 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "corpus callosum, rostrum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:98 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0004922 -property_value: IAO:0000589 "subependymal zone" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:980 -intersection_of: UBERON:0007767 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "dorsal premammillary nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:981 -intersection_of: UBERON:0035873 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary somatosensory area, barrel field, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:982 -intersection_of: UBERON:8440013 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "fasciola cinerea" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:984 -intersection_of: UBERON:0004076 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "Lobule III" xsd:string -property_value: status "Verified" xsd:string {source="https://orcid.org/0000-0001-7258-9596"} - -[Term] -id: MBA:985 -intersection_of: UBERON:0001384 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "primary motor area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:986 -intersection_of: UBERON:0015708 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "corpus callosum, splenium" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:987 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0000988 -property_value: IAO:0000589 "pons, motor related" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:988 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0002728 -property_value: IAO:0000589 "ectorhinal area/Layer 5" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:989 -intersection_of: UBERON:0002153 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "fastigial nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:99 -intersection_of: UBERON:0002604 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "nucleus of the lateral lemniscus, ventral part" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:990 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0001393 -property_value: IAO:0000589 "ventral auditory area, layer 4" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:993 -intersection_of: UBERON:0016634 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "secondary motor area" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:994 -intersection_of: UBERON:0022272 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "corticobulbar tract" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:995 -intersection_of: UBERON:0007764 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "paramedian reticular nucleus" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:996 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0034893 -property_value: IAO:0000589 "agranular insular area, dorsal part, layer 1" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:997 -intersection_of: UBERON:0000955 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "root" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:998 -intersection_of: UBERON:0014605 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "fundus of striatum" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:999 -relationship: BFO:0000050 NCBITaxon:10090 -relationship: BFO:0000050 UBERON:0007225 -property_value: IAO:0000589 "entorhinal area, lateral part, layer 2/3" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - -[Term] -id: MBA:ENTITY -intersection_of: UBERON:0001062 -intersection_of: BFO:0000050 NCBITaxon:10090 -property_value: IAO:0000589 "MBA entity" xsd:string -property_value: status "Verified" xsd:string {source="https://ror.org/03cpe7c52"} - diff --git a/src/ontology/bridge/uberon-bridge-to-mba.owl b/src/ontology/bridge/uberon-bridge-to-mba.owl index c332feaaf6..fd8f0a5a42 100644 --- a/src/ontology/bridge/uberon-bridge-to-mba.owl +++ b/src/ontology/bridge/uberon-bridge-to-mba.owl @@ -69,15605 +69,3505 @@ - + - - - - - - - - - - - - - tuberomammillary nucleus, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - interpeduncular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - extrapyramidal fiber systems - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lobule V - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - primary auditory area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - ventral premammillary nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary auditory area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, trunk, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - simple lobule - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - geniculate group, dorsal thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - fiber tracts - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - ventral cochlear nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - dorsal auditory area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - olfactory nerve layer of main olfactory bulb - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - ansiform lobule - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - corticospinal tract, crossed - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - nigrostriatal tract - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - posterior complex of the thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - secondary motor area, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - globus pallidus, external segment - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ventral auditory area, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - grooves - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - paramedian lobule - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, upper limb, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posterior auditory area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - corticospinal tract, uncrossed - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - paraventricular hypothalamic nucleus, magnocellular division, posterior magnocellular part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, lower limb, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - globus pallidus, internal segment - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - copula pyramidis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - taenia tecta, dorsal part, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - supplemental somatosensory area, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - corticotectal tract - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - postsubiculum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - primary somatosensory area, barrel field, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - gracile nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, dorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - paraflocculus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - taenia tecta, dorsal part, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - peripeduncular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ectorhinal area/Layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - anteromedial visual area, layer 6a - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - primary somatosensory area, barrel field, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - gigantocellular reticular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - flocculus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - superior olivary complex, medial part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - taenia tecta, dorsal part, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - pedunculopontine nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - anterior cingulate area, layer 2/3 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - Infralimbic area, layer 6a - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - crus 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - Gustatory areas - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - taenia tecta, dorsal part, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - inferior salivatory nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - posterior pretectal nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - primary somatosensory area, barrel field, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - hippocampal fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - crus 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - hindbrain - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - anteromedial visual area, layer 2/3 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - taenia tecta, ventral part, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - median eminence - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - simple lobule, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - simple lobule, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - simple lobule, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - crus 1, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - crus 1, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - crus 1, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - crus 2, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - crus 2, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - crus 2, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - paramedian lobule, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - paramedian lobule, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - paramedian lobule, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - copula pyramidis, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - copula pyramidis, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - copula pyramidis, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - paraflocculus, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - paraflocculus, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - paraflocculus, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - parapyramidal nucleus - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - flocculus, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - flocculus, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - flocculus, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - parasubiculum, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - parasubiculum, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - parasubiculum, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - postsubiculum, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - postsubiculum, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - postsubiculum, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - presubiculum, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - - - - - - Somatomotor areas, Layer 1 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - primary somatosensory area, barrel field, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - presubiculum, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - presubiculum, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - dentate gyrus, subgranular zone - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - dentate gyrus, molecular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - dentate gyrus, polymorph layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - - - - - - lingula (I), granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - lingula (I), Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - lingula (I), molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - lobule II, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - lobule II, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - rhinal fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - - - - - - lobule II, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - - - - - - - - - - - - - - - - - - - - - - - lobule III, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - lobule III, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - lobule III, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - lobule IV, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - lobule IV, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - lobule IV, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - lobule V, granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - lobule V, Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - lobule V, molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - medial geniculate complex, dorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - declive (VI), granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - declive (VI), Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - declive (VI), molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - folium-tuber vermis (VII), granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - folium-tuber vermis (VII), Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - folium-tuber vermis (VII), molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - pyramus (VIII), granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + + + + + + + - + - - - - - - - - - - - - - hemispheric regions - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - pyramus (VIII), Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - pyramus (VIII), molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - uvula (IX), granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - uvula (IX), Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - uvula (IX), molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - nodulus (X), granular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - nodulus (X), Purkinje layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - nodulus (X), molecular layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - anterolateral visual area, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - taenia tecta, ventral part, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - efferent cochleovestibular bundle - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - rhinal incisure - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - medial geniculate complex, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - choroid plexus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - hippocampal region - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Infralimbic area, layer 6b - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - taenia tecta, ventral part, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - presubiculum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - secondary motor area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, trunk, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - precentral fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - medial geniculate complex, medial part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - hippocampal formation - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - supplemental somatosensory area, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lobules IV-V - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - external medullary lamina of the thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - pontine reticular nucleus, caudal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, lower limb, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - preculminate fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - hypothalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medullary reticular nucleus, dorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - fornix system - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - posterolateral fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - pretectal region - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, dorsal part, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, mouth, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - primary fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - intercalated amygdalar nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Visceral area, layer 2/3 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - medullary reticular nucleus, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - genu of corpus callosum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, posterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, trunk, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - posterior superior fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - interanterodorsal nucleus of the thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - anterolateral visual area, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - genu of the facial nerve - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - pons, behavioral state related - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - prepyramidal fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, lateral part, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - inferior cerebellar peduncle - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - orbital area, ventrolateral part, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - tuberomammillary nucleus, dorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Temporal association areas, layer 2/3 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, lower limb, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - interbrain - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, lower limb, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - intermediate nerve - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - pons, sensory related - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, medial part, ventral zone, layer 5/6 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - nucleus of the lateral olfactory tract, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - superior olivary complex, lateral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - cerebellar cortex, granular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - cerebellar cortex, molecular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - cerebellar cortex, Purkinje layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - trochlear nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - choroid fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - optic chiasm - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - periventricular hypothalamic nucleus, intermediate part - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - agranular insular area, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - interfascicular nucleus raphe - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, posterior part, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - lateral visual area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - superior olivary complex, periolivary region - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - koelliker-Fuse subnucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - interventricular foramen - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - optic tract - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - periventricular hypothalamic nucleus, posterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anteromedial nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - midbrain reticular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - third ventricle - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - somatosensory areas, layer 1 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - - - - - - - - - - - - - - - - - - - - - - - somatosensory areas, layer 2/3 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + + + - + - - - - - - - - - - - - - - - - - - - - - somatosensory areas, layer 4 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - somatosensory areas, layer 5 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - somatosensory areas, layer 6a - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - somatosensory areas, layer 6b - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - superior central nucleus raphe, medial part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral amygdalar nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Prelimbic area, layer 6b - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - periventricular hypothalamic nucleus, preoptic part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - pallidotegmental fascicle - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - nucleus ambiguus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - intermediate reticular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - superior central nucleus raphe, lateral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral group of the dorsal thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, lateral part, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - internal medullary lamina of the thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - cerebral aqueduct - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - nucleus ambiguus, ventral division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - olfactory tubercle, layers 1-3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - fourth ventricle - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - pontine reticular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - locus ceruleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Gustatory areas, layer 4 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - paraventricular nucleus of the thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - parataenial nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - accessory olfactory bulb - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - piriform area, layers 1-3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral recess - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - perihypoglossal nuclei - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - lateral dorsal nucleus of thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - dorsal auditory area, layer 6a - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - periventricular zone - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - posterior commissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anterior olfactory nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - layer 6b, isocortex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - anterior olfactory nucleus, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - nucleus intercalatus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - laterodorsal tegmental nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, posterior part, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - central canal, spinal cord/medulla - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - midbrain raphe nuclei - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - anterior olfactory nucleus, dorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - anterior olfactory nucleus, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - nucleus prepositus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - dorsal part of the lateral geniculate complex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Prelimbic area, layer 1 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - retrochiasmatic area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - preoptic commissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - anterior olfactory nucleus, external part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - nucleus of Roller - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - ventral part of the lateral geniculate complex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - anterior cingulate area, layer 6a - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - Gustatory areas, layer 2/3 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - Nucleus of reuniens - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, unassigned - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, unassigned, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, unassigned, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, unassigned, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, unassigned, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, unassigned, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, unassigned, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - anterior olfactory nucleus, lateral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - frontal pole, cerebral cortex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - - - - - - - - - - - - - - - parapyramidal nucleus, deep part - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + + + - + - - - - - - - - - - - - - lateral habenula - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Gustatory areas, layer 5 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - accessory olfactory bulb, glomerular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - rhomboid nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - induseum griseum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - Pyramid - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - anterior olfactory nucleus, medial part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, anterior part, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - parapyramidal nucleus, superficial part - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - lateral hypothalamic area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - - - - - - - - - - - - - - - - - - - - - - - Prelimbic area, layer 2 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + + + - + - - - - - - - - - - - - - accessory olfactory bulb, granular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - rostral linear nucleus raphe - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - pyramidal decussation - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - anterior olfactory nucleus, posteroventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, mouth, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, lateral part, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, anterior part, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - primary somatosensory area, barrel field, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - medial vestibular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - linear nucleus of the medulla - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - accessory olfactory bulb, mitral layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - nucleus raphe magnus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - area postrema - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, anterior part, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral vestibular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral mammillary nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - main olfactory bulb, glomerular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - red nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, posterior part, lateral zone, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - superior vestibular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral posterior nucleus of the thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - posterior parietal association areas - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - main olfactory bulb, granule layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - rubroreticular tract - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - nucleus raphe obscurus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - arcuate hypothalamic nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, posterior part, lateral zone, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - spinal vestibular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral preoptic area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - anterior cingulate area, layer 6b - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - main olfactory bulb, inner plexiform layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - sensory root of the trigeminal nerve - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anterior amygdalar area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - nucleus raphe pallidus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anterior tegmental nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, posterior part, lateral zone, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anterolateral visual area, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral reticular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - main olfactory bulb, mitral layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - solitary tract - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - nucleus raphe pontis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anterior group of the dorsal thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, posterior part, medial zone, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posterior parietal association areas, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - lateral septal nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - dorsal auditory area, layer 6b - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - main olfactory bulb, outer plexiform layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - midbrain reticular nucleus, retrorubral area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - auditory areas - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, posterior part, medial zone, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posterior auditory area, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateral septal nucleus, caudal (caudodorsal) part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - primary auditory area, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - dorsal auditory area, layer 5 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + + + + + + + - + - - - - - - - - - - - - - retrosplenial area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anteroventral nucleus of thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, posterior part, medial zone, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - posteromedial visual area, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - lateral septal nucleus, rostral (rostroventral) part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, medial part, ventral zone, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - nucleus of the lateral olfactory tract, molecular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - spino-olivary pathway - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - reticular nucleus of the thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anteroventral preoptic nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - orbital area, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - lateral septal nucleus, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - dorsal peduncular area, layer 6a - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - nucleus of the lateral olfactory tract, pyramidal layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posterolateral visual area, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - intergeniculate leaflet of the lateral geniculate complex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anteroventral periventricular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - retrosplenial area, dorsal part, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral septal complex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - piriform area, molecular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - spinotectal pathway - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - - - - - - - - - - - - - - - striatum-like amygdalar nuclei - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + + + - + - - - - - - - - - - - - - - - - retrosplenial area, lateral agranular part, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, lateral part, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - barrington's nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - anteromedial visual area, layer 1 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - lateral tegmental nucleus - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - piriform area, pyramidal layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - suprachiasmatic nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - bed nucleus of the anterior commissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - orbital area, ventrolateral part, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - hypothalamic lateral zone - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - piriform area, polymorph layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - bed nucleus of the accessory olfactory tract - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - basolateral amygdalar nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - taenia tecta, dorsal part, layers 1-4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - Magnocellular nucleus - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - - - - - - Somatomotor areas, Layer 5 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - secondary fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - periventricular hypothalamic nucleus, anterior part - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - stria terminalis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basolateral amygdalar nucleus, anterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Prelimbic area, layer 2/3 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - retina - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary visual area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - taenia tecta, ventral part, layers 1-3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - magnocellular reticular nucleus - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - posterior parietal association areas, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anterior cingulate area - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - septofimbrial nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basolateral amygdalar nucleus, posterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, lateral part, layer 4/5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - anterior area - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - laterointermediate area - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - rostrolateral area, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - rostrolateral area, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - rostrolateral area, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - rostrolateral area, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - rostrolateral area, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - rostrolateral area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - postrhinal area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - postrhinal area, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - postrhinal area, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - postrhinal area, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - postrhinal area, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - postrhinal area, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - postrhinal area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - midbrain - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, posterior part, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - isocortex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - subthalamic fascicle - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - supragenual nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - basomedial amygdalar nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - primary motor area, Layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - primary somatosensory area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, medial part, ventral zone, layer 2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - suprageniculate nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - superior cerebelar peduncles - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basomedial amygdalar nucleus, anterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, dorsal part, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - primary somatosensory area, barrel field - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - primary visual area, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - retrosplenial area, dorsal part, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - mammillary body - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - septohippocampal nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basomedial amygdalar nucleus, posterior part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - perirhinal area, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - superior colliculus commissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, lower limb - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - subfornical organ - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posterior parietal association areas, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - supramammillary decussation - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - substantia innominata - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - brain stem - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, posterior part, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - primary somatosensory area, mouth - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - subparaventricular zone - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - oculomotor nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - subceruleus nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - bed nuclei of the stria terminalis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - orbital area, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, nose - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - medulla - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - agranular insular area, posterior part, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - tectothalamic pathway - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - sublaterodorsal nucleus - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - bed nuclei of the stria terminalis, anterior division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - dorsal peduncular area, layer 2/3 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, trunk - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - mediodorsal nucleus of thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - Prelimbic area, layer 5 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - thalamic peduncles - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - submedial nucleus of the thalamus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - bed nuclei of the stria terminalis, posterior division - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - perirhinal area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, upper limb - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medulla, motor related - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, medial part, ventral zone, layer 3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - substantia nigra, compact part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - ammon's horn - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, posterior part, lateral zone, layers 1-3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posterolateral visual area, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - supplemental somatosensory area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medulla, behavioral state related - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - paraventricular hypothalamic nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - cuneate fascicle - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - substantia nigra, reticular part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - field CA1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - cortical amygdalar area, posterior part, medial zone, layers 1-3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - trochlear nerve decussation - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - primary visual area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medulla, sensory related - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, lateral part, layer 5/6 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - gracile fascicle - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - supraoptic nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA1, stratum lacunosum-moleculare - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - nucleus of the lateral olfactory tract, layers 1-3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posterolateral visual area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - anteromedial visual area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - medullary reticular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - internal arcuate fibers - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - ventral tegmental decussation - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - superior olivary complex - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA1, stratum oriens - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - inferior colliculus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - piriform-amygdalar area, layers 1-3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - anteromedial visual area, layer 4 - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - anterolateral visual area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - medial amygdalar nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - olivocerebellar tract - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - subparafascicular nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA1, pyramidal layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - piriform-amygdalar area, molecular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - lateral visual area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posteromedial visual area, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medial amygdalar nucleus, anterodorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - orbital area, lateral part, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - vestibular nerve - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA1, stratum radiatum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - piriform-amygdalar area, pyramidal layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + - + - - - - - - - - - - - - - rostrolateral visual area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medial amygdalar nucleus, anteroventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, medial part, ventral zone, layer 4 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - Superior colliculus, motor related, deep white layer - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - lateral visual area, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA2 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - piriform-amygdalar area, polymorph layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - posterolateral visual area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medial amygdalar nucleus, posterodorsal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - ectorhinal area/Layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - medial corticohypothalamic tract - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - spinal nucleus of the trigeminal, caudal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - ansoparamedian fissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - retrosplenial area, ventral part, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA2, stratum lacunosum-moleculare - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - nucleus circularis - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - anteromedial visual area, layer 5 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - retrosplenial area, dorsal part, layer 2/3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - medial amygdalar nucleus, posteroventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - columns of the fornix - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - spinal nucleus of the trigeminal, interpolar part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA2, stratum oriens - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - paraventricular hypothalamic nucleus, descending division, dorsal parvicellular part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - infralimbic area - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - orbital area, lateral part, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - - - - - - anteromedial visual area, layer 6b - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - + - + - - - - - - - - - - - - - - - - retrosplenial area, dorsal part, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - dorsal hippocampal commissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - spinal nucleus of the trigeminal, oral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA2, pyramidal layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - paraventricular hypothalamic nucleus, descending division, forniceal part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - orbital area, lateral part, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - - - - - - - - - - - - - - - - - - ventral hippocampal commissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + - + - - - - - - - - - - - - - - - - spinal nucleus of the trigeminal, oral part, rostral dorsomedial part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - primary somatosensory area, upper limb, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - basolateral amygdalar nucleus, ventral part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - median preoptic nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - somatosensory areas - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA2, stratum radiatum - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - paraventricular hypothalamic nucleus, descending division, lateral parvicellular part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posterior auditory area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - visual areas, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - olfactory tubercle, molecular layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - midbrain trigeminal nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + - + - - - - - - - - - - - - - - - - primary somatosensory area, trunk, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - superior salivatory nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - field CA3 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - paraventricular hypothalamic nucleus, descending division, medial parvicellular part, ventral zone - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - olfactory tubercle, pyramidal layer - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - alveus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - hypothalamic medial zone - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - entorhinal area, medial part, dorsal zone, layer 2a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - - - - posteromedial visual area, layer 6b - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - paraventricular hypothalamic nucleus, magnocellular division, anterior magnocellular part - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + - + - - - - - - - - - - - - - subthalamic nucleus - Verified - - - - - Verified - https://ror.org/03cpe7c52 - + + + + + + + + + + + + + + + + + + + - + - + - + @@ -15675,11 +3575,11 @@ - field CA3, stratum lacunosum-moleculare + tuberomammillary nucleus, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -15687,28 +3587,25 @@ - + - - + + + - - - - - - medial amygdalar nucleus, posterodorsal part, sublayer a + + interpeduncular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -15716,28 +3613,25 @@ - + - - + + + - - - - - - olfactory tubercle, polymorph layer + + extrapyramidal fiber systems Verified - + Verified https://ror.org/03cpe7c52 @@ -15745,13 +3639,13 @@ - + - + - + @@ -15759,21 +3653,21 @@ - medial geniculate complex + lobule V Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + @@ -15783,16 +3677,16 @@ - + - orbital area, layer 6a + primary auditory area Verified - + Verified https://ror.org/03cpe7c52 @@ -15800,13 +3694,13 @@ - + - + - + @@ -15814,11 +3708,11 @@ - striatum + ventral premammillary nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -15826,9 +3720,9 @@ - + - + @@ -15838,42 +3732,16 @@ - + - primary somatosensory area, lower limb, layer 6a - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - field CA3, stratum lucidum + primary auditory area, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -15881,9 +3749,9 @@ - + - + @@ -15893,16 +3761,16 @@ - + - medial amygdalar nucleus, posterodorsal part, sublayer b + primary somatosensory area, trunk, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -15910,13 +3778,13 @@ - + - + - + @@ -15924,11 +3792,11 @@ - islands of Calleja + simple lobule Verified - + Verified https://ror.org/03cpe7c52 @@ -15936,13 +3804,13 @@ - + - + - + @@ -15950,11 +3818,11 @@ - brachium of the inferior colliculus + geniculate group, dorsal thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -15962,13 +3830,13 @@ - + - + - + @@ -15976,54 +3844,25 @@ - medial habenula - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - orbital area, medial part, layer 1 + fiber tracts Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -16031,11 +3870,11 @@ - striatum dorsal region + ventral cochlear nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -16043,13 +3882,13 @@ - + - + - + @@ -16057,11 +3896,11 @@ - field CA3, stratum oriens + dorsal auditory area Verified - + Verified https://ror.org/03cpe7c52 @@ -16069,28 +3908,25 @@ - + - - + + + - - - - - - medial amygdalar nucleus, posterodorsal part, sublayer c + + olfactory nerve layer of main olfactory bulb Verified - + Verified https://ror.org/03cpe7c52 @@ -16098,28 +3934,25 @@ - + - - + + + - - - - - - orbital area, lateral part, layer 6b + + ansiform lobule Verified - + Verified https://ror.org/03cpe7c52 @@ -16127,13 +3960,13 @@ - + - + - + @@ -16141,11 +3974,11 @@ - major island of Calleja + corticospinal tract, crossed Verified - + Verified https://ror.org/03cpe7c52 @@ -16153,13 +3986,13 @@ - + - + - + @@ -16167,25 +4000,25 @@ - bulbocerebellar tract + nigrostriatal tract Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + @@ -16193,11 +4026,11 @@ - medial mammillary nucleus + posterior complex of the thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -16205,9 +4038,9 @@ - + - + @@ -16217,16 +4050,16 @@ - + - orbital area, layer 2/3 + secondary motor area, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -16234,13 +4067,13 @@ - + - + - + @@ -16248,11 +4081,11 @@ - striatum ventral region + globus pallidus, external segment Verified - + Verified https://ror.org/03cpe7c52 @@ -16260,25 +4093,28 @@ - + - - + + - + + + + - - field CA3, pyramidal layer + + ventral auditory area, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -16286,33 +4122,25 @@ - + - + - - - - - - - - - + - + - dorsal peduncular area, layer 1 + grooves Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -16320,28 +4148,25 @@ - + - - + + + - - - - - - visual areas, layer 6b + + paramedian lobule Verified - + Verified https://ror.org/03cpe7c52 @@ -16349,9 +4174,9 @@ - + - + @@ -16361,42 +4186,16 @@ - + - bed nuclei of the stria terminalis, anterior division, anteromedial area - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - cuneocerebellar tract + primary somatosensory area, upper limb, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -16404,51 +4203,28 @@ - - - - - - - - - - - - - - - somatomotor areas - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - + - - + + - + + + + - - posteromedial visual area, layer 4 + + posterior auditory area Verified - + Verified https://ror.org/03cpe7c52 @@ -16456,13 +4232,13 @@ - + - + - + @@ -16470,11 +4246,11 @@ - subiculum + corticospinal tract, uncrossed Verified - + Verified https://ror.org/03cpe7c52 @@ -16482,13 +4258,13 @@ - + - + - + @@ -16496,11 +4272,11 @@ - field CA3, stratum radiatum + paraventricular hypothalamic nucleus, magnocellular division, posterior magnocellular part Verified - + Verified https://ror.org/03cpe7c52 @@ -16508,9 +4284,9 @@ - + - + @@ -16520,16 +4296,16 @@ - + - bed nuclei of the stria terminalis, anterior division, dorsomedial nucleus + primary somatosensory area, lower limb, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -16537,13 +4313,13 @@ - + - + - + @@ -16551,11 +4327,11 @@ - dorsal acoustic stria + globus pallidus, internal segment Verified - + Verified https://ror.org/03cpe7c52 @@ -16563,13 +4339,13 @@ - + - + - + @@ -16577,11 +4353,11 @@ - main olfactory bulb + copula pyramidis Verified - + Verified https://ror.org/03cpe7c52 @@ -16589,9 +4365,9 @@ - + - + @@ -16601,16 +4377,16 @@ - + - entorhinal area, medial part, dorsal zone, layer 2b + taenia tecta, dorsal part, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -16618,9 +4394,9 @@ - + - + @@ -16630,16 +4406,16 @@ - + - subiculum, dorsal part + supplemental somatosensory area, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -16647,13 +4423,13 @@ - + - + - + @@ -16661,11 +4437,11 @@ - intralaminar nuclei of the dorsal thalamus + corticotectal tract Verified - + Verified https://ror.org/03cpe7c52 @@ -16673,28 +4449,25 @@ - + - - + + + - - - - - - primary somatosensory area, lower limb, layer 6b + + postsubiculum Verified - + Verified https://ror.org/03cpe7c52 @@ -16702,13 +4475,13 @@ - + - + - + @@ -16716,11 +4489,11 @@ - cerebellum + primary somatosensory area, barrel field, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -16728,13 +4501,13 @@ - + - + - + @@ -16742,11 +4515,11 @@ - bed nuclei of the stria terminalis, anterior division, fusiform nucleus + gracile nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -16754,25 +4527,28 @@ - + - - + + - + + + + - - dorsal column + + agranular insular area, dorsal part Verified - + Verified https://ror.org/03cpe7c52 @@ -16780,13 +4556,13 @@ - + - + - + @@ -16794,11 +4570,11 @@ - medial preoptic nucleus + paraflocculus Verified - + Verified https://ror.org/03cpe7c52 @@ -16806,9 +4582,9 @@ - + - + @@ -16818,16 +4594,42 @@ - + - orbital area, layer 6b + taenia tecta, dorsal part, layer 2 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + + + + + + + + + + + peripeduncular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -16835,9 +4637,9 @@ - + - + @@ -16847,16 +4649,16 @@ - + - subiculum, ventral part + ectorhinal area/Layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -16864,54 +4666,59 @@ - + - + - + + + + + + + + + - + - cerebellar nuclei + anteromedial visual area, layer 6a Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + - - - - - - entorhinal area, lateral part, layer 3 + + primary somatosensory area, barrel field, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -16919,28 +4726,25 @@ - + - - + + + - - - - - - ventral auditory area, layer 6a + + gigantocellular reticular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -16948,13 +4752,13 @@ - + - + - + @@ -16962,11 +4766,11 @@ - bed nuclei of the stria terminalis, anterior division, magnocellular nucleus + flocculus Verified - + Verified https://ror.org/03cpe7c52 @@ -16974,13 +4778,13 @@ - + - + - + @@ -16988,11 +4792,11 @@ - medial preoptic area + superior olivary complex, medial part Verified - + Verified https://ror.org/03cpe7c52 @@ -17000,9 +4804,9 @@ - + - + @@ -17012,16 +4816,16 @@ - + - orbital area, medial part, layer 2 + taenia tecta, dorsal part, layer 3 Verified - + Verified https://ror.org/03cpe7c52 @@ -17029,13 +4833,13 @@ - + - + - + @@ -17043,11 +4847,11 @@ - supramammillary nucleus + pedunculopontine nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -17055,44 +4859,49 @@ - + - - + + + + + + + + + + + - - - - - + - - entorhinal area, medial part, dorsal zone, layer 1 + + anterior cingulate area, layer 2/3 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -17101,16 +4910,16 @@ - + - dorsal auditory area, layer 1 + Infralimbic area, layer 6a Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -17118,13 +4927,13 @@ - + - + - + @@ -17132,11 +4941,11 @@ - cerebellar cortex + crus 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -17144,9 +4953,35 @@ - + + + + + + + + + + + + + + + Gustatory areas + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + + + + + - + @@ -17156,16 +4991,16 @@ - + - bed nuclei of the stria terminalis, anterior division, ventral nucleus + taenia tecta, dorsal part, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -17173,28 +5008,25 @@ - + - - + + + - - - - - - spinal nucleus of the trigeminal, oral part, middle dorsomedial part, dorsal zone + + inferior salivatory nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -17202,28 +5034,51 @@ - + - - + + + + + + + posterior pretectal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + + + - + - - posterior parietal association areas, layer 1 + + primary somatosensory area, barrel field, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -17231,13 +5086,13 @@ - + - + - + @@ -17245,11 +5100,11 @@ - posteromedial visual area + hippocampal fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -17257,13 +5112,13 @@ - + - + - + @@ -17271,81 +5126,81 @@ - supratrigeminal nucleus + crus 2 Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - - - - - - - - - + - + - dorsal peduncular area, layer 2 + hindbrain Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + + + + + + + + + - + - central amygdalar nucleus + anteromedial visual area, layer 2/3 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + @@ -17355,16 +5210,16 @@ - + - bed nuclei of the stria terminalis, anterior division, anterolateral area + taenia tecta, ventral part, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -17372,13 +5227,13 @@ - + - + - + @@ -17386,11 +5241,11 @@ - medial forebrain bundle + median eminence Verified - + Verified https://ror.org/03cpe7c52 @@ -17398,54 +5253,67 @@ - + - - + + + + + + + + + + + - - - - - + - - perirhinal area, layer 1 + + simple lobule, granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - temporal association areas + simple lobule, Purkinje layer Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -17453,348 +5321,423 @@ - + - - + + + + + + + + + + + - - - - - + - - retrosplenial area, ventral part, layer 1 + + simple lobule, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - entorhinal area, medial part, dorsal zone, layer 2 + + crus 1, granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - central amygdalar nucleus, capsular part + + crus 1, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - retrosplenial area, dorsal part, layer 4 + + crus 1, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - bed nuclei of the stria terminalis, anterior division, juxtacapsular nucleus + + crus 2, granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - dorsal longitudinal fascicle + crus 2, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - thalamus + crus 2, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - entorhinal area, medial part, dorsal zone, layer 5/6 + + paramedian lobule, granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - central amygdalar nucleus, lateral part + + paramedian lobule, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - pontine reticular nucleus, ventral part + paramedian lobule, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - dorsal spinocerebellar tract + copula pyramidis, granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - bed nuclei of the stria terminalis, anterior division, oval nucleus + copula pyramidis, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -17803,16 +5746,16 @@ - + - Infralimbic area, layer 2/3 + copula pyramidis, molecular layer Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -17820,97 +5763,115 @@ - + - + - + + + + + + + + + - + - tuberomammillary nucleus + paraflocculus, granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - primary somatosensory area, nose, layer 1 + + paraflocculus, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - central amygdalar nucleus, medial part + + paraflocculus, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -17918,40 +5879,45 @@ - nucleus accumbens + parapyramidal nucleus Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - cochlear nucleus, subpedunclular granular region + + flocculus, granular layer Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -17959,83 +5925,96 @@ - + - - + + + + + + + + + + + - - - - - + - - visual areas, layer 2/3 + + flocculus, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - bed nuclei of the stria terminalis, anterior division, rhomboid nucleus + + flocculus, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - medial septal nucleus + + parasubiculum, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -18043,9 +6022,9 @@ - + - + @@ -18055,16 +6034,16 @@ - + - posteromedial visual area, layer 5 + parasubiculum, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -18072,51 +6051,57 @@ - + - - + + - + + + + - - postpiriform transition area + + parasubiculum, layer 3 Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + - + + + + - - - cerebrum + + + postsubiculum, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -18124,25 +6109,28 @@ - + - - + + - + + + + - - accessory abducens nucleus + + postsubiculum, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -18150,9 +6138,9 @@ - + - + @@ -18162,16 +6150,16 @@ - + - bed nuclei of the stria terminalis, posterior division, dorsal nucleus + postsubiculum, layer 3 Verified - + Verified https://ror.org/03cpe7c52 @@ -18179,25 +6167,28 @@ - + - - + + - + + + + - - midline group of the dorsal thalamus + + presubiculum, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -18205,9 +6196,9 @@ - + - + @@ -18222,16 +6213,16 @@ - + - anterior cingulate area, layer 1 + Somatomotor areas, Layer 1 Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -18239,13 +6230,13 @@ - + - + - + @@ -18253,11 +6244,11 @@ - lateral visual area, layer 4 + primary somatosensory area, barrel field, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -18265,25 +6256,28 @@ - + - - + + - + + + + - - tegmental reticular nucleus + + presubiculum, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -18291,25 +6285,28 @@ - + - - + + - + + + + - - central lateral nucleus of the thalamus + + presubiculum, layer 3 Verified - + Verified https://ror.org/03cpe7c52 @@ -18317,13 +6314,13 @@ - + - + - + @@ -18331,40 +6328,37 @@ - accessory facial motor nucleus + dentate gyrus, subgranular zone Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + + - - - - - - primary somatosensory area, upper limb, layer 4 + + dentate gyrus, molecular layer Verified - + Verified https://ror.org/03cpe7c52 @@ -18372,13 +6366,13 @@ - + - + - + @@ -18386,11 +6380,11 @@ - bed nuclei of the stria terminalis, posterior division, principal nucleus + dentate gyrus, polymorph layer Verified - + Verified https://ror.org/03cpe7c52 @@ -18398,146 +6392,183 @@ - + - + - + + + + + + + + + - + - external capsule + lingula (I), granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - medial terminal nucleus of the accessory optic tract + lingula (I), Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - nucleus of the brachium of the inferior colliculus + lingula (I), molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - triangular nucleus of septum + lobule II, granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - orbital area, medial part, layer 2/3 + + lobule II, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -18545,11 +6576,11 @@ - claustrum + rhinal fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -18557,183 +6588,253 @@ - + - - + + + + + + + + + + + - - - - - + - - cortical amygdalar area, posterior part, lateral zone, layers 1-2 + + lobule II, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - + + + + + lobule III, granular layer + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + + + + + + + + + + + + + + + + + + + - + - - bed nuclei of the stria terminalis, posterior division, interfascicular nucleus + + lobule III, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - nucleus of Darkschewitsch + lobule III, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - taenia tecta + lobule IV, granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - retrosplenial area, ventral part, layer 6a + + lobule IV, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - cortical amygdalar area, posterior part, medial zone, layers 1-2 + + lobule IV, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -18742,16 +6843,16 @@ - + - primary visual area, layer 1 + lobule V, granular layer Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -18759,65 +6860,81 @@ - + - + - + + + + + + + + + - + - bed nuclei of the stria terminalis, posterior division, transverse nucleus + lobule V, Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - fasciculus retroflexus + lobule V, molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -18825,11 +6942,11 @@ - diagonal band nucleus + medial geniculate complex, dorsal part Verified - + Verified https://ror.org/03cpe7c52 @@ -18837,109 +6954,135 @@ - + - - + + + + + + + + + + + - - - - - + - - taenia tecta, dorsal part + + declive (VI), granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - ventral auditory area, layer 6b + + declive (VI), Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - central medial nucleus of the thalamus + declive (VI), molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - Subcommissural organ + folium-tuber vermis (VII), granular layer Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -18947,70 +7090,83 @@ - + - + - + + + + + + + + + - + - internal capsule + folium-tuber vermis (VII), Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - entorhinal area, lateral part, layer 6b + + folium-tuber vermis (VII), molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -19019,16 +7175,16 @@ - + - dorsal auditory area, layer 2/3 + pyramus (VIII), granular layer Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -19036,232 +7192,307 @@ - + - - + + + + + + + hemispheric regions + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + + + + + + + + + + + - + - - anterolateral visual area, layer 6a + + pyramus (VIII), Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - bed nuclei of the stria terminalis, posterior division, strial extension + + pyramus (VIII), molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - fimbria + uvula (IX), granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - nucleus incertus + uvula (IX), Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - taenia tecta, ventral part + + uvula (IX), molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - retrosplenial area, ventral part, layer 2 + + nodulus (X), granular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - cochlear nuclei + nodulus (X), Purkinje layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + + + + + + + + + - - - - - + - - orbital area, ventrolateral part, layer 6a + + nodulus (X), molecular layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + @@ -19271,16 +7502,16 @@ - + - spinal nucleus of the trigeminal, oral part, middle dorsomedial part, ventral zone + anterolateral visual area, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -19288,9 +7519,9 @@ - + - + @@ -19300,16 +7531,16 @@ - + - retrosplenial area, dorsal part, layer 5 + taenia tecta, ventral part, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -19317,51 +7548,28 @@ - + - - + + - - - - - habenular commissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - + - - nucleus of the lateral lemniscus + + efferent cochleovestibular bundle Verified - + Verified https://ror.org/03cpe7c52 @@ -19369,13 +7577,13 @@ - + - + - + @@ -19383,25 +7591,25 @@ - lateral visual area, layer 5 + rhinal incisure Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -19409,11 +7617,11 @@ - tuberal nucleus + medial geniculate complex, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -19421,13 +7629,13 @@ - + - + - + @@ -19435,11 +7643,11 @@ - substantia nigra, lateral part + choroid plexus Verified - + Verified https://ror.org/03cpe7c52 @@ -19447,25 +7655,28 @@ - + - - + + - + + + + - - cuneiform nucleus + + hippocampal region Verified - + Verified https://ror.org/03cpe7c52 @@ -19473,51 +7684,62 @@ - + - + - + + + + + + + + + - + - mediodorsal nucleus of the thalamus, central part + Infralimbic area, layer 6b Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - hippocampal commissures + + taenia tecta, ventral part, layer 3 Verified - + Verified https://ror.org/03cpe7c52 @@ -19525,13 +7747,13 @@ - + - + - + @@ -19539,11 +7761,11 @@ - nucleus of the lateral olfactory tract + presubiculum Verified - + Verified https://ror.org/03cpe7c52 @@ -19551,25 +7773,28 @@ - + - - + + - + + + + - - medial longitudinal fascicle + + secondary motor area, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -19577,9 +7802,9 @@ - + - + @@ -19589,16 +7814,16 @@ - + - orbital area, medial part, layer 5 + primary somatosensory area, trunk, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -19606,13 +7831,13 @@ - + - + - + @@ -19620,11 +7845,11 @@ - motor nucleus of trigeminal + precentral fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -19632,28 +7857,25 @@ - + - - + + + - - - - - - retrosplenial area, ventral part, layer 6b + + medial geniculate complex, medial part Verified - + Verified https://ror.org/03cpe7c52 @@ -19661,13 +7883,13 @@ - + - + - + @@ -19675,21 +7897,21 @@ - cerebral nuclei + hippocampal formation Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + @@ -19699,16 +7921,16 @@ - + - primary somatosensory area, upper limb, layer 5 + supplemental somatosensory area, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -19716,39 +7938,42 @@ - + - - + + - + + + + - - mediodorsal nucleus of the thalamus, lateral part + + lobules IV-V Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -19756,11 +7981,11 @@ - nucleus of the optic tract + external medullary lamina of the thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -19768,13 +7993,13 @@ - + - + - + @@ -19782,11 +8007,11 @@ - paraventricular hypothalamic nucleus, descending division + pontine reticular nucleus, caudal part Verified - + Verified https://ror.org/03cpe7c52 @@ -19794,9 +8019,9 @@ - + - + @@ -19806,16 +8031,16 @@ - + - orbital area, lateral part, layer 5 + primary somatosensory area, lower limb, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -19823,13 +8048,13 @@ - + - + - + @@ -19837,11 +8062,11 @@ - cortical amygdalar area + preculminate fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -19849,13 +8074,13 @@ - + - + - + @@ -19863,11 +8088,11 @@ - dentate gyrus, granule cell layer + hypothalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -19875,51 +8100,28 @@ - + - - + + - - - - - inferior colliculus commissure - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - + - - nucleus of the posterior commissure + + medullary reticular nucleus, dorsal part Verified - + Verified https://ror.org/03cpe7c52 @@ -19927,42 +8129,39 @@ - + - - + + + - - - - - - posterior parietal association areas, layer 4 + + fornix system Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -19970,11 +8169,11 @@ - mediodorsal nucleus of the thalamus, medial part + posterolateral fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -19982,13 +8181,13 @@ - + - + - + @@ -19996,11 +8195,11 @@ - ventral group of the dorsal thalamus + pretectal region Verified - + Verified https://ror.org/03cpe7c52 @@ -20008,9 +8207,9 @@ - + - + @@ -20020,16 +8219,16 @@ - + - cortical amygdalar area, anterior part + agranular insular area, dorsal part, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -20037,25 +8236,28 @@ - + - - + + - + + + + - - anterodorsal nucleus + + primary somatosensory area, mouth, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -20063,13 +8265,13 @@ - + - + - + @@ -20077,25 +8279,25 @@ - efferent vestibular nucleus + primary fissure Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + @@ -20103,11 +8305,11 @@ - intermediate acoustic stria + intercalated amygdalar nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -20115,35 +8317,43 @@ - + - + - + + + + + + + + + - + - nucleus of the trapezoid body + Visceral area, layer 2/3 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + @@ -20153,16 +8363,16 @@ - + - posterior auditory area, layer 2/3 + medullary reticular nucleus, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -20170,59 +8380,54 @@ - + - + - - - - - - - - - + - + - Somatomotor areas, Layer 6a + genu of corpus callosum Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + - + + + + - - vermal regions + + agranular insular area, posterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -20230,62 +8435,54 @@ - + - - + + - - - - - - - - - - + + + + + - - dorsal peduncular area, layer 5 + + primary somatosensory area, trunk, layer 5 Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + + - - - - - - cortical amygdalar area, posterior part + + posterior superior fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -20293,28 +8490,25 @@ - + - - + + + - - - - - - primary motor area, Layer 5 + + interanterodorsal nucleus of the thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -20322,9 +8516,9 @@ - + - + @@ -20339,11 +8533,11 @@ - anterolateral visual area, layer 6b + anterolateral visual area, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -20351,13 +8545,13 @@ - + - + - + @@ -20365,11 +8559,11 @@ - juxtarestiform body + genu of the facial nerve Verified - + Verified https://ror.org/03cpe7c52 @@ -20377,25 +8571,28 @@ - + - - + + - + + + + - - nucleus of the solitary tract + + pons, behavioral state related Verified - + Verified https://ror.org/03cpe7c52 @@ -20403,13 +8600,13 @@ - + - + - + @@ -20417,11 +8614,11 @@ - abducens nucleus + prepyramidal fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -20429,9 +8626,9 @@ - + - + @@ -20441,16 +8638,16 @@ - + - primary somatosensory area, nose, layer 4 + entorhinal area, lateral part, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -20458,28 +8655,25 @@ - + - - + + + - - - - - + - - cortical amygdalar area, posterior part, lateral zone + + inferior cerebellar peduncle Verified - + Verified https://ror.org/03cpe7c52 @@ -20487,9 +8681,9 @@ - + - + @@ -20499,16 +8693,16 @@ - + - secondary motor area, layer 1 + orbital area, ventrolateral part, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -20516,28 +8710,25 @@ - + - - + + + - - - - - - primary somatosensory area, mouth, layer 2/3 + + tuberomammillary nucleus, dorsal part Verified - + Verified https://ror.org/03cpe7c52 @@ -20545,35 +8736,43 @@ - + - + - + + + + + + + + + - + - lateral lemniscus + Temporal association areas, layer 2/3 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + @@ -20583,16 +8782,16 @@ - + - nucleus of the solitary tract, central part + primary somatosensory area, lower limb, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -20600,13 +8799,13 @@ - + - + - + @@ -20614,11 +8813,11 @@ - lateral terminal nucleus of the accessory optic tract + interbrain Verified - + Verified https://ror.org/03cpe7c52 @@ -20626,25 +8825,28 @@ - + - - + + - + + + + - - facial motor nucleus + + primary somatosensory area, lower limb, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -20652,43 +8854,35 @@ - + - + - - - - - - - - - + - + - Gustatory areas, layer 6b + intermediate nerve Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + @@ -20698,16 +8892,16 @@ - + - cortical amygdalar area, posterior part, medial zone + pons, sensory related Verified - + Verified https://ror.org/03cpe7c52 @@ -20715,9 +8909,9 @@ - + - + @@ -20732,11 +8926,11 @@ - entorhinal area, medial part, dorsal zone, layer 3 + entorhinal area, medial part, ventral zone, layer 5/6 Verified - + Verified https://ror.org/03cpe7c52 @@ -20744,25 +8938,28 @@ - + - - + + - + + + + - - lateral olfactory tract, body + + nucleus of the lateral olfactory tract, layer 3 Verified - + Verified https://ror.org/03cpe7c52 @@ -20770,28 +8967,25 @@ - + - - + + + - - - - - - nucleus of the solitary tract, commissural part + + superior olivary complex, lateral part Verified - + Verified https://ror.org/03cpe7c52 @@ -20799,28 +8993,25 @@ - + - - + + + - - - - - - frontal pole, layer 2/3 + + cerebellar cortex, granular layer Verified - + Verified https://ror.org/03cpe7c52 @@ -20828,13 +9019,13 @@ - + - + - + @@ -20842,11 +9033,11 @@ - visual areas + cerebellar cortex, molecular layer Verified - + Verified https://ror.org/03cpe7c52 @@ -20854,13 +9045,13 @@ - + - + - + @@ -20868,11 +9059,11 @@ - interstitial nucleus of Cajal + cerebellar cortex, Purkinje layer Verified - + Verified https://ror.org/03cpe7c52 @@ -20880,28 +9071,25 @@ - + - - + + + - - - - - - primary somatosensory area, trunk, layer 2/3 + + trochlear nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -20909,28 +9097,25 @@ - + - - + + + - - - - - - retrosplenial area, lateral agranular part, layer 1 + + choroid fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -20938,13 +9123,13 @@ - + - + - + @@ -20952,11 +9137,11 @@ - caudoputamen + optic chiasm Verified - + Verified https://ror.org/03cpe7c52 @@ -20964,13 +9149,13 @@ - + - + - + @@ -20978,37 +9163,40 @@ - mammillary peduncle + periventricular hypothalamic nucleus, intermediate part Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - nucleus of the solitary tract, gelatinous part + + agranular insular area, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -21016,28 +9204,25 @@ - + - - + + + - - - - - - agranular insular area, ventral part, layer 6a + + interfascicular nucleus raphe Verified - + Verified https://ror.org/03cpe7c52 @@ -21045,51 +9230,57 @@ - + - - + + - + + + + - - visceral area + + agranular insular area, posterior part, layer 1 Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + - + + + + - - dorsal auditory area, layer 4 + + lateral visual area, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -21097,13 +9288,13 @@ - + - + - + @@ -21111,11 +9302,11 @@ - superior central nucleus raphe + superior olivary complex, periolivary region Verified - + Verified https://ror.org/03cpe7c52 @@ -21123,9 +9314,9 @@ - + - + @@ -21135,16 +9326,16 @@ - + - frontal pole, layer 1 + koelliker-Fuse subnucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -21152,28 +9343,25 @@ - + - - + + + - - - - - - orbital area, ventrolateral part, layer 6b + + interventricular foramen Verified - + Verified https://ror.org/03cpe7c52 @@ -21181,13 +9369,13 @@ - + - + - + @@ -21195,11 +9383,11 @@ - mammillotegmental tract + optic tract Verified - + Verified https://ror.org/03cpe7c52 @@ -21207,28 +9395,25 @@ - + - - + + + - - - - - - nucleus of the solitary tract, lateral part + + periventricular hypothalamic nucleus, posterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -21236,28 +9421,25 @@ - + - - + + + - - - - - - posterior parietal association areas, layer 5 + + anteromedial nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -21265,13 +9447,13 @@ - + - + - + @@ -21279,11 +9461,11 @@ - ventral medial nucleus of the thalamus + midbrain reticular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -21291,28 +9473,25 @@ - + - - + + + - - - - - - - primary somatosensory area, layer 6a + + + third ventricle Verified - + Verified https://ror.org/03cpe7c52 @@ -21320,80 +9499,101 @@ - + - - + + + + + + + + + + + - - - - - + - - retrosplenial area, ventral part, layer 5 + + somatosensory areas, layer 1 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - cerebral cortex + somatosensory areas, layer 2/3 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - ventrolateral preoptic nucleus + somatosensory areas, layer 4 Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -21401,54 +9601,67 @@ - + - - + + + + + + + + + + + - - - - - + - - spinal nucleus of the trigeminal, oral part, ventrolateral part + + somatosensory areas, layer 5 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - mammillothalamic tract + somatosensory areas, layer 6a Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -21456,35 +9669,43 @@ - + - + - + + + + + + + + + - + - nucleus of the solitary tract, medial part + somatosensory areas, layer 6b Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + @@ -21494,16 +9715,16 @@ - + - perirhinal area, layer 5 + superior central nucleus raphe, medial part Verified - + Verified https://ror.org/03cpe7c52 @@ -21511,13 +9732,13 @@ - + - + - + @@ -21525,11 +9746,11 @@ - ventromedial hypothalamic nucleus + lateral amygdalar nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -21537,42 +9758,47 @@ - + - - + + + + + + + + + + + - - - - - + - - agranular insular area, ventral part, layer 2/3 + + Prelimbic area, layer 6b Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -21580,11 +9806,11 @@ - cortical plate + periventricular hypothalamic nucleus, preoptic part Verified - + Verified https://ror.org/03cpe7c52 @@ -21592,28 +9818,25 @@ - + - - + + + - - - - - - posterior auditory area, layer 1 + + pallidotegmental fascicle Verified - + Verified https://ror.org/03cpe7c52 @@ -21621,13 +9844,13 @@ - + - + - + @@ -21635,11 +9858,11 @@ - medial lemniscus + nucleus ambiguus Verified - + Verified https://ror.org/03cpe7c52 @@ -21647,13 +9870,13 @@ - + - + - + @@ -21661,11 +9884,11 @@ - olfactory areas + intermediate reticular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -21673,9 +9896,9 @@ - + - + @@ -21685,16 +9908,16 @@ - + - agranular insular area, ventral part, layer 6b + superior central nucleus raphe, lateral part Verified - + Verified https://ror.org/03cpe7c52 @@ -21702,13 +9925,13 @@ - + - + - + @@ -21716,11 +9939,40 @@ - principal sensory nucleus of the trigeminal + lateral group of the dorsal thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + + + + + + + + + + + + + + entorhinal area, lateral part, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -21728,13 +9980,13 @@ - + - + - + @@ -21742,11 +9994,11 @@ - anterior hypothalamic nucleus, anterior part + internal medullary lamina of the thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -21754,13 +10006,13 @@ - + - + - + @@ -21768,11 +10020,11 @@ - vestibular nuclei + cerebral aqueduct Verified - + Verified https://ror.org/03cpe7c52 @@ -21780,9 +10032,9 @@ - + - + @@ -21792,16 +10044,16 @@ - + - primary somatosensory area, nose, layer 5 + nucleus ambiguus, ventral division Verified - + Verified https://ror.org/03cpe7c52 @@ -21809,25 +10061,28 @@ - + - - + + - + + + + - - cortical subplate + + olfactory tubercle, layers 1-3 Verified - + Verified https://ror.org/03cpe7c52 @@ -21835,28 +10090,25 @@ - + - - + + + - - - - - - agranular insular area, ventral part, layer 1 + + fourth ventricle Verified - + Verified https://ror.org/03cpe7c52 @@ -21864,13 +10116,13 @@ - + - + - + @@ -21878,11 +10130,11 @@ - midbrain tract of the trigeminal nerve + pontine reticular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -21890,13 +10142,13 @@ - + - + - + @@ -21904,11 +10156,11 @@ - olivary pretectal nucleus + locus ceruleus Verified - + Verified https://ror.org/03cpe7c52 @@ -21916,15 +10168,15 @@ - + - + - + @@ -21933,16 +10185,16 @@ - + - Infralimbic area, layer 1 + Gustatory areas, layer 4 Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -21950,13 +10202,13 @@ - + - + - + @@ -21964,11 +10216,11 @@ - anterior hypothalamic nucleus, central part + paraventricular nucleus of the thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -21976,13 +10228,13 @@ - + - + - + @@ -21990,11 +10242,11 @@ - ventral posterior complex of the thalamus + parataenial nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -22002,13 +10254,13 @@ - + - + - + @@ -22016,11 +10268,11 @@ - paraventricular hypothalamic nucleus, magnocellular division + accessory olfactory bulb Verified - + Verified https://ror.org/03cpe7c52 @@ -22028,25 +10280,28 @@ - + - - + + - + + + + - - abducens nerve + + piriform area, layers 1-3 Verified - + Verified https://ror.org/03cpe7c52 @@ -22054,13 +10309,13 @@ - + - + - + @@ -22068,11 +10323,11 @@ - cuneate nucleus + lateral recess Verified - + Verified https://ror.org/03cpe7c52 @@ -22080,42 +10335,39 @@ - + - - + + + - - - - - - entorhinal area, medial part, dorsal zone, layer 4 + + perihypoglossal nuclei Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -22123,11 +10375,11 @@ - perforant path + lateral dorsal nucleus of thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -22135,57 +10387,59 @@ - + - - + + + + + + + + + + + - - - - - + - - orbital area + + dorsal auditory area, layer 6a Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + - - - - - - entorhinal area, lateral part, layer 2a + + periventricular zone Verified - + Verified https://ror.org/03cpe7c52 @@ -22193,13 +10447,13 @@ - + - + - + @@ -22207,11 +10461,11 @@ - anterior hypothalamic nucleus, dorsal part + posterior commissure Verified - + Verified https://ror.org/03cpe7c52 @@ -22219,13 +10473,13 @@ - + - + - + @@ -22233,11 +10487,11 @@ - accessory spinal nerve + anterior olfactory nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -22245,25 +10499,28 @@ - + - - + + - + + + + - - ventral posterolateral nucleus of the thalamus + + layer 6b, isocortex Verified - + Verified https://ror.org/03cpe7c52 @@ -22271,9 +10528,9 @@ - + - + @@ -22283,16 +10540,16 @@ - + - primary somatosensory area, layer 6b + anterior olfactory nucleus, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -22300,13 +10557,13 @@ - + - + - + @@ -22314,11 +10571,11 @@ - dorsal column nuclei + nucleus intercalatus Verified - + Verified https://ror.org/03cpe7c52 @@ -22326,13 +10583,13 @@ - + - + - + @@ -22340,11 +10597,11 @@ - primary visual area, layer 4 + laterodorsal tegmental nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -22352,9 +10609,9 @@ - + - + @@ -22364,16 +10621,16 @@ - + - orbital area, lateral part + agranular insular area, posterior part, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -22381,13 +10638,13 @@ - + - + - + @@ -22395,11 +10652,11 @@ - anterior hypothalamic nucleus, posterior part + central canal, spinal cord/medulla Verified - + Verified https://ror.org/03cpe7c52 @@ -22407,13 +10664,13 @@ - + - + - + @@ -22421,11 +10678,11 @@ - dentate gyrus + midbrain raphe nuclei Verified - + Verified https://ror.org/03cpe7c52 @@ -22433,9 +10690,9 @@ - + - + @@ -22445,16 +10702,16 @@ - + - entorhinal area, medial part, dorsal zone, layer 5 + anterior olfactory nucleus, dorsal part Verified - + Verified https://ror.org/03cpe7c52 @@ -22462,25 +10719,28 @@ - + - - + + - + + + + - - ventricular systems + + anterior olfactory nucleus, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -22488,13 +10748,13 @@ - + - + - + @@ -22502,11 +10762,11 @@ - pineal stalk + nucleus prepositus Verified - + Verified https://ror.org/03cpe7c52 @@ -22514,28 +10774,25 @@ - + - - + + + - - - - - - orbital area, medial part + + dorsal part of the lateral geniculate complex Verified - + Verified https://ror.org/03cpe7c52 @@ -22543,39 +10800,47 @@ - + - + - + + + + + + + + + - + - medial mammillary nucleus, median part + Prelimbic area, layer 1 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -22583,11 +10848,11 @@ - ventral posteromedial nucleus of the thalamus + retrochiasmatic area Verified - + Verified https://ror.org/03cpe7c52 @@ -22595,28 +10860,25 @@ - + - - + + + - - - - - - dentate gyrus crest + + preoptic commissure Verified - + Verified https://ror.org/03cpe7c52 @@ -22624,9 +10886,9 @@ - + - + @@ -22636,16 +10898,16 @@ - + - primary auditory area, layer 1 + anterior olfactory nucleus, external part Verified - + Verified https://ror.org/03cpe7c52 @@ -22653,13 +10915,13 @@ - + - + - + @@ -22667,11 +10929,11 @@ - postcommissural fornix + nucleus of Roller Verified - + Verified https://ror.org/03cpe7c52 @@ -22679,44 +10941,75 @@ - + - - + + + + + + + ventral part of the lateral geniculate complex + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + + + + + + + + + + + - + - - orbital area, ventral part + + anterior cingulate area, layer 6a Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -22725,16 +11018,16 @@ - + - anterior cingulate area, layer 5 + Gustatory areas, layer 2/3 Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -22742,13 +11035,13 @@ - + - + - + @@ -22756,11 +11049,11 @@ - lateral visual area, layer 6a + Nucleus of reuniens Verified - + Verified https://ror.org/03cpe7c52 @@ -22768,25 +11061,57 @@ - + - - + + + + + + + + + + + + + + + + primary somatosensory area, unassigned + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + - + + + + - - ventral posteromedial nucleus of the thalamus, parvicellular part + + primary somatosensory area, unassigned, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -22794,25 +11119,28 @@ - + - - + + - + + + + - - dentate gyrus crest, molecular layer + + primary somatosensory area, unassigned, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -22820,9 +11148,9 @@ - + - + @@ -22832,16 +11160,16 @@ - + - entorhinal area, medial part, dorsal zone, layer 6 + primary somatosensory area, unassigned, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -22849,25 +11177,28 @@ - + - - + + - + + + + - - cerebellar commissure + + primary somatosensory area, unassigned, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -22875,9 +11206,9 @@ - + - + @@ -22887,16 +11218,16 @@ - + - orbital area, ventrolateral part + primary somatosensory area, unassigned, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -22904,59 +11235,57 @@ - + - - + + - - - - - - - - - - + + + + + - - Infralimbic area, layer 2 + + primary somatosensory area, unassigned, layer 6b Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + - + + + + - - ventral tegmental area + + anterior olfactory nucleus, lateral part Verified - + Verified https://ror.org/03cpe7c52 @@ -22964,13 +11293,13 @@ - + - + - + @@ -22978,11 +11307,11 @@ - dorsal terminal nucleus of the accessory optic tract + frontal pole, cerebral cortex Verified - + Verified https://ror.org/03cpe7c52 @@ -22990,57 +11319,51 @@ - + - - + + + - - - - - - posterolateral visual area, layer 1 + + parapyramidal nucleus, deep part Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + - - - - - - dentate gyrus crest, polymorph layer + + lateral habenula Verified - + Verified https://ror.org/03cpe7c52 @@ -23048,39 +11371,47 @@ - + - + - + + + + + + + + + - + - cerebellar peduncles + Gustatory areas, layer 5 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -23088,11 +11419,11 @@ - principal mammillary tract + accessory olfactory bulb, glomerular layer Verified - + Verified https://ror.org/03cpe7c52 @@ -23100,13 +11431,13 @@ - + - + - + @@ -23114,11 +11445,11 @@ - olfactory tubercle + rhomboid nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -23126,28 +11457,25 @@ - + - - + + + - - - - - - ventral auditory area, layer 2/3 + + induseum griseum Verified - + Verified https://ror.org/03cpe7c52 @@ -23155,13 +11483,13 @@ - + - + - + @@ -23169,37 +11497,40 @@ - ventral tegmental nucleus + Pyramid Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - dentate gyrus crest, granule cell layer + + anterior olfactory nucleus, medial part Verified - + Verified https://ror.org/03cpe7c52 @@ -23207,9 +11538,9 @@ - + - + @@ -23219,16 +11550,16 @@ - + - posterior auditory area, layer 4 + cortical amygdalar area, anterior part, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -23236,13 +11567,13 @@ - + - + - + @@ -23250,11 +11581,11 @@ - interstitial nucleus of the vestibular nerve + parapyramidal nucleus, superficial part Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -23262,13 +11593,13 @@ - + - + - + @@ -23276,11 +11607,11 @@ - vascular organ of the lamina terminalis + lateral hypothalamic area Verified - + Verified https://ror.org/03cpe7c52 @@ -23288,57 +11619,59 @@ - + - - + + + + + + + + + + + - - - - - + - - entorhinal area, lateral part, layer 2b + + Prelimbic area, layer 2 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + - - - - - - nucleus x + + accessory olfactory bulb, granular layer Verified - + Verified https://ror.org/03cpe7c52 @@ -23346,28 +11679,25 @@ - + - - + + + - - - - - - dentate gyrus lateral blade + + rostral linear nucleus raphe Verified - + Verified https://ror.org/03cpe7c52 @@ -23375,28 +11705,25 @@ - + - - + + + - - - - - - secondary motor area, layer 5 + + pyramidal decussation Verified - + Verified https://ror.org/03cpe7c52 @@ -23404,9 +11731,9 @@ - + - + @@ -23416,16 +11743,16 @@ - + - spinal nucleus of the trigeminal, oral part, caudal dorsomedial part + anterior olfactory nucleus, posteroventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -23433,25 +11760,28 @@ - + - - + + - + + + + - - pons + + primary somatosensory area, mouth, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -23459,25 +11789,28 @@ - + - - + + - + + + + - - hypoglossal nucleus + + entorhinal area, lateral part, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -23485,9 +11818,9 @@ - + - + @@ -23497,16 +11830,16 @@ - + - retrosplenial area, lateral agranular part, layer 5 + cortical amygdalar area, anterior part, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -23514,28 +11847,25 @@ - + - - + + + - - - - - + - - dentate gyrus lateral blade, molecular layer + + primary somatosensory area, barrel field, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -23543,13 +11873,13 @@ - + - + - + @@ -23557,11 +11887,11 @@ - corpus callosum + medial vestibular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -23569,25 +11899,28 @@ - + - - + + - + + + + - - primary visual area, layer 5 + + linear nucleus of the medulla Verified - + Verified https://ror.org/03cpe7c52 @@ -23595,13 +11928,13 @@ - + - + - + @@ -23609,11 +11942,11 @@ - middle cerebellar peduncle + accessory olfactory bulb, mitral layer Verified - + Verified https://ror.org/03cpe7c52 @@ -23621,13 +11954,13 @@ - + - + - + @@ -23635,11 +11968,11 @@ - posterior amygdalar nucleus + nucleus raphe magnus Verified - + Verified https://ror.org/03cpe7c52 @@ -23647,28 +11980,25 @@ - + - - + + + - - - - - - dentate gyrus lateral blade, polymorph layer + + area postrema Verified - + Verified https://ror.org/03cpe7c52 @@ -23676,9 +12006,9 @@ - + - + @@ -23688,16 +12018,16 @@ - + - agranular insular area, dorsal part, layer 6a + cortical amygdalar area, anterior part, layer 3 Verified - + Verified https://ror.org/03cpe7c52 @@ -23705,13 +12035,13 @@ - + - + - + @@ -23719,11 +12049,11 @@ - corticospinal tract + lateral vestibular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -23731,13 +12061,13 @@ - + - + - + @@ -23745,25 +12075,25 @@ - piriform-amygdalar area + lateral mammillary nucleus Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + @@ -23771,11 +12101,11 @@ - paraventricular hypothalamic nucleus, magnocellular division, medial magnocellular part + main olfactory bulb, glomerular layer Verified - + Verified https://ror.org/03cpe7c52 @@ -23783,13 +12113,13 @@ - + - + - + @@ -23797,11 +12127,11 @@ - dentate gyrus lateral blade, granule cell layer + red nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -23809,9 +12139,9 @@ - + - + @@ -23821,16 +12151,16 @@ - + - posterior auditory area, layer 5 + cortical amygdalar area, posterior part, lateral zone, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -23838,28 +12168,51 @@ - + - - + + + + + + + superior vestibular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + + + - + - - primary somatosensory area, layer 1 + + lateral posterior nucleus of the thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -23867,13 +12220,13 @@ - + - + - + @@ -23881,11 +12234,11 @@ - spinal tract of the trigeminal nerve + posterior parietal association areas Verified - + Verified https://ror.org/03cpe7c52 @@ -23893,13 +12246,13 @@ - + - + - + @@ -23907,11 +12260,11 @@ - periaqueductal gray + main olfactory bulb, granule layer Verified - + Verified https://ror.org/03cpe7c52 @@ -23919,13 +12272,13 @@ - + - + - + @@ -23933,25 +12286,25 @@ - dopaminergic A13 group + rubroreticular tract Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -23959,11 +12312,11 @@ - zona incerta + nucleus raphe obscurus Verified - + Verified https://ror.org/03cpe7c52 @@ -23971,13 +12324,13 @@ - + - + - + @@ -23985,11 +12338,11 @@ - facial nerve + arcuate hypothalamic nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -23997,9 +12350,9 @@ - + - + @@ -24009,16 +12362,16 @@ - + - dentate gyrus medial blade + cortical amygdalar area, posterior part, lateral zone, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -24026,13 +12379,13 @@ - + - + - + @@ -24040,11 +12393,11 @@ - basic cell groups and regions + spinal vestibular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -24052,28 +12405,25 @@ - + - - + + + - - - - - - agranular insular area, ventral part, layer 5 + + lateral preoptic area Verified - + Verified https://ror.org/03cpe7c52 @@ -24081,28 +12431,59 @@ - + - - + + + + + + + + + + + - + + + + + anterior cingulate area, layer 6b + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + + + + + + + + + + + - + - - visual areas, layer 1 + + main olfactory bulb, inner plexiform layer Verified - + Verified https://ror.org/03cpe7c52 @@ -24110,13 +12491,13 @@ - + - + - + @@ -24124,11 +12505,11 @@ - stria medullaris + sensory root of the trigeminal nerve Verified - + Verified https://ror.org/03cpe7c52 @@ -24136,13 +12517,13 @@ - + - + - + @@ -24150,11 +12531,11 @@ - pallidum + anterior amygdalar area Verified - + Verified https://ror.org/03cpe7c52 @@ -24162,28 +12543,25 @@ - + - - + + + - - - - - - posteromedial visual area, layer 1 + + nucleus raphe pallidus Verified - + Verified https://ror.org/03cpe7c52 @@ -24191,28 +12569,25 @@ - + - - + + + - - - - - - supplemental somatosensory area, layer 2/3 + + anterior tegmental nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -24220,9 +12595,9 @@ - + - + @@ -24232,16 +12607,16 @@ - + - dentate gyrus medial blade, molecular layer + cortical amygdalar area, posterior part, lateral zone, layer 3 Verified - + Verified https://ror.org/03cpe7c52 @@ -24249,13 +12624,13 @@ - + - + - + @@ -24263,11 +12638,11 @@ - glossopharyngeal nerve + anterolateral visual area, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -24275,28 +12650,25 @@ - + - - + + + - - - - - - pallidum, caudal region + + lateral reticular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -24304,13 +12676,13 @@ - + - + - + @@ -24318,11 +12690,11 @@ - lateral ventricle + main olfactory bulb, mitral layer Verified - + Verified https://ror.org/03cpe7c52 @@ -24330,13 +12702,13 @@ - + - + - + @@ -24344,11 +12716,11 @@ - inferior colliculus, central nucleus + solitary tract Verified - + Verified https://ror.org/03cpe7c52 @@ -24356,13 +12728,13 @@ - + - + - + @@ -24370,11 +12742,11 @@ - superior cerebellar peduncle decussation + nucleus raphe pontis Verified - + Verified https://ror.org/03cpe7c52 @@ -24382,13 +12754,13 @@ - + - + - + @@ -24396,11 +12768,11 @@ - hypoglossal nerve + anterior group of the dorsal thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -24408,35 +12780,38 @@ - + - - + + - + + + + - - dorsal peduncular area + + cortical amygdalar area, posterior part, medial zone, layer 1 Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + @@ -24446,16 +12821,16 @@ - + - dentate gyrus medial blade, polymorph layer + posterior parietal association areas, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -24463,28 +12838,25 @@ - + - - + + + - - - - - - primary auditory area, layer 4 + + lateral septal nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -24492,51 +12864,62 @@ - + - + - + + + + + + + + + - + - pallidum, dorsal region + dorsal auditory area, layer 6b Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - nucleus of the lateral lemniscus, dorsal part + + main olfactory bulb, outer plexiform layer Verified - + Verified https://ror.org/03cpe7c52 @@ -24544,13 +12927,13 @@ - + - + - + @@ -24558,11 +12941,11 @@ - inferior colliculus, dorsal nucleus + midbrain reticular nucleus, retrorubral area Verified - + Verified https://ror.org/03cpe7c52 @@ -24570,13 +12953,13 @@ - + - + - + @@ -24584,11 +12967,11 @@ - primary visual area, layer 2/3 + auditory areas Verified - + Verified https://ror.org/03cpe7c52 @@ -24596,25 +12979,28 @@ - + - - + + - + + + + - - retrohippocampal region + + cortical amygdalar area, posterior part, medial zone, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -24622,25 +13008,28 @@ - + - - + + - + + + + - - dentate gyrus medial blade, granule cell layer + + posterior auditory area, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -24648,25 +13037,28 @@ - + - - + + - + + + + - - supraoptic commissures, dorsal + + lateral septal nucleus, caudal (caudodorsal) part Verified - + Verified https://ror.org/03cpe7c52 @@ -24674,9 +13066,9 @@ - + - + @@ -24686,16 +13078,16 @@ - + - pallidum, medial region + primary auditory area, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -24703,9 +13095,9 @@ - + - + @@ -24720,16 +13112,16 @@ - + - Infralimbic area, layer 5 + dorsal auditory area, layer 5 Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -24737,13 +13129,13 @@ - + - + - + @@ -24751,11 +13143,37 @@ - inferior colliculus, external nucleus + retrosplenial area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + + + + + + + + + + + + + + + + + + + anteroventral nucleus of thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -24763,9 +13181,9 @@ - + - + @@ -24775,16 +13193,16 @@ - + - subiculum, dorsal part, molecular layer + cortical amygdalar area, posterior part, medial zone, layer 3 Verified - + Verified https://ror.org/03cpe7c52 @@ -24792,13 +13210,13 @@ - + - + - + @@ -24806,11 +13224,11 @@ - inferior olivary complex + posteromedial visual area, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -24818,25 +13236,28 @@ - + - - + + - + + + + - - dorsomedial nucleus of the hypothalamus + + lateral septal nucleus, rostral (rostroventral) part Verified - + Verified https://ror.org/03cpe7c52 @@ -24844,9 +13265,9 @@ - + - + @@ -24856,16 +13277,16 @@ - + - agranular insular area, dorsal part, layer 6b + entorhinal area, medial part, ventral zone, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -24873,25 +13294,28 @@ - + - - + + - + + + + - - oculomotor nerve + + nucleus of the lateral olfactory tract, molecular layer Verified - + Verified https://ror.org/03cpe7c52 @@ -24899,13 +13323,13 @@ - + - + - + @@ -24913,11 +13337,11 @@ - supraoptic commissures, ventral + spino-olivary pathway Verified - + Verified https://ror.org/03cpe7c52 @@ -24925,13 +13349,13 @@ - + - + - + @@ -24939,11 +13363,11 @@ - superior colliculus, zonal layer + reticular nucleus of the thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -24951,13 +13375,13 @@ - + - + - + @@ -24965,11 +13389,11 @@ - pallidum, ventral region + anteroventral preoptic nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -24977,9 +13401,9 @@ - + - + @@ -24989,16 +13413,16 @@ - + - ectorhinal area/Layer 1 + orbital area, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -25006,9 +13430,9 @@ - + - + @@ -25018,16 +13442,16 @@ - + - subiculum, dorsal part, stratum radiatum + lateral septal nucleus, ventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -25035,9 +13459,43 @@ - + + + + + + + + + + + + + + + + + + + + + + + dorsal peduncular area, layer 6a + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + + + + + - + @@ -25047,16 +13505,16 @@ - + - primary somatosensory area, nose, layer 2/3 + nucleus of the lateral olfactory tract, pyramidal layer Verified - + Verified https://ror.org/03cpe7c52 @@ -25064,25 +13522,28 @@ - + - - + + - + + + + - - dorsal motor nucleus of the vagus nerve + + posterolateral visual area, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -25090,47 +13551,39 @@ - + - + - - - - - - - - - + - + - Prelimbic area, layer 6a + intergeniculate leaflet of the lateral geniculate complex Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + @@ -25138,11 +13591,11 @@ - olfactory nerve + anteroventral periventricular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -25150,25 +13603,28 @@ - + - - + + - + + + + - - trapezoid body + + retrosplenial area, dorsal part, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -25176,13 +13632,13 @@ - + - + - + @@ -25190,11 +13646,11 @@ - superior colliculus, superficial gray layer + lateral septal complex Verified - + Verified https://ror.org/03cpe7c52 @@ -25202,25 +13658,28 @@ - + - - + + - + + + + - - parasubiculum + + piriform area, molecular layer Verified - + Verified https://ror.org/03cpe7c52 @@ -25228,28 +13687,25 @@ - + - - + + + - - - - - - primary motor area, Layer 6a + + spinotectal pathway Verified - + Verified https://ror.org/03cpe7c52 @@ -25257,54 +13713,54 @@ - + - - + + + - - - - - - subiculum, dorsal part, pyramidal layer + + striatum-like amygdalar nuclei Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - dentate nucleus + + retrosplenial area, lateral agranular part, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -25312,9 +13768,9 @@ - + - + @@ -25324,16 +13780,16 @@ - + - primary auditory area, layer 5 + entorhinal area, lateral part, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -25341,13 +13797,13 @@ - + - + - + @@ -25355,11 +13811,11 @@ - optic nerve + barrington's nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -25367,15 +13823,15 @@ - + - + - + @@ -25384,16 +13840,16 @@ - + - Visceral area, layer 6b + anteromedial visual area, layer 1 Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -25401,13 +13857,13 @@ - + - + - + @@ -25415,37 +13871,40 @@ - spinocerebellar tract + lateral tegmental nucleus Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - superior colliculus, optic layer + + piriform area, pyramidal layer Verified - + Verified https://ror.org/03cpe7c52 @@ -25453,13 +13912,13 @@ - + - + - + @@ -25467,11 +13926,11 @@ - parvicellular reticular nucleus + suprachiasmatic nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -25479,28 +13938,25 @@ - + - - + + + - - - - - - subiculum, ventral part, molecular layer + + bed nucleus of the anterior commissure Verified - + Verified https://ror.org/03cpe7c52 @@ -25508,9 +13964,9 @@ - + - + @@ -25520,16 +13976,16 @@ - + - primary somatosensory area, upper limb, layer 2/3 + orbital area, ventrolateral part, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -25537,59 +13993,54 @@ - + - + - - - - - - - - - + - + - Visceral area, layer 6a + hypothalamic lateral zone Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + - + + + + - - ventral commissure of the spinal cord + + piriform area, polymorph layer Verified - + Verified https://ror.org/03cpe7c52 @@ -25597,13 +14048,13 @@ - + - + - + @@ -25611,11 +14062,11 @@ - parasolitary nucleus + bed nucleus of the accessory olfactory tract Verified - + Verified https://ror.org/03cpe7c52 @@ -25623,28 +14074,25 @@ - + - - + + + - - - - - - parabrachial nucleus, lateral division, central lateral part + + basolateral amygdalar nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -25652,9 +14100,9 @@ - + - + @@ -25664,16 +14112,16 @@ - + - subiculum, ventral part, stratum radiatum + taenia tecta, dorsal part, layers 1-4 Verified - + Verified https://ror.org/03cpe7c52 @@ -25681,9 +14129,9 @@ - + - + @@ -25693,71 +14141,76 @@ - + - supplemental somatosensory area, layer 6a + Magnocellular nucleus Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - rubrospinal tract + Somatomotor areas, Layer 5 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + - - - - - - primary somatosensory area, layer 4 + + secondary fissure Verified - + Verified https://ror.org/03cpe7c52 @@ -25765,13 +14218,13 @@ - + - + - + @@ -25779,25 +14232,25 @@ - ventral spinocerebellar tract + periventricular hypothalamic nucleus, anterior part Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -25805,11 +14258,11 @@ - parabrachial nucleus + stria terminalis Verified - + Verified https://ror.org/03cpe7c52 @@ -25817,9 +14270,9 @@ - + - + @@ -25829,16 +14282,16 @@ - + - parabrachial nucleus, lateral division, dorsal lateral part + basolateral amygdalar nucleus, anterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -25846,54 +14299,59 @@ - + - + - + + + + + + + + + - + - posterolateral visual area, layer 4 + Prelimbic area, layer 2/3 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + + - - - - - - subiculum, ventral part, pyramidal layer + + retina Verified - + Verified https://ror.org/03cpe7c52 @@ -25901,25 +14359,28 @@ - + - - + + - + + + + - - spinothalamic tract + + primary visual area, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -25927,25 +14388,28 @@ - + - - + + - + + + + - - dorsal nucleus raphe + + taenia tecta, ventral part, layers 1-3 Verified - + Verified https://ror.org/03cpe7c52 @@ -25953,54 +14417,54 @@ - + - - + + + - - - - - - supplemental somatosensory area, layer 1 + + magnocellular reticular nucleus Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - parabigeminal nucleus + + posterior parietal association areas, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -26008,28 +14472,31 @@ - + - - + + + - - - - - - parabrachial nucleus, lateral division, external lateral part + + anterior cingulate area Verified - + + + Verified + https://orcid.org/0000-0001-7258-9596 + + + Verified https://ror.org/03cpe7c52 @@ -26037,13 +14504,13 @@ - + - + - + @@ -26051,11 +14518,11 @@ - accessory optic tract + septofimbrial nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -26063,25 +14530,28 @@ - + - - + + - + + + + - - tectospinal pathway + + basolateral amygdalar nucleus, posterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -26089,9 +14559,9 @@ - + - + @@ -26101,16 +14571,16 @@ - + - primary somatosensory area, mouth, layer 1 + entorhinal area, lateral part, layer 4/5 Verified - + Verified https://ror.org/03cpe7c52 @@ -26118,9 +14588,9 @@ - + - + @@ -26130,68 +14600,79 @@ - + - retrosplenial area, dorsal part + anterior area Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - anterior hypothalamic nucleus + + laterointermediate area Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + + + + + + + + + - + - dorsal tegmental nucleus + rostrolateral area, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -26199,25 +14680,33 @@ - + - + - + + + + + + + + + - + - parabrachial nucleus, lateral division + rostrolateral area, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -26225,28 +14714,33 @@ - + - - + + + + + + + + + + + - - - - - + - - primary motor area, Layer 6b + + rostrolateral area, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -26254,28 +14748,25 @@ - + - - + + + - - - - - - parabrachial nucleus, lateral division, superior lateral part + + rostrolateral area, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -26283,25 +14774,33 @@ - + - + - + + + + + + + + + - + - terminal nerve + rostrolateral area, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -26309,57 +14808,59 @@ - + - - + + + + + + + + + + + - - - - - + - - efferent cochlear group + + rostrolateral area, layer 6b Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + + - - - - - - perirhinal area, layer 2/3 + + postrhinal area Verified - + Verified https://ror.org/03cpe7c52 @@ -26367,28 +14868,33 @@ - + - - + + + + + + + + + + + - - - - - + - - primary somatosensory area, nose, layer 6a + + postrhinal area, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -26396,42 +14902,47 @@ - + - - + + + + + + + + + + + - - - - - + - - rhinocele + + postrhinal area, layer 2/3 Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + @@ -26439,11 +14950,11 @@ - parabrachial nucleus, medial division + postrhinal area, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -26451,28 +14962,33 @@ - + - - + + + + + + + + + + + - - - - - + - - parabrachial nucleus, lateral division, ventral lateral part + + postrhinal area, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -26480,25 +14996,33 @@ - + - + - + + + + + + + + + - + - ansa peduncularis + postrhinal area, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -26506,28 +15030,33 @@ - + - - + + + + + + + + + + + - - - - - + - - supplemental somatosensory area, layer 6b + + postrhinal area, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -26535,28 +15064,25 @@ - + - - + + + - - - - - - retrosplenial area, lateral agranular part + + midbrain Verified - + Verified https://ror.org/03cpe7c52 @@ -26564,9 +15090,9 @@ - + - + @@ -26576,16 +15102,16 @@ - + - ectorhinal area + agranular insular area, posterior part, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -26593,13 +15119,13 @@ - + - + - + @@ -26607,11 +15133,11 @@ - pontine central gray + isocortex Verified - + Verified https://ror.org/03cpe7c52 @@ -26619,28 +15145,25 @@ - + - - + + + - - - - - - parabrachial nucleus, medial division, external medial part + + subthalamic fascicle Verified - + Verified https://ror.org/03cpe7c52 @@ -26648,9 +15171,9 @@ - + - + @@ -26660,16 +15183,16 @@ - + - primary somatosensory area, trunk, layer 6a + supragenual nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -26677,13 +15200,13 @@ - + - + - + @@ -26691,11 +15214,11 @@ - nucleus of the lateral lemniscus, horizontal part + basomedial amygdalar nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -26703,25 +15226,28 @@ - + - - + + - + + + + - - anterior commissure, olfactory limb + + primary motor area, Layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -26729,13 +15255,13 @@ - + - + - + @@ -26743,11 +15269,11 @@ - trigeminal nerve + primary somatosensory area Verified - + Verified https://ror.org/03cpe7c52 @@ -26755,9 +15281,9 @@ - + - + @@ -26767,16 +15293,16 @@ - + - posterolateral visual area, layer 5 + entorhinal area, medial part, ventral zone, layer 2 Verified - + Verified https://ror.org/03cpe7c52 @@ -26784,13 +15310,13 @@ - + - + - + @@ -26798,11 +15324,11 @@ - external cuneate nucleus + suprageniculate nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -26810,13 +15336,13 @@ - + - + - + @@ -26824,11 +15350,11 @@ - medial septal complex + superior cerebelar peduncles Verified - + Verified https://ror.org/03cpe7c52 @@ -26836,9 +15362,9 @@ - + - + @@ -26848,16 +15374,16 @@ - + - anterolateral visual area, layer 2/3 + basomedial amygdalar nucleus, anterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -26865,9 +15391,9 @@ - + - + @@ -26877,16 +15403,16 @@ - + - retrosplenial area, lateral agranular part, layer 6a + agranular insular area, dorsal part, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -26894,13 +15420,13 @@ - + - + - + @@ -26908,11 +15434,11 @@ - paracentral nucleus + primary somatosensory area, barrel field Verified - + Verified https://ror.org/03cpe7c52 @@ -26920,28 +15446,25 @@ - + - - + + + - - - - - - anterior commissure, temporal limb + + primary visual area, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -26949,25 +15472,28 @@ - + - - + + - + + + + - - entorhinal area + + retrosplenial area, dorsal part, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -26975,13 +15501,13 @@ - + - + - + @@ -26989,40 +15515,37 @@ - interposed nucleus + mammillary body Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + + - - - - - - orbital area, medial part, layer 6a + + septohippocampal nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -27030,25 +15553,28 @@ - + - - + + - + + + + - - trochlear nerve + + basomedial amygdalar nucleus, posterior part Verified - + Verified https://ror.org/03cpe7c52 @@ -27056,25 +15582,28 @@ - + - - + + - + + + + - - lingula (I) + + perirhinal area, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -27082,28 +15611,25 @@ - + - - + + + - - - - - - visual areas, layer 4 + + superior colliculus commissure Verified - + Verified https://ror.org/03cpe7c52 @@ -27111,9 +15637,9 @@ - + - + @@ -27123,16 +15649,16 @@ - + - parabrachial nucleus, medial division, medial medial part + primary somatosensory area, lower limb Verified - + Verified https://ror.org/03cpe7c52 @@ -27140,13 +15666,13 @@ - + - + - + @@ -27154,11 +15680,11 @@ - brachium of the superior colliculus + subfornical organ Verified - + Verified https://ror.org/03cpe7c52 @@ -27166,25 +15692,28 @@ - + - - + + - + + + + - - vagus nerve + + posterior parietal association areas, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -27192,13 +15721,13 @@ - + - + - + @@ -27206,11 +15735,11 @@ - entorhinal area, lateral part + supramammillary decussation Verified - + Verified https://ror.org/03cpe7c52 @@ -27218,28 +15747,25 @@ - + - - + + + - - - - - - entorhinal area, lateral part, layer 4 + + substantia innominata Verified - + Verified https://ror.org/03cpe7c52 @@ -27247,13 +15773,13 @@ - + - + - + @@ -27261,11 +15787,11 @@ - central lobule + brain stem Verified - + Verified https://ror.org/03cpe7c52 @@ -27273,9 +15799,9 @@ - + - + @@ -27285,16 +15811,16 @@ - + - primary somatosensory area, layer 5 + agranular insular area, posterior part, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -27302,25 +15828,28 @@ - + - - + + - + + + + - - perirhinal area + + primary somatosensory area, mouth Verified - + Verified https://ror.org/03cpe7c52 @@ -27328,9 +15857,9 @@ - + - + @@ -27340,16 +15869,16 @@ - + - parabrachial nucleus, medial division, ventral medial part + primary somatosensory area, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -27357,13 +15886,13 @@ - + - + - + @@ -27371,11 +15900,11 @@ - cerebal peduncle + subparaventricular zone Verified - + Verified https://ror.org/03cpe7c52 @@ -27383,13 +15912,13 @@ - + - + - + @@ -27397,11 +15926,11 @@ - entorhinal area, medial part, dorsal zone + oculomotor nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -27409,13 +15938,13 @@ - + - + - + @@ -27423,11 +15952,11 @@ - culmen + subceruleus nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -27435,28 +15964,25 @@ - + - - + + + - - - - - - primary somatosensory area, nose, layer 6b + + bed nuclei of the stria terminalis Verified - + Verified https://ror.org/03cpe7c52 @@ -27464,25 +15990,28 @@ - + - - + + - + + + + - - motor root of the trigeminal nerve + + orbital area, layer 5 Verified - + Verified https://ror.org/03cpe7c52 @@ -27490,25 +16019,28 @@ - + - - + + - - + + + + + - - parafascicular nucleus + + primary somatosensory area, nose Verified - + Verified https://ror.org/03cpe7c52 @@ -27516,13 +16048,13 @@ - + - + - + @@ -27530,11 +16062,11 @@ - pontine gray + medulla Verified - + Verified https://ror.org/03cpe7c52 @@ -27542,25 +16074,28 @@ - + - - + + - + + + + - - vestibulocochlear nerve + + agranular insular area, posterior part, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -27568,28 +16103,25 @@ - + - - + + + - - - - - - entorhinal area, medial part, ventral zone + + tectothalamic pathway Verified - + Verified https://ror.org/03cpe7c52 @@ -27597,13 +16129,13 @@ - + - + - + @@ -27611,11 +16143,11 @@ - declive (VI) + sublaterodorsal nucleus Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -27623,28 +16155,25 @@ - + - - + + + - - - - - - visual areas, layer 5 + + bed nuclei of the stria terminalis, anterior division Verified - + Verified https://ror.org/03cpe7c52 @@ -27652,35 +16181,43 @@ - + - + - + + + + + + + + + - + - paragigantocellular reticular nucleus + dorsal peduncular area, layer 2/3 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + @@ -27690,16 +16227,16 @@ - + - nucleus ambiguus, dorsal division + primary somatosensory area, trunk Verified - + Verified https://ror.org/03cpe7c52 @@ -27707,13 +16244,13 @@ - + - + - + @@ -27721,11 +16258,11 @@ - paraventricular hypothalamic nucleus, parvicellular division + mediodorsal nucleus of thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -27733,39 +16270,47 @@ - + - + - + + + + + + + + + - + - cingulum bundle + Prelimbic area, layer 5 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -27773,11 +16318,11 @@ - vestibulospinal pathway + thalamic peduncles Verified - + Verified https://ror.org/03cpe7c52 @@ -27785,13 +16330,13 @@ - + - + - + @@ -27799,11 +16344,11 @@ - endopiriform nucleus + submedial nucleus of the thalamus Verified - + Verified https://ror.org/03cpe7c52 @@ -27811,28 +16356,25 @@ - + - - + + + - - - - - - primary motor area, Layer 2/3 + + bed nuclei of the stria terminalis, posterior division Verified - + Verified https://ror.org/03cpe7c52 @@ -27840,25 +16382,28 @@ - + - - + + - + + + + - - folium-tuber vermis (VII) + + perirhinal area, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -27866,9 +16411,9 @@ - + - + @@ -27883,11 +16428,11 @@ - primary somatosensory area, upper limb, layer 6a + primary somatosensory area, upper limb Verified - + Verified https://ror.org/03cpe7c52 @@ -27895,25 +16440,28 @@ - + - - + + - + + + + - - posterior hypothalamic nucleus + + medulla, motor related Verified - + Verified https://ror.org/03cpe7c52 @@ -27921,47 +16469,42 @@ - + - - + + - - - - - - - - - - + + + + + - - Somatomotor areas, Layer 6b + + entorhinal area, medial part, ventral zone, layer 3 Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + @@ -27969,11 +16512,11 @@ - cochlear nerve + substantia nigra, compact part Verified - + Verified https://ror.org/03cpe7c52 @@ -27981,13 +16524,13 @@ - + - + - + @@ -27995,11 +16538,11 @@ - agranular insular area + ammon's horn Verified - + Verified https://ror.org/03cpe7c52 @@ -28007,9 +16550,9 @@ - + - + @@ -28019,16 +16562,16 @@ - + - primary somatosensory area, mouth, layer 4 + cortical amygdalar area, posterior part, lateral zone, layers 1-3 Verified - + Verified https://ror.org/03cpe7c52 @@ -28036,35 +16579,9 @@ - - - - - - - - - - - - - - - pyramus (VIII) - Verified - - - - - Verified - https://orcid.org/0000-0001-7258-9596 - - - - - + - + @@ -28074,16 +16591,16 @@ - + - endopiriform nucleus, dorsal part + posterolateral visual area, layer 6a Verified - + Verified https://ror.org/03cpe7c52 @@ -28091,13 +16608,13 @@ - + - + - + @@ -28105,11 +16622,11 @@ - pineal body + supplemental somatosensory area Verified - + Verified https://ror.org/03cpe7c52 @@ -28117,9 +16634,9 @@ - + - + @@ -28129,16 +16646,16 @@ - + - primary auditory area, layer 6a + medulla, behavioral state related Verified - + Verified https://ror.org/03cpe7c52 @@ -28146,28 +16663,25 @@ - + - - + + + - - - - - - lateral reticular nucleus, magnocellular part + + paraventricular hypothalamic nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -28175,28 +16689,25 @@ - + - - + + + - - - - - - corpus callosum, anterior forceps + + cuneate fascicle Verified - + Verified https://ror.org/03cpe7c52 @@ -28204,13 +16715,13 @@ - + - + - + @@ -28218,25 +16729,25 @@ - uvula (IX) + substantia nigra, reticular part Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + @@ -28244,11 +16755,11 @@ - epithalamus + field CA1 Verified - + Verified https://ror.org/03cpe7c52 @@ -28256,54 +16767,28 @@ - + - + - - - - - - - - - ventral auditory area, layer 1 - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - + - + - - dorsal cochlear nucleus + + cortical amygdalar area, posterior part, medial zone, layers 1-3 Verified - + Verified https://ror.org/03cpe7c52 @@ -28311,28 +16796,25 @@ - + - - + + + - - - - - - piriform area + + trochlear nerve decussation Verified - + Verified https://ror.org/03cpe7c52 @@ -28340,28 +16822,25 @@ - + - - + + + - - - - - - secondary motor area, layer 2/3 + + primary visual area Verified - + Verified https://ror.org/03cpe7c52 @@ -28369,9 +16848,9 @@ - + - + @@ -28381,16 +16860,16 @@ - + - lateral reticular nucleus, parvicellular part + medulla, sensory related Verified - + Verified https://ror.org/03cpe7c52 @@ -28398,9 +16877,9 @@ - + - + @@ -28410,16 +16889,16 @@ - + - corpus callosum, extreme capsule + entorhinal area, lateral part, layer 5/6 Verified - + Verified https://ror.org/03cpe7c52 @@ -28427,28 +16906,25 @@ - + - - + + + - - - - - - retrosplenial area, lateral agranular part, layer 2/3 + + gracile fascicle Verified - + Verified https://ror.org/03cpe7c52 @@ -28456,28 +16932,25 @@ - + - - + + + - - - - - - endopiriform nucleus, ventral part + + supraoptic nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -28485,13 +16958,13 @@ - + - + - + @@ -28499,11 +16972,11 @@ - cranial nerves + field CA1, stratum lacunosum-moleculare Verified - + Verified https://ror.org/03cpe7c52 @@ -28511,35 +16984,38 @@ - + - - + + - + + + + - - nodulus (X) + + nucleus of the lateral olfactory tract, layers 1-3 Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + @@ -28549,16 +17025,16 @@ - + - orbital area, ventrolateral part, layer 1 + posterolateral visual area, layer 6b Verified - + Verified https://ror.org/03cpe7c52 @@ -28566,13 +17042,13 @@ - + - + - + @@ -28580,11 +17056,11 @@ - paragigantocellular reticular nucleus, dorsal part + anteromedial visual area Verified - + Verified https://ror.org/03cpe7c52 @@ -28592,28 +17068,25 @@ - + - - + + + - - - - - - corpus callosum, posterior forceps + + medullary reticular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -28621,13 +17094,13 @@ - + - + - + @@ -28635,74 +17108,63 @@ - prelimbic area + internal arcuate fibers Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - - - - - - - - - + - + - lateral visual area, layer 2/3 + ventral tegmental decussation Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + + - - - - - - primary somatosensory area, mouth, layer 5 + + superior olivary complex Verified - + Verified https://ror.org/03cpe7c52 @@ -28710,13 +17172,13 @@ - + - + - + @@ -28724,11 +17186,11 @@ - edinger-Westphal nucleus + field CA1, stratum oriens Verified - + Verified https://ror.org/03cpe7c52 @@ -28736,13 +17198,13 @@ - + - + - + @@ -28750,21 +17212,21 @@ - lobule II + inferior colliculus Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + @@ -28774,16 +17236,16 @@ - + - ectorhinal area/Layer 6a + piriform-amygdalar area, layers 1-3 Verified - + Verified https://ror.org/03cpe7c52 @@ -28791,39 +17253,47 @@ - + - + - + + + + + + + + + - + - paragigantocellular reticular nucleus, lateral part + anteromedial visual area, layer 4 Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - + - + @@ -28831,11 +17301,11 @@ - corpus callosum, rostrum + anterolateral visual area Verified - + Verified https://ror.org/03cpe7c52 @@ -28843,28 +17313,25 @@ - + - - + + + - - - - - - subependymal zone + + medial amygdalar nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -28872,13 +17339,13 @@ - + - + - + @@ -28886,11 +17353,11 @@ - dorsal premammillary nucleus + olivocerebellar tract Verified - + Verified https://ror.org/03cpe7c52 @@ -28898,13 +17365,13 @@ - + - + - + @@ -28912,11 +17379,11 @@ - primary somatosensory area, barrel field, layer 1 + subparafascicular nucleus Verified - + Verified https://ror.org/03cpe7c52 @@ -28924,13 +17391,13 @@ - + - + - + @@ -28938,51 +17405,54 @@ - fasciola cinerea + field CA1, pyramidal layer Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - - + + - + + + + - - Lobule III + + piriform-amygdalar area, molecular layer Verified - + Verified - https://orcid.org/0000-0001-7258-9596 + https://ror.org/03cpe7c52 - + - + - + @@ -28990,11 +17460,11 @@ - primary motor area + lateral visual area Verified - + Verified https://ror.org/03cpe7c52 @@ -29002,25 +17472,28 @@ - + - - + + - + + + + - - corpus callosum, splenium + + posteromedial visual area, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -29028,9 +17501,9 @@ - + - + @@ -29040,16 +17513,16 @@ - + - pons, motor related + medial amygdalar nucleus, anterodorsal part Verified - + Verified https://ror.org/03cpe7c52 @@ -29057,9 +17530,9 @@ - + - + @@ -29069,16 +17542,16 @@ - + - ectorhinal area/Layer 5 + orbital area, lateral part, layer 2/3 Verified - + Verified https://ror.org/03cpe7c52 @@ -29086,13 +17559,13 @@ - + - + - + @@ -29100,11 +17573,11 @@ - fastigial nucleus + vestibular nerve Verified - + Verified https://ror.org/03cpe7c52 @@ -29112,13 +17585,13 @@ - + - + - + @@ -29126,11 +17599,11 @@ - nucleus of the lateral lemniscus, ventral part + field CA1, stratum radiatum Verified - + Verified https://ror.org/03cpe7c52 @@ -29138,9 +17611,9 @@ - + - + @@ -29150,16 +17623,16 @@ - + - ventral auditory area, layer 4 + piriform-amygdalar area, pyramidal layer Verified - + Verified https://ror.org/03cpe7c52 @@ -29167,13 +17640,13 @@ - + - + - + @@ -29181,11 +17654,11 @@ - secondary motor area + rostrolateral visual area Verified - + Verified https://ror.org/03cpe7c52 @@ -29193,25 +17666,28 @@ - + - - + + - + + + + - - corticobulbar tract + + medial amygdalar nucleus, anteroventral part Verified - + Verified https://ror.org/03cpe7c52 @@ -29219,25 +17695,28 @@ - + - - + + - + + + + - - paramedian reticular nucleus + + entorhinal area, medial part, ventral zone, layer 4 Verified - + Verified https://ror.org/03cpe7c52 @@ -29245,9 +17724,9 @@ - + - + @@ -29257,42 +17736,45 @@ - + - agranular insular area, dorsal part, layer 1 + Superior colliculus, motor related, deep white layer Verified - + Verified - https://ror.org/03cpe7c52 + https://orcid.org/0000-0001-7258-9596 - + - - + + - + + + + - - root + + lateral visual area, layer 1 Verified - + Verified https://ror.org/03cpe7c52 @@ -29300,13 +17782,13 @@ - + - + - + @@ -29314,11 +17796,11 @@ - fundus of striatum + field CA2 Verified - + Verified https://ror.org/03cpe7c52 @@ -29326,9 +17808,9 @@ - + - + @@ -29338,16 +17820,16 @@ - + - entorhinal area, lateral part, layer 2/3 + piriform-amygdalar area, polymorph layer Verified - + Verified https://ror.org/03cpe7c52 @@ -29355,13 +17837,13 @@ - + - + - + @@ -29369,3513 +17851,15031 @@ - MBA entity - Verified - - - - - Verified - https://ror.org/03cpe7c52 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + posterolateral visual area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + medial amygdalar nucleus, posterodorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ectorhinal area/Layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial corticohypothalamic tract + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + spinal nucleus of the trigeminal, caudal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ansoparamedian fissure + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, ventral part, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA2, stratum lacunosum-moleculare + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus circularis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + anteromedial visual area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, dorsal part, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + medial amygdalar nucleus, posteroventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + columns of the fornix + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + spinal nucleus of the trigeminal, interpolar part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA2, stratum oriens + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, descending division, dorsal parvicellular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + infralimbic area + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + orbital area, lateral part, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + anteromedial visual area, layer 6b + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + retrosplenial area, dorsal part, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dorsal hippocampal commissure + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + spinal nucleus of the trigeminal, oral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA2, pyramidal layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, descending division, forniceal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, lateral part, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventral hippocampal commissure + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + spinal nucleus of the trigeminal, oral part, rostral dorsomedial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, upper limb, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + basolateral amygdalar nucleus, ventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + median preoptic nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + somatosensory areas + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA2, stratum radiatum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, descending division, lateral parvicellular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterior auditory area, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + visual areas, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + olfactory tubercle, molecular layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + midbrain trigeminal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, trunk, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + superior salivatory nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, descending division, medial parvicellular part, ventral zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + olfactory tubercle, pyramidal layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + alveus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + hypothalamic medial zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 2a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posteromedial visual area, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, magnocellular division, anterior magnocellular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + subthalamic nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA3, stratum lacunosum-moleculare + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + medial amygdalar nucleus, posterodorsal part, sublayer a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + olfactory tubercle, polymorph layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial geniculate complex + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + striatum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, lower limb, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA3, stratum lucidum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + medial amygdalar nucleus, posterodorsal part, sublayer b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + islands of Calleja + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + brachium of the inferior colliculus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial habenula + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, medial part, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + striatum dorsal region + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA3, stratum oriens + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + medial amygdalar nucleus, posterodorsal part, sublayer c + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, lateral part, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + major island of Calleja + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + bulbocerebellar tract + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + medial mammillary nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + striatum ventral region + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA3, pyramidal layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + dorsal peduncular area, layer 1 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + visual areas, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, anteromedial area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cuneocerebellar tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + somatomotor areas + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + posteromedial visual area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + subiculum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + field CA3, stratum radiatum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, dorsomedial nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal acoustic stria + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + main olfactory bulb + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 2b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subiculum, dorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + intralaminar nuclei of the dorsal thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, lower limb, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cerebellum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, fusiform nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal column + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial preoptic nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subiculum, ventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cerebellar nuclei + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, lateral part, layer 3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventral auditory area, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, magnocellular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial preoptic area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, medial part, layer 2 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + supramammillary nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + dorsal auditory area, layer 1 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + cerebellar cortex + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, ventral nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + spinal nucleus of the trigeminal, oral part, middle dorsomedial part, dorsal zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterior parietal association areas, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + posteromedial visual area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + supratrigeminal nucleus + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + + + + + + dorsal peduncular area, layer 2 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + central amygdalar nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, anterolateral area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial forebrain bundle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + perirhinal area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + temporal association areas + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + retrosplenial area, ventral part, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 2 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + central amygdalar nucleus, capsular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, dorsal part, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, juxtacapsular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal longitudinal fascicle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 5/6 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + central amygdalar nucleus, lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pontine reticular nucleus, ventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal spinocerebellar tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, oval nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Infralimbic area, layer 2/3 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + tuberomammillary nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, nose, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + central amygdalar nucleus, medial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus accumbens + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + cochlear nucleus, subpedunclular granular region + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + visual areas, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, anterior division, rhomboid nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial septal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posteromedial visual area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + postpiriform transition area + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + cerebrum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + accessory abducens nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, posterior division, dorsal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + midline group of the dorsal thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + anterior cingulate area, layer 1 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + lateral visual area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + tegmental reticular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + central lateral nucleus of the thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + accessory facial motor nucleus + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, upper limb, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + bed nuclei of the stria terminalis, posterior division, principal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + external capsule + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial terminal nucleus of the accessory optic tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the brachium of the inferior colliculus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + triangular nucleus of septum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, medial part, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + claustrum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + cortical amygdalar area, posterior part, lateral zone, layers 1-2 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, posterior division, interfascicular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of Darkschewitsch + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + taenia tecta + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, ventral part, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + cortical amygdalar area, posterior part, medial zone, layers 1-2 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + primary visual area, layer 1 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + bed nuclei of the stria terminalis, posterior division, transverse nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + fasciculus retroflexus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + diagonal band nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + taenia tecta, dorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventral auditory area, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + central medial nucleus of the thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + Subcommissural organ + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + internal capsule + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, lateral part, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + dorsal auditory area, layer 2/3 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + anterolateral visual area, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + bed nuclei of the stria terminalis, posterior division, strial extension + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + fimbria + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus incertus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + taenia tecta, ventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, ventral part, layer 2 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cochlear nuclei + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, ventrolateral part, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + spinal nucleus of the trigeminal, oral part, middle dorsomedial part, ventral zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, dorsal part, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + habenular commissure + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the lateral lemniscus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + lateral visual area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + tuberal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + substantia nigra, lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cuneiform nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + mediodorsal nucleus of the thalamus, central part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + hippocampal commissures + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the lateral olfactory tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial longitudinal fascicle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, medial part, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + motor nucleus of trigeminal + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, ventral part, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cerebral nuclei + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, upper limb, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + mediodorsal nucleus of the thalamus, lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the optic tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, descending division + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, lateral part, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cortical amygdalar area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dentate gyrus, granule cell layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + inferior colliculus commissure + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the posterior commissure + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterior parietal association areas, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + mediodorsal nucleus of the thalamus, medial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventral group of the dorsal thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + cortical amygdalar area, anterior part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + anterodorsal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + efferent vestibular nucleus + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + intermediate acoustic stria + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the trapezoid body + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterior auditory area, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Somatomotor areas, Layer 6a + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + vermal regions + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + dorsal peduncular area, layer 5 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + cortical amygdalar area, posterior part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary motor area, Layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + anterolateral visual area, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + juxtarestiform body + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the solitary tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + abducens nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, nose, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + cortical amygdalar area, posterior part, lateral zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + secondary motor area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, mouth, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + lateral lemniscus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + nucleus of the solitary tract, central part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + lateral terminal nucleus of the accessory optic tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + facial motor nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Gustatory areas, layer 6b + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + cortical amygdalar area, posterior part, medial zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + lateral olfactory tract, body + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + nucleus of the solitary tract, commissural part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + frontal pole, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + visual areas + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + interstitial nucleus of Cajal + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, trunk, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, lateral agranular part, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + caudoputamen + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + mammillary peduncle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the solitary tract, gelatinous part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + agranular insular area, ventral part, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + visceral area + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + dorsal auditory area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + superior central nucleus raphe + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + frontal pole, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, ventrolateral part, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + mammillotegmental tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + nucleus of the solitary tract, lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterior parietal association areas, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventral medial nucleus of the thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, ventral part, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cerebral cortex + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventrolateral preoptic nucleus + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + spinal nucleus of the trigeminal, oral part, ventrolateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + mammillothalamic tract + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + nucleus of the solitary tract, medial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + perirhinal area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventromedial hypothalamic nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + agranular insular area, ventral part, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cortical plate + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterior auditory area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial lemniscus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + olfactory areas + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + agranular insular area, ventral part, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + principal sensory nucleus of the trigeminal + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + anterior hypothalamic nucleus, anterior part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + vestibular nuclei + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, nose, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cortical subplate + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + agranular insular area, ventral part, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + midbrain tract of the trigeminal nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + olivary pretectal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Infralimbic area, layer 1 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + anterior hypothalamic nucleus, central part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventral posterior complex of the thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, magnocellular division + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + abducens nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cuneate nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + perforant path + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, lateral part, layer 2a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + anterior hypothalamic nucleus, dorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + accessory spinal nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventral posterolateral nucleus of the thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal column nuclei + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + primary visual area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + anterior hypothalamic nucleus, posterior part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dentate gyrus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventricular systems + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pineal stalk + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, medial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial mammillary nucleus, median part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventral posteromedial nucleus of the thalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dentate gyrus crest + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary auditory area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + postcommissural fornix + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, ventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + anterior cingulate area, layer 5 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + lateral visual area, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventral posteromedial nucleus of the thalamus, parvicellular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dentate gyrus crest, molecular layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone, layer 6 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cerebellar commissure + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + orbital area, ventrolateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Infralimbic area, layer 2 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + ventral tegmental area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal terminal nucleus of the accessory optic tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterolateral visual area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dentate gyrus crest, polymorph layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cerebellar peduncles + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + principal mammillary tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + olfactory tubercle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventral auditory area, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventral tegmental nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dentate gyrus crest, granule cell layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterior auditory area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + interstitial nucleus of the vestibular nerve + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + vascular organ of the lamina terminalis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, lateral part, layer 2b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + nucleus x + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dentate gyrus lateral blade + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + secondary motor area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + spinal nucleus of the trigeminal, oral part, caudal dorsomedial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pons + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + hypoglossal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, lateral agranular part, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dentate gyrus lateral blade, molecular layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + corpus callosum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + primary visual area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + middle cerebellar peduncle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + posterior amygdalar nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dentate gyrus lateral blade, polymorph layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + agranular insular area, dorsal part, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + corticospinal tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + piriform-amygdalar area + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, magnocellular division, medial magnocellular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dentate gyrus lateral blade, granule cell layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterior auditory area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + spinal tract of the trigeminal nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + periaqueductal gray + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dopaminergic A13 group + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + zona incerta + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + facial nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dentate gyrus medial blade + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + basic cell groups and regions + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + agranular insular area, ventral part, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + visual areas, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + stria medullaris + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pallidum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posteromedial visual area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + supplemental somatosensory area, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + dentate gyrus medial blade, molecular layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + glossopharyngeal nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + pallidum, caudal region + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + lateral ventricle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + inferior colliculus, central nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + superior cerebellar peduncle decussation + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + hypoglossal nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal peduncular area + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + dentate gyrus medial blade, polymorph layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary auditory area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pallidum, dorsal region + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the lateral lemniscus, dorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + inferior colliculus, dorsal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + primary visual area, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + retrohippocampal region + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dentate gyrus medial blade, granule cell layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + supraoptic commissures, dorsal + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + pallidum, medial region + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Infralimbic area, layer 5 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + inferior colliculus, external nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subiculum, dorsal part, molecular layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + inferior olivary complex + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsomedial nucleus of the hypothalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + agranular insular area, dorsal part, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + oculomotor nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + supraoptic commissures, ventral + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + superior colliculus, zonal layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pallidum, ventral region + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ectorhinal area/Layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subiculum, dorsal part, stratum radiatum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, nose, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal motor nucleus of the vagus nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Prelimbic area, layer 6a + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + olfactory nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + trapezoid body + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + superior colliculus, superficial gray layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + parasubiculum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary motor area, Layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subiculum, dorsal part, pyramidal layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dentate nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary auditory area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + optic nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Visceral area, layer 6b + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + spinocerebellar tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + superior colliculus, optic layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + parvicellular reticular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subiculum, ventral part, molecular layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, upper limb, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Visceral area, layer 6a + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + ventral commissure of the spinal cord + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + parasolitary nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial nucleus, lateral division, central lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subiculum, ventral part, stratum radiatum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + supplemental somatosensory area, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + rubrospinal tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ventral spinocerebellar tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + parabrachial nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial nucleus, lateral division, dorsal lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + posterolateral visual area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subiculum, ventral part, pyramidal layer + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + spinothalamic tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal nucleus raphe + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + supplemental somatosensory area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + parabigeminal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial nucleus, lateral division, external lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + accessory optic tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + tectospinal pathway + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, mouth, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, dorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + anterior hypothalamic nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal tegmental nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + parabrachial nucleus, lateral division + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary motor area, Layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial nucleus, lateral division, superior lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + terminal nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + efferent cochlear group + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + perirhinal area, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, nose, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + rhinocele + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + parabrachial nucleus, medial division + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial nucleus, lateral division, ventral lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + ansa peduncularis + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + supplemental somatosensory area, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, lateral agranular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ectorhinal area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pontine central gray + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial nucleus, medial division, external medial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, trunk, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the lateral lemniscus, horizontal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + anterior commissure, olfactory limb + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + trigeminal nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + posterolateral visual area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + external cuneate nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + medial septal complex + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + anterolateral visual area, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, lateral agranular part, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paracentral nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + anterior commissure, temporal limb + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + entorhinal area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + interposed nucleus + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + orbital area, medial part, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + trochlear nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + lingula (I) + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + visual areas, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial nucleus, medial division, medial medial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + brachium of the superior colliculus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + vagus nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + entorhinal area, lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, lateral part, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + central lobule + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + perirhinal area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + parabrachial nucleus, medial division, ventral medial part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cerebal peduncle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + entorhinal area, medial part, dorsal zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + culmen + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, nose, layer 6b + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + motor root of the trigeminal nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + parafascicular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pontine gray + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + vestibulocochlear nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, medial part, ventral zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + declive (VI) + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + visual areas, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paragigantocellular reticular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + nucleus ambiguus, dorsal division + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paraventricular hypothalamic nucleus, parvicellular division + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cingulum bundle + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + vestibulospinal pathway + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + endopiriform nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary motor area, Layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + folium-tuber vermis (VII) + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, upper limb, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + posterior hypothalamic nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + + + + + + Somatomotor areas, Layer 6b + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + cochlear nerve + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + agranular insular area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, mouth, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pyramus (VIII) + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + endopiriform nucleus, dorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + pineal body + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + primary auditory area, layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + lateral reticular nucleus, magnocellular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + corpus callosum, anterior forceps + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + uvula (IX) + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + epithalamus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventral auditory area, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal cochlear nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + piriform area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + secondary motor area, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + lateral reticular nucleus, parvicellular part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + corpus callosum, extreme capsule + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + retrosplenial area, lateral agranular part, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + endopiriform nucleus, ventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + cranial nerves + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nodulus (X) + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + orbital area, ventrolateral part, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paragigantocellular reticular nucleus, dorsal part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + corpus callosum, posterior forceps + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + prelimbic area + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + + + + + + lateral visual area, layer 2/3 + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + primary somatosensory area, mouth, layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + edinger-Westphal nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + lobule II + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + + + + ectorhinal area/Layer 6a + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paragigantocellular reticular nucleus, lateral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + corpus callosum, rostrum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + subependymal zone + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + dorsal premammillary nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + primary somatosensory area, barrel field, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + fasciola cinerea + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + Lobule III + Verified + + + + + Verified + https://orcid.org/0000-0001-7258-9596 + - + - + + + + + + + + + + + + + primary motor area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + corpus callosum, splenium + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + pons, motor related + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ectorhinal area/Layer 5 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + fastigial nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + nucleus of the lateral lemniscus, ventral part + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + ventral auditory area, layer 4 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + secondary motor area + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + corticobulbar tract + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + paramedian reticular nucleus + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + agranular insular area, dorsal part, layer 1 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + root + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + fundus of striatum + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + + + + entorhinal area, lateral part, layer 2/3 + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + + + + + + + + + + + + + MBA entity + Verified + + + + + Verified + https://ror.org/03cpe7c52 + - + - + @@ -32899,7 +32899,7 @@ Verified - + Verified https://orcid.org/0000-0001-7258-9596 @@ -32907,9 +32907,9 @@ - + - + @@ -32928,7 +32928,7 @@ Verified - + Verified https://orcid.org/0000-0001-7258-9596 diff --git a/src/ontology/uberon.Makefile b/src/ontology/uberon.Makefile index 92362eac99..a9f7f6de1f 100644 --- a/src/ontology/uberon.Makefile +++ b/src/ontology/uberon.Makefile @@ -1326,12 +1326,11 @@ $(BRIDGEDIR)/%.obo: $(BRIDGEDIR)/%.owl # All bridges that are not generated from SSSOM sets. # Bridges to MBA and DMBA are now manually curated and generated in -# https://github.com/obophenotype/ABA_Uberon/tree/new_bridge. -# Note: the bridges are generated in new_bridge branch - this might -# change in the future, if it breaks here, please check ABA_Uberon repo -# to make sure that the new bridges are appropriately linked. -UBERON_BRIDGE_MBA = "https://raw.githubusercontent.com/obophenotype/ABA_Uberon/master/src/ontology/new-bridges/new-uberon-bridge-to-mba.owl" -UBERON_BRIDGE_DMBA = "https://raw.githubusercontent.com/obophenotype/ABA_Uberon/master/src/ontology/new-bridges/new-uberon-bridge-to-dmba.owl" +# https://github.com/brain-bican/mouse_brain_atlas_ontology and +# https://github.com/brain-bican/developing_mouse_brain_atlas_ontology, +# respectively. +UBERON_BRIDGE_MBA = "https://raw.githubusercontent.com/brain-bican/mouse_brain_atlas_ontology/main/src/ontology/new-bridges/new-uberon-bridge-to-mba.owl" +UBERON_BRIDGE_DMBA = "https://raw.githubusercontent.com/brain-bican/developing_mouse_brain_atlas_ontology/main/src/ontology/new-bridges/new-uberon-bridge-to-dmba.owl" # Only refresh those bridges when we explicitly allow refreshing # external resources (IMP=true).